diff --git a/packages/material-ui-icons/builder.test.js b/packages/material-ui-icons/builder.test.js index 6252b7abbe7f36..2a309a2f39e1b1 100644 --- a/packages/material-ui-icons/builder.test.js +++ b/packages/material-ui-icons/builder.test.js @@ -94,7 +94,7 @@ describe('builder', () => { expect(fs.existsSync(actualFilePath)).to.equal(true); const actualFileData = fs.readFileSync(actualFilePath, { encoding: 'utf8' }); - expect(actualFileData).to.include("import createSvgIcon from './utils/createSvgIcon.js'"); + expect(actualFileData).to.include("import createSvgIcon from './utils/createSvgIcon'"); }); }); diff --git a/packages/material-ui-icons/custom/Apple.js b/packages/material-ui-icons/custom/Apple.js index 033eb8ba2d8b55..ae374a06462111 100644 --- a/packages/material-ui-icons/custom/Apple.js +++ b/packages/material-ui-icons/custom/Apple.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/Facebook.js b/packages/material-ui-icons/custom/Facebook.js index fdaaeda9c2d0e9..8891f8b38e09aa 100644 --- a/packages/material-ui-icons/custom/Facebook.js +++ b/packages/material-ui-icons/custom/Facebook.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/GitHub.js b/packages/material-ui-icons/custom/GitHub.js index 2c8c26e6baf7c6..50f456e82c0ca2 100644 --- a/packages/material-ui-icons/custom/GitHub.js +++ b/packages/material-ui-icons/custom/GitHub.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/Google.js b/packages/material-ui-icons/custom/Google.js index 29eb2656e0fb00..9e83d9aecf5664 100644 --- a/packages/material-ui-icons/custom/Google.js +++ b/packages/material-ui-icons/custom/Google.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/Instagram.js b/packages/material-ui-icons/custom/Instagram.js index f93cb578d6169f..8df0e4930a5e99 100644 --- a/packages/material-ui-icons/custom/Instagram.js +++ b/packages/material-ui-icons/custom/Instagram.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/LinkedIn.js b/packages/material-ui-icons/custom/LinkedIn.js index 0ebb13627a4995..dd12253e139b74 100644 --- a/packages/material-ui-icons/custom/LinkedIn.js +++ b/packages/material-ui-icons/custom/LinkedIn.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/Pinterest.js b/packages/material-ui-icons/custom/Pinterest.js index 10467dc9889e10..cd3c2c5b8e57f5 100644 --- a/packages/material-ui-icons/custom/Pinterest.js +++ b/packages/material-ui-icons/custom/Pinterest.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/Reddit.js b/packages/material-ui-icons/custom/Reddit.js index 8d010572104c2c..9eabe3dd0b2739 100644 --- a/packages/material-ui-icons/custom/Reddit.js +++ b/packages/material-ui-icons/custom/Reddit.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/Telegram.js b/packages/material-ui-icons/custom/Telegram.js index 97a783d9083b30..7128aa35728778 100644 --- a/packages/material-ui-icons/custom/Telegram.js +++ b/packages/material-ui-icons/custom/Telegram.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/Twitter.js b/packages/material-ui-icons/custom/Twitter.js index 8b32e28fcf40c0..53b91073c596ad 100644 --- a/packages/material-ui-icons/custom/Twitter.js +++ b/packages/material-ui-icons/custom/Twitter.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/WhatsApp.js b/packages/material-ui-icons/custom/WhatsApp.js index 1ec996b4ef7e44..23f161b1aa71d0 100644 --- a/packages/material-ui-icons/custom/WhatsApp.js +++ b/packages/material-ui-icons/custom/WhatsApp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/custom/YouTube.js b/packages/material-ui-icons/custom/YouTube.js index 96a737a0f043d5..0bae17a6f63ead 100644 --- a/packages/material-ui-icons/custom/YouTube.js +++ b/packages/material-ui-icons/custom/YouTube.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( , diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarms.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarms.js index 020162c3f9de33..c84c6bdd2f9115 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarms.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarms.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarmsTwoTone.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarmsTwoTone.js index 22db60d604b984..f67dcb665fb58e 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarmsTwoTone.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/AccessAlarmsTwoTone.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( [,,] diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/Accessibility.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/Accessibility.js index 3ac86897fa6fcb..829835c74b3b03 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/Accessibility.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/Accessibility.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/ElevenMp.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/ElevenMp.js index 5a75ddb36c0c85..0571ae9e641392 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/ElevenMp.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/ElevenMp.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/FiveMp.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/FiveMp.js index 5622ebc861b6cb..ff78a83211f628 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/FiveMp.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/FiveMp.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/QueueMusicOutlined.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/QueueMusicOutlined.js index a6374678a0324a..efa2e958ef8d93 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/QueueMusicOutlined.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/QueueMusicOutlined.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/RecordVoiceOverTwoTone.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/RecordVoiceOverTwoTone.js index 7b896895429089..26496474e670b5 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/RecordVoiceOverTwoTone.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/RecordVoiceOverTwoTone.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( [,,] diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/SixtyFps.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/SixtyFps.js index 6cacdaabbc914f..c1fff3a3928f2e 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/SixtyFps.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/SixtyFps.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/StarRounded.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/StarRounded.js index 678fd0b301dadd..e3382cfacf67df 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/StarRounded.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/StarRounded.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/ThirtyFps.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/ThirtyFps.js index f00c7a4be85511..219f411560c1fc 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/ThirtyFps.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/ThirtyFps.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/TimesOneMobiledata.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/TimesOneMobiledata.js index 93be5071c069af..37e6edceb9a0f7 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/TimesOneMobiledata.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/TimesOneMobiledata.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/fixtures/material-design-icons/expected/TwentyFourMp.js b/packages/material-ui-icons/fixtures/material-design-icons/expected/TwentyFourMp.js index e7c3b4140d685c..26e2aa522bebbf 100644 --- a/packages/material-ui-icons/fixtures/material-design-icons/expected/TwentyFourMp.js +++ b/packages/material-ui-icons/fixtures/material-design-icons/expected/TwentyFourMp.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery20.js b/packages/material-ui-icons/legacy/Battery20.js index e213ac213e5ecd..aec5b72db91a82 100644 --- a/packages/material-ui-icons/legacy/Battery20.js +++ b/packages/material-ui-icons/legacy/Battery20.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery20Outlined.js b/packages/material-ui-icons/legacy/Battery20Outlined.js index a2ef09aa0a2e19..8128ec3c1ac74a 100644 --- a/packages/material-ui-icons/legacy/Battery20Outlined.js +++ b/packages/material-ui-icons/legacy/Battery20Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery20Rounded.js b/packages/material-ui-icons/legacy/Battery20Rounded.js index 63b7bae6653ed7..cded11be41bcf7 100644 --- a/packages/material-ui-icons/legacy/Battery20Rounded.js +++ b/packages/material-ui-icons/legacy/Battery20Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery20Sharp.js b/packages/material-ui-icons/legacy/Battery20Sharp.js index a8aaedb40b64b1..8d3b6d52da896a 100644 --- a/packages/material-ui-icons/legacy/Battery20Sharp.js +++ b/packages/material-ui-icons/legacy/Battery20Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery20TwoTone.js b/packages/material-ui-icons/legacy/Battery20TwoTone.js index 4f401259972b67..51770cb67e1c1c 100644 --- a/packages/material-ui-icons/legacy/Battery20TwoTone.js +++ b/packages/material-ui-icons/legacy/Battery20TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery30.js b/packages/material-ui-icons/legacy/Battery30.js index e33767fb14a629..1797569f38602c 100644 --- a/packages/material-ui-icons/legacy/Battery30.js +++ b/packages/material-ui-icons/legacy/Battery30.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery30Outlined.js b/packages/material-ui-icons/legacy/Battery30Outlined.js index 64fee45c830fd7..59a180fbead3db 100644 --- a/packages/material-ui-icons/legacy/Battery30Outlined.js +++ b/packages/material-ui-icons/legacy/Battery30Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery30Rounded.js b/packages/material-ui-icons/legacy/Battery30Rounded.js index 27340dcb4367d1..9ac5dde1c30d49 100644 --- a/packages/material-ui-icons/legacy/Battery30Rounded.js +++ b/packages/material-ui-icons/legacy/Battery30Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery30Sharp.js b/packages/material-ui-icons/legacy/Battery30Sharp.js index 562519402b95ea..c7b314c0abf618 100644 --- a/packages/material-ui-icons/legacy/Battery30Sharp.js +++ b/packages/material-ui-icons/legacy/Battery30Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery30TwoTone.js b/packages/material-ui-icons/legacy/Battery30TwoTone.js index 3b26acf9a6db58..336166c609a6ba 100644 --- a/packages/material-ui-icons/legacy/Battery30TwoTone.js +++ b/packages/material-ui-icons/legacy/Battery30TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery50.js b/packages/material-ui-icons/legacy/Battery50.js index fd803832d96546..e5fdcf8a1d915c 100644 --- a/packages/material-ui-icons/legacy/Battery50.js +++ b/packages/material-ui-icons/legacy/Battery50.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery50Outlined.js b/packages/material-ui-icons/legacy/Battery50Outlined.js index 2001823743b374..217c2bbfecc39f 100644 --- a/packages/material-ui-icons/legacy/Battery50Outlined.js +++ b/packages/material-ui-icons/legacy/Battery50Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery50Rounded.js b/packages/material-ui-icons/legacy/Battery50Rounded.js index b4be979b5828a6..083e67897b4868 100644 --- a/packages/material-ui-icons/legacy/Battery50Rounded.js +++ b/packages/material-ui-icons/legacy/Battery50Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery50Sharp.js b/packages/material-ui-icons/legacy/Battery50Sharp.js index 4f376554532f35..84fcc70149ac31 100644 --- a/packages/material-ui-icons/legacy/Battery50Sharp.js +++ b/packages/material-ui-icons/legacy/Battery50Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery50TwoTone.js b/packages/material-ui-icons/legacy/Battery50TwoTone.js index d018471df260d0..f436ff8ffb0b1c 100644 --- a/packages/material-ui-icons/legacy/Battery50TwoTone.js +++ b/packages/material-ui-icons/legacy/Battery50TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery60.js b/packages/material-ui-icons/legacy/Battery60.js index 5706e3221aa1f6..68ec6d54d46399 100644 --- a/packages/material-ui-icons/legacy/Battery60.js +++ b/packages/material-ui-icons/legacy/Battery60.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery60Outlined.js b/packages/material-ui-icons/legacy/Battery60Outlined.js index e2cd7b2a4c44b6..7afa780deeb01f 100644 --- a/packages/material-ui-icons/legacy/Battery60Outlined.js +++ b/packages/material-ui-icons/legacy/Battery60Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery60Rounded.js b/packages/material-ui-icons/legacy/Battery60Rounded.js index 2e8b7c4d95373f..3a39799c3962ac 100644 --- a/packages/material-ui-icons/legacy/Battery60Rounded.js +++ b/packages/material-ui-icons/legacy/Battery60Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery60Sharp.js b/packages/material-ui-icons/legacy/Battery60Sharp.js index e98b632a4c9cfb..c1b944504f8b37 100644 --- a/packages/material-ui-icons/legacy/Battery60Sharp.js +++ b/packages/material-ui-icons/legacy/Battery60Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery60TwoTone.js b/packages/material-ui-icons/legacy/Battery60TwoTone.js index 69544baca2d401..02b535c55a1f97 100644 --- a/packages/material-ui-icons/legacy/Battery60TwoTone.js +++ b/packages/material-ui-icons/legacy/Battery60TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery80.js b/packages/material-ui-icons/legacy/Battery80.js index 272ca86523048c..03d52ee9664247 100644 --- a/packages/material-ui-icons/legacy/Battery80.js +++ b/packages/material-ui-icons/legacy/Battery80.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery80Outlined.js b/packages/material-ui-icons/legacy/Battery80Outlined.js index af6bbe78dd9ea9..d257da86719d73 100644 --- a/packages/material-ui-icons/legacy/Battery80Outlined.js +++ b/packages/material-ui-icons/legacy/Battery80Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery80Rounded.js b/packages/material-ui-icons/legacy/Battery80Rounded.js index ac515c9bb4c2da..fed07d31ae5c4e 100644 --- a/packages/material-ui-icons/legacy/Battery80Rounded.js +++ b/packages/material-ui-icons/legacy/Battery80Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery80Sharp.js b/packages/material-ui-icons/legacy/Battery80Sharp.js index d25eb75454de82..aba36845381bfa 100644 --- a/packages/material-ui-icons/legacy/Battery80Sharp.js +++ b/packages/material-ui-icons/legacy/Battery80Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery80TwoTone.js b/packages/material-ui-icons/legacy/Battery80TwoTone.js index bfde44075720a2..92162bd0ed4071 100644 --- a/packages/material-ui-icons/legacy/Battery80TwoTone.js +++ b/packages/material-ui-icons/legacy/Battery80TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery90.js b/packages/material-ui-icons/legacy/Battery90.js index 1ad0e77cfcdfd0..fd59c443a80e63 100644 --- a/packages/material-ui-icons/legacy/Battery90.js +++ b/packages/material-ui-icons/legacy/Battery90.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery90Outlined.js b/packages/material-ui-icons/legacy/Battery90Outlined.js index 5d6cc4a29788c5..dd107cb28d3ba5 100644 --- a/packages/material-ui-icons/legacy/Battery90Outlined.js +++ b/packages/material-ui-icons/legacy/Battery90Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery90Rounded.js b/packages/material-ui-icons/legacy/Battery90Rounded.js index 48d94450ea6ddc..a7b218a8bbf211 100644 --- a/packages/material-ui-icons/legacy/Battery90Rounded.js +++ b/packages/material-ui-icons/legacy/Battery90Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery90Sharp.js b/packages/material-ui-icons/legacy/Battery90Sharp.js index f2dae150c57470..6c4705b0bd0bb3 100644 --- a/packages/material-ui-icons/legacy/Battery90Sharp.js +++ b/packages/material-ui-icons/legacy/Battery90Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/Battery90TwoTone.js b/packages/material-ui-icons/legacy/Battery90TwoTone.js index 5854aecff00927..aabaa6a4176f49 100644 --- a/packages/material-ui-icons/legacy/Battery90TwoTone.js +++ b/packages/material-ui-icons/legacy/Battery90TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging20.js b/packages/material-ui-icons/legacy/BatteryCharging20.js index 79fa9f422f6147..3eb13c268de586 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging20.js +++ b/packages/material-ui-icons/legacy/BatteryCharging20.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging20Outlined.js b/packages/material-ui-icons/legacy/BatteryCharging20Outlined.js index 14d3f7eb2acb19..cdd81e26d63014 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging20Outlined.js +++ b/packages/material-ui-icons/legacy/BatteryCharging20Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging20Rounded.js b/packages/material-ui-icons/legacy/BatteryCharging20Rounded.js index cb36239bf57c31..ff212bef6f3bbf 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging20Rounded.js +++ b/packages/material-ui-icons/legacy/BatteryCharging20Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging20Sharp.js b/packages/material-ui-icons/legacy/BatteryCharging20Sharp.js index 4a1dfd8500770d..bb1b9b4816de30 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging20Sharp.js +++ b/packages/material-ui-icons/legacy/BatteryCharging20Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging20TwoTone.js b/packages/material-ui-icons/legacy/BatteryCharging20TwoTone.js index 94ca65fda2831e..c4f410c35ab69c 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging20TwoTone.js +++ b/packages/material-ui-icons/legacy/BatteryCharging20TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging30.js b/packages/material-ui-icons/legacy/BatteryCharging30.js index 002901f68a240b..2b30e072023b0a 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging30.js +++ b/packages/material-ui-icons/legacy/BatteryCharging30.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging30Outlined.js b/packages/material-ui-icons/legacy/BatteryCharging30Outlined.js index d999876e086959..23df39c45cbadd 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging30Outlined.js +++ b/packages/material-ui-icons/legacy/BatteryCharging30Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging30Rounded.js b/packages/material-ui-icons/legacy/BatteryCharging30Rounded.js index c1eb3970d930ee..1bc3016d9988ef 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging30Rounded.js +++ b/packages/material-ui-icons/legacy/BatteryCharging30Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging30Sharp.js b/packages/material-ui-icons/legacy/BatteryCharging30Sharp.js index ed135aa9660b93..316ea3b8f21e5d 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging30Sharp.js +++ b/packages/material-ui-icons/legacy/BatteryCharging30Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging30TwoTone.js b/packages/material-ui-icons/legacy/BatteryCharging30TwoTone.js index 5e21f124bcb4da..5f39fcfc4155f9 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging30TwoTone.js +++ b/packages/material-ui-icons/legacy/BatteryCharging30TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging50.js b/packages/material-ui-icons/legacy/BatteryCharging50.js index d198b163c724fd..124b188b4d5f66 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging50.js +++ b/packages/material-ui-icons/legacy/BatteryCharging50.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging50Outlined.js b/packages/material-ui-icons/legacy/BatteryCharging50Outlined.js index 890f00a79ca3b9..4618716b2998d8 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging50Outlined.js +++ b/packages/material-ui-icons/legacy/BatteryCharging50Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging50Rounded.js b/packages/material-ui-icons/legacy/BatteryCharging50Rounded.js index 0f833065407347..5cac98a8ca7a03 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging50Rounded.js +++ b/packages/material-ui-icons/legacy/BatteryCharging50Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging50Sharp.js b/packages/material-ui-icons/legacy/BatteryCharging50Sharp.js index 4a307baef5b5bf..16894c495dd544 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging50Sharp.js +++ b/packages/material-ui-icons/legacy/BatteryCharging50Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging50TwoTone.js b/packages/material-ui-icons/legacy/BatteryCharging50TwoTone.js index 4fdf508a672c71..2a3b272686d989 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging50TwoTone.js +++ b/packages/material-ui-icons/legacy/BatteryCharging50TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging60.js b/packages/material-ui-icons/legacy/BatteryCharging60.js index 9c0ad7665a997c..7736b3c2e74ae2 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging60.js +++ b/packages/material-ui-icons/legacy/BatteryCharging60.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging60Outlined.js b/packages/material-ui-icons/legacy/BatteryCharging60Outlined.js index 0cb5d9b2ac83f0..e19c7a49fbf156 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging60Outlined.js +++ b/packages/material-ui-icons/legacy/BatteryCharging60Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging60Rounded.js b/packages/material-ui-icons/legacy/BatteryCharging60Rounded.js index c0c523e82a54c7..c63a5e29da54e0 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging60Rounded.js +++ b/packages/material-ui-icons/legacy/BatteryCharging60Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging60Sharp.js b/packages/material-ui-icons/legacy/BatteryCharging60Sharp.js index bf0fdfe93c7c7f..01c87b1e2fd895 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging60Sharp.js +++ b/packages/material-ui-icons/legacy/BatteryCharging60Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging60TwoTone.js b/packages/material-ui-icons/legacy/BatteryCharging60TwoTone.js index 950a9e381e781d..61d40976616f5d 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging60TwoTone.js +++ b/packages/material-ui-icons/legacy/BatteryCharging60TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging80.js b/packages/material-ui-icons/legacy/BatteryCharging80.js index 7f5e3dc3edad1a..9d31830b640560 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging80.js +++ b/packages/material-ui-icons/legacy/BatteryCharging80.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging80Outlined.js b/packages/material-ui-icons/legacy/BatteryCharging80Outlined.js index 287adf539259dd..9936f7f9d6fb44 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging80Outlined.js +++ b/packages/material-ui-icons/legacy/BatteryCharging80Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging80Rounded.js b/packages/material-ui-icons/legacy/BatteryCharging80Rounded.js index 4656dd0596928b..35cbde7957bfec 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging80Rounded.js +++ b/packages/material-ui-icons/legacy/BatteryCharging80Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging80Sharp.js b/packages/material-ui-icons/legacy/BatteryCharging80Sharp.js index c69a71dd510bf0..bd3ec3724be057 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging80Sharp.js +++ b/packages/material-ui-icons/legacy/BatteryCharging80Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging80TwoTone.js b/packages/material-ui-icons/legacy/BatteryCharging80TwoTone.js index 9d2a2c37b433f0..0b02f1e7797dfe 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging80TwoTone.js +++ b/packages/material-ui-icons/legacy/BatteryCharging80TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging90.js b/packages/material-ui-icons/legacy/BatteryCharging90.js index 49f8fd561d1e7e..c8675a0493a02a 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging90.js +++ b/packages/material-ui-icons/legacy/BatteryCharging90.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging90Outlined.js b/packages/material-ui-icons/legacy/BatteryCharging90Outlined.js index 316ec502c2fcd9..1da94f36b02db3 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging90Outlined.js +++ b/packages/material-ui-icons/legacy/BatteryCharging90Outlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging90Rounded.js b/packages/material-ui-icons/legacy/BatteryCharging90Rounded.js index 7f47159961c8a5..070d5a01b58bf2 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging90Rounded.js +++ b/packages/material-ui-icons/legacy/BatteryCharging90Rounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging90Sharp.js b/packages/material-ui-icons/legacy/BatteryCharging90Sharp.js index e47ee99b0a23b0..b5d0852ca701fa 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging90Sharp.js +++ b/packages/material-ui-icons/legacy/BatteryCharging90Sharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/BatteryCharging90TwoTone.js b/packages/material-ui-icons/legacy/BatteryCharging90TwoTone.js index f0e652351b885a..e87ea37960dde3 100644 --- a/packages/material-ui-icons/legacy/BatteryCharging90TwoTone.js +++ b/packages/material-ui-icons/legacy/BatteryCharging90TwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/PlayCircleFilledWhite.js b/packages/material-ui-icons/legacy/PlayCircleFilledWhite.js index ef3ab9ec248fb9..4180ee03cb5ada 100644 --- a/packages/material-ui-icons/legacy/PlayCircleFilledWhite.js +++ b/packages/material-ui-icons/legacy/PlayCircleFilledWhite.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteOutlined.js b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteOutlined.js index f3c04fc897849a..82b326aeef8f7a 100644 --- a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteOutlined.js +++ b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteRounded.js b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteRounded.js index c4488feeffd77d..2e30bcae751a09 100644 --- a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteRounded.js +++ b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteSharp.js b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteSharp.js index a6eb42c670f83d..5744346b38bd2c 100644 --- a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteSharp.js +++ b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteTwoTone.js b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteTwoTone.js index dc1b140f121e80..43a4b35c830f75 100644 --- a/packages/material-ui-icons/legacy/PlayCircleFilledWhiteTwoTone.js +++ b/packages/material-ui-icons/legacy/PlayCircleFilledWhiteTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular1Bar.js b/packages/material-ui-icons/legacy/SignalCellular1Bar.js index 778feda417d1cd..ee819f06137941 100644 --- a/packages/material-ui-icons/legacy/SignalCellular1Bar.js +++ b/packages/material-ui-icons/legacy/SignalCellular1Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular1BarOutlined.js b/packages/material-ui-icons/legacy/SignalCellular1BarOutlined.js index d01f57c265c1ba..64a024708eefff 100644 --- a/packages/material-ui-icons/legacy/SignalCellular1BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalCellular1BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular1BarRounded.js b/packages/material-ui-icons/legacy/SignalCellular1BarRounded.js index 853c2be6f56391..6b4f0b4052a402 100644 --- a/packages/material-ui-icons/legacy/SignalCellular1BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalCellular1BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular1BarSharp.js b/packages/material-ui-icons/legacy/SignalCellular1BarSharp.js index b2347c4081b6bf..b4743a51dc9f85 100644 --- a/packages/material-ui-icons/legacy/SignalCellular1BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalCellular1BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular1BarTwoTone.js b/packages/material-ui-icons/legacy/SignalCellular1BarTwoTone.js index b4b2736a505604..4b7e4feec06017 100644 --- a/packages/material-ui-icons/legacy/SignalCellular1BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalCellular1BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular2Bar.js b/packages/material-ui-icons/legacy/SignalCellular2Bar.js index e2898ac4673302..e657470d373151 100644 --- a/packages/material-ui-icons/legacy/SignalCellular2Bar.js +++ b/packages/material-ui-icons/legacy/SignalCellular2Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular2BarOutlined.js b/packages/material-ui-icons/legacy/SignalCellular2BarOutlined.js index 12f861984a2e7d..79033765986cb5 100644 --- a/packages/material-ui-icons/legacy/SignalCellular2BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalCellular2BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular2BarRounded.js b/packages/material-ui-icons/legacy/SignalCellular2BarRounded.js index 2792286af4d37d..604dc9255539a7 100644 --- a/packages/material-ui-icons/legacy/SignalCellular2BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalCellular2BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular2BarSharp.js b/packages/material-ui-icons/legacy/SignalCellular2BarSharp.js index 4567d60f78af1b..de9f3fc018c9ad 100644 --- a/packages/material-ui-icons/legacy/SignalCellular2BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalCellular2BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular2BarTwoTone.js b/packages/material-ui-icons/legacy/SignalCellular2BarTwoTone.js index 8d0bdbe6b61d95..d423cbf7596f11 100644 --- a/packages/material-ui-icons/legacy/SignalCellular2BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalCellular2BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular3Bar.js b/packages/material-ui-icons/legacy/SignalCellular3Bar.js index 0194fb1261bc39..ba02491fb6e9ad 100644 --- a/packages/material-ui-icons/legacy/SignalCellular3Bar.js +++ b/packages/material-ui-icons/legacy/SignalCellular3Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular3BarOutlined.js b/packages/material-ui-icons/legacy/SignalCellular3BarOutlined.js index 41edce56485eea..20c2f48fb023b6 100644 --- a/packages/material-ui-icons/legacy/SignalCellular3BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalCellular3BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular3BarRounded.js b/packages/material-ui-icons/legacy/SignalCellular3BarRounded.js index d075f4b248f7fd..b61f6e72aa1b29 100644 --- a/packages/material-ui-icons/legacy/SignalCellular3BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalCellular3BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular3BarSharp.js b/packages/material-ui-icons/legacy/SignalCellular3BarSharp.js index 2c159ae98a62f4..c8f40309a12c41 100644 --- a/packages/material-ui-icons/legacy/SignalCellular3BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalCellular3BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellular3BarTwoTone.js b/packages/material-ui-icons/legacy/SignalCellular3BarTwoTone.js index 962935d07e5342..50bcf379553e57 100644 --- a/packages/material-ui-icons/legacy/SignalCellular3BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalCellular3BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1Bar.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1Bar.js index c98bb3d9c935f8..75afb17299e4c0 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1Bar.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarOutlined.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarOutlined.js index 55a9a9d0823c22..407d2dfc3722bc 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarRounded.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarRounded.js index 9f0e79dc252826..b56474934399ce 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarSharp.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarSharp.js index 8f27f25ab3be26..1c7a10e50c5717 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarTwoTone.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarTwoTone.js index 4e1e6c3b818bf1..32e7cec451e85d 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet1BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2Bar.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2Bar.js index b6f24a35e13ef8..5418a00314e0ff 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2Bar.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarOutlined.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarOutlined.js index b5168a1ae25b2c..d64e9f37384508 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarRounded.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarRounded.js index 5d5c148859428f..44dfe97b58b1f4 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarSharp.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarSharp.js index 60afbbde8f2fd3..ec946ffd8747e1 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarTwoTone.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarTwoTone.js index 3a4edc166af58c..c8a089e21cb21d 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet2BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3Bar.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3Bar.js index 52b8dc775da01e..e56fd9ad345f64 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3Bar.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarOutlined.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarOutlined.js index 35368e735f705d..f05eb825207641 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarRounded.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarRounded.js index 715e93f7fae927..668c98ca78c66c 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarSharp.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarSharp.js index cd8afbc0c32012..34f5c302e9d760 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarTwoTone.js b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarTwoTone.js index 9f959a780e98b6..20f8968b336ee1 100644 --- a/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalCellularConnectedNoInternet3BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1Bar.js b/packages/material-ui-icons/legacy/SignalWifi1Bar.js index d435870a683181..843faf6aa19a85 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1Bar.js +++ b/packages/material-ui-icons/legacy/SignalWifi1Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarLock.js b/packages/material-ui-icons/legacy/SignalWifi1BarLock.js index b9187de76e4c9c..9911bbcacc259a 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarLock.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarLock.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarLockOutlined.js b/packages/material-ui-icons/legacy/SignalWifi1BarLockOutlined.js index 257988859257e4..00870b5b06170a 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarLockOutlined.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarLockOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarLockRounded.js b/packages/material-ui-icons/legacy/SignalWifi1BarLockRounded.js index 3a30b5605cd6ad..869106888659b2 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarLockRounded.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarLockRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarLockSharp.js b/packages/material-ui-icons/legacy/SignalWifi1BarLockSharp.js index 575bef8576831f..7ae57fbc7036fb 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarLockSharp.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarLockSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarLockTwoTone.js b/packages/material-ui-icons/legacy/SignalWifi1BarLockTwoTone.js index 516d056ddc2459..ec44ca9e9e059f 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarLockTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarLockTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarOutlined.js b/packages/material-ui-icons/legacy/SignalWifi1BarOutlined.js index 83576a7a7d41b1..5512fc57171c6e 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarRounded.js b/packages/material-ui-icons/legacy/SignalWifi1BarRounded.js index 0b6a59a13f01e8..38d5e1a71c8afd 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarSharp.js b/packages/material-ui-icons/legacy/SignalWifi1BarSharp.js index 8c862d4956235e..504aef96357b7d 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi1BarTwoTone.js b/packages/material-ui-icons/legacy/SignalWifi1BarTwoTone.js index f1c63aaf01936c..64eb53854d6698 100644 --- a/packages/material-ui-icons/legacy/SignalWifi1BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalWifi1BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2Bar.js b/packages/material-ui-icons/legacy/SignalWifi2Bar.js index 5a7bc75de4650c..a16cccdde1c85c 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2Bar.js +++ b/packages/material-ui-icons/legacy/SignalWifi2Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarLock.js b/packages/material-ui-icons/legacy/SignalWifi2BarLock.js index e8a3234834a169..09c23a858ffb4a 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarLock.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarLock.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarLockOutlined.js b/packages/material-ui-icons/legacy/SignalWifi2BarLockOutlined.js index 56f84d7b8b2100..84b45fccccc615 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarLockOutlined.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarLockOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarLockRounded.js b/packages/material-ui-icons/legacy/SignalWifi2BarLockRounded.js index e01f4d2fd52da2..2d91c020959789 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarLockRounded.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarLockRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarLockSharp.js b/packages/material-ui-icons/legacy/SignalWifi2BarLockSharp.js index b195c58b530ef7..05bff208f79693 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarLockSharp.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarLockSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarLockTwoTone.js b/packages/material-ui-icons/legacy/SignalWifi2BarLockTwoTone.js index 3e8c1706d565e3..96e8842e65dee7 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarLockTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarLockTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarOutlined.js b/packages/material-ui-icons/legacy/SignalWifi2BarOutlined.js index ed21ca94efb975..ed8124298cfce4 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarRounded.js b/packages/material-ui-icons/legacy/SignalWifi2BarRounded.js index 40eeeb457173f0..42f8277c8a8fb1 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarSharp.js b/packages/material-ui-icons/legacy/SignalWifi2BarSharp.js index 27e52ec952f293..e4f496f87c1799 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi2BarTwoTone.js b/packages/material-ui-icons/legacy/SignalWifi2BarTwoTone.js index beb21009ed8ab2..0538d34f738b82 100644 --- a/packages/material-ui-icons/legacy/SignalWifi2BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalWifi2BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3Bar.js b/packages/material-ui-icons/legacy/SignalWifi3Bar.js index 41fc44023a6f7f..77f5e773ccd23e 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3Bar.js +++ b/packages/material-ui-icons/legacy/SignalWifi3Bar.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarLock.js b/packages/material-ui-icons/legacy/SignalWifi3BarLock.js index f7107364e3c4fb..ade3d7d388124a 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarLock.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarLock.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarLockOutlined.js b/packages/material-ui-icons/legacy/SignalWifi3BarLockOutlined.js index 661ae639b81a9d..5b7e7b4e6df80b 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarLockOutlined.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarLockOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarLockRounded.js b/packages/material-ui-icons/legacy/SignalWifi3BarLockRounded.js index 148b812eeb958d..69ae2e1e8fc265 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarLockRounded.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarLockRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarLockSharp.js b/packages/material-ui-icons/legacy/SignalWifi3BarLockSharp.js index 608dc196949bc9..26f89881e1411e 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarLockSharp.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarLockSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarLockTwoTone.js b/packages/material-ui-icons/legacy/SignalWifi3BarLockTwoTone.js index 99f9cc25487ee2..172735c4d3fcdc 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarLockTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarLockTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarOutlined.js b/packages/material-ui-icons/legacy/SignalWifi3BarOutlined.js index cde179daaeaf51..f69bcc75c16abf 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarOutlined.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarOutlined.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarRounded.js b/packages/material-ui-icons/legacy/SignalWifi3BarRounded.js index c0a8341ef245f0..9c815fe0173b96 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarRounded.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarRounded.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarSharp.js b/packages/material-ui-icons/legacy/SignalWifi3BarSharp.js index 5256cd93e6eb34..c7cf39d46f4a85 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarSharp.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarSharp.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/legacy/SignalWifi3BarTwoTone.js b/packages/material-ui-icons/legacy/SignalWifi3BarTwoTone.js index 383f7a29f5ed45..b70936c1919508 100644 --- a/packages/material-ui-icons/legacy/SignalWifi3BarTwoTone.js +++ b/packages/material-ui-icons/legacy/SignalWifi3BarTwoTone.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( diff --git a/packages/material-ui-icons/lib/AcUnit.js b/packages/material-ui-icons/lib/AcUnit.js index b1d2e69a0a7561..84aa965c9e3a35 100644 --- a/packages/material-ui-icons/lib/AcUnit.js +++ b/packages/material-ui-icons/lib/AcUnit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z" -}), 'AcUnit'); \ No newline at end of file +}), 'AcUnit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AcUnitOutlined.js b/packages/material-ui-icons/lib/AcUnitOutlined.js index 083992e973224b..abb24387090107 100644 --- a/packages/material-ui-icons/lib/AcUnitOutlined.js +++ b/packages/material-ui-icons/lib/AcUnitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" -}), 'AcUnitOutlined'); \ No newline at end of file +}), 'AcUnitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AcUnitRounded.js b/packages/material-ui-icons/lib/AcUnitRounded.js index 58398c1b426a0e..873922b2a54396 100644 --- a/packages/material-ui-icons/lib/AcUnitRounded.js +++ b/packages/material-ui-icons/lib/AcUnitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11h-3.17l2.54-2.54c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0L15 11h-2V9l3.95-3.95c.39-.39.39-1.03 0-1.42a.9959.9959 0 0 0-1.41 0L13 6.17V3c0-.55-.45-1-1-1s-1 .45-1 1v3.17L8.46 3.63a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42L11 9v2H9L5.05 7.05c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41L6.17 11H3c-.55 0-1 .45-1 1s.45 1 1 1h3.17l-2.54 2.54c-.39.39-.39 1.02 0 1.41.39.39 1.03.39 1.42 0L9 13h2v2l-3.95 3.95c-.39.39-.39 1.03 0 1.42.39.39 1.02.39 1.41 0L11 17.83V21c0 .55.45 1 1 1s1-.45 1-1v-3.17l2.54 2.54c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42L13 15v-2h2l3.95 3.95c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41L17.83 13H21c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'AcUnitRounded'); \ No newline at end of file +}), 'AcUnitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AcUnitSharp.js b/packages/material-ui-icons/lib/AcUnitSharp.js index a46951b39bb771..3b8cc98d9d7517 100644 --- a/packages/material-ui-icons/lib/AcUnitSharp.js +++ b/packages/material-ui-icons/lib/AcUnitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" -}), 'AcUnitSharp'); \ No newline at end of file +}), 'AcUnitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AcUnitTwoTone.js b/packages/material-ui-icons/lib/AcUnitTwoTone.js index b5ffb23a6bc8dd..cfb463d3a89a4a 100644 --- a/packages/material-ui-icons/lib/AcUnitTwoTone.js +++ b/packages/material-ui-icons/lib/AcUnitTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" -}), 'AcUnitTwoTone'); \ No newline at end of file +}), 'AcUnitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarm.js b/packages/material-ui-icons/lib/AccessAlarm.js index 69fb925f2c8a02..ed40d79353d24f 100644 --- a/packages/material-ui-icons/lib/AccessAlarm.js +++ b/packages/material-ui-icons/lib/AccessAlarm.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'AccessAlarm'); \ No newline at end of file +}), 'AccessAlarm'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmOutlined.js b/packages/material-ui-icons/lib/AccessAlarmOutlined.js index 1adf7845dea522..c7313313611c96 100644 --- a/packages/material-ui-icons/lib/AccessAlarmOutlined.js +++ b/packages/material-ui-icons/lib/AccessAlarmOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'AccessAlarmOutlined'); \ No newline at end of file +}), 'AccessAlarmOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmRounded.js b/packages/material-ui-icons/lib/AccessAlarmRounded.js index 3d370b16772427..6cd7b46f796701 100644 --- a/packages/material-ui-icons/lib/AccessAlarmRounded.js +++ b/packages/material-ui-icons/lib/AccessAlarmRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.87 15.25-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AccessAlarmRounded'); \ No newline at end of file +}), 'AccessAlarmRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmSharp.js b/packages/material-ui-icons/lib/AccessAlarmSharp.js index 80ea4f080077b4..f1dbae2bf1192e 100644 --- a/packages/material-ui-icons/lib/AccessAlarmSharp.js +++ b/packages/material-ui-icons/lib/AccessAlarmSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'AccessAlarmSharp'); \ No newline at end of file +}), 'AccessAlarmSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmTwoTone.js b/packages/material-ui-icons/lib/AccessAlarmTwoTone.js index 48120d12a5f07d..f002313512ae3b 100644 --- a/packages/material-ui-icons/lib/AccessAlarmTwoTone.js +++ b/packages/material-ui-icons/lib/AccessAlarmTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm.5-12H11v6l4.75 2.85.75-1.23-4-2.37zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53z" -}, "1")], 'AccessAlarmTwoTone'); \ No newline at end of file +}, "1")], 'AccessAlarmTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarms.js b/packages/material-ui-icons/lib/AccessAlarms.js index e105b86e1cdb37..b94c8d6b772a50 100644 --- a/packages/material-ui-icons/lib/AccessAlarms.js +++ b/packages/material-ui-icons/lib/AccessAlarms.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" -}), 'AccessAlarms'); \ No newline at end of file +}), 'AccessAlarms'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmsOutlined.js b/packages/material-ui-icons/lib/AccessAlarmsOutlined.js index e4365851542f3b..bd1bc7e095eb8b 100644 --- a/packages/material-ui-icons/lib/AccessAlarmsOutlined.js +++ b/packages/material-ui-icons/lib/AccessAlarmsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" -}), 'AccessAlarmsOutlined'); \ No newline at end of file +}), 'AccessAlarmsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmsRounded.js b/packages/material-ui-icons/lib/AccessAlarmsRounded.js index c8c283ae6b59de..d4b8eecc85e73d 100644 --- a/packages/material-ui-icons/lib/AccessAlarmsRounded.js +++ b/packages/material-ui-icons/lib/AccessAlarmsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.87 15.25-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AccessAlarmsRounded'); \ No newline at end of file +}), 'AccessAlarmsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmsSharp.js b/packages/material-ui-icons/lib/AccessAlarmsSharp.js index d504a0dc170d9c..edf5ec12b2fbf1 100644 --- a/packages/material-ui-icons/lib/AccessAlarmsSharp.js +++ b/packages/material-ui-icons/lib/AccessAlarmsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" -}), 'AccessAlarmsSharp'); \ No newline at end of file +}), 'AccessAlarmsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessAlarmsTwoTone.js b/packages/material-ui-icons/lib/AccessAlarmsTwoTone.js index f62b948568250c..9ad24cc0ce05b7 100644 --- a/packages/material-ui-icons/lib/AccessAlarmsTwoTone.js +++ b/packages/material-ui-icons/lib/AccessAlarmsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm3.7 10.9L11 14V8h1.5v5.3l4 2.4-.8 1.2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5z" -}, "1")], 'AccessAlarmsTwoTone'); \ No newline at end of file +}, "1")], 'AccessAlarmsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTime.js b/packages/material-ui-icons/lib/AccessTime.js index 9d5c5c89f9bc7d..a326e93620d6a8 100644 --- a/packages/material-ui-icons/lib/AccessTime.js +++ b/packages/material-ui-icons/lib/AccessTime.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}, "1")], 'AccessTime'); \ No newline at end of file +}, "1")], 'AccessTime'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeFilled.js b/packages/material-ui-icons/lib/AccessTimeFilled.js index 9d462185dee886..b8f158b4ae062d 100644 --- a/packages/material-ui-icons/lib/AccessTimeFilled.js +++ b/packages/material-ui-icons/lib/AccessTimeFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" -}), 'AccessTimeFilled'); \ No newline at end of file +}), 'AccessTimeFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeFilledOutlined.js b/packages/material-ui-icons/lib/AccessTimeFilledOutlined.js index 84b9c9a7a67096..e5c9577028bb67 100644 --- a/packages/material-ui-icons/lib/AccessTimeFilledOutlined.js +++ b/packages/material-ui-icons/lib/AccessTimeFilledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" -}), 'AccessTimeFilledOutlined'); \ No newline at end of file +}), 'AccessTimeFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeFilledRounded.js b/packages/material-ui-icons/lib/AccessTimeFilledRounded.js index ff2fda1b4ec042..21b3fb24da378a 100644 --- a/packages/material-ui-icons/lib/AccessTimeFilledRounded.js +++ b/packages/material-ui-icons/lib/AccessTimeFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM16 16c-.39.39-1.02.39-1.41 0l-3.29-3.29c-.19-.19-.3-.44-.3-.71V8c0-.55.45-1 1-1s1 .45 1 1v3.59l3 3c.39.39.39 1.02 0 1.41z" -}), 'AccessTimeFilledRounded'); \ No newline at end of file +}), 'AccessTimeFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeFilledSharp.js b/packages/material-ui-icons/lib/AccessTimeFilledSharp.js index 565aedf38d123d..88ddc5f70cc948 100644 --- a/packages/material-ui-icons/lib/AccessTimeFilledSharp.js +++ b/packages/material-ui-icons/lib/AccessTimeFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" -}), 'AccessTimeFilledSharp'); \ No newline at end of file +}), 'AccessTimeFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeFilledTwoTone.js b/packages/material-ui-icons/lib/AccessTimeFilledTwoTone.js index c9e7d9e16ecb64..ab59592795e381 100644 --- a/packages/material-ui-icons/lib/AccessTimeFilledTwoTone.js +++ b/packages/material-ui-icons/lib/AccessTimeFilledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" -}), 'AccessTimeFilledTwoTone'); \ No newline at end of file +}), 'AccessTimeFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeOutlined.js b/packages/material-ui-icons/lib/AccessTimeOutlined.js index ccc6c08de3386c..d822c942341343 100644 --- a/packages/material-ui-icons/lib/AccessTimeOutlined.js +++ b/packages/material-ui-icons/lib/AccessTimeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}), 'AccessTimeOutlined'); \ No newline at end of file +}), 'AccessTimeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeRounded.js b/packages/material-ui-icons/lib/AccessTimeRounded.js index 2c9b26d4e8f77b..593bd804071379 100644 --- a/packages/material-ui-icons/lib/AccessTimeRounded.js +++ b/packages/material-ui-icons/lib/AccessTimeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z" -}), 'AccessTimeRounded'); \ No newline at end of file +}), 'AccessTimeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeSharp.js b/packages/material-ui-icons/lib/AccessTimeSharp.js index 666cd76600f464..6b68713387034e 100644 --- a/packages/material-ui-icons/lib/AccessTimeSharp.js +++ b/packages/material-ui-icons/lib/AccessTimeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}), 'AccessTimeSharp'); \ No newline at end of file +}), 'AccessTimeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessTimeTwoTone.js b/packages/material-ui-icons/lib/AccessTimeTwoTone.js index 6d82b4b3aa61cd..0539ce9004db66 100644 --- a/packages/material-ui-icons/lib/AccessTimeTwoTone.js +++ b/packages/material-ui-icons/lib/AccessTimeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}, "1")], 'AccessTimeTwoTone'); \ No newline at end of file +}, "1")], 'AccessTimeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Accessibility.js b/packages/material-ui-icons/lib/Accessibility.js index 5af3407e56af13..8e83865b430d47 100644 --- a/packages/material-ui-icons/lib/Accessibility.js +++ b/packages/material-ui-icons/lib/Accessibility.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" -}), 'Accessibility'); \ No newline at end of file +}), 'Accessibility'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityNew.js b/packages/material-ui-icons/lib/AccessibilityNew.js index 23a33552f51946..1aed0d36402b8e 100644 --- a/packages/material-ui-icons/lib/AccessibilityNew.js +++ b/packages/material-ui-icons/lib/AccessibilityNew.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'AccessibilityNew'); \ No newline at end of file +}), 'AccessibilityNew'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityNewOutlined.js b/packages/material-ui-icons/lib/AccessibilityNewOutlined.js index b93e6c2f67c06a..d374e7153e249c 100644 --- a/packages/material-ui-icons/lib/AccessibilityNewOutlined.js +++ b/packages/material-ui-icons/lib/AccessibilityNewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'AccessibilityNewOutlined'); \ No newline at end of file +}), 'AccessibilityNewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityNewRounded.js b/packages/material-ui-icons/lib/AccessibilityNewRounded.js index ccf371e5efa23d..6659b5c609e680 100644 --- a/packages/material-ui-icons/lib/AccessibilityNewRounded.js +++ b/packages/material-ui-icons/lib/AccessibilityNewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.75 6.99c-.14-.55-.69-.87-1.24-.75-2.38.53-5.03.76-7.51.76s-5.13-.23-7.51-.76c-.55-.12-1.1.2-1.24.75-.14.56.2 1.13.75 1.26 1.61.36 3.35.61 5 .75v12c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V9c1.65-.14 3.39-.39 4.99-.75.56-.13.9-.7.76-1.26zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'AccessibilityNewRounded'); \ No newline at end of file +}), 'AccessibilityNewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityNewSharp.js b/packages/material-ui-icons/lib/AccessibilityNewSharp.js index e015c398fde341..d22f1ccc84e501 100644 --- a/packages/material-ui-icons/lib/AccessibilityNewSharp.js +++ b/packages/material-ui-icons/lib/AccessibilityNewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'AccessibilityNewSharp'); \ No newline at end of file +}), 'AccessibilityNewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityNewTwoTone.js b/packages/material-ui-icons/lib/AccessibilityNewTwoTone.js index a92410341026b7..f9c1a66fc97de8 100644 --- a/packages/material-ui-icons/lib/AccessibilityNewTwoTone.js +++ b/packages/material-ui-icons/lib/AccessibilityNewTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'AccessibilityNewTwoTone'); \ No newline at end of file +}), 'AccessibilityNewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityOutlined.js b/packages/material-ui-icons/lib/AccessibilityOutlined.js index b8944f38c7bd51..40bf00d768387b 100644 --- a/packages/material-ui-icons/lib/AccessibilityOutlined.js +++ b/packages/material-ui-icons/lib/AccessibilityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" -}), 'AccessibilityOutlined'); \ No newline at end of file +}), 'AccessibilityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityRounded.js b/packages/material-ui-icons/lib/AccessibilityRounded.js index 7fd05b122879fa..d1ab80e830bd52 100644 --- a/packages/material-ui-icons/lib/AccessibilityRounded.js +++ b/packages/material-ui-icons/lib/AccessibilityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm8 7h-5v12c0 .55-.45 1-1 1s-1-.45-1-1v-5h-2v5c0 .55-.45 1-1 1s-1-.45-1-1V9H4c-.55 0-1-.45-1-1s.45-1 1-1h16c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AccessibilityRounded'); \ No newline at end of file +}), 'AccessibilityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilitySharp.js b/packages/material-ui-icons/lib/AccessibilitySharp.js index d727c2e2d69216..a8627832bcde0e 100644 --- a/packages/material-ui-icons/lib/AccessibilitySharp.js +++ b/packages/material-ui-icons/lib/AccessibilitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" -}), 'AccessibilitySharp'); \ No newline at end of file +}), 'AccessibilitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibilityTwoTone.js b/packages/material-ui-icons/lib/AccessibilityTwoTone.js index db44c5ada60d28..07451abce3ceca 100644 --- a/packages/material-ui-icons/lib/AccessibilityTwoTone.js +++ b/packages/material-ui-icons/lib/AccessibilityTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" -}), 'AccessibilityTwoTone'); \ No newline at end of file +}), 'AccessibilityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Accessible.js b/packages/material-ui-icons/lib/Accessible.js index 38cc8b03a49f30..61764114dc36f8 100644 --- a/packages/material-ui-icons/lib/Accessible.js +++ b/packages/material-ui-icons/lib/Accessible.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" -}, "1")], 'Accessible'); \ No newline at end of file +}, "1")], 'Accessible'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleForward.js b/packages/material-ui-icons/lib/AccessibleForward.js index 10301f3c1d32c4..b6cba01513c0d9 100644 --- a/packages/material-ui-icons/lib/AccessibleForward.js +++ b/packages/material-ui-icons/lib/AccessibleForward.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "4.54", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C17.42 8.5 16.44 7 14.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L7.22 10l1.92.53L9.79 9H12l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H17v5h2v-5.5c0-1.1-.9-2-2-2z" -}, "1")], 'AccessibleForward'); \ No newline at end of file +}, "1")], 'AccessibleForward'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleForwardOutlined.js b/packages/material-ui-icons/lib/AccessibleForwardOutlined.js index 166211c24fb054..05de1c3335a706 100644 --- a/packages/material-ui-icons/lib/AccessibleForwardOutlined.js +++ b/packages/material-ui-icons/lib/AccessibleForwardOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "4.54", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z" -}, "1")], 'AccessibleForwardOutlined'); \ No newline at end of file +}, "1")], 'AccessibleForwardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleForwardRounded.js b/packages/material-ui-icons/lib/AccessibleForwardRounded.js index 1bcb3e9c6825cf..4b461ccd302e49 100644 --- a/packages/material-ui-icons/lib/AccessibleForwardRounded.js +++ b/packages/material-ui-icons/lib/AccessibleForwardRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "4.54", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2l-.28.76c-.21.56.11 1.17.68 1.33.49.14 1-.11 1.2-.58l.3-.71H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v4c0 .55.45 1 1 1s1-.45 1-1v-4.5c0-1.1-.9-2-2-2z" -}, "1")], 'AccessibleForwardRounded'); \ No newline at end of file +}, "1")], 'AccessibleForwardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleForwardSharp.js b/packages/material-ui-icons/lib/AccessibleForwardSharp.js index b6ea7aceb2196a..c9540cdd608f42 100644 --- a/packages/material-ui-icons/lib/AccessibleForwardSharp.js +++ b/packages/material-ui-icons/lib/AccessibleForwardSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "4.54", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm5-3.5h-3.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-3.12 7H18v5h2v-7.5z" -}, "1")], 'AccessibleForwardSharp'); \ No newline at end of file +}, "1")], 'AccessibleForwardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleForwardTwoTone.js b/packages/material-ui-icons/lib/AccessibleForwardTwoTone.js index d886de9082601a..5df1949e44c400 100644 --- a/packages/material-ui-icons/lib/AccessibleForwardTwoTone.js +++ b/packages/material-ui-icons/lib/AccessibleForwardTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "4.54", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z" -}, "1")], 'AccessibleForwardTwoTone'); \ No newline at end of file +}, "1")], 'AccessibleForwardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleOutlined.js b/packages/material-ui-icons/lib/AccessibleOutlined.js index 972e1232fa48eb..d4a0523e7e0b12 100644 --- a/packages/material-ui-icons/lib/AccessibleOutlined.js +++ b/packages/material-ui-icons/lib/AccessibleOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z" -}, "1")], 'AccessibleOutlined'); \ No newline at end of file +}, "1")], 'AccessibleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleRounded.js b/packages/material-ui-icons/lib/AccessibleRounded.js index ef6ff776e9b50e..1707f95c12095c 100644 --- a/packages/material-ui-icons/lib/AccessibleRounded.js +++ b/packages/material-ui-icons/lib/AccessibleRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11.9c0-.49-.36-.89-.84-.97-1.25-.21-2.43-.88-3.23-1.76l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V15c0 1.1.9 2 2 2h5v4c0 .55.45 1 1 1s1-.45 1-1v-4.5c0-1.1-.9-2-2-2h-3v-3.45c1 .83 2.4 1.54 3.8 1.82.62.13 1.2-.34 1.2-.97zM12.83 18c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" -}, "1")], 'AccessibleRounded'); \ No newline at end of file +}, "1")], 'AccessibleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleSharp.js b/packages/material-ui-icons/lib/AccessibleSharp.js index bd99097f0a6e01..efb631eeed089c 100644 --- a/packages/material-ui-icons/lib/AccessibleSharp.js +++ b/packages/material-ui-icons/lib/AccessibleSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V17h7v5h2v-7.5h-5v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" -}, "1")], 'AccessibleSharp'); \ No newline at end of file +}, "1")], 'AccessibleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccessibleTwoTone.js b/packages/material-ui-icons/lib/AccessibleTwoTone.js index 108b0f490dd32b..947a5f94d283cc 100644 --- a/packages/material-ui-icons/lib/AccessibleTwoTone.js +++ b/packages/material-ui-icons/lib/AccessibleTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" -}, "1")], 'AccessibleTwoTone'); \ No newline at end of file +}, "1")], 'AccessibleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalance.js b/packages/material-ui-icons/lib/AccountBalance.js index 4f71708f74a6b0..bc042302dad4f7 100644 --- a/packages/material-ui-icons/lib/AccountBalance.js +++ b/packages/material-ui-icons/lib/AccountBalance.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10h3v7H4zm6.5 0h3v7h-3zM2 19h20v3H2zm15-9h3v7h-3zm-5-9L2 6v2h20V6z" -}), 'AccountBalance'); \ No newline at end of file +}), 'AccountBalance'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceOutlined.js b/packages/material-ui-icons/lib/AccountBalanceOutlined.js index e9255c088f11b1..023e73ca99c06f 100644 --- a/packages/material-ui-icons/lib/AccountBalanceOutlined.js +++ b/packages/material-ui-icons/lib/AccountBalanceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z" -}), 'AccountBalanceOutlined'); \ No newline at end of file +}), 'AccountBalanceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceRounded.js b/packages/material-ui-icons/lib/AccountBalanceRounded.js index af4c88e74b9fd0..134ab7ea76b302 100644 --- a/packages/material-ui-icons/lib/AccountBalanceRounded.js +++ b/packages/material-ui-icons/lib/AccountBalanceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11.5v4c0 .83.67 1.5 1.5 1.5S7 16.33 7 15.5v-4c0-.83-.67-1.5-1.5-1.5S4 10.67 4 11.5zm6 0v4c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5zM3.5 22h16c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-16c-.83 0-1.5.67-1.5 1.5S2.67 22 3.5 22zM16 11.5v4c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5zM10.57 1.49l-7.9 4.16c-.41.21-.67.64-.67 1.1C2 7.44 2.56 8 3.25 8h16.51C20.44 8 21 7.44 21 6.75c0-.46-.26-.89-.67-1.1l-7.9-4.16c-.58-.31-1.28-.31-1.86 0z" -}), 'AccountBalanceRounded'); \ No newline at end of file +}), 'AccountBalanceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceSharp.js b/packages/material-ui-icons/lib/AccountBalanceSharp.js index 63aa17defedbe4..4c852acb341a35 100644 --- a/packages/material-ui-icons/lib/AccountBalanceSharp.js +++ b/packages/material-ui-icons/lib/AccountBalanceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z" -}), 'AccountBalanceSharp'); \ No newline at end of file +}), 'AccountBalanceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceTwoTone.js b/packages/material-ui-icons/lib/AccountBalanceTwoTone.js index 9966b0adf96e65..af71aeb3b81489 100644 --- a/packages/material-ui-icons/lib/AccountBalanceTwoTone.js +++ b/packages/material-ui-icons/lib/AccountBalanceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.29 6 5.21-2.74L16.71 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-9L2 6v2h19V6l-9.5-5zM6.29 6l5.21-2.74L16.71 6H6.29z" -}, "1")], 'AccountBalanceTwoTone'); \ No newline at end of file +}, "1")], 'AccountBalanceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceWallet.js b/packages/material-ui-icons/lib/AccountBalanceWallet.js index 60d3009e6c54be..a36e2df2dbb56f 100644 --- a/packages/material-ui-icons/lib/AccountBalanceWallet.js +++ b/packages/material-ui-icons/lib/AccountBalanceWallet.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'AccountBalanceWallet'); \ No newline at end of file +}), 'AccountBalanceWallet'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceWalletOutlined.js b/packages/material-ui-icons/lib/AccountBalanceWalletOutlined.js index 1b9c6327a449e4..bd4606e6b792ea 100644 --- a/packages/material-ui-icons/lib/AccountBalanceWalletOutlined.js +++ b/packages/material-ui-icons/lib/AccountBalanceWalletOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "12", r: "1.5" -}, "1")], 'AccountBalanceWalletOutlined'); \ No newline at end of file +}, "1")], 'AccountBalanceWalletOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceWalletRounded.js b/packages/material-ui-icons/lib/AccountBalanceWalletRounded.js index 422e5ee58889b2..3f1674d5f5f909 100644 --- a/packages/material-ui-icons/lib/AccountBalanceWalletRounded.js +++ b/packages/material-ui-icons/lib/AccountBalanceWalletRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16V8c0-1.1.89-2 2-2h9V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-1h-9c-1.11 0-2-.9-2-2zm3-8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h9V8h-9zm3 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'AccountBalanceWalletRounded'); \ No newline at end of file +}), 'AccountBalanceWalletRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceWalletSharp.js b/packages/material-ui-icons/lib/AccountBalanceWalletSharp.js index e1a1e354b8aecd..96776f706d246b 100644 --- a/packages/material-ui-icons/lib/AccountBalanceWalletSharp.js +++ b/packages/material-ui-icons/lib/AccountBalanceWalletSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 18v3H3V3h18v3H10v12h11zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'AccountBalanceWalletSharp'); \ No newline at end of file +}), 'AccountBalanceWalletSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBalanceWalletTwoTone.js b/packages/material-ui-icons/lib/AccountBalanceWalletTwoTone.js index 66884793715f27..796b4d166dd44a 100644 --- a/packages/material-ui-icons/lib/AccountBalanceWalletTwoTone.js +++ b/packages/material-ui-icons/lib/AccountBalanceWalletTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 17c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6V5H5v14h14v-2h-6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.38-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "12", r: "1.5" -}, "2")], 'AccountBalanceWalletTwoTone'); \ No newline at end of file +}, "2")], 'AccountBalanceWalletTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBox.js b/packages/material-ui-icons/lib/AccountBox.js index 9bddd7dedb0cc1..4870afc723679e 100644 --- a/packages/material-ui-icons/lib/AccountBox.js +++ b/packages/material-ui-icons/lib/AccountBox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" -}), 'AccountBox'); \ No newline at end of file +}), 'AccountBox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBoxOutlined.js b/packages/material-ui-icons/lib/AccountBoxOutlined.js index 4173315544cff8..599aaa1d532f04 100644 --- a/packages/material-ui-icons/lib/AccountBoxOutlined.js +++ b/packages/material-ui-icons/lib/AccountBoxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 10H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18zm-9.69-2h7.38c-.69-.56-2.38-1.12-3.69-1.12s-3.01.56-3.69 1.12z" -}), 'AccountBoxOutlined'); \ No newline at end of file +}), 'AccountBoxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBoxRounded.js b/packages/material-ui-icons/lib/AccountBoxRounded.js index 4bf75b4a855404..5eed1a24809530 100644 --- a/packages/material-ui-icons/lib/AccountBoxRounded.js +++ b/packages/material-ui-icons/lib/AccountBoxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" -}), 'AccountBoxRounded'); \ No newline at end of file +}), 'AccountBoxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBoxSharp.js b/packages/material-ui-icons/lib/AccountBoxSharp.js index 8980eb40084e3b..f217dc0a289580 100644 --- a/packages/material-ui-icons/lib/AccountBoxSharp.js +++ b/packages/material-ui-icons/lib/AccountBoxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18V3H3v18zM15 9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" -}), 'AccountBoxSharp'); \ No newline at end of file +}), 'AccountBoxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountBoxTwoTone.js b/packages/material-ui-icons/lib/AccountBoxTwoTone.js index 5b9367aa86cd61..6e6abdf6eac1f1 100644 --- a/packages/material-ui-icons/lib/AccountBoxTwoTone.js +++ b/packages/material-ui-icons/lib/AccountBoxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.47c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18H6v-1.53z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7-5H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-1-2.53c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.53zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" -}, "1")], 'AccountBoxTwoTone'); \ No newline at end of file +}, "1")], 'AccountBoxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountCircle.js b/packages/material-ui-icons/lib/AccountCircle.js index 8212375159f7bc..98bbcf15e6f649 100644 --- a/packages/material-ui-icons/lib/AccountCircle.js +++ b/packages/material-ui-icons/lib/AccountCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" -}), 'AccountCircle'); \ No newline at end of file +}), 'AccountCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountCircleOutlined.js b/packages/material-ui-icons/lib/AccountCircleOutlined.js index 8abb8f2ea36df5..a07e63363841fe 100644 --- a/packages/material-ui-icons/lib/AccountCircleOutlined.js +++ b/packages/material-ui-icons/lib/AccountCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z" -}), 'AccountCircleOutlined'); \ No newline at end of file +}), 'AccountCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountCircleRounded.js b/packages/material-ui-icons/lib/AccountCircleRounded.js index fb7298674b3afd..b3e518b4ec5832 100644 --- a/packages/material-ui-icons/lib/AccountCircleRounded.js +++ b/packages/material-ui-icons/lib/AccountCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" -}), 'AccountCircleRounded'); \ No newline at end of file +}), 'AccountCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountCircleSharp.js b/packages/material-ui-icons/lib/AccountCircleSharp.js index a1fb22bccb5363..135f1e79a0087c 100644 --- a/packages/material-ui-icons/lib/AccountCircleSharp.js +++ b/packages/material-ui-icons/lib/AccountCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" -}), 'AccountCircleSharp'); \ No newline at end of file +}), 'AccountCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountCircleTwoTone.js b/packages/material-ui-icons/lib/AccountCircleTwoTone.js index 827616c2efebbb..a8ab90c4b114b7 100644 --- a/packages/material-ui-icons/lib/AccountCircleTwoTone.js +++ b/packages/material-ui-icons/lib/AccountCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8 0 1.82.62 3.49 1.64 4.83 1.43-1.74 4.9-2.33 6.36-2.33s4.93.59 6.36 2.33C19.38 15.49 20 13.82 20 12c0-4.41-3.59-8-8-8zm0 9c-1.94 0-3.5-1.56-3.5-3.5S10.06 6 12 6s3.5 1.56 3.5 3.5S13.94 13 12 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z" -}, "1")], 'AccountCircleTwoTone'); \ No newline at end of file +}, "1")], 'AccountCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountTree.js b/packages/material-ui-icons/lib/AccountTree.js index 7e64ab050253dc..0201905e31e820 100644 --- a/packages/material-ui-icons/lib/AccountTree.js +++ b/packages/material-ui-icons/lib/AccountTree.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z" -}), 'AccountTree'); \ No newline at end of file +}), 'AccountTree'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountTreeOutlined.js b/packages/material-ui-icons/lib/AccountTreeOutlined.js index d2576ff83bcd34..a10453a0b5fb23 100644 --- a/packages/material-ui-icons/lib/AccountTreeOutlined.js +++ b/packages/material-ui-icons/lib/AccountTreeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3h7zM7 9H4V5h3v4zm10 6h3v4h-3v-4zm0-10h3v4h-3V5z" -}), 'AccountTreeOutlined'); \ No newline at end of file +}), 'AccountTreeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountTreeRounded.js b/packages/material-ui-icons/lib/AccountTreeRounded.js index f246d0485e10ba..539208c1a4fc89 100644 --- a/packages/material-ui-icons/lib/AccountTreeRounded.js +++ b/packages/material-ui-icons/lib/AccountTreeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11h3c1.11 0 2-.9 2-2V5c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1H9.01V5c0-1.11-.9-2-2-2H4c-1.1 0-2 .9-2 2v4c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2V8h2v7.01c0 1.65 1.34 2.99 2.99 2.99H15v1c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2v-4c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1h-1.01c-.54 0-.99-.45-.99-.99V8h2v1c0 1.1.9 2 2 2z" -}), 'AccountTreeRounded'); \ No newline at end of file +}), 'AccountTreeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountTreeSharp.js b/packages/material-ui-icons/lib/AccountTreeSharp.js index c1324c121d0d10..e6e5ca192c22e0 100644 --- a/packages/material-ui-icons/lib/AccountTreeSharp.js +++ b/packages/material-ui-icons/lib/AccountTreeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z" -}), 'AccountTreeSharp'); \ No newline at end of file +}), 'AccountTreeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AccountTreeTwoTone.js b/packages/material-ui-icons/lib/AccountTreeTwoTone.js index ae3e2322ec6c3f..1c844a4a0aedc5 100644 --- a/packages/material-ui-icons/lib/AccountTreeTwoTone.js +++ b/packages/material-ui-icons/lib/AccountTreeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3h7zM7 9H4V5h3v4zm10 6h3v4h-3v-4zm0-10h3v4h-3V5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5v4H4V5h3m13 0v4h-3V5h3m0 10v4h-3v-4h3", opacity: ".3" -}, "1")], 'AccountTreeTwoTone'); \ No newline at end of file +}, "1")], 'AccountTreeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdUnits.js b/packages/material-ui-icons/lib/AdUnits.js index 7856e725dad72d..602bed8f339c19 100644 --- a/packages/material-ui-icons/lib/AdUnits.js +++ b/packages/material-ui-icons/lib/AdUnits.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM8 6h8v2H8z" -}), 'AdUnits'); \ No newline at end of file +}), 'AdUnits'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdUnitsOutlined.js b/packages/material-ui-icons/lib/AdUnitsOutlined.js index 8b83f3a36a4b46..08f81a979ec032 100644 --- a/packages/material-ui-icons/lib/AdUnitsOutlined.js +++ b/packages/material-ui-icons/lib/AdUnitsOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 4V3h10v1H7zm0 14V6h10v12H7zm0 3v-1h10v1H7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7H8v2h8V7z" -}, "1")], 'AdUnitsOutlined'); \ No newline at end of file +}, "1")], 'AdUnitsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdUnitsRounded.js b/packages/material-ui-icons/lib/AdUnitsRounded.js index 65767c24326ee5..28d4fd2dcd6891 100644 --- a/packages/material-ui-icons/lib/AdUnitsRounded.js +++ b/packages/material-ui-icons/lib/AdUnitsRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 18H8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 6H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z" -}, "1")], 'AdUnitsRounded'); \ No newline at end of file +}, "1")], 'AdUnitsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdUnitsSharp.js b/packages/material-ui-icons/lib/AdUnitsSharp.js index 3bc355e9f5c4ba..96c99a39567bba 100644 --- a/packages/material-ui-icons/lib/AdUnitsSharp.js +++ b/packages/material-ui-icons/lib/AdUnitsSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5v22h14V1zm-2 18H7V5h10v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 6h8v2H8z" -}, "1")], 'AdUnitsSharp'); \ No newline at end of file +}, "1")], 'AdUnitsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdUnitsTwoTone.js b/packages/material-ui-icons/lib/AdUnitsTwoTone.js index 020250a6bbc0e6..17d29b52949959 100644 --- a/packages/material-ui-icons/lib/AdUnitsTwoTone.js +++ b/packages/material-ui-icons/lib/AdUnitsTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h10v1H7zm0 17h10v1H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 4V3h10v1H7zm0 14V6h10v12H7zm0 3v-1h10v1H7z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7H8v2h8V7z" -}, "2")], 'AdUnitsTwoTone'); \ No newline at end of file +}, "2")], 'AdUnitsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Adb.js b/packages/material-ui-icons/lib/Adb.js index 7edc84aae0a7ca..96b6c9355290c5 100644 --- a/packages/material-ui-icons/lib/Adb.js +++ b/packages/material-ui-icons/lib/Adb.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'Adb'); \ No newline at end of file +}), 'Adb'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdbOutlined.js b/packages/material-ui-icons/lib/AdbOutlined.js index 92018fec3718ce..bd7b816b67de42 100644 --- a/packages/material-ui-icons/lib/AdbOutlined.js +++ b/packages/material-ui-icons/lib/AdbOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'AdbOutlined'); \ No newline at end of file +}), 'AdbOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdbRounded.js b/packages/material-ui-icons/lib/AdbRounded.js index 8123b99a532450..eff908d69b13fc 100644 --- a/packages/material-ui-icons/lib/AdbRounded.js +++ b/packages/material-ui-icons/lib/AdbRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'AdbRounded'); \ No newline at end of file +}), 'AdbRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdbSharp.js b/packages/material-ui-icons/lib/AdbSharp.js index 10f6aad2c650f4..92f38a06c8488b 100644 --- a/packages/material-ui-icons/lib/AdbSharp.js +++ b/packages/material-ui-icons/lib/AdbSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'AdbSharp'); \ No newline at end of file +}), 'AdbSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdbTwoTone.js b/packages/material-ui-icons/lib/AdbTwoTone.js index 3d4453c59037dc..74bc675579ce3c 100644 --- a/packages/material-ui-icons/lib/AdbTwoTone.js +++ b/packages/material-ui-icons/lib/AdbTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'AdbTwoTone'); \ No newline at end of file +}), 'AdbTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Add.js b/packages/material-ui-icons/lib/Add.js index 06f0e9e89b94dc..cd486e2fe07ae0 100644 --- a/packages/material-ui-icons/lib/Add.js +++ b/packages/material-ui-icons/lib/Add.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" -}), 'Add'); \ No newline at end of file +}), 'Add'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAPhoto.js b/packages/material-ui-icons/lib/AddAPhoto.js index 9f573819f5d1a4..d97dad642ef59a 100644 --- a/packages/material-ui-icons/lib/AddAPhoto.js +++ b/packages/material-ui-icons/lib/AddAPhoto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H21c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3.2-5c0 1.77 1.43 3.2 3.2 3.2s3.2-1.43 3.2-3.2-1.43-3.2-3.2-3.2-3.2 1.43-3.2 3.2z" -}), 'AddAPhoto'); \ No newline at end of file +}), 'AddAPhoto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAPhotoOutlined.js b/packages/material-ui-icons/lib/AddAPhotoOutlined.js index 260d8e5132d954..9e012ee3050724 100644 --- a/packages/material-ui-icons/lib/AddAPhotoOutlined.js +++ b/packages/material-ui-icons/lib/AddAPhotoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z" -}), 'AddAPhotoOutlined'); \ No newline at end of file +}), 'AddAPhotoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAPhotoRounded.js b/packages/material-ui-icons/lib/AddAPhotoRounded.js index 5e60779f2dd87b..33089e89f1fb4e 100644 --- a/packages/material-ui-icons/lib/AddAPhotoRounded.js +++ b/packages/material-ui-icons/lib/AddAPhotoRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 8c0 .55.45 1 1 1s1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1H5V2c0-.55-.45-1-1-1s-1 .45-1 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "14", r: "3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65h-6.4c.17.3.28.63.28 1 0 1.1-.9 2-2 2H6v1c0 1.1-.9 2-2 2-.37 0-.7-.11-1-.28V20c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "2")], 'AddAPhotoRounded'); \ No newline at end of file +}, "2")], 'AddAPhotoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAPhotoSharp.js b/packages/material-ui-icons/lib/AddAPhotoSharp.js index eaa8b64988968d..ec11ecaaa7bce4 100644 --- a/packages/material-ui-icons/lib/AddAPhotoSharp.js +++ b/packages/material-ui-icons/lib/AddAPhotoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H23v16H3V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'AddAPhotoSharp'); \ No newline at end of file +}), 'AddAPhotoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAPhotoTwoTone.js b/packages/material-ui-icons/lib/AddAPhotoTwoTone.js index 8e17453fb66f8b..a9948a0cb7ff1a 100644 --- a/packages/material-ui-icons/lib/AddAPhotoTwoTone.js +++ b/packages/material-ui-icons/lib/AddAPhotoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 7v3H5v10h16V8h-4.05l-1.83-2H9v1H6zm7 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-3.17L16 4H9v2h6.12l1.83 2H21v12H5V10H3v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 9V6h3V4H5V1H3v3H0v2h3v3z" -}, "1")], 'AddAPhotoTwoTone'); \ No newline at end of file +}, "1")], 'AddAPhotoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlarm.js b/packages/material-ui-icons/lib/AddAlarm.js index 9b9c09241c4a34..73788679d35d4d 100644 --- a/packages/material-ui-icons/lib/AddAlarm.js +++ b/packages/material-ui-icons/lib/AddAlarm.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" -}), 'AddAlarm'); \ No newline at end of file +}), 'AddAlarm'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlarmOutlined.js b/packages/material-ui-icons/lib/AddAlarmOutlined.js index 7efb14c711477e..7b88b360d3750f 100644 --- a/packages/material-ui-icons/lib/AddAlarmOutlined.js +++ b/packages/material-ui-icons/lib/AddAlarmOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" -}), 'AddAlarmOutlined'); \ No newline at end of file +}), 'AddAlarmOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlarmRounded.js b/packages/material-ui-icons/lib/AddAlarmRounded.js index 45f8d998e4fd76..ed4fc9902232f8 100644 --- a/packages/material-ui-icons/lib/AddAlarmRounded.js +++ b/packages/material-ui-icons/lib/AddAlarmRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1zm6.18-6.99L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AddAlarmRounded'); \ No newline at end of file +}), 'AddAlarmRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlarmSharp.js b/packages/material-ui-icons/lib/AddAlarmSharp.js index 5d2f19725138db..2f63e0216e4140 100644 --- a/packages/material-ui-icons/lib/AddAlarmSharp.js +++ b/packages/material-ui-icons/lib/AddAlarmSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" -}), 'AddAlarmSharp'); \ No newline at end of file +}), 'AddAlarmSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlarmTwoTone.js b/packages/material-ui-icons/lib/AddAlarmTwoTone.js index f02d832cc6c140..f2b38fb9851770 100644 --- a/packages/material-ui-icons/lib/AddAlarmTwoTone.js +++ b/packages/material-ui-icons/lib/AddAlarmTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3zm9-3.28-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53z" -}, "1")], 'AddAlarmTwoTone'); \ No newline at end of file +}, "1")], 'AddAlarmTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlert.js b/packages/material-ui-icons/lib/AddAlert.js index 4feef80dbe1f07..c7c941638224e9 100644 --- a/packages/material-ui-icons/lib/AddAlert.js +++ b/packages/material-ui-icons/lib/AddAlert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z" -}), 'AddAlert'); \ No newline at end of file +}), 'AddAlert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlertOutlined.js b/packages/material-ui-icons/lib/AddAlertOutlined.js index dcd3de76005f4b..89dc12a3228bcf 100644 --- a/packages/material-ui-icons/lib/AddAlertOutlined.js +++ b/packages/material-ui-icons/lib/AddAlertOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}), 'AddAlertOutlined'); \ No newline at end of file +}), 'AddAlertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlertRounded.js b/packages/material-ui-icons/lib/AddAlertRounded.js index 6faae7e03f7ca1..4a53e82b1a9a8e 100644 --- a/packages/material-ui-icons/lib/AddAlertRounded.js +++ b/packages/material-ui-icons/lib/AddAlertRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm7-5h-1v-7c0-2.79-1.91-5.14-4.5-5.8v-.7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.7C7.91 4.86 6 7.21 6 10v7H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-5-4h-1v1c0 .55-.45 1-1 1s-1-.45-1-1v-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AddAlertRounded'); \ No newline at end of file +}), 'AddAlertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlertSharp.js b/packages/material-ui-icons/lib/AddAlertSharp.js index b9f3660a03bc08..f33edcaa6c4281 100644 --- a/packages/material-ui-icons/lib/AddAlertSharp.js +++ b/packages/material-ui-icons/lib/AddAlertSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-3-3.99h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z" -}), 'AddAlertSharp'); \ No newline at end of file +}), 'AddAlertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddAlertTwoTone.js b/packages/material-ui-icons/lib/AddAlertTwoTone.js index 0c7649f3ee49fe..6d976823338295 100644 --- a/packages/material-ui-icons/lib/AddAlertTwoTone.js +++ b/packages/material-ui-icons/lib/AddAlertTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm4 7h-3v3h-2v-3H8v-2h3V8h2v3h3v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zm-4-7V8h-2v3H8v2h3v3h2v-3h3v-2z" -}, "1")], 'AddAlertTwoTone'); \ No newline at end of file +}, "1")], 'AddAlertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBox.js b/packages/material-ui-icons/lib/AddBox.js index c9d6316402d41e..bdb0b9a562724c 100644 --- a/packages/material-ui-icons/lib/AddBox.js +++ b/packages/material-ui-icons/lib/AddBox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" -}), 'AddBox'); \ No newline at end of file +}), 'AddBox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBoxOutlined.js b/packages/material-ui-icons/lib/AddBoxOutlined.js index 8a13f1c29ec342..6098bbb1fbd432 100644 --- a/packages/material-ui-icons/lib/AddBoxOutlined.js +++ b/packages/material-ui-icons/lib/AddBoxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z" -}), 'AddBoxOutlined'); \ No newline at end of file +}), 'AddBoxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBoxRounded.js b/packages/material-ui-icons/lib/AddBoxRounded.js index ee19fd2739748a..f6c03f3bfa42e3 100644 --- a/packages/material-ui-icons/lib/AddBoxRounded.js +++ b/packages/material-ui-icons/lib/AddBoxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AddBoxRounded'); \ No newline at end of file +}), 'AddBoxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBoxSharp.js b/packages/material-ui-icons/lib/AddBoxSharp.js index 4bed1c5878c97e..9a4153e92d290f 100644 --- a/packages/material-ui-icons/lib/AddBoxSharp.js +++ b/packages/material-ui-icons/lib/AddBoxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-4 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" -}), 'AddBoxSharp'); \ No newline at end of file +}), 'AddBoxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBoxTwoTone.js b/packages/material-ui-icons/lib/AddBoxTwoTone.js index 4ba35066b355c9..e56ad4d2f5ee98 100644 --- a/packages/material-ui-icons/lib/AddBoxTwoTone.js +++ b/packages/material-ui-icons/lib/AddBoxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm2-8h4V7h2v4h4v2h-4v4h-2v-4H7v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z" -}, "1")], 'AddBoxTwoTone'); \ No newline at end of file +}, "1")], 'AddBoxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBusiness.js b/packages/material-ui-icons/lib/AddBusiness.js index 7af59a1fe8ebd1..234d0cfcd2b1fe 100644 --- a/packages/material-ui-icons/lib/AddBusiness.js +++ b/packages/material-ui-icons/lib/AddBusiness.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zM2 4h15v2H2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}, "1")], 'AddBusiness'); \ No newline at end of file +}, "1")], 'AddBusiness'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBusinessOutlined.js b/packages/material-ui-icons/lib/AddBusinessOutlined.js index bc27c00f8d1efa..0945869325c07c 100644 --- a/packages/material-ui-icons/lib/AddBusinessOutlined.js +++ b/packages/material-ui-icons/lib/AddBusinessOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4h15v2H2zm13 13h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zm-5.96-6 .6-3h11.72l.6 3H3.04z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 18h-3v-3h-2v3h-3v2h3v3h2v-3h3z" -}, "1")], 'AddBusinessOutlined'); \ No newline at end of file +}, "1")], 'AddBusinessOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBusinessRounded.js b/packages/material-ui-icons/lib/AddBusinessRounded.js index 2fcd81552a7b66..bdb5bda8cb8023 100644 --- a/packages/material-ui-icons/lib/AddBusinessRounded.js +++ b/packages/material-ui-icons/lib/AddBusinessRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h13c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm12 11h2v-3h.18c.63 0 1.1-.58.98-1.2l-1-5c-.09-.46-.5-.8-.98-.8H2.82c-.48 0-.89.34-.98.8l-1 5c-.12.62.35 1.2.98 1.2H2v5c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-5h4v3zm-6 1H4v-4h5v4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z" -}, "1")], 'AddBusinessRounded'); \ No newline at end of file +}, "1")], 'AddBusinessRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBusinessSharp.js b/packages/material-ui-icons/lib/AddBusinessSharp.js index 66d8e8a3157c1c..66a378d4519853 100644 --- a/packages/material-ui-icons/lib/AddBusinessSharp.js +++ b/packages/material-ui-icons/lib/AddBusinessSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zM2 4h15v2H2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}, "1")], 'AddBusinessSharp'); \ No newline at end of file +}, "1")], 'AddBusinessSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddBusinessTwoTone.js b/packages/material-ui-icons/lib/AddBusinessTwoTone.js index fc782573f50694..aea4306df9bf59 100644 --- a/packages/material-ui-icons/lib/AddBusinessTwoTone.js +++ b/packages/material-ui-icons/lib/AddBusinessTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.36 9H3.64l-.6 3h12.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4h15v2H2zm13 13h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zm-5.96-6 .6-3h11.72l.6 3H3.04z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}, "2")], 'AddBusinessTwoTone'); \ No newline at end of file +}, "2")], 'AddBusinessTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircle.js b/packages/material-ui-icons/lib/AddCircle.js index b13f10f6354ed8..8096cf318f071f 100644 --- a/packages/material-ui-icons/lib/AddCircle.js +++ b/packages/material-ui-icons/lib/AddCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" -}), 'AddCircle'); \ No newline at end of file +}), 'AddCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleOutline.js b/packages/material-ui-icons/lib/AddCircleOutline.js index 1c26306b11d035..292f356bf33e37 100644 --- a/packages/material-ui-icons/lib/AddCircleOutline.js +++ b/packages/material-ui-icons/lib/AddCircleOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'AddCircleOutline'); \ No newline at end of file +}), 'AddCircleOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleOutlineOutlined.js b/packages/material-ui-icons/lib/AddCircleOutlineOutlined.js index c1052c667eae80..3976016f9dee30 100644 --- a/packages/material-ui-icons/lib/AddCircleOutlineOutlined.js +++ b/packages/material-ui-icons/lib/AddCircleOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'AddCircleOutlineOutlined'); \ No newline at end of file +}), 'AddCircleOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleOutlineRounded.js b/packages/material-ui-icons/lib/AddCircleOutlineRounded.js index c9bfe093eb7935..a110db7d4e6f4e 100644 --- a/packages/material-ui-icons/lib/AddCircleOutlineRounded.js +++ b/packages/material-ui-icons/lib/AddCircleOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'AddCircleOutlineRounded'); \ No newline at end of file +}), 'AddCircleOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleOutlineSharp.js b/packages/material-ui-icons/lib/AddCircleOutlineSharp.js index b476d8c484a395..1fe30cefe86cbc 100644 --- a/packages/material-ui-icons/lib/AddCircleOutlineSharp.js +++ b/packages/material-ui-icons/lib/AddCircleOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'AddCircleOutlineSharp'); \ No newline at end of file +}), 'AddCircleOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/AddCircleOutlineTwoTone.js index 461e0f40ec7ad8..5cc11514cd6b9b 100644 --- a/packages/material-ui-icons/lib/AddCircleOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/AddCircleOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'AddCircleOutlineTwoTone'); \ No newline at end of file +}), 'AddCircleOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleOutlined.js b/packages/material-ui-icons/lib/AddCircleOutlined.js index bd1f903b0353ce..4bbafc8c4d2419 100644 --- a/packages/material-ui-icons/lib/AddCircleOutlined.js +++ b/packages/material-ui-icons/lib/AddCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" -}), 'AddCircleOutlined'); \ No newline at end of file +}), 'AddCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleRounded.js b/packages/material-ui-icons/lib/AddCircleRounded.js index 053e7129ca1f3b..e20ef99b38431c 100644 --- a/packages/material-ui-icons/lib/AddCircleRounded.js +++ b/packages/material-ui-icons/lib/AddCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AddCircleRounded'); \ No newline at end of file +}), 'AddCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleSharp.js b/packages/material-ui-icons/lib/AddCircleSharp.js index ea9485b28ae5b0..704ab676dbdb90 100644 --- a/packages/material-ui-icons/lib/AddCircleSharp.js +++ b/packages/material-ui-icons/lib/AddCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" -}), 'AddCircleSharp'); \ No newline at end of file +}), 'AddCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCircleTwoTone.js b/packages/material-ui-icons/lib/AddCircleTwoTone.js index 4786ab0c67ee71..f474988c68a6ab 100644 --- a/packages/material-ui-icons/lib/AddCircleTwoTone.js +++ b/packages/material-ui-icons/lib/AddCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'AddCircleTwoTone'); \ No newline at end of file +}, "1")], 'AddCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddComment.js b/packages/material-ui-icons/lib/AddComment.js index eefb47d7aa2cdb..109f2fcfeb55f1 100644 --- a/packages/material-ui-icons/lib/AddComment.js +++ b/packages/material-ui-icons/lib/AddComment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 11h-4v4h-2v-4H7V9h4V5h2v4h4v2z" -}), 'AddComment'); \ No newline at end of file +}), 'AddComment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCommentOutlined.js b/packages/material-ui-icons/lib/AddCommentOutlined.js index 908bb71a29d502..cff5f75db61ca0 100644 --- a/packages/material-ui-icons/lib/AddCommentOutlined.js +++ b/packages/material-ui-icons/lib/AddCommentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z" -}), 'AddCommentOutlined'); \ No newline at end of file +}), 'AddCommentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCommentRounded.js b/packages/material-ui-icons/lib/AddCommentRounded.js index d7cc1257670da0..c47fda64f11bdb 100644 --- a/packages/material-ui-icons/lib/AddCommentRounded.js +++ b/packages/material-ui-icons/lib/AddCommentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-6 7h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AddCommentRounded'); \ No newline at end of file +}), 'AddCommentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCommentSharp.js b/packages/material-ui-icons/lib/AddCommentSharp.js index 25ff306ddd9ed1..563c907ff79d6c 100644 --- a/packages/material-ui-icons/lib/AddCommentSharp.js +++ b/packages/material-ui-icons/lib/AddCommentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v16h16l4 4V2zm-5 9h-4v4h-2v-4H7V9h4V5h2v4h4v2z" -}), 'AddCommentSharp'); \ No newline at end of file +}), 'AddCommentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddCommentTwoTone.js b/packages/material-ui-icons/lib/AddCommentTwoTone.js index 49b5b49549b5b9..8dc2bfd7d87e23 100644 --- a/packages/material-ui-icons/lib/AddCommentTwoTone.js +++ b/packages/material-ui-icons/lib/AddCommentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v12h14.83L20 17.17V4H4zm13 7h-4v4h-2v-4H7V9h4V5h2v4h4v2z", opacity: ".3" -}, "1")], 'AddCommentTwoTone'); \ No newline at end of file +}, "1")], 'AddCommentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddIcCall.js b/packages/material-ui-icons/lib/AddIcCall.js index 270e58c61dca64..1a70a8cfbd8266 100644 --- a/packages/material-ui-icons/lib/AddIcCall.js +++ b/packages/material-ui-icons/lib/AddIcCall.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z" -}), 'AddIcCall'); \ No newline at end of file +}), 'AddIcCall'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddIcCallOutlined.js b/packages/material-ui-icons/lib/AddIcCallOutlined.js index f604e1e2e0eb5a..f3052eef19f9db 100644 --- a/packages/material-ui-icons/lib/AddIcCallOutlined.js +++ b/packages/material-ui-icons/lib/AddIcCallOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}), 'AddIcCallOutlined'); \ No newline at end of file +}), 'AddIcCallOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddIcCallRounded.js b/packages/material-ui-icons/lib/AddIcCallRounded.js index b098afabba7e71..f92cd28a5a5ecd 100644 --- a/packages/material-ui-icons/lib/AddIcCallRounded.js +++ b/packages/material-ui-icons/lib/AddIcCallRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1zm5.21 7.27-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64l-.29-2.52c-.11-1.01-.97-1.78-1.98-1.78H5.02c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1-.76-1.86-1.77-1.97z" -}), 'AddIcCallRounded'); \ No newline at end of file +}), 'AddIcCallRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddIcCallSharp.js b/packages/material-ui-icons/lib/AddIcCallSharp.js index 063a7b7d60a240..21ebb3a48a0066 100644 --- a/packages/material-ui-icons/lib/AddIcCallSharp.js +++ b/packages/material-ui-icons/lib/AddIcCallSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-3V3h-2v3h-3v2h3v3h2V8h3zm0 9.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" -}), 'AddIcCallSharp'); \ No newline at end of file +}), 'AddIcCallSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddIcCallTwoTone.js b/packages/material-ui-icons/lib/AddIcCallTwoTone.js index b84e60e8df6612..9bad7c946f4f69 100644 --- a/packages/material-ui-icons/lib/AddIcCallTwoTone.js +++ b/packages/material-ui-icons/lib/AddIcCallTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 17.41c-.88-.07-1.75-.22-2.6-.45l-1.2 1.2c1.21.41 2.48.67 3.8.76v-1.51zM6.54 4.95h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 20.95c.55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.99c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zm10.97 6h2v-3h3v-2h-3v-3h-2v3h-3v2h3z" -}, "1")], 'AddIcCallTwoTone'); \ No newline at end of file +}, "1")], 'AddIcCallTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLink.js b/packages/material-ui-icons/lib/AddLink.js index 21876aec4de3c1..fc09525b66d52c 100644 --- a/packages/material-ui-icons/lib/AddLink.js +++ b/packages/material-ui-icons/lib/AddLink.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h8v2H8zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3z" -}), 'AddLink'); \ No newline at end of file +}), 'AddLink'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLinkOutlined.js b/packages/material-ui-icons/lib/AddLinkOutlined.js index eeb15fb6753e71..c4c69d98c38e10 100644 --- a/packages/material-ui-icons/lib/AddLinkOutlined.js +++ b/packages/material-ui-icons/lib/AddLinkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" -}), 'AddLinkOutlined'); \ No newline at end of file +}), 'AddLinkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLinkRounded.js b/packages/material-ui-icons/lib/AddLinkRounded.js index 7ff3fc9ec0998c..81665157ea0428 100644 --- a/packages/material-ui-icons/lib/AddLinkRounded.js +++ b/packages/material-ui-icons/lib/AddLinkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11h6c.55 0 1 .45 1 1s-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1zm11.93 1c.62 0 1.07-.59.93-1.19C21.32 8.62 19.35 7 17 7h-3.05c-.52 0-.95.43-.95.95s.43.95.95.95H17c1.45 0 2.67 1 3.01 2.34.11.44.47.76.92.76zm-16.97-.62C4.24 9.91 5.62 8.9 7.12 8.9h2.93c.52 0 .95-.43.95-.95S10.57 7 10.05 7H7.22c-2.61 0-4.94 1.91-5.19 4.51C1.74 14.49 4.08 17 7 17h3.05c.52 0 .95-.43.95-.95s-.43-.95-.95-.95H7c-1.91 0-3.42-1.74-3.04-3.72zM18 12c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1z" -}), 'AddLinkRounded'); \ No newline at end of file +}), 'AddLinkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLinkSharp.js b/packages/material-ui-icons/lib/AddLinkSharp.js index 0d3817906d21cc..c4c5d85ab9e344 100644 --- a/packages/material-ui-icons/lib/AddLinkSharp.js +++ b/packages/material-ui-icons/lib/AddLinkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" -}), 'AddLinkSharp'); \ No newline at end of file +}), 'AddLinkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLinkTwoTone.js b/packages/material-ui-icons/lib/AddLinkTwoTone.js index 7abf6b231cbffb..aed9ca6a8b0e5b 100644 --- a/packages/material-ui-icons/lib/AddLinkTwoTone.js +++ b/packages/material-ui-icons/lib/AddLinkTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" -}), 'AddLinkTwoTone'); \ No newline at end of file +}), 'AddLinkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocation.js b/packages/material-ui-icons/lib/AddLocation.js index 97efcbddbce2b4..a7ad08b84cf6c1 100644 --- a/packages/material-ui-icons/lib/AddLocation.js +++ b/packages/material-ui-icons/lib/AddLocation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm4 8h-3v3h-2v-3H8V8h3V5h2v3h3v2z" -}), 'AddLocation'); \ No newline at end of file +}), 'AddLocation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationAlt.js b/packages/material-ui-icons/lib/AddLocationAlt.js index 830f1bd34a0d09..88acd7a8edef91 100644 --- a/packages/material-ui-icons/lib/AddLocationAlt.js +++ b/packages/material-ui-icons/lib/AddLocationAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" -}), 'AddLocationAlt'); \ No newline at end of file +}), 'AddLocationAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationAltOutlined.js b/packages/material-ui-icons/lib/AddLocationAltOutlined.js index fd31e605c013e5..7bea205e40b0ea 100644 --- a/packages/material-ui-icons/lib/AddLocationAltOutlined.js +++ b/packages/material-ui-icons/lib/AddLocationAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z" -}), 'AddLocationAltOutlined'); \ No newline at end of file +}), 'AddLocationAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationAltRounded.js b/packages/material-ui-icons/lib/AddLocationAltRounded.js index 43c96b49448b5a..235897750da0e7 100644 --- a/packages/material-ui-icons/lib/AddLocationAltRounded.js +++ b/packages/material-ui-icons/lib/AddLocationAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 0c.55 0 1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1h-2v2c0 .55-.45 1-1 1s-1-.45-1-1V5h-2c-.55 0-1-.45-1-1s.45-1 1-1h2V1c0-.55.45-1 1-1zm-7 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.72-9.53c-.44.36-.72.91-.72 1.53 0 1.1.9 2 2 2h1v1c0 1.1.9 2 2 2 .32 0 .62-.08.89-.21.07.45.11.92.11 1.41 0 3.18-2.45 6.92-7.34 11.23-.38.33-.95.33-1.33 0C6.45 17.12 4 13.38 4 10.2 4 5.22 7.8 2 12 2c.94 0 1.86.16 2.72.47z" -}), 'AddLocationAltRounded'); \ No newline at end of file +}), 'AddLocationAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationAltSharp.js b/packages/material-ui-icons/lib/AddLocationAltSharp.js index 74599d22a2e012..69d6f3b053de74 100644 --- a/packages/material-ui-icons/lib/AddLocationAltSharp.js +++ b/packages/material-ui-icons/lib/AddLocationAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" -}), 'AddLocationAltSharp'); \ No newline at end of file +}), 'AddLocationAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationAltTwoTone.js b/packages/material-ui-icons/lib/AddLocationAltTwoTone.js index 29756df110941c..a43ffc4ad57b34 100644 --- a/packages/material-ui-icons/lib/AddLocationAltTwoTone.js +++ b/packages/material-ui-icons/lib/AddLocationAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M14 4.8V7h3v3h1.41c.06.39.09.79.09 1.2 0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 16.99 5.5 13.77 5.5 11.2c0-3.84 2.82-6.7 6.5-6.7.7 0 1.37.1 2 .3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm2-9.75v2.08c-.62-.22-1.3-.33-2-.33-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14 0-.41-.03-.81-.1-1.2h2.02c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" -}, "1")], 'AddLocationAltTwoTone'); \ No newline at end of file +}, "1")], 'AddLocationAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationOutlined.js b/packages/material-ui-icons/lib/AddLocationOutlined.js index 43b3fcebbf0820..60a9b5e0b68fba 100644 --- a/packages/material-ui-icons/lib/AddLocationOutlined.js +++ b/packages/material-ui-icons/lib/AddLocationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6v3h3v2h-3v3h-2v-3H8V9h3V6h2zm5 4.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'AddLocationOutlined'); \ No newline at end of file +}), 'AddLocationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationRounded.js b/packages/material-ui-icons/lib/AddLocationRounded.js index df2e053396e19e..a22b3c50761ace 100644 --- a/packages/material-ui-icons/lib/AddLocationRounded.js +++ b/packages/material-ui-icons/lib/AddLocationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7c0-.55-.44-1-1-1-.55 0-1 .44-1 1v2H9c-.55 0-1 .44-1 1 0 .55.44 1 1 1h2v2c0 .55.44 1 1 1 .55 0 1-.44 1-1v-2h2c.55 0 1-.44 1-1 0-.55-.44-1-1-1h-2V7zm-1-5c4.2 0 8 3.22 8 8.2 0 3.18-2.45 6.92-7.34 11.23-.38.33-.95.33-1.33 0C6.45 17.12 4 13.38 4 10.2 4 5.22 7.8 2 12 2z" -}), 'AddLocationRounded'); \ No newline at end of file +}), 'AddLocationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationSharp.js b/packages/material-ui-icons/lib/AddLocationSharp.js index e0115e8aa353bd..23172151abc2aa 100644 --- a/packages/material-ui-icons/lib/AddLocationSharp.js +++ b/packages/material-ui-icons/lib/AddLocationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6h-2v3H8v2h3v3h2v-3h3V9h-3V6zm-1-4c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'AddLocationSharp'); \ No newline at end of file +}), 'AddLocationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddLocationTwoTone.js b/packages/material-ui-icons/lib/AddLocationTwoTone.js index 01b0d3acb22d7b..91b3f6ee5fb527 100644 --- a/packages/material-ui-icons/lib/AddLocationTwoTone.js +++ b/packages/material-ui-icons/lib/AddLocationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6v3h3v2h-3v3h-2v-3H8V9h3V6h2zm5 4.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}, "1")], 'AddLocationTwoTone'); \ No newline at end of file +}, "1")], 'AddLocationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddModerator.js b/packages/material-ui-icons/lib/AddModerator.js index 3e7bb5d03cec59..6fbd2c7e289300 100644 --- a/packages/material-ui-icons/lib/AddModerator.js +++ b/packages/material-ui-icons/lib/AddModerator.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.22 22.61c-.4.15-.8.29-1.22.39-5.16-1.26-9-6.45-9-12V5l9-4 9 4v6c0 .9-.11 1.78-.3 2.65-.81-.41-1.73-.65-2.7-.65-3.31 0-6 2.69-6 6 0 1.36.46 2.61 1.22 3.61zM19 20v2.99s-1.99.01-2 0V20h-3v-2h3v-3h2v3h3v2h-3z" -}), 'AddModerator'); \ No newline at end of file +}), 'AddModerator'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddModeratorOutlined.js b/packages/material-ui-icons/lib/AddModeratorOutlined.js index e0754cb9e9e7d8..fdf923ef4a663f 100644 --- a/packages/material-ui-icons/lib/AddModeratorOutlined.js +++ b/packages/material-ui-icons/lib/AddModeratorOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 11.09v-4.7l6-2.25 6 2.25v3.69c.71.1 1.38.31 2 .6V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02-.79-.78-1.4-1.76-1.75-2.84C7.76 17.53 6 14.42 6 11.09z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z" -}, "1")], 'AddModeratorOutlined'); \ No newline at end of file +}, "1")], 'AddModeratorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddModeratorRounded.js b/packages/material-ui-icons/lib/AddModeratorRounded.js index f0f08a104e2185..ad6e9332949fc4 100644 --- a/packages/material-ui-icons/lib/AddModeratorRounded.js +++ b/packages/material-ui-icons/lib/AddModeratorRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c1.08 0 2.09.25 3 .68v-4.3c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.17-.95-.17-1.4 0l-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02C10.8 20.71 10 18.95 10 17c0-3.87 3.13-7 7-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm2.5 5.5h-2v2c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-2h-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h2v-2c0-.28.22-.5.5-.5s.5.22.5.5v2h2c.28 0 .5.22.5.5s-.22.5-.5.5z" -}, "1")], 'AddModeratorRounded'); \ No newline at end of file +}, "1")], 'AddModeratorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddModeratorSharp.js b/packages/material-ui-icons/lib/AddModeratorSharp.js index 2d98be4f55fb09..2d962356b4de5c 100644 --- a/packages/material-ui-icons/lib/AddModeratorSharp.js +++ b/packages/material-ui-icons/lib/AddModeratorSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c1.08 0 2.09.25 3 .68V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02C10.8 20.71 10 18.95 10 17c0-3.87 3.13-7 7-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z" -}, "1")], 'AddModeratorSharp'); \ No newline at end of file +}, "1")], 'AddModeratorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddModeratorTwoTone.js b/packages/material-ui-icons/lib/AddModeratorTwoTone.js index 89872d3ca59510..87a42ac8615912 100644 --- a/packages/material-ui-icons/lib/AddModeratorTwoTone.js +++ b/packages/material-ui-icons/lib/AddModeratorTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.14 6 6.39v4.7c0 3.33 1.76 6.44 4.33 8.04-1.56-4.89 2.5-9.8 7.67-9.05V6.39l-6-2.25z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.33 19.13C7.76 17.53 6 14.42 6 11.09v-4.7l6-2.25 6 2.25v3.69c.71.1 1.38.31 2 .6V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02-.79-.79-1.4-1.76-1.75-2.85z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z" -}, "2")], 'AddModeratorTwoTone'); \ No newline at end of file +}, "2")], 'AddModeratorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddOutlined.js b/packages/material-ui-icons/lib/AddOutlined.js index 2c74689ff26fe2..cb133a83e80e0a 100644 --- a/packages/material-ui-icons/lib/AddOutlined.js +++ b/packages/material-ui-icons/lib/AddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" -}), 'AddOutlined'); \ No newline at end of file +}), 'AddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddPhotoAlternate.js b/packages/material-ui-icons/lib/AddPhotoAlternate.js index 569d4356bbd156..4bec8009603922 100644 --- a/packages/material-ui-icons/lib/AddPhotoAlternate.js +++ b/packages/material-ui-icons/lib/AddPhotoAlternate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8h-3zM5 19l3-4 2 3 3-4 4 5H5z" -}), 'AddPhotoAlternate'); \ No newline at end of file +}), 'AddPhotoAlternate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddPhotoAlternateOutlined.js b/packages/material-ui-icons/lib/AddPhotoAlternateOutlined.js index 0f92c497958437..5e8988984f0122 100644 --- a/packages/material-ui-icons/lib/AddPhotoAlternateOutlined.js +++ b/packages/material-ui-icons/lib/AddPhotoAlternateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z" -}), 'AddPhotoAlternateOutlined'); \ No newline at end of file +}), 'AddPhotoAlternateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddPhotoAlternateRounded.js b/packages/material-ui-icons/lib/AddPhotoAlternateRounded.js index 26d9b226d27735..c125863e60f684 100644 --- a/packages/material-ui-icons/lib/AddPhotoAlternateRounded.js +++ b/packages/material-ui-icons/lib/AddPhotoAlternateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.02 5H19V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V5h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V7h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98zM16 9.01V8h-1.01c-.53 0-1.03-.21-1.41-.58-.37-.38-.58-.88-.58-1.44 0-.36.1-.69.27-.98H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.28c-.3.17-.64.28-1.02.28-1.09-.01-1.98-.9-1.98-1.99zM15.96 19H6c-.41 0-.65-.47-.4-.8l1.98-2.63c.21-.28.62-.26.82.02L10 18l2.61-3.48c.2-.26.59-.27.79-.01l2.95 3.68c.26.33.03.81-.39.81z" -}), 'AddPhotoAlternateRounded'); \ No newline at end of file +}), 'AddPhotoAlternateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddPhotoAlternateSharp.js b/packages/material-ui-icons/lib/AddPhotoAlternateSharp.js index 00552ce96915e8..fa76ee00dbb912 100644 --- a/packages/material-ui-icons/lib/AddPhotoAlternateSharp.js +++ b/packages/material-ui-icons/lib/AddPhotoAlternateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H3v16h16V11h-3zM5 19l3-4 2 3 3-4 4 5H5z" -}), 'AddPhotoAlternateSharp'); \ No newline at end of file +}), 'AddPhotoAlternateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddPhotoAlternateTwoTone.js b/packages/material-ui-icons/lib/AddPhotoAlternateTwoTone.js index 76f05b5d494c39..54170e1df11f69 100644 --- a/packages/material-ui-icons/lib/AddPhotoAlternateTwoTone.js +++ b/packages/material-ui-icons/lib/AddPhotoAlternateTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.21 16.83-1.96-2.36L5.5 18h11l-3.54-4.71z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 18h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zM17 7h-3V6H4v14h14V10h-1V7z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4V1h-2v3h-3v2h3v2.99h2V6h3V4zm-2 16H4V6h10V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V10h-2v10z" -}, "2")], 'AddPhotoAlternateTwoTone'); \ No newline at end of file +}, "2")], 'AddPhotoAlternateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddReaction.js b/packages/material-ui-icons/lib/AddReaction.js index b006a1f4a48ecf..457ef89bbc16aa 100644 --- a/packages/material-ui-icons/lib/AddReaction.js +++ b/packages/material-ui-icons/lib/AddReaction.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9V7h-2V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H18zm-2.5-1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zM22 3h2v2h-2v2h-2V5h-2V3h2V1h2v2z" -}), 'AddReaction'); \ No newline at end of file +}), 'AddReaction'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddReactionOutlined.js b/packages/material-ui-icons/lib/AddReactionOutlined.js index da0d9d993ad4c0..ed26f00d538bc6 100644 --- a/packages/material-ui-icons/lib/AddReactionOutlined.js +++ b/packages/material-ui-icons/lib/AddReactionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm5 8c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm3.5-6.5c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zM22 1h-2v2h-2v2h2v2h2V5h2V3h-2V1zm-2 11c0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.46 0 2.82.4 4 1.08V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H19.4c.38.93.6 1.94.6 3z" -}), 'AddReactionOutlined'); \ No newline at end of file +}), 'AddReactionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddReactionRounded.js b/packages/material-ui-icons/lib/AddReactionRounded.js index fb3cde1fb1c7ad..e9eaf412a889d0 100644 --- a/packages/material-ui-icons/lib/AddReactionRounded.js +++ b/packages/material-ui-icons/lib/AddReactionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 4c0 .55-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1zm-2.48 4.95c.31.96.48 1.99.48 3.05 0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2c1.5 0 2.92.34 4.2.94-.12.33-.2.68-.2 1.06 0 1.35.9 2.5 2.13 2.87C18.5 8.1 19.65 9 21 9c.18 0 .35-.02.52-.05zM7 9.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5zm9.31 4.5H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75s3.8-1.11 4.75-2.75c.19-.33-.05-.75-.44-.75zM17 9.5c0-.83-.67-1.5-1.5-1.5S14 8.67 14 9.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" -}), 'AddReactionRounded'); \ No newline at end of file +}), 'AddReactionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddReactionSharp.js b/packages/material-ui-icons/lib/AddReactionSharp.js index fe1a2c2a9aea2b..0bda144760ebfc 100644 --- a/packages/material-ui-icons/lib/AddReactionSharp.js +++ b/packages/material-ui-icons/lib/AddReactionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9V7h-2V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H18zm-2.5-1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zM22 3h2v2h-2v2h-2V5h-2V3h2V1h2v2z" -}), 'AddReactionSharp'); \ No newline at end of file +}), 'AddReactionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddReactionTwoTone.js b/packages/material-ui-icons/lib/AddReactionTwoTone.js index e22e889b0779a5..c629d1c9690449 100644 --- a/packages/material-ui-icons/lib/AddReactionTwoTone.js +++ b/packages/material-ui-icons/lib/AddReactionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.41 9H18V7h-2V5.08C14.82 4.4 13.46 4 12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8c0-1.06-.21-2.07-.59-3zM15.5 8c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm5 8c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm3.5-6.5c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zM22 1h-2v2h-2v2h2v2h2V5h2V3h-2V1zm-2 11c0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.46 0 2.82.4 4 1.08V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H19.4c.38.93.6 1.94.6 3z" -}, "1")], 'AddReactionTwoTone'); \ No newline at end of file +}, "1")], 'AddReactionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddRoad.js b/packages/material-ui-icons/lib/AddRoad.js index 19fffe9933e4b7..af6963241eccd6 100644 --- a/packages/material-ui-icons/lib/AddRoad.js +++ b/packages/material-ui-icons/lib/AddRoad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" -}), 'AddRoad'); \ No newline at end of file +}), 'AddRoad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddRoadOutlined.js b/packages/material-ui-icons/lib/AddRoadOutlined.js index 4057ede1867cfb..74dcaeb1abf907 100644 --- a/packages/material-ui-icons/lib/AddRoadOutlined.js +++ b/packages/material-ui-icons/lib/AddRoadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" -}), 'AddRoadOutlined'); \ No newline at end of file +}), 'AddRoadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddRoadRounded.js b/packages/material-ui-icons/lib/AddRoadRounded.js index 3c0e1ac1b16080..a3dea6ab7be0b8 100644 --- a/packages/material-ui-icons/lib/AddRoadRounded.js +++ b/packages/material-ui-icons/lib/AddRoadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zM19 4c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zM5 20c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1zm7-12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1z" -}), 'AddRoadRounded'); \ No newline at end of file +}), 'AddRoadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddRoadSharp.js b/packages/material-ui-icons/lib/AddRoadSharp.js index f6e9bc3a8131a6..333242f2abd932 100644 --- a/packages/material-ui-icons/lib/AddRoadSharp.js +++ b/packages/material-ui-icons/lib/AddRoadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" -}), 'AddRoadSharp'); \ No newline at end of file +}), 'AddRoadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddRoadTwoTone.js b/packages/material-ui-icons/lib/AddRoadTwoTone.js index 126493dd2c265f..45070c47db3c31 100644 --- a/packages/material-ui-icons/lib/AddRoadTwoTone.js +++ b/packages/material-ui-icons/lib/AddRoadTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" -}), 'AddRoadTwoTone'); \ No newline at end of file +}), 'AddRoadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddRounded.js b/packages/material-ui-icons/lib/AddRounded.js index 639c683800f4e6..65b938aba36d3c 100644 --- a/packages/material-ui-icons/lib/AddRounded.js +++ b/packages/material-ui-icons/lib/AddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AddRounded'); \ No newline at end of file +}), 'AddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddSharp.js b/packages/material-ui-icons/lib/AddSharp.js index a0098837b0c479..d5de772a22bcbf 100644 --- a/packages/material-ui-icons/lib/AddSharp.js +++ b/packages/material-ui-icons/lib/AddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" -}), 'AddSharp'); \ No newline at end of file +}), 'AddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddShoppingCart.js b/packages/material-ui-icons/lib/AddShoppingCart.js index a2b1b0c6d6af73..7b85072392c7c9 100644 --- a/packages/material-ui-icons/lib/AddShoppingCart.js +++ b/packages/material-ui-icons/lib/AddShoppingCart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z" -}), 'AddShoppingCart'); \ No newline at end of file +}), 'AddShoppingCart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddShoppingCartOutlined.js b/packages/material-ui-icons/lib/AddShoppingCartOutlined.js index 0e3b851fadd8ae..0609b2e44b9130 100644 --- a/packages/material-ui-icons/lib/AddShoppingCartOutlined.js +++ b/packages/material-ui-icons/lib/AddShoppingCartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" -}), 'AddShoppingCartOutlined'); \ No newline at end of file +}), 'AddShoppingCartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddShoppingCartRounded.js b/packages/material-ui-icons/lib/AddShoppingCartRounded.js index a9d4ab85c5e84b..5e6077d2293109 100644 --- a/packages/material-ui-icons/lib/AddShoppingCartRounded.js +++ b/packages/material-ui-icons/lib/AddShoppingCartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c.55 0 1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1zm-5 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.24-6.14c.25-.48.08-1.08-.4-1.34-.49-.27-1.1-.08-1.36.41L15.55 11H8.53L4.27 2H2c-.55 0-1 .45-1 1s.45 1 1 1h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2z" -}), 'AddShoppingCartRounded'); \ No newline at end of file +}), 'AddShoppingCartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddShoppingCartSharp.js b/packages/material-ui-icons/lib/AddShoppingCartSharp.js index 6c80d72e6b262e..de64f8c1e68ca6 100644 --- a/packages/material-ui-icons/lib/AddShoppingCartSharp.js +++ b/packages/material-ui-icons/lib/AddShoppingCartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59L3.62 17H19v-2H7l1.1-2z" -}), 'AddShoppingCartSharp'); \ No newline at end of file +}), 'AddShoppingCartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddShoppingCartTwoTone.js b/packages/material-ui-icons/lib/AddShoppingCartTwoTone.js index 10c55bb4ec1d92..b7bbe9c2678cd9 100644 --- a/packages/material-ui-icons/lib/AddShoppingCartTwoTone.js +++ b/packages/material-ui-icons/lib/AddShoppingCartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.41 4l-3.86 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" -}), 'AddShoppingCartTwoTone'); \ No newline at end of file +}), 'AddShoppingCartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddTask.js b/packages/material-ui-icons/lib/AddTask.js index 197d6d5d9d1d59..62164e07c6dd41 100644 --- a/packages/material-ui-icons/lib/AddTask.js +++ b/packages/material-ui-icons/lib/AddTask.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" -}), 'AddTask'); \ No newline at end of file +}), 'AddTask'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddTaskOutlined.js b/packages/material-ui-icons/lib/AddTaskOutlined.js index 6a911bef5fa335..2a19c659f4aeb9 100644 --- a/packages/material-ui-icons/lib/AddTaskOutlined.js +++ b/packages/material-ui-icons/lib/AddTaskOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" -}), 'AddTaskOutlined'); \ No newline at end of file +}), 'AddTaskOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddTaskRounded.js b/packages/material-ui-icons/lib/AddTaskRounded.js index 0da322524ee562..23718b648933cb 100644 --- a/packages/material-ui-icons/lib/AddTaskRounded.js +++ b/packages/material-ui-icons/lib/AddTaskRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.29 5.89-10 10c-.39.39-1.02.39-1.41 0l-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12 9.29-9.29c.39-.39 1.02-.39 1.41 0 .4.39.4 1.02.01 1.41zM12 20c-4.71 0-8.48-4.09-7.95-8.9.39-3.52 3.12-6.41 6.61-6.99 1.81-.3 3.53.02 4.99.78.39.2.86.13 1.17-.18.48-.48.36-1.29-.24-1.6-1.47-.75-3.13-1.16-4.9-1.11-5.14.16-9.41 4.34-9.67 9.47C1.72 17.24 6.3 22 12 22c1.2 0 2.34-.21 3.41-.6.68-.25.87-1.13.35-1.65-.27-.27-.68-.37-1.04-.23-.85.31-1.77.48-2.72.48zm7-5h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2z" -}), 'AddTaskRounded'); \ No newline at end of file +}), 'AddTaskRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddTaskSharp.js b/packages/material-ui-icons/lib/AddTaskSharp.js index 2a18ec7821965c..3e037df7c4009b 100644 --- a/packages/material-ui-icons/lib/AddTaskSharp.js +++ b/packages/material-ui-icons/lib/AddTaskSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" -}), 'AddTaskSharp'); \ No newline at end of file +}), 'AddTaskSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddTaskTwoTone.js b/packages/material-ui-icons/lib/AddTaskTwoTone.js index f2a1bdda17c8de..678e6f74dd1c9c 100644 --- a/packages/material-ui-icons/lib/AddTaskTwoTone.js +++ b/packages/material-ui-icons/lib/AddTaskTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" -}), 'AddTaskTwoTone'); \ No newline at end of file +}), 'AddTaskTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToDrive.js b/packages/material-ui-icons/lib/AddToDrive.js index 5f7084c563b133..abca488ac0770b 100644 --- a/packages/material-ui-icons/lib/AddToDrive.js +++ b/packages/material-ui-icons/lib/AddToDrive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21v-3h3v-2h-3v-3h-2v3h-3v2h3v3h2zm-4.97.5H5.66c-.72 0-1.38-.38-1.73-1l-2.36-4.1c-.36-.62-.35-1.38.01-2L7.92 3.49c.36-.61 1.02-.99 1.73-.99h4.7c.71 0 1.37.38 1.73.99l4.48 7.71c-.5-.13-1.02-.2-1.56-.2-.28 0-.56.02-.84.06L14.35 4.5h-4.7L3.31 15.41l2.35 4.09h7.89c.35.77.85 1.45 1.48 2zM13.34 15c-.22.63-.34 1.3-.34 2H7.25l-.73-1.27 4.58-7.98h1.8l2.53 4.42c-.56.42-1.05.93-1.44 1.51l-2-3.49L9.25 15h4.09z" -}), 'AddToDrive'); \ No newline at end of file +}), 'AddToDrive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToDriveOutlined.js b/packages/material-ui-icons/lib/AddToDriveOutlined.js index ec6fddd6580a61..250a97586fcb7b 100644 --- a/packages/material-ui-icons/lib/AddToDriveOutlined.js +++ b/packages/material-ui-icons/lib/AddToDriveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}), 'AddToDriveOutlined'); \ No newline at end of file +}), 'AddToDriveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToDriveRounded.js b/packages/material-ui-icons/lib/AddToDriveRounded.js index 44b19baae1eb55..7dbb418b1a1acc 100644 --- a/packages/material-ui-icons/lib/AddToDriveRounded.js +++ b/packages/material-ui-icons/lib/AddToDriveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}), 'AddToDriveRounded'); \ No newline at end of file +}), 'AddToDriveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToDriveSharp.js b/packages/material-ui-icons/lib/AddToDriveSharp.js index f6ce76b77c2e8b..d20dca77365992 100644 --- a/packages/material-ui-icons/lib/AddToDriveSharp.js +++ b/packages/material-ui-icons/lib/AddToDriveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}), 'AddToDriveSharp'); \ No newline at end of file +}), 'AddToDriveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToDriveTwoTone.js b/packages/material-ui-icons/lib/AddToDriveTwoTone.js index 35227d90cb42eb..0b17e1dac597a8 100644 --- a/packages/material-ui-icons/lib/AddToDriveTwoTone.js +++ b/packages/material-ui-icons/lib/AddToDriveTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" -}), 'AddToDriveTwoTone'); \ No newline at end of file +}), 'AddToDriveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToHomeScreen.js b/packages/material-ui-icons/lib/AddToHomeScreen.js index 40863c3bff50ec..99d587d900302d 100644 --- a/packages/material-ui-icons/lib/AddToHomeScreen.js +++ b/packages/material-ui-icons/lib/AddToHomeScreen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41z" -}), 'AddToHomeScreen'); \ No newline at end of file +}), 'AddToHomeScreen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToHomeScreenOutlined.js b/packages/material-ui-icons/lib/AddToHomeScreenOutlined.js index 98c3379894e5e4..333f013308fca6 100644 --- a/packages/material-ui-icons/lib/AddToHomeScreenOutlined.js +++ b/packages/material-ui-icons/lib/AddToHomeScreenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" -}), 'AddToHomeScreenOutlined'); \ No newline at end of file +}), 'AddToHomeScreenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToHomeScreenRounded.js b/packages/material-ui-icons/lib/AddToHomeScreenRounded.js index fd2635ee21de74..afd49cb8f73f2d 100644 --- a/packages/material-ui-icons/lib/AddToHomeScreenRounded.js +++ b/packages/material-ui-icons/lib/AddToHomeScreenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V5h10v14H8v-1c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM11 15c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1h2.59L3.7 14.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L10 11.41V14c0 .55.45 1 1 1z" -}), 'AddToHomeScreenRounded'); \ No newline at end of file +}), 'AddToHomeScreenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToHomeScreenSharp.js b/packages/material-ui-icons/lib/AddToHomeScreenSharp.js index fdf6fb5f9d324c..c5c2730243944d 100644 --- a/packages/material-ui-icons/lib/AddToHomeScreenSharp.js +++ b/packages/material-ui-icons/lib/AddToHomeScreenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 1.01 6 1v5h2V5h10v14H8v-1H6v5h14V1.01zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" -}), 'AddToHomeScreenSharp'); \ No newline at end of file +}), 'AddToHomeScreenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToHomeScreenTwoTone.js b/packages/material-ui-icons/lib/AddToHomeScreenTwoTone.js index f7835c9b22f330..eea413837a0af4 100644 --- a/packages/material-ui-icons/lib/AddToHomeScreenTwoTone.js +++ b/packages/material-ui-icons/lib/AddToHomeScreenTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" -}), 'AddToHomeScreenTwoTone'); \ No newline at end of file +}), 'AddToHomeScreenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToPhotos.js b/packages/material-ui-icons/lib/AddToPhotos.js index 4c06f5ac838cec..7cf0f8a42f8707 100644 --- a/packages/material-ui-icons/lib/AddToPhotos.js +++ b/packages/material-ui-icons/lib/AddToPhotos.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" -}), 'AddToPhotos'); \ No newline at end of file +}), 'AddToPhotos'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToPhotosOutlined.js b/packages/material-ui-icons/lib/AddToPhotosOutlined.js index e4d8b271fa7d59..c6ce2ff42e1840 100644 --- a/packages/material-ui-icons/lib/AddToPhotosOutlined.js +++ b/packages/material-ui-icons/lib/AddToPhotosOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" -}), 'AddToPhotosOutlined'); \ No newline at end of file +}), 'AddToPhotosOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToPhotosRounded.js b/packages/material-ui-icons/lib/AddToPhotosRounded.js index 2b2ef7e413bc41..6d9e2d46ccf75a 100644 --- a/packages/material-ui-icons/lib/AddToPhotosRounded.js +++ b/packages/material-ui-icons/lib/AddToPhotosRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AddToPhotosRounded'); \ No newline at end of file +}), 'AddToPhotosRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToPhotosSharp.js b/packages/material-ui-icons/lib/AddToPhotosSharp.js index 85eb7f8a143f32..90345ba9d9c265 100644 --- a/packages/material-ui-icons/lib/AddToPhotosSharp.js +++ b/packages/material-ui-icons/lib/AddToPhotosSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" -}), 'AddToPhotosSharp'); \ No newline at end of file +}), 'AddToPhotosSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToPhotosTwoTone.js b/packages/material-ui-icons/lib/AddToPhotosTwoTone.js index efdecfd1ad8c6d..c1dcedd5b060cd 100644 --- a/packages/material-ui-icons/lib/AddToPhotosTwoTone.js +++ b/packages/material-ui-icons/lib/AddToPhotosTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H8v12h12V4zm-1 7h-4v4h-2v-4H9V9h4V5h2v4h4v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm4-4h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM8 4h12v12H8V4zm7 1h-2v4H9v2h4v4h2v-4h4V9h-4z" -}, "1")], 'AddToPhotosTwoTone'); \ No newline at end of file +}, "1")], 'AddToPhotosTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToQueue.js b/packages/material-ui-icons/lib/AddToQueue.js index da18e20f23fb34..44e94527eca4bb 100644 --- a/packages/material-ui-icons/lib/AddToQueue.js +++ b/packages/material-ui-icons/lib/AddToQueue.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z" -}), 'AddToQueue'); \ No newline at end of file +}), 'AddToQueue'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToQueueOutlined.js b/packages/material-ui-icons/lib/AddToQueueOutlined.js index 3c9dbab790dbc9..4ae581558570ed 100644 --- a/packages/material-ui-icons/lib/AddToQueueOutlined.js +++ b/packages/material-ui-icons/lib/AddToQueueOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" -}), 'AddToQueueOutlined'); \ No newline at end of file +}), 'AddToQueueOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToQueueRounded.js b/packages/material-ui-icons/lib/AddToQueueRounded.js index b400e61252f9a6..026a8da7c5bc5e 100644 --- a/packages/material-ui-icons/lib/AddToQueueRounded.js +++ b/packages/material-ui-icons/lib/AddToQueueRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-4-6c0 .55-.45 1-1 1h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2V8c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1z" -}), 'AddToQueueRounded'); \ No newline at end of file +}), 'AddToQueueRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToQueueSharp.js b/packages/material-ui-icons/lib/AddToQueueSharp.js index 1a163abae0017e..9af324c442f32b 100644 --- a/packages/material-ui-icons/lib/AddToQueueSharp.js +++ b/packages/material-ui-icons/lib/AddToQueueSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z" -}), 'AddToQueueSharp'); \ No newline at end of file +}), 'AddToQueueSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddToQueueTwoTone.js b/packages/material-ui-icons/lib/AddToQueueTwoTone.js index bf0dc41f84c3f0..5a4dadeb8bc12e 100644 --- a/packages/material-ui-icons/lib/AddToQueueTwoTone.js +++ b/packages/material-ui-icons/lib/AddToQueueTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18V5H3v12zm5-7h3V7h2v3h3v2h-3v3h-2v-3H8v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" -}, "1")], 'AddToQueueTwoTone'); \ No newline at end of file +}, "1")], 'AddToQueueTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddTwoTone.js b/packages/material-ui-icons/lib/AddTwoTone.js index 2ce49c7cafbc0d..526d0a56511869 100644 --- a/packages/material-ui-icons/lib/AddTwoTone.js +++ b/packages/material-ui-icons/lib/AddTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" -}), 'AddTwoTone'); \ No newline at end of file +}), 'AddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Addchart.js b/packages/material-ui-icons/lib/Addchart.js index 561619fbe7dfba..812bda5c267bf9 100644 --- a/packages/material-ui-icons/lib/Addchart.js +++ b/packages/material-ui-icons/lib/Addchart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z" -}), 'Addchart'); \ No newline at end of file +}), 'Addchart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddchartOutlined.js b/packages/material-ui-icons/lib/AddchartOutlined.js index 8c5ec9ea99d010..d96611982a7c8e 100644 --- a/packages/material-ui-icons/lib/AddchartOutlined.js +++ b/packages/material-ui-icons/lib/AddchartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z" -}), 'AddchartOutlined'); \ No newline at end of file +}), 'AddchartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddchartRounded.js b/packages/material-ui-icons/lib/AddchartRounded.js index b60b0d9fdae6dc..79dccca8ff2521 100644 --- a/packages/material-ui-icons/lib/AddchartRounded.js +++ b/packages/material-ui-icons/lib/AddchartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 10c0-.55.45-1 1-1s1 .45 1 1v7h-2v-7zm9 3c-.55 0-1 .45-1 1v5H5V5h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5c0-.55-.45-1-1-1zm1-8h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1zm-5 8c-.55 0-1 .45-1 1v3h2v-3c0-.55-.45-1-1-1zm-9-1v5h2v-5c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'AddchartRounded'); \ No newline at end of file +}), 'AddchartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddchartSharp.js b/packages/material-ui-icons/lib/AddchartSharp.js index 0e728476b62094..72e6ceb07bcc36 100644 --- a/packages/material-ui-icons/lib/AddchartSharp.js +++ b/packages/material-ui-icons/lib/AddchartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v8h-2V9zm-2 8v-6H7v6h2zm10 2H5V5h6V3H3v18h18v-8h-2v6zm-4-6v4h2v-4h-2zm4-8V2h-2v3h-3v2h3v3h2V7h3V5h-3z" -}), 'AddchartSharp'); \ No newline at end of file +}), 'AddchartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AddchartTwoTone.js b/packages/material-ui-icons/lib/AddchartTwoTone.js index cf30ae40a99851..2d08f18498e92d 100644 --- a/packages/material-ui-icons/lib/AddchartTwoTone.js +++ b/packages/material-ui-icons/lib/AddchartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z" -}), 'AddchartTwoTone'); \ No newline at end of file +}), 'AddchartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Adjust.js b/packages/material-ui-icons/lib/Adjust.js index cdae019c38d7a9..95e10e70565e65 100644 --- a/packages/material-ui-icons/lib/Adjust.js +++ b/packages/material-ui-icons/lib/Adjust.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'Adjust'); \ No newline at end of file +}), 'Adjust'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdjustOutlined.js b/packages/material-ui-icons/lib/AdjustOutlined.js index 5f7118a0023265..811389dc28c8f6 100644 --- a/packages/material-ui-icons/lib/AdjustOutlined.js +++ b/packages/material-ui-icons/lib/AdjustOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'AdjustOutlined'); \ No newline at end of file +}), 'AdjustOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdjustRounded.js b/packages/material-ui-icons/lib/AdjustRounded.js index ac354fae231bc7..126fdd0e446869 100644 --- a/packages/material-ui-icons/lib/AdjustRounded.js +++ b/packages/material-ui-icons/lib/AdjustRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'AdjustRounded'); \ No newline at end of file +}), 'AdjustRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdjustSharp.js b/packages/material-ui-icons/lib/AdjustSharp.js index c33423d90bb1a4..a270b4b6d490b8 100644 --- a/packages/material-ui-icons/lib/AdjustSharp.js +++ b/packages/material-ui-icons/lib/AdjustSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'AdjustSharp'); \ No newline at end of file +}), 'AdjustSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdjustTwoTone.js b/packages/material-ui-icons/lib/AdjustTwoTone.js index 02c11dc5a3497c..1c8c3e492db553 100644 --- a/packages/material-ui-icons/lib/AdjustTwoTone.js +++ b/packages/material-ui-icons/lib/AdjustTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0-7C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'AdjustTwoTone'); \ No newline at end of file +}), 'AdjustTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdminPanelSettings.js b/packages/material-ui-icons/lib/AdminPanelSettings.js index c32406bd25cdb9..dc6e92ac1a8b74 100644 --- a/packages/material-ui-icons/lib/AdminPanelSettings.js +++ b/packages/material-ui-icons/lib/AdminPanelSettings.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11c.34 0 .67.04 1 .09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z" -}, "1")], 'AdminPanelSettings'); \ No newline at end of file +}, "1")], 'AdminPanelSettings'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdminPanelSettingsOutlined.js b/packages/material-ui-icons/lib/AdminPanelSettingsOutlined.js index 356e99200529f4..d97ecb9875f6f9 100644 --- a/packages/material-ui-icons/lib/AdminPanelSettingsOutlined.js +++ b/packages/material-ui-icons/lib/AdminPanelSettingsOutlined.js @@ -1,15 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs("g", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", { fillRule: "evenodd", - children: [/*#__PURE__*/_jsx("circle", { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "15.5", r: "1.12" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 17.5c-.73 0-2.19.36-2.24 1.08.5.71 1.32 1.17 2.24 1.17s1.74-.46 2.24-1.17c-.05-.72-1.51-1.08-2.24-1.08z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11.09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55C13.18 21.99 14.97 23 17 23c3.31 0 6-2.69 6-6 0-2.97-2.16-5.43-5-5.91zM11 17c0 .56.08 1.11.23 1.62-.24.11-.48.22-.73.3-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4 5.5 2.4v3.51c-2.84.48-5 2.94-5 5.91zm6 4c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" })] -}), 'AdminPanelSettingsOutlined'); \ No newline at end of file +}), 'AdminPanelSettingsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdminPanelSettingsRounded.js b/packages/material-ui-icons/lib/AdminPanelSettingsRounded.js index 4182676f19c01b..8943dec89bf750 100644 --- a/packages/material-ui-icons/lib/AdminPanelSettingsRounded.js +++ b/packages/material-ui-icons/lib/AdminPanelSettingsRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11c.34 0 .67.04 1 .09V7.58c0-.8-.47-1.52-1.2-1.83l-5.5-2.4c-.51-.22-1.09-.22-1.6 0l-5.5 2.4C3.47 6.07 3 6.79 3 7.58v3.6c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z" -}, "1")], 'AdminPanelSettingsRounded'); \ No newline at end of file +}, "1")], 'AdminPanelSettingsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdminPanelSettingsSharp.js b/packages/material-ui-icons/lib/AdminPanelSettingsSharp.js index b9040b4e480733..38ad7ea7e3b0ab 100644 --- a/packages/material-ui-icons/lib/AdminPanelSettingsSharp.js +++ b/packages/material-ui-icons/lib/AdminPanelSettingsSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11c.34 0 .67.04 1 .09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z" -}, "1")], 'AdminPanelSettingsSharp'); \ No newline at end of file +}, "1")], 'AdminPanelSettingsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AdminPanelSettingsTwoTone.js b/packages/material-ui-icons/lib/AdminPanelSettingsTwoTone.js index 7a5ccedff8a06c..ca051fcc78ac41 100644 --- a/packages/material-ui-icons/lib/AdminPanelSettingsTwoTone.js +++ b/packages/material-ui-icons/lib/AdminPanelSettingsTwoTone.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 7.58-5.5-2.4L5 7.58v3.6c0 3.5 2.33 6.74 5.5 7.74.25-.08.49-.2.73-.3-.15-.51-.23-1.06-.23-1.62 0-2.97 2.16-5.43 5-5.91V7.58z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "15.5", r: "1.12" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11.09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55C13.18 21.99 14.97 23 17 23c3.31 0 6-2.69 6-6 0-2.97-2.16-5.43-5-5.91zM11 17c0 .56.08 1.11.23 1.62-.24.11-.48.22-.73.3-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4 5.5 2.4v3.51c-2.84.48-5 2.94-5 5.91zm6 4c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 17.5c-.73 0-2.19.36-2.24 1.08.5.71 1.32 1.17 2.24 1.17s1.74-.46 2.24-1.17c-.05-.72-1.51-1.08-2.24-1.08z" -}, "4")], 'AdminPanelSettingsTwoTone'); \ No newline at end of file +}, "4")], 'AdminPanelSettingsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Agriculture.js b/packages/material-ui-icons/lib/Agriculture.js index 1363e699493e8f..b0aa3d41686988 100644 --- a/packages/material-ui-icons/lib/Agriculture.js +++ b/packages/material-ui-icons/lib/Agriculture.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 12c.93 0 1.78.28 2.5.76V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2h-.54c.95 1.06 1.54 2.46 1.54 4 0 .34-.04.67-.09 1h3.14c.25-2.25 2.14-4 4.45-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1zm5.83 4.82-.18-.47.93-.35c-.46-1.06-1.28-1.91-2.31-2.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.22-.55.35-1.17.35-1.81 0-.53-.11-1.04-.26-1.52l-.91.34zm-2.68 3.95c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.29-1.62 3.92z" -}, "1")], 'Agriculture'); \ No newline at end of file +}, "1")], 'Agriculture'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AgricultureOutlined.js b/packages/material-ui-icons/lib/AgricultureOutlined.js index bd50738e00c4fc..1b19bafbfddb06 100644 --- a/packages/material-ui-icons/lib/AgricultureOutlined.js +++ b/packages/material-ui-icons/lib/AgricultureOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 14.06V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2H8.96c-.22-.16-.45-.3-.69-.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.1-.26.18-.54.24-.82h5.16c-.02.17-.05.34-.05.51 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.95-.38-1.81-1-2.44zM6 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm4.87-4c-.04-.18-.08-.35-.13-.52l-.91.34-.18-.47.93-.35H11c2.21 0 4-1.79 4-4V8h5v5.05c-.16-.02-.33-.05-.5-.05-.95 0-1.81.38-2.44 1h-6.19zm8.63 4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'AgricultureOutlined'); \ No newline at end of file +}, "1")], 'AgricultureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AgricultureRounded.js b/packages/material-ui-icons/lib/AgricultureRounded.js index d1eb18044ff33b..f0035eaca42107 100644 --- a/packages/material-ui-icons/lib/AgricultureRounded.js +++ b/packages/material-ui-icons/lib/AgricultureRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 11.97c.93 0 1.78.28 2.5.76V7.97c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.06-1.06c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.06-1.06L13 6.68v2.29c0 1.1-.9 2-2 2h-.54c.95 1.06 1.54 2.46 1.54 4 0 .34-.04.67-.09 1h3.14c.25-2.24 2.14-4 4.45-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 12.97c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 8.97h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1 0 .56.45 1 1 1zm5.83 4.82-.18-.47.93-.35c-.46-1.06-1.28-1.91-2.31-2.43l-.4.89-.46-.21.4-.9c-.55-.21-1.17-.35-1.81-.35-.53 0-1.04.11-1.52.26l.34.91-.47.18L4 10.4c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4c-.22.55-.35 1.16-.35 1.8 0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.57.22 1.18.35 1.82.35.53 0 1.04-.11 1.52-.26l-.35-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.22-.57.35-1.18.35-1.82 0-.53-.11-1.04-.26-1.52l-.91.35zm-2.68 3.96c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.28-1.62 3.92z" -}, "1")], 'AgricultureRounded'); \ No newline at end of file +}, "1")], 'AgricultureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AgricultureSharp.js b/packages/material-ui-icons/lib/AgricultureSharp.js index c45300ce6b46d7..2887431879639a 100644 --- a/packages/material-ui-icons/lib/AgricultureSharp.js +++ b/packages/material-ui-icons/lib/AgricultureSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 12c.93 0 1.78.28 2.5.76V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2h-.54c.95 1.06 1.54 2.46 1.54 4 0 .34-.04.67-.09 1h3.14c.25-2.25 2.14-4 4.45-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1zm5.83 4.82-.18-.47.93-.35c-.46-1.06-1.28-1.91-2.31-2.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.22-.55.35-1.17.35-1.81 0-.53-.11-1.04-.26-1.52l-.91.34zm-2.68 3.95c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.29-1.62 3.92z" -}, "1")], 'AgricultureSharp'); \ No newline at end of file +}, "1")], 'AgricultureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AgricultureTwoTone.js b/packages/material-ui-icons/lib/AgricultureTwoTone.js index 7f1e4d23475c38..74fcfc6637706c 100644 --- a/packages/material-ui-icons/lib/AgricultureTwoTone.js +++ b/packages/material-ui-icons/lib/AgricultureTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 14.06V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2H8.96c-.22-.16-.45-.3-.69-.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.1-.26.18-.54.24-.82h5.16c-.02.17-.05.34-.05.51 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.95-.38-1.81-1-2.44zM6 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm4.87-4c-.04-.18-.08-.35-.13-.52l-.91.34-.18-.47.93-.35H11c2.21 0 4-1.79 4-4V8h5v5.05c-.16-.02-.33-.05-.5-.05-.95 0-1.81.38-2.44 1h-6.19zm8.63 4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13.05V8h-5v1c0 2.21-1.79 4-4 4h-.42c.14.32.25.65.32 1h6.16c.63-.62 1.49-1 2.44-1 .17 0 .34.03.5.05z", opacity: ".3" -}, "2")], 'AgricultureTwoTone'); \ No newline at end of file +}, "2")], 'AgricultureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Air.js b/packages/material-ui-icons/lib/Air.js index 0f294c070b7954..36858cba29bc6f 100644 --- a/packages/material-ui-icons/lib/Air.js +++ b/packages/material-ui-icons/lib/Air.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" -}), 'Air'); \ No newline at end of file +}), 'Air'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirOutlined.js b/packages/material-ui-icons/lib/AirOutlined.js index 085b402201358e..2c05c3ec8568ef 100644 --- a/packages/material-ui-icons/lib/AirOutlined.js +++ b/packages/material-ui-icons/lib/AirOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" -}), 'AirOutlined'); \ No newline at end of file +}), 'AirOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirRounded.js b/packages/material-ui-icons/lib/AirRounded.js index aa74ede659a910..abeeed736ce376 100644 --- a/packages/material-ui-icons/lib/AirRounded.js +++ b/packages/material-ui-icons/lib/AirRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.35 17.95c-.28.89-1.01 1.62-1.9 1.9-1.51.48-2.94-.23-3.59-1.42-.35-.65.17-1.43.91-1.43h.01c.34 0 .68.16.84.46.17.32.5.54.89.54.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1-.45-1-1s.45-1 1-1h8.5c1.96 0 3.5 1.9 2.85 3.95zm4.56-12.28c-.29-1.26-1.32-2.29-2.58-2.58-1.76-.4-3.37.53-4.02 1.98-.31.67.17 1.43.9 1.43.39 0 .75-.22.9-.57.23-.55.76-.93 1.39-.93.83 0 1.5.67 1.5 1.5S16.33 8 15.5 8H3c-.55 0-1 .45-1 1s.45 1 1 1h12.5c2.2 0 3.93-2.04 3.41-4.33zM18.4 11H3c-.55 0-1 .45-1 1s.45 1 1 1h15.5c.83 0 1.5.67 1.5 1.5 0 .63-.38 1.16-.93 1.39-.36.15-.57.51-.57.9 0 .73.76 1.21 1.43.91 1.43-.64 2.35-2.21 2-3.93-.34-1.64-1.86-2.77-3.53-2.77z" -}), 'AirRounded'); \ No newline at end of file +}), 'AirRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirSharp.js b/packages/material-ui-icons/lib/AirSharp.js index cba2787b509b6e..40f5f810855f46 100644 --- a/packages/material-ui-icons/lib/AirSharp.js +++ b/packages/material-ui-icons/lib/AirSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" -}), 'AirSharp'); \ No newline at end of file +}), 'AirSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirTwoTone.js b/packages/material-ui-icons/lib/AirTwoTone.js index 9ee391efc96d3c..a81d49132eae9e 100644 --- a/packages/material-ui-icons/lib/AirTwoTone.js +++ b/packages/material-ui-icons/lib/AirTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" -}), 'AirTwoTone'); \ No newline at end of file +}), 'AirTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlat.js b/packages/material-ui-icons/lib/AirlineSeatFlat.js index 5228aca63ed1cb..1ac50c97a77892 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlat.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11v2H9V7h9c2.21 0 4 1.79 4 4zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z" -}), 'AirlineSeatFlat'); \ No newline at end of file +}), 'AirlineSeatFlat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatAngled.js b/packages/material-ui-icons/lib/AirlineSeatFlatAngled.js index d491a1000f74e8..fe5814bfeac203 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatAngled.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatAngled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.25 14.29-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09c2.1.76 3.18 3.06 2.41 5.15zM1.5 12.14 8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z" -}), 'AirlineSeatFlatAngled'); \ No newline at end of file +}), 'AirlineSeatFlatAngled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatAngledOutlined.js b/packages/material-ui-icons/lib/AirlineSeatFlatAngledOutlined.js index fe21dfbec681da..d138c9ea169e1d 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatAngledOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatAngledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11 6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z" -}), 'AirlineSeatFlatAngledOutlined'); \ No newline at end of file +}), 'AirlineSeatFlatAngledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatAngledRounded.js b/packages/material-ui-icons/lib/AirlineSeatFlatAngledRounded.js index c314470247e843..e541723ae09fc7 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatAngledRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatAngledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.25 14.29-.69 1.89L9.2 11.71l1.39-3.79c.38-1.03 1.52-1.56 2.56-1.19l6.69 2.41c2.1.76 3.18 3.06 2.41 5.15zm-19.8-1.81 5.55 2V18c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-.63l3.58 1.29c.52.19 1.1-.08 1.29-.6.19-.52-.08-1.1-.6-1.29L3.13 10.59c-.52-.19-1.1.08-1.29.6-.18.52.09 1.1.61 1.29zM7.3 10.2c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z" -}), 'AirlineSeatFlatAngledRounded'); \ No newline at end of file +}), 'AirlineSeatFlatAngledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatAngledSharp.js b/packages/material-ui-icons/lib/AirlineSeatFlatAngledSharp.js index bfce28a85aef80..4d1baa550a8b84 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatAngledSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatAngledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.56 16.18 9.2 11.71l2.08-5.66 12.35 4.47-2.07 5.66zM1.5 12.14 8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z" -}), 'AirlineSeatFlatAngledSharp'); \ No newline at end of file +}), 'AirlineSeatFlatAngledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatAngledTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatFlatAngledTwoTone.js index fc6b269ac74cb5..68e02b83665a9d 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatAngledTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatAngledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 16.64-4-1.45V17h4zM6 8.5c.15 0 .3-.03.44-.1.49-.24.7-.84.46-1.34-.19-.41-.59-.56-.9-.56-.15 0-.3.03-.44.1-.32.16-.45.42-.5.56-.05.15-.12.44.04.77.2.42.59.57.9.57zm13.16 2.52-6.69-2.41-.7 1.91 8.59 3.11.01-.02c.19-.51.17-1.05-.06-1.53-.23-.5-.63-.87-1.15-1.06z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.5 12.14 8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm8.5 3.05 4 1.44V17h-4v-1.81zm9.84-6.05-8.56-3.09-2.08 5.66 12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15zm.53 4.46-.01.02-8.59-3.11.7-1.91 6.69 2.41c.52.19.93.56 1.15 1.05.23.49.25 1.04.06 1.54zM6 10.5c.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7zm-.94-3.34c.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78z" -}, "1")], 'AirlineSeatFlatAngledTwoTone'); \ No newline at end of file +}, "1")], 'AirlineSeatFlatAngledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatOutlined.js b/packages/material-ui-icons/lib/AirlineSeatFlatOutlined.js index d65f17f12e2c37..f3a40175bd6fd6 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z" -}), 'AirlineSeatFlatOutlined'); \ No newline at end of file +}), 'AirlineSeatFlatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatRounded.js b/packages/material-ui-icons/lib/AirlineSeatFlatRounded.js index fb558cf82eacc1..4ba1bfcdeda532 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11v2H9V9c0-1.1.9-2 2-2h7c2.21 0 4 1.79 4 4zM2 15c0 .55.45 1 1 1h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm5.14-2.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z" -}), 'AirlineSeatFlatRounded'); \ No newline at end of file +}), 'AirlineSeatFlatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatSharp.js b/packages/material-ui-icons/lib/AirlineSeatFlatSharp.js index 3564e4e74f7e15..a8bbe71ac65517 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7v6H9V7h13zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z" -}), 'AirlineSeatFlatSharp'); \ No newline at end of file +}), 'AirlineSeatFlatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatFlatTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatFlatTwoTone.js index cb27365523ff83..51f72f9475fec3 100644 --- a/packages/material-ui-icons/lib/AirlineSeatFlatTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatFlatTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11c.27 0 .52-.11.71-.3.39-.4.39-1.02-.01-1.41C5.51 9.11 5.26 9 5 9c-.27 0-.52.11-.71.3-.39.4-.39 1.02.01 1.41.19.18.44.29.7.29zm13-2h-7v2h9c0-1.1-.9-2-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z" -}, "1")], 'AirlineSeatFlatTwoTone'); \ No newline at end of file +}, "1")], 'AirlineSeatFlatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatIndividualSuite.js b/packages/material-ui-icons/lib/AirlineSeatIndividualSuite.js index 2df427ffecd047..4fc2a269a668e4 100644 --- a/packages/material-ui-icons/lib/AirlineSeatIndividualSuite.js +++ b/packages/material-ui-icons/lib/AirlineSeatIndividualSuite.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-8v7H3V7H1v10h22v-6c0-2.21-1.79-4-4-4z" -}), 'AirlineSeatIndividualSuite'); \ No newline at end of file +}), 'AirlineSeatIndividualSuite'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteOutlined.js b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteOutlined.js index 6105fc7ca818e4..d6d1cb51ff059d 100644 --- a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" -}), 'AirlineSeatIndividualSuiteOutlined'); \ No newline at end of file +}), 'AirlineSeatIndividualSuiteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteRounded.js b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteRounded.js index 3ea41a18ffaf8f..a3888b30286e22 100644 --- a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V8c0-.55-.45-1-1-1s-1 .45-1 1v7c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-4c0-2.21-1.79-4-4-4z" -}), 'AirlineSeatIndividualSuiteRounded'); \ No newline at end of file +}), 'AirlineSeatIndividualSuiteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteSharp.js b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteSharp.js index aa24d58c910785..b26e0a286c4336 100644 --- a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm16-6H11v7H3V7H1v10h22V7z" -}), 'AirlineSeatIndividualSuiteSharp'); \ No newline at end of file +}), 'AirlineSeatIndividualSuiteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteTwoTone.js index e4931a07b960ea..fc51acf1a58ac5 100644 --- a/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatIndividualSuiteTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "11", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" -}, "2")], 'AirlineSeatIndividualSuiteTwoTone'); \ No newline at end of file +}, "2")], 'AirlineSeatIndividualSuiteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomExtra.js b/packages/material-ui-icons/lib/AirlineSeatLegroomExtra.js index 06209c22037753..67f81dddcca199 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomExtra.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomExtra.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98c-.34-.68-1.03-1.12-1.79-1.12L11 9V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" -}), 'AirlineSeatLegroomExtra'); \ No newline at end of file +}), 'AirlineSeatLegroomExtra'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraOutlined.js b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraOutlined.js index df2b450528e92e..b8e1b2c2a59c59 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" -}), 'AirlineSeatLegroomExtraOutlined'); \ No newline at end of file +}), 'AirlineSeatLegroomExtraOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraRounded.js b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraRounded.js index 22814fe13bb1b6..ac8632b612bfc9 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l2.56 5.25c.48.98 1.64 1.39 2.63.94l1.95-.89c.76-.36 1.09-1.3.69-2.06z" -}), 'AirlineSeatLegroomExtraRounded'); \ No newline at end of file +}), 'AirlineSeatLegroomExtraRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraSharp.js b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraSharp.js index 9ece5c0f4088e3..ad9492d80defb6 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 3H2v14h11v-2H4zm18.24 12.96-2.53 1.15-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v11h10l3.41 7 5.07-2.32-1.24-2.72z" -}), 'AirlineSeatLegroomExtraSharp'); \ No newline at end of file +}), 'AirlineSeatLegroomExtraSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraTwoTone.js index 7b6a65921799cf..b1692df3fa599c 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomExtraTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomExtraTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" -}), 'AirlineSeatLegroomExtraTwoTone'); \ No newline at end of file +}), 'AirlineSeatLegroomExtraTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomNormal.js b/packages/material-ui-icons/lib/AirlineSeatLegroomNormal.js index ae818b7b77b530..d82700d9999469 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomNormal.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomNormal.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" -}), 'AirlineSeatLegroomNormal'); \ No newline at end of file +}), 'AirlineSeatLegroomNormal'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalOutlined.js b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalOutlined.js index 099f3382820afb..d9f10ef11c1b94 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" -}), 'AirlineSeatLegroomNormalOutlined'); \ No newline at end of file +}), 'AirlineSeatLegroomNormalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalRounded.js b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalRounded.js index cbe9e0d8f8691d..267edc85fe2b2f 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v5c0 1.1.9 2 2 2h2.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" -}), 'AirlineSeatLegroomNormalRounded'); \ No newline at end of file +}), 'AirlineSeatLegroomNormalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalSharp.js b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalSharp.js index 0e6dcf6a769f20..3a5dcb8c702a18 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15V3H3v14h11v-2H5zm17 3h-3v-7c0-1.1-.9-2-2-2h-5V3H6v11h10v7h6v-3z" -}), 'AirlineSeatLegroomNormalSharp'); \ No newline at end of file +}), 'AirlineSeatLegroomNormalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalTwoTone.js index 089b0b4bd71019..b675da73486fd5 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomNormalTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomNormalTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" -}), 'AirlineSeatLegroomNormalTwoTone'); \ No newline at end of file +}), 'AirlineSeatLegroomNormalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomReduced.js b/packages/material-ui-icons/lib/AirlineSeatLegroomReduced.js index 9eb5fcdf2acd4b..318aee665480d9 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomReduced.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomReduced.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" -}), 'AirlineSeatLegroomReduced'); \ No newline at end of file +}), 'AirlineSeatLegroomReduced'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedOutlined.js b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedOutlined.js index af4a5ec38c8264..c1ab4f7c699c00 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" -}), 'AirlineSeatLegroomReducedOutlined'); \ No newline at end of file +}), 'AirlineSeatLegroomReducedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedRounded.js b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedRounded.js index 58d315073ec465..fd703a05768556 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8h-2.69c-1.3 0-2.26-1.22-1.94-2.49L15 14H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h3c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.66 0-3-1.34-3-3z" -}), 'AirlineSeatLegroomReducedRounded'); \ No newline at end of file +}), 'AirlineSeatLegroomReducedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedSharp.js b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedSharp.js index 437afb649f9a40..3dc951efb2ad94 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.97 21H14v-3l1-4H6V3h6v6h5c1.1 0 2 .9 2 2l-2 7h2.97v3zM5 15V3H3v14h9v-2H5z" -}), 'AirlineSeatLegroomReducedSharp'); \ No newline at end of file +}), 'AirlineSeatLegroomReducedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedTwoTone.js index 0f596e3d5b1388..43519cdae95276 100644 --- a/packages/material-ui-icons/lib/AirlineSeatLegroomReducedTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatLegroomReducedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" -}), 'AirlineSeatLegroomReducedTwoTone'); \ No newline at end of file +}), 'AirlineSeatLegroomReducedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineExtra.js b/packages/material-ui-icons/lib/AirlineSeatReclineExtra.js index 98efdabc4dfe28..84654d06869bfe 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineExtra.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineExtra.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" -}), 'AirlineSeatReclineExtra'); \ No newline at end of file +}), 'AirlineSeatReclineExtra'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineExtraOutlined.js b/packages/material-ui-icons/lib/AirlineSeatReclineExtraOutlined.js index 0d76b09c808f17..75b59105abf3ac 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineExtraOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineExtraOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" -}), 'AirlineSeatReclineExtraOutlined'); \ No newline at end of file +}), 'AirlineSeatReclineExtraOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineExtraRounded.js b/packages/material-ui-icons/lib/AirlineSeatReclineExtraRounded.js index 75dddd3c5d8b8a..f541bc69d6a18b 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineExtraRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineExtraRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 20c0-.55-.45-1-1-1H8.93c-1.48 0-2.74-1.08-2.96-2.54L4.16 7.78C4.07 7.33 3.67 7 3.2 7c-.62 0-1.08.57-.96 1.18l1.75 8.58C4.37 19.2 6.47 21 8.94 21H15c.55 0 1-.45 1-1zm-.46-5h-4.19l-1.03-4.1c1.28.72 2.63 1.28 4.1 1.3.58.01 1.05-.49 1.05-1.07 0-.59-.49-1.04-1.08-1.06-1.31-.04-2.63-.56-3.61-1.33L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.09 2.42c.42.33 1.02.29 1.39-.08.45-.45.4-1.18-.1-1.57l-4.29-3.35c-.35-.27-.78-.42-1.23-.42z" -}), 'AirlineSeatReclineExtraRounded'); \ No newline at end of file +}), 'AirlineSeatReclineExtraRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineExtraSharp.js b/packages/material-ui-icons/lib/AirlineSeatReclineExtraSharp.js index 9d41d2abc3de49..26dbe0f854d568 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineExtraSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineExtraSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H6.5L4 7H2l2.85 14H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61L7.44 18h9.24l3.82 3 1.5-1.5-5.77-4.5z" -}), 'AirlineSeatReclineExtraSharp'); \ No newline at end of file +}), 'AirlineSeatReclineExtraSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineExtraTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatReclineExtraTwoTone.js index 388a3e7e94ae6c..6a9f6d7379dfa1 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineExtraTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineExtraTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" -}), 'AirlineSeatReclineExtraTwoTone'); \ No newline at end of file +}), 'AirlineSeatReclineExtraTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineNormal.js b/packages/material-ui-icons/lib/AirlineSeatReclineNormal.js index c5fddf15fefd05..6ff95e2daa6de5 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineNormal.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineNormal.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" -}), 'AirlineSeatReclineNormal'); \ No newline at end of file +}), 'AirlineSeatReclineNormal'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineNormalOutlined.js b/packages/material-ui-icons/lib/AirlineSeatReclineNormalOutlined.js index deece11fed0611..134b2cd0c851bb 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineNormalOutlined.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineNormalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" -}), 'AirlineSeatReclineNormalOutlined'); \ No newline at end of file +}), 'AirlineSeatReclineNormalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineNormalRounded.js b/packages/material-ui-icons/lib/AirlineSeatReclineNormalRounded.js index 004683afd31514..5295458f725df1 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineNormalRounded.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineNormalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H9c-1.66 0-3-1.34-3-3zm13.28 3.35-3.77-3.77c-.37-.37-.88-.58-1.41-.58h-2.6v-3.68c1.09.89 2.66 1.7 4.2 2.02.67.14 1.3-.36 1.3-1.04 0-.53-.39-.96-.92-1.05-1.42-.24-2.88-1.01-3.75-1.97l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l2.78 2.78c.39.39 1.04.39 1.43 0 .4-.39.4-1.03 0-1.43z" -}), 'AirlineSeatReclineNormalRounded'); \ No newline at end of file +}), 'AirlineSeatReclineNormalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineNormalSharp.js b/packages/material-ui-icons/lib/AirlineSeatReclineNormalSharp.js index f6c54d5f7543c0..d22b45eac5c3d8 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineNormalSharp.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineNormalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 19V7H4v14h11v-2H6zm14 1.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V18h8.07l3.5 3.5L20 20.07z" -}), 'AirlineSeatReclineNormalSharp'); \ No newline at end of file +}), 'AirlineSeatReclineNormalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirlineSeatReclineNormalTwoTone.js b/packages/material-ui-icons/lib/AirlineSeatReclineNormalTwoTone.js index 1192a35d707354..0ad787fcb434b0 100644 --- a/packages/material-ui-icons/lib/AirlineSeatReclineNormalTwoTone.js +++ b/packages/material-ui-icons/lib/AirlineSeatReclineNormalTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" -}), 'AirlineSeatReclineNormalTwoTone'); \ No newline at end of file +}), 'AirlineSeatReclineNormalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplaneTicket.js b/packages/material-ui-icons/lib/AirplaneTicket.js index 9fff86b34e278c..66a402183bf39f 100644 --- a/packages/material-ui-icons/lib/AirplaneTicket.js +++ b/packages/material-ui-icons/lib/AirplaneTicket.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zm-2.46 9.3-8.86 2.36-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19z" -}), 'AirplaneTicket'); \ No newline at end of file +}), 'AirplaneTicket'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplaneTicketOutlined.js b/packages/material-ui-icons/lib/AirplaneTicketOutlined.js index a774643a3e3659..2d28e7413f56e3 100644 --- a/packages/material-ui-icons/lib/AirplaneTicketOutlined.js +++ b/packages/material-ui-icons/lib/AirplaneTicketOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zM20 18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v12zM8.87 15.66l-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19l-8.86 2.36z" -}), 'AirplaneTicketOutlined'); \ No newline at end of file +}), 'AirplaneTicketOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplaneTicketRounded.js b/packages/material-ui-icons/lib/AirplaneTicketRounded.js index 35467667f47fe6..7571b388872fd2 100644 --- a/packages/material-ui-icons/lib/AirplaneTicketRounded.js +++ b/packages/material-ui-icons/lib/AirplaneTicketRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zm-2.46 9.3-8.49 2.26c-.22.06-.45-.04-.56-.23l-1.12-1.95c-.18-.3-.01-.69.32-.78.16-.04.34-.01.47.1l1.05.82 2.39-.64L9.9 9.6c-.26-.44-.02-1.01.47-1.15.26-.07.54 0 .74.18l3.69 3.44 2.44-.65c.51-.14 1.04.17 1.18.68.13.52-.17 1.05-.69 1.2z" -}), 'AirplaneTicketRounded'); \ No newline at end of file +}), 'AirplaneTicketRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplaneTicketSharp.js b/packages/material-ui-icons/lib/AirplaneTicketSharp.js index d6ed7daf82c650..5f558dca277c23 100644 --- a/packages/material-ui-icons/lib/AirplaneTicketSharp.js +++ b/packages/material-ui-icons/lib/AirplaneTicketSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20V4zm-4.27 9.3-8.86 2.36-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19z" -}), 'AirplaneTicketSharp'); \ No newline at end of file +}), 'AirplaneTicketSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplaneTicketTwoTone.js b/packages/material-ui-icons/lib/AirplaneTicketTwoTone.js index 4082c1241e3872..962d0a3e2b1025 100644 --- a/packages/material-ui-icons/lib/AirplaneTicketTwoTone.js +++ b/packages/material-ui-icons/lib/AirplaneTicketTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.01 8.54C5.2 9.23 6 10.52 6 12c0 1.47-.81 2.77-2 3.46V18h16V6H4l.01 2.54zm4.13 3.99 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19l-8.86 2.36-1.66-2.88.93-.25z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zM20 18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.73 13.3c.52-.15.82-.68.69-1.19-.14-.51-.67-.82-1.18-.68l-2.44.65-4.01-3.74-1.4.38 2.4 4.16-2.39.64-1.26-.99-.93.25 1.66 2.88 8.86-2.36z" -}, "2")], 'AirplaneTicketTwoTone'); \ No newline at end of file +}, "2")], 'AirplaneTicketTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeActive.js b/packages/material-ui-icons/lib/AirplanemodeActive.js index 5dc62376f58fce..58a1b4ba3d2d60 100644 --- a/packages/material-ui-icons/lib/AirplanemodeActive.js +++ b/packages/material-ui-icons/lib/AirplanemodeActive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'AirplanemodeActive'); \ No newline at end of file +}), 'AirplanemodeActive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeActiveOutlined.js b/packages/material-ui-icons/lib/AirplanemodeActiveOutlined.js index 06dc27d9be6695..cc93db4804b740 100644 --- a/packages/material-ui-icons/lib/AirplanemodeActiveOutlined.js +++ b/packages/material-ui-icons/lib/AirplanemodeActiveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'AirplanemodeActiveOutlined'); \ No newline at end of file +}), 'AirplanemodeActiveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeActiveRounded.js b/packages/material-ui-icons/lib/AirplanemodeActiveRounded.js index 09b763338b1556..4ec1f710a41317 100644 --- a/packages/material-ui-icons/lib/AirplanemodeActiveRounded.js +++ b/packages/material-ui-icons/lib/AirplanemodeActiveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.48 13.7 13.5 9V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9l-7.98 4.7c-.32.18-.52.53-.52.9 0 .7.67 1.2 1.34 1.01l7.16-2.1V19l-2.26 1.35c-.15.09-.24.26-.24.43v.58c0 .33.31.57.62.49l2.92-.73L12 21l.38.09.42.11 1.9.48.67.17c.32.08.62-.16.62-.49v-.58c0-.18-.09-.34-.24-.43L13.5 19v-5.5l7.16 2.1c.67.2 1.34-.3 1.34-1 0-.37-.2-.72-.52-.9z" -}), 'AirplanemodeActiveRounded'); \ No newline at end of file +}), 'AirplanemodeActiveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeActiveSharp.js b/packages/material-ui-icons/lib/AirplanemodeActiveSharp.js index 4d513f176d853a..97fcd779da8271 100644 --- a/packages/material-ui-icons/lib/AirplanemodeActiveSharp.js +++ b/packages/material-ui-icons/lib/AirplanemodeActiveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'AirplanemodeActiveSharp'); \ No newline at end of file +}), 'AirplanemodeActiveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeActiveTwoTone.js b/packages/material-ui-icons/lib/AirplanemodeActiveTwoTone.js index f5e6205c9c60c6..441d1a2ad5d9bb 100644 --- a/packages/material-ui-icons/lib/AirplanemodeActiveTwoTone.js +++ b/packages/material-ui-icons/lib/AirplanemodeActiveTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'AirplanemodeActiveTwoTone'); \ No newline at end of file +}), 'AirplanemodeActiveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeInactive.js b/packages/material-ui-icons/lib/AirplanemodeInactive.js index f83a445fe0c88f..0dadf7b6953430 100644 --- a/packages/material-ui-icons/lib/AirplanemodeInactive.js +++ b/packages/material-ui-icons/lib/AirplanemodeInactive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" -}), 'AirplanemodeInactive'); \ No newline at end of file +}), 'AirplanemodeInactive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeInactiveOutlined.js b/packages/material-ui-icons/lib/AirplanemodeInactiveOutlined.js index e67c204d3b34dd..08719622f78cd6 100644 --- a/packages/material-ui-icons/lib/AirplanemodeInactiveOutlined.js +++ b/packages/material-ui-icons/lib/AirplanemodeInactiveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" -}), 'AirplanemodeInactiveOutlined'); \ No newline at end of file +}), 'AirplanemodeInactiveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeInactiveRounded.js b/packages/material-ui-icons/lib/AirplanemodeInactiveRounded.js index 9057d4357c898d..e33252392d1f6b 100644 --- a/packages/material-ui-icons/lib/AirplanemodeInactiveRounded.js +++ b/packages/material-ui-icons/lib/AirplanemodeInactiveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 14.6c0 .7-.67 1.2-1.34 1.01l-3.15-.93-7.01-7.01V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l7.98 4.7c.32.18.52.53.52.9zm-8.5-1.1L9.56 9.56 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l5.67 5.67-5.25 3.11c-.32.18-.52.53-.52.9 0 .7.67 1.2 1.34 1.01l7.16-2.1V19l-2.26 1.35c-.15.09-.24.26-.24.43v.58c0 .33.31.57.62.49l2.92-.73L12 21l.38.09.42.11 1.9.48.67.17c.32.08.62-.16.62-.49v-.58c0-.18-.09-.34-.24-.43L13.5 19v-2.67l5.57 5.57c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L13.5 13.5z" -}), 'AirplanemodeInactiveRounded'); \ No newline at end of file +}), 'AirplanemodeInactiveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeInactiveSharp.js b/packages/material-ui-icons/lib/AirplanemodeInactiveSharp.js index ea328f69c63012..b71e454d18124d 100644 --- a/packages/material-ui-icons/lib/AirplanemodeInactiveSharp.js +++ b/packages/material-ui-icons/lib/AirplanemodeInactiveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" -}), 'AirplanemodeInactiveSharp'); \ No newline at end of file +}), 'AirplanemodeInactiveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplanemodeInactiveTwoTone.js b/packages/material-ui-icons/lib/AirplanemodeInactiveTwoTone.js index bb087a46591bc1..5f9ab09d7642a9 100644 --- a/packages/material-ui-icons/lib/AirplanemodeInactiveTwoTone.js +++ b/packages/material-ui-icons/lib/AirplanemodeInactiveTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" -}), 'AirplanemodeInactiveTwoTone'); \ No newline at end of file +}), 'AirplanemodeInactiveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Airplay.js b/packages/material-ui-icons/lib/Airplay.js index 022b10f7be1a79..ce6f844f578634 100644 --- a/packages/material-ui-icons/lib/Airplay.js +++ b/packages/material-ui-icons/lib/Airplay.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h12l-6-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}, "1")], 'Airplay'); \ No newline at end of file +}, "1")], 'Airplay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplayOutlined.js b/packages/material-ui-icons/lib/AirplayOutlined.js index c584249f8a4adc..4e89cea43ca4e0 100644 --- a/packages/material-ui-icons/lib/AirplayOutlined.js +++ b/packages/material-ui-icons/lib/AirplayOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h12l-6-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}, "1")], 'AirplayOutlined'); \ No newline at end of file +}, "1")], 'AirplayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplayRounded.js b/packages/material-ui-icons/lib/AirplayRounded.js index 562add7bf96dbb..233d1838b470fa 100644 --- a/packages/material-ui-icons/lib/AirplayRounded.js +++ b/packages/material-ui-icons/lib/AirplayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.41 22h7.17c.89 0 1.34-1.08.71-1.71L12.7 16.7a.9959.9959 0 0 0-1.41 0L7.7 20.29c-.62.63-.18 1.71.71 1.71zM21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'AirplayRounded'); \ No newline at end of file +}), 'AirplayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplaySharp.js b/packages/material-ui-icons/lib/AirplaySharp.js index b8229d822dcd63..96bf32f008a098 100644 --- a/packages/material-ui-icons/lib/AirplaySharp.js +++ b/packages/material-ui-icons/lib/AirplaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h12l-6-6-6 6zM23 3H1v16h6v-2H3V5h18v12h-4v2h6V3z" -}), 'AirplaySharp'); \ No newline at end of file +}), 'AirplaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirplayTwoTone.js b/packages/material-ui-icons/lib/AirplayTwoTone.js index 836ef21cf924ee..3d04b53178c383 100644 --- a/packages/material-ui-icons/lib/AirplayTwoTone.js +++ b/packages/material-ui-icons/lib/AirplayTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h12l-6-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}, "1")], 'AirplayTwoTone'); \ No newline at end of file +}, "1")], 'AirplayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirportShuttle.js b/packages/material-ui-icons/lib/AirportShuttle.js index 1ed83ab06ba3a4..a0050ef24484e9 100644 --- a/packages/material-ui-icons/lib/AirportShuttle.js +++ b/packages/material-ui-icons/lib/AirportShuttle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.65 1.34 3 3 3s3-1.35 3-3h5.5c0 1.65 1.34 3 3 3s3-1.35 3-3H23v-5l-6-6zM3 11V7h4v4H3zm3 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7-6.5H9V7h4v4zm4.5 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM15 11V7h1l4 4h-5z" -}), 'AirportShuttle'); \ No newline at end of file +}), 'AirportShuttle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirportShuttleOutlined.js b/packages/material-ui-icons/lib/AirportShuttleOutlined.js index eb4795bbf6fab8..ca1c70d2d04c3a 100644 --- a/packages/material-ui-icons/lib/AirportShuttleOutlined.js +++ b/packages/material-ui-icons/lib/AirportShuttleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z" -}), 'AirportShuttleOutlined'); \ No newline at end of file +}), 'AirportShuttleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirportShuttleRounded.js b/packages/material-ui-icons/lib/AirportShuttleRounded.js index 376ed6df8bd35e..4d5c2680f7eb5a 100644 --- a/packages/material-ui-icons/lib/AirportShuttleRounded.js +++ b/packages/material-ui-icons/lib/AirportShuttleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.41 10.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H3c-1.1 0-2 .89-2 2v7c0 1.1.9 2 2 2 0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3c1.1 0 2-.9 2-2v-2.17c0-.53-.21-1.04-.59-1.42zM3 10V8c0-.55.45-1 1-1h3v4H4c-.55 0-1-.45-1-1zm3 7.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM13 11H9V7h4v4zm5 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM15 11V7h1l4 4h-5z" -}), 'AirportShuttleRounded'); \ No newline at end of file +}), 'AirportShuttleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirportShuttleSharp.js b/packages/material-ui-icons/lib/AirportShuttleSharp.js index 9db49477e8caba..a43bb65ac62149 100644 --- a/packages/material-ui-icons/lib/AirportShuttleSharp.js +++ b/packages/material-ui-icons/lib/AirportShuttleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5H1v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zM3 11V7h4v4H3zm3 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM13 11H9V7h4v4zm5 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM15 11V7h1l4 4h-5z" -}), 'AirportShuttleSharp'); \ No newline at end of file +}), 'AirportShuttleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AirportShuttleTwoTone.js b/packages/material-ui-icons/lib/AirportShuttleTwoTone.js index aaa5d2a884ea58..fe86073faf6b3c 100644 --- a/packages/material-ui-icons/lib/AirportShuttleTwoTone.js +++ b/packages/material-ui-icons/lib/AirportShuttleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1h7.56c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H21v-2H3v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z" -}, "1")], 'AirportShuttleTwoTone'); \ No newline at end of file +}, "1")], 'AirportShuttleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Alarm.js b/packages/material-ui-icons/lib/Alarm.js index 8047b015f52c2d..15744742e6d170 100644 --- a/packages/material-ui-icons/lib/Alarm.js +++ b/packages/material-ui-icons/lib/Alarm.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'Alarm'); \ No newline at end of file +}), 'Alarm'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmAdd.js b/packages/material-ui-icons/lib/AlarmAdd.js index 4a653eeda29857..6e7513e3aa59e9 100644 --- a/packages/material-ui-icons/lib/AlarmAdd.js +++ b/packages/material-ui-icons/lib/AlarmAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" -}), 'AlarmAdd'); \ No newline at end of file +}), 'AlarmAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmAddOutlined.js b/packages/material-ui-icons/lib/AlarmAddOutlined.js index cecaafab7147f2..a6d6998c47130c 100644 --- a/packages/material-ui-icons/lib/AlarmAddOutlined.js +++ b/packages/material-ui-icons/lib/AlarmAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.337 1.81 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}), 'AlarmAddOutlined'); \ No newline at end of file +}), 'AlarmAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmAddRounded.js b/packages/material-ui-icons/lib/AlarmAddRounded.js index 79f2a8594ac1b0..a0841e203c334b 100644 --- a/packages/material-ui-icons/lib/AlarmAddRounded.js +++ b/packages/material-ui-icons/lib/AlarmAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.18 5.01 18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm3-8h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'AlarmAddRounded'); \ No newline at end of file +}), 'AlarmAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmAddSharp.js b/packages/material-ui-icons/lib/AlarmAddSharp.js index 467dedb4864515..8e9991b8470b2c 100644 --- a/packages/material-ui-icons/lib/AlarmAddSharp.js +++ b/packages/material-ui-icons/lib/AlarmAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.337 1.81 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}), 'AlarmAddSharp'); \ No newline at end of file +}), 'AlarmAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmAddTwoTone.js b/packages/material-ui-icons/lib/AlarmAddTwoTone.js index 9d041913046bbf..169efdd7de01be 100644 --- a/packages/material-ui-icons/lib/AlarmAddTwoTone.js +++ b/packages/material-ui-icons/lib/AlarmAddTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.337 1.81 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}, "1")], 'AlarmAddTwoTone'); \ No newline at end of file +}, "1")], 'AlarmAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOff.js b/packages/material-ui-icons/lib/AlarmOff.js index 7cb3cc4b9489fb..e9e7614489469e 100644 --- a/packages/material-ui-icons/lib/AlarmOff.js +++ b/packages/material-ui-icons/lib/AlarmOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92 0-4.97-4.03-9-9-9-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29 1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28 6.6 1.86l-.86.71 1.42 1.42.86-.71z" -}), 'AlarmOff'); \ No newline at end of file +}), 'AlarmOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOffOutlined.js b/packages/material-ui-icons/lib/AlarmOffOutlined.js index cfffa1d563f6c8..b0cf6cf5818d32 100644 --- a/packages/material-ui-icons/lib/AlarmOffOutlined.js +++ b/packages/material-ui-icons/lib/AlarmOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48 4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1 1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" -}), 'AlarmOffOutlined'); \ No newline at end of file +}), 'AlarmOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOffRounded.js b/packages/material-ui-icons/lib/AlarmOffRounded.js index 2722cef11aa4d5..84a92805889913 100644 --- a/packages/material-ui-icons/lib/AlarmOffRounded.js +++ b/packages/material-ui-icons/lib/AlarmOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm-6.33-3.5c-.38-.38-1-.38-1.39 0l-.02.03c-.39.39-.39 1.01 0 1.39l.68.68-.17.14c-.42.34-.47.96-.13 1.38l.03.03c.35.42.96.47 1.38.12l.31-.25.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l1.41 1.41c.38.38 1 .38 1.39 0l.03-.03c.38-.38.38-1 0-1.39l-17.01-17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zm7.91-13.44c.42.35 1.03.29 1.38-.12l.03-.03c.35-.42.29-1.03-.12-1.38l-3.1-2.59c-.42-.35-1.03-.29-1.38.12l-.03.03c-.35.42-.29 1.03.12 1.38l3.1 2.59zM7.43 3.68c.18-.34.15-.77-.11-1.09l-.03-.03c-.3-.36-.8-.43-1.2-.22l1.34 1.34z" -}), 'AlarmOffRounded'); \ No newline at end of file +}), 'AlarmOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOffSharp.js b/packages/material-ui-icons/lib/AlarmOffSharp.js index 0ca5f32a1ffd24..c0b07518fe5bd7 100644 --- a/packages/material-ui-icons/lib/AlarmOffSharp.js +++ b/packages/material-ui-icons/lib/AlarmOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48 4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1 1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" -}), 'AlarmOffSharp'); \ No newline at end of file +}), 'AlarmOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOffTwoTone.js b/packages/material-ui-icons/lib/AlarmOffTwoTone.js index ec2bbb719668eb..94db0c6bba8df2 100644 --- a/packages/material-ui-icons/lib/AlarmOffTwoTone.js +++ b/packages/material-ui-icons/lib/AlarmOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48 4.607 3.845-1.28 1.535-4.61-3.843zm1.903 16.51-1.43-1.43-9.7-9.7-1.43-1.43-.74-.74L4.52 3.6l-1.5-1.5-1.41 1.41 1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41-2.16-2.17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" -}), 'AlarmOffTwoTone'); \ No newline at end of file +}), 'AlarmOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOn.js b/packages/material-ui-icons/lib/AlarmOn.js index d56c85b70155f3..ee996c26e9d21f 100644 --- a/packages/material-ui-icons/lib/AlarmOn.js +++ b/packages/material-ui-icons/lib/AlarmOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z" -}), 'AlarmOn'); \ No newline at end of file +}), 'AlarmOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOnOutlined.js b/packages/material-ui-icons/lib/AlarmOnOutlined.js index 8202fed796ec40..8317b44ecaf013 100644 --- a/packages/material-ui-icons/lib/AlarmOnOutlined.js +++ b/packages/material-ui-icons/lib/AlarmOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.54 14.53 8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AlarmOnOutlined'); \ No newline at end of file +}), 'AlarmOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOnRounded.js b/packages/material-ui-icons/lib/AlarmOnRounded.js index 3e8d6b2ae7261e..6840e13d76dad5 100644 --- a/packages/material-ui-icons/lib/AlarmOnRounded.js +++ b/packages/material-ui-icons/lib/AlarmOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.94 10.11-4.4 4.42-1.6-1.6c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06L10 16.11c.29.29.77.29 1.06 0L16 11.17c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0zm6.24-5.1L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AlarmOnRounded'); \ No newline at end of file +}), 'AlarmOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOnSharp.js b/packages/material-ui-icons/lib/AlarmOnSharp.js index 02c3ba85f8e35a..7bffdb7223270a 100644 --- a/packages/material-ui-icons/lib/AlarmOnSharp.js +++ b/packages/material-ui-icons/lib/AlarmOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.54 14.53 8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AlarmOnSharp'); \ No newline at end of file +}), 'AlarmOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOnTwoTone.js b/packages/material-ui-icons/lib/AlarmOnTwoTone.js index 081f6e6b5c2a2a..416b0624e9f748 100644 --- a/packages/material-ui-icons/lib/AlarmOnTwoTone.js +++ b/packages/material-ui-icons/lib/AlarmOnTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm-1.47 10.64-3.18-3.18 1.06-1.06 2.13 2.13 4.93-4.95 1.06 1.06-6 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.54 14.53 8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}, "1")], 'AlarmOnTwoTone'); \ No newline at end of file +}, "1")], 'AlarmOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmOutlined.js b/packages/material-ui-icons/lib/AlarmOutlined.js index 222fa9ccfd56c5..0b9ff414a25d48 100644 --- a/packages/material-ui-icons/lib/AlarmOutlined.js +++ b/packages/material-ui-icons/lib/AlarmOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AlarmOutlined'); \ No newline at end of file +}), 'AlarmOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmRounded.js b/packages/material-ui-icons/lib/AlarmRounded.js index 75252f15d4939f..50169e5d9a0364 100644 --- a/packages/material-ui-icons/lib/AlarmRounded.js +++ b/packages/material-ui-icons/lib/AlarmRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.87 15.25-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AlarmRounded'); \ No newline at end of file +}), 'AlarmRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmSharp.js b/packages/material-ui-icons/lib/AlarmSharp.js index 00bb2b18d6f8f6..2de6df3b2cae59 100644 --- a/packages/material-ui-icons/lib/AlarmSharp.js +++ b/packages/material-ui-icons/lib/AlarmSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'AlarmSharp'); \ No newline at end of file +}), 'AlarmSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlarmTwoTone.js b/packages/material-ui-icons/lib/AlarmTwoTone.js index c6781b8aa8eb07..1a0ea965b041ec 100644 --- a/packages/material-ui-icons/lib/AlarmTwoTone.js +++ b/packages/material-ui-icons/lib/AlarmTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}, "1")], 'AlarmTwoTone'); \ No newline at end of file +}, "1")], 'AlarmTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Album.js b/packages/material-ui-icons/lib/Album.js index 838f632ae377da..34c32f629e91b8 100644 --- a/packages/material-ui-icons/lib/Album.js +++ b/packages/material-ui-icons/lib/Album.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'Album'); \ No newline at end of file +}), 'Album'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlbumOutlined.js b/packages/material-ui-icons/lib/AlbumOutlined.js index 1afb7aae0d3878..a5f6f7143b4376 100644 --- a/packages/material-ui-icons/lib/AlbumOutlined.js +++ b/packages/material-ui-icons/lib/AlbumOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'AlbumOutlined'); \ No newline at end of file +}), 'AlbumOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlbumRounded.js b/packages/material-ui-icons/lib/AlbumRounded.js index 9abe976c105b4c..a990e21e8dfffb 100644 --- a/packages/material-ui-icons/lib/AlbumRounded.js +++ b/packages/material-ui-icons/lib/AlbumRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'AlbumRounded'); \ No newline at end of file +}), 'AlbumRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlbumSharp.js b/packages/material-ui-icons/lib/AlbumSharp.js index 5674e248978ffd..7b0ca6d72fab9f 100644 --- a/packages/material-ui-icons/lib/AlbumSharp.js +++ b/packages/material-ui-icons/lib/AlbumSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'AlbumSharp'); \ No newline at end of file +}), 'AlbumSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlbumTwoTone.js b/packages/material-ui-icons/lib/AlbumTwoTone.js index 4983172f183c85..aea8f6d54fedb0 100644 --- a/packages/material-ui-icons/lib/AlbumTwoTone.js +++ b/packages/material-ui-icons/lib/AlbumTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'AlbumTwoTone'); \ No newline at end of file +}, "1")], 'AlbumTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalCenter.js b/packages/material-ui-icons/lib/AlignHorizontalCenter.js index a91c768da86a32..9a49c28c0f32fc 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalCenter.js +++ b/packages/material-ui-icons/lib/AlignHorizontalCenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" -}), 'AlignHorizontalCenter'); \ No newline at end of file +}), 'AlignHorizontalCenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalCenterOutlined.js b/packages/material-ui-icons/lib/AlignHorizontalCenterOutlined.js index 558f78e115fb0b..c3a3f45f238648 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalCenterOutlined.js +++ b/packages/material-ui-icons/lib/AlignHorizontalCenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" -}), 'AlignHorizontalCenterOutlined'); \ No newline at end of file +}), 'AlignHorizontalCenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalCenterRounded.js b/packages/material-ui-icons/lib/AlignHorizontalCenterRounded.js index a6605b2ec10b7e..7cb5e22dc56236 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalCenterRounded.js +++ b/packages/material-ui-icons/lib/AlignHorizontalCenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c.55 0 1 .45 1 1v4h6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H13v4h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H13v4c0 .55-.45 1-1 1s-1-.45-1-1v-4H7.5c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14H11v-4H4.5C3.67 10 3 9.33 3 8.5S3.67 7 4.5 7H11V3c0-.55.45-1 1-1z" -}), 'AlignHorizontalCenterRounded'); \ No newline at end of file +}), 'AlignHorizontalCenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalCenterSharp.js b/packages/material-ui-icons/lib/AlignHorizontalCenterSharp.js index 87ed9638c00a4e..c71f7d1b2d1c8a 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalCenterSharp.js +++ b/packages/material-ui-icons/lib/AlignHorizontalCenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" -}), 'AlignHorizontalCenterSharp'); \ No newline at end of file +}), 'AlignHorizontalCenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalCenterTwoTone.js b/packages/material-ui-icons/lib/AlignHorizontalCenterTwoTone.js index fe98638a2f2f88..fc1b12f3c2e958 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalCenterTwoTone.js +++ b/packages/material-ui-icons/lib/AlignHorizontalCenterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" -}), 'AlignHorizontalCenterTwoTone'); \ No newline at end of file +}), 'AlignHorizontalCenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalLeft.js b/packages/material-ui-icons/lib/AlignHorizontalLeft.js index 0eebf19f69312b..3223648c8bf983 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalLeft.js +++ b/packages/material-ui-icons/lib/AlignHorizontalLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" -}), 'AlignHorizontalLeft'); \ No newline at end of file +}), 'AlignHorizontalLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalLeftOutlined.js b/packages/material-ui-icons/lib/AlignHorizontalLeftOutlined.js index 191de7470e50d2..6dfe29effdd28e 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalLeftOutlined.js +++ b/packages/material-ui-icons/lib/AlignHorizontalLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" -}), 'AlignHorizontalLeftOutlined'); \ No newline at end of file +}), 'AlignHorizontalLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalLeftRounded.js b/packages/material-ui-icons/lib/AlignHorizontalLeftRounded.js index 92b9c573bf4367..71676e00070f05 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalLeftRounded.js +++ b/packages/material-ui-icons/lib/AlignHorizontalLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 22c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1s1 .45 1 1v18c0 .55-.45 1-1 1zM20.5 7h-13C6.67 7 6 7.67 6 8.5S6.67 10 7.5 10h13c.83 0 1.5-.67 1.5-1.5S21.33 7 20.5 7zm-6 7h-7c-.83 0-1.5.67-1.5 1.5S6.67 17 7.5 17h7c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" -}), 'AlignHorizontalLeftRounded'); \ No newline at end of file +}), 'AlignHorizontalLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalLeftSharp.js b/packages/material-ui-icons/lib/AlignHorizontalLeftSharp.js index bb6a216196221d..74ef7aacc87413 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalLeftSharp.js +++ b/packages/material-ui-icons/lib/AlignHorizontalLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" -}), 'AlignHorizontalLeftSharp'); \ No newline at end of file +}), 'AlignHorizontalLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalLeftTwoTone.js b/packages/material-ui-icons/lib/AlignHorizontalLeftTwoTone.js index 3c0ca493b80173..0a08c8bbed8212 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalLeftTwoTone.js +++ b/packages/material-ui-icons/lib/AlignHorizontalLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" -}), 'AlignHorizontalLeftTwoTone'); \ No newline at end of file +}), 'AlignHorizontalLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalRight.js b/packages/material-ui-icons/lib/AlignHorizontalRight.js index b64aa72e2f36ea..6dc3ec90bd2056 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalRight.js +++ b/packages/material-ui-icons/lib/AlignHorizontalRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" -}), 'AlignHorizontalRight'); \ No newline at end of file +}), 'AlignHorizontalRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalRightOutlined.js b/packages/material-ui-icons/lib/AlignHorizontalRightOutlined.js index 2571401019d3d5..ccf00b7ddeb387 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalRightOutlined.js +++ b/packages/material-ui-icons/lib/AlignHorizontalRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" -}), 'AlignHorizontalRightOutlined'); \ No newline at end of file +}), 'AlignHorizontalRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalRightRounded.js b/packages/material-ui-icons/lib/AlignHorizontalRightRounded.js index fbcc4ceda6f452..63690ec17d3a7a 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalRightRounded.js +++ b/packages/material-ui-icons/lib/AlignHorizontalRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2c.55 0 1 .45 1 1v18c0 .55-.45 1-1 1s-1-.45-1-1V3c0-.55.45-1 1-1zM3.5 10h13c.83 0 1.5-.67 1.5-1.5S17.33 7 16.5 7h-13C2.67 7 2 7.67 2 8.5S2.67 10 3.5 10zm6 7h7c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-7c-.83 0-1.5.67-1.5 1.5S8.67 17 9.5 17z" -}), 'AlignHorizontalRightRounded'); \ No newline at end of file +}), 'AlignHorizontalRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalRightSharp.js b/packages/material-ui-icons/lib/AlignHorizontalRightSharp.js index 7e44146090c721..45e8b18e14c0c8 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalRightSharp.js +++ b/packages/material-ui-icons/lib/AlignHorizontalRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" -}), 'AlignHorizontalRightSharp'); \ No newline at end of file +}), 'AlignHorizontalRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignHorizontalRightTwoTone.js b/packages/material-ui-icons/lib/AlignHorizontalRightTwoTone.js index 1a365738aaf618..5708f21e27bf40 100644 --- a/packages/material-ui-icons/lib/AlignHorizontalRightTwoTone.js +++ b/packages/material-ui-icons/lib/AlignHorizontalRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" -}), 'AlignHorizontalRightTwoTone'); \ No newline at end of file +}), 'AlignHorizontalRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalBottom.js b/packages/material-ui-icons/lib/AlignVerticalBottom.js index 1e0f32bc5e4872..12275db44eeea0 100644 --- a/packages/material-ui-icons/lib/AlignVerticalBottom.js +++ b/packages/material-ui-icons/lib/AlignVerticalBottom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" -}), 'AlignVerticalBottom'); \ No newline at end of file +}), 'AlignVerticalBottom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalBottomOutlined.js b/packages/material-ui-icons/lib/AlignVerticalBottomOutlined.js index e405566dd1160f..6ef74b46a13f33 100644 --- a/packages/material-ui-icons/lib/AlignVerticalBottomOutlined.js +++ b/packages/material-ui-icons/lib/AlignVerticalBottomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" -}), 'AlignVerticalBottomOutlined'); \ No newline at end of file +}), 'AlignVerticalBottomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalBottomRounded.js b/packages/material-ui-icons/lib/AlignVerticalBottomRounded.js index a2f1c02a5476b7..3b4d95a37e737c 100644 --- a/packages/material-ui-icons/lib/AlignVerticalBottomRounded.js +++ b/packages/material-ui-icons/lib/AlignVerticalBottomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 22H3c-.55 0-1-.45-1-1s.45-1 1-1h18c.55 0 1 .45 1 1s-.45 1-1 1zM8.5 2C7.67 2 7 2.67 7 3.5v13c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-13C10 2.67 9.33 2 8.5 2zm7 6c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5z" -}), 'AlignVerticalBottomRounded'); \ No newline at end of file +}), 'AlignVerticalBottomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalBottomSharp.js b/packages/material-ui-icons/lib/AlignVerticalBottomSharp.js index 4846b4141efeae..762fd572817418 100644 --- a/packages/material-ui-icons/lib/AlignVerticalBottomSharp.js +++ b/packages/material-ui-icons/lib/AlignVerticalBottomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" -}), 'AlignVerticalBottomSharp'); \ No newline at end of file +}), 'AlignVerticalBottomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalBottomTwoTone.js b/packages/material-ui-icons/lib/AlignVerticalBottomTwoTone.js index 5b2496a6d47b8c..8f576c52283de8 100644 --- a/packages/material-ui-icons/lib/AlignVerticalBottomTwoTone.js +++ b/packages/material-ui-icons/lib/AlignVerticalBottomTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" -}), 'AlignVerticalBottomTwoTone'); \ No newline at end of file +}), 'AlignVerticalBottomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalCenter.js b/packages/material-ui-icons/lib/AlignVerticalCenter.js index d7f73f73bf292a..b1ebaef5913cf7 100644 --- a/packages/material-ui-icons/lib/AlignVerticalCenter.js +++ b/packages/material-ui-icons/lib/AlignVerticalCenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" -}), 'AlignVerticalCenter'); \ No newline at end of file +}), 'AlignVerticalCenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalCenterOutlined.js b/packages/material-ui-icons/lib/AlignVerticalCenterOutlined.js index cb7635881c41d5..6f1d1a2863ffc5 100644 --- a/packages/material-ui-icons/lib/AlignVerticalCenterOutlined.js +++ b/packages/material-ui-icons/lib/AlignVerticalCenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" -}), 'AlignVerticalCenterOutlined'); \ No newline at end of file +}), 'AlignVerticalCenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalCenterRounded.js b/packages/material-ui-icons/lib/AlignVerticalCenterRounded.js index 43d06496fc252c..cab39f805ec9f0 100644 --- a/packages/material-ui-icons/lib/AlignVerticalCenterRounded.js +++ b/packages/material-ui-icons/lib/AlignVerticalCenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11h-4V7.5c0-.83-.67-1.5-1.5-1.5S14 6.67 14 7.5V11h-4V4.5C10 3.67 9.33 3 8.5 3S7 3.67 7 4.5V11H2.84c-.55 0-1 .45-1 1s.45 1 1 1H7v6.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V13h4v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V13h4c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'AlignVerticalCenterRounded'); \ No newline at end of file +}), 'AlignVerticalCenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalCenterSharp.js b/packages/material-ui-icons/lib/AlignVerticalCenterSharp.js index f79f929df28078..94cc508516cf88 100644 --- a/packages/material-ui-icons/lib/AlignVerticalCenterSharp.js +++ b/packages/material-ui-icons/lib/AlignVerticalCenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" -}), 'AlignVerticalCenterSharp'); \ No newline at end of file +}), 'AlignVerticalCenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalCenterTwoTone.js b/packages/material-ui-icons/lib/AlignVerticalCenterTwoTone.js index be4cbc855ccf72..bfa648271f52fe 100644 --- a/packages/material-ui-icons/lib/AlignVerticalCenterTwoTone.js +++ b/packages/material-ui-icons/lib/AlignVerticalCenterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" -}), 'AlignVerticalCenterTwoTone'); \ No newline at end of file +}), 'AlignVerticalCenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalTop.js b/packages/material-ui-icons/lib/AlignVerticalTop.js index 34d57bc56b6693..66835e804c3bf4 100644 --- a/packages/material-ui-icons/lib/AlignVerticalTop.js +++ b/packages/material-ui-icons/lib/AlignVerticalTop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" -}), 'AlignVerticalTop'); \ No newline at end of file +}), 'AlignVerticalTop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalTopOutlined.js b/packages/material-ui-icons/lib/AlignVerticalTopOutlined.js index 6617f3cc536657..7d8696865b36e5 100644 --- a/packages/material-ui-icons/lib/AlignVerticalTopOutlined.js +++ b/packages/material-ui-icons/lib/AlignVerticalTopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" -}), 'AlignVerticalTopOutlined'); \ No newline at end of file +}), 'AlignVerticalTopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalTopRounded.js b/packages/material-ui-icons/lib/AlignVerticalTopRounded.js index b427227acf80b1..5b48aff854d991 100644 --- a/packages/material-ui-icons/lib/AlignVerticalTopRounded.js +++ b/packages/material-ui-icons/lib/AlignVerticalTopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1h18c.55 0 1 .45 1 1zM8.5 22c.83 0 1.5-.67 1.5-1.5v-13C10 6.67 9.33 6 8.5 6S7 6.67 7 7.5v13c0 .83.67 1.5 1.5 1.5zm7-6c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5S14 6.67 14 7.5v7c0 .83.67 1.5 1.5 1.5z" -}), 'AlignVerticalTopRounded'); \ No newline at end of file +}), 'AlignVerticalTopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalTopSharp.js b/packages/material-ui-icons/lib/AlignVerticalTopSharp.js index b7b7ef6d083e19..2a79bf67d51d95 100644 --- a/packages/material-ui-icons/lib/AlignVerticalTopSharp.js +++ b/packages/material-ui-icons/lib/AlignVerticalTopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" -}), 'AlignVerticalTopSharp'); \ No newline at end of file +}), 'AlignVerticalTopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlignVerticalTopTwoTone.js b/packages/material-ui-icons/lib/AlignVerticalTopTwoTone.js index a2fa273b3db952..7f2121e701c0ba 100644 --- a/packages/material-ui-icons/lib/AlignVerticalTopTwoTone.js +++ b/packages/material-ui-icons/lib/AlignVerticalTopTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" -}), 'AlignVerticalTopTwoTone'); \ No newline at end of file +}), 'AlignVerticalTopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInbox.js b/packages/material-ui-icons/lib/AllInbox.js index 68b75cc2aa5672..e47077f420ab97 100644 --- a/packages/material-ui-icons/lib/AllInbox.js +++ b/packages/material-ui-icons/lib/AllInbox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v3c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3z" -}), 'AllInbox'); \ No newline at end of file +}), 'AllInbox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInboxOutlined.js b/packages/material-ui-icons/lib/AllInboxOutlined.js index f148a8e85e1dba..dacf2c00e6d5ca 100644 --- a/packages/material-ui-icons/lib/AllInboxOutlined.js +++ b/packages/material-ui-icons/lib/AllInboxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z" -}), 'AllInboxOutlined'); \ No newline at end of file +}), 'AllInboxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInboxRounded.js b/packages/material-ui-icons/lib/AllInboxRounded.js index 67ec330f5d6976..aa50ff13eaf0de 100644 --- a/packages/material-ui-icons/lib/AllInboxRounded.js +++ b/packages/material-ui-icons/lib/AllInboxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-3.14c-.47 0-.84.33-.97.78C14.53 11.04 13.35 12 12 12s-2.53-.96-2.89-2.22c-.13-.45-.5-.78-.97-.78H5V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3zm-3.13 7H20c.55 0 1 .45 1 1v2c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-2c0-.55.45-1 1-1h4.13c.47 0 .85.34.98.8.35 1.27 1.51 2.2 2.89 2.2s2.54-.93 2.89-2.2c.13-.46.51-.8.98-.8z" -}), 'AllInboxRounded'); \ No newline at end of file +}), 'AllInboxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInboxSharp.js b/packages/material-ui-icons/lib/AllInboxSharp.js index f35515b530bec1..e73bb64d62c6cd 100644 --- a/packages/material-ui-icons/lib/AllInboxSharp.js +++ b/packages/material-ui-icons/lib/AllInboxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v11h18V3zm-2 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v5H3v-5h6c0 1.66 1.34 3 3 3s3-1.34 3-3z" -}), 'AllInboxSharp'); \ No newline at end of file +}), 'AllInboxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInboxTwoTone.js b/packages/material-ui-icons/lib/AllInboxTwoTone.js index eac269ea8887b0..38309164bc8a98 100644 --- a/packages/material-ui-icons/lib/AllInboxTwoTone.js +++ b/packages/material-ui-icons/lib/AllInboxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-5 7v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-7zm-9 2h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.13 10H5v2h4.4c-.6-.53-1.06-1.22-1.27-2zm6.47 2H19v-2h-3.13c-.21.78-.67 1.47-1.27 2zm-6.38 5.25c-.03-.08-.06-.16-.09-.25H5v2h4.4c-.53-.47-.94-1.07-1.18-1.75zm7.65-.25c-.02.09-.06.17-.09.25-.23.68-.64 1.28-1.18 1.75H19v-2h-3.13z", opacity: ".3" -}, "1")], 'AllInboxTwoTone'); \ No newline at end of file +}, "1")], 'AllInboxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInclusive.js b/packages/material-ui-icons/lib/AllInclusive.js index eb1ce46d05209c..2d12bdae02d66b 100644 --- a/packages/material-ui-icons/lib/AllInclusive.js +++ b/packages/material-ui-icons/lib/AllInclusive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L12 10.66 10.48 12h.01L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" -}), 'AllInclusive'); \ No newline at end of file +}), 'AllInclusive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInclusiveOutlined.js b/packages/material-ui-icons/lib/AllInclusiveOutlined.js index b540ea94913d30..2d783d056a64f4 100644 --- a/packages/material-ui-icons/lib/AllInclusiveOutlined.js +++ b/packages/material-ui-icons/lib/AllInclusiveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" -}), 'AllInclusiveOutlined'); \ No newline at end of file +}), 'AllInclusiveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInclusiveRounded.js b/packages/material-ui-icons/lib/AllInclusiveRounded.js index bded5a6f9800bf..0b3cb45d13353d 100644 --- a/packages/material-ui-icons/lib/AllInclusiveRounded.js +++ b/packages/material-ui-icons/lib/AllInclusiveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.22 6.86c-2-.6-4.06-.04-5.39 1.29L12 10.66 10.48 12h.01L7.8 14.39c-.81.81-1.95 1.15-3.12.92-1.25-.25-2.28-1.25-2.57-2.49-.52-2.23 1.16-4.2 3.29-4.2.91 0 1.76.35 2.44 1.03l.47.41c.38.34.95.34 1.33 0 .45-.4.45-1.1 0-1.5l-.42-.36C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.81-.81 1.95-1.15 3.12-.92 1.25.25 2.28 1.25 2.57 2.49.52 2.23-1.16 4.2-3.29 4.2-.9 0-1.76-.35-2.44-1.03l-.48-.42c-.38-.34-.95-.34-1.33 0-.45.4-.45 1.1 0 1.5l.42.37c1.02 1.01 2.37 1.57 3.82 1.57 3.27 0 5.86-2.9 5.33-6.25-.3-1.99-1.77-3.69-3.7-4.26z" -}), 'AllInclusiveRounded'); \ No newline at end of file +}), 'AllInclusiveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInclusiveSharp.js b/packages/material-ui-icons/lib/AllInclusiveSharp.js index 87c36b54b0f9b4..c1f6144e061fbd 100644 --- a/packages/material-ui-icons/lib/AllInclusiveSharp.js +++ b/packages/material-ui-icons/lib/AllInclusiveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53L13.51 12l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" -}), 'AllInclusiveSharp'); \ No newline at end of file +}), 'AllInclusiveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllInclusiveTwoTone.js b/packages/material-ui-icons/lib/AllInclusiveTwoTone.js index 792d53963c3029..07267b853af035 100644 --- a/packages/material-ui-icons/lib/AllInclusiveTwoTone.js +++ b/packages/material-ui-icons/lib/AllInclusiveTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" -}), 'AllInclusiveTwoTone'); \ No newline at end of file +}), 'AllInclusiveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllOut.js b/packages/material-ui-icons/lib/AllOut.js index 7769eb214c3f3c..7aa6b63b8d2b80 100644 --- a/packages/material-ui-icons/lib/AllOut.js +++ b/packages/material-ui-icons/lib/AllOut.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.21 4.16 4 4v-4zm4 12-4 4h4zm-12 4-4-4v4zm-4-12 4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z" -}), 'AllOut'); \ No newline at end of file +}), 'AllOut'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllOutOutlined.js b/packages/material-ui-icons/lib/AllOutOutlined.js index 28817bf71479a4..be28ec44df8ba2 100644 --- a/packages/material-ui-icons/lib/AllOutOutlined.js +++ b/packages/material-ui-icons/lib/AllOutOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v4l4-4zm12 0 4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}), 'AllOutOutlined'); \ No newline at end of file +}), 'AllOutOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllOutRounded.js b/packages/material-ui-icons/lib/AllOutRounded.js index 56d9e6cdf4f66c..ac60cc8b2aa56f 100644 --- a/packages/material-ui-icons/lib/AllOutRounded.js +++ b/packages/material-ui-icons/lib/AllOutRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4.5V8l4-4H4.5c-.28 0-.5.22-.5.5zM16 4l4 4V4.5c0-.28-.22-.5-.5-.5H16zm4 15.5V16l-4 4h3.5c.28 0 .5-.22.5-.5zM4.5 20H8l-4-4v3.5c0 .28.22.5.5.5zM19 12c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}), 'AllOutRounded'); \ No newline at end of file +}), 'AllOutRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllOutSharp.js b/packages/material-ui-icons/lib/AllOutSharp.js index 6d90542d11d593..3ddf160b2e2b81 100644 --- a/packages/material-ui-icons/lib/AllOutSharp.js +++ b/packages/material-ui-icons/lib/AllOutSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v4l4-4zm12 0 4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}), 'AllOutSharp'); \ No newline at end of file +}), 'AllOutSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AllOutTwoTone.js b/packages/material-ui-icons/lib/AllOutTwoTone.js index f35e143b39d8c3..421e5c89730e1d 100644 --- a/packages/material-ui-icons/lib/AllOutTwoTone.js +++ b/packages/material-ui-icons/lib/AllOutTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v4l4-4zm12 0 4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'AllOutTwoTone'); \ No newline at end of file +}, "1")], 'AllOutTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AltRoute.js b/packages/material-ui-icons/lib/AltRoute.js index 17576f42b6e09d..afbf35afe6c0cf 100644 --- a/packages/material-ui-icons/lib/AltRoute.js +++ b/packages/material-ui-icons/lib/AltRoute.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" -}), 'AltRoute'); \ No newline at end of file +}), 'AltRoute'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AltRouteOutlined.js b/packages/material-ui-icons/lib/AltRouteOutlined.js index ced9c02c968df3..c7d18ef99c1242 100644 --- a/packages/material-ui-icons/lib/AltRouteOutlined.js +++ b/packages/material-ui-icons/lib/AltRouteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" -}), 'AltRouteOutlined'); \ No newline at end of file +}), 'AltRouteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AltRouteRounded.js b/packages/material-ui-icons/lib/AltRouteRounded.js index 31214346cf305a..35bb6f5582c364 100644 --- a/packages/material-ui-icons/lib/AltRouteRounded.js +++ b/packages/material-ui-icons/lib/AltRouteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zm.37-6.01-2.8-2.8c-.2-.2-.51-.2-.71 0l-2.79 2.8c-.31.31-.09.85.36.85h1.81c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H9.8c.44 0 .66-.54.35-.85zm10 0-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.32.31-.1.85.35.85h1.78c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37h1.8c.45 0 .67-.54.36-.85z" -}), 'AltRouteRounded'); \ No newline at end of file +}), 'AltRouteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AltRouteSharp.js b/packages/material-ui-icons/lib/AltRouteSharp.js index 636739a3537987..3b3da8a1d022e2 100644 --- a/packages/material-ui-icons/lib/AltRouteSharp.js +++ b/packages/material-ui-icons/lib/AltRouteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" -}), 'AltRouteSharp'); \ No newline at end of file +}), 'AltRouteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AltRouteTwoTone.js b/packages/material-ui-icons/lib/AltRouteTwoTone.js index 35a28ba68019f9..906097770e156b 100644 --- a/packages/material-ui-icons/lib/AltRouteTwoTone.js +++ b/packages/material-ui-icons/lib/AltRouteTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" -}), 'AltRouteTwoTone'); \ No newline at end of file +}), 'AltRouteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlternateEmail.js b/packages/material-ui-icons/lib/AlternateEmail.js index d8eacee55ed8e7..2afc2df3b2af73 100644 --- a/packages/material-ui-icons/lib/AlternateEmail.js +++ b/packages/material-ui-icons/lib/AlternateEmail.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'AlternateEmail'); \ No newline at end of file +}), 'AlternateEmail'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlternateEmailOutlined.js b/packages/material-ui-icons/lib/AlternateEmailOutlined.js index 8d152a72f43389..9f4ea412d62d07 100644 --- a/packages/material-ui-icons/lib/AlternateEmailOutlined.js +++ b/packages/material-ui-icons/lib/AlternateEmailOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'AlternateEmailOutlined'); \ No newline at end of file +}), 'AlternateEmailOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlternateEmailRounded.js b/packages/material-ui-icons/lib/AlternateEmailRounded.js index 32f1b70a757047..e381a321dd9e8f 100644 --- a/packages/material-ui-icons/lib/AlternateEmailRounded.js +++ b/packages/material-ui-icons/lib/AlternateEmailRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.72 2.03C6.63 1.6 1.6 6.63 2.03 12.72 2.39 18.01 7.01 22 12.31 22H16c.55 0 1-.45 1-1s-.45-1-1-1h-3.67c-3.73 0-7.15-2.42-8.08-6.03-1.49-5.8 3.91-11.21 9.71-9.71C17.58 5.18 20 8.6 20 12.33v1.1c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.25c0-2.51-1.78-4.77-4.26-5.12-3.4-.49-6.27 2.45-5.66 5.87.34 1.91 1.83 3.49 3.72 3.94 1.84.43 3.59-.16 4.74-1.33.89 1.22 2.67 1.86 4.3 1.21 1.34-.53 2.16-1.9 2.16-3.34v-1.09c0-5.31-3.99-9.93-9.28-10.29zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'AlternateEmailRounded'); \ No newline at end of file +}), 'AlternateEmailRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlternateEmailSharp.js b/packages/material-ui-icons/lib/AlternateEmailSharp.js index b44fb49ba5ed4b..dd1f9f70bdf260 100644 --- a/packages/material-ui-icons/lib/AlternateEmailSharp.js +++ b/packages/material-ui-icons/lib/AlternateEmailSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'AlternateEmailSharp'); \ No newline at end of file +}), 'AlternateEmailSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AlternateEmailTwoTone.js b/packages/material-ui-icons/lib/AlternateEmailTwoTone.js index 71efaecc4402ee..7f6752b8a517d3 100644 --- a/packages/material-ui-icons/lib/AlternateEmailTwoTone.js +++ b/packages/material-ui-icons/lib/AlternateEmailTwoTone.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".9", d: "M12 21.95h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10s-10 4.48-10 10 4.48 10 10 10zm0-7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'AlternateEmailTwoTone'); \ No newline at end of file +}), 'AlternateEmailTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Analytics.js b/packages/material-ui-icons/lib/Analytics.js index 5cfa260f047a58..a3288069a09ac1 100644 --- a/packages/material-ui-icons/lib/Analytics.js +++ b/packages/material-ui-icons/lib/Analytics.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z" -}), 'Analytics'); \ No newline at end of file +}), 'Analytics'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnalyticsOutlined.js b/packages/material-ui-icons/lib/AnalyticsOutlined.js index 2c88c1bfbe6f6b..babdcccfd8cb45 100644 --- a/packages/material-ui-icons/lib/AnalyticsOutlined.js +++ b/packages/material-ui-icons/lib/AnalyticsOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 12h2v5H7zm8-5h2v10h-2zm-4 7h2v3h-2zm0-4h2v2h-2z" -}, "1")], 'AnalyticsOutlined'); \ No newline at end of file +}, "1")], 'AnalyticsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnalyticsRounded.js b/packages/material-ui-icons/lib/AnalyticsRounded.js index e74dd6e0bac5f4..e13eda0fd4c636 100644 --- a/packages/material-ui-icons/lib/AnalyticsRounded.js +++ b/packages/material-ui-icons/lib/AnalyticsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1zm0-5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 5c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1z" -}), 'AnalyticsRounded'); \ No newline at end of file +}), 'AnalyticsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnalyticsSharp.js b/packages/material-ui-icons/lib/AnalyticsSharp.js index 0c242362fab1bb..fe3db0762c5656 100644 --- a/packages/material-ui-icons/lib/AnalyticsSharp.js +++ b/packages/material-ui-icons/lib/AnalyticsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm6 14H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z" -}), 'AnalyticsSharp'); \ No newline at end of file +}), 'AnalyticsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnalyticsTwoTone.js b/packages/material-ui-icons/lib/AnalyticsTwoTone.js index 68f1434fe0134d..cfbad6622a2f01 100644 --- a/packages/material-ui-icons/lib/AnalyticsTwoTone.js +++ b/packages/material-ui-icons/lib/AnalyticsTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h14v14H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 12h2v5H7zm8-5h2v10h-2zm-4 7h2v3h-2zm0-4h2v2h-2z" -}, "2")], 'AnalyticsTwoTone'); \ No newline at end of file +}, "2")], 'AnalyticsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Anchor.js b/packages/material-ui-icons/lib/Anchor.js index eefec02e0361e8..6917f84db013c2 100644 --- a/packages/material-ui-icons/lib/Anchor.js +++ b/packages/material-ui-icons/lib/Anchor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'Anchor'); \ No newline at end of file +}), 'Anchor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnchorOutlined.js b/packages/material-ui-icons/lib/AnchorOutlined.js index cb15fcbf0e0a2e..8bdfd76816013b 100644 --- a/packages/material-ui-icons/lib/AnchorOutlined.js +++ b/packages/material-ui-icons/lib/AnchorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'AnchorOutlined'); \ No newline at end of file +}), 'AnchorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnchorRounded.js b/packages/material-ui-icons/lib/AnchorRounded.js index 438077bfdeb505..d89ba268c18a96 100644 --- a/packages/material-ui-icons/lib/AnchorRounded.js +++ b/packages/material-ui-icons/lib/AnchorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H9c-.55 0-1 .45-1 1s.45 1 1 1h2v8.92c-2.22-.33-4.59-1.68-5.55-3.37l1.14-1.14c.22-.22.19-.57-.05-.75L3.8 12.6c-.33-.25-.8-.01-.8.4v2c0 3.88 4.92 7 9 7s9-3.12 9-7v-2c0-.41-.47-.65-.8-.4l-2.74 2.05c-.24.18-.27.54-.05.75l1.14 1.14c-.96 1.69-3.33 3.04-5.55 3.37V11h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zm-1-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'AnchorRounded'); \ No newline at end of file +}), 'AnchorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnchorSharp.js b/packages/material-ui-icons/lib/AnchorSharp.js index 9091193d01a9fd..33ff871fd1bfc5 100644 --- a/packages/material-ui-icons/lib/AnchorSharp.js +++ b/packages/material-ui-icons/lib/AnchorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'AnchorSharp'); \ No newline at end of file +}), 'AnchorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnchorTwoTone.js b/packages/material-ui-icons/lib/AnchorTwoTone.js index c667876d358ad1..82c00629496219 100644 --- a/packages/material-ui-icons/lib/AnchorTwoTone.js +++ b/packages/material-ui-icons/lib/AnchorTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'AnchorTwoTone'); \ No newline at end of file +}), 'AnchorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Android.js b/packages/material-ui-icons/lib/Android.js index b4526410b28d05..90d88936a98b56 100644 --- a/packages/material-ui-icons/lib/Android.js +++ b/packages/material-ui-icons/lib/Android.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" -}), 'Android'); \ No newline at end of file +}), 'Android'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AndroidOutlined.js b/packages/material-ui-icons/lib/AndroidOutlined.js index f55a76b413f9d3..7985425389aec4 100644 --- a/packages/material-ui-icons/lib/AndroidOutlined.js +++ b/packages/material-ui-icons/lib/AndroidOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" -}), 'AndroidOutlined'); \ No newline at end of file +}), 'AndroidOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AndroidRounded.js b/packages/material-ui-icons/lib/AndroidRounded.js index f35d1dddf22c33..2152478fced45e 100644 --- a/packages/material-ui-icons/lib/AndroidRounded.js +++ b/packages/material-ui-icons/lib/AndroidRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" -}), 'AndroidRounded'); \ No newline at end of file +}), 'AndroidRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AndroidSharp.js b/packages/material-ui-icons/lib/AndroidSharp.js index 45cfcdf9903716..4d5fedf7aac3db 100644 --- a/packages/material-ui-icons/lib/AndroidSharp.js +++ b/packages/material-ui-icons/lib/AndroidSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" -}), 'AndroidSharp'); \ No newline at end of file +}), 'AndroidSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AndroidTwoTone.js b/packages/material-ui-icons/lib/AndroidTwoTone.js index 3f89fb688b4661..b1f5ae37590ca0 100644 --- a/packages/material-ui-icons/lib/AndroidTwoTone.js +++ b/packages/material-ui-icons/lib/AndroidTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" -}), 'AndroidTwoTone'); \ No newline at end of file +}), 'AndroidTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Animation.js b/packages/material-ui-icons/lib/Animation.js index 143e1d3d77d9a3..0208466c52a116 100644 --- a/packages/material-ui-icons/lib/Animation.js +++ b/packages/material-ui-icons/lib/Animation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" -}), 'Animation'); \ No newline at end of file +}), 'Animation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnimationOutlined.js b/packages/material-ui-icons/lib/AnimationOutlined.js index e77406e5ebef5b..799bc1da326fcc 100644 --- a/packages/material-ui-icons/lib/AnimationOutlined.js +++ b/packages/material-ui-icons/lib/AnimationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" -}), 'AnimationOutlined'); \ No newline at end of file +}), 'AnimationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnimationRounded.js b/packages/material-ui-icons/lib/AnimationRounded.js index 95533335603f19..bae8a8f1fbb5e5 100644 --- a/packages/material-ui-icons/lib/AnimationRounded.js +++ b/packages/material-ui-icons/lib/AnimationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" -}), 'AnimationRounded'); \ No newline at end of file +}), 'AnimationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnimationSharp.js b/packages/material-ui-icons/lib/AnimationSharp.js index 90df367192f6c8..fde34b402ca4c1 100644 --- a/packages/material-ui-icons/lib/AnimationSharp.js +++ b/packages/material-ui-icons/lib/AnimationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" -}), 'AnimationSharp'); \ No newline at end of file +}), 'AnimationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnimationTwoTone.js b/packages/material-ui-icons/lib/AnimationTwoTone.js index 2da87a0afbc3d5..c1cc6e3f3fc666 100644 --- a/packages/material-ui-icons/lib/AnimationTwoTone.js +++ b/packages/material-ui-icons/lib/AnimationTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 12c-.63.84-1 1.88-1 3 0 2.76 2.24 5 5 5 1.12 0 2.16-.37 3-1-3.87 0-7-3.13-7-7zm10-8c-1.13 0-2.16.37-3 1 3.87.01 7 3.14 7 7 .63-.84 1-1.88 1-3 0-2.76-2.24-5-5-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-.6 0-1.17.11-1.7.3-.19.53-.3 1.1-.3 1.7 0 2.76 2.24 5 5 5 .6 0 1.17-.11 1.7-.3.19-.53.3-1.1.3-1.7 0-2.76-2.24-5-5-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9c-.63.84-1 1.88-1 3 0 2.76 2.24 5 5 5 1.12 0 2.16-.37 3-1-3.87-.01-7-3.14-7-7z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" -}, "3")], 'AnimationTwoTone'); \ No newline at end of file +}, "3")], 'AnimationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Announcement.js b/packages/material-ui-icons/lib/Announcement.js index a0928d5736380f..d4865e0a841eed 100644 --- a/packages/material-ui-icons/lib/Announcement.js +++ b/packages/material-ui-icons/lib/Announcement.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z" -}), 'Announcement'); \ No newline at end of file +}), 'Announcement'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnnouncementOutlined.js b/packages/material-ui-icons/lib/AnnouncementOutlined.js index fa8e43066d4eff..03e49b67a0c436 100644 --- a/packages/material-ui-icons/lib/AnnouncementOutlined.js +++ b/packages/material-ui-icons/lib/AnnouncementOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z" -}), 'AnnouncementOutlined'); \ No newline at end of file +}), 'AnnouncementOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnnouncementRounded.js b/packages/material-ui-icons/lib/AnnouncementRounded.js index 42ee80f3a1cbf5..cae7e6d371e8a3 100644 --- a/packages/material-ui-icons/lib/AnnouncementRounded.js +++ b/packages/material-ui-icons/lib/AnnouncementRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 9c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z" -}), 'AnnouncementRounded'); \ No newline at end of file +}), 'AnnouncementRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnnouncementSharp.js b/packages/material-ui-icons/lib/AnnouncementSharp.js index 9318e59f374a40..8d8b33fa182d5c 100644 --- a/packages/material-ui-icons/lib/AnnouncementSharp.js +++ b/packages/material-ui-icons/lib/AnnouncementSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zm-9 9h-2V5h2v6zm0 4h-2v-2h2v2z" -}), 'AnnouncementSharp'); \ No newline at end of file +}), 'AnnouncementSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AnnouncementTwoTone.js b/packages/material-ui-icons/lib/AnnouncementTwoTone.js index 3f2f72ac798d06..59e5b654b039e7 100644 --- a/packages/material-ui-icons/lib/AnnouncementTwoTone.js +++ b/packages/material-ui-icons/lib/AnnouncementTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v13.17l.59-.59.58-.58H20V4H4zm9 11h-2v-2h2v2zm0-4h-2V5h2v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z" -}, "1")], 'AnnouncementTwoTone'); \ No newline at end of file +}, "1")], 'AnnouncementTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Aod.js b/packages/material-ui-icons/lib/Aod.js index 13ad758c96747c..f1501004d7fb3f 100644 --- a/packages/material-ui-icons/lib/Aod.js +++ b/packages/material-ui-icons/lib/Aod.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-9-8h8v1.5H8V10zm1 3h6v1.5H9V13z" -}), 'Aod'); \ No newline at end of file +}), 'Aod'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AodOutlined.js b/packages/material-ui-icons/lib/AodOutlined.js index 2095832c6ae543..ed012ff53330fb 100644 --- a/packages/material-ui-icons/lib/AodOutlined.js +++ b/packages/material-ui-icons/lib/AodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-9 6h8v1.5H8V10zm1 3h6v1.5H9V13z" -}), 'AodOutlined'); \ No newline at end of file +}), 'AodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AodRounded.js b/packages/material-ui-icons/lib/AodRounded.js index 94f39b3c4abcba..488f9b6910f57c 100644 --- a/packages/material-ui-icons/lib/AodRounded.js +++ b/packages/material-ui-icons/lib/AodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-8.25-8h6.5c.41 0 .75.34.75.75s-.34.75-.75.75h-6.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zm1 3h4.5c.41 0 .75.34.75.75s-.34.75-.75.75h-4.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75z" -}), 'AodRounded'); \ No newline at end of file +}), 'AodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AodSharp.js b/packages/material-ui-icons/lib/AodSharp.js index 1c2d3a8145ab8f..c7e1d2163b5abf 100644 --- a/packages/material-ui-icons/lib/AodSharp.js +++ b/packages/material-ui-icons/lib/AodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5v22h14V1zm-2 17H7V6h10v12zm-9-8h8v1.5H8V10zm1 3h6v1.5H9V13z" -}), 'AodSharp'); \ No newline at end of file +}), 'AodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AodTwoTone.js b/packages/material-ui-icons/lib/AodTwoTone.js index c4e531abaad688..15234e0e122235 100644 --- a/packages/material-ui-icons/lib/AodTwoTone.js +++ b/packages/material-ui-icons/lib/AodTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-9 6h8v1.5H8V10zm1 3h6v1.5H9V13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", opacity: ".3" -}, "1")], 'AodTwoTone'); \ No newline at end of file +}, "1")], 'AodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Apartment.js b/packages/material-ui-icons/lib/Apartment.js index b697cce995a2a9..0c4dea24da9ae4 100644 --- a/packages/material-ui-icons/lib/Apartment.js +++ b/packages/material-ui-icons/lib/Apartment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'Apartment'); \ No newline at end of file +}), 'Apartment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApartmentOutlined.js b/packages/material-ui-icons/lib/ApartmentOutlined.js index 1f0b03e9a6c9e6..e98df298dd0a09 100644 --- a/packages/material-ui-icons/lib/ApartmentOutlined.js +++ b/packages/material-ui-icons/lib/ApartmentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'ApartmentOutlined'); \ No newline at end of file +}), 'ApartmentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApartmentRounded.js b/packages/material-ui-icons/lib/ApartmentRounded.js index ae072cf1e86187..286c8245115564 100644 --- a/packages/material-ui-icons/lib/ApartmentRounded.js +++ b/packages/material-ui-icons/lib/ApartmentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11V5c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h5c.55 0 1-.45 1-1v-3h2v3c0 .55.45 1 1 1h5c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-2zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'ApartmentRounded'); \ No newline at end of file +}), 'ApartmentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApartmentSharp.js b/packages/material-ui-icons/lib/ApartmentSharp.js index c03de849cbad99..55b28caee74679 100644 --- a/packages/material-ui-icons/lib/ApartmentSharp.js +++ b/packages/material-ui-icons/lib/ApartmentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'ApartmentSharp'); \ No newline at end of file +}), 'ApartmentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApartmentTwoTone.js b/packages/material-ui-icons/lib/ApartmentTwoTone.js index c7bf2236ea3743..952392ec74b281 100644 --- a/packages/material-ui-icons/lib/ApartmentTwoTone.js +++ b/packages/material-ui-icons/lib/ApartmentTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'ApartmentTwoTone'); \ No newline at end of file +}), 'ApartmentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Api.js b/packages/material-ui-icons/lib/Api.js index dbf1fff23c29df..730e0c29e990e2 100644 --- a/packages/material-ui-icons/lib/Api.js +++ b/packages/material-ui-icons/lib/Api.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" -}), 'Api'); \ No newline at end of file +}), 'Api'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApiOutlined.js b/packages/material-ui-icons/lib/ApiOutlined.js index a410d86c5d26ce..e8c487f18b35fa 100644 --- a/packages/material-ui-icons/lib/ApiOutlined.js +++ b/packages/material-ui-icons/lib/ApiOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" -}), 'ApiOutlined'); \ No newline at end of file +}), 'ApiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApiRounded.js b/packages/material-ui-icons/lib/ApiRounded.js index e062b653e390cd..36e2ee3fef8a37 100644 --- a/packages/material-ui-icons/lib/ApiRounded.js +++ b/packages/material-ui-icons/lib/ApiRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 13c-.56.56-1.45.56-2 .01V13c-.55-.55-.55-1.44 0-1.99V11c.55-.55 1.44-.55 1.99 0H13c.55.55.55 1.45 0 2zm-1-7 2.12 2.12 2.5-2.5-3.2-3.2c-.78-.78-2.05-.78-2.83 0l-3.2 3.2 2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5-3.2 3.2c-.78.78-.78 2.05 0 2.83l3.2 3.2 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5 3.2-3.2c.78-.78.78-2.05 0-2.83l-3.2-3.2-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5 3.2 3.2c.78.78 2.05.78 2.83 0l3.2-3.2-2.5-2.5L12 18z" -}), 'ApiRounded'); \ No newline at end of file +}), 'ApiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApiSharp.js b/packages/material-ui-icons/lib/ApiSharp.js index 161b99dc0eb1f2..28cd933fe12058 100644 --- a/packages/material-ui-icons/lib/ApiSharp.js +++ b/packages/material-ui-icons/lib/ApiSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" -}), 'ApiSharp'); \ No newline at end of file +}), 'ApiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApiTwoTone.js b/packages/material-ui-icons/lib/ApiTwoTone.js index 78c35b05e0c936..8a42ede3c1c08d 100644 --- a/packages/material-ui-icons/lib/ApiTwoTone.js +++ b/packages/material-ui-icons/lib/ApiTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" -}), 'ApiTwoTone'); \ No newline at end of file +}), 'ApiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppBlocking.js b/packages/material-ui-icons/lib/AppBlocking.js index cb62351a03a723..9318ade0c2a9ce 100644 --- a/packages/material-ui-icons/lib/AppBlocking.js +++ b/packages/material-ui-icons/lib/AppBlocking.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z" -}), 'AppBlocking'); \ No newline at end of file +}), 'AppBlocking'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppBlockingOutlined.js b/packages/material-ui-icons/lib/AppBlockingOutlined.js index 8789e389d746ca..a03a74edf737c9 100644 --- a/packages/material-ui-icons/lib/AppBlockingOutlined.js +++ b/packages/material-ui-icons/lib/AppBlockingOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" -}, "1")], 'AppBlockingOutlined'); \ No newline at end of file +}, "1")], 'AppBlockingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppBlockingRounded.js b/packages/material-ui-icons/lib/AppBlockingRounded.js index 5e844a1f338864..1367c6f7c495fb 100644 --- a/packages/material-ui-icons/lib/AppBlockingRounded.js +++ b/packages/material-ui-icons/lib/AppBlockingRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z" -}, "1")], 'AppBlockingRounded'); \ No newline at end of file +}, "1")], 'AppBlockingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppBlockingSharp.js b/packages/material-ui-icons/lib/AppBlockingSharp.js index b88d04f0c54782..21725e94996c31 100644 --- a/packages/material-ui-icons/lib/AppBlockingSharp.js +++ b/packages/material-ui-icons/lib/AppBlockingSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 23v-6h-2v1H7V6h10v1h2V.94L5 1v22h14z" -}, "1")], 'AppBlockingSharp'); \ No newline at end of file +}, "1")], 'AppBlockingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppBlockingTwoTone.js b/packages/material-ui-icons/lib/AppBlockingTwoTone.js index 1cb15ccb527327..3818c5cee28607 100644 --- a/packages/material-ui-icons/lib/AppBlockingTwoTone.js +++ b/packages/material-ui-icons/lib/AppBlockingTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h10v1H7zm0 17h10v1H7z", opacity: ".3" -}, "2")], 'AppBlockingTwoTone'); \ No newline at end of file +}, "2")], 'AppBlockingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppRegistration.js b/packages/material-ui-icons/lib/AppRegistration.js index 5e93db44fdb170..6d3f14d7008fa3 100644 --- a/packages/material-ui-icons/lib/AppRegistration.js +++ b/packages/material-ui-icons/lib/AppRegistration.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm10 8.42V10h-4v4h2.42zm6.88-1.13-1.17-1.17c-.16-.16-.42-.16-.58 0l-.88.88L20 12.75l.88-.88c.16-.16.16-.42 0-.58zM11 18.25V20h1.75l6.67-6.67-1.75-1.75zM16 4h4v4h-4z" -}), 'AppRegistration'); \ No newline at end of file +}), 'AppRegistration'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppRegistrationOutlined.js b/packages/material-ui-icons/lib/AppRegistrationOutlined.js index d034c3872d7ee9..6317746d4aa0c3 100644 --- a/packages/material-ui-icons/lib/AppRegistrationOutlined.js +++ b/packages/material-ui-icons/lib/AppRegistrationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm6.85-.47-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06c.2-.2.2-.51 0-.71z" -}), 'AppRegistrationOutlined'); \ No newline at end of file +}), 'AppRegistrationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppRegistrationRounded.js b/packages/material-ui-icons/lib/AppRegistrationRounded.js index c5ace0965346e4..fc915aae0540b1 100644 --- a/packages/material-ui-icons/lib/AppRegistrationRounded.js +++ b/packages/material-ui-icons/lib/AppRegistrationRounded.js @@ -1,25 +1,38 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "18", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "12", r: "2" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "6", r: "2" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "2" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18.07v1.43c0 .28.22.5.5.5h1.4c.13 0 .26-.05.35-.15l5.83-5.83-2.12-2.12-5.81 5.81c-.1.1-.15.23-.15.36zM12.03 14 14 12.03V12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2h.03zm8.82-2.44-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06c.2-.2.2-.51 0-.71z" -}, "5")], 'AppRegistrationRounded'); \ No newline at end of file +}, "5")], 'AppRegistrationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppRegistrationSharp.js b/packages/material-ui-icons/lib/AppRegistrationSharp.js index c8ab3b92cd76ba..7895f65e1f147c 100644 --- a/packages/material-ui-icons/lib/AppRegistrationSharp.js +++ b/packages/material-ui-icons/lib/AppRegistrationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm3.6713-.8243 1.4142-1.4143 2.1214 2.1214-1.4143 1.4142z" -}), 'AppRegistrationSharp'); \ No newline at end of file +}), 'AppRegistrationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppRegistrationTwoTone.js b/packages/material-ui-icons/lib/AppRegistrationTwoTone.js index ef2ae1b407c83d..1ef24ea0764bdb 100644 --- a/packages/material-ui-icons/lib/AppRegistrationTwoTone.js +++ b/packages/material-ui-icons/lib/AppRegistrationTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm6.85-.47-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06c.2-.2.2-.51 0-.71z" -}), 'AppRegistrationTwoTone'); \ No newline at end of file +}), 'AppRegistrationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppSettingsAlt.js b/packages/material-ui-icons/lib/AppSettingsAlt.js index 23dffc1090e6eb..6202a3e3412f07 100644 --- a/packages/material-ui-icons/lib/AppSettingsAlt.js +++ b/packages/material-ui-icons/lib/AppSettingsAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1z" -}), 'AppSettingsAlt'); \ No newline at end of file +}), 'AppSettingsAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppSettingsAltOutlined.js b/packages/material-ui-icons/lib/AppSettingsAltOutlined.js index f538a6d781b00b..6d1090c5ea4970 100644 --- a/packages/material-ui-icons/lib/AppSettingsAltOutlined.js +++ b/packages/material-ui-icons/lib/AppSettingsAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" -}), 'AppSettingsAltOutlined'); \ No newline at end of file +}), 'AppSettingsAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppSettingsAltRounded.js b/packages/material-ui-icons/lib/AppSettingsAltRounded.js index 898909954e5472..147ff09c4c5a14 100644 --- a/packages/material-ui-icons/lib/AppSettingsAltRounded.js +++ b/packages/material-ui-icons/lib/AppSettingsAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zm4-6c0-.13-.02-.26-.04-.39l.64-.48c.2-.15.26-.44.13-.66l-.57-.96c-.13-.21-.39-.3-.62-.2l-.72.3c-.2-.15-.42-.29-.65-.39l-.1-.77c-.03-.25-.24-.43-.49-.44l-1.12-.02c-.26 0-.47.18-.5.44l-.1.79c-.24.1-.45.23-.65.39l-.72-.3c-.23-.1-.5-.01-.62.2l-.57.96c-.13.22-.08.5.13.66l.64.48c-.05.13-.07.26-.07.39s.02.25.04.37l-.64.49c-.2.15-.26.43-.13.65l.56.97c.13.22.39.31.63.21l.73-.31c.2.16.42.3.67.4l.1.77c.03.25.24.44.5.44h1.12c.25 0 .46-.19.5-.44l.1-.77c.24-.1.46-.24.67-.4l.73.31c.23.1.5.01.63-.21l.56-.97c.13-.22.07-.5-.13-.65l-.64-.49c-.02-.12 0-.24 0-.37zm-3 1.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'AppSettingsAltRounded'); \ No newline at end of file +}), 'AppSettingsAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppSettingsAltSharp.js b/packages/material-ui-icons/lib/AppSettingsAltSharp.js index c0c0c020e5b497..40503c7fd31a7d 100644 --- a/packages/material-ui-icons/lib/AppSettingsAltSharp.js +++ b/packages/material-ui-icons/lib/AppSettingsAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 23V1h14v6h-2V6H7v12h10v-1h2v6H5z" -}), 'AppSettingsAltSharp'); \ No newline at end of file +}), 'AppSettingsAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppSettingsAltTwoTone.js b/packages/material-ui-icons/lib/AppSettingsAltTwoTone.js index 87a6d97c1ba6b6..89e95dabed6209 100644 --- a/packages/material-ui-icons/lib/AppSettingsAltTwoTone.js +++ b/packages/material-ui-icons/lib/AppSettingsAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h10v1H7zm0 17h10v1H7z", opacity: ".3" -}, "1")], 'AppSettingsAltTwoTone'); \ No newline at end of file +}, "1")], 'AppSettingsAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Apple.js b/packages/material-ui-icons/lib/Apple.js index f953f0cdb0c4e7..d978a7c36ba9bc 100644 --- a/packages/material-ui-icons/lib/Apple.js +++ b/packages/material-ui-icons/lib/Apple.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z" -}), 'Apple'); \ No newline at end of file +}), 'Apple'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Approval.js b/packages/material-ui-icons/lib/Approval.js index 7bad4d1474af8c..ad96a894e15a6f 100644 --- a/packages/material-ui-icons/lib/Approval.js +++ b/packages/material-ui-icons/lib/Approval.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z" -}), 'Approval'); \ No newline at end of file +}), 'Approval'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApprovalOutlined.js b/packages/material-ui-icons/lib/ApprovalOutlined.js index 868d5daa3dd05f..4de01ff6f644e6 100644 --- a/packages/material-ui-icons/lib/ApprovalOutlined.js +++ b/packages/material-ui-icons/lib/ApprovalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z" -}), 'ApprovalOutlined'); \ No newline at end of file +}), 'ApprovalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApprovalRounded.js b/packages/material-ui-icons/lib/ApprovalRounded.js index f14d60d3098e70..eacf6829dd1fcd 100644 --- a/packages/material-ui-icons/lib/ApprovalRounded.js +++ b/packages/material-ui-icons/lib/ApprovalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm13 2H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zM12 2C9.54 2 7.48 3.79 7.07 6.13c-.08.52.06 1.05.36 1.47l3.76 5.26c.4.56 1.23.56 1.63 0l3.76-5.26c.3-.42.44-.95.35-1.47C16.52 3.79 14.46 2 12 2z" -}), 'ApprovalRounded'); \ No newline at end of file +}), 'ApprovalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApprovalSharp.js b/packages/material-ui-icons/lib/ApprovalSharp.js index 2a3e2e0059f75b..befe365db047df 100644 --- a/packages/material-ui-icons/lib/ApprovalSharp.js +++ b/packages/material-ui-icons/lib/ApprovalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 14v8h16v-8H4zm14 4H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5z" -}), 'ApprovalSharp'); \ No newline at end of file +}), 'ApprovalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ApprovalTwoTone.js b/packages/material-ui-icons/lib/ApprovalTwoTone.js index d271396769ab04..9c6e4676052030 100644 --- a/packages/material-ui-icons/lib/ApprovalTwoTone.js +++ b/packages/material-ui-icons/lib/ApprovalTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 16h12v2H6zm6-12c-1.66 0-3 1.34-3 3l3 4 3-4c0-1.66-1.34-3-3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4zm6 3H6c-1.1 0-2 .9-2 2v6h16v-6c0-1.1-.9-2-2-2zm0 4H6v-2h12v2z" -}, "1")], 'ApprovalTwoTone'); \ No newline at end of file +}, "1")], 'ApprovalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Apps.js b/packages/material-ui-icons/lib/Apps.js index 1be353a8c707bb..7b0fd4d8e690fe 100644 --- a/packages/material-ui-icons/lib/Apps.js +++ b/packages/material-ui-icons/lib/Apps.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" -}), 'Apps'); \ No newline at end of file +}), 'Apps'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppsOutlined.js b/packages/material-ui-icons/lib/AppsOutlined.js index e1dedddcb913f0..43826685c4ab49 100644 --- a/packages/material-ui-icons/lib/AppsOutlined.js +++ b/packages/material-ui-icons/lib/AppsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" -}), 'AppsOutlined'); \ No newline at end of file +}), 'AppsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppsRounded.js b/packages/material-ui-icons/lib/AppsRounded.js index 950bb93c3d80c3..7c53884b576fea 100644 --- a/packages/material-ui-icons/lib/AppsRounded.js +++ b/packages/material-ui-icons/lib/AppsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" -}), 'AppsRounded'); \ No newline at end of file +}), 'AppsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppsSharp.js b/packages/material-ui-icons/lib/AppsSharp.js index 8820e8c88b13fe..63027c49333bda 100644 --- a/packages/material-ui-icons/lib/AppsSharp.js +++ b/packages/material-ui-icons/lib/AppsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" -}), 'AppsSharp'); \ No newline at end of file +}), 'AppsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AppsTwoTone.js b/packages/material-ui-icons/lib/AppsTwoTone.js index 3c7cbdd5163255..b814d7ecead817 100644 --- a/packages/material-ui-icons/lib/AppsTwoTone.js +++ b/packages/material-ui-icons/lib/AppsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" -}), 'AppsTwoTone'); \ No newline at end of file +}), 'AppsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Architecture.js b/packages/material-ui-icons/lib/Architecture.js index 93c7aa08e24e38..ffffcdb1aadc3e 100644 --- a/packages/material-ui-icons/lib/Architecture.js +++ b/packages/material-ui-icons/lib/Architecture.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'Architecture'); \ No newline at end of file +}), 'Architecture'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchitectureOutlined.js b/packages/material-ui-icons/lib/ArchitectureOutlined.js index 01a96521b498b1..81673de5b48bf1 100644 --- a/packages/material-ui-icons/lib/ArchitectureOutlined.js +++ b/packages/material-ui-icons/lib/ArchitectureOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'ArchitectureOutlined'); \ No newline at end of file +}), 'ArchitectureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchitectureRounded.js b/packages/material-ui-icons/lib/ArchitectureRounded.js index fd85d050c2bb58..39de794c8f0d8d 100644 --- a/packages/material-ui-icons/lib/ArchitectureRounded.js +++ b/packages/material-ui-icons/lib/ArchitectureRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zm.17-2.28c.3-1.56-.6-2.94-1.94-3.42V4c0-.55-.45-1-1-1s-1 .45-1 1v1.18C9.84 5.6 9 6.7 9 8c0 1.84 1.66 3.3 3.56 2.95 1.18-.22 2.15-1.17 2.38-2.35zM12 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'ArchitectureRounded'); \ No newline at end of file +}), 'ArchitectureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchitectureSharp.js b/packages/material-ui-icons/lib/ArchitectureSharp.js index 4d97f903884ba6..334d8a5ab64d0b 100644 --- a/packages/material-ui-icons/lib/ArchitectureSharp.js +++ b/packages/material-ui-icons/lib/ArchitectureSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'ArchitectureSharp'); \ No newline at end of file +}), 'ArchitectureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchitectureTwoTone.js b/packages/material-ui-icons/lib/ArchitectureTwoTone.js index 95758096a652b1..9b7f507ce3373f 100644 --- a/packages/material-ui-icons/lib/ArchitectureTwoTone.js +++ b/packages/material-ui-icons/lib/ArchitectureTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'ArchitectureTwoTone'); \ No newline at end of file +}), 'ArchitectureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Archive.js b/packages/material-ui-icons/lib/Archive.js index c9e099510d7392..9fc86fabbef183 100644 --- a/packages/material-ui-icons/lib/Archive.js +++ b/packages/material-ui-icons/lib/Archive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM12 17.5 6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z" -}), 'Archive'); \ No newline at end of file +}), 'Archive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchiveOutlined.js b/packages/material-ui-icons/lib/ArchiveOutlined.js index 2a8d2dd1c537ed..c62302409d5069 100644 --- a/packages/material-ui-icons/lib/ArchiveOutlined.js +++ b/packages/material-ui-icons/lib/ArchiveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM5 19V8h14v11H5zm8.45-9h-2.9v3H8l4 4 4-4h-2.55z" -}), 'ArchiveOutlined'); \ No newline at end of file +}), 'ArchiveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchiveRounded.js b/packages/material-ui-icons/lib/ArchiveRounded.js index 37b46f1ffdd581..22edb45fa0d12f 100644 --- a/packages/material-ui-icons/lib/ArchiveRounded.js +++ b/packages/material-ui-icons/lib/ArchiveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zm-8.89 11.92L6.5 12H10v-2h4v2h3.5l-5.15 5.15c-.19.19-.51.19-.7 0zM5.12 5l.81-1h12l.94 1H5.12z" -}), 'ArchiveRounded'); \ No newline at end of file +}), 'ArchiveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchiveSharp.js b/packages/material-ui-icons/lib/ArchiveSharp.js index f1b0a483bb7741..ec8299706f6551 100644 --- a/packages/material-ui-icons/lib/ArchiveSharp.js +++ b/packages/material-ui-icons/lib/ArchiveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM12 17.5 6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z" -}), 'ArchiveSharp'); \ No newline at end of file +}), 'ArchiveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArchiveTwoTone.js b/packages/material-ui-icons/lib/ArchiveTwoTone.js index fd252aca1f6ff1..a96fc015ee4350 100644 --- a/packages/material-ui-icons/lib/ArchiveTwoTone.js +++ b/packages/material-ui-icons/lib/ArchiveTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V8H5v11zm5.55-6v-3h2.91v3H16l-4 4-4-4h2.55z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13h-2.55v-3h-2.9v3H8l4 4zm4.54-7.77-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM19 19H5V8h14v11z" -}, "1")], 'ArchiveTwoTone'); \ No newline at end of file +}, "1")], 'ArchiveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBack.js b/packages/material-ui-icons/lib/ArrowBack.js index 744f4f15c40168..cefccfdd774510 100644 --- a/packages/material-ui-icons/lib/ArrowBack.js +++ b/packages/material-ui-icons/lib/ArrowBack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" -}), 'ArrowBack'); \ No newline at end of file +}), 'ArrowBack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIos.js b/packages/material-ui-icons/lib/ArrowBackIos.js index 723cceef45fd93..20f4a798e13b7c 100644 --- a/packages/material-ui-icons/lib/ArrowBackIos.js +++ b/packages/material-ui-icons/lib/ArrowBackIos.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.67 3.87 9.9 2.1 0 12l9.9 9.9 1.77-1.77L3.54 12z" -}), 'ArrowBackIos'); \ No newline at end of file +}), 'ArrowBackIos'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosNew.js b/packages/material-ui-icons/lib/ArrowBackIosNew.js index d2e870bc2382e1..adfaa0c247e197 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosNew.js +++ b/packages/material-ui-icons/lib/ArrowBackIosNew.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" -}), 'ArrowBackIosNew'); \ No newline at end of file +}), 'ArrowBackIosNew'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosNewOutlined.js b/packages/material-ui-icons/lib/ArrowBackIosNewOutlined.js index 8c437331433259..cf51e29595b11f 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosNewOutlined.js +++ b/packages/material-ui-icons/lib/ArrowBackIosNewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" -}), 'ArrowBackIosNewOutlined'); \ No newline at end of file +}), 'ArrowBackIosNewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosNewRounded.js b/packages/material-ui-icons/lib/ArrowBackIosNewRounded.js index 5598769604dc28..9f0c763dc7d509 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosNewRounded.js +++ b/packages/material-ui-icons/lib/ArrowBackIosNewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.88 2.88c-.49-.49-1.28-.49-1.77 0L6.7 11.29c-.39.39-.39 1.02 0 1.41l8.41 8.41c.49.49 1.28.49 1.77 0s.49-1.28 0-1.77L9.54 12l7.35-7.35c.48-.49.48-1.28-.01-1.77z" -}), 'ArrowBackIosNewRounded'); \ No newline at end of file +}), 'ArrowBackIosNewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosNewSharp.js b/packages/material-ui-icons/lib/ArrowBackIosNewSharp.js index 42676f1ff001b4..e6452fcd26a860 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosNewSharp.js +++ b/packages/material-ui-icons/lib/ArrowBackIosNewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" -}), 'ArrowBackIosNewSharp'); \ No newline at end of file +}), 'ArrowBackIosNewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosNewTwoTone.js b/packages/material-ui-icons/lib/ArrowBackIosNewTwoTone.js index 5e12273ea48664..7693935ac46fe2 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosNewTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowBackIosNewTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" -}), 'ArrowBackIosNewTwoTone'); \ No newline at end of file +}), 'ArrowBackIosNewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosOutlined.js b/packages/material-ui-icons/lib/ArrowBackIosOutlined.js index 8ef77251b2397b..338b931ad92512 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosOutlined.js +++ b/packages/material-ui-icons/lib/ArrowBackIosOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.51 3.87 15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" -}), 'ArrowBackIosOutlined'); \ No newline at end of file +}), 'ArrowBackIosOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosRounded.js b/packages/material-ui-icons/lib/ArrowBackIosRounded.js index f00cf85924f55e..414065c4697e2f 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosRounded.js +++ b/packages/material-ui-icons/lib/ArrowBackIosRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.62 2.99c-.49-.49-1.28-.49-1.77 0L6.54 11.3c-.39.39-.39 1.02 0 1.41l8.31 8.31c.49.49 1.28.49 1.77 0s.49-1.28 0-1.77L9.38 12l7.25-7.25c.48-.48.48-1.28-.01-1.76z" -}), 'ArrowBackIosRounded'); \ No newline at end of file +}), 'ArrowBackIosRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosSharp.js b/packages/material-ui-icons/lib/ArrowBackIosSharp.js index 4b5f8e5e70e0c2..1d025e02b8f708 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosSharp.js +++ b/packages/material-ui-icons/lib/ArrowBackIosSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.51 3.87 15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" -}), 'ArrowBackIosSharp'); \ No newline at end of file +}), 'ArrowBackIosSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackIosTwoTone.js b/packages/material-ui-icons/lib/ArrowBackIosTwoTone.js index 488ee0aafa627b..88518189385d3c 100644 --- a/packages/material-ui-icons/lib/ArrowBackIosTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowBackIosTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.51 3.87 15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" -}), 'ArrowBackIosTwoTone'); \ No newline at end of file +}), 'ArrowBackIosTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackOutlined.js b/packages/material-ui-icons/lib/ArrowBackOutlined.js index 16d68606e31942..c87f65b841753c 100644 --- a/packages/material-ui-icons/lib/ArrowBackOutlined.js +++ b/packages/material-ui-icons/lib/ArrowBackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" -}), 'ArrowBackOutlined'); \ No newline at end of file +}), 'ArrowBackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackRounded.js b/packages/material-ui-icons/lib/ArrowBackRounded.js index f1bfc5b434968d..a102cbfb754aa1 100644 --- a/packages/material-ui-icons/lib/ArrowBackRounded.js +++ b/packages/material-ui-icons/lib/ArrowBackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11H7.83l4.88-4.88c.39-.39.39-1.03 0-1.42a.9959.9959 0 0 0-1.41 0l-6.59 6.59c-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L7.83 13H19c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'ArrowBackRounded'); \ No newline at end of file +}), 'ArrowBackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackSharp.js b/packages/material-ui-icons/lib/ArrowBackSharp.js index 29c46857a44ffb..3c63eedad4564c 100644 --- a/packages/material-ui-icons/lib/ArrowBackSharp.js +++ b/packages/material-ui-icons/lib/ArrowBackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" -}), 'ArrowBackSharp'); \ No newline at end of file +}), 'ArrowBackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowBackTwoTone.js b/packages/material-ui-icons/lib/ArrowBackTwoTone.js index a5f0557d302312..82f862e221f7f3 100644 --- a/packages/material-ui-icons/lib/ArrowBackTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowBackTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" -}), 'ArrowBackTwoTone'); \ No newline at end of file +}), 'ArrowBackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleDown.js b/packages/material-ui-icons/lib/ArrowCircleDown.js index 91a6571cc1bc8b..da81ab290160fa 100644 --- a/packages/material-ui-icons/lib/ArrowCircleDown.js +++ b/packages/material-ui-icons/lib/ArrowCircleDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" -}), 'ArrowCircleDown'); \ No newline at end of file +}), 'ArrowCircleDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleDownOutlined.js b/packages/material-ui-icons/lib/ArrowCircleDownOutlined.js index 75238d0d9e1f8c..948e5279987b3a 100644 --- a/packages/material-ui-icons/lib/ArrowCircleDownOutlined.js +++ b/packages/material-ui-icons/lib/ArrowCircleDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" -}), 'ArrowCircleDownOutlined'); \ No newline at end of file +}), 'ArrowCircleDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleDownRounded.js b/packages/material-ui-icons/lib/ArrowCircleDownRounded.js index 305cad4c70b0d9..17511c448a6294 100644 --- a/packages/material-ui-icons/lib/ArrowCircleDownRounded.js +++ b/packages/material-ui-icons/lib/ArrowCircleDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V9c0-.55-.45-1-1-1s-1 .45-1 1v3H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.35-.85H13z" -}), 'ArrowCircleDownRounded'); \ No newline at end of file +}), 'ArrowCircleDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleDownSharp.js b/packages/material-ui-icons/lib/ArrowCircleDownSharp.js index cec1f5bd0487bd..c1bb85311b02a1 100644 --- a/packages/material-ui-icons/lib/ArrowCircleDownSharp.js +++ b/packages/material-ui-icons/lib/ArrowCircleDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" -}), 'ArrowCircleDownSharp'); \ No newline at end of file +}), 'ArrowCircleDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleDownTwoTone.js b/packages/material-ui-icons/lib/ArrowCircleDownTwoTone.js index d77d14c91c004a..86f13ae6f50488 100644 --- a/packages/material-ui-icons/lib/ArrowCircleDownTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowCircleDownTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12-4-4h3V8h2v4h3l-4 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" -}, "1")], 'ArrowCircleDownTwoTone'); \ No newline at end of file +}, "1")], 'ArrowCircleDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleUp.js b/packages/material-ui-icons/lib/ArrowCircleUp.js index 9ea40a8e095f1a..735c4963469d27 100644 --- a/packages/material-ui-icons/lib/ArrowCircleUp.js +++ b/packages/material-ui-icons/lib/ArrowCircleUp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" -}), 'ArrowCircleUp'); \ No newline at end of file +}), 'ArrowCircleUp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleUpOutlined.js b/packages/material-ui-icons/lib/ArrowCircleUpOutlined.js index 287f2ba53b0fbc..f9840c1e43ec79 100644 --- a/packages/material-ui-icons/lib/ArrowCircleUpOutlined.js +++ b/packages/material-ui-icons/lib/ArrowCircleUpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" -}), 'ArrowCircleUpOutlined'); \ No newline at end of file +}), 'ArrowCircleUpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleUpRounded.js b/packages/material-ui-icons/lib/ArrowCircleUpRounded.js index 77f5b58de62adf..1cc0b53f6ddfcb 100644 --- a/packages/material-ui-icons/lib/ArrowCircleUpRounded.js +++ b/packages/material-ui-icons/lib/ArrowCircleUpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v3c0 .55.45 1 1 1s1-.45 1-1v-3h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85H11z" -}), 'ArrowCircleUpRounded'); \ No newline at end of file +}), 'ArrowCircleUpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleUpSharp.js b/packages/material-ui-icons/lib/ArrowCircleUpSharp.js index 39778ff03e2dbd..d8646f77335198 100644 --- a/packages/material-ui-icons/lib/ArrowCircleUpSharp.js +++ b/packages/material-ui-icons/lib/ArrowCircleUpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" -}), 'ArrowCircleUpSharp'); \ No newline at end of file +}), 'ArrowCircleUpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowCircleUpTwoTone.js b/packages/material-ui-icons/lib/ArrowCircleUpTwoTone.js index 4400d8d1fcf1ca..f9c180082897a3 100644 --- a/packages/material-ui-icons/lib/ArrowCircleUpTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowCircleUpTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m-1-8v4h2v-4h3l-4-4-4 4h3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" -}, "1")], 'ArrowCircleUpTwoTone'); \ No newline at end of file +}, "1")], 'ArrowCircleUpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDownward.js b/packages/material-ui-icons/lib/ArrowDownward.js index 989af5c6b03cf0..c9f676b46061f7 100644 --- a/packages/material-ui-icons/lib/ArrowDownward.js +++ b/packages/material-ui-icons/lib/ArrowDownward.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" -}), 'ArrowDownward'); \ No newline at end of file +}), 'ArrowDownward'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDownwardOutlined.js b/packages/material-ui-icons/lib/ArrowDownwardOutlined.js index b6cf0e8db04c06..00fc368631ea60 100644 --- a/packages/material-ui-icons/lib/ArrowDownwardOutlined.js +++ b/packages/material-ui-icons/lib/ArrowDownwardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" -}), 'ArrowDownwardOutlined'); \ No newline at end of file +}), 'ArrowDownwardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDownwardRounded.js b/packages/material-ui-icons/lib/ArrowDownwardRounded.js index 7d16af780223f4..ce3509373d7c89 100644 --- a/packages/material-ui-icons/lib/ArrowDownwardRounded.js +++ b/packages/material-ui-icons/lib/ArrowDownwardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5v11.17l-4.88-4.88c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L13 16.17V5c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'ArrowDownwardRounded'); \ No newline at end of file +}), 'ArrowDownwardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDownwardSharp.js b/packages/material-ui-icons/lib/ArrowDownwardSharp.js index f75de57178539c..c2e73a67f0bb51 100644 --- a/packages/material-ui-icons/lib/ArrowDownwardSharp.js +++ b/packages/material-ui-icons/lib/ArrowDownwardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" -}), 'ArrowDownwardSharp'); \ No newline at end of file +}), 'ArrowDownwardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDownwardTwoTone.js b/packages/material-ui-icons/lib/ArrowDownwardTwoTone.js index 73c57e5b52aa72..43bf72d6ab21ac 100644 --- a/packages/material-ui-icons/lib/ArrowDownwardTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowDownwardTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" -}), 'ArrowDownwardTwoTone'); \ No newline at end of file +}), 'ArrowDownwardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDown.js b/packages/material-ui-icons/lib/ArrowDropDown.js index b7fc73a260bb9f..140f821531cbca 100644 --- a/packages/material-ui-icons/lib/ArrowDropDown.js +++ b/packages/material-ui-icons/lib/ArrowDropDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 10 5 5 5-5z" -}), 'ArrowDropDown'); \ No newline at end of file +}), 'ArrowDropDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownCircle.js b/packages/material-ui-icons/lib/ArrowDropDownCircle.js index 82e8cfe911365b..c37eaae18a5fb4 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownCircle.js +++ b/packages/material-ui-icons/lib/ArrowDropDownCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 12-4-4h8l-4 4z" -}), 'ArrowDropDownCircle'); \ No newline at end of file +}), 'ArrowDropDownCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownCircleOutlined.js b/packages/material-ui-icons/lib/ArrowDropDownCircleOutlined.js index 08a25f0fc8b148..9d9ea48f72700e 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownCircleOutlined.js +++ b/packages/material-ui-icons/lib/ArrowDropDownCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13-4-4h8z" -}), 'ArrowDropDownCircleOutlined'); \ No newline at end of file +}), 'ArrowDropDownCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownCircleRounded.js b/packages/material-ui-icons/lib/ArrowDropDownCircleRounded.js index a7b29bdd4aef49..0a8d045f230e3b 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownCircleRounded.js +++ b/packages/material-ui-icons/lib/ArrowDropDownCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-.35 12.65-2.79-2.79c-.32-.32-.1-.86.35-.86h5.59c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.52.2-.71.01z" -}), 'ArrowDropDownCircleRounded'); \ No newline at end of file +}), 'ArrowDropDownCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownCircleSharp.js b/packages/material-ui-icons/lib/ArrowDropDownCircleSharp.js index 6a72c641661531..cc59718d838b48 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownCircleSharp.js +++ b/packages/material-ui-icons/lib/ArrowDropDownCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13-4-4h8l-4 4z" -}), 'ArrowDropDownCircleSharp'); \ No newline at end of file +}), 'ArrowDropDownCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownCircleTwoTone.js b/packages/material-ui-icons/lib/ArrowDropDownCircleTwoTone.js index 9a39c8e0f7203f..bd70c345e71430 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownCircleTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowDropDownCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 11-4-4h8l-4 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-5 4-4H8z" -}, "1")], 'ArrowDropDownCircleTwoTone'); \ No newline at end of file +}, "1")], 'ArrowDropDownCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownOutlined.js b/packages/material-ui-icons/lib/ArrowDropDownOutlined.js index dbe42e03c109be..5c6aeb6652e0d4 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownOutlined.js +++ b/packages/material-ui-icons/lib/ArrowDropDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 10 5 5 5-5H7z" -}), 'ArrowDropDownOutlined'); \ No newline at end of file +}), 'ArrowDropDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownRounded.js b/packages/material-ui-icons/lib/ArrowDropDownRounded.js index f8367dd7f3deb0..32cb22fbce6e61 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownRounded.js +++ b/packages/material-ui-icons/lib/ArrowDropDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.71 11.71 2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z" -}), 'ArrowDropDownRounded'); \ No newline at end of file +}), 'ArrowDropDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownSharp.js b/packages/material-ui-icons/lib/ArrowDropDownSharp.js index 7e2a2273304206..5925b86a120d0c 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownSharp.js +++ b/packages/material-ui-icons/lib/ArrowDropDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 10 5 5 5-5H7z" -}), 'ArrowDropDownSharp'); \ No newline at end of file +}), 'ArrowDropDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropDownTwoTone.js b/packages/material-ui-icons/lib/ArrowDropDownTwoTone.js index a136b202944cf9..8d8088b5e10e52 100644 --- a/packages/material-ui-icons/lib/ArrowDropDownTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowDropDownTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 10 5 5 5-5H7z" -}), 'ArrowDropDownTwoTone'); \ No newline at end of file +}), 'ArrowDropDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropUp.js b/packages/material-ui-icons/lib/ArrowDropUp.js index dd52c3a929fbe9..0a49657b770b87 100644 --- a/packages/material-ui-icons/lib/ArrowDropUp.js +++ b/packages/material-ui-icons/lib/ArrowDropUp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 14 5-5 5 5z" -}), 'ArrowDropUp'); \ No newline at end of file +}), 'ArrowDropUp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropUpOutlined.js b/packages/material-ui-icons/lib/ArrowDropUpOutlined.js index cf61255b295d4b..164689e0e46a7c 100644 --- a/packages/material-ui-icons/lib/ArrowDropUpOutlined.js +++ b/packages/material-ui-icons/lib/ArrowDropUpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 14 5-5 5 5H7z" -}), 'ArrowDropUpOutlined'); \ No newline at end of file +}), 'ArrowDropUpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropUpRounded.js b/packages/material-ui-icons/lib/ArrowDropUpRounded.js index 6011cf8c5833dd..78f26f38939326 100644 --- a/packages/material-ui-icons/lib/ArrowDropUpRounded.js +++ b/packages/material-ui-icons/lib/ArrowDropUpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.71 12.29 11.3 9.7c.39-.39 1.02-.39 1.41 0l2.59 2.59c.63.63.18 1.71-.71 1.71H9.41c-.89 0-1.33-1.08-.7-1.71z" -}), 'ArrowDropUpRounded'); \ No newline at end of file +}), 'ArrowDropUpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropUpSharp.js b/packages/material-ui-icons/lib/ArrowDropUpSharp.js index 007843e569b13b..0364dc1ec9aa58 100644 --- a/packages/material-ui-icons/lib/ArrowDropUpSharp.js +++ b/packages/material-ui-icons/lib/ArrowDropUpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 14 5-5 5 5H7z" -}), 'ArrowDropUpSharp'); \ No newline at end of file +}), 'ArrowDropUpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowDropUpTwoTone.js b/packages/material-ui-icons/lib/ArrowDropUpTwoTone.js index 38c8375da05513..8ebbc8b45bccc0 100644 --- a/packages/material-ui-icons/lib/ArrowDropUpTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowDropUpTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 14 5-5 5 5H7z" -}), 'ArrowDropUpTwoTone'); \ No newline at end of file +}), 'ArrowDropUpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForward.js b/packages/material-ui-icons/lib/ArrowForward.js index a4dcdd1717d48d..939fe9acc02002 100644 --- a/packages/material-ui-icons/lib/ArrowForward.js +++ b/packages/material-ui-icons/lib/ArrowForward.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z" -}), 'ArrowForward'); \ No newline at end of file +}), 'ArrowForward'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardIos.js b/packages/material-ui-icons/lib/ArrowForwardIos.js index 09f576c0a683bc..a7513bfb512987 100644 --- a/packages/material-ui-icons/lib/ArrowForwardIos.js +++ b/packages/material-ui-icons/lib/ArrowForwardIos.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" -}), 'ArrowForwardIos'); \ No newline at end of file +}), 'ArrowForwardIos'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardIosOutlined.js b/packages/material-ui-icons/lib/ArrowForwardIosOutlined.js index d257736dce7516..7e4df26246a09c 100644 --- a/packages/material-ui-icons/lib/ArrowForwardIosOutlined.js +++ b/packages/material-ui-icons/lib/ArrowForwardIosOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" -}), 'ArrowForwardIosOutlined'); \ No newline at end of file +}), 'ArrowForwardIosOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardIosRounded.js b/packages/material-ui-icons/lib/ArrowForwardIosRounded.js index dc3caac2778257..9ca64120ada27f 100644 --- a/packages/material-ui-icons/lib/ArrowForwardIosRounded.js +++ b/packages/material-ui-icons/lib/ArrowForwardIosRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.38 21.01c.49.49 1.28.49 1.77 0l8.31-8.31c.39-.39.39-1.02 0-1.41L9.15 2.98c-.49-.49-1.28-.49-1.77 0s-.49 1.28 0 1.77L14.62 12l-7.25 7.25c-.48.48-.48 1.28.01 1.76z" -}), 'ArrowForwardIosRounded'); \ No newline at end of file +}), 'ArrowForwardIosRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardIosSharp.js b/packages/material-ui-icons/lib/ArrowForwardIosSharp.js index c75dd05ef57e47..53cfeadc2b606c 100644 --- a/packages/material-ui-icons/lib/ArrowForwardIosSharp.js +++ b/packages/material-ui-icons/lib/ArrowForwardIosSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" -}), 'ArrowForwardIosSharp'); \ No newline at end of file +}), 'ArrowForwardIosSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardIosTwoTone.js b/packages/material-ui-icons/lib/ArrowForwardIosTwoTone.js index d4dcd2f49cc098..bc4d6593988231 100644 --- a/packages/material-ui-icons/lib/ArrowForwardIosTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowForwardIosTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" -}), 'ArrowForwardIosTwoTone'); \ No newline at end of file +}), 'ArrowForwardIosTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardOutlined.js b/packages/material-ui-icons/lib/ArrowForwardOutlined.js index 0327e811dff7c5..89ae75db19f7ac 100644 --- a/packages/material-ui-icons/lib/ArrowForwardOutlined.js +++ b/packages/material-ui-icons/lib/ArrowForwardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" -}), 'ArrowForwardOutlined'); \ No newline at end of file +}), 'ArrowForwardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardRounded.js b/packages/material-ui-icons/lib/ArrowForwardRounded.js index dbdf9f4c36536d..15d9dd87369048 100644 --- a/packages/material-ui-icons/lib/ArrowForwardRounded.js +++ b/packages/material-ui-icons/lib/ArrowForwardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42.39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'ArrowForwardRounded'); \ No newline at end of file +}), 'ArrowForwardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardSharp.js b/packages/material-ui-icons/lib/ArrowForwardSharp.js index 6faaaaad7b5e41..f7ac4e6720698c 100644 --- a/packages/material-ui-icons/lib/ArrowForwardSharp.js +++ b/packages/material-ui-icons/lib/ArrowForwardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" -}), 'ArrowForwardSharp'); \ No newline at end of file +}), 'ArrowForwardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowForwardTwoTone.js b/packages/material-ui-icons/lib/ArrowForwardTwoTone.js index ac5276fce98467..5eaa9a5dc9d75b 100644 --- a/packages/material-ui-icons/lib/ArrowForwardTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowForwardTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" -}), 'ArrowForwardTwoTone'); \ No newline at end of file +}), 'ArrowForwardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowLeft.js b/packages/material-ui-icons/lib/ArrowLeft.js index 4af5244c2d42c7..04faae0f53d81d 100644 --- a/packages/material-ui-icons/lib/ArrowLeft.js +++ b/packages/material-ui-icons/lib/ArrowLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 7-5 5 5 5V7z" -}), 'ArrowLeft'); \ No newline at end of file +}), 'ArrowLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowLeftOutlined.js b/packages/material-ui-icons/lib/ArrowLeftOutlined.js index 6c33f9d50c7e18..1817235211e8c8 100644 --- a/packages/material-ui-icons/lib/ArrowLeftOutlined.js +++ b/packages/material-ui-icons/lib/ArrowLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 7-5 5 5 5V7z" -}), 'ArrowLeftOutlined'); \ No newline at end of file +}), 'ArrowLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowLeftRounded.js b/packages/material-ui-icons/lib/ArrowLeftRounded.js index 939f4ac20b9575..6aa6ebbf8bcc13 100644 --- a/packages/material-ui-icons/lib/ArrowLeftRounded.js +++ b/packages/material-ui-icons/lib/ArrowLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.29 8.71 9.7 11.3c-.39.39-.39 1.02 0 1.41l2.59 2.59c.63.63 1.71.18 1.71-.71V9.41c0-.89-1.08-1.33-1.71-.7z" -}), 'ArrowLeftRounded'); \ No newline at end of file +}), 'ArrowLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowLeftSharp.js b/packages/material-ui-icons/lib/ArrowLeftSharp.js index 1538f91e6974e6..d52db2d071f023 100644 --- a/packages/material-ui-icons/lib/ArrowLeftSharp.js +++ b/packages/material-ui-icons/lib/ArrowLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 7-5 5 5 5V7z" -}), 'ArrowLeftSharp'); \ No newline at end of file +}), 'ArrowLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowLeftTwoTone.js b/packages/material-ui-icons/lib/ArrowLeftTwoTone.js index 14e28d7316eae0..4449b4f3ca02ce 100644 --- a/packages/material-ui-icons/lib/ArrowLeftTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 7-5 5 5 5V7z" -}), 'ArrowLeftTwoTone'); \ No newline at end of file +}), 'ArrowLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRight.js b/packages/material-ui-icons/lib/ArrowRight.js index 01f65d17855624..47b9c1b706317d 100644 --- a/packages/material-ui-icons/lib/ArrowRight.js +++ b/packages/material-ui-icons/lib/ArrowRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 17 5-5-5-5v10z" -}), 'ArrowRight'); \ No newline at end of file +}), 'ArrowRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightAlt.js b/packages/material-ui-icons/lib/ArrowRightAlt.js index acdde0d997546e..b930aa88c8b8ad 100644 --- a/packages/material-ui-icons/lib/ArrowRightAlt.js +++ b/packages/material-ui-icons/lib/ArrowRightAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4z" -}), 'ArrowRightAlt'); \ No newline at end of file +}), 'ArrowRightAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightAltOutlined.js b/packages/material-ui-icons/lib/ArrowRightAltOutlined.js index 7969157de35d31..81a6dd69c9a383 100644 --- a/packages/material-ui-icons/lib/ArrowRightAltOutlined.js +++ b/packages/material-ui-icons/lib/ArrowRightAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" -}), 'ArrowRightAltOutlined'); \ No newline at end of file +}), 'ArrowRightAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightAltRounded.js b/packages/material-ui-icons/lib/ArrowRightAltRounded.js index 8f02dcb9f41a36..7c5f0cd1212da3 100644 --- a/packages/material-ui-icons/lib/ArrowRightAltRounded.js +++ b/packages/material-ui-icons/lib/ArrowRightAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.01 11H5c-.55 0-1 .45-1 1s.45 1 1 1h11.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35V11z" -}), 'ArrowRightAltRounded'); \ No newline at end of file +}), 'ArrowRightAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightAltSharp.js b/packages/material-ui-icons/lib/ArrowRightAltSharp.js index 2a809818d2e8d6..bed433f5daaee3 100644 --- a/packages/material-ui-icons/lib/ArrowRightAltSharp.js +++ b/packages/material-ui-icons/lib/ArrowRightAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" -}), 'ArrowRightAltSharp'); \ No newline at end of file +}), 'ArrowRightAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightAltTwoTone.js b/packages/material-ui-icons/lib/ArrowRightAltTwoTone.js index d16256a7ada119..15deafdd9fc007 100644 --- a/packages/material-ui-icons/lib/ArrowRightAltTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowRightAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" -}), 'ArrowRightAltTwoTone'); \ No newline at end of file +}), 'ArrowRightAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightOutlined.js b/packages/material-ui-icons/lib/ArrowRightOutlined.js index 0daceb53932ed3..2fd01843c7045f 100644 --- a/packages/material-ui-icons/lib/ArrowRightOutlined.js +++ b/packages/material-ui-icons/lib/ArrowRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 17 5-5-5-5v10z" -}), 'ArrowRightOutlined'); \ No newline at end of file +}), 'ArrowRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightRounded.js b/packages/material-ui-icons/lib/ArrowRightRounded.js index 74a7185c321e76..2cec11d12b0bff 100644 --- a/packages/material-ui-icons/lib/ArrowRightRounded.js +++ b/packages/material-ui-icons/lib/ArrowRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.71 15.29 2.59-2.59c.39-.39.39-1.02 0-1.41L11.71 8.7c-.63-.62-1.71-.18-1.71.71v5.17c0 .9 1.08 1.34 1.71.71z" -}), 'ArrowRightRounded'); \ No newline at end of file +}), 'ArrowRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightSharp.js b/packages/material-ui-icons/lib/ArrowRightSharp.js index 27ed01315e9885..a9bd19bd3c9765 100644 --- a/packages/material-ui-icons/lib/ArrowRightSharp.js +++ b/packages/material-ui-icons/lib/ArrowRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 17 5-5-5-5v10z" -}), 'ArrowRightSharp'); \ No newline at end of file +}), 'ArrowRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowRightTwoTone.js b/packages/material-ui-icons/lib/ArrowRightTwoTone.js index 068407001918fa..e81eb86eaa2932 100644 --- a/packages/material-ui-icons/lib/ArrowRightTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 17 5-5-5-5v10z" -}), 'ArrowRightTwoTone'); \ No newline at end of file +}), 'ArrowRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowUpward.js b/packages/material-ui-icons/lib/ArrowUpward.js index 97dbbb1c1dca85..a130e3ffb786fc 100644 --- a/packages/material-ui-icons/lib/ArrowUpward.js +++ b/packages/material-ui-icons/lib/ArrowUpward.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" -}), 'ArrowUpward'); \ No newline at end of file +}), 'ArrowUpward'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowUpwardOutlined.js b/packages/material-ui-icons/lib/ArrowUpwardOutlined.js index 840c56d8974c32..29b3723a316c3b 100644 --- a/packages/material-ui-icons/lib/ArrowUpwardOutlined.js +++ b/packages/material-ui-icons/lib/ArrowUpwardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" -}), 'ArrowUpwardOutlined'); \ No newline at end of file +}), 'ArrowUpwardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowUpwardRounded.js b/packages/material-ui-icons/lib/ArrowUpwardRounded.js index 4371e3d573c5d0..7a04e6ebb5cbfc 100644 --- a/packages/material-ui-icons/lib/ArrowUpwardRounded.js +++ b/packages/material-ui-icons/lib/ArrowUpwardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 19V7.83l4.88 4.88c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41l-6.59-6.59a.9959.9959 0 0 0-1.41 0l-6.6 6.58c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 7.83V19c0 .55.45 1 1 1s1-.45 1-1z" -}), 'ArrowUpwardRounded'); \ No newline at end of file +}), 'ArrowUpwardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowUpwardSharp.js b/packages/material-ui-icons/lib/ArrowUpwardSharp.js index c3f194b6cdcbe8..247757c8852013 100644 --- a/packages/material-ui-icons/lib/ArrowUpwardSharp.js +++ b/packages/material-ui-icons/lib/ArrowUpwardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" -}), 'ArrowUpwardSharp'); \ No newline at end of file +}), 'ArrowUpwardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArrowUpwardTwoTone.js b/packages/material-ui-icons/lib/ArrowUpwardTwoTone.js index 647bc7f13c28ad..9d6a228c02b77a 100644 --- a/packages/material-ui-icons/lib/ArrowUpwardTwoTone.js +++ b/packages/material-ui-icons/lib/ArrowUpwardTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" -}), 'ArrowUpwardTwoTone'); \ No newline at end of file +}), 'ArrowUpwardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArtTrack.js b/packages/material-ui-icons/lib/ArtTrack.js index 35c68eb56dd684..9dd888ca73a7d8 100644 --- a/packages/material-ui-icons/lib/ArtTrack.js +++ b/packages/material-ui-icons/lib/ArtTrack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" -}), 'ArtTrack'); \ No newline at end of file +}), 'ArtTrack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArtTrackOutlined.js b/packages/material-ui-icons/lib/ArtTrackOutlined.js index a8407bdc7224e3..a77e69f847b301 100644 --- a/packages/material-ui-icons/lib/ArtTrackOutlined.js +++ b/packages/material-ui-icons/lib/ArtTrackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" -}), 'ArtTrackOutlined'); \ No newline at end of file +}), 'ArtTrackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArtTrackRounded.js b/packages/material-ui-icons/lib/ArtTrackRounded.js index 2e7f4a0eed5619..6af8b3a8add7f1 100644 --- a/packages/material-ui-icons/lib/ArtTrackRounded.js +++ b/packages/material-ui-icons/lib/ArtTrackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 13h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-6h-6c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm-6 10h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zm-3-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-2.1 5.2-1.26-1.68c-.2-.26-.59-.27-.8-.01L6.5 14.26l-.85-1.03c-.2-.25-.58-.24-.78.01l-.74.95c-.26.33-.02.81.39.81H9.5c.41 0 .65-.47.4-.8z" -}), 'ArtTrackRounded'); \ No newline at end of file +}), 'ArtTrackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArtTrackSharp.js b/packages/material-ui-icons/lib/ArtTrackSharp.js index 42bb69b655dae6..a3a1e581a87b84 100644 --- a/packages/material-ui-icons/lib/ArtTrackSharp.js +++ b/packages/material-ui-icons/lib/ArtTrackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zM12 7v10H2V7h10zm-1.5 8-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" -}), 'ArtTrackSharp'); \ No newline at end of file +}), 'ArtTrackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArtTrackTwoTone.js b/packages/material-ui-icons/lib/ArtTrackTwoTone.js index 54f02033f8f74c..7475069ab9391b 100644 --- a/packages/material-ui-icons/lib/ArtTrackTwoTone.js +++ b/packages/material-ui-icons/lib/ArtTrackTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 7h8v2h-8zm0 4h8v2h-8zm0 4h8v2h-8zM4 17h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm1.25-4.25 1.25 1.51L8.25 12l2.25 3h-7l1.75-2.25z" -}), 'ArtTrackTwoTone'); \ No newline at end of file +}), 'ArtTrackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Article.js b/packages/material-ui-icons/lib/Article.js index 89b58682c0e6b3..5f71cac87833b2 100644 --- a/packages/material-ui-icons/lib/Article.js +++ b/packages/material-ui-icons/lib/Article.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" -}), 'Article'); \ No newline at end of file +}), 'Article'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArticleOutlined.js b/packages/material-ui-icons/lib/ArticleOutlined.js index d9d3595865f43e..2cdf3aa92e66cb 100644 --- a/packages/material-ui-icons/lib/ArticleOutlined.js +++ b/packages/material-ui-icons/lib/ArticleOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 17H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" -}, "1")], 'ArticleOutlined'); \ No newline at end of file +}, "1")], 'ArticleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArticleRounded.js b/packages/material-ui-icons/lib/ArticleRounded.js index cc24fb0f5684ea..7b2fe1d6349532 100644 --- a/packages/material-ui-icons/lib/ArticleRounded.js +++ b/packages/material-ui-icons/lib/ArticleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 14H8c-.55 0-1-.45-1-1s.45-1 1-1h5c.55 0 1 .45 1 1s-.45 1-1 1zm3-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'ArticleRounded'); \ No newline at end of file +}), 'ArticleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArticleSharp.js b/packages/material-ui-icons/lib/ArticleSharp.js index 949e12a40de803..9ba921b25e1c9e 100644 --- a/packages/material-ui-icons/lib/ArticleSharp.js +++ b/packages/material-ui-icons/lib/ArticleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm11 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" -}), 'ArticleSharp'); \ No newline at end of file +}), 'ArticleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ArticleTwoTone.js b/packages/material-ui-icons/lib/ArticleTwoTone.js index b2d17b0f7f3717..1e6390167a703e 100644 --- a/packages/material-ui-icons/lib/ArticleTwoTone.js +++ b/packages/material-ui-icons/lib/ArticleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm9 12H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-2-6H7v-2h10v2zm0-4H7V7h10v2zm-3 8H7v-2h7v2z" -}, "1")], 'ArticleTwoTone'); \ No newline at end of file +}, "1")], 'ArticleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AspectRatio.js b/packages/material-ui-icons/lib/AspectRatio.js index a87810114f9afe..456c2c3c26cf91 100644 --- a/packages/material-ui-icons/lib/AspectRatio.js +++ b/packages/material-ui-icons/lib/AspectRatio.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}), 'AspectRatio'); \ No newline at end of file +}), 'AspectRatio'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AspectRatioOutlined.js b/packages/material-ui-icons/lib/AspectRatioOutlined.js index c719738360ffee..1cfbc97610fbeb 100644 --- a/packages/material-ui-icons/lib/AspectRatioOutlined.js +++ b/packages/material-ui-icons/lib/AspectRatioOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}), 'AspectRatioOutlined'); \ No newline at end of file +}), 'AspectRatioOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AspectRatioRounded.js b/packages/material-ui-icons/lib/AspectRatioRounded.js index b415d37fb3cea1..b7d111c69f6f81 100644 --- a/packages/material-ui-icons/lib/AspectRatioRounded.js +++ b/packages/material-ui-icons/lib/AspectRatioRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 12c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zM7 9h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.02c0 .55-.45 1-1 1z" -}), 'AspectRatioRounded'); \ No newline at end of file +}), 'AspectRatioRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AspectRatioSharp.js b/packages/material-ui-icons/lib/AspectRatioSharp.js index a13050ac12dca9..627171cdc6e64c 100644 --- a/packages/material-ui-icons/lib/AspectRatioSharp.js +++ b/packages/material-ui-icons/lib/AspectRatioSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm16-6H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" -}), 'AspectRatioSharp'); \ No newline at end of file +}), 'AspectRatioSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AspectRatioTwoTone.js b/packages/material-ui-icons/lib/AspectRatioTwoTone.js index 765b9ae1a91132..10d1dfd2fd5ebf 100644 --- a/packages/material-ui-icons/lib/AspectRatioTwoTone.js +++ b/packages/material-ui-icons/lib/AspectRatioTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19.01h18V4.99H3v14.02zM14 15h3v-3h2v5h-5v-2zM5 7h5v2H7v3H5V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM7 9h3V7H5v5h2zm12 3h-2v3h-3v2h5z" -}, "1")], 'AspectRatioTwoTone'); \ No newline at end of file +}, "1")], 'AspectRatioTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Assessment.js b/packages/material-ui-icons/lib/Assessment.js index a574ba76d8500f..bffa9bafd0eca8 100644 --- a/packages/material-ui-icons/lib/Assessment.js +++ b/packages/material-ui-icons/lib/Assessment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" -}), 'Assessment'); \ No newline at end of file +}), 'Assessment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssessmentOutlined.js b/packages/material-ui-icons/lib/AssessmentOutlined.js index 691f55de319987..05b065baf93e87 100644 --- a/packages/material-ui-icons/lib/AssessmentOutlined.js +++ b/packages/material-ui-icons/lib/AssessmentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" -}), 'AssessmentOutlined'); \ No newline at end of file +}), 'AssessmentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssessmentRounded.js b/packages/material-ui-icons/lib/AssessmentRounded.js index f871e742e0473c..3fe3873733cb46 100644 --- a/packages/material-ui-icons/lib/AssessmentRounded.js +++ b/packages/material-ui-icons/lib/AssessmentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'AssessmentRounded'); \ No newline at end of file +}), 'AssessmentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssessmentSharp.js b/packages/material-ui-icons/lib/AssessmentSharp.js index 8e568ef3ccdefa..430719907d3896 100644 --- a/packages/material-ui-icons/lib/AssessmentSharp.js +++ b/packages/material-ui-icons/lib/AssessmentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" -}), 'AssessmentSharp'); \ No newline at end of file +}), 'AssessmentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssessmentTwoTone.js b/packages/material-ui-icons/lib/AssessmentTwoTone.js index bb58eefaa037a8..335b186beda6f0 100644 --- a/packages/material-ui-icons/lib/AssessmentTwoTone.js +++ b/packages/material-ui-icons/lib/AssessmentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm4 12H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" -}, "1")], 'AssessmentTwoTone'); \ No newline at end of file +}, "1")], 'AssessmentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Assignment.js b/packages/material-ui-icons/lib/Assignment.js index 66d9772ebbde71..b352a7bba32490 100644 --- a/packages/material-ui-icons/lib/Assignment.js +++ b/packages/material-ui-icons/lib/Assignment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" -}), 'Assignment'); \ No newline at end of file +}), 'Assignment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentInd.js b/packages/material-ui-icons/lib/AssignmentInd.js index 54c08d023142a8..7ff9d00b5abced 100644 --- a/packages/material-ui-icons/lib/AssignmentInd.js +++ b/packages/material-ui-icons/lib/AssignmentInd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" -}), 'AssignmentInd'); \ No newline at end of file +}), 'AssignmentInd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentIndOutlined.js b/packages/material-ui-icons/lib/AssignmentIndOutlined.js index 5a3238cac75026..6f3ca15bf2ba3e 100644 --- a/packages/material-ui-icons/lib/AssignmentIndOutlined.js +++ b/packages/material-ui-icons/lib/AssignmentIndOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zM12 6c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6 6.47V18h12v-1.53c0-2.5-3.97-3.58-6-3.58s-6 1.07-6 3.58zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" -}), 'AssignmentIndOutlined'); \ No newline at end of file +}), 'AssignmentIndOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentIndRounded.js b/packages/material-ui-icons/lib/AssignmentIndRounded.js index 7b6cafc7b76fff..d7a588741760a4 100644 --- a/packages/material-ui-icons/lib/AssignmentIndRounded.js +++ b/packages/material-ui-icons/lib/AssignmentIndRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" -}), 'AssignmentIndRounded'); \ No newline at end of file +}), 'AssignmentIndRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentIndSharp.js b/packages/material-ui-icons/lib/AssignmentIndSharp.js index 91a16752ca67b7..e01f0662c14acf 100644 --- a/packages/material-ui-icons/lib/AssignmentIndSharp.js +++ b/packages/material-ui-icons/lib/AssignmentIndSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" -}), 'AssignmentIndSharp'); \ No newline at end of file +}), 'AssignmentIndSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentIndTwoTone.js b/packages/material-ui-icons/lib/AssignmentIndTwoTone.js index d1ea8d77b3f84c..f144dc7c7f4c15 100644 --- a/packages/material-ui-icons/lib/AssignmentIndTwoTone.js +++ b/packages/material-ui-icons/lib/AssignmentIndTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v14h14V5zm-7 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.66 3.88c-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.41-.13-.8-.34-1.12zM12 2.75c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 2.88c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" -}, "1")], 'AssignmentIndTwoTone'); \ No newline at end of file +}, "1")], 'AssignmentIndTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentLate.js b/packages/material-ui-icons/lib/AssignmentLate.js index 5777f04e247584..e2faed9674054c 100644 --- a/packages/material-ui-icons/lib/AssignmentLate.js +++ b/packages/material-ui-icons/lib/AssignmentLate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'AssignmentLate'); \ No newline at end of file +}), 'AssignmentLate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentLateOutlined.js b/packages/material-ui-icons/lib/AssignmentLateOutlined.js index fea6b74b9d30e7..6f47e28aa28bd5 100644 --- a/packages/material-ui-icons/lib/AssignmentLateOutlined.js +++ b/packages/material-ui-icons/lib/AssignmentLateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}), 'AssignmentLateOutlined'); \ No newline at end of file +}), 'AssignmentLateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentLateRounded.js b/packages/material-ui-icons/lib/AssignmentLateRounded.js index d236a7a4cc4e6d..c506cfa6c4a502 100644 --- a/packages/material-ui-icons/lib/AssignmentLateRounded.js +++ b/packages/material-ui-icons/lib/AssignmentLateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM12 13c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}), 'AssignmentLateRounded'); \ No newline at end of file +}), 'AssignmentLateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentLateSharp.js b/packages/material-ui-icons/lib/AssignmentLateSharp.js index 4ead1ec8f1ca8a..5060a97d0d7a75 100644 --- a/packages/material-ui-icons/lib/AssignmentLateSharp.js +++ b/packages/material-ui-icons/lib/AssignmentLateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-8 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'AssignmentLateSharp'); \ No newline at end of file +}), 'AssignmentLateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentLateTwoTone.js b/packages/material-ui-icons/lib/AssignmentLateTwoTone.js index ec3dc53fd649af..54d4a4320802e4 100644 --- a/packages/material-ui-icons/lib/AssignmentLateTwoTone.js +++ b/packages/material-ui-icons/lib/AssignmentLateTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm8 12h-2v-2h2v2zm0-4h-2V7h2v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "1")], 'AssignmentLateTwoTone'); \ No newline at end of file +}, "1")], 'AssignmentLateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentOutlined.js b/packages/material-ui-icons/lib/AssignmentOutlined.js index 0a9d70541a9f3a..3f1e1596cbea17 100644 --- a/packages/material-ui-icons/lib/AssignmentOutlined.js +++ b/packages/material-ui-icons/lib/AssignmentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}), 'AssignmentOutlined'); \ No newline at end of file +}), 'AssignmentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturn.js b/packages/material-ui-icons/lib/AssignmentReturn.js index 2a0f06f22a1f4a..9b19d7de0c6f16 100644 --- a/packages/material-ui-icons/lib/AssignmentReturn.js +++ b/packages/material-ui-icons/lib/AssignmentReturn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z" -}), 'AssignmentReturn'); \ No newline at end of file +}), 'AssignmentReturn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnOutlined.js b/packages/material-ui-icons/lib/AssignmentReturnOutlined.js index 5b7e628c5c0562..96a302b1e173fd 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnOutlined.js +++ b/packages/material-ui-icons/lib/AssignmentReturnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14h4v-4h-4V7l-5 5 5 5zm7-11h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}), 'AssignmentReturnOutlined'); \ No newline at end of file +}), 'AssignmentReturnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnRounded.js b/packages/material-ui-icons/lib/AssignmentReturnRounded.js index 9f9055ada97af1..17dd7a681fd076 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnRounded.js +++ b/packages/material-ui-icons/lib/AssignmentReturnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-4.65-4.65c-.2-.2-.2-.51 0-.71L12 8v3h4v4z" -}), 'AssignmentReturnRounded'); \ No newline at end of file +}), 'AssignmentReturnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnSharp.js b/packages/material-ui-icons/lib/AssignmentReturnSharp.js index b384e9369ba01a..0d430153783683 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnSharp.js +++ b/packages/material-ui-icons/lib/AssignmentReturnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z" -}), 'AssignmentReturnSharp'); \ No newline at end of file +}), 'AssignmentReturnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnTwoTone.js b/packages/material-ui-icons/lib/AssignmentReturnTwoTone.js index 4bcafd88aefd2a..ec05abb69f5bd8 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnTwoTone.js +++ b/packages/material-ui-icons/lib/AssignmentReturnTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm11 9h-4v3l-5-5 5-5v3h4v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 7-5 5 5 5v-3h4v-4h-4zm7-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "1")], 'AssignmentReturnTwoTone'); \ No newline at end of file +}, "1")], 'AssignmentReturnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturned.js b/packages/material-ui-icons/lib/AssignmentReturned.js index 2cfffc8d7c7427..0f6c2d313d3678 100644 --- a/packages/material-ui-icons/lib/AssignmentReturned.js +++ b/packages/material-ui-icons/lib/AssignmentReturned.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15-5-5h3V9h4v4h3l-5 5z" -}), 'AssignmentReturned'); \ No newline at end of file +}), 'AssignmentReturned'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnedOutlined.js b/packages/material-ui-icons/lib/AssignmentReturnedOutlined.js index d8ac8c7780c449..d7bb3fb9612dd4 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnedOutlined.js +++ b/packages/material-ui-icons/lib/AssignmentReturnedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}), 'AssignmentReturnedOutlined'); \ No newline at end of file +}), 'AssignmentReturnedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnedRounded.js b/packages/material-ui-icons/lib/AssignmentReturnedRounded.js index 0c713bfae59bb2..ad309dd85a4a85 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnedRounded.js +++ b/packages/material-ui-icons/lib/AssignmentReturnedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-.35 14.65L7 13h3V9h4v4h3l-4.65 4.65c-.19.19-.51.19-.7 0z" -}), 'AssignmentReturnedRounded'); \ No newline at end of file +}), 'AssignmentReturnedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnedSharp.js b/packages/material-ui-icons/lib/AssignmentReturnedSharp.js index f9809138af8bc8..d4b0dd25fb8bb5 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnedSharp.js +++ b/packages/material-ui-icons/lib/AssignmentReturnedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15-5-5h3V9h4v4h3l-5 5z" -}), 'AssignmentReturnedSharp'); \ No newline at end of file +}), 'AssignmentReturnedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentReturnedTwoTone.js b/packages/material-ui-icons/lib/AssignmentReturnedTwoTone.js index 05b32acbd2f7f5..9da3f2267c39df 100644 --- a/packages/material-ui-icons/lib/AssignmentReturnedTwoTone.js +++ b/packages/material-ui-icons/lib/AssignmentReturnedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm5-7V8h4v4h3l-5 5-5-5h3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "1")], 'AssignmentReturnedTwoTone'); \ No newline at end of file +}, "1")], 'AssignmentReturnedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentRounded.js b/packages/material-ui-icons/lib/AssignmentRounded.js index 66524813b0d5db..3340f926cd1e2a 100644 --- a/packages/material-ui-icons/lib/AssignmentRounded.js +++ b/packages/material-ui-icons/lib/AssignmentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm1 14H8c-.55 0-1-.45-1-1s.45-1 1-1h5c.55 0 1 .45 1 1s-.45 1-1 1zm3-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'AssignmentRounded'); \ No newline at end of file +}), 'AssignmentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentSharp.js b/packages/material-ui-icons/lib/AssignmentSharp.js index 7b1aa30db890e0..4d676279c71163 100644 --- a/packages/material-ui-icons/lib/AssignmentSharp.js +++ b/packages/material-ui-icons/lib/AssignmentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" -}), 'AssignmentSharp'); \ No newline at end of file +}), 'AssignmentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentTurnedIn.js b/packages/material-ui-icons/lib/AssignmentTurnedIn.js index 23b09172c3ae13..3957caeba02580 100644 --- a/packages/material-ui-icons/lib/AssignmentTurnedIn.js +++ b/packages/material-ui-icons/lib/AssignmentTurnedIn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" -}), 'AssignmentTurnedIn'); \ No newline at end of file +}), 'AssignmentTurnedIn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentTurnedInOutlined.js b/packages/material-ui-icons/lib/AssignmentTurnedInOutlined.js index 215096ac3cc7b0..e7061d8f992b5f 100644 --- a/packages/material-ui-icons/lib/AssignmentTurnedInOutlined.js +++ b/packages/material-ui-icons/lib/AssignmentTurnedInOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 9-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}), 'AssignmentTurnedInOutlined'); \ No newline at end of file +}), 'AssignmentTurnedInOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentTurnedInRounded.js b/packages/material-ui-icons/lib/AssignmentTurnedInRounded.js index 59c54d6470381b..8d3085f830a75b 100644 --- a/packages/material-ui-icons/lib/AssignmentTurnedInRounded.js +++ b/packages/material-ui-icons/lib/AssignmentTurnedInRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.29 16.29 6.7 13.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l5.88-5.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-6.59 6.59c-.38.39-1.02.39-1.41 0z" -}), 'AssignmentTurnedInRounded'); \ No newline at end of file +}), 'AssignmentTurnedInRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentTurnedInSharp.js b/packages/material-ui-icons/lib/AssignmentTurnedInSharp.js index 6f7fe28939cb10..152c1258c55ae7 100644 --- a/packages/material-ui-icons/lib/AssignmentTurnedInSharp.js +++ b/packages/material-ui-icons/lib/AssignmentTurnedInSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" -}), 'AssignmentTurnedInSharp'); \ No newline at end of file +}), 'AssignmentTurnedInSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentTurnedInTwoTone.js b/packages/material-ui-icons/lib/AssignmentTurnedInTwoTone.js index 6b1f12674404f5..512a48b9f42990 100644 --- a/packages/material-ui-icons/lib/AssignmentTurnedInTwoTone.js +++ b/packages/material-ui-icons/lib/AssignmentTurnedInTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm2.41-7.41L10 14.17l6.59-6.59L18 9l-8 8-4-4 1.41-1.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 9-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "1")], 'AssignmentTurnedInTwoTone'); \ No newline at end of file +}, "1")], 'AssignmentTurnedInTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssignmentTwoTone.js b/packages/material-ui-icons/lib/AssignmentTwoTone.js index 64f1e6d13125a4..9cc00a3ffc2704 100644 --- a/packages/material-ui-icons/lib/AssignmentTwoTone.js +++ b/packages/material-ui-icons/lib/AssignmentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm9 12H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "1")], 'AssignmentTwoTone'); \ No newline at end of file +}, "1")], 'AssignmentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Assistant.js b/packages/material-ui-icons/lib/Assistant.js index f7f83e093ae77b..b566f7557e84ed 100644 --- a/packages/material-ui-icons/lib/Assistant.js +++ b/packages/material-ui-icons/lib/Assistant.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" -}), 'Assistant'); \ No newline at end of file +}), 'Assistant'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantDirection.js b/packages/material-ui-icons/lib/AssistantDirection.js index 7c627341be4ba7..825d2152b580e6 100644 --- a/packages/material-ui-icons/lib/AssistantDirection.js +++ b/packages/material-ui-icons/lib/AssistantDirection.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10H9c-.6 0-1 .4-1 1v4h2v-3h4v2.5l3.5-3.5L14 7.5V10zm-2-9C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm7.73 11.58-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16z" -}), 'AssistantDirection'); \ No newline at end of file +}), 'AssistantDirection'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantDirectionOutlined.js b/packages/material-ui-icons/lib/AssistantDirectionOutlined.js index ce7455e5c7930f..c76bd4ec6db399 100644 --- a/packages/material-ui-icons/lib/AssistantDirectionOutlined.js +++ b/packages/material-ui-icons/lib/AssistantDirectionOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-4.99 0-9-4.01-9-9s4.01-9 9-9 9 4.01 9 9-4.01 9-9 9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.73 11.42 12.54 4.2c-.36-.27-.8-.27-1.15 0L4.2 11.42c-.27.36-.27.8 0 1.16l7.19 7.22c.36.27.8.27 1.15 0l7.19-7.22c.36-.36.36-.89 0-1.16zM13.5 14.5l-1.41-1.41L13.17 12H10v3H8v-4c0-.6.4-1 1-1h4.17l-1.09-1.09L13.5 7.5 17 11l-3.5 3.5z" -}, "1")], 'AssistantDirectionOutlined'); \ No newline at end of file +}, "1")], 'AssistantDirectionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantDirectionRounded.js b/packages/material-ui-icons/lib/AssistantDirectionRounded.js index 1f370ab20d5c99..f2b5f2411a6ecf 100644 --- a/packages/material-ui-icons/lib/AssistantDirectionRounded.js +++ b/packages/material-ui-icons/lib/AssistantDirectionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 10H9c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-2h3.5v1.29c0 .45.54.67.85.35l2.29-2.29c.2-.2.2-.51 0-.71l-2.29-2.29c-.31-.31-.85-.09-.85.35V10zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm7.73 11.58-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16z" -}), 'AssistantDirectionRounded'); \ No newline at end of file +}), 'AssistantDirectionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantDirectionSharp.js b/packages/material-ui-icons/lib/AssistantDirectionSharp.js index 92904011dd9fa6..cc4e66c6e10c61 100644 --- a/packages/material-ui-icons/lib/AssistantDirectionSharp.js +++ b/packages/material-ui-icons/lib/AssistantDirectionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 10H8v5h2v-3h3.5v2.5L17 11l-3.5-3.5V10zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm8.31 11-8.34 8.37L3.62 12l8.34-8.37L20.31 12z" -}), 'AssistantDirectionSharp'); \ No newline at end of file +}), 'AssistantDirectionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantDirectionTwoTone.js b/packages/material-ui-icons/lib/AssistantDirectionTwoTone.js index 0feb65bbea2dfc..c61aba1be04628 100644 --- a/packages/material-ui-icons/lib/AssistantDirectionTwoTone.js +++ b/packages/material-ui-icons/lib/AssistantDirectionTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.99 0-9 4.01-9 9s4.01 9 9 9 9-4.01 9-9-4.01-9-9-9zm.54 16.8c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16l-7.19 7.22z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-4.99 0-9-4.01-9-9s4.01-9 9-9 9 4.01 9 9-4.01 9-9 9z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.73 11.42 12.54 4.2c-.36-.27-.8-.27-1.15 0L4.2 11.42c-.27.36-.27.8 0 1.16l7.19 7.22c.36.27.8.27 1.15 0l7.19-7.22c.36-.36.36-.89 0-1.16zM13.5 14.5V12H10v3H8v-4c0-.6.4-1 1-1h4.5V7.5L17 11l-3.5 3.5z" -}, "2")], 'AssistantDirectionTwoTone'); \ No newline at end of file +}, "2")], 'AssistantDirectionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantOutlined.js b/packages/material-ui-icons/lib/AssistantOutlined.js index 82f1e096c5202b..800a43f52c63c8 100644 --- a/packages/material-ui-icons/lib/AssistantOutlined.js +++ b/packages/material-ui-icons/lib/AssistantOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-1 1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z" -}), 'AssistantOutlined'); \ No newline at end of file +}), 'AssistantOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantPhoto.js b/packages/material-ui-icons/lib/AssistantPhoto.js index cdbc8b1bcd9619..291919fe85a5c9 100644 --- a/packages/material-ui-icons/lib/AssistantPhoto.js +++ b/packages/material-ui-icons/lib/AssistantPhoto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6z" -}), 'AssistantPhoto'); \ No newline at end of file +}), 'AssistantPhoto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantPhotoOutlined.js b/packages/material-ui-icons/lib/AssistantPhotoOutlined.js index 67e9f3cf43a654..a1f38f78d186e7 100644 --- a/packages/material-ui-icons/lib/AssistantPhotoOutlined.js +++ b/packages/material-ui-icons/lib/AssistantPhotoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.36 6 .08.39.32 1.61H18v6h-3.36l-.08-.39-.32-1.61H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z" -}), 'AssistantPhotoOutlined'); \ No newline at end of file +}), 'AssistantPhotoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantPhotoRounded.js b/packages/material-ui-icons/lib/AssistantPhotoRounded.js index 69bc2d61b4d8a2..0c9566dbebdbcc 100644 --- a/packages/material-ui-icons/lib/AssistantPhotoRounded.js +++ b/packages/material-ui-icons/lib/AssistantPhotoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.4 6-.24-1.2c-.09-.46-.5-.8-.98-.8H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5.6l.24 1.2c.09.47.5.8.98.8H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-4.6z" -}), 'AssistantPhotoRounded'); \ No newline at end of file +}), 'AssistantPhotoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantPhotoSharp.js b/packages/material-ui-icons/lib/AssistantPhotoSharp.js index f22699ebf0b3f3..707e2887b37c54 100644 --- a/packages/material-ui-icons/lib/AssistantPhotoSharp.js +++ b/packages/material-ui-icons/lib/AssistantPhotoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z" -}), 'AssistantPhotoSharp'); \ No newline at end of file +}), 'AssistantPhotoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantPhotoTwoTone.js b/packages/material-ui-icons/lib/AssistantPhotoTwoTone.js index 76b8b4748a7f55..6818b51a69e170 100644 --- a/packages/material-ui-icons/lib/AssistantPhotoTwoTone.js +++ b/packages/material-ui-icons/lib/AssistantPhotoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12 .4 2H18V8h-5.24l-.4-2H7v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14h5.6l.4 2h7V6h-5.6L14 4H5v17h2v-7zm0-8h5.36l.4 2H18v6h-3.36l-.4-2H7V6z" -}, "1")], 'AssistantPhotoTwoTone'); \ No newline at end of file +}, "1")], 'AssistantPhotoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantRounded.js b/packages/material-ui-icons/lib/AssistantRounded.js index 17d9ee6d4b5d48..4ac262b8411981 100644 --- a/packages/material-ui-icons/lib/AssistantRounded.js +++ b/packages/material-ui-icons/lib/AssistantRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" -}), 'AssistantRounded'); \ No newline at end of file +}), 'AssistantRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantSharp.js b/packages/material-ui-icons/lib/AssistantSharp.js index d25c5ec37ff8fa..027db0bf6c86f9 100644 --- a/packages/material-ui-icons/lib/AssistantSharp.js +++ b/packages/material-ui-icons/lib/AssistantSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3v18h6l3 3 3-3h6V2zm-7.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" -}), 'AssistantSharp'); \ No newline at end of file +}), 'AssistantSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AssistantTwoTone.js b/packages/material-ui-icons/lib/AssistantTwoTone.js index 8150f69e0064b0..e74c8efd20acad 100644 --- a/packages/material-ui-icons/lib/AssistantTwoTone.js +++ b/packages/material-ui-icons/lib/AssistantTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.83 18 .59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zm.29-8.88L12 5l1.88 4.12L18 11l-4.12 1.88L12 17l-1.88-4.12L6 11l4.12-1.88z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 13 1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z" -}, "1")], 'AssistantTwoTone'); \ No newline at end of file +}, "1")], 'AssistantTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Atm.js b/packages/material-ui-icons/lib/Atm.js index 4d90a1032dd1e5..c8da57eafcdb99 100644 --- a/packages/material-ui-icons/lib/Atm.js +++ b/packages/material-ui-icons/lib/Atm.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z" -}), 'Atm'); \ No newline at end of file +}), 'Atm'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AtmOutlined.js b/packages/material-ui-icons/lib/AtmOutlined.js index e0f7ef5f7d3561..b2c596bf77cd95 100644 --- a/packages/material-ui-icons/lib/AtmOutlined.js +++ b/packages/material-ui-icons/lib/AtmOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z" -}), 'AtmOutlined'); \ No newline at end of file +}), 'AtmOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AtmRounded.js b/packages/material-ui-icons/lib/AtmRounded.js index 3538c6ee4c86b6..6da04652874c4a 100644 --- a/packages/material-ui-icons/lib/AtmRounded.js +++ b/packages/material-ui-icons/lib/AtmRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9.75c0 .41.34.75.75.75h1.5v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h1.5c.41 0 .75-.34.75-.75S13.66 9 13.25 9h-4.5c-.41 0-.75.34-.75.75zM6 9H3c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75v-.75h2v.75c0 .41.34.75.75.75s.75-.34.75-.75V10c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V10.5h1v2.75c0 .41.34.75.75.75s.75-.34.75-.75v-2.76h1v3.76c0 .41.34.75.75.75s.75-.34.75-.75V10c0-.55-.45-1-1-1z" -}), 'AtmRounded'); \ No newline at end of file +}), 'AtmRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AtmSharp.js b/packages/material-ui-icons/lib/AtmSharp.js index d0b26610ecc463..62e0986f0f42c3 100644 --- a/packages/material-ui-icons/lib/AtmSharp.js +++ b/packages/material-ui-icons/lib/AtmSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM7 9H2v6h1.5v-1.5h2V15H7V9zm-1.5 3h-2v-1.5h2V12zM22 9h-6.5v6H17v-4.5h1V14h1.5v-3.51h1V15H22V9z" -}), 'AtmSharp'); \ No newline at end of file +}), 'AtmSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AtmTwoTone.js b/packages/material-ui-icons/lib/AtmTwoTone.js index 4a1c0604aed5c3..64a72b6e79d9d1 100644 --- a/packages/material-ui-icons/lib/AtmTwoTone.js +++ b/packages/material-ui-icons/lib/AtmTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.5 13.5h2V15H7v-5c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v5h1.5v-1.5zm0-3h2V12h-2v-1.5zm13.5 0h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1h-4.5c-.55 0-1 .45-1 1v5H17v-4.5zM10.25 15h1.5v-4.5H14V9H8v1.5h2.25z" -}), 'AtmTwoTone'); \ No newline at end of file +}), 'AtmTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachEmail.js b/packages/material-ui-icons/lib/AttachEmail.js index 1d7532cf7a38cc..5619bd82269afa 100644 --- a/packages/material-ui-icons/lib/AttachEmail.js +++ b/packages/material-ui-icons/lib/AttachEmail.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h11v-5c0-1.66 1.34-3 3-3h4zm-10 1L3 6V4l8 5 8-5v2l-8 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" -}, "1")], 'AttachEmail'); \ No newline at end of file +}, "1")], 'AttachEmail'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachEmailOutlined.js b/packages/material-ui-icons/lib/AttachEmailOutlined.js index 9c0ba21dab608f..cc8c44e16aa628 100644 --- a/packages/material-ui-icons/lib/AttachEmailOutlined.js +++ b/packages/material-ui-icons/lib/AttachEmailOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 6 8 5 8-5v3h2V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h10v-2H3V6zm16-2-8 5-8-5h16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" -}, "1")], 'AttachEmailOutlined'); \ No newline at end of file +}, "1")], 'AttachEmailOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachEmailRounded.js b/packages/material-ui-icons/lib/AttachEmailRounded.js index d0afb800532193..58927e6ab64db9 100644 --- a/packages/material-ui-icons/lib/AttachEmailRounded.js +++ b/packages/material-ui-icons/lib/AttachEmailRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h11v-5c0-1.66 1.34-3 3-3h4zm-9.47.67c-.32.2-.74.2-1.06 0L3.4 6.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L11 9l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72l-7.07 4.42z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 14c-.55 0-1 .45-1 1v3c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V17c0 .55.45 1 1 1s1-.45 1-1v-3.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-3c0-.55-.45-1-1-1z" -}, "1")], 'AttachEmailRounded'); \ No newline at end of file +}, "1")], 'AttachEmailRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachEmailSharp.js b/packages/material-ui-icons/lib/AttachEmailSharp.js index e4732472b72fca..7e49d56c34a1b0 100644 --- a/packages/material-ui-icons/lib/AttachEmailSharp.js +++ b/packages/material-ui-icons/lib/AttachEmailSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10V2H1v16h13v-5c0-1.66 1.34-3 3-3h4zm-10 1L3 6V4l8 5 8-5v2l-8 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" -}, "1")], 'AttachEmailSharp'); \ No newline at end of file +}, "1")], 'AttachEmailSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachEmailTwoTone.js b/packages/material-ui-icons/lib/AttachEmailTwoTone.js index bd4e9034d276a6..5d55b7666c88fd 100644 --- a/packages/material-ui-icons/lib/AttachEmailTwoTone.js +++ b/packages/material-ui-icons/lib/AttachEmailTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 6 8 5 8-5v3h2V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h10v-2H3V6zm16-2-8 5-8-5h16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" -}, "1")], 'AttachEmailTwoTone'); \ No newline at end of file +}, "1")], 'AttachEmailTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachFile.js b/packages/material-ui-icons/lib/AttachFile.js index d8c23a633ebe9f..be06703a03ecd8 100644 --- a/packages/material-ui-icons/lib/AttachFile.js +++ b/packages/material-ui-icons/lib/AttachFile.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" -}), 'AttachFile'); \ No newline at end of file +}), 'AttachFile'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachFileOutlined.js b/packages/material-ui-icons/lib/AttachFileOutlined.js index 467fbc6527191d..4f53fc72292269 100644 --- a/packages/material-ui-icons/lib/AttachFileOutlined.js +++ b/packages/material-ui-icons/lib/AttachFileOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" -}), 'AttachFileOutlined'); \ No newline at end of file +}), 'AttachFileOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachFileRounded.js b/packages/material-ui-icons/lib/AttachFileRounded.js index 207d8439a4f4f0..34d276b8f2705a 100644 --- a/packages/material-ui-icons/lib/AttachFileRounded.js +++ b/packages/material-ui-icons/lib/AttachFileRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 6.75v10.58c0 2.09-1.53 3.95-3.61 4.15-2.39.23-4.39-1.64-4.39-3.98V5.14c0-1.31.94-2.5 2.24-2.63 1.5-.15 2.76 1.02 2.76 2.49v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75v8.61c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V5.17c0-2.09-1.53-3.95-3.61-4.15C9.01.79 7 2.66 7 5v12.27c0 2.87 2.1 5.44 4.96 5.71 3.29.3 6.04-2.26 6.04-5.48V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75z" -}), 'AttachFileRounded'); \ No newline at end of file +}), 'AttachFileRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachFileSharp.js b/packages/material-ui-icons/lib/AttachFileSharp.js index dab9348d2a7aaf..37c9ca1a242a23 100644 --- a/packages/material-ui-icons/lib/AttachFileSharp.js +++ b/packages/material-ui-icons/lib/AttachFileSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" -}), 'AttachFileSharp'); \ No newline at end of file +}), 'AttachFileSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachFileTwoTone.js b/packages/material-ui-icons/lib/AttachFileTwoTone.js index 13705b3d824ce8..a649bd008d106c 100644 --- a/packages/material-ui-icons/lib/AttachFileTwoTone.js +++ b/packages/material-ui-icons/lib/AttachFileTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 23c3.04 0 5.5-2.46 5.5-5.5V6h-1.5v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5z" -}), 'AttachFileTwoTone'); \ No newline at end of file +}), 'AttachFileTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachMoney.js b/packages/material-ui-icons/lib/AttachMoney.js index af39fb24dc8db6..29318f6b3352d1 100644 --- a/packages/material-ui-icons/lib/AttachMoney.js +++ b/packages/material-ui-icons/lib/AttachMoney.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" -}), 'AttachMoney'); \ No newline at end of file +}), 'AttachMoney'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachMoneyOutlined.js b/packages/material-ui-icons/lib/AttachMoneyOutlined.js index ea14a0a8f453dc..43ebee88190c32 100644 --- a/packages/material-ui-icons/lib/AttachMoneyOutlined.js +++ b/packages/material-ui-icons/lib/AttachMoneyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" -}), 'AttachMoneyOutlined'); \ No newline at end of file +}), 'AttachMoneyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachMoneyRounded.js b/packages/material-ui-icons/lib/AttachMoneyRounded.js index 4aedbaffc4b419..a2569cfe91cecc 100644 --- a/packages/material-ui-icons/lib/AttachMoneyRounded.js +++ b/packages/material-ui-icons/lib/AttachMoneyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.42 0 2.13.54 2.39 1.4.12.4.45.7.87.7h.3c.66 0 1.13-.65.9-1.27-.42-1.18-1.4-2.16-2.96-2.54V4.5c0-.83-.67-1.5-1.5-1.5S10 3.67 10 4.5v.66c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67h-.28c-.67 0-1.14.68-.89 1.3.57 1.39 1.9 2.21 3.4 2.53v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" -}), 'AttachMoneyRounded'); \ No newline at end of file +}), 'AttachMoneyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachMoneySharp.js b/packages/material-ui-icons/lib/AttachMoneySharp.js index 99fc7540e852db..768d7fc3602340 100644 --- a/packages/material-ui-icons/lib/AttachMoneySharp.js +++ b/packages/material-ui-icons/lib/AttachMoneySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" -}), 'AttachMoneySharp'); \ No newline at end of file +}), 'AttachMoneySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachMoneyTwoTone.js b/packages/material-ui-icons/lib/AttachMoneyTwoTone.js index 1513545d0d9552..6364d60ba05fa9 100644 --- a/packages/material-ui-icons/lib/AttachMoneyTwoTone.js +++ b/packages/material-ui-icons/lib/AttachMoneyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 17.1c-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79z" -}), 'AttachMoneyTwoTone'); \ No newline at end of file +}), 'AttachMoneyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Attachment.js b/packages/material-ui-icons/lib/Attachment.js index 8b65787d406311..e9ff20543bd9f5 100644 --- a/packages/material-ui-icons/lib/Attachment.js +++ b/packages/material-ui-icons/lib/Attachment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 12.5C2 9.46 4.46 7 7.5 7H18c2.21 0 4 1.79 4 4s-1.79 4-4 4H9.5C8.12 15 7 13.88 7 12.5S8.12 10 9.5 10H17v2H9.41c-.55 0-.55 1 0 1H18c1.1 0 2-.9 2-2s-.9-2-2-2H7.5C5.57 9 4 10.57 4 12.5S5.57 16 7.5 16H17v2H7.5C4.46 18 2 15.54 2 12.5z" -}), 'Attachment'); \ No newline at end of file +}), 'Attachment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachmentOutlined.js b/packages/material-ui-icons/lib/AttachmentOutlined.js index 6266c792fe21fe..94720686e66347 100644 --- a/packages/material-ui-icons/lib/AttachmentOutlined.js +++ b/packages/material-ui-icons/lib/AttachmentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" -}), 'AttachmentOutlined'); \ No newline at end of file +}), 'AttachmentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachmentRounded.js b/packages/material-ui-icons/lib/AttachmentRounded.js index 3ba142a561f81e..564d7fef3edb1e 100644 --- a/packages/material-ui-icons/lib/AttachmentRounded.js +++ b/packages/material-ui-icons/lib/AttachmentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.75 16H7.17c-2.09 0-3.95-1.53-4.15-3.61C2.79 10.01 4.66 8 7 8h12.36c1.31 0 2.5.94 2.63 2.24.15 1.5-1.02 2.76-2.49 2.76H9c-.55 0-1-.45-1-1s.45-1 1-1h8.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H9.14c-1.31 0-2.5.94-2.63 2.24-.15 1.5 1.02 2.76 2.49 2.76h10.33c2.09 0 3.95-1.53 4.15-3.61.23-2.39-1.64-4.39-3.98-4.39H7.23c-2.87 0-5.44 2.1-5.71 4.96-.3 3.29 2.26 6.04 5.48 6.04h10.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75z" -}), 'AttachmentRounded'); \ No newline at end of file +}), 'AttachmentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachmentSharp.js b/packages/material-ui-icons/lib/AttachmentSharp.js index cc785934e367b1..5dc37ce0c80a30 100644 --- a/packages/material-ui-icons/lib/AttachmentSharp.js +++ b/packages/material-ui-icons/lib/AttachmentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" -}), 'AttachmentSharp'); \ No newline at end of file +}), 'AttachmentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttachmentTwoTone.js b/packages/material-ui-icons/lib/AttachmentTwoTone.js index 2eec3f077c586d..c3ac2ac9f8f3b2 100644 --- a/packages/material-ui-icons/lib/AttachmentTwoTone.js +++ b/packages/material-ui-icons/lib/AttachmentTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" -}), 'AttachmentTwoTone'); \ No newline at end of file +}), 'AttachmentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Attractions.js b/packages/material-ui-icons/lib/Attractions.js index b10045e2bedd5c..dd9b483541c57f 100644 --- a/packages/material-ui-icons/lib/Attractions.js +++ b/packages/material-ui-icons/lib/Attractions.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.43 18.75c.37-.46.94-.75 1.57-.75.63 0 1.19.29 1.56.75.39-.09.76-.21 1.12-.36l-1.42-3.18c-.39.15-.82.23-1.26.23-.46 0-.9-.09-1.3-.25l-1.43 3.19c.38.16.76.29 1.16.37zM5.15 10c-.16.59-.25 1.21-.25 1.85 0 .75.12 1.47.33 2.15.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99.22-.68.34-1.41.34-2.16 0-.64-.09-1.27-.25-1.86-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.39 5.6 12.74 6 12 6s-1.39-.41-1.74-1.01c-1.34.34-2.53 1.05-3.44 2.03.33.6.35 1.35-.02 1.98-.35.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58.51-.88 1.58-1.23 2.49-.85 1.11-1.17 2.56-2.03 4.18-2.42C10.15 2.75 10.99 2 12 2s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42.91-.38 1.99-.03 2.49.85.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58-.51.88-1.58 1.23-2.49.85-.4.43-.85.81-1.34 1.15l1.34 3H16.3l-.97-2.17c-.43.18-.88.33-1.34.44-.14.98-.98 1.73-1.99 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46L7.66 22H5.78l1.36-3.03a8.72 8.72 0 0 1-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.23-.77-.35-1.58-.35-2.42s.12-1.65.35-2.42z" -}), 'Attractions'); \ No newline at end of file +}), 'Attractions'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttractionsOutlined.js b/packages/material-ui-icons/lib/AttractionsOutlined.js index 8f5054527667b4..8e2199ee353de2 100644 --- a/packages/material-ui-icons/lib/AttractionsOutlined.js +++ b/packages/material-ui-icons/lib/AttractionsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.15 14.42c.23-.77.35-1.58.35-2.42s-.12-1.65-.35-2.42c.78-.6 1.02-1.7.51-2.58s-1.58-1.23-2.49-.85c-1.11-1.17-2.56-2.03-4.18-2.42C13.85 2.75 13.01 2 12 2s-1.85.75-1.98 1.73c-1.63.39-3.07 1.25-4.19 2.42-.91-.38-1.98-.03-2.49.85s-.27 1.98.51 2.58c-.23.77-.35 1.58-.35 2.42s.12 1.65.35 2.42c-.78.6-1.02 1.7-.51 2.58s1.58 1.23 2.49.85c.4.42.83.79 1.3 1.12L5.78 22h1.88l.98-2.19c.44.19.9.34 1.38.46.13.98.97 1.73 1.98 1.73s1.85-.75 1.98-1.73c.46-.11.91-.26 1.34-.44L16.3 22h1.88l-1.34-3c.48-.34.93-.72 1.34-1.15.91.38 1.99.03 2.49-.85.5-.88.26-1.98-.52-2.58zm-6.59 4.33c-.37-.46-.93-.75-1.56-.75s-1.2.29-1.57.75c-.4-.09-.79-.21-1.16-.37l1.43-3.19c.4.16.84.25 1.3.25.44 0 .87-.08 1.26-.23l1.42 3.18c-.36.15-.73.27-1.12.36zm-3.08-6.73c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zm8.23 1.99c-.61.07-1.18.41-1.52.99-.32.56-.34 1.2-.12 1.75-.28.29-.58.55-.9.79l-1.5-3.35c.49-.59.78-1.34.78-2.16 0-1.89-1.55-3.41-3.46-3.41s-3.46 1.53-3.46 3.41c0 .8.28 1.54.75 2.13l-1.52 3.39c-.31-.23-.6-.48-.87-.76.26-.56.24-1.22-.09-1.79-.34-.59-.93-.94-1.56-.99-.22-.68-.33-1.4-.33-2.15 0-.64.09-1.26.25-1.85.66-.03 1.3-.38 1.65-1 .37-.63.35-1.38.01-1.98.92-.98 2.11-1.69 3.45-2.03.34.59.99 1 1.73 1s1.39-.4 1.73-1c1.34.34 2.53 1.07 3.44 2.05-.32.59-.33 1.33.03 1.95.35.6.96.95 1.6 1 .16.59.25 1.21.25 1.86 0 .75-.12 1.47-.34 2.15z" -}), 'AttractionsOutlined'); \ No newline at end of file +}), 'AttractionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttractionsRounded.js b/packages/material-ui-icons/lib/AttractionsRounded.js index 1454ee2614c804..62d9b2db82c8fe 100644 --- a/packages/material-ui-icons/lib/AttractionsRounded.js +++ b/packages/material-ui-icons/lib/AttractionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.44 18.75c.37-.46.94-.75 1.57-.75s1.19.29 1.56.75c.39-.09.76-.21 1.12-.36l-1.42-3.18c-.39.15-.82.23-1.26.23-.46 0-.9-.09-1.3-.25l-1.43 3.19c.37.16.75.29 1.16.37zM5.16 10c-.16.59-.25 1.21-.25 1.85 0 .75.12 1.47.33 2.15.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99.22-.68.34-1.41.34-2.16 0-.64-.09-1.27-.25-1.86-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.4 5.6 12.74 6 12.01 6s-1.39-.41-1.74-1.01c-1.34.34-2.53 1.05-3.44 2.03.33.6.35 1.35-.02 1.98-.36.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58s1.58-1.23 2.49-.85c1.11-1.17 2.56-2.03 4.18-2.42.13-.98.97-1.73 1.99-1.73s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42.91-.38 1.99-.03 2.49.85.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58s-1.58 1.23-2.49.85c-.4.43-.85.81-1.34 1.15l.81 1.8c.25.56-.16 1.2-.78 1.2-.33 0-.64-.2-.78-.5l-.75-1.67c-.43.18-.88.33-1.34.44-.13.98-.97 1.73-1.98 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46l-.76 1.69c-.14.3-.44.5-.78.5H7.1c-.62 0-1.03-.64-.77-1.2l.82-1.83a8.72 8.72 0 0 1-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.24-.77-.35-1.58-.35-2.42s.11-1.65.35-2.42z" -}), 'AttractionsRounded'); \ No newline at end of file +}), 'AttractionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttractionsSharp.js b/packages/material-ui-icons/lib/AttractionsSharp.js index 64e557e8d6bd8d..987447ae588912 100644 --- a/packages/material-ui-icons/lib/AttractionsSharp.js +++ b/packages/material-ui-icons/lib/AttractionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.44 18.75c.37-.46.94-.75 1.57-.75s1.19.29 1.56.75c.39-.09.76-.21 1.12-.36l-1.42-3.18c-.39.15-.82.23-1.26.23-.46 0-.9-.09-1.3-.25l-1.43 3.19c.37.16.75.29 1.16.37zM5.16 10c-.16.59-.25 1.21-.25 1.85 0 .75.12 1.47.33 2.15.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99.22-.68.34-1.41.34-2.16 0-.64-.09-1.27-.25-1.86-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.4 5.6 12.74 6 12.01 6s-1.39-.41-1.74-1.01c-1.34.34-2.53 1.05-3.44 2.03.33.6.35 1.35-.02 1.98-.36.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58s1.58-1.23 2.49-.85c1.11-1.17 2.56-2.03 4.18-2.42.13-.98.97-1.73 1.99-1.73s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42.91-.38 1.99-.03 2.49.85.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58s-1.58 1.23-2.49.85c-.4.43-.85.81-1.34 1.15l1.34 3h-1.86l-.97-2.17c-.43.18-.88.33-1.34.44-.14.98-.98 1.73-1.99 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46L7.66 22H5.79l1.36-3.03a8.72 8.72 0 0 1-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.24-.77-.35-1.58-.35-2.42s.11-1.65.35-2.42z" -}), 'AttractionsSharp'); \ No newline at end of file +}), 'AttractionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttractionsTwoTone.js b/packages/material-ui-icons/lib/AttractionsTwoTone.js index 3410fb5c45803a..c05edd941724bb 100644 --- a/packages/material-ui-icons/lib/AttractionsTwoTone.js +++ b/packages/material-ui-icons/lib/AttractionsTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11.98", cy: "12.02", r: "1.5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.15 14.42c.23-.77.35-1.58.35-2.42s-.12-1.65-.35-2.42c.78-.6 1.02-1.7.51-2.58-.51-.88-1.58-1.23-2.49-.85-1.11-1.17-2.56-2.03-4.18-2.42C13.85 2.75 13.01 2 12 2s-1.85.75-1.98 1.73c-1.63.39-3.07 1.25-4.19 2.42-.91-.38-1.98-.03-2.49.85-.51.88-.27 1.98.51 2.58-.23.77-.35 1.58-.35 2.42s.12 1.65.35 2.42c-.78.6-1.02 1.7-.51 2.58.51.88 1.58 1.23 2.49.85.4.42.83.79 1.3 1.12L5.78 22h1.88l.98-2.19c.44.19.9.34 1.38.46.13.98.97 1.73 1.98 1.73s1.85-.75 1.98-1.73c.46-.11.91-.26 1.34-.44L16.3 22h1.88l-1.34-3c.48-.34.93-.72 1.34-1.15.91.38 1.99.03 2.49-.85s.26-1.98-.52-2.58zm-6.59 4.33c-.37-.46-.93-.75-1.56-.75s-1.2.29-1.57.75c-.4-.09-.79-.21-1.16-.37l1.43-3.19c.4.16.84.25 1.3.25.44 0 .87-.08 1.26-.23l1.42 3.18c-.36.15-.73.27-1.12.36zm-3.08-6.73c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zm8.23 1.99c-.61.07-1.18.41-1.52.99-.32.56-.34 1.2-.12 1.75-.28.29-.58.55-.9.79l-1.5-3.35c.49-.59.78-1.34.78-2.16 0-1.89-1.55-3.41-3.46-3.41s-3.46 1.53-3.46 3.41c0 .8.28 1.54.75 2.13l-1.52 3.39c-.31-.23-.6-.48-.87-.76.26-.56.24-1.22-.09-1.79-.34-.59-.93-.94-1.56-.99-.22-.68-.33-1.4-.33-2.15 0-.64.09-1.26.25-1.85.66-.03 1.3-.38 1.65-1 .37-.63.35-1.38.01-1.98.92-.98 2.11-1.69 3.45-2.03.34.59.99 1 1.73 1s1.39-.4 1.73-1c1.34.34 2.53 1.07 3.44 2.05-.32.59-.33 1.33.03 1.95.35.6.96.95 1.6 1 .16.59.25 1.21.25 1.86 0 .75-.12 1.47-.34 2.15z" -}, "1")], 'AttractionsTwoTone'); \ No newline at end of file +}, "1")], 'AttractionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Attribution.js b/packages/material-ui-icons/lib/Attribution.js index 81d5561ed4e993..dd5eac03d07bb9 100644 --- a/packages/material-ui-icons/lib/Attribution.js +++ b/packages/material-ui-icons/lib/Attribution.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6.5", r: "1.5" -}, "2")], 'Attribution'); \ No newline at end of file +}, "2")], 'Attribution'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttributionOutlined.js b/packages/material-ui-icons/lib/AttributionOutlined.js index cb5f5cf2fdda43..78980f01de49a8 100644 --- a/packages/material-ui-icons/lib/AttributionOutlined.js +++ b/packages/material-ui-icons/lib/AttributionOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6.5", r: "1.5" -}, "1")], 'AttributionOutlined'); \ No newline at end of file +}, "1")], 'AttributionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttributionRounded.js b/packages/material-ui-icons/lib/AttributionRounded.js index 48b9d147a352fa..52d148abaf2fbb 100644 --- a/packages/material-ui-icons/lib/AttributionRounded.js +++ b/packages/material-ui-icons/lib/AttributionRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.5c-.91 0-2.75.46-2.75 1.38V14c0 .28.22.5.5.5h1v3.25c0 .69.56 1.25 1.25 1.25s1.25-.56 1.25-1.25V14.5h1c.28 0 .5-.22.5-.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6.5", r: "1.5" -}, "1")], 'AttributionRounded'); \ No newline at end of file +}, "1")], 'AttributionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttributionSharp.js b/packages/material-ui-icons/lib/AttributionSharp.js index 9e6c13e172c2b2..513ca10bbbde63 100644 --- a/packages/material-ui-icons/lib/AttributionSharp.js +++ b/packages/material-ui-icons/lib/AttributionSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-2.75-5.5h1.5V19h2.5v-4.5h1.5v-6h-5.5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6.5", r: "1.5" -}, "1")], 'AttributionSharp'); \ No newline at end of file +}, "1")], 'AttributionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AttributionTwoTone.js b/packages/material-ui-icons/lib/AttributionTwoTone.js index bf3fd9da5e4afd..4003aedabbba39 100644 --- a/packages/material-ui-icons/lib/AttributionTwoTone.js +++ b/packages/material-ui-icons/lib/AttributionTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 1c.83 0 1.5.67 1.5 1.5S12.83 8 12 8s-1.5-.67-1.5-1.5S11.17 5 12 5zm2.75 9.5h-1.5V19h-2.5v-4.5h-1.5V9.88c0-.92 1.84-1.38 2.75-1.38s2.75.47 2.75 1.38v4.62z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-11.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6.5", r: "1.5" -}, "2")], 'AttributionTwoTone'); \ No newline at end of file +}, "2")], 'AttributionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Audiotrack.js b/packages/material-ui-icons/lib/Audiotrack.js index 5addd417415139..1d7a6363d683a5 100644 --- a/packages/material-ui-icons/lib/Audiotrack.js +++ b/packages/material-ui-icons/lib/Audiotrack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3v9.28c-.47-.17-.97-.28-1.5-.28C8.01 12 6 14.01 6 16.5S8.01 21 10.5 21c2.31 0 4.2-1.75 4.45-4H15V6h4V3h-7z" -}), 'Audiotrack'); \ No newline at end of file +}), 'Audiotrack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AudiotrackOutlined.js b/packages/material-ui-icons/lib/AudiotrackOutlined.js index 3e077c12bf4726..4359ec4e9d07b3 100644 --- a/packages/material-ui-icons/lib/AudiotrackOutlined.js +++ b/packages/material-ui-icons/lib/AudiotrackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6zm-2 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'AudiotrackOutlined'); \ No newline at end of file +}), 'AudiotrackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AudiotrackRounded.js b/packages/material-ui-icons/lib/AudiotrackRounded.js index f2607f6f08cd2b..03bab935b0dd03 100644 --- a/packages/material-ui-icons/lib/AudiotrackRounded.js +++ b/packages/material-ui-icons/lib/AudiotrackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z" -}), 'AudiotrackRounded'); \ No newline at end of file +}), 'AudiotrackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AudiotrackSharp.js b/packages/material-ui-icons/lib/AudiotrackSharp.js index 0a5ef011982a24..8303cf38d9d9ce 100644 --- a/packages/material-ui-icons/lib/AudiotrackSharp.js +++ b/packages/material-ui-icons/lib/AudiotrackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" -}), 'AudiotrackSharp'); \ No newline at end of file +}), 'AudiotrackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AudiotrackTwoTone.js b/packages/material-ui-icons/lib/AudiotrackTwoTone.js index 064c2a06d1fd78..fb734fd935ae51 100644 --- a/packages/material-ui-icons/lib/AudiotrackTwoTone.js +++ b/packages/material-ui-icons/lib/AudiotrackTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "17", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 21c2.21 0 4-1.79 4-4V7h4V3h-6v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" -}, "1")], 'AudiotrackTwoTone'); \ No newline at end of file +}, "1")], 'AudiotrackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesome.js b/packages/material-ui-icons/lib/AutoAwesome.js index 6fe989502d6ea4..0f63015a807510 100644 --- a/packages/material-ui-icons/lib/AutoAwesome.js +++ b/packages/material-ui-icons/lib/AutoAwesome.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z" -}), 'AutoAwesome'); \ No newline at end of file +}), 'AutoAwesome'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMosaic.js b/packages/material-ui-icons/lib/AutoAwesomeMosaic.js index 6091858b9cfaa1..d691111a45ae0f 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMosaic.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMosaic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z" -}), 'AutoAwesomeMosaic'); \ No newline at end of file +}), 'AutoAwesomeMosaic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMosaicOutlined.js b/packages/material-ui-icons/lib/AutoAwesomeMosaicOutlined.js index f8a2143c8a1d09..1b58300d16248d 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMosaicOutlined.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMosaicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm6 14H5V5h4v14zM19 3h-6v8h8V5c0-1.1-.9-2-2-2zm0 6h-4V5h4v4zm-6 12h6c1.1 0 2-.9 2-2v-6h-8v8zm2-6h4v4h-4v-4z" -}), 'AutoAwesomeMosaicOutlined'); \ No newline at end of file +}), 'AutoAwesomeMosaicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMosaicRounded.js b/packages/material-ui-icons/lib/AutoAwesomeMosaicRounded.js index 87326bbc2e87ed..2d23002c7506a5 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMosaicRounded.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMosaicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z" -}), 'AutoAwesomeMosaicRounded'); \ No newline at end of file +}), 'AutoAwesomeMosaicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMosaicSharp.js b/packages/material-ui-icons/lib/AutoAwesomeMosaicSharp.js index 2eedf9038bd6b8..af770342306ded 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMosaicSharp.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMosaicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h8V3H3v18zM21 3h-8v8h8V3zm-8 18h8v-8h-8v8z" -}), 'AutoAwesomeMosaicSharp'); \ No newline at end of file +}), 'AutoAwesomeMosaicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMosaicTwoTone.js b/packages/material-ui-icons/lib/AutoAwesomeMosaicTwoTone.js index ab136d524a38fe..a7511e25d96d2d 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMosaicTwoTone.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMosaicTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h4v14H5zm10 10h4v4h-4zm0-10h4v4h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm6 14H5V5h4v14zM19 3h-6v8h8V5c0-1.1-.9-2-2-2zm0 6h-4V5h4v4zm-6 12h6c1.1 0 2-.9 2-2v-6h-8v8zm2-6h4v4h-4v-4z" -}, "1")], 'AutoAwesomeMosaicTwoTone'); \ No newline at end of file +}, "1")], 'AutoAwesomeMosaicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMotion.js b/packages/material-ui-icons/lib/AutoAwesomeMotion.js index 0401fa15e85ab3..b6bed62954ae4b 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMotion.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMotion.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4c-1.11 0-2 .9-2 2v10h2V4h10V2zm4 4H8c-1.11 0-2 .9-2 2v10h2V8h10V6zm2 4h-8c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" -}), 'AutoAwesomeMotion'); \ No newline at end of file +}), 'AutoAwesomeMotion'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMotionOutlined.js b/packages/material-ui-icons/lib/AutoAwesomeMotionOutlined.js index 8d1591bd5b12c1..5731a42b7ac922 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMotionOutlined.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMotionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4c-1.1 0-2 .9-2 2v10h2V4h10V2zm4 4H8c-1.1 0-2 .9-2 2v10h2V8h10V6zm2 4h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-8v-8h8v8z" -}), 'AutoAwesomeMotionOutlined'); \ No newline at end of file +}), 'AutoAwesomeMotionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMotionRounded.js b/packages/material-ui-icons/lib/AutoAwesomeMotionRounded.js index 3f8fbb0e83f650..9dfef9544d6b42 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMotionRounded.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMotionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2H4c-1.1 0-2 .9-2 2v9c0 .55.45 1 1 1s1-.45 1-1V4h9c.55 0 1-.45 1-1s-.45-1-1-1zm4 4H8c-1.1 0-2 .9-2 2v9c0 .55.45 1 1 1s1-.45 1-1V8h9c.55 0 1-.45 1-1s-.45-1-1-1zm3 4h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" -}), 'AutoAwesomeMotionRounded'); \ No newline at end of file +}), 'AutoAwesomeMotionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMotionSharp.js b/packages/material-ui-icons/lib/AutoAwesomeMotionSharp.js index 4d641cbf6b962b..1af3ce12c369e2 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMotionSharp.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMotionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H2v12h2V4h10V2zm4 4H6v12h2V8h10V6zm4 4H10v12h12V10z" -}), 'AutoAwesomeMotionSharp'); \ No newline at end of file +}), 'AutoAwesomeMotionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeMotionTwoTone.js b/packages/material-ui-icons/lib/AutoAwesomeMotionTwoTone.js index 683126d0b86a78..a5f6f92e201db3 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeMotionTwoTone.js +++ b/packages/material-ui-icons/lib/AutoAwesomeMotionTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12h8v8h-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4c-1.1 0-2 .9-2 2v10h2V4h10V2zm6 8h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-8v-8h8v8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6H8c-1.1 0-2 .9-2 2v10h2V8h10V6z" -}, "2")], 'AutoAwesomeMotionTwoTone'); \ No newline at end of file +}, "2")], 'AutoAwesomeMotionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeOutlined.js b/packages/material-ui-icons/lib/AutoAwesomeOutlined.js index b8237a078566f7..ac9d5b72b9799e 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeOutlined.js +++ b/packages/material-ui-icons/lib/AutoAwesomeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25zm0 6-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25zm-7.5-5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zm-1.51 3.49L9 15.17l-.99-2.18L5.83 12l2.18-.99L9 8.83l.99 2.18 2.18.99-2.18.99z" -}), 'AutoAwesomeOutlined'); \ No newline at end of file +}), 'AutoAwesomeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeRounded.js b/packages/material-ui-icons/lib/AutoAwesomeRounded.js index 94434dd3ed64e6..3ea6e072be9148 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeRounded.js +++ b/packages/material-ui-icons/lib/AutoAwesomeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.46 8 .79-1.75L22 5.46c.39-.18.39-.73 0-.91l-1.75-.79L19.46 2c-.18-.39-.73-.39-.91 0l-.79 1.75-1.76.79c-.39.18-.39.73 0 .91l1.75.79.79 1.76c.18.39.74.39.92 0zM11.5 9.5 9.91 6c-.35-.78-1.47-.78-1.82 0L6.5 9.5 3 11.09c-.78.36-.78 1.47 0 1.82l3.5 1.59L8.09 18c.36.78 1.47.78 1.82 0l1.59-3.5 3.5-1.59c.78-.36.78-1.47 0-1.82L11.5 9.5zm7.04 6.5-.79 1.75-1.75.79c-.39.18-.39.73 0 .91l1.75.79.79 1.76c.18.39.73.39.91 0l.79-1.75 1.76-.79c.39-.18.39-.73 0-.91l-1.75-.79-.79-1.76c-.18-.39-.74-.39-.92 0z" -}), 'AutoAwesomeRounded'); \ No newline at end of file +}), 'AutoAwesomeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeSharp.js b/packages/material-ui-icons/lib/AutoAwesomeSharp.js index 866b02d4115162..7154d676553f60 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeSharp.js +++ b/packages/material-ui-icons/lib/AutoAwesomeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z" -}), 'AutoAwesomeSharp'); \ No newline at end of file +}), 'AutoAwesomeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoAwesomeTwoTone.js b/packages/material-ui-icons/lib/AutoAwesomeTwoTone.js index ee2b0896e21fc6..d158d73ba22ae6 100644 --- a/packages/material-ui-icons/lib/AutoAwesomeTwoTone.js +++ b/packages/material-ui-icons/lib/AutoAwesomeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.99 11.01 9 8.83l-.99 2.18-2.18.99 2.18.99.99 2.18.99-2.18 2.18-.99z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25zm0 6-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25zm-7.5-5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zm-1.51 3.49L9 15.17l-.99-2.18L5.83 12l2.18-.99L9 8.83l.99 2.18 2.18.99-2.18.99z" -}, "1")], 'AutoAwesomeTwoTone'); \ No newline at end of file +}, "1")], 'AutoAwesomeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoDelete.js b/packages/material-ui-icons/lib/AutoDelete.js index 152062e8d8c3cf..2c51006774cca6 100644 --- a/packages/material-ui-icons/lib/AutoDelete.js +++ b/packages/material-ui-icons/lib/AutoDelete.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v12c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" -}, "1")], 'AutoDelete'); \ No newline at end of file +}, "1")], 'AutoDelete'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoDeleteOutlined.js b/packages/material-ui-icons/lib/AutoDeleteOutlined.js index acc709e3efded5..f631a9c417f455 100644 --- a/packages/material-ui-icons/lib/AutoDeleteOutlined.js +++ b/packages/material-ui-icons/lib/AutoDeleteOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v12c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm-7 7c0 .34.03.67.08 1H4V7h8v3.26c-1.81 1.27-3 3.36-3 5.74zm7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" -}, "1")], 'AutoDeleteOutlined'); \ No newline at end of file +}, "1")], 'AutoDeleteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoDeleteRounded.js b/packages/material-ui-icons/lib/AutoDeleteRounded.js index 3c9c09a94a4302..c4562e2b737932 100644 --- a/packages/material-ui-icons/lib/AutoDeleteRounded.js +++ b/packages/material-ui-icons/lib/AutoDeleteRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9c-.7 0-1.37.1-2 .29V7c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zM14 4c.55 0 1-.45 1-1s-.45-1-1-1h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H5.91c-.26 0-.52.11-.7.29L4.5 2H2c-.55 0-1 .45-1 1s.45 1 1 1h12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.75 12c-.41 0-.75.34-.75.75v3.68c0 .36.19.68.5.86l2.52 1.47c.33.19.75.09.96-.22.23-.34.12-.81-.24-1.02L16.5 16.2v-3.45c0-.41-.34-.75-.75-.75z" -}, "1")], 'AutoDeleteRounded'); \ No newline at end of file +}, "1")], 'AutoDeleteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoDeleteSharp.js b/packages/material-ui-icons/lib/AutoDeleteSharp.js index 6169707b5106dd..bfbe847d29e17d 100644 --- a/packages/material-ui-icons/lib/AutoDeleteSharp.js +++ b/packages/material-ui-icons/lib/AutoDeleteSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v14h7.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" -}, "1")], 'AutoDeleteSharp'); \ No newline at end of file +}, "1")], 'AutoDeleteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoDeleteTwoTone.js b/packages/material-ui-icons/lib/AutoDeleteTwoTone.js index 1e02c2eb98e107..d152afff345494 100644 --- a/packages/material-ui-icons/lib/AutoDeleteTwoTone.js +++ b/packages/material-ui-icons/lib/AutoDeleteTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7H4v10h5.08c-.05-.33-.08-.66-.08-1 0-2.38 1.19-4.47 3-5.74V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v12c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm-7 7c0 .34.03.67.08 1H4V7h8v3.26c-1.81 1.27-3 3.36-3 5.74zm7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" -}, "2")], 'AutoDeleteTwoTone'); \ No newline at end of file +}, "2")], 'AutoDeleteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixHigh.js b/packages/material-ui-icons/lib/AutoFixHigh.js index f02c18e445faf7..0c59b4ca889b61 100644 --- a/packages/material-ui-icons/lib/AutoFixHigh.js +++ b/packages/material-ui-icons/lib/AutoFixHigh.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 5.6 10 7 8.6 4.5 10 2 7.5 3.4 5 2l1.4 2.5L5 7zm12 9.8L17 14l1.4 2.5L17 19l2.5-1.4L22 19l-1.4-2.5L22 14zM22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29a.9959.9959 0 0 0-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z" -}), 'AutoFixHigh'); \ No newline at end of file +}), 'AutoFixHigh'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixHighOutlined.js b/packages/material-ui-icons/lib/AutoFixHighOutlined.js index 8acc46069ef1a5..621a1470621cf3 100644 --- a/packages/material-ui-icons/lib/AutoFixHighOutlined.js +++ b/packages/material-ui-icons/lib/AutoFixHighOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-2.29-3.38-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zm-3.54-.7 1.41 1.41L14.41 11 13 9.59l1.17-1.17zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18z" -}), 'AutoFixHighOutlined'); \ No newline at end of file +}), 'AutoFixHighOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixHighRounded.js b/packages/material-ui-icons/lib/AutoFixHighRounded.js index 8b179f621fed7b..c58b3bc76c33e6 100644 --- a/packages/material-ui-icons/lib/AutoFixHighRounded.js +++ b/packages/material-ui-icons/lib/AutoFixHighRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.45 6 .49-1.06L22 4.45c.39-.18.39-.73 0-.91l-1.06-.49L20.45 2c-.18-.39-.73-.39-.91 0l-.49 1.06-1.05.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.17.39.73.39.9 0zM8.95 6l.49-1.06 1.06-.49c.39-.18.39-.73 0-.91l-1.06-.48L8.95 2c-.17-.39-.73-.39-.9 0l-.49 1.06-1.06.49c-.39.18-.39.73 0 .91l1.06.49L8.05 6c.17.39.73.39.9 0zm10.6 7.5-.49 1.06-1.06.49c-.39.18-.39.73 0 .91l1.06.49.49 1.06c.18.39.73.39.91 0l.49-1.06 1.05-.5c.39-.18.39-.73 0-.91l-1.06-.49-.49-1.06c-.17-.38-.73-.38-.9.01zm-1.84-4.38-2.83-2.83a.9959.9959 0 0 0-1.41 0L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0L17.7 10.53c.4-.38.4-1.02.01-1.41zm-3.5 2.09L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" -}), 'AutoFixHighRounded'); \ No newline at end of file +}), 'AutoFixHighRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixHighSharp.js b/packages/material-ui-icons/lib/AutoFixHighSharp.js index 7030138764821c..295af303528c1f 100644 --- a/packages/material-ui-icons/lib/AutoFixHighSharp.js +++ b/packages/material-ui-icons/lib/AutoFixHighSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-1.59-2.67-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" -}), 'AutoFixHighSharp'); \ No newline at end of file +}), 'AutoFixHighSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixHighTwoTone.js b/packages/material-ui-icons/lib/AutoFixHighTwoTone.js index e1738ae421f68a..31169891e51834 100644 --- a/packages/material-ui-icons/lib/AutoFixHighTwoTone.js +++ b/packages/material-ui-icons/lib/AutoFixHighTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.4149 18.1667 7.17-7.17 1.4142 1.4141-7.17 7.1701z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-2.29-3.38-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18zM14.41 11 13 9.59l1.17-1.17 1.41 1.41L14.41 11z" -}, "1")], 'AutoFixHighTwoTone'); \ No newline at end of file +}, "1")], 'AutoFixHighTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixNormal.js b/packages/material-ui-icons/lib/AutoFixNormal.js index f56889b041aeaf..11e526f3207e72 100644 --- a/packages/material-ui-icons/lib/AutoFixNormal.js +++ b/packages/material-ui-icons/lib/AutoFixNormal.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 2-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29a.9959.9959 0 0 0-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z" -}), 'AutoFixNormal'); \ No newline at end of file +}), 'AutoFixNormal'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixNormalOutlined.js b/packages/material-ui-icons/lib/AutoFixNormalOutlined.js index aaf15a113fbafa..96a2b34a4a83d6 100644 --- a/packages/material-ui-icons/lib/AutoFixNormalOutlined.js +++ b/packages/material-ui-icons/lib/AutoFixNormalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-2.29 2.12-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zm-3.54-.7 1.41 1.41L14.41 11 13 9.59l1.17-1.17zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18z" -}), 'AutoFixNormalOutlined'); \ No newline at end of file +}), 'AutoFixNormalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixNormalRounded.js b/packages/material-ui-icons/lib/AutoFixNormalRounded.js index a260ecdc3007f4..1dddabe958b3fd 100644 --- a/packages/material-ui-icons/lib/AutoFixNormalRounded.js +++ b/packages/material-ui-icons/lib/AutoFixNormalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.45 6 .49-1.06L22 4.45c.39-.18.39-.73 0-.91l-1.06-.49L20.45 2c-.18-.39-.73-.39-.91 0l-.49 1.06-1.05.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.17.39.73.39.9 0zm-2.74 3.12-2.83-2.83a.9959.9959 0 0 0-1.41 0L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0L17.7 10.53c.4-.38.4-1.02.01-1.41zm-3.5 2.09L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" -}), 'AutoFixNormalRounded'); \ No newline at end of file +}), 'AutoFixNormalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixNormalSharp.js b/packages/material-ui-icons/lib/AutoFixNormalSharp.js index 1473c36115e350..52f7c5a66f7d9a 100644 --- a/packages/material-ui-icons/lib/AutoFixNormalSharp.js +++ b/packages/material-ui-icons/lib/AutoFixNormalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-1.59 2.83-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" -}), 'AutoFixNormalSharp'); \ No newline at end of file +}), 'AutoFixNormalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixNormalTwoTone.js b/packages/material-ui-icons/lib/AutoFixNormalTwoTone.js index af70871c6bc6c6..1701ef85b6efcc 100644 --- a/packages/material-ui-icons/lib/AutoFixNormalTwoTone.js +++ b/packages/material-ui-icons/lib/AutoFixNormalTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.4149 18.1667 7.17-7.17 1.4142 1.4141-7.17 7.1701z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-2.29 2.12-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18zM14.41 11 13 9.59l1.17-1.17 1.41 1.41L14.41 11z" -}, "1")], 'AutoFixNormalTwoTone'); \ No newline at end of file +}, "1")], 'AutoFixNormalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixOff.js b/packages/material-ui-icons/lib/AutoFixOff.js index 5e580af39df2ea..ba8d8c1e3fe18c 100644 --- a/packages/material-ui-icons/lib/AutoFixOff.js +++ b/packages/material-ui-icons/lib/AutoFixOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 1-2.5 1.4L18 1l1.4 2.5L18 6l2.5-1.4L23 6l-1.4-2.5L23 1zm-8.34 6.22 2.12 2.12-2.44 2.44.81.81 2.55-2.55c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0L11.4 8.84l.81.81 2.45-2.43zm-.78 6.65-3.75-3.75-6.86-6.86L2 4.53l6.86 6.86-6.57 6.57c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0l6.57-6.57L19.47 22l1.27-1.27-6.86-6.86z" -}), 'AutoFixOff'); \ No newline at end of file +}), 'AutoFixOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixOffOutlined.js b/packages/material-ui-icons/lib/AutoFixOffOutlined.js index a99a61c43bd136..74b65f030d23b8 100644 --- a/packages/material-ui-icons/lib/AutoFixOffOutlined.js +++ b/packages/material-ui-icons/lib/AutoFixOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42 1.41 1.41-1.46 1.46 1.41 1.41 2.17-2.17c.39-.39.39-1.02 0-1.41l-2.83-2.83c-.19-.19-.44-.29-.7-.29-.26 0-.51.1-.71.29l-2.17 2.17 1.41 1.41 1.47-1.45zM1.39 4.22l7.07 7.07-6.17 6.17c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l6.17-6.17 7.07 7.07 1.41-1.41L2.81 2.81 1.39 4.22zm9.9 9.9-5.46 5.46-1.41-1.41 5.46-5.46 1.41 1.41z" -}), 'AutoFixOffOutlined'); \ No newline at end of file +}), 'AutoFixOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixOffRounded.js b/packages/material-ui-icons/lib/AutoFixOffRounded.js index 62fe30c42cb23f..26b75721088aa5 100644 --- a/packages/material-ui-icons/lib/AutoFixOffRounded.js +++ b/packages/material-ui-icons/lib/AutoFixOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 3.55-1.06-.49L20.45 2c-.18-.39-.73-.39-.91 0l-.49 1.06-1.05.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.18.39.73.39.91 0l.49-1.06L22 4.45c.39-.17.39-.73 0-.9zm-7.83 4.87 1.41 1.41-1.46 1.46 1.41 1.41 2.17-2.17c.39-.39.39-1.02 0-1.41l-2.83-2.83a.9959.9959 0 0 0-1.41 0l-2.17 2.17 1.41 1.41 1.47-1.45zM2.1 4.93l6.36 6.36-6.17 6.17c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0l6.17-6.17 6.36 6.36c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42z" -}), 'AutoFixOffRounded'); \ No newline at end of file +}), 'AutoFixOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixOffSharp.js b/packages/material-ui-icons/lib/AutoFixOffSharp.js index 264208e406ec77..126bc9a62264fc 100644 --- a/packages/material-ui-icons/lib/AutoFixOffSharp.js +++ b/packages/material-ui-icons/lib/AutoFixOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42 1.41 1.41-1.46 1.46 1.42 1.42 2.87-2.88-4.24-4.24-2.88 2.87 1.42 1.42zM1.39 4.22l7.07 7.07-6.87 6.88 4.24 4.24 6.88-6.87 7.07 7.07 1.41-1.42L2.81 2.81z" -}), 'AutoFixOffSharp'); \ No newline at end of file +}), 'AutoFixOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoFixOffTwoTone.js b/packages/material-ui-icons/lib/AutoFixOffTwoTone.js index dfa9cb7b9756cb..215faeb98e4472 100644 --- a/packages/material-ui-icons/lib/AutoFixOffTwoTone.js +++ b/packages/material-ui-icons/lib/AutoFixOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.4169 18.1737 5.4659-5.4659 1.4142 1.4142-5.466 5.466z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42 1.41 1.41-1.46 1.46 1.41 1.41 2.17-2.17c.39-.39.39-1.02 0-1.41l-2.83-2.83c-.19-.19-.44-.29-.7-.29-.26 0-.51.1-.71.29l-2.17 2.17 1.41 1.41 1.47-1.45zM2.81 2.81 1.39 4.22l7.07 7.07-6.17 6.17c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l6.17-6.17 7.07 7.07 1.41-1.41L2.81 2.81zm3.02 16.78-1.41-1.41 5.46-5.46 1.41 1.41-5.46 5.46z" -}, "1")], 'AutoFixOffTwoTone'); \ No newline at end of file +}, "1")], 'AutoFixOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoGraph.js b/packages/material-ui-icons/lib/AutoGraph.js index e6de8609025648..c5582098c05b32 100644 --- a/packages/material-ui-icons/lib/AutoGraph.js +++ b/packages/material-ui-icons/lib/AutoGraph.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" -}), 'AutoGraph'); \ No newline at end of file +}), 'AutoGraph'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoGraphOutlined.js b/packages/material-ui-icons/lib/AutoGraphOutlined.js index 2011a5ca3ae8aa..0edbfca6645f7c 100644 --- a/packages/material-ui-icons/lib/AutoGraphOutlined.js +++ b/packages/material-ui-icons/lib/AutoGraphOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" -}), 'AutoGraphOutlined'); \ No newline at end of file +}), 'AutoGraphOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoGraphRounded.js b/packages/material-ui-icons/lib/AutoGraphRounded.js index a915c3e47edd11..a530efa184aaa7 100644 --- a/packages/material-ui-icons/lib/AutoGraphRounded.js +++ b/packages/material-ui-icons/lib/AutoGraphRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.06 9.94 13 9.45c-.39-.18-.39-.73 0-.91l1.06-.49.49-1.05c.18-.39.73-.39.91 0l.49 1.06 1.05.49c.39.18.39.73 0 .91l-1.06.49-.49 1.05c-.18.39-.73.39-.91 0l-.48-1.06zM4.45 13l.49-1.06L6 11.45c.39-.18.39-.73 0-.91l-1.06-.49L4.45 9c-.17-.39-.73-.39-.9 0l-.49 1.06-1.06.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.17.39.73.39.9 0zm4.51-5.01.63-1.4 1.4-.63c.39-.18.39-.73 0-.91l-1.4-.63-.63-1.4c-.18-.39-.73-.39-.91 0l-.63 1.4-1.4.63c-.39.18-.39.73 0 .91l1.4.63.63 1.4c.17.39.73.39.91 0zm13.38.28c-.4-.4-1.07-.39-1.45.04l-6.39 7.18-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.04 6.05c-.41.41-.41 1.09 0 1.5.41.41 1.09.41 1.5 0l5.25-5.26 3.25 3.25c.41.41 1.07.39 1.45-.04l7.17-8.07c.35-.39.33-.99-.04-1.36z" -}), 'AutoGraphRounded'); \ No newline at end of file +}), 'AutoGraphRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoGraphSharp.js b/packages/material-ui-icons/lib/AutoGraphSharp.js index f33832f3e4607c..d8bb19b3fe8141 100644 --- a/packages/material-ui-icons/lib/AutoGraphSharp.js +++ b/packages/material-ui-icons/lib/AutoGraphSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" -}), 'AutoGraphSharp'); \ No newline at end of file +}), 'AutoGraphSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoGraphTwoTone.js b/packages/material-ui-icons/lib/AutoGraphTwoTone.js index 80a36aff81dde5..592b0702b6ce1b 100644 --- a/packages/material-ui-icons/lib/AutoGraphTwoTone.js +++ b/packages/material-ui-icons/lib/AutoGraphTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" -}), 'AutoGraphTwoTone'); \ No newline at end of file +}), 'AutoGraphTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoStories.js b/packages/material-ui-icons/lib/AutoStories.js index ca4357568dab0c..5c0f6d711852c6 100644 --- a/packages/material-ui-icons/lib/AutoStories.js +++ b/packages/material-ui-icons/lib/AutoStories.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 1-5 5v11l5-4.5V1zM1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5V6c-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6zm22 13.5V6c-.6-.45-1.25-.75-2-1v13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5v2c1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5v-1.1z" -}), 'AutoStories'); \ No newline at end of file +}), 'AutoStories'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoStoriesOutlined.js b/packages/material-ui-icons/lib/AutoStoriesOutlined.js index d3cb4c8b1d0630..30bc67a419afbe 100644 --- a/packages/material-ui-icons/lib/AutoStoriesOutlined.js +++ b/packages/material-ui-icons/lib/AutoStoriesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.47 5.2c-.47-.24-.96-.44-1.47-.61v12.03c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4c-1.79 0-3.48.44-4.97 1.2-.33.16-.53.51-.53.88v12.08c0 .58.47.99 1 .99.16 0 .32-.04.48-.12C3.69 18.4 5.05 18 6.5 18c2.07 0 3.98.82 5.5 2 1.52-1.18 3.43-2 5.5-2 1.45 0 2.81.4 4.02 1.04.16.08.32.12.48.12.52 0 1-.41 1-.99V6.08c0-.37-.2-.72-.53-.88zM10 16.62C8.86 16.21 7.69 16 6.5 16s-2.36.21-3.5.62V6.71C4.11 6.24 5.28 6 6.5 6c1.2 0 2.39.25 3.5.72v9.9zM19 .5l-5 5V15l5-4.5V.5z" -}), 'AutoStoriesOutlined'); \ No newline at end of file +}), 'AutoStoriesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoStoriesRounded.js b/packages/material-ui-icons/lib/AutoStoriesRounded.js index 295e72ba61bfc7..83215c01dbd1a5 100644 --- a/packages/material-ui-icons/lib/AutoStoriesRounded.js +++ b/packages/material-ui-icons/lib/AutoStoriesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.15 1.35-4 4c-.1.1-.15.22-.15.36v8.17c0 .43.51.66.83.37l4-3.6c.11-.09.17-.23.17-.37V1.71c0-.45-.54-.67-.85-.36zm4.32 3.85c-.47-.24-.96-.44-1.47-.61v12.03c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4c-1.79 0-3.48.44-4.97 1.2-.33.16-.53.51-.53.88v12.08c0 .76.81 1.23 1.48.87C3.69 18.4 5.05 18 6.5 18c2.07 0 3.98.82 5.5 2 1.52-1.18 3.43-2 5.5-2 1.45 0 2.81.4 4.02 1.04.67.36 1.48-.11 1.48-.87V6.08c0-.37-.2-.72-.53-.88z" -}), 'AutoStoriesRounded'); \ No newline at end of file +}), 'AutoStoriesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoStoriesSharp.js b/packages/material-ui-icons/lib/AutoStoriesSharp.js index 8d8be01e4e417c..74b60c14138478 100644 --- a/packages/material-ui-icons/lib/AutoStoriesSharp.js +++ b/packages/material-ui-icons/lib/AutoStoriesSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4.6v12.02c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4S2.62 4.55 1 5.48V20c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2V5.48c-.63-.36-1.3-.64-2-.88z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 .5-5 5V15l5-4.5z" -}, "1")], 'AutoStoriesSharp'); \ No newline at end of file +}, "1")], 'AutoStoriesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutoStoriesTwoTone.js b/packages/material-ui-icons/lib/AutoStoriesTwoTone.js index a1d3ec0830a7aa..d75bbf93db337e 100644 --- a/packages/material-ui-icons/lib/AutoStoriesTwoTone.js +++ b/packages/material-ui-icons/lib/AutoStoriesTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6.71v9.91c1.14-.41 2.31-.62 3.5-.62s2.36.21 3.5.62v-9.9C8.89 6.25 7.7 6 6.5 6c-1.22 0-2.39.24-3.5.71z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 .5-5 5V15l5-4.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.47 5.2c-.47-.24-.96-.44-1.47-.61v12.03c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4c-1.79 0-3.48.44-4.97 1.2-.33.16-.53.51-.53.88v12.08c0 .58.47.99 1 .99.16 0 .32-.04.48-.12C3.69 18.4 5.05 18 6.5 18c2.07 0 3.98.82 5.5 2 1.52-1.18 3.43-2 5.5-2 1.45 0 2.81.4 4.02 1.04.16.08.32.12.48.12.52 0 1-.41 1-.99V6.08c0-.37-.2-.72-.53-.88zM10 16.62C8.86 16.21 7.69 16 6.5 16s-2.36.21-3.5.62V6.71C4.11 6.24 5.28 6 6.5 6c1.2 0 2.39.25 3.5.72v9.9z" -}, "2")], 'AutoStoriesTwoTone'); \ No newline at end of file +}, "2")], 'AutoStoriesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutofpsSelect.js b/packages/material-ui-icons/lib/AutofpsSelect.js index 00c97e50dee4a7..e62a060c67b605 100644 --- a/packages/material-ui-icons/lib/AutofpsSelect.js +++ b/packages/material-ui-icons/lib/AutofpsSelect.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" -}, "1")], 'AutofpsSelect'); \ No newline at end of file +}, "1")], 'AutofpsSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutofpsSelectOutlined.js b/packages/material-ui-icons/lib/AutofpsSelectOutlined.js index da4232658824d0..95e29f336a7274 100644 --- a/packages/material-ui-icons/lib/AutofpsSelectOutlined.js +++ b/packages/material-ui-icons/lib/AutofpsSelectOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" -}, "1")], 'AutofpsSelectOutlined'); \ No newline at end of file +}, "1")], 'AutofpsSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutofpsSelectRounded.js b/packages/material-ui-icons/lib/AutofpsSelectRounded.js index ab7dd400e594ce..b914598655237b 100644 --- a/packages/material-ui-icons/lib/AutofpsSelectRounded.js +++ b/packages/material-ui-icons/lib/AutofpsSelectRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.03 6.3h-.06l-1.02 2.89h2.1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm8-7c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm0-10c.38 0 .71.23.85.59l2.12 5.65c.14.37-.13.76-.53.76-.24 0-.45-.15-.53-.38l-.49-1.41h-2.83l-.5 1.41c-.08.23-.29.38-.53.38-.39 0-.67-.39-.53-.76l2.12-5.65c.14-.36.47-.59.85-.59zM8 22c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm4 0c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm3-4v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1z" -}, "1")], 'AutofpsSelectRounded'); \ No newline at end of file +}, "1")], 'AutofpsSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutofpsSelectSharp.js b/packages/material-ui-icons/lib/AutofpsSelectSharp.js index c0ac34743cf606..fd522983a5b46d 100644 --- a/packages/material-ui-icons/lib/AutofpsSelectSharp.js +++ b/packages/material-ui-icons/lib/AutofpsSelectSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" -}, "1")], 'AutofpsSelectSharp'); \ No newline at end of file +}, "1")], 'AutofpsSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutofpsSelectTwoTone.js b/packages/material-ui-icons/lib/AutofpsSelectTwoTone.js index 1fcc0f0835945f..1f6d90f26d46df 100644 --- a/packages/material-ui-icons/lib/AutofpsSelectTwoTone.js +++ b/packages/material-ui-icons/lib/AutofpsSelectTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" -}, "1")], 'AutofpsSelectTwoTone'); \ No newline at end of file +}, "1")], 'AutofpsSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Autorenew.js b/packages/material-ui-icons/lib/Autorenew.js index dbf376afbbb9e4..73631f88fed76f 100644 --- a/packages/material-ui-icons/lib/Autorenew.js +++ b/packages/material-ui-icons/lib/Autorenew.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" -}), 'Autorenew'); \ No newline at end of file +}), 'Autorenew'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutorenewOutlined.js b/packages/material-ui-icons/lib/AutorenewOutlined.js index 39087d6e135b1b..672125fe8c7146 100644 --- a/packages/material-ui-icons/lib/AutorenewOutlined.js +++ b/packages/material-ui-icons/lib/AutorenewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" -}), 'AutorenewOutlined'); \ No newline at end of file +}), 'AutorenewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutorenewRounded.js b/packages/material-ui-icons/lib/AutorenewRounded.js index 501c230186a519..c92ada6abed259 100644 --- a/packages/material-ui-icons/lib/AutorenewRounded.js +++ b/packages/material-ui-icons/lib/AutorenewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V4c-4.42 0-8 3.58-8 8 0 1.04.2 2.04.57 2.95.27.67 1.13.85 1.64.34.27-.27.38-.68.23-1.04C6.15 13.56 6 12.79 6 12c0-3.31 2.69-6 6-6zm5.79 2.71c-.27.27-.38.69-.23 1.04.28.7.44 1.46.44 2.25 0 3.31-2.69 6-6 6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.35V20c4.42 0 8-3.58 8-8 0-1.04-.2-2.04-.57-2.95-.27-.67-1.13-.85-1.64-.34z" -}), 'AutorenewRounded'); \ No newline at end of file +}), 'AutorenewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutorenewSharp.js b/packages/material-ui-icons/lib/AutorenewSharp.js index cb17bef0c3088f..89f74809522f4f 100644 --- a/packages/material-ui-icons/lib/AutorenewSharp.js +++ b/packages/material-ui-icons/lib/AutorenewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" -}), 'AutorenewSharp'); \ No newline at end of file +}), 'AutorenewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AutorenewTwoTone.js b/packages/material-ui-icons/lib/AutorenewTwoTone.js index b4d07d8ee28bef..89dc6d22f96ae0 100644 --- a/packages/material-ui-icons/lib/AutorenewTwoTone.js +++ b/packages/material-ui-icons/lib/AutorenewTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" -}), 'AutorenewTwoTone'); \ No newline at end of file +}), 'AutorenewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AvTimer.js b/packages/material-ui-icons/lib/AvTimer.js index 41c0d408c4bed8..bc01af9c89be3f 100644 --- a/packages/material-ui-icons/lib/AvTimer.js +++ b/packages/material-ui-icons/lib/AvTimer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" -}), 'AvTimer'); \ No newline at end of file +}), 'AvTimer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AvTimerOutlined.js b/packages/material-ui-icons/lib/AvTimerOutlined.js index b718779cf923a1..fec3279e937a04 100644 --- a/packages/material-ui-icons/lib/AvTimerOutlined.js +++ b/packages/material-ui-icons/lib/AvTimerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" -}), 'AvTimerOutlined'); \ No newline at end of file +}), 'AvTimerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AvTimerRounded.js b/packages/material-ui-icons/lib/AvTimerRounded.js index 6a45f5e891d596..7efdf3f55cc387 100644 --- a/packages/material-ui-icons/lib/AvTimerRounded.js +++ b/packages/material-ui-icons/lib/AvTimerRounded.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "12", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "12", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-.92c3.31.48 5.87 3.25 6 6.66.14 3.85-3.03 7.2-6.88 7.26C8.19 19.06 5 15.91 5 12c0-1.68.59-3.22 1.58-4.42l4.71 4.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L7.26 5.46c-.38-.38-1-.39-1.4-.02C4.1 7.07 3 9.4 3 12c0 5.04 4.14 9.12 9.21 9 4.7-.11 8.63-4.01 8.78-8.71C21.16 7.19 17.07 3 12 3z" -}, "3")], 'AvTimerRounded'); \ No newline at end of file +}, "3")], 'AvTimerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AvTimerSharp.js b/packages/material-ui-icons/lib/AvTimerSharp.js index d4d3b815ff85cf..9eaefb76f6c6f2 100644 --- a/packages/material-ui-icons/lib/AvTimerSharp.js +++ b/packages/material-ui-icons/lib/AvTimerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" -}), 'AvTimerSharp'); \ No newline at end of file +}), 'AvTimerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/AvTimerTwoTone.js b/packages/material-ui-icons/lib/AvTimerTwoTone.js index 09ee807d91668b..644326c205a41f 100644 --- a/packages/material-ui-icons/lib/AvTimerTwoTone.js +++ b/packages/material-ui-icons/lib/AvTimerTwoTone.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9h-1v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "12", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "12", r: "1" -}, "3")], 'AvTimerTwoTone'); \ No newline at end of file +}, "3")], 'AvTimerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BabyChangingStation.js b/packages/material-ui-icons/lib/BabyChangingStation.js index c909d1e9ee7232..cc63d614d39e0e 100644 --- a/packages/material-ui-icons/lib/BabyChangingStation.js +++ b/packages/material-ui-icons/lib/BabyChangingStation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63c.38-1.12 1.64-1.68 2.72-1.19l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1H9v2h2v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-3h-2v2h-2v-1z" -}), 'BabyChangingStation'); \ No newline at end of file +}), 'BabyChangingStation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BabyChangingStationOutlined.js b/packages/material-ui-icons/lib/BabyChangingStationOutlined.js index a618207652da05..7c8299a8fc7857 100644 --- a/packages/material-ui-icons/lib/BabyChangingStationOutlined.js +++ b/packages/material-ui-icons/lib/BabyChangingStationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63c.38-1.12 1.64-1.68 2.72-1.19l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1H9v2h2v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-3h-2v2h-2v-1z" -}), 'BabyChangingStationOutlined'); \ No newline at end of file +}), 'BabyChangingStationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BabyChangingStationRounded.js b/packages/material-ui-icons/lib/BabyChangingStationRounded.js index 31f9a8b94835cd..0167cb1284440c 100644 --- a/packages/material-ui-icons/lib/BabyChangingStationRounded.js +++ b/packages/material-ui-icons/lib/BabyChangingStationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9c0 .55-.45 1-1 1h-1.58c-.28 0-.55-.06-.8-.17l-2.3-1.01L7 12.75V21c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-8.67c0-.22.04-.44.11-.65l1.48-4.32c.37-1.11 1.63-1.67 2.71-1.18l4.15 1.83L13 8c.55 0 1 .45 1 1zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm2 18h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zm9.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v1h-2v-1z" -}), 'BabyChangingStationRounded'); \ No newline at end of file +}), 'BabyChangingStationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BabyChangingStationSharp.js b/packages/material-ui-icons/lib/BabyChangingStationSharp.js index 38c26661a11019..ae7c9dcf932226 100644 --- a/packages/material-ui-icons/lib/BabyChangingStationSharp.js +++ b/packages/material-ui-icons/lib/BabyChangingStationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63C4.86 6.53 5.63 6.01 6.46 6c.28 0 .56.05.84.18l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 13v-2H9v2h2v3h6v-5h-2v2h-2z" -}), 'BabyChangingStationSharp'); \ No newline at end of file +}), 'BabyChangingStationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BabyChangingStationTwoTone.js b/packages/material-ui-icons/lib/BabyChangingStationTwoTone.js index 92acc460f5067d..3abe0835665ebc 100644 --- a/packages/material-ui-icons/lib/BabyChangingStationTwoTone.js +++ b/packages/material-ui-icons/lib/BabyChangingStationTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63c.38-1.12 1.64-1.68 2.72-1.19l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1H9v2h2v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-3h-2v2h-2v-1z" -}), 'BabyChangingStationTwoTone'); \ No newline at end of file +}), 'BabyChangingStationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Backpack.js b/packages/material-ui-icons/lib/Backpack.js index 97ddd99212dd35..0f7f6e9c6c3354 100644 --- a/packages/material-ui-icons/lib/Backpack.js +++ b/packages/material-ui-icons/lib/Backpack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V8c0-1.86 1.28-3.41 3-3.86V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86zM6 12v2h10v2h2v-4H6z" -}), 'Backpack'); \ No newline at end of file +}), 'Backpack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackpackOutlined.js b/packages/material-ui-icons/lib/BackpackOutlined.js index f8b4a5fdab1991..aa0e52c7f38041 100644 --- a/packages/material-ui-icons/lib/BackpackOutlined.js +++ b/packages/material-ui-icons/lib/BackpackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4.14V2h-3v2h-4V2H7v2.14c-1.72.45-3 2-3 3.86v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.86-1.28-3.41-3-3.86zM18 20H6V8c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v12zm-1.5-8v4h-2v-2h-7v-2h9z" -}), 'BackpackOutlined'); \ No newline at end of file +}), 'BackpackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackpackRounded.js b/packages/material-ui-icons/lib/BackpackRounded.js index c3f38a3dbe1d06..4b1b43ebf34718 100644 --- a/packages/material-ui-icons/lib/BackpackRounded.js +++ b/packages/material-ui-icons/lib/BackpackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V8c0-1.86 1.28-3.41 3-3.86V3.5C7 2.67 7.67 2 8.5 2s1.5.67 1.5 1.5V4h4v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.64c1.72.45 3 2 3 3.86zM6 13c0 .55.45 1 1 1h9v1c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1z" -}), 'BackpackRounded'); \ No newline at end of file +}), 'BackpackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackpackSharp.js b/packages/material-ui-icons/lib/BackpackSharp.js index 9d16d725ec9913..1ab2c6846a4331 100644 --- a/packages/material-ui-icons/lib/BackpackSharp.js +++ b/packages/material-ui-icons/lib/BackpackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8v14H4V8c0-1.86 1.28-3.41 3-3.86V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86zM6 12v2h10v2h2v-4H6z" -}), 'BackpackSharp'); \ No newline at end of file +}), 'BackpackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackpackTwoTone.js b/packages/material-ui-icons/lib/BackpackTwoTone.js index 0f99527ce0bbcd..97804db37d49a6 100644 --- a/packages/material-ui-icons/lib/BackpackTwoTone.js +++ b/packages/material-ui-icons/lib/BackpackTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20H6V8c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v12zM7.5 12v2h7v2h2v-4h-9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4.14V2h-3v2h-4V2H7v2.14c-1.72.45-3 2-3 3.86v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.86-1.28-3.41-3-3.86zM18 20H6V8c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v12zM7.5 12v2h7v2h2v-4h-9z" -}, "1")], 'BackpackTwoTone'); \ No newline at end of file +}, "1")], 'BackpackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Backspace.js b/packages/material-ui-icons/lib/Backspace.js index 3d0466ca61d1a7..9885b3c27aebac 100644 --- a/packages/material-ui-icons/lib/Backspace.js +++ b/packages/material-ui-icons/lib/Backspace.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z" -}), 'Backspace'); \ No newline at end of file +}), 'Backspace'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackspaceOutlined.js b/packages/material-ui-icons/lib/BackspaceOutlined.js index 2fd6190fd1960d..7bf7732991dc10 100644 --- a/packages/material-ui-icons/lib/BackspaceOutlined.js +++ b/packages/material-ui-icons/lib/BackspaceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z" -}), 'BackspaceOutlined'); \ No newline at end of file +}), 'BackspaceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackspaceRounded.js b/packages/material-ui-icons/lib/BackspaceRounded.js index af1ca512388bbd..f8007b062f44d7 100644 --- a/packages/material-ui-icons/lib/BackspaceRounded.js +++ b/packages/material-ui-icons/lib/BackspaceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L.37 11.45c-.22.34-.22.77 0 1.11l5.04 7.56c.36.52.9.88 1.59.88h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3.7 13.3c-.39.39-1.02.39-1.41 0L14 13.41l-2.89 2.89c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L12.59 12 9.7 9.11a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L14 10.59l2.89-2.89c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L15.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z" -}), 'BackspaceRounded'); \ No newline at end of file +}), 'BackspaceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackspaceSharp.js b/packages/material-ui-icons/lib/BackspaceSharp.js index 8b6a9f159351b9..612f70b2b8468d 100644 --- a/packages/material-ui-icons/lib/BackspaceSharp.js +++ b/packages/material-ui-icons/lib/BackspaceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 3H6l-6 9 6 9h18V3zm-5 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z" -}), 'BackspaceSharp'); \ No newline at end of file +}), 'BackspaceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackspaceTwoTone.js b/packages/material-ui-icons/lib/BackspaceTwoTone.js index 9d5ffebfe5c1fe..832e32c8472b7e 100644 --- a/packages/material-ui-icons/lib/BackspaceTwoTone.js +++ b/packages/material-ui-icons/lib/BackspaceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.06 5 2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59 17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z" -}, "1")], 'BackspaceTwoTone'); \ No newline at end of file +}, "1")], 'BackspaceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Backup.js b/packages/material-ui-icons/lib/Backup.js index f06decdb11d992..6b9cdc709e7b87 100644 --- a/packages/material-ui-icons/lib/Backup.js +++ b/packages/material-ui-icons/lib/Backup.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" -}), 'Backup'); \ No newline at end of file +}), 'Backup'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupOutlined.js b/packages/material-ui-icons/lib/BackupOutlined.js index 9991b7e58b1485..e6e89e6f0eac6f 100644 --- a/packages/material-ui-icons/lib/BackupOutlined.js +++ b/packages/material-ui-icons/lib/BackupOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" -}), 'BackupOutlined'); \ No newline at end of file +}), 'BackupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupRounded.js b/packages/material-ui-icons/lib/BackupRounded.js index 42680dfa3f77a6..f479e8043e2b35 100644 --- a/packages/material-ui-icons/lib/BackupRounded.js +++ b/packages/material-ui-icons/lib/BackupRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11c0-3.87-3.13-7-7-7-3.22 0-5.93 2.18-6.74 5.15C2.82 9.71 1 11.89 1 14.5 1 17.54 3.46 20 6.5 20h12c2.49-.01 4.5-2.03 4.5-4.52 0-2.33-1.75-4.22-4-4.48zm-6 2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9.21c-.45 0-.67-.54-.35-.85l2.79-2.79c.2-.2.51-.2.71 0l2.79 2.79c.31.31.09.85-.35.85H13z" -}), 'BackupRounded'); \ No newline at end of file +}), 'BackupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupSharp.js b/packages/material-ui-icons/lib/BackupSharp.js index 674f7c32ecbdf0..20ac29a889d2cb 100644 --- a/packages/material-ui-icons/lib/BackupSharp.js +++ b/packages/material-ui-icons/lib/BackupSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" -}), 'BackupSharp'); \ No newline at end of file +}), 'BackupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupTable.js b/packages/material-ui-icons/lib/BackupTable.js index d8596e7dd6781f..9ce2fd64691658 100644 --- a/packages/material-ui-icons/lib/BackupTable.js +++ b/packages/material-ui-icons/lib/BackupTable.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6v14H6v2h14c1.1 0 2-.9 2-2V6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z" -}, "1")], 'BackupTable'); \ No newline at end of file +}, "1")], 'BackupTable'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupTableOutlined.js b/packages/material-ui-icons/lib/BackupTableOutlined.js index 3a6ca7b3d4761e..8ef8121ca5e74f 100644 --- a/packages/material-ui-icons/lib/BackupTableOutlined.js +++ b/packages/material-ui-icons/lib/BackupTableOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6v14H6v2h14c1.1 0 2-.9 2-2V6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z" -}, "1")], 'BackupTableOutlined'); \ No newline at end of file +}, "1")], 'BackupTableOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupTableRounded.js b/packages/material-ui-icons/lib/BackupTableRounded.js index 51afa6126cbd36..069de801a1458e 100644 --- a/packages/material-ui-icons/lib/BackupTableRounded.js +++ b/packages/material-ui-icons/lib/BackupTableRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7v13h13c.55 0 1 .45 1 1s-.45 1-1 1H4c-1.1 0-2-.9-2-2V7c0-.55.45-1 1-1s1 .45 1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm9 7h5v5h-5v-5zm-7 0h5v5H8v-5zm0-7h12v5H8V4z" -}, "1")], 'BackupTableRounded'); \ No newline at end of file +}, "1")], 'BackupTableRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupTableSharp.js b/packages/material-ui-icons/lib/BackupTableSharp.js index c70f89294da342..c6de40afeeaa5d 100644 --- a/packages/material-ui-icons/lib/BackupTableSharp.js +++ b/packages/material-ui-icons/lib/BackupTableSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6v14H6v2h16V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H2v16h16V2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z" -}, "1")], 'BackupTableSharp'); \ No newline at end of file +}, "1")], 'BackupTableSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupTableTwoTone.js b/packages/material-ui-icons/lib/BackupTableTwoTone.js index 7ec68a3664dcaf..76e4d6234d3cd7 100644 --- a/packages/material-ui-icons/lib/BackupTableTwoTone.js +++ b/packages/material-ui-icons/lib/BackupTableTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h5v5h-5zm-7 0h5v5H4zm0-7h12v5H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6v14H6v2h14c1.1 0 2-.9 2-2V6h-2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM4 4h12v5H4V4zm5 12H4v-5h5v5zm2-5h5v5h-5v-5z" -}, "2")], 'BackupTableTwoTone'); \ No newline at end of file +}, "2")], 'BackupTableTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BackupTwoTone.js b/packages/material-ui-icons/lib/BackupTwoTone.js index a62b29ab2f6f5b..1886451c700dd0 100644 --- a/packages/material-ui-icons/lib/BackupTwoTone.js +++ b/packages/material-ui-icons/lib/BackupTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" -}, "1")], 'BackupTwoTone'); \ No newline at end of file +}, "1")], 'BackupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Badge.js b/packages/material-ui-icons/lib/Badge.js index 82d0d8355eaafb..d8ff5db8bca0f4 100644 --- a/packages/material-ui-icons/lib/Badge.js +++ b/packages/material-ui-icons/lib/Badge.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.75c0-1 2-1.5 3-1.5s3 .5 3 1.5V18zm1-9h-2V4h2v5zm5 7.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z" -}), 'Badge'); \ No newline at end of file +}), 'Badge'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BadgeOutlined.js b/packages/material-ui-icons/lib/BadgeOutlined.js index 4cd5408261696b..d454300f6c2bf5 100644 --- a/packages/material-ui-icons/lib/BadgeOutlined.js +++ b/packages/material-ui-icons/lib/BadgeOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12h4v1.5h-4zm0 3h4v1.5h-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-9 0V4h2v5h-2V7zm9 13H4V9h5c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2h5v11z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.08 16.18c-.64-.28-1.34-.43-2.08-.43s-1.44.15-2.08.43c-.56.24-.92.78-.92 1.39V18h6v-.43c0-.61-.36-1.15-.92-1.39z" -}, "3")], 'BadgeOutlined'); \ No newline at end of file +}, "3")], 'BadgeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BadgeRounded.js b/packages/material-ui-icons/lib/BadgeRounded.js index 0ae3c6ae7ade3e..b7de1def5761b5 100644 --- a/packages/material-ui-icons/lib/BadgeRounded.js +++ b/packages/material-ui-icons/lib/BadgeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm1-9h-2V4h2v5zm4.25 7.5h-2.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.5c.41 0 .75.34.75.75s-.34.75-.75.75zm0-3h-2.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.5c.41 0 .75.34.75.75s-.34.75-.75.75z" -}), 'BadgeRounded'); \ No newline at end of file +}), 'BadgeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BadgeSharp.js b/packages/material-ui-icons/lib/BadgeSharp.js index 3519f0d095ace9..d640aabe882712 100644 --- a/packages/material-ui-icons/lib/BadgeSharp.js +++ b/packages/material-ui-icons/lib/BadgeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7h-7V2H9v5H2v15h20V7zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm1-9h-2V4h2v5zm5 7.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z" -}), 'BadgeSharp'); \ No newline at end of file +}), 'BadgeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BadgeTwoTone.js b/packages/material-ui-icons/lib/BadgeTwoTone.js index b27a810ba3b8ea..3d7f7b4fa94733 100644 --- a/packages/material-ui-icons/lib/BadgeTwoTone.js +++ b/packages/material-ui-icons/lib/BadgeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 13.5h4V12h-4v1.5zm0 3h4V15h-4v1.5zM20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-9-3h2v5h-2V4zm9 16H4V9h5c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2h5v11zM9 15c.83 0 1.5-.67 1.5-1.5S9.83 12 9 12s-1.5.67-1.5 1.5S8.17 15 9 15zm2.08 1.18c-.64-.28-1.34-.43-2.08-.43s-1.44.15-2.08.43c-.56.24-.92.78-.92 1.39V18h6v-.43c0-.61-.36-1.15-.92-1.39z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11h-2c-1.1 0-2-.9-2-2H4v11h16V9h-5c0 1.1-.9 2-2 2zm-4 1c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm6-1.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z", opacity: ".3" -}, "1")], 'BadgeTwoTone'); \ No newline at end of file +}, "1")], 'BadgeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BakeryDining.js b/packages/material-ui-icons/lib/BakeryDining.js index 3b7beb606031f7..79937a35c51889 100644 --- a/packages/material-ui-icons/lib/BakeryDining.js +++ b/packages/material-ui-icons/lib/BakeryDining.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M19.28 16.34c-1.21-.89-1.82-1.34-1.82-1.34s.32-.59.96-1.78c.38-.59 1.22-.59 1.6 0l.81 1.26c.19.3.21.68.06 1l-.22.47c-.25.54-.91.72-1.39.39zm-14.56 0c-.48.33-1.13.15-1.39-.38l-.23-.47c-.15-.32-.13-.7.06-1l.81-1.26c.38-.59 1.22-.59 1.6 0 .65 1.18.97 1.77.97 1.77s-.61.45-1.82 1.34zm10.64-6.97c.09-.68.73-1.06 1.27-.75l1.59.9c.46.26.63.91.36 1.41L16.5 15h-1.8l.66-5.63zm-6.73 0L9.3 15H7.5l-2.09-4.08c-.27-.5-.1-1.15.36-1.41l1.59-.9c.53-.3 1.18.08 1.27.76zM13.8 15h-3.6l-.74-6.88c-.07-.59.35-1.12.88-1.12h3.3c.53 0 .94.53.88 1.12L13.8 15z" -}), 'BakeryDining'); \ No newline at end of file +}), 'BakeryDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BakeryDiningOutlined.js b/packages/material-ui-icons/lib/BakeryDiningOutlined.js index 6e7641675eaa89..28ed47e736d78e 100644 --- a/packages/material-ui-icons/lib/BakeryDiningOutlined.js +++ b/packages/material-ui-icons/lib/BakeryDiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 10.94c.13-.32.1-.23.15-.39.3-1.21-.34-2.47-1.5-2.93l-2.01-.8c-.46-.18-.95-.21-1.41-.12-.11-.33-.29-.63-.52-.89-.48-.52-1.15-.81-1.85-.81h-2.71c-.71 0-1.38.29-1.85.81-.24.26-.42.56-.53.88-.46-.09-.95-.06-1.41.12l-2.01.8c-1.16.46-1.8 1.72-1.5 2.93l.15.38C1.1 15.55 1 15.55 1 16.38c0 .91.46 1.74 1.24 2.22 1.42.88 2.49.14 4-.61h11.53c1.52.76 1.86 1.01 2.63 1.01 1 0 2.61-.77 2.61-2.61-.01-.85-.13-.88-2.51-5.45zm-.38 5.99-1.68-.84 1.08-2.7 1.41 2.71c.28.53-.29 1.09-.81.83zm-5.03-.94.62-6.9c.03-.33.37-.54.68-.42l2.01.8c.22.09.34.31.31.54l-2.4 5.98h-1.22zm-7.41 0-2.4-5.98c-.03-.23.09-.45.31-.54l2.01-.8c.31-.12.65.08.68.42l.62 6.9H7.68zm-4.61.11 1.41-2.72 1.08 2.71-1.68.84c-.52.26-1.09-.3-.81-.83zm7.08-8.56c-.03-.31.23-.54.5-.54h2.71c.27 0 .53.23.5.54l-.77 8.45h-2.17l-.77-8.45z" -}), 'BakeryDiningOutlined'); \ No newline at end of file +}), 'BakeryDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BakeryDiningRounded.js b/packages/material-ui-icons/lib/BakeryDiningRounded.js index 356c4e0f1e2cf7..9700ab7b807a31 100644 --- a/packages/material-ui-icons/lib/BakeryDiningRounded.js +++ b/packages/material-ui-icons/lib/BakeryDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.77 8.55-1.17-.47c-.62-.25-1.31.17-1.37.84L15.49 17H17l2.6-6.5c.31-.77-.06-1.65-.83-1.95zM6.4 8.08l-1.17.47c-.77.3-1.14 1.18-.83 1.95L7 17h1.5l-.74-8.08c-.06-.67-.74-1.09-1.36-.84zM13.36 6h-2.71c-.89 0-1.58.76-1.5 1.64l.85 9.35h4l.85-9.36c.08-.87-.61-1.63-1.49-1.63zM3.18 13.72l-1 1.93c-.19.36-.23.78-.12 1.19.29 1.01 1.43 1.41 2.38.94l1.05-.52-1.4-3.49c-.16-.4-.71-.43-.91-.05zm18.64 1.93-1-1.93c-.2-.38-.75-.35-.91.04l-1.4 3.49 1.05.52c.94.47 2.09.07 2.38-.94.11-.4.07-.82-.12-1.18z" -}), 'BakeryDiningRounded'); \ No newline at end of file +}), 'BakeryDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BakeryDiningSharp.js b/packages/material-ui-icons/lib/BakeryDiningSharp.js index 01d0225b4a0977..a3e34c18c85d2a 100644 --- a/packages/material-ui-icons/lib/BakeryDiningSharp.js +++ b/packages/material-ui-icons/lib/BakeryDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.36 7.58-.86 9.41H17l3.16-7.89zM3.84 9.1 7 16.99h1.5l-.86-9.41zM10 16.99h4L15 6H9zm10.32-4.24-1.81 4.5 1.95.96 2.06-1.22zM1.48 16.99l2.06 1.22 1.95-.96-1.81-4.5z" -}), 'BakeryDiningSharp'); \ No newline at end of file +}), 'BakeryDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BakeryDiningTwoTone.js b/packages/material-ui-icons/lib/BakeryDiningTwoTone.js index f10bad8d8d5dd1..93201ac41a22da 100644 --- a/packages/material-ui-icons/lib/BakeryDiningTwoTone.js +++ b/packages/material-ui-icons/lib/BakeryDiningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.6 8.67-2.01.8c-.22.09-.34.31-.31.54l2.4 5.98h1.23l-.62-6.9c-.04-.34-.38-.55-.69-.42zM3.07 16.1c-.27.53.29 1.09.82.83l1.68-.84-1.08-2.71-1.42 2.72zm10.29-9.11h-2.71c-.27 0-.53.23-.5.54l.77 8.45h2.17l.77-8.45c.02-.31-.23-.54-.5-.54zm5.05 2.48-2.01-.8c-.31-.12-.65.09-.68.42l-.62 6.9h1.23l2.4-5.98c.02-.23-.1-.45-.32-.54zm1.11 3.92-1.08 2.7 1.68.84c.52.26 1.09-.3.82-.83l-1.42-2.71z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 10.94c.13-.32.1-.23.15-.39.3-1.21-.34-2.47-1.5-2.93l-2.01-.8c-.46-.18-.95-.21-1.41-.12-.11-.33-.29-.63-.52-.89-.48-.52-1.15-.81-1.85-.81h-2.71c-.71 0-1.38.29-1.85.81-.24.26-.42.56-.53.88-.46-.09-.95-.06-1.41.12l-2.01.8c-1.16.46-1.8 1.72-1.5 2.93l.15.38C1.1 15.55 1 15.55 1 16.38c0 .91.46 1.74 1.24 2.22 1.42.88 2.49.14 4-.61h11.53c1.52.76 1.86 1.01 2.63 1.01 1 0 2.61-.77 2.61-2.61-.01-.85-.13-.88-2.51-5.45zM3.88 16.93c-.53.26-1.09-.3-.82-.83l1.41-2.72 1.08 2.71-1.67.84zm3.8-.94-2.4-5.98c-.03-.23.09-.45.31-.54l2.01-.8c.31-.12.65.08.68.42l.62 6.9H7.68zm5.41 0h-2.17l-.77-8.45c-.03-.31.23-.54.5-.54h2.71c.27 0 .53.23.5.54l-.77 8.45zm3.23 0h-1.23l.62-6.9c.03-.33.37-.54.68-.42l2.01.8c.22.09.34.31.31.54l-2.39 5.98zm3.8.94-1.68-.84 1.08-2.7 1.41 2.71c.28.53-.29 1.09-.81.83z" -}, "1")], 'BakeryDiningTwoTone'); \ No newline at end of file +}, "1")], 'BakeryDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Balcony.js b/packages/material-ui-icons/lib/Balcony.js index 15cf3bf1877ee9..a7f053b678fef9 100644 --- a/packages/material-ui-icons/lib/Balcony.js +++ b/packages/material-ui-icons/lib/Balcony.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" -}), 'Balcony'); \ No newline at end of file +}), 'Balcony'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BalconyOutlined.js b/packages/material-ui-icons/lib/BalconyOutlined.js index 0b2649f055e91a..64a2d6dcad3437 100644 --- a/packages/material-ui-icons/lib/BalconyOutlined.js +++ b/packages/material-ui-icons/lib/BalconyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" -}), 'BalconyOutlined'); \ No newline at end of file +}), 'BalconyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BalconyRounded.js b/packages/material-ui-icons/lib/BalconyRounded.js index b1d2f25ce2005a..ab2fa985e20ead 100644 --- a/packages/material-ui-icons/lib/BalconyRounded.js +++ b/packages/material-ui-icons/lib/BalconyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 14.27V10c0-4.42-3.58-8-8-8s-8 3.58-8 8v4.27c-.6.34-1 .99-1 1.73v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-.74-.4-1.39-1-1.73zM7 20H5v-4h2v4zm4 0H9v-4h2v4zm0-6H6v-4c0-2.97 2.16-5.44 5-5.92V14zm2-9.92c2.84.48 5 2.94 5 5.92v4h-5V4.08zM15 20h-2v-4h2v4zm4 0h-2v-4h2v4zM8 11c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm8 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}), 'BalconyRounded'); \ No newline at end of file +}), 'BalconyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BalconySharp.js b/packages/material-ui-icons/lib/BalconySharp.js index b9e588230221c6..5d7139c24c5b97 100644 --- a/packages/material-ui-icons/lib/BalconySharp.js +++ b/packages/material-ui-icons/lib/BalconySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" -}), 'BalconySharp'); \ No newline at end of file +}), 'BalconySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BalconyTwoTone.js b/packages/material-ui-icons/lib/BalconyTwoTone.js index 6a6419449d3145..c92a297a0e9c81 100644 --- a/packages/material-ui-icons/lib/BalconyTwoTone.js +++ b/packages/material-ui-icons/lib/BalconyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16H5v4h2v-4zm4 0H9v4h2v-4zm-5-6v4h5V4.08C8.16 4.56 6 7.03 6 10zm4 2H8v-2h2v2zm3-7.92V14h5v-4c0-2.97-2.16-5.44-5-5.92zM16 12h-2v-2h2v2zm-1 4h-2v4h2v-4zm4 0h-2v4h2v-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" -}, "1")], 'BalconyTwoTone'); \ No newline at end of file +}, "1")], 'BalconyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Ballot.js b/packages/material-ui-icons/lib/Ballot.js index 69dc3bfed2bd5f..8dba532c8e23e4 100644 --- a/packages/material-ui-icons/lib/Ballot.js +++ b/packages/material-ui-icons/lib/Ballot.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M13 9.5h5v-2h-5v2zm0 7h5v-2h-5v2zm6 4.5H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2zM6 11h5V6H6v5zm1-4h3v3H7V7zM6 18h5v-5H6v5zm1-4h3v3H7v-3z" -}), 'Ballot'); \ No newline at end of file +}), 'Ballot'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BallotOutlined.js b/packages/material-ui-icons/lib/BallotOutlined.js index 0b8c03332faa94..639d3b11a8b43d 100644 --- a/packages/material-ui-icons/lib/BallotOutlined.js +++ b/packages/material-ui-icons/lib/BallotOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z" -}), 'BallotOutlined'); \ No newline at end of file +}), 'BallotOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BallotRounded.js b/packages/material-ui-icons/lib/BallotRounded.js index 8f15037721710b..6dea88cb8ab393 100644 --- a/packages/material-ui-icons/lib/BallotRounded.js +++ b/packages/material-ui-icons/lib/BallotRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9.5h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm0 7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm5 4.5H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2zM7 11h3c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm0-4h3v3H7V7zm0 11h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm0-4h3v3H7v-3z" -}), 'BallotRounded'); \ No newline at end of file +}), 'BallotRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BallotSharp.js b/packages/material-ui-icons/lib/BallotSharp.js index 9b07877d6e12af..b0b5f69266d18c 100644 --- a/packages/material-ui-icons/lib/BallotSharp.js +++ b/packages/material-ui-icons/lib/BallotSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9.5h5v-2h-5v2zm0 7h5v-2h-5v2zm8 4.5H3V3h18v18zM6 11h5V6H6v5zm1-4h3v3H7V7zM6 18h5v-5H6v5zm1-4h3v3H7v-3z" -}), 'BallotSharp'); \ No newline at end of file +}), 'BallotSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BallotTwoTone.js b/packages/material-ui-icons/lib/BallotTwoTone.js index 8b5a8fee262d69..8e397ff805e849 100644 --- a/packages/material-ui-icons/lib/BallotTwoTone.js +++ b/packages/material-ui-icons/lib/BallotTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14h3v3H7zm0-7h3v3H7zM5 19h14V5H5v14zm8-11.5h5v2h-5v-2zm0 7h5v2h-5v-2zM6 6h5v5H6V6zm0 7h5v5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z" -}, "1")], 'BallotTwoTone'); \ No newline at end of file +}, "1")], 'BallotTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BarChart.js b/packages/material-ui-icons/lib/BarChart.js index 721cbf9848bd65..34f2cbea0d2d90 100644 --- a/packages/material-ui-icons/lib/BarChart.js +++ b/packages/material-ui-icons/lib/BarChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9.2h3V19H5zM10.6 5h2.8v14h-2.8zm5.6 8H19v6h-2.8z" -}), 'BarChart'); \ No newline at end of file +}), 'BarChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BarChartOutlined.js b/packages/material-ui-icons/lib/BarChartOutlined.js index 6f7a0a06b3641e..257d30a3478478 100644 --- a/packages/material-ui-icons/lib/BarChartOutlined.js +++ b/packages/material-ui-icons/lib/BarChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z" -}), 'BarChartOutlined'); \ No newline at end of file +}), 'BarChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BarChartRounded.js b/packages/material-ui-icons/lib/BarChartRounded.js index 6dbf8d140ca422..9ce9342a8993b8 100644 --- a/packages/material-ui-icons/lib/BarChartRounded.js +++ b/packages/material-ui-icons/lib/BarChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.4 9.2h.2c.77 0 1.4.63 1.4 1.4v7c0 .77-.63 1.4-1.4 1.4h-.2c-.77 0-1.4-.63-1.4-1.4v-7c0-.77.63-1.4 1.4-1.4zM12 5c.77 0 1.4.63 1.4 1.4v11.2c0 .77-.63 1.4-1.4 1.4-.77 0-1.4-.63-1.4-1.4V6.4c0-.77.63-1.4 1.4-1.4zm5.6 8c.77 0 1.4.63 1.4 1.4v3.2c0 .77-.63 1.4-1.4 1.4-.77 0-1.4-.63-1.4-1.4v-3.2c0-.77.63-1.4 1.4-1.4z" -}), 'BarChartRounded'); \ No newline at end of file +}), 'BarChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BarChartSharp.js b/packages/material-ui-icons/lib/BarChartSharp.js index e13d8c83a0a2cc..f4657f0668156a 100644 --- a/packages/material-ui-icons/lib/BarChartSharp.js +++ b/packages/material-ui-icons/lib/BarChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z" -}), 'BarChartSharp'); \ No newline at end of file +}), 'BarChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BarChartTwoTone.js b/packages/material-ui-icons/lib/BarChartTwoTone.js index 761055045704e2..636691d3ba792a 100644 --- a/packages/material-ui-icons/lib/BarChartTwoTone.js +++ b/packages/material-ui-icons/lib/BarChartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9.2h3V19H5zM16.2 13H19v6h-2.8zm-5.6-8h2.8v14h-2.8z" -}), 'BarChartTwoTone'); \ No newline at end of file +}), 'BarChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatchPrediction.js b/packages/material-ui-icons/lib/BatchPrediction.js index 82454a6569bb67..74355054967e12 100644 --- a/packages/material-ui-icons/lib/BatchPrediction.js +++ b/packages/material-ui-icons/lib/BatchPrediction.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" -}), 'BatchPrediction'); \ No newline at end of file +}), 'BatchPrediction'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatchPredictionOutlined.js b/packages/material-ui-icons/lib/BatchPredictionOutlined.js index 5acec8e35695f5..1233fcd4a0eb25 100644 --- a/packages/material-ui-icons/lib/BatchPredictionOutlined.js +++ b/packages/material-ui-icons/lib/BatchPredictionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" -}), 'BatchPredictionOutlined'); \ No newline at end of file +}), 'BatchPredictionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatchPredictionRounded.js b/packages/material-ui-icons/lib/BatchPredictionRounded.js index 10371d52835286..8139b2adfb8990 100644 --- a/packages/material-ui-icons/lib/BatchPredictionRounded.js +++ b/packages/material-ui-icons/lib/BatchPredictionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-5 12.5c-.55 0-1-.45-1-1V19h2v.5c0 .55-.45 1-1 1zm1-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" -}), 'BatchPredictionRounded'); \ No newline at end of file +}), 'BatchPredictionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatchPredictionSharp.js b/packages/material-ui-icons/lib/BatchPredictionSharp.js index c91881935b4015..b1499e2f950697 100644 --- a/packages/material-ui-icons/lib/BatchPredictionSharp.js +++ b/packages/material-ui-icons/lib/BatchPredictionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8H5v14h14V8zm-6 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6V5h12v1.5zm-1-3H7V2h10v1.5z" -}), 'BatchPredictionSharp'); \ No newline at end of file +}), 'BatchPredictionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatchPredictionTwoTone.js b/packages/material-ui-icons/lib/BatchPredictionTwoTone.js index dcb62198bb7cbf..400d0f8bdb026f 100644 --- a/packages/material-ui-icons/lib/BatchPredictionTwoTone.js +++ b/packages/material-ui-icons/lib/BatchPredictionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 20.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" -}, "1")], 'BatchPredictionTwoTone'); \ No newline at end of file +}, "1")], 'BatchPredictionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bathroom.js b/packages/material-ui-icons/lib/Bathroom.js index c47ba9fea14ca4..e8a9aea74e7419 100644 --- a/packages/material-ui-icons/lib/Bathroom.js +++ b/packages/material-ui-icons/lib/Bathroom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-3H7v-1c0-2.76 2.24-5 5-5s5 2.24 5 5v1z" -}), 'Bathroom'); \ No newline at end of file +}), 'Bathroom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathroomOutlined.js b/packages/material-ui-icons/lib/BathroomOutlined.js index 0ca9edc82a6d8c..371a356b858cdc 100644 --- a/packages/material-ui-icons/lib/BathroomOutlined.js +++ b/packages/material-ui-icons/lib/BathroomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 14c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm4 1c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3-7.5c-1.76 0-3.22 1.31-3.46 3h6.93c-.25-1.69-1.71-3-3.47-3M12 6c2.76 0 5 2.24 5 5v1H7v-1c0-2.76 2.24-5 5-5zM9 18c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm5-14H4v16h16V4m0-2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16z" -}), 'BathroomOutlined'); \ No newline at end of file +}), 'BathroomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathroomRounded.js b/packages/material-ui-icons/lib/BathroomRounded.js index 2cfdaeae8b608e..2de4f7d6bfb78e 100644 --- a/packages/material-ui-icons/lib/BathroomRounded.js +++ b/packages/material-ui-icons/lib/BathroomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c0-2.76 2.24-5 5-5s5 2.24 5 5c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1z" -}), 'BathroomRounded'); \ No newline at end of file +}), 'BathroomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathroomSharp.js b/packages/material-ui-icons/lib/BathroomSharp.js index a1a112d66735d7..e70495dd3aa9fe 100644 --- a/packages/material-ui-icons/lib/BathroomSharp.js +++ b/packages/material-ui-icons/lib/BathroomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-3H7v-1c0-2.76 2.24-5 5-5s5 2.24 5 5v1z" -}), 'BathroomSharp'); \ No newline at end of file +}), 'BathroomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathroomTwoTone.js b/packages/material-ui-icons/lib/BathroomTwoTone.js index c15f68cde6d7dd..c87dd105263740 100644 --- a/packages/material-ui-icons/lib/BathroomTwoTone.js +++ b/packages/material-ui-icons/lib/BathroomTwoTone.js @@ -1,34 +1,47 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zm5-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c0-2.76 2.24-5 5-5s5 2.24 5 5v1H7v-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "14", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "14", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "17", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11c0-2.76-2.24-5-5-5s-5 2.24-5 5v1h10v-1zm-8.46-.5c.24-1.69 1.7-3 3.46-3s3.22 1.31 3.47 3H8.54z" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "17", r: "1" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "14", r: "1" -}, "7"), /*#__PURE__*/_jsx("circle", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "1" -}, "8")], 'BathroomTwoTone'); \ No newline at end of file +}, "8")], 'BathroomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bathtub.js b/packages/material-ui-icons/lib/Bathtub.js index 60b137faa68ea3..c9770ce9db4ace 100644 --- a/packages/material-ui-icons/lib/Bathtub.js +++ b/packages/material-ui-icons/lib/Bathtub.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "7", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6h-2z" -}, "1")], 'Bathtub'); \ No newline at end of file +}, "1")], 'Bathtub'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathtubOutlined.js b/packages/material-ui-icons/lib/BathtubOutlined.js index 3cefa86cfc6668..7314c7e8e0b022 100644 --- a/packages/material-ui-icons/lib/BathtubOutlined.js +++ b/packages/material-ui-icons/lib/BathtubOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "7", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6h-2zm0 6H4v-4h16v4z" -}, "1")], 'BathtubOutlined'); \ No newline at end of file +}, "1")], 'BathtubOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathtubRounded.js b/packages/material-ui-icons/lib/BathtubRounded.js index 89d391aa2e0f4a..21f470ae046e48 100644 --- a/packages/material-ui-icons/lib/BathtubRounded.js +++ b/packages/material-ui-icons/lib/BathtubRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "7", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 13h-1V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H3c-.55 0-1 .45-1 1v5c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-5c0-.55-.45-1-1-1z" -}, "1")], 'BathtubRounded'); \ No newline at end of file +}, "1")], 'BathtubRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathtubSharp.js b/packages/material-ui-icons/lib/BathtubSharp.js index 2ab230a37a8600..4d5b083d368fd9 100644 --- a/packages/material-ui-icons/lib/BathtubSharp.js +++ b/packages/material-ui-icons/lib/BathtubSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "7", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v8h2v1h16v-1h2v-8h-2z" -}, "1")], 'BathtubSharp'); \ No newline at end of file +}, "1")], 'BathtubSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BathtubTwoTone.js b/packages/material-ui-icons/lib/BathtubTwoTone.js index 15283b696cdb60..1d2add0d637a1a 100644 --- a/packages/material-ui-icons/lib/BathtubTwoTone.js +++ b/packages/material-ui-icons/lib/BathtubTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h16v4H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "7", r: "2" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6h-2zm0 6H4v-4h16v4z" -}, "2")], 'BathtubTwoTone'); \ No newline at end of file +}, "2")], 'BathtubTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery20.js b/packages/material-ui-icons/lib/Battery20.js index 459d0e4adffbd5..e93e043a0f5b79 100644 --- a/packages/material-ui-icons/lib/Battery20.js +++ b/packages/material-ui-icons/lib/Battery20.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" })] -}), 'Battery20'); \ No newline at end of file +}), 'Battery20'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery20Outlined.js b/packages/material-ui-icons/lib/Battery20Outlined.js index 8a79c02d1f89cd..0fb36c9efbdd08 100644 --- a/packages/material-ui-icons/lib/Battery20Outlined.js +++ b/packages/material-ui-icons/lib/Battery20Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" })] -}), 'Battery20Outlined'); \ No newline at end of file +}), 'Battery20Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery20Rounded.js b/packages/material-ui-icons/lib/Battery20Rounded.js index 139b533592e6f2..79bd4e3027b107 100644 --- a/packages/material-ui-icons/lib/Battery20Rounded.js +++ b/packages/material-ui-icons/lib/Battery20Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" })] -}), 'Battery20Rounded'); \ No newline at end of file +}), 'Battery20Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery20Sharp.js b/packages/material-ui-icons/lib/Battery20Sharp.js index 260222f71cefd3..b6fc8b2596a007 100644 --- a/packages/material-ui-icons/lib/Battery20Sharp.js +++ b/packages/material-ui-icons/lib/Battery20Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17v5h10v-5H7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v13h10V4z" })] -}), 'Battery20Sharp'); \ No newline at end of file +}), 'Battery20Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery20TwoTone.js b/packages/material-ui-icons/lib/Battery20TwoTone.js index 8064a8bfa1c57e..9e9c6395a56e8b 100644 --- a/packages/material-ui-icons/lib/Battery20TwoTone.js +++ b/packages/material-ui-icons/lib/Battery20TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" })] -}), 'Battery20TwoTone'); \ No newline at end of file +}), 'Battery20TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery30.js b/packages/material-ui-icons/lib/Battery30.js index f72f5733aef3bf..178777a97b8b28 100644 --- a/packages/material-ui-icons/lib/Battery30.js +++ b/packages/material-ui-icons/lib/Battery30.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" })] -}), 'Battery30'); \ No newline at end of file +}), 'Battery30'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery30Outlined.js b/packages/material-ui-icons/lib/Battery30Outlined.js index 31889045326ecf..903a6d6889dc94 100644 --- a/packages/material-ui-icons/lib/Battery30Outlined.js +++ b/packages/material-ui-icons/lib/Battery30Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" })] -}), 'Battery30Outlined'); \ No newline at end of file +}), 'Battery30Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery30Rounded.js b/packages/material-ui-icons/lib/Battery30Rounded.js index 8e0cbfe52da276..6e76f2cccb36f6 100644 --- a/packages/material-ui-icons/lib/Battery30Rounded.js +++ b/packages/material-ui-icons/lib/Battery30Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" })] -}), 'Battery30Rounded'); \ No newline at end of file +}), 'Battery30Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery30Sharp.js b/packages/material-ui-icons/lib/Battery30Sharp.js index ed5da03e4f9e82..798b80ae2654db 100644 --- a/packages/material-ui-icons/lib/Battery30Sharp.js +++ b/packages/material-ui-icons/lib/Battery30Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v11h10V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v7h10v-7H7z" })] -}), 'Battery30Sharp'); \ No newline at end of file +}), 'Battery30Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery30TwoTone.js b/packages/material-ui-icons/lib/Battery30TwoTone.js index 503c3c99183879..a82c8857a50905 100644 --- a/packages/material-ui-icons/lib/Battery30TwoTone.js +++ b/packages/material-ui-icons/lib/Battery30TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" })] -}), 'Battery30TwoTone'); \ No newline at end of file +}), 'Battery30TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery50.js b/packages/material-ui-icons/lib/Battery50.js index baf373b6104105..3cb70c0ff2fb80 100644 --- a/packages/material-ui-icons/lib/Battery50.js +++ b/packages/material-ui-icons/lib/Battery50.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" })] -}), 'Battery50'); \ No newline at end of file +}), 'Battery50'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery50Outlined.js b/packages/material-ui-icons/lib/Battery50Outlined.js index 016fa4e116e513..249acdf690e77e 100644 --- a/packages/material-ui-icons/lib/Battery50Outlined.js +++ b/packages/material-ui-icons/lib/Battery50Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" })] -}), 'Battery50Outlined'); \ No newline at end of file +}), 'Battery50Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery50Rounded.js b/packages/material-ui-icons/lib/Battery50Rounded.js index 0877c6db41d4d6..cc6b62ae15bb71 100644 --- a/packages/material-ui-icons/lib/Battery50Rounded.js +++ b/packages/material-ui-icons/lib/Battery50Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" })] -}), 'Battery50Rounded'); \ No newline at end of file +}), 'Battery50Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery50Sharp.js b/packages/material-ui-icons/lib/Battery50Sharp.js index 8293a1c2beb938..70c808d1117153 100644 --- a/packages/material-ui-icons/lib/Battery50Sharp.js +++ b/packages/material-ui-icons/lib/Battery50Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v9h10V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13v9h10v-9H7z" })] -}), 'Battery50Sharp'); \ No newline at end of file +}), 'Battery50Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery50TwoTone.js b/packages/material-ui-icons/lib/Battery50TwoTone.js index a38775e1d9ca2e..5103627a879bf1 100644 --- a/packages/material-ui-icons/lib/Battery50TwoTone.js +++ b/packages/material-ui-icons/lib/Battery50TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" })] -}), 'Battery50TwoTone'); \ No newline at end of file +}), 'Battery50TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery60.js b/packages/material-ui-icons/lib/Battery60.js index 6e561cdedefad4..4d4ce3c6c09da3 100644 --- a/packages/material-ui-icons/lib/Battery60.js +++ b/packages/material-ui-icons/lib/Battery60.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" })] -}), 'Battery60'); \ No newline at end of file +}), 'Battery60'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery60Outlined.js b/packages/material-ui-icons/lib/Battery60Outlined.js index 50be5fb2120985..2c9b0fb5391d25 100644 --- a/packages/material-ui-icons/lib/Battery60Outlined.js +++ b/packages/material-ui-icons/lib/Battery60Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" })] -}), 'Battery60Outlined'); \ No newline at end of file +}), 'Battery60Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery60Rounded.js b/packages/material-ui-icons/lib/Battery60Rounded.js index a2f35150c1b1d6..85b8c11ec9d843 100644 --- a/packages/material-ui-icons/lib/Battery60Rounded.js +++ b/packages/material-ui-icons/lib/Battery60Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" })] -}), 'Battery60Rounded'); \ No newline at end of file +}), 'Battery60Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery60Sharp.js b/packages/material-ui-icons/lib/Battery60Sharp.js index f51ff99e43667e..68e88ca4fc1f77 100644 --- a/packages/material-ui-icons/lib/Battery60Sharp.js +++ b/packages/material-ui-icons/lib/Battery60Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v7h10V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v11h10V11H7z" })] -}), 'Battery60Sharp'); \ No newline at end of file +}), 'Battery60Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery60TwoTone.js b/packages/material-ui-icons/lib/Battery60TwoTone.js index e3bcf6c8f7b765..e89503e18114d2 100644 --- a/packages/material-ui-icons/lib/Battery60TwoTone.js +++ b/packages/material-ui-icons/lib/Battery60TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" })] -}), 'Battery60TwoTone'); \ No newline at end of file +}), 'Battery60TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery80.js b/packages/material-ui-icons/lib/Battery80.js index 9ffcec0fc2fe4c..17a1700dbe2c3d 100644 --- a/packages/material-ui-icons/lib/Battery80.js +++ b/packages/material-ui-icons/lib/Battery80.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" })] -}), 'Battery80'); \ No newline at end of file +}), 'Battery80'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery80Outlined.js b/packages/material-ui-icons/lib/Battery80Outlined.js index cc49abde41201c..82453bfa851bb6 100644 --- a/packages/material-ui-icons/lib/Battery80Outlined.js +++ b/packages/material-ui-icons/lib/Battery80Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" })] -}), 'Battery80Outlined'); \ No newline at end of file +}), 'Battery80Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery80Rounded.js b/packages/material-ui-icons/lib/Battery80Rounded.js index 55bc804a095fa3..a6419c9da6be21 100644 --- a/packages/material-ui-icons/lib/Battery80Rounded.js +++ b/packages/material-ui-icons/lib/Battery80Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" })] -}), 'Battery80Rounded'); \ No newline at end of file +}), 'Battery80Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery80Sharp.js b/packages/material-ui-icons/lib/Battery80Sharp.js index f9194caf1d163e..3f9552cacb033c 100644 --- a/packages/material-ui-icons/lib/Battery80Sharp.js +++ b/packages/material-ui-icons/lib/Battery80Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v5h10V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v13h10V9H7z" })] -}), 'Battery80Sharp'); \ No newline at end of file +}), 'Battery80Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery80TwoTone.js b/packages/material-ui-icons/lib/Battery80TwoTone.js index 6976fc6b8996b9..bfc403ec4e25e3 100644 --- a/packages/material-ui-icons/lib/Battery80TwoTone.js +++ b/packages/material-ui-icons/lib/Battery80TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" })] -}), 'Battery80TwoTone'); \ No newline at end of file +}), 'Battery80TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery90.js b/packages/material-ui-icons/lib/Battery90.js index 52ae9c5e18b2dc..ef6d3e88c230c4 100644 --- a/packages/material-ui-icons/lib/Battery90.js +++ b/packages/material-ui-icons/lib/Battery90.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" })] -}), 'Battery90'); \ No newline at end of file +}), 'Battery90'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery90Outlined.js b/packages/material-ui-icons/lib/Battery90Outlined.js index cfba0f27316ec7..edf1af0312f7db 100644 --- a/packages/material-ui-icons/lib/Battery90Outlined.js +++ b/packages/material-ui-icons/lib/Battery90Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" })] -}), 'Battery90Outlined'); \ No newline at end of file +}), 'Battery90Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery90Rounded.js b/packages/material-ui-icons/lib/Battery90Rounded.js index b8693b59c02d94..9ec621791ead25 100644 --- a/packages/material-ui-icons/lib/Battery90Rounded.js +++ b/packages/material-ui-icons/lib/Battery90Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" })] -}), 'Battery90Rounded'); \ No newline at end of file +}), 'Battery90Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery90Sharp.js b/packages/material-ui-icons/lib/Battery90Sharp.js index f1b2bd8adeee25..9b793d692bb77e 100644 --- a/packages/material-ui-icons/lib/Battery90Sharp.js +++ b/packages/material-ui-icons/lib/Battery90Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v4h10V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8v14h10V8H7z" })] -}), 'Battery90Sharp'); \ No newline at end of file +}), 'Battery90Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Battery90TwoTone.js b/packages/material-ui-icons/lib/Battery90TwoTone.js index 5d27dc1d65ef1d..f24b5ccbadab05 100644 --- a/packages/material-ui-icons/lib/Battery90TwoTone.js +++ b/packages/material-ui-icons/lib/Battery90TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" })] -}), 'Battery90TwoTone'); \ No newline at end of file +}), 'Battery90TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryAlert.js b/packages/material-ui-icons/lib/BatteryAlert.js index 405d58a281705b..e092477030002b 100644 --- a/packages/material-ui-icons/lib/BatteryAlert.js +++ b/packages/material-ui-icons/lib/BatteryAlert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" -}), 'BatteryAlert'); \ No newline at end of file +}), 'BatteryAlert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryAlertOutlined.js b/packages/material-ui-icons/lib/BatteryAlertOutlined.js index dcb4def107444d..3c817ea258ebc8 100644 --- a/packages/material-ui-icons/lib/BatteryAlertOutlined.js +++ b/packages/material-ui-icons/lib/BatteryAlertOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" -}), 'BatteryAlertOutlined'); \ No newline at end of file +}), 'BatteryAlertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryAlertRounded.js b/packages/material-ui-icons/lib/BatteryAlertRounded.js index 695a7b46d37a93..64c110073ea69b 100644 --- a/packages/material-ui-icons/lib/BatteryAlertRounded.js +++ b/packages/material-ui-icons/lib/BatteryAlertRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3z" -}), 'BatteryAlertRounded'); \ No newline at end of file +}), 'BatteryAlertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryAlertSharp.js b/packages/material-ui-icons/lib/BatteryAlertSharp.js index 039beec5e871c3..a8a3258ef47772 100644 --- a/packages/material-ui-icons/lib/BatteryAlertSharp.js +++ b/packages/material-ui-icons/lib/BatteryAlertSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h-3V2h-4v2H7v18h10V4zm-4 14h-2v-2h2v2zm0-4h-2V9h2v5z" -}), 'BatteryAlertSharp'); \ No newline at end of file +}), 'BatteryAlertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryAlertTwoTone.js b/packages/material-ui-icons/lib/BatteryAlertTwoTone.js index 07fc90abc60c0d..8ff134d3af8d8e 100644 --- a/packages/material-ui-icons/lib/BatteryAlertTwoTone.js +++ b/packages/material-ui-icons/lib/BatteryAlertTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" -}), 'BatteryAlertTwoTone'); \ No newline at end of file +}), 'BatteryAlertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging20.js b/packages/material-ui-icons/lib/BatteryCharging20.js index d4fb4cc10b162a..db82673e2eb353 100644 --- a/packages/material-ui-icons/lib/BatteryCharging20.js +++ b/packages/material-ui-icons/lib/BatteryCharging20.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging20'); \ No newline at end of file +}), 'BatteryCharging20'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging20Outlined.js b/packages/material-ui-icons/lib/BatteryCharging20Outlined.js index 7c3f513746aa18..ef1bf9c47c434f 100644 --- a/packages/material-ui-icons/lib/BatteryCharging20Outlined.js +++ b/packages/material-ui-icons/lib/BatteryCharging20Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging20Outlined'); \ No newline at end of file +}), 'BatteryCharging20Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging20Rounded.js b/packages/material-ui-icons/lib/BatteryCharging20Rounded.js index a28bd3358e007f..9748062197265a 100644 --- a/packages/material-ui-icons/lib/BatteryCharging20Rounded.js +++ b/packages/material-ui-icons/lib/BatteryCharging20Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.94 18.24c-.24.45-.94.28-.94-.24v-1H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4l-.66 1.24z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging20Rounded'); \ No newline at end of file +}), 'BatteryCharging20Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging20Sharp.js b/packages/material-ui-icons/lib/BatteryCharging20Sharp.js index d52416e059441f..f3eeecc5309bfb 100644 --- a/packages/material-ui-icons/lib/BatteryCharging20Sharp.js +++ b/packages/material-ui-icons/lib/BatteryCharging20Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-3H7v5h10v-5h-4.4L11 20z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v13h4v-2.5H9L13 7v5.5h2L12.6 17H17V4z" })] -}), 'BatteryCharging20Sharp'); \ No newline at end of file +}), 'BatteryCharging20Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging20TwoTone.js b/packages/material-ui-icons/lib/BatteryCharging20TwoTone.js index 4578ebf52bc5c2..63456aa237f319 100644 --- a/packages/material-ui-icons/lib/BatteryCharging20TwoTone.js +++ b/packages/material-ui-icons/lib/BatteryCharging20TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging20TwoTone'); \ No newline at end of file +}), 'BatteryCharging20TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging30.js b/packages/material-ui-icons/lib/BatteryCharging30.js index 611fb45898d66c..04a646f8175824 100644 --- a/packages/material-ui-icons/lib/BatteryCharging30.js +++ b/packages/material-ui-icons/lib/BatteryCharging30.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" })] -}), 'BatteryCharging30'); \ No newline at end of file +}), 'BatteryCharging30'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging30Outlined.js b/packages/material-ui-icons/lib/BatteryCharging30Outlined.js index cf16f49551de82..bf6a409e601439 100644 --- a/packages/material-ui-icons/lib/BatteryCharging30Outlined.js +++ b/packages/material-ui-icons/lib/BatteryCharging30Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" })] -}), 'BatteryCharging30Outlined'); \ No newline at end of file +}), 'BatteryCharging30Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging30Rounded.js b/packages/material-ui-icons/lib/BatteryCharging30Rounded.js index 7cff8ac37795c9..5c9eb283b4de1b 100644 --- a/packages/material-ui-icons/lib/BatteryCharging30Rounded.js +++ b/packages/material-ui-icons/lib/BatteryCharging30Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v9.17h2.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74l-.67 1.26H17V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.94 18.24c-.24.45-.94.28-.94-.24v-3.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07l-1.99 3.74z" })] -}), 'BatteryCharging30Rounded'); \ No newline at end of file +}), 'BatteryCharging30Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging30Sharp.js b/packages/material-ui-icons/lib/BatteryCharging30Sharp.js index fda13cdfb3a694..00bec24c6efa86 100644 --- a/packages/material-ui-icons/lib/BatteryCharging30Sharp.js +++ b/packages/material-ui-icons/lib/BatteryCharging30Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v10.5h2L13 7v5.5h2l-1.07 2H17V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-5.5H7V22h10v-7.5h-3.07L11 20z" })] -}), 'BatteryCharging30Sharp'); \ No newline at end of file +}), 'BatteryCharging30Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging30TwoTone.js b/packages/material-ui-icons/lib/BatteryCharging30TwoTone.js index c952d98cc2b815..5cf2558772477c 100644 --- a/packages/material-ui-icons/lib/BatteryCharging30TwoTone.js +++ b/packages/material-ui-icons/lib/BatteryCharging30TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" })] -}), 'BatteryCharging30TwoTone'); \ No newline at end of file +}), 'BatteryCharging30TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging50.js b/packages/material-ui-icons/lib/BatteryCharging50.js index f64c185cd1edfc..9f05a37477ab98 100644 --- a/packages/material-ui-icons/lib/BatteryCharging50.js +++ b/packages/material-ui-icons/lib/BatteryCharging50.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging50'); \ No newline at end of file +}), 'BatteryCharging50'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging50Outlined.js b/packages/material-ui-icons/lib/BatteryCharging50Outlined.js index 88e5f23ed127ee..00b1b25d2fb7b6 100644 --- a/packages/material-ui-icons/lib/BatteryCharging50Outlined.js +++ b/packages/material-ui-icons/lib/BatteryCharging50Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging50Outlined'); \ No newline at end of file +}), 'BatteryCharging50Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging50Rounded.js b/packages/material-ui-icons/lib/BatteryCharging50Rounded.js index bf9db4b5223984..a983aa8474e8a1 100644 --- a/packages/material-ui-icons/lib/BatteryCharging50Rounded.js +++ b/packages/material-ui-icons/lib/BatteryCharging50Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.94 18.24c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74l.14-.26H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53l-2.53 4.74z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53l2.53-4.74c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74l-.14.26H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging50Rounded'); \ No newline at end of file +}), 'BatteryCharging50Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging50Sharp.js b/packages/material-ui-icons/lib/BatteryCharging50Sharp.js index 2f9503b3e84de2..5abc4417b620fe 100644 --- a/packages/material-ui-icons/lib/BatteryCharging50Sharp.js +++ b/packages/material-ui-icons/lib/BatteryCharging50Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.47 13.5L11 20v-5.5H9l.53-1H7V22h10v-8.5h-2.53z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v9.5h2.53L13 7v5.5h2l-.53 1H17V4z" })] -}), 'BatteryCharging50Sharp'); \ No newline at end of file +}), 'BatteryCharging50Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging50TwoTone.js b/packages/material-ui-icons/lib/BatteryCharging50TwoTone.js index 6624c2c5803f51..deaeda005d8dae 100644 --- a/packages/material-ui-icons/lib/BatteryCharging50TwoTone.js +++ b/packages/material-ui-icons/lib/BatteryCharging50TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z" })] -}), 'BatteryCharging50TwoTone'); \ No newline at end of file +}), 'BatteryCharging50TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging60.js b/packages/material-ui-icons/lib/BatteryCharging60.js index 3b0f708228b2d0..9303a5e66fb359 100644 --- a/packages/material-ui-icons/lib/BatteryCharging60.js +++ b/packages/material-ui-icons/lib/BatteryCharging60.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" })] -}), 'BatteryCharging60'); \ No newline at end of file +}), 'BatteryCharging60'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging60Outlined.js b/packages/material-ui-icons/lib/BatteryCharging60Outlined.js index 38ef52aaea4867..51dad37440beb9 100644 --- a/packages/material-ui-icons/lib/BatteryCharging60Outlined.js +++ b/packages/material-ui-icons/lib/BatteryCharging60Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" })] -}), 'BatteryCharging60Outlined'); \ No newline at end of file +}), 'BatteryCharging60Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging60Rounded.js b/packages/material-ui-icons/lib/BatteryCharging60Rounded.js index 4a059dd2a8ee59..24f431e6bb79dd 100644 --- a/packages/material-ui-icons/lib/BatteryCharging60Rounded.js +++ b/packages/material-ui-icons/lib/BatteryCharging60Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V11h3.87l1.19-2.24c.24-.45.94-.28.94.24v2h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h1.17c.38 0 .62.4.44.74l-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74L10.87 11H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" })] -}), 'BatteryCharging60Rounded'); \ No newline at end of file +}), 'BatteryCharging60Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging60Sharp.js b/packages/material-ui-icons/lib/BatteryCharging60Sharp.js index 27b987f2188368..3e16735861b9a9 100644 --- a/packages/material-ui-icons/lib/BatteryCharging60Sharp.js +++ b/packages/material-ui-icons/lib/BatteryCharging60Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v7h3.87L13 7v4h4V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v11h10V11h-4v1.5z" })] -}), 'BatteryCharging60Sharp'); \ No newline at end of file +}), 'BatteryCharging60Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging60TwoTone.js b/packages/material-ui-icons/lib/BatteryCharging60TwoTone.js index be38ba9953b670..36abb63daaf69d 100644 --- a/packages/material-ui-icons/lib/BatteryCharging60TwoTone.js +++ b/packages/material-ui-icons/lib/BatteryCharging60TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" })] -}), 'BatteryCharging60TwoTone'); \ No newline at end of file +}), 'BatteryCharging60TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging80.js b/packages/material-ui-icons/lib/BatteryCharging80.js index e0edbb3edcdba1..525b7d9be35948 100644 --- a/packages/material-ui-icons/lib/BatteryCharging80.js +++ b/packages/material-ui-icons/lib/BatteryCharging80.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" })] -}), 'BatteryCharging80'); \ No newline at end of file +}), 'BatteryCharging80'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging80Outlined.js b/packages/material-ui-icons/lib/BatteryCharging80Outlined.js index 798b1c3d093f7e..6755c6b6744295 100644 --- a/packages/material-ui-icons/lib/BatteryCharging80Outlined.js +++ b/packages/material-ui-icons/lib/BatteryCharging80Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" })] -}), 'BatteryCharging80Outlined'); \ No newline at end of file +}), 'BatteryCharging80Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging80Rounded.js b/packages/material-ui-icons/lib/BatteryCharging80Rounded.js index fe9f70ce926d40..633408ebbcc8c9 100644 --- a/packages/material-ui-icons/lib/BatteryCharging80Rounded.js +++ b/packages/material-ui-icons/lib/BatteryCharging80Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V9h4.93l.13-.24c.24-.45.94-.28.94.24h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h1.17c.38 0 .62.4.44.74l-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" })] -}), 'BatteryCharging80Rounded'); \ No newline at end of file +}), 'BatteryCharging80Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging80Sharp.js b/packages/material-ui-icons/lib/BatteryCharging80Sharp.js index 3f6f9372398bfb..b34d4c3e2b5ea6 100644 --- a/packages/material-ui-icons/lib/BatteryCharging80Sharp.js +++ b/packages/material-ui-icons/lib/BatteryCharging80Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v5h4.93L13 7v2h4V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v13h10V9h-4v3.5z" })] -}), 'BatteryCharging80Sharp'); \ No newline at end of file +}), 'BatteryCharging80Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging80TwoTone.js b/packages/material-ui-icons/lib/BatteryCharging80TwoTone.js index 0bda9c209aff5a..bf08c3af03ae58 100644 --- a/packages/material-ui-icons/lib/BatteryCharging80TwoTone.js +++ b/packages/material-ui-icons/lib/BatteryCharging80TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" })] -}), 'BatteryCharging80TwoTone'); \ No newline at end of file +}), 'BatteryCharging80TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging90.js b/packages/material-ui-icons/lib/BatteryCharging90.js index 7456c6d20e2004..7eedce72f63e85 100644 --- a/packages/material-ui-icons/lib/BatteryCharging90.js +++ b/packages/material-ui-icons/lib/BatteryCharging90.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" })] -}), 'BatteryCharging90'); \ No newline at end of file +}), 'BatteryCharging90'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging90Outlined.js b/packages/material-ui-icons/lib/BatteryCharging90Outlined.js index 6222b53e9fc45c..1d56dae323ec4f 100644 --- a/packages/material-ui-icons/lib/BatteryCharging90Outlined.js +++ b/packages/material-ui-icons/lib/BatteryCharging90Outlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" })] -}), 'BatteryCharging90Outlined'); \ No newline at end of file +}), 'BatteryCharging90Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging90Rounded.js b/packages/material-ui-icons/lib/BatteryCharging90Rounded.js index eff0708b4be5fc..f736619be91a8c 100644 --- a/packages/material-ui-icons/lib/BatteryCharging90Rounded.js +++ b/packages/material-ui-icons/lib/BatteryCharging90Rounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7v12.67zm2.39-6.91l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74l-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.37 0-.62-.4-.44-.74z" })] -}), 'BatteryCharging90Rounded'); \ No newline at end of file +}), 'BatteryCharging90Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging90Sharp.js b/packages/material-ui-icons/lib/BatteryCharging90Sharp.js index 7d3cefa67ed05b..cb35646ed67ec1 100644 --- a/packages/material-ui-icons/lib/BatteryCharging90Sharp.js +++ b/packages/material-ui-icons/lib/BatteryCharging90Sharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M17 4h-3V2h-4v2H7v4h5.47L13 7v1h4V4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v14h10V8h-4v4.5z" })] -}), 'BatteryCharging90Sharp'); \ No newline at end of file +}), 'BatteryCharging90Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryCharging90TwoTone.js b/packages/material-ui-icons/lib/BatteryCharging90TwoTone.js index 9876815c80bac0..d79cae90e1d328 100644 --- a/packages/material-ui-icons/lib/BatteryCharging90TwoTone.js +++ b/packages/material-ui-icons/lib/BatteryCharging90TwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" })] -}), 'BatteryCharging90TwoTone'); \ No newline at end of file +}), 'BatteryCharging90TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryChargingFull.js b/packages/material-ui-icons/lib/BatteryChargingFull.js index 1c4874366d5a46..43004d2e3548fe 100644 --- a/packages/material-ui-icons/lib/BatteryChargingFull.js +++ b/packages/material-ui-icons/lib/BatteryChargingFull.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" -}), 'BatteryChargingFull'); \ No newline at end of file +}), 'BatteryChargingFull'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryChargingFullOutlined.js b/packages/material-ui-icons/lib/BatteryChargingFullOutlined.js index 00937650f95fe5..91122f91aac76e 100644 --- a/packages/material-ui-icons/lib/BatteryChargingFullOutlined.js +++ b/packages/material-ui-icons/lib/BatteryChargingFullOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" -}), 'BatteryChargingFullOutlined'); \ No newline at end of file +}), 'BatteryChargingFullOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryChargingFullRounded.js b/packages/material-ui-icons/lib/BatteryChargingFullRounded.js index 8ae57180497b40..9692c1cf07b871 100644 --- a/packages/material-ui-icons/lib/BatteryChargingFullRounded.js +++ b/packages/material-ui-icons/lib/BatteryChargingFullRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-1.06 9.24-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.37 0 .62.4.44.74z" -}), 'BatteryChargingFullRounded'); \ No newline at end of file +}), 'BatteryChargingFullRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryChargingFullSharp.js b/packages/material-ui-icons/lib/BatteryChargingFullSharp.js index d181b9675bd6c3..c64d7785de3080 100644 --- a/packages/material-ui-icons/lib/BatteryChargingFullSharp.js +++ b/packages/material-ui-icons/lib/BatteryChargingFullSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h-3V2h-4v2H7v18h10V4zm-6 16v-5.5H9L13 7v5.5h2L11 20z" -}), 'BatteryChargingFullSharp'); \ No newline at end of file +}), 'BatteryChargingFullSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryChargingFullTwoTone.js b/packages/material-ui-icons/lib/BatteryChargingFullTwoTone.js index 57421a46a6ab75..d7d9004352c19e 100644 --- a/packages/material-ui-icons/lib/BatteryChargingFullTwoTone.js +++ b/packages/material-ui-icons/lib/BatteryChargingFullTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" -}), 'BatteryChargingFullTwoTone'); \ No newline at end of file +}), 'BatteryChargingFullTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryFull.js b/packages/material-ui-icons/lib/BatteryFull.js index c1fdd950d19ef9..0388a90350b3f9 100644 --- a/packages/material-ui-icons/lib/BatteryFull.js +++ b/packages/material-ui-icons/lib/BatteryFull.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryFull'); \ No newline at end of file +}), 'BatteryFull'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryFullOutlined.js b/packages/material-ui-icons/lib/BatteryFullOutlined.js index ea372a89ee1a7d..e3d758f00082a3 100644 --- a/packages/material-ui-icons/lib/BatteryFullOutlined.js +++ b/packages/material-ui-icons/lib/BatteryFullOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryFullOutlined'); \ No newline at end of file +}), 'BatteryFullOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryFullRounded.js b/packages/material-ui-icons/lib/BatteryFullRounded.js index 4180338caa0f02..ee6986fa864090 100644 --- a/packages/material-ui-icons/lib/BatteryFullRounded.js +++ b/packages/material-ui-icons/lib/BatteryFullRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryFullRounded'); \ No newline at end of file +}), 'BatteryFullRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryFullSharp.js b/packages/material-ui-icons/lib/BatteryFullSharp.js index a06d8c55779c00..c98dcb6b7c31a4 100644 --- a/packages/material-ui-icons/lib/BatteryFullSharp.js +++ b/packages/material-ui-icons/lib/BatteryFullSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h-3V2h-4v2H7v18h10V4z" -}), 'BatteryFullSharp'); \ No newline at end of file +}), 'BatteryFullSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryFullTwoTone.js b/packages/material-ui-icons/lib/BatteryFullTwoTone.js index 2c04d29c71cf25..866f53caf412a6 100644 --- a/packages/material-ui-icons/lib/BatteryFullTwoTone.js +++ b/packages/material-ui-icons/lib/BatteryFullTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryFullTwoTone'); \ No newline at end of file +}), 'BatteryFullTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatterySaver.js b/packages/material-ui-icons/lib/BatterySaver.js index 1dfeae0d3b2017..5dff6d1e2f23de 100644 --- a/packages/material-ui-icons/lib/BatterySaver.js +++ b/packages/material-ui-icons/lib/BatterySaver.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4h-2V2h-4v2H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" -}), 'BatterySaver'); \ No newline at end of file +}), 'BatterySaver'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatterySaverOutlined.js b/packages/material-ui-icons/lib/BatterySaverOutlined.js index 1f4e1045edc7af..7e2a7243527db5 100644 --- a/packages/material-ui-icons/lib/BatterySaverOutlined.js +++ b/packages/material-ui-icons/lib/BatterySaverOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4h-2V2h-4v2H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" -}), 'BatterySaverOutlined'); \ No newline at end of file +}), 'BatterySaverOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatterySaverRounded.js b/packages/material-ui-icons/lib/BatterySaverRounded.js index 48254f40bbd8e2..8316987a02147a 100644 --- a/packages/material-ui-icons/lib/BatterySaverRounded.js +++ b/packages/material-ui-icons/lib/BatterySaverRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4h-2V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-2 10h-1v1c0 .55-.45 1-1 1s-1-.45-1-1v-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'BatterySaverRounded'); \ No newline at end of file +}), 'BatterySaverRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatterySaverSharp.js b/packages/material-ui-icons/lib/BatterySaverSharp.js index e48e0729704d0d..1d5c4514e7ff52 100644 --- a/packages/material-ui-icons/lib/BatterySaverSharp.js +++ b/packages/material-ui-icons/lib/BatterySaverSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h-3V2h-4v2H7v18h10V4zm-2 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" -}), 'BatterySaverSharp'); \ No newline at end of file +}), 'BatterySaverSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatterySaverTwoTone.js b/packages/material-ui-icons/lib/BatterySaverTwoTone.js index a9183c9b412de8..4df1aa57d4051c 100644 --- a/packages/material-ui-icons/lib/BatterySaverTwoTone.js +++ b/packages/material-ui-icons/lib/BatterySaverTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4h-2V2h-4v2H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" -}), 'BatterySaverTwoTone'); \ No newline at end of file +}), 'BatterySaverTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryStd.js b/packages/material-ui-icons/lib/BatteryStd.js index acd2b82cf790c3..61de7d3c95b03c 100644 --- a/packages/material-ui-icons/lib/BatteryStd.js +++ b/packages/material-ui-icons/lib/BatteryStd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryStd'); \ No newline at end of file +}), 'BatteryStd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryStdOutlined.js b/packages/material-ui-icons/lib/BatteryStdOutlined.js index f4f6055bbcbd17..70a8881f0a9bf9 100644 --- a/packages/material-ui-icons/lib/BatteryStdOutlined.js +++ b/packages/material-ui-icons/lib/BatteryStdOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryStdOutlined'); \ No newline at end of file +}), 'BatteryStdOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryStdRounded.js b/packages/material-ui-icons/lib/BatteryStdRounded.js index 67706681901687..a7a3cf651b0d40 100644 --- a/packages/material-ui-icons/lib/BatteryStdRounded.js +++ b/packages/material-ui-icons/lib/BatteryStdRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryStdRounded'); \ No newline at end of file +}), 'BatteryStdRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryStdSharp.js b/packages/material-ui-icons/lib/BatteryStdSharp.js index 2fa7d9a2a088c0..1a30e576b46354 100644 --- a/packages/material-ui-icons/lib/BatteryStdSharp.js +++ b/packages/material-ui-icons/lib/BatteryStdSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h-3V2h-4v2H7v18h10V4z" -}), 'BatteryStdSharp'); \ No newline at end of file +}), 'BatteryStdSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryStdTwoTone.js b/packages/material-ui-icons/lib/BatteryStdTwoTone.js index f970e0f18cf63c..de5d936749eedc 100644 --- a/packages/material-ui-icons/lib/BatteryStdTwoTone.js +++ b/packages/material-ui-icons/lib/BatteryStdTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" -}), 'BatteryStdTwoTone'); \ No newline at end of file +}), 'BatteryStdTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryUnknown.js b/packages/material-ui-icons/lib/BatteryUnknown.js index 594a7a827aff07..33dd10f5b2ce32 100644 --- a/packages/material-ui-icons/lib/BatteryUnknown.js +++ b/packages/material-ui-icons/lib/BatteryUnknown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-2.72 13.95h-1.9v-1.9h1.9v1.9zm1.35-5.26s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" -}), 'BatteryUnknown'); \ No newline at end of file +}), 'BatteryUnknown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryUnknownOutlined.js b/packages/material-ui-icons/lib/BatteryUnknownOutlined.js index db07351e49673c..2a546011fbfdde 100644 --- a/packages/material-ui-icons/lib/BatteryUnknownOutlined.js +++ b/packages/material-ui-icons/lib/BatteryUnknownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" -}), 'BatteryUnknownOutlined'); \ No newline at end of file +}), 'BatteryUnknownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryUnknownRounded.js b/packages/material-ui-icons/lib/BatteryUnknownRounded.js index 533fb3a6b754a9..21c8a1b3f23831 100644 --- a/packages/material-ui-icons/lib/BatteryUnknownRounded.js +++ b/packages/material-ui-icons/lib/BatteryUnknownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.14.14-.27.31-.39.47l-.09.15c-.08.12-.14.25-.19.37-.09.22-.16.43-.16.61h-1.6c0-.42.12-.8.29-1.13.06-.11.13-.21.2-.31.03-.05.06-.11.1-.16.11-.14.23-.28.34-.4l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5-.65 0-1.21.41-1.41.99-.11.31-.39.51-.71.51-.52 0-.88-.52-.71-1.01C9.59 8.83 10.69 8 12 8c1.66 0 3 1.34 3 3 0 .66-.27 1.26-.7 1.69z" -}), 'BatteryUnknownRounded'); \ No newline at end of file +}), 'BatteryUnknownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryUnknownSharp.js b/packages/material-ui-icons/lib/BatteryUnknownSharp.js index a06d7b28fe37ad..3ef00086c25c0c 100644 --- a/packages/material-ui-icons/lib/BatteryUnknownSharp.js +++ b/packages/material-ui-icons/lib/BatteryUnknownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" -}), 'BatteryUnknownSharp'); \ No newline at end of file +}), 'BatteryUnknownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BatteryUnknownTwoTone.js b/packages/material-ui-icons/lib/BatteryUnknownTwoTone.js index 704b53dd37aeb5..665cbf0f569e2b 100644 --- a/packages/material-ui-icons/lib/BatteryUnknownTwoTone.js +++ b/packages/material-ui-icons/lib/BatteryUnknownTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" -}), 'BatteryUnknownTwoTone'); \ No newline at end of file +}), 'BatteryUnknownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeachAccess.js b/packages/material-ui-icons/lib/BeachAccess.js index 777e4424560478..865e61d063a514 100644 --- a/packages/material-ui-icons/lib/BeachAccess.js +++ b/packages/material-ui-icons/lib/BeachAccess.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.127 14.56 1.43-1.43 6.44 6.443L19.57 21zm4.293-5.73 2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z" -}), 'BeachAccess'); \ No newline at end of file +}), 'BeachAccess'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeachAccessOutlined.js b/packages/material-ui-icons/lib/BeachAccessOutlined.js index 0c7402340dd99c..6d20b9f633ecd3 100644 --- a/packages/material-ui-icons/lib/BeachAccessOutlined.js +++ b/packages/material-ui-icons/lib/BeachAccessOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 19.57-1.427 1.428-6.442-6.442 1.43-1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z" -}), 'BeachAccessOutlined'); \ No newline at end of file +}), 'BeachAccessOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeachAccessRounded.js b/packages/material-ui-icons/lib/BeachAccessRounded.js index 6c950e1d347c64..1f258d8ba218c2 100644 --- a/packages/material-ui-icons/lib/BeachAccessRounded.js +++ b/packages/material-ui-icons/lib/BeachAccessRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.13 14.56 1.43-1.43 5.73 5.73c.39.39.39 1.03 0 1.43-.39.39-1.03.39-1.43 0l-5.73-5.73zm4.29-5.73 1.27-1.27c.89-.89.77-2.43-.31-3.08-3.89-2.38-9.03-1.89-12.4 1.47 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.36 3.37-3.85 8.51-1.48 12.4.66 1.08 2.19 1.21 3.08.31l1.27-1.27C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z" -}), 'BeachAccessRounded'); \ No newline at end of file +}), 'BeachAccessRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeachAccessSharp.js b/packages/material-ui-icons/lib/BeachAccessSharp.js index 7f735c0377c77d..5ba9c02ab1a4b3 100644 --- a/packages/material-ui-icons/lib/BeachAccessSharp.js +++ b/packages/material-ui-icons/lib/BeachAccessSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm11.47 2.85 2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.97 5.96l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3zm7.156 8.6 1.428-1.428 6.442 6.442-1.43 1.428z" -}), 'BeachAccessSharp'); \ No newline at end of file +}), 'BeachAccessSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeachAccessTwoTone.js b/packages/material-ui-icons/lib/BeachAccessTwoTone.js index b6cb37ad3e403c..3015bbd7563e15 100644 --- a/packages/material-ui-icons/lib/BeachAccessTwoTone.js +++ b/packages/material-ui-icons/lib/BeachAccessTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.6 7.6c-.47 2.34.03 4.78 1.39 6.83l5.45-5.45c-1.53-1.02-3.28-1.56-5.08-1.56-.6 0-1.19.06-1.76.18zM13.12 5c-.93 0-1.82.16-2.67.46 1.91.19 3.79.89 5.44 2.07l1.39-1.39C16.03 5.4 14.61 5 13.12 5zM5 13.12c0 1.49.4 2.91 1.14 4.15l1.39-1.39c-1.18-1.65-1.88-3.52-2.07-5.44-.3.86-.46 1.76-.46 2.68z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.126 14.56 1.428-1.428 6.442 6.442-1.43 1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z" -}, "1")], 'BeachAccessTwoTone'); \ No newline at end of file +}, "1")], 'BeachAccessTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bed.js b/packages/material-ui-icons/lib/Bed.js index bdaadb0eae867f..cbcde43f0884be 100644 --- a/packages/material-ui-icons/lib/Bed.js +++ b/packages/material-ui-icons/lib/Bed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z" -}), 'Bed'); \ No newline at end of file +}), 'Bed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedOutlined.js b/packages/material-ui-icons/lib/BedOutlined.js index 28f8ef674cb27f..29e022da29d218 100644 --- a/packages/material-ui-icons/lib/BedOutlined.js +++ b/packages/material-ui-icons/lib/BedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z" -}), 'BedOutlined'); \ No newline at end of file +}), 'BedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedRounded.js b/packages/material-ui-icons/lib/BedRounded.js index 92f6296c593052..ab895bf276577a 100644 --- a/packages/material-ui-icons/lib/BedRounded.js +++ b/packages/material-ui-icons/lib/BedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v5c0 .55.45 1 1 1s1-.45 1-1v-1h16v1c0 .55.45 1 1 1s1-.45 1-1v-5c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z" -}), 'BedRounded'); \ No newline at end of file +}), 'BedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedSharp.js b/packages/material-ui-icons/lib/BedSharp.js index c92d5da7afd00a..267a5c2c938d8f 100644 --- a/packages/material-ui-icons/lib/BedSharp.js +++ b/packages/material-ui-icons/lib/BedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10V5H3v5H2v9h2v-2h16v2h2v-9h-1zm-8-3h6v3h-6V7zm-8 3V7h6v3H5zm-1 5v-3h16v3H4z" -}), 'BedSharp'); \ No newline at end of file +}), 'BedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedTwoTone.js b/packages/material-ui-icons/lib/BedTwoTone.js index 94793651fe34b5..1b96a480b3cd72 100644 --- a/packages/material-ui-icons/lib/BedTwoTone.js +++ b/packages/material-ui-icons/lib/BedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2h6V8zm-8 0c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2h6V8zm8 4H5c-.55 0-1 .45-1 1v2h16v-2c0-.55-.45-1-1-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM13 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2h-6V8zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm15 7H4v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2z" -}, "1")], 'BedTwoTone'); \ No newline at end of file +}, "1")], 'BedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomBaby.js b/packages/material-ui-icons/lib/BedroomBaby.js index 5eef884ebbf7db..628b7ab16bb6bf 100644 --- a/packages/material-ui-icons/lib/BedroomBaby.js +++ b/packages/material-ui-icons/lib/BedroomBaby.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 16c-2.64 0-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1c-1.87 1.87-4.36 2.9-7 2.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.69 14.24c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z" -}, "1")], 'BedroomBaby'); \ No newline at end of file +}, "1")], 'BedroomBaby'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomBabyOutlined.js b/packages/material-ui-icons/lib/BedroomBabyOutlined.js index 20c4146a427cb8..3bfc0cda4662b8 100644 --- a/packages/material-ui-icons/lib/BedroomBabyOutlined.js +++ b/packages/material-ui-icons/lib/BedroomBabyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.94 14.04c-.34.34-.71.64-1.1.92L16 13.5V11h1v-1h-5.62L9.65 7H6l1 .76L5.5 9.5l.95 1L8 9.51v3.99l-.84 1.46c-.39-.27-.76-.58-1.1-.92L5 15.1c1.87 1.87 4.36 2.9 7 2.9s5.13-1.03 7-2.9l-1.06-1.06zm-9.49 1.67.03-.06.81-1.41c1.74.65 3.66.65 5.4 0l.81 1.41.03.06c-1.1.51-2.3.79-3.55.79s-2.43-.27-3.53-.79zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'BedroomBabyOutlined'); \ No newline at end of file +}), 'BedroomBabyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomBabyRounded.js b/packages/material-ui-icons/lib/BedroomBabyRounded.js index a1ae00bdb7e66e..f99d3ca3dec136 100644 --- a/packages/material-ui-icons/lib/BedroomBabyRounded.js +++ b/packages/material-ui-icons/lib/BedroomBabyRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 15.99c-2.37 0-4.61-.83-6.4-2.35-.33-.28-.35-.8-.04-1.11.27-.27.71-.29 1.01-.04.19.16.39.31.6.46L8 13.49V9.5l-1 .65c-.32.21-.73.16-.99-.12L6 10.01c-.29-.3-.3-.77-.03-1.08.3-.33.65-.74.86-.98.09-.11.07-.28-.04-.36 0 0-.81-.31-.79-.57 0-.11 3.36-.03 3.36-.03.18 0 .34.1.43.25l1.44 2.5c.09.15.25.25.43.25h4.83c.28 0 .5.22.5.5s-.22.5-.5.5H16v2.5l.84 1.46c.2-.15.4-.3.6-.46.3-.25.73-.23 1.01.04.31.31.29.82-.04 1.11-1.8 1.52-4.04 2.35-6.41 2.35z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.69 14.24c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z" -}, "1")], 'BedroomBabyRounded'); \ No newline at end of file +}, "1")], 'BedroomBabyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomBabySharp.js b/packages/material-ui-icons/lib/BedroomBabySharp.js index 4c2b3f1af53a6e..363dc534e99202 100644 --- a/packages/material-ui-icons/lib/BedroomBabySharp.js +++ b/packages/material-ui-icons/lib/BedroomBabySharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zM12 18c-2.64 0-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1c-1.87 1.87-4.36 2.9-7 2.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.69 14.24c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z" -}, "1")], 'BedroomBabySharp'); \ No newline at end of file +}, "1")], 'BedroomBabySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomBabyTwoTone.js b/packages/material-ui-icons/lib/BedroomBabyTwoTone.js index 4810740ca707d2..448bb486858d9f 100644 --- a/packages/material-ui-icons/lib/BedroomBabyTwoTone.js +++ b/packages/material-ui-icons/lib/BedroomBabyTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zm2.45-9.5-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1c-1.87 1.87-4.36 2.9-7 2.9s-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.53 15.71-.03-.06-.81-1.41c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.16 14.96c-.39-.27-.76-.58-1.1-.92L5 15.1c1.87 1.87 4.36 2.9 7 2.9s5.13-1.03 7-2.9l-1.06-1.06c-.34.34-.71.64-1.1.92L16 13.5V11h1v-1h-5.62L9.65 7H6l1 .76L5.5 9.5l.95 1L8 9.51v3.99l-.84 1.46zm1.32.69.81-1.41c1.74.65 3.66.65 5.4 0l.81 1.41.03.06c-1.1.51-2.3.79-3.55.79s-2.43-.27-3.53-.79l.03-.06z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "3")], 'BedroomBabyTwoTone'); \ No newline at end of file +}, "3")], 'BedroomBabyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomChild.js b/packages/material-ui-icons/lib/BedroomChild.js index 0406a9c76fd87c..eb396f59e02475 100644 --- a/packages/material-ui-icons/lib/BedroomChild.js +++ b/packages/material-ui-icons/lib/BedroomChild.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8.5h6v2H9zm6.64 3.5H8.37c-.48 0-.87.39-.87.87h.01V14h9v-1.13c0-.48-.39-.87-.87-.87z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 15h-1.5v-1.5h-9V17H6v-4.13c0-1 .62-1.85 1.5-2.2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2v1.67c.88.35 1.5 1.2 1.5 2.2V17z" -}, "1")], 'BedroomChild'); \ No newline at end of file +}, "1")], 'BedroomChild'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomChildOutlined.js b/packages/material-ui-icons/lib/BedroomChildOutlined.js index cf7bf6c4fd4bcc..92c3b430c87b7b 100644 --- a/packages/material-ui-icons/lib/BedroomChildOutlined.js +++ b/packages/material-ui-icons/lib/BedroomChildOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3.5 8.67V9c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v1.67c-.88.35-1.5 1.2-1.5 2.2V17h1.5v-1.5h9V17H18v-4.13c0-1-.62-1.85-1.5-2.2zM15 8.5v2H9v-2h6zm-7.5 4.37c0-.48.39-.87.87-.87h7.27c.48 0 .87.39.87.87V14h-9v-1.13H7.5z" -}), 'BedroomChildOutlined'); \ No newline at end of file +}), 'BedroomChildOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomChildRounded.js b/packages/material-ui-icons/lib/BedroomChildRounded.js index 47557c0df734ce..1283bc5f8db2b7 100644 --- a/packages/material-ui-icons/lib/BedroomChildRounded.js +++ b/packages/material-ui-icons/lib/BedroomChildRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8.5h6v2H9zm6.64 3.5H8.37c-.48 0-.87.39-.87.87h.01V14h9v-1.13c0-.48-.39-.87-.87-.87z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2.75 15c-.41 0-.75-.34-.75-.75v-.75h-9v.75c0 .41-.34.75-.75.75S6 16.66 6 16.25v-3.38c0-1 .62-1.85 1.5-2.2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2v1.67c.88.35 1.5 1.2 1.5 2.2v3.38c0 .41-.34.75-.75.75z" -}, "1")], 'BedroomChildRounded'); \ No newline at end of file +}, "1")], 'BedroomChildRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomChildSharp.js b/packages/material-ui-icons/lib/BedroomChildSharp.js index 26fbfe5b53c27a..ab638d27bb96ce 100644 --- a/packages/material-ui-icons/lib/BedroomChildSharp.js +++ b/packages/material-ui-icons/lib/BedroomChildSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8.5h6v2H9zM7.51 12h9v2h-9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zm-4 15h-1.5v-1.5h-9V17H6v-6.32l1.5-.01V7h9v3.67H18V17z" -}, "1")], 'BedroomChildSharp'); \ No newline at end of file +}, "1")], 'BedroomChildSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomChildTwoTone.js b/packages/material-ui-icons/lib/BedroomChildTwoTone.js index a3af84abc2fb2a..be5b12d6825b5c 100644 --- a/packages/material-ui-icons/lib/BedroomChildTwoTone.js +++ b/packages/material-ui-icons/lib/BedroomChildTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zm2-7.13c0-1 .62-1.85 1.5-2.2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2v1.67c.88.35 1.5 1.2 1.5 2.2V17h-1.5v-1.5h-9V17H6v-4.13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 15.5h9V17H18v-4.13c0-1-.62-1.85-1.5-2.2V9c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v1.67c-.88.35-1.5 1.2-1.5 2.2V17h1.5v-1.5zm1.5-7h6v2H9v-2zM8.37 12h7.27c.48 0 .87.39.87.87V14h-9v-1.13H7.5c0-.48.39-.87.87-.87z" -}, "2")], 'BedroomChildTwoTone'); \ No newline at end of file +}, "2")], 'BedroomChildTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomParent.js b/packages/material-ui-icons/lib/BedroomParent.js index 2130a4e4c9adf9..4d864ca1135dcd 100644 --- a/packages/material-ui-icons/lib/BedroomParent.js +++ b/packages/material-ui-icons/lib/BedroomParent.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12h-9c-.55 0-1 .45-1 1v1h11v-1c0-.55-.45-1-1-1zM7.25 8.5h4v2h-4zm5.5 0h4v2h-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 15h-1.5v-1.5h-11V17H5v-3.83c0-.66.25-1.26.65-1.72V9c0-1.1.9-2 2-2H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h3.35c1.1 0 2 .9 2 2v2.45c.4.46.65 1.06.65 1.72V17z" -}, "1")], 'BedroomParent'); \ No newline at end of file +}, "1")], 'BedroomParent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomParentOutlined.js b/packages/material-ui-icons/lib/BedroomParentOutlined.js index 8eed9506c9f461..95c5e335dd7995 100644 --- a/packages/material-ui-icons/lib/BedroomParentOutlined.js +++ b/packages/material-ui-icons/lib/BedroomParentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.35 11.45V9c0-1.1-.9-2-2-2H13c-.37 0-.72.12-1 .32-.28-.2-.63-.32-1-.32H7.65c-1.1 0-2 .9-2 2v2.45c-.4.46-.65 1.06-.65 1.72V17h1.5v-1.5h11V17H19v-3.83c0-.66-.25-1.26-.65-1.72zm-1.6-.95h-4v-2h4v2zm-9.5-2h4v2h-4v-2zM17.5 14h-11v-1c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v1zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'BedroomParentOutlined'); \ No newline at end of file +}), 'BedroomParentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomParentRounded.js b/packages/material-ui-icons/lib/BedroomParentRounded.js index 84d3184c01da79..88888e92396d81 100644 --- a/packages/material-ui-icons/lib/BedroomParentRounded.js +++ b/packages/material-ui-icons/lib/BedroomParentRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12h-9c-.55 0-1 .45-1 1v1h11v-1c0-.55-.45-1-1-1zM7.25 8.5h4v2h-4zm5.5 0h4v2h-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1.75 15c-.41 0-.75-.34-.75-.75v-.75h-11v.75c0 .41-.34.75-.75.75S5 16.66 5 16.25v-3.08c0-.66.25-1.26.65-1.72V9c0-1.1.9-2 2-2H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h3.35c1.1 0 2 .9 2 2v2.45c.4.46.65 1.06.65 1.72v3.08c0 .41-.34.75-.75.75z" -}, "1")], 'BedroomParentRounded'); \ No newline at end of file +}, "1")], 'BedroomParentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomParentSharp.js b/packages/material-ui-icons/lib/BedroomParentSharp.js index ae2f5d9433b8f9..60027832b4ba01 100644 --- a/packages/material-ui-icons/lib/BedroomParentSharp.js +++ b/packages/material-ui-icons/lib/BedroomParentSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 12h11v2h-11zm.75-3.5h4v2h-4zm5.5 0h4v2h-4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zm-3 15h-1.5v-1.5h-11V17H5v-5l.65-.55V7H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h5.35v4.45L19 12v5z" -}, "1")], 'BedroomParentSharp'); \ No newline at end of file +}, "1")], 'BedroomParentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedroomParentTwoTone.js b/packages/material-ui-icons/lib/BedroomParentTwoTone.js index 41cd6aff9b9e62..e23382d22b7657 100644 --- a/packages/material-ui-icons/lib/BedroomParentTwoTone.js +++ b/packages/material-ui-icons/lib/BedroomParentTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zm1-6.83c0-.66.25-1.26.65-1.72V9c0-1.1.9-2 2-2H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h3.35c1.1 0 2 .9 2 2v2.45c.4.46.65 1.06.65 1.72V17h-1.5v-1.5h-11V17H5v-3.83z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 15.5h11V17H19v-3.83c0-.66-.25-1.26-.65-1.72V9c0-1.1-.9-2-2-2H13c-.37 0-.72.12-1 .32-.28-.2-.63-.32-1-.32H7.65c-1.1 0-2 .9-2 2v2.45c-.4.46-.65 1.06-.65 1.72V17h1.5v-1.5zm6.25-7h4v2h-4v-2zm-5.5 0h4v2h-4v-2zM6.5 13c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v1h-11v-1z" -}, "2")], 'BedroomParentTwoTone'); \ No newline at end of file +}, "2")], 'BedroomParentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bedtime.js b/packages/material-ui-icons/lib/Bedtime.js index 30b9729f075bc8..6df159049a3704 100644 --- a/packages/material-ui-icons/lib/Bedtime.js +++ b/packages/material-ui-icons/lib/Bedtime.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z" -}), 'Bedtime'); \ No newline at end of file +}), 'Bedtime'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedtimeOutlined.js b/packages/material-ui-icons/lib/BedtimeOutlined.js index fad8d8e0116ec1..4e78a6c170cba9 100644 --- a/packages/material-ui-icons/lib/BedtimeOutlined.js +++ b/packages/material-ui-icons/lib/BedtimeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.27 4.49c-1.63 7.54 3.75 12.41 7.66 13.8C15.54 19.38 13.81 20 12 20c-4.41 0-8-3.59-8-8 0-3.45 2.2-6.4 5.27-7.51m2.72-2.48C6.4 2.01 2 6.54 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.97h-.35z" -}), 'BedtimeOutlined'); \ No newline at end of file +}), 'BedtimeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedtimeRounded.js b/packages/material-ui-icons/lib/BedtimeRounded.js index d555109302b1e0..a9d36507568e47 100644 --- a/packages/material-ui-icons/lib/BedtimeRounded.js +++ b/packages/material-ui-icons/lib/BedtimeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.97 2.73c.16-.34-.12-.72-.5-.7-6 .3-10.47 5.83-9.28 11.96.78 4.03 4.09 7.22 8.14 7.87 4.07.66 7.77-1.14 9.87-4.15.21-.31.04-.75-.33-.79-6.74-.76-10.87-7.96-7.9-14.19z" -}), 'BedtimeRounded'); \ No newline at end of file +}), 'BedtimeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedtimeSharp.js b/packages/material-ui-icons/lib/BedtimeSharp.js index 69552f0e476a60..539c158e93639c 100644 --- a/packages/material-ui-icons/lib/BedtimeSharp.js +++ b/packages/material-ui-icons/lib/BedtimeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z" -}), 'BedtimeSharp'); \ No newline at end of file +}), 'BedtimeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BedtimeTwoTone.js b/packages/material-ui-icons/lib/BedtimeTwoTone.js index 6764f0fa2ffacd..fe52cb647a4e67 100644 --- a/packages/material-ui-icons/lib/BedtimeTwoTone.js +++ b/packages/material-ui-icons/lib/BedtimeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.27 4.49C6.2 5.6 4 8.55 4 12c0 4.41 3.59 8 8 8 1.81 0 3.54-.62 4.93-1.71-3.91-1.39-9.29-6.26-7.66-13.8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.34 2.02c-.12 0-.23-.01-.35-.01C6.4 2.01 2 6.54 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96zM12 20c-4.41 0-8-3.59-8-8 0-3.45 2.2-6.4 5.27-7.51-1.63 7.54 3.75 12.41 7.66 13.8C15.54 19.38 13.81 20 12 20z" -}, "1")], 'BedtimeTwoTone'); \ No newline at end of file +}, "1")], 'BedtimeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Beenhere.js b/packages/material-ui-icons/lib/Beenhere.js index 175229e0f4860d..5114b3a9f5107a 100644 --- a/packages/material-ui-icons/lib/Beenhere.js +++ b/packages/material-ui-icons/lib/Beenhere.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-9 15-5-5 1.41-1.41L10 13.17l7.59-7.59L19 7l-9 9z" -}), 'Beenhere'); \ No newline at end of file +}), 'Beenhere'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeenhereOutlined.js b/packages/material-ui-icons/lib/BeenhereOutlined.js index e3acfc3921007c..3ef7d04d512db1 100644 --- a/packages/material-ui-icons/lib/BeenhereOutlined.js +++ b/packages/material-ui-icons/lib/BeenhereOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42-2.58-2.59L6 12l4 4 8-8-1.42-1.42z" -}), 'BeenhereOutlined'); \ No newline at end of file +}), 'BeenhereOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeenhereRounded.js b/packages/material-ui-icons/lib/BeenhereRounded.js index b9739bd9f58360..b8d69f3f444053 100644 --- a/packages/material-ui-icons/lib/BeenhereRounded.js +++ b/packages/material-ui-icons/lib/BeenhereRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66l7.57 5.04c.34.22.77.22 1.11 0l7.56-5.04c.53-.36.88-.97.88-1.66V3c0-1.1-.9-2-2-2zm-.7 6.7-7.59 7.59c-.39.39-1.02.39-1.41 0L5.71 11.7c-.39-.39-.39-1.02 0-1.41s1.02-.39 1.41 0L10 13.17l6.88-6.88c.39-.39 1.02-.39 1.41 0s.4 1.02.01 1.41z" -}), 'BeenhereRounded'); \ No newline at end of file +}), 'BeenhereRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeenhereSharp.js b/packages/material-ui-icons/lib/BeenhereSharp.js index 11727620cf2e21..7a7eb00c5ebeff 100644 --- a/packages/material-ui-icons/lib/BeenhereSharp.js +++ b/packages/material-ui-icons/lib/BeenhereSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.01 1 3 17l9 6 8.99-6L21 1H3.01zM10 16l-5-5 1.41-1.42L10 13.17l7.59-7.59L19 7l-9 9z" -}), 'BeenhereSharp'); \ No newline at end of file +}), 'BeenhereSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BeenhereTwoTone.js b/packages/material-ui-icons/lib/BeenhereTwoTone.js index 6794f087501bf9..7a19c04c8479c3 100644 --- a/packages/material-ui-icons/lib/BeenhereTwoTone.js +++ b/packages/material-ui-icons/lib/BeenhereTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5v12.93l7 4.66 7-4.67V3zm-9 13-4-4 1.41-1.41 2.58 2.58 6.59-6.59L18 8l-8 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42-2.58-2.59L6 12l4 4 8-8-1.42-1.42z" -}, "1")], 'BeenhereTwoTone'); \ No newline at end of file +}, "1")], 'BeenhereTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bento.js b/packages/material-ui-icons/lib/Bento.js index 854536ed68a535..74baf1ea807221 100644 --- a/packages/material-ui-icons/lib/Bento.js +++ b/packages/material-ui-icons/lib/Bento.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11V5h4c1.1 0 2 .9 2 2v4h-6zm4 8c1.1 0 2-.9 2-2v-4h-6v6h4zM14 5v14H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h10zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" -}), 'Bento'); \ No newline at end of file +}), 'Bento'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BentoOutlined.js b/packages/material-ui-icons/lib/BentoOutlined.js index 93b435493c4e81..1c4b9f87c79b54 100644 --- a/packages/material-ui-icons/lib/BentoOutlined.js +++ b/packages/material-ui-icons/lib/BentoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 6h-6V7h6v4zM4 7h8v10H4V7zm10 10v-4h6v4h-6zm-4.5-5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" -}), 'BentoOutlined'); \ No newline at end of file +}), 'BentoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BentoRounded.js b/packages/material-ui-icons/lib/BentoRounded.js index 37d5426757a125..850e36bc8c6c52 100644 --- a/packages/material-ui-icons/lib/BentoRounded.js +++ b/packages/material-ui-icons/lib/BentoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11V5h4c1.1 0 2 .9 2 2v4h-6zm4 8c1.1 0 2-.9 2-2v-4h-6v6h4zM14 5v14H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h10zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" -}), 'BentoRounded'); \ No newline at end of file +}), 'BentoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BentoSharp.js b/packages/material-ui-icons/lib/BentoSharp.js index d42b1522699c3a..038bb019eb83ab 100644 --- a/packages/material-ui-icons/lib/BentoSharp.js +++ b/packages/material-ui-icons/lib/BentoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11V5h6v6h-6zm0 8h6v-6h-6v6zM14 5v14H2V5h12zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" -}), 'BentoSharp'); \ No newline at end of file +}), 'BentoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BentoTwoTone.js b/packages/material-ui-icons/lib/BentoTwoTone.js index 232225c60e701e..d760816e06b56b 100644 --- a/packages/material-ui-icons/lib/BentoTwoTone.js +++ b/packages/material-ui-icons/lib/BentoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h8V7H4v10zm4-6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm6 2.5h6v4h-6v-4zm6-6v4h-6V7h6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 6h-6V7h6v4zM4 7h8v10H4V7zm10 10v-4h6v4h-6zm-4.5-5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" -}, "1")], 'BentoTwoTone'); \ No newline at end of file +}, "1")], 'BentoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BikeScooter.js b/packages/material-ui-icons/lib/BikeScooter.js index 328b74d20b96cc..00de13c9de7516 100644 --- a/packages/material-ui-icons/lib/BikeScooter.js +++ b/packages/material-ui-icons/lib/BikeScooter.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm9-6h-.82l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 10.2 21.8 8 19 8zm0 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'BikeScooter'); \ No newline at end of file +}, "1")], 'BikeScooter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BikeScooterOutlined.js b/packages/material-ui-icons/lib/BikeScooterOutlined.js index b46496b63d041d..760ea25906fd98 100644 --- a/packages/material-ui-icons/lib/BikeScooterOutlined.js +++ b/packages/material-ui-icons/lib/BikeScooterOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm9-6h-.82l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 10.2 21.8 8 19 8zm0 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'BikeScooterOutlined'); \ No newline at end of file +}, "1")], 'BikeScooterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BikeScooterRounded.js b/packages/material-ui-icons/lib/BikeScooterRounded.js index 3292c78a785e44..942fd7c7719dc6 100644 --- a/packages/material-ui-icons/lib/BikeScooterRounded.js +++ b/packages/material-ui-icons/lib/BikeScooterRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H4c-.55 0-1 .45-1 1s.45 1 1 1h2.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm8.75-6h-.56l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H12c-.55 0-1 .45-1 1s.45 1 1 1h2.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 3.16.15 5.88-2.83 5.12-6.1C23.34 9.57 21.13 8 18.75 8zm.13 8c-1.54-.06-2.84-1.37-2.88-2.92-.02-.96.39-1.8 1.05-2.36l.62 1.7c.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28l-.63-1.73.01-.01c1.71-.04 3.07 1.29 3.07 3 0 1.72-1.38 3.06-3.12 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'BikeScooterRounded'); \ No newline at end of file +}, "1")], 'BikeScooterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BikeScooterSharp.js b/packages/material-ui-icons/lib/BikeScooterSharp.js index d3f62f52c7d9ea..584bd6fa82146b 100644 --- a/packages/material-ui-icons/lib/BikeScooterSharp.js +++ b/packages/material-ui-icons/lib/BikeScooterSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14h.74L8.47 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm8.18-6-1.83-5H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zm.82 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'BikeScooterSharp'); \ No newline at end of file +}, "1")], 'BikeScooterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BikeScooterTwoTone.js b/packages/material-ui-icons/lib/BikeScooterTwoTone.js index 5df991968eaa0e..0f08ab28d82bff 100644 --- a/packages/material-ui-icons/lib/BikeScooterTwoTone.js +++ b/packages/material-ui-icons/lib/BikeScooterTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm9-6h-.82l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 10.2 21.8 8 19 8zm0 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'BikeScooterTwoTone'); \ No newline at end of file +}, "1")], 'BikeScooterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Biotech.js b/packages/material-ui-icons/lib/Biotech.js index ece6c08bcec9f0..79fb27a98835a2 100644 --- a/packages/material-ui-icons/lib/Biotech.js +++ b/packages/material-ui-icons/lib/Biotech.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62C6.28 8.13 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.59 1.62.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.53-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.54z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10.5", cy: "8", r: "1.5" -}, "2")], 'Biotech'); \ No newline at end of file +}, "2")], 'Biotech'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BiotechOutlined.js b/packages/material-ui-icons/lib/BiotechOutlined.js index 4660b560833032..f27b4076d40d77 100644 --- a/packages/material-ui-icons/lib/BiotechOutlined.js +++ b/packages/material-ui-icons/lib/BiotechOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.47-2.57.41.59 1.06 1 1.83 1.06.7.06 1.36-.19 1.85-.62l.59 1.61.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.52-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.55c-1.17-.04-2.19.75-2.48 1.86C6.27 8.14 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7zm5.86-14.48 1.71 4.7-.94.34-1.71-4.7.94-.34zM10.5 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'BiotechOutlined'); \ No newline at end of file +}), 'BiotechOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BiotechRounded.js b/packages/material-ui-icons/lib/BiotechRounded.js index d32a4a7a183e30..1473a7f7c5a6ed 100644 --- a/packages/material-ui-icons/lib/BiotechRounded.js +++ b/packages/material-ui-icons/lib/BiotechRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62C6.28 8.13 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.25.68c.19.52.76.79 1.28.6.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28.52-.19.79-.76.6-1.28L14.1 3.54c-.19-.52-.76-.79-1.28-.6-.19-.52-.76-.79-1.28-.6-.52.19-.79.76-.6 1.28-.52.19-.79.76-.6 1.28l.22.61z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10.5", cy: "8", r: "1.5" -}, "2")], 'BiotechRounded'); \ No newline at end of file +}, "2")], 'BiotechRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BiotechSharp.js b/packages/material-ui-icons/lib/BiotechSharp.js index f48f4ae1ed5ed6..5207d014363af9 100644 --- a/packages/material-ui-icons/lib/BiotechSharp.js +++ b/packages/material-ui-icons/lib/BiotechSharp.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 19v-2h5v-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62C6.28 8.13 5 9.92 5 12c0 2.76 2.24 5 5 5v2H5v2h14v-2h-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.59 1.62.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.53-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.54z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10.5", cy: "8", r: "1.5" -}, "2")], 'BiotechSharp'); \ No newline at end of file +}, "2")], 'BiotechSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BiotechTwoTone.js b/packages/material-ui-icons/lib/BiotechTwoTone.js index 0120f10ba61eeb..1e94f021e55367 100644 --- a/packages/material-ui-icons/lib/BiotechTwoTone.js +++ b/packages/material-ui-icons/lib/BiotechTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.9247 4.8613.9397-.342 1.71 4.6985-.9397.342z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10.5", cy: "8", r: "1", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.47-2.57.41.59 1.06 1 1.83 1.06.7.06 1.36-.19 1.85-.62l.59 1.61.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.52-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.55c-1.17-.04-2.19.75-2.48 1.86C6.27 8.14 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7zm5.86-14.48 1.71 4.7-.94.34-1.71-4.7.94-.34zM10.5 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "2")], 'BiotechTwoTone'); \ No newline at end of file +}, "2")], 'BiotechTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Blender.js b/packages/material-ui-icons/lib/Blender.js index c263e5579b4f37..a82b9480d6b9c9 100644 --- a/packages/material-ui-icons/lib/Blender.js +++ b/packages/material-ui-icons/lib/Blender.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z" -}), 'Blender'); \ No newline at end of file +}), 'Blender'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlenderOutlined.js b/packages/material-ui-icons/lib/BlenderOutlined.js index bb0afb3f445c6c..9c9cbdd7ad1e79 100644 --- a/packages/material-ui-icons/lib/BlenderOutlined.js +++ b/packages/material-ui-icons/lib/BlenderOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm10.67-4-1.38 9H9.72L8.33 5h7.34zM16 20H8v-1c0-1.65 1.35-3 3-3h2c1.65 0 3 1.35 3 3v1z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "18", r: "1" -}, "1")], 'BlenderOutlined'); \ No newline at end of file +}, "1")], 'BlenderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlenderRounded.js b/packages/material-ui-icons/lib/BlenderRounded.js index beb60266e4a0e6..6e249b36cbdcfc 100644 --- a/packages/material-ui-icons/lib/BlenderRounded.js +++ b/packages/material-ui-icons/lib/BlenderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.13 15.13 1.69-10.98c.1-.6-.37-1.15-.99-1.15H14c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z" -}), 'BlenderRounded'); \ No newline at end of file +}), 'BlenderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlenderSharp.js b/packages/material-ui-icons/lib/BlenderSharp.js index b442a421385ef8..c8a5ede1d55315 100644 --- a/packages/material-ui-icons/lib/BlenderSharp.js +++ b/packages/material-ui-icons/lib/BlenderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3h-4V2h-4v1H3v8h4.23l.64 4.13L6 17v5h12v-5l-1.87-1.87L18 3zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z" -}), 'BlenderSharp'); \ No newline at end of file +}), 'BlenderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlenderTwoTone.js b/packages/material-ui-icons/lib/BlenderTwoTone.js index 224e444d448ed9..d842bbce592c82 100644 --- a/packages/material-ui-icons/lib/BlenderTwoTone.js +++ b/packages/material-ui-icons/lib/BlenderTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 16h-2c-1.65 0-3 1.35-3 3v1h8v-1c0-1.65-1.35-3-3-3zm-1 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm10.67-4-1.38 9H9.72L8.33 5h7.34zM16 20H8v-1c0-1.65 1.35-3 3-3h2c1.65 0 3 1.35 3 3v1z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "18", r: "1" -}, "2")], 'BlenderTwoTone'); \ No newline at end of file +}, "2")], 'BlenderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Block.js b/packages/material-ui-icons/lib/Block.js index ac041dda0b0cd4..835df0de9cdf9e 100644 --- a/packages/material-ui-icons/lib/Block.js +++ b/packages/material-ui-icons/lib/Block.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" -}), 'Block'); \ No newline at end of file +}), 'Block'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlockOutlined.js b/packages/material-ui-icons/lib/BlockOutlined.js index f2e10dec2c3ec8..c67f6612f3a0b2 100644 --- a/packages/material-ui-icons/lib/BlockOutlined.js +++ b/packages/material-ui-icons/lib/BlockOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" -}), 'BlockOutlined'); \ No newline at end of file +}), 'BlockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlockRounded.js b/packages/material-ui-icons/lib/BlockRounded.js index 9435403fb6df2b..c2fd53627a909d 100644 --- a/packages/material-ui-icons/lib/BlockRounded.js +++ b/packages/material-ui-icons/lib/BlockRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" -}), 'BlockRounded'); \ No newline at end of file +}), 'BlockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlockSharp.js b/packages/material-ui-icons/lib/BlockSharp.js index cfd2c43bdfe74e..a3e91c8f8a9b5c 100644 --- a/packages/material-ui-icons/lib/BlockSharp.js +++ b/packages/material-ui-icons/lib/BlockSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" -}), 'BlockSharp'); \ No newline at end of file +}), 'BlockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlockTwoTone.js b/packages/material-ui-icons/lib/BlockTwoTone.js index 16257f2541793f..6aee5f9760fc6d 100644 --- a/packages/material-ui-icons/lib/BlockTwoTone.js +++ b/packages/material-ui-icons/lib/BlockTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" -}), 'BlockTwoTone'); \ No newline at end of file +}), 'BlockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bloodtype.js b/packages/material-ui-icons/lib/Bloodtype.js index cb04b990f9190d..1f22672a0d4b5d 100644 --- a/packages/material-ui-icons/lib/Bloodtype.js +++ b/packages/material-ui-icons/lib/Bloodtype.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm3 16H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z" -}), 'Bloodtype'); \ No newline at end of file +}), 'Bloodtype'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BloodtypeOutlined.js b/packages/material-ui-icons/lib/BloodtypeOutlined.js index f94c3a14157034..1e56c5b116ff43 100644 --- a/packages/material-ui-icons/lib/BloodtypeOutlined.js +++ b/packages/material-ui-icons/lib/BloodtypeOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6v2H9zm4-7h-2v2H9v2h2v2h2v-2h2v-2h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm0 18c-3.35 0-6-2.57-6-6.2 0-2.34 1.95-5.44 6-9.14 4.05 3.7 6 6.79 6 9.14 0 3.63-2.65 6.2-6 6.2z" -}, "1")], 'BloodtypeOutlined'); \ No newline at end of file +}, "1")], 'BloodtypeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BloodtypeRounded.js b/packages/material-ui-icons/lib/BloodtypeRounded.js index a79d0da692de9c..0c0ca324c0fd41 100644 --- a/packages/material-ui-icons/lib/BloodtypeRounded.js +++ b/packages/material-ui-icons/lib/BloodtypeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.66 2.58c-.38-.33-.95-.33-1.33 0C6.45 6.88 4 10.62 4 13.8c0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.18-2.45-6.92-7.34-11.22zM14 18h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm0-5h-1v1c0 .55-.45 1-1 1s-1-.45-1-1v-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'BloodtypeRounded'); \ No newline at end of file +}), 'BloodtypeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BloodtypeSharp.js b/packages/material-ui-icons/lib/BloodtypeSharp.js index 3cc3a2555cdac5..a5689d9ae6af44 100644 --- a/packages/material-ui-icons/lib/BloodtypeSharp.js +++ b/packages/material-ui-icons/lib/BloodtypeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm3 16H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z" -}), 'BloodtypeSharp'); \ No newline at end of file +}), 'BloodtypeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BloodtypeTwoTone.js b/packages/material-ui-icons/lib/BloodtypeTwoTone.js index 4c7101a38ea721..f33b78f443e60c 100644 --- a/packages/material-ui-icons/lib/BloodtypeTwoTone.js +++ b/packages/material-ui-icons/lib/BloodtypeTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.67c-4.05 3.7-6 6.79-6 9.14 0 3.63 2.65 6.2 6 6.2s6-2.57 6-6.2c0-2.35-1.95-5.45-6-9.14zM15 18H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6v2H9zm4-7h-2v2H9v2h2v2h2v-2h2v-2h-2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm0 18c-3.35 0-6-2.57-6-6.2 0-2.34 1.95-5.44 6-9.14 4.05 3.7 6 6.79 6 9.14 0 3.63-2.65 6.2-6 6.2z" -}, "2")], 'BloodtypeTwoTone'); \ No newline at end of file +}, "2")], 'BloodtypeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bluetooth.js b/packages/material-ui-icons/lib/Bluetooth.js index 247c069ceae2ea..e6def4804c3c78 100644 --- a/packages/material-ui-icons/lib/Bluetooth.js +++ b/packages/material-ui-icons/lib/Bluetooth.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" -}), 'Bluetooth'); \ No newline at end of file +}), 'Bluetooth'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothAudio.js b/packages/material-ui-icons/lib/BluetoothAudio.js index a25fe72f43cc9c..25c7e0286c49ff 100644 --- a/packages/material-ui-icons/lib/BluetoothAudio.js +++ b/packages/material-ui-icons/lib/BluetoothAudio.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothAudio'); \ No newline at end of file +}), 'BluetoothAudio'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothAudioOutlined.js b/packages/material-ui-icons/lib/BluetoothAudioOutlined.js index f7eb5fe4470693..270a4bb74646ae 100644 --- a/packages/material-ui-icons/lib/BluetoothAudioOutlined.js +++ b/packages/material-ui-icons/lib/BluetoothAudioOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothAudioOutlined'); \ No newline at end of file +}), 'BluetoothAudioOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothAudioRounded.js b/packages/material-ui-icons/lib/BluetoothAudioRounded.js index 48be88c8c0c551..a366765e397b03 100644 --- a/packages/material-ui-icons/lib/BluetoothAudioRounded.js +++ b/packages/material-ui-icons/lib/BluetoothAudioRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.98 10.28-1.38 1.38c-.2.2-.2.51 0 .71l1.38 1.38c.28.28.75.15.85-.23.11-.5.17-1 .17-1.52 0-.51-.06-1.01-.18-1.48-.09-.38-.56-.52-.84-.24zm4.12-2.5c-.25-.55-.98-.67-1.4-.24-.26.26-.31.64-.17.98.46 1.07.72 2.24.72 3.47 0 1.24-.26 2.42-.73 3.49-.14.32-.09.69.16.94.41.41 1.1.29 1.35-.23.63-1.3.98-2.76.98-4.3-.01-1.45-.33-2.85-.91-4.11zM11.39 12l3.59-3.58c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.18-1.71.71V9.6L5.09 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L8.57 12l-4.89 4.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l3.89-3.89v6.18c0 .89 1.08 1.34 1.71.71l4.3-4.3c.39-.39.39-1.02 0-1.42L11.39 12zm-.41-6.17 1.88 1.88-1.88 1.88V5.83zm0 12.34v-3.76l1.88 1.88-1.88 1.88z" -}), 'BluetoothAudioRounded'); \ No newline at end of file +}), 'BluetoothAudioRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothAudioSharp.js b/packages/material-ui-icons/lib/BluetoothAudioSharp.js index 4a52b8c7faad84..cec51252140e5a 100644 --- a/packages/material-ui-icons/lib/BluetoothAudioSharp.js +++ b/packages/material-ui-icons/lib/BluetoothAudioSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothAudioSharp'); \ No newline at end of file +}), 'BluetoothAudioSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothAudioTwoTone.js b/packages/material-ui-icons/lib/BluetoothAudioTwoTone.js index 5e425d9fc99cbd..060fb31256b3b5 100644 --- a/packages/material-ui-icons/lib/BluetoothAudioTwoTone.js +++ b/packages/material-ui-icons/lib/BluetoothAudioTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothAudioTwoTone'); \ No newline at end of file +}), 'BluetoothAudioTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothConnected.js b/packages/material-ui-icons/lib/BluetoothConnected.js index 0dd783b9432b4e..f4ec392422662e 100644 --- a/packages/material-ui-icons/lib/BluetoothConnected.js +++ b/packages/material-ui-icons/lib/BluetoothConnected.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" -}), 'BluetoothConnected'); \ No newline at end of file +}), 'BluetoothConnected'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothConnectedOutlined.js b/packages/material-ui-icons/lib/BluetoothConnectedOutlined.js index 6231fd13f8ec46..412002b34c5516 100644 --- a/packages/material-ui-icons/lib/BluetoothConnectedOutlined.js +++ b/packages/material-ui-icons/lib/BluetoothConnectedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" -}), 'BluetoothConnectedOutlined'); \ No newline at end of file +}), 'BluetoothConnectedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothConnectedRounded.js b/packages/material-ui-icons/lib/BluetoothConnectedRounded.js index fb21dc9c17600f..42487f6288cb49 100644 --- a/packages/material-ui-icons/lib/BluetoothConnectedRounded.js +++ b/packages/material-ui-icons/lib/BluetoothConnectedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c.55-.55.55-1.44 0-1.99V11c-.55-.55-1.45-.55-2 0s-.55 1.45 0 2 1.45.55 2 0zm14-2c-.56-.56-1.45-.56-2-.01V11c-.55.55-.55 1.44 0 1.99V13c.55.55 1.44.55 1.99 0H20c.55-.55.55-1.45 0-2zm-3-4-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71L17 17c.39-.39.39-1.02 0-1.42L13.41 12 17 8.42c.39-.39.39-1.03 0-1.42zm-2.12 9.29L13 18.17v-3.76l1.88 1.88zM13 9.59V5.83l1.88 1.88L13 9.59z" -}), 'BluetoothConnectedRounded'); \ No newline at end of file +}), 'BluetoothConnectedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothConnectedSharp.js b/packages/material-ui-icons/lib/BluetoothConnectedSharp.js index 98504f33654bed..b8c3aa2f1dbf72 100644 --- a/packages/material-ui-icons/lib/BluetoothConnectedSharp.js +++ b/packages/material-ui-icons/lib/BluetoothConnectedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" -}), 'BluetoothConnectedSharp'); \ No newline at end of file +}), 'BluetoothConnectedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothConnectedTwoTone.js b/packages/material-ui-icons/lib/BluetoothConnectedTwoTone.js index d58d804d97b750..dc638804cbcb72 100644 --- a/packages/material-ui-icons/lib/BluetoothConnectedTwoTone.js +++ b/packages/material-ui-icons/lib/BluetoothConnectedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" -}), 'BluetoothConnectedTwoTone'); \ No newline at end of file +}), 'BluetoothConnectedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDisabled.js b/packages/material-ui-icons/lib/BluetoothDisabled.js index 73ac217755e9c6..b6723c389a0dea 100644 --- a/packages/material-ui-icons/lib/BluetoothDisabled.js +++ b/packages/material-ui-icons/lib/BluetoothDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" -}), 'BluetoothDisabled'); \ No newline at end of file +}), 'BluetoothDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDisabledOutlined.js b/packages/material-ui-icons/lib/BluetoothDisabledOutlined.js index c6cc44ac91236a..99d27e026e3397 100644 --- a/packages/material-ui-icons/lib/BluetoothDisabledOutlined.js +++ b/packages/material-ui-icons/lib/BluetoothDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" -}), 'BluetoothDisabledOutlined'); \ No newline at end of file +}), 'BluetoothDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDisabledRounded.js b/packages/material-ui-icons/lib/BluetoothDisabledRounded.js index 68d766bf218149..a004d8120bd9fc 100644 --- a/packages/material-ui-icons/lib/BluetoothDisabledRounded.js +++ b/packages/material-ui-icons/lib/BluetoothDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.29 17.89 6.11 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71l3.59-3.59 1.59 1.59c.39.39 1.02.39 1.41 0 .38-.39.38-1.03-.01-1.41zm-6.29.28v-3.76l1.88 1.88L13 18.17zm0-12.34 1.88 1.88-1.47 1.47 1.41 1.41L17 8.42c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v3.36l2 2V5.83z" -}), 'BluetoothDisabledRounded'); \ No newline at end of file +}), 'BluetoothDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDisabledSharp.js b/packages/material-ui-icons/lib/BluetoothDisabledSharp.js index fd33290028deb8..d16d506220f941 100644 --- a/packages/material-ui-icons/lib/BluetoothDisabledSharp.js +++ b/packages/material-ui-icons/lib/BluetoothDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" -}), 'BluetoothDisabledSharp'); \ No newline at end of file +}), 'BluetoothDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDisabledTwoTone.js b/packages/material-ui-icons/lib/BluetoothDisabledTwoTone.js index 43ecbf024a2cf7..292ee6b4e1865a 100644 --- a/packages/material-ui-icons/lib/BluetoothDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/BluetoothDisabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" -}), 'BluetoothDisabledTwoTone'); \ No newline at end of file +}), 'BluetoothDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDrive.js b/packages/material-ui-icons/lib/BluetoothDrive.js index e9efd759bf791b..68cf6dc8ffda79 100644 --- a/packages/material-ui-icons/lib/BluetoothDrive.js +++ b/packages/material-ui-icons/lib/BluetoothDrive.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" -}, "1")], 'BluetoothDrive'); \ No newline at end of file +}, "1")], 'BluetoothDrive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDriveOutlined.js b/packages/material-ui-icons/lib/BluetoothDriveOutlined.js index 54449cfe7f61c5..d1c0178c3ba096 100644 --- a/packages/material-ui-icons/lib/BluetoothDriveOutlined.js +++ b/packages/material-ui-icons/lib/BluetoothDriveOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "14.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17H4v-5h11v-2H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8h-2v5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" -}, "3")], 'BluetoothDriveOutlined'); \ No newline at end of file +}, "3")], 'BluetoothDriveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDriveRounded.js b/packages/material-ui-icons/lib/BluetoothDriveRounded.js index 0042554d0bf8dc..8aae9af1c9caa9 100644 --- a/packages/material-ui-icons/lib/BluetoothDriveRounded.js +++ b/packages/material-ui-icons/lib/BluetoothDriveRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.85 6 1.8-1.8c.2-.2.2-.51 0-.71L19.5 1.36c-.32-.31-.85-.09-.85.35v3.08L16.7 2.85c-.19-.19-.51-.19-.7 0-.19.19-.19.51 0 .7L18.44 6 16 8.44c-.19.19-.19.5 0 .7.19.2.51.2.7 0l1.95-1.95v3.09c0 .45.54.67.85.35l2.14-2.15c.2-.2.19-.51 0-.71L19.85 6zm-.2-3.09.94.94-.94.94V2.91zm0 6.17V7.2l.94.94-.94.94z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v7.5c0 .83.67 1.5 1.5 1.5S5 20.33 5 19.5V19h12v.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V12h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'BluetoothDriveRounded'); \ No newline at end of file +}, "1")], 'BluetoothDriveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDriveSharp.js b/packages/material-ui-icons/lib/BluetoothDriveSharp.js index 4d576bebecc8ca..2df5a4ca8c3ca3 100644 --- a/packages/material-ui-icons/lib/BluetoothDriveSharp.js +++ b/packages/material-ui-icons/lib/BluetoothDriveSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10H4.81l1.04-3H15V5H4.43L2 12v9h3v-2h12v2h3v-9h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" -}, "1")], 'BluetoothDriveSharp'); \ No newline at end of file +}, "1")], 'BluetoothDriveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothDriveTwoTone.js b/packages/material-ui-icons/lib/BluetoothDriveTwoTone.js index 33ce37739c56ca..70ada3d49fa914 100644 --- a/packages/material-ui-icons/lib/BluetoothDriveTwoTone.js +++ b/packages/material-ui-icons/lib/BluetoothDriveTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h14v-5H4v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S7.33 16 6.5 16 5 15.33 5 14.5 5.67 13 6.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17H4v-5h13c-1.1 0-2-.9-2-2H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8h-2v5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" -}, "4")], 'BluetoothDriveTwoTone'); \ No newline at end of file +}, "4")], 'BluetoothDriveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothOutlined.js b/packages/material-ui-icons/lib/BluetoothOutlined.js index 58d28b4f3cd21b..661ed533b71442 100644 --- a/packages/material-ui-icons/lib/BluetoothOutlined.js +++ b/packages/material-ui-icons/lib/BluetoothOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" -}), 'BluetoothOutlined'); \ No newline at end of file +}), 'BluetoothOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothRounded.js b/packages/material-ui-icons/lib/BluetoothRounded.js index 8c3f55c7fcb8cf..f74d7327186519 100644 --- a/packages/material-ui-icons/lib/BluetoothRounded.js +++ b/packages/material-ui-icons/lib/BluetoothRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 7-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71L17 17c.39-.39.39-1.02 0-1.41L13.41 12 17 8.42c.39-.39.39-1.03 0-1.42zm-4-1.17 1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" -}), 'BluetoothRounded'); \ No newline at end of file +}), 'BluetoothRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothSearching.js b/packages/material-ui-icons/lib/BluetoothSearching.js index 42ccfc57885805..a34ef1e1d42f91 100644 --- a/packages/material-ui-icons/lib/BluetoothSearching.js +++ b/packages/material-ui-icons/lib/BluetoothSearching.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothSearching'); \ No newline at end of file +}), 'BluetoothSearching'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothSearchingOutlined.js b/packages/material-ui-icons/lib/BluetoothSearchingOutlined.js index 47405afa1b6d9b..68e2022b2dc208 100644 --- a/packages/material-ui-icons/lib/BluetoothSearchingOutlined.js +++ b/packages/material-ui-icons/lib/BluetoothSearchingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothSearchingOutlined'); \ No newline at end of file +}), 'BluetoothSearchingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothSearchingRounded.js b/packages/material-ui-icons/lib/BluetoothSearchingRounded.js index 1be2040f156eb8..51adbf48a28e63 100644 --- a/packages/material-ui-icons/lib/BluetoothSearchingRounded.js +++ b/packages/material-ui-icons/lib/BluetoothSearchingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.98 10.28-1.38 1.38c-.2.2-.2.51 0 .71l1.38 1.38c.28.28.75.15.85-.23.11-.5.17-1 .17-1.52 0-.51-.06-1.01-.18-1.48-.09-.38-.56-.52-.84-.24zm4.12-2.5c-.25-.55-.98-.67-1.4-.24-.26.26-.31.64-.17.98.46 1.07.72 2.24.72 3.47 0 1.24-.26 2.42-.73 3.49-.14.32-.09.69.16.94.41.41 1.1.29 1.35-.23.63-1.3.98-2.76.98-4.3-.01-1.45-.33-2.85-.91-4.11zM11.41 12 15 8.42c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L5.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L8.59 12 3.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L9 14.41v6.18c0 .89 1.08 1.34 1.71.71L15 17c.39-.39.39-1.02 0-1.42L11.41 12zM11 5.83l1.88 1.88L11 9.59V5.83zm0 12.34v-3.76l1.88 1.88L11 18.17z" -}), 'BluetoothSearchingRounded'); \ No newline at end of file +}), 'BluetoothSearchingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothSearchingSharp.js b/packages/material-ui-icons/lib/BluetoothSearchingSharp.js index eb47938fc20c5c..66e41806e2a053 100644 --- a/packages/material-ui-icons/lib/BluetoothSearchingSharp.js +++ b/packages/material-ui-icons/lib/BluetoothSearchingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothSearchingSharp'); \ No newline at end of file +}), 'BluetoothSearchingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothSearchingTwoTone.js b/packages/material-ui-icons/lib/BluetoothSearchingTwoTone.js index d167c62737241a..4004a6972539b0 100644 --- a/packages/material-ui-icons/lib/BluetoothSearchingTwoTone.js +++ b/packages/material-ui-icons/lib/BluetoothSearchingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" -}), 'BluetoothSearchingTwoTone'); \ No newline at end of file +}), 'BluetoothSearchingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothSharp.js b/packages/material-ui-icons/lib/BluetoothSharp.js index 214fbd44ac3317..1f3f54a6142613 100644 --- a/packages/material-ui-icons/lib/BluetoothSharp.js +++ b/packages/material-ui-icons/lib/BluetoothSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" -}), 'BluetoothSharp'); \ No newline at end of file +}), 'BluetoothSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BluetoothTwoTone.js b/packages/material-ui-icons/lib/BluetoothTwoTone.js index b96f1a26f1684e..3b1ef693e0bd1c 100644 --- a/packages/material-ui-icons/lib/BluetoothTwoTone.js +++ b/packages/material-ui-icons/lib/BluetoothTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" -}), 'BluetoothTwoTone'); \ No newline at end of file +}), 'BluetoothTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurCircular.js b/packages/material-ui-icons/lib/BlurCircular.js index 356c19343452a3..5dbf4a9d93464e 100644 --- a/packages/material-ui-icons/lib/BlurCircular.js +++ b/packages/material-ui-icons/lib/BlurCircular.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'BlurCircular'); \ No newline at end of file +}), 'BlurCircular'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurCircularOutlined.js b/packages/material-ui-icons/lib/BlurCircularOutlined.js index f9b79a0e312214..987739fdf76ab2 100644 --- a/packages/material-ui-icons/lib/BlurCircularOutlined.js +++ b/packages/material-ui-icons/lib/BlurCircularOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'BlurCircularOutlined'); \ No newline at end of file +}), 'BlurCircularOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurCircularRounded.js b/packages/material-ui-icons/lib/BlurCircularRounded.js index a1a7947433ab5e..d9b93e78172bdf 100644 --- a/packages/material-ui-icons/lib/BlurCircularRounded.js +++ b/packages/material-ui-icons/lib/BlurCircularRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'BlurCircularRounded'); \ No newline at end of file +}), 'BlurCircularRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurCircularSharp.js b/packages/material-ui-icons/lib/BlurCircularSharp.js index bc965282da316d..a8890e6d33be88 100644 --- a/packages/material-ui-icons/lib/BlurCircularSharp.js +++ b/packages/material-ui-icons/lib/BlurCircularSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'BlurCircularSharp'); \ No newline at end of file +}), 'BlurCircularSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurCircularTwoTone.js b/packages/material-ui-icons/lib/BlurCircularTwoTone.js index 755769a90e6122..781b37c9e88564 100644 --- a/packages/material-ui-icons/lib/BlurCircularTwoTone.js +++ b/packages/material-ui-icons/lib/BlurCircularTwoTone.js @@ -1,27 +1,40 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "10", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "14", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "10", r: "1" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "14", r: "1" -}, "6"), /*#__PURE__*/_jsx("path", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm4 9c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0 4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "7")], 'BlurCircularTwoTone'); \ No newline at end of file +}, "7")], 'BlurCircularTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurLinear.js b/packages/material-ui-icons/lib/BlurLinear.js index 9144d499412a41..bb2bf9be9c186b 100644 --- a/packages/material-ui-icons/lib/BlurLinear.js +++ b/packages/material-ui-icons/lib/BlurLinear.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'BlurLinear'); \ No newline at end of file +}), 'BlurLinear'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurLinearOutlined.js b/packages/material-ui-icons/lib/BlurLinearOutlined.js index 31850f99d800e9..63d30dd4624775 100644 --- a/packages/material-ui-icons/lib/BlurLinearOutlined.js +++ b/packages/material-ui-icons/lib/BlurLinearOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'BlurLinearOutlined'); \ No newline at end of file +}), 'BlurLinearOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurLinearRounded.js b/packages/material-ui-icons/lib/BlurLinearRounded.js index bc647dd5c9af0f..34df94c739b43d 100644 --- a/packages/material-ui-icons/lib/BlurLinearRounded.js +++ b/packages/material-ui-icons/lib/BlurLinearRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm14 4.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'BlurLinearRounded'); \ No newline at end of file +}), 'BlurLinearRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurLinearSharp.js b/packages/material-ui-icons/lib/BlurLinearSharp.js index f0a3cd7019c598..35eb85d43e687b 100644 --- a/packages/material-ui-icons/lib/BlurLinearSharp.js +++ b/packages/material-ui-icons/lib/BlurLinearSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'BlurLinearSharp'); \ No newline at end of file +}), 'BlurLinearSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurLinearTwoTone.js b/packages/material-ui-icons/lib/BlurLinearTwoTone.js index bf6c87bb18c056..2f6d040741667e 100644 --- a/packages/material-ui-icons/lib/BlurLinearTwoTone.js +++ b/packages/material-ui-icons/lib/BlurLinearTwoTone.js @@ -1,49 +1,62 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "12", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "8", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "16", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "12", r: "1" -}, "5"), /*#__PURE__*/_jsx("path", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3z" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5", cy: "8", r: "1.5" -}, "7"), /*#__PURE__*/_jsx("circle", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5", cy: "12", r: "1.5" -}, "8"), /*#__PURE__*/_jsx("circle", { +}, "8"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5", cy: "16", r: "1.5" -}, "9"), /*#__PURE__*/_jsx("path", { +}, "9"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "10"), /*#__PURE__*/_jsx("circle", { +}, "10"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "16", r: "1" -}, "11"), /*#__PURE__*/_jsx("circle", { +}, "11"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "1" -}, "12"), /*#__PURE__*/_jsx("path", { +}, "12"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18v2H3z" -}, "13")], 'BlurLinearTwoTone'); \ No newline at end of file +}, "13")], 'BlurLinearTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOff.js b/packages/material-ui-icons/lib/BlurOff.js index 9019e6dded5fc0..e1ffa63647afa0 100644 --- a/packages/material-ui-icons/lib/BlurOff.js +++ b/packages/material-ui-icons/lib/BlurOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-.2 4.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm11 7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM2.5 5.27l3.78 3.78L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27zM10 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm11-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}), 'BlurOff'); \ No newline at end of file +}), 'BlurOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOffOutlined.js b/packages/material-ui-icons/lib/BlurOffOutlined.js index 55eb22c762e3c5..0fb286e8984caa 100644 --- a/packages/material-ui-icons/lib/BlurOffOutlined.js +++ b/packages/material-ui-icons/lib/BlurOffOutlined.js @@ -1,45 +1,58 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "6", r: "1" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "10", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "6", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "14", r: "1" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "18", r: "1" -}, "7"), /*#__PURE__*/_jsx("path", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "8"), /*#__PURE__*/_jsx("circle", { +}, "8"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "18", r: "1" -}, "9"), /*#__PURE__*/_jsx("path", { +}, "9"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "10"), /*#__PURE__*/_jsx("circle", { +}, "10"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "14", r: "1" -}, "11"), /*#__PURE__*/_jsx("path", { +}, "11"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 5.27 6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" -}, "12")], 'BlurOffOutlined'); \ No newline at end of file +}, "12")], 'BlurOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOffRounded.js b/packages/material-ui-icons/lib/BlurOffRounded.js index d9a72e3f686fa8..1093507eebfcbc 100644 --- a/packages/material-ui-icons/lib/BlurOffRounded.js +++ b/packages/material-ui-icons/lib/BlurOffRounded.js @@ -1,45 +1,58 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "6", r: "1" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "10", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "6", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "14", r: "1" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "18", r: "1" -}, "7"), /*#__PURE__*/_jsx("path", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "8"), /*#__PURE__*/_jsx("circle", { +}, "8"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "18", r: "1" -}, "9"), /*#__PURE__*/_jsx("path", { +}, "9"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "10"), /*#__PURE__*/_jsx("circle", { +}, "10"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "14", r: "1" -}, "11"), /*#__PURE__*/_jsx("path", { +}, "11"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.21 4.56c-.39.39-.39 1.02 0 1.41l3.07 3.07L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.08 3.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.42L4.62 4.56a.9959.9959 0 0 0-1.41 0z" -}, "12")], 'BlurOffRounded'); \ No newline at end of file +}, "12")], 'BlurOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOffSharp.js b/packages/material-ui-icons/lib/BlurOffSharp.js index 273bffefb28b89..16c27f202f477b 100644 --- a/packages/material-ui-icons/lib/BlurOffSharp.js +++ b/packages/material-ui-icons/lib/BlurOffSharp.js @@ -1,45 +1,58 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "6", r: "1" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "10", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "6", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "14", r: "1" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "18", r: "1" -}, "7"), /*#__PURE__*/_jsx("path", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "8"), /*#__PURE__*/_jsx("circle", { +}, "8"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "18", r: "1" -}, "9"), /*#__PURE__*/_jsx("path", { +}, "9"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "10"), /*#__PURE__*/_jsx("circle", { +}, "10"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "14", r: "1" -}, "11"), /*#__PURE__*/_jsx("path", { +}, "11"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 5.27 6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" -}, "12")], 'BlurOffSharp'); \ No newline at end of file +}, "12")], 'BlurOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOffTwoTone.js b/packages/material-ui-icons/lib/BlurOffTwoTone.js index 1b1c1d24a28257..1f4663e8d5810e 100644 --- a/packages/material-ui-icons/lib/BlurOffTwoTone.js +++ b/packages/material-ui-icons/lib/BlurOffTwoTone.js @@ -1,45 +1,58 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "6", r: "1" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "10", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "6", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "14", r: "1" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "18", r: "1" -}, "7"), /*#__PURE__*/_jsx("path", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "8"), /*#__PURE__*/_jsx("circle", { +}, "8"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "18", r: "1" -}, "9"), /*#__PURE__*/_jsx("path", { +}, "9"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" -}, "10"), /*#__PURE__*/_jsx("circle", { +}, "10"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "14", r: "1" -}, "11"), /*#__PURE__*/_jsx("path", { +}, "11"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 5.27 6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" -}, "12")], 'BlurOffTwoTone'); \ No newline at end of file +}, "12")], 'BlurOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOn.js b/packages/material-ui-icons/lib/BlurOn.js index e6c0a189869696..637eae0c187066 100644 --- a/packages/material-ui-icons/lib/BlurOn.js +++ b/packages/material-ui-icons/lib/BlurOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'BlurOn'); \ No newline at end of file +}), 'BlurOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOnOutlined.js b/packages/material-ui-icons/lib/BlurOnOutlined.js index cf772e45d40e30..7399168c9f8348 100644 --- a/packages/material-ui-icons/lib/BlurOnOutlined.js +++ b/packages/material-ui-icons/lib/BlurOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'BlurOnOutlined'); \ No newline at end of file +}), 'BlurOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOnRounded.js b/packages/material-ui-icons/lib/BlurOnRounded.js index dd2d60d1c79485..8fac5440c68b93 100644 --- a/packages/material-ui-icons/lib/BlurOnRounded.js +++ b/packages/material-ui-icons/lib/BlurOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'BlurOnRounded'); \ No newline at end of file +}), 'BlurOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOnSharp.js b/packages/material-ui-icons/lib/BlurOnSharp.js index d5076292bdbe03..e258890d854018 100644 --- a/packages/material-ui-icons/lib/BlurOnSharp.js +++ b/packages/material-ui-icons/lib/BlurOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'BlurOnSharp'); \ No newline at end of file +}), 'BlurOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BlurOnTwoTone.js b/packages/material-ui-icons/lib/BlurOnTwoTone.js index 9693f8554aea8b..b5075efc70e9d5 100644 --- a/packages/material-ui-icons/lib/BlurOnTwoTone.js +++ b/packages/material-ui-icons/lib/BlurOnTwoTone.js @@ -1,77 +1,90 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "10", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "18", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "14", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zM21 14.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "18", r: "1" -}, "5"), /*#__PURE__*/_jsx("path", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5zM21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "14", r: "1" -}, "7"), /*#__PURE__*/_jsx("circle", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "1" -}, "8"), /*#__PURE__*/_jsx("circle", { +}, "8"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "18", r: "1" -}, "9"), /*#__PURE__*/_jsx("circle", { +}, "9"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "14", r: "1" -}, "10"), /*#__PURE__*/_jsx("path", { +}, "10"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.5 14c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z" -}, "11"), /*#__PURE__*/_jsx("circle", { +}, "11"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "6", r: "1" -}, "12"), /*#__PURE__*/_jsx("circle", { +}, "12"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "10", r: "1" -}, "13"), /*#__PURE__*/_jsx("circle", { +}, "13"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "6", r: "1" -}, "14"), /*#__PURE__*/_jsx("path", { +}, "14"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5z" -}, "15"), /*#__PURE__*/_jsx("circle", { +}, "15"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "18", r: "1" -}, "16"), /*#__PURE__*/_jsx("path", { +}, "16"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z" -}, "17"), /*#__PURE__*/_jsx("circle", { +}, "17"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "14", r: "1.5" -}, "18"), /*#__PURE__*/_jsx("circle", { +}, "18"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "10", r: "1.5" -}, "19"), /*#__PURE__*/_jsx("circle", { +}, "19"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "10", r: "1" -}, "20")], 'BlurOnTwoTone'); \ No newline at end of file +}, "20")], 'BlurOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bolt.js b/packages/material-ui-icons/lib/Bolt.js index aca08f52ee75a9..14e5838a634104 100644 --- a/packages/material-ui-icons/lib/Bolt.js +++ b/packages/material-ui-icons/lib/Bolt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h-1l1-7H7.5c-.58 0-.57-.32-.38-.66.19-.34.05-.08.07-.12C8.48 10.94 10.42 7.54 13 3h1l-1 7h3.5c.49 0 .56.33.47.51l-.07.15C12.96 17.55 11 21 11 21z" -}), 'Bolt'); \ No newline at end of file +}), 'Bolt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BoltOutlined.js b/packages/material-ui-icons/lib/BoltOutlined.js index 44703df6a3dfbb..bc213b4f405411 100644 --- a/packages/material-ui-icons/lib/BoltOutlined.js +++ b/packages/material-ui-icons/lib/BoltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h-1l1-7H7.5c-.88 0-.33-.75-.31-.78C8.48 10.94 10.42 7.54 13.01 3h1l-1 7h3.51c.4 0 .62.19.4.66C12.97 17.55 11 21 11 21z" -}), 'BoltOutlined'); \ No newline at end of file +}), 'BoltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BoltRounded.js b/packages/material-ui-icons/lib/BoltRounded.js index 48063eff69cb8a..72aa13c4397d4c 100644 --- a/packages/material-ui-icons/lib/BoltRounded.js +++ b/packages/material-ui-icons/lib/BoltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.67 21c-.35 0-.62-.31-.57-.66L11 14H7.5c-.88 0-.33-.75-.31-.78 1.26-2.23 3.15-5.53 5.65-9.93.1-.18.3-.29.5-.29.35 0 .62.31.57.66l-.9 6.34h3.51c.4 0 .62.19.4.66-3.29 5.74-5.2 9.09-5.75 10.05-.1.18-.29.29-.5.29z" -}), 'BoltRounded'); \ No newline at end of file +}), 'BoltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BoltSharp.js b/packages/material-ui-icons/lib/BoltSharp.js index 48e51c36d5e146..32b530af6190a3 100644 --- a/packages/material-ui-icons/lib/BoltSharp.js +++ b/packages/material-ui-icons/lib/BoltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h-1l1-7H6.74S10.42 7.54 13 3h1l-1 7h4.28L11 21z" -}), 'BoltSharp'); \ No newline at end of file +}), 'BoltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BoltTwoTone.js b/packages/material-ui-icons/lib/BoltTwoTone.js index 6a4696d2e067bd..4fb6a3e4467b9a 100644 --- a/packages/material-ui-icons/lib/BoltTwoTone.js +++ b/packages/material-ui-icons/lib/BoltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h-1l1-7H7.5c-.88 0-.33-.75-.31-.78C8.48 10.94 10.42 7.54 13.01 3h1l-1 7h3.51c.4 0 .62.19.4.66C12.97 17.55 11 21 11 21z" -}), 'BoltTwoTone'); \ No newline at end of file +}), 'BoltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Book.js b/packages/material-ui-icons/lib/Book.js index 98078cea93aa47..ba59546bafd9c1 100644 --- a/packages/material-ui-icons/lib/Book.js +++ b/packages/material-ui-icons/lib/Book.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" -}), 'Book'); \ No newline at end of file +}), 'Book'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookOnline.js b/packages/material-ui-icons/lib/BookOnline.js index be754f522300d1..3609b80af81afe 100644 --- a/packages/material-ui-icons/lib/BookOnline.js +++ b/packages/material-ui-icons/lib/BookOnline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 18V6h10v12H7zm9-7V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" -}), 'BookOnline'); \ No newline at end of file +}), 'BookOnline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookOnlineOutlined.js b/packages/material-ui-icons/lib/BookOnlineOutlined.js index cfb3a80738014b..4e566948ea528e 100644 --- a/packages/material-ui-icons/lib/BookOnlineOutlined.js +++ b/packages/material-ui-icons/lib/BookOnlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4H7V3h10v1zm0 17H7v-1h10v1zm0-20H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 6h10v12H7V6zm9 5V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" -}), 'BookOnlineOutlined'); \ No newline at end of file +}), 'BookOnlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookOnlineRounded.js b/packages/material-ui-icons/lib/BookOnlineRounded.js index 01ce9f2fd950d2..03f860c5fef6f6 100644 --- a/packages/material-ui-icons/lib/BookOnlineRounded.js +++ b/packages/material-ui-icons/lib/BookOnlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 6h10v12H7V6zm9 5V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-4 3.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm0-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm0-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5z" -}), 'BookOnlineRounded'); \ No newline at end of file +}), 'BookOnlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookOnlineSharp.js b/packages/material-ui-icons/lib/BookOnlineSharp.js index d4e70feccda816..55e6ce7792a24e 100644 --- a/packages/material-ui-icons/lib/BookOnlineSharp.js +++ b/packages/material-ui-icons/lib/BookOnlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5v22h14V1zM7 18V6h10v12H7zm9-7V8H8v3.1c.55 0 1 .45 1 1s-.45 1-1 1V16h8v-3c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" -}), 'BookOnlineSharp'); \ No newline at end of file +}), 'BookOnlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookOnlineTwoTone.js b/packages/material-ui-icons/lib/BookOnlineTwoTone.js index b5d6f7b61e5591..e99b01900c175c 100644 --- a/packages/material-ui-icons/lib/BookOnlineTwoTone.js +++ b/packages/material-ui-icons/lib/BookOnlineTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4H7V3h10v1zm0 17H7v-1h10v1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4H7V3h10v1zm0 17H7v-1h10v1zm0-20H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 6h10v12H7V6zm9 5V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" -}, "1")], 'BookOnlineTwoTone'); \ No newline at end of file +}, "1")], 'BookOnlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookOutlined.js b/packages/material-ui-icons/lib/BookOutlined.js index aaa2cdd122f596..1a2c9a80950d79 100644 --- a/packages/material-ui-icons/lib/BookOutlined.js +++ b/packages/material-ui-icons/lib/BookOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" -}), 'BookOutlined'); \ No newline at end of file +}), 'BookOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookRounded.js b/packages/material-ui-icons/lib/BookRounded.js index 675870e95b5e01..9e8c0d506eba67 100644 --- a/packages/material-ui-icons/lib/BookRounded.js +++ b/packages/material-ui-icons/lib/BookRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" -}), 'BookRounded'); \ No newline at end of file +}), 'BookRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookSharp.js b/packages/material-ui-icons/lib/BookSharp.js index a054fb24273893..0e0e3c8f9b0460 100644 --- a/packages/material-ui-icons/lib/BookSharp.js +++ b/packages/material-ui-icons/lib/BookSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z" -}), 'BookSharp'); \ No newline at end of file +}), 'BookSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookTwoTone.js b/packages/material-ui-icons/lib/BookTwoTone.js index 6f20b4c9de6b05..b1454512d64209 100644 --- a/packages/material-ui-icons/lib/BookTwoTone.js +++ b/packages/material-ui-icons/lib/BookTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 13-3-2.25L7 13V4H6v16h12V4h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" -}, "1")], 'BookTwoTone'); \ No newline at end of file +}, "1")], 'BookTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bookmark.js b/packages/material-ui-icons/lib/Bookmark.js index f8ea85ad0c5048..ecf0de03382542 100644 --- a/packages/material-ui-icons/lib/Bookmark.js +++ b/packages/material-ui-icons/lib/Bookmark.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" -}), 'Bookmark'); \ No newline at end of file +}), 'Bookmark'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAdd.js b/packages/material-ui-icons/lib/BookmarkAdd.js index af9e19e062024a..59403bd7e6e8e1 100644 --- a/packages/material-ui-icons/lib/BookmarkAdd.js +++ b/packages/material-ui-icons/lib/BookmarkAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-2 14-7-3-7 3V5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21z" -}), 'BookmarkAdd'); \ No newline at end of file +}), 'BookmarkAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddOutlined.js b/packages/material-ui-icons/lib/BookmarkAddOutlined.js index 4736fee2dfcff2..9a7d987b02829b 100644 --- a/packages/material-ui-icons/lib/BookmarkAddOutlined.js +++ b/packages/material-ui-icons/lib/BookmarkAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v6.97l-5-2.14-5 2.14V5h6V3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V11h-2zm4-4h-2v2h-2V7h-2V5h2V3h2v2h2v2z" -}), 'BookmarkAddOutlined'); \ No newline at end of file +}), 'BookmarkAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddRounded.js b/packages/material-ui-icons/lib/BookmarkAddRounded.js index 2ee0b2a7d0a71d..a286cc9b544361 100644 --- a/packages/material-ui-icons/lib/BookmarkAddRounded.js +++ b/packages/material-ui-icons/lib/BookmarkAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6c0 .55-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V7h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V4c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1zm-2 13.48c0 .72-.73 1.2-1.39.92L12 18l-5.61 2.4c-.66.29-1.39-.2-1.39-.92V5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1v8.58z" -}), 'BookmarkAddRounded'); \ No newline at end of file +}), 'BookmarkAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddSharp.js b/packages/material-ui-icons/lib/BookmarkAddSharp.js index b7a8ede6f0e915..4b7dc004244d25 100644 --- a/packages/material-ui-icons/lib/BookmarkAddSharp.js +++ b/packages/material-ui-icons/lib/BookmarkAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-2 14-7-3-7 3V3h9c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21z" -}), 'BookmarkAddSharp'); \ No newline at end of file +}), 'BookmarkAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddTwoTone.js b/packages/material-ui-icons/lib/BookmarkAddTwoTone.js index 85795a5e94299d..b79899d87ccb6a 100644 --- a/packages/material-ui-icons/lib/BookmarkAddTwoTone.js +++ b/packages/material-ui-icons/lib/BookmarkAddTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 17.97V10.9c-2.28-.46-4-2.48-4-4.9 0-.34.03-.68.1-1H7v12.97l5-2.14 5 2.14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-4 10.97-5-2.14-5 2.14V5h6.1c.15-.74.46-1.42.9-2H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9c-.32.07-.66.1-1 .1-.34 0-.68-.03-1-.1v7.07z" -}, "1")], 'BookmarkAddTwoTone'); \ No newline at end of file +}, "1")], 'BookmarkAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAdded.js b/packages/material-ui-icons/lib/BookmarkAdded.js index 9ed3ff7f5fd96e..6c2e0000a6b361 100644 --- a/packages/material-ui-icons/lib/BookmarkAdded.js +++ b/packages/material-ui-icons/lib/BookmarkAdded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 21-7-3-7 3V5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21zM17.83 9 15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z" -}), 'BookmarkAdded'); \ No newline at end of file +}), 'BookmarkAdded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddedOutlined.js b/packages/material-ui-icons/lib/BookmarkAddedOutlined.js index eedf6960b8881e..1c8650e8ae0f7b 100644 --- a/packages/material-ui-icons/lib/BookmarkAddedOutlined.js +++ b/packages/material-ui-icons/lib/BookmarkAddedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v6.97l-5-2.14-5 2.14V5h6V3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V11h-2zm.83-2L15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z" -}), 'BookmarkAddedOutlined'); \ No newline at end of file +}), 'BookmarkAddedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddedRounded.js b/packages/material-ui-icons/lib/BookmarkAddedRounded.js index 69745e54e2b2c9..95cfb1709cef16 100644 --- a/packages/material-ui-icons/lib/BookmarkAddedRounded.js +++ b/packages/material-ui-icons/lib/BookmarkAddedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1v8.58c0 .72-.73 1.2-1.39.92L12 18l-5.61 2.4c-.66.29-1.39-.2-1.39-.92V5zm17.07-1.66c.39.39.39 1.02 0 1.41l-3.54 3.54c-.39.39-1.02.39-1.41 0l-1.41-1.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.83-2.83c.39-.4 1.02-.4 1.41-.01z" -}), 'BookmarkAddedRounded'); \ No newline at end of file +}), 'BookmarkAddedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddedSharp.js b/packages/material-ui-icons/lib/BookmarkAddedSharp.js index e2e657ae87d17f..369eef89db8d5f 100644 --- a/packages/material-ui-icons/lib/BookmarkAddedSharp.js +++ b/packages/material-ui-icons/lib/BookmarkAddedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 21-7-3-7 3V3h9c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21zM17.83 9 15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z" -}), 'BookmarkAddedSharp'); \ No newline at end of file +}), 'BookmarkAddedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkAddedTwoTone.js b/packages/material-ui-icons/lib/BookmarkAddedTwoTone.js index 4ee0fff4466241..c1228af5f4d1ae 100644 --- a/packages/material-ui-icons/lib/BookmarkAddedTwoTone.js +++ b/packages/material-ui-icons/lib/BookmarkAddedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 17.97V10.9c-2.28-.46-4-2.48-4-4.9 0-.34.03-.68.1-1H7v12.97l5-2.14 5 2.14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.83 9 15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9zM17 17.97l-5-2.14-5 2.14V5h6.1c.15-.74.46-1.42.9-2H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9c-.32.07-.66.1-1 .1-.34 0-.68-.03-1-.1v7.07z" -}, "1")], 'BookmarkAddedTwoTone'); \ No newline at end of file +}, "1")], 'BookmarkAddedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkBorder.js b/packages/material-ui-icons/lib/BookmarkBorder.js index f15e2a796f393e..8e4ea534a6e268 100644 --- a/packages/material-ui-icons/lib/BookmarkBorder.js +++ b/packages/material-ui-icons/lib/BookmarkBorder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" -}), 'BookmarkBorder'); \ No newline at end of file +}), 'BookmarkBorder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkBorderOutlined.js b/packages/material-ui-icons/lib/BookmarkBorderOutlined.js index 48972753430b44..bf1f00a0009b78 100644 --- a/packages/material-ui-icons/lib/BookmarkBorderOutlined.js +++ b/packages/material-ui-icons/lib/BookmarkBorderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" -}), 'BookmarkBorderOutlined'); \ No newline at end of file +}), 'BookmarkBorderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkBorderRounded.js b/packages/material-ui-icons/lib/BookmarkBorderRounded.js index c4886ab9a811de..bc101e2cf117d4 100644 --- a/packages/material-ui-icons/lib/BookmarkBorderRounded.js +++ b/packages/material-ui-icons/lib/BookmarkBorderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12z" -}), 'BookmarkBorderRounded'); \ No newline at end of file +}), 'BookmarkBorderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkBorderSharp.js b/packages/material-ui-icons/lib/BookmarkBorderSharp.js index 6fb986d71c96e8..931cdd192fe3f9 100644 --- a/packages/material-ui-icons/lib/BookmarkBorderSharp.js +++ b/packages/material-ui-icons/lib/BookmarkBorderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5v18l7-3 7 3V3zm-2 15-5-2.18L7 18V5h10v13z" -}), 'BookmarkBorderSharp'); \ No newline at end of file +}), 'BookmarkBorderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkBorderTwoTone.js b/packages/material-ui-icons/lib/BookmarkBorderTwoTone.js index 23781eb7fbf416..8a922ff7db3792 100644 --- a/packages/material-ui-icons/lib/BookmarkBorderTwoTone.js +++ b/packages/material-ui-icons/lib/BookmarkBorderTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" -}), 'BookmarkBorderTwoTone'); \ No newline at end of file +}), 'BookmarkBorderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkOutlined.js b/packages/material-ui-icons/lib/BookmarkOutlined.js index fa6fe8f0c45d97..414d90d40765d0 100644 --- a/packages/material-ui-icons/lib/BookmarkOutlined.js +++ b/packages/material-ui-icons/lib/BookmarkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z" -}), 'BookmarkOutlined'); \ No newline at end of file +}), 'BookmarkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkRemove.js b/packages/material-ui-icons/lib/BookmarkRemove.js index 437031c7a8c411..262e2be8498e7b 100644 --- a/packages/material-ui-icons/lib/BookmarkRemove.js +++ b/packages/material-ui-icons/lib/BookmarkRemove.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-6V5h6v2zm-2 3.9c-.32.07-.66.1-1 .1-2.76 0-5-2.24-5-5 0-1.13.37-2.16 1-3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9z" -}), 'BookmarkRemove'); \ No newline at end of file +}), 'BookmarkRemove'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkRemoveOutlined.js b/packages/material-ui-icons/lib/BookmarkRemoveOutlined.js index c72b119ebc2c89..62361984892661 100644 --- a/packages/material-ui-icons/lib/BookmarkRemoveOutlined.js +++ b/packages/material-ui-icons/lib/BookmarkRemoveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v6.97l-5-2.14-5 2.14V5h6V3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V11h-2zm4-4h-6V5h6v2z" -}), 'BookmarkRemoveOutlined'); \ No newline at end of file +}), 'BookmarkRemoveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkRemoveRounded.js b/packages/material-ui-icons/lib/BookmarkRemoveRounded.js index 49cc123689b06d..7c332a2bf3b1f3 100644 --- a/packages/material-ui-icons/lib/BookmarkRemoveRounded.js +++ b/packages/material-ui-icons/lib/BookmarkRemoveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1zm-2 4.9c-.32.07-.66.1-1 .1-2.76 0-5-2.24-5-5 0-1.13.37-2.16 1-3H7c-1.1 0-2 .9-2 2v14.48c0 .72.73 1.2 1.39.92L12 18l5.61 2.4c.66.28 1.39-.2 1.39-.92V10.9z" -}), 'BookmarkRemoveRounded'); \ No newline at end of file +}), 'BookmarkRemoveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkRemoveSharp.js b/packages/material-ui-icons/lib/BookmarkRemoveSharp.js index 69f1ea03e16a00..1710c2b7ed0761 100644 --- a/packages/material-ui-icons/lib/BookmarkRemoveSharp.js +++ b/packages/material-ui-icons/lib/BookmarkRemoveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-6V5h6v2zm-2 3.9c-.64.13-1.32.14-2.02 0-1.91-.38-3.47-1.92-3.87-3.83-.32-1.53.07-2.97.89-4.07H5v18l7-3 7 3V10.9z" -}), 'BookmarkRemoveSharp'); \ No newline at end of file +}), 'BookmarkRemoveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkRemoveTwoTone.js b/packages/material-ui-icons/lib/BookmarkRemoveTwoTone.js index fc2c45976ff67b..1091080f52d80e 100644 --- a/packages/material-ui-icons/lib/BookmarkRemoveTwoTone.js +++ b/packages/material-ui-icons/lib/BookmarkRemoveTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 17.97V10.9c-2.28-.46-4-2.48-4-4.9 0-.34.03-.68.1-1H7v12.97l5-2.14 5 2.14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-6V5h6v2zm-4 10.97-5-2.14-5 2.14V5h6.1c.15-.74.46-1.42.9-2H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9c-.32.07-.66.1-1 .1-.34 0-.68-.03-1-.1v7.07z" -}, "1")], 'BookmarkRemoveTwoTone'); \ No newline at end of file +}, "1")], 'BookmarkRemoveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkRounded.js b/packages/material-ui-icons/lib/BookmarkRounded.js index 2f8e61fe99234c..ecc646a9908836 100644 --- a/packages/material-ui-icons/lib/BookmarkRounded.js +++ b/packages/material-ui-icons/lib/BookmarkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z" -}), 'BookmarkRounded'); \ No newline at end of file +}), 'BookmarkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkSharp.js b/packages/material-ui-icons/lib/BookmarkSharp.js index 7d6ba67def7426..586fd2fdc64e84 100644 --- a/packages/material-ui-icons/lib/BookmarkSharp.js +++ b/packages/material-ui-icons/lib/BookmarkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5v18l7-3 7 3V3z" -}), 'BookmarkSharp'); \ No newline at end of file +}), 'BookmarkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarkTwoTone.js b/packages/material-ui-icons/lib/BookmarkTwoTone.js index 6a97d1573f2583..10474c18cc8ff3 100644 --- a/packages/material-ui-icons/lib/BookmarkTwoTone.js +++ b/packages/material-ui-icons/lib/BookmarkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 17.97 5-2.15 5 2.15V5H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97-5-2.14-5 2.14V5h10v12.97z" -}, "1")], 'BookmarkTwoTone'); \ No newline at end of file +}, "1")], 'BookmarkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bookmarks.js b/packages/material-ui-icons/lib/Bookmarks.js index ce47265df87a69..1b8e96e8c01311 100644 --- a/packages/material-ui-icons/lib/Bookmarks.js +++ b/packages/material-ui-icons/lib/Bookmarks.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 18 2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" -}), 'Bookmarks'); \ No newline at end of file +}), 'Bookmarks'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarksOutlined.js b/packages/material-ui-icons/lib/BookmarksOutlined.js index 685d448bcd8162..6ac124f578f37f 100644 --- a/packages/material-ui-icons/lib/BookmarksOutlined.js +++ b/packages/material-ui-icons/lib/BookmarksOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" -}), 'BookmarksOutlined'); \ No newline at end of file +}), 'BookmarksOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarksRounded.js b/packages/material-ui-icons/lib/BookmarksRounded.js index f031f8197685a9..3d46f0537df56f 100644 --- a/packages/material-ui-icons/lib/BookmarksRounded.js +++ b/packages/material-ui-icons/lib/BookmarksRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 18 2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" -}), 'BookmarksRounded'); \ No newline at end of file +}), 'BookmarksRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarksSharp.js b/packages/material-ui-icons/lib/BookmarksSharp.js index 5323a16b3cea99..d1549c6c0336ab 100644 --- a/packages/material-ui-icons/lib/BookmarksSharp.js +++ b/packages/material-ui-icons/lib/BookmarksSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 18 2 1V1H7v2h12v15zM17 5H3v18l7-3 7 3V5z" -}), 'BookmarksSharp'); \ No newline at end of file +}), 'BookmarksSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BookmarksTwoTone.js b/packages/material-ui-icons/lib/BookmarksTwoTone.js index 9ccda4814b8280..cd9fb3e946cc48 100644 --- a/packages/material-ui-icons/lib/BookmarksTwoTone.js +++ b/packages/material-ui-icons/lib/BookmarksTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2zm0 14.97-4.21-1.81-.79-.34-.79.34L5 19.97V7h10v12.97z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 19.97 5-2.15 5 2.15V7H5z", opacity: ".3" -}, "1")], 'BookmarksTwoTone'); \ No newline at end of file +}, "1")], 'BookmarksTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderAll.js b/packages/material-ui-icons/lib/BorderAll.js index f9c2008d3c1927..81a95c7d65b5b4 100644 --- a/packages/material-ui-icons/lib/BorderAll.js +++ b/packages/material-ui-icons/lib/BorderAll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" -}), 'BorderAll'); \ No newline at end of file +}), 'BorderAll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderAllOutlined.js b/packages/material-ui-icons/lib/BorderAllOutlined.js index dec815c705e8e6..b1cc77173f6a8f 100644 --- a/packages/material-ui-icons/lib/BorderAllOutlined.js +++ b/packages/material-ui-icons/lib/BorderAllOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" -}), 'BorderAllOutlined'); \ No newline at end of file +}), 'BorderAllOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderAllRounded.js b/packages/material-ui-icons/lib/BorderAllRounded.js index 82fad3b8f6601a..038a943fc49333 100644 --- a/packages/material-ui-icons/lib/BorderAllRounded.js +++ b/packages/material-ui-icons/lib/BorderAllRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm8 14H6c-.55 0-1-.45-1-1v-5h5c.55 0 1 .45 1 1v5zm-1-8H5V6c0-.55.45-1 1-1h5v5c0 .55-.45 1-1 1zm8 8h-5v-5c0-.55.45-1 1-1h5v5c0 .55-.45 1-1 1zm1-8h-5c-.55 0-1-.45-1-1V5h5c.55 0 1 .45 1 1v5z" -}), 'BorderAllRounded'); \ No newline at end of file +}), 'BorderAllRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderAllSharp.js b/packages/material-ui-icons/lib/BorderAllSharp.js index 853aa489cb653c..3d356135c6a4bf 100644 --- a/packages/material-ui-icons/lib/BorderAllSharp.js +++ b/packages/material-ui-icons/lib/BorderAllSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" -}), 'BorderAllSharp'); \ No newline at end of file +}), 'BorderAllSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderAllTwoTone.js b/packages/material-ui-icons/lib/BorderAllTwoTone.js index d1047a06f4e069..e74e03f1da9480 100644 --- a/packages/material-ui-icons/lib/BorderAllTwoTone.js +++ b/packages/material-ui-icons/lib/BorderAllTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM11 19H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" -}), 'BorderAllTwoTone'); \ No newline at end of file +}), 'BorderAllTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderBottom.js b/packages/material-ui-icons/lib/BorderBottom.js index 0ecfa4ee0598dd..b31d6b6ee21f34 100644 --- a/packages/material-ui-icons/lib/BorderBottom.js +++ b/packages/material-ui-icons/lib/BorderBottom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" -}), 'BorderBottom'); \ No newline at end of file +}), 'BorderBottom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderBottomOutlined.js b/packages/material-ui-icons/lib/BorderBottomOutlined.js index 04ac93d6cdc4f6..d689114ee278f7 100644 --- a/packages/material-ui-icons/lib/BorderBottomOutlined.js +++ b/packages/material-ui-icons/lib/BorderBottomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" -}), 'BorderBottomOutlined'); \ No newline at end of file +}), 'BorderBottomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderBottomRounded.js b/packages/material-ui-icons/lib/BorderBottomRounded.js index 65e3d6e6c5fe88..3b8ca8bacd3376 100644 --- a/packages/material-ui-icons/lib/BorderBottomRounded.js +++ b/packages/material-ui-icons/lib/BorderBottomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm1-6H3v2h2v-2z" -}), 'BorderBottomRounded'); \ No newline at end of file +}), 'BorderBottomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderBottomSharp.js b/packages/material-ui-icons/lib/BorderBottomSharp.js index d4f24e5246cfe9..786aff6f65e724 100644 --- a/packages/material-ui-icons/lib/BorderBottomSharp.js +++ b/packages/material-ui-icons/lib/BorderBottomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" -}), 'BorderBottomSharp'); \ No newline at end of file +}), 'BorderBottomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderBottomTwoTone.js b/packages/material-ui-icons/lib/BorderBottomTwoTone.js index 3a82597eaa1991..b43114abd292a2 100644 --- a/packages/material-ui-icons/lib/BorderBottomTwoTone.js +++ b/packages/material-ui-icons/lib/BorderBottomTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11h2v2H3zm0 4h2v2H3zm0 4h18v2H3zm16-4h2v2h-2zM3 7h2v2H3zm16 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm4-4h2v2h-2zm-4-4h2v2h-2zm-8 8h2v2H7zM3 3h2v2H3zm8 4h2v2h-2zM7 3h2v2H7zm4 8h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2z" -}), 'BorderBottomTwoTone'); \ No newline at end of file +}), 'BorderBottomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderClear.js b/packages/material-ui-icons/lib/BorderClear.js index f9ad2c749727d3..663b1017429cbf 100644 --- a/packages/material-ui-icons/lib/BorderClear.js +++ b/packages/material-ui-icons/lib/BorderClear.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderClear'); \ No newline at end of file +}), 'BorderClear'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderClearOutlined.js b/packages/material-ui-icons/lib/BorderClearOutlined.js index 6ea8bad4c9b330..291352f8ed09d1 100644 --- a/packages/material-ui-icons/lib/BorderClearOutlined.js +++ b/packages/material-ui-icons/lib/BorderClearOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderClearOutlined'); \ No newline at end of file +}), 'BorderClearOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderClearRounded.js b/packages/material-ui-icons/lib/BorderClearRounded.js index a8c9ab6c693cff..9d4628cb56bfec 100644 --- a/packages/material-ui-icons/lib/BorderClearRounded.js +++ b/packages/material-ui-icons/lib/BorderClearRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderClearRounded'); \ No newline at end of file +}), 'BorderClearRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderClearSharp.js b/packages/material-ui-icons/lib/BorderClearSharp.js index ad03dafb55dd2a..bca5d49e63b6cc 100644 --- a/packages/material-ui-icons/lib/BorderClearSharp.js +++ b/packages/material-ui-icons/lib/BorderClearSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderClearSharp'); \ No newline at end of file +}), 'BorderClearSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderClearTwoTone.js b/packages/material-ui-icons/lib/BorderClearTwoTone.js index 3b239639276407..05757198ceafc4 100644 --- a/packages/material-ui-icons/lib/BorderClearTwoTone.js +++ b/packages/material-ui-icons/lib/BorderClearTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h2v2H7zm0 16h2v2H7zM3 3h2v2H3zm16 0h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0 12h2v2H3zm16 0h2v2h-2zm0-4h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm4 0h2v2H7zm8 0h2v2h-2zm-4 8h2v2h-2zm4 0h2v2h-2zm0-16h2v2h-2zm-4 0h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2zm0-4h2v2h-2z" -}), 'BorderClearTwoTone'); \ No newline at end of file +}), 'BorderClearTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderColor.js b/packages/material-ui-icons/lib/BorderColor.js index 3772aad8020d1b..a120f686c97b27 100644 --- a/packages/material-ui-icons/lib/BorderColor.js +++ b/packages/material-ui-icons/lib/BorderColor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 24H2v-4h20v4zM13.06 5.19l3.75 3.75L7.75 18H4v-3.75l9.06-9.06zm4.82 2.68-3.75-3.75 1.83-1.83c.39-.39 1.02-.39 1.41 0l2.34 2.34c.39.39.39 1.02 0 1.41l-1.83 1.83z" -}), 'BorderColor'); \ No newline at end of file +}), 'BorderColor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderColorOutlined.js b/packages/material-ui-icons/lib/BorderColorOutlined.js index be486f09c9acbb..a032578ff72f29 100644 --- a/packages/material-ui-icons/lib/BorderColorOutlined.js +++ b/packages/material-ui-icons/lib/BorderColorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.81 8.94-3.75-3.75L4 14.25V18h3.75l9.06-9.06zM6 16v-.92l7.06-7.06.92.92L6.92 16H6zm13.71-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2 20h20v4H2z" -}), 'BorderColorOutlined'); \ No newline at end of file +}), 'BorderColorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderColorRounded.js b/packages/material-ui-icons/lib/BorderColorRounded.js index fee47d0a9d541b..f0e94ac588e309 100644 --- a/packages/material-ui-icons/lib/BorderColorRounded.js +++ b/packages/material-ui-icons/lib/BorderColorRounded.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.75 7 14 3.25 4.15 13.1c-.1.1-.15.22-.15.36v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.75 7zm2.96-2.96c.39-.39.39-1.02 0-1.41L18.37.29a.9959.9959 0 0 0-1.41 0L15 2.25 18.75 6l1.96-1.96z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".36", d: "M2 20h20c1.1 0 2 .9 2 2s-.9 2-2 2H2c-1.1 0-2-.9-2-2s.9-2 2-2z" -}, "1")], 'BorderColorRounded'); \ No newline at end of file +}, "1")], 'BorderColorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderColorSharp.js b/packages/material-ui-icons/lib/BorderColorSharp.js index 1bca2ba5666b91..c9a58d3f81a0cf 100644 --- a/packages/material-ui-icons/lib/BorderColorSharp.js +++ b/packages/material-ui-icons/lib/BorderColorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 24H2v-4h20v4zM13.06 5.19l3.75 3.75L7.75 18H4v-3.75l9.06-9.06zm4.82 2.68-3.75-3.75 2.53-2.54 3.75 3.75-2.53 2.54z" -}), 'BorderColorSharp'); \ No newline at end of file +}), 'BorderColorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderColorTwoTone.js b/packages/material-ui-icons/lib/BorderColorTwoTone.js index d102f1124ce605..6ee3fea3605aaa 100644 --- a/packages/material-ui-icons/lib/BorderColorTwoTone.js +++ b/packages/material-ui-icons/lib/BorderColorTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.81 8.94-3.75-3.75L4 14.25V18h3.75l9.06-9.06zM6 16v-.92l7.06-7.06.92.92L6.92 16H6zm13.71-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2 20h20v4H2z" -}), 'BorderColorTwoTone'); \ No newline at end of file +}), 'BorderColorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderHorizontal.js b/packages/material-ui-icons/lib/BorderHorizontal.js index 67b59d1a84c5cb..e39c00281b9e73 100644 --- a/packages/material-ui-icons/lib/BorderHorizontal.js +++ b/packages/material-ui-icons/lib/BorderHorizontal.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'BorderHorizontal'); \ No newline at end of file +}), 'BorderHorizontal'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderHorizontalOutlined.js b/packages/material-ui-icons/lib/BorderHorizontalOutlined.js index f5884501853df1..2efaead60b62a0 100644 --- a/packages/material-ui-icons/lib/BorderHorizontalOutlined.js +++ b/packages/material-ui-icons/lib/BorderHorizontalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'BorderHorizontalOutlined'); \ No newline at end of file +}), 'BorderHorizontalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderHorizontalRounded.js b/packages/material-ui-icons/lib/BorderHorizontalRounded.js index 1f60bb767556e0..6e09e26e9dee5c 100644 --- a/packages/material-ui-icons/lib/BorderHorizontalRounded.js +++ b/packages/material-ui-icons/lib/BorderHorizontalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-7-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'BorderHorizontalRounded'); \ No newline at end of file +}), 'BorderHorizontalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderHorizontalSharp.js b/packages/material-ui-icons/lib/BorderHorizontalSharp.js index 26baff71429e9d..e30d778d778dd6 100644 --- a/packages/material-ui-icons/lib/BorderHorizontalSharp.js +++ b/packages/material-ui-icons/lib/BorderHorizontalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'BorderHorizontalSharp'); \ No newline at end of file +}), 'BorderHorizontalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderHorizontalTwoTone.js b/packages/material-ui-icons/lib/BorderHorizontalTwoTone.js index b9b850d89899b6..7bea89ca2b87d5 100644 --- a/packages/material-ui-icons/lib/BorderHorizontalTwoTone.js +++ b/packages/material-ui-icons/lib/BorderHorizontalTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3h2v2h-2zm8 0h2v2h-2zm0 4h2v2h-2zm-4-4h2v2h-2zM3 19h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm4 12h2v2H7zm4-12h2v2h-2zM7 3h2v2H7zM3 3h2v2H3zm12 16h2v2h-2zm-4 0h2v2h-2zm8-4h2v2h-2zm0 4h2v2h-2zm-8-4h2v2h-2zm-8-4h18v2H3z" -}), 'BorderHorizontalTwoTone'); \ No newline at end of file +}), 'BorderHorizontalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderInner.js b/packages/material-ui-icons/lib/BorderInner.js index 985014a6d09392..4b2ab02a946ef2 100644 --- a/packages/material-ui-icons/lib/BorderInner.js +++ b/packages/material-ui-icons/lib/BorderInner.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" -}), 'BorderInner'); \ No newline at end of file +}), 'BorderInner'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderInnerOutlined.js b/packages/material-ui-icons/lib/BorderInnerOutlined.js index e6f39cf2868075..927c14954f7f3b 100644 --- a/packages/material-ui-icons/lib/BorderInnerOutlined.js +++ b/packages/material-ui-icons/lib/BorderInnerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" -}), 'BorderInnerOutlined'); \ No newline at end of file +}), 'BorderInnerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderInnerRounded.js b/packages/material-ui-icons/lib/BorderInnerRounded.js index 8b0b4c500240d2..60d4e76c25836f 100644 --- a/packages/material-ui-icons/lib/BorderInnerRounded.js +++ b/packages/material-ui-icons/lib/BorderInnerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM12 3c-.55 0-1 .45-1 1v7H4c-.55 0-1 .45-1 1s.45 1 1 1h7v7c0 .55.45 1 1 1s1-.45 1-1v-7h7c.55 0 1-.45 1-1s-.45-1-1-1h-7V4c0-.55-.45-1-1-1zm7 18h2v-2h-2v2zm0-4h2v-2h-2v2z" -}), 'BorderInnerRounded'); \ No newline at end of file +}), 'BorderInnerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderInnerSharp.js b/packages/material-ui-icons/lib/BorderInnerSharp.js index 8f9f93e577962e..ed3b6d918bf364 100644 --- a/packages/material-ui-icons/lib/BorderInnerSharp.js +++ b/packages/material-ui-icons/lib/BorderInnerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" -}), 'BorderInnerSharp'); \ No newline at end of file +}), 'BorderInnerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderInnerTwoTone.js b/packages/material-ui-icons/lib/BorderInnerTwoTone.js index 0b331823d61601..b3b22e728a4192 100644 --- a/packages/material-ui-icons/lib/BorderInnerTwoTone.js +++ b/packages/material-ui-icons/lib/BorderInnerTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h2v2H3zM3 3h2v2H3zm0 16h2v2H3zm8 2h2v-8h8v-2h-8V3h-2v8H3v2h8zm-4-2h2v2H7zm12-4h2v2h-2zm-4 4h2v2h-2zm4 0h2v2h-2zM3 7h2v2H3zm16 0h2v2h-2zM7 3h2v2H7zm8 0h2v2h-2zm4 0h2v2h-2z" -}), 'BorderInnerTwoTone'); \ No newline at end of file +}), 'BorderInnerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderLeft.js b/packages/material-ui-icons/lib/BorderLeft.js index 741f26aa424956..ad6e2b3b437a5f 100644 --- a/packages/material-ui-icons/lib/BorderLeft.js +++ b/packages/material-ui-icons/lib/BorderLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderLeft'); \ No newline at end of file +}), 'BorderLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderLeftOutlined.js b/packages/material-ui-icons/lib/BorderLeftOutlined.js index 54763e4ccc3def..7cfafc28c2624c 100644 --- a/packages/material-ui-icons/lib/BorderLeftOutlined.js +++ b/packages/material-ui-icons/lib/BorderLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderLeftOutlined'); \ No newline at end of file +}), 'BorderLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderLeftRounded.js b/packages/material-ui-icons/lib/BorderLeftRounded.js index 22f8c99919ace1..4b1c63db01744b 100644 --- a/packages/material-ui-icons/lib/BorderLeftRounded.js +++ b/packages/material-ui-icons/lib/BorderLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-3 8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderLeftRounded'); \ No newline at end of file +}), 'BorderLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderLeftSharp.js b/packages/material-ui-icons/lib/BorderLeftSharp.js index 8eb6bcfe69e584..21a8db94d47a65 100644 --- a/packages/material-ui-icons/lib/BorderLeftSharp.js +++ b/packages/material-ui-icons/lib/BorderLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" -}), 'BorderLeftSharp'); \ No newline at end of file +}), 'BorderLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderLeftTwoTone.js b/packages/material-ui-icons/lib/BorderLeftTwoTone.js index 056ee165f20343..ba55df8640f96f 100644 --- a/packages/material-ui-icons/lib/BorderLeftTwoTone.js +++ b/packages/material-ui-icons/lib/BorderLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3h2v2h-2zM3 3h2v18H3zm12 0h2v2h-2zm-4 16h2v2h-2zm0-4h2v2h-2zm4 4h2v2h-2zM11 7h2v2h-2zm0 4h2v2h-2zm8 4h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm-8 8h2v2H7zm0-8h2v2H7zm0-8h2v2H7z" -}), 'BorderLeftTwoTone'); \ No newline at end of file +}), 'BorderLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderOuter.js b/packages/material-ui-icons/lib/BorderOuter.js index 9179af52a194b6..fce76315aa5b5c 100644 --- a/packages/material-ui-icons/lib/BorderOuter.js +++ b/packages/material-ui-icons/lib/BorderOuter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" -}), 'BorderOuter'); \ No newline at end of file +}), 'BorderOuter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderOuterOutlined.js b/packages/material-ui-icons/lib/BorderOuterOutlined.js index 25406913e142d7..68c973a186e6de 100644 --- a/packages/material-ui-icons/lib/BorderOuterOutlined.js +++ b/packages/material-ui-icons/lib/BorderOuterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" -}), 'BorderOuterOutlined'); \ No newline at end of file +}), 'BorderOuterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderOuterRounded.js b/packages/material-ui-icons/lib/BorderOuterRounded.js index f44adc3a27e57d..f2fafcf9a38a01 100644 --- a/packages/material-ui-icons/lib/BorderOuterRounded.js +++ b/packages/material-ui-icons/lib/BorderOuterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm15 14H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-5-4h-2v2h2v-2zm-4-4H7v2h2v-2z" -}), 'BorderOuterRounded'); \ No newline at end of file +}), 'BorderOuterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderOuterSharp.js b/packages/material-ui-icons/lib/BorderOuterSharp.js index dd2995965bcfa0..9a65ec04eb4902 100644 --- a/packages/material-ui-icons/lib/BorderOuterSharp.js +++ b/packages/material-ui-icons/lib/BorderOuterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" -}), 'BorderOuterSharp'); \ No newline at end of file +}), 'BorderOuterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderOuterTwoTone.js b/packages/material-ui-icons/lib/BorderOuterTwoTone.js index f692d9f626f926..7fde62f4b0dd32 100644 --- a/packages/material-ui-icons/lib/BorderOuterTwoTone.js +++ b/packages/material-ui-icons/lib/BorderOuterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h2v2h-2zm0-4h2v2h-2zm10-4H3v18h18V3zm-2 16H5V5h14v14zm-4-8h2v2h-2zm-8 0h2v2H7zm4 4h2v2h-2z" -}), 'BorderOuterTwoTone'); \ No newline at end of file +}), 'BorderOuterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderRight.js b/packages/material-ui-icons/lib/BorderRight.js index 03c665fcd5fc2d..e0f1a6b23fabb3 100644 --- a/packages/material-ui-icons/lib/BorderRight.js +++ b/packages/material-ui-icons/lib/BorderRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" -}), 'BorderRight'); \ No newline at end of file +}), 'BorderRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderRightOutlined.js b/packages/material-ui-icons/lib/BorderRightOutlined.js index 962ffb472e02d1..8ba827843b02b8 100644 --- a/packages/material-ui-icons/lib/BorderRightOutlined.js +++ b/packages/material-ui-icons/lib/BorderRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" -}), 'BorderRightOutlined'); \ No newline at end of file +}), 'BorderRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderRightRounded.js b/packages/material-ui-icons/lib/BorderRightRounded.js index c9444ce51e4df7..46669d473783b2 100644 --- a/packages/material-ui-icons/lib/BorderRightRounded.js +++ b/packages/material-ui-icons/lib/BorderRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-9v16c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zm-4 17h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" -}), 'BorderRightRounded'); \ No newline at end of file +}), 'BorderRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderRightSharp.js b/packages/material-ui-icons/lib/BorderRightSharp.js index 4898103eaea6ea..228c498346ccb5 100644 --- a/packages/material-ui-icons/lib/BorderRightSharp.js +++ b/packages/material-ui-icons/lib/BorderRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" -}), 'BorderRightSharp'); \ No newline at end of file +}), 'BorderRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderRightTwoTone.js b/packages/material-ui-icons/lib/BorderRightTwoTone.js index 832bbc14ef42ee..dd774fcfae5b6f 100644 --- a/packages/material-ui-icons/lib/BorderRightTwoTone.js +++ b/packages/material-ui-icons/lib/BorderRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h2v2H3zm0 16h2v2H3zM15 3h2v2h-2zm0 16h2v2h-2zm0-8h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm0-4h2v2H3zm8 8h2v2h-2zm-4-4h2v2H7zm0-8h2v2H7zm12 0h2v18h-2zM7 19h2v2H7zm4-16h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2z" -}), 'BorderRightTwoTone'); \ No newline at end of file +}), 'BorderRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderStyle.js b/packages/material-ui-icons/lib/BorderStyle.js index bce0d9ccf6854f..610e04bee8dd98 100644 --- a/packages/material-ui-icons/lib/BorderStyle.js +++ b/packages/material-ui-icons/lib/BorderStyle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" -}), 'BorderStyle'); \ No newline at end of file +}), 'BorderStyle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderStyleOutlined.js b/packages/material-ui-icons/lib/BorderStyleOutlined.js index 76214d76446567..ad6b64fea90d92 100644 --- a/packages/material-ui-icons/lib/BorderStyleOutlined.js +++ b/packages/material-ui-icons/lib/BorderStyleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" -}), 'BorderStyleOutlined'); \ No newline at end of file +}), 'BorderStyleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderStyleRounded.js b/packages/material-ui-icons/lib/BorderStyleRounded.js index f039f2c95b9685..166897424fa20f 100644 --- a/packages/material-ui-icons/lib/BorderStyleRounded.js +++ b/packages/material-ui-icons/lib/BorderStyleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 5v15c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm16 4h2V7h-2v2z" -}), 'BorderStyleRounded'); \ No newline at end of file +}), 'BorderStyleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderStyleSharp.js b/packages/material-ui-icons/lib/BorderStyleSharp.js index 2f328e1a84c1e3..ce919be9505e0d 100644 --- a/packages/material-ui-icons/lib/BorderStyleSharp.js +++ b/packages/material-ui-icons/lib/BorderStyleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" -}), 'BorderStyleSharp'); \ No newline at end of file +}), 'BorderStyleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderStyleTwoTone.js b/packages/material-ui-icons/lib/BorderStyleTwoTone.js index adbb319e5bca44..94c72f170635db 100644 --- a/packages/material-ui-icons/lib/BorderStyleTwoTone.js +++ b/packages/material-ui-icons/lib/BorderStyleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19h2v2h-2zm0-8h2v2h-2zm0 4h2v2h-2zm-4 4h2v2h-2zM3 21h2V5h16V3H3zM19 7h2v2h-2zm-8 12h2v2h-2zm-4 0h2v2H7z" -}), 'BorderStyleTwoTone'); \ No newline at end of file +}), 'BorderStyleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderTop.js b/packages/material-ui-icons/lib/BorderTop.js index 5dc31c92958b00..c64370c02f0d23 100644 --- a/packages/material-ui-icons/lib/BorderTop.js +++ b/packages/material-ui-icons/lib/BorderTop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" -}), 'BorderTop'); \ No newline at end of file +}), 'BorderTop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderTopOutlined.js b/packages/material-ui-icons/lib/BorderTopOutlined.js index 5c2dbe69d46da2..05f8aad1ab818f 100644 --- a/packages/material-ui-icons/lib/BorderTopOutlined.js +++ b/packages/material-ui-icons/lib/BorderTopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" -}), 'BorderTopOutlined'); \ No newline at end of file +}), 'BorderTopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderTopRounded.js b/packages/material-ui-icons/lib/BorderTopRounded.js index 32d7807b04e58c..1e4c721713ac53 100644 --- a/packages/material-ui-icons/lib/BorderTopRounded.js +++ b/packages/material-ui-icons/lib/BorderTopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm16 13h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" -}), 'BorderTopRounded'); \ No newline at end of file +}), 'BorderTopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderTopSharp.js b/packages/material-ui-icons/lib/BorderTopSharp.js index 13b8758a54245d..c4a641cea6ea3f 100644 --- a/packages/material-ui-icons/lib/BorderTopSharp.js +++ b/packages/material-ui-icons/lib/BorderTopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" -}), 'BorderTopSharp'); \ No newline at end of file +}), 'BorderTopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderTopTwoTone.js b/packages/material-ui-icons/lib/BorderTopTwoTone.js index 54f72799e571c5..2b1c6cf6ac0e58 100644 --- a/packages/material-ui-icons/lib/BorderTopTwoTone.js +++ b/packages/material-ui-icons/lib/BorderTopTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19h2v2h-2zM3 19h2v2H3zm8 0h2v2h-2zm-8-8h2v2H3zm0 4h2v2H3zm4 4h2v2H7zm4-12h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0-4h18v2H3zm8 12h2v2h-2zm4 4h2v2h-2zm-8-8h2v2H7zm8 0h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" -}), 'BorderTopTwoTone'); \ No newline at end of file +}), 'BorderTopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderVertical.js b/packages/material-ui-icons/lib/BorderVertical.js index 3890c78b4292cd..19cc94530f3c0e 100644 --- a/packages/material-ui-icons/lib/BorderVertical.js +++ b/packages/material-ui-icons/lib/BorderVertical.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" -}), 'BorderVertical'); \ No newline at end of file +}), 'BorderVertical'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderVerticalOutlined.js b/packages/material-ui-icons/lib/BorderVerticalOutlined.js index 244031be7dd314..f7a0668483a704 100644 --- a/packages/material-ui-icons/lib/BorderVerticalOutlined.js +++ b/packages/material-ui-icons/lib/BorderVerticalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" -}), 'BorderVerticalOutlined'); \ No newline at end of file +}), 'BorderVerticalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderVerticalRounded.js b/packages/material-ui-icons/lib/BorderVerticalRounded.js index 56c7309b588730..2702543b3b0ca7 100644 --- a/packages/material-ui-icons/lib/BorderVerticalRounded.js +++ b/packages/material-ui-icons/lib/BorderVerticalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-7 4c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1zm7 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" -}), 'BorderVerticalRounded'); \ No newline at end of file +}), 'BorderVerticalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderVerticalSharp.js b/packages/material-ui-icons/lib/BorderVerticalSharp.js index 8575b6179d6a50..c962841fc1b3ee 100644 --- a/packages/material-ui-icons/lib/BorderVerticalSharp.js +++ b/packages/material-ui-icons/lib/BorderVerticalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" -}), 'BorderVerticalSharp'); \ No newline at end of file +}), 'BorderVerticalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BorderVerticalTwoTone.js b/packages/material-ui-icons/lib/BorderVerticalTwoTone.js index deffed132934b4..8a6586ebd22588 100644 --- a/packages/material-ui-icons/lib/BorderVerticalTwoTone.js +++ b/packages/material-ui-icons/lib/BorderVerticalTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h2v2H7zm0 8h2v2H7zm0 8h2v2H7zm-4 0h2v2H3zM3 3h2v2H3zm0 8h2v2H3zm16-8h2v2h-2zM3 7h2v2H3zm8-4h2v18h-2zM3 15h2v2H3zm12-4h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm0 12h2v2h-2zm-4 0h2v2h-2zm0-16h2v2h-2z" -}), 'BorderVerticalTwoTone'); \ No newline at end of file +}), 'BorderVerticalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrandingWatermark.js b/packages/material-ui-icons/lib/BrandingWatermark.js index 374b37c9c62f16..4dfd1fae901dad 100644 --- a/packages/material-ui-icons/lib/BrandingWatermark.js +++ b/packages/material-ui-icons/lib/BrandingWatermark.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-9v-6h9v6z" -}), 'BrandingWatermark'); \ No newline at end of file +}), 'BrandingWatermark'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrandingWatermarkOutlined.js b/packages/material-ui-icons/lib/BrandingWatermarkOutlined.js index c055d8774c24e6..876a48d69c06c3 100644 --- a/packages/material-ui-icons/lib/BrandingWatermarkOutlined.js +++ b/packages/material-ui-icons/lib/BrandingWatermarkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z" -}), 'BrandingWatermarkOutlined'); \ No newline at end of file +}), 'BrandingWatermarkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrandingWatermarkRounded.js b/packages/material-ui-icons/lib/BrandingWatermarkRounded.js index 09b2599e63db4d..70469c1cd7901e 100644 --- a/packages/material-ui-icons/lib/BrandingWatermarkRounded.js +++ b/packages/material-ui-icons/lib/BrandingWatermarkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16h-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1z" -}), 'BrandingWatermarkRounded'); \ No newline at end of file +}), 'BrandingWatermarkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrandingWatermarkSharp.js b/packages/material-ui-icons/lib/BrandingWatermarkSharp.js index d6b932a8630b14..826a981415d4d2 100644 --- a/packages/material-ui-icons/lib/BrandingWatermarkSharp.js +++ b/packages/material-ui-icons/lib/BrandingWatermarkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-2 16h-9v-6h9v6z" -}), 'BrandingWatermarkSharp'); \ No newline at end of file +}), 'BrandingWatermarkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrandingWatermarkTwoTone.js b/packages/material-ui-icons/lib/BrandingWatermarkTwoTone.js index 7ec0fca001cf18..5798c27a22a263 100644 --- a/packages/material-ui-icons/lib/BrandingWatermarkTwoTone.js +++ b/packages/material-ui-icons/lib/BrandingWatermarkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V5H3v14zm8-7h9v6h-9v-6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z" -}, "1")], 'BrandingWatermarkTwoTone'); \ No newline at end of file +}, "1")], 'BrandingWatermarkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BreakfastDining.js b/packages/material-ui-icons/lib/BreakfastDining.js index 2c8f3657b579bb..7be6a1d198d6bb 100644 --- a/packages/material-ui-icons/lib/BreakfastDining.js +++ b/packages/material-ui-icons/lib/BreakfastDining.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm-4 12h-4v-4h4v4z" -}), 'BreakfastDining'); \ No newline at end of file +}), 'BreakfastDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BreakfastDiningOutlined.js b/packages/material-ui-icons/lib/BreakfastDiningOutlined.js index 2c908fed485417..9360da3e64e30d 100644 --- a/packages/material-ui-icons/lib/BreakfastDiningOutlined.js +++ b/packages/material-ui-icons/lib/BreakfastDiningOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm1 5.72-1 .58V19H6V9.31l-.99-.58C4.38 8.35 4 7.71 4 7c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .71-.38 1.36-1 1.72z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.71 9.29C12.51 9.1 12.26 9 12 9s-.51.1-.71.29l-3 3c-.39.39-.39 1.02 0 1.41l3 3c.2.2.45.3.71.3s.51-.1.71-.29l3-3c.39-.39.39-1.02 0-1.41l-3-3.01zM12 14.58 10.41 13 12 11.41 13.59 13 12 14.58z" -}, "1")], 'BreakfastDiningOutlined'); \ No newline at end of file +}, "1")], 'BreakfastDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BreakfastDiningRounded.js b/packages/material-ui-icons/lib/BreakfastDiningRounded.js index aa10bdb5d30521..822df0390ba9a4 100644 --- a/packages/material-ui-icons/lib/BreakfastDiningRounded.js +++ b/packages/material-ui-icons/lib/BreakfastDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm-2.29 10.7-3 3c-.39.39-1.02.39-1.42 0l-3-3a.9959.9959 0 0 1 0-1.41l3-3c.39-.39 1.02-.39 1.41 0l3 3c.4.39.4 1.02.01 1.41z" -}), 'BreakfastDiningRounded'); \ No newline at end of file +}), 'BreakfastDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BreakfastDiningSharp.js b/packages/material-ui-icons/lib/BreakfastDiningSharp.js index feacc5e1d9be75..456ee3bb04942f 100644 --- a/packages/material-ui-icons/lib/BreakfastDiningSharp.js +++ b/packages/material-ui-icons/lib/BreakfastDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.85 3H6.14C4.15 3 2.36 4.39 2.05 6.36c-.27 1.75.59 3.29 1.95 4.09V21h16V10.45c1.36-.79 2.23-2.36 1.95-4.11C21.63 4.38 19.83 3 17.85 3zm-1.44 10L12 17.42 7.59 13 12 8.59 16.41 13z" -}), 'BreakfastDiningSharp'); \ No newline at end of file +}), 'BreakfastDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BreakfastDiningTwoTone.js b/packages/material-ui-icons/lib/BreakfastDiningTwoTone.js index 8d371d57d66a0a..c25297ebfbb9a7 100644 --- a/packages/material-ui-icons/lib/BreakfastDiningTwoTone.js +++ b/packages/material-ui-icons/lib/BreakfastDiningTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5H6c-1.1 0-2 .9-2 2 0 .71.38 1.35 1.01 1.73l.99.58V19h12V9.3l1-.58c.63-.36 1-1.01 1-1.72 0-1.1-.9-2-2-2zm-2.29 8.7-3 3c-.2.2-.45.3-.71.3s-.51-.1-.71-.29l-3-3a.9959.9959 0 0 1 0-1.41l3-3c.2-.2.45-.3.71-.3s.51.1.71.29l3 3c.39.39.39 1.02 0 1.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm1 5.72-1 .58V19H6V9.31l-.99-.58C4.38 8.35 4 7.71 4 7c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .71-.38 1.36-1 1.72z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.71 9.29C12.51 9.1 12.26 9 12 9s-.51.1-.71.29l-3 3c-.39.39-.39 1.02 0 1.41l3 3c.2.2.45.3.71.3s.51-.1.71-.29l3-3c.39-.39.39-1.02 0-1.41l-3-3.01zM12 14.58 10.41 13 12 11.41 13.59 13 12 14.58z" -}, "2")], 'BreakfastDiningTwoTone'); \ No newline at end of file +}, "2")], 'BreakfastDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness1.js b/packages/material-ui-icons/lib/Brightness1.js index ebb926ae4717ed..32154c91297ffc 100644 --- a/packages/material-ui-icons/lib/Brightness1.js +++ b/packages/material-ui-icons/lib/Brightness1.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "10" -}), 'Brightness1'); \ No newline at end of file +}), 'Brightness1'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness1Outlined.js b/packages/material-ui-icons/lib/Brightness1Outlined.js index d91d56632c4926..a24a9c7c084421 100644 --- a/packages/material-ui-icons/lib/Brightness1Outlined.js +++ b/packages/material-ui-icons/lib/Brightness1Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'Brightness1Outlined'); \ No newline at end of file +}), 'Brightness1Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness1Rounded.js b/packages/material-ui-icons/lib/Brightness1Rounded.js index d66fa80108faa6..5da9d8b621793b 100644 --- a/packages/material-ui-icons/lib/Brightness1Rounded.js +++ b/packages/material-ui-icons/lib/Brightness1Rounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "10" -}), 'Brightness1Rounded'); \ No newline at end of file +}), 'Brightness1Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness1Sharp.js b/packages/material-ui-icons/lib/Brightness1Sharp.js index 3f0358910a1721..79043146f8d6e2 100644 --- a/packages/material-ui-icons/lib/Brightness1Sharp.js +++ b/packages/material-ui-icons/lib/Brightness1Sharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "10" -}), 'Brightness1Sharp'); \ No newline at end of file +}), 'Brightness1Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness1TwoTone.js b/packages/material-ui-icons/lib/Brightness1TwoTone.js index 729a4e1f0104ea..a6f04a7a85e2b1 100644 --- a/packages/material-ui-icons/lib/Brightness1TwoTone.js +++ b/packages/material-ui-icons/lib/Brightness1TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" -}, "1")], 'Brightness1TwoTone'); \ No newline at end of file +}, "1")], 'Brightness1TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness2.js b/packages/material-ui-icons/lib/Brightness2.js index 97f7e706e155e3..ff3670582ba649 100644 --- a/packages/material-ui-icons/lib/Brightness2.js +++ b/packages/material-ui-icons/lib/Brightness2.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" -}), 'Brightness2'); \ No newline at end of file +}), 'Brightness2'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness2Outlined.js b/packages/material-ui-icons/lib/Brightness2Outlined.js index d1e29fd4794cd5..ece9d72d541995 100644 --- a/packages/material-ui-icons/lib/Brightness2Outlined.js +++ b/packages/material-ui-icons/lib/Brightness2Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12s-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4m0-2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" -}), 'Brightness2Outlined'); \ No newline at end of file +}), 'Brightness2Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness2Rounded.js b/packages/material-ui-icons/lib/Brightness2Rounded.js index d20b2e1d7d51df..b047843df10c8c 100644 --- a/packages/material-ui-icons/lib/Brightness2Rounded.js +++ b/packages/material-ui-icons/lib/Brightness2Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.43 2.3c-2.38-.59-4.68-.27-6.63.64-.35.16-.41.64-.1.86C8.3 5.6 10 8.6 10 12c0 3.4-1.7 6.4-4.3 8.2-.32.22-.26.7.09.86 1.28.6 2.71.94 4.21.94 6.05 0 10.85-5.38 9.87-11.6-.61-3.92-3.59-7.16-7.44-8.1z" -}), 'Brightness2Rounded'); \ No newline at end of file +}), 'Brightness2Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness2Sharp.js b/packages/material-ui-icons/lib/Brightness2Sharp.js index 6feb873bd96472..fb2d9944760f22 100644 --- a/packages/material-ui-icons/lib/Brightness2Sharp.js +++ b/packages/material-ui-icons/lib/Brightness2Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" -}), 'Brightness2Sharp'); \ No newline at end of file +}), 'Brightness2Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness2TwoTone.js b/packages/material-ui-icons/lib/Brightness2TwoTone.js index 1436dbec6a78c5..eb5bdc9df97bf8 100644 --- a/packages/material-ui-icons/lib/Brightness2TwoTone.js +++ b/packages/material-ui-icons/lib/Brightness2TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 12c0-4.41-3.59-8-8-8-.34 0-.68.02-1.01.07C10.9 6.23 12 9.05 12 12c0 2.95-1.1 5.77-3.01 7.93.33.05.67.07 1.01.07 4.41 0 8-3.59 8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65zM12 12c0-2.95-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12z" -}, "1")], 'Brightness2TwoTone'); \ No newline at end of file +}, "1")], 'Brightness2TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness3.js b/packages/material-ui-icons/lib/Brightness3.js index d41d870adc2da0..5787c997cc3f05 100644 --- a/packages/material-ui-icons/lib/Brightness3.js +++ b/packages/material-ui-icons/lib/Brightness3.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" -}), 'Brightness3'); \ No newline at end of file +}), 'Brightness3'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness3Outlined.js b/packages/material-ui-icons/lib/Brightness3Outlined.js index 2a28ac587dd647..58ec88ce6de3e4 100644 --- a/packages/material-ui-icons/lib/Brightness3Outlined.js +++ b/packages/material-ui-icons/lib/Brightness3Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.7 4.91C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" -}), 'Brightness3Outlined'); \ No newline at end of file +}), 'Brightness3Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness3Rounded.js b/packages/material-ui-icons/lib/Brightness3Rounded.js index 281c16dd50b79b..65a62527f5c7a8 100644 --- a/packages/material-ui-icons/lib/Brightness3Rounded.js +++ b/packages/material-ui-icons/lib/Brightness3Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.93 2h-.14c-.83.02-1.09 1.12-.39 1.56 2.78 1.77 4.63 4.89 4.63 8.44s-1.84 6.66-4.62 8.43c-.71.46-.43 1.55.41 1.57h.21c6.05 0 10.86-5.39 9.87-11.63-.76-4.84-5.07-8.42-9.97-8.37z" -}), 'Brightness3Rounded'); \ No newline at end of file +}), 'Brightness3Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness3Sharp.js b/packages/material-ui-icons/lib/Brightness3Sharp.js index 2c3ac2a7ff6baa..60a3a8b6bd2262 100644 --- a/packages/material-ui-icons/lib/Brightness3Sharp.js +++ b/packages/material-ui-icons/lib/Brightness3Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" -}), 'Brightness3Sharp'); \ No newline at end of file +}), 'Brightness3Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness3TwoTone.js b/packages/material-ui-icons/lib/Brightness3TwoTone.js index 03f1637f320bcc..706365082854f1 100644 --- a/packages/material-ui-icons/lib/Brightness3TwoTone.js +++ b/packages/material-ui-icons/lib/Brightness3TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.7 4.91c1.46 2 2.3 4.46 2.3 7.09s-.84 5.09-2.3 7.09C15.25 17.76 17 15.08 17 12s-1.75-5.76-4.3-7.09z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2zm3.7 17.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09z" -}, "1")], 'Brightness3TwoTone'); \ No newline at end of file +}, "1")], 'Brightness3TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness4.js b/packages/material-ui-icons/lib/Brightness4.js index a9a0be89d91c62..0de7f2c7392048 100644 --- a/packages/material-ui-icons/lib/Brightness4.js +++ b/packages/material-ui-icons/lib/Brightness4.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" -}), 'Brightness4'); \ No newline at end of file +}), 'Brightness4'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness4Outlined.js b/packages/material-ui-icons/lib/Brightness4Outlined.js index dead9aab2d7b76..147504dd58f9a6 100644 --- a/packages/material-ui-icons/lib/Brightness4Outlined.js +++ b/packages/material-ui-icons/lib/Brightness4Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z" -}), 'Brightness4Outlined'); \ No newline at end of file +}), 'Brightness4Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness4Rounded.js b/packages/material-ui-icons/lib/Brightness4Rounded.js index bf845a57ebd1a7..e92e88c6861ed9 100644 --- a/packages/material-ui-icons/lib/Brightness4Rounded.js +++ b/packages/material-ui-icons/lib/Brightness4Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.6 11.29 20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69l2.6-2.6c.39-.39.39-1.03 0-1.42zm-4.68 1.69c-.34 2.12-1.85 3.94-3.88 4.66-1.21.43-2.41.45-3.5.18-.41-.1-.48-.65-.13-.9C11.98 15.84 13 14.04 13 12s-1.02-3.84-2.58-4.92c-.35-.24-.29-.79.13-.9 1.09-.27 2.29-.25 3.5.18 2.02.72 3.54 2.54 3.88 4.66.05.33.07.66.07.98-.01.32-.03.65-.08.98z" -}), 'Brightness4Rounded'); \ No newline at end of file +}), 'Brightness4Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness4Sharp.js b/packages/material-ui-icons/lib/Brightness4Sharp.js index 9621d4f7f8c1bc..e53d94bc336797 100644 --- a/packages/material-ui-icons/lib/Brightness4Sharp.js +++ b/packages/material-ui-icons/lib/Brightness4Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" -}), 'Brightness4Sharp'); \ No newline at end of file +}), 'Brightness4Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness4TwoTone.js b/packages/material-ui-icons/lib/Brightness4TwoTone.js index 78f86985df83a9..77964ad290ea52 100644 --- a/packages/material-ui-icons/lib/Brightness4TwoTone.js +++ b/packages/material-ui-icons/lib/Brightness4TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12.29 17c-.74 0-1.45-.17-2.08-.46 1.72-.79 2.92-2.52 2.92-4.54s-1.2-3.75-2.92-4.54c.63-.29 1.34-.46 2.08-.46 2.76 0 5 2.24 5 5s-2.24 5-5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z" -}, "1")], 'Brightness4TwoTone'); \ No newline at end of file +}, "1")], 'Brightness4TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness5.js b/packages/material-ui-icons/lib/Brightness5.js index 988c47ccc27242..078458c813ced0 100644 --- a/packages/material-ui-icons/lib/Brightness5.js +++ b/packages/material-ui-icons/lib/Brightness5.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'Brightness5'); \ No newline at end of file +}), 'Brightness5'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness5Outlined.js b/packages/material-ui-icons/lib/Brightness5Outlined.js index cc0fc1e8332ae1..611dd38dc98754 100644 --- a/packages/material-ui-icons/lib/Brightness5Outlined.js +++ b/packages/material-ui-icons/lib/Brightness5Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" -}), 'Brightness5Outlined'); \ No newline at end of file +}), 'Brightness5Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness5Rounded.js b/packages/material-ui-icons/lib/Brightness5Rounded.js index 6cbb95ccd3bf05..debb3e58a29ddb 100644 --- a/packages/material-ui-icons/lib/Brightness5Rounded.js +++ b/packages/material-ui-icons/lib/Brightness5Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 15.31 2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'Brightness5Rounded'); \ No newline at end of file +}), 'Brightness5Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness5Sharp.js b/packages/material-ui-icons/lib/Brightness5Sharp.js index 034cbd98513a97..32dab8822e1dfb 100644 --- a/packages/material-ui-icons/lib/Brightness5Sharp.js +++ b/packages/material-ui-icons/lib/Brightness5Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'Brightness5Sharp'); \ No newline at end of file +}), 'Brightness5Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness5TwoTone.js b/packages/material-ui-icons/lib/Brightness5TwoTone.js index c14e1a6b72b7f0..b36baf2eb82c93 100644 --- a/packages/material-ui-icons/lib/Brightness5TwoTone.js +++ b/packages/material-ui-icons/lib/Brightness5TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" -}, "1")], 'Brightness5TwoTone'); \ No newline at end of file +}, "1")], 'Brightness5TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness6.js b/packages/material-ui-icons/lib/Brightness6.js index 21beab6f3fa1c6..94894bff637c25 100644 --- a/packages/material-ui-icons/lib/Brightness6.js +++ b/packages/material-ui-icons/lib/Brightness6.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" -}), 'Brightness6'); \ No newline at end of file +}), 'Brightness6'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness6Outlined.js b/packages/material-ui-icons/lib/Brightness6Outlined.js index 46db608bcd678b..19ed63a01aad0f 100644 --- a/packages/material-ui-icons/lib/Brightness6Outlined.js +++ b/packages/material-ui-icons/lib/Brightness6Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z" -}), 'Brightness6Outlined'); \ No newline at end of file +}), 'Brightness6Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness6Rounded.js b/packages/material-ui-icons/lib/Brightness6Rounded.js index 28dca58d4b8188..9d1b7537a66c4c 100644 --- a/packages/material-ui-icons/lib/Brightness6Rounded.js +++ b/packages/material-ui-icons/lib/Brightness6Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 15.31 2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69zm-8 1.59V7.1c0-.61.55-1.11 1.15-.99C15.91 6.65 18 9.08 18 12s-2.09 5.35-4.85 5.89c-.6.12-1.15-.38-1.15-.99z" -}), 'Brightness6Rounded'); \ No newline at end of file +}), 'Brightness6Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness6Sharp.js b/packages/material-ui-icons/lib/Brightness6Sharp.js index ac9bb5cc89cb13..8c9cc479476f12 100644 --- a/packages/material-ui-icons/lib/Brightness6Sharp.js +++ b/packages/material-ui-icons/lib/Brightness6Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" -}), 'Brightness6Sharp'); \ No newline at end of file +}), 'Brightness6Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness6TwoTone.js b/packages/material-ui-icons/lib/Brightness6TwoTone.js index 96963e1605cc14..809529eaf3eacd 100644 --- a/packages/material-ui-icons/lib/Brightness6TwoTone.js +++ b/packages/material-ui-icons/lib/Brightness6TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98v-11c3.03 0 5.5 2.47 5.5 5.5s-2.47 5.5-5.5 5.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z" -}, "1")], 'Brightness6TwoTone'); \ No newline at end of file +}, "1")], 'Brightness6TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness7.js b/packages/material-ui-icons/lib/Brightness7.js index 1e92653ce59369..7252988eae7b95 100644 --- a/packages/material-ui-icons/lib/Brightness7.js +++ b/packages/material-ui-icons/lib/Brightness7.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'Brightness7'); \ No newline at end of file +}), 'Brightness7'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness7Outlined.js b/packages/material-ui-icons/lib/Brightness7Outlined.js index a8be38af949024..6e4ad0360779b4 100644 --- a/packages/material-ui-icons/lib/Brightness7Outlined.js +++ b/packages/material-ui-icons/lib/Brightness7Outlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2" -}, "1")], 'Brightness7Outlined'); \ No newline at end of file +}, "1")], 'Brightness7Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness7Rounded.js b/packages/material-ui-icons/lib/Brightness7Rounded.js index a13f6eece66c96..4f1a3042712be0 100644 --- a/packages/material-ui-icons/lib/Brightness7Rounded.js +++ b/packages/material-ui-icons/lib/Brightness7Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69l2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'Brightness7Rounded'); \ No newline at end of file +}), 'Brightness7Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness7Sharp.js b/packages/material-ui-icons/lib/Brightness7Sharp.js index e0db11710b3d32..867671c106abdb 100644 --- a/packages/material-ui-icons/lib/Brightness7Sharp.js +++ b/packages/material-ui-icons/lib/Brightness7Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'Brightness7Sharp'); \ No newline at end of file +}), 'Brightness7Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brightness7TwoTone.js b/packages/material-ui-icons/lib/Brightness7TwoTone.js index af92847cf26d39..9156e0f0c8f452 100644 --- a/packages/material-ui-icons/lib/Brightness7TwoTone.js +++ b/packages/material-ui-icons/lib/Brightness7TwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2" -}, "2")], 'Brightness7TwoTone'); \ No newline at end of file +}, "2")], 'Brightness7TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessAuto.js b/packages/material-ui-icons/lib/BrightnessAuto.js index 43c92c3cb10d6a..14a72260d012ca 100644 --- a/packages/material-ui-icons/lib/BrightnessAuto.js +++ b/packages/material-ui-icons/lib/BrightnessAuto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z" -}), 'BrightnessAuto'); \ No newline at end of file +}), 'BrightnessAuto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessAutoOutlined.js b/packages/material-ui-icons/lib/BrightnessAutoOutlined.js index 437aaddb9d86ce..8c71ead4cc4d2e 100644 --- a/packages/material-ui-icons/lib/BrightnessAutoOutlined.js +++ b/packages/material-ui-icons/lib/BrightnessAutoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z" -}), 'BrightnessAutoOutlined'); \ No newline at end of file +}), 'BrightnessAutoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessAutoRounded.js b/packages/material-ui-icons/lib/BrightnessAutoRounded.js index 5dcc4d00a60263..f20c4ae03f5643 100644 --- a/packages/material-ui-icons/lib/BrightnessAutoRounded.js +++ b/packages/material-ui-icons/lib/BrightnessAutoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69zm-5.91 6.71L13.6 14h-3.2l-.49 1.4c-.13.36-.46.6-.84.6-.62 0-1.05-.61-.84-1.19l2.44-6.86c.2-.57.73-.95 1.33-.95.6 0 1.13.38 1.34.94l2.44 6.86c.21.58-.22 1.19-.84 1.19-.39.01-.72-.23-.85-.59z" -}), 'BrightnessAutoRounded'); \ No newline at end of file +}), 'BrightnessAutoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessAutoSharp.js b/packages/material-ui-icons/lib/BrightnessAutoSharp.js index d4293d7e63f830..b06be33f13d1a0 100644 --- a/packages/material-ui-icons/lib/BrightnessAutoSharp.js +++ b/packages/material-ui-icons/lib/BrightnessAutoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z" -}), 'BrightnessAutoSharp'); \ No newline at end of file +}), 'BrightnessAutoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessAutoTwoTone.js b/packages/material-ui-icons/lib/BrightnessAutoTwoTone.js index 0aef5ad8a640ee..0e6e5dcef2c129 100644 --- a/packages/material-ui-icons/lib/BrightnessAutoTwoTone.js +++ b/packages/material-ui-icons/lib/BrightnessAutoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L12 9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z" -}, "1")], 'BrightnessAutoTwoTone'); \ No newline at end of file +}, "1")], 'BrightnessAutoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessHigh.js b/packages/material-ui-icons/lib/BrightnessHigh.js index 2f51b8191bb540..341c27c72346a4 100644 --- a/packages/material-ui-icons/lib/BrightnessHigh.js +++ b/packages/material-ui-icons/lib/BrightnessHigh.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'BrightnessHigh'); \ No newline at end of file +}), 'BrightnessHigh'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessHighOutlined.js b/packages/material-ui-icons/lib/BrightnessHighOutlined.js index 1981732ea78a56..8cfd55da180855 100644 --- a/packages/material-ui-icons/lib/BrightnessHighOutlined.js +++ b/packages/material-ui-icons/lib/BrightnessHighOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2.5" -}, "1")], 'BrightnessHighOutlined'); \ No newline at end of file +}, "1")], 'BrightnessHighOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessHighRounded.js b/packages/material-ui-icons/lib/BrightnessHighRounded.js index d6406f85f6968b..46c2b4f14edc3f 100644 --- a/packages/material-ui-icons/lib/BrightnessHighRounded.js +++ b/packages/material-ui-icons/lib/BrightnessHighRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'BrightnessHighRounded'); \ No newline at end of file +}), 'BrightnessHighRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessHighSharp.js b/packages/material-ui-icons/lib/BrightnessHighSharp.js index 29494093469139..4a2222290531a6 100644 --- a/packages/material-ui-icons/lib/BrightnessHighSharp.js +++ b/packages/material-ui-icons/lib/BrightnessHighSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'BrightnessHighSharp'); \ No newline at end of file +}), 'BrightnessHighSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessHighTwoTone.js b/packages/material-ui-icons/lib/BrightnessHighTwoTone.js index 533b30566dbb9f..23926f93fd843a 100644 --- a/packages/material-ui-icons/lib/BrightnessHighTwoTone.js +++ b/packages/material-ui-icons/lib/BrightnessHighTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2.5" -}, "2")], 'BrightnessHighTwoTone'); \ No newline at end of file +}, "2")], 'BrightnessHighTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessLow.js b/packages/material-ui-icons/lib/BrightnessLow.js index 3dd4e60e199f45..fc7d73bd725baf 100644 --- a/packages/material-ui-icons/lib/BrightnessLow.js +++ b/packages/material-ui-icons/lib/BrightnessLow.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'BrightnessLow'); \ No newline at end of file +}), 'BrightnessLow'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessLowOutlined.js b/packages/material-ui-icons/lib/BrightnessLowOutlined.js index ed569b5af7281a..9e99028206512f 100644 --- a/packages/material-ui-icons/lib/BrightnessLowOutlined.js +++ b/packages/material-ui-icons/lib/BrightnessLowOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'BrightnessLowOutlined'); \ No newline at end of file +}), 'BrightnessLowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessLowRounded.js b/packages/material-ui-icons/lib/BrightnessLowRounded.js index 1c4fd67ea056aa..14c546f7bb14a1 100644 --- a/packages/material-ui-icons/lib/BrightnessLowRounded.js +++ b/packages/material-ui-icons/lib/BrightnessLowRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 15.31 1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'BrightnessLowRounded'); \ No newline at end of file +}), 'BrightnessLowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessLowSharp.js b/packages/material-ui-icons/lib/BrightnessLowSharp.js index 1a08758b1f585b..521997bb63fe2d 100644 --- a/packages/material-ui-icons/lib/BrightnessLowSharp.js +++ b/packages/material-ui-icons/lib/BrightnessLowSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'BrightnessLowSharp'); \ No newline at end of file +}), 'BrightnessLowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessLowTwoTone.js b/packages/material-ui-icons/lib/BrightnessLowTwoTone.js index f2a30f72506678..35c8ec5dc10bb9 100644 --- a/packages/material-ui-icons/lib/BrightnessLowTwoTone.js +++ b/packages/material-ui-icons/lib/BrightnessLowTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "1")], 'BrightnessLowTwoTone'); \ No newline at end of file +}, "1")], 'BrightnessLowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessMedium.js b/packages/material-ui-icons/lib/BrightnessMedium.js index 6d68f5edc6bae5..125797de407c16 100644 --- a/packages/material-ui-icons/lib/BrightnessMedium.js +++ b/packages/material-ui-icons/lib/BrightnessMedium.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" -}), 'BrightnessMedium'); \ No newline at end of file +}), 'BrightnessMedium'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessMediumOutlined.js b/packages/material-ui-icons/lib/BrightnessMediumOutlined.js index 0e8b16af1f1e3b..d9a361c302999e 100644 --- a/packages/material-ui-icons/lib/BrightnessMediumOutlined.js +++ b/packages/material-ui-icons/lib/BrightnessMediumOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z" -}), 'BrightnessMediumOutlined'); \ No newline at end of file +}), 'BrightnessMediumOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessMediumRounded.js b/packages/material-ui-icons/lib/BrightnessMediumRounded.js index b0184c01ab05db..0212ab63337a15 100644 --- a/packages/material-ui-icons/lib/BrightnessMediumRounded.js +++ b/packages/material-ui-icons/lib/BrightnessMediumRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 15.31 1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69zm-8 1.59V7.1c0-.61.55-1.11 1.15-.99C15.91 6.65 18 9.08 18 12s-2.09 5.35-4.85 5.89c-.6.12-1.15-.38-1.15-.99z" -}), 'BrightnessMediumRounded'); \ No newline at end of file +}), 'BrightnessMediumRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessMediumSharp.js b/packages/material-ui-icons/lib/BrightnessMediumSharp.js index eb52450cb86e1d..7a3d79908b9c56 100644 --- a/packages/material-ui-icons/lib/BrightnessMediumSharp.js +++ b/packages/material-ui-icons/lib/BrightnessMediumSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" -}), 'BrightnessMediumSharp'); \ No newline at end of file +}), 'BrightnessMediumSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrightnessMediumTwoTone.js b/packages/material-ui-icons/lib/BrightnessMediumTwoTone.js index ebd74da59b517c..4b360ed1164721 100644 --- a/packages/material-ui-icons/lib/BrightnessMediumTwoTone.js +++ b/packages/material-ui-icons/lib/BrightnessMediumTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z" -}, "1")], 'BrightnessMediumTwoTone'); \ No newline at end of file +}, "1")], 'BrightnessMediumTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrokenImage.js b/packages/material-ui-icons/lib/BrokenImage.js index d79890a6ea0537..34e34b30969cf4 100644 --- a/packages/material-ui-icons/lib/BrokenImage.js +++ b/packages/material-ui-icons/lib/BrokenImage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42 3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l3 2.99 4-4 4 4 4-3.99z" -}), 'BrokenImage'); \ No newline at end of file +}), 'BrokenImage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrokenImageOutlined.js b/packages/material-ui-icons/lib/BrokenImageOutlined.js index f5ac3093616ed1..ec516c4a5d7a39 100644 --- a/packages/material-ui-icons/lib/BrokenImageOutlined.js +++ b/packages/material-ui-icons/lib/BrokenImageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z" -}), 'BrokenImageOutlined'); \ No newline at end of file +}), 'BrokenImageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrokenImageRounded.js b/packages/material-ui-icons/lib/BrokenImageRounded.js index d88ec8062aac4c..ab76181b62a9ba 100644 --- a/packages/material-ui-icons/lib/BrokenImageRounded.js +++ b/packages/material-ui-icons/lib/BrokenImageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5v6.59l-2.29-2.3c-.39-.39-1.03-.39-1.42 0L14 12.59 10.71 9.3a.9959.9959 0 0 0-1.41 0L6 12.59 3 9.58V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42 3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l2.29 2.29c.39.39 1.02.39 1.41 0l3.3-3.3 3.29 3.29c.39.39 1.02.39 1.41 0l3.3-3.28z" -}), 'BrokenImageRounded'); \ No newline at end of file +}), 'BrokenImageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrokenImageSharp.js b/packages/material-ui-icons/lib/BrokenImageSharp.js index 6f0d07d635999d..9a6cb5f9a41bf4 100644 --- a/packages/material-ui-icons/lib/BrokenImageSharp.js +++ b/packages/material-ui-icons/lib/BrokenImageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3v8.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V3h18zm-3 8.42 3 3.01V21H3v-8.58l3 2.99 4-4 4 4 4-3.99z" -}), 'BrokenImageSharp'); \ No newline at end of file +}), 'BrokenImageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrokenImageTwoTone.js b/packages/material-ui-icons/lib/BrokenImageTwoTone.js index 726b464a80597b..6bdb3431aff5f4 100644 --- a/packages/material-ui-icons/lib/BrokenImageTwoTone.js +++ b/packages/material-ui-icons/lib/BrokenImageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.99 15.41-4-4-4 4-.99-.99V19h14v-6.57l-1.01-1.01zM5 11.59l.99 1 4-4 4 4 4-4.01L19 9.59V5H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z" -}, "1")], 'BrokenImageTwoTone'); \ No newline at end of file +}, "1")], 'BrokenImageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrowserNotSupported.js b/packages/material-ui-icons/lib/BrowserNotSupported.js index 65cadc67039c81..414c6ebaaf65d7 100644 --- a/packages/material-ui-icons/lib/BrowserNotSupported.js +++ b/packages/material-ui-icons/lib/BrowserNotSupported.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.22 3.32 1.95 4.59 3 5.64V18c0 1.1.9 2 2 2h12.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" -}), 'BrowserNotSupported'); \ No newline at end of file +}), 'BrowserNotSupported'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrowserNotSupportedOutlined.js b/packages/material-ui-icons/lib/BrowserNotSupportedOutlined.js index 54d07c671f8aa2..f54c2bb0d4dcb9 100644 --- a/packages/material-ui-icons/lib/BrowserNotSupportedOutlined.js +++ b/packages/material-ui-icons/lib/BrowserNotSupportedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.22 3.32 1.95 4.59 3 5.64V18c0 1.1.9 2 2 2h12.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" -}), 'BrowserNotSupportedOutlined'); \ No newline at end of file +}), 'BrowserNotSupportedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrowserNotSupportedRounded.js b/packages/material-ui-icons/lib/BrowserNotSupportedRounded.js index 3ab4675d755074..8b831b6055b13e 100644 --- a/packages/material-ui-icons/lib/BrowserNotSupportedRounded.js +++ b/packages/material-ui-icons/lib/BrowserNotSupportedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.86 3.95c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l.41.42V18c0 1.1.9 2 2 2h12.36l1.42 1.42c.35.35.92.35 1.27 0s.35-.92 0-1.27L3.86 3.95zM5 18V7.64L15.36 18H5z" -}), 'BrowserNotSupportedRounded'); \ No newline at end of file +}), 'BrowserNotSupportedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrowserNotSupportedSharp.js b/packages/material-ui-icons/lib/BrowserNotSupportedSharp.js index 94ac1940316fa7..f728fdbe17f219 100644 --- a/packages/material-ui-icons/lib/BrowserNotSupportedSharp.js +++ b/packages/material-ui-icons/lib/BrowserNotSupportedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6v10.5l2 2V4H6.5l2 2zM3.22 3.32 1.95 4.59 3 5.64V20h14.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" -}), 'BrowserNotSupportedSharp'); \ No newline at end of file +}), 'BrowserNotSupportedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrowserNotSupportedTwoTone.js b/packages/material-ui-icons/lib/BrowserNotSupportedTwoTone.js index 6c6882aed70fba..35f41c09535df3 100644 --- a/packages/material-ui-icons/lib/BrowserNotSupportedTwoTone.js +++ b/packages/material-ui-icons/lib/BrowserNotSupportedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.22 3.32 1.95 4.59 3 5.64V18c0 1.1.9 2 2 2h12.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" -}), 'BrowserNotSupportedTwoTone'); \ No newline at end of file +}), 'BrowserNotSupportedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrunchDining.js b/packages/material-ui-icons/lib/BrunchDining.js index 327b8fa6c7d825..8c0ba6e0ea3273 100644 --- a/packages/material-ui-icons/lib/BrunchDining.js +++ b/packages/material-ui-icons/lib/BrunchDining.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M18 8h2V4h-2v4zm-2.49 14H2.49c-.27 0-.49-.22-.49-.5V20h14v1.5c0 .28-.22.5-.49.5zM18 15.89l-.4-.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h2v2h-4v-6.11zM7 16v-2h4v2h4.5c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5h-13c-.28 0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5H7z" -}), 'BrunchDining'); \ No newline at end of file +}), 'BrunchDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrunchDiningOutlined.js b/packages/material-ui-icons/lib/BrunchDiningOutlined.js index 706912ad1c6d3c..438e6129a860d9 100644 --- a/packages/material-ui-icons/lib/BrunchDiningOutlined.js +++ b/packages/material-ui-icons/lib/BrunchDiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 21.5c0 .28.22.5.49.5h13.02c.27 0 .49-.22.49-.5V20H2v1.5zM15.5 16H11v-2H7v2H2.5c-.28 0-.5.22-.5.5V18h14v-1.5c0-.28-.22-.5-.5-.5zm4.97-.55c.99-1.07 1.53-2.48 1.53-3.94V2h-6v9.47c0 1.48.58 2.92 1.6 4l.4.42V22h4v-2h-2v-4.03l.47-.52zM18 4h2v4h-2V4zm1.03 10.07c-.65-.71-1.03-1.65-1.03-2.6V10h2v1.51c0 .95-.34 1.85-.97 2.56z" -}), 'BrunchDiningOutlined'); \ No newline at end of file +}), 'BrunchDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrunchDiningRounded.js b/packages/material-ui-icons/lib/BrunchDiningRounded.js index 9cade60f2034ef..7a83c23e2d5865 100644 --- a/packages/material-ui-icons/lib/BrunchDiningRounded.js +++ b/packages/material-ui-icons/lib/BrunchDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h2V4h-2v4zm-3 14H3c-.55 0-1-.45-1-1v-1h14v1c0 .55-.45 1-1 1zm3-6.11-.4-.42c-1.03-1.08-1.6-2.51-1.6-4V3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v8.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h1c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1v-5.11zM7 16v-1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v1h4c.55 0 1 .45 1 1v1H2v-1c0-.55.45-1 1-1h4z" -}), 'BrunchDiningRounded'); \ No newline at end of file +}), 'BrunchDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrunchDiningSharp.js b/packages/material-ui-icons/lib/BrunchDiningSharp.js index 7e13da6e607539..6a0ebb9de95750 100644 --- a/packages/material-ui-icons/lib/BrunchDiningSharp.js +++ b/packages/material-ui-icons/lib/BrunchDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h2V4h-2v4zm-2 14H2v-2h14v2zm2-6.11-.4-.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h2v2h-4v-6.11zM7 16v-2h4v2h5v2H2v-2h5z" -}), 'BrunchDiningSharp'); \ No newline at end of file +}), 'BrunchDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrunchDiningTwoTone.js b/packages/material-ui-icons/lib/BrunchDiningTwoTone.js index 7550d8531d49c4..81dbfa236b88aa 100644 --- a/packages/material-ui-icons/lib/BrunchDiningTwoTone.js +++ b/packages/material-ui-icons/lib/BrunchDiningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10h-2v1.47c0 .95.37 1.89 1.03 2.6.63-.71.97-1.61.97-2.56V10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 21.5c0 .28.22.5.49.5h13.02c.27 0 .49-.22.49-.5V20H2v1.5zm18.47-6.05c.99-1.07 1.53-2.48 1.53-3.94V2h-6v9.47c0 1.48.58 2.92 1.6 4l.4.42V22h4v-2h-2v-4.03l.47-.52zM18 4h2v4h-2V4zm1.03 10.07c-.65-.71-1.03-1.65-1.03-2.6V10h2v1.51c0 .95-.34 1.85-.97 2.56zM15.5 16H11v-2H7v2H2.5c-.28 0-.5.22-.5.5V18h14v-1.5c0-.28-.22-.5-.5-.5z" -}, "1")], 'BrunchDiningTwoTone'); \ No newline at end of file +}, "1")], 'BrunchDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Brush.js b/packages/material-ui-icons/lib/Brush.js index 6d87891a7a4c42..94b3ef752eadea 100644 --- a/packages/material-ui-icons/lib/Brush.js +++ b/packages/material-ui-icons/lib/Brush.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37-1.34-1.34a.9959.9959 0 0 0-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z" -}), 'Brush'); \ No newline at end of file +}), 'Brush'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrushOutlined.js b/packages/material-ui-icons/lib/BrushOutlined.js index e75a7f1ae1e91e..4ce98689f09acb 100644 --- a/packages/material-ui-icons/lib/BrushOutlined.js +++ b/packages/material-ui-icons/lib/BrushOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29zM7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3z" -}), 'BrushOutlined'); \ No newline at end of file +}), 'BrushOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrushRounded.js b/packages/material-ui-icons/lib/BrushRounded.js index 1ee1356e2f9eca..74ca025a4b5ebd 100644 --- a/packages/material-ui-icons/lib/BrushRounded.js +++ b/packages/material-ui-icons/lib/BrushRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37-1.34-1.34a.9959.9959 0 0 0-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z" -}), 'BrushRounded'); \ No newline at end of file +}), 'BrushRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrushSharp.js b/packages/material-ui-icons/lib/BrushSharp.js index b8d87646f3f919..854ebaf8ee6300 100644 --- a/packages/material-ui-icons/lib/BrushSharp.js +++ b/packages/material-ui-icons/lib/BrushSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm14.41-8.66-2.75-2.75L9 12.25 11.75 15l9.66-9.66z" -}), 'BrushSharp'); \ No newline at end of file +}), 'BrushSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BrushTwoTone.js b/packages/material-ui-icons/lib/BrushTwoTone.js index c553f406b5c36b..2e898f124013b6 100644 --- a/packages/material-ui-icons/lib/BrushTwoTone.js +++ b/packages/material-ui-icons/lib/BrushTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 17c0-.55-.45-1-1-1s-1 .45-1 1c0 .74-.19 1.4-.5 1.95.17.03.33.05.5.05 1.1 0 2-.9 2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.75 15 8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29s-.51.1-.71.29L9 12.25 11.75 15zM6 21c2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3s-3 1.34-3 3c0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2zm0-4c0-.55.45-1 1-1s1 .45 1 1c0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95z" -}, "1")], 'BrushTwoTone'); \ No newline at end of file +}, "1")], 'BrushTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BubbleChart.js b/packages/material-ui-icons/lib/BubbleChart.js index cbdd5af4e52b17..ebca1112eaebf6 100644 --- a/packages/material-ui-icons/lib/BubbleChart.js +++ b/packages/material-ui-icons/lib/BubbleChart.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.2", cy: "14.4", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.8", cy: "18", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.2", cy: "8.8", r: "4.8" -}, "2")], 'BubbleChart'); \ No newline at end of file +}, "2")], 'BubbleChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BubbleChartOutlined.js b/packages/material-ui-icons/lib/BubbleChartOutlined.js index c8f1d6b88f76a6..f7d15afab20c74 100644 --- a/packages/material-ui-icons/lib/BubbleChartOutlined.js +++ b/packages/material-ui-icons/lib/BubbleChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM16.5 3C13.47 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3zm0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12z" -}), 'BubbleChartOutlined'); \ No newline at end of file +}), 'BubbleChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BubbleChartRounded.js b/packages/material-ui-icons/lib/BubbleChartRounded.js index 0a6b961c8245a2..29bf287b053433 100644 --- a/packages/material-ui-icons/lib/BubbleChartRounded.js +++ b/packages/material-ui-icons/lib/BubbleChartRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.2", cy: "14.4", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.8", cy: "18", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.2", cy: "8.8", r: "4.8" -}, "2")], 'BubbleChartRounded'); \ No newline at end of file +}, "2")], 'BubbleChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BubbleChartSharp.js b/packages/material-ui-icons/lib/BubbleChartSharp.js index 8bf8636bd85085..7904dcb67bda58 100644 --- a/packages/material-ui-icons/lib/BubbleChartSharp.js +++ b/packages/material-ui-icons/lib/BubbleChartSharp.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.2", cy: "14.4", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.8", cy: "18", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.2", cy: "8.8", r: "4.8" -}, "2")], 'BubbleChartSharp'); \ No newline at end of file +}, "2")], 'BubbleChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BubbleChartTwoTone.js b/packages/material-ui-icons/lib/BubbleChartTwoTone.js index 20dfd76f3c3c08..cce54c0e068071 100644 --- a/packages/material-ui-icons/lib/BubbleChartTwoTone.js +++ b/packages/material-ui-icons/lib/BubbleChartTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.01", cy: "18", r: "1", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "14", r: "2", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm11.01 6c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-4 0c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm2.49-4c3.03 0 5.5-2.47 5.5-5.5S19.53 3 16.5 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5zm0-9C18.43 5 20 6.57 20 8.5S18.43 12 16.5 12 13 10.43 13 8.5 14.57 5 16.5 5z" -}, "3")], 'BubbleChartTwoTone'); \ No newline at end of file +}, "3")], 'BubbleChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BugReport.js b/packages/material-ui-icons/lib/BugReport.js index a26bc9b0a4f5fa..b4334a5c1e62a5 100644 --- a/packages/material-ui-icons/lib/BugReport.js +++ b/packages/material-ui-icons/lib/BugReport.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z" -}), 'BugReport'); \ No newline at end of file +}), 'BugReport'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BugReportOutlined.js b/packages/material-ui-icons/lib/BugReportOutlined.js index 1bf56acc943165..d453454d32134e 100644 --- a/packages/material-ui-icons/lib/BugReportOutlined.js +++ b/packages/material-ui-icons/lib/BugReportOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.48 8 15.23 8 15v-4c0-.23.03-.48.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z" -}), 'BugReportOutlined'); \ No newline at end of file +}), 'BugReportOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BugReportRounded.js b/packages/material-ui-icons/lib/BugReportRounded.js index addb23523a7c47..6720913e8b73d1 100644 --- a/packages/material-ui-icons/lib/BugReportRounded.js +++ b/packages/material-ui-icons/lib/BugReportRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8h-1.81c-.45-.78-1.07-1.45-1.82-1.96l.93-.93c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-1.47 1.47C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L9.11 3.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.92.93C7.88 6.55 7.26 7.22 6.81 8H5c-.55 0-1 .45-1 1s.45 1 1 1h1.09c-.05.33-.09.66-.09 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .34.04.67.09 1H5c-.55 0-1 .45-1 1s.45 1 1 1h1.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H19c.55 0 1-.45 1-1s-.45-1-1-1h-1.09c.05-.33.09-.66.09-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.34-.04-.67-.09-1H19c.55 0 1-.45 1-1s-.45-1-1-1zm-6 8h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zm0-4h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'BugReportRounded'); \ No newline at end of file +}), 'BugReportRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BugReportSharp.js b/packages/material-ui-icons/lib/BugReportSharp.js index 7e082482887583..e7aef21de36d41 100644 --- a/packages/material-ui-icons/lib/BugReportSharp.js +++ b/packages/material-ui-icons/lib/BugReportSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z" -}), 'BugReportSharp'); \ No newline at end of file +}), 'BugReportSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BugReportTwoTone.js b/packages/material-ui-icons/lib/BugReportTwoTone.js index c9bfa43d2c25bd..4f663dd8da93cf 100644 --- a/packages/material-ui-icons/lib/BugReportTwoTone.js +++ b/packages/material-ui-icons/lib/BugReportTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.83 9.65 15.46 9c-.3-.53-.71-.96-1.21-1.31l-.61-.42-.68-.16C12.63 7.04 12.32 7 12 7c-.31 0-.63.04-.94.11l-.74.18-.57.4c-.49.34-.91.79-1.21 1.31l-.37.65-.1.65c-.04.23-.07.48-.07.7v4c0 .22.03.47.07.7l.1.65.37.65c.72 1.24 2.04 2 3.46 2s2.74-.77 3.46-2l.37-.64.1-.65c.04-.24.07-.49.07-.71v-4c0-.22-.03-.47-.07-.7l-.1-.65zM14 16h-4v-2h4v2zm0-4h-4v-2h4v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.47 8 15.22 8 15v-4c0-.22.03-.47.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z" -}, "1")], 'BugReportTwoTone'); \ No newline at end of file +}, "1")], 'BugReportTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Build.js b/packages/material-ui-icons/lib/Build.js index 4c965a1f519909..56855845d52f0d 100644 --- a/packages/material-ui-icons/lib/Build.js +++ b/packages/material-ui-icons/lib/Build.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.7 19-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z" -}), 'Build'); \ No newline at end of file +}), 'Build'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildCircle.js b/packages/material-ui-icons/lib/BuildCircle.js index a445d7d262091f..d63723f29e60d6 100644 --- a/packages/material-ui-icons/lib/BuildCircle.js +++ b/packages/material-ui-icons/lib/BuildCircle.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.9 13.49-1.4 1.4c-.2.2-.51.2-.71 0l-3.41-3.41c-1.22.43-2.64.17-3.62-.81-1.11-1.11-1.3-2.79-.59-4.1l2.35 2.35 1.41-1.41-2.35-2.34c1.32-.71 2.99-.52 4.1.59.98.98 1.24 2.4.81 3.62l3.41 3.41c.19.19.19.51 0 .7z" -}), 'BuildCircle'); \ No newline at end of file +}), 'BuildCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildCircleOutlined.js b/packages/material-ui-icons/lib/BuildCircleOutlined.js index 57ccf9aaf9c961..d8942676f87a52 100644 --- a/packages/material-ui-icons/lib/BuildCircleOutlined.js +++ b/packages/material-ui-icons/lib/BuildCircleOutlined.js @@ -1,11 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs("g", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", { fillRule: "evenodd", - children: [/*#__PURE__*/_jsx("path", { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.49 11.38c.43-1.22.17-2.64-.81-3.62-1.11-1.11-2.79-1.3-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71l-3.41-3.41z" })] -}), 'BuildCircleOutlined'); \ No newline at end of file +}), 'BuildCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildCircleRounded.js b/packages/material-ui-icons/lib/BuildCircleRounded.js index fc3a1c6f2201b5..98fc396ccefef6 100644 --- a/packages/material-ui-icons/lib/BuildCircleRounded.js +++ b/packages/material-ui-icons/lib/BuildCircleRounded.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.54 13.85-.69.69c-.39.39-1.02.39-1.41 0l-3.05-3.05c-1.22.43-2.64.17-3.62-.81-1.11-1.11-1.3-2.79-.59-4.1l2.35 2.35 1.41-1.41-2.36-2.35c1.32-.71 2.99-.52 4.1.59.98.98 1.24 2.4.81 3.62l3.05 3.05c.39.39.39 1.03 0 1.42z" -}), 'BuildCircleRounded'); \ No newline at end of file +}), 'BuildCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildCircleSharp.js b/packages/material-ui-icons/lib/BuildCircleSharp.js index 464372594c9d3d..c0d6ab0128f9ab 100644 --- a/packages/material-ui-icons/lib/BuildCircleSharp.js +++ b/packages/material-ui-icons/lib/BuildCircleSharp.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.14 15.25-3.76-3.76c-1.22.43-2.64.17-3.62-.81-1.11-1.11-1.3-2.79-.59-4.1l2.35 2.35 1.41-1.41-2.35-2.35c1.32-.71 2.99-.52 4.1.59.98.98 1.24 2.4.81 3.62l3.76 3.76-2.11 2.11z" -}), 'BuildCircleSharp'); \ No newline at end of file +}), 'BuildCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildCircleTwoTone.js b/packages/material-ui-icons/lib/BuildCircleTwoTone.js index d8a4363410544e..58893a6be0d42d 100644 --- a/packages/material-ui-icons/lib/BuildCircleTwoTone.js +++ b/packages/material-ui-icons/lib/BuildCircleTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.68 7.76c-1.11-1.11-2.79-1.3-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71l-3.41-3.41c.43-1.23.17-2.64-.81-3.62z" -}, "2")], 'BuildCircleTwoTone'); \ No newline at end of file +}, "2")], 'BuildCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildOutlined.js b/packages/material-ui-icons/lib/BuildOutlined.js index d53e41f53b37cb..4b3fc4c648af56 100644 --- a/packages/material-ui-icons/lib/BuildOutlined.js +++ b/packages/material-ui-icons/lib/BuildOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.61 18.99-9.08-9.08c.93-2.34.45-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.52 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.01 0-1.41zm-3 1.6-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24-3.09-3.09c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.71-.42 1.37-.88 1.96l9.45 9.45-.88.89z" -}), 'BuildOutlined'); \ No newline at end of file +}), 'BuildOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildRounded.js b/packages/material-ui-icons/lib/BuildRounded.js index bd566fcabd8b04..5b1278b4866afa 100644 --- a/packages/material-ui-icons/lib/BuildRounded.js +++ b/packages/material-ui-icons/lib/BuildRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.09 2.91C10.08.9 7.07.49 4.65 1.67L8.28 5.3c.39.39.39 1.02 0 1.41L6.69 8.3c-.39.4-1.02.4-1.41 0L1.65 4.67C.48 7.1.89 10.09 2.9 12.1c1.86 1.86 4.58 2.35 6.89 1.48l7.96 7.96c1.03 1.03 2.69 1.03 3.71 0 1.03-1.03 1.03-2.69 0-3.71L13.54 9.9c.92-2.34.44-5.1-1.45-6.99z" -}), 'BuildRounded'); \ No newline at end of file +}), 'BuildRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildSharp.js b/packages/material-ui-icons/lib/BuildSharp.js index c1e0df4a53ed32..da399eb0db7ce0 100644 --- a/packages/material-ui-icons/lib/BuildSharp.js +++ b/packages/material-ui-icons/lib/BuildSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.09 2.91C10.08.9 7.07.49 4.65 1.67l4.34 4.34-3 3-4.34-4.34C.48 7.1.89 10.09 2.9 12.1c1.86 1.86 4.58 2.35 6.89 1.48l9.82 9.82 3.71-3.71-9.78-9.79c.92-2.34.44-5.1-1.45-6.99z" -}), 'BuildSharp'); \ No newline at end of file +}), 'BuildSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BuildTwoTone.js b/packages/material-ui-icons/lib/BuildTwoTone.js index 08d5f792d34cb5..896699ea55aace 100644 --- a/packages/material-ui-icons/lib/BuildTwoTone.js +++ b/packages/material-ui-icons/lib/BuildTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.92 8.28c.24-1.4-.16-2.89-1.24-3.96-.94-.95-2.2-1.39-3.44-1.32l3.09 3.09-4.24 4.24L3 7.24c-.07 1.24.37 2.49 1.31 3.44 1.04 1.04 2.47 1.45 3.83 1.25.71-.1 1.4-.38 2-.82l9.46 9.46.88-.88-9.45-9.45c.47-.6.77-1.26.89-1.96z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.61 18.97 13.54 9.9c.93-2.34.45-5.1-1.44-7C9.8.6 6.22.39 3.67 2.25L7.5 6.08 6.08 7.5 2.25 3.67C.39 6.21.6 9.79 2.9 12.09c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.02 0-1.41zm-3 1.6-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25-.95-.94-1.39-2.2-1.32-3.44l3.09 3.09 4.24-4.24L7.24 3c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.7-.42 1.36-.88 1.95l9.45 9.45-.88.9z" -}, "1")], 'BuildTwoTone'); \ No newline at end of file +}, "1")], 'BuildTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Bungalow.js b/packages/material-ui-icons/lib/Bungalow.js index 92cb788167f74b..a771df3d1479dc 100644 --- a/packages/material-ui-icons/lib/Bungalow.js +++ b/packages/material-ui-icons/lib/Bungalow.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4.2 15.5l1.7 1.06L7 14.8V21h4v-5h2v5h4v-6.21l1.1 1.77 1.7-1.06L12 3zm1 11h-2v-2h2v2z" -}), 'Bungalow'); \ No newline at end of file +}), 'Bungalow'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BungalowOutlined.js b/packages/material-ui-icons/lib/BungalowOutlined.js index 246362f3f3156c..e03e3c8ee674ac 100644 --- a/packages/material-ui-icons/lib/BungalowOutlined.js +++ b/packages/material-ui-icons/lib/BungalowOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 14h-2v-2h2v2zm5.1 2.56L17 14.79V21H7v-6.2l-1.1 1.76-1.7-1.06L12 3l7.8 12.5-1.7 1.06zM15 11.59l-3-4.8-3 4.8V19h2v-3h2v3h2v-7.41z" -}), 'BungalowOutlined'); \ No newline at end of file +}), 'BungalowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BungalowRounded.js b/packages/material-ui-icons/lib/BungalowRounded.js index a61872f2761c94..466f1fda4e9909 100644 --- a/packages/material-ui-icons/lib/BungalowRounded.js +++ b/packages/material-ui-icons/lib/BungalowRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c.55 0 1 .45 1 1v4h3c.55 0 1-.45 1-1v-5.21l.57.92c.29.47.91.61 1.38.32.47-.29.61-.91.32-1.38L12.85 4.36c-.39-.63-1.31-.63-1.7 0L4.73 14.65c-.29.47-.15 1.09.32 1.38.47.29 1.08.15 1.38-.32L7 14.8V20c0 .55.45 1 1 1h3v-4c0-.55.45-1 1-1zm1-3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}), 'BungalowRounded'); \ No newline at end of file +}), 'BungalowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BungalowSharp.js b/packages/material-ui-icons/lib/BungalowSharp.js index d7c928b03dbe5d..98b7bdaa171362 100644 --- a/packages/material-ui-icons/lib/BungalowSharp.js +++ b/packages/material-ui-icons/lib/BungalowSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4.2 15.5l1.7 1.06L7 14.8V21h4v-5h2v5h4v-6.21l1.1 1.77 1.7-1.06L12 3zm1 11h-2v-2h2v2z" -}), 'BungalowSharp'); \ No newline at end of file +}), 'BungalowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BungalowTwoTone.js b/packages/material-ui-icons/lib/BungalowTwoTone.js index 951955793ad169..687ef516ac2f88 100644 --- a/packages/material-ui-icons/lib/BungalowTwoTone.js +++ b/packages/material-ui-icons/lib/BungalowTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 6.78-3 4.8V19h2v-3h2v3h2v-7.42l-3-4.8zM13 14h-2v-2h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 14h-2v-2h2v2zm5.1 2.56L17 14.79V21H7v-6.2l-1.1 1.76-1.7-1.06L12 3l7.8 12.5-1.7 1.06zM15 11.59l-3-4.8-3 4.8V19h2v-3h2v3h2v-7.41z" -}, "1")], 'BungalowTwoTone'); \ No newline at end of file +}, "1")], 'BungalowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BurstMode.js b/packages/material-ui-icons/lib/BurstMode.js index a99abf054bf443..d9f82a7b9892ed 100644 --- a/packages/material-ui-icons/lib/BurstMode.js +++ b/packages/material-ui-icons/lib/BurstMode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z" -}), 'BurstMode'); \ No newline at end of file +}), 'BurstMode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BurstModeOutlined.js b/packages/material-ui-icons/lib/BurstModeOutlined.js index 1121229cc8bedc..24eee75cceda4c 100644 --- a/packages/material-ui-icons/lib/BurstModeOutlined.js +++ b/packages/material-ui-icons/lib/BurstModeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38-2 2.57L14 13.47l-2 2.52h8z" -}), 'BurstModeOutlined'); \ No newline at end of file +}), 'BurstModeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BurstModeRounded.js b/packages/material-ui-icons/lib/BurstModeRounded.js index 18e777d16d7874..5211bc32c95d5b 100644 --- a/packages/material-ui-icons/lib/BurstModeRounded.js +++ b/packages/material-ui-icons/lib/BurstModeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm4 0c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm16 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11.64 16.19l1.47-1.86c.2-.25.57-.25.78-.01l1.4 1.68 2.1-2.71c.2-.26.59-.26.79 0l2.21 2.9c.25.33.02.8-.4.8h-7.96c-.41.01-.65-.47-.39-.8z" -}), 'BurstModeRounded'); \ No newline at end of file +}), 'BurstModeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BurstModeSharp.js b/packages/material-ui-icons/lib/BurstModeSharp.js index 5720ec6c2bee22..64a8f07e4fbf30 100644 --- a/packages/material-ui-icons/lib/BurstModeSharp.js +++ b/packages/material-ui-icons/lib/BurstModeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h2v14H1V5zm4 0h2v14H5V5zm18 0H9v14h14V5zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z" -}), 'BurstModeSharp'); \ No newline at end of file +}), 'BurstModeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BurstModeTwoTone.js b/packages/material-ui-icons/lib/BurstModeTwoTone.js index 019524db439ce8..890a9bad9d249a 100644 --- a/packages/material-ui-icons/lib/BurstModeTwoTone.js +++ b/packages/material-ui-icons/lib/BurstModeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h10V7H11v10zm3-3.53 1.43 1.72 2-2.58L20 15.99h-8l2-2.52z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38-2 2.57L14 13.47l-2 2.52h8z" -}, "1")], 'BurstModeTwoTone'); \ No newline at end of file +}, "1")], 'BurstModeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusAlert.js b/packages/material-ui-icons/lib/BusAlert.js index aa7e55cc3686ce..6fd6a65dc29553 100644 --- a/packages/material-ui-icons/lib/BusAlert.js +++ b/packages/material-ui-icons/lib/BusAlert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1a7 7 0 0 0-5.78 3.05l.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h8v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08A7 7 0 0 0 16 1zM4.5 19a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.5-6a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm-1-9h2v5h-2zm0 6h2v2h-2z" -}), 'BusAlert'); \ No newline at end of file +}), 'BusAlert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusAlertOutlined.js b/packages/material-ui-icons/lib/BusAlertOutlined.js index 26d0c24982274a..dacf25eda95ad7 100644 --- a/packages/material-ui-icons/lib/BusAlertOutlined.js +++ b/packages/material-ui-icons/lib/BusAlertOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "15.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13.5", cy: "15.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.83-.71 2.98-1.09 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V21c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm12 5c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-3h12v3z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "3")], 'BusAlertOutlined'); \ No newline at end of file +}, "3")], 'BusAlertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusAlertRounded.js b/packages/material-ui-icons/lib/BusAlertRounded.js index 95ab8b11fdb26f..eb614220111688 100644 --- a/packages/material-ui-icons/lib/BusAlertRounded.js +++ b/packages/material-ui-icons/lib/BusAlertRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44v1.56c0 .83.67 1.5 1.5 1.5S6 21.33 6 20.5V20h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.56c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm2.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 5.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5s.5.22.5.5v3zm0 2c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5z" -}, "1")], 'BusAlertRounded'); \ No newline at end of file +}, "1")], 'BusAlertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusAlertSharp.js b/packages/material-ui-icons/lib/BusAlertSharp.js index 06117fa9145f64..9a3e18ab9c9bf4 100644 --- a/packages/material-ui-icons/lib/BusAlertSharp.js +++ b/packages/material-ui-icons/lib/BusAlertSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V22h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm2.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "1")], 'BusAlertSharp'); \ No newline at end of file +}, "1")], 'BusAlertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusAlertTwoTone.js b/packages/material-ui-icons/lib/BusAlertTwoTone.js index 38c715d5eda7da..0d4f7a8a9da528 100644 --- a/packages/material-ui-icons/lib/BusAlertTwoTone.js +++ b/packages/material-ui-icons/lib/BusAlertTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3H4v3zm9.5-2c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S7.33 17 6.5 17 5 16.33 5 15.5 5.67 14 6.5 14zM4.43 6H11c0-.33.03-.66.08-.98-3.68-.11-5.83.27-6.65.98z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.83-.71 2.98-1.09 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V21c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm12 5c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-3h12v3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "15.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13.5", cy: "15.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "4")], 'BusAlertTwoTone'); \ No newline at end of file +}, "4")], 'BusAlertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Business.js b/packages/material-ui-icons/lib/Business.js index 53c8fa95585cde..391c1792c91d21 100644 --- a/packages/material-ui-icons/lib/Business.js +++ b/packages/material-ui-icons/lib/Business.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'Business'); \ No newline at end of file +}), 'Business'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessCenter.js b/packages/material-ui-icons/lib/BusinessCenter.js index 9f7cc7fd3c75d6..ffc504b1de6afb 100644 --- a/packages/material-ui-icons/lib/BusinessCenter.js +++ b/packages/material-ui-icons/lib/BusinessCenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16v-1H3.01L3 19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2 2v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-6 0h-4V5h4v2z" -}), 'BusinessCenter'); \ No newline at end of file +}), 'BusinessCenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessCenterOutlined.js b/packages/material-ui-icons/lib/BusinessCenterOutlined.js index 08473f11eff822..40e2f40472dba8 100644 --- a/packages/material-ui-icons/lib/BusinessCenterOutlined.js +++ b/packages/material-ui-icons/lib/BusinessCenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zM4 9h16v5h-5v-3H9v3H4V9zm9 6h-2v-2h2v2zm6 4H5v-3h4v1h6v-1h4v3z" -}), 'BusinessCenterOutlined'); \ No newline at end of file +}), 'BusinessCenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessCenterRounded.js b/packages/material-ui-icons/lib/BusinessCenterRounded.js index 0ac24a0b9ddcc9..3e379044ce0da1 100644 --- a/packages/material-ui-icons/lib/BusinessCenterRounded.js +++ b/packages/material-ui-icons/lib/BusinessCenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 16h-2c-.55 0-1-.45-1-1H3.01v4c0 1.1.9 2 2 2H19c1.1 0 2-.9 2-2v-4h-7c0 .55-.45 1-1 1zm7-9h-4c0-2.21-1.79-4-4-4S8 4.79 8 7H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v1h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 7c0-1.1.9-2 2-2s2 .9 2 2H9.99 10z" -}), 'BusinessCenterRounded'); \ No newline at end of file +}), 'BusinessCenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessCenterSharp.js b/packages/material-ui-icons/lib/BusinessCenterSharp.js index 16fa4ddde24562..5a7e69ceffdd70 100644 --- a/packages/material-ui-icons/lib/BusinessCenterSharp.js +++ b/packages/material-ui-icons/lib/BusinessCenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16v-1H3.01v6H21v-6h-7v1h-4zm12-9h-6V5l-2-2h-4L8 5v2H2v7h8v-2h4v2h8V7zm-8 0h-4V5h4v2z" -}), 'BusinessCenterSharp'); \ No newline at end of file +}), 'BusinessCenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessCenterTwoTone.js b/packages/material-ui-icons/lib/BusinessCenterTwoTone.js index a46d6a0cfb7ca4..bb6390383e2ce2 100644 --- a/packages/material-ui-icons/lib/BusinessCenterTwoTone.js +++ b/packages/material-ui-icons/lib/BusinessCenterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17H9v-1H5v3h14v-3h-4zM4 14h5v-3h6v3h5V9H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm9 14H5v-3h4v1h6v-1h4v3zm-8-4v-2h2v2h-2zm9-1h-5v-3H9v3H4V9h16v5z" -}, "1")], 'BusinessCenterTwoTone'); \ No newline at end of file +}, "1")], 'BusinessCenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessOutlined.js b/packages/material-ui-icons/lib/BusinessOutlined.js index 19199347911ae7..e9b87c295b6c0b 100644 --- a/packages/material-ui-icons/lib/BusinessOutlined.js +++ b/packages/material-ui-icons/lib/BusinessOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'BusinessOutlined'); \ No newline at end of file +}), 'BusinessOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessRounded.js b/packages/material-ui-icons/lib/BusinessRounded.js index 00a59c05f84318..f85ca333b45726 100644 --- a/packages/material-ui-icons/lib/BusinessRounded.js +++ b/packages/material-ui-icons/lib/BusinessRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'BusinessRounded'); \ No newline at end of file +}), 'BusinessRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessSharp.js b/packages/material-ui-icons/lib/BusinessSharp.js index 2abdb69ac83021..87d78447470fa1 100644 --- a/packages/material-ui-icons/lib/BusinessSharp.js +++ b/packages/material-ui-icons/lib/BusinessSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'BusinessSharp'); \ No newline at end of file +}), 'BusinessSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/BusinessTwoTone.js b/packages/material-ui-icons/lib/BusinessTwoTone.js index e4b0bdf3651ba0..948af45e874cc1 100644 --- a/packages/material-ui-icons/lib/BusinessTwoTone.js +++ b/packages/material-ui-icons/lib/BusinessTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 15h2v2h-2zm0-4h2v2h-2zm6-4H12V3H2v18h20V7zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10z" -}, "1")], 'BusinessTwoTone'); \ No newline at end of file +}, "1")], 'BusinessTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cabin.js b/packages/material-ui-icons/lib/Cabin.js index e30fedca495528..e395286bd92150 100644 --- a/packages/material-ui-icons/lib/Cabin.js +++ b/packages/material-ui-icons/lib/Cabin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" -}), 'Cabin'); \ No newline at end of file +}), 'Cabin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CabinOutlined.js b/packages/material-ui-icons/lib/CabinOutlined.js index e0b07698560c37..3ae1ec63b3d9e5 100644 --- a/packages/material-ui-icons/lib/CabinOutlined.js +++ b/packages/material-ui-icons/lib/CabinOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" -}), 'CabinOutlined'); \ No newline at end of file +}), 'CabinOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CabinRounded.js b/packages/material-ui-icons/lib/CabinRounded.js index bdc03cfca79efa..67761201e6aab1 100644 --- a/packages/material-ui-icons/lib/CabinRounded.js +++ b/packages/material-ui-icons/lib/CabinRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.37 3.55C4.89 2.62 5.87 2 7 2c.38 0 .72-.22.89-.53.15-.31.5-.47.84-.47.74 0 1.26.8.9 1.45C9.11 3.38 8.13 4 7 4c-.38 0-.72.22-.89.53-.15.31-.5.47-.84.47-.74 0-1.26-.8-.9-1.45zm18.02 8.64c-.34.44-.96.52-1.4.19l-.99-.76V20c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1v-8.38l-.99.76c-.44.34-1.07.25-1.4-.19-.33-.44-.25-1.07.19-1.4L4 9.11V7c0-.55.45-1 1-1s1 .45 1 1v.58l5.39-4.12c.36-.27.86-.27 1.21 0l9.6 7.33c.44.34.53.97.19 1.4zM10.06 7h3.89L12 5.52 10.06 7zM6 10.1v.9h12v-.9L16.56 9H7.44L6 10.1zM6 13v2h12v-2H6zm12 6v-2H6v2h12z" -}), 'CabinRounded'); \ No newline at end of file +}), 'CabinRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CabinSharp.js b/packages/material-ui-icons/lib/CabinSharp.js index 12900478cf7ca5..b5321708af2ce7 100644 --- a/packages/material-ui-icons/lib/CabinSharp.js +++ b/packages/material-ui-icons/lib/CabinSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" -}), 'CabinSharp'); \ No newline at end of file +}), 'CabinSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CabinTwoTone.js b/packages/material-ui-icons/lib/CabinTwoTone.js index 5c7cf9e8de1cff..04b6ffd02eee2e 100644 --- a/packages/material-ui-icons/lib/CabinTwoTone.js +++ b/packages/material-ui-icons/lib/CabinTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.94 7h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" -}, "1")], 'CabinTwoTone'); \ No newline at end of file +}, "1")], 'CabinTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cable.js b/packages/material-ui-icons/lib/Cable.js index 3b7343b7537915..826937a8363ed0 100644 --- a/packages/material-ui-icons/lib/Cable.js +++ b/packages/material-ui-icons/lib/Cable.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1h-1v4c0 .55.45 1 1 1h1v7c0 1.1-.9 2-2 2s-2-.9-2-2V7c0-2.21-1.79-4-4-4S5 4.79 5 7v7H4c-.55 0-1 .45-1 1v4h1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h1v-4c0-.55-.45-1-1-1H7V7c0-1.1.9-2 2-2s2 .9 2 2v10c0 2.21 1.79 4 4 4s4-1.79 4-4v-7h1c.55 0 1-.45 1-1V5h-1z" -}), 'Cable'); \ No newline at end of file +}), 'Cable'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CableOutlined.js b/packages/material-ui-icons/lib/CableOutlined.js index babfcebf276dd4..64386cf6fae0ec 100644 --- a/packages/material-ui-icons/lib/CableOutlined.js +++ b/packages/material-ui-icons/lib/CableOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1h-1v4c0 .55.45 1 1 1h1v7c0 1.1-.9 2-2 2s-2-.9-2-2V7c0-2.21-1.79-4-4-4S5 4.79 5 7v7H4c-.55 0-1 .45-1 1v4h1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h1v-4c0-.55-.45-1-1-1H7V7c0-1.1.9-2 2-2s2 .9 2 2v10c0 2.21 1.79 4 4 4s4-1.79 4-4v-7h1c.55 0 1-.45 1-1V5h-1z" -}), 'CableOutlined'); \ No newline at end of file +}), 'CableOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CableRounded.js b/packages/material-ui-icons/lib/CableRounded.js index e1bde08ac30397..34e850acbe5a91 100644 --- a/packages/material-ui-icons/lib/CableRounded.js +++ b/packages/material-ui-icons/lib/CableRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v6.91c0 1.04-.76 1.98-1.79 2.08-1.2.12-2.21-.82-2.21-1.99V7.14c0-2.13-1.61-3.99-3.74-4.13C6.93 2.86 5 4.7 5 7v7H4c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H7V7.09c0-1.04.76-1.98 1.79-2.08C9.99 4.89 11 5.83 11 7v9.86c0 2.13 1.61 3.99 3.74 4.13C17.07 21.14 19 19.3 19 17v-7h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z" -}), 'CableRounded'); \ No newline at end of file +}), 'CableRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CableSharp.js b/packages/material-ui-icons/lib/CableSharp.js index 0df3f95d1a71de..f36784150e0e12 100644 --- a/packages/material-ui-icons/lib/CableSharp.js +++ b/packages/material-ui-icons/lib/CableSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V3h-4v2h-1v5h2v9h-4V3H5v11H3v5h1v2h4v-2h1v-5H7V5h4v16h8V10h2V5h-1z" -}), 'CableSharp'); \ No newline at end of file +}), 'CableSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CableTwoTone.js b/packages/material-ui-icons/lib/CableTwoTone.js index 8a0dd6d08b122e..9d9a83dbab94c1 100644 --- a/packages/material-ui-icons/lib/CableTwoTone.js +++ b/packages/material-ui-icons/lib/CableTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1h-1v4c0 .55.45 1 1 1h1v7c0 1.1-.9 2-2 2s-2-.9-2-2V7c0-2.21-1.79-4-4-4S5 4.79 5 7v7H4c-.55 0-1 .45-1 1v4h1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h1v-4c0-.55-.45-1-1-1H7V7c0-1.1.9-2 2-2s2 .9 2 2v10c0 2.21 1.79 4 4 4s4-1.79 4-4v-7h1c.55 0 1-.45 1-1V5h-1z" -}), 'CableTwoTone'); \ No newline at end of file +}), 'CableTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cached.js b/packages/material-ui-icons/lib/Cached.js index 8b82d0b00cac43..66e940a87c2694 100644 --- a/packages/material-ui-icons/lib/Cached.js +++ b/packages/material-ui-icons/lib/Cached.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" -}), 'Cached'); \ No newline at end of file +}), 'Cached'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CachedOutlined.js b/packages/material-ui-icons/lib/CachedOutlined.js index 8f69aaf7abfdc3..69444ef0968f44 100644 --- a/packages/material-ui-icons/lib/CachedOutlined.js +++ b/packages/material-ui-icons/lib/CachedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" -}), 'CachedOutlined'); \ No newline at end of file +}), 'CachedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CachedRounded.js b/packages/material-ui-icons/lib/CachedRounded.js index 20ebfca1e823fd..317f8f14d75053 100644 --- a/packages/material-ui-icons/lib/CachedRounded.js +++ b/packages/material-ui-icons/lib/CachedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.65 8.35-2.79 2.79c-.32.32-.1.86.35.86H18c0 3.31-2.69 6-6 6-.79 0-1.56-.15-2.25-.44-.36-.15-.77-.04-1.04.23-.51.51-.33 1.37.34 1.64.91.37 1.91.57 2.95.57 4.42 0 8-3.58 8-8h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01zM6 12c0-3.31 2.69-6 6-6 .79 0 1.56.15 2.25.44.36.15.77.04 1.04-.23.51-.51.33-1.37-.34-1.64C14.04 4.2 13.04 4 12 4c-4.42 0-8 3.58-8 8H2.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85H6z" -}), 'CachedRounded'); \ No newline at end of file +}), 'CachedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CachedSharp.js b/packages/material-ui-icons/lib/CachedSharp.js index 7251cfce76caf2..03f029bcf7b5bf 100644 --- a/packages/material-ui-icons/lib/CachedSharp.js +++ b/packages/material-ui-icons/lib/CachedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" -}), 'CachedSharp'); \ No newline at end of file +}), 'CachedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CachedTwoTone.js b/packages/material-ui-icons/lib/CachedTwoTone.js index 53bfdad6822fd2..55cdc0714bc916 100644 --- a/packages/material-ui-icons/lib/CachedTwoTone.js +++ b/packages/material-ui-icons/lib/CachedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" -}), 'CachedTwoTone'); \ No newline at end of file +}), 'CachedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cake.js b/packages/material-ui-icons/lib/Cake.js index 5b77efd52eab8d..5be920b6522d8f 100644 --- a/packages/material-ui-icons/lib/Cake.js +++ b/packages/material-ui-icons/lib/Cake.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.6 9.99-1.07-1.07-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V21c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-4.61c-.56.38-1.23.61-1.96.61-.92 0-1.79-.36-2.44-1.01zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z" -}), 'Cake'); \ No newline at end of file +}), 'Cake'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CakeOutlined.js b/packages/material-ui-icons/lib/CakeOutlined.js index c4c664a097b513..a2ca6848c12f9c 100644 --- a/packages/material-ui-icons/lib/CakeOutlined.js +++ b/packages/material-ui-icons/lib/CakeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z" -}), 'CakeOutlined'); \ No newline at end of file +}), 'CakeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CakeRounded.js b/packages/material-ui-icons/lib/CakeRounded.js index ce3a6292c7e6cf..2339baa60c384a 100644 --- a/packages/material-ui-icons/lib/CakeRounded.js +++ b/packages/material-ui-icons/lib/CakeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.68 5.88c.7-.24 1.22-.9 1.3-1.64.05-.47-.05-.91-.28-1.27L12.42.75c-.19-.33-.67-.33-.87 0l-1.28 2.22c-.17.3-.27.65-.27 1.03 0 1.32 1.3 2.35 2.68 1.88zm3.85 10.04-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-3.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V8c0-.55-.45-1-1-1s-1 .45-1 1v1H6c-1.66 0-3 1.34-3 3v1.46c0 .85.5 1.67 1.31 1.94.73.24 1.52.06 2.03-.46l2.14-2.13 2.13 2.13c.76.76 2.01.76 2.77 0l2.14-2.13 2.13 2.13c.43.43 1.03.63 1.65.55.99-.13 1.69-1.06 1.69-2.06v-1.42C21 10.34 19.66 9 18 9z" -}), 'CakeRounded'); \ No newline at end of file +}), 'CakeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CakeSharp.js b/packages/material-ui-icons/lib/CakeSharp.js index 83f8355eaff9a8..be6481c6a77467 100644 --- a/packages/material-ui-icons/lib/CakeSharp.js +++ b/packages/material-ui-icons/lib/CakeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.53 9.92-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V22h18v-5.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z" -}), 'CakeSharp'); \ No newline at end of file +}), 'CakeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CakeTwoTone.js b/packages/material-ui-icons/lib/CakeTwoTone.js index 74188f45b493c4..292b2e866aea08 100644 --- a/packages/material-ui-icons/lib/CakeTwoTone.js +++ b/packages/material-ui-icons/lib/CakeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.53 14.92-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07c-.64.64-1.5 1-2.4 1.01v3h14v-3c-.9-.01-1.76-.37-2.4-1.01l-1.07-1.07zM18 11H6c-.55 0-1 .45-1 1v3.5c.51-.01.99-.21 1.34-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.36.36.84.56 1.35.57V12c0-.55-.45-1-1-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z" -}, "1")], 'CakeTwoTone'); \ No newline at end of file +}, "1")], 'CakeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Calculate.js b/packages/material-ui-icons/lib/Calculate.js index 0b06ca8761443b..1072d14bad27c7 100644 --- a/packages/material-ui-icons/lib/Calculate.js +++ b/packages/material-ui-icons/lib/Calculate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5.97 4.06L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zm-6.78.66h5v1.5h-5v-1.5zM11.5 16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zm6.5 1.25h-5v-1.5h5v1.5zm0-2.5h-5v-1.5h5v1.5z" -}), 'Calculate'); \ No newline at end of file +}), 'Calculate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalculateOutlined.js b/packages/material-ui-icons/lib/CalculateOutlined.js index ab6d7cf949f545..b7ffddde33370e 100644 --- a/packages/material-ui-icons/lib/CalculateOutlined.js +++ b/packages/material-ui-icons/lib/CalculateOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.25 7.72h5v1.5h-5zM13 15.75h5v1.5h-5zm0-2.5h5v1.5h-5zM8 18h1.5v-2h2v-1.5h-2v-2H8v2H6V16h2zm6.09-7.05 1.41-1.41 1.41 1.41 1.06-1.06-1.41-1.42 1.41-1.41L16.91 6 15.5 7.41 14.09 6l-1.06 1.06 1.41 1.41-1.41 1.42z" -}, "1")], 'CalculateOutlined'); \ No newline at end of file +}, "1")], 'CalculateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalculateRounded.js b/packages/material-ui-icons/lib/CalculateRounded.js index bcedb7745b8413..c817e57efc87a0 100644 --- a/packages/material-ui-icons/lib/CalculateRounded.js +++ b/packages/material-ui-icons/lib/CalculateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5.44 3.53c.29-.29.77-.29 1.06 0l.88.88.88-.88c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.88.88.88.88c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0l-.88-.87-.88.88c-.29.29-.77.29-1.06 0-.29-.29-.29-.77 0-1.06l.88-.88-.88-.88c-.3-.3-.3-.78 0-1.07zM7 7.72h3.5c.41 0 .75.34.75.75s-.34.75-.75.75H7c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM10.75 16H9.5v1.25c0 .41-.34.75-.75.75S8 17.66 8 17.25V16H6.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8v-1.25c0-.41.34-.75.75-.75s.75.34.75.75v1.25h1.25c.41 0 .75.34.75.75s-.34.75-.75.75zm6.5 1.25h-3.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.5c.41 0 .75.34.75.75s-.34.75-.75.75zm0-2.5h-3.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.5c.41 0 .75.34.75.75s-.34.75-.75.75z" -}), 'CalculateRounded'); \ No newline at end of file +}), 'CalculateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalculateSharp.js b/packages/material-ui-icons/lib/CalculateSharp.js index d4b76c34b3669b..143ba062f70fe9 100644 --- a/packages/material-ui-icons/lib/CalculateSharp.js +++ b/packages/material-ui-icons/lib/CalculateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-7.97 4.06L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zm-6.78.66h5v1.5h-5v-1.5zM11.5 16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zm6.5 1.25h-5v-1.5h5v1.5zm0-2.5h-5v-1.5h5v1.5z" -}), 'CalculateSharp'); \ No newline at end of file +}), 'CalculateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalculateTwoTone.js b/packages/material-ui-icons/lib/CalculateTwoTone.js index c701db7c76b5c2..b7cc467b7d2713 100644 --- a/packages/material-ui-icons/lib/CalculateTwoTone.js +++ b/packages/material-ui-icons/lib/CalculateTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8.03-11.94L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zM13 13.25h5v1.5h-5v-1.5zm0 2.5h5v1.5h-5v-1.5zM6.25 7.72h5v1.5h-5v-1.5zM6 14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6v-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.25 7.72h5v1.5h-5zM13 15.75h5v1.5h-5zm0-2.5h5v1.5h-5zM8 18h1.5v-2h2v-1.5h-2v-2H8v2H6V16h2zm6.09-7.05 1.41-1.41 1.41 1.41 1.06-1.06-1.41-1.42 1.41-1.41L16.91 6 15.5 7.41 14.09 6l-1.06 1.06 1.41 1.41-1.41 1.42z" -}, "2")], 'CalculateTwoTone'); \ No newline at end of file +}, "2")], 'CalculateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarToday.js b/packages/material-ui-icons/lib/CalendarToday.js index 3fc8ebb8929251..0ada1dc9b0b9c9 100644 --- a/packages/material-ui-icons/lib/CalendarToday.js +++ b/packages/material-ui-icons/lib/CalendarToday.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z" -}), 'CalendarToday'); \ No newline at end of file +}), 'CalendarToday'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarTodayOutlined.js b/packages/material-ui-icons/lib/CalendarTodayOutlined.js index 40a530c6f830a8..a0fb357d3f8b8a 100644 --- a/packages/material-ui-icons/lib/CalendarTodayOutlined.js +++ b/packages/material-ui-icons/lib/CalendarTodayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z" -}), 'CalendarTodayOutlined'); \ No newline at end of file +}), 'CalendarTodayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarTodayRounded.js b/packages/material-ui-icons/lib/CalendarTodayRounded.js index ce10578c898baf..06519ba3e46c8c 100644 --- a/packages/material-ui-icons/lib/CalendarTodayRounded.js +++ b/packages/material-ui-icons/lib/CalendarTodayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H7V2c0-.55-.45-1-1-1s-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 18H5c-.55 0-1-.45-1-1V8h16v12c0 .55-.45 1-1 1z" -}), 'CalendarTodayRounded'); \ No newline at end of file +}), 'CalendarTodayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarTodaySharp.js b/packages/material-ui-icons/lib/CalendarTodaySharp.js index aad6b9b0feccd4..c3f1176442e0fa 100644 --- a/packages/material-ui-icons/lib/CalendarTodaySharp.js +++ b/packages/material-ui-icons/lib/CalendarTodaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3h-3V1h-2v2H7V1H5v2H2v20h20V3zm-2 18H4V8h16v13z" -}), 'CalendarTodaySharp'); \ No newline at end of file +}), 'CalendarTodaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarTodayTwoTone.js b/packages/material-ui-icons/lib/CalendarTodayTwoTone.js index 776f738162ff26..8e7820fd2201b6 100644 --- a/packages/material-ui-icons/lib/CalendarTodayTwoTone.js +++ b/packages/material-ui-icons/lib/CalendarTodayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H4V5h16zM4 21V10h16v11H4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5.01h16V8H4z", opacity: ".3" -}, "1")], 'CalendarTodayTwoTone'); \ No newline at end of file +}, "1")], 'CalendarTodayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewDay.js b/packages/material-ui-icons/lib/CalendarViewDay.js index e39df20adb07d1..120f2097fee8fd 100644 --- a/packages/material-ui-icons/lib/CalendarViewDay.js +++ b/packages/material-ui-icons/lib/CalendarViewDay.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v2H3zm0-7h18v5H3zm0-4h18v2H3z" -}), 'CalendarViewDay'); \ No newline at end of file +}), 'CalendarViewDay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewDayOutlined.js b/packages/material-ui-icons/lib/CalendarViewDayOutlined.js index 7e417e13c888b9..d2dd51ca3418fd 100644 --- a/packages/material-ui-icons/lib/CalendarViewDayOutlined.js +++ b/packages/material-ui-icons/lib/CalendarViewDayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z" -}), 'CalendarViewDayOutlined'); \ No newline at end of file +}), 'CalendarViewDayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewDayRounded.js b/packages/material-ui-icons/lib/CalendarViewDayRounded.js index a1cbadb804d4fd..6b37546dd266fa 100644 --- a/packages/material-ui-icons/lib/CalendarViewDayRounded.js +++ b/packages/material-ui-icons/lib/CalendarViewDayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7h14c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2zM4 3h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1zm0 16h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'CalendarViewDayRounded'); \ No newline at end of file +}), 'CalendarViewDayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewDaySharp.js b/packages/material-ui-icons/lib/CalendarViewDaySharp.js index bf83a9875f5adb..c233e8666e96c6 100644 --- a/packages/material-ui-icons/lib/CalendarViewDaySharp.js +++ b/packages/material-ui-icons/lib/CalendarViewDaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v2H3v-2zm0-7h18v5H3v-5zm0-4h18v2H3V6z" -}), 'CalendarViewDaySharp'); \ No newline at end of file +}), 'CalendarViewDaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewDayTwoTone.js b/packages/material-ui-icons/lib/CalendarViewDayTwoTone.js index 1c4fe5bc13620e..f0060cb2dad773 100644 --- a/packages/material-ui-icons/lib/CalendarViewDayTwoTone.js +++ b/packages/material-ui-icons/lib/CalendarViewDayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 12h14v1H5z", opacity: ".3" -}, "1")], 'CalendarViewDayTwoTone'); \ No newline at end of file +}, "1")], 'CalendarViewDayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewMonth.js b/packages/material-ui-icons/lib/CalendarViewMonth.js index 69c0d1c5a5c35d..08721a7137546e 100644 --- a/packages/material-ui-icons/lib/CalendarViewMonth.js +++ b/packages/material-ui-icons/lib/CalendarViewMonth.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" -}), 'CalendarViewMonth'); \ No newline at end of file +}), 'CalendarViewMonth'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewMonthOutlined.js b/packages/material-ui-icons/lib/CalendarViewMonthOutlined.js index 7050e3183bb842..e5d8c8bb40df1e 100644 --- a/packages/material-ui-icons/lib/CalendarViewMonthOutlined.js +++ b/packages/material-ui-icons/lib/CalendarViewMonthOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" -}), 'CalendarViewMonthOutlined'); \ No newline at end of file +}), 'CalendarViewMonthOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewMonthRounded.js b/packages/material-ui-icons/lib/CalendarViewMonthRounded.js index 03b3cd25b0cc26..d67138f0704cb6 100644 --- a/packages/material-ui-icons/lib/CalendarViewMonthRounded.js +++ b/packages/material-ui-icons/lib/CalendarViewMonthRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" -}), 'CalendarViewMonthRounded'); \ No newline at end of file +}), 'CalendarViewMonthRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewMonthSharp.js b/packages/material-ui-icons/lib/CalendarViewMonthSharp.js index 43b40c724ac181..59a592aead2e8a 100644 --- a/packages/material-ui-icons/lib/CalendarViewMonthSharp.js +++ b/packages/material-ui-icons/lib/CalendarViewMonthSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" -}), 'CalendarViewMonthSharp'); \ No newline at end of file +}), 'CalendarViewMonthSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewMonthTwoTone.js b/packages/material-ui-icons/lib/CalendarViewMonthTwoTone.js index 5b71a70387635b..519a7fc2f3e678 100644 --- a/packages/material-ui-icons/lib/CalendarViewMonthTwoTone.js +++ b/packages/material-ui-icons/lib/CalendarViewMonthTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h4v5H4zm0 7h4v5H4zm6 0h4v5h-4zm6 0h4v5h-4zm0-7h4v5h-4zm-6 0h4v5h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 18H4v-5h4v5zm0-7H4V6h4v5zm6 7h-4v-5h4v5zm0-7h-4V6h4v5zm6 7h-4v-5h4v5zm0-7h-4V6h4v5z" -}, "1")], 'CalendarViewMonthTwoTone'); \ No newline at end of file +}, "1")], 'CalendarViewMonthTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewWeek.js b/packages/material-ui-icons/lib/CalendarViewWeek.js index fc82865de3dec1..568624a9d89fb8 100644 --- a/packages/material-ui-icons/lib/CalendarViewWeek.js +++ b/packages/material-ui-icons/lib/CalendarViewWeek.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" -}), 'CalendarViewWeek'); \ No newline at end of file +}), 'CalendarViewWeek'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewWeekOutlined.js b/packages/material-ui-icons/lib/CalendarViewWeekOutlined.js index b9d9ae807d0665..1a2a39b9d0e97a 100644 --- a/packages/material-ui-icons/lib/CalendarViewWeekOutlined.js +++ b/packages/material-ui-icons/lib/CalendarViewWeekOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" -}), 'CalendarViewWeekOutlined'); \ No newline at end of file +}), 'CalendarViewWeekOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewWeekRounded.js b/packages/material-ui-icons/lib/CalendarViewWeekRounded.js index c9705105a27d02..6de1ac7f55fe43 100644 --- a/packages/material-ui-icons/lib/CalendarViewWeekRounded.js +++ b/packages/material-ui-icons/lib/CalendarViewWeekRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" -}), 'CalendarViewWeekRounded'); \ No newline at end of file +}), 'CalendarViewWeekRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewWeekSharp.js b/packages/material-ui-icons/lib/CalendarViewWeekSharp.js index 127675e871c0c6..1c5c51b285e74a 100644 --- a/packages/material-ui-icons/lib/CalendarViewWeekSharp.js +++ b/packages/material-ui-icons/lib/CalendarViewWeekSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zm-9 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" -}), 'CalendarViewWeekSharp'); \ No newline at end of file +}), 'CalendarViewWeekSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CalendarViewWeekTwoTone.js b/packages/material-ui-icons/lib/CalendarViewWeekTwoTone.js index e8cf51a26a558d..dbfe948e1052b8 100644 --- a/packages/material-ui-icons/lib/CalendarViewWeekTwoTone.js +++ b/packages/material-ui-icons/lib/CalendarViewWeekTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 6H11v12H8.5zM13 6h2.5v12H13zM4 6h2.5v12H4zm13.5 0H20v12h-2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM6.5 18H4V6h2.5v12zm4.5 0H8.5V6H11v12zm4.5 0H13V6h2.5v12zm4.5 0h-2.5V6H20v12z" -}, "1")], 'CalendarViewWeekTwoTone'); \ No newline at end of file +}, "1")], 'CalendarViewWeekTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Call.js b/packages/material-ui-icons/lib/Call.js index 5c6448ea06f48c..a0378fb2f4ee9e 100644 --- a/packages/material-ui-icons/lib/Call.js +++ b/packages/material-ui-icons/lib/Call.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z" -}), 'Call'); \ No newline at end of file +}), 'Call'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallEnd.js b/packages/material-ui-icons/lib/CallEnd.js index 7432c6690b2efa..079c8573174982 100644 --- a/packages/material-ui-icons/lib/CallEnd.js +++ b/packages/material-ui-icons/lib/CallEnd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c-1.6 0-3.15.25-4.6.72v3.1c0 .39-.23.74-.56.9-.98.49-1.87 1.12-2.66 1.85-.18.18-.43.28-.7.28-.28 0-.53-.11-.71-.29L.29 13.08c-.18-.17-.29-.42-.29-.7 0-.28.11-.53.29-.71C3.34 8.78 7.46 7 12 7s8.66 1.78 11.71 4.67c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.71.29-.27 0-.52-.11-.7-.28-.79-.74-1.69-1.36-2.67-1.85-.33-.16-.56-.5-.56-.9v-3.1C15.15 9.25 13.6 9 12 9z" -}), 'CallEnd'); \ No newline at end of file +}), 'CallEnd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallEndOutlined.js b/packages/material-ui-icons/lib/CallEndOutlined.js index 862cecf1ce323e..48223bc08defd8 100644 --- a/packages/material-ui-icons/lib/CallEndOutlined.js +++ b/packages/material-ui-icons/lib/CallEndOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.59 10.52c1.05.51 2.04 1.15 2.96 1.91l-1.07 1.07c-.58-.47-1.21-.89-1.88-1.27v-1.71m-13.2 0v1.7c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71s.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9s3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7z" -}), 'CallEndOutlined'); \ No newline at end of file +}), 'CallEndOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallEndRounded.js b/packages/material-ui-icons/lib/CallEndRounded.js index 88255b0fb3a0cf..87ff08621064b2 100644 --- a/packages/material-ui-icons/lib/CallEndRounded.js +++ b/packages/material-ui-icons/lib/CallEndRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.51 15.48 2-1.59c.48-.38.76-.96.76-1.57v-2.6c3.02-.98 6.29-.99 9.32 0v2.61c0 .61.28 1.19.76 1.57l1.99 1.58c.8.63 1.94.57 2.66-.15l1.22-1.22c.8-.8.8-2.13-.05-2.88-6.41-5.66-16.07-5.66-22.48 0-.85.75-.85 2.08-.05 2.88l1.22 1.22c.71.72 1.85.78 2.65.15z" -}), 'CallEndRounded'); \ No newline at end of file +}), 'CallEndRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallEndSharp.js b/packages/material-ui-icons/lib/CallEndSharp.js index 8a76c08c7e74c5..844b3c6237c586 100644 --- a/packages/material-ui-icons/lib/CallEndSharp.js +++ b/packages/material-ui-icons/lib/CallEndSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.68 16.07 3.92-3.11V9.59c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 12.39c-6.41-7.19-17.59-7.19-24 0l3.68 3.68z" -}), 'CallEndSharp'); \ No newline at end of file +}), 'CallEndSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallEndTwoTone.js b/packages/material-ui-icons/lib/CallEndTwoTone.js index bf33f5f2de3512..24953858afc362 100644 --- a/packages/material-ui-icons/lib/CallEndTwoTone.js +++ b/packages/material-ui-icons/lib/CallEndTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.59 12.23c.67.38 1.3.8 1.88 1.27l1.07-1.07c-.92-.75-1.91-1.39-2.96-1.91v1.71zM3.53 13.49c.59-.48 1.22-.9 1.87-1.27v-1.7c-1.04.51-2.03 1.15-2.94 1.9l1.07 1.07z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9c1.6 0 3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7zm-6.6 5.22c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9v1.7zm15.07 1.28c-.58-.47-1.21-.89-1.88-1.27v-1.71c1.05.51 2.04 1.15 2.96 1.91l-1.08 1.07z" -}, "1")], 'CallEndTwoTone'); \ No newline at end of file +}, "1")], 'CallEndTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMade.js b/packages/material-ui-icons/lib/CallMade.js index 829c06b29e2611..452d99daf46145 100644 --- a/packages/material-ui-icons/lib/CallMade.js +++ b/packages/material-ui-icons/lib/CallMade.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z" -}), 'CallMade'); \ No newline at end of file +}), 'CallMade'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMadeOutlined.js b/packages/material-ui-icons/lib/CallMadeOutlined.js index 98b3e984e3727a..1fa9c13063ee31 100644 --- a/packages/material-ui-icons/lib/CallMadeOutlined.js +++ b/packages/material-ui-icons/lib/CallMadeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" -}), 'CallMadeOutlined'); \ No newline at end of file +}), 'CallMadeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMadeRounded.js b/packages/material-ui-icons/lib/CallMadeRounded.js index 43530252fe3dc8..2aee49e71ced4c 100644 --- a/packages/material-ui-icons/lib/CallMadeRounded.js +++ b/packages/material-ui-icons/lib/CallMadeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6c0 .56.45 1 1 1h5.59L4.7 17.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17 8.41V14c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-8c-.55 0-1 .45-1 1z" -}), 'CallMadeRounded'); \ No newline at end of file +}), 'CallMadeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMadeSharp.js b/packages/material-ui-icons/lib/CallMadeSharp.js index d746b64d27b6fe..95305a8c51d53d 100644 --- a/packages/material-ui-icons/lib/CallMadeSharp.js +++ b/packages/material-ui-icons/lib/CallMadeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" -}), 'CallMadeSharp'); \ No newline at end of file +}), 'CallMadeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMadeTwoTone.js b/packages/material-ui-icons/lib/CallMadeTwoTone.js index 69deaee5cc2039..9c9520e4ef2bbb 100644 --- a/packages/material-ui-icons/lib/CallMadeTwoTone.js +++ b/packages/material-ui-icons/lib/CallMadeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.41 20 17 8.41V15h2V5H9v2h6.59L4 18.59z" -}), 'CallMadeTwoTone'); \ No newline at end of file +}), 'CallMadeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMerge.js b/packages/material-ui-icons/lib/CallMerge.js index d420a0962e28a8..a102b41daf51cc 100644 --- a/packages/material-ui-icons/lib/CallMerge.js +++ b/packages/material-ui-icons/lib/CallMerge.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" -}), 'CallMerge'); \ No newline at end of file +}), 'CallMerge'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMergeOutlined.js b/packages/material-ui-icons/lib/CallMergeOutlined.js index bda9b0b21b0bb1..66cd52321c8dd6 100644 --- a/packages/material-ui-icons/lib/CallMergeOutlined.js +++ b/packages/material-ui-icons/lib/CallMergeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" -}), 'CallMergeOutlined'); \ No newline at end of file +}), 'CallMergeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMergeRounded.js b/packages/material-ui-icons/lib/CallMergeRounded.js index c1b98c7b2f2991..50df41945ff6f4 100644 --- a/packages/material-ui-icons/lib/CallMergeRounded.js +++ b/packages/material-ui-icons/lib/CallMergeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.7 19.7c.39-.39.39-1.02 0-1.41l-2.7-2.7L13.59 17l2.7 2.7c.39.39 1.03.39 1.41 0zM8.71 8H11v5.59l-4.71 4.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l5.3-5.3V8h2.29c.45 0 .67-.54.35-.85l-3.29-3.29c-.2-.2-.51-.2-.71 0L8.35 7.15c-.31.31-.09.85.36.85z" -}), 'CallMergeRounded'); \ No newline at end of file +}), 'CallMergeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMergeSharp.js b/packages/material-ui-icons/lib/CallMergeSharp.js index c4412fac49e6d7..4a1618bdf27f13 100644 --- a/packages/material-ui-icons/lib/CallMergeSharp.js +++ b/packages/material-ui-icons/lib/CallMergeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" -}), 'CallMergeSharp'); \ No newline at end of file +}), 'CallMergeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMergeTwoTone.js b/packages/material-ui-icons/lib/CallMergeTwoTone.js index e7368bb38b6a9b..7766398c73e3c1 100644 --- a/packages/material-ui-icons/lib/CallMergeTwoTone.js +++ b/packages/material-ui-icons/lib/CallMergeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.997 20.41-3.408-3.407 1.4-1.407 3.41 3.408zM5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59z" -}), 'CallMergeTwoTone'); \ No newline at end of file +}), 'CallMergeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissed.js b/packages/material-ui-icons/lib/CallMissed.js index 71d3193f47217a..a3c5dc77d3d8f9 100644 --- a/packages/material-ui-icons/lib/CallMissed.js +++ b/packages/material-ui-icons/lib/CallMissed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.59 7 12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9z" -}), 'CallMissed'); \ No newline at end of file +}), 'CallMissed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedOutgoing.js b/packages/material-ui-icons/lib/CallMissedOutgoing.js index e7e9e54d7f6e4e..11d3ac61d3746b 100644 --- a/packages/material-ui-icons/lib/CallMissedOutgoing.js +++ b/packages/material-ui-icons/lib/CallMissedOutgoing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 8.41 9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" -}), 'CallMissedOutgoing'); \ No newline at end of file +}), 'CallMissedOutgoing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedOutgoingOutlined.js b/packages/material-ui-icons/lib/CallMissedOutgoingOutlined.js index 59827ec7d83453..688e73861c1231 100644 --- a/packages/material-ui-icons/lib/CallMissedOutgoingOutlined.js +++ b/packages/material-ui-icons/lib/CallMissedOutgoingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 8.41 9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" -}), 'CallMissedOutgoingOutlined'); \ No newline at end of file +}), 'CallMissedOutgoingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedOutgoingRounded.js b/packages/material-ui-icons/lib/CallMissedOutgoingRounded.js index 178a1ccb93af3a..364ca2c9cc6346 100644 --- a/packages/material-ui-icons/lib/CallMissedOutgoingRounded.js +++ b/packages/material-ui-icons/lib/CallMissedOutgoingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.7 9.11 7.59 7.59c.39.39 1.02.39 1.41 0l6.3-6.3V14c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1h3.59L12 14.59 5.11 7.7a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41z" -}), 'CallMissedOutgoingRounded'); \ No newline at end of file +}), 'CallMissedOutgoingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedOutgoingSharp.js b/packages/material-ui-icons/lib/CallMissedOutgoingSharp.js index 6108707098fde0..ec01b6b372d281 100644 --- a/packages/material-ui-icons/lib/CallMissedOutgoingSharp.js +++ b/packages/material-ui-icons/lib/CallMissedOutgoingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 8.41 9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" -}), 'CallMissedOutgoingSharp'); \ No newline at end of file +}), 'CallMissedOutgoingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedOutgoingTwoTone.js b/packages/material-ui-icons/lib/CallMissedOutgoingTwoTone.js index e2e687cd325aee..776dff724ec06a 100644 --- a/packages/material-ui-icons/lib/CallMissedOutgoingTwoTone.js +++ b/packages/material-ui-icons/lib/CallMissedOutgoingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10.41V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41l9 9z" -}), 'CallMissedOutgoingTwoTone'); \ No newline at end of file +}), 'CallMissedOutgoingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedOutlined.js b/packages/material-ui-icons/lib/CallMissedOutlined.js index bab3e206e91036..7af4c8d079cd47 100644 --- a/packages/material-ui-icons/lib/CallMissedOutlined.js +++ b/packages/material-ui-icons/lib/CallMissedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.59 7 12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z" -}), 'CallMissedOutlined'); \ No newline at end of file +}), 'CallMissedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedRounded.js b/packages/material-ui-icons/lib/CallMissedRounded.js index 52f2af7e2a11a0..635e6a65768d4f 100644 --- a/packages/material-ui-icons/lib/CallMissedRounded.js +++ b/packages/material-ui-icons/lib/CallMissedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.89 7.7 12 14.59 6.41 9H10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1v-3.59l6.29 6.29c.39.39 1.02.39 1.41 0l7.59-7.59c.39-.39.39-1.02 0-1.41-.38-.38-1.02-.38-1.4 0z" -}), 'CallMissedRounded'); \ No newline at end of file +}), 'CallMissedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedSharp.js b/packages/material-ui-icons/lib/CallMissedSharp.js index 021df5a966d115..7b6a4fc711878f 100644 --- a/packages/material-ui-icons/lib/CallMissedSharp.js +++ b/packages/material-ui-icons/lib/CallMissedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.59 7 12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z" -}), 'CallMissedSharp'); \ No newline at end of file +}), 'CallMissedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallMissedTwoTone.js b/packages/material-ui-icons/lib/CallMissedTwoTone.js index 59101957672c65..c75e14a74db360 100644 --- a/packages/material-ui-icons/lib/CallMissedTwoTone.js +++ b/packages/material-ui-icons/lib/CallMissedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 10.41 7 7 9-9L19.59 7 12 14.59 6.41 9H11V7H3v8h2z" -}), 'CallMissedTwoTone'); \ No newline at end of file +}), 'CallMissedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallOutlined.js b/packages/material-ui-icons/lib/CallOutlined.js index 892020d96dba3a..3252fbb4769ade 100644 --- a/packages/material-ui-icons/lib/CallOutlined.js +++ b/packages/material-ui-icons/lib/CallOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" -}), 'CallOutlined'); \ No newline at end of file +}), 'CallOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallReceived.js b/packages/material-ui-icons/lib/CallReceived.js index 58e7c8779a768d..fb32eecb59441d 100644 --- a/packages/material-ui-icons/lib/CallReceived.js +++ b/packages/material-ui-icons/lib/CallReceived.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5.41 18.59 4 7 15.59V9H5v10h10v-2H8.41z" -}), 'CallReceived'); \ No newline at end of file +}), 'CallReceived'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallReceivedOutlined.js b/packages/material-ui-icons/lib/CallReceivedOutlined.js index b04e7917448575..079fd3301dd35f 100644 --- a/packages/material-ui-icons/lib/CallReceivedOutlined.js +++ b/packages/material-ui-icons/lib/CallReceivedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5.41 18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z" -}), 'CallReceivedOutlined'); \ No newline at end of file +}), 'CallReceivedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallReceivedRounded.js b/packages/material-ui-icons/lib/CallReceivedRounded.js index e2f85c6884cf62..01ad603d0cf125 100644 --- a/packages/material-ui-icons/lib/CallReceivedRounded.js +++ b/packages/material-ui-icons/lib/CallReceivedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.3 4.71a.9959.9959 0 0 0-1.41 0L7 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8.41L19.3 6.11c.38-.38.38-1.02 0-1.4z" -}), 'CallReceivedRounded'); \ No newline at end of file +}), 'CallReceivedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallReceivedSharp.js b/packages/material-ui-icons/lib/CallReceivedSharp.js index 795fe83cc57996..fb6a42e411db4b 100644 --- a/packages/material-ui-icons/lib/CallReceivedSharp.js +++ b/packages/material-ui-icons/lib/CallReceivedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5.41 18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z" -}), 'CallReceivedSharp'); \ No newline at end of file +}), 'CallReceivedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallReceivedTwoTone.js b/packages/material-ui-icons/lib/CallReceivedTwoTone.js index 5908eacc2f8827..b2e32d90727dfa 100644 --- a/packages/material-ui-icons/lib/CallReceivedTwoTone.js +++ b/packages/material-ui-icons/lib/CallReceivedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" -}), 'CallReceivedTwoTone'); \ No newline at end of file +}), 'CallReceivedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallRounded.js b/packages/material-ui-icons/lib/CallRounded.js index 13ec6a022ec16c..b6148a16dfd1b0 100644 --- a/packages/material-ui-icons/lib/CallRounded.js +++ b/packages/material-ui-icons/lib/CallRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" -}), 'CallRounded'); \ No newline at end of file +}), 'CallRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallSharp.js b/packages/material-ui-icons/lib/CallSharp.js index 3c01254b8f66f9..39f6615434e0df 100644 --- a/packages/material-ui-icons/lib/CallSharp.js +++ b/packages/material-ui-icons/lib/CallSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 15.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" -}), 'CallSharp'); \ No newline at end of file +}), 'CallSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallSplit.js b/packages/material-ui-icons/lib/CallSplit.js index 8bc2b4abcda7d5..09c9d02b561656 100644 --- a/packages/material-ui-icons/lib/CallSplit.js +++ b/packages/material-ui-icons/lib/CallSplit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 4 2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3z" -}), 'CallSplit'); \ No newline at end of file +}), 'CallSplit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallSplitOutlined.js b/packages/material-ui-icons/lib/CallSplitOutlined.js index c187e264066df4..a0a35914543bc6 100644 --- a/packages/material-ui-icons/lib/CallSplitOutlined.js +++ b/packages/material-ui-icons/lib/CallSplitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 4 2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" -}), 'CallSplitOutlined'); \ No newline at end of file +}), 'CallSplitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallSplitRounded.js b/packages/material-ui-icons/lib/CallSplitRounded.js index d850898fa47109..08874109bd5827 100644 --- a/packages/material-ui-icons/lib/CallSplitRounded.js +++ b/packages/material-ui-icons/lib/CallSplitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.85 4.85 1.44 1.44-2.88 2.88 1.42 1.42 2.88-2.88 1.44 1.44c.31.31.85.09.85-.36V4.5c0-.28-.22-.5-.5-.5h-4.29c-.45 0-.67.54-.36.85zM8.79 4H4.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35L6.29 7.7 11 12.4V19c0 .55.45 1 1 1s1-.45 1-1v-7c0-.26-.11-.52-.29-.71l-5-5.01 1.44-1.44c.31-.3.09-.84-.36-.84z" -}), 'CallSplitRounded'); \ No newline at end of file +}), 'CallSplitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallSplitSharp.js b/packages/material-ui-icons/lib/CallSplitSharp.js index b63bf36c31f601..b17fa3286fea5e 100644 --- a/packages/material-ui-icons/lib/CallSplitSharp.js +++ b/packages/material-ui-icons/lib/CallSplitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 4 2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" -}), 'CallSplitSharp'); \ No newline at end of file +}), 'CallSplitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallSplitTwoTone.js b/packages/material-ui-icons/lib/CallSplitTwoTone.js index b468cc369d6bc1..285bb5d234b6cc 100644 --- a/packages/material-ui-icons/lib/CallSplitTwoTone.js +++ b/packages/material-ui-icons/lib/CallSplitTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-6l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10zM4 4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" -}), 'CallSplitTwoTone'); \ No newline at end of file +}), 'CallSplitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallToAction.js b/packages/material-ui-icons/lib/CallToAction.js index cf551a2da5231d..44d4286aec644f 100644 --- a/packages/material-ui-icons/lib/CallToAction.js +++ b/packages/material-ui-icons/lib/CallToAction.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3v-3h18v3z" -}), 'CallToAction'); \ No newline at end of file +}), 'CallToAction'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallToActionOutlined.js b/packages/material-ui-icons/lib/CallToActionOutlined.js index 81b1929059b324..24a0844398e51f 100644 --- a/packages/material-ui-icons/lib/CallToActionOutlined.js +++ b/packages/material-ui-icons/lib/CallToActionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z" -}), 'CallToActionOutlined'); \ No newline at end of file +}), 'CallToActionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallToActionRounded.js b/packages/material-ui-icons/lib/CallToActionRounded.js index f84dd914b5fea1..58c287af4f752d 100644 --- a/packages/material-ui-icons/lib/CallToActionRounded.js +++ b/packages/material-ui-icons/lib/CallToActionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1z" -}), 'CallToActionRounded'); \ No newline at end of file +}), 'CallToActionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallToActionSharp.js b/packages/material-ui-icons/lib/CallToActionSharp.js index 0efe41f06533b5..0b9dd7499cf588 100644 --- a/packages/material-ui-icons/lib/CallToActionSharp.js +++ b/packages/material-ui-icons/lib/CallToActionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-2 16H3v-3h18v3z" -}), 'CallToActionSharp'); \ No newline at end of file +}), 'CallToActionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallToActionTwoTone.js b/packages/material-ui-icons/lib/CallToActionTwoTone.js index b52a9423e517be..e1489352a643f8 100644 --- a/packages/material-ui-icons/lib/CallToActionTwoTone.js +++ b/packages/material-ui-icons/lib/CallToActionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V5H3v14zm2-4h14v3H5v-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z" -}, "1")], 'CallToActionTwoTone'); \ No newline at end of file +}, "1")], 'CallToActionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CallTwoTone.js b/packages/material-ui-icons/lib/CallTwoTone.js index dbbc96f744bca7..7c4d44cebc2031 100644 --- a/packages/material-ui-icons/lib/CallTwoTone.js +++ b/packages/material-ui-icons/lib/CallTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21c.55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.98c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79z" -}, "1")], 'CallTwoTone'); \ No newline at end of file +}, "1")], 'CallTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Camera.js b/packages/material-ui-icons/lib/Camera.js index 9a9751d03ebedc..0a72c2165675ae 100644 --- a/packages/material-ui-icons/lib/Camera.js +++ b/packages/material-ui-icons/lib/Camera.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.4 10.5 4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z" -}), 'Camera'); \ No newline at end of file +}), 'Camera'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraAlt.js b/packages/material-ui-icons/lib/CameraAlt.js index 46799542dd540b..a6bbb7db62c285 100644 --- a/packages/material-ui-icons/lib/CameraAlt.js +++ b/packages/material-ui-icons/lib/CameraAlt.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 2 7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'CameraAlt'); \ No newline at end of file +}, "1")], 'CameraAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraAltOutlined.js b/packages/material-ui-icons/lib/CameraAltOutlined.js index 988ea2f96eb960..8acf2155ea4dc5 100644 --- a/packages/material-ui-icons/lib/CameraAltOutlined.js +++ b/packages/material-ui-icons/lib/CameraAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}), 'CameraAltOutlined'); \ No newline at end of file +}), 'CameraAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraAltRounded.js b/packages/material-ui-icons/lib/CameraAltRounded.js index 7cb8c3276e4c47..5f1bb943f8badb 100644 --- a/packages/material-ui-icons/lib/CameraAltRounded.js +++ b/packages/material-ui-icons/lib/CameraAltRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'CameraAltRounded'); \ No newline at end of file +}, "1")], 'CameraAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraAltSharp.js b/packages/material-ui-icons/lib/CameraAltSharp.js index c8992d335f180c..e9c34df79996ac 100644 --- a/packages/material-ui-icons/lib/CameraAltSharp.js +++ b/packages/material-ui-icons/lib/CameraAltSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.83 4 15 2H9L7.17 4H2v16h20V4h-5.17zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'CameraAltSharp'); \ No newline at end of file +}, "1")], 'CameraAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraAltTwoTone.js b/packages/material-ui-icons/lib/CameraAltTwoTone.js index 58ea9b35dd1005..0eed422da08b0a 100644 --- a/packages/material-ui-icons/lib/CameraAltTwoTone.js +++ b/packages/material-ui-icons/lib/CameraAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}, "1")], 'CameraAltTwoTone'); \ No newline at end of file +}, "1")], 'CameraAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraEnhance.js b/packages/material-ui-icons/lib/CameraEnhance.js index 4c8bf311067761..1d83a8c9f30f6b 100644 --- a/packages/material-ui-icons/lib/CameraEnhance.js +++ b/packages/material-ui-icons/lib/CameraEnhance.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 3 7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 17 1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25z" -}, "1")], 'CameraEnhance'); \ No newline at end of file +}, "1")], 'CameraEnhance'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraEnhanceOutlined.js b/packages/material-ui-icons/lib/CameraEnhanceOutlined.js index 48e05869d7ca6a..b19d5a95742528 100644 --- a/packages/material-ui-icons/lib/CameraEnhanceOutlined.js +++ b/packages/material-ui-icons/lib/CameraEnhanceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 10-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}), 'CameraEnhanceOutlined'); \ No newline at end of file +}), 'CameraEnhanceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraEnhanceRounded.js b/packages/material-ui-icons/lib/CameraEnhanceRounded.js index 1423ea288cab2a..8c642fb9a1643d 100644 --- a/packages/material-ui-icons/lib/CameraEnhanceRounded.js +++ b/packages/material-ui-icons/lib/CameraEnhanceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z" -}), 'CameraEnhanceRounded'); \ No newline at end of file +}), 'CameraEnhanceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraEnhanceSharp.js b/packages/material-ui-icons/lib/CameraEnhanceSharp.js index 5965dfe714fe87..5a58bb516583c7 100644 --- a/packages/material-ui-icons/lib/CameraEnhanceSharp.js +++ b/packages/material-ui-icons/lib/CameraEnhanceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z" -}), 'CameraEnhanceSharp'); \ No newline at end of file +}), 'CameraEnhanceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraEnhanceTwoTone.js b/packages/material-ui-icons/lib/CameraEnhanceTwoTone.js index 03c486091751e3..17faf5d63865e0 100644 --- a/packages/material-ui-icons/lib/CameraEnhanceTwoTone.js +++ b/packages/material-ui-icons/lib/CameraEnhanceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.95 7-.59-.65L14.12 5H9.88L8.65 6.35l-.6.65H4v12h16V7h-4.05zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 10-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}, "1")], 'CameraEnhanceTwoTone'); \ No newline at end of file +}, "1")], 'CameraEnhanceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraFront.js b/packages/material-ui-icons/lib/CameraFront.js index 87507a27aece4e..c3455a74d9512a 100644 --- a/packages/material-ui-icons/lib/CameraFront.js +++ b/packages/material-ui-icons/lib/CameraFront.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm5-8H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z" -}), 'CameraFront'); \ No newline at end of file +}), 'CameraFront'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraFrontOutlined.js b/packages/material-ui-icons/lib/CameraFrontOutlined.js index 908bdd901a29b6..95765b4dcf19d9 100644 --- a/packages/material-ui-icons/lib/CameraFrontOutlined.js +++ b/packages/material-ui-icons/lib/CameraFrontOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z" -}), 'CameraFrontOutlined'); \ No newline at end of file +}), 'CameraFrontOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraFrontRounded.js b/packages/material-ui-icons/lib/CameraFrontRounded.js index 5922f32dd177d6..df767fce181b1b 100644 --- a/packages/material-ui-icons/lib/CameraFrontRounded.js +++ b/packages/material-ui-icons/lib/CameraFrontRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 12.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V3c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v9.5zm-6.15 6.35c-.31-.31-.85-.09-.85.36V20H6c-.55 0-1 .45-1 1s.45 1 1 1h4v.79c0 .45.54.67.85.35l1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79zM18 20h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8z" -}), 'CameraFrontRounded'); \ No newline at end of file +}), 'CameraFrontRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraFrontSharp.js b/packages/material-ui-icons/lib/CameraFrontSharp.js index 0531f2e182417a..8aa19ffd791cf0 100644 --- a/packages/material-ui-icons/lib/CameraFrontSharp.js +++ b/packages/material-ui-icons/lib/CameraFrontSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm7-8H5v18h14V0zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z" -}), 'CameraFrontSharp'); \ No newline at end of file +}), 'CameraFrontSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraFrontTwoTone.js b/packages/material-ui-icons/lib/CameraFrontTwoTone.js index 631f766087fbee..2d80a8e4cbdf13 100644 --- a/packages/material-ui-icons/lib/CameraFrontTwoTone.js +++ b/packages/material-ui-icons/lib/CameraFrontTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14h10v2H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z" -}, "1")], 'CameraFrontTwoTone'); \ No newline at end of file +}, "1")], 'CameraFrontTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraIndoor.js b/packages/material-ui-icons/lib/CameraIndoor.js index 3acc5024839581..83888f44dfdc2e 100644 --- a/packages/material-ui-icons/lib/CameraIndoor.js +++ b/packages/material-ui-icons/lib/CameraIndoor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm4 13.06L14 15v1c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1l2-1.06v4.12z" -}), 'CameraIndoor'); \ No newline at end of file +}), 'CameraIndoor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraIndoorOutlined.js b/packages/material-ui-icons/lib/CameraIndoorOutlined.js index b552f97e763d10..a9d82d85d368ba 100644 --- a/packages/material-ui-icons/lib/CameraIndoorOutlined.js +++ b/packages/material-ui-icons/lib/CameraIndoorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 13v-1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L14 13zm-2-7.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6z" -}), 'CameraIndoorOutlined'); \ No newline at end of file +}), 'CameraIndoorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraIndoorRounded.js b/packages/material-ui-icons/lib/CameraIndoorRounded.js index a54c39ac0c25a4..5bd07b85e903ff 100644 --- a/packages/material-ui-icons/lib/CameraIndoorRounded.js +++ b/packages/material-ui-icons/lib/CameraIndoorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.8 3.65-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zm4.47 12.02L14 15v1c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1l1.27-.67c.33-.18.73.06.73.44v2.46c0 .38-.4.62-.73.44z" -}), 'CameraIndoorRounded'); \ No newline at end of file +}), 'CameraIndoorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraIndoorSharp.js b/packages/material-ui-icons/lib/CameraIndoorSharp.js index 4de3d9812c9d6f..74826002fb3aed 100644 --- a/packages/material-ui-icons/lib/CameraIndoorSharp.js +++ b/packages/material-ui-icons/lib/CameraIndoorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm4 13.06L14 15v2H8v-6h6v2l2-1.06v4.12z" -}), 'CameraIndoorSharp'); \ No newline at end of file +}), 'CameraIndoorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraIndoorTwoTone.js b/packages/material-ui-icons/lib/CameraIndoorTwoTone.js index d5d1748b1cca87..28ce1d84121936 100644 --- a/packages/material-ui-icons/lib/CameraIndoorTwoTone.js +++ b/packages/material-ui-icons/lib/CameraIndoorTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10v9h12v-9l-6-4.5L6 10zm8 2v1l2-1.06v4.12L14 15v1c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L14 13v-1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm6 16H6v-9l6-4.5 6 4.5v9z" -}, "2")], 'CameraIndoorTwoTone'); \ No newline at end of file +}, "2")], 'CameraIndoorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraOutdoor.js b/packages/material-ui-icons/lib/CameraOutdoor.js index 72f039ab1c4b0e..1687da3749c092 100644 --- a/packages/material-ui-icons/lib/CameraOutdoor.js +++ b/packages/material-ui-icons/lib/CameraOutdoor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L18 14v-1zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" -}), 'CameraOutdoor'); \ No newline at end of file +}), 'CameraOutdoor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraOutdoorOutlined.js b/packages/material-ui-icons/lib/CameraOutdoorOutlined.js index 0e95308ce61730..dfc4d0ead2af88 100644 --- a/packages/material-ui-icons/lib/CameraOutdoorOutlined.js +++ b/packages/material-ui-icons/lib/CameraOutdoorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L18 14v-1zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" -}), 'CameraOutdoorOutlined'); \ No newline at end of file +}), 'CameraOutdoorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraOutdoorRounded.js b/packages/material-ui-icons/lib/CameraOutdoorRounded.js index 3a488656deed05..8f04174fdadf46 100644 --- a/packages/material-ui-icons/lib/CameraOutdoorRounded.js +++ b/packages/material-ui-icons/lib/CameraOutdoorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l1.27.67c.33.18.73-.06.73-.44v-2.46c0-.38-.4-.62-.73-.44L18 14v-1zm-7.2-9.1-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H6v-9l6-4.5 6 4.5v1h2v-1c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0z" -}), 'CameraOutdoorRounded'); \ No newline at end of file +}), 'CameraOutdoorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraOutdoorSharp.js b/packages/material-ui-icons/lib/CameraOutdoorSharp.js index ec07cbc8aefc27..582d466f06670e 100644 --- a/packages/material-ui-icons/lib/CameraOutdoorSharp.js +++ b/packages/material-ui-icons/lib/CameraOutdoorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14v-2h-6v6h6v-2l2 1.06v-4.12L18 14zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" -}), 'CameraOutdoorSharp'); \ No newline at end of file +}), 'CameraOutdoorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraOutdoorTwoTone.js b/packages/material-ui-icons/lib/CameraOutdoorTwoTone.js index fc7706cecd1485..4ed662f399083c 100644 --- a/packages/material-ui-icons/lib/CameraOutdoorTwoTone.js +++ b/packages/material-ui-icons/lib/CameraOutdoorTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L18 14v-1zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" -}), 'CameraOutdoorTwoTone'); \ No newline at end of file +}), 'CameraOutdoorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraOutlined.js b/packages/material-ui-icons/lib/CameraOutlined.js index 3e4a3403733557..f9fc88e0ad7edf 100644 --- a/packages/material-ui-icons/lib/CameraOutlined.js +++ b/packages/material-ui-icons/lib/CameraOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.25 2.26-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-4.75-3.31-8.72-7.75-9.74zM19.41 9h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM13.1 4.08 10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4c.37 0 .74.03 1.1.08zM5.7 7.09 8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12c0-1.85.64-3.55 1.7-4.91zM4.59 15h7.98l-2.71 4.7c-2.4-.67-4.34-2.42-5.27-4.7zm6.31 4.91L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20c-.38 0-.74-.04-1.1-.09zm7.4-3-4-6.91h5.43c.17.64.27 1.31.27 2 0 1.85-.64 3.55-1.7 4.91z" -}), 'CameraOutlined'); \ No newline at end of file +}), 'CameraOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRear.js b/packages/material-ui-icons/lib/CameraRear.js index f81eb1beefe275..3b95b57d5f3f25 100644 --- a/packages/material-ui-icons/lib/CameraRear.js +++ b/packages/material-ui-icons/lib/CameraRear.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" -}), 'CameraRear'); \ No newline at end of file +}), 'CameraRear'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRearOutlined.js b/packages/material-ui-icons/lib/CameraRearOutlined.js index 81f829c5d55096..e22e3dd3f526cc 100644 --- a/packages/material-ui-icons/lib/CameraRearOutlined.js +++ b/packages/material-ui-icons/lib/CameraRearOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z" -}), 'CameraRearOutlined'); \ No newline at end of file +}), 'CameraRearOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRearRounded.js b/packages/material-ui-icons/lib/CameraRearRounded.js index 1fce3683c4bffc..3f9a04a77093f4 100644 --- a/packages/material-ui-icons/lib/CameraRearRounded.js +++ b/packages/material-ui-icons/lib/CameraRearRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.85 18.85c-.31-.31-.85-.09-.85.36V20H6c-.55 0-1 .45-1 1s.45 1 1 1h4v.79c0 .45.54.67.85.35l1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79zM18 20h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" -}), 'CameraRearRounded'); \ No newline at end of file +}), 'CameraRearRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRearSharp.js b/packages/material-ui-icons/lib/CameraRearSharp.js index 28ebe51d10e07f..b3de95d3bf6661 100644 --- a/packages/material-ui-icons/lib/CameraRearSharp.js +++ b/packages/material-ui-icons/lib/CameraRearSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm5-20H5v18h14V0zm-7 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" -}), 'CameraRearSharp'); \ No newline at end of file +}), 'CameraRearSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRearTwoTone.js b/packages/material-ui-icons/lib/CameraRearTwoTone.js index 16ac163570526d..3b532130d9cf36 100644 --- a/packages/material-ui-icons/lib/CameraRearTwoTone.js +++ b/packages/material-ui-icons/lib/CameraRearTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16h10V2H7v14zm4.99-13c1.1 0 2 .9 2 2C14 6.1 13.1 7 12 7c-1.11 0-2-.9-2-2s.89-2 1.99-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm5-18c0-1.1-.9-2-2-2H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2zm-2 14H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z" -}, "1")], 'CameraRearTwoTone'); \ No newline at end of file +}, "1")], 'CameraRearTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRoll.js b/packages/material-ui-icons/lib/CameraRoll.js index 8319f9a2b4b9dd..475868dbe95686 100644 --- a/packages/material-ui-icons/lib/CameraRoll.js +++ b/packages/material-ui-icons/lib/CameraRoll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" -}), 'CameraRoll'); \ No newline at end of file +}), 'CameraRoll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRollOutlined.js b/packages/material-ui-icons/lib/CameraRollOutlined.js index 3759835dec58f4..b268ee758c91be 100644 --- a/packages/material-ui-icons/lib/CameraRollOutlined.js +++ b/packages/material-ui-icons/lib/CameraRollOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z" -}), 'CameraRollOutlined'); \ No newline at end of file +}), 'CameraRollOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRollRounded.js b/packages/material-ui-icons/lib/CameraRollRounded.js index 816d88e2c2db50..88b0bb3a28c830 100644 --- a/packages/material-ui-icons/lib/CameraRollRounded.js +++ b/packages/material-ui-icons/lib/CameraRollRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h6c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-6zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" -}), 'CameraRollRounded'); \ No newline at end of file +}), 'CameraRollRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRollSharp.js b/packages/material-ui-icons/lib/CameraRollSharp.js index b4b03ce470cd8f..ee23bd2cd909e6 100644 --- a/packages/material-ui-icons/lib/CameraRollSharp.js +++ b/packages/material-ui-icons/lib/CameraRollSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5V3h-3V1H5v2H2v19h12v-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" -}), 'CameraRollSharp'); \ No newline at end of file +}), 'CameraRollSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRollTwoTone.js b/packages/material-ui-icons/lib/CameraRollTwoTone.js index 7eac12e411500f..cd8a6ad95ab3bb 100644 --- a/packages/material-ui-icons/lib/CameraRollTwoTone.js +++ b/packages/material-ui-icons/lib/CameraRollTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5H9V3H7v2H4v15h8v-2h8V7h-8V5zm-1 12H9v-2h2v2zm0-7H9V8h2v2zm6-2h2v2h-2V8zm0 7h2v2h-2v-2zm-4-7h2v2h-2V8zm0 7h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z" -}, "1")], 'CameraRollTwoTone'); \ No newline at end of file +}, "1")], 'CameraRollTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraRounded.js b/packages/material-ui-icons/lib/CameraRounded.js index 00c0ce46e43a48..077ca4afee93ba 100644 --- a/packages/material-ui-icons/lib/CameraRounded.js +++ b/packages/material-ui-icons/lib/CameraRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.81 2.86c.17-.3 0-.7-.35-.74-2.62-.37-5.3.28-7.44 1.86-.19.15-.25.43-.12.65l3.01 5.22c.19.33.67.33.87 0l4.03-6.99zm7.49 5.47c-.98-2.47-2.92-4.46-5.35-5.5-.23-.1-.5 0-.63.22l-3.01 5.21c-.19.32.05.74.44.74h8.08c.35 0 .6-.35.47-.67zm.07 1.67h-6.2c-.38 0-.63.42-.43.75L19 18.14c.17.3.6.35.82.08 1.74-2.18 2.48-5.03 2.05-7.79-.03-.25-.25-.43-.5-.43zM4.18 5.79c-1.73 2.19-2.48 5.02-2.05 7.79.03.24.25.42.5.42h6.2c.38 0 .63-.42.43-.75L5 5.87c-.18-.3-.61-.35-.82-.08zM2.7 15.67c.98 2.47 2.92 4.46 5.35 5.5.23.1.5 0 .63-.22l3.01-5.21c.19-.33-.05-.75-.43-.75H3.17c-.35.01-.6.36-.47.68zm7.83 6.22c2.62.37 5.3-.28 7.44-1.86.2-.15.26-.44.13-.66l-3.01-5.22c-.19-.33-.67-.33-.87 0l-4.04 6.99c-.17.3.01.7.35.75z" -}), 'CameraRounded'); \ No newline at end of file +}), 'CameraRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraSharp.js b/packages/material-ui-icons/lib/CameraSharp.js index 5c06ab0b00dcb8..5f4801d7f0a754 100644 --- a/packages/material-ui-icons/lib/CameraSharp.js +++ b/packages/material-ui-icons/lib/CameraSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.4 10.5 4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z" -}), 'CameraSharp'); \ No newline at end of file +}), 'CameraSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraTwoTone.js b/packages/material-ui-icons/lib/CameraTwoTone.js index 0c8c1728e22b2b..e3bcdb35592cf6 100644 --- a/packages/material-ui-icons/lib/CameraTwoTone.js +++ b/packages/material-ui-icons/lib/CameraTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.9 19.91c.36.05.72.09 1.1.09 2.18 0 4.16-.88 5.61-2.3L14.89 13l-3.99 6.91zm-1.04-.21 2.71-4.7H4.59c.93 2.28 2.87 4.03 5.27 4.7zM8.54 12 5.7 7.09C4.64 8.45 4 10.15 4 12c0 .69.1 1.36.26 2h5.43l-1.15-2zm9.76 4.91C19.36 15.55 20 13.85 20 12c0-.69-.1-1.36-.26-2h-5.43l3.99 6.91zM13.73 9h5.68c-.93-2.28-2.88-4.04-5.28-4.7L11.42 9h2.31zm-3.46 0 2.83-4.92C12.74 4.03 12.37 4 12 4c-2.18 0-4.16.88-5.6 2.3L9.12 11l1.15-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c5.52 0 10-4.48 10-10 0-4.75-3.31-8.72-7.75-9.74l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10zm0-2c-.38 0-.74-.04-1.1-.09L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20zm8-8c0 1.85-.64 3.55-1.7 4.91l-4-6.91h5.43c.17.64.27 1.31.27 2zm-.59-3h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM12 4c.37 0 .74.03 1.1.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4zm-8 8c0-1.85.64-3.55 1.7-4.91L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12zm6.27 3h2.3l-2.71 4.7c-2.4-.67-4.35-2.42-5.28-4.7h5.69z" -}, "1")], 'CameraTwoTone'); \ No newline at end of file +}, "1")], 'CameraTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cameraswitch.js b/packages/material-ui-icons/lib/Cameraswitch.js index e3a09707ee7ab5..3ac6d463b5d37f 100644 --- a/packages/material-ui-icons/lib/Cameraswitch.js +++ b/packages/material-ui-icons/lib/Cameraswitch.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-4 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.57.51 4.48 4.48V2.04c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.02 15.49-1.59 8.57.51zm2.38 21.45c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z" -}, "1")], 'Cameraswitch'); \ No newline at end of file +}, "1")], 'Cameraswitch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraswitchOutlined.js b/packages/material-ui-icons/lib/CameraswitchOutlined.js index ce07800e254685..594f4efd32be97 100644 --- a/packages/material-ui-icons/lib/CameraswitchOutlined.js +++ b/packages/material-ui-icons/lib/CameraswitchOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H8V9h1.83l1-1h2.34l1 1H16v6z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.57.52 13.05 5l1.41-1.41-1.54-1.54C17.7 2.46 21.53 6.24 22 11h2C23.36 3.3 15.79-1.67 8.57.52zm.97 19.89 1.54 1.54C6.3 21.54 2.47 17.76 2 13H0c.64 7.7 8.21 12.67 15.43 10.48L10.95 19l-1.41 1.41z" -}, "2")], 'CameraswitchOutlined'); \ No newline at end of file +}, "2")], 'CameraswitchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraswitchRounded.js b/packages/material-ui-icons/lib/CameraswitchRounded.js index 853e1b1e66d25a..3d47c2456c9a3b 100644 --- a/packages/material-ui-icons/lib/CameraswitchRounded.js +++ b/packages/material-ui-icons/lib/CameraswitchRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-4 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.45.28c-.4.08-.55.56-.26.84l3.01 3.01c.32.31.85.09.85-.35V2.04c4.45.44 8.06 3.82 8.84 8.17.08.46.5.78.97.78.62 0 1.09-.57.98-1.18C22.61 2.89 15.79-1.12 9.45.28zm2.35 19.59c-.32-.32-.85-.09-.85.35v1.74c-4.45-.44-8.06-3.82-8.84-8.17-.08-.46-.5-.78-.97-.78-.62 0-1.09.57-.98 1.18 1.24 6.92 8.06 10.93 14.4 9.53.39-.09.55-.56.26-.85l-3.02-3z" -}, "1")], 'CameraswitchRounded'); \ No newline at end of file +}, "1")], 'CameraswitchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraswitchSharp.js b/packages/material-ui-icons/lib/CameraswitchSharp.js index 909899524ffa41..91aa06ead8cef5 100644 --- a/packages/material-ui-icons/lib/CameraswitchSharp.js +++ b/packages/material-ui-icons/lib/CameraswitchSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6h-4L9 7H6v10h12V7h-3l-1-1zm-2 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.57.51 4.48 4.48V2.04c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.02 15.49-1.59 8.57.51zm2.38 21.45c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z" -}, "1")], 'CameraswitchSharp'); \ No newline at end of file +}, "1")], 'CameraswitchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CameraswitchTwoTone.js b/packages/material-ui-icons/lib/CameraswitchTwoTone.js index e23d3feb409a0a..7af4736aa23d1c 100644 --- a/packages/material-ui-icons/lib/CameraswitchTwoTone.js +++ b/packages/material-ui-icons/lib/CameraswitchTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 8h-2.34l-1 1H8v6h8V9h-1.83l-1-1zM12 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H8V9h1.83l1-1h2.34l1 1H16v6z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.57.52 13.05 5V2.05c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.03 15.49-1.58 8.57.52zm2.38 21.44c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z" -}, "3")], 'CameraswitchTwoTone'); \ No newline at end of file +}, "3")], 'CameraswitchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Campaign.js b/packages/material-ui-icons/lib/Campaign.js index cd17d270db1a0d..e0c0744060b4a7 100644 --- a/packages/material-ui-icons/lib/Campaign.js +++ b/packages/material-ui-icons/lib/Campaign.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm11.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" -}), 'Campaign'); \ No newline at end of file +}), 'Campaign'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CampaignOutlined.js b/packages/material-ui-icons/lib/CampaignOutlined.js index 7d5daeda0a76a7..8f5b57b97e1fd5 100644 --- a/packages/material-ui-icons/lib/CampaignOutlined.js +++ b/packages/material-ui-icons/lib/CampaignOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm5.03 1.71L11 9.53v4.94l-1.97-1.18-.48-.29H4v-2h4.55l.48-.29zM15.5 12c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" -}), 'CampaignOutlined'); \ No newline at end of file +}), 'CampaignOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CampaignRounded.js b/packages/material-ui-icons/lib/CampaignRounded.js index 1010d3e027ad82..d7e2b225359825 100644 --- a/packages/material-ui-icons/lib/CampaignRounded.js +++ b/packages/material-ui-icons/lib/CampaignRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 12c0 .55.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1zm-1.41 4.82c-.33.44-.24 1.05.2 1.37.53.39 1.09.81 1.62 1.21.44.33 1.06.24 1.38-.2 0-.01.01-.01.01-.02.33-.44.24-1.06-.2-1.38-.53-.4-1.09-.82-1.61-1.21-.44-.33-1.06-.23-1.39.21 0 .01-.01.02-.01.02zm3.22-12.01c0-.01-.01-.01-.01-.02-.33-.44-.95-.53-1.38-.2-.53.4-1.1.82-1.62 1.22-.44.33-.52.95-.19 1.38 0 .01.01.01.01.02.33.44.94.53 1.38.2.53-.39 1.09-.82 1.62-1.22.43-.32.51-.94.19-1.38zM8 9H4c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v3c0 .55.45 1 1 1s1-.45 1-1v-3h1l5 3V6L8 9zm7.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" -}), 'CampaignRounded'); \ No newline at end of file +}), 'CampaignRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CampaignSharp.js b/packages/material-ui-icons/lib/CampaignSharp.js index 69a74bfd181665..7fa401e5084731 100644 --- a/packages/material-ui-icons/lib/CampaignSharp.js +++ b/packages/material-ui-icons/lib/CampaignSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM8 9H2v6h3v4h2v-4h1l5 3V6L8 9zm7.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" -}), 'CampaignSharp'); \ No newline at end of file +}), 'CampaignSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CampaignTwoTone.js b/packages/material-ui-icons/lib/CampaignTwoTone.js index cb994846602266..a28c2ed6101307 100644 --- a/packages/material-ui-icons/lib/CampaignTwoTone.js +++ b/packages/material-ui-icons/lib/CampaignTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm5.03 1.71L11 9.53v4.94l-1.97-1.18-.48-.29H4v-2h4.55l.48-.29zM15.5 12c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.03 10.71 11 9.53v4.94l-1.97-1.18-.48-.29H4v-2h4.55l.48-.29z", opacity: ".3" -}, "1")], 'CampaignTwoTone'); \ No newline at end of file +}, "1")], 'CampaignTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cancel.js b/packages/material-ui-icons/lib/Cancel.js index 4027c796557df9..8380d61bc3bd0e 100644 --- a/packages/material-ui-icons/lib/Cancel.js +++ b/packages/material-ui-icons/lib/Cancel.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" -}), 'Cancel'); \ No newline at end of file +}), 'Cancel'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelOutlined.js b/packages/material-ui-icons/lib/CancelOutlined.js index 0ba56f621dc4d9..bbf2bc7ec91949 100644 --- a/packages/material-ui-icons/lib/CancelOutlined.js +++ b/packages/material-ui-icons/lib/CancelOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z" -}), 'CancelOutlined'); \ No newline at end of file +}), 'CancelOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelPresentation.js b/packages/material-ui-icons/lib/CancelPresentation.js index 0fa1a9bbdf3d65..be32d8f72fa427 100644 --- a/packages/material-ui-icons/lib/CancelPresentation.js +++ b/packages/material-ui-icons/lib/CancelPresentation.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z" -}, "1")], 'CancelPresentation'); \ No newline at end of file +}, "1")], 'CancelPresentation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelPresentationOutlined.js b/packages/material-ui-icons/lib/CancelPresentationOutlined.js index dcac10263a137b..59d9f89fb01e8a 100644 --- a/packages/material-ui-icons/lib/CancelPresentationOutlined.js +++ b/packages/material-ui-icons/lib/CancelPresentationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95 12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z" -}), 'CancelPresentationOutlined'); \ No newline at end of file +}), 'CancelPresentationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelPresentationRounded.js b/packages/material-ui-icons/lib/CancelPresentationRounded.js index 7ea339c1613bfa..1bc8174fba8849 100644 --- a/packages/material-ui-icons/lib/CancelPresentationRounded.js +++ b/packages/material-ui-icons/lib/CancelPresentationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12zm-5.71-9.3a.9959.9959 0 0 0-1.41 0L12 10.59 10.11 8.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 8.7 13.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l1.89 1.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l1.89-1.89c.38-.38.38-1.02-.01-1.41z" -}), 'CancelPresentationRounded'); \ No newline at end of file +}), 'CancelPresentationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelPresentationSharp.js b/packages/material-ui-icons/lib/CancelPresentationSharp.js index c164795267a929..1d35e1b78f4ccb 100644 --- a/packages/material-ui-icons/lib/CancelPresentationSharp.js +++ b/packages/material-ui-icons/lib/CancelPresentationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59z" -}), 'CancelPresentationSharp'); \ No newline at end of file +}), 'CancelPresentationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelPresentationTwoTone.js b/packages/material-ui-icons/lib/CancelPresentationTwoTone.js index 4595cf316db85d..98c5ad17de887f 100644 --- a/packages/material-ui-icons/lib/CancelPresentationTwoTone.js +++ b/packages/material-ui-icons/lib/CancelPresentationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19.1h18V4.95H3V19.1zm5-9.74 1.41-1.41L12 10.54l2.59-2.59L16 9.36l-2.59 2.59L16 14.54l-1.41 1.41L12 13.36l-2.59 2.59L8 14.54l2.59-2.59L8 9.36z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95 12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z" -}, "1")], 'CancelPresentationTwoTone'); \ No newline at end of file +}, "1")], 'CancelPresentationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelRounded.js b/packages/material-ui-icons/lib/CancelRounded.js index 48fab7af397f00..f9fa40f407e4a0 100644 --- a/packages/material-ui-icons/lib/CancelRounded.js +++ b/packages/material-ui-icons/lib/CancelRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm4.3 14.3c-.39.39-1.02.39-1.41 0L12 13.41 9.11 16.3c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 7.7 9.11a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l2.89-2.89c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z" -}), 'CancelRounded'); \ No newline at end of file +}), 'CancelRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelScheduleSend.js b/packages/material-ui-icons/lib/CancelScheduleSend.js index f7b8a978e454f0..2fc5e8f2355b83 100644 --- a/packages/material-ui-icons/lib/CancelScheduleSend.js +++ b/packages/material-ui-icons/lib/CancelScheduleSend.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l9 2-9 2 .01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" -}, "1")], 'CancelScheduleSend'); \ No newline at end of file +}, "1")], 'CancelScheduleSend'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelScheduleSendOutlined.js b/packages/material-ui-icons/lib/CancelScheduleSendOutlined.js index 916296ef1db984..71dff97dbecba2 100644 --- a/packages/material-ui-icons/lib/CancelScheduleSendOutlined.js +++ b/packages/material-ui-icons/lib/CancelScheduleSendOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l10.06 1.34c-.42.44-.78.93-1.09 1.46L1 14l.01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zM3 8.25l.01-2.22 7.51 3.22-7.52-1zm6.1 7.11L3 17.97v-2.22l6.17-.82c-.03.14-.05.28-.07.43zM16.5 22c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" -}, "1")], 'CancelScheduleSendOutlined'); \ No newline at end of file +}, "1")], 'CancelScheduleSendOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelScheduleSendRounded.js b/packages/material-ui-icons/lib/CancelScheduleSendRounded.js index 849e28aa778cdf..b879ec0ea47fd3 100644 --- a/packages/material-ui-icons/lib/CancelScheduleSendRounded.js +++ b/packages/material-ui-icons/lib/CancelScheduleSendRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 9c-.42 0-.83.04-1.24.11L2.4 3.6c-.66-.29-1.39.2-1.39.91L1 9.2c0 .47.33.88.78.98L10 12l-8.22 1.83c-.45.1-.78.5-.78.97l.01 4.68c0 .72.73 1.2 1.39.92l6.68-2.86C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.62 14.38c-.2-.2-.51-.2-.71 0l-1.41 1.41-1.41-1.41c-.2-.2-.51-.2-.71 0s-.2.51 0 .71l1.41 1.41-1.41 1.41c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.41-1.41 1.41 1.41c.2.2.51.2.71 0 .2-.2.2-.51 0-.71l-1.41-1.41 1.41-1.41c.2-.2.2-.52 0-.71z" -}, "1")], 'CancelScheduleSendRounded'); \ No newline at end of file +}, "1")], 'CancelScheduleSendRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelScheduleSendSharp.js b/packages/material-ui-icons/lib/CancelScheduleSendSharp.js index 73da2bd16158ae..7d743a8a652120 100644 --- a/packages/material-ui-icons/lib/CancelScheduleSendSharp.js +++ b/packages/material-ui-icons/lib/CancelScheduleSendSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l9 2-9 2 .01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" -}, "1")], 'CancelScheduleSendSharp'); \ No newline at end of file +}, "1")], 'CancelScheduleSendSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelScheduleSendTwoTone.js b/packages/material-ui-icons/lib/CancelScheduleSendTwoTone.js index da0a9e02fee90c..5b9e711fbd5bf3 100644 --- a/packages/material-ui-icons/lib/CancelScheduleSendTwoTone.js +++ b/packages/material-ui-icons/lib/CancelScheduleSendTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 17.97 6.1-2.61c.02-.14.04-.29.07-.43L3 15.75v2.22zM16.5 11c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm2.47 7.27-.71.71-1.77-1.77-1.77 1.77-.71-.71 1.77-1.77-1.77-1.77.71-.71 1.77 1.77 1.77-1.77.71.71-1.77 1.77 1.77 1.77zM3 8.25l7.52 1-7.51-3.22z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l10.06 1.34c-.42.44-.78.93-1.09 1.46L1 14l.01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zM3 8.25l.01-2.22 7.51 3.22-7.52-1zm6.1 7.11L3 17.97v-2.22l6.17-.82c-.03.14-.05.28-.07.43zM16.5 22c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" -}, "2")], 'CancelScheduleSendTwoTone'); \ No newline at end of file +}, "2")], 'CancelScheduleSendTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelSharp.js b/packages/material-ui-icons/lib/CancelSharp.js index ea2052e4856aa6..9dbcd943ad8bf2 100644 --- a/packages/material-ui-icons/lib/CancelSharp.js +++ b/packages/material-ui-icons/lib/CancelSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" -}), 'CancelSharp'); \ No newline at end of file +}), 'CancelSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CancelTwoTone.js b/packages/material-ui-icons/lib/CancelTwoTone.js index e4601c937e7c6c..8f962ac5ed864f 100644 --- a/packages/material-ui-icons/lib/CancelTwoTone.js +++ b/packages/material-ui-icons/lib/CancelTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 11.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z" -}, "1")], 'CancelTwoTone'); \ No newline at end of file +}, "1")], 'CancelTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRental.js b/packages/material-ui-icons/lib/CarRental.js index 75563c8fa97443..54332932b91c9b 100644 --- a/packages/material-ui-icons/lib/CarRental.js +++ b/packages/material-ui-icons/lib/CarRental.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.39 9H7.61c-.43 0-.81.28-.95.68l-1.66 5v6.81c0 .29.23.51.5.51h1c.28 0 .5-.22.5-.5V20h10v1.5c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-6.81l-1.66-5c-.14-.41-.52-.69-.95-.69zm-8.61 9c-.68 0-1.22-.54-1.22-1.22s.54-1.22 1.22-1.22S9 16.11 9 16.78 8.46 18 7.78 18zm8.44 0c-.67 0-1.22-.54-1.22-1.22s.54-1.22 1.22-1.22 1.22.54 1.22 1.22S16.9 18 16.22 18zm-9.93-4 1.33-4h8.78l1.33 4H6.29zm4.54-11C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'CarRental'); \ No newline at end of file +}), 'CarRental'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRentalOutlined.js b/packages/material-ui-icons/lib/CarRentalOutlined.js index cedeb740ee24cb..e725ac7c6e6fae 100644 --- a/packages/material-ui-icons/lib/CarRentalOutlined.js +++ b/packages/material-ui-icons/lib/CarRentalOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "16.5", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "16.5", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.25 9.6c-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81h.44c.43 0 .78-.36.78-.81V20h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4zM8.33 11h7.34l.23.69.43 1.31H7.67l.66-2zM17 18H7v-3h10v3zM10.83 3C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "2")], 'CarRentalOutlined'); \ No newline at end of file +}, "2")], 'CarRentalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRentalRounded.js b/packages/material-ui-icons/lib/CarRentalRounded.js index f321a37bfe19a3..fe60d56658c5e2 100644 --- a/packages/material-ui-icons/lib/CarRentalRounded.js +++ b/packages/material-ui-icons/lib/CarRentalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 7c1.3 0 2.41-.84 2.83-2H16v1c0 .55.45 1 1 1s1-.45 1-1V5c.55 0 1-.45 1-1s-.45-1-1-1h-7.17C10.35 1.65 8.95.76 7.4 1.06c-1.17.23-2.12 1.19-2.35 2.36C4.7 5.32 6.15 7 8 7zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm8.39 6H7.61c-.43 0-.81.28-.95.68L5 14.69V21c0 .55.45 1 1 1s1-.45 1-1v-1h10v1c0 .55.45 1 1 1s1-.45 1-1v-6.31l-1.66-5.01c-.14-.4-.52-.68-.95-.68zM9 17.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7.67 13l.66-2h7.34l.66 2H7.67z" -}), 'CarRentalRounded'); \ No newline at end of file +}), 'CarRentalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRentalSharp.js b/packages/material-ui-icons/lib/CarRentalSharp.js index e27fce856476ee..995c122028ec81 100644 --- a/packages/material-ui-icons/lib/CarRentalSharp.js +++ b/packages/material-ui-icons/lib/CarRentalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.83 3C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9.11 4H6.89L5 14.69V22h2v-2h10v2h2v-7.31L17.11 9zM9 17.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7.67 13l.66-2h7.34l.66 2H7.67z" -}), 'CarRentalSharp'); \ No newline at end of file +}), 'CarRentalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRentalTwoTone.js b/packages/material-ui-icons/lib/CarRentalTwoTone.js index af6fd48def8993..9bb093051a2ef3 100644 --- a/packages/material-ui-icons/lib/CarRentalTwoTone.js +++ b/packages/material-ui-icons/lib/CarRentalTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15.01V18h10v-3H7v.01zm8 .49c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-6 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "16.5", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "16.5", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.25 9.6c-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81h.44c.43 0 .78-.36.78-.81V20h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4zM8.33 11h7.34l.23.69.43 1.31H7.67l.66-2zM17 15.01V18H7v-3h10v.01zM10.83 3C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "3")], 'CarRentalTwoTone'); \ No newline at end of file +}, "3")], 'CarRentalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRepair.js b/packages/material-ui-icons/lib/CarRepair.js index 2c6db52757ffea..44c692971b47b3 100644 --- a/packages/material-ui-icons/lib/CarRepair.js +++ b/packages/material-ui-icons/lib/CarRepair.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.22 12c.68 0 1.22-.54 1.22-1.22 0-.67-.54-1.22-1.22-1.22S15 10.11 15 10.78c0 .68.55 1.22 1.22 1.22zm-9.66-1.22c0 .67.54 1.22 1.22 1.22S9 11.46 9 10.78c0-.67-.54-1.22-1.22-1.22s-1.22.55-1.22 1.22zM7.61 4 6.28 8h11.43l-1.33-4H7.61zm8.67-1s.54.01.92.54c.02.02.03.04.05.07.07.11.14.24.19.4.22.65 1.56 4.68 1.56 4.68v6.5c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81V14H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5S6.34 4.67 6.55 4c.05-.16.12-.28.19-.4.03-.02.04-.04.06-.06.38-.53.92-.54.92-.54h8.56zM4 17.01h16V19h-7v3h-2v-3H4v-1.99z" -}), 'CarRepair'); \ No newline at end of file +}), 'CarRepair'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRepairOutlined.js b/packages/material-ui-icons/lib/CarRepairOutlined.js index 363c0cded66472..3bbe3c9ca07fcb 100644 --- a/packages/material-ui-icons/lib/CarRepairOutlined.js +++ b/packages/material-ui-icons/lib/CarRepairOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "10.5", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "10.5", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.78 16h.44c.43 0 .78-.36.78-.81V14h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5S17.66 4.66 17.44 4c-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4C6.34 4.66 5 8.69 5 8.69v6.5c0 .45.35.81.78.81zM8.33 5h7.34l.23.69.43 1.31H7.67l.66-2zM7 9.01V9h10v3H7V9.01zm-3 8V19h7v3h2v-3h7v-1.99z" -}, "2")], 'CarRepairOutlined'); \ No newline at end of file +}, "2")], 'CarRepairOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRepairRounded.js b/packages/material-ui-icons/lib/CarRepairRounded.js index 55fafdc8739547..be20074a031518 100644 --- a/packages/material-ui-icons/lib/CarRepairRounded.js +++ b/packages/material-ui-icons/lib/CarRepairRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v-1h10v1c0 .55.45 1 1 1s1-.45 1-1V8.69S17.66 4.66 17.44 4c-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4C6.34 4.66 5 8.69 5 8.69V15c0 .55.45 1 1 1s1-.45 1-1zm2-3.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8.33 5h7.34l.23.69.43 1.31H7.67l.66-2zM4 18.01c0 .54.45.99.99.99H11v2.01c0 .55.45.99.99.99H12c.55 0 .99-.45.99-.99V19H19c.55 0 .99-.45.99-.99 0-.55-.45-.99-.99-.99H4.99c-.54-.01-.99.44-.99.99z" -}), 'CarRepairRounded'); \ No newline at end of file +}), 'CarRepairRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRepairSharp.js b/packages/material-ui-icons/lib/CarRepairSharp.js index fabda0c0304250..974817a621cc7e 100644 --- a/packages/material-ui-icons/lib/CarRepairSharp.js +++ b/packages/material-ui-icons/lib/CarRepairSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.01V19h7v3h2v-3h7v-1.99H4zM7 14h10v2h2V8.69L17.11 3H6.89L5 8.69V16h2v-2zm2-2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8.33 5h7.34l.66 2H7.67l.66-2z" -}), 'CarRepairSharp'); \ No newline at end of file +}), 'CarRepairSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarRepairTwoTone.js b/packages/material-ui-icons/lib/CarRepairTwoTone.js index baf724a1808889..48ac15440c8dd4 100644 --- a/packages/material-ui-icons/lib/CarRepairTwoTone.js +++ b/packages/material-ui-icons/lib/CarRepairTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 9.01V9H7v3h10V9.01zM9 11.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "10.5", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "10.5", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.78 16h.44c.43 0 .78-.36.78-.81V14h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5S17.66 4.66 17.44 4c-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4C6.34 4.66 5 8.69 5 8.69v6.5c0 .45.35.81.78.81zM8.33 5h7.34l.23.69.43 1.31H7.67l.66-2zM7 9.01V9h10v3H7V9.01zm-3 8V19h7v3h2v-3h7v-1.99z" -}, "3")], 'CarRepairTwoTone'); \ No newline at end of file +}, "3")], 'CarRepairTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardGiftcard.js b/packages/material-ui-icons/lib/CardGiftcard.js index 967e22947aba25..e26a2d22bee12d 100644 --- a/packages/material-ui-icons/lib/CardGiftcard.js +++ b/packages/material-ui-icons/lib/CardGiftcard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" -}), 'CardGiftcard'); \ No newline at end of file +}), 'CardGiftcard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardGiftcardOutlined.js b/packages/material-ui-icons/lib/CardGiftcardOutlined.js index 7e432c6287e4e3..befa8b19f5968a 100644 --- a/packages/material-ui-icons/lib/CardGiftcardOutlined.js +++ b/packages/material-ui-icons/lib/CardGiftcardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" -}), 'CardGiftcardOutlined'); \ No newline at end of file +}), 'CardGiftcardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardGiftcardRounded.js b/packages/material-ui-icons/lib/CardGiftcardRounded.js index 78a90d614196bf..1489789a42579a 100644 --- a/packages/material-ui-icons/lib/CardGiftcardRounded.js +++ b/packages/material-ui-icons/lib/CardGiftcardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V9c0-.55.45-1 1-1h4.08L7.6 10.02c-.33.45-.23 1.08.22 1.4.44.32 1.07.22 1.39-.22L12 7.4l2.79 3.8c.32.44.95.54 1.39.22.45-.32.55-.95.22-1.4L14.92 8H19c.55 0 1 .45 1 1v5z" -}), 'CardGiftcardRounded'); \ No newline at end of file +}), 'CardGiftcardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardGiftcardSharp.js b/packages/material-ui-icons/lib/CardGiftcardSharp.js index c3550ed82832ba..aba90140cd634e 100644 --- a/packages/material-ui-icons/lib/CardGiftcardSharp.js +++ b/packages/material-ui-icons/lib/CardGiftcardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6h-4.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2.01v15H22V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" -}), 'CardGiftcardSharp'); \ No newline at end of file +}), 'CardGiftcardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardGiftcardTwoTone.js b/packages/material-ui-icons/lib/CardGiftcardTwoTone.js index 55708c8bf26f0c..91a86b6573ca75 100644 --- a/packages/material-ui-icons/lib/CardGiftcardTwoTone.js +++ b/packages/material-ui-icons/lib/CardGiftcardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h16v2H4zm13-6.17L15.38 12 12 7.4 8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" -}, "1")], 'CardGiftcardTwoTone'); \ No newline at end of file +}, "1")], 'CardGiftcardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardMembership.js b/packages/material-ui-icons/lib/CardMembership.js index 66d2f2f9ec5cdd..c6ba4a523434ef 100644 --- a/packages/material-ui-icons/lib/CardMembership.js +++ b/packages/material-ui-icons/lib/CardMembership.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" -}), 'CardMembership'); \ No newline at end of file +}), 'CardMembership'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardMembershipOutlined.js b/packages/material-ui-icons/lib/CardMembershipOutlined.js index fe5234714822ad..31c43c6be6b7bc 100644 --- a/packages/material-ui-icons/lib/CardMembershipOutlined.js +++ b/packages/material-ui-icons/lib/CardMembershipOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" -}), 'CardMembershipOutlined'); \ No newline at end of file +}), 'CardMembershipOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardMembershipRounded.js b/packages/material-ui-icons/lib/CardMembershipRounded.js index a27bd7f5be21dd..1da01a74e7cf8f 100644 --- a/packages/material-ui-icons/lib/CardMembershipRounded.js +++ b/packages/material-ui-icons/lib/CardMembershipRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v5z" -}), 'CardMembershipRounded'); \ No newline at end of file +}), 'CardMembershipRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardMembershipSharp.js b/packages/material-ui-icons/lib/CardMembershipSharp.js index 687375ec41b862..d4937ed0383c4f 100644 --- a/packages/material-ui-icons/lib/CardMembershipSharp.js +++ b/packages/material-ui-icons/lib/CardMembershipSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v15h6v5l4-2 4 2v-5h6V2zm-2 13H4v-2h16v2zm0-5H4V4h16v6z" -}), 'CardMembershipSharp'); \ No newline at end of file +}), 'CardMembershipSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardMembershipTwoTone.js b/packages/material-ui-icons/lib/CardMembershipTwoTone.js index cfc400063b7f2a..758bae1d5106a5 100644 --- a/packages/material-ui-icons/lib/CardMembershipTwoTone.js +++ b/packages/material-ui-icons/lib/CardMembershipTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h16v6H4zm0 9h16v2H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" -}, "1")], 'CardMembershipTwoTone'); \ No newline at end of file +}, "1")], 'CardMembershipTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardTravel.js b/packages/material-ui-icons/lib/CardTravel.js index 3ec85916a5d811..d568d35c236409 100644 --- a/packages/material-ui-icons/lib/CardTravel.js +++ b/packages/material-ui-icons/lib/CardTravel.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" -}), 'CardTravel'); \ No newline at end of file +}), 'CardTravel'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardTravelOutlined.js b/packages/material-ui-icons/lib/CardTravelOutlined.js index dc654bc6cc30bf..6e0cbafe6ed2bd 100644 --- a/packages/material-ui-icons/lib/CardTravelOutlined.js +++ b/packages/material-ui-icons/lib/CardTravelOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" -}), 'CardTravelOutlined'); \ No newline at end of file +}), 'CardTravelOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardTravelRounded.js b/packages/material-ui-icons/lib/CardTravelRounded.js index c99c6877e963b4..a04e12077c33b3 100644 --- a/packages/material-ui-icons/lib/CardTravelRounded.js +++ b/packages/material-ui-icons/lib/CardTravelRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V9c0-.55.45-1 1-1h2v1c0 .55.45 1 1 1s1-.45 1-1V8h6v1c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1 .45 1 1v5z" -}), 'CardTravelRounded'); \ No newline at end of file +}), 'CardTravelRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardTravelSharp.js b/packages/material-ui-icons/lib/CardTravelSharp.js index 04f3606c26dbbc..e1e51b5722b2ce 100644 --- a/packages/material-ui-icons/lib/CardTravelSharp.js +++ b/packages/material-ui-icons/lib/CardTravelSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6h-5V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H2v15h20V6zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" -}), 'CardTravelSharp'); \ No newline at end of file +}), 'CardTravelSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CardTravelTwoTone.js b/packages/material-ui-icons/lib/CardTravelTwoTone.js index 8ccc51cc45eccd..67f7f9563fbcb3 100644 --- a/packages/material-ui-icons/lib/CardTravelTwoTone.js +++ b/packages/material-ui-icons/lib/CardTravelTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h16v2H4zm13-7h-2V8H9v2H7V8H4v6h16V8h-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" -}, "1")], 'CardTravelTwoTone'); \ No newline at end of file +}, "1")], 'CardTravelTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Carpenter.js b/packages/material-ui-icons/lib/Carpenter.js index ff75cef9e5f669..2ad212a711539e 100644 --- a/packages/material-ui-icons/lib/Carpenter.js +++ b/packages/material-ui-icons/lib/Carpenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.73 14.23 7 1.5 3.11 5.39l8.13 11.67c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zm-5.66 5.65-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" -}), 'Carpenter'); \ No newline at end of file +}), 'Carpenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarpenterOutlined.js b/packages/material-ui-icons/lib/CarpenterOutlined.js index 4191ce7d5c4e01..7c44a399a73a00 100644 --- a/packages/material-ui-icons/lib/CarpenterOutlined.js +++ b/packages/material-ui-icons/lib/CarpenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.73 14.23 7 1.5 3.11 5.39l8.13 11.67c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zM5.71 5.62 7 4.33l8.49 8.49-2.81 2.81L5.71 5.62zm8.36 14.26-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" -}), 'CarpenterOutlined'); \ No newline at end of file +}), 'CarpenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarpenterRounded.js b/packages/material-ui-icons/lib/CarpenterRounded.js index d4d3517c3f14f2..adc7bdf7fd6773 100644 --- a/packages/material-ui-icons/lib/CarpenterRounded.js +++ b/packages/material-ui-icons/lib/CarpenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.73 14.23 7.71 2.21a.9959.9959 0 0 0-1.41 0L3.7 4.8c-.34.34-.39.88-.11 1.28l7.65 10.98c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zm-5.66 5.65-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" -}), 'CarpenterRounded'); \ No newline at end of file +}), 'CarpenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarpenterSharp.js b/packages/material-ui-icons/lib/CarpenterSharp.js index a09a981fc1f91b..4f919bb42f36dc 100644 --- a/packages/material-ui-icons/lib/CarpenterSharp.js +++ b/packages/material-ui-icons/lib/CarpenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 1.5 3.11 5.39l8.13 11.67-1.41 1.41 4.24 4.24 7.07-7.07L7 1.5zm5.66 16.97 4.24-4.24 1.41 1.41-4.24 4.24-1.41-1.41z" -}), 'CarpenterSharp'); \ No newline at end of file +}), 'CarpenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CarpenterTwoTone.js b/packages/material-ui-icons/lib/CarpenterTwoTone.js index 75ceaeca06c485..9a83b676125a5a 100644 --- a/packages/material-ui-icons/lib/CarpenterTwoTone.js +++ b/packages/material-ui-icons/lib/CarpenterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.71 5.62 7 4.33l8.49 8.49-2.81 2.81L5.71 5.62z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.73 14.23 7 1.5 3.11 5.39l8.13 11.67c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zM5.71 5.62 7 4.33l8.49 8.49-2.81 2.81L5.71 5.62zm8.36 14.26-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" -}, "1")], 'CarpenterTwoTone'); \ No newline at end of file +}, "1")], 'CarpenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cases.js b/packages/material-ui-icons/lib/Cases.js index 3d4b650d646ed1..f1305b431a0526 100644 --- a/packages/material-ui-icons/lib/Cases.js +++ b/packages/material-ui-icons/lib/Cases.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6V4l-2-2h-5L9 4v2H5v11s1 2 2 2h13s2-.98 2-2V6h-4zM4 9H2v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H4V9zm7-4c0-.55.53-1 1-1h3c.46 0 1 .54 1 1v1h-5V5zM5 6h17v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6z" -}), 'Cases'); \ No newline at end of file +}), 'Cases'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasesOutlined.js b/packages/material-ui-icons/lib/CasesOutlined.js index 25275dec00816b..4e564242364c42 100644 --- a/packages/material-ui-icons/lib/CasesOutlined.js +++ b/packages/material-ui-icons/lib/CasesOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h17v-2H3V9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v11c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" -}, "1")], 'CasesOutlined'); \ No newline at end of file +}, "1")], 'CasesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasesRounded.js b/packages/material-ui-icons/lib/CasesRounded.js index 6a05b7cc5f5c1b..a470078eb51da9 100644 --- a/packages/material-ui-icons/lib/CasesRounded.js +++ b/packages/material-ui-icons/lib/CasesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3zm-2 0h-4V3h4v2zM2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H3V10c0-.55-.45-1-1-1z" -}), 'CasesRounded'); \ No newline at end of file +}), 'CasesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasesSharp.js b/packages/material-ui-icons/lib/CasesSharp.js index b14bdc22033a39..1d0aefafcedc62 100644 --- a/packages/material-ui-icons/lib/CasesSharp.js +++ b/packages/material-ui-icons/lib/CasesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V1h-8v4H5v13h18V5h-5zm-2 0h-4V3h4v2zM3 9H1v13h18v-2H3V9z" -}), 'CasesSharp'); \ No newline at end of file +}), 'CasesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasesTwoTone.js b/packages/material-ui-icons/lib/CasesTwoTone.js index 3fe85292b0df1a..f570db33a745cc 100644 --- a/packages/material-ui-icons/lib/CasesTwoTone.js +++ b/packages/material-ui-icons/lib/CasesTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h14v9H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h17v-2H3V9z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v11c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" -}, "2")], 'CasesTwoTone'); \ No newline at end of file +}, "2")], 'CasesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Casino.js b/packages/material-ui-icons/lib/Casino.js index e453146f4474bd..e37d4224a9e765 100644 --- a/packages/material-ui-icons/lib/Casino.js +++ b/packages/material-ui-icons/lib/Casino.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" -}), 'Casino'); \ No newline at end of file +}), 'Casino'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasinoOutlined.js b/packages/material-ui-icons/lib/CasinoOutlined.js index 8824a03aaaecbd..d7f608bf99b587 100644 --- a/packages/material-ui-icons/lib/CasinoOutlined.js +++ b/packages/material-ui-icons/lib/CasinoOutlined.js @@ -1,25 +1,38 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "16.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "7.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "16.5", r: "1.5" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "7.5", r: "1.5" -}, "5")], 'CasinoOutlined'); \ No newline at end of file +}, "5")], 'CasinoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasinoRounded.js b/packages/material-ui-icons/lib/CasinoRounded.js index 0d1f3eec203b66..4bd8870bd1e265 100644 --- a/packages/material-ui-icons/lib/CasinoRounded.js +++ b/packages/material-ui-icons/lib/CasinoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" -}), 'CasinoRounded'); \ No newline at end of file +}), 'CasinoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasinoSharp.js b/packages/material-ui-icons/lib/CasinoSharp.js index b21ca80fe47cd4..e04cdca5dfe701 100644 --- a/packages/material-ui-icons/lib/CasinoSharp.js +++ b/packages/material-ui-icons/lib/CasinoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" -}), 'CasinoSharp'); \ No newline at end of file +}), 'CasinoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CasinoTwoTone.js b/packages/material-ui-icons/lib/CasinoTwoTone.js index 0237c34a23bd1b..5f3191f8520a2c 100644 --- a/packages/material-ui-icons/lib/CasinoTwoTone.js +++ b/packages/material-ui-icons/lib/CasinoTwoTone.js @@ -1,28 +1,41 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zM16.5 6c.83 0 1.5.67 1.5 1.5S17.33 9 16.5 9 15 8.33 15 7.5 15.67 6 16.5 6zm0 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM12 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM7.5 6C8.33 6 9 6.67 9 7.5S8.33 9 7.5 9 6 8.33 6 7.5 6.67 6 7.5 6zm0 9c.83 0 1.5.67 1.5 1.5S8.33 18 7.5 18 6 17.33 6 16.5 6.67 15 7.5 15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "16.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "7.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "1.5" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "16.5", r: "1.5" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "7.5", r: "1.5" -}, "6")], 'CasinoTwoTone'); \ No newline at end of file +}, "6")], 'CasinoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cast.js b/packages/material-ui-icons/lib/Cast.js index 9a258b3a7b73cc..99e9c263d747a9 100644 --- a/packages/material-ui-icons/lib/Cast.js +++ b/packages/material-ui-icons/lib/Cast.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" -}), 'Cast'); \ No newline at end of file +}), 'Cast'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastConnected.js b/packages/material-ui-icons/lib/CastConnected.js index afc0b7f35678cd..cb7f8de5354520 100644 --- a/packages/material-ui-icons/lib/CastConnected.js +++ b/packages/material-ui-icons/lib/CastConnected.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'CastConnected'); \ No newline at end of file +}), 'CastConnected'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastConnectedOutlined.js b/packages/material-ui-icons/lib/CastConnectedOutlined.js index 6647093446049a..dceb3875e7e059 100644 --- a/packages/material-ui-icons/lib/CastConnectedOutlined.js +++ b/packages/material-ui-icons/lib/CastConnectedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v2h12v6h-3v2h5V7z" -}), 'CastConnectedOutlined'); \ No newline at end of file +}), 'CastConnectedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastConnectedRounded.js b/packages/material-ui-icons/lib/CastConnectedRounded.js index d4c38756bdc954..6b3c1ba6122d0c 100644 --- a/packages/material-ui-icons/lib/CastConnectedRounded.js +++ b/packages/material-ui-icons/lib/CastConnectedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 16V8c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v.63c3.96 1.28 7.09 4.41 8.37 8.37H18c.55 0 1-.45 1-1zm2-13H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-.62-.19-1.2-.51-1.68C2.95 18.52 2.04 18 1 18zm1.14-3.91c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zm-.04-4.04c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z" -}), 'CastConnectedRounded'); \ No newline at end of file +}), 'CastConnectedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastConnectedSharp.js b/packages/material-ui-icons/lib/CastConnectedSharp.js index cf9570c882d973..4ee9f5991426de 100644 --- a/packages/material-ui-icons/lib/CastConnectedSharp.js +++ b/packages/material-ui-icons/lib/CastConnectedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm22-7H1v5h2V5h18v14h-7v2h9V3z" -}), 'CastConnectedSharp'); \ No newline at end of file +}), 'CastConnectedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastConnectedTwoTone.js b/packages/material-ui-icons/lib/CastConnectedTwoTone.js index aef302e48fb36a..7317f02bbe42c5 100644 --- a/packages/material-ui-icons/lib/CastConnectedTwoTone.js +++ b/packages/material-ui-icons/lib/CastConnectedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 9H5.95c2.83 1.17 5.15 3.3 6.56 6H17V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v1.63c.32.1.63.24.95.37H17v6h-4.49c.15.29.29.58.42.88.16.36.31.74.44 1.12H19V7H5z" -}, "1")], 'CastConnectedTwoTone'); \ No newline at end of file +}, "1")], 'CastConnectedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastForEducation.js b/packages/material-ui-icons/lib/CastForEducation.js index 5d6338769a9d05..d591ed6f1f0dd3 100644 --- a/packages/material-ui-icons/lib/CastForEducation.js +++ b/packages/material-ui-icons/lib/CastForEducation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" -}), 'CastForEducation'); \ No newline at end of file +}), 'CastForEducation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastForEducationOutlined.js b/packages/material-ui-icons/lib/CastForEducationOutlined.js index 15550d7b6d2ecc..eb39d3bebe0696 100644 --- a/packages/material-ui-icons/lib/CastForEducationOutlined.js +++ b/packages/material-ui-icons/lib/CastForEducationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" -}), 'CastForEducationOutlined'); \ No newline at end of file +}), 'CastForEducationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastForEducationRounded.js b/packages/material-ui-icons/lib/CastForEducationRounded.js index 050d9828f658e0..25e55432af78c5 100644 --- a/packages/material-ui-icons/lib/CastForEducationRounded.js +++ b/packages/material-ui-icons/lib/CastForEducationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.2 8.56-4.22-2.3c-.3-.16-.66-.16-.96 0L9.8 8.56c-.35.19-.35.69 0 .88l4.22 2.3c.3.16.66.16.96 0l4.22-2.3c.34-.19.34-.69 0-.88zM21 3H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.98 9.74L11 11.09v1.41c0 .37.2.7.52.88l2.5 1.36c.3.16.66.16.96 0l2.5-1.36c.32-.18.52-.52.52-.88v-1.41l-3.02 1.65c-.3.16-.66.16-.96 0zM1 18v3h3c0-1.66-1.34-3-3-3zm1.14-3.91c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zm-.04-4.04c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z" -}), 'CastForEducationRounded'); \ No newline at end of file +}), 'CastForEducationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastForEducationSharp.js b/packages/material-ui-icons/lib/CastForEducationSharp.js index d5ebf540f97c06..fc3ad750c26e92 100644 --- a/packages/material-ui-icons/lib/CastForEducationSharp.js +++ b/packages/material-ui-icons/lib/CastForEducationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" -}), 'CastForEducationSharp'); \ No newline at end of file +}), 'CastForEducationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastForEducationTwoTone.js b/packages/material-ui-icons/lib/CastForEducationTwoTone.js index 137f8c864220d4..de2aa3c029c8e5 100644 --- a/packages/material-ui-icons/lib/CastForEducationTwoTone.js +++ b/packages/material-ui-icons/lib/CastForEducationTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" -}), 'CastForEducationTwoTone'); \ No newline at end of file +}), 'CastForEducationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastOutlined.js b/packages/material-ui-icons/lib/CastOutlined.js index a3f645d76a52e8..a941166b4252dc 100644 --- a/packages/material-ui-icons/lib/CastOutlined.js +++ b/packages/material-ui-icons/lib/CastOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" -}), 'CastOutlined'); \ No newline at end of file +}), 'CastOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastRounded.js b/packages/material-ui-icons/lib/CastRounded.js index c084afb1237c89..8c4dc870d2ae18 100644 --- a/packages/material-ui-icons/lib/CastRounded.js +++ b/packages/material-ui-icons/lib/CastRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM2.14 14.09c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zM1 18v3h3c0-1.66-1.34-3-3-3zm1.1-7.95c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z" -}), 'CastRounded'); \ No newline at end of file +}), 'CastRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastSharp.js b/packages/material-ui-icons/lib/CastSharp.js index 47e506c7467a4e..290eaa892b1a40 100644 --- a/packages/material-ui-icons/lib/CastSharp.js +++ b/packages/material-ui-icons/lib/CastSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" -}), 'CastSharp'); \ No newline at end of file +}), 'CastSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CastTwoTone.js b/packages/material-ui-icons/lib/CastTwoTone.js index c641391ba0ed99..7fc5a221461310 100644 --- a/packages/material-ui-icons/lib/CastTwoTone.js +++ b/packages/material-ui-icons/lib/CastTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" -}), 'CastTwoTone'); \ No newline at end of file +}), 'CastTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CatchingPokemon.js b/packages/material-ui-icons/lib/CatchingPokemon.js index 5b0ea7cd055367..e4d93cc77cbaee 100644 --- a/packages/material-ui-icons/lib/CatchingPokemon.js +++ b/packages/material-ui-icons/lib/CatchingPokemon.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" -}), 'CatchingPokemon'); \ No newline at end of file +}), 'CatchingPokemon'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CatchingPokemonOutlined.js b/packages/material-ui-icons/lib/CatchingPokemonOutlined.js index c7d7e4e895f871..ea30ef77104ab6 100644 --- a/packages/material-ui-icons/lib/CatchingPokemonOutlined.js +++ b/packages/material-ui-icons/lib/CatchingPokemonOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" -}), 'CatchingPokemonOutlined'); \ No newline at end of file +}), 'CatchingPokemonOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CatchingPokemonRounded.js b/packages/material-ui-icons/lib/CatchingPokemonRounded.js index b3e7a0cce38d0d..65e4a25b074376 100644 --- a/packages/material-ui-icons/lib/CatchingPokemonRounded.js +++ b/packages/material-ui-icons/lib/CatchingPokemonRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" -}), 'CatchingPokemonRounded'); \ No newline at end of file +}), 'CatchingPokemonRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CatchingPokemonSharp.js b/packages/material-ui-icons/lib/CatchingPokemonSharp.js index a9f5ec2a06d394..91a1c907d663da 100644 --- a/packages/material-ui-icons/lib/CatchingPokemonSharp.js +++ b/packages/material-ui-icons/lib/CatchingPokemonSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" -}), 'CatchingPokemonSharp'); \ No newline at end of file +}), 'CatchingPokemonSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CatchingPokemonTwoTone.js b/packages/material-ui-icons/lib/CatchingPokemonTwoTone.js index 9cb818eb2d868e..d811cbe1e80b53 100644 --- a/packages/material-ui-icons/lib/CatchingPokemonTwoTone.js +++ b/packages/material-ui-icons/lib/CatchingPokemonTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.08 0 7.45 3.05 7.94 7h-4.06c-.45-1.73-2.02-3-3.88-3s-3.43 1.27-3.87 3H4.06C4.55 7.05 7.92 4 12 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 2c4.08 0 7.45 3.05 7.94 7h-4.06c-.45-1.73-2.02-3-3.88-3s-3.43 1.27-3.87 3H4.06C4.55 7.05 7.92 4 12 4zm2 8c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2 8c-4.08 0-7.45-3.05-7.94-7h4.06c.44 1.73 2.01 3 3.87 3s3.43-1.27 3.87-3h4.06c-.47 3.95-3.84 7-7.92 7z" -}, "1")], 'CatchingPokemonTwoTone'); \ No newline at end of file +}, "1")], 'CatchingPokemonTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Category.js b/packages/material-ui-icons/lib/Category.js index e30c7a5e8def0a..1c330fe36a88e0 100644 --- a/packages/material-ui-icons/lib/Category.js +++ b/packages/material-ui-icons/lib/Category.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 2-5.5 9h11z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "17.5", r: "4.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13.5h8v8H3z" -}, "2")], 'Category'); \ No newline at end of file +}, "2")], 'Category'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CategoryOutlined.js b/packages/material-ui-icons/lib/CategoryOutlined.js index 5041b7c99d71fb..46fbc3e821e3ba 100644 --- a/packages/material-ui-icons/lib/CategoryOutlined.js +++ b/packages/material-ui-icons/lib/CategoryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 2-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z" -}), 'CategoryOutlined'); \ No newline at end of file +}), 'CategoryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CategoryRounded.js b/packages/material-ui-icons/lib/CategoryRounded.js index d7b5c3f159361f..fabd2162ce452c 100644 --- a/packages/material-ui-icons/lib/CategoryRounded.js +++ b/packages/material-ui-icons/lib/CategoryRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.15 3.4 7.43 9.48c-.41.66.07 1.52.85 1.52h7.43c.78 0 1.26-.86.85-1.52L12.85 3.4c-.39-.64-1.31-.64-1.7 0z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "17.5", r: "4.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 21.5h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1z" -}, "2")], 'CategoryRounded'); \ No newline at end of file +}, "2")], 'CategoryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CategorySharp.js b/packages/material-ui-icons/lib/CategorySharp.js index 003aa2b199a98f..496df308c7be06 100644 --- a/packages/material-ui-icons/lib/CategorySharp.js +++ b/packages/material-ui-icons/lib/CategorySharp.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 2-5.5 9h11z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "17.5", r: "4.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13.5h8v8H3z" -}, "2")], 'CategorySharp'); \ No newline at end of file +}, "2")], 'CategorySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CategoryTwoTone.js b/packages/material-ui-icons/lib/CategoryTwoTone.js index ab0f5a483b49e7..1604e40ca080a6 100644 --- a/packages/material-ui-icons/lib/CategoryTwoTone.js +++ b/packages/material-ui-icons/lib/CategoryTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "17.5", r: "2.5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15.5h4v4H5zm7-9.66L10.07 9h3.86z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 2-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM11 13.5H3v8h8v-8zm-2 6H5v-4h4v4z" -}, "2")], 'CategoryTwoTone'); \ No newline at end of file +}, "2")], 'CategoryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Celebration.js b/packages/material-ui-icons/lib/Celebration.js index e3845f7d001fbe..68e301e657ccd2 100644 --- a/packages/material-ui-icons/lib/Celebration.js +++ b/packages/material-ui-icons/lib/Celebration.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 22 14-5-9-9zm12.53-9.47 5.59-5.59c.49-.49 1.28-.49 1.77 0l.59.59 1.06-1.06-.59-.59c-1.07-1.07-2.82-1.07-3.89 0l-5.59 5.59 1.06 1.06zm-4.47-5.65-.59.59 1.06 1.06.59-.59c1.07-1.07 1.07-2.82 0-3.89l-.59-.59-1.06 1.07.59.59c.48.48.48 1.28 0 1.76zm7 5-1.59 1.59 1.06 1.06 1.59-1.59c.49-.49 1.28-.49 1.77 0l1.61 1.61 1.06-1.06-1.61-1.61c-1.08-1.07-2.82-1.07-3.89 0zm-2-6-3.59 3.59 1.06 1.06 3.59-3.59c1.07-1.07 1.07-2.82 0-3.89l-1.59-1.59-1.06 1.06 1.59 1.59c.48.49.48 1.29 0 1.77z" -}), 'Celebration'); \ No newline at end of file +}), 'Celebration'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CelebrationOutlined.js b/packages/material-ui-icons/lib/CelebrationOutlined.js index 6fff251445a688..4a177f41876819 100644 --- a/packages/material-ui-icons/lib/CelebrationOutlined.js +++ b/packages/material-ui-icons/lib/CelebrationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 22 14-5-9-9-5 14zm10.35-5.82L5.3 18.7l2.52-7.05 4.53 4.53zm2.18-3.65 5.59-5.59c.49-.49 1.28-.49 1.77 0l.59.59 1.06-1.06-.59-.59c-1.07-1.07-2.82-1.07-3.89 0l-5.59 5.59 1.06 1.06zm-4.47-5.65-.59.59 1.06 1.06.59-.59c1.07-1.07 1.07-2.82 0-3.89l-.59-.59-1.06 1.07.59.59c.48.48.48 1.28 0 1.76zm7 5-1.59 1.59 1.06 1.06 1.59-1.59c.49-.49 1.28-.49 1.77 0l1.61 1.61 1.06-1.06-1.61-1.61c-1.08-1.07-2.82-1.07-3.89 0zm-2-6-3.59 3.59 1.06 1.06 3.59-3.59c1.07-1.07 1.07-2.82 0-3.89l-1.59-1.59-1.06 1.06 1.59 1.59c.48.49.48 1.29 0 1.77z" -}), 'CelebrationOutlined'); \ No newline at end of file +}), 'CelebrationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CelebrationRounded.js b/packages/material-ui-icons/lib/CelebrationRounded.js index 86ceefc890f721..01c27080f4954b 100644 --- a/packages/material-ui-icons/lib/CelebrationRounded.js +++ b/packages/material-ui-icons/lib/CelebrationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.99 21.29 9.04-3.23c1.38-.49 1.78-2.26.74-3.3l-4.53-4.53c-1.04-1.04-2.8-.64-3.3.74l-3.23 9.04c-.28.8.48 1.56 1.28 1.28zM15.06 12l5.06-5.06c.49-.49 1.28-.49 1.77 0l.06.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.06-.06c-1.07-1.07-2.82-1.07-3.89 0L14 10.94c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zm-5-5.12-.06.06c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.06-.06c1.07-1.07 1.07-2.82 0-3.89L11.07 4c-.3-.3-.78-.3-1.07 0-.29.29-.29.77 0 1.06l.06.06c.48.48.48 1.28 0 1.76zm7 5L16 12.94c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l1.06-1.06c.49-.49 1.28-.49 1.77 0l1.08 1.08c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-1.08-1.08c-1.08-1.07-2.82-1.07-3.89 0zm-2-6L12 8.94c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l3.06-3.06c1.07-1.07 1.07-2.82 0-3.89l-1.06-1.06c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.06 1.06c.48.49.48 1.29 0 1.77z" -}), 'CelebrationRounded'); \ No newline at end of file +}), 'CelebrationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CelebrationSharp.js b/packages/material-ui-icons/lib/CelebrationSharp.js index 38029a0b2e9b0b..51aa2c15dc11d9 100644 --- a/packages/material-ui-icons/lib/CelebrationSharp.js +++ b/packages/material-ui-icons/lib/CelebrationSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 22 14-5-9-9zm12.53-9.47L21 6.05l1.48 1.48 1.06-1.06L21 3.93l-7.53 7.53 1.06 1.07zM10.94 6 9.47 7.47l1.06 1.06 2.54-2.54-2.54-2.53-1.06 1.07L10.94 6zm8.03 3.97-3.5 3.5 1.06 1.06L19 12.06l2.5 2.49 1.06-1.06-3.59-3.52z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.97 4.97-4.5 4.5 1.06 1.06L18.07 5l-3.53-3.53-1.06 1.06 2.49 2.44z" -}, "1")], 'CelebrationSharp'); \ No newline at end of file +}, "1")], 'CelebrationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CelebrationTwoTone.js b/packages/material-ui-icons/lib/CelebrationTwoTone.js index 3ed0d2cbb94379..75345639e4bfec 100644 --- a/packages/material-ui-icons/lib/CelebrationTwoTone.js +++ b/packages/material-ui-icons/lib/CelebrationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.35 16.18-4.53-4.53L5.3 18.7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 22 14-5-9-9-5 14zm10.35-5.82L5.3 18.7l2.52-7.05 4.53 4.53zm2.18-3.65 5.59-5.59c.49-.49 1.28-.49 1.77 0l.59.59 1.06-1.06-.59-.59c-1.07-1.07-2.82-1.07-3.89 0l-5.59 5.59 1.06 1.06zM9.47 7.47l1.06 1.06.59-.59c1.07-1.07 1.07-2.82 0-3.89l-.59-.59-1.06 1.07.59.59c.48.48.48 1.28 0 1.76l-.59.59zm7.59 4.41-1.59 1.59 1.06 1.06 1.59-1.59c.49-.49 1.28-.49 1.77 0l1.61 1.61 1.06-1.06-1.61-1.61c-1.08-1.07-2.82-1.07-3.89 0zm-2-6-3.59 3.59 1.06 1.06 3.59-3.59c1.07-1.07 1.07-2.82 0-3.89l-1.59-1.59-1.06 1.06 1.59 1.59c.48.49.48 1.29 0 1.77z" -}, "1")], 'CelebrationTwoTone'); \ No newline at end of file +}, "1")], 'CelebrationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CellWifi.js b/packages/material-ui-icons/lib/CellWifi.js index 43ebe55e986df6..061a9e9c9e2fc3 100644 --- a/packages/material-ui-icons/lib/CellWifi.js +++ b/packages/material-ui-icons/lib/CellWifi.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.98 6 22h16V5.97l-4 4.01zM20 20h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" -}), 'CellWifi'); \ No newline at end of file +}), 'CellWifi'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CellWifiOutlined.js b/packages/material-ui-icons/lib/CellWifiOutlined.js index 5068d86bbf1b3e..da8e474c735fce 100644 --- a/packages/material-ui-icons/lib/CellWifiOutlined.js +++ b/packages/material-ui-icons/lib/CellWifiOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" -}), 'CellWifiOutlined'); \ No newline at end of file +}), 'CellWifiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CellWifiRounded.js b/packages/material-ui-icons/lib/CellWifiRounded.js index 38e7b3d0afe88b..0dcffbe807dce0 100644 --- a/packages/material-ui-icons/lib/CellWifiRounded.js +++ b/packages/material-ui-icons/lib/CellWifiRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.29 7.68 7.7 20.29c-.63.63-.18 1.71.71 1.71H21c.55 0 1-.45 1-1V8.39c0-.89-1.08-1.34-1.71-.71zM20 20h-2v-7.22l2-2V20zM9.61 10.68c-.28.17-.32.56-.09.79l.82.82c.39.39 1.02.39 1.41 0l.82-.82c.23-.23.18-.62-.09-.79-.87-.54-1.99-.54-2.87 0zM8.42 9.3c1.57-1.12 3.7-1.12 5.27 0 .36.26.85.22 1.16-.1.39-.39.35-1.06-.1-1.38-2.2-1.57-5.19-1.57-7.4 0-.45.32-.5.99-.1 1.38.32.32.81.36 1.17.1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.26 6.69c.34.28.83.28 1.14-.03l.12-.12c.35-.35.31-.92-.08-1.24-3.67-3.05-9.02-3.07-12.7-.06-.43.35-.47.99-.08 1.37.32.33.84.37 1.19.08 3.01-2.48 7.4-2.48 10.41 0z" -}, "1")], 'CellWifiRounded'); \ No newline at end of file +}, "1")], 'CellWifiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CellWifiSharp.js b/packages/material-ui-icons/lib/CellWifiSharp.js index 1bfa4011afb2cc..065e1b83d8ae9c 100644 --- a/packages/material-ui-icons/lib/CellWifiSharp.js +++ b/packages/material-ui-icons/lib/CellWifiSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" -}), 'CellWifiSharp'); \ No newline at end of file +}), 'CellWifiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CellWifiTwoTone.js b/packages/material-ui-icons/lib/CellWifiTwoTone.js index aefa66d0f1d9b6..71929f296c38e2 100644 --- a/packages/material-ui-icons/lib/CellWifiTwoTone.js +++ b/packages/material-ui-icons/lib/CellWifiTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" -}), 'CellWifiTwoTone'); \ No newline at end of file +}), 'CellWifiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusStrong.js b/packages/material-ui-icons/lib/CenterFocusStrong.js index 0990c669a6cf60..cb4372213e4732 100644 --- a/packages/material-ui-icons/lib/CenterFocusStrong.js +++ b/packages/material-ui-icons/lib/CenterFocusStrong.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" -}), 'CenterFocusStrong'); \ No newline at end of file +}), 'CenterFocusStrong'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusStrongOutlined.js b/packages/material-ui-icons/lib/CenterFocusStrongOutlined.js index 2ed2c2a6606f78..2be91cc6d13b4b 100644 --- a/packages/material-ui-icons/lib/CenterFocusStrongOutlined.js +++ b/packages/material-ui-icons/lib/CenterFocusStrongOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" -}), 'CenterFocusStrongOutlined'); \ No newline at end of file +}), 'CenterFocusStrongOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusStrongRounded.js b/packages/material-ui-icons/lib/CenterFocusStrongRounded.js index 6eeabfa86c0359..049a50e245f924 100644 --- a/packages/material-ui-icons/lib/CenterFocusStrongRounded.js +++ b/packages/material-ui-icons/lib/CenterFocusStrongRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-8 7c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2z" -}), 'CenterFocusStrongRounded'); \ No newline at end of file +}), 'CenterFocusStrongRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusStrongSharp.js b/packages/material-ui-icons/lib/CenterFocusStrongSharp.js index bbaf8639804d20..f2b56c8fabbbf8 100644 --- a/packages/material-ui-icons/lib/CenterFocusStrongSharp.js +++ b/packages/material-ui-icons/lib/CenterFocusStrongSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4z" -}), 'CenterFocusStrongSharp'); \ No newline at end of file +}), 'CenterFocusStrongSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusStrongTwoTone.js b/packages/material-ui-icons/lib/CenterFocusStrongTwoTone.js index b4b61aee6714ef..6c82844596132c 100644 --- a/packages/material-ui-icons/lib/CenterFocusStrongTwoTone.js +++ b/packages/material-ui-icons/lib/CenterFocusStrongTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 12c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.35 3 3zM3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm18 0c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" -}, "1")], 'CenterFocusStrongTwoTone'); \ No newline at end of file +}, "1")], 'CenterFocusStrongTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusWeak.js b/packages/material-ui-icons/lib/CenterFocusWeak.js index ad5cead951f827..4acc1a1426c0f1 100644 --- a/packages/material-ui-icons/lib/CenterFocusWeak.js +++ b/packages/material-ui-icons/lib/CenterFocusWeak.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'CenterFocusWeak'); \ No newline at end of file +}), 'CenterFocusWeak'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusWeakOutlined.js b/packages/material-ui-icons/lib/CenterFocusWeakOutlined.js index 0896cd20a2bb9d..b7f5f5be76f767 100644 --- a/packages/material-ui-icons/lib/CenterFocusWeakOutlined.js +++ b/packages/material-ui-icons/lib/CenterFocusWeakOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7-11h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" -}), 'CenterFocusWeakOutlined'); \ No newline at end of file +}), 'CenterFocusWeakOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusWeakRounded.js b/packages/material-ui-icons/lib/CenterFocusWeakRounded.js index 96498e46cc8291..a8d823527c1ab4 100644 --- a/packages/material-ui-icons/lib/CenterFocusWeakRounded.js +++ b/packages/material-ui-icons/lib/CenterFocusWeakRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'CenterFocusWeakRounded'); \ No newline at end of file +}), 'CenterFocusWeakRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusWeakSharp.js b/packages/material-ui-icons/lib/CenterFocusWeakSharp.js index 03ea553fa19897..175dc1aea32afa 100644 --- a/packages/material-ui-icons/lib/CenterFocusWeakSharp.js +++ b/packages/material-ui-icons/lib/CenterFocusWeakSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'CenterFocusWeakSharp'); \ No newline at end of file +}), 'CenterFocusWeakSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CenterFocusWeakTwoTone.js b/packages/material-ui-icons/lib/CenterFocusWeakTwoTone.js index 67f3bcaaf697de..fbfc8286fe31b0 100644 --- a/packages/material-ui-icons/lib/CenterFocusWeakTwoTone.js +++ b/packages/material-ui-icons/lib/CenterFocusWeakTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm9 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm9-9c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" -}, "1")], 'CenterFocusWeakTwoTone'); \ No newline at end of file +}, "1")], 'CenterFocusWeakTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Chair.js b/packages/material-ui-icons/lib/Chair.js index c959991a0fe01a..d8861606f4b8ab 100644 --- a/packages/material-ui-icons/lib/Chair.js +++ b/packages/material-ui-icons/lib/Chair.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v2h10v-2c0-1.86 1.28-3.41 3-3.86V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v1.14c1.72.45 3 2 3 3.86z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 9c-1.1 0-2 .9-2 2v4H5v-4c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.1-.9-2-2-2z" -}, "1")], 'Chair'); \ No newline at end of file +}, "1")], 'Chair'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairAlt.js b/packages/material-ui-icons/lib/ChairAlt.js index 54b573d09e46ba..fff663d291aa3a 100644 --- a/packages/material-ui-icons/lib/ChairAlt.js +++ b/packages/material-ui-icons/lib/ChairAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v7h2v-3h10v3h2v-7c0-1.1-.9-2-2-2h-1v-2h1zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" -}), 'ChairAlt'); \ No newline at end of file +}), 'ChairAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairAltOutlined.js b/packages/material-ui-icons/lib/ChairAltOutlined.js index 673aec8d87c9dd..1faa4081a16ebd 100644 --- a/packages/material-ui-icons/lib/ChairAltOutlined.js +++ b/packages/material-ui-icons/lib/ChairAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v7h2v-3h10v3h2v-7c0-1.1-.9-2-2-2h-1v-2h1zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" -}), 'ChairAltOutlined'); \ No newline at end of file +}), 'ChairAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairAltRounded.js b/packages/material-ui-icons/lib/ChairAltRounded.js index e2e857c889ec78..e2fe82122b8de7 100644 --- a/packages/material-ui-icons/lib/ChairAltRounded.js +++ b/packages/material-ui-icons/lib/ChairAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v6c0 .55.45 1 1 1s1-.45 1-1v-2h10v2c0 .55.45 1 1 1s1-.45 1-1v-6c0-1.1-.9-2-2-2h-1v-2h1zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" -}), 'ChairAltRounded'); \ No newline at end of file +}), 'ChairAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairAltSharp.js b/packages/material-ui-icons/lib/ChairAltSharp.js index 1ac66c0848bf4f..369cce623bbe4f 100644 --- a/packages/material-ui-icons/lib/ChairAltSharp.js +++ b/packages/material-ui-icons/lib/ChairAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10h3V3H5v7h3v2H5v9h2v-3h10v3h2v-9h-3v-2zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" -}), 'ChairAltSharp'); \ No newline at end of file +}), 'ChairAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairAltTwoTone.js b/packages/material-ui-icons/lib/ChairAltTwoTone.js index 9cd2685d259251..d3a64ca68725cc 100644 --- a/packages/material-ui-icons/lib/ChairAltTwoTone.js +++ b/packages/material-ui-icons/lib/ChairAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14h10v2H7zm0-9h10v3H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v7h2v-3h10v3h2v-7c0-1.1-.9-2-2-2h-1v-2h1zm0 4v2H7v-2h10zm-7-2v-2h4v2h-4zM7 8V5h10v3H7z" -}, "1")], 'ChairAltTwoTone'); \ No newline at end of file +}, "1")], 'ChairAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairOutlined.js b/packages/material-ui-icons/lib/ChairOutlined.js index f077092fb8686f..4f8ca6ad82f631 100644 --- a/packages/material-ui-icons/lib/ChairOutlined.js +++ b/packages/material-ui-icons/lib/ChairOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM6 6c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H7v-2c0-.88-.39-1.67-1-2.22V6zm15 10c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h14v-4c0-.55.45-1 1-1s1 .45 1 1v5z" -}), 'ChairOutlined'); \ No newline at end of file +}), 'ChairOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairRounded.js b/packages/material-ui-icons/lib/ChairRounded.js index 5098282d17e5ef..9ec8671d5acafe 100644 --- a/packages/material-ui-icons/lib/ChairRounded.js +++ b/packages/material-ui-icons/lib/ChairRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 9c-1.1 0-2 .9-2 2v4H5v-4c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v2h10v-2c0-1.86 1.28-3.41 3-3.86V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v1.14c1.72.45 3 2 3 3.86z" -}, "1")], 'ChairRounded'); \ No newline at end of file +}, "1")], 'ChairRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairSharp.js b/packages/material-ui-icons/lib/ChairSharp.js index 0e152e958e255d..dfded9cf9aa9c6 100644 --- a/packages/material-ui-icons/lib/ChairSharp.js +++ b/packages/material-ui-icons/lib/ChairSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13h10V7h3V3H4v4h3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 9h-4v6H5V9H1v10h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1h3V9z" -}, "1")], 'ChairSharp'); \ No newline at end of file +}, "1")], 'ChairSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChairTwoTone.js b/packages/material-ui-icons/lib/ChairTwoTone.js index 531292f927d21f..99890951306319 100644 --- a/packages/material-ui-icons/lib/ChairTwoTone.js +++ b/packages/material-ui-icons/lib/ChairTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13h10v-2c0-.88.39-1.67 1-2.22V6c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v2.78c.61.55 1 1.34 1 2.22v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10c-.55 0-1 .45-1 1v4H5v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM6 6c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H7v-2c0-.88-.39-1.67-1-2.22V6zm15 10c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h14v-4c0-.55.45-1 1-1s1 .45 1 1v5z" -}, "2")], 'ChairTwoTone'); \ No newline at end of file +}, "2")], 'ChairTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Chalet.js b/packages/material-ui-icons/lib/Chalet.js index e9e0797221c6ff..dbca8e5b8a9788 100644 --- a/packages/material-ui-icons/lib/Chalet.js +++ b/packages/material-ui-icons/lib/Chalet.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 7.5 7.5 7.5-1.41 1.41L15 15.33V20h-4v-5H9v5H5v-4.67l-1.09 1.09L2.5 15 10 7.5zm12-1h-1.19l.75-.75-.71-.71-1.46 1.46h-.89v-.89l1.45-1.45-.71-.71-.74.74V3h-1v1.19l-.75-.75-.71.71 1.45 1.45v.9h-.89l-1.45-1.45-.71.71.75.75H14v1h1.19l-.75.75.71.71 1.45-1.45h.89v.89l-1.45 1.45.71.71.75-.75V11h1V9.81l.75.75.71-.71-1.46-1.46V7.5h.89l1.45 1.45.71-.71-.74-.74H22v-1z" -}), 'Chalet'); \ No newline at end of file +}), 'Chalet'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChaletOutlined.js b/packages/material-ui-icons/lib/ChaletOutlined.js index eead5046d9b96c..28845e7bc93121 100644 --- a/packages/material-ui-icons/lib/ChaletOutlined.js +++ b/packages/material-ui-icons/lib/ChaletOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 15 10 7.5 2.5 15l1.41 1.41L5 15.33V20h10v-4.67l1.09 1.09L17.5 15zM13 18h-2v-3H9v3H7v-4.67l3-3 3 3V18zm9-10.5h-1.19l.75.75-.71.71-1.46-1.46h-.89v.89l1.45 1.45-.71.71-.74-.74V11h-1V9.81l-.75.75-.71-.71 1.45-1.45v-.9h-.89l-1.45 1.45-.71-.71.75-.75H14v-1h1.19l-.75-.75.71-.71 1.45 1.45h.89v-.87l-1.45-1.45.71-.71.75.75V3h1v1.19l.75-.75.71.71-1.46 1.46v.89h.89l1.45-1.45.71.71-.74.74H22v1z" -}), 'ChaletOutlined'); \ No newline at end of file +}), 'ChaletOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChaletRounded.js b/packages/material-ui-icons/lib/ChaletRounded.js index 53a3909b441de3..99e35e18e77e31 100644 --- a/packages/material-ui-icons/lib/ChaletRounded.js +++ b/packages/material-ui-icons/lib/ChaletRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 15c-.55 0-1 .45-1 1v4H6c-.55 0-1-.45-1-1v-3.67l-.38.38c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L9.3 8.21c.39-.39 1.02-.39 1.41 0l6.09 6.09c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-.39-.38V19c0 .55-.45 1-1 1h-3v-4c0-.55-.45-1-1-1zm7.5-7.5v.89l-1.08 1.08c-.18.18-.21.48-.05.69.19.23.53.24.74.04l.39-.39v.69c0 .28.22.5.5.5s.5-.22.5-.5v-.69l.39.39c.21.21.55.19.74-.04.17-.2.14-.5-.05-.69L18.5 8.39V7.5h.89l1.08 1.08c.18.18.48.21.69.05.23-.19.24-.53.04-.74l-.39-.39h.69c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-.69l.39-.39c.21-.21.19-.55-.04-.74-.2-.17-.5-.14-.69.05L19.39 6.5h-.89v-.89l1.08-1.08c.18-.18.21-.48.05-.69-.19-.23-.53-.24-.74-.04l-.39.39V3.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.69l-.39-.39c-.21-.21-.55-.19-.74.04-.17.2-.14.5.05.69l1.08 1.08v.89h-.89l-1.08-1.08c-.18-.18-.48-.21-.69-.05-.23.19-.24.53-.04.74l.39.39h-.69c-.28 0-.5.22-.5.5s.22.5.5.5h.69l-.39.39c-.21.21-.19.55.04.74.2.17.5.14.69-.05l1.08-1.08h.89z" -}), 'ChaletRounded'); \ No newline at end of file +}), 'ChaletRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChaletSharp.js b/packages/material-ui-icons/lib/ChaletSharp.js index 92d6d921fe6148..ac1974598c04e2 100644 --- a/packages/material-ui-icons/lib/ChaletSharp.js +++ b/packages/material-ui-icons/lib/ChaletSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 7.5 7.5 7.5-1.41 1.41L15 15.33V20h-4v-5H9v5H5v-4.67l-1.09 1.09L2.5 15 10 7.5zm12-1h-1.19l.75-.75-.71-.71-1.46 1.46h-.89v-.89l1.45-1.45-.71-.71-.74.74V3h-1v1.19l-.75-.75-.71.71 1.45 1.45v.9h-.89l-1.45-1.45-.71.71.75.75H14v1h1.19l-.75.75.71.71 1.45-1.45h.89v.89l-1.45 1.45.71.71.75-.75V11h1V9.81l.75.75.71-.71-1.46-1.46V7.5h.89l1.45 1.45.71-.71-.74-.74H22v-1z" -}), 'ChaletSharp'); \ No newline at end of file +}), 'ChaletSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChaletTwoTone.js b/packages/material-ui-icons/lib/ChaletTwoTone.js index 58acf2a2783a12..47726be445d344 100644 --- a/packages/material-ui-icons/lib/ChaletTwoTone.js +++ b/packages/material-ui-icons/lib/ChaletTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 18h-2v-3H9v3H7v-4.67l3-3 3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 15 10 7.5 2.5 15l1.41 1.41L5 15.33V20h10v-4.67l1.09 1.09L17.5 15zM13 18h-2v-3H9v3H7v-4.67l3-3 3 3V18zm9-10.5h-1.19l.75.75-.71.71-1.46-1.46h-.89v.89l1.45 1.45-.71.71-.74-.74V11h-1V9.81l-.75.75-.71-.71 1.45-1.45v-.9h-.89l-1.45 1.45-.71-.71.75-.75H14v-1h1.19l-.75-.75.71-.71 1.45 1.45h.89v-.87l-1.45-1.45.71-.71.75.75V3h1v1.19l.75-.75.71.71-1.46 1.46v.89h.89l1.45-1.45.71.71-.74.74H22v1z" -}, "1")], 'ChaletTwoTone'); \ No newline at end of file +}, "1")], 'ChaletTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeCircle.js b/packages/material-ui-icons/lib/ChangeCircle.js index 3b0905d9cf5f8e..ea79b082af55ba 100644 --- a/packages/material-ui-icons/lib/ChangeCircle.js +++ b/packages/material-ui-icons/lib/ChangeCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 17v-2.01H12c-1.28 0-2.56-.49-3.54-1.46-1.71-1.71-1.92-4.35-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.62 1.03 2.54 1.01v-2.14l2.83 2.83L12.06 19zm4.11-4.24-1.1-1.1c.71-1.33.53-3.01-.59-4.13C13.79 8.84 12.9 8.5 12 8.5h-.06v2.15L9.11 7.83 11.94 5v2.02c1.3-.02 2.61.45 3.6 1.45 1.7 1.7 1.91 4.35.63 6.29z" -}), 'ChangeCircle'); \ No newline at end of file +}), 'ChangeCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeCircleOutlined.js b/packages/material-ui-icons/lib/ChangeCircleOutlined.js index 67f8807a13f555..09a3df119df913 100644 --- a/packages/material-ui-icons/lib/ChangeCircleOutlined.js +++ b/packages/material-ui-icons/lib/ChangeCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.17-5.24-1.1-1.1c.71-1.33.53-3.01-.59-4.13C13.79 8.84 12.9 8.5 12 8.5c-.03 0-.06.01-.09.01L13 9.6l-1.06 1.06-2.83-2.83L11.94 5 13 6.06l-.96.96c1.27.01 2.53.48 3.5 1.44 1.7 1.71 1.91 4.36.63 6.3zm-1.28 1.41L12.06 19 11 17.94l.95-.95c-1.26-.01-2.52-.5-3.48-1.46-1.71-1.71-1.92-4.35-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.63 1.04 2.56 1.01L11 14.4l1.06-1.06 2.83 2.83z" -}), 'ChangeCircleOutlined'); \ No newline at end of file +}), 'ChangeCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeCircleRounded.js b/packages/material-ui-icons/lib/ChangeCircleRounded.js index fe1a6dcebcc9ab..a4f07e64ce1353 100644 --- a/packages/material-ui-icons/lib/ChangeCircleRounded.js +++ b/packages/material-ui-icons/lib/ChangeCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.91 16.15c-.31.31-.85.09-.85-.35V17H12c-1.28 0-2.56-.49-3.54-1.46-1.43-1.43-1.81-3.52-1.14-5.3.19-.51.86-.64 1.24-.25.22.22.27.54.17.82-.46 1.24-.2 2.68.8 3.68.7.7 1.62 1.03 2.54 1.01v-.94c0-.45.54-.67.85-.35l1.62 1.62c.2.2.2.51 0 .71l-1.63 1.61zm2.53-4.13c-.22-.22-.27-.54-.17-.82.46-1.24.2-2.68-.8-3.68-.7-.7-1.62-1.04-2.53-1.02v.94c0 .45-.54.67-.85.35L9.46 8.18c-.2-.2-.2-.51 0-.71l1.62-1.62c.31-.31.85-.09.85.35v.81c1.3-.02 2.61.45 3.6 1.45 1.43 1.43 1.81 3.52 1.14 5.3-.19.52-.85.65-1.23.26z" -}), 'ChangeCircleRounded'); \ No newline at end of file +}), 'ChangeCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeCircleSharp.js b/packages/material-ui-icons/lib/ChangeCircleSharp.js index b85ba6f3745e20..3c4b5903adf6ad 100644 --- a/packages/material-ui-icons/lib/ChangeCircleSharp.js +++ b/packages/material-ui-icons/lib/ChangeCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 17v-2.01H12c-1.28 0-2.56-.49-3.54-1.46-1.71-1.71-1.92-4.35-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.62 1.03 2.54 1.01v-2.14l2.83 2.83L12.06 19zm4.11-4.24-1.1-1.1c.71-1.33.53-3.01-.59-4.13C13.79 8.84 12.9 8.5 12 8.5h-.06v2.15L9.11 7.83 11.94 5v2.02c1.3-.02 2.61.45 3.6 1.45 1.7 1.7 1.91 4.35.63 6.29z" -}), 'ChangeCircleSharp'); \ No newline at end of file +}), 'ChangeCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeCircleTwoTone.js b/packages/material-ui-icons/lib/ChangeCircleTwoTone.js index c0aa98b5427f4f..47fa949ba250d8 100644 --- a/packages/material-ui-icons/lib/ChangeCircleTwoTone.js +++ b/packages/material-ui-icons/lib/ChangeCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m.06 9.34v2.14c-.92.02-1.84-.31-2.54-1.01-1.12-1.12-1.3-2.8-.59-4.13l-1.1-1.1c-1.28 1.94-1.07 4.59.64 6.29.97.98 2.25 1.47 3.53 1.47h.06v2l2.83-2.83-2.83-2.83zm3.48-4.88c-.99-.99-2.3-1.46-3.6-1.45V5L9.11 7.83l2.83 2.83V8.51H12c.9 0 1.79.34 2.48 1.02 1.12 1.12 1.3 2.8.59 4.13l1.1 1.1c1.28-1.94 1.07-4.59-.63-6.3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 11.34v2.14c-.92.02-1.84-.31-2.54-1.01-1.12-1.12-1.3-2.8-.59-4.13l-1.1-1.1c-1.28 1.94-1.07 4.59.64 6.29.97.98 2.25 1.47 3.53 1.47h.06v2l2.83-2.83-2.83-2.83zm3.48-4.88c-.99-.99-2.3-1.46-3.6-1.45V5L9.11 7.83l2.83 2.83V8.51H12c.9 0 1.79.34 2.48 1.02 1.12 1.12 1.3 2.8.59 4.13l1.1 1.1c1.28-1.94 1.07-4.59-.63-6.3z" -}, "1")], 'ChangeCircleTwoTone'); \ No newline at end of file +}, "1")], 'ChangeCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeHistory.js b/packages/material-ui-icons/lib/ChangeHistory.js index 20406b0ff2d34b..ada4f8e5bce5a9 100644 --- a/packages/material-ui-icons/lib/ChangeHistory.js +++ b/packages/material-ui-icons/lib/ChangeHistory.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7.77 18.39 18H5.61L12 7.77M12 4 2 20h20L12 4z" -}), 'ChangeHistory'); \ No newline at end of file +}), 'ChangeHistory'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeHistoryOutlined.js b/packages/material-ui-icons/lib/ChangeHistoryOutlined.js index 4801df53f73fe8..abfdab35a9d78d 100644 --- a/packages/material-ui-icons/lib/ChangeHistoryOutlined.js +++ b/packages/material-ui-icons/lib/ChangeHistoryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7.77 18.39 18H5.61L12 7.77M12 4 2 20h20L12 4z" -}), 'ChangeHistoryOutlined'); \ No newline at end of file +}), 'ChangeHistoryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeHistoryRounded.js b/packages/material-ui-icons/lib/ChangeHistoryRounded.js index 7f7f3839a0ac01..277fed5a5d4aed 100644 --- a/packages/material-ui-icons/lib/ChangeHistoryRounded.js +++ b/packages/material-ui-icons/lib/ChangeHistoryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7.77 18.39 18H5.61L12 7.77m-.85-2.41-8.2 13.11c-.41.67.07 1.53.85 1.53h16.4c.79 0 1.26-.86.85-1.53l-8.2-13.11c-.39-.63-1.31-.63-1.7 0z" -}), 'ChangeHistoryRounded'); \ No newline at end of file +}), 'ChangeHistoryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeHistorySharp.js b/packages/material-ui-icons/lib/ChangeHistorySharp.js index c6b60ed5f73845..3e2dee3167ccc9 100644 --- a/packages/material-ui-icons/lib/ChangeHistorySharp.js +++ b/packages/material-ui-icons/lib/ChangeHistorySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7.77 18.39 18H5.61L12 7.77M12 4 2 20h20L12 4z" -}), 'ChangeHistorySharp'); \ No newline at end of file +}), 'ChangeHistorySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChangeHistoryTwoTone.js b/packages/material-ui-icons/lib/ChangeHistoryTwoTone.js index 99abd3e62252f1..8dc4a1d1295f65 100644 --- a/packages/material-ui-icons/lib/ChangeHistoryTwoTone.js +++ b/packages/material-ui-icons/lib/ChangeHistoryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7.77 5.61 18h12.78z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4 2 20h20L12 4zm0 3.77L18.39 18H5.61L12 7.77z" -}, "1")], 'ChangeHistoryTwoTone'); \ No newline at end of file +}, "1")], 'ChangeHistoryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChargingStation.js b/packages/material-ui-icons/lib/ChargingStation.js index fde9a6e25e15ba..4515c3b31b663d 100644 --- a/packages/material-ui-icons/lib/ChargingStation.js +++ b/packages/material-ui-icons/lib/ChargingStation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 11-3 6v-4h-2l3-6v4h2zM7 1h10c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2zm0 5v12h10V6H7z" -}), 'ChargingStation'); \ No newline at end of file +}), 'ChargingStation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChargingStationOutlined.js b/packages/material-ui-icons/lib/ChargingStationOutlined.js index 404a8001aaebaa..09d31a65f2b505 100644 --- a/packages/material-ui-icons/lib/ChargingStationOutlined.js +++ b/packages/material-ui-icons/lib/ChargingStationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 11-3 6v-4h-2l3-6v4h2zM17 3H7v1h10V3m0 17H7v1h10v-1m0-19c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10zM7 18h10V6H7v12z" -}), 'ChargingStationOutlined'); \ No newline at end of file +}), 'ChargingStationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChargingStationRounded.js b/packages/material-ui-icons/lib/ChargingStationRounded.js index 5c493b9abad986..025438ff69d3ae 100644 --- a/packages/material-ui-icons/lib/ChargingStationRounded.js +++ b/packages/material-ui-icons/lib/ChargingStationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12zm-4.5-7V9.12c0-.53-.71-.7-.95-.22l-1.69 3.38c-.16.33.08.72.45.72h1.19v1.88c0 .53.71.7.95.22l1.69-3.38c.16-.33-.08-.72-.45-.72H12.5z" -}), 'ChargingStationRounded'); \ No newline at end of file +}), 'ChargingStationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChargingStationSharp.js b/packages/material-ui-icons/lib/ChargingStationSharp.js index 55cc8313769caa..20c96d0537bccd 100644 --- a/packages/material-ui-icons/lib/ChargingStationSharp.js +++ b/packages/material-ui-icons/lib/ChargingStationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 11-3 6v-4h-2l3-6v4h2zM5 1h14v22H5V1zm2 5v12h10V6H7z" -}), 'ChargingStationSharp'); \ No newline at end of file +}), 'ChargingStationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChargingStationTwoTone.js b/packages/material-ui-icons/lib/ChargingStationTwoTone.js index 139ab646e9cefa..d6e784df9b31e8 100644 --- a/packages/material-ui-icons/lib/ChargingStationTwoTone.js +++ b/packages/material-ui-icons/lib/ChargingStationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3v1H7V3h10m0 17H7v1h10v-1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 11-3 6v-4h-2l3-6v4h2zM17 3H7v1h10V3m0 17H7v1h10v-1m0-19c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10zM7 18h10V6H7v12z" -}, "1")], 'ChargingStationTwoTone'); \ No newline at end of file +}, "1")], 'ChargingStationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Chat.js b/packages/material-ui-icons/lib/Chat.js index 31848fd19357b4..a5442673c10132 100644 --- a/packages/material-ui-icons/lib/Chat.js +++ b/packages/material-ui-icons/lib/Chat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z" -}), 'Chat'); \ No newline at end of file +}), 'Chat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubble.js b/packages/material-ui-icons/lib/ChatBubble.js index c893f0bc75bbba..2813751ca50c54 100644 --- a/packages/material-ui-icons/lib/ChatBubble.js +++ b/packages/material-ui-icons/lib/ChatBubble.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'ChatBubble'); \ No newline at end of file +}), 'ChatBubble'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleOutline.js b/packages/material-ui-icons/lib/ChatBubbleOutline.js index b9625ff6ee9ba8..a9c7e7950f66c9 100644 --- a/packages/material-ui-icons/lib/ChatBubbleOutline.js +++ b/packages/material-ui-icons/lib/ChatBubbleOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" -}), 'ChatBubbleOutline'); \ No newline at end of file +}), 'ChatBubbleOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleOutlineOutlined.js b/packages/material-ui-icons/lib/ChatBubbleOutlineOutlined.js index 02b311a7cd95a6..3db7655e8629bc 100644 --- a/packages/material-ui-icons/lib/ChatBubbleOutlineOutlined.js +++ b/packages/material-ui-icons/lib/ChatBubbleOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" -}), 'ChatBubbleOutlineOutlined'); \ No newline at end of file +}), 'ChatBubbleOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleOutlineRounded.js b/packages/material-ui-icons/lib/ChatBubbleOutlineRounded.js index 4280a1ae4fdea3..c36ecbc5807a67 100644 --- a/packages/material-ui-icons/lib/ChatBubbleOutlineRounded.js +++ b/packages/material-ui-icons/lib/ChatBubbleOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v12H5.17L4 17.17V4h16m0-2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'ChatBubbleOutlineRounded'); \ No newline at end of file +}), 'ChatBubbleOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleOutlineSharp.js b/packages/material-ui-icons/lib/ChatBubbleOutlineSharp.js index 2a6a445eb44a89..73e3d2baad0928 100644 --- a/packages/material-ui-icons/lib/ChatBubbleOutlineSharp.js +++ b/packages/material-ui-icons/lib/ChatBubbleOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zm-2 14H6l-2 2V4h16v12z" -}), 'ChatBubbleOutlineSharp'); \ No newline at end of file +}), 'ChatBubbleOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleOutlineTwoTone.js b/packages/material-ui-icons/lib/ChatBubbleOutlineTwoTone.js index 7c59b2ef661610..da3b24296a579e 100644 --- a/packages/material-ui-icons/lib/ChatBubbleOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/ChatBubbleOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" -}), 'ChatBubbleOutlineTwoTone'); \ No newline at end of file +}), 'ChatBubbleOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleOutlined.js b/packages/material-ui-icons/lib/ChatBubbleOutlined.js index 6644e00feeb764..5b319185626524 100644 --- a/packages/material-ui-icons/lib/ChatBubbleOutlined.js +++ b/packages/material-ui-icons/lib/ChatBubbleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'ChatBubbleOutlined'); \ No newline at end of file +}), 'ChatBubbleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleRounded.js b/packages/material-ui-icons/lib/ChatBubbleRounded.js index d396f3d64f17e9..562d3d1ddb4146 100644 --- a/packages/material-ui-icons/lib/ChatBubbleRounded.js +++ b/packages/material-ui-icons/lib/ChatBubbleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'ChatBubbleRounded'); \ No newline at end of file +}), 'ChatBubbleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleSharp.js b/packages/material-ui-icons/lib/ChatBubbleSharp.js index afdcc559f35109..fb3257b05b1d67 100644 --- a/packages/material-ui-icons/lib/ChatBubbleSharp.js +++ b/packages/material-ui-icons/lib/ChatBubbleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2z" -}), 'ChatBubbleSharp'); \ No newline at end of file +}), 'ChatBubbleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatBubbleTwoTone.js b/packages/material-ui-icons/lib/ChatBubbleTwoTone.js index 540751b7002484..684baf3b86eb35 100644 --- a/packages/material-ui-icons/lib/ChatBubbleTwoTone.js +++ b/packages/material-ui-icons/lib/ChatBubbleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 18 2-2h14V4H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" -}, "1")], 'ChatBubbleTwoTone'); \ No newline at end of file +}, "1")], 'ChatBubbleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatOutlined.js b/packages/material-ui-icons/lib/ChatOutlined.js index 408434146445d6..a7945df767485f 100644 --- a/packages/material-ui-icons/lib/ChatOutlined.js +++ b/packages/material-ui-icons/lib/ChatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h8v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z" -}), 'ChatOutlined'); \ No newline at end of file +}), 'ChatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatRounded.js b/packages/material-ui-icons/lib/ChatRounded.js index ddca7d0a531ad6..d6661e1caf4b41 100644 --- a/packages/material-ui-icons/lib/ChatRounded.js +++ b/packages/material-ui-icons/lib/ChatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 9h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1zm6 5H7c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm4-6H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'ChatRounded'); \ No newline at end of file +}), 'ChatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatSharp.js b/packages/material-ui-icons/lib/ChatSharp.js index 5325225ab30f03..73e49cb0a5b626 100644 --- a/packages/material-ui-icons/lib/ChatSharp.js +++ b/packages/material-ui-icons/lib/ChatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2.01L2 22l4-4h16V2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z" -}), 'ChatSharp'); \ No newline at end of file +}), 'ChatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChatTwoTone.js b/packages/material-ui-icons/lib/ChatTwoTone.js index 902edff33c97d2..1b8426b6414173 100644 --- a/packages/material-ui-icons/lib/ChatTwoTone.js +++ b/packages/material-ui-icons/lib/ChatTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4v13.17L5.17 16H20V4zm-6 10H6v-2h8v2zm4-3H6V9h12v2zm0-3H6V6h12v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h8v2H6zm0-3h12v2H6zm0-3h12v2H6z" -}, "1")], 'ChatTwoTone'); \ No newline at end of file +}, "1")], 'ChatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Check.js b/packages/material-ui-icons/lib/Check.js index ea43f9c5684320..7264b98ca4e9e3 100644 --- a/packages/material-ui-icons/lib/Check.js +++ b/packages/material-ui-icons/lib/Check.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" -}), 'Check'); \ No newline at end of file +}), 'Check'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBox.js b/packages/material-ui-icons/lib/CheckBox.js index 25cfcbdc0445c2..36c1f516142426 100644 --- a/packages/material-ui-icons/lib/CheckBox.js +++ b/packages/material-ui-icons/lib/CheckBox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" -}), 'CheckBox'); \ No newline at end of file +}), 'CheckBox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxOutlineBlank.js b/packages/material-ui-icons/lib/CheckBoxOutlineBlank.js index f3be645133b4f0..3da4a618ea35f4 100644 --- a/packages/material-ui-icons/lib/CheckBoxOutlineBlank.js +++ b/packages/material-ui-icons/lib/CheckBoxOutlineBlank.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'CheckBoxOutlineBlank'); \ No newline at end of file +}), 'CheckBoxOutlineBlank'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxOutlineBlankOutlined.js b/packages/material-ui-icons/lib/CheckBoxOutlineBlankOutlined.js index b2a0b54ebd3616..6a5b3eb47858a2 100644 --- a/packages/material-ui-icons/lib/CheckBoxOutlineBlankOutlined.js +++ b/packages/material-ui-icons/lib/CheckBoxOutlineBlankOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'CheckBoxOutlineBlankOutlined'); \ No newline at end of file +}), 'CheckBoxOutlineBlankOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxOutlineBlankRounded.js b/packages/material-ui-icons/lib/CheckBoxOutlineBlankRounded.js index 2305c8a5de31d3..0b941d29264207 100644 --- a/packages/material-ui-icons/lib/CheckBoxOutlineBlankRounded.js +++ b/packages/material-ui-icons/lib/CheckBoxOutlineBlankRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'CheckBoxOutlineBlankRounded'); \ No newline at end of file +}), 'CheckBoxOutlineBlankRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxOutlineBlankSharp.js b/packages/material-ui-icons/lib/CheckBoxOutlineBlankSharp.js index fe444567a95643..63f8e12ff9c322 100644 --- a/packages/material-ui-icons/lib/CheckBoxOutlineBlankSharp.js +++ b/packages/material-ui-icons/lib/CheckBoxOutlineBlankSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m2-2H3v18h18V3z" -}), 'CheckBoxOutlineBlankSharp'); \ No newline at end of file +}), 'CheckBoxOutlineBlankSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxOutlineBlankTwoTone.js b/packages/material-ui-icons/lib/CheckBoxOutlineBlankTwoTone.js index 3e374a518250e2..205a25d102bd5f 100644 --- a/packages/material-ui-icons/lib/CheckBoxOutlineBlankTwoTone.js +++ b/packages/material-ui-icons/lib/CheckBoxOutlineBlankTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'CheckBoxOutlineBlankTwoTone'); \ No newline at end of file +}), 'CheckBoxOutlineBlankTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxOutlined.js b/packages/material-ui-icons/lib/CheckBoxOutlined.js index 3a8d9c4c1c9df9..149ff58c5af322 100644 --- a/packages/material-ui-icons/lib/CheckBoxOutlined.js +++ b/packages/material-ui-icons/lib/CheckBoxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z" -}), 'CheckBoxOutlined'); \ No newline at end of file +}), 'CheckBoxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxRounded.js b/packages/material-ui-icons/lib/CheckBoxRounded.js index 1ddece0e93cf45..f6d8e66df6ed5c 100644 --- a/packages/material-ui-icons/lib/CheckBoxRounded.js +++ b/packages/material-ui-icons/lib/CheckBoxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.29 13.29c-.39.39-1.02.39-1.41 0L5.71 12.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.58 7.59z" -}), 'CheckBoxRounded'); \ No newline at end of file +}), 'CheckBoxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxSharp.js b/packages/material-ui-icons/lib/CheckBoxSharp.js index 620babeeed22ea..e9b1e1f95c71da 100644 --- a/packages/material-ui-icons/lib/CheckBoxSharp.js +++ b/packages/material-ui-icons/lib/CheckBoxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM10 17l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" -}), 'CheckBoxSharp'); \ No newline at end of file +}), 'CheckBoxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckBoxTwoTone.js b/packages/material-ui-icons/lib/CheckBoxTwoTone.js index 00128fb5c86c16..e56399c150c229 100644 --- a/packages/material-ui-icons/lib/CheckBoxTwoTone.js +++ b/packages/material-ui-icons/lib/CheckBoxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm2.41-7.4 2.58 2.58 6.59-6.59L17.99 9l-8 8L6 13.01l1.41-1.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z" -}, "1")], 'CheckBoxTwoTone'); \ No newline at end of file +}, "1")], 'CheckBoxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircle.js b/packages/material-ui-icons/lib/CheckCircle.js index 6abb6b9e40bb7f..c72d3853d75c2a 100644 --- a/packages/material-ui-icons/lib/CheckCircle.js +++ b/packages/material-ui-icons/lib/CheckCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" -}), 'CheckCircle'); \ No newline at end of file +}), 'CheckCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleOutline.js b/packages/material-ui-icons/lib/CheckCircleOutline.js index 46616bf58351d2..e21a73ca8bf14f 100644 --- a/packages/material-ui-icons/lib/CheckCircleOutline.js +++ b/packages/material-ui-icons/lib/CheckCircleOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 7.58 10 14.17l-3.59-3.58L5 12l5 5 8-8zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'CheckCircleOutline'); \ No newline at end of file +}), 'CheckCircleOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleOutlineOutlined.js b/packages/material-ui-icons/lib/CheckCircleOutlineOutlined.js index 107b9c0929409a..67f2c39323af8e 100644 --- a/packages/material-ui-icons/lib/CheckCircleOutlineOutlined.js +++ b/packages/material-ui-icons/lib/CheckCircleOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" -}), 'CheckCircleOutlineOutlined'); \ No newline at end of file +}), 'CheckCircleOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleOutlineRounded.js b/packages/material-ui-icons/lib/CheckCircleOutlineRounded.js index 2c72b57cd5fe51..921b1fae5a2bf5 100644 --- a/packages/material-ui-icons/lib/CheckCircleOutlineRounded.js +++ b/packages/material-ui-icons/lib/CheckCircleOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.88-11.71L10 14.17l-1.88-1.88a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0z" -}), 'CheckCircleOutlineRounded'); \ No newline at end of file +}), 'CheckCircleOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleOutlineSharp.js b/packages/material-ui-icons/lib/CheckCircleOutlineSharp.js index af6270e3ebf0e7..0e27a00e1217c8 100644 --- a/packages/material-ui-icons/lib/CheckCircleOutlineSharp.js +++ b/packages/material-ui-icons/lib/CheckCircleOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" -}), 'CheckCircleOutlineSharp'); \ No newline at end of file +}), 'CheckCircleOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/CheckCircleOutlineTwoTone.js index b0b1a76078420e..5cd641c4555af6 100644 --- a/packages/material-ui-icons/lib/CheckCircleOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/CheckCircleOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" -}), 'CheckCircleOutlineTwoTone'); \ No newline at end of file +}), 'CheckCircleOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleOutlined.js b/packages/material-ui-icons/lib/CheckCircleOutlined.js index eb6d4e8c110dcd..ebfde14cdf848a 100644 --- a/packages/material-ui-icons/lib/CheckCircleOutlined.js +++ b/packages/material-ui-icons/lib/CheckCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" -}), 'CheckCircleOutlined'); \ No newline at end of file +}), 'CheckCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleRounded.js b/packages/material-ui-icons/lib/CheckCircleRounded.js index bd30073bdc358e..00fc0686053eef 100644 --- a/packages/material-ui-icons/lib/CheckCircleRounded.js +++ b/packages/material-ui-icons/lib/CheckCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.29 16.29 5.7 12.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.59 7.59c-.38.39-1.02.39-1.41 0z" -}), 'CheckCircleRounded'); \ No newline at end of file +}), 'CheckCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleSharp.js b/packages/material-ui-icons/lib/CheckCircleSharp.js index cc2cd8d15e561e..e3dc72ce985bb2 100644 --- a/packages/material-ui-icons/lib/CheckCircleSharp.js +++ b/packages/material-ui-icons/lib/CheckCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" -}), 'CheckCircleSharp'); \ No newline at end of file +}), 'CheckCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckCircleTwoTone.js b/packages/material-ui-icons/lib/CheckCircleTwoTone.js index 6db4cf3f89691a..7434d5b316f513 100644 --- a/packages/material-ui-icons/lib/CheckCircleTwoTone.js +++ b/packages/material-ui-icons/lib/CheckCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-2 13-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" -}, "1")], 'CheckCircleTwoTone'); \ No newline at end of file +}, "1")], 'CheckCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckOutlined.js b/packages/material-ui-icons/lib/CheckOutlined.js index 823d57e486b84e..f8d34446e360ab 100644 --- a/packages/material-ui-icons/lib/CheckOutlined.js +++ b/packages/material-ui-icons/lib/CheckOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" -}), 'CheckOutlined'); \ No newline at end of file +}), 'CheckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckRounded.js b/packages/material-ui-icons/lib/CheckRounded.js index 1d566fbf9d8049..046611204e717c 100644 --- a/packages/material-ui-icons/lib/CheckRounded.js +++ b/packages/material-ui-icons/lib/CheckRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.17 5.53 12.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L9 16.17z" -}), 'CheckRounded'); \ No newline at end of file +}), 'CheckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckSharp.js b/packages/material-ui-icons/lib/CheckSharp.js index 6f5b3e456f67d2..8ac057b3029eb3 100644 --- a/packages/material-ui-icons/lib/CheckSharp.js +++ b/packages/material-ui-icons/lib/CheckSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" -}), 'CheckSharp'); \ No newline at end of file +}), 'CheckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckTwoTone.js b/packages/material-ui-icons/lib/CheckTwoTone.js index f23dd872d13c28..0319cdd97ee93a 100644 --- a/packages/material-ui-icons/lib/CheckTwoTone.js +++ b/packages/material-ui-icons/lib/CheckTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" -}), 'CheckTwoTone'); \ No newline at end of file +}), 'CheckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Checkroom.js b/packages/material-ui-icons/lib/Checkroom.js index 24bc2803c9e1cd..351302c13e9795 100644 --- a/packages/material-ui-icons/lib/Checkroom.js +++ b/packages/material-ui-icons/lib/Checkroom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" -}), 'Checkroom'); \ No newline at end of file +}), 'Checkroom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckroomOutlined.js b/packages/material-ui-icons/lib/CheckroomOutlined.js index f52b2ff4faf46e..d107773f22da0b 100644 --- a/packages/material-ui-icons/lib/CheckroomOutlined.js +++ b/packages/material-ui-icons/lib/CheckroomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" -}), 'CheckroomOutlined'); \ No newline at end of file +}), 'CheckroomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckroomRounded.js b/packages/material-ui-icons/lib/CheckroomRounded.js index e357e756ce62a5..249bfeb52a0c71 100644 --- a/packages/material-ui-icons/lib/CheckroomRounded.js +++ b/packages/material-ui-icons/lib/CheckroomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7-1.76-.4-3.37.53-4.02 1.98-.3.67.18 1.43.91 1.43.39 0 .75-.22.9-.57.23-.55.76-.93 1.39-.93.83 0 1.5.67 1.5 1.5 0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" -}), 'CheckroomRounded'); \ No newline at end of file +}), 'CheckroomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckroomSharp.js b/packages/material-ui-icons/lib/CheckroomSharp.js index a87753a648ce00..88ab09a08a5de4 100644 --- a/packages/material-ui-icons/lib/CheckroomSharp.js +++ b/packages/material-ui-icons/lib/CheckroomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5H11v2.75L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" -}), 'CheckroomSharp'); \ No newline at end of file +}), 'CheckroomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CheckroomTwoTone.js b/packages/material-ui-icons/lib/CheckroomTwoTone.js index 33bb565dff3df2..53caf902743197 100644 --- a/packages/material-ui-icons/lib/CheckroomTwoTone.js +++ b/packages/material-ui-icons/lib/CheckroomTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" -}), 'CheckroomTwoTone'); \ No newline at end of file +}), 'CheckroomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronLeft.js b/packages/material-ui-icons/lib/ChevronLeft.js index a22f9d88a3f427..02a58c83119ad8 100644 --- a/packages/material-ui-icons/lib/ChevronLeft.js +++ b/packages/material-ui-icons/lib/ChevronLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z" -}), 'ChevronLeft'); \ No newline at end of file +}), 'ChevronLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronLeftOutlined.js b/packages/material-ui-icons/lib/ChevronLeftOutlined.js index 72e46fff4cf7a7..ae6f7865a72a9a 100644 --- a/packages/material-ui-icons/lib/ChevronLeftOutlined.js +++ b/packages/material-ui-icons/lib/ChevronLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" -}), 'ChevronLeftOutlined'); \ No newline at end of file +}), 'ChevronLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronLeftRounded.js b/packages/material-ui-icons/lib/ChevronLeftRounded.js index 708c0d750e2f8c..ed4279f7237295 100644 --- a/packages/material-ui-icons/lib/ChevronLeftRounded.js +++ b/packages/material-ui-icons/lib/ChevronLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.71 6.71a.9959.9959 0 0 0-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41z" -}), 'ChevronLeftRounded'); \ No newline at end of file +}), 'ChevronLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronLeftSharp.js b/packages/material-ui-icons/lib/ChevronLeftSharp.js index b24bff4a72f193..90b79e22685fa3 100644 --- a/packages/material-ui-icons/lib/ChevronLeftSharp.js +++ b/packages/material-ui-icons/lib/ChevronLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" -}), 'ChevronLeftSharp'); \ No newline at end of file +}), 'ChevronLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronLeftTwoTone.js b/packages/material-ui-icons/lib/ChevronLeftTwoTone.js index 2794ccd75eae70..af361bfcde5edd 100644 --- a/packages/material-ui-icons/lib/ChevronLeftTwoTone.js +++ b/packages/material-ui-icons/lib/ChevronLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" -}), 'ChevronLeftTwoTone'); \ No newline at end of file +}), 'ChevronLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronRight.js b/packages/material-ui-icons/lib/ChevronRight.js index da83cecba0212c..689e220877601f 100644 --- a/packages/material-ui-icons/lib/ChevronRight.js +++ b/packages/material-ui-icons/lib/ChevronRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" -}), 'ChevronRight'); \ No newline at end of file +}), 'ChevronRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronRightOutlined.js b/packages/material-ui-icons/lib/ChevronRightOutlined.js index 9916eebd1832ae..1f1641d9f03801 100644 --- a/packages/material-ui-icons/lib/ChevronRightOutlined.js +++ b/packages/material-ui-icons/lib/ChevronRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" -}), 'ChevronRightOutlined'); \ No newline at end of file +}), 'ChevronRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronRightRounded.js b/packages/material-ui-icons/lib/ChevronRightRounded.js index 580561cbfece1b..8d81f52f5f4cf0 100644 --- a/packages/material-ui-icons/lib/ChevronRightRounded.js +++ b/packages/material-ui-icons/lib/ChevronRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.29 6.71c-.39.39-.39 1.02 0 1.41L13.17 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z" -}), 'ChevronRightRounded'); \ No newline at end of file +}), 'ChevronRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronRightSharp.js b/packages/material-ui-icons/lib/ChevronRightSharp.js index 42e07346d0838b..e9cd1c148b4c13 100644 --- a/packages/material-ui-icons/lib/ChevronRightSharp.js +++ b/packages/material-ui-icons/lib/ChevronRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" -}), 'ChevronRightSharp'); \ No newline at end of file +}), 'ChevronRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChevronRightTwoTone.js b/packages/material-ui-icons/lib/ChevronRightTwoTone.js index aa57b6c8bbf59c..e45eee27b435b6 100644 --- a/packages/material-ui-icons/lib/ChevronRightTwoTone.js +++ b/packages/material-ui-icons/lib/ChevronRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" -}), 'ChevronRightTwoTone'); \ No newline at end of file +}), 'ChevronRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildCare.js b/packages/material-ui-icons/lib/ChildCare.js index ce06f97d3f93b0..8339591a8bc875 100644 --- a/packages/material-ui-icons/lib/ChildCare.js +++ b/packages/material-ui-icons/lib/ChildCare.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "10.5", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "10.5", r: "1.25" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.94 12.66c.04-.21.06-.43.06-.66s-.02-.45-.06-.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66s.02.45.06.66c.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zM7.5 14c.76 1.77 2.49 3 4.5 3s3.74-1.23 4.5-3h-9z" -}, "2")], 'ChildCare'); \ No newline at end of file +}, "2")], 'ChildCare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildCareOutlined.js b/packages/material-ui-icons/lib/ChildCareOutlined.js index a37f02a75392d0..0b7678a8db6946 100644 --- a/packages/material-ui-icons/lib/ChildCareOutlined.js +++ b/packages/material-ui-icons/lib/ChildCareOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "10.5", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "10.5", r: "1.25" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.94 11.34c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zm-7 3c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3z" -}, "2")], 'ChildCareOutlined'); \ No newline at end of file +}, "2")], 'ChildCareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildCareRounded.js b/packages/material-ui-icons/lib/ChildCareRounded.js index 8864d637df0d87..3826ae422609b4 100644 --- a/packages/material-ui-icons/lib/ChildCareRounded.js +++ b/packages/material-ui-icons/lib/ChildCareRounded.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "10.5", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "10.5", r: "1.25" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.1 14H7.9c-.19 0-.32.2-.23.37C8.5 15.94 10.13 17 12 17s3.5-1.06 4.33-2.63c.08-.17-.05-.37-.23-.37zm6.84-2.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" -}, "2")], 'ChildCareRounded'); \ No newline at end of file +}, "2")], 'ChildCareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildCareSharp.js b/packages/material-ui-icons/lib/ChildCareSharp.js index f9cf524d77f6da..edd006866ab3b4 100644 --- a/packages/material-ui-icons/lib/ChildCareSharp.js +++ b/packages/material-ui-icons/lib/ChildCareSharp.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "10.5", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "10.5", r: "1.25" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" -}, "2")], 'ChildCareSharp'); \ No newline at end of file +}, "2")], 'ChildCareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildCareTwoTone.js b/packages/material-ui-icons/lib/ChildCareTwoTone.js index fedb4b3a3a5e6f..6dc29ef4cc261b 100644 --- a/packages/material-ui-icons/lib/ChildCareTwoTone.js +++ b/packages/material-ui-icons/lib/ChildCareTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10c-.1 0-.19.02-.29.03-.2-.67-.49-1.29-.86-1.86C16.6 6.26 14.45 5 12 5S7.4 6.26 6.15 8.17c-.37.57-.66 1.19-.86 1.86-.1-.01-.19-.03-.29-.03-1.1 0-2 .9-2 2s.9 2 2 2c.1 0 .19-.02.29-.03.2.67.49 1.29.86 1.86C7.4 17.74 9.55 19 12 19s4.6-1.26 5.85-3.17c.37-.57.66-1.19.86-1.86.1.01.19.03.29.03 1.1 0 2-.9 2-2s-.9-2-2-2zm-4.5-.75c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zm-5 0c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM12 17c-2.01 0-3.74-1.23-4.5-3h9c-.76 1.77-2.49 3-4.5 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "10.5", r: "1.25" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "10.5", r: "1.25" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" -}, "3")], 'ChildCareTwoTone'); \ No newline at end of file +}, "3")], 'ChildCareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildFriendly.js b/packages/material-ui-icons/lib/ChildFriendly.js index af9d2b93206dea..c4a3d7ac57dc9a 100644 --- a/packages/material-ui-icons/lib/ChildFriendly.js +++ b/packages/material-ui-icons/lib/ChildFriendly.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" -}), 'ChildFriendly'); \ No newline at end of file +}), 'ChildFriendly'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildFriendlyOutlined.js b/packages/material-ui-icons/lib/ChildFriendlyOutlined.js index 7b57a291ea3881..e0382099ebb759 100644 --- a/packages/material-ui-icons/lib/ChildFriendlyOutlined.js +++ b/packages/material-ui-icons/lib/ChildFriendlyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z" -}), 'ChildFriendlyOutlined'); \ No newline at end of file +}), 'ChildFriendlyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildFriendlyRounded.js b/packages/material-ui-icons/lib/ChildFriendlyRounded.js index 1f2ff5555914e3..7638ceb2dc711b 100644 --- a/packages/material-ui-icons/lib/ChildFriendlyRounded.js +++ b/packages/material-ui-icons/lib/ChildFriendlyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3.08V10h8c0-4.03-2.98-7.37-6.86-7.92-.6-.09-1.14.39-1.14 1zm6.32 12.81C20.37 14.54 21 12.84 21 11H6.44l-.68-1.43C5.6 9.22 5.24 9 4.86 9H3c-.55 0-1 .45-1 1s.45 1 1 1h1.22s1.89 4.07 2.12 4.42c-1.33.71-2.14 2.27-1.74 3.94.3 1.26 1.34 2.27 2.6 2.55 2.1.46 3.98-.96 4.25-2.91h2.08c.27 1.94 2.14 3.36 4.22 2.92 1.27-.27 2.31-1.27 2.63-2.53.35-1.39-.14-2.68-1.06-3.5zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" -}), 'ChildFriendlyRounded'); \ No newline at end of file +}), 'ChildFriendlyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildFriendlySharp.js b/packages/material-ui-icons/lib/ChildFriendlySharp.js index 964adcd614188e..3c3ab45a4f7a01 100644 --- a/packages/material-ui-icons/lib/ChildFriendlySharp.js +++ b/packages/material-ui-icons/lib/ChildFriendlySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" -}), 'ChildFriendlySharp'); \ No newline at end of file +}), 'ChildFriendlySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChildFriendlyTwoTone.js b/packages/material-ui-icons/lib/ChildFriendlyTwoTone.js index dc62ca3accf75b..0a8f39c66aba4d 100644 --- a/packages/material-ui-icons/lib/ChildFriendlyTwoTone.js +++ b/packages/material-ui-icons/lib/ChildFriendlyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4.34V8h3.66C18.05 6.3 16.7 4.95 15 4.34zM8.04 14.36l.44.67c1.19.16 2.19.92 2.68 1.97h2.68c.56-1.18 1.77-2 3.16-2 .15 0 .31.01.46.03l.29-.37c.4-.51.7-1.07.92-1.66H7.37c.32.67.57 1.19.67 1.36z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z" -}, "1")], 'ChildFriendlyTwoTone'); \ No newline at end of file +}, "1")], 'ChildFriendlyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChromeReaderMode.js b/packages/material-ui-icons/lib/ChromeReaderMode.js index 9f6ab87462996d..e35533ca0bbb4a 100644 --- a/packages/material-ui-icons/lib/ChromeReaderMode.js +++ b/packages/material-ui-icons/lib/ChromeReaderMode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12h7v1.5h-7zm0-2.5h7V11h-7zm0 5h7V16h-7zM21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15h-9V6h9v13z" -}), 'ChromeReaderMode'); \ No newline at end of file +}), 'ChromeReaderMode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChromeReaderModeOutlined.js b/packages/material-ui-icons/lib/ChromeReaderModeOutlined.js index 7fe02d7db20fc4..6c270b961230f8 100644 --- a/packages/material-ui-icons/lib/ChromeReaderModeOutlined.js +++ b/packages/material-ui-icons/lib/ChromeReaderModeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 19V6h8v13H3zm18 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z" -}), 'ChromeReaderModeOutlined'); \ No newline at end of file +}), 'ChromeReaderModeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChromeReaderModeRounded.js b/packages/material-ui-icons/lib/ChromeReaderModeRounded.js index d9f3eb92d32e9f..cc761223045132 100644 --- a/packages/material-ui-icons/lib/ChromeReaderModeRounded.js +++ b/packages/material-ui-icons/lib/ChromeReaderModeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14c0 .55-.45 1-1 1h-8V6h8c.55 0 1 .45 1 1v11zm-1.75-8.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zm0 2.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zm0 2.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75z" -}), 'ChromeReaderModeRounded'); \ No newline at end of file +}), 'ChromeReaderModeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChromeReaderModeSharp.js b/packages/material-ui-icons/lib/ChromeReaderModeSharp.js index abf798357db945..c3bb7885fa2c2f 100644 --- a/packages/material-ui-icons/lib/ChromeReaderModeSharp.js +++ b/packages/material-ui-icons/lib/ChromeReaderModeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12h7v1.5h-7V12zm0-2.5h7V11h-7V9.5zm0 5h7V16h-7v-1.5zM23 4H1v17h22V4zm-2 15h-9V6h9v13z" -}), 'ChromeReaderModeSharp'); \ No newline at end of file +}), 'ChromeReaderModeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ChromeReaderModeTwoTone.js b/packages/material-ui-icons/lib/ChromeReaderModeTwoTone.js index 9c7900e5536bb7..e50214382e1d67 100644 --- a/packages/material-ui-icons/lib/ChromeReaderModeTwoTone.js +++ b/packages/material-ui-icons/lib/ChromeReaderModeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h8v13H3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM11 19H3V6h8v13zm10 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z" -}, "1")], 'ChromeReaderModeTwoTone'); \ No newline at end of file +}, "1")], 'ChromeReaderModeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Circle.js b/packages/material-ui-icons/lib/Circle.js index a1f77ffdd24d1c..c053ca744353cc 100644 --- a/packages/material-ui-icons/lib/Circle.js +++ b/packages/material-ui-icons/lib/Circle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" -}), 'Circle'); \ No newline at end of file +}), 'Circle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleNotifications.js b/packages/material-ui-icons/lib/CircleNotifications.js index 2996ba6f82d8fb..6829f0a100cb22 100644 --- a/packages/material-ui-icons/lib/CircleNotifications.js +++ b/packages/material-ui-icons/lib/CircleNotifications.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-1l1-1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14l1 1v1z" -}), 'CircleNotifications'); \ No newline at end of file +}), 'CircleNotifications'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleNotificationsOutlined.js b/packages/material-ui-icons/lib/CircleNotificationsOutlined.js index 7b4ad696c00f8e..995cb6f09a2234 100644 --- a/packages/material-ui-icons/lib/CircleNotificationsOutlined.js +++ b/packages/material-ui-icons/lib/CircleNotificationsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18.5c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4-8.61c0-2.11-1.03-3.92-3-4.39v-.5c0-.57-.43-1-1-1s-1 .43-1 1V7c-1.97.47-3 2.27-3 4.39V14H7v2h10v-2h-1v-2.61zM14 14h-4v-3c0-1.1.9-2 2-2s2 .9 2 2v3z" -}), 'CircleNotificationsOutlined'); \ No newline at end of file +}), 'CircleNotificationsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleNotificationsRounded.js b/packages/material-ui-icons/lib/CircleNotificationsRounded.js index fb69ce70ea369d..4ee7dc0c51e79a 100644 --- a/packages/material-ui-icons/lib/CircleNotificationsRounded.js +++ b/packages/material-ui-icons/lib/CircleNotificationsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm4-2.5H8c-.55 0-1-.45-1-1s.45-1 1-1v-3c0-1.86 1.28-3.41 3-3.86V6.5c0-.55.45-1 1-1s1 .45 1 1v.64c1.72.45 3 2 3 3.86v3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'CircleNotificationsRounded'); \ No newline at end of file +}), 'CircleNotificationsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleNotificationsSharp.js b/packages/material-ui-icons/lib/CircleNotificationsSharp.js index b2d0d5e2335ac6..3382a7f705a2af 100644 --- a/packages/material-ui-icons/lib/CircleNotificationsSharp.js +++ b/packages/material-ui-icons/lib/CircleNotificationsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-2h1v-3c0-1.86 1.28-3.41 3-3.86V5.5h2v1.64c1.72.45 3 2 3 3.86v3h1v2z" -}), 'CircleNotificationsSharp'); \ No newline at end of file +}), 'CircleNotificationsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleNotificationsTwoTone.js b/packages/material-ui-icons/lib/CircleNotificationsTwoTone.js index 140fdd23faac06..13e0b7f6b58d1e 100644 --- a/packages/material-ui-icons/lib/CircleNotificationsTwoTone.js +++ b/packages/material-ui-icons/lib/CircleNotificationsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 14.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-2h1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14h1v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18.5c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4-8.61c0-2.11-1.03-3.92-3-4.39v-.5c0-.57-.43-1-1-1s-1 .43-1 1V7c-1.97.47-3 2.27-3 4.39V14H7v2h10v-2h-1v-2.61zM14 14h-4v-3c0-1.1.9-2 2-2s2 .9 2 2v3z" -}, "1")], 'CircleNotificationsTwoTone'); \ No newline at end of file +}, "1")], 'CircleNotificationsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleOutlined.js b/packages/material-ui-icons/lib/CircleOutlined.js index 4d17a959452e08..eeda1ba20a735d 100644 --- a/packages/material-ui-icons/lib/CircleOutlined.js +++ b/packages/material-ui-icons/lib/CircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'CircleOutlined'); \ No newline at end of file +}), 'CircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleRounded.js b/packages/material-ui-icons/lib/CircleRounded.js index c93ed426f82a6a..a8ab7e3727ceb1 100644 --- a/packages/material-ui-icons/lib/CircleRounded.js +++ b/packages/material-ui-icons/lib/CircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" -}), 'CircleRounded'); \ No newline at end of file +}), 'CircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleSharp.js b/packages/material-ui-icons/lib/CircleSharp.js index 6bc2ab1e003d51..72b2ee28c828b9 100644 --- a/packages/material-ui-icons/lib/CircleSharp.js +++ b/packages/material-ui-icons/lib/CircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" -}), 'CircleSharp'); \ No newline at end of file +}), 'CircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CircleTwoTone.js b/packages/material-ui-icons/lib/CircleTwoTone.js index a67353c9bea78c..4b41989cd360fb 100644 --- a/packages/material-ui-icons/lib/CircleTwoTone.js +++ b/packages/material-ui-icons/lib/CircleTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "8", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "1")], 'CircleTwoTone'); \ No newline at end of file +}, "1")], 'CircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Class.js b/packages/material-ui-icons/lib/Class.js index 13befe9b155ee6..00771473ed13c9 100644 --- a/packages/material-ui-icons/lib/Class.js +++ b/packages/material-ui-icons/lib/Class.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" -}), 'Class'); \ No newline at end of file +}), 'Class'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClassOutlined.js b/packages/material-ui-icons/lib/ClassOutlined.js index 01ea087e75deb8..be4f85393230d1 100644 --- a/packages/material-ui-icons/lib/ClassOutlined.js +++ b/packages/material-ui-icons/lib/ClassOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" -}), 'ClassOutlined'); \ No newline at end of file +}), 'ClassOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClassRounded.js b/packages/material-ui-icons/lib/ClassRounded.js index dc6be39e7e7632..8b389f3d7297b2 100644 --- a/packages/material-ui-icons/lib/ClassRounded.js +++ b/packages/material-ui-icons/lib/ClassRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" -}), 'ClassRounded'); \ No newline at end of file +}), 'ClassRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClassSharp.js b/packages/material-ui-icons/lib/ClassSharp.js index 06963c774e5bb8..50a01aabbcb75c 100644 --- a/packages/material-ui-icons/lib/ClassSharp.js +++ b/packages/material-ui-icons/lib/ClassSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z" -}), 'ClassSharp'); \ No newline at end of file +}), 'ClassSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClassTwoTone.js b/packages/material-ui-icons/lib/ClassTwoTone.js index 72eb58d73f06eb..ab44331cfbbb11 100644 --- a/packages/material-ui-icons/lib/ClassTwoTone.js +++ b/packages/material-ui-icons/lib/ClassTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 13-3-2.25L7 13V4H6v16h12V4h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" -}, "1")], 'ClassTwoTone'); \ No newline at end of file +}, "1")], 'ClassTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleanHands.js b/packages/material-ui-icons/lib/CleanHands.js index ac8e933be6c823..3a372b815ef5ee 100644 --- a/packages/material-ui-icons/lib/CleanHands.js +++ b/packages/material-ui-icons/lib/CleanHands.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.99 5 .63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7l1.37-.63.63-1.37M11 6.13V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.14C7.23 6.51 5.81 7.8 5.26 9.5h3.98L15 11.65v-.62c0-2.42-1.72-4.44-4-4.9zM1 22h4V11H1v11zm19-5h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9.02L14 22l8-3c-.01-1.1-.89-2-2-2zm0-3c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2z" -}), 'CleanHands'); \ No newline at end of file +}), 'CleanHands'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleanHandsOutlined.js b/packages/material-ui-icons/lib/CleanHandsOutlined.js index acd2269e8a7209..0bb223d886bf75 100644 --- a/packages/material-ui-icons/lib/CleanHandsOutlined.js +++ b/packages/material-ui-icons/lib/CleanHandsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.99 5 .63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7l1.37-.63.63-1.37M20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zm-9-7.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h2.16C7.94 8.61 8.89 8 10 8c1.62 0 2.94 1.29 2.99 2.9l2.01.75V11c0-2.42-1.72-4.44-4-4.9zM22 19v1l-8 2.5-7-1.94V22H1V11h7.97l6.16 2.3c1.12.42 1.87 1.5 1.87 2.7h2c1.66 0 3 1.34 3 3zM5 20v-7H3v7h2zm14.9-1.43c-.16-.33-.51-.56-.9-.56h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.93 5.93-1.84z" -}), 'CleanHandsOutlined'); \ No newline at end of file +}), 'CleanHandsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleanHandsRounded.js b/packages/material-ui-icons/lib/CleanHandsRounded.js index 7438e9a003b109..5f208771a56f36 100644 --- a/packages/material-ui-icons/lib/CleanHandsRounded.js +++ b/packages/material-ui-icons/lib/CleanHandsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.99 7 1.37-.63.63-1.37.63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7zM20 14c1.1 0 2-.9 2-2 0-.78-.99-2.44-1.58-3.36-.2-.31-.64-.31-.84 0C18.99 9.56 18 11.22 18 12c0 1.1.9 2 2 2zM9.24 9.5 15 11.65V11c0-2.42-1.72-4.44-4-4.9V4h2c.35 0 .68.06 1 .18.37.13.78.05 1.05-.22.51-.51.34-1.39-.33-1.64C14.19 2.11 13.61 2 13 2H8.5c-.55 0-1 .45-1 1s.45 1 1 1H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h3.99zM3 11c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2s2-.9 2-2v-7c0-1.1-.9-2-2-2zm16.99 6h-6.83a.96.96 0 0 1-.33-.06l-1.47-.51c-.26-.09-.39-.37-.3-.63.09-.26.38-.4.64-.3l1.12.43c.11.04.24.07.36.07h2.63c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L9.3 11.13c-.22-.09-.46-.13-.7-.13H7v9.02l6.37 1.81c.41.12.85.1 1.25-.05L22 19c0-1.11-.9-2-2.01-2z" -}), 'CleanHandsRounded'); \ No newline at end of file +}), 'CleanHandsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleanHandsSharp.js b/packages/material-ui-icons/lib/CleanHandsSharp.js index 4221a227aac020..0cfb9e2c33faa7 100644 --- a/packages/material-ui-icons/lib/CleanHandsSharp.js +++ b/packages/material-ui-icons/lib/CleanHandsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.99 7 1.37-.63.63-1.37.63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7zM20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zM1 22h4V11H1v11zM9.24 9.5 15 11.65V11c0-2.42-1.72-4.44-4-4.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h3.99zM22 17h-9l-2.09-.73.33-.94L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3v-2z" -}), 'CleanHandsSharp'); \ No newline at end of file +}), 'CleanHandsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleanHandsTwoTone.js b/packages/material-ui-icons/lib/CleanHandsTwoTone.js index 42ca39003c76e3..8f597176cd49f5 100644 --- a/packages/material-ui-icons/lib/CleanHandsTwoTone.js +++ b/packages/material-ui-icons/lib/CleanHandsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.24 9.5H7.42C7.94 8.61 8.89 8 10 8c1.62 0 2.94 1.29 2.99 2.9L9.24 9.5zM5 20v-7H3v7h2zm14.9-1.43c-.16-.33-.51-.56-.9-.56h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.93 5.93-1.84z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.99 5 .63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7l1.37-.63.63-1.37M20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zm-9-7.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h2.16C7.94 8.61 8.89 8 10 8c1.62 0 2.94 1.29 2.99 2.9l2.01.75V11c0-2.42-1.72-4.44-4-4.9zM22 19v1l-8 2.5-7-1.94V22H1V11h7.97l6.16 2.3c1.12.42 1.87 1.5 1.87 2.7h2c1.66 0 3 1.34 3 3zM5 20v-7H3v7h2zm14.9-1.43c-.16-.33-.51-.56-.9-.56h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.93 5.93-1.84z" -}, "1")], 'CleanHandsTwoTone'); \ No newline at end of file +}, "1")], 'CleanHandsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleaningServices.js b/packages/material-ui-icons/lib/CleaningServices.js index f79ecd95d66eb6..56a9b75135d07b 100644 --- a/packages/material-ui-icons/lib/CleaningServices.js +++ b/packages/material-ui-icons/lib/CleaningServices.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11h-1V3c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v8H8c-2.76 0-5 2.24-5 5v7h18v-7c0-2.76-2.24-5-5-5zm3 10h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" -}), 'CleaningServices'); \ No newline at end of file +}), 'CleaningServices'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleaningServicesOutlined.js b/packages/material-ui-icons/lib/CleaningServicesOutlined.js index a9590c0141db97..230691174f5366 100644 --- a/packages/material-ui-icons/lib/CleaningServicesOutlined.js +++ b/packages/material-ui-icons/lib/CleaningServicesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11h-1V3c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v8H8c-2.76 0-5 2.24-5 5v7h18v-7c0-2.76-2.24-5-5-5zm-5-8h2v8h-2V3zm8 18h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" -}), 'CleaningServicesOutlined'); \ No newline at end of file +}), 'CleaningServicesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleaningServicesRounded.js b/packages/material-ui-icons/lib/CleaningServicesRounded.js index edb87bfc7f667e..6cef1cb255685f 100644 --- a/packages/material-ui-icons/lib/CleaningServicesRounded.js +++ b/packages/material-ui-icons/lib/CleaningServicesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11h-1V4c0-1.66-1.34-3-3-3S9 2.34 9 4v7H8c-2.76 0-5 2.24-5 5v5c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5c0-2.76-2.24-5-5-5zm3 10h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" -}), 'CleaningServicesRounded'); \ No newline at end of file +}), 'CleaningServicesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleaningServicesSharp.js b/packages/material-ui-icons/lib/CleaningServicesSharp.js index a1ddda622e32fd..ebe2a885059ea2 100644 --- a/packages/material-ui-icons/lib/CleaningServicesSharp.js +++ b/packages/material-ui-icons/lib/CleaningServicesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V1H9v10H3v12h18V11h-6zm4 10h-2v-4h-2v4h-2v-4h-2v4H9v-4H7v4H5v-8h14v8z" -}), 'CleaningServicesSharp'); \ No newline at end of file +}), 'CleaningServicesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CleaningServicesTwoTone.js b/packages/material-ui-icons/lib/CleaningServicesTwoTone.js index f363a0fd500fb4..5630d0ed91bd16 100644 --- a/packages/material-ui-icons/lib/CleaningServicesTwoTone.js +++ b/packages/material-ui-icons/lib/CleaningServicesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3h2v8h-2zm5 10H8c-1.65 0-3 1.35-3 3v5h2v-3c0-.55.45-1 1-1s1 .45 1 1v3h2v-3c0-.55.45-1 1-1s1 .45 1 1v3h2v-3c0-.55.45-1 1-1s1 .45 1 1v3h2v-5c0-1.65-1.35-3-3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11h-1V3c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v8H8c-2.76 0-5 2.24-5 5v7h18v-7c0-2.76-2.24-5-5-5zm-5-8h2v8h-2V3zm8 18h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" -}, "1")], 'CleaningServicesTwoTone'); \ No newline at end of file +}, "1")], 'CleaningServicesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Clear.js b/packages/material-ui-icons/lib/Clear.js index ae1cde3502231a..1c9e51be1d8cd4 100644 --- a/packages/material-ui-icons/lib/Clear.js +++ b/packages/material-ui-icons/lib/Clear.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" -}), 'Clear'); \ No newline at end of file +}), 'Clear'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearAll.js b/packages/material-ui-icons/lib/ClearAll.js index 865bed0a8e719c..fd815a454d3e0c 100644 --- a/packages/material-ui-icons/lib/ClearAll.js +++ b/packages/material-ui-icons/lib/ClearAll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" -}), 'ClearAll'); \ No newline at end of file +}), 'ClearAll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearAllOutlined.js b/packages/material-ui-icons/lib/ClearAllOutlined.js index 64a2639ce6bc22..43f14e0f4ab718 100644 --- a/packages/material-ui-icons/lib/ClearAllOutlined.js +++ b/packages/material-ui-icons/lib/ClearAllOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" -}), 'ClearAllOutlined'); \ No newline at end of file +}), 'ClearAllOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearAllRounded.js b/packages/material-ui-icons/lib/ClearAllRounded.js index f2009a1451ae8f..c7f52b163484d2 100644 --- a/packages/material-ui-icons/lib/ClearAllRounded.js +++ b/packages/material-ui-icons/lib/ClearAllRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-2 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z" -}), 'ClearAllRounded'); \ No newline at end of file +}), 'ClearAllRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearAllSharp.js b/packages/material-ui-icons/lib/ClearAllSharp.js index e7f1fd45c0b7d3..fee4df41cbd7ff 100644 --- a/packages/material-ui-icons/lib/ClearAllSharp.js +++ b/packages/material-ui-icons/lib/ClearAllSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" -}), 'ClearAllSharp'); \ No newline at end of file +}), 'ClearAllSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearAllTwoTone.js b/packages/material-ui-icons/lib/ClearAllTwoTone.js index ad9b146d4a0940..ea01fa4d4e7187 100644 --- a/packages/material-ui-icons/lib/ClearAllTwoTone.js +++ b/packages/material-ui-icons/lib/ClearAllTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h14v2H5zm-2 4h14v2H3zm4-8h14v2H7z" -}), 'ClearAllTwoTone'); \ No newline at end of file +}), 'ClearAllTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearOutlined.js b/packages/material-ui-icons/lib/ClearOutlined.js index 3ecf2415d4845b..2b09f43e92db2e 100644 --- a/packages/material-ui-icons/lib/ClearOutlined.js +++ b/packages/material-ui-icons/lib/ClearOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" -}), 'ClearOutlined'); \ No newline at end of file +}), 'ClearOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearRounded.js b/packages/material-ui-icons/lib/ClearRounded.js index 9c15e8035de014..dc571bc7fc42d2 100644 --- a/packages/material-ui-icons/lib/ClearRounded.js +++ b/packages/material-ui-icons/lib/ClearRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.3 5.71a.9959.9959 0 0 0-1.41 0L12 10.59 7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z" -}), 'ClearRounded'); \ No newline at end of file +}), 'ClearRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearSharp.js b/packages/material-ui-icons/lib/ClearSharp.js index e9f18880d974da..83272b6f414622 100644 --- a/packages/material-ui-icons/lib/ClearSharp.js +++ b/packages/material-ui-icons/lib/ClearSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" -}), 'ClearSharp'); \ No newline at end of file +}), 'ClearSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClearTwoTone.js b/packages/material-ui-icons/lib/ClearTwoTone.js index 50a02cb15aa302..3356f12d1764cc 100644 --- a/packages/material-ui-icons/lib/ClearTwoTone.js +++ b/packages/material-ui-icons/lib/ClearTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" -}), 'ClearTwoTone'); \ No newline at end of file +}), 'ClearTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Close.js b/packages/material-ui-icons/lib/Close.js index 2b9228f91173e0..0bdab57d967b3d 100644 --- a/packages/material-ui-icons/lib/Close.js +++ b/packages/material-ui-icons/lib/Close.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" -}), 'Close'); \ No newline at end of file +}), 'Close'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseFullscreen.js b/packages/material-ui-icons/lib/CloseFullscreen.js index 22212a0a99eb6f..946de66b7128c8 100644 --- a/packages/material-ui-icons/lib/CloseFullscreen.js +++ b/packages/material-ui-icons/lib/CloseFullscreen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" -}), 'CloseFullscreen'); \ No newline at end of file +}), 'CloseFullscreen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseFullscreenOutlined.js b/packages/material-ui-icons/lib/CloseFullscreenOutlined.js index 4f5d034bb9d03c..690076207ac865 100644 --- a/packages/material-ui-icons/lib/CloseFullscreenOutlined.js +++ b/packages/material-ui-icons/lib/CloseFullscreenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" -}), 'CloseFullscreenOutlined'); \ No newline at end of file +}), 'CloseFullscreenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseFullscreenRounded.js b/packages/material-ui-icons/lib/CloseFullscreenRounded.js index 99f2ebe203a0ef..532954aa51330e 100644 --- a/packages/material-ui-icons/lib/CloseFullscreenRounded.js +++ b/packages/material-ui-icons/lib/CloseFullscreenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.29 4.12 16.7 8.71l1.59 1.59c.63.63.18 1.71-.71 1.71H13c-.55 0-1-.45-1-1v-4.6c0-.89 1.08-1.34 1.71-.71l1.59 1.59 4.59-4.59c.39-.39 1.02-.39 1.41 0 .38.4.38 1.03-.01 1.42zM4.12 21.29l4.59-4.59 1.59 1.59c.63.63 1.71.18 1.71-.71V13c0-.55-.45-1-1-1h-4.6c-.89 0-1.34 1.08-.71 1.71l1.59 1.59-4.59 4.59c-.39.39-.39 1.02 0 1.41.4.38 1.03.38 1.42-.01z" -}), 'CloseFullscreenRounded'); \ No newline at end of file +}), 'CloseFullscreenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseFullscreenSharp.js b/packages/material-ui-icons/lib/CloseFullscreenSharp.js index 53fa6fb2dd2dfa..437aff5b0dcc89 100644 --- a/packages/material-ui-icons/lib/CloseFullscreenSharp.js +++ b/packages/material-ui-icons/lib/CloseFullscreenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" -}), 'CloseFullscreenSharp'); \ No newline at end of file +}), 'CloseFullscreenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseFullscreenTwoTone.js b/packages/material-ui-icons/lib/CloseFullscreenTwoTone.js index 34fbdfcfed2477..a34e741d20dbb7 100644 --- a/packages/material-ui-icons/lib/CloseFullscreenTwoTone.js +++ b/packages/material-ui-icons/lib/CloseFullscreenTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" -}), 'CloseFullscreenTwoTone'); \ No newline at end of file +}), 'CloseFullscreenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseOutlined.js b/packages/material-ui-icons/lib/CloseOutlined.js index 167625cc343715..d1ef0c954536d0 100644 --- a/packages/material-ui-icons/lib/CloseOutlined.js +++ b/packages/material-ui-icons/lib/CloseOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" -}), 'CloseOutlined'); \ No newline at end of file +}), 'CloseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseRounded.js b/packages/material-ui-icons/lib/CloseRounded.js index 5f3a266fd3837d..ce993cb94d071b 100644 --- a/packages/material-ui-icons/lib/CloseRounded.js +++ b/packages/material-ui-icons/lib/CloseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.3 5.71a.9959.9959 0 0 0-1.41 0L12 10.59 7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z" -}), 'CloseRounded'); \ No newline at end of file +}), 'CloseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseSharp.js b/packages/material-ui-icons/lib/CloseSharp.js index c50156a0cc75cc..3f0475ad22ce8e 100644 --- a/packages/material-ui-icons/lib/CloseSharp.js +++ b/packages/material-ui-icons/lib/CloseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" -}), 'CloseSharp'); \ No newline at end of file +}), 'CloseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloseTwoTone.js b/packages/material-ui-icons/lib/CloseTwoTone.js index c1c32c2804e1f7..fa35d5d73af2b0 100644 --- a/packages/material-ui-icons/lib/CloseTwoTone.js +++ b/packages/material-ui-icons/lib/CloseTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" -}), 'CloseTwoTone'); \ No newline at end of file +}), 'CloseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaption.js b/packages/material-ui-icons/lib/ClosedCaption.js index 5bc562d65368f6..65f6da1d14b71f 100644 --- a/packages/material-ui-icons/lib/ClosedCaption.js +++ b/packages/material-ui-icons/lib/ClosedCaption.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z" -}), 'ClosedCaption'); \ No newline at end of file +}), 'ClosedCaption'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionDisabled.js b/packages/material-ui-icons/lib/ClosedCaptionDisabled.js index 0465adda34a120..624aef9a9db428 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionDisabled.js +++ b/packages/material-ui-icons/lib/ClosedCaptionDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H19c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-3.38-3.38c.24-.19.4-.46.4-.78v-1h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17L6.83 4zm12.95 18.61L17.17 20H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM11 13.83l-.83-.83H9.5v.5h-2v-3h.17L6.4 9.22c-.24.19-.4.46-.4.78v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-.17z" -}), 'ClosedCaptionDisabled'); \ No newline at end of file +}), 'ClosedCaptionDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionDisabledOutlined.js b/packages/material-ui-icons/lib/ClosedCaptionDisabledOutlined.js index 79eaa5c0e7fe8b..f0e91baef520d3 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionDisabledOutlined.js +++ b/packages/material-ui-icons/lib/ClosedCaptionDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1h-1.5v-.5h-2v1L13 10zm3.5 3.5 1.21 1.21c.18-.19.29-.44.29-.71v-1h-1.5v.5zM8.83 6H19v10.17l1.98 1.98c0-.05.02-.1.02-.16V6c0-1.1-.9-2-2-2H6.83l2 2zm10.95 16.61L17.17 20H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM7.5 13.5h2V13h.67l-2.5-2.5H7.5v3zm7.67 4.5L11 13.83V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.32.16-.59.4-.78L5 7.83V18h10.17z" -}), 'ClosedCaptionDisabledOutlined'); \ No newline at end of file +}), 'ClosedCaptionDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionDisabledRounded.js b/packages/material-ui-icons/lib/ClosedCaptionDisabledRounded.js index ecb173e180f61f..a4792d3056a020 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionDisabledRounded.js +++ b/packages/material-ui-icons/lib/ClosedCaptionDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H19c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-3.38-3.38c.24-.19.4-.46.4-.78v-.5c0-.28-.22-.5-.5-.5H17c-.28 0-.5.22-.5.5h-.17l-1.83-1.83V10.5h2c0 .28.22.5.5.5h.5c.28 0 .5-.22.5-.5V10c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17L6.83 4zm13.66 17.9c-.39.39-1.02.39-1.41 0l-1.9-1.9H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15l-.92-.92a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11 13.83l-.83-.83H10c-.28 0-.5.22-.5.5h-2v-3h.17L6.4 9.22c-.24.19-.4.46-.4.78v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-.17z" -}), 'ClosedCaptionDisabledRounded'); \ No newline at end of file +}), 'ClosedCaptionDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionDisabledSharp.js b/packages/material-ui-icons/lib/ClosedCaptionDisabledSharp.js index d789ac014d18a2..f5d487e7026a49 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionDisabledSharp.js +++ b/packages/material-ui-icons/lib/ClosedCaptionDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H21v14.17L17.83 15H18v-2h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18V9h-5v1.17L6.83 4zm12.95 18.61L17.17 20H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM11 13.83l-.83-.83H9.5v.5h-2v-3h.17L6.17 9H6v6h5v-1.17z" -}), 'ClosedCaptionDisabledSharp'); \ No newline at end of file +}), 'ClosedCaptionDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionDisabledTwoTone.js b/packages/material-ui-icons/lib/ClosedCaptionDisabledTwoTone.js index 047407713906dd..9fe27d5fbdd47d 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/ClosedCaptionDisabledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.83 6H19v10.17l-1.4-1.4c.24-.18.4-.45.4-.77v-1h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17L8.83 6zM7.5 13.5h2V13h.67l-2.5-2.5H7.5v3zm3.5.5c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.32.16-.59.4-.78L5 7.83V18h10.17L11 13.83V14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H19c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16L19 16.17V6H8.83l-2-2zm12.95 18.61L17.17 20H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81 18 18l1.82 1.82 1.37 1.37-1.41 1.42zM7.5 13.5h2V13h.67l-2.5-2.5H7.5v3zm7.67 4.5L11 13.83V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.32.16-.59.4-.78L5 7.83V18h10.17zM18 14v-1h-1.5v.5h-.17l1.28 1.28c.23-.19.39-.46.39-.78zm-3.5-2.33V10.5h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17l1.5 1.5z" -}, "1")], 'ClosedCaptionDisabledTwoTone'); \ No newline at end of file +}, "1")], 'ClosedCaptionDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionOff.js b/packages/material-ui-icons/lib/ClosedCaptionOff.js index a7ad9fdda613c3..3edcbae2e60a73 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionOff.js +++ b/packages/material-ui-icons/lib/ClosedCaptionOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 5.5v13h-15v-13h15zM19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z" -}), 'ClosedCaptionOff'); \ No newline at end of file +}), 'ClosedCaptionOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionOffOutlined.js b/packages/material-ui-icons/lib/ClosedCaptionOffOutlined.js index a08f2ce80e9bdb..b30c10037930dc 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionOffOutlined.js +++ b/packages/material-ui-icons/lib/ClosedCaptionOffOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" -}, "1")], 'ClosedCaptionOffOutlined'); \ No newline at end of file +}, "1")], 'ClosedCaptionOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionOffRounded.js b/packages/material-ui-icons/lib/ClosedCaptionOffRounded.js index 8b741cc8247675..e472de75701ad9 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionOffRounded.js +++ b/packages/material-ui-icons/lib/ClosedCaptionOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 6.5c0 .28-.22.5-.5.5H10c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5zm7 0c0 .28-.22.5-.5.5H17c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5z" -}), 'ClosedCaptionOffRounded'); \ No newline at end of file +}), 'ClosedCaptionOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionOffSharp.js b/packages/material-ui-icons/lib/ClosedCaptionOffSharp.js index 1010a212ec0d84..74251f1883629e 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionOffSharp.js +++ b/packages/material-ui-icons/lib/ClosedCaptionOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z" -}), 'ClosedCaptionOffSharp'); \ No newline at end of file +}), 'ClosedCaptionOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionOffTwoTone.js b/packages/material-ui-icons/lib/ClosedCaptionOffTwoTone.js index e92023ee46fa95..65808c877b4a0e 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionOffTwoTone.js +++ b/packages/material-ui-icons/lib/ClosedCaptionOffTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6H5v12h14V6zm-8 5H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2zM5 6h14v12H5V6z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1z" -}, "2")], 'ClosedCaptionOffTwoTone'); \ No newline at end of file +}, "2")], 'ClosedCaptionOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionOutlined.js b/packages/material-ui-icons/lib/ClosedCaptionOutlined.js index 7621108ae135e7..a122ab5b5beb5b 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionOutlined.js +++ b/packages/material-ui-icons/lib/ClosedCaptionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" -}), 'ClosedCaptionOutlined'); \ No newline at end of file +}), 'ClosedCaptionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionRounded.js b/packages/material-ui-icons/lib/ClosedCaptionRounded.js index a644373aa0ff8f..2def20ffb6a94a 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionRounded.js +++ b/packages/material-ui-icons/lib/ClosedCaptionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 6.5c0 .28-.22.5-.5.5H10c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5zm7 0c0 .28-.22.5-.5.5H17c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5z" -}), 'ClosedCaptionRounded'); \ No newline at end of file +}), 'ClosedCaptionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionSharp.js b/packages/material-ui-icons/lib/ClosedCaptionSharp.js index c752e2b44b2c2f..eb1d39b412fa9d 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionSharp.js +++ b/packages/material-ui-icons/lib/ClosedCaptionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z" -}), 'ClosedCaptionSharp'); \ No newline at end of file +}), 'ClosedCaptionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ClosedCaptionTwoTone.js b/packages/material-ui-icons/lib/ClosedCaptionTwoTone.js index b6fe8cdc4b508f..1485b1ccf9e7da 100644 --- a/packages/material-ui-icons/lib/ClosedCaptionTwoTone.js +++ b/packages/material-ui-icons/lib/ClosedCaptionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6H5v12h14V6zm-8 5H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2zM5 6h14v12H5V6zm5 3H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1z" -}, "1")], 'ClosedCaptionTwoTone'); \ No newline at end of file +}, "1")], 'ClosedCaptionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cloud.js b/packages/material-ui-icons/lib/Cloud.js index 2a538fda77c65a..43d3b546d1ea2a 100644 --- a/packages/material-ui-icons/lib/Cloud.js +++ b/packages/material-ui-icons/lib/Cloud.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" -}), 'Cloud'); \ No newline at end of file +}), 'Cloud'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudCircle.js b/packages/material-ui-icons/lib/CloudCircle.js index 6bf7eb9f39408f..b69f625a47382d 100644 --- a/packages/material-ui-icons/lib/CloudCircle.js +++ b/packages/material-ui-icons/lib/CloudCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3l.14.01C8.58 8.28 10.13 7 12 7c2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z" -}), 'CloudCircle'); \ No newline at end of file +}), 'CloudCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudCircleOutlined.js b/packages/material-ui-icons/lib/CloudCircleOutlined.js index 77e8db5343710d..75a2b08bbf3774 100644 --- a/packages/material-ui-icons/lib/CloudCircleOutlined.js +++ b/packages/material-ui-icons/lib/CloudCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'CloudCircleOutlined'); \ No newline at end of file +}), 'CloudCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudCircleRounded.js b/packages/material-ui-icons/lib/CloudCircleRounded.js index 7f5ad6c5f1b8f4..42920791df0ee2 100644 --- a/packages/material-ui-icons/lib/CloudCircleRounded.js +++ b/packages/material-ui-icons/lib/CloudCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z" -}), 'CloudCircleRounded'); \ No newline at end of file +}), 'CloudCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudCircleSharp.js b/packages/material-ui-icons/lib/CloudCircleSharp.js index 8ba3fa2c7f93c0..54b18cf2926017 100644 --- a/packages/material-ui-icons/lib/CloudCircleSharp.js +++ b/packages/material-ui-icons/lib/CloudCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z" -}), 'CloudCircleSharp'); \ No newline at end of file +}), 'CloudCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudCircleTwoTone.js b/packages/material-ui-icons/lib/CloudCircleTwoTone.js index c84dfbbb79a4bf..31f39f5fd5306d 100644 --- a/packages/material-ui-icons/lib/CloudCircleTwoTone.js +++ b/packages/material-ui-icons/lib/CloudCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4.08 12H8.5C6.57 16 5 14.43 5 12.5c0-1.8 1.36-3.29 3.12-3.48.73-1.4 2.19-2.36 3.88-2.36 2.12 0 3.89 1.51 4.29 3.52 1.52.1 2.71 1.35 2.71 2.89 0 1.62-1.31 2.93-2.92 2.93z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z" -}, "1")], 'CloudCircleTwoTone'); \ No newline at end of file +}, "1")], 'CloudCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDone.js b/packages/material-ui-icons/lib/CloudDone.js index 783359716b7183..aed291984b0dfe 100644 --- a/packages/material-ui-icons/lib/CloudDone.js +++ b/packages/material-ui-icons/lib/CloudDone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z" -}), 'CloudDone'); \ No newline at end of file +}), 'CloudDone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDoneOutlined.js b/packages/material-ui-icons/lib/CloudDoneOutlined.js index 696b0429523c3b..7bed7cfc3d2b1f 100644 --- a/packages/material-ui-icons/lib/CloudDoneOutlined.js +++ b/packages/material-ui-icons/lib/CloudDoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z" -}), 'CloudDoneOutlined'); \ No newline at end of file +}), 'CloudDoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDoneRounded.js b/packages/material-ui-icons/lib/CloudDoneRounded.js index 69232cd4c811d9..00906be343998e 100644 --- a/packages/material-ui-icons/lib/CloudDoneRounded.js +++ b/packages/material-ui-icons/lib/CloudDoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zm-8.64 6.25c-.39.39-1.02.39-1.41 0L7.2 14.2a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.18l4.48-4.48c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-5.18 5.18z" -}), 'CloudDoneRounded'); \ No newline at end of file +}), 'CloudDoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDoneSharp.js b/packages/material-ui-icons/lib/CloudDoneSharp.js index ea96fd550a6b29..fcedbf4d1eea6b 100644 --- a/packages/material-ui-icons/lib/CloudDoneSharp.js +++ b/packages/material-ui-icons/lib/CloudDoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18 15.18 9l1.41 1.41L10 17z" -}), 'CloudDoneSharp'); \ No newline at end of file +}), 'CloudDoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDoneTwoTone.js b/packages/material-ui-icons/lib/CloudDoneTwoTone.js index 3e829306219acc..d30b3341e709df 100644 --- a/packages/material-ui-icons/lib/CloudDoneTwoTone.js +++ b/packages/material-ui-icons/lib/CloudDoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18l4.6-4.6 1.41 1.41L10 17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z" -}, "1")], 'CloudDoneTwoTone'); \ No newline at end of file +}, "1")], 'CloudDoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDownload.js b/packages/material-ui-icons/lib/CloudDownload.js index e8b82e84ecab52..ce9067d8824edd 100644 --- a/packages/material-ui-icons/lib/CloudDownload.js +++ b/packages/material-ui-icons/lib/CloudDownload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" -}), 'CloudDownload'); \ No newline at end of file +}), 'CloudDownload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDownloadOutlined.js b/packages/material-ui-icons/lib/CloudDownloadOutlined.js index 7f21c03617c153..9cd51eb2b271d0 100644 --- a/packages/material-ui-icons/lib/CloudDownloadOutlined.js +++ b/packages/material-ui-icons/lib/CloudDownloadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z" -}), 'CloudDownloadOutlined'); \ No newline at end of file +}), 'CloudDownloadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDownloadRounded.js b/packages/material-ui-icons/lib/CloudDownloadRounded.js index 4fedd29a80b6be..36634aca9ddd2b 100644 --- a/packages/material-ui-icons/lib/CloudDownloadRounded.js +++ b/packages/material-ui-icons/lib/CloudDownloadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-4.65 4.65c-.2.2-.51.2-.71 0L7 13h3V9h4v4h3z" -}), 'CloudDownloadRounded'); \ No newline at end of file +}), 'CloudDownloadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDownloadSharp.js b/packages/material-ui-icons/lib/CloudDownloadSharp.js index 5a84a1c9cb2b25..48f00d10f3a00b 100644 --- a/packages/material-ui-icons/lib/CloudDownloadSharp.js +++ b/packages/material-ui-icons/lib/CloudDownloadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" -}), 'CloudDownloadSharp'); \ No newline at end of file +}), 'CloudDownloadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudDownloadTwoTone.js b/packages/material-ui-icons/lib/CloudDownloadTwoTone.js index 043fc50bb7ca28..746aa9d4beb4f5 100644 --- a/packages/material-ui-icons/lib/CloudDownloadTwoTone.js +++ b/packages/material-ui-icons/lib/CloudDownloadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM12 17l-4-4h2.55v-3h2.91v3H16l-4 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z" -}, "1")], 'CloudDownloadTwoTone'); \ No newline at end of file +}, "1")], 'CloudDownloadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudOff.js b/packages/material-ui-icons/lib/CloudOff.js index b51f7ba8c3eae2..5fd7d527d3830c 100644 --- a/packages/material-ui-icons/lib/CloudOff.js +++ b/packages/material-ui-icons/lib/CloudOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.48 0-2.85.43-4.01 1.17l1.46 1.46C10.21 6.23 11.08 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 1.13-.64 2.11-1.56 2.62l1.45 1.45C23.16 18.16 24 16.68 24 15c0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.75 2.74C2.56 8.15 0 10.77 0 14c0 3.31 2.69 6 6 6h11.73l2 2L21 20.73 4.27 4 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z" -}), 'CloudOff'); \ No newline at end of file +}), 'CloudOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudOffOutlined.js b/packages/material-ui-icons/lib/CloudOffOutlined.js index f614573be45d53..f2eaefd45197e2 100644 --- a/packages/material-ui-icons/lib/CloudOffOutlined.js +++ b/packages/material-ui-icons/lib/CloudOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86 3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" -}), 'CloudOffOutlined'); \ No newline at end of file +}), 'CloudOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudOffRounded.js b/packages/material-ui-icons/lib/CloudOffRounded.js index f4cb4a8da735f1..2f06b869a350e3 100644 --- a/packages/material-ui-icons/lib/CloudOffRounded.js +++ b/packages/material-ui-icons/lib/CloudOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM3.71 4.56c-.39.39-.39 1.02 0 1.41l2.06 2.06h-.42c-3.28.35-5.76 3.34-5.29 6.79C.46 17.84 3.19 20 6.22 20h11.51l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 4.56a.9959.9959 0 0 0-1.41 0zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" -}), 'CloudOffRounded'); \ No newline at end of file +}), 'CloudOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudOffSharp.js b/packages/material-ui-icons/lib/CloudOffSharp.js index b7f6adb81f16e5..d96a62dde5d761 100644 --- a/packages/material-ui-icons/lib/CloudOffSharp.js +++ b/packages/material-ui-icons/lib/CloudOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86 3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" -}), 'CloudOffSharp'); \ No newline at end of file +}), 'CloudOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudOffTwoTone.js b/packages/material-ui-icons/lib/CloudOffTwoTone.js index 4c12e23f8ba7b0..f63ad3344138e6 100644 --- a/packages/material-ui-icons/lib/CloudOffTwoTone.js +++ b/packages/material-ui-icons/lib/CloudOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 15c0-1.66-1.34-3-3-3h-1.5v-.5C17.5 8.46 15.04 6 12 6c-.77 0-1.49.17-2.16.46L20.79 17.4c.73-.55 1.21-1.41 1.21-2.4zM2 14c0 2.21 1.79 4 4 4h9.73l-8-8H6c-2.21 0-4 1.79-4 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81 0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z" -}, "1")], 'CloudOffTwoTone'); \ No newline at end of file +}, "1")], 'CloudOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudOutlined.js b/packages/material-ui-icons/lib/CloudOutlined.js index a0473bd6f36ed1..4b412bb8681614 100644 --- a/packages/material-ui-icons/lib/CloudOutlined.js +++ b/packages/material-ui-icons/lib/CloudOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6m0-2C9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4z" -}), 'CloudOutlined'); \ No newline at end of file +}), 'CloudOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudQueue.js b/packages/material-ui-icons/lib/CloudQueue.js index d0c3f08358591e..4c1bbfee62455c 100644 --- a/packages/material-ui-icons/lib/CloudQueue.js +++ b/packages/material-ui-icons/lib/CloudQueue.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" -}), 'CloudQueue'); \ No newline at end of file +}), 'CloudQueue'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudQueueOutlined.js b/packages/material-ui-icons/lib/CloudQueueOutlined.js index df60f286279d64..6a915e467bab4e 100644 --- a/packages/material-ui-icons/lib/CloudQueueOutlined.js +++ b/packages/material-ui-icons/lib/CloudQueueOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" -}), 'CloudQueueOutlined'); \ No newline at end of file +}), 'CloudQueueOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudQueueRounded.js b/packages/material-ui-icons/lib/CloudQueueRounded.js index 6a705e512bdac2..58b265f24a2772 100644 --- a/packages/material-ui-icons/lib/CloudQueueRounded.js +++ b/packages/material-ui-icons/lib/CloudQueueRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" -}), 'CloudQueueRounded'); \ No newline at end of file +}), 'CloudQueueRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudQueueSharp.js b/packages/material-ui-icons/lib/CloudQueueSharp.js index 631f6bdbe07f2a..bab1964c93218c 100644 --- a/packages/material-ui-icons/lib/CloudQueueSharp.js +++ b/packages/material-ui-icons/lib/CloudQueueSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" -}), 'CloudQueueSharp'); \ No newline at end of file +}), 'CloudQueueSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudQueueTwoTone.js b/packages/material-ui-icons/lib/CloudQueueTwoTone.js index 9ac6f4aedd9868..12c62a91a8d4b6 100644 --- a/packages/material-ui-icons/lib/CloudQueueTwoTone.js +++ b/packages/material-ui-icons/lib/CloudQueueTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h-1.5v-.5C17.5 8.46 15.04 6 12 6c-2.52 0-4.63 1.69-5.29 4H6c-2.21 0-4 1.79-4 4s1.79 4 4 4h13c1.66 0 3-1.34 3-3s-1.34-3-3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" -}, "1")], 'CloudQueueTwoTone'); \ No newline at end of file +}, "1")], 'CloudQueueTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudRounded.js b/packages/material-ui-icons/lib/CloudRounded.js index e70203bdb4c4c3..f8e217c97401cf 100644 --- a/packages/material-ui-icons/lib/CloudRounded.js +++ b/packages/material-ui-icons/lib/CloudRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" -}), 'CloudRounded'); \ No newline at end of file +}), 'CloudRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudSharp.js b/packages/material-ui-icons/lib/CloudSharp.js index 68c71a910fbef0..e0b8d489d6e262 100644 --- a/packages/material-ui-icons/lib/CloudSharp.js +++ b/packages/material-ui-icons/lib/CloudSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" -}), 'CloudSharp'); \ No newline at end of file +}), 'CloudSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudTwoTone.js b/packages/material-ui-icons/lib/CloudTwoTone.js index b9a0f31d6c1657..23ca290496b707 100644 --- a/packages/material-ui-icons/lib/CloudTwoTone.js +++ b/packages/material-ui-icons/lib/CloudTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z" -}, "1")], 'CloudTwoTone'); \ No newline at end of file +}, "1")], 'CloudTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudUpload.js b/packages/material-ui-icons/lib/CloudUpload.js index 2e56e86ec5e509..5e9879f4e33c1f 100644 --- a/packages/material-ui-icons/lib/CloudUpload.js +++ b/packages/material-ui-icons/lib/CloudUpload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" -}), 'CloudUpload'); \ No newline at end of file +}), 'CloudUpload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudUploadOutlined.js b/packages/material-ui-icons/lib/CloudUploadOutlined.js index 19703455126919..28567e4654d658 100644 --- a/packages/material-ui-icons/lib/CloudUploadOutlined.js +++ b/packages/material-ui-icons/lib/CloudUploadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" -}), 'CloudUploadOutlined'); \ No newline at end of file +}), 'CloudUploadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudUploadRounded.js b/packages/material-ui-icons/lib/CloudUploadRounded.js index d93308507876fa..2b10653b998808 100644 --- a/packages/material-ui-icons/lib/CloudUploadRounded.js +++ b/packages/material-ui-icons/lib/CloudUploadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l4.65-4.65c.2-.2.51-.2.71 0L17 13h-3z" -}), 'CloudUploadRounded'); \ No newline at end of file +}), 'CloudUploadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudUploadSharp.js b/packages/material-ui-icons/lib/CloudUploadSharp.js index 7cee333bc8ec71..2a9de4d1a6a878 100644 --- a/packages/material-ui-icons/lib/CloudUploadSharp.js +++ b/packages/material-ui-icons/lib/CloudUploadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" -}), 'CloudUploadSharp'); \ No newline at end of file +}), 'CloudUploadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CloudUploadTwoTone.js b/packages/material-ui-icons/lib/CloudUploadTwoTone.js index f8beaa334ae59b..a0b5c6da98b46e 100644 --- a/packages/material-ui-icons/lib/CloudUploadTwoTone.js +++ b/packages/material-ui-icons/lib/CloudUploadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" -}, "1")], 'CloudUploadTwoTone'); \ No newline at end of file +}, "1")], 'CloudUploadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Code.js b/packages/material-ui-icons/lib/Code.js index d74e3e32be1f51..8111e4b7fdabe9 100644 --- a/packages/material-ui-icons/lib/Code.js +++ b/packages/material-ui-icons/lib/Code.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" -}), 'Code'); \ No newline at end of file +}), 'Code'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeOff.js b/packages/material-ui-icons/lib/CodeOff.js index 94d168cb54968e..75df076ee9bb5b 100644 --- a/packages/material-ui-icons/lib/CodeOff.js +++ b/packages/material-ui-icons/lib/CodeOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" -}), 'CodeOff'); \ No newline at end of file +}), 'CodeOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeOffOutlined.js b/packages/material-ui-icons/lib/CodeOffOutlined.js index 12a5edb4b051f5..625297acd7cbcf 100644 --- a/packages/material-ui-icons/lib/CodeOffOutlined.js +++ b/packages/material-ui-icons/lib/CodeOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" -}), 'CodeOffOutlined'); \ No newline at end of file +}), 'CodeOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeOffRounded.js b/packages/material-ui-icons/lib/CodeOffRounded.js index 56a88dcf979943..7eab65a460fe7f 100644 --- a/packages/material-ui-icons/lib/CodeOffRounded.js +++ b/packages/material-ui-icons/lib/CodeOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.17 12-3.88-3.88a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l4.59 4.59c.39.39.39 1.02 0 1.41l-2.88 2.88L17 14.17 19.17 12zM2.1 4.93l3.49 3.49-2.88 2.88c-.39.39-.39 1.02 0 1.41L7.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.83 12 7 9.83 19.07 21.9c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42z" -}), 'CodeOffRounded'); \ No newline at end of file +}), 'CodeOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeOffSharp.js b/packages/material-ui-icons/lib/CodeOffSharp.js index c58eb5947ac53f..739060d5308cc8 100644 --- a/packages/material-ui-icons/lib/CodeOffSharp.js +++ b/packages/material-ui-icons/lib/CodeOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" -}), 'CodeOffSharp'); \ No newline at end of file +}), 'CodeOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeOffTwoTone.js b/packages/material-ui-icons/lib/CodeOffTwoTone.js index 7523f1ff86fd37..fe5ee748f93a99 100644 --- a/packages/material-ui-icons/lib/CodeOffTwoTone.js +++ b/packages/material-ui-icons/lib/CodeOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" -}), 'CodeOffTwoTone'); \ No newline at end of file +}), 'CodeOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeOutlined.js b/packages/material-ui-icons/lib/CodeOutlined.js index 9d593de0cf5d41..8f22e5cbc61f99 100644 --- a/packages/material-ui-icons/lib/CodeOutlined.js +++ b/packages/material-ui-icons/lib/CodeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" -}), 'CodeOutlined'); \ No newline at end of file +}), 'CodeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeRounded.js b/packages/material-ui-icons/lib/CodeRounded.js index c6ff71349c5884..1067c2cf52c902 100644 --- a/packages/material-ui-icons/lib/CodeRounded.js +++ b/packages/material-ui-icons/lib/CodeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.7 15.9 4.8 12l3.9-3.9c.39-.39.39-1.01 0-1.4a.9839.9839 0 0 0-1.4 0l-4.59 4.59c-.39.39-.39 1.02 0 1.41l4.59 4.6c.39.39 1.01.39 1.4 0 .39-.39.39-1.01 0-1.4zm6.6 0 3.9-3.9-3.9-3.9a.9839.9839 0 0 1 0-1.4c.39-.39 1.01-.39 1.4 0l4.59 4.59c.39.39.39 1.02 0 1.41l-4.59 4.6c-.39.39-1.01.39-1.4 0a.9839.9839 0 0 1 0-1.4z" -}), 'CodeRounded'); \ No newline at end of file +}), 'CodeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeSharp.js b/packages/material-ui-icons/lib/CodeSharp.js index 2869d23f4caac6..4db11f92aa5595 100644 --- a/packages/material-ui-icons/lib/CodeSharp.js +++ b/packages/material-ui-icons/lib/CodeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" -}), 'CodeSharp'); \ No newline at end of file +}), 'CodeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CodeTwoTone.js b/packages/material-ui-icons/lib/CodeTwoTone.js index bed13373961092..0a390a5bb0384c 100644 --- a/packages/material-ui-icons/lib/CodeTwoTone.js +++ b/packages/material-ui-icons/lib/CodeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" -}), 'CodeTwoTone'); \ No newline at end of file +}), 'CodeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Coffee.js b/packages/material-ui-icons/lib/Coffee.js index 6cf27029463e98..d4e4c797f0b0a9 100644 --- a/packages/material-ui-icons/lib/Coffee.js +++ b/packages/material-ui-icons/lib/Coffee.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z" -}), 'Coffee'); \ No newline at end of file +}), 'Coffee'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeMaker.js b/packages/material-ui-icons/lib/CoffeeMaker.js index 31eaa504084a80..f991dc5bcca513 100644 --- a/packages/material-ui-icons/lib/CoffeeMaker.js +++ b/packages/material-ui-icons/lib/CoffeeMaker.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "9", r: "1" -}, "1")], 'CoffeeMaker'); \ No newline at end of file +}, "1")], 'CoffeeMaker'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeMakerOutlined.js b/packages/material-ui-icons/lib/CoffeeMakerOutlined.js index 93752ba0bb8548..baaeacf3286dff 100644 --- a/packages/material-ui-icons/lib/CoffeeMakerOutlined.js +++ b/packages/material-ui-icons/lib/CoffeeMakerOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1zm-8 10v-3h6v3c0 1.65-1.35 3-3 3s-3-1.35-3-3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "9", r: "1" -}, "1")], 'CoffeeMakerOutlined'); \ No newline at end of file +}, "1")], 'CoffeeMakerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeMakerRounded.js b/packages/material-ui-icons/lib/CoffeeMakerRounded.js index 490cd0d8a7642f..df47ccb9576524 100644 --- a/packages/material-ui-icons/lib/CoffeeMakerRounded.js +++ b/packages/material-ui-icons/lib/CoffeeMakerRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6V4h1c.55 0 1-.45 1-1s-.45-1-1-1H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1h-3.03c1.23-.91 2.03-2.36 2.03-4v-3c0-1.1-.9-2-2-2h-6c-1.1 0-2 .9-2 2v3c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "9", r: "1" -}, "1")], 'CoffeeMakerRounded'); \ No newline at end of file +}, "1")], 'CoffeeMakerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeMakerSharp.js b/packages/material-ui-icons/lib/CoffeeMakerSharp.js index 2fb2616df82cf9..5081d2d40d5d4d 100644 --- a/packages/material-ui-icons/lib/CoffeeMakerSharp.js +++ b/packages/material-ui-icons/lib/CoffeeMakerSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7V4h2V2H4v20h16v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v3h10z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "9", r: "1" -}, "1")], 'CoffeeMakerSharp'); \ No newline at end of file +}, "1")], 'CoffeeMakerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeMakerTwoTone.js b/packages/material-ui-icons/lib/CoffeeMakerTwoTone.js index dff45338946fc5..f6351080c95cb4 100644 --- a/packages/material-ui-icons/lib/CoffeeMakerTwoTone.js +++ b/packages/material-ui-icons/lib/CoffeeMakerTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 19c1.65 0 3-1.35 3-3v-3h-6v3c0 1.65 1.35 3 3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7h8c.55 0 1-.45 1-1V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1zm1 9v-3h6v3c0 1.65-1.35 3-3 3s-3-1.35-3-3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13", cy: "9", r: "1" -}, "2")], 'CoffeeMakerTwoTone'); \ No newline at end of file +}, "2")], 'CoffeeMakerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeOutlined.js b/packages/material-ui-icons/lib/CoffeeOutlined.js index d2962a85bd2b05..3d2aaf1238ccd9 100644 --- a/packages/material-ui-icons/lib/CoffeeOutlined.js +++ b/packages/material-ui-icons/lib/CoffeeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 5v3H6V5h10zm0 5v1c0 2.76-2.24 5-5 5s-5-2.24-5-5v-1m12.5-2H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z" -}), 'CoffeeOutlined'); \ No newline at end of file +}), 'CoffeeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeRounded.js b/packages/material-ui-icons/lib/CoffeeRounded.js index 5f1c37caf66108..2ff8c169d1e514 100644 --- a/packages/material-ui-icons/lib/CoffeeRounded.js +++ b/packages/material-ui-icons/lib/CoffeeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM5 19h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'CoffeeRounded'); \ No newline at end of file +}), 'CoffeeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeSharp.js b/packages/material-ui-icons/lib/CoffeeSharp.js index abaf3b95444c43..1405e6729321ec 100644 --- a/packages/material-ui-icons/lib/CoffeeSharp.js +++ b/packages/material-ui-icons/lib/CoffeeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 3H4v8c0 3.87 3.13 7 7 7s7-3.13 7-7v-1h.4c1.67 0 3.19-1.13 3.52-2.77C22.39 4.98 20.67 3 18.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z" -}), 'CoffeeSharp'); \ No newline at end of file +}), 'CoffeeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoffeeTwoTone.js b/packages/material-ui-icons/lib/CoffeeTwoTone.js index 00b6877bdd0b0b..c221a9e95d4299 100644 --- a/packages/material-ui-icons/lib/CoffeeTwoTone.js +++ b/packages/material-ui-icons/lib/CoffeeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 11c0 2.76 2.24 5 5 5s5-2.24 5-5v-1H6v1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h16v2H4zM18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 11c0 2.76-2.24 5-5 5s-5-2.24-5-5v-1h10v1zm0-3H6V5h10v3zm2.5 0H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8z" -}, "1")], 'CoffeeTwoTone'); \ No newline at end of file +}, "1")], 'CoffeeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Collections.js b/packages/material-ui-icons/lib/Collections.js index 47e8fd4a08b586..78e3fd574ee91d 100644 --- a/packages/material-ui-icons/lib/Collections.js +++ b/packages/material-ui-icons/lib/Collections.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4 2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" -}), 'Collections'); \ No newline at end of file +}), 'Collections'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsBookmark.js b/packages/material-ui-icons/lib/CollectionsBookmark.js index 7af66b810ed83d..99e21c4c1f7688 100644 --- a/packages/material-ui-icons/lib/CollectionsBookmark.js +++ b/packages/material-ui-icons/lib/CollectionsBookmark.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10-2.5-1.5L15 12V4h5v8z" -}, "1")], 'CollectionsBookmark'); \ No newline at end of file +}, "1")], 'CollectionsBookmark'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsBookmarkOutlined.js b/packages/material-ui-icons/lib/CollectionsBookmarkOutlined.js index 5726b1e2827b40..8b0d9704ad1ab2 100644 --- a/packages/material-ui-icons/lib/CollectionsBookmarkOutlined.js +++ b/packages/material-ui-icons/lib/CollectionsBookmarkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 2v5l-1-.75L15 9V4h2zm3 12H8V4h5v9l3-2.25L19 13V4h1v12z" -}), 'CollectionsBookmarkOutlined'); \ No newline at end of file +}), 'CollectionsBookmarkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsBookmarkRounded.js b/packages/material-ui-icons/lib/CollectionsBookmarkRounded.js index 7d4739716f5c87..d5706301aadb01 100644 --- a/packages/material-ui-icons/lib/CollectionsBookmarkRounded.js +++ b/packages/material-ui-icons/lib/CollectionsBookmarkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1zm3-18H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10-2.5-1.5L15 12V4h5v8z" -}), 'CollectionsBookmarkRounded'); \ No newline at end of file +}), 'CollectionsBookmarkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsBookmarkSharp.js b/packages/material-ui-icons/lib/CollectionsBookmarkSharp.js index 478b7b71e36dfd..609f76217faf17 100644 --- a/packages/material-ui-icons/lib/CollectionsBookmarkSharp.js +++ b/packages/material-ui-icons/lib/CollectionsBookmarkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-2 10-2.5-1.5L15 12V4h5v8z" -}), 'CollectionsBookmarkSharp'); \ No newline at end of file +}), 'CollectionsBookmarkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsBookmarkTwoTone.js b/packages/material-ui-icons/lib/CollectionsBookmarkTwoTone.js index 00f74eeafcabe4..8ad7dc07d39619 100644 --- a/packages/material-ui-icons/lib/CollectionsBookmarkTwoTone.js +++ b/packages/material-ui-icons/lib/CollectionsBookmarkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-1v9l-3-2.25L13 13V4H8v12h12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm18-6V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM15 4h2v5l-1-.75L15 9V4zM8 4h5v9l3-2.25L19 13V4h1v12H8V4z" -}, "1")], 'CollectionsBookmarkTwoTone'); \ No newline at end of file +}, "1")], 'CollectionsBookmarkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsOutlined.js b/packages/material-ui-icons/lib/CollectionsOutlined.js index d3e9fad778e79d..110a1c5d8a7ff9 100644 --- a/packages/material-ui-icons/lib/CollectionsOutlined.js +++ b/packages/material-ui-icons/lib/CollectionsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67 1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" -}), 'CollectionsOutlined'); \ No newline at end of file +}), 'CollectionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsRounded.js b/packages/material-ui-icons/lib/CollectionsRounded.js index a5762ed68e77aa..2d65bd8e378f86 100644 --- a/packages/material-ui-icons/lib/CollectionsRounded.js +++ b/packages/material-ui-icons/lib/CollectionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-10.6-3.47 1.63 2.18 2.58-3.22c.2-.25.58-.25.78 0l2.96 3.7c.26.33.03.81-.39.81H9c-.41 0-.65-.47-.4-.8l2-2.67c.2-.26.6-.26.8 0zM2 7v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'CollectionsRounded'); \ No newline at end of file +}), 'CollectionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsSharp.js b/packages/material-ui-icons/lib/CollectionsSharp.js index 4589cba05486c7..cc3b11999168f3 100644 --- a/packages/material-ui-icons/lib/CollectionsSharp.js +++ b/packages/material-ui-icons/lib/CollectionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18V2H6v16h16zm-11-6 2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z" -}), 'CollectionsSharp'); \ No newline at end of file +}), 'CollectionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CollectionsTwoTone.js b/packages/material-ui-icons/lib/CollectionsTwoTone.js index 8ce22dbd3d16b4..0a5ca6f3fdc65a 100644 --- a/packages/material-ui-icons/lib/CollectionsTwoTone.js +++ b/packages/material-ui-icons/lib/CollectionsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm3.5-4.33 1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-4.33-5.17-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z" -}, "1")], 'CollectionsTwoTone'); \ No newline at end of file +}, "1")], 'CollectionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorLens.js b/packages/material-ui-icons/lib/ColorLens.js index b059ffdc36b14b..2874b9a0ae0ed6 100644 --- a/packages/material-ui-icons/lib/ColorLens.js +++ b/packages/material-ui-icons/lib/ColorLens.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'ColorLens'); \ No newline at end of file +}), 'ColorLens'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorLensOutlined.js b/packages/material-ui-icons/lib/ColorLensOutlined.js index ce3c8b7197a736..7931cf05eb9e1a 100644 --- a/packages/material-ui-icons/lib/ColorLensOutlined.js +++ b/packages/material-ui-icons/lib/ColorLensOutlined.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "11.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "7.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "7.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "11.5", r: "1.5" -}, "4")], 'ColorLensOutlined'); \ No newline at end of file +}, "4")], 'ColorLensOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorLensRounded.js b/packages/material-ui-icons/lib/ColorLensRounded.js index 6cdb9ad5e98b75..94dca173837f05 100644 --- a/packages/material-ui-icons/lib/ColorLensRounded.js +++ b/packages/material-ui-icons/lib/ColorLensRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'ColorLensRounded'); \ No newline at end of file +}), 'ColorLensRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorLensSharp.js b/packages/material-ui-icons/lib/ColorLensSharp.js index 63c17f8ab09c95..7375dc7be1d69d 100644 --- a/packages/material-ui-icons/lib/ColorLensSharp.js +++ b/packages/material-ui-icons/lib/ColorLensSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'ColorLensSharp'); \ No newline at end of file +}), 'ColorLensSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorLensTwoTone.js b/packages/material-ui-icons/lib/ColorLensTwoTone.js index ab1925d4d0d1bb..30ccc51f16fbb6 100644 --- a/packages/material-ui-icons/lib/ColorLensTwoTone.js +++ b/packages/material-ui-icons/lib/ColorLensTwoTone.js @@ -1,24 +1,37 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "11.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "7.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "7.5", r: "1.5" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "11.5", r: "1.5" -}, "5")], 'ColorLensTwoTone'); \ No newline at end of file +}, "5")], 'ColorLensTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Colorize.js b/packages/material-ui-icons/lib/Colorize.js index af09aae7c74eac..e54c520bd94b3e 100644 --- a/packages/material-ui-icons/lib/Colorize.js +++ b/packages/material-ui-icons/lib/Colorize.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.71 5.63-2.34-2.34a.9959.9959 0 0 0-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" -}), 'Colorize'); \ No newline at end of file +}), 'Colorize'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorizeOutlined.js b/packages/material-ui-icons/lib/ColorizeOutlined.js index 5eff1be14c16dd..fc35ed7d82fbf0 100644 --- a/packages/material-ui-icons/lib/ColorizeOutlined.js +++ b/packages/material-ui-icons/lib/ColorizeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 5.41.92.92-2.69 2.69-.92-.92 2.69-2.69M17.67 3c-.26 0-.51.1-.71.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42l-2.34-2.34c-.2-.19-.45-.29-.7-.29zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" -}), 'ColorizeOutlined'); \ No newline at end of file +}), 'ColorizeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorizeRounded.js b/packages/material-ui-icons/lib/ColorizeRounded.js index ed583c782ee5c6..20b300f75edbe6 100644 --- a/packages/material-ui-icons/lib/ColorizeRounded.js +++ b/packages/material-ui-icons/lib/ColorizeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.71 5.63-2.34-2.34a.9959.9959 0 0 0-1.41 0l-3.12 3.12-1.23-1.21c-.39-.39-1.02-.38-1.41 0-.39.39-.39 1.02 0 1.41l.72.72-8.77 8.77c-.1.1-.15.22-.15.36v4.04c0 .28.22.5.5.5h4.04c.13 0 .26-.05.35-.15l8.77-8.77.72.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.22-1.22 3.12-3.12c.41-.4.41-1.03.02-1.42zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" -}), 'ColorizeRounded'); \ No newline at end of file +}), 'ColorizeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorizeSharp.js b/packages/material-ui-icons/lib/ColorizeSharp.js index c61e3c95c6d663..6e1a70d7803c13 100644 --- a/packages/material-ui-icons/lib/ColorizeSharp.js +++ b/packages/material-ui-icons/lib/ColorizeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.42 6.34-3.75-3.75-3.82 3.82-1.94-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.84-3.83zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" -}), 'ColorizeSharp'); \ No newline at end of file +}), 'ColorizeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ColorizeTwoTone.js b/packages/material-ui-icons/lib/ColorizeTwoTone.js index a36b2aa1854a19..f24a087e3b5737 100644 --- a/packages/material-ui-icons/lib/ColorizeTwoTone.js +++ b/packages/material-ui-icons/lib/ColorizeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.896 9.023-.92-.92L17.67 5.41l.92.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.71 5.63-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19zm8.98-9.97-.93-.93 2.69-2.69.92.92-2.68 2.7z" -}, "1")], 'ColorizeTwoTone'); \ No newline at end of file +}, "1")], 'ColorizeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Comment.js b/packages/material-ui-icons/lib/Comment.js index 46537135e41ccc..e280a953e8aed3 100644 --- a/packages/material-ui-icons/lib/Comment.js +++ b/packages/material-ui-icons/lib/Comment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" -}), 'Comment'); \ No newline at end of file +}), 'Comment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentBank.js b/packages/material-ui-icons/lib/CommentBank.js index 420933e41b0e63..92a1a38f5ebada 100644 --- a/packages/material-ui-icons/lib/CommentBank.js +++ b/packages/material-ui-icons/lib/CommentBank.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 11-2.5-1.5L14 13V5h5v8z" -}), 'CommentBank'); \ No newline at end of file +}), 'CommentBank'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentBankOutlined.js b/packages/material-ui-icons/lib/CommentBankOutlined.js index b050fbeec2f93f..1f9a9b0555021a 100644 --- a/packages/material-ui-icons/lib/CommentBankOutlined.js +++ b/packages/material-ui-icons/lib/CommentBankOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14V6h-5v8l2.5-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" -}, "1")], 'CommentBankOutlined'); \ No newline at end of file +}, "1")], 'CommentBankOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentBankRounded.js b/packages/material-ui-icons/lib/CommentBankRounded.js index 4ab2faea4f92d1..10017478b329cc 100644 --- a/packages/material-ui-icons/lib/CommentBankRounded.js +++ b/packages/material-ui-icons/lib/CommentBankRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1.76 9.55L16.5 10.5l-1.74 1.05c-.33.2-.76-.04-.76-.43V4h5v7.12c0 .39-.42.63-.76.43z" -}), 'CommentBankRounded'); \ No newline at end of file +}), 'CommentBankRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentBankSharp.js b/packages/material-ui-icons/lib/CommentBankSharp.js index 8b1ac3e8cb7728..1e44e8432f4eef 100644 --- a/packages/material-ui-icons/lib/CommentBankSharp.js +++ b/packages/material-ui-icons/lib/CommentBankSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 2v20l4-4h16V2H2zm17 11-2.5-1.5L14 13V5h5v8z" -}), 'CommentBankSharp'); \ No newline at end of file +}), 'CommentBankSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentBankTwoTone.js b/packages/material-ui-icons/lib/CommentBankTwoTone.js index 40a524fb579aa2..54ff784091a884 100644 --- a/packages/material-ui-icons/lib/CommentBankTwoTone.js +++ b/packages/material-ui-icons/lib/CommentBankTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 18 2-2h14V4H4v14zm9-12h5v8l-2.5-1.5L13 14V6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14V6h-5v8l2.5-1.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" -}, "2")], 'CommentBankTwoTone'); \ No newline at end of file +}, "2")], 'CommentBankTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentOutlined.js b/packages/material-ui-icons/lib/CommentOutlined.js index 2d054c1d17b501..82648c63d636b2 100644 --- a/packages/material-ui-icons/lib/CommentOutlined.js +++ b/packages/material-ui-icons/lib/CommentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM20 4v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" -}), 'CommentOutlined'); \ No newline at end of file +}), 'CommentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentRounded.js b/packages/material-ui-icons/lib/CommentRounded.js index 430c2ed8918ed2..e4ff5bf9668872 100644 --- a/packages/material-ui-icons/lib/CommentRounded.js +++ b/packages/material-ui-icons/lib/CommentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 14H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'CommentRounded'); \ No newline at end of file +}), 'CommentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentSharp.js b/packages/material-ui-icons/lib/CommentSharp.js index 9532c17db4e10d..250910caaee9d8 100644 --- a/packages/material-ui-icons/lib/CommentSharp.js +++ b/packages/material-ui-icons/lib/CommentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 2H2v16h16l4 4-.01-20zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" -}), 'CommentSharp'); \ No newline at end of file +}), 'CommentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommentTwoTone.js b/packages/material-ui-icons/lib/CommentTwoTone.js index dda741c8c874ea..6af3e4d5fcb81a 100644 --- a/packages/material-ui-icons/lib/CommentTwoTone.js +++ b/packages/material-ui-icons/lib/CommentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17.17V4H4v12h14.83L20 17.17zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h14l4 4-.01-18c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 4h16v13.17L18.83 16H4V4zm2 8h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" -}, "1")], 'CommentTwoTone'); \ No newline at end of file +}, "1")], 'CommentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Commute.js b/packages/material-ui-icons/lib/Commute.js index b8f1b6621df3a0..467877ca78c897 100644 --- a/packages/material-ui-icons/lib/Commute.js +++ b/packages/material-ui-icons/lib/Commute.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2.03L9 18v-5H4V5.98L13 6v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 13.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'Commute'); \ No newline at end of file +}), 'Commute'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommuteOutlined.js b/packages/material-ui-icons/lib/CommuteOutlined.js index 833bd11c9935bc..002479e666e0d4 100644 --- a/packages/material-ui-icons/lib/CommuteOutlined.js +++ b/packages/material-ui-icons/lib/CommuteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'CommuteOutlined'); \ No newline at end of file +}), 'CommuteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommuteRounded.js b/packages/material-ui-icons/lib/CommuteRounded.js index 0ddf4ec4995656..3276dbb2db38c4 100644 --- a/packages/material-ui-icons/lib/CommuteRounded.js +++ b/packages/material-ui-icons/lib/CommuteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-.77.77c-.28.28-.28.72 0 1s.72.28 1 0L7 18h2v-5H4.5c-.28 0-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5h8c.28 0 .5.22.5.5V8h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.24c0 .55.45.99 1 .99s1-.45 1-1v-1h8v1c0 .55.45 1 1 1s.99-.44 1-.99L22 13.77l-1.43-4.11zm-7.8.34h6.48c.21 0 .4.14.47.34l.69 2c.11.32-.13.66-.47.66h-7.85c-.34 0-.58-.34-.47-.66l.69-2c.05-.2.24-.34.46-.34zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'CommuteRounded'); \ No newline at end of file +}), 'CommuteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommuteSharp.js b/packages/material-ui-icons/lib/CommuteSharp.js index bdfab6009aa598..081e1d3ea10a02 100644 --- a/packages/material-ui-icons/lib/CommuteSharp.js +++ b/packages/material-ui-icons/lib/CommuteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'CommuteSharp'); \ No newline at end of file +}), 'CommuteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CommuteTwoTone.js b/packages/material-ui-icons/lib/CommuteTwoTone.js index 6f25854f4bc45f..e102179caff098 100644 --- a/packages/material-ui-icons/lib/CommuteTwoTone.js +++ b/packages/material-ui-icons/lib/CommuteTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'CommuteTwoTone'); \ No newline at end of file +}), 'CommuteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Compare.js b/packages/material-ui-icons/lib/Compare.js index 0edf8e8be339ee..3cf4b916c53ffc 100644 --- a/packages/material-ui-icons/lib/Compare.js +++ b/packages/material-ui-icons/lib/Compare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'Compare'); \ No newline at end of file +}), 'Compare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareArrows.js b/packages/material-ui-icons/lib/CompareArrows.js index 165f146f7b37d9..d058b6a2f99dc5 100644 --- a/packages/material-ui-icons/lib/CompareArrows.js +++ b/packages/material-ui-icons/lib/CompareArrows.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" -}), 'CompareArrows'); \ No newline at end of file +}), 'CompareArrows'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareArrowsOutlined.js b/packages/material-ui-icons/lib/CompareArrowsOutlined.js index 1b8475c9127bee..1658e00b42df72 100644 --- a/packages/material-ui-icons/lib/CompareArrowsOutlined.js +++ b/packages/material-ui-icons/lib/CompareArrowsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" -}), 'CompareArrowsOutlined'); \ No newline at end of file +}), 'CompareArrowsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareArrowsRounded.js b/packages/material-ui-icons/lib/CompareArrowsRounded.js index 5a93323d569b24..97b6df2903ca77 100644 --- a/packages/material-ui-icons/lib/CompareArrowsRounded.js +++ b/packages/material-ui-icons/lib/CompareArrowsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.01 14H3c-.55 0-1 .45-1 1s.45 1 1 1h6.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35V14zm5.98-2.21V10H21c.55 0 1-.45 1-1s-.45-1-1-1h-6.01V6.21c0-.45-.54-.67-.85-.35l-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.31.85.09.85-.36z" -}), 'CompareArrowsRounded'); \ No newline at end of file +}), 'CompareArrowsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareArrowsSharp.js b/packages/material-ui-icons/lib/CompareArrowsSharp.js index 49b60f402fdae5..41e350c499f6e7 100644 --- a/packages/material-ui-icons/lib/CompareArrowsSharp.js +++ b/packages/material-ui-icons/lib/CompareArrowsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" -}), 'CompareArrowsSharp'); \ No newline at end of file +}), 'CompareArrowsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareArrowsTwoTone.js b/packages/material-ui-icons/lib/CompareArrowsTwoTone.js index c21d604f2b8718..b3e46d53a320ec 100644 --- a/packages/material-ui-icons/lib/CompareArrowsTwoTone.js +++ b/packages/material-ui-icons/lib/CompareArrowsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" -}), 'CompareArrowsTwoTone'); \ No newline at end of file +}), 'CompareArrowsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareOutlined.js b/packages/material-ui-icons/lib/CompareOutlined.js index ce5799bbdf0225..6a0d633902ef8c 100644 --- a/packages/material-ui-icons/lib/CompareOutlined.js +++ b/packages/material-ui-icons/lib/CompareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'CompareOutlined'); \ No newline at end of file +}), 'CompareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareRounded.js b/packages/material-ui-icons/lib/CompareRounded.js index 525872162d3173..f4e2bc634beee1 100644 --- a/packages/material-ui-icons/lib/CompareRounded.js +++ b/packages/material-ui-icons/lib/CompareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1zm0 15H5l5-6v6zm9-15h-5v2h4c.55 0 1 .45 1 1v12l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'CompareRounded'); \ No newline at end of file +}), 'CompareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareSharp.js b/packages/material-ui-icons/lib/CompareSharp.js index e8c4244b11d624..07fe7add33c35a 100644 --- a/packages/material-ui-icons/lib/CompareSharp.js +++ b/packages/material-ui-icons/lib/CompareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3H3v18h7v2h2V1h-2v2zm0 15H5l5-6v6zM21 3h-7v2h5v13l-5-6v9h7V3z" -}), 'CompareSharp'); \ No newline at end of file +}), 'CompareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompareTwoTone.js b/packages/material-ui-icons/lib/CompareTwoTone.js index 0fd9aab6e51b75..7ef09b5a00c205 100644 --- a/packages/material-ui-icons/lib/CompareTwoTone.js +++ b/packages/material-ui-icons/lib/CompareTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5h-5v7l5 6zm-9 13v-6l-5 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-2h-2v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1zm-2 17H5l5-6v6z" -}, "1")], 'CompareTwoTone'); \ No newline at end of file +}, "1")], 'CompareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompassCalibration.js b/packages/material-ui-icons/lib/CompassCalibration.js index 3708b887fec391..ae23e115057085 100644 --- a/packages/material-ui-icons/lib/CompassCalibration.js +++ b/packages/material-ui-icons/lib/CompassCalibration.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10.07c1.95 0 3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3S4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08z" -}, "1")], 'CompassCalibration'); \ No newline at end of file +}, "1")], 'CompassCalibration'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompassCalibrationOutlined.js b/packages/material-ui-icons/lib/CompassCalibrationOutlined.js index 510d9c3f169fc2..3e8454482a7927 100644 --- a/packages/material-ui-icons/lib/CompassCalibrationOutlined.js +++ b/packages/material-ui-icons/lib/CompassCalibrationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-17C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3zm4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z" -}), 'CompassCalibrationOutlined'); \ No newline at end of file +}), 'CompassCalibrationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompassCalibrationRounded.js b/packages/material-ui-icons/lib/CompassCalibrationRounded.js index 25a2a1f814b336..404f88f158dc2e 100644 --- a/packages/material-ui-icons/lib/CompassCalibrationRounded.js +++ b/packages/material-ui-icons/lib/CompassCalibrationRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C8.49 3 5.28 4.29 2.8 6.41c-.44.38-.48 1.06-.06 1.48l3.6 3.6c.36.36.92.39 1.32.08 1.2-.94 2.71-1.5 4.34-1.5 1.64 0 3.14.56 4.34 1.49.4.31.96.28 1.31-.08l3.6-3.6c.42-.42.38-1.1-.07-1.48C18.72 4.28 15.51 3 12 3z" -}, "1")], 'CompassCalibrationRounded'); \ No newline at end of file +}, "1")], 'CompassCalibrationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompassCalibrationSharp.js b/packages/material-ui-icons/lib/CompassCalibrationSharp.js index 15ca46be0aaaaf..2d88bc31d3dfcc 100644 --- a/packages/material-ui-icons/lib/CompassCalibrationSharp.js +++ b/packages/material-ui-icons/lib/CompassCalibrationSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3z" -}, "1")], 'CompassCalibrationSharp'); \ No newline at end of file +}, "1")], 'CompassCalibrationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompassCalibrationTwoTone.js b/packages/material-ui-icons/lib/CompassCalibrationTwoTone.js index a41caafcc96808..bff73851546817 100644 --- a/packages/material-ui-icons/lib/CompassCalibrationTwoTone.js +++ b/packages/material-ui-icons/lib/CompassCalibrationTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.94 7.26 2.21 2.21c1.44-.91 3.11-1.4 4.85-1.4 1.74 0 3.41.49 4.84 1.4l2.21-2.21C17 5.79 14.56 5 12 5c-2.56 0-5.01.79-7.06 2.26z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "3", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 17c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-8 0c0-1.65 1.35-3 3-3s3 1.35 3 3-1.35 3-3 3-3-1.35-3-3zM2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3 8.1 3 4.56 4.59 2 7.15zm14.84 2.32c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z" -}, "2")], 'CompassCalibrationTwoTone'); \ No newline at end of file +}, "2")], 'CompassCalibrationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Compress.js b/packages/material-ui-icons/lib/Compress.js index 64824a5296fc44..b5479ae0616689 100644 --- a/packages/material-ui-icons/lib/Compress.js +++ b/packages/material-ui-icons/lib/Compress.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 19h3v3h2v-3h3l-4-4-4 4zm8-15h-3V1h-2v3H8l4 4 4-4zM4 9v2h16V9H4zm0 3h16v2H4z" -}), 'Compress'); \ No newline at end of file +}), 'Compress'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompressOutlined.js b/packages/material-ui-icons/lib/CompressOutlined.js index 5565882f04d90c..5954e1126619a9 100644 --- a/packages/material-ui-icons/lib/CompressOutlined.js +++ b/packages/material-ui-icons/lib/CompressOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9v2h16V9H4zm12-5-1.41-1.41L13 4.17V1h-2v3.19L9.39 2.61 8 4l4 4 4-4zM4 14h16v-2H4v2zm4 5 1.39 1.39L11 18.81V22h2v-3.17l1.59 1.59L16 19l-4-4-4 4z" -}), 'CompressOutlined'); \ No newline at end of file +}), 'CompressOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompressRounded.js b/packages/material-ui-icons/lib/CompressRounded.js index d6296386b99c0b..e7b7579e52d53f 100644 --- a/packages/material-ui-icons/lib/CompressRounded.js +++ b/packages/material-ui-icons/lib/CompressRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1zm10.79-6H13V2c0-.55-.45-1-1-1s-1 .45-1 1v2H9.21c-.45 0-.67.54-.36.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.32-.31.1-.85-.35-.85zM9.21 19H11v2c0 .55.45 1 1 1s1-.45 1-1v-2h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zM5 14h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'CompressRounded'); \ No newline at end of file +}), 'CompressRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompressSharp.js b/packages/material-ui-icons/lib/CompressSharp.js index d96ade83946e09..7d07fa0242faa7 100644 --- a/packages/material-ui-icons/lib/CompressSharp.js +++ b/packages/material-ui-icons/lib/CompressSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h16v2H4zm12-5h-3V1h-2v3H8l4 4zM8 19h3v3h2v-3h3l-4-4zm-4-7h16v2H4z" -}), 'CompressSharp'); \ No newline at end of file +}), 'CompressSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CompressTwoTone.js b/packages/material-ui-icons/lib/CompressTwoTone.js index 295f4d3ebbbbda..22fdfd556fa178 100644 --- a/packages/material-ui-icons/lib/CompressTwoTone.js +++ b/packages/material-ui-icons/lib/CompressTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h16v2H4zm12-5h-3V1h-2v3H8l4 4zM8 19h3v3h2v-3h3l-4-4zm-4-7h16v2H4z" -}), 'CompressTwoTone'); \ No newline at end of file +}), 'CompressTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Computer.js b/packages/material-ui-icons/lib/Computer.js index 4aa2a5a67155ea..9f886210c1d44a 100644 --- a/packages/material-ui-icons/lib/Computer.js +++ b/packages/material-ui-icons/lib/Computer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}), 'Computer'); \ No newline at end of file +}), 'Computer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ComputerOutlined.js b/packages/material-ui-icons/lib/ComputerOutlined.js index 24c57f823eb08f..9bf09ed1164daf 100644 --- a/packages/material-ui-icons/lib/ComputerOutlined.js +++ b/packages/material-ui-icons/lib/ComputerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}), 'ComputerOutlined'); \ No newline at end of file +}), 'ComputerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ComputerRounded.js b/packages/material-ui-icons/lib/ComputerRounded.js index c848c4d19035d8..9396de31f9a605 100644 --- a/packages/material-ui-icons/lib/ComputerRounded.js +++ b/packages/material-ui-icons/lib/ComputerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 6h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z" -}), 'ComputerRounded'); \ No newline at end of file +}), 'ComputerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ComputerSharp.js b/packages/material-ui-icons/lib/ComputerSharp.js index 54604ec8cb0e7f..f0ad1ffc472252 100644 --- a/packages/material-ui-icons/lib/ComputerSharp.js +++ b/packages/material-ui-icons/lib/ComputerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 18 2-2V4H2v12l2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}), 'ComputerSharp'); \ No newline at end of file +}), 'ComputerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ComputerTwoTone.js b/packages/material-ui-icons/lib/ComputerTwoTone.js index 5dc3030851e12c..c068ce9d439fb4 100644 --- a/packages/material-ui-icons/lib/ComputerTwoTone.js +++ b/packages/material-ui-icons/lib/ComputerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16v10H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}, "1")], 'ComputerTwoTone'); \ No newline at end of file +}, "1")], 'ComputerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConfirmationNumber.js b/packages/material-ui-icons/lib/ConfirmationNumber.js index 59bfc95794787f..c519ce4aa16573 100644 --- a/packages/material-ui-icons/lib/ConfirmationNumber.js +++ b/packages/material-ui-icons/lib/ConfirmationNumber.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z" -}), 'ConfirmationNumber'); \ No newline at end of file +}), 'ConfirmationNumber'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConfirmationNumberOutlined.js b/packages/material-ui-icons/lib/ConfirmationNumberOutlined.js index 9ad97a812f8ff3..91b8e4a19beb28 100644 --- a/packages/material-ui-icons/lib/ConfirmationNumberOutlined.js +++ b/packages/material-ui-icons/lib/ConfirmationNumberOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" -}), 'ConfirmationNumberOutlined'); \ No newline at end of file +}), 'ConfirmationNumberOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConfirmationNumberRounded.js b/packages/material-ui-icons/lib/ConfirmationNumberRounded.js index eb2bc84a8dd0a5..6272fa50540b61 100644 --- a/packages/material-ui-icons/lib/ConfirmationNumberRounded.js +++ b/packages/material-ui-icons/lib/ConfirmationNumberRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 8.54V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v2.54c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7V18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76s.43-1.42 1.06-1.76c.6-.33.94-1.01.94-1.7zm-9 8.96h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z" -}), 'ConfirmationNumberRounded'); \ No newline at end of file +}), 'ConfirmationNumberRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConfirmationNumberSharp.js b/packages/material-ui-icons/lib/ConfirmationNumberSharp.js index 0159b5af7e1797..078e922dfc6d0d 100644 --- a/packages/material-ui-icons/lib/ConfirmationNumberSharp.js +++ b/packages/material-ui-icons/lib/ConfirmationNumberSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z" -}), 'ConfirmationNumberSharp'); \ No newline at end of file +}), 'ConfirmationNumberSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConfirmationNumberTwoTone.js b/packages/material-ui-icons/lib/ConfirmationNumberTwoTone.js index 84d405ae4d2c97..8ad54ef6efd475 100644 --- a/packages/material-ui-icons/lib/ConfirmationNumberTwoTone.js +++ b/packages/material-ui-icons/lib/ConfirmationNumberTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zM11 7h2v2h-2V7zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" -}, "1")], 'ConfirmationNumberTwoTone'); \ No newline at end of file +}, "1")], 'ConfirmationNumberTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectWithoutContact.js b/packages/material-ui-icons/lib/ConnectWithoutContact.js index 66318c1ac6acbd..288405bd3f29f4 100644 --- a/packages/material-ui-icons/lib/ConnectWithoutContact.js +++ b/packages/material-ui-icons/lib/ConnectWithoutContact.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-2.5c0-.83-.67-1.5-1.5-1.5z" -}), 'ConnectWithoutContact'); \ No newline at end of file +}), 'ConnectWithoutContact'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectWithoutContactOutlined.js b/packages/material-ui-icons/lib/ConnectWithoutContactOutlined.js index 3fb06699b0edb3..ab2aaa8664f4e1 100644 --- a/packages/material-ui-icons/lib/ConnectWithoutContactOutlined.js +++ b/packages/material-ui-icons/lib/ConnectWithoutContactOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-2.5c0-.83-.67-1.5-1.5-1.5z" -}), 'ConnectWithoutContactOutlined'); \ No newline at end of file +}), 'ConnectWithoutContactOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectWithoutContactRounded.js b/packages/material-ui-icons/lib/ConnectWithoutContactRounded.js index cb5ba0cb1fd52a..3460f444b2bd81 100644 --- a/packages/material-ui-icons/lib/ConnectWithoutContactRounded.js +++ b/packages/material-ui-icons/lib/ConnectWithoutContactRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm3.19.5c-.41 0-.76.25-.92.63C8.83 6.23 7.76 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.43-.45 2.58-1.53 3.12-2.91.26-.64-.24-1.33-.93-1.33zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.26 0-2.33-.77-2.77-1.87-.15-.38-.51-.63-.92-.63-.69 0-1.19.69-.94 1.33.55 1.38 1.69 2.46 3.12 2.91V22h6v-2.5c.01-.83-.66-1.5-1.49-1.5zm-3.25-6.91s0-.01.01 0c-1.06.27-1.9 1.11-2.17 2.17v-.01c-.11.43-.51.75-.98.75-.55 0-1-.45-1-1 0-.05.02-.14.02-.14.43-1.85 1.89-3.31 3.75-3.73.04 0 .08-.01.12-.01.55 0 1 .45 1 1 0 .46-.32.86-.75.97zM18 6.06c0 .51-.37.92-.86.99-3.19.39-5.7 2.91-6.09 6.1-.07.48-.49.85-.99.85-.55 0-1-.45-1-1v-.09c.5-4.12 3.79-7.38 7.92-7.85h.01c.56 0 1.01.45 1.01 1z" -}), 'ConnectWithoutContactRounded'); \ No newline at end of file +}), 'ConnectWithoutContactRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectWithoutContactSharp.js b/packages/material-ui-icons/lib/ConnectWithoutContactSharp.js index cd333fa04bfc1e..cbfa7431fbd783 100644 --- a/packages/material-ui-icons/lib/ConnectWithoutContactSharp.js +++ b/packages/material-ui-icons/lib/ConnectWithoutContactSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7H2v4h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm-1.5 1c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-4h-4.5z" -}), 'ConnectWithoutContactSharp'); \ No newline at end of file +}), 'ConnectWithoutContactSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectWithoutContactTwoTone.js b/packages/material-ui-icons/lib/ConnectWithoutContactTwoTone.js index 9c9c261cf5c00c..919ec2a4a89128 100644 --- a/packages/material-ui-icons/lib/ConnectWithoutContactTwoTone.js +++ b/packages/material-ui-icons/lib/ConnectWithoutContactTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-2.5c0-.83-.67-1.5-1.5-1.5z" -}), 'ConnectWithoutContactTwoTone'); \ No newline at end of file +}), 'ConnectWithoutContactTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectedTv.js b/packages/material-ui-icons/lib/ConnectedTv.js index bfce8e070b30c9..dbd68fcf774350 100644 --- a/packages/material-ui-icons/lib/ConnectedTv.js +++ b/packages/material-ui-icons/lib/ConnectedTv.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM4 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H9c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H12c0-4.42-3.59-8-8-8z" -}), 'ConnectedTv'); \ No newline at end of file +}), 'ConnectedTv'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectedTvOutlined.js b/packages/material-ui-icons/lib/ConnectedTvOutlined.js index 9aa9eb58522a20..1dd54bc7235914 100644 --- a/packages/material-ui-icons/lib/ConnectedTvOutlined.js +++ b/packages/material-ui-icons/lib/ConnectedTvOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2zm0 14H4V5h16v12zM5 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H10c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H13c0-4.42-3.59-8-8-8z" -}), 'ConnectedTvOutlined'); \ No newline at end of file +}), 'ConnectedTvOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectedTvRounded.js b/packages/material-ui-icons/lib/ConnectedTvRounded.js index 4f1975b64fac00..e1519343b319ca 100644 --- a/packages/material-ui-icons/lib/ConnectedTvRounded.js +++ b/packages/material-ui-icons/lib/ConnectedTvRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h4c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2zm0 14H4V5h16v12zM7 15.97c-.02-1.08-.89-1.95-1.97-1.97H5v2h2v-.03zm-1.38-3.42c1.44.26 2.58 1.4 2.83 2.84.06.36.37.61.73.61.46 0 .82-.41.75-.86-.36-2.07-1.99-3.7-4.06-4.06-.46-.08-.87.28-.87.74 0 .37.26.67.62.73zm.02-3.02c3.07.3 5.52 2.75 5.83 5.82.04.37.37.65.74.65.45 0 .79-.4.75-.85-.4-3.74-3.37-6.71-7.11-7.1C5.4 8 5 8.34 5 8.79c0 .37.27.71.64.74z" -}), 'ConnectedTvRounded'); \ No newline at end of file +}), 'ConnectedTvRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectedTvSharp.js b/packages/material-ui-icons/lib/ConnectedTvSharp.js index 745b88acc38e1e..e6c088bf7bab08 100644 --- a/packages/material-ui-icons/lib/ConnectedTvSharp.js +++ b/packages/material-ui-icons/lib/ConnectedTvSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.57 16H10c0-2.76-2.24-5-5-5v1.43c1.97 0 3.57 1.6 3.57 3.57z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.55 16H13c0-4.42-3.59-8-8-8v1.45c3.61 0 6.55 2.93 6.55 6.55zM5 14v2h2c0-1.11-.89-2-2-2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z" -}, "2")], 'ConnectedTvSharp'); \ No newline at end of file +}, "2")], 'ConnectedTvSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConnectedTvTwoTone.js b/packages/material-ui-icons/lib/ConnectedTvTwoTone.js index 02b53ca7892e5c..fcb9115d1d9448 100644 --- a/packages/material-ui-icons/lib/ConnectedTvTwoTone.js +++ b/packages/material-ui-icons/lib/ConnectedTvTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2zm0 14H4V5h16v12zM5 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H10c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H13c0-4.42-3.59-8-8-8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5h16v12H4z", opacity: ".3" -}, "1")], 'ConnectedTvTwoTone'); \ No newline at end of file +}, "1")], 'ConnectedTvTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Construction.js b/packages/material-ui-icons/lib/Construction.js index 495e7d007fc70f..63f919b7ed119d 100644 --- a/packages/material-ui-icons/lib/Construction.js +++ b/packages/material-ui-icons/lib/Construction.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" -}), 'Construction'); \ No newline at end of file +}), 'Construction'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConstructionOutlined.js b/packages/material-ui-icons/lib/ConstructionOutlined.js index cb11e8410ae72c..9a49e1ccd63489 100644 --- a/packages/material-ui-icons/lib/ConstructionOutlined.js +++ b/packages/material-ui-icons/lib/ConstructionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" -}), 'ConstructionOutlined'); \ No newline at end of file +}), 'ConstructionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConstructionRounded.js b/packages/material-ui-icons/lib/ConstructionRounded.js index dd055cfb944b70..c6544f9a47f244 100644 --- a/packages/material-ui-icons/lib/ConstructionRounded.js +++ b/packages/material-ui-icons/lib/ConstructionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.99 17.99-4.94-4.94-2.12 2.12 4.94 4.94c.59.59 1.54.59 2.12 0 .58-.59.58-1.54 0-2.12zM17.65 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41-1.93 0-3.5 1.57-3.5 3.5 0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78c.39-.39.39-1.02 0-1.41l-.71-.71 2.12-2.12c-1.17-1.17-3.07-1.17-4.24 0L5.08 6.32c-.39.39-.39 1.02 0 1.41l.71.71H3.25c-.19 0-.37.07-.5.21-.28.28-.28.72 0 1l2.54 2.54c.28.28.72.28 1 0 .13-.13.21-.31.21-.5V9.15l.7.7c.39.39 1.02.39 1.41 0l1.78 1.78-6.35 6.35c-.59.59-.59 1.54 0 2.12.59.59 1.54.59 2.12 0L16.48 9.79c.37.13.76.21 1.17.21z" -}), 'ConstructionRounded'); \ No newline at end of file +}), 'ConstructionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConstructionSharp.js b/packages/material-ui-icons/lib/ConstructionSharp.js index 99ebfbf6f36daf..1ef951f214c2e2 100644 --- a/packages/material-ui-icons/lib/ConstructionSharp.js +++ b/packages/material-ui-icons/lib/ConstructionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" -}), 'ConstructionSharp'); \ No newline at end of file +}), 'ConstructionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ConstructionTwoTone.js b/packages/material-ui-icons/lib/ConstructionTwoTone.js index 1b03731a4853a8..bcd3ae3d83f3bd 100644 --- a/packages/material-ui-icons/lib/ConstructionTwoTone.js +++ b/packages/material-ui-icons/lib/ConstructionTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" -}), 'ConstructionTwoTone'); \ No newline at end of file +}), 'ConstructionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactMail.js b/packages/material-ui-icons/lib/ContactMail.js index e959c552b8f6bb..8853cae9b1457a 100644 --- a/packages/material-ui-icons/lib/ContactMail.js +++ b/packages/material-ui-icons/lib/ContactMail.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8V7l-3 2-3-2v1l3 2 3-2zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z" -}), 'ContactMail'); \ No newline at end of file +}), 'ContactMail'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactMailOutlined.js b/packages/material-ui-icons/lib/ContactMailOutlined.js index 943b71aaaabc5e..9f31dd48bf1316 100644 --- a/packages/material-ui-icons/lib/ContactMailOutlined.js +++ b/packages/material-ui-icons/lib/ContactMailOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" -}), 'ContactMailOutlined'); \ No newline at end of file +}), 'ContactMailOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactMailRounded.js b/packages/material-ui-icons/lib/ContactMailRounded.js index 0dacc8e0424c85..a2667ed6ddf8fa 100644 --- a/packages/material-ui-icons/lib/ContactMailRounded.js +++ b/packages/material-ui-icons/lib/ContactMailRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8V7l-3 2-3-2v1l2.72 1.82c.17.11.39.11.55 0L21 8zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm7.5-6h-7c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v5c0 .28-.22.5-.5.5z" -}), 'ContactMailRounded'); \ No newline at end of file +}), 'ContactMailRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactMailSharp.js b/packages/material-ui-icons/lib/ContactMailSharp.js index d453d548732845..45c3920f842e06 100644 --- a/packages/material-ui-icons/lib/ContactMailSharp.js +++ b/packages/material-ui-icons/lib/ContactMailSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8V7l-3 2-3-2v1l3 2 3-2zm3-5H0v18h23.99L24 3zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z" -}), 'ContactMailSharp'); \ No newline at end of file +}), 'ContactMailSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactMailTwoTone.js b/packages/material-ui-icons/lib/ContactMailTwoTone.js index 2c61b25f494a72..bac20d58e76bdb 100644 --- a/packages/material-ui-icons/lib/ContactMailTwoTone.js +++ b/packages/material-ui-icons/lib/ContactMailTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19h20V5H2v14zM14 6h7v5h-7V6zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM3 16.59C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18H3v-1.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" -}, "1")], 'ContactMailTwoTone'); \ No newline at end of file +}, "1")], 'ContactMailTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPage.js b/packages/material-ui-icons/lib/ContactPage.js index 0c9db5df1f014c..a3b70eafb50e15 100644 --- a/packages/material-ui-icons/lib/ContactPage.js +++ b/packages/material-ui-icons/lib/ContactPage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-2 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V18z" -}), 'ContactPage'); \ No newline at end of file +}), 'ContactPage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPageOutlined.js b/packages/material-ui-icons/lib/ContactPageOutlined.js index 335ff5081c278b..0ce6f2fd7e5fb7 100644 --- a/packages/material-ui-icons/lib/ContactPageOutlined.js +++ b/packages/material-ui-icons/lib/ContactPageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-2 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 15.9 8 16.62 8 17.43V18h8v-.57z" -}), 'ContactPageOutlined'); \ No newline at end of file +}), 'ContactPageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPageRounded.js b/packages/material-ui-icons/lib/ContactPageRounded.js index 5bf992f39da258..d5ebc471e37cc1 100644 --- a/packages/material-ui-icons/lib/ContactPageRounded.js +++ b/packages/material-ui-icons/lib/ContactPageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V18z" -}), 'ContactPageRounded'); \ No newline at end of file +}), 'ContactPageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPageSharp.js b/packages/material-ui-icons/lib/ContactPageSharp.js index ab818feb1ffefb..9c4c43ec64e4b7 100644 --- a/packages/material-ui-icons/lib/ContactPageSharp.js +++ b/packages/material-ui-icons/lib/ContactPageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm-2 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V18z" -}), 'ContactPageSharp'); \ No newline at end of file +}), 'ContactPageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPageTwoTone.js b/packages/material-ui-icons/lib/ContactPageTwoTone.js index 1cf7806a1243c0..8413fa23555ae6 100644 --- a/packages/material-ui-icons/lib/ContactPageTwoTone.js +++ b/packages/material-ui-icons/lib/ContactPageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 4 18 8.83V20H6V4h7.17M12 14c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 15.9 8 16.62 8 17.43V18h8v-.57z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-2 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 15.9 8 16.62 8 17.43V18h8v-.57z" -}, "1")], 'ContactPageTwoTone'); \ No newline at end of file +}, "1")], 'ContactPageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPhone.js b/packages/material-ui-icons/lib/ContactPhone.js index 7a7a6229e19fe6..58a81d7189a786 100644 --- a/packages/material-ui-icons/lib/ContactPhone.js +++ b/packages/material-ui-icons/lib/ContactPhone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z" -}), 'ContactPhone'); \ No newline at end of file +}), 'ContactPhone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPhoneOutlined.js b/packages/material-ui-icons/lib/ContactPhoneOutlined.js index 83bbe2aeafae02..0a67864ddcf495 100644 --- a/packages/material-ui-icons/lib/ContactPhoneOutlined.js +++ b/packages/material-ui-icons/lib/ContactPhoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zm-2.99-1.01L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" -}), 'ContactPhoneOutlined'); \ No newline at end of file +}), 'ContactPhoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPhoneRounded.js b/packages/material-ui-icons/lib/ContactPhoneRounded.js index e16116f6dbf215..4b20cda57bd044 100644 --- a/packages/material-ui-icons/lib/ContactPhoneRounded.js +++ b/packages/material-ui-icons/lib/ContactPhoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.39c.16 0 .3.07.4.2l1.1 1.45c.15.2.13.48-.05.65l-1.36 1.36c-.18.18-.48.2-.67.04a7.557 7.557 0 0 1-2.38-3.71c-.18-.63-.28-1.3-.28-1.99s.1-1.36.28-2c.41-1.47 1.25-2.75 2.38-3.71.2-.17.49-.14.67.04l1.36 1.36c.18.18.2.46.05.65l-1.1 1.45c-.09.13-.24.2-.4.2h-1.39c-.22.63-.35 1.3-.35 2s.13 1.38.35 2.01z" -}), 'ContactPhoneRounded'); \ No newline at end of file +}), 'ContactPhoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPhoneSharp.js b/packages/material-ui-icons/lib/ContactPhoneSharp.js index 9905ebe050fffc..a14a1d9fc42ed2 100644 --- a/packages/material-ui-icons/lib/ContactPhoneSharp.js +++ b/packages/material-ui-icons/lib/ContactPhoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.99 3H0v18h24l-.01-18zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z" -}), 'ContactPhoneSharp'); \ No newline at end of file +}), 'ContactPhoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactPhoneTwoTone.js b/packages/material-ui-icons/lib/ContactPhoneTwoTone.js index 6d850144615c6b..162c00dfb2453f 100644 --- a/packages/material-ui-icons/lib/ContactPhoneTwoTone.js +++ b/packages/material-ui-icons/lib/ContactPhoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5H2v14h20V5zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H3v-1.41C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18zm2.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 21h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2zM2 5h20v14H2V5zm17.49 5L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 5c-2.03 0-6 1.08-6 3.58V18h12v-1.41C15 14.08 11.03 13 9 13zm-3.52 3c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" -}, "1")], 'ContactPhoneTwoTone'); \ No newline at end of file +}, "1")], 'ContactPhoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactSupport.js b/packages/material-ui-icons/lib/ContactSupport.js index 87305d3b175761..b0143da3fcc9e0 100644 --- a/packages/material-ui-icons/lib/ContactSupport.js +++ b/packages/material-ui-icons/lib/ContactSupport.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" -}), 'ContactSupport'); \ No newline at end of file +}), 'ContactSupport'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactSupportOutlined.js b/packages/material-ui-icons/lib/ContactSupportOutlined.js index 80f37eb79982fa..ff19d018cc029e 100644 --- a/packages/material-ui-icons/lib/ContactSupportOutlined.js +++ b/packages/material-ui-icons/lib/ContactSupportOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 23.59v-3.6c-5.01-.26-9-4.42-9-9.49C2 5.26 6.26 1 11.5 1S21 5.26 21 10.5c0 4.95-3.44 9.93-8.57 12.4l-1.43.69zM11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm-1 11.5h2v2h-2zm2-1.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" -}), 'ContactSupportOutlined'); \ No newline at end of file +}), 'ContactSupportOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactSupportRounded.js b/packages/material-ui-icons/lib/ContactSupportRounded.js index 3437e010f4591e..100f7db0911639 100644 --- a/packages/material-ui-icons/lib/ContactSupportRounded.js +++ b/packages/material-ui-icons/lib/ContactSupportRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm.4-4.78c-.01.01-.02.03-.03.05-.05.08-.1.16-.14.24-.02.03-.03.07-.04.11-.03.07-.06.14-.08.21-.07.21-.1.43-.1.68H10.5c0-.51.08-.94.2-1.3 0-.01 0-.02.01-.03.01-.04.04-.06.05-.1.06-.16.13-.3.22-.44.03-.05.07-.1.1-.15.03-.04.05-.09.08-.12l.01.01c.84-1.1 2.21-1.44 2.32-2.68.09-.98-.61-1.93-1.57-2.13-1.04-.22-1.98.39-2.3 1.28-.14.36-.47.65-.88.65h-.2c-.6 0-1.04-.59-.87-1.17.55-1.82 2.37-3.09 4.43-2.79 1.69.25 3.04 1.64 3.33 3.33.44 2.44-1.63 3.03-2.53 4.35z" -}), 'ContactSupportRounded'); \ No newline at end of file +}), 'ContactSupportRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactSupportSharp.js b/packages/material-ui-icons/lib/ContactSupportSharp.js index 330529b5aa4931..350b9d30cd30ab 100644 --- a/packages/material-ui-icons/lib/ContactSupportSharp.js +++ b/packages/material-ui-icons/lib/ContactSupportSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" -}), 'ContactSupportSharp'); \ No newline at end of file +}), 'ContactSupportSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactSupportTwoTone.js b/packages/material-ui-icons/lib/ContactSupportTwoTone.js index c89fd216dc87ed..fc59aa2a62c006 100644 --- a/packages/material-ui-icons/lib/ContactSupportTwoTone.js +++ b/packages/material-ui-icons/lib/ContactSupportTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm1 13.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 1C6.26 1 2 5.26 2 10.5c0 5.07 3.99 9.23 9 9.49v3.6l1.43-.69C17.56 20.43 21 15.45 21 10.5 21 5.26 16.74 1 11.5 1zM13 20.3V18h-1.5C7.36 18 4 14.64 4 10.5S7.36 3 11.5 3 19 6.36 19 10.5c0 3.73-2.36 7.51-6 9.8zm-2.5-5.8h2v2h-2zm1-10.5c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" -}, "1")], 'ContactSupportTwoTone'); \ No newline at end of file +}, "1")], 'ContactSupportTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Contactless.js b/packages/material-ui-icons/lib/Contactless.js index e7240885fcca5d..4806ffe1abf9cc 100644 --- a/packages/material-ui-icons/lib/Contactless.js +++ b/packages/material-ui-icons/lib/Contactless.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86-.01-.63-.14-1.24-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z" -}), 'Contactless'); \ No newline at end of file +}), 'Contactless'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactlessOutlined.js b/packages/material-ui-icons/lib/ContactlessOutlined.js index 6dfa3dc4600a01..6573717c908da6 100644 --- a/packages/material-ui-icons/lib/ContactlessOutlined.js +++ b/packages/material-ui-icons/lib/ContactlessOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.1 10.18c.26.56.39 1.16.4 1.8.01.63-.13 1.25-.4 1.86l1.37.62c.37-.81.55-1.65.54-2.5-.01-.84-.19-1.65-.54-2.4l-1.37.62zm6.23-2.85c.78 1.57 1.18 3.14 1.18 4.64 0 1.51-.4 3.09-1.18 4.69l1.35.66c.88-1.81 1.33-3.61 1.33-5.35 0-1.74-.45-3.53-1.33-5.31l-1.35.67zM10.2 8.72c.53 1.07.8 2.21.8 3.4 0 1.17-.26 2.23-.78 3.15l1.3.74c.65-1.15.98-2.45.98-3.89 0-1.42-.32-2.79-.96-4.07l-1.34.67z" -}, "1")], 'ContactlessOutlined'); \ No newline at end of file +}, "1")], 'ContactlessOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactlessRounded.js b/packages/material-ui-icons/lib/ContactlessRounded.js index cdc40e6573b11c..72cf4126966749 100644 --- a/packages/material-ui-icons/lib/ContactlessRounded.js +++ b/packages/material-ui-icons/lib/ContactlessRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.75 13.68c-.13.43-.62.63-1.02.45a.749.749 0 0 1-.4-.9c.12-.41.18-.83.17-1.24-.01-.41-.06-.8-.17-1.18-.1-.36.06-.75.4-.9.42-.19.91.04 1.04.49.15.51.22 1.03.23 1.57 0 .56-.08 1.14-.25 1.71zm3.14 1.59c-.17.41-.67.57-1.06.35-.33-.19-.46-.59-.32-.94.33-.77.49-1.63.49-2.56 0-.96-.18-1.89-.53-2.78-.14-.36.02-.76.36-.94.39-.2.87-.02 1.03.39.42 1.06.63 2.18.63 3.33.02 1.13-.19 2.19-.6 3.15zM15 16.6c-.17.4-.64.58-1.02.39-.35-.17-.52-.59-.37-.95.59-1.39.89-2.75.89-4.06 0-1.31-.3-2.65-.88-4.01-.16-.36.01-.78.36-.95.39-.2.85-.02 1.02.38.66 1.54 1 3.08 1 4.58s-.34 3.06-1 4.62z" -}), 'ContactlessRounded'); \ No newline at end of file +}), 'ContactlessRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactlessSharp.js b/packages/material-ui-icons/lib/ContactlessSharp.js index df86ffb1f7b47c..e3aba7c311fbac 100644 --- a/packages/material-ui-icons/lib/ContactlessSharp.js +++ b/packages/material-ui-icons/lib/ContactlessSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86-.01-.63-.14-1.24-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z" -}), 'ContactlessSharp'); \ No newline at end of file +}), 'ContactlessSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactlessTwoTone.js b/packages/material-ui-icons/lib/ContactlessTwoTone.js index 29664a7e9d0e18..2b0f5d6a1c1be0 100644 --- a/packages/material-ui-icons/lib/ContactlessTwoTone.js +++ b/packages/material-ui-icons/lib/ContactlessTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86-.01-.63-.14-1.24-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.1 10.18c.26.56.39 1.16.4 1.8.01.63-.13 1.25-.4 1.86l1.37.62c.37-.81.55-1.65.54-2.5-.01-.84-.19-1.65-.54-2.4l-1.37.62zm6.23-2.85c.78 1.57 1.18 3.14 1.18 4.64 0 1.51-.4 3.09-1.18 4.69l1.35.66c.88-1.81 1.33-3.61 1.33-5.35 0-1.74-.45-3.53-1.33-5.31l-1.35.67zM10.2 8.72c.53 1.07.8 2.21.8 3.4 0 1.17-.26 2.23-.78 3.15l1.3.74c.65-1.15.98-2.45.98-3.89 0-1.42-.32-2.79-.96-4.07l-1.34.67z" -}, "2")], 'ContactlessTwoTone'); \ No newline at end of file +}, "2")], 'ContactlessTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Contacts.js b/packages/material-ui-icons/lib/Contacts.js index a9804e8cc9e4c2..6957b7c3f29b68 100644 --- a/packages/material-ui-icons/lib/Contacts.js +++ b/packages/material-ui-icons/lib/Contacts.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 0H4v2h16V0zM4 24h16v-2H4v2zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" -}), 'Contacts'); \ No newline at end of file +}), 'Contacts'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactsOutlined.js b/packages/material-ui-icons/lib/ContactsOutlined.js index b6f3d5e5ce4fc6..5ad175e4b3fac6 100644 --- a/packages/material-ui-icons/lib/ContactsOutlined.js +++ b/packages/material-ui-icons/lib/ContactsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM4 0h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 7.49C17 13.9 13.69 13 12 13s-5 .9-5 2.99V17h10v-1.01zm-8.19-.49c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z" -}), 'ContactsOutlined'); \ No newline at end of file +}), 'ContactsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactsRounded.js b/packages/material-ui-icons/lib/ContactsRounded.js index 823189930c7815..b4e3ffceaf7273 100644 --- a/packages/material-ui-icons/lib/ContactsRounded.js +++ b/packages/material-ui-icons/lib/ContactsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 0H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 24h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" -}), 'ContactsRounded'); \ No newline at end of file +}), 'ContactsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactsSharp.js b/packages/material-ui-icons/lib/ContactsSharp.js index f57474afcc4c8b..85f943f7710359 100644 --- a/packages/material-ui-icons/lib/ContactsSharp.js +++ b/packages/material-ui-icons/lib/ContactsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 0H4v2h16V0zM4 24h16v-2H4v2zM22 4H2v16h20V4zM12 6.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" -}), 'ContactsSharp'); \ No newline at end of file +}), 'ContactsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContactsTwoTone.js b/packages/material-ui-icons/lib/ContactsTwoTone.js index aa4bb488f882ed..e0d330e4906be1 100644 --- a/packages/material-ui-icons/lib/ContactsTwoTone.js +++ b/packages/material-ui-icons/lib/ContactsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H4v12h16V6zm-8 1c1.38 0 2.5 1.12 2.5 2.5S13.38 12 12 12s-2.5-1.12-2.5-2.5S10.62 7 12 7zm5 10H7v-1.01C7 13.9 10.31 13 12 13s5 .9 5 2.99V17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h16v12H4V6zm0-6h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4.5c-1.69 0-5 .9-5 2.99V17h10v-1.01C17 13.9 13.69 13 12 13zm-3.19 2.5c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z" -}, "1")], 'ContactsTwoTone'); \ No newline at end of file +}, "1")], 'ContactsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCopy.js b/packages/material-ui-icons/lib/ContentCopy.js index 3f8f6a0212e359..3bfda4a58788a0 100644 --- a/packages/material-ui-icons/lib/ContentCopy.js +++ b/packages/material-ui-icons/lib/ContentCopy.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" -}), 'ContentCopy'); \ No newline at end of file +}), 'ContentCopy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCopyOutlined.js b/packages/material-ui-icons/lib/ContentCopyOutlined.js index 52b5cfcfa266bf..9151da80ff6edc 100644 --- a/packages/material-ui-icons/lib/ContentCopyOutlined.js +++ b/packages/material-ui-icons/lib/ContentCopyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" -}), 'ContentCopyOutlined'); \ No newline at end of file +}), 'ContentCopyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCopyRounded.js b/packages/material-ui-icons/lib/ContentCopyRounded.js index 1721d9aa5568ce..73cd2368dc97b4 100644 --- a/packages/material-ui-icons/lib/ContentCopyRounded.js +++ b/packages/material-ui-icons/lib/ContentCopyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 20H5V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h10c.55 0 1-.45 1-1s-.45-1-1-1zm5-4V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2zm-2 0H9V4h9v12z" -}), 'ContentCopyRounded'); \ No newline at end of file +}), 'ContentCopyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCopySharp.js b/packages/material-ui-icons/lib/ContentCopySharp.js index cd7ed4c966ee6e..271775051aa338 100644 --- a/packages/material-ui-icons/lib/ContentCopySharp.js +++ b/packages/material-ui-icons/lib/ContentCopySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H2v16h2V3h12V1zm5 4H6v18h15V5zm-2 16H8V7h11v14z" -}), 'ContentCopySharp'); \ No newline at end of file +}), 'ContentCopySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCopyTwoTone.js b/packages/material-ui-icons/lib/ContentCopyTwoTone.js index c8c10929e99287..da5beb8e54a1e7 100644 --- a/packages/material-ui-icons/lib/ContentCopyTwoTone.js +++ b/packages/material-ui-icons/lib/ContentCopyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 7h11v14H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" -}, "1")], 'ContentCopyTwoTone'); \ No newline at end of file +}, "1")], 'ContentCopyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCut.js b/packages/material-ui-icons/lib/ContentCut.js index 80cae0642d46c9..244979ca257a8d 100644 --- a/packages/material-ui-icons/lib/ContentCut.js +++ b/packages/material-ui-icons/lib/ContentCut.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3z" -}), 'ContentCut'); \ No newline at end of file +}), 'ContentCut'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCutOutlined.js b/packages/material-ui-icons/lib/ContentCutOutlined.js index bdb3cb7e28bbea..d05651651eae7b 100644 --- a/packages/material-ui-icons/lib/ContentCutOutlined.js +++ b/packages/material-ui-icons/lib/ContentCutOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z" -}), 'ContentCutOutlined'); \ No newline at end of file +}), 'ContentCutOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCutRounded.js b/packages/material-ui-icons/lib/ContentCutRounded.js index d9ca60fb1b6b11..dee7a410180f4d 100644 --- a/packages/material-ui-icons/lib/ContentCutRounded.js +++ b/packages/material-ui-icons/lib/ContentCutRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.64 7.64c.29-.62.42-1.33.34-2.09-.19-1.73-1.54-3.2-3.26-3.49-2.77-.48-5.14 1.89-4.66 4.65.3 1.72 1.76 3.07 3.49 3.26.76.08 1.46-.05 2.09-.34L10 12l-2.36 2.36c-.62-.29-1.33-.42-2.09-.34-1.73.19-3.2 1.54-3.49 3.26-.48 2.77 1.89 5.13 4.65 4.65 1.72-.3 3.07-1.76 3.26-3.49.08-.76-.05-1.46-.34-2.09L12 14l7.59 7.59c.89.89 2.41.26 2.41-1v-.01c0-.37-.15-.73-.41-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm7.59-10.09L13 9l2 2 6.59-6.59c.26-.26.41-.62.41-1V3.4c0-1.25-1.52-1.88-2.41-.99z" -}), 'ContentCutRounded'); \ No newline at end of file +}), 'ContentCutRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCutSharp.js b/packages/material-ui-icons/lib/ContentCutSharp.js index c279e8c6d650a8..32d47414bdcb43 100644 --- a/packages/material-ui-icons/lib/ContentCutSharp.js +++ b/packages/material-ui-icons/lib/ContentCutSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z" -}), 'ContentCutSharp'); \ No newline at end of file +}), 'ContentCutSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentCutTwoTone.js b/packages/material-ui-icons/lib/ContentCutTwoTone.js index 5cee960cd3dd9e..d416d4921cd80e 100644 --- a/packages/material-ui-icons/lib/ContentCutTwoTone.js +++ b/packages/material-ui-icons/lib/ContentCutTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 3-6 6 2 2 7-7V3zm-9 3c0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64c.23-.5.36-1.05.36-1.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-8.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" -}), 'ContentCutTwoTone'); \ No newline at end of file +}), 'ContentCutTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPaste.js b/packages/material-ui-icons/lib/ContentPaste.js index 1f60580fc90fd6..26b5c1dfb4e194 100644 --- a/packages/material-ui-icons/lib/ContentPaste.js +++ b/packages/material-ui-icons/lib/ContentPaste.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" -}), 'ContentPaste'); \ No newline at end of file +}), 'ContentPaste'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteOff.js b/packages/material-ui-icons/lib/ContentPasteOff.js index 52901025a97d83..5d5889f498a5b9 100644 --- a/packages/material-ui-icons/lib/ContentPasteOff.js +++ b/packages/material-ui-icons/lib/ContentPasteOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'ContentPasteOff'); \ No newline at end of file +}), 'ContentPasteOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteOffOutlined.js b/packages/material-ui-icons/lib/ContentPasteOffOutlined.js index 11fe5344fa0605..68a66d769e9f6c 100644 --- a/packages/material-ui-icons/lib/ContentPasteOffOutlined.js +++ b/packages/material-ui-icons/lib/ContentPasteOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'ContentPasteOffOutlined'); \ No newline at end of file +}), 'ContentPasteOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteOffRounded.js b/packages/material-ui-icons/lib/ContentPasteOffRounded.js index 618614ced8221a..d9a388a3626335 100644 --- a/packages/material-ui-icons/lib/ContentPasteOffRounded.js +++ b/packages/material-ui-icons/lib/ContentPasteOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.9.91V19c0 1.1.9 2 2 2h13.17l.9.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'ContentPasteOffRounded'); \ No newline at end of file +}), 'ContentPasteOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteOffSharp.js b/packages/material-ui-icons/lib/ContentPasteOffSharp.js index 01b75af361f6c7..2d8f93cb093563 100644 --- a/packages/material-ui-icons/lib/ContentPasteOffSharp.js +++ b/packages/material-ui-icons/lib/ContentPasteOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'ContentPasteOffSharp'); \ No newline at end of file +}), 'ContentPasteOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteOffTwoTone.js b/packages/material-ui-icons/lib/ContentPasteOffTwoTone.js index 3b48cbe441a98e..fcb94037a0fd18 100644 --- a/packages/material-ui-icons/lib/ContentPasteOffTwoTone.js +++ b/packages/material-ui-icons/lib/ContentPasteOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.83 8H17V5h2v11.17L10.83 8zM5 19V7.83L16.17 19H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "1")], 'ContentPasteOffTwoTone'); \ No newline at end of file +}, "1")], 'ContentPasteOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteOutlined.js b/packages/material-ui-icons/lib/ContentPasteOutlined.js index 96525a82cbfecb..4f41f4eb322327 100644 --- a/packages/material-ui-icons/lib/ContentPasteOutlined.js +++ b/packages/material-ui-icons/lib/ContentPasteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" -}), 'ContentPasteOutlined'); \ No newline at end of file +}), 'ContentPasteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteRounded.js b/packages/material-ui-icons/lib/ContentPasteRounded.js index 55905e30df3769..773a48a5f46e38 100644 --- a/packages/material-ui-icons/lib/ContentPasteRounded.js +++ b/packages/material-ui-icons/lib/ContentPasteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 18H6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h1v1c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V4h1c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1z" -}), 'ContentPasteRounded'); \ No newline at end of file +}), 'ContentPasteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteSharp.js b/packages/material-ui-icons/lib/ContentPasteSharp.js index 02f89e09f35cf0..d8418c521e8db6 100644 --- a/packages/material-ui-icons/lib/ContentPasteSharp.js +++ b/packages/material-ui-icons/lib/ContentPasteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2h-6.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H3v20h18V2zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" -}), 'ContentPasteSharp'); \ No newline at end of file +}), 'ContentPasteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ContentPasteTwoTone.js b/packages/material-ui-icons/lib/ContentPasteTwoTone.js index b05c74a80ac313..21c7ef713cf282 100644 --- a/packages/material-ui-icons/lib/ContentPasteTwoTone.js +++ b/packages/material-ui-icons/lib/ContentPasteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7H7V4H5v16h14V4h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" -}, "1")], 'ContentPasteTwoTone'); \ No newline at end of file +}, "1")], 'ContentPasteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlCamera.js b/packages/material-ui-icons/lib/ControlCamera.js index 3e178fa570d3ac..7abfc13898ff57 100644 --- a/packages/material-ui-icons/lib/ControlCamera.js +++ b/packages/material-ui-icons/lib/ControlCamera.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.54 5.54 13.77 7.3 12 5.54 10.23 7.3 8.46 5.54 12 2zm2.92 10-1.76-1.77L18.46 12l-1.76-1.77 1.76-1.77L22 12zm-10 2.92 1.77-1.76L12 18.46l1.77-1.76 1.77 1.76L12 22zm-2.92-10 1.76 1.77L5.54 12l1.76 1.77-1.76 1.77L2 12z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'ControlCamera'); \ No newline at end of file +}, "1")], 'ControlCamera'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlCameraOutlined.js b/packages/material-ui-icons/lib/ControlCameraOutlined.js index 8aef1f1c208f40..9ac2f1a9d4c20b 100644 --- a/packages/material-ui-icons/lib/ControlCameraOutlined.js +++ b/packages/material-ui-icons/lib/ControlCameraOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.54 8.46 2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92 1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'ControlCameraOutlined'); \ No newline at end of file +}, "1")], 'ControlCameraOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlCameraRounded.js b/packages/material-ui-icons/lib/ControlCameraRounded.js index 02c7a3cf8e096c..b97398b6eb6f33 100644 --- a/packages/material-ui-icons/lib/ControlCameraRounded.js +++ b/packages/material-ui-icons/lib/ControlCameraRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.65 9.35 2.7 11.3c-.39.39-.39 1.02 0 1.41l1.95 1.95c.49.49 1.28.49 1.77 0 .48-.49.48-1.27 0-1.76l-.88-.9.88-.89c.48-.49.48-1.27 0-1.76s-1.28-.49-1.77 0zm12.93 0c-.48.49-.48 1.27 0 1.76l.88.89-.88.89c-.48.49-.48 1.27 0 1.76.49.49 1.28.49 1.77 0l1.95-1.95c.39-.39.39-1.02 0-1.41l-1.95-1.95c-.49-.48-1.29-.48-1.77.01zM12 18.46l-.89-.88c-.49-.48-1.27-.48-1.76 0-.49.49-.49 1.28 0 1.77l1.95 1.95c.39.39 1.02.39 1.41 0l1.95-1.95c.49-.49.49-1.28 0-1.77-.49-.48-1.27-.48-1.76 0l-.9.88zM9.35 6.42c.49.48 1.27.48 1.76 0l.89-.88.89.88c.49.48 1.27.48 1.76 0 .49-.49.49-1.28 0-1.77L12.7 2.7a.9959.9959 0 0 0-1.41 0L9.35 4.65c-.49.49-.49 1.29 0 1.77z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'ControlCameraRounded'); \ No newline at end of file +}, "1")], 'ControlCameraRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlCameraSharp.js b/packages/material-ui-icons/lib/ControlCameraSharp.js index 2b60f2660df7e4..4051bf92247d62 100644 --- a/packages/material-ui-icons/lib/ControlCameraSharp.js +++ b/packages/material-ui-icons/lib/ControlCameraSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.54 8.46 2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm12.92 0-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-6.46 10-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zM8.46 5.54l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'ControlCameraSharp'); \ No newline at end of file +}, "1")], 'ControlCameraSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlCameraTwoTone.js b/packages/material-ui-icons/lib/ControlCameraTwoTone.js index 696ed7a2af3737..231de630c763b2 100644 --- a/packages/material-ui-icons/lib/ControlCameraTwoTone.js +++ b/packages/material-ui-icons/lib/ControlCameraTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.3 13.77 5.54 12l1.76-1.77-1.76-1.77L2 12l3.54 3.54zm8.24 4.69-1.77-1.76L12 18.46l-1.77-1.76-1.77 1.76L12 22zm2.92-2.92L22 12l-3.54-3.54-1.76 1.77L18.46 12l-1.76 1.77zM12 5.54l1.77 1.76 1.77-1.76L12 2 8.46 5.54l1.77 1.76z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'ControlCameraTwoTone'); \ No newline at end of file +}, "1")], 'ControlCameraTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPoint.js b/packages/material-ui-icons/lib/ControlPoint.js index cdde93b892a7cd..f8bdfbe45e4242 100644 --- a/packages/material-ui-icons/lib/ControlPoint.js +++ b/packages/material-ui-icons/lib/ControlPoint.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'ControlPoint'); \ No newline at end of file +}), 'ControlPoint'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointDuplicate.js b/packages/material-ui-icons/lib/ControlPointDuplicate.js index 3ebb8e54407e91..60bf757241a139 100644 --- a/packages/material-ui-icons/lib/ControlPointDuplicate.js +++ b/packages/material-ui-icons/lib/ControlPointDuplicate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'ControlPointDuplicate'); \ No newline at end of file +}), 'ControlPointDuplicate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointDuplicateOutlined.js b/packages/material-ui-icons/lib/ControlPointDuplicateOutlined.js index 7889ee2c0a0a80..e2d8ff923c423b 100644 --- a/packages/material-ui-icons/lib/ControlPointDuplicateOutlined.js +++ b/packages/material-ui-icons/lib/ControlPointDuplicateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'ControlPointDuplicateOutlined'); \ No newline at end of file +}), 'ControlPointDuplicateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointDuplicateRounded.js b/packages/material-ui-icons/lib/ControlPointDuplicateRounded.js index bbc73572a0a570..fe16ba8b343950 100644 --- a/packages/material-ui-icons/lib/ControlPointDuplicateRounded.js +++ b/packages/material-ui-icons/lib/ControlPointDuplicateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 8c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V9c0-.55-.45-1-1-1zM2 12c0-2.58 1.4-4.83 3.48-6.04.32-.19.53-.51.53-.88 0-.77-.84-1.25-1.51-.86C1.82 5.78 0 8.68 0 12s1.82 6.22 4.5 7.78c.67.39 1.51-.09 1.51-.86 0-.37-.21-.69-.53-.88C3.4 16.83 2 14.58 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'ControlPointDuplicateRounded'); \ No newline at end of file +}), 'ControlPointDuplicateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointDuplicateSharp.js b/packages/material-ui-icons/lib/ControlPointDuplicateSharp.js index e598b5a1f7a1b0..b5fcc32cc2cd8a 100644 --- a/packages/material-ui-icons/lib/ControlPointDuplicateSharp.js +++ b/packages/material-ui-icons/lib/ControlPointDuplicateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'ControlPointDuplicateSharp'); \ No newline at end of file +}), 'ControlPointDuplicateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointDuplicateTwoTone.js b/packages/material-ui-icons/lib/ControlPointDuplicateTwoTone.js index fb12d3f42c71da..fe1c3ed0509ed7 100644 --- a/packages/material-ui-icons/lib/ControlPointDuplicateTwoTone.js +++ b/packages/material-ui-icons/lib/ControlPointDuplicateTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 5c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3h-3v-2h3V8h2v3h3v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zm-1-5c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12z" -}, "1")], 'ControlPointDuplicateTwoTone'); \ No newline at end of file +}, "1")], 'ControlPointDuplicateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointOutlined.js b/packages/material-ui-icons/lib/ControlPointOutlined.js index 4879981c9b46e8..16715727959899 100644 --- a/packages/material-ui-icons/lib/ControlPointOutlined.js +++ b/packages/material-ui-icons/lib/ControlPointOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'ControlPointOutlined'); \ No newline at end of file +}), 'ControlPointOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointRounded.js b/packages/material-ui-icons/lib/ControlPointRounded.js index d36064b194ddc3..3f62f6718e9388 100644 --- a/packages/material-ui-icons/lib/ControlPointRounded.js +++ b/packages/material-ui-icons/lib/ControlPointRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'ControlPointRounded'); \ No newline at end of file +}), 'ControlPointRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointSharp.js b/packages/material-ui-icons/lib/ControlPointSharp.js index 081cee73e757eb..415fa1ba5909a7 100644 --- a/packages/material-ui-icons/lib/ControlPointSharp.js +++ b/packages/material-ui-icons/lib/ControlPointSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'ControlPointSharp'); \ No newline at end of file +}), 'ControlPointSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ControlPointTwoTone.js b/packages/material-ui-icons/lib/ControlPointTwoTone.js index 3fcdffcdd0c550..4ed9e298b47ef7 100644 --- a/packages/material-ui-icons/lib/ControlPointTwoTone.js +++ b/packages/material-ui-icons/lib/ControlPointTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-13h-2v4H7v2h4v4h2v-4h4v-2h-4z" -}, "1")], 'ControlPointTwoTone'); \ No newline at end of file +}, "1")], 'ControlPointTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyAll.js b/packages/material-ui-icons/lib/CopyAll.js index 202b1d1818fdcd..b82f39ec50c928 100644 --- a/packages/material-ui-icons/lib/CopyAll.js +++ b/packages/material-ui-icons/lib/CopyAll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" -}), 'CopyAll'); \ No newline at end of file +}), 'CopyAll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyAllOutlined.js b/packages/material-ui-icons/lib/CopyAllOutlined.js index 944e986d22865f..889339bbb5ef37 100644 --- a/packages/material-ui-icons/lib/CopyAllOutlined.js +++ b/packages/material-ui-icons/lib/CopyAllOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" -}), 'CopyAllOutlined'); \ No newline at end of file +}), 'CopyAllOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyAllRounded.js b/packages/material-ui-icons/lib/CopyAllRounded.js index cb698247e46af8..2a30355baf71c3 100644 --- a/packages/material-ui-icons/lib/CopyAllRounded.js +++ b/packages/material-ui-icons/lib/CopyAllRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" -}), 'CopyAllRounded'); \ No newline at end of file +}), 'CopyAllRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyAllSharp.js b/packages/material-ui-icons/lib/CopyAllSharp.js index b2cd8ddacb077e..e81c1a016a6020 100644 --- a/packages/material-ui-icons/lib/CopyAllSharp.js +++ b/packages/material-ui-icons/lib/CopyAllSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H7v16h13V2zm-2 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22H3v-2h2v2zm3.5 0h-2v-2h2v2zm7 0h-2v-2h2v2zM3 6h2v2H3V6z" -}), 'CopyAllSharp'); \ No newline at end of file +}), 'CopyAllSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyAllTwoTone.js b/packages/material-ui-icons/lib/CopyAllTwoTone.js index 2d92807e8d434d..40a2c9317bf9e6 100644 --- a/packages/material-ui-icons/lib/CopyAllTwoTone.js +++ b/packages/material-ui-icons/lib/CopyAllTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4h9v12H9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" -}, "1")], 'CopyAllTwoTone'); \ No newline at end of file +}, "1")], 'CopyAllTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Copyright.js b/packages/material-ui-icons/lib/Copyright.js index 562e1a79e25f1d..f09627dfdb4670 100644 --- a/packages/material-ui-icons/lib/Copyright.js +++ b/packages/material-ui-icons/lib/Copyright.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.88 9.14c1.28.06 1.61 1.15 1.63 1.66h1.79c-.08-1.98-1.49-3.19-3.45-3.19C9.64 7.61 8 9 8 12.14c0 1.94.93 4.24 3.84 4.24 2.22 0 3.41-1.65 3.44-2.95h-1.79c-.03.59-.45 1.38-1.63 1.44-1.31-.04-1.86-1.06-1.86-2.73 0-2.89 1.28-2.98 1.88-3zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'Copyright'); \ No newline at end of file +}), 'Copyright'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyrightOutlined.js b/packages/material-ui-icons/lib/CopyrightOutlined.js index 8446f68f34dfbb..755a0d91f66407 100644 --- a/packages/material-ui-icons/lib/CopyrightOutlined.js +++ b/packages/material-ui-icons/lib/CopyrightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'CopyrightOutlined'); \ No newline at end of file +}), 'CopyrightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyrightRounded.js b/packages/material-ui-icons/lib/CopyrightRounded.js index 0b6ce00af00455..ed441dccbe2f33 100644 --- a/packages/material-ui-icons/lib/CopyrightRounded.js +++ b/packages/material-ui-icons/lib/CopyrightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'CopyrightRounded'); \ No newline at end of file +}), 'CopyrightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyrightSharp.js b/packages/material-ui-icons/lib/CopyrightSharp.js index 2231659efc36e2..650ff04bc74294 100644 --- a/packages/material-ui-icons/lib/CopyrightSharp.js +++ b/packages/material-ui-icons/lib/CopyrightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'CopyrightSharp'); \ No newline at end of file +}), 'CopyrightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CopyrightTwoTone.js b/packages/material-ui-icons/lib/CopyrightTwoTone.js index e7a5051a9df8a4..08202641b642e9 100644 --- a/packages/material-ui-icons/lib/CopyrightTwoTone.js +++ b/packages/material-ui-icons/lib/CopyrightTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1.92 9.14c.05.33.16.63.3.88s.34.46.59.62c.23.15.53.22.89.23.21-.01.41-.03.6-.1.2-.07.37-.17.52-.3.15-.13.27-.28.36-.46.09-.18.14-.37.15-.58h1.79c-.01.41-.12.79-.3 1.15-.18.36-.43.67-.74.94-.31.27-.67.48-1.08.63-.41.15-.85.23-1.32.23-.65 0-1.22-.12-1.7-.34-.48-.22-.88-.53-1.2-.91s-.56-.83-.71-1.35c-.15-.52-.23-1.06-.23-1.64v-.27c0-.58.09-1.12.24-1.64.15-.52.39-.97.71-1.36s.72-.69 1.2-.92c.48-.23 1.05-.34 1.7-.34.51 0 .97.07 1.39.23.42.16.78.38 1.08.66.3.28.53.62.7 1.01.17.39.26.82.28 1.29h-1.79c-.01-.22-.05-.44-.14-.64-.09-.2-.2-.38-.34-.53-.14-.15-.32-.27-.52-.36-.19-.08-.4-.12-.63-.13-.37.01-.67.08-.91.23-.25.16-.45.37-.59.62s-.25.54-.3.87c-.05.33-.08.66-.08 1.01v.27c0 .33.03.67.08 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53c.09.2.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29-.17-.39-.4-.73-.7-1.01-.3-.28-.66-.5-1.08-.66-.42-.16-.88-.23-1.39-.23-.65 0-1.22.11-1.7.34-.48.23-.88.53-1.2.92s-.56.84-.71 1.36c-.15.52-.24 1.06-.24 1.64v.27c0 .58.08 1.12.23 1.64.15.52.39.97.71 1.35s.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23.41-.15.77-.36 1.08-.63.31-.27.56-.58.74-.94.18-.36.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58-.09.18-.21.33-.36.46s-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88c-.05-.33-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'CopyrightTwoTone'); \ No newline at end of file +}, "1")], 'CopyrightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Coronavirus.js b/packages/material-ui-icons/lib/Coronavirus.js index 6d38e50a59024f..2b5de8ea019f90 100644 --- a/packages/material-ui-icons/lib/Coronavirus.js +++ b/packages/material-ui-icons/lib/Coronavirus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.25 10.5c-.41 0-.75.34-.75.75h-1.54c-.15-1.37-.69-2.63-1.52-3.65l1.09-1.09.01.01c.29.29.77.29 1.06 0s.29-.77 0-1.06L18.54 4.4c-.29-.29-.77-.29-1.06 0-.29.29-.29.76-.01 1.05l-1.09 1.09a7.015 7.015 0 0 0-3.64-1.51V3.5h.01c.41 0 .75-.34.75-.75S13.16 2 12.75 2h-1.5c-.41 0-.75.34-.75.75s.33.74.74.75v1.55c-1.37.14-2.62.69-3.64 1.51L6.51 5.47l.01-.01c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0L4.4 5.46c-.29.29-.29.77 0 1.06.29.29.76.29 1.05.01l1.09 1.09c-.82 1.02-1.36 2.26-1.5 3.63H3.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.5c0 .41.34.75.75.75s.75-.34.75-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09c-.29-.29-.76-.28-1.05.01-.29.29-.29.77 0 1.06l1.06 1.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.55c-.41.01-.74.34-.74.75s.34.75.75.75h1.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09c-.29.29-.28.76.01 1.05.29.29.77.29 1.06 0l1.06-1.06c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-.01.01-1.09-1.09c.82-1.02 1.37-2.27 1.52-3.65h1.54c0 .41.34.75.75.75s.75-.34.75-.75v-1.5c.01-.4-.33-.74-.74-.74zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1.75-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3.5 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm.75-4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" -}), 'Coronavirus'); \ No newline at end of file +}), 'Coronavirus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoronavirusOutlined.js b/packages/material-ui-icons/lib/CoronavirusOutlined.js index d50ce054aded32..a2489e2eda72f0 100644 --- a/packages/material-ui-icons/lib/CoronavirusOutlined.js +++ b/packages/material-ui-icons/lib/CoronavirusOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4.25-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3.5 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM22 11.25v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75h-1.54c-.15 1.37-.69 2.63-1.52 3.65l1.09 1.09.01-.01c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-1.06 1.06c-.29.29-.77.29-1.06 0-.29-.29-.29-.76-.01-1.05l-1.09-1.09a7.015 7.015 0 0 1-3.64 1.51v1.54h.01c.41 0 .75.34.75.75s-.34.75-.75.75h-1.5c-.41 0-.75-.34-.75-.75s.33-.74.74-.75v-1.55c-1.37-.15-2.62-.69-3.63-1.51l-1.09 1.09.01.01c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0L4.4 18.54c-.29-.29-.29-.77 0-1.06.29-.29.76-.29 1.05-.01l1.09-1.09c-.82-1.02-1.36-2.26-1.5-3.63H3.5c0 .41-.34.75-.75.75S2 13.16 2 12.75v-1.5c0-.41.34-.75.75-.75s.75.34.75.75h1.54c.15-1.37.69-2.61 1.5-3.63L5.45 6.53c-.29.28-.76.28-1.05-.01-.29-.29-.29-.77 0-1.06L5.46 4.4c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.01.01L7.6 6.56c1.02-.82 2.26-1.36 3.63-1.51V3.5c-.41-.01-.74-.34-.74-.75.01-.41.35-.75.76-.75h1.5c.41 0 .75.34.75.75s-.34.75-.75.75h-.01v1.54c1.37.14 2.62.69 3.64 1.51l1.09-1.09c-.29-.29-.28-.76.01-1.05.29-.29.77-.29 1.06 0l1.06 1.06c.29.29.29.77 0 1.06s-.77.29-1.06 0l-.01-.01-1.09 1.08c.82 1.02 1.37 2.27 1.52 3.65h1.54c0-.41.34-.75.75-.75s.75.34.75.75zM17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.5 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.75 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'CoronavirusOutlined'); \ No newline at end of file +}), 'CoronavirusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoronavirusRounded.js b/packages/material-ui-icons/lib/CoronavirusRounded.js index ca0f5c293def98..26de90496ace9c 100644 --- a/packages/material-ui-icons/lib/CoronavirusRounded.js +++ b/packages/material-ui-icons/lib/CoronavirusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.25 10.5c-.41 0-.75.34-.75.75h-1.54c-.15-1.37-.69-2.63-1.52-3.65l1.09-1.09.01.01c.29.29.77.29 1.06 0s.29-.77 0-1.06L18.54 4.4c-.29-.29-.77-.29-1.06 0-.29.29-.29.76-.01 1.05l-1.09 1.09a7.015 7.015 0 0 0-3.64-1.51V3.5h.01c.41 0 .75-.34.75-.75S13.16 2 12.75 2h-1.5c-.41 0-.75.34-.75.75s.33.74.74.75v1.55c-1.37.14-2.62.69-3.64 1.51L6.51 5.47l.01-.01c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0L4.4 5.46c-.29.29-.29.77 0 1.06.29.29.76.29 1.05.01l1.09 1.09c-.82 1.02-1.36 2.26-1.5 3.63H3.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.5c0 .41.34.75.75.75s.75-.34.75-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09c-.29-.29-.76-.28-1.05.01-.29.29-.29.77 0 1.06l1.06 1.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.55c-.41.01-.74.34-.74.75s.34.75.75.75h1.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09c-.29.29-.28.76.01 1.05.29.29.77.29 1.06 0l1.06-1.06c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-.01.01-1.09-1.09c.82-1.02 1.37-2.27 1.52-3.65h1.54c0 .41.34.75.75.75s.75-.34.75-.75v-1.5c.01-.4-.33-.74-.74-.74zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1.75-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3.5 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm.75-4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" -}), 'CoronavirusRounded'); \ No newline at end of file +}), 'CoronavirusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoronavirusSharp.js b/packages/material-ui-icons/lib/CoronavirusSharp.js index 696c5bea113079..d51269a45c0a49 100644 --- a/packages/material-ui-icons/lib/CoronavirusSharp.js +++ b/packages/material-ui-icons/lib/CoronavirusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 10.5v.75h-1.54c-.15-1.37-.69-2.63-1.52-3.65l1.09-1.09.01.01.53.53 1.06-1.06-2.12-2.12-1.06 1.06.52.52-1.09 1.09a7.015 7.015 0 0 0-3.64-1.51V3.5h.76V2h-3v1.5h.74v1.54c-1.37.15-2.62.7-3.64 1.52L6.51 5.47l.01-.01.53-.53-1.06-1.06-2.12 2.12 1.06 1.06.52-.52 1.09 1.09c-.82 1.02-1.36 2.26-1.5 3.63H3.5v-.75H2v3h1.5v-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09-.52-.52-1.06 1.06 2.12 2.12 1.06-1.06-.53-.53-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.54h-.73V22h3v-1.5h-.76v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09-.52.52 1.06 1.06L20.13 18l-1.06-1.06-.53.53-.01.01-1.09-1.09c.82-1.02 1.37-2.27 1.52-3.65h1.54v.75H22v-3h-1.5zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3.5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'CoronavirusSharp'); \ No newline at end of file +}), 'CoronavirusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CoronavirusTwoTone.js b/packages/material-ui-icons/lib/CoronavirusTwoTone.js index 91175502e71c85..f594dacfdb3e92 100644 --- a/packages/material-ui-icons/lib/CoronavirusTwoTone.js +++ b/packages/material-ui-icons/lib/CoronavirusTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.75 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3.5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4.25-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3.5 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM22 11.25v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75h-1.54c-.15 1.37-.69 2.63-1.52 3.65l1.09 1.09.01-.01c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-1.06 1.06c-.29.29-.77.29-1.06 0-.29-.29-.29-.76-.01-1.05l-1.09-1.09a7.015 7.015 0 0 1-3.64 1.51v1.54h.01c.41 0 .75.34.75.75s-.34.75-.75.75h-1.5c-.41 0-.75-.34-.75-.75s.33-.74.74-.75v-1.55c-1.37-.15-2.62-.69-3.63-1.51l-1.09 1.09.01.01c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0L4.4 18.54c-.29-.29-.29-.77 0-1.06.29-.29.76-.29 1.05-.01l1.09-1.09c-.82-1.02-1.36-2.26-1.5-3.63H3.5c0 .41-.34.75-.75.75S2 13.16 2 12.75v-1.5c0-.41.34-.75.75-.75s.75.34.75.75h1.54c.15-1.37.69-2.61 1.5-3.63L5.45 6.53c-.29.28-.76.28-1.05-.01-.29-.29-.29-.77 0-1.06L5.46 4.4c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.01.01L7.6 6.56c1.02-.82 2.26-1.36 3.63-1.51V3.5c-.41-.01-.74-.34-.74-.75.01-.41.35-.75.76-.75h1.5c.41 0 .75.34.75.75s-.34.75-.75.75h-.01v1.54c1.37.14 2.62.69 3.64 1.51l1.09-1.09c-.29-.29-.28-.76.01-1.05.29-.29.77-.29 1.06 0l1.06 1.06c.29.29.29.77 0 1.06s-.77.29-1.06 0l-.01-.01-1.09 1.08c.82 1.02 1.37 2.27 1.52 3.65h1.54c0-.41.34-.75.75-.75s.75.34.75.75zM17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.5 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.75 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}, "1")], 'CoronavirusTwoTone'); \ No newline at end of file +}, "1")], 'CoronavirusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CorporateFare.js b/packages/material-ui-icons/lib/CorporateFare.js index 541791fff9a720..41ecca31cb20da 100644 --- a/packages/material-ui-icons/lib/CorporateFare.js +++ b/packages/material-ui-icons/lib/CorporateFare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" -}), 'CorporateFare'); \ No newline at end of file +}), 'CorporateFare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CorporateFareOutlined.js b/packages/material-ui-icons/lib/CorporateFareOutlined.js index 40a182566d5840..ea10289f1e5cf3 100644 --- a/packages/material-ui-icons/lib/CorporateFareOutlined.js +++ b/packages/material-ui-icons/lib/CorporateFareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" -}), 'CorporateFareOutlined'); \ No newline at end of file +}), 'CorporateFareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CorporateFareRounded.js b/packages/material-ui-icons/lib/CorporateFareRounded.js index bd91c19e7e96ea..63567659641834 100644 --- a/packages/material-ui-icons/lib/CorporateFareRounded.js +++ b/packages/material-ui-icons/lib/CorporateFareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" -}), 'CorporateFareRounded'); \ No newline at end of file +}), 'CorporateFareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CorporateFareSharp.js b/packages/material-ui-icons/lib/CorporateFareSharp.js index 91f0d9ce327b28..376fb0c7296add 100644 --- a/packages/material-ui-icons/lib/CorporateFareSharp.js +++ b/packages/material-ui-icons/lib/CorporateFareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" -}), 'CorporateFareSharp'); \ No newline at end of file +}), 'CorporateFareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CorporateFareTwoTone.js b/packages/material-ui-icons/lib/CorporateFareTwoTone.js index 1a4388be678f6f..c35787345a5f29 100644 --- a/packages/material-ui-icons/lib/CorporateFareTwoTone.js +++ b/packages/material-ui-icons/lib/CorporateFareTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 19H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" -}, "1")], 'CorporateFareTwoTone'); \ No newline at end of file +}, "1")], 'CorporateFareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Cottage.js b/packages/material-ui-icons/lib/Cottage.js index de7cd35facfbe7..06339a7931a22b 100644 --- a/packages/material-ui-icons/lib/Cottage.js +++ b/packages/material-ui-icons/lib/Cottage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h7v-6h2v6h7v-9.38l1.79 1.36L23 11.4 12 3zm-2-2c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" -}), 'Cottage'); \ No newline at end of file +}), 'Cottage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CottageOutlined.js b/packages/material-ui-icons/lib/CottageOutlined.js index b7a6c461ab7d61..cb07c03ff2efea 100644 --- a/packages/material-ui-icons/lib/CottageOutlined.js +++ b/packages/material-ui-icons/lib/CottageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16h-5v-4h-2v4H6v-8.9l6-4.58 6 4.58V19zM10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" -}), 'CottageOutlined'); \ No newline at end of file +}), 'CottageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CottageRounded.js b/packages/material-ui-icons/lib/CottageRounded.js index c9e606f498555d..12ef30a69b9c45 100644 --- a/packages/material-ui-icons/lib/CottageRounded.js +++ b/packages/material-ui-icons/lib/CottageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.39 12.19c.34-.44.25-1.07-.19-1.4l-9.6-7.33c-.36-.27-.86-.27-1.21 0L6 7.58V7c0-.55-.45-1-1-1s-1 .45-1 1v2.11l-2.21 1.68c-.44.33-.52.96-.19 1.4.34.44.96.52 1.4.19l1-.76V20c0 .55.45 1 1 1h6v-5c0-.55.45-1 1-1s1 .45 1 1v5h6c.55 0 1-.45 1-1v-8.38l.99.76c.44.34 1.07.25 1.4-.19zM5.27 5c-.74 0-1.26-.8-.9-1.45C4.89 2.62 5.87 2 7 2c.38 0 .72-.22.89-.53.15-.31.5-.47.84-.47.74 0 1.26.8.9 1.45C9.11 3.38 8.13 4 7 4c-.38 0-.72.22-.89.53-.15.31-.5.47-.84.47z" -}), 'CottageRounded'); \ No newline at end of file +}), 'CottageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CottageSharp.js b/packages/material-ui-icons/lib/CottageSharp.js index 3c0840cdcd2c88..5d400a803c7579 100644 --- a/packages/material-ui-icons/lib/CottageSharp.js +++ b/packages/material-ui-icons/lib/CottageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h7v-6h2v6h7v-9.38l1.79 1.36L23 11.4 12 3zm-2-2c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" -}), 'CottageSharp'); \ No newline at end of file +}), 'CottageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CottageTwoTone.js b/packages/material-ui-icons/lib/CottageTwoTone.js index 7c45b6da3868c0..96e2c4b91f033f 100644 --- a/packages/material-ui-icons/lib/CottageTwoTone.js +++ b/packages/material-ui-icons/lib/CottageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 19h-5v-4h-2v4H6v-8.9l6-4.58 6 4.58z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16h-5v-4h-2v4H6v-8.9l6-4.58 6 4.58V19zM10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" -}, "1")], 'CottageTwoTone'); \ No newline at end of file +}, "1")], 'CottageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Countertops.js b/packages/material-ui-icons/lib/Countertops.js index cc0986debbfd75..9faa79364083d9 100644 --- a/packages/material-ui-icons/lib/Countertops.js +++ b/packages/material-ui-icons/lib/Countertops.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2h-4zm-5 8h-2v-6h2v6z" -}), 'Countertops'); \ No newline at end of file +}), 'Countertops'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CountertopsOutlined.js b/packages/material-ui-icons/lib/CountertopsOutlined.js index cfceddafe952cb..34c8b174219ef0 100644 --- a/packages/material-ui-icons/lib/CountertopsOutlined.js +++ b/packages/material-ui-icons/lib/CountertopsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10h-4V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2zM6 6h2v2H6V6zm0 12v-6h5v6H6zm12 0h-5v-6h5v6z" -}), 'CountertopsOutlined'); \ No newline at end of file +}), 'CountertopsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CountertopsRounded.js b/packages/material-ui-icons/lib/CountertopsRounded.js index 56286fe608a3c1..0b3d70ef39aa85 100644 --- a/packages/material-ui-icons/lib/CountertopsRounded.js +++ b/packages/material-ui-icons/lib/CountertopsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10V7.17c0-1.62-1.22-3.08-2.84-3.17-1.21-.06-2.27.59-2.8 1.57-.35.65.17 1.43.91 1.43h.01c.34 0 .68-.16.84-.46.16-.32.5-.54.88-.54.55 0 1 .45 1 1v3H8c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2H3c-.55 0-1 .45-1 1s.45 1 1 1h1v7c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-7h1c.55 0 1-.45 1-1s-.45-1-1-1h-3zm-5 8h-2v-6h2v6z" -}), 'CountertopsRounded'); \ No newline at end of file +}), 'CountertopsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CountertopsSharp.js b/packages/material-ui-icons/lib/CountertopsSharp.js index 04e31a6a9c99ce..4cbfd31780e3ca 100644 --- a/packages/material-ui-icons/lib/CountertopsSharp.js +++ b/packages/material-ui-icons/lib/CountertopsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2h-4zm-5 8h-2v-6h2v6z" -}), 'CountertopsSharp'); \ No newline at end of file +}), 'CountertopsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CountertopsTwoTone.js b/packages/material-ui-icons/lib/CountertopsTwoTone.js index 09ce702a3abbcf..8fb4170babbbcd 100644 --- a/packages/material-ui-icons/lib/CountertopsTwoTone.js +++ b/packages/material-ui-icons/lib/CountertopsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h2v2H6V6zm0 12v-6h5v6H6zm12 0h-5v-6h5v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10h-4V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2zM6 6h2v2H6V6zm0 12v-6h5v6H6zm12 0h-5v-6h5v6z" -}, "1")], 'CountertopsTwoTone'); \ No newline at end of file +}, "1")], 'CountertopsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Create.js b/packages/material-ui-icons/lib/Create.js index d6ed0a80fc077e..f0de6a525cfd34 100644 --- a/packages/material-ui-icons/lib/Create.js +++ b/packages/material-ui-icons/lib/Create.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'Create'); \ No newline at end of file +}), 'Create'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateNewFolder.js b/packages/material-ui-icons/lib/CreateNewFolder.js index 8284924dbb34e2..85a50dc5ca831d 100644 --- a/packages/material-ui-icons/lib/CreateNewFolder.js +++ b/packages/material-ui-icons/lib/CreateNewFolder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z" -}), 'CreateNewFolder'); \ No newline at end of file +}), 'CreateNewFolder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateNewFolderOutlined.js b/packages/material-ui-icons/lib/CreateNewFolderOutlined.js index 8da6c9bd9d64e5..83b02537b80caa 100644 --- a/packages/material-ui-icons/lib/CreateNewFolderOutlined.js +++ b/packages/material-ui-icons/lib/CreateNewFolderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z" -}), 'CreateNewFolderOutlined'); \ No newline at end of file +}), 'CreateNewFolderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateNewFolderRounded.js b/packages/material-ui-icons/lib/CreateNewFolderRounded.js index 374e3412f07e12..996769e80042e9 100644 --- a/packages/material-ui-icons/lib/CreateNewFolderRounded.js +++ b/packages/material-ui-icons/lib/CreateNewFolderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2 8h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2h-2c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'CreateNewFolderRounded'); \ No newline at end of file +}), 'CreateNewFolderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateNewFolderSharp.js b/packages/material-ui-icons/lib/CreateNewFolderSharp.js index 681102568b0386..3e6a485401154a 100644 --- a/packages/material-ui-icons/lib/CreateNewFolderSharp.js +++ b/packages/material-ui-icons/lib/CreateNewFolderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H12l-2-2H2v16h20V6zm-3 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z" -}), 'CreateNewFolderSharp'); \ No newline at end of file +}), 'CreateNewFolderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateNewFolderTwoTone.js b/packages/material-ui-icons/lib/CreateNewFolderTwoTone.js index aad305ab4c72b2..c27a2b272052bc 100644 --- a/packages/material-ui-icons/lib/CreateNewFolderTwoTone.js +++ b/packages/material-ui-icons/lib/CreateNewFolderTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.17 8-.59-.59L9.17 6H4v12h16V8h-8.83zM14 10h2v2h2v2h-2v2h-2v-2h-2v-2h2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z" -}, "1")], 'CreateNewFolderTwoTone'); \ No newline at end of file +}, "1")], 'CreateNewFolderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateOutlined.js b/packages/material-ui-icons/lib/CreateOutlined.js index 3d05ddd292035c..b23de07e357a86 100644 --- a/packages/material-ui-icons/lib/CreateOutlined.js +++ b/packages/material-ui-icons/lib/CreateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}), 'CreateOutlined'); \ No newline at end of file +}), 'CreateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateRounded.js b/packages/material-ui-icons/lib/CreateRounded.js index a1d3b7efaf50ca..3939c78ee9a250 100644 --- a/packages/material-ui-icons/lib/CreateRounded.js +++ b/packages/material-ui-icons/lib/CreateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'CreateRounded'); \ No newline at end of file +}), 'CreateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateSharp.js b/packages/material-ui-icons/lib/CreateSharp.js index b933b95c9b222f..a263c0248f5226 100644 --- a/packages/material-ui-icons/lib/CreateSharp.js +++ b/packages/material-ui-icons/lib/CreateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" -}), 'CreateSharp'); \ No newline at end of file +}), 'CreateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreateTwoTone.js b/packages/material-ui-icons/lib/CreateTwoTone.js index 17b37d3b4c63d6..e1064add0f15d2 100644 --- a/packages/material-ui-icons/lib/CreateTwoTone.js +++ b/packages/material-ui-icons/lib/CreateTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}, "1")], 'CreateTwoTone'); \ No newline at end of file +}, "1")], 'CreateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCard.js b/packages/material-ui-icons/lib/CreditCard.js index 7a16251a659a6d..f20d999261f182 100644 --- a/packages/material-ui-icons/lib/CreditCard.js +++ b/packages/material-ui-icons/lib/CreditCard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" -}), 'CreditCard'); \ No newline at end of file +}), 'CreditCard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardOff.js b/packages/material-ui-icons/lib/CreditCardOff.js index f151f189d0d4cb..7310f4ab9c4629 100644 --- a/packages/material-ui-icons/lib/CreditCardOff.js +++ b/packages/material-ui-icons/lib/CreditCardOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.9 21.9 2.1 2.1.69 3.51l1.55 1.55c-.15.28-.23.6-.23.94L2 18c0 1.11.89 2 2 2h13.17l3.31 3.31 1.42-1.41zM4 12V8h1.17l4 4H4zm2.83-8H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L14.83 12H20V8h-9.17l-4-4z" -}), 'CreditCardOff'); \ No newline at end of file +}), 'CreditCardOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardOffOutlined.js b/packages/material-ui-icons/lib/CreditCardOffOutlined.js index 3b1278dab552a2..badde535a0e646 100644 --- a/packages/material-ui-icons/lib/CreditCardOffOutlined.js +++ b/packages/material-ui-icons/lib/CreditCardOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L20 17.17V12h-5.17l-4-4H20V6H8.83l-2-2zm13.66 19.31L17.17 20H4c-1.11 0-2-.89-2-2l.01-12c0-.34.08-.66.23-.93L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM4 6.83V8h1.17L4 6.83zM15.17 18l-6-6H4v6h11.17z" -}), 'CreditCardOffOutlined'); \ No newline at end of file +}), 'CreditCardOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardOffRounded.js b/packages/material-ui-icons/lib/CreditCardOffRounded.js index fc3cd7b1f0f4dd..59890568ad8af3 100644 --- a/packages/material-ui-icons/lib/CreditCardOffRounded.js +++ b/packages/material-ui-icons/lib/CreditCardOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l.84.84c-.14.28-.22.6-.22.94L2 18c0 1.11.89 2 2 2h13.17l2.61 2.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42zM4 12V8h1.17l4 4H4zm2.83-8H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L14.83 12H20V8h-9.17l-4-4z" -}), 'CreditCardOffRounded'); \ No newline at end of file +}), 'CreditCardOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardOffSharp.js b/packages/material-ui-icons/lib/CreditCardOffSharp.js index d121d5c285b095..302d386e0d45c9 100644 --- a/packages/material-ui-icons/lib/CreditCardOffSharp.js +++ b/packages/material-ui-icons/lib/CreditCardOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H22v15.17L14.83 12H20V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM9.17 12l-4-4H4v4h5.17z" -}), 'CreditCardOffSharp'); \ No newline at end of file +}), 'CreditCardOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardOffTwoTone.js b/packages/material-ui-icons/lib/CreditCardOffTwoTone.js index 22c78e53df2eea..a4e39c0b597f65 100644 --- a/packages/material-ui-icons/lib/CreditCardOffTwoTone.js +++ b/packages/material-ui-icons/lib/CreditCardOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17.17V12h-5.17L20 17.17zM10.83 8H20V6H8.83l2 2zM4 6.83V8h1.17L4 6.83zM15.17 18l-6-6H4v6h11.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L20 17.17V12h-5.17l-4-4H20V6H8.83l-2-2zm13.66 19.31L17.17 20H4c-1.11 0-2-.89-2-2l.01-12c0-.34.08-.66.23-.93L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM4 6.83V8h1.17L4 6.83zM15.17 18l-6-6H4v6h11.17z" -}, "1")], 'CreditCardOffTwoTone'); \ No newline at end of file +}, "1")], 'CreditCardOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardOutlined.js b/packages/material-ui-icons/lib/CreditCardOutlined.js index cd2a8f9d67182e..1b3c7fc4af6d67 100644 --- a/packages/material-ui-icons/lib/CreditCardOutlined.js +++ b/packages/material-ui-icons/lib/CreditCardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" -}), 'CreditCardOutlined'); \ No newline at end of file +}), 'CreditCardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardRounded.js b/packages/material-ui-icons/lib/CreditCardRounded.js index f591d2021b75d6..176db26b9050ef 100644 --- a/packages/material-ui-icons/lib/CreditCardRounded.js +++ b/packages/material-ui-icons/lib/CreditCardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V6h16v2z" -}), 'CreditCardRounded'); \ No newline at end of file +}), 'CreditCardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardSharp.js b/packages/material-ui-icons/lib/CreditCardSharp.js index 4f2b4481caabae..cca1e1417af7ab 100644 --- a/packages/material-ui-icons/lib/CreditCardSharp.js +++ b/packages/material-ui-icons/lib/CreditCardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2.01L2 20h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z" -}), 'CreditCardSharp'); \ No newline at end of file +}), 'CreditCardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditCardTwoTone.js b/packages/material-ui-icons/lib/CreditCardTwoTone.js index 8594bbe226cb2d..e601a5d79da904 100644 --- a/packages/material-ui-icons/lib/CreditCardTwoTone.js +++ b/packages/material-ui-icons/lib/CreditCardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12h16v6H4zm0-6h16v2H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" -}, "1")], 'CreditCardTwoTone'); \ No newline at end of file +}, "1")], 'CreditCardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditScore.js b/packages/material-ui-icons/lib/CreditScore.js index f0d67fc5c904c8..a72951c40221a7 100644 --- a/packages/material-ui-icons/lib/CreditScore.js +++ b/packages/material-ui-icons/lib/CreditScore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h5v-2H4v-6h18V6c0-1.11-.89-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" -}), 'CreditScore'); \ No newline at end of file +}), 'CreditScore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditScoreOutlined.js b/packages/material-ui-icons/lib/CreditScoreOutlined.js index 50aa8d49e3f63f..d397ff482c8eb0 100644 --- a/packages/material-ui-icons/lib/CreditScoreOutlined.js +++ b/packages/material-ui-icons/lib/CreditScoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h5v-2H4v-6h18V6c0-1.11-.89-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" -}), 'CreditScoreOutlined'); \ No newline at end of file +}), 'CreditScoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditScoreRounded.js b/packages/material-ui-icons/lib/CreditScoreRounded.js index a4d369aee74eaf..c40318ceb89cd9 100644 --- a/packages/material-ui-icons/lib/CreditScoreRounded.js +++ b/packages/material-ui-icons/lib/CreditScoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h4c.55 0 1-.45 1-1s-.45-1-1-1H4v-6h18V6c0-1.1-.9-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.12-2.12a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0l5.66-5.66c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-4.96 4.95z" -}), 'CreditScoreRounded'); \ No newline at end of file +}), 'CreditScoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditScoreSharp.js b/packages/material-ui-icons/lib/CreditScoreSharp.js index 36f5aa58eba122..a626c32de39a79 100644 --- a/packages/material-ui-icons/lib/CreditScoreSharp.js +++ b/packages/material-ui-icons/lib/CreditScoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4v16h7v-2H4v-6h18V4H2zm18 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" -}), 'CreditScoreSharp'); \ No newline at end of file +}), 'CreditScoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CreditScoreTwoTone.js b/packages/material-ui-icons/lib/CreditScoreTwoTone.js index a662412179e907..ad5e0e1024a61d 100644 --- a/packages/material-ui-icons/lib/CreditScoreTwoTone.js +++ b/packages/material-ui-icons/lib/CreditScoreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h5v-2H4v-6h18V6c0-1.11-.89-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" -}), 'CreditScoreTwoTone'); \ No newline at end of file +}), 'CreditScoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crib.js b/packages/material-ui-icons/lib/Crib.js index ac73af3df26d5a..d91bfbc37270fd 100644 --- a/packages/material-ui-icons/lib/Crib.js +++ b/packages/material-ui-icons/lib/Crib.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9h-6V4H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm-4 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z" -}), 'Crib'); \ No newline at end of file +}), 'Crib'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CribOutlined.js b/packages/material-ui-icons/lib/CribOutlined.js index 8b64b6a587d475..1f3b4fc95ee5bc 100644 --- a/packages/material-ui-icons/lib/CribOutlined.js +++ b/packages/material-ui-icons/lib/CribOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9h-6V4H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm-4 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75zM18 14H6V8c0-1.1.9-2 2-2h2v5h8v3z" -}), 'CribOutlined'); \ No newline at end of file +}), 'CribOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CribRounded.js b/packages/material-ui-icons/lib/CribRounded.js index 0056effa5f0af8..856dde1dfcc807 100644 --- a/packages/material-ui-icons/lib/CribRounded.js +++ b/packages/material-ui-icons/lib/CribRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.32 18.32c-.36-.36-.92-.4-1.31-.08-.32.25-.65.48-1 .69V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2h-6V6c0-1.1-.9-2-2-2H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.35-.2-.69-.43-1-.69-.39-.32-.96-.27-1.31.08-.42.42-.39 1.12.08 1.5C7.47 21.18 9.64 22 12 22c2.36 0 4.53-.82 6.24-2.18.47-.38.5-1.08.08-1.5zM14 19.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z" -}), 'CribRounded'); \ No newline at end of file +}), 'CribRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CribSharp.js b/packages/material-ui-icons/lib/CribSharp.js index e1c3bea5f80273..a65272cea65c1e 100644 --- a/packages/material-ui-icons/lib/CribSharp.js +++ b/packages/material-ui-icons/lib/CribSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9h-8V4H8C5.79 4 4 5.79 4 8v8h4v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h4V9zm-6 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z" -}), 'CribSharp'); \ No newline at end of file +}), 'CribSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CribTwoTone.js b/packages/material-ui-icons/lib/CribTwoTone.js index 9710ccf705c472..9adcf5811dc062 100644 --- a/packages/material-ui-icons/lib/CribTwoTone.js +++ b/packages/material-ui-icons/lib/CribTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14H6V8c0-1.1.9-2 2-2h2v5h8v3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9h-6V4H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm-4 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75zM18 14H6V8c0-1.1.9-2 2-2h2v5h8v3z" -}, "1")], 'CribTwoTone'); \ No newline at end of file +}, "1")], 'CribTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop.js b/packages/material-ui-icons/lib/Crop.js index 869b04c70569f3..14c453cb8e1314 100644 --- a/packages/material-ui-icons/lib/Crop.js +++ b/packages/material-ui-icons/lib/Crop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z" -}), 'Crop'); \ No newline at end of file +}), 'Crop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop169.js b/packages/material-ui-icons/lib/Crop169.js index abde490aaa9c2d..b2c16e3a779d85 100644 --- a/packages/material-ui-icons/lib/Crop169.js +++ b/packages/material-ui-icons/lib/Crop169.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" -}), 'Crop169'); \ No newline at end of file +}), 'Crop169'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop169Outlined.js b/packages/material-ui-icons/lib/Crop169Outlined.js index 5600a6bdb2619d..531dc86a258794 100644 --- a/packages/material-ui-icons/lib/Crop169Outlined.js +++ b/packages/material-ui-icons/lib/Crop169Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" -}), 'Crop169Outlined'); \ No newline at end of file +}), 'Crop169Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop169Rounded.js b/packages/material-ui-icons/lib/Crop169Rounded.js index 8ab0650c31a5a1..40377c4b78ad90 100644 --- a/packages/material-ui-icons/lib/Crop169Rounded.js +++ b/packages/material-ui-icons/lib/Crop169Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 10H6c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1z" -}), 'Crop169Rounded'); \ No newline at end of file +}), 'Crop169Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop169Sharp.js b/packages/material-ui-icons/lib/Crop169Sharp.js index 813495da9df80b..33fe6613e4c29a 100644 --- a/packages/material-ui-icons/lib/Crop169Sharp.js +++ b/packages/material-ui-icons/lib/Crop169Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3v12h18V6zm-2 10H5V8h14v8z" -}), 'Crop169Sharp'); \ No newline at end of file +}), 'Crop169Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop169TwoTone.js b/packages/material-ui-icons/lib/Crop169TwoTone.js index 3b91cd373ddf00..792d6ae7b65591 100644 --- a/packages/material-ui-icons/lib/Crop169TwoTone.js +++ b/packages/material-ui-icons/lib/Crop169TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" -}), 'Crop169TwoTone'); \ No newline at end of file +}), 'Crop169TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop32.js b/packages/material-ui-icons/lib/Crop32.js index f675e763c8b388..a68a543daf1dbb 100644 --- a/packages/material-ui-icons/lib/Crop32.js +++ b/packages/material-ui-icons/lib/Crop32.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" -}), 'Crop32'); \ No newline at end of file +}), 'Crop32'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop32Outlined.js b/packages/material-ui-icons/lib/Crop32Outlined.js index b44abca540a537..7b7a1cbe11a129 100644 --- a/packages/material-ui-icons/lib/Crop32Outlined.js +++ b/packages/material-ui-icons/lib/Crop32Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" -}), 'Crop32Outlined'); \ No newline at end of file +}), 'Crop32Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop32Rounded.js b/packages/material-ui-icons/lib/Crop32Rounded.js index 521b1d345abff1..c2b53822b590d5 100644 --- a/packages/material-ui-icons/lib/Crop32Rounded.js +++ b/packages/material-ui-icons/lib/Crop32Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H6c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'Crop32Rounded'); \ No newline at end of file +}), 'Crop32Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop32Sharp.js b/packages/material-ui-icons/lib/Crop32Sharp.js index c0a2e5d609ab2e..a836d778dbe529 100644 --- a/packages/material-ui-icons/lib/Crop32Sharp.js +++ b/packages/material-ui-icons/lib/Crop32Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3v16h18V4zm-2 14H5V6h14v12z" -}), 'Crop32Sharp'); \ No newline at end of file +}), 'Crop32Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop32TwoTone.js b/packages/material-ui-icons/lib/Crop32TwoTone.js index f89b5df31b8bf2..4f129ac1fa5b78 100644 --- a/packages/material-ui-icons/lib/Crop32TwoTone.js +++ b/packages/material-ui-icons/lib/Crop32TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" -}), 'Crop32TwoTone'); \ No newline at end of file +}), 'Crop32TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop54.js b/packages/material-ui-icons/lib/Crop54.js index 8bd3078d70b53f..cb1f42da3b31e7 100644 --- a/packages/material-ui-icons/lib/Crop54.js +++ b/packages/material-ui-icons/lib/Crop54.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" -}), 'Crop54'); \ No newline at end of file +}), 'Crop54'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop54Outlined.js b/packages/material-ui-icons/lib/Crop54Outlined.js index d20eda62aca836..49cf5973ed5f8e 100644 --- a/packages/material-ui-icons/lib/Crop54Outlined.js +++ b/packages/material-ui-icons/lib/Crop54Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" -}), 'Crop54Outlined'); \ No newline at end of file +}), 'Crop54Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop54Rounded.js b/packages/material-ui-icons/lib/Crop54Rounded.js index 72bc21ea536bb0..c3e79ff716cb8b 100644 --- a/packages/material-ui-icons/lib/Crop54Rounded.js +++ b/packages/material-ui-icons/lib/Crop54Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-1 12H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" -}), 'Crop54Rounded'); \ No newline at end of file +}), 'Crop54Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop54Sharp.js b/packages/material-ui-icons/lib/Crop54Sharp.js index b302a0554ba131..16a0f8d6c9ed1f 100644 --- a/packages/material-ui-icons/lib/Crop54Sharp.js +++ b/packages/material-ui-icons/lib/Crop54Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z" -}), 'Crop54Sharp'); \ No newline at end of file +}), 'Crop54Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop54TwoTone.js b/packages/material-ui-icons/lib/Crop54TwoTone.js index 72f3a8a03a3414..7e083aa093f255 100644 --- a/packages/material-ui-icons/lib/Crop54TwoTone.js +++ b/packages/material-ui-icons/lib/Crop54TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" -}), 'Crop54TwoTone'); \ No newline at end of file +}), 'Crop54TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop75.js b/packages/material-ui-icons/lib/Crop75.js index 62aacfce105654..efbe82b07a78bb 100644 --- a/packages/material-ui-icons/lib/Crop75.js +++ b/packages/material-ui-icons/lib/Crop75.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" -}), 'Crop75'); \ No newline at end of file +}), 'Crop75'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop75Outlined.js b/packages/material-ui-icons/lib/Crop75Outlined.js index 4065f896fa727c..6efe17f61caa62 100644 --- a/packages/material-ui-icons/lib/Crop75Outlined.js +++ b/packages/material-ui-icons/lib/Crop75Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" -}), 'Crop75Outlined'); \ No newline at end of file +}), 'Crop75Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop75Rounded.js b/packages/material-ui-icons/lib/Crop75Rounded.js index 74121a7cf042b2..319528758f31f6 100644 --- a/packages/material-ui-icons/lib/Crop75Rounded.js +++ b/packages/material-ui-icons/lib/Crop75Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-1 8H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1z" -}), 'Crop75Rounded'); \ No newline at end of file +}), 'Crop75Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop75Sharp.js b/packages/material-ui-icons/lib/Crop75Sharp.js index 19e7c3fec01db4..aeb9329b28133a 100644 --- a/packages/material-ui-icons/lib/Crop75Sharp.js +++ b/packages/material-ui-icons/lib/Crop75Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7H3v10h18V7zm-2 8H5V9h14v6z" -}), 'Crop75Sharp'); \ No newline at end of file +}), 'Crop75Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Crop75TwoTone.js b/packages/material-ui-icons/lib/Crop75TwoTone.js index afbb9491d64fc2..8d8ab59f243d11 100644 --- a/packages/material-ui-icons/lib/Crop75TwoTone.js +++ b/packages/material-ui-icons/lib/Crop75TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" -}), 'Crop75TwoTone'); \ No newline at end of file +}), 'Crop75TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropDin.js b/packages/material-ui-icons/lib/CropDin.js index ea2c1ced3c5725..13f266f93a88f3 100644 --- a/packages/material-ui-icons/lib/CropDin.js +++ b/packages/material-ui-icons/lib/CropDin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'CropDin'); \ No newline at end of file +}), 'CropDin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropDinOutlined.js b/packages/material-ui-icons/lib/CropDinOutlined.js index 49b190451200ee..9b52f594beed2c 100644 --- a/packages/material-ui-icons/lib/CropDinOutlined.js +++ b/packages/material-ui-icons/lib/CropDinOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'CropDinOutlined'); \ No newline at end of file +}), 'CropDinOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropDinRounded.js b/packages/material-ui-icons/lib/CropDinRounded.js index f75ea4e7ee7462..6e799098617acb 100644 --- a/packages/material-ui-icons/lib/CropDinRounded.js +++ b/packages/material-ui-icons/lib/CropDinRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'CropDinRounded'); \ No newline at end of file +}), 'CropDinRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropDinSharp.js b/packages/material-ui-icons/lib/CropDinSharp.js index 45f3bcdeffdba5..ef7ae3b9d3041e 100644 --- a/packages/material-ui-icons/lib/CropDinSharp.js +++ b/packages/material-ui-icons/lib/CropDinSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-2 16H5V5h14v14z" -}), 'CropDinSharp'); \ No newline at end of file +}), 'CropDinSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropDinTwoTone.js b/packages/material-ui-icons/lib/CropDinTwoTone.js index afe2c18552a713..66975756073296 100644 --- a/packages/material-ui-icons/lib/CropDinTwoTone.js +++ b/packages/material-ui-icons/lib/CropDinTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'CropDinTwoTone'); \ No newline at end of file +}), 'CropDinTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropFree.js b/packages/material-ui-icons/lib/CropFree.js index fb3a7095a9d94b..54f0dd29a3a578 100644 --- a/packages/material-ui-icons/lib/CropFree.js +++ b/packages/material-ui-icons/lib/CropFree.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z" -}), 'CropFree'); \ No newline at end of file +}), 'CropFree'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropFreeOutlined.js b/packages/material-ui-icons/lib/CropFreeOutlined.js index 7a7cf7cb710694..b22644dc7cbbcc 100644 --- a/packages/material-ui-icons/lib/CropFreeOutlined.js +++ b/packages/material-ui-icons/lib/CropFreeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z" -}), 'CropFreeOutlined'); \ No newline at end of file +}), 'CropFreeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropFreeRounded.js b/packages/material-ui-icons/lib/CropFreeRounded.js index 968b0be4f4bd6f..4f8e0374964860 100644 --- a/packages/material-ui-icons/lib/CropFreeRounded.js +++ b/packages/material-ui-icons/lib/CropFreeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v3c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm1 10c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm15 3c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zm0-15h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2z" -}), 'CropFreeRounded'); \ No newline at end of file +}), 'CropFreeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropFreeSharp.js b/packages/material-ui-icons/lib/CropFreeSharp.js index 4f0a050e26db8e..000189a790c83f 100644 --- a/packages/material-ui-icons/lib/CropFreeSharp.js +++ b/packages/material-ui-icons/lib/CropFreeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v6h2V5h4V3H3zm2 12H3v6h6v-2H5v-4zm14 4h-4v2h6v-6h-2v4zm2-16h-6v2h4v4h2V3z" -}), 'CropFreeSharp'); \ No newline at end of file +}), 'CropFreeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropFreeTwoTone.js b/packages/material-ui-icons/lib/CropFreeTwoTone.js index d0634d4f95e492..8cbdf8a2f92b84 100644 --- a/packages/material-ui-icons/lib/CropFreeTwoTone.js +++ b/packages/material-ui-icons/lib/CropFreeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM21 5c0-1.1-.9-2-2-2h-4v2h4v4h2V5zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm16 14v-4h-2v4h-4v2h4c1.1 0 2-.9 2-2z" -}), 'CropFreeTwoTone'); \ No newline at end of file +}), 'CropFreeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropLandscape.js b/packages/material-ui-icons/lib/CropLandscape.js index 7202f97055ae60..a4555427679c70 100644 --- a/packages/material-ui-icons/lib/CropLandscape.js +++ b/packages/material-ui-icons/lib/CropLandscape.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" -}), 'CropLandscape'); \ No newline at end of file +}), 'CropLandscape'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropLandscapeOutlined.js b/packages/material-ui-icons/lib/CropLandscapeOutlined.js index 3c2863972dcbf7..295549a02eff1f 100644 --- a/packages/material-ui-icons/lib/CropLandscapeOutlined.js +++ b/packages/material-ui-icons/lib/CropLandscapeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" -}), 'CropLandscapeOutlined'); \ No newline at end of file +}), 'CropLandscapeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropLandscapeRounded.js b/packages/material-ui-icons/lib/CropLandscapeRounded.js index 942df16c014e10..dc700b472690ee 100644 --- a/packages/material-ui-icons/lib/CropLandscapeRounded.js +++ b/packages/material-ui-icons/lib/CropLandscapeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-1 12H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" -}), 'CropLandscapeRounded'); \ No newline at end of file +}), 'CropLandscapeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropLandscapeSharp.js b/packages/material-ui-icons/lib/CropLandscapeSharp.js index 4271e9d3679680..49c143f78aa8ea 100644 --- a/packages/material-ui-icons/lib/CropLandscapeSharp.js +++ b/packages/material-ui-icons/lib/CropLandscapeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z" -}), 'CropLandscapeSharp'); \ No newline at end of file +}), 'CropLandscapeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropLandscapeTwoTone.js b/packages/material-ui-icons/lib/CropLandscapeTwoTone.js index 2b21447a6b2141..4d481d62b8a1ee 100644 --- a/packages/material-ui-icons/lib/CropLandscapeTwoTone.js +++ b/packages/material-ui-icons/lib/CropLandscapeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" -}), 'CropLandscapeTwoTone'); \ No newline at end of file +}), 'CropLandscapeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropOriginal.js b/packages/material-ui-icons/lib/CropOriginal.js index 91bae6c85d58ef..dae53dea7f78d4 100644 --- a/packages/material-ui-icons/lib/CropOriginal.js +++ b/packages/material-ui-icons/lib/CropOriginal.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" -}), 'CropOriginal'); \ No newline at end of file +}), 'CropOriginal'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropOriginalOutlined.js b/packages/material-ui-icons/lib/CropOriginalOutlined.js index fc1de415618839..1c2d1dc338ad22 100644 --- a/packages/material-ui-icons/lib/CropOriginalOutlined.js +++ b/packages/material-ui-icons/lib/CropOriginalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" -}), 'CropOriginalOutlined'); \ No newline at end of file +}), 'CropOriginalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropOriginalRounded.js b/packages/material-ui-icons/lib/CropOriginalRounded.js index a7e9d80d668be1..86bdb6ed4f08fa 100644 --- a/packages/material-ui-icons/lib/CropOriginalRounded.js +++ b/packages/material-ui-icons/lib/CropOriginalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4.44-6.19-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0z" -}), 'CropOriginalRounded'); \ No newline at end of file +}), 'CropOriginalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropOriginalSharp.js b/packages/material-ui-icons/lib/CropOriginalSharp.js index 191cd06c09980c..988fe425171c81 100644 --- a/packages/material-ui-icons/lib/CropOriginalSharp.js +++ b/packages/material-ui-icons/lib/CropOriginalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-2 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" -}), 'CropOriginalSharp'); \ No newline at end of file +}), 'CropOriginalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropOriginalTwoTone.js b/packages/material-ui-icons/lib/CropOriginalTwoTone.js index 502cbe49d01815..2595db2becedc6 100644 --- a/packages/material-ui-icons/lib/CropOriginalTwoTone.js +++ b/packages/material-ui-icons/lib/CropOriginalTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11z" -}), 'CropOriginalTwoTone'); \ No newline at end of file +}), 'CropOriginalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropOutlined.js b/packages/material-ui-icons/lib/CropOutlined.js index 1bb665d1a720c8..b499dae16a1d15 100644 --- a/packages/material-ui-icons/lib/CropOutlined.js +++ b/packages/material-ui-icons/lib/CropOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z" -}), 'CropOutlined'); \ No newline at end of file +}), 'CropOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropPortrait.js b/packages/material-ui-icons/lib/CropPortrait.js index 6e7e15560b2983..fd0c37562be68f 100644 --- a/packages/material-ui-icons/lib/CropPortrait.js +++ b/packages/material-ui-icons/lib/CropPortrait.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" -}), 'CropPortrait'); \ No newline at end of file +}), 'CropPortrait'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropPortraitOutlined.js b/packages/material-ui-icons/lib/CropPortraitOutlined.js index 7b89f0b66224ab..50414e6aa99b41 100644 --- a/packages/material-ui-icons/lib/CropPortraitOutlined.js +++ b/packages/material-ui-icons/lib/CropPortraitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" -}), 'CropPortraitOutlined'); \ No newline at end of file +}), 'CropPortraitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropPortraitRounded.js b/packages/material-ui-icons/lib/CropPortraitRounded.js index ed0ce3d53d40be..308ce9084a4407 100644 --- a/packages/material-ui-icons/lib/CropPortraitRounded.js +++ b/packages/material-ui-icons/lib/CropPortraitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'CropPortraitRounded'); \ No newline at end of file +}), 'CropPortraitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropPortraitSharp.js b/packages/material-ui-icons/lib/CropPortraitSharp.js index 5ea0573f9e93f5..247f2de54f05f9 100644 --- a/packages/material-ui-icons/lib/CropPortraitSharp.js +++ b/packages/material-ui-icons/lib/CropPortraitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5v18h14V3zm-2 16H7V5h10v14z" -}), 'CropPortraitSharp'); \ No newline at end of file +}), 'CropPortraitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropPortraitTwoTone.js b/packages/material-ui-icons/lib/CropPortraitTwoTone.js index 8c1876a5d00502..97994b81f6fcad 100644 --- a/packages/material-ui-icons/lib/CropPortraitTwoTone.js +++ b/packages/material-ui-icons/lib/CropPortraitTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" -}), 'CropPortraitTwoTone'); \ No newline at end of file +}), 'CropPortraitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropRotate.js b/packages/material-ui-icons/lib/CropRotate.js index 827bedbe221c70..b853152b65ef95 100644 --- a/packages/material-ui-icons/lib/CropRotate.js +++ b/packages/material-ui-icons/lib/CropRotate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z" -}), 'CropRotate'); \ No newline at end of file +}), 'CropRotate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropRotateOutlined.js b/packages/material-ui-icons/lib/CropRotateOutlined.js index 5a1efc48c6191d..e5546fe9807ed0 100644 --- a/packages/material-ui-icons/lib/CropRotateOutlined.js +++ b/packages/material-ui-icons/lib/CropRotateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z" -}), 'CropRotateOutlined'); \ No newline at end of file +}), 'CropRotateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropRotateRounded.js b/packages/material-ui-icons/lib/CropRotateRounded.js index 420c9cb56cffb8..63acc2c184c168 100644 --- a/packages/material-ui-icons/lib/CropRotateRounded.js +++ b/packages/material-ui-icons/lib/CropRotateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9v5h2V8c0-1.1-.9-2-2-2h-6v2h5c.55 0 1 .45 1 1zm3 7H9c-.55 0-1-.45-1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v8c0 1.1.9 2 2 2h8v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zM17.66 1.4C15.99.51 13.83-.11 11.39.04l3.81 3.81 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.8-2.96-7-6.24-8.74zM7.47 21.49c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.67.89 3.83 1.51 6.27 1.36L8.8 20.16l-1.33 1.33z" -}), 'CropRotateRounded'); \ No newline at end of file +}), 'CropRotateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropRotateSharp.js b/packages/material-ui-icons/lib/CropRotateSharp.js index 2461decd2f724f..2ff48fd369509a 100644 --- a/packages/material-ui-icons/lib/CropRotateSharp.js +++ b/packages/material-ui-icons/lib/CropRotateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V6h-8v2h6v6zm-8 2V4H6v2H4v2h2v10h10v2h2v-2h2v-2H8z" -}), 'CropRotateSharp'); \ No newline at end of file +}), 'CropRotateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropRotateTwoTone.js b/packages/material-ui-icons/lib/CropRotateTwoTone.js index ad98dad08bf81c..4709394b3beb9f 100644 --- a/packages/material-ui-icons/lib/CropRotateTwoTone.js +++ b/packages/material-ui-icons/lib/CropRotateTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.95 24c.23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11zm.1-24c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 6h-6v2h6v6h2V8c0-1.11-.9-2-2-2zm2 12h2v-2H8V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2z" -}), 'CropRotateTwoTone'); \ No newline at end of file +}), 'CropRotateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropRounded.js b/packages/material-ui-icons/lib/CropRounded.js index 07898fc1457401..b00581e8c67b37 100644 --- a/packages/material-ui-icons/lib/CropRounded.js +++ b/packages/material-ui-icons/lib/CropRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 15h2V7c0-1.1-.9-2-2-2H9v2h7c.55 0 1 .45 1 1v7zm-9 2c-.55 0-1-.45-1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v3H2c-.55 0-1 .45-1 1s.45 1 1 1h3v10c0 1.1.9 2 2 2h10v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1H8z" -}), 'CropRounded'); \ No newline at end of file +}), 'CropRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropSharp.js b/packages/material-ui-icons/lib/CropSharp.js index 5e8c3179b39fde..99582dc638d23b 100644 --- a/packages/material-ui-icons/lib/CropSharp.js +++ b/packages/material-ui-icons/lib/CropSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 15h2V5H9v2h8v8zM7 17V1H5v4H1v2h4v12h12v4h2v-4h4v-2H7z" -}), 'CropSharp'); \ No newline at end of file +}), 'CropSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropSquare.js b/packages/material-ui-icons/lib/CropSquare.js index d3ddae9b11c4e6..f52bf567eb2676 100644 --- a/packages/material-ui-icons/lib/CropSquare.js +++ b/packages/material-ui-icons/lib/CropSquare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" -}), 'CropSquare'); \ No newline at end of file +}), 'CropSquare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropSquareOutlined.js b/packages/material-ui-icons/lib/CropSquareOutlined.js index a7a2ae2f7d231b..082f260edcca1d 100644 --- a/packages/material-ui-icons/lib/CropSquareOutlined.js +++ b/packages/material-ui-icons/lib/CropSquareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" -}), 'CropSquareOutlined'); \ No newline at end of file +}), 'CropSquareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropSquareRounded.js b/packages/material-ui-icons/lib/CropSquareRounded.js index 6185fcae27d003..62c48a90ebcf57 100644 --- a/packages/material-ui-icons/lib/CropSquareRounded.js +++ b/packages/material-ui-icons/lib/CropSquareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'CropSquareRounded'); \ No newline at end of file +}), 'CropSquareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropSquareSharp.js b/packages/material-ui-icons/lib/CropSquareSharp.js index 7107a9306134fa..159d6e0c721df3 100644 --- a/packages/material-ui-icons/lib/CropSquareSharp.js +++ b/packages/material-ui-icons/lib/CropSquareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4v16h16V4zm-2 14H6V6h12v12z" -}), 'CropSquareSharp'); \ No newline at end of file +}), 'CropSquareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropSquareTwoTone.js b/packages/material-ui-icons/lib/CropSquareTwoTone.js index e3c888f10bfa6e..bf21989678cdd7 100644 --- a/packages/material-ui-icons/lib/CropSquareTwoTone.js +++ b/packages/material-ui-icons/lib/CropSquareTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" -}), 'CropSquareTwoTone'); \ No newline at end of file +}), 'CropSquareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/CropTwoTone.js b/packages/material-ui-icons/lib/CropTwoTone.js index 9998738bc3c341..16b98b1340a3ad 100644 --- a/packages/material-ui-icons/lib/CropTwoTone.js +++ b/packages/material-ui-icons/lib/CropTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7V1H5v4H1v2h4v10zm14-2V7c0-1.1-.9-2-2-2H9v2h8v8h2z" -}), 'CropTwoTone'); \ No newline at end of file +}), 'CropTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dangerous.js b/packages/material-ui-icons/lib/Dangerous.js index e4f18b530824cb..90da1436c474c5 100644 --- a/packages/material-ui-icons/lib/Dangerous.js +++ b/packages/material-ui-icons/lib/Dangerous.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM17 15.74 15.74 17 12 13.26 8.26 17 7 15.74 10.74 12 7 8.26 8.26 7 12 10.74 15.74 7 17 8.26 13.26 12 17 15.74z" -}), 'Dangerous'); \ No newline at end of file +}), 'Dangerous'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DangerousOutlined.js b/packages/material-ui-icons/lib/DangerousOutlined.js index 69b958d9d18349..20e408c26ae90c 100644 --- a/packages/material-ui-icons/lib/DangerousOutlined.js +++ b/packages/material-ui-icons/lib/DangerousOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8zm-4.17-7.14L12 10.59 9.17 7.76 7.76 9.17 10.59 12l-2.83 2.83 1.41 1.41L12 13.41l2.83 2.83 1.41-1.41L13.41 12l2.83-2.83-1.41-1.41z" -}), 'DangerousOutlined'); \ No newline at end of file +}), 'DangerousOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DangerousRounded.js b/packages/material-ui-icons/lib/DangerousRounded.js index f2b9a6d46b6de9..a669c21ae45ad3 100644 --- a/packages/material-ui-icons/lib/DangerousRounded.js +++ b/packages/material-ui-icons/lib/DangerousRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.9 3H9.1c-.53 0-1.04.21-1.42.59l-4.1 4.1C3.21 8.06 3 8.57 3 9.1v5.8c0 .53.21 1.04.59 1.41l4.1 4.1c.37.38.88.59 1.41.59h5.8c.53 0 1.04-.21 1.41-.59l4.1-4.1c.38-.37.59-.88.59-1.41V9.1c0-.53-.21-1.04-.59-1.41l-4.1-4.1c-.37-.38-.88-.59-1.41-.59zm.64 12.54c-.39.39-1.02.39-1.41 0L12 13.41l-2.12 2.12c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 8.46 9.88a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l2.12-2.12c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.12 2.12c.4.39.4 1.03.01 1.42z" -}), 'DangerousRounded'); \ No newline at end of file +}), 'DangerousRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DangerousSharp.js b/packages/material-ui-icons/lib/DangerousSharp.js index 3d55743345b0d3..c49eba949e0470 100644 --- a/packages/material-ui-icons/lib/DangerousSharp.js +++ b/packages/material-ui-icons/lib/DangerousSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zm.51 11.83-1.41 1.41L12 13.41l-2.83 2.83-1.41-1.41L10.59 12 7.76 9.17l1.41-1.41L12 10.59l2.83-2.83 1.41 1.41L13.41 12l2.83 2.83z" -}), 'DangerousSharp'); \ No newline at end of file +}), 'DangerousSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DangerousTwoTone.js b/packages/material-ui-icons/lib/DangerousTwoTone.js index 040de8ba5b04d4..da9dd33e5f9485 100644 --- a/packages/material-ui-icons/lib/DangerousTwoTone.js +++ b/packages/material-ui-icons/lib/DangerousTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.1 5 5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5H9.1zm7.14 9.83-1.41 1.41L12 13.41l-2.83 2.83-1.41-1.41L10.59 12 7.76 9.17l1.41-1.41L12 10.59l2.83-2.83 1.41 1.41L13.41 12l2.83 2.83z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8zm-4.17-7.14L12 10.59 9.17 7.76 7.76 9.17 10.59 12l-2.83 2.83 1.41 1.41L12 13.41l2.83 2.83 1.41-1.41L13.41 12l2.83-2.83-1.41-1.41z" -}, "1")], 'DangerousTwoTone'); \ No newline at end of file +}, "1")], 'DangerousTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DarkMode.js b/packages/material-ui-icons/lib/DarkMode.js index 283dc6592cd089..6335be861510d9 100644 --- a/packages/material-ui-icons/lib/DarkMode.js +++ b/packages/material-ui-icons/lib/DarkMode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" -}), 'DarkMode'); \ No newline at end of file +}), 'DarkMode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DarkModeOutlined.js b/packages/material-ui-icons/lib/DarkModeOutlined.js index 9779b9e6b25bb9..d1b457eaa9e291 100644 --- a/packages/material-ui-icons/lib/DarkModeOutlined.js +++ b/packages/material-ui-icons/lib/DarkModeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.37 5.51c-.18.64-.27 1.31-.27 1.99 0 4.08 3.32 7.4 7.4 7.4.68 0 1.35-.09 1.99-.27C17.45 17.19 14.93 19 12 19c-3.86 0-7-3.14-7-7 0-2.93 1.81-5.45 4.37-6.49zM12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" -}), 'DarkModeOutlined'); \ No newline at end of file +}), 'DarkModeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DarkModeRounded.js b/packages/material-ui-icons/lib/DarkModeRounded.js index d2a30523dda431..d0375c9d817500 100644 --- a/packages/material-ui-icons/lib/DarkModeRounded.js +++ b/packages/material-ui-icons/lib/DarkModeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.01 3.05C6.51 3.54 3 7.36 3 12c0 4.97 4.03 9 9 9 4.63 0 8.45-3.5 8.95-8 .09-.79-.78-1.42-1.54-.95-.84.54-1.84.85-2.91.85-2.98 0-5.4-2.42-5.4-5.4 0-1.06.31-2.06.84-2.89.45-.67-.04-1.63-.93-1.56z" -}), 'DarkModeRounded'); \ No newline at end of file +}), 'DarkModeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DarkModeSharp.js b/packages/material-ui-icons/lib/DarkModeSharp.js index 51b72f7f183bbd..dc7e496f804137 100644 --- a/packages/material-ui-icons/lib/DarkModeSharp.js +++ b/packages/material-ui-icons/lib/DarkModeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" -}), 'DarkModeSharp'); \ No newline at end of file +}), 'DarkModeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DarkModeTwoTone.js b/packages/material-ui-icons/lib/DarkModeTwoTone.js index 684c0423c11a33..c129c3328d920a 100644 --- a/packages/material-ui-icons/lib/DarkModeTwoTone.js +++ b/packages/material-ui-icons/lib/DarkModeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.37 5.51c-.18.64-.27 1.31-.27 1.99 0 4.08 3.32 7.4 7.4 7.4.68 0 1.35-.09 1.99-.27C17.45 17.19 14.93 19 12 19c-3.86 0-7-3.14-7-7 0-2.93 1.81-5.45 4.37-6.49z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.37 5.51c-.18.64-.27 1.31-.27 1.99 0 4.08 3.32 7.4 7.4 7.4.68 0 1.35-.09 1.99-.27C17.45 17.19 14.93 19 12 19c-3.86 0-7-3.14-7-7 0-2.93 1.81-5.45 4.37-6.49zM12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" -}, "1")], 'DarkModeTwoTone'); \ No newline at end of file +}, "1")], 'DarkModeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dashboard.js b/packages/material-ui-icons/lib/Dashboard.js index 66263952676cf3..38a235b32832a9 100644 --- a/packages/material-ui-icons/lib/Dashboard.js +++ b/packages/material-ui-icons/lib/Dashboard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z" -}), 'Dashboard'); \ No newline at end of file +}), 'Dashboard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardCustomize.js b/packages/material-ui-icons/lib/DashboardCustomize.js index 5f009801cbae32..3d623092238b2b 100644 --- a/packages/material-ui-icons/lib/DashboardCustomize.js +++ b/packages/material-ui-icons/lib/DashboardCustomize.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3z" -}), 'DashboardCustomize'); \ No newline at end of file +}), 'DashboardCustomize'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardCustomizeOutlined.js b/packages/material-ui-icons/lib/DashboardCustomizeOutlined.js index eb4d8a2f1f2c52..7930117c31b63b 100644 --- a/packages/material-ui-icons/lib/DashboardCustomizeOutlined.js +++ b/packages/material-ui-icons/lib/DashboardCustomizeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11h8V3H3v8zm2-6h4v4H5V5zm8-2v8h8V3h-8zm6 6h-4V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm13-2h-2v3h-3v2h3v3h2v-3h3v-2h-3z" -}), 'DashboardCustomizeOutlined'); \ No newline at end of file +}), 'DashboardCustomizeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardCustomizeRounded.js b/packages/material-ui-icons/lib/DashboardCustomizeRounded.js index 2ee10497ba3ca6..12f63269a1dc1c 100644 --- a/packages/material-ui-icons/lib/DashboardCustomizeRounded.js +++ b/packages/material-ui-icons/lib/DashboardCustomizeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 3h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1zm10 0h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-6c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1zM4 13h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1zm13 0c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1z" -}), 'DashboardCustomizeRounded'); \ No newline at end of file +}), 'DashboardCustomizeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardCustomizeSharp.js b/packages/material-ui-icons/lib/DashboardCustomizeSharp.js index ba5fe1648aef97..055a65c82dcaa8 100644 --- a/packages/material-ui-icons/lib/DashboardCustomizeSharp.js +++ b/packages/material-ui-icons/lib/DashboardCustomizeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" -}), 'DashboardCustomizeSharp'); \ No newline at end of file +}), 'DashboardCustomizeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardCustomizeTwoTone.js b/packages/material-ui-icons/lib/DashboardCustomizeTwoTone.js index eb53caa45baf3d..f7a3552d4ff46d 100644 --- a/packages/material-ui-icons/lib/DashboardCustomizeTwoTone.js +++ b/packages/material-ui-icons/lib/DashboardCustomizeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h4v4H5zM5 5h4v4H5zm10 0h4v4h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11h8V3H3v8zm2-6h4v4H5V5zm8-2v8h8V3h-8zm6 6h-4V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm13-2h-2v3h-3v2h3v3h2v-3h3v-2h-3z" -}, "1")], 'DashboardCustomizeTwoTone'); \ No newline at end of file +}, "1")], 'DashboardCustomizeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardOutlined.js b/packages/material-ui-icons/lib/DashboardOutlined.js index 2943f057a97769..fdf11494414b59 100644 --- a/packages/material-ui-icons/lib/DashboardOutlined.js +++ b/packages/material-ui-icons/lib/DashboardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z" -}), 'DashboardOutlined'); \ No newline at end of file +}), 'DashboardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardRounded.js b/packages/material-ui-icons/lib/DashboardRounded.js index e11c1e645972d1..e2e6ea5ade4198 100644 --- a/packages/material-ui-icons/lib/DashboardRounded.js +++ b/packages/material-ui-icons/lib/DashboardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 13h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zm0 8h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm10 0h6c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zM13 4v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1z" -}), 'DashboardRounded'); \ No newline at end of file +}), 'DashboardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardSharp.js b/packages/material-ui-icons/lib/DashboardSharp.js index 1bfc4e426c1a24..618d610ca29588 100644 --- a/packages/material-ui-icons/lib/DashboardSharp.js +++ b/packages/material-ui-icons/lib/DashboardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z" -}), 'DashboardSharp'); \ No newline at end of file +}), 'DashboardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DashboardTwoTone.js b/packages/material-ui-icons/lib/DashboardTwoTone.js index c3c5b33d7ac1d4..e1b52abff50ec3 100644 --- a/packages/material-ui-icons/lib/DashboardTwoTone.js +++ b/packages/material-ui-icons/lib/DashboardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h4v6H5zm10 8h4v6h-4zM5 17h4v2H5zM15 5h4v2h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h8V3H3v10zm2-8h4v6H5V5zm8 16h8V11h-8v10zm2-8h4v6h-4v-6zM13 3v6h8V3h-8zm6 4h-4V5h4v2zM3 21h8v-6H3v6zm2-4h4v2H5v-2z" -}, "1")], 'DashboardTwoTone'); \ No newline at end of file +}, "1")], 'DashboardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOff.js b/packages/material-ui-icons/lib/DataSaverOff.js index 1c7f332e4f090b..59aea49e5e7e77 100644 --- a/packages/material-ui-icons/lib/DataSaverOff.js +++ b/packages/material-ui-icons/lib/DataSaverOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOff'); \ No newline at end of file +}), 'DataSaverOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOffOutlined.js b/packages/material-ui-icons/lib/DataSaverOffOutlined.js index 263ea0b5849d5c..24fbb74cb958e6 100644 --- a/packages/material-ui-icons/lib/DataSaverOffOutlined.js +++ b/packages/material-ui-icons/lib/DataSaverOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOffOutlined'); \ No newline at end of file +}), 'DataSaverOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOffRounded.js b/packages/material-ui-icons/lib/DataSaverOffRounded.js index 580ce8e91c3c95..9e659a63bb9edd 100644 --- a/packages/material-ui-icons/lib/DataSaverOffRounded.js +++ b/packages/material-ui-icons/lib/DataSaverOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOffRounded'); \ No newline at end of file +}), 'DataSaverOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOffSharp.js b/packages/material-ui-icons/lib/DataSaverOffSharp.js index 33f67f97dd8332..4724abefdea1bf 100644 --- a/packages/material-ui-icons/lib/DataSaverOffSharp.js +++ b/packages/material-ui-icons/lib/DataSaverOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOffSharp'); \ No newline at end of file +}), 'DataSaverOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOffTwoTone.js b/packages/material-ui-icons/lib/DataSaverOffTwoTone.js index 864f0cd1c31660..923d92f28b9ef4 100644 --- a/packages/material-ui-icons/lib/DataSaverOffTwoTone.js +++ b/packages/material-ui-icons/lib/DataSaverOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOffTwoTone'); \ No newline at end of file +}), 'DataSaverOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOn.js b/packages/material-ui-icons/lib/DataSaverOn.js index 37cc15d8fce962..8a63b6d5d5bea0 100644 --- a/packages/material-ui-icons/lib/DataSaverOn.js +++ b/packages/material-ui-icons/lib/DataSaverOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOn'); \ No newline at end of file +}), 'DataSaverOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOnOutlined.js b/packages/material-ui-icons/lib/DataSaverOnOutlined.js index 89b2278ab39f75..b89705301c9dc6 100644 --- a/packages/material-ui-icons/lib/DataSaverOnOutlined.js +++ b/packages/material-ui-icons/lib/DataSaverOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOnOutlined'); \ No newline at end of file +}), 'DataSaverOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOnRounded.js b/packages/material-ui-icons/lib/DataSaverOnRounded.js index 4bb66ceb5d31b6..4ccd8c920f328b 100644 --- a/packages/material-ui-icons/lib/DataSaverOnRounded.js +++ b/packages/material-ui-icons/lib/DataSaverOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V9c0-.55-.45-1-1-1s-1 .45-1 1v2zm1 8c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19zm1-16.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95z" -}), 'DataSaverOnRounded'); \ No newline at end of file +}), 'DataSaverOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOnSharp.js b/packages/material-ui-icons/lib/DataSaverOnSharp.js index 09d87659acbe11..af005619846431 100644 --- a/packages/material-ui-icons/lib/DataSaverOnSharp.js +++ b/packages/material-ui-icons/lib/DataSaverOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOnSharp'); \ No newline at end of file +}), 'DataSaverOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataSaverOnTwoTone.js b/packages/material-ui-icons/lib/DataSaverOnTwoTone.js index 682dedfb8da83b..f1137957ea7b87 100644 --- a/packages/material-ui-icons/lib/DataSaverOnTwoTone.js +++ b/packages/material-ui-icons/lib/DataSaverOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataSaverOnTwoTone'); \ No newline at end of file +}), 'DataSaverOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataUsage.js b/packages/material-ui-icons/lib/DataUsage.js index f82072c3c3ee1d..e6e74b4d99e58c 100644 --- a/packages/material-ui-icons/lib/DataUsage.js +++ b/packages/material-ui-icons/lib/DataUsage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataUsage'); \ No newline at end of file +}), 'DataUsage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataUsageOutlined.js b/packages/material-ui-icons/lib/DataUsageOutlined.js index e0cca95ff5dfe3..f7086d4ca618d4 100644 --- a/packages/material-ui-icons/lib/DataUsageOutlined.js +++ b/packages/material-ui-icons/lib/DataUsageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataUsageOutlined'); \ No newline at end of file +}), 'DataUsageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataUsageRounded.js b/packages/material-ui-icons/lib/DataUsageRounded.js index ed3424a3ca0373..02165e7530ab50 100644 --- a/packages/material-ui-icons/lib/DataUsageRounded.js +++ b/packages/material-ui-icons/lib/DataUsageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3.87v.02c0 .67.45 1.23 1.08 1.43C16.93 6.21 19 8.86 19 12c0 .52-.06 1.01-.17 1.49-.14.64.12 1.3.69 1.64l.01.01c.86.5 1.98.05 2.21-.91.17-.72.26-1.47.26-2.23 0-4.5-2.98-8.32-7.08-9.57-.95-.29-1.92.44-1.92 1.44zm-2.06 15.05c-2.99-.43-5.42-2.86-5.86-5.84-.54-3.6 1.66-6.77 4.83-7.76.64-.19 1.09-.76 1.09-1.43v-.02c0-1-.97-1.73-1.93-1.44-4.51 1.38-7.66 5.86-6.98 10.96.59 4.38 4.13 7.92 8.51 8.51 3.14.42 6.04-.61 8.13-2.53.74-.68.61-1.89-.26-2.39-.58-.34-1.3-.23-1.8.22-1.47 1.34-3.51 2.05-5.73 1.72z" -}), 'DataUsageRounded'); \ No newline at end of file +}), 'DataUsageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataUsageSharp.js b/packages/material-ui-icons/lib/DataUsageSharp.js index 8db108bda2d56f..fc2764b5403527 100644 --- a/packages/material-ui-icons/lib/DataUsageSharp.js +++ b/packages/material-ui-icons/lib/DataUsageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataUsageSharp'); \ No newline at end of file +}), 'DataUsageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DataUsageTwoTone.js b/packages/material-ui-icons/lib/DataUsageTwoTone.js index faac223cfe7a8f..b46e252720c87b 100644 --- a/packages/material-ui-icons/lib/DataUsageTwoTone.js +++ b/packages/material-ui-icons/lib/DataUsageTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" -}), 'DataUsageTwoTone'); \ No newline at end of file +}), 'DataUsageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DateRange.js b/packages/material-ui-icons/lib/DateRange.js index b6d9ab7089014c..81266d29025a59 100644 --- a/packages/material-ui-icons/lib/DateRange.js +++ b/packages/material-ui-icons/lib/DateRange.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z" -}), 'DateRange'); \ No newline at end of file +}), 'DateRange'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DateRangeOutlined.js b/packages/material-ui-icons/lib/DateRangeOutlined.js index afe9af60862fe2..31215f1db09f92 100644 --- a/packages/material-ui-icons/lib/DateRangeOutlined.js +++ b/packages/material-ui-icons/lib/DateRangeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z" -}), 'DateRangeOutlined'); \ No newline at end of file +}), 'DateRangeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DateRangeRounded.js b/packages/material-ui-icons/lib/DateRangeRounded.js index a25456642243fb..765b9350164b27 100644 --- a/packages/material-ui-icons/lib/DateRangeRounded.js +++ b/packages/material-ui-icons/lib/DateRangeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V9h14v10zM7 11h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" -}), 'DateRangeRounded'); \ No newline at end of file +}), 'DateRangeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DateRangeSharp.js b/packages/material-ui-icons/lib/DateRangeSharp.js index 95a3a2d05955e2..35382320edb8d0 100644 --- a/packages/material-ui-icons/lib/DateRangeSharp.js +++ b/packages/material-ui-icons/lib/DateRangeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm4-7h-3V2h-2v2H8V2H6v2H3v18h18V4zm-2 16H5V9h14v11z" -}), 'DateRangeSharp'); \ No newline at end of file +}), 'DateRangeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DateRangeTwoTone.js b/packages/material-ui-icons/lib/DateRangeTwoTone.js index 5fb53fe973fa77..57656b3dbb6be7 100644 --- a/packages/material-ui-icons/lib/DateRangeTwoTone.js +++ b/packages/material-ui-icons/lib/DateRangeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8h14V6H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h2v2H7zm12-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-4 3h2v2h-2zm-4 0h2v2h-2z" -}, "1")], 'DateRangeTwoTone'); \ No newline at end of file +}, "1")], 'DateRangeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Deck.js b/packages/material-ui-icons/lib/Deck.js index 911ef55eaa3bf2..1394e20246c09b 100644 --- a/packages/material-ui-icons/lib/Deck.js +++ b/packages/material-ui-icons/lib/Deck.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9 12 2 2 9h9v13h2V9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" -}, "1")], 'Deck'); \ No newline at end of file +}, "1")], 'Deck'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeckOutlined.js b/packages/material-ui-icons/lib/DeckOutlined.js index fff55b17b2fc4e..76d17c70990d0e 100644 --- a/packages/material-ui-icons/lib/DeckOutlined.js +++ b/packages/material-ui-icons/lib/DeckOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9 12 2 2 9h9v13h2V9h9zM12 4.44 15.66 7H8.34L12 4.44z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" -}, "1")], 'DeckOutlined'); \ No newline at end of file +}, "1")], 'DeckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeckRounded.js b/packages/material-ui-icons/lib/DeckRounded.js index a3561c66254003..b4d21637cdae0b 100644 --- a/packages/material-ui-icons/lib/DeckRounded.js +++ b/packages/material-ui-icons/lib/DeckRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.41 9c.49 0 .69-.63.29-.91L13.15 2.8c-.69-.48-1.61-.48-2.29 0L3.3 8.09c-.4.28-.2.91.29.91H11v12c0 .55.45 1 1 1s1-.45 1-1V9h7.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16H4.9l-.57-3.02c-.1-.54-.62-.9-1.17-.8-.54.1-.9.62-.8 1.17L3 16.74V21c0 .55.45 1 1 1h.01c.55 0 1-.44 1-.99L5.02 18H7v3c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm12.84-3.82c-.54-.1-1.06.26-1.17.8L19.1 16H16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-3h1.98l.02 3.01c0 .55.45.99 1 .99s1-.45 1-1v-4.26l.64-3.39c.1-.54-.26-1.07-.8-1.17z" -}, "1")], 'DeckRounded'); \ No newline at end of file +}, "1")], 'DeckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeckSharp.js b/packages/material-ui-icons/lib/DeckSharp.js index 2bdd5b16e0eb4f..bccdae40dc2f34 100644 --- a/packages/material-ui-icons/lib/DeckSharp.js +++ b/packages/material-ui-icons/lib/DeckSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9 12 2 2 9h9v13h2V9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" -}, "1")], 'DeckSharp'); \ No newline at end of file +}, "1")], 'DeckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeckTwoTone.js b/packages/material-ui-icons/lib/DeckTwoTone.js index 0b84bfad587a9f..62ae081b91ff7f 100644 --- a/packages/material-ui-icons/lib/DeckTwoTone.js +++ b/packages/material-ui-icons/lib/DeckTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.44 8.34 7h7.32z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9 12 2 2 9h9v13h2V9h9zM12 4.44 15.66 7H8.34L12 4.44z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" -}, "2")], 'DeckTwoTone'); \ No newline at end of file +}, "2")], 'DeckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dehaze.js b/packages/material-ui-icons/lib/Dehaze.js index 21619298ec5a40..aaa7dc2db8b5fc 100644 --- a/packages/material-ui-icons/lib/Dehaze.js +++ b/packages/material-ui-icons/lib/Dehaze.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 15.5v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20v-2H2z" -}), 'Dehaze'); \ No newline at end of file +}), 'Dehaze'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DehazeOutlined.js b/packages/material-ui-icons/lib/DehazeOutlined.js index e769343010147e..98dd71c0099347 100644 --- a/packages/material-ui-icons/lib/DehazeOutlined.js +++ b/packages/material-ui-icons/lib/DehazeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" -}), 'DehazeOutlined'); \ No newline at end of file +}), 'DehazeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DehazeRounded.js b/packages/material-ui-icons/lib/DehazeRounded.js index e1687c001c4b27..0547c3fe5e184a 100644 --- a/packages/material-ui-icons/lib/DehazeRounded.js +++ b/packages/material-ui-icons/lib/DehazeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z" -}), 'DehazeRounded'); \ No newline at end of file +}), 'DehazeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DehazeSharp.js b/packages/material-ui-icons/lib/DehazeSharp.js index 00474030d5b1dc..215c3094ed95e1 100644 --- a/packages/material-ui-icons/lib/DehazeSharp.js +++ b/packages/material-ui-icons/lib/DehazeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" -}), 'DehazeSharp'); \ No newline at end of file +}), 'DehazeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DehazeTwoTone.js b/packages/material-ui-icons/lib/DehazeTwoTone.js index fa363e426eb2e6..d816dde169d543 100644 --- a/packages/material-ui-icons/lib/DehazeTwoTone.js +++ b/packages/material-ui-icons/lib/DehazeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" -}), 'DehazeTwoTone'); \ No newline at end of file +}), 'DehazeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Delete.js b/packages/material-ui-icons/lib/Delete.js index e9d4cbb66802c5..d49de3076a92c8 100644 --- a/packages/material-ui-icons/lib/Delete.js +++ b/packages/material-ui-icons/lib/Delete.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" -}), 'Delete'); \ No newline at end of file +}), 'Delete'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteForever.js b/packages/material-ui-icons/lib/DeleteForever.js index 9020ac7a94af5b..5caf5917715dc0 100644 --- a/packages/material-ui-icons/lib/DeleteForever.js +++ b/packages/material-ui-icons/lib/DeleteForever.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z" -}), 'DeleteForever'); \ No newline at end of file +}), 'DeleteForever'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteForeverOutlined.js b/packages/material-ui-icons/lib/DeleteForeverOutlined.js index 9023d08397b131..7d8a7f80d672cb 100644 --- a/packages/material-ui-icons/lib/DeleteForeverOutlined.js +++ b/packages/material-ui-icons/lib/DeleteForeverOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.12 10.47 12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" -}), 'DeleteForeverOutlined'); \ No newline at end of file +}), 'DeleteForeverOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteForeverRounded.js b/packages/material-ui-icons/lib/DeleteForeverRounded.js index 9941d854339b20..a9da730ef59de5 100644 --- a/packages/material-ui-icons/lib/DeleteForeverRounded.js +++ b/packages/material-ui-icons/lib/DeleteForeverRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm3.17-6.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 12.59l1.41-1.41c.39-.39 1.02-.39 1.41 0s.39 1.02 0 1.41L13.41 14l1.41 1.41c.39.39.39 1.02 0 1.41s-1.02.39-1.41 0L12 15.41l-1.41 1.41c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 14l-1.42-1.41zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'DeleteForeverRounded'); \ No newline at end of file +}), 'DeleteForeverRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteForeverSharp.js b/packages/material-ui-icons/lib/DeleteForeverSharp.js index 1c694d4960ccce..f5618b7b309fcd 100644 --- a/packages/material-ui-icons/lib/DeleteForeverSharp.js +++ b/packages/material-ui-icons/lib/DeleteForeverSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 21h12V7H6v14zm2.46-9.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5z" -}), 'DeleteForeverSharp'); \ No newline at end of file +}), 'DeleteForeverSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteForeverTwoTone.js b/packages/material-ui-icons/lib/DeleteForeverTwoTone.js index 3fe006309c31a3..9cabe9cfffc0af 100644 --- a/packages/material-ui-icons/lib/DeleteForeverTwoTone.js +++ b/packages/material-ui-icons/lib/DeleteForeverTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9H8v10h8V9zm-.47 7.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.12 10.47 12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" -}, "1")], 'DeleteForeverTwoTone'); \ No newline at end of file +}, "1")], 'DeleteForeverTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteOutline.js b/packages/material-ui-icons/lib/DeleteOutline.js index bbb52d09504a74..3f6bb2b8442818 100644 --- a/packages/material-ui-icons/lib/DeleteOutline.js +++ b/packages/material-ui-icons/lib/DeleteOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4z" -}), 'DeleteOutline'); \ No newline at end of file +}), 'DeleteOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteOutlineOutlined.js b/packages/material-ui-icons/lib/DeleteOutlineOutlined.js index 730d6080b646e9..a48582b7844f8a 100644 --- a/packages/material-ui-icons/lib/DeleteOutlineOutlined.js +++ b/packages/material-ui-icons/lib/DeleteOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4h-3.5z" -}), 'DeleteOutlineOutlined'); \ No newline at end of file +}), 'DeleteOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteOutlineRounded.js b/packages/material-ui-icons/lib/DeleteOutlineRounded.js index 2a30de3c2ddbb3..e95d1ed2c965a9 100644 --- a/packages/material-ui-icons/lib/DeleteOutlineRounded.js +++ b/packages/material-ui-icons/lib/DeleteOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM9 9h6c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1zm6.5-5-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z" -}), 'DeleteOutlineRounded'); \ No newline at end of file +}), 'DeleteOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteOutlineSharp.js b/packages/material-ui-icons/lib/DeleteOutlineSharp.js index a7b1a47b2eea21..e2f34fc765ba6c 100644 --- a/packages/material-ui-icons/lib/DeleteOutlineSharp.js +++ b/packages/material-ui-icons/lib/DeleteOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 21h12V7H6v14zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4h-3.5z" -}), 'DeleteOutlineSharp'); \ No newline at end of file +}), 'DeleteOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteOutlineTwoTone.js b/packages/material-ui-icons/lib/DeleteOutlineTwoTone.js index bdbdc682932ceb..ee5bc1f9f53d91 100644 --- a/packages/material-ui-icons/lib/DeleteOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/DeleteOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4h-3.5z" -}), 'DeleteOutlineTwoTone'); \ No newline at end of file +}), 'DeleteOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteOutlined.js b/packages/material-ui-icons/lib/DeleteOutlined.js index 375dd6e857f714..832ecf0595ea10 100644 --- a/packages/material-ui-icons/lib/DeleteOutlined.js +++ b/packages/material-ui-icons/lib/DeleteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z" -}), 'DeleteOutlined'); \ No newline at end of file +}), 'DeleteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteRounded.js b/packages/material-ui-icons/lib/DeleteRounded.js index 30013f9f5f594a..fdd3dbd89891df 100644 --- a/packages/material-ui-icons/lib/DeleteRounded.js +++ b/packages/material-ui-icons/lib/DeleteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'DeleteRounded'); \ No newline at end of file +}), 'DeleteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteSharp.js b/packages/material-ui-icons/lib/DeleteSharp.js index 94865555eb3c81..9fd5b50a7af0c3 100644 --- a/packages/material-ui-icons/lib/DeleteSharp.js +++ b/packages/material-ui-icons/lib/DeleteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 21h12V7H6v14zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" -}), 'DeleteSharp'); \ No newline at end of file +}), 'DeleteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteSweep.js b/packages/material-ui-icons/lib/DeleteSweep.js index e39ec4a6935745..2a6458d7c74aaf 100644 --- a/packages/material-ui-icons/lib/DeleteSweep.js +++ b/packages/material-ui-icons/lib/DeleteSweep.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM14 5h-3l-1-1H6L5 5H2v2h12z" -}), 'DeleteSweep'); \ No newline at end of file +}), 'DeleteSweep'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteSweepOutlined.js b/packages/material-ui-icons/lib/DeleteSweepOutlined.js index a75133231123b1..6988618db975fc 100644 --- a/packages/material-ui-icons/lib/DeleteSweepOutlined.js +++ b/packages/material-ui-icons/lib/DeleteSweepOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z" -}), 'DeleteSweepOutlined'); \ No newline at end of file +}), 'DeleteSweepOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteSweepRounded.js b/packages/material-ui-icons/lib/DeleteSweepRounded.js index c2c4aa97ed6f35..6d0dae51aca6b4 100644 --- a/packages/material-ui-icons/lib/DeleteSweepRounded.js +++ b/packages/material-ui-icons/lib/DeleteSweepRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 16h2c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1s.45-1 1-1zm0-8h5c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1zm0 4h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM13 5h-2l-.71-.71c-.18-.18-.44-.29-.7-.29H6.41c-.26 0-.52.11-.7.29L5 5H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'DeleteSweepRounded'); \ No newline at end of file +}), 'DeleteSweepRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteSweepSharp.js b/packages/material-ui-icons/lib/DeleteSweepSharp.js index 6ee8c357c0fb2f..07cc86c835d3b3 100644 --- a/packages/material-ui-icons/lib/DeleteSweepSharp.js +++ b/packages/material-ui-icons/lib/DeleteSweepSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16h4v2h-4v-2zm0-8h7v2h-7V8zm0 4h6v2h-6v-2zM3 20h10V8H3v12zM14 5h-3l-1-1H6L5 5H2v2h12V5z" -}), 'DeleteSweepSharp'); \ No newline at end of file +}), 'DeleteSweepSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteSweepTwoTone.js b/packages/material-ui-icons/lib/DeleteSweepTwoTone.js index ef8c1b5a8f6981..9c0658deb6de49 100644 --- a/packages/material-ui-icons/lib/DeleteSweepTwoTone.js +++ b/packages/material-ui-icons/lib/DeleteSweepTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 10h6v8H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z" -}, "1")], 'DeleteSweepTwoTone'); \ No newline at end of file +}, "1")], 'DeleteSweepTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeleteTwoTone.js b/packages/material-ui-icons/lib/DeleteTwoTone.js index c46f206b18f6a1..b45a51e1580784 100644 --- a/packages/material-ui-icons/lib/DeleteTwoTone.js +++ b/packages/material-ui-icons/lib/DeleteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9h8v10H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.5 4-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" -}, "1")], 'DeleteTwoTone'); \ No newline at end of file +}, "1")], 'DeleteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeliveryDining.js b/packages/material-ui-icons/lib/DeliveryDining.js index 6b5066a83f20f4..66e7a39c94ab51 100644 --- a/packages/material-ui-icons/lib/DeliveryDining.js +++ b/packages/material-ui-icons/lib/DeliveryDining.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'DeliveryDining'); \ No newline at end of file +}, "1")], 'DeliveryDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeliveryDiningOutlined.js b/packages/material-ui-icons/lib/DeliveryDiningOutlined.js index 52bb0df795c9a7..dc39e6aaaa0874 100644 --- a/packages/material-ui-icons/lib/DeliveryDiningOutlined.js +++ b/packages/material-ui-icons/lib/DeliveryDiningOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM4 14v-1c0-1.1.9-2 2-2h2v3H4zm3 3c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'DeliveryDiningOutlined'); \ No newline at end of file +}, "1")], 'DeliveryDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeliveryDiningRounded.js b/packages/material-ui-icons/lib/DeliveryDiningRounded.js index 480274a3251435..2382c5ead43985 100644 --- a/packages/material-ui-icons/lib/DeliveryDiningRounded.js +++ b/packages/material-ui-icons/lib/DeliveryDiningRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2.65L13.52 14H10v-4c0-.55-.45-1-1-1H6c-2.21 0-4 1.79-4 4v2c0 .55.45 1 1 1h1c0 1.66 1.34 3 3 3s3-1.34 3-3h3.52c.61 0 1.18-.28 1.56-.75l3.48-4.35c.29-.36.44-.8.44-1.25V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h3c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm13 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'DeliveryDiningRounded'); \ No newline at end of file +}, "1")], 'DeliveryDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeliveryDiningSharp.js b/packages/material-ui-icons/lib/DeliveryDiningSharp.js index ad4c08381cf117..3c384ce3e5c86d 100644 --- a/packages/material-ui-icons/lib/DeliveryDiningSharp.js +++ b/packages/material-ui-icons/lib/DeliveryDiningSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H2v7h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'DeliveryDiningSharp'); \ No newline at end of file +}, "1")], 'DeliveryDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeliveryDiningTwoTone.js b/packages/material-ui-icons/lib/DeliveryDiningTwoTone.js index 27250897abc83e..059be540beb052 100644 --- a/packages/material-ui-icons/lib/DeliveryDiningTwoTone.js +++ b/packages/material-ui-icons/lib/DeliveryDiningTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 13v1h4v-3H6c-1.1 0-2 .9-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm1-3H4v-1c0-1.1.9-2 2-2h2v3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "2")], 'DeliveryDiningTwoTone'); \ No newline at end of file +}, "2")], 'DeliveryDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DepartureBoard.js b/packages/material-ui-icons/lib/DepartureBoard.js index 0474c9c0f3108c..e4ed59967eb2b5 100644 --- a/packages/material-ui-icons/lib/DepartureBoard.js +++ b/packages/material-ui-icons/lib/DepartureBoard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1c-2.4 0-4.52 1.21-5.78 3.05.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" -}), 'DepartureBoard'); \ No newline at end of file +}), 'DepartureBoard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DepartureBoardOutlined.js b/packages/material-ui-icons/lib/DepartureBoardOutlined.js index 0392ae12f03acd..0002a8b097e5d9 100644 --- a/packages/material-ui-icons/lib/DepartureBoardOutlined.js +++ b/packages/material-ui-icons/lib/DepartureBoardOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5.5", cy: "16.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12.5", cy: "16.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" -}, "2")], 'DepartureBoardOutlined'); \ No newline at end of file +}, "2")], 'DepartureBoardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DepartureBoardRounded.js b/packages/material-ui-icons/lib/DepartureBoardRounded.js index 67579d0387c891..44b02431165af6 100644 --- a/packages/material-ui-icons/lib/DepartureBoardRounded.js +++ b/packages/material-ui-icons/lib/DepartureBoardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22v1.28c0 .83.67 1.5 1.5 1.5S5 22.33 5 21.5V21h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.28c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm-.25-9c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l2.52 1.51c.34.2.78.09.98-.24.21-.34.1-.79-.25-.99L16.5 8.25v-3.5c0-.41-.34-.75-.75-.75z" -}), 'DepartureBoardRounded'); \ No newline at end of file +}), 'DepartureBoardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DepartureBoardSharp.js b/packages/material-ui-icons/lib/DepartureBoardSharp.js index 9ac5c3ddceaf87..f75a477af29895 100644 --- a/packages/material-ui-icons/lib/DepartureBoardSharp.js +++ b/packages/material-ui-icons/lib/DepartureBoardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V23h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68V4z" -}), 'DepartureBoardSharp'); \ No newline at end of file +}), 'DepartureBoardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DepartureBoardTwoTone.js b/packages/material-ui-icons/lib/DepartureBoardTwoTone.js index 6d723142d8999a..9b98dd7df7e2f8 100644 --- a/packages/material-ui-icons/lib/DepartureBoardTwoTone.js +++ b/packages/material-ui-icons/lib/DepartureBoardTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.29 6H9c-3.69 0-5.11.46-5.66.99h5.74c.05-.33.12-.67.21-.99zM3 14v4c0 .37.21.62.34.73l.29.27h10.74l.29-.27c.13-.11.34-.36.34-.73v-3.08c-.94-.13-1.81-.45-2.59-.92H3zm2.5 4c-.83 0-1.5-.67-1.5-1.5S4.67 15 5.5 15s1.5.67 1.5 1.5S6.33 18 5.5 18zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5.5", cy: "16.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12.5", cy: "16.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" -}, "3")], 'DepartureBoardTwoTone'); \ No newline at end of file +}, "3")], 'DepartureBoardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Description.js b/packages/material-ui-icons/lib/Description.js index ca22d4db649f7e..86a7811b14785e 100644 --- a/packages/material-ui-icons/lib/Description.js +++ b/packages/material-ui-icons/lib/Description.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z" -}), 'Description'); \ No newline at end of file +}), 'Description'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DescriptionOutlined.js b/packages/material-ui-icons/lib/DescriptionOutlined.js index e834151b256ab0..c3ad53ecb5ce70 100644 --- a/packages/material-ui-icons/lib/DescriptionOutlined.js +++ b/packages/material-ui-icons/lib/DescriptionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" -}), 'DescriptionOutlined'); \ No newline at end of file +}), 'DescriptionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DescriptionRounded.js b/packages/material-ui-icons/lib/DescriptionRounded.js index 7791416a7ac748..d91dad4c96fc99 100644 --- a/packages/material-ui-icons/lib/DescriptionRounded.js +++ b/packages/material-ui-icons/lib/DescriptionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 2.59c-.38-.38-.89-.59-1.42-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15 18H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm-2-6V3.5L18.5 9H14c-.55 0-1-.45-1-1z" -}), 'DescriptionRounded'); \ No newline at end of file +}), 'DescriptionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DescriptionSharp.js b/packages/material-ui-icons/lib/DescriptionSharp.js index 8b83ffba0ba824..b22159dd9178ca 100644 --- a/packages/material-ui-icons/lib/DescriptionSharp.js +++ b/packages/material-ui-icons/lib/DescriptionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z" -}), 'DescriptionSharp'); \ No newline at end of file +}), 'DescriptionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DescriptionTwoTone.js b/packages/material-ui-icons/lib/DescriptionTwoTone.js index 1beb3108c4b631..cbfec89def8763 100644 --- a/packages/material-ui-icons/lib/DescriptionTwoTone.js +++ b/packages/material-ui-icons/lib/DescriptionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 4H6v16h12V9h-5V4zm3 14H8v-2h8v2zm0-6v2H8v-2h8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" -}, "1")], 'DescriptionTwoTone'); \ No newline at end of file +}, "1")], 'DescriptionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesignServices.js b/packages/material-ui-icons/lib/DesignServices.js index b540b83c2413a9..ef946dda1d8d75 100644 --- a/packages/material-ui-icons/lib/DesignServices.js +++ b/packages/material-ui-icons/lib/DesignServices.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.24 11.51 1.57-1.57-3.75-3.75-1.57 1.57-4.14-4.13c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l4.13 4.13L3 17.25V21h3.75l4.76-4.76 4.13 4.13c.95.95 2.23.6 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-4.13-4.13zm-7.06-.44L5.04 6.94l1.89-1.9L8.2 6.31 7.02 7.5l1.41 1.41 1.19-1.19 1.45 1.45-1.89 1.9zm7.88 7.89-4.13-4.13 1.9-1.9 1.45 1.45-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9zm3.65-11.92c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.47-.47-1.12-.29-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'DesignServices'); \ No newline at end of file +}), 'DesignServices'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesignServicesOutlined.js b/packages/material-ui-icons/lib/DesignServicesOutlined.js index 89606df72ed757..b31b1b9f99ac06 100644 --- a/packages/material-ui-icons/lib/DesignServicesOutlined.js +++ b/packages/material-ui-icons/lib/DesignServicesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.97 7.27c.39-.39.39-1.02 0-1.41l-2.83-2.83a.9959.9959 0 0 0-1.41 0l-4.49 4.49-3.89-3.89c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l3.89 3.89L3 16.76V21h4.24l4.52-4.52 3.89 3.89c.95.95 2.23.6 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-3.89-3.89 4.48-4.48zM5.04 6.94l1.89-1.9L8.2 6.31 7.02 7.5l1.41 1.41 1.19-1.19 1.2 1.2-1.9 1.9-3.88-3.88zm11.23 7.44-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9-3.89-3.89 1.9-1.9 1.21 1.21zM6.41 19H5v-1.41l9.61-9.61 1.3 1.3.11.11L6.41 19zm9.61-12.44 1.41-1.41 1.41 1.41-1.41 1.41-1.41-1.41z" -}), 'DesignServicesOutlined'); \ No newline at end of file +}), 'DesignServicesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesignServicesRounded.js b/packages/material-ui-icons/lib/DesignServicesRounded.js index e498f5815845fe..19ca5eb98610a9 100644 --- a/packages/material-ui-icons/lib/DesignServicesRounded.js +++ b/packages/material-ui-icons/lib/DesignServicesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.24 11.51 1.57-1.57-3.75-3.75-1.57 1.57-4.14-4.13c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l4.13 4.13-4.6 4.61c-.1.1-.15.22-.15.36v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15l4.62-4.62 4.13 4.13c1.32 1.32 2.76.07 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-4.13-4.12zm-7.06-.44L5.04 6.94l1.89-1.9L8.2 6.31l-.47.49c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.48-.48 1.45 1.45-1.89 1.89zm7.88 7.89-4.13-4.13 1.9-1.9 1.45 1.45-.48.48c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.48-.48 1.27 1.27-1.9 1.9zm3.65-11.92c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.47-.47-1.12-.29-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'DesignServicesRounded'); \ No newline at end of file +}), 'DesignServicesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesignServicesSharp.js b/packages/material-ui-icons/lib/DesignServicesSharp.js index 19e90576158e89..0e4e291cff3edd 100644 --- a/packages/material-ui-icons/lib/DesignServicesSharp.js +++ b/packages/material-ui-icons/lib/DesignServicesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.79 17.06-5.55-5.55 1.57-1.57-3.75-3.75-1.57 1.57-5.55-5.55-4.73 4.73 5.55 5.55L3 17.25V21h3.75l4.76-4.76 5.55 5.55 4.73-4.73zM9.18 11.07 5.04 6.94l1.9-1.9 1.27 1.27L7.02 7.5l1.41 1.41 1.19-1.19 1.45 1.45-1.89 1.9zm3.75 3.75 1.9-1.9 1.45 1.45-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9-4.13-4.13zm2.2029-9.697 2.5385-2.5386 3.7477 3.7477-2.5386 2.5385z" -}), 'DesignServicesSharp'); \ No newline at end of file +}), 'DesignServicesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesignServicesTwoTone.js b/packages/material-ui-icons/lib/DesignServicesTwoTone.js index 1c3d132edcd2df..0c1abd4146f169 100644 --- a/packages/material-ui-icons/lib/DesignServicesTwoTone.js +++ b/packages/material-ui-icons/lib/DesignServicesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.91 9.28-1.3-1.3L5 17.59V19h1.41l9.61-9.61zm-5.08-.35-1.2-1.2-1.19 1.19L7.02 7.5l1.19-1.18-1.27-1.28-1.9 1.9 3.89 3.89zm5.44 5.45-1.2-1.21-1.9 1.9 3.89 3.89 1.9-1.9-1.27-1.27-1.19 1.19-1.42-1.41zm-.2493-7.822 1.4142-1.4142 1.4142 1.4143-1.4142 1.4142z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.97 5.86-2.83-2.83a.9959.9959 0 0 0-1.41 0l-4.49 4.49-3.89-3.89c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l3.89 3.89L3 16.76V21h4.24l4.52-4.52 3.89 3.89c.95.95 2.23.6 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-3.89-3.89 4.49-4.49c.38-.38.38-1.01-.01-1.4zM5.04 6.94l1.89-1.9L8.2 6.31 7.02 7.5l1.41 1.41 1.19-1.19 1.2 1.2-1.9 1.9-3.88-3.88zM6.41 19H5v-1.41l9.61-9.61 1.3 1.3.11.11L6.41 19zm10.09-2.02 1.19-1.19 1.27 1.27-1.9 1.9-3.89-3.89 1.9-1.9 1.2 1.2-1.19 1.19 1.42 1.42zm.94-9-1.41-1.41 1.41-1.41 1.41 1.41-1.41 1.41z" -}, "1")], 'DesignServicesTwoTone'); \ No newline at end of file +}, "1")], 'DesignServicesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopAccessDisabled.js b/packages/material-ui-icons/lib/DesktopAccessDisabled.js index 19df44119d31d7..2ed585b7606ee1 100644 --- a/packages/material-ui-icons/lib/DesktopAccessDisabled.js +++ b/packages/material-ui-icons/lib/DesktopAccessDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16c0 1.1-.9 2-2 2h-1l-2-2h3V4H6L4 2h17c1.1 0 2 .9 2 2v12zm-5.5 2-2-2zm-2.6 0 6 6 1.3-1.3-4.7-4.7-2-2L1.2 1.8 0 3.1l1 1V16c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h.9zM3 16V6.1l9.9 9.9H3z" -}), 'DesktopAccessDisabled'); \ No newline at end of file +}), 'DesktopAccessDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopAccessDisabledOutlined.js b/packages/material-ui-icons/lib/DesktopAccessDisabledOutlined.js index a2eba7d0530c24..ebf957565eea41 100644 --- a/packages/material-ui-icons/lib/DesktopAccessDisabledOutlined.js +++ b/packages/material-ui-icons/lib/DesktopAccessDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.69 0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" -}), 'DesktopAccessDisabledOutlined'); \ No newline at end of file +}), 'DesktopAccessDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopAccessDisabledRounded.js b/packages/material-ui-icons/lib/DesktopAccessDisabledRounded.js index b6b3514ea0fe63..f720734e4961cc 100644 --- a/packages/material-ui-icons/lib/DesktopAccessDisabledRounded.js +++ b/packages/material-ui-icons/lib/DesktopAccessDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M.31 2c-.39.39-.39 1.02 0 1.41l.69.68V16c0 1.1.9 2 2 2h7v2H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h.9l5.29 5.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L1.72 2A.9959.9959 0 0 0 .31 2zm2.68 13V6.09L12.9 16H3.99c-.55 0-1-.45-1-1zM4.55 2l2 2H20c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-1.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" -}), 'DesktopAccessDisabledRounded'); \ No newline at end of file +}), 'DesktopAccessDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopAccessDisabledSharp.js b/packages/material-ui-icons/lib/DesktopAccessDisabledSharp.js index 01f94c66d381e6..e21769bfd49e89 100644 --- a/packages/material-ui-icons/lib/DesktopAccessDisabledSharp.js +++ b/packages/material-ui-icons/lib/DesktopAccessDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.69 0 3.1l1 .99V18h9v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h2.44V2z" -}), 'DesktopAccessDisabledSharp'); \ No newline at end of file +}), 'DesktopAccessDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopAccessDisabledTwoTone.js b/packages/material-ui-icons/lib/DesktopAccessDisabledTwoTone.js index 9e6e48c60e3654..893956a47a40f1 100644 --- a/packages/material-ui-icons/lib/DesktopAccessDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/DesktopAccessDisabledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.69 0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.99 6.09V16h9.91zM6.55 4l12 12H21V4z", opacity: ".3" -}, "1")], 'DesktopAccessDisabledTwoTone'); \ No newline at end of file +}, "1")], 'DesktopAccessDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopMac.js b/packages/material-ui-icons/lib/DesktopMac.js index 08c8417e096a48..fd90c27f2a014f 100644 --- a/packages/material-ui-icons/lib/DesktopMac.js +++ b/packages/material-ui-icons/lib/DesktopMac.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" -}), 'DesktopMac'); \ No newline at end of file +}), 'DesktopMac'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopMacOutlined.js b/packages/material-ui-icons/lib/DesktopMacOutlined.js index 196e85f089e3d4..7b42481c9e9762 100644 --- a/packages/material-ui-icons/lib/DesktopMacOutlined.js +++ b/packages/material-ui-icons/lib/DesktopMacOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" -}), 'DesktopMacOutlined'); \ No newline at end of file +}), 'DesktopMacOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopMacRounded.js b/packages/material-ui-icons/lib/DesktopMacRounded.js index 20f7eb03bf1a37..46a6ad3e288079 100644 --- a/packages/material-ui-icons/lib/DesktopMacRounded.js +++ b/packages/material-ui-icons/lib/DesktopMacRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-1.63 2.45c-.44.66.03 1.55.83 1.55h5.6c.8 0 1.28-.89.83-1.55L14 18h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v9z" -}), 'DesktopMacRounded'); \ No newline at end of file +}), 'DesktopMacRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopMacSharp.js b/packages/material-ui-icons/lib/DesktopMacSharp.js index fd116a3fe75728..22dac33d6ede30 100644 --- a/packages/material-ui-icons/lib/DesktopMacSharp.js +++ b/packages/material-ui-icons/lib/DesktopMacSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 2H1v16h9l-2 3v1h8v-1l-2-3h9V2zm-2 12H3V4h18v10z" -}), 'DesktopMacSharp'); \ No newline at end of file +}), 'DesktopMacSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopMacTwoTone.js b/packages/material-ui-icons/lib/DesktopMacTwoTone.js index 1a1f0aa905fda7..e09eebc2036341 100644 --- a/packages/material-ui-icons/lib/DesktopMacTwoTone.js +++ b/packages/material-ui-icons/lib/DesktopMacTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4h18v10H3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" -}, "1")], 'DesktopMacTwoTone'); \ No newline at end of file +}, "1")], 'DesktopMacTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopWindows.js b/packages/material-ui-icons/lib/DesktopWindows.js index b86dd455d72bcf..b0dd46345d68f6 100644 --- a/packages/material-ui-icons/lib/DesktopWindows.js +++ b/packages/material-ui-icons/lib/DesktopWindows.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" -}), 'DesktopWindows'); \ No newline at end of file +}), 'DesktopWindows'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopWindowsOutlined.js b/packages/material-ui-icons/lib/DesktopWindowsOutlined.js index 1c24b0b8896135..38750a6d771b28 100644 --- a/packages/material-ui-icons/lib/DesktopWindowsOutlined.js +++ b/packages/material-ui-icons/lib/DesktopWindowsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" -}), 'DesktopWindowsOutlined'); \ No newline at end of file +}), 'DesktopWindowsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopWindowsRounded.js b/packages/material-ui-icons/lib/DesktopWindowsRounded.js index 586f6cbe139004..1edbb902645157 100644 --- a/packages/material-ui-icons/lib/DesktopWindowsRounded.js +++ b/packages/material-ui-icons/lib/DesktopWindowsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'DesktopWindowsRounded'); \ No newline at end of file +}), 'DesktopWindowsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopWindowsSharp.js b/packages/material-ui-icons/lib/DesktopWindowsSharp.js index ec73be29932e6b..5427dd51e01a84 100644 --- a/packages/material-ui-icons/lib/DesktopWindowsSharp.js +++ b/packages/material-ui-icons/lib/DesktopWindowsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 2H1v16h9v2H8v2h8v-2h-2v-2h9V2zm-2 14H3V4h18v12z" -}), 'DesktopWindowsSharp'); \ No newline at end of file +}), 'DesktopWindowsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DesktopWindowsTwoTone.js b/packages/material-ui-icons/lib/DesktopWindowsTwoTone.js index d0eeb2a1ef6b61..1395009926d396 100644 --- a/packages/material-ui-icons/lib/DesktopWindowsTwoTone.js +++ b/packages/material-ui-icons/lib/DesktopWindowsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4h18v12H3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" -}, "1")], 'DesktopWindowsTwoTone'); \ No newline at end of file +}, "1")], 'DesktopWindowsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Details.js b/packages/material-ui-icons/lib/Details.js index 619a627a96b1b9..b90acde073689f 100644 --- a/packages/material-ui-icons/lib/Details.js +++ b/packages/material-ui-icons/lib/Details.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" -}), 'Details'); \ No newline at end of file +}), 'Details'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DetailsOutlined.js b/packages/material-ui-icons/lib/DetailsOutlined.js index f189d2b8a74886..139f1ed16db5b0 100644 --- a/packages/material-ui-icons/lib/DetailsOutlined.js +++ b/packages/material-ui-icons/lib/DetailsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" -}), 'DetailsOutlined'); \ No newline at end of file +}), 'DetailsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DetailsRounded.js b/packages/material-ui-icons/lib/DetailsRounded.js index ce6b58f866e78e..8c4ff14ed4d499 100644 --- a/packages/material-ui-icons/lib/DetailsRounded.js +++ b/packages/material-ui-icons/lib/DetailsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.13 4.57-8.3 14.94c-.37.67.11 1.49.87 1.49h16.6c.76 0 1.24-.82.87-1.49l-8.3-14.94c-.38-.68-1.36-.68-1.74 0zM13 8.92 18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" -}), 'DetailsRounded'); \ No newline at end of file +}), 'DetailsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DetailsSharp.js b/packages/material-ui-icons/lib/DetailsSharp.js index 6939b3aa9733ab..de29022a204a80 100644 --- a/packages/material-ui-icons/lib/DetailsSharp.js +++ b/packages/material-ui-icons/lib/DetailsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" -}), 'DetailsSharp'); \ No newline at end of file +}), 'DetailsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DetailsTwoTone.js b/packages/material-ui-icons/lib/DetailsTwoTone.js index 768588b1797c7c..e61810801bb958 100644 --- a/packages/material-ui-icons/lib/DetailsTwoTone.js +++ b/packages/material-ui-icons/lib/DetailsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8.92 18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" -}, "1")], 'DetailsTwoTone'); \ No newline at end of file +}, "1")], 'DetailsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoard.js b/packages/material-ui-icons/lib/DeveloperBoard.js index 2627de515b4dda..78703fa046c858 100644 --- a/packages/material-ui-icons/lib/DeveloperBoard.js +++ b/packages/material-ui-icons/lib/DeveloperBoard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z" -}), 'DeveloperBoard'); \ No newline at end of file +}), 'DeveloperBoard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardOff.js b/packages/material-ui-icons/lib/DeveloperBoardOff.js index bd6bbb2fb5def6..b3746907158c86 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardOff.js +++ b/packages/material-ui-icons/lib/DeveloperBoardOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-.9-2-2-2H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zM18 21c.06 0 .11 0 .16-.01l2.32 2.32 1.41-1.41L2.1 2.1.69 3.51l1.32 1.32C2 4.89 2 4.94 2 5v14c0 1.1.9 2 2 2h14zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" -}), 'DeveloperBoardOff'); \ No newline at end of file +}), 'DeveloperBoardOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardOffOutlined.js b/packages/material-ui-icons/lib/DeveloperBoardOffOutlined.js index f53a0b310ff658..5df8f504fb6413 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardOffOutlined.js +++ b/packages/material-ui-icons/lib/DeveloperBoardOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-.9-2-2-2H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zM18 21c.06 0 .11 0 .16-.01l2.32 2.32 1.41-1.41L2.1 2.1.69 3.51l1.32 1.32C2 4.89 2 4.94 2 5v14c0 1.1.9 2 2 2h14zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" -}), 'DeveloperBoardOffOutlined'); \ No newline at end of file +}), 'DeveloperBoardOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardOffRounded.js b/packages/material-ui-icons/lib/DeveloperBoardOffRounded.js index 2097abe3a34043..801b299dc242ff 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardOffRounded.js +++ b/packages/material-ui-icons/lib/DeveloperBoardOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 5H18v10.17L19.83 17H21c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V5c0-1.1-.9-2-2-2H5.83l2 2zM15 10h-2c-.06 0-.13-.01-.19-.02l-.79-.79C12.01 9.13 12 9.06 12 9V8c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zm-4-2v.17L9.83 7H10c.55 0 1 .45 1 1zm5 4v1.17L13.83 11H15c.55 0 1 .45 1 1zM1.39 2.81C1 3.2 1 3.83 1.39 4.22l.61.61V19c0 1.1.9 2 2 2h14c.06 0 .11 0 .16-.01l1.61 1.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.81 2.81c-.39-.39-1.03-.39-1.42 0zM4 19V6.83l2 2V11c0 .55.45 1 1 1h2.17l1.02 1.02c-.06-.01-.13-.02-.19-.02H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2c0-.06-.01-.13-.02-.19L12 14.83V16c0 .55.45 1 1 1h1.18l2 2H4z" -}), 'DeveloperBoardOffRounded'); \ No newline at end of file +}), 'DeveloperBoardOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardOffSharp.js b/packages/material-ui-icons/lib/DeveloperBoardOffSharp.js index 8229156f40dfce..bddfaa794ab437 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardOffSharp.js +++ b/packages/material-ui-icons/lib/DeveloperBoardOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V3H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zm4.34 10 2.31 2.31 1.41-1.41L2.1 2.1.69 3.51 2 4.83V21h16.17zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" -}), 'DeveloperBoardOffSharp'); \ No newline at end of file +}), 'DeveloperBoardOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardOffTwoTone.js b/packages/material-ui-icons/lib/DeveloperBoardOffTwoTone.js index d23c7eb83950b4..639123413f3c90 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardOffTwoTone.js +++ b/packages/material-ui-icons/lib/DeveloperBoardOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4zm12-5.83V11h-2.17l-1-1H16V7h-4v2.17l-1-1V7H9.83l-2-2H18v10.17l-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-.9-2-2-2H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zM18 21c.06 0 .11 0 .16-.01l2.32 2.32 1.41-1.41L2.1 2.1.69 3.51l1.32 1.32C2 4.89 2 4.94 2 5v14c0 1.1.9 2 2 2h14zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" -}, "1")], 'DeveloperBoardOffTwoTone'); \ No newline at end of file +}, "1")], 'DeveloperBoardOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardOutlined.js b/packages/material-ui-icons/lib/DeveloperBoardOutlined.js index ecb2a6c6779773..2a2bb3c63db68c 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardOutlined.js +++ b/packages/material-ui-icons/lib/DeveloperBoardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z" -}), 'DeveloperBoardOutlined'); \ No newline at end of file +}), 'DeveloperBoardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardRounded.js b/packages/material-ui-icons/lib/DeveloperBoardRounded.js index 8f15f1c33e8e29..bbfc3310a46c5b 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardRounded.js +++ b/packages/material-ui-icons/lib/DeveloperBoardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 8c0-.55-.45-1-1-1h-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V9h1c.55 0 1-.45 1-1zm-5 11H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM6.5 13h4c.28 0 .5.22.5.5v3c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5zm6-6h3c.28 0 .5.22.5.5v2c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5zm-6 0h4c.28 0 .5.22.5.5v4c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5zm6 4h3c.28 0 .5.22.5.5v5c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5z" -}), 'DeveloperBoardRounded'); \ No newline at end of file +}), 'DeveloperBoardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardSharp.js b/packages/material-ui-icons/lib/DeveloperBoardSharp.js index ef1c665541ecbe..a217b42f5d80a5 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardSharp.js +++ b/packages/material-ui-icons/lib/DeveloperBoardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9V7h-2V3H2v18h18v-4h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z" -}), 'DeveloperBoardSharp'); \ No newline at end of file +}), 'DeveloperBoardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperBoardTwoTone.js b/packages/material-ui-icons/lib/DeveloperBoardTwoTone.js index 85eca8350a7bbc..dd8f9fc092403d 100644 --- a/packages/material-ui-icons/lib/DeveloperBoardTwoTone.js +++ b/packages/material-ui-icons/lib/DeveloperBoardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h14V5H4v14zm8-12h4v3h-4V7zm0 4h4v6h-4v-6zM6 7h5v5H6V7zm0 6h5v4H6v-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13h5v4H6zm0-6h5v5H6zm6 0h4v3h-4zm0 4h4v6h-4zm10-2V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14z" -}, "1")], 'DeveloperBoardTwoTone'); \ No newline at end of file +}, "1")], 'DeveloperBoardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperMode.js b/packages/material-ui-icons/lib/DeveloperMode.js index cff563eef5fe4b..a2cd7b1ac5ffed 100644 --- a/packages/material-ui-icons/lib/DeveloperMode.js +++ b/packages/material-ui-icons/lib/DeveloperMode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" -}), 'DeveloperMode'); \ No newline at end of file +}), 'DeveloperMode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperModeOutlined.js b/packages/material-ui-icons/lib/DeveloperModeOutlined.js index bc2f33ff4d1295..e3eff576a44b96 100644 --- a/packages/material-ui-icons/lib/DeveloperModeOutlined.js +++ b/packages/material-ui-icons/lib/DeveloperModeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" -}), 'DeveloperModeOutlined'); \ No newline at end of file +}), 'DeveloperModeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperModeRounded.js b/packages/material-ui-icons/lib/DeveloperModeRounded.js index bc4f9267492c46..225d9e1d85b3cc 100644 --- a/packages/material-ui-icons/lib/DeveloperModeRounded.js +++ b/packages/material-ui-icons/lib/DeveloperModeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v1c0 .55.45 1 1 1s1-.45 1-1V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V5zm9.12 10.88 3.17-3.17c.39-.39.39-1.02 0-1.41l-3.17-3.17c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41L17.17 12l-2.47 2.47c-.39.39-.39 1.02 0 1.41.39.39 1.03.39 1.42 0zm-6.83-1.42L6.83 12l2.46-2.46c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0L4.7 11.3c-.39.39-.39 1.02 0 1.41l3.17 3.17c.39.39 1.03.39 1.42 0 .4-.39.39-1.03 0-1.42zM17 19H7v-1c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v1z" -}), 'DeveloperModeRounded'); \ No newline at end of file +}), 'DeveloperModeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperModeSharp.js b/packages/material-ui-icons/lib/DeveloperModeSharp.js index 3fe696316e8df9..46e981f93905f7 100644 --- a/packages/material-ui-icons/lib/DeveloperModeSharp.js +++ b/packages/material-ui-icons/lib/DeveloperModeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v2h2V1.01L5 1v6h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v6h14v-6h-2v2z" -}), 'DeveloperModeSharp'); \ No newline at end of file +}), 'DeveloperModeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeveloperModeTwoTone.js b/packages/material-ui-icons/lib/DeveloperModeTwoTone.js index 8ff149fe0773fe..0187fdc9fbbfdc 100644 --- a/packages/material-ui-icons/lib/DeveloperModeTwoTone.js +++ b/packages/material-ui-icons/lib/DeveloperModeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" -}), 'DeveloperModeTwoTone'); \ No newline at end of file +}), 'DeveloperModeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceHub.js b/packages/material-ui-icons/lib/DeviceHub.js index b1771fb7179579..87d84f98b21500 100644 --- a/packages/material-ui-icons/lib/DeviceHub.js +++ b/packages/material-ui-icons/lib/DeviceHub.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" -}), 'DeviceHub'); \ No newline at end of file +}), 'DeviceHub'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceHubOutlined.js b/packages/material-ui-icons/lib/DeviceHubOutlined.js index 2e09b1e84aca40..12c5de486e72ee 100644 --- a/packages/material-ui-icons/lib/DeviceHubOutlined.js +++ b/packages/material-ui-icons/lib/DeviceHubOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" -}), 'DeviceHubOutlined'); \ No newline at end of file +}), 'DeviceHubOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceHubRounded.js b/packages/material-ui-icons/lib/DeviceHubRounded.js index fa85f52f3d2644..e614637f20f312 100644 --- a/packages/material-ui-icons/lib/DeviceHubRounded.js +++ b/packages/material-ui-icons/lib/DeviceHubRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 16-4-4V8.82c1.35-.49 2.26-1.89 1.93-3.46-.25-1.18-1.23-2.12-2.42-2.32C10.63 2.73 9 4.17 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H4c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2.05l4-4.2 4 4.2V20c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3z" -}), 'DeviceHubRounded'); \ No newline at end of file +}), 'DeviceHubRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceHubSharp.js b/packages/material-ui-icons/lib/DeviceHubSharp.js index 7eb2495dca7f48..068be112a546a3 100644 --- a/packages/material-ui-icons/lib/DeviceHubSharp.js +++ b/packages/material-ui-icons/lib/DeviceHubSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" -}), 'DeviceHubSharp'); \ No newline at end of file +}), 'DeviceHubSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceHubTwoTone.js b/packages/material-ui-icons/lib/DeviceHubTwoTone.js index 2d36c02730043e..f24c31ac2afde3 100644 --- a/packages/material-ui-icons/lib/DeviceHubTwoTone.js +++ b/packages/material-ui-icons/lib/DeviceHubTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" -}), 'DeviceHubTwoTone'); \ No newline at end of file +}), 'DeviceHubTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceThermostat.js b/packages/material-ui-icons/lib/DeviceThermostat.js index a623118e52b9e8..e11a2286c011ec 100644 --- a/packages/material-ui-icons/lib/DeviceThermostat.js +++ b/packages/material-ui-icons/lib/DeviceThermostat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" -}), 'DeviceThermostat'); \ No newline at end of file +}), 'DeviceThermostat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceThermostatOutlined.js b/packages/material-ui-icons/lib/DeviceThermostatOutlined.js index abffb7c96c8c19..9f6e0acad64758 100644 --- a/packages/material-ui-icons/lib/DeviceThermostatOutlined.js +++ b/packages/material-ui-icons/lib/DeviceThermostatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" -}), 'DeviceThermostatOutlined'); \ No newline at end of file +}), 'DeviceThermostatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceThermostatRounded.js b/packages/material-ui-icons/lib/DeviceThermostatRounded.js index 6ef6df722cc482..d957958c75248f 100644 --- a/packages/material-ui-icons/lib/DeviceThermostatRounded.js +++ b/packages/material-ui-icons/lib/DeviceThermostatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" -}), 'DeviceThermostatRounded'); \ No newline at end of file +}), 'DeviceThermostatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceThermostatSharp.js b/packages/material-ui-icons/lib/DeviceThermostatSharp.js index b4cb475d844eb9..b9199af9d922e9 100644 --- a/packages/material-ui-icons/lib/DeviceThermostatSharp.js +++ b/packages/material-ui-icons/lib/DeviceThermostatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" -}), 'DeviceThermostatSharp'); \ No newline at end of file +}), 'DeviceThermostatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceThermostatTwoTone.js b/packages/material-ui-icons/lib/DeviceThermostatTwoTone.js index 34e77ba5c918ab..ea383b8d36397c 100644 --- a/packages/material-ui-icons/lib/DeviceThermostatTwoTone.js +++ b/packages/material-ui-icons/lib/DeviceThermostatTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" -}), 'DeviceThermostatTwoTone'); \ No newline at end of file +}), 'DeviceThermostatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceUnknown.js b/packages/material-ui-icons/lib/DeviceUnknown.js index 162e9afa605941..bb4df75a94f85e 100644 --- a/packages/material-ui-icons/lib/DeviceUnknown.js +++ b/packages/material-ui-icons/lib/DeviceUnknown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zm-.88 8.8h1.76v1.76h-1.76z" -}), 'DeviceUnknown'); \ No newline at end of file +}), 'DeviceUnknown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceUnknownOutlined.js b/packages/material-ui-icons/lib/DeviceUnknownOutlined.js index 8704f2388b87bb..2d39d7df3a6b96 100644 --- a/packages/material-ui-icons/lib/DeviceUnknownOutlined.js +++ b/packages/material-ui-icons/lib/DeviceUnknownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z" -}), 'DeviceUnknownOutlined'); \ No newline at end of file +}), 'DeviceUnknownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceUnknownRounded.js b/packages/material-ui-icons/lib/DeviceUnknownRounded.js index 3fa5f6e4adf84e..458b4a46b28327 100644 --- a/packages/material-ui-icons/lib/DeviceUnknownRounded.js +++ b/packages/material-ui-icons/lib/DeviceUnknownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-6-3h2v2h-2zm-1.48-5.81h.13c.33 0 .59-.23.7-.54.24-.69.91-1.21 1.66-1.21.93 0 1.75.82 1.75 1.75 0 1.32-1.49 1.55-2.23 2.82h-.01c-.08.14-.14.29-.2.45-.01.02-.02.03-.02.05-.01.02-.01.04-.01.05-.1.31-.16.66-.16 1.08h1.76c0-.25.04-.47.12-.67.54-1.47 2.77-1.86 2.48-4.18-.19-1.55-1.43-2.84-2.98-3.04-1.77-.23-3.29.78-3.81 2.3-.2.56.23 1.14.82 1.14z" -}), 'DeviceUnknownRounded'); \ No newline at end of file +}), 'DeviceUnknownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceUnknownSharp.js b/packages/material-ui-icons/lib/DeviceUnknownSharp.js index ab8f1bd83637bc..567603e390ea68 100644 --- a/packages/material-ui-icons/lib/DeviceUnknownSharp.js +++ b/packages/material-ui-icons/lib/DeviceUnknownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5v22h14V1zm-2 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z" -}), 'DeviceUnknownSharp'); \ No newline at end of file +}), 'DeviceUnknownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DeviceUnknownTwoTone.js b/packages/material-ui-icons/lib/DeviceUnknownTwoTone.js index 845f48797814cb..892c58221d1a4a 100644 --- a/packages/material-ui-icons/lib/DeviceUnknownTwoTone.js +++ b/packages/material-ui-icons/lib/DeviceUnknownTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10V5H7v14zm6-1h-2v-2h2v2zM12 6.72c1.96 0 3.5 1.51 3.5 3.47 0 2.26-2.62 2.49-2.62 4.45h-1.76c0-2.88 2.63-2.7 2.63-4.45 0-.93-.82-1.75-1.75-1.75s-1.75.82-1.75 1.75H8.5c0-1.95 1.54-3.47 3.5-3.47z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16h2v2h-2zm6-15H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 8.44c.93 0 1.75.82 1.75 1.75 0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47s-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75z" -}, "1")], 'DeviceUnknownTwoTone'); \ No newline at end of file +}, "1")], 'DeviceUnknownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Devices.js b/packages/material-ui-icons/lib/Devices.js index 9fad72aa46462d..c031b78379c3e4 100644 --- a/packages/material-ui-icons/lib/Devices.js +++ b/packages/material-ui-icons/lib/Devices.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" -}), 'Devices'); \ No newline at end of file +}), 'Devices'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesOther.js b/packages/material-ui-icons/lib/DevicesOther.js index 87c602316cb249..bc86ee5e40e6ca 100644 --- a/packages/material-ui-icons/lib/DevicesOther.js +++ b/packages/material-ui-icons/lib/DevicesOther.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" -}), 'DevicesOther'); \ No newline at end of file +}), 'DevicesOther'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesOtherOutlined.js b/packages/material-ui-icons/lib/DevicesOtherOutlined.js index 339148c238ae15..8783130c1f2c93 100644 --- a/packages/material-ui-icons/lib/DevicesOtherOutlined.js +++ b/packages/material-ui-icons/lib/DevicesOtherOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" -}), 'DevicesOtherOutlined'); \ No newline at end of file +}), 'DevicesOtherOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesOtherRounded.js b/packages/material-ui-icons/lib/DevicesOtherRounded.js index df8dbfa235daa9..85fe5040dccd8e 100644 --- a/packages/material-ui-icons/lib/DevicesOtherRounded.js +++ b/packages/material-ui-icons/lib/DevicesOtherRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V7zm9 5h-2c-.55 0-1 .45-1 1v.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V13c0-.55-.45-1-1-1zm-1 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" -}), 'DevicesOtherRounded'); \ No newline at end of file +}), 'DevicesOtherRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesOtherSharp.js b/packages/material-ui-icons/lib/DevicesOtherSharp.js index bba059cce9fbd7..443cba634080f5 100644 --- a/packages/material-ui-icons/lib/DevicesOtherSharp.js +++ b/packages/material-ui-icons/lib/DevicesOtherSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18V4H1v16h6v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM23 8h-8v12h8V8zm-2 10h-4v-8h4v8z" -}), 'DevicesOtherSharp'); \ No newline at end of file +}), 'DevicesOtherSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesOtherTwoTone.js b/packages/material-ui-icons/lib/DevicesOtherTwoTone.js index 0ed0473c455238..8dae67f3f111ee 100644 --- a/packages/material-ui-icons/lib/DevicesOtherTwoTone.js +++ b/packages/material-ui-icons/lib/DevicesOtherTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10h4v8h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "16", r: "1.5", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm19 2h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8zm-8-6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "2")], 'DevicesOtherTwoTone'); \ No newline at end of file +}, "2")], 'DevicesOtherTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesOutlined.js b/packages/material-ui-icons/lib/DevicesOutlined.js index 9680d3fe62b9ae..4734b893e1a98a 100644 --- a/packages/material-ui-icons/lib/DevicesOutlined.js +++ b/packages/material-ui-icons/lib/DevicesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" -}), 'DevicesOutlined'); \ No newline at end of file +}), 'DevicesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesRounded.js b/packages/material-ui-icons/lib/DevicesRounded.js index 0e236f6e3e9688..b9960aa7f3063a 100644 --- a/packages/material-ui-icons/lib/DevicesRounded.js +++ b/packages/material-ui-icons/lib/DevicesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20H14v-3H4V7zm19 1h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" -}), 'DevicesRounded'); \ No newline at end of file +}), 'DevicesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesSharp.js b/packages/material-ui-icons/lib/DevicesSharp.js index 0d9c60898e1a85..3f0e22aa230838 100644 --- a/packages/material-ui-icons/lib/DevicesSharp.js +++ b/packages/material-ui-icons/lib/DevicesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z" -}), 'DevicesSharp'); \ No newline at end of file +}), 'DevicesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DevicesTwoTone.js b/packages/material-ui-icons/lib/DevicesTwoTone.js index b24b7c3018a4dd..b5fcaf99279d58 100644 --- a/packages/material-ui-icons/lib/DevicesTwoTone.js +++ b/packages/material-ui-icons/lib/DevicesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10h4v7h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7zM4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6z" -}, "1")], 'DevicesTwoTone'); \ No newline at end of file +}, "1")], 'DevicesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialerSip.js b/packages/material-ui-icons/lib/DialerSip.js index d34d78aeb852f8..0665b916115567 100644 --- a/packages/material-ui-icons/lib/DialerSip.js +++ b/packages/material-ui-icons/lib/DialerSip.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3h-1v5h1V3zm-2 2h-2V4h2V3h-3v3h2v1h-2v1h3V5zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" -}), 'DialerSip'); \ No newline at end of file +}), 'DialerSip'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialerSipOutlined.js b/packages/material-ui-icons/lib/DialerSipOutlined.js index e3d6fa77671e27..e8245aeaed514e 100644 --- a/packages/material-ui-icons/lib/DialerSipOutlined.js +++ b/packages/material-ui-icons/lib/DialerSipOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z" -}), 'DialerSipOutlined'); \ No newline at end of file +}), 'DialerSipOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialerSipRounded.js b/packages/material-ui-icons/lib/DialerSipRounded.js index a06e7f38eb17bd..4f81709990097a 100644 --- a/packages/material-ui-icons/lib/DialerSipRounded.js +++ b/packages/material-ui-icons/lib/DialerSipRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 8c.28 0 .5-.22.5-.5v-4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v4c0 .28.22.5.5.5zm-4-1c-.28 0-.5.22-.5.5s.22.5.5.5h1.95c.3 0 .55-.25.55-.55v-1.9c0-.3-.25-.55-.55-.55H13V4h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.95c-.3 0-.55.25-.55.55v1.89c0 .31.25.56.55.56H14v1h-1.5zm7.95-4h-1.89c-.31 0-.56.25-.56.55V7.5c0 .28.22.5.5.5s.5-.22.5-.5V6h1.45c.3 0 .55-.25.55-.55v-1.9c0-.3-.25-.55-.55-.55zM20 5h-1V4h1v1zm-.79 10.27-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64l-.29-2.52c-.11-1.01-.97-1.78-1.98-1.78H5.02c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1-.76-1.86-1.77-1.97z" -}), 'DialerSipRounded'); \ No newline at end of file +}), 'DialerSipRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialerSipSharp.js b/packages/material-ui-icons/lib/DialerSipSharp.js index 8987b8f7a384b5..d888dd568c203a 100644 --- a/packages/material-ui-icons/lib/DialerSipSharp.js +++ b/packages/material-ui-icons/lib/DialerSipSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm1 10.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" -}), 'DialerSipSharp'); \ No newline at end of file +}), 'DialerSipSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialerSipTwoTone.js b/packages/material-ui-icons/lib/DialerSipTwoTone.js index e59257217c583a..3e038f3e0ab30a 100644 --- a/packages/material-ui-icons/lib/DialerSipTwoTone.js +++ b/packages/material-ui-icons/lib/DialerSipTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.2 18.21c1.2.41 2.48.67 3.8.75v-1.5c-.88-.06-1.75-.22-2.59-.45l-1.21 1.2zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3h1v5h-1zm-4 4v1h3V5h-2V4h2V3h-3v3h2v1zm9-4h-3v5h1V6h2V3zm-1 2h-1V4h1v1zm1 11.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z" -}, "1")], 'DialerSipTwoTone'); \ No newline at end of file +}, "1")], 'DialerSipTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dialpad.js b/packages/material-ui-icons/lib/Dialpad.js index 1dd884e165b44a..3912f28e028649 100644 --- a/packages/material-ui-icons/lib/Dialpad.js +++ b/packages/material-ui-icons/lib/Dialpad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'Dialpad'); \ No newline at end of file +}), 'Dialpad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialpadOutlined.js b/packages/material-ui-icons/lib/DialpadOutlined.js index c205c84bee58cf..eb41576e7eccba 100644 --- a/packages/material-ui-icons/lib/DialpadOutlined.js +++ b/packages/material-ui-icons/lib/DialpadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DialpadOutlined'); \ No newline at end of file +}), 'DialpadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialpadRounded.js b/packages/material-ui-icons/lib/DialpadRounded.js index b09aea9b2da0bb..3b7663d291438b 100644 --- a/packages/material-ui-icons/lib/DialpadRounded.js +++ b/packages/material-ui-icons/lib/DialpadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DialpadRounded'); \ No newline at end of file +}), 'DialpadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialpadSharp.js b/packages/material-ui-icons/lib/DialpadSharp.js index 9dd4edde6b67e4..88f2ff942595fe 100644 --- a/packages/material-ui-icons/lib/DialpadSharp.js +++ b/packages/material-ui-icons/lib/DialpadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DialpadSharp'); \ No newline at end of file +}), 'DialpadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DialpadTwoTone.js b/packages/material-ui-icons/lib/DialpadTwoTone.js index ba874f82fb2bbe..0c8e7113063bf7 100644 --- a/packages/material-ui-icons/lib/DialpadTwoTone.js +++ b/packages/material-ui-icons/lib/DialpadTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm2 8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-8 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm12-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'DialpadTwoTone'); \ No newline at end of file +}), 'DialpadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dining.js b/packages/material-ui-icons/lib/Dining.js index 9030c27269aafd..9226d3eac91f5b 100644 --- a/packages/material-ui-icons/lib/Dining.js +++ b/packages/material-ui-icons/lib/Dining.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9 8.3c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9h.75V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9H10V6.5c0-.28.23-.5.5-.5.28 0 .5.22.5.5v3.8zm4.58 2.29-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z" -}), 'Dining'); \ No newline at end of file +}), 'Dining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiningOutlined.js b/packages/material-ui-icons/lib/DiningOutlined.js index cd0b7c054dd863..816b559d230a6a 100644 --- a/packages/material-ui-icons/lib/DiningOutlined.js +++ b/packages/material-ui-icons/lib/DiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.75 6c-1.37 0-2.5 1.52-2.5 3.4 0 1.48.7 2.71 1.67 3.18l.08.04V19h1.5v-6.38l.08-.03c.97-.47 1.67-1.7 1.67-3.18 0-1.88-1.12-3.41-2.5-3.41M10.5 6c-.27 0-.5.22-.5.5V9h-.75V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9H7.5V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v3.8c0 .93.64 1.71 1.5 1.93V19h1.5v-6.77c.86-.22 1.5-1 1.5-1.93V6.5c0-.28-.22-.5-.5-.5zM20 4H4v16h16V4m0-2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16z" -}), 'DiningOutlined'); \ No newline at end of file +}), 'DiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiningRounded.js b/packages/material-ui-icons/lib/DiningRounded.js index 07310db8d3b93f..b67a4a5be8c2c3 100644 --- a/packages/material-ui-icons/lib/DiningRounded.js +++ b/packages/material-ui-icons/lib/DiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9 8.3c0 .93-.64 1.71-1.5 1.93v6.02c0 .41-.34.75-.75.75S8 18.66 8 18.25v-6.02c-.86-.22-1.5-1-1.5-1.93V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9h.75V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9H10V6.5c0-.28.23-.5.5-.5.28 0 .5.22.5.5v3.8zm4.58 2.29-.08.03v5.63c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-5.63l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z" -}), 'DiningRounded'); \ No newline at end of file +}), 'DiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiningSharp.js b/packages/material-ui-icons/lib/DiningSharp.js index f4d665862215e9..5ba7fd28d9e640 100644 --- a/packages/material-ui-icons/lib/DiningSharp.js +++ b/packages/material-ui-icons/lib/DiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zm-11 8.3c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6h1v3h.75V6h1v3H10V6h1v4.3zm4.58 2.29-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z" -}), 'DiningSharp'); \ No newline at end of file +}), 'DiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiningTwoTone.js b/packages/material-ui-icons/lib/DiningTwoTone.js index 24059dedcbd5fa..69161ef185d7be 100644 --- a/packages/material-ui-icons/lib/DiningTwoTone.js +++ b/packages/material-ui-icons/lib/DiningTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zM14.75 6c1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18l-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4zm-8.25.5c0-.28.22-.5.5-.5s.5.22.5.5V9h.75V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9H10V6.5c0-.28.23-.5.5-.5.28 0 .5.22.5.5v3.8c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.23V19h1.5v-6.77c.86-.22 1.5-1 1.5-1.93V6.5c0-.28-.22-.5-.5-.5-.27 0-.5.22-.5.5V9h-.75V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9H7.5V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v3.8c0 .93.64 1.71 1.5 1.93zm5.92.35.08.04V19h1.5v-6.38l.08-.03c.97-.47 1.67-1.7 1.67-3.18 0-1.88-1.12-3.41-2.5-3.41-1.37 0-2.5 1.52-2.5 3.4 0 1.48.7 2.71 1.67 3.18z" -}, "2")], 'DiningTwoTone'); \ No newline at end of file +}, "2")], 'DiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DinnerDining.js b/packages/material-ui-icons/lib/DinnerDining.js index 8fb0eb745ee501..edb4dfb3915913 100644 --- a/packages/material-ui-icons/lib/DinnerDining.js +++ b/packages/material-ui-icons/lib/DinnerDining.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19h20l-2 2H4l-2-2zM5 6h1v1H5V6zm0-2h1v1H5V4zm4 0v1H7V4h2zm0 3H7V6h2v1zm-3 8.23c-.36.11-.69.28-1 .47V8h1v7.23zm-2 1.29c-.38.44-.68.93-.84 1.48h16.82c.01-.16.03-.33.03-.5 0-3.04-2.46-5.5-5.5-5.5-2.29 0-4.25 1.4-5.08 3.4-.59-.25-1.24-.4-1.93-.4-.17 0-.33.02-.5.04V8h2c1.03.06 1.9-.96 2-2h10V5H11c-.1-1.05-.97-1.97-2-2H3v1h1v1H3v1h1v1H3v1h1v8.52z" -}), 'DinnerDining'); \ No newline at end of file +}), 'DinnerDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DinnerDiningOutlined.js b/packages/material-ui-icons/lib/DinnerDiningOutlined.js index 37d0f24f31bcc0..82d8d666d70e7b 100644 --- a/packages/material-ui-icons/lib/DinnerDiningOutlined.js +++ b/packages/material-ui-icons/lib/DinnerDiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 19 2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h1.75C10.99 9 12 7.99 12 6.75h9v-1.5h-9C12 4.01 10.99 3 9.75 3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zm11.5-4c.99 0 1.91.4 2.58 1.14.24.26.44.55.58.86h-6.32c.58-1.21 1.81-2 3.16-2zM8 4.5h2v.75H8V4.5zm0 2.25h2v.75H8v-.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM5.5 9h1v6.06c-.35.06-.68.17-1 .3V9z" -}), 'DinnerDiningOutlined'); \ No newline at end of file +}), 'DinnerDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DinnerDiningRounded.js b/packages/material-ui-icons/lib/DinnerDiningRounded.js index 2ecc0e94dcbf1b..dcf99b38525515 100644 --- a/packages/material-ui-icons/lib/DinnerDiningRounded.js +++ b/packages/material-ui-icons/lib/DinnerDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.85 19.85 1 1c.1.1.22.15.36.15H19.8c.13 0 .26-.05.35-.15l1-1c.31-.31.09-.85-.35-.85H3.21c-.45 0-.67.54-.36.85zM3 18h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h1.75C10.99 9 12 7.99 12 6.75h8.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H12C12 4.01 10.99 3 9.75 3h-6c-.41 0-.75.34-.75.75s.34.75.75.75H4v.75h-.25c-.41 0-.75.34-.75.75s.34.75.75.75H4v.75h-.25c-.41 0-.75.34-.75.75s.34.75.75.75H4v7.39c-.44.46-.78 1-1 1.61zM8 4.5h2v.75H8V4.5zm0 2.25h2v.75H8v-.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM5.5 9h1v6.06c-.35.06-.68.17-1 .3V9z" -}), 'DinnerDiningRounded'); \ No newline at end of file +}), 'DinnerDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DinnerDiningSharp.js b/packages/material-ui-icons/lib/DinnerDiningSharp.js index cff8036dece382..f793e29caffa88 100644 --- a/packages/material-ui-icons/lib/DinnerDiningSharp.js +++ b/packages/material-ui-icons/lib/DinnerDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 19 2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h4V6.75h9v-1.5h-9V3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zM8 7.5v-.75h2v.75H8zm2-2.25H8V4.5h2v.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM6.5 9v6.06c-.35.06-.68.17-1 .3V9h1z" -}), 'DinnerDiningSharp'); \ No newline at end of file +}), 'DinnerDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DinnerDiningTwoTone.js b/packages/material-ui-icons/lib/DinnerDiningTwoTone.js index 2213c78d9760e0..f1729a8bd8379e 100644 --- a/packages/material-ui-icons/lib/DinnerDiningTwoTone.js +++ b/packages/material-ui-icons/lib/DinnerDiningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.08 15.14C16.41 14.4 15.49 14 14.5 14c-1.35 0-2.58.79-3.16 2h6.32c-.14-.31-.34-.6-.58-.86z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 19 2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h1.75C10.99 9 12 7.99 12 6.75h9v-1.5h-9C12 4.01 10.99 3 9.75 3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zm11.5-4c.99 0 1.91.4 2.58 1.14.24.26.44.55.58.86h-6.32c.58-1.21 1.81-2 3.16-2zM8 4.5h2v.75H8V4.5zm0 2.25h2v.75H8v-.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM5.5 9h1v6.06c-.35.06-.68.17-1 .3V9z" -}, "1")], 'DinnerDiningTwoTone'); \ No newline at end of file +}, "1")], 'DinnerDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Directions.js b/packages/material-ui-icons/lib/Directions.js index 8da402ec0266a2..3557b555e88543 100644 --- a/packages/material-ui-icons/lib/Directions.js +++ b/packages/material-ui-icons/lib/Directions.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0l-9 9c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9c.39-.38.39-1.01 0-1.41zM14 14.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5l3.5 3.5-3.5 3.5z" -}), 'Directions'); \ No newline at end of file +}), 'Directions'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBike.js b/packages/material-ui-icons/lib/DirectionsBike.js index 5658fb1d9b5f47..fa6b7525f5114c 100644 --- a/packages/material-ui-icons/lib/DirectionsBike.js +++ b/packages/material-ui-icons/lib/DirectionsBike.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" -}), 'DirectionsBike'); \ No newline at end of file +}), 'DirectionsBike'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBikeOutlined.js b/packages/material-ui-icons/lib/DirectionsBikeOutlined.js index b71a9ab831497e..d503fcaa806e0d 100644 --- a/packages/material-ui-icons/lib/DirectionsBikeOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsBikeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" -}), 'DirectionsBikeOutlined'); \ No newline at end of file +}), 'DirectionsBikeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBikeRounded.js b/packages/material-ui-icons/lib/DirectionsBikeRounded.js index c015516cace680..72965aae04e5a6 100644 --- a/packages/material-ui-icons/lib/DirectionsBikeRounded.js +++ b/packages/material-ui-icons/lib/DirectionsBikeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.06 1.06 2.38 1.78 3.96 2.02.6.09 1.14-.39 1.14-1 0-.49-.37-.91-.85-.99-1.11-.18-2.02-.71-2.75-1.43l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v4c0 .55.45 1 1 1s1-.45 1-1v-4.4c0-.52-.2-1.01-.55-1.38L10.8 10.5zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" -}), 'DirectionsBikeRounded'); \ No newline at end of file +}), 'DirectionsBikeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBikeSharp.js b/packages/material-ui-icons/lib/DirectionsBikeSharp.js index 38901edbfe82e8..f962dd888c7592 100644 --- a/packages/material-ui-icons/lib/DirectionsBikeSharp.js +++ b/packages/material-ui-icons/lib/DirectionsBikeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L6.31 9.9 11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" -}), 'DirectionsBikeSharp'); \ No newline at end of file +}), 'DirectionsBikeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBikeTwoTone.js b/packages/material-ui-icons/lib/DirectionsBikeTwoTone.js index f8ca14715426e6..6f1a56a8aef0e5 100644 --- a/packages/material-ui-icons/lib/DirectionsBikeTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsBikeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 22c2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5 2.2 5 5 5zm0-8.5c1.9 0 3.5 1.6 3.5 3.5S6.9 20.5 5 20.5 1.5 18.9 1.5 17s1.6-3.5 3.5-3.5zm2.8-2.3L11 14v5h2v-6.2l-2.2-2.3 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" -}), 'DirectionsBikeTwoTone'); \ No newline at end of file +}), 'DirectionsBikeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoat.js b/packages/material-ui-icons/lib/DirectionsBoat.js index 5085884b4d0a06..b2bac793543c2f 100644 --- a/packages/material-ui-icons/lib/DirectionsBoat.js +++ b/packages/material-ui-icons/lib/DirectionsBoat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" -}), 'DirectionsBoat'); \ No newline at end of file +}), 'DirectionsBoat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatFilled.js b/packages/material-ui-icons/lib/DirectionsBoatFilled.js index 4ecf228457eecd..5284a57ec1cdfe 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatFilled.js +++ b/packages/material-ui-icons/lib/DirectionsBoatFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.9-6.68c.11-.37.04-1.06-.66-1.28L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" -}), 'DirectionsBoatFilled'); \ No newline at end of file +}), 'DirectionsBoatFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatFilledOutlined.js b/packages/material-ui-icons/lib/DirectionsBoatFilledOutlined.js index 999727e9342aa6..a2be132b7971ce 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatFilledOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsBoatFilledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 12.66-1.12 3.97c-.78-.43-1.07-.86-2.65-2.67-1.6 1.82-2.43 3.04-4 3.04-1.53 0-2.34-1.15-4-3.04-1.6 1.82-1.87 2.21-2.65 2.65l-1.13-3.96L12 10.11l7.77 2.55zM15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.91-6.68c.11-.37.04-1.06-.66-1.28l-1.3-.42V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z" -}), 'DirectionsBoatFilledOutlined'); \ No newline at end of file +}), 'DirectionsBoatFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatFilledRounded.js b/packages/material-ui-icons/lib/DirectionsBoatFilledRounded.js index 2cc56774434d70..a24f3b7e058035 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatFilledRounded.js +++ b/packages/material-ui-icons/lib/DirectionsBoatFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21c-1.19 0-2.38-.35-3.47-.98-.33-.19-.73-.19-1.07 0-2.17 1.26-4.76 1.26-6.93 0-.33-.19-.73-.19-1.07 0-1.08.63-2.27.98-3.46.98H3c-.55 0-1 .45-1 1s.45 1 1 1h1c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h1c.55 0 1-.45 1-1s-.45-1-1-1h-1zM3.95 19H4c1.27 0 2.42-.55 3.33-1.33.39-.34.95-.34 1.34 0C9.58 18.45 10.73 19 12 19s2.42-.55 3.33-1.33c.39-.34.95-.34 1.34 0 .91.78 2.06 1.33 3.33 1.33h.05l1.9-6.68c.11-.37.04-1.06-.66-1.28L20 10.62V6c0-1.1-.9-2-2-2h-3V2c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19zM6 6h12v3.97L12.62 8.2c-.41-.13-.84-.13-1.25 0L6 9.97V6z" -}), 'DirectionsBoatFilledRounded'); \ No newline at end of file +}), 'DirectionsBoatFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatFilledSharp.js b/packages/material-ui-icons/lib/DirectionsBoatFilledSharp.js index 2408fda1fa7eb2..54473ad3246eab 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatFilledSharp.js +++ b/packages/material-ui-icons/lib/DirectionsBoatFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" -}), 'DirectionsBoatFilledSharp'); \ No newline at end of file +}), 'DirectionsBoatFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatFilledTwoTone.js b/packages/material-ui-icons/lib/DirectionsBoatFilledTwoTone.js index f7f0006a0b6699..2eb1103fccac37 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatFilledTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsBoatFilledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 12.66-1.12 3.97c-.78-.43-1.07-.86-2.65-2.67-1.6 1.82-2.43 3.04-4 3.04-1.53 0-2.34-1.15-4-3.04-1.6 1.82-1.87 2.21-2.65 2.65l-1.13-3.96L12 10.11l7.77 2.55z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 12.66-1.12 3.97c-.78-.43-1.07-.86-2.65-2.67-1.6 1.82-2.43 3.04-4 3.04-1.53 0-2.34-1.15-4-3.04-1.6 1.82-1.87 2.21-2.65 2.65l-1.13-3.96L12 10.11l7.77 2.55zM15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.91-6.68c.11-.37.04-1.06-.66-1.28l-1.3-.42V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z" -}, "1")], 'DirectionsBoatFilledTwoTone'); \ No newline at end of file +}, "1")], 'DirectionsBoatFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatOutlined.js b/packages/material-ui-icons/lib/DirectionsBoatOutlined.js index edc46efe35931a..4d69531b073cbc 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsBoatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3v1h-2V3h2m-1 7.11 5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32s-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.79L12 10.11M15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z" -}), 'DirectionsBoatOutlined'); \ No newline at end of file +}), 'DirectionsBoatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatRounded.js b/packages/material-ui-icons/lib/DirectionsBoatRounded.js index 444f630a32d6bf..cc863e25938408 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatRounded.js +++ b/packages/material-ui-icons/lib/DirectionsBoatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21c-1.19 0-2.38-.35-3.47-.98-.33-.19-.73-.19-1.07 0-2.17 1.26-4.76 1.26-6.93 0-.33-.19-.73-.19-1.07 0-1.08.63-2.27.98-3.46.98H3c-.55 0-1 .45-1 1s.45 1 1 1h1c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h1c.55 0 1-.45 1-1s-.45-1-1-1h-1zM3.95 19H4c1.27 0 2.42-.55 3.33-1.33.39-.34.95-.34 1.34 0C9.58 18.45 10.73 19 12 19s2.42-.55 3.33-1.33c.39-.34.95-.34 1.34 0 .91.78 2.06 1.33 3.33 1.33h.05l1.9-6.68c.11-.37.04-1.06-.66-1.28L20 10.62V6c0-1.1-.9-2-2-2h-3V2c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19zM6 6h12v3.97L12.62 8.2c-.41-.13-.84-.13-1.25 0L6 9.97V6z" -}), 'DirectionsBoatRounded'); \ No newline at end of file +}), 'DirectionsBoatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatSharp.js b/packages/material-ui-icons/lib/DirectionsBoatSharp.js index 36ff4ec1eefeaf..d064211f913d77 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatSharp.js +++ b/packages/material-ui-icons/lib/DirectionsBoatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" -}), 'DirectionsBoatSharp'); \ No newline at end of file +}), 'DirectionsBoatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBoatTwoTone.js b/packages/material-ui-icons/lib/DirectionsBoatTwoTone.js index 0601e118714c44..47471ea8cd92df 100644 --- a/packages/material-ui-icons/lib/DirectionsBoatTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsBoatTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.49 15.68 8 13.96l1.51 1.72c.34.4 1.28 1.32 2.49 1.32 1.21 0 2.15-.92 2.49-1.32L16 13.96l1.51 1.72c.2.23.6.64 1.14.94l1.12-3.97-2.39-.78L12 10.11l-5.38 1.77-2.4.79 1.13 3.96c.55-.31.94-.72 1.14-.95zM11 3h2v1h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM11 3h2v1h-2V3zM6 6h12v3.97L12 8 6 9.97V6zm.62 5.87L12 10.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32-1.21 0-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.78zM8 22.01c1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99z" -}, "1")], 'DirectionsBoatTwoTone'); \ No newline at end of file +}, "1")], 'DirectionsBoatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBus.js b/packages/material-ui-icons/lib/DirectionsBus.js index ccf1db057cd639..bd7c7d11ab022b 100644 --- a/packages/material-ui-icons/lib/DirectionsBus.js +++ b/packages/material-ui-icons/lib/DirectionsBus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" -}), 'DirectionsBus'); \ No newline at end of file +}), 'DirectionsBus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusFilled.js b/packages/material-ui-icons/lib/DirectionsBusFilled.js index 79edab8be39d0f..856186b8e82518 100644 --- a/packages/material-ui-icons/lib/DirectionsBusFilled.js +++ b/packages/material-ui-icons/lib/DirectionsBusFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z" -}), 'DirectionsBusFilled'); \ No newline at end of file +}), 'DirectionsBusFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusFilledOutlined.js b/packages/material-ui-icons/lib/DirectionsBusFilledOutlined.js index e878ee3e950d6f..f55b1f573be226 100644 --- a/packages/material-ui-icons/lib/DirectionsBusFilledOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsBusFilledOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2v-3h12v3zm0-5H6V7h12v3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsBusFilledOutlined'); \ No newline at end of file +}, "2")], 'DirectionsBusFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusFilledRounded.js b/packages/material-ui-icons/lib/DirectionsBusFilledRounded.js index 1f48c090d14e1e..4d4a4a6338578c 100644 --- a/packages/material-ui-icons/lib/DirectionsBusFilledRounded.js +++ b/packages/material-ui-icons/lib/DirectionsBusFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44v1.56c0 .83.67 1.5 1.5 1.5S8 20.33 8 19.5V19h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.56c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z" -}), 'DirectionsBusFilledRounded'); \ No newline at end of file +}), 'DirectionsBusFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusFilledSharp.js b/packages/material-ui-icons/lib/DirectionsBusFilledSharp.js index eca456743de5e7..39c0359389f630 100644 --- a/packages/material-ui-icons/lib/DirectionsBusFilledSharp.js +++ b/packages/material-ui-icons/lib/DirectionsBusFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V21h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z" -}), 'DirectionsBusFilledSharp'); \ No newline at end of file +}), 'DirectionsBusFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusFilledTwoTone.js b/packages/material-ui-icons/lib/DirectionsBusFilledTwoTone.js index 82d0ba727b51f8..e32c5c770f0e2e 100644 --- a/packages/material-ui-icons/lib/DirectionsBusFilledTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsBusFilledTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3H6v3zm9.5-2c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13zM12 4c-3.52 0-4.97.48-5.57 1h11.24c-.54-.54-1.96-1-5.67-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2v-3h12v3zm0-5H6V7h12v3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsBusFilledTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsBusFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusOutlined.js b/packages/material-ui-icons/lib/DirectionsBusOutlined.js index 1e14bdc8e219c2..9683321c86684c 100644 --- a/packages/material-ui-icons/lib/DirectionsBusOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsBusOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4zm5.66 2.99H6.34C6.89 4.46 8.31 4 12 4s5.11.46 5.66.99zm.34 2V10H6V6.99h12zm-.34 9.74-.29.27H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsBusOutlined'); \ No newline at end of file +}, "2")], 'DirectionsBusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusRounded.js b/packages/material-ui-icons/lib/DirectionsBusRounded.js index 7b379f7f17d031..0a63e5c5727b4f 100644 --- a/packages/material-ui-icons/lib/DirectionsBusRounded.js +++ b/packages/material-ui-icons/lib/DirectionsBusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16c0 .88.39 1.67 1 2.22v1.28c0 .83.67 1.5 1.5 1.5S8 20.33 8 19.5V19h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.28c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" -}), 'DirectionsBusRounded'); \ No newline at end of file +}), 'DirectionsBusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusSharp.js b/packages/material-ui-icons/lib/DirectionsBusSharp.js index 809185b860a887..6a6e016adbd71e 100644 --- a/packages/material-ui-icons/lib/DirectionsBusSharp.js +++ b/packages/material-ui-icons/lib/DirectionsBusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16c0 .88.39 1.67 1 2.22V21h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" -}), 'DirectionsBusSharp'); \ No newline at end of file +}), 'DirectionsBusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsBusTwoTone.js b/packages/material-ui-icons/lib/DirectionsBusTwoTone.js index b6f645b9f21d00..080d7bfab25e07 100644 --- a/packages/material-ui-icons/lib/DirectionsBusTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsBusTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.37 17 .29-.27c.13-.11.34-.36.34-.73v-4H6v4c0 .37.21.62.34.73l.29.27h10.74zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm5.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM12 4c-3.69 0-5.11.46-5.66.99h11.31C17.11 4.46 15.69 4 12 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 21h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1zM12 4c3.69 0 5.11.46 5.66.99H6.34C6.89 4.46 8.31 4 12 4zM6 6.99h12V10H6V6.99zM8 17H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73l-.29.27H8z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsBusTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsBusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCar.js b/packages/material-ui-icons/lib/DirectionsCar.js index ee7de5dbd824ba..06631c805fdcd5 100644 --- a/packages/material-ui-icons/lib/DirectionsCar.js +++ b/packages/material-ui-icons/lib/DirectionsCar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" -}), 'DirectionsCar'); \ No newline at end of file +}), 'DirectionsCar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarFilled.js b/packages/material-ui-icons/lib/DirectionsCarFilled.js index 8ee88df67982b3..5a2c15c1df4891 100644 --- a/packages/material-ui-icons/lib/DirectionsCarFilled.js +++ b/packages/material-ui-icons/lib/DirectionsCarFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z" -}), 'DirectionsCarFilled'); \ No newline at end of file +}), 'DirectionsCarFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarFilledOutlined.js b/packages/material-ui-icons/lib/DirectionsCarFilledOutlined.js index 347e314281bbfb..0f89f14f67b835 100644 --- a/packages/material-ui-icons/lib/DirectionsCarFilledOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsCarFilledOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-5h14v5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsCarFilledOutlined'); \ No newline at end of file +}, "2")], 'DirectionsCarFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarFilledRounded.js b/packages/material-ui-icons/lib/DirectionsCarFilledRounded.js index 3d7a2c593f0b5d..100b4a3206599f 100644 --- a/packages/material-ui-icons/lib/DirectionsCarFilledRounded.js +++ b/packages/material-ui-icons/lib/DirectionsCarFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v7.5c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5V12l-2.08-5.99zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z" -}), 'DirectionsCarFilledRounded'); \ No newline at end of file +}), 'DirectionsCarFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarFilledSharp.js b/packages/material-ui-icons/lib/DirectionsCarFilledSharp.js index 5674b6f856ee68..7d7aae46c13101 100644 --- a/packages/material-ui-icons/lib/DirectionsCarFilledSharp.js +++ b/packages/material-ui-icons/lib/DirectionsCarFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.57 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.43-7zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z" -}), 'DirectionsCarFilledSharp'); \ No newline at end of file +}), 'DirectionsCarFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarFilledTwoTone.js b/packages/material-ui-icons/lib/DirectionsCarFilledTwoTone.js index cf0aedaab02738..8411dba26868a3 100644 --- a/packages/material-ui-icons/lib/DirectionsCarFilledTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsCarFilledTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17h14v-5H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 16 7.5 16 6 15.33 6 14.5 6.67 13 7.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-5h14v5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsCarFilledTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsCarFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarOutlined.js b/packages/material-ui-icons/lib/DirectionsCarOutlined.js index 8d0bac0dcf239b..d2cbbcaffdf00e 100644 --- a/packages/material-ui-icons/lib/DirectionsCarOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsCarOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsCarOutlined'); \ No newline at end of file +}, "2")], 'DirectionsCarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarRounded.js b/packages/material-ui-icons/lib/DirectionsCarRounded.js index 2ac723df2d9336..50bc25b17ede7a 100644 --- a/packages/material-ui-icons/lib/DirectionsCarRounded.js +++ b/packages/material-ui-icons/lib/DirectionsCarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 11H5z" -}), 'DirectionsCarRounded'); \ No newline at end of file +}), 'DirectionsCarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarSharp.js b/packages/material-ui-icons/lib/DirectionsCarSharp.js index c67b32717d64a4..2c5fd6c6b6af22 100644 --- a/packages/material-ui-icons/lib/DirectionsCarSharp.js +++ b/packages/material-ui-icons/lib/DirectionsCarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.58 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" -}), 'DirectionsCarSharp'); \ No newline at end of file +}), 'DirectionsCarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsCarTwoTone.js b/packages/material-ui-icons/lib/DirectionsCarTwoTone.js index ca457ea77e0e2c..ac71516f4415d3 100644 --- a/packages/material-ui-icons/lib/DirectionsCarTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsCarTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17h14v-5H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 16 7.5 16 6 15.33 6 14.5 6.67 13 7.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsCarTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsCarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsOff.js b/packages/material-ui-icons/lib/DirectionsOff.js index 76f0e0bfdd03cb..ef78da75288371 100644 --- a/packages/material-ui-icons/lib/DirectionsOff.js +++ b/packages/material-ui-icons/lib/DirectionsOff.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.41 6.58 12 4l8 8-2.58 2.59L18.83 16l2.58-2.59c.78-.78.78-2.05 0-2.83l-8-8c-.78-.78-2.05-.78-2.83 0L8 5.17l1.41 1.41zm-6.6-3.77L1.39 4.22 5.17 8l-2.58 2.59c-.78.78-.78 2.05 0 2.83l8 8c.78.78 2.05.78 2.83 0L16 18.83l3.78 3.78 1.41-1.41L2.81 2.81zM12 20l-8-8 2.58-2.59L8.17 11H7v2h3.17l1.5 1.5-1.08 1.09L12 17l1.09-1.09 1.5 1.5L12 20z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.9165 8.0872 1.089-1.089 4.9992 4.9993-1.089 1.089z" -}, "1")], 'DirectionsOff'); \ No newline at end of file +}, "1")], 'DirectionsOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsOffOutlined.js b/packages/material-ui-icons/lib/DirectionsOffOutlined.js index f490cedc9936d4..3fa1fbcd77f520 100644 --- a/packages/material-ui-icons/lib/DirectionsOffOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsOffOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0L8.21 5.38l1.41 1.41L12 4.42 19.58 12l-2.38 2.38 1.41 1.41 3.09-3.09c.4-.37.4-1 .01-1.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7.5v2.67l2.17 2.17L16.5 11zM1.39 4.22l3.99 3.99-3.09 3.09c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm6.64 6.63c-.01.05-.04.1-.04.15v4h2v-2.18l4.38 4.38L12 19.58 4.42 12 6.8 9.62l1.23 1.23z" -}, "1")], 'DirectionsOffOutlined'); \ No newline at end of file +}, "1")], 'DirectionsOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsOffRounded.js b/packages/material-ui-icons/lib/DirectionsOffRounded.js index 6a9e22a6cd1c51..aae9e7c1d38295 100644 --- a/packages/material-ui-icons/lib/DirectionsOffRounded.js +++ b/packages/material-ui-icons/lib/DirectionsOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0L8.21 5.38 13 10.17V7.5l3.15 3.15c.2.2.2.51 0 .71l-.98.98 3.45 3.45 3.09-3.09c.38-.38.38-1.01 0-1.41zM6.79 6.79 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.38 8.2l-3.09 3.09c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.28 3.28c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.79 6.79zM9.99 14c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.05.02-.1.03-.15l1.97 1.97V14z" -}), 'DirectionsOffRounded'); \ No newline at end of file +}), 'DirectionsOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsOffSharp.js b/packages/material-ui-icons/lib/DirectionsOffSharp.js index 99e265ca86465d..9ef458dbaa935e 100644 --- a/packages/material-ui-icons/lib/DirectionsOffSharp.js +++ b/packages/material-ui-icons/lib/DirectionsOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 7.5 3.5 3.5-1.33 1.34 3.45 3.45L22.41 12 12.01 1.58l-3.8 3.8L13 10.17zM1.39 4.22l3.99 3.99L1.59 12l10.42 10.4 3.79-3.79 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm8.6 8.6V15h-2v-4.18l2 2z" -}), 'DirectionsOffSharp'); \ No newline at end of file +}), 'DirectionsOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsOffTwoTone.js b/packages/material-ui-icons/lib/DirectionsOffTwoTone.js index 1cf774bcb314ae..b84f1b5bf2ee6a 100644 --- a/packages/material-ui-icons/lib/DirectionsOffTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsOffTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0L8.21 5.38l1.41 1.41L12 4.42 19.58 12l-2.38 2.38 1.41 1.41 3.09-3.09c.4-.37.4-1 .01-1.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7.5v2.67l2.17 2.17L16.5 11zM1.39 4.22l3.99 3.99-3.09 3.09c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm6.64 6.63c-.01.05-.04.1-.04.15v4h2v-2.18l4.38 4.38L12 19.58 4.42 12 6.8 9.62l1.23 1.23z" -}, "1")], 'DirectionsOffTwoTone'); \ No newline at end of file +}, "1")], 'DirectionsOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsOutlined.js b/packages/material-ui-icons/lib/DirectionsOutlined.js index ab37008b12c91f..10710b51c4bc34 100644 --- a/packages/material-ui-icons/lib/DirectionsOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.43 10.59-9.01-9.01c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.79-.76.8-2.02.03-2.82zm-10.42 10.4-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z" -}), 'DirectionsOutlined'); \ No newline at end of file +}), 'DirectionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailway.js b/packages/material-ui-icons/lib/DirectionsRailway.js index e8ae81a4aa11ce..bb5a0091d4e6d7 100644 --- a/packages/material-ui-icons/lib/DirectionsRailway.js +++ b/packages/material-ui-icons/lib/DirectionsRailway.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" -}), 'DirectionsRailway'); \ No newline at end of file +}), 'DirectionsRailway'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayFilled.js b/packages/material-ui-icons/lib/DirectionsRailwayFilled.js index 58bf2aa2a6d383..4caf672c535f33 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayFilled.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z" -}), 'DirectionsRailwayFilled'); \ No newline at end of file +}), 'DirectionsRailwayFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayFilledOutlined.js b/packages/material-ui-icons/lib/DirectionsRailwayFilledOutlined.js index effc632742b208..17f352546d724f 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayFilledOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayFilledOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "14.5", r: "1.5" -}, "1")], 'DirectionsRailwayFilledOutlined'); \ No newline at end of file +}, "1")], 'DirectionsRailwayFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayFilledRounded.js b/packages/material-ui-icons/lib/DirectionsRailwayFilledRounded.js index ca2cb32e8a98b9..88722c4072f3b8 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayFilledRounded.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z" -}), 'DirectionsRailwayFilledRounded'); \ No newline at end of file +}), 'DirectionsRailwayFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayFilledSharp.js b/packages/material-ui-icons/lib/DirectionsRailwayFilledSharp.js index d15b7ee6057ada..2726ed4236b517 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayFilledSharp.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z" -}), 'DirectionsRailwayFilledSharp'); \ No newline at end of file +}), 'DirectionsRailwayFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayFilledTwoTone.js b/packages/material-ui-icons/lib/DirectionsRailwayFilledTwoTone.js index 4961f2b1e52b59..d8db4a7d06f2e5 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayFilledTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayFilledTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm6-2.5c.83 0 1.5.67 1.5 1.5S12.83 16 12 16s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0-9c-3.52 0-4.97.48-5.57 1h11.24c-.54-.54-1.96-1-5.67-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsRailwayFilledTwoTone'); \ No newline at end of file +}, "2")], 'DirectionsRailwayFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayOutlined.js b/packages/material-ui-icons/lib/DirectionsRailwayOutlined.js index e8bda263eadd2f..80ecdd2c126068 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1c-4.42 0-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4zm0 2c6 0 6 1.2 6 2H6c0-.8 0-2 6-2zm6 4v3H6V7h12zm-1.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5zM12 12.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DirectionsRailwayOutlined'); \ No newline at end of file +}), 'DirectionsRailwayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayRounded.js b/packages/material-ui-icons/lib/DirectionsRailwayRounded.js index 3861ccb7bd050f..0f381ce16debcb 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayRounded.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5zM4 15.5C4 17.43 5.57 19 7.5 19l-1.14 1.15c-.32.31-.1.85.35.85h10.58c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" -}), 'DirectionsRailwayRounded'); \ No newline at end of file +}), 'DirectionsRailwayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwaySharp.js b/packages/material-ui-icons/lib/DirectionsRailwaySharp.js index 8cf13dc98bb4ed..8f146817d7ea17 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwaySharp.js +++ b/packages/material-ui-icons/lib/DirectionsRailwaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" -}), 'DirectionsRailwaySharp'); \ No newline at end of file +}), 'DirectionsRailwaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRailwayTwoTone.js b/packages/material-ui-icons/lib/DirectionsRailwayTwoTone.js index 4878be172533ce..51b7a036afe701 100644 --- a/packages/material-ui-icons/lib/DirectionsRailwayTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsRailwayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm6-3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM12 3C6 3 6 4.2 6 5h12c0-.8 0-2-6-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5zm-2 0c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3zM6 5c0-.8 0-2 6-2s6 1.2 6 2H6zm6 11.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}, "1")], 'DirectionsRailwayTwoTone'); \ No newline at end of file +}, "1")], 'DirectionsRailwayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRounded.js b/packages/material-ui-icons/lib/DirectionsRounded.js index 410f39bc0bc1d9..bdf1bed03f5153 100644 --- a/packages/material-ui-icons/lib/DirectionsRounded.js +++ b/packages/material-ui-icons/lib/DirectionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0l-9 9c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9c.39-.38.39-1.01 0-1.41zM14 14.5V12h-4v2c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1h5V7.5l3.15 3.15c.2.2.2.51 0 .71L14 14.5z" -}), 'DirectionsRounded'); \ No newline at end of file +}), 'DirectionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRun.js b/packages/material-ui-icons/lib/DirectionsRun.js index 42a4a47699fc40..982652e7c58849 100644 --- a/packages/material-ui-icons/lib/DirectionsRun.js +++ b/packages/material-ui-icons/lib/DirectionsRun.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9 1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" -}), 'DirectionsRun'); \ No newline at end of file +}), 'DirectionsRun'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRunOutlined.js b/packages/material-ui-icons/lib/DirectionsRunOutlined.js index 35390b6b7c3237..fc2dad243ef442 100644 --- a/packages/material-ui-icons/lib/DirectionsRunOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsRunOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9 1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" -}), 'DirectionsRunOutlined'); \ No newline at end of file +}), 'DirectionsRunOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRunRounded.js b/packages/material-ui-icons/lib/DirectionsRunRounded.js index 6af52729c4742c..ac622fa7dd6ca7 100644 --- a/packages/material-ui-icons/lib/DirectionsRunRounded.js +++ b/packages/material-ui-icons/lib/DirectionsRunRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.17 12 .57-2.5 2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45l-1.48-1.41.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.09 1.14-.39 1.14-1 0-.49-.36-.9-.85-.98-1.52-.25-2.78-1.15-3.45-2.33l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L7.21 7.76c-.74.32-1.22 1.04-1.22 1.85v2.37c0 .55.45 1 1 1s1-.45 1-1v-2.4l1.8-.7-1.6 8.1-3.92-.8c-.54-.11-1.07.24-1.18.78V17c-.11.54.24 1.07.78 1.18l4.11.82c1.06.21 2.1-.46 2.34-1.52z" -}), 'DirectionsRunRounded'); \ No newline at end of file +}), 'DirectionsRunRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRunSharp.js b/packages/material-ui-icons/lib/DirectionsRunSharp.js index f0355e7d10d9a6..db2db106f3f7d7 100644 --- a/packages/material-ui-icons/lib/DirectionsRunSharp.js +++ b/packages/material-ui-icons/lib/DirectionsRunSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9 1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" -}), 'DirectionsRunSharp'); \ No newline at end of file +}), 'DirectionsRunSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsRunTwoTone.js b/packages/material-ui-icons/lib/DirectionsRunTwoTone.js index 79012c4a6dec63..37f246a8b25285 100644 --- a/packages/material-ui-icons/lib/DirectionsRunTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsRunTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.49 3.48c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm-.6 11.5 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4 1-4.4z" -}), 'DirectionsRunTwoTone'); \ No newline at end of file +}), 'DirectionsRunTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSharp.js b/packages/material-ui-icons/lib/DirectionsSharp.js index 80e01584b5ac3b..107452af52571d 100644 --- a/packages/material-ui-icons/lib/DirectionsSharp.js +++ b/packages/material-ui-icons/lib/DirectionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.41 12 12 1.59 1.59 11.99 12 22.41 22.41 12zM14 14.5V12h-4v3H8v-5h6V7.5l3.5 3.5-3.5 3.5z" -}), 'DirectionsSharp'); \ No newline at end of file +}), 'DirectionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubway.js b/packages/material-ui-icons/lib/DirectionsSubway.js index 3de7ffc82c38ec..42c95d59601424 100644 --- a/packages/material-ui-icons/lib/DirectionsSubway.js +++ b/packages/material-ui-icons/lib/DirectionsSubway.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" -}), 'DirectionsSubway'); \ No newline at end of file +}), 'DirectionsSubway'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayFilled.js b/packages/material-ui-icons/lib/DirectionsSubwayFilled.js index 37bf58d2166f82..34c5b7b97fdbb9 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayFilled.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" -}), 'DirectionsSubwayFilled'); \ No newline at end of file +}), 'DirectionsSubwayFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayFilledOutlined.js b/packages/material-ui-icons/lib/DirectionsSubwayFilledOutlined.js index 2ec7e4f89c79b6..6b4beef1bacb1e 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayFilledOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayFilledOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsSubwayFilledOutlined'); \ No newline at end of file +}, "2")], 'DirectionsSubwayFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayFilledRounded.js b/packages/material-ui-icons/lib/DirectionsSubwayFilledRounded.js index 5c328999171908..2761776d7f5f1a 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayFilledRounded.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" -}), 'DirectionsSubwayFilledRounded'); \ No newline at end of file +}), 'DirectionsSubwayFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayFilledSharp.js b/packages/material-ui-icons/lib/DirectionsSubwayFilledSharp.js index 0730e3acb8ffb9..ea36cb73e90e37 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayFilledSharp.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" -}), 'DirectionsSubwayFilledSharp'); \ No newline at end of file +}), 'DirectionsSubwayFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayFilledTwoTone.js b/packages/material-ui-icons/lib/DirectionsSubwayFilledTwoTone.js index ee3058d56b18c0..2f867ae9abde53 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayFilledTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayFilledTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5h4.67c-.54-.54-1.96-1-5.67-1-3.52 0-4.97.48-5.57 1H13zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsSubwayFilledTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsSubwayFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayOutlined.js b/packages/material-ui-icons/lib/DirectionsSubwayOutlined.js index 61972f700d7ca9..e2c835815c2702 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsSubwayOutlined'); \ No newline at end of file +}, "2")], 'DirectionsSubwayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayRounded.js b/packages/material-ui-icons/lib/DirectionsSubwayRounded.js index 1963577c791829..0e17d24f4b090a 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayRounded.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H17.3c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" -}), 'DirectionsSubwayRounded'); \ No newline at end of file +}), 'DirectionsSubwayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwaySharp.js b/packages/material-ui-icons/lib/DirectionsSubwaySharp.js index 4039cd6838c7d8..2511cb9f7da8b4 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwaySharp.js +++ b/packages/material-ui-icons/lib/DirectionsSubwaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" -}), 'DirectionsSubwaySharp'); \ No newline at end of file +}), 'DirectionsSubwaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsSubwayTwoTone.js b/packages/material-ui-icons/lib/DirectionsSubwayTwoTone.js index 5d3c59b1965dda..dbe742f733571d 100644 --- a/packages/material-ui-icons/lib/DirectionsSubwayTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsSubwayTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsSubwayTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsSubwayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransit.js b/packages/material-ui-icons/lib/DirectionsTransit.js index 1aaa9d37f66590..eaa74267728588 100644 --- a/packages/material-ui-icons/lib/DirectionsTransit.js +++ b/packages/material-ui-icons/lib/DirectionsTransit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" -}), 'DirectionsTransit'); \ No newline at end of file +}), 'DirectionsTransit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitFilled.js b/packages/material-ui-icons/lib/DirectionsTransitFilled.js index 24cc6407f5049f..7d6cab71fb344b 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitFilled.js +++ b/packages/material-ui-icons/lib/DirectionsTransitFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" -}), 'DirectionsTransitFilled'); \ No newline at end of file +}), 'DirectionsTransitFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitFilledOutlined.js b/packages/material-ui-icons/lib/DirectionsTransitFilledOutlined.js index ad2954dee7a866..9490e025b60745 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitFilledOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsTransitFilledOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsTransitFilledOutlined'); \ No newline at end of file +}, "2")], 'DirectionsTransitFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitFilledRounded.js b/packages/material-ui-icons/lib/DirectionsTransitFilledRounded.js index c76419eea2a1df..905730b2a3e4a4 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitFilledRounded.js +++ b/packages/material-ui-icons/lib/DirectionsTransitFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" -}), 'DirectionsTransitFilledRounded'); \ No newline at end of file +}), 'DirectionsTransitFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitFilledSharp.js b/packages/material-ui-icons/lib/DirectionsTransitFilledSharp.js index 0b6d3d4f2948a1..1bf5b2b9e72ab0 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitFilledSharp.js +++ b/packages/material-ui-icons/lib/DirectionsTransitFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" -}), 'DirectionsTransitFilledSharp'); \ No newline at end of file +}), 'DirectionsTransitFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitFilledTwoTone.js b/packages/material-ui-icons/lib/DirectionsTransitFilledTwoTone.js index 8ce851c012ffbd..791c1c61987bce 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitFilledTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsTransitFilledTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5h4.67c-.54-.54-1.96-1-5.67-1-3.52 0-4.97.48-5.57 1H13zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsTransitFilledTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsTransitFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitOutlined.js b/packages/material-ui-icons/lib/DirectionsTransitOutlined.js index 4433ad0254fd43..571eeabf8e41fd 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsTransitOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "2")], 'DirectionsTransitOutlined'); \ No newline at end of file +}, "2")], 'DirectionsTransitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitRounded.js b/packages/material-ui-icons/lib/DirectionsTransitRounded.js index 528a3a7860248c..7cfa5a5ea2c3c8 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitRounded.js +++ b/packages/material-ui-icons/lib/DirectionsTransitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H17.3c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" -}), 'DirectionsTransitRounded'); \ No newline at end of file +}), 'DirectionsTransitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitSharp.js b/packages/material-ui-icons/lib/DirectionsTransitSharp.js index fb93d616854976..967b1f3f2e0085 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitSharp.js +++ b/packages/material-ui-icons/lib/DirectionsTransitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" -}), 'DirectionsTransitSharp'); \ No newline at end of file +}), 'DirectionsTransitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTransitTwoTone.js b/packages/material-ui-icons/lib/DirectionsTransitTwoTone.js index 2cbe02ec3c6c39..f7224c18deec53 100644 --- a/packages/material-ui-icons/lib/DirectionsTransitTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsTransitTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM7.5 17h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5c0 .83.67 1.5 1.5 1.5zm8-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4-4 0-8 .5-8 4zm14 4h-5V7h5v3zm-6-6c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm0 5h12v3.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "3")], 'DirectionsTransitTwoTone'); \ No newline at end of file +}, "3")], 'DirectionsTransitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsTwoTone.js b/packages/material-ui-icons/lib/DirectionsTwoTone.js index 460111c6afe652..4084c54b910d20 100644 --- a/packages/material-ui-icons/lib/DirectionsTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.01 12 9 9L21 12l-9-9-8.99 9zM14 7.5l3.5 3.5-3.5 3.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.42 1.58c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.78-.76.79-2.03.02-2.82l-9-9.01zm-1.41 19.41-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z" -}, "1")], 'DirectionsTwoTone'); \ No newline at end of file +}, "1")], 'DirectionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsWalk.js b/packages/material-ui-icons/lib/DirectionsWalk.js index aeccde43f17e84..b65a75860734df 100644 --- a/packages/material-ui-icons/lib/DirectionsWalk.js +++ b/packages/material-ui-icons/lib/DirectionsWalk.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L6 8.3V13h2V9.6l1.8-.7" -}), 'DirectionsWalk'); \ No newline at end of file +}), 'DirectionsWalk'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsWalkOutlined.js b/packages/material-ui-icons/lib/DirectionsWalkOutlined.js index 48dac5a3f80aa8..dffa8cd024a800 100644 --- a/packages/material-ui-icons/lib/DirectionsWalkOutlined.js +++ b/packages/material-ui-icons/lib/DirectionsWalkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" -}), 'DirectionsWalkOutlined'); \ No newline at end of file +}), 'DirectionsWalkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsWalkRounded.js b/packages/material-ui-icons/lib/DirectionsWalkRounded.js index d23bc6dd5fa538..2b837b1a71dcc6 100644 --- a/packages/material-ui-icons/lib/DirectionsWalkRounded.js +++ b/packages/material-ui-icons/lib/DirectionsWalkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7.24 21.81c-.13.61.35 1.19.98 1.19h.08c.47 0 .87-.32.98-.78L10.9 15l2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45L12.9 13.5l.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.09 1.14-.39 1.14-1 0-.49-.36-.9-.85-.98-1.52-.25-2.78-1.15-3.45-2.33l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L7.22 7.78C6.48 8.1 6 8.82 6 9.63V12c0 .55.45 1 1 1s1-.45 1-1V9.6l1.8-.7" -}), 'DirectionsWalkRounded'); \ No newline at end of file +}), 'DirectionsWalkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsWalkSharp.js b/packages/material-ui-icons/lib/DirectionsWalkSharp.js index 874fa23b7012fc..d78763c4c22f8d 100644 --- a/packages/material-ui-icons/lib/DirectionsWalkSharp.js +++ b/packages/material-ui-icons/lib/DirectionsWalkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" -}), 'DirectionsWalkSharp'); \ No newline at end of file +}), 'DirectionsWalkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirectionsWalkTwoTone.js b/packages/material-ui-icons/lib/DirectionsWalkTwoTone.js index 254173d1d811de..0bd3a88aaaf415 100644 --- a/packages/material-ui-icons/lib/DirectionsWalkTwoTone.js +++ b/packages/material-ui-icons/lib/DirectionsWalkTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" -}), 'DirectionsWalkTwoTone'); \ No newline at end of file +}), 'DirectionsWalkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirtyLens.js b/packages/material-ui-icons/lib/DirtyLens.js index 84c9730ffe69dd..50a71ab9a7228e 100644 --- a/packages/material-ui-icons/lib/DirtyLens.js +++ b/packages/material-ui-icons/lib/DirtyLens.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.95 19H20V7H4v12h7.24c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33zM20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm-1.86 13.01c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" -}), 'DirtyLens'); \ No newline at end of file +}), 'DirtyLens'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirtyLensOutlined.js b/packages/material-ui-icons/lib/DirtyLensOutlined.js index 054b192463b5ca..19d536c8041788 100644 --- a/packages/material-ui-icons/lib/DirtyLensOutlined.js +++ b/packages/material-ui-icons/lib/DirtyLensOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7.02c-.22-.84-.52-1.76-.13-2.33.81-1.12 2.67 1.77 3.81-.09.77-1.57-1.58-1.29-1.64-2.12-.05-.84 3.68.17 3.04-1.66-.61-1.73-2.42.48-2.76-.53-.58-1.74 4.7-1.68 2.85-4.01-1.76-2.22-2.47 2.85-4.41 2.33-1.34-.36-1.01-2.88-2.65-2.44-1.88.51 1.03 2.2 0 2.86-.96.63-1.72-.92-2.51-1.19-.2-.07-.69-.05-.91.19-.78.86.28 1.16.25 1.91-.02.75-1.59.49-1.51 1.49.12 1.6 2.18.45 2.4 1.24.55 1.98-1.89 2.15-.5 3.27 1.53.71 1.91-1.94 2.8-1.35.58.38.3 1.45.16 2.43H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.28 17.15c0 .48.39.86.86.86.48 0 .86-.38.86-.86s-.39-.86-.86-.86c-.48 0-.86.38-.86.86z" -}, "1")], 'DirtyLensOutlined'); \ No newline at end of file +}, "1")], 'DirtyLensOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirtyLensRounded.js b/packages/material-ui-icons/lib/DirtyLensRounded.js index 2d48375e5d22db..9ad9328017f51c 100644 --- a/packages/material-ui-icons/lib/DirtyLensRounded.js +++ b/packages/material-ui-icons/lib/DirtyLensRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3.34 11.58c-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33 0 .47-.38.85-.85.85s-.86-.38-.86-.85c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12zm1.48 1.43c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" -}), 'DirtyLensRounded'); \ No newline at end of file +}), 'DirtyLensRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirtyLensSharp.js b/packages/material-ui-icons/lib/DirtyLensSharp.js index d572e89fc01389..59d6a848cc3e12 100644 --- a/packages/material-ui-icons/lib/DirtyLensSharp.js +++ b/packages/material-ui-icons/lib/DirtyLensSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5h-5.17L15 3H9L7.17 5H2v16h20V5zm-5.34 11.58c-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33 0 .47-.38.85-.85.85s-.86-.38-.86-.85c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12zm1.48 1.43c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" -}), 'DirtyLensSharp'); \ No newline at end of file +}), 'DirtyLensSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DirtyLensTwoTone.js b/packages/material-ui-icons/lib/DirtyLensTwoTone.js index 87119785e3773b..836022e20ac6c9 100644 --- a/packages/material-ui-icons/lib/DirtyLensTwoTone.js +++ b/packages/material-ui-icons/lib/DirtyLensTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.12 5H9.88L8.05 7H4v12h7.27c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33H20V7h-4.05l-1.83-2zM19 17.15c0 .48-.38.86-.86.86-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7.02c-.22-.84-.52-1.76-.13-2.33.81-1.12 2.67 1.77 3.81-.09.77-1.57-1.58-1.29-1.64-2.12-.05-.84 3.68.17 3.04-1.66-.61-1.73-2.42.48-2.76-.53-.58-1.74 4.7-1.68 2.85-4.01-1.76-2.22-2.47 2.85-4.41 2.33-1.34-.36-1.01-2.88-2.65-2.44-1.88.51 1.03 2.2 0 2.86-.96.63-1.72-.92-2.51-1.19-.2-.07-.69-.05-.91.19-.78.86.28 1.16.25 1.91-.02.75-1.59.49-1.51 1.49.12 1.6 2.18.45 2.4 1.24.55 1.98-1.89 2.15-.5 3.27 1.53.71 1.91-1.94 2.8-1.35.58.38.3 1.45.16 2.43H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.28 17.15c0 .48.39.86.86.86.48 0 .86-.38.86-.86s-.39-.86-.86-.86c-.48 0-.86.38-.86.86z" -}, "2")], 'DirtyLensTwoTone'); \ No newline at end of file +}, "2")], 'DirtyLensTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DisabledByDefault.js b/packages/material-ui-icons/lib/DisabledByDefault.js index 66da918b0c61d5..2ab9a98e4501f5 100644 --- a/packages/material-ui-icons/lib/DisabledByDefault.js +++ b/packages/material-ui-icons/lib/DisabledByDefault.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" -}), 'DisabledByDefault'); \ No newline at end of file +}), 'DisabledByDefault'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DisabledByDefaultOutlined.js b/packages/material-ui-icons/lib/DisabledByDefaultOutlined.js index 569719206fc26d..e4c1814be80570 100644 --- a/packages/material-ui-icons/lib/DisabledByDefaultOutlined.js +++ b/packages/material-ui-icons/lib/DisabledByDefaultOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h14v14zM3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" -}), 'DisabledByDefaultOutlined'); \ No newline at end of file +}), 'DisabledByDefaultOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DisabledByDefaultRounded.js b/packages/material-ui-icons/lib/DisabledByDefaultRounded.js index 481a6decdf6112..358134120f5c44 100644 --- a/packages/material-ui-icons/lib/DisabledByDefaultRounded.js +++ b/packages/material-ui-icons/lib/DisabledByDefaultRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm13.3 11.29c-.39.39-1.02.39-1.41 0L12 13.41 9.11 16.3c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 7.7 9.11a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l2.89-2.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.89 2.88c.38.39.38 1.03 0 1.41z" -}), 'DisabledByDefaultRounded'); \ No newline at end of file +}), 'DisabledByDefaultRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DisabledByDefaultSharp.js b/packages/material-ui-icons/lib/DisabledByDefaultSharp.js index d8aa8937262ffd..a868f2bd29bca6 100644 --- a/packages/material-ui-icons/lib/DisabledByDefaultSharp.js +++ b/packages/material-ui-icons/lib/DisabledByDefaultSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" -}), 'DisabledByDefaultSharp'); \ No newline at end of file +}), 'DisabledByDefaultSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DisabledByDefaultTwoTone.js b/packages/material-ui-icons/lib/DisabledByDefaultTwoTone.js index 1ddac43f2f089d..10ab9369804f30 100644 --- a/packages/material-ui-icons/lib/DisabledByDefaultTwoTone.js +++ b/packages/material-ui-icons/lib/DisabledByDefaultTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm12 10.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h14v14zM3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" -}, "1")], 'DisabledByDefaultTwoTone'); \ No newline at end of file +}, "1")], 'DisabledByDefaultTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiscFull.js b/packages/material-ui-icons/lib/DiscFull.js index 0fd2fd31cd6b25..62dc890a64e3de 100644 --- a/packages/material-ui-icons/lib/DiscFull.js +++ b/packages/material-ui-icons/lib/DiscFull.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'DiscFull'); \ No newline at end of file +}), 'DiscFull'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiscFullOutlined.js b/packages/material-ui-icons/lib/DiscFullOutlined.js index c1a0f5aff531d3..e9d140fdf23365 100644 --- a/packages/material-ui-icons/lib/DiscFullOutlined.js +++ b/packages/material-ui-icons/lib/DiscFullOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h2v5h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm10-4h2v2h-2zm-10-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DiscFullOutlined'); \ No newline at end of file +}), 'DiscFullOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiscFullRounded.js b/packages/material-ui-icons/lib/DiscFullRounded.js index f0882261ec9eba..b24548b4dd75c6 100644 --- a/packages/material-ui-icons/lib/DiscFullRounded.js +++ b/packages/material-ui-icons/lib/DiscFullRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 16h2v-2h-2v2zm0-8v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'DiscFullRounded'); \ No newline at end of file +}), 'DiscFullRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiscFullSharp.js b/packages/material-ui-icons/lib/DiscFullSharp.js index 0d1199696834cd..db3a1d2f9adafe 100644 --- a/packages/material-ui-icons/lib/DiscFullSharp.js +++ b/packages/material-ui-icons/lib/DiscFullSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'DiscFullSharp'); \ No newline at end of file +}), 'DiscFullSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DiscFullTwoTone.js b/packages/material-ui-icons/lib/DiscFullTwoTone.js index 5e8c2bcabdbeb4..eb23c2d7bef61d 100644 --- a/packages/material-ui-icons/lib/DiscFullTwoTone.js +++ b/packages/material-ui-icons/lib/DiscFullTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 14h2v2h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM20 7h2v5h-2zm-10 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}, "1")], 'DiscFullTwoTone'); \ No newline at end of file +}, "1")], 'DiscFullTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dns.js b/packages/material-ui-icons/lib/Dns.js index a27d6edf47ac35..4a7e4d7fab40ce 100644 --- a/packages/material-ui-icons/lib/Dns.js +++ b/packages/material-ui-icons/lib/Dns.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'Dns'); \ No newline at end of file +}), 'Dns'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DnsOutlined.js b/packages/material-ui-icons/lib/DnsOutlined.js index 1e5a07fe753ca1..0f0c5188412221 100644 --- a/packages/material-ui-icons/lib/DnsOutlined.js +++ b/packages/material-ui-icons/lib/DnsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 15v4H5v-4h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 18.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM19 5v4H5V5h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 8.5c-.82 0-1.5-.67-1.5-1.5S6.18 5.5 7 5.5s1.5.68 1.5 1.5S7.83 8.5 7 8.5z" -}), 'DnsOutlined'); \ No newline at end of file +}), 'DnsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DnsRounded.js b/packages/material-ui-icons/lib/DnsRounded.js index d77ab4986af07d..54a64e9906d283 100644 --- a/packages/material-ui-icons/lib/DnsRounded.js +++ b/packages/material-ui-icons/lib/DnsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM19 3H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'DnsRounded'); \ No newline at end of file +}), 'DnsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DnsSharp.js b/packages/material-ui-icons/lib/DnsSharp.js index 02ade259e4d1ca..a923b0176fb38b 100644 --- a/packages/material-ui-icons/lib/DnsSharp.js +++ b/packages/material-ui-icons/lib/DnsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 13H3v8h18v-8zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM21 3H3v8h18V3zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'DnsSharp'); \ No newline at end of file +}), 'DnsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DnsTwoTone.js b/packages/material-ui-icons/lib/DnsTwoTone.js index 3a6554b3f2835b..4a7c9468e2f6e1 100644 --- a/packages/material-ui-icons/lib/DnsTwoTone.js +++ b/packages/material-ui-icons/lib/DnsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9h14V5H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5S7.83 8.5 7 8.5 5.5 7.83 5.5 7 6.17 5.5 7 5.5zM5 19h14v-4H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H5v-4h14v4zm-12-.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H5V5h14v4zM7 8.5c.83 0 1.5-.67 1.5-1.5S7.83 5.5 7 5.5 5.5 6.17 5.5 7 6.17 8.5 7 8.5z" -}, "1")], 'DnsTwoTone'); \ No newline at end of file +}, "1")], 'DnsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturb.js b/packages/material-ui-icons/lib/DoDisturb.js index d21451ad34fb2c..cef17e0a3cae4f 100644 --- a/packages/material-ui-icons/lib/DoDisturb.js +++ b/packages/material-ui-icons/lib/DoDisturb.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoDisturb'); \ No newline at end of file +}), 'DoDisturb'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbAlt.js b/packages/material-ui-icons/lib/DoDisturbAlt.js index 26ee4a6bf975af..6d83f0130655ff 100644 --- a/packages/material-ui-icons/lib/DoDisturbAlt.js +++ b/packages/material-ui-icons/lib/DoDisturbAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoDisturbAlt'); \ No newline at end of file +}), 'DoDisturbAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbAltOutlined.js b/packages/material-ui-icons/lib/DoDisturbAltOutlined.js index d4b6eafb69ca30..c6e6f0fdfabfe2 100644 --- a/packages/material-ui-icons/lib/DoDisturbAltOutlined.js +++ b/packages/material-ui-icons/lib/DoDisturbAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoDisturbAltOutlined'); \ No newline at end of file +}), 'DoDisturbAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbAltRounded.js b/packages/material-ui-icons/lib/DoDisturbAltRounded.js index a24fb51184e970..734f2a7062ba09 100644 --- a/packages/material-ui-icons/lib/DoDisturbAltRounded.js +++ b/packages/material-ui-icons/lib/DoDisturbAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoDisturbAltRounded'); \ No newline at end of file +}), 'DoDisturbAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbAltSharp.js b/packages/material-ui-icons/lib/DoDisturbAltSharp.js index 601bcc32588be7..26130c2b5487d9 100644 --- a/packages/material-ui-icons/lib/DoDisturbAltSharp.js +++ b/packages/material-ui-icons/lib/DoDisturbAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoDisturbAltSharp'); \ No newline at end of file +}), 'DoDisturbAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbAltTwoTone.js b/packages/material-ui-icons/lib/DoDisturbAltTwoTone.js index 2626d2894339ce..4aba99e829b9f6 100644 --- a/packages/material-ui-icons/lib/DoDisturbAltTwoTone.js +++ b/packages/material-ui-icons/lib/DoDisturbAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoDisturbAltTwoTone'); \ No newline at end of file +}), 'DoDisturbAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOff.js b/packages/material-ui-icons/lib/DoDisturbOff.js index 3a0f2b58fc9bbc..bde5145e5d7162 100644 --- a/packages/material-ui-icons/lib/DoDisturbOff.js +++ b/packages/material-ui-icons/lib/DoDisturbOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v2h-1.17l4.51 4.51C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zM7 11h1.17l2 2H7v-2z" -}), 'DoDisturbOff'); \ No newline at end of file +}), 'DoDisturbOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOffOutlined.js b/packages/material-ui-icons/lib/DoDisturbOffOutlined.js index 9e976cc23b2b1f..62d3340f509285 100644 --- a/packages/material-ui-icons/lib/DoDisturbOffOutlined.js +++ b/packages/material-ui-icons/lib/DoDisturbOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z" -}), 'DoDisturbOffOutlined'); \ No newline at end of file +}), 'DoDisturbOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOffRounded.js b/packages/material-ui-icons/lib/DoDisturbOffRounded.js index 49463be7d2d909..186095b5b8c53c 100644 --- a/packages/material-ui-icons/lib/DoDisturbOffRounded.js +++ b/packages/material-ui-icons/lib/DoDisturbOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v2h-.88l4.33 4.33C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55L14.12 11H17zm4.17 9.88L3.12 2.83a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.07 2.07C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78l2.07 2.07c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM7 13v-2h1.46l2 2H7z" -}), 'DoDisturbOffRounded'); \ No newline at end of file +}), 'DoDisturbOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOffSharp.js b/packages/material-ui-icons/lib/DoDisturbOffSharp.js index 4f672e2c912e44..f4f007c5615671 100644 --- a/packages/material-ui-icons/lib/DoDisturbOffSharp.js +++ b/packages/material-ui-icons/lib/DoDisturbOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v2h-.88l4.33 4.33C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55L14.12 11H17zM2.41 2.13 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM7 13v-2h1.46l2 2H7z" -}), 'DoDisturbOffSharp'); \ No newline at end of file +}), 'DoDisturbOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOffTwoTone.js b/packages/material-ui-icons/lib/DoDisturbOffTwoTone.js index 8a7302a1626f90..d80faf62c6203f 100644 --- a/packages/material-ui-icons/lib/DoDisturbOffTwoTone.js +++ b/packages/material-ui-icons/lib/DoDisturbOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-1.41 0-2.73.37-3.88 1.01l6 5.99H17v2h-.88L19 15.88c.63-1.15 1-2.47 1-3.88 0-4.41-3.59-8-8-8zm0 16c1.56 0 3-.45 4.23-1.23L10.46 13H7v-2h1.46L5.23 7.77C4.45 9 4 10.44 4 12c0 4.41 3.59 8 8 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z" -}, "1")], 'DoDisturbOffTwoTone'); \ No newline at end of file +}, "1")], 'DoDisturbOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOn.js b/packages/material-ui-icons/lib/DoDisturbOn.js index 184137e1b057b2..c9b529f320fac2 100644 --- a/packages/material-ui-icons/lib/DoDisturbOn.js +++ b/packages/material-ui-icons/lib/DoDisturbOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" -}), 'DoDisturbOn'); \ No newline at end of file +}), 'DoDisturbOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOnOutlined.js b/packages/material-ui-icons/lib/DoDisturbOnOutlined.js index e5f53f3f7cc155..2b6724a1ae0584 100644 --- a/packages/material-ui-icons/lib/DoDisturbOnOutlined.js +++ b/packages/material-ui-icons/lib/DoDisturbOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z" -}), 'DoDisturbOnOutlined'); \ No newline at end of file +}), 'DoDisturbOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOnRounded.js b/packages/material-ui-icons/lib/DoDisturbOnRounded.js index 602b2cd062fa9e..12ae912c944f7c 100644 --- a/packages/material-ui-icons/lib/DoDisturbOnRounded.js +++ b/packages/material-ui-icons/lib/DoDisturbOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'DoDisturbOnRounded'); \ No newline at end of file +}), 'DoDisturbOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOnSharp.js b/packages/material-ui-icons/lib/DoDisturbOnSharp.js index 86a12d4b0824e1..5909983a4a880a 100644 --- a/packages/material-ui-icons/lib/DoDisturbOnSharp.js +++ b/packages/material-ui-icons/lib/DoDisturbOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" -}), 'DoDisturbOnSharp'); \ No newline at end of file +}), 'DoDisturbOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOnTwoTone.js b/packages/material-ui-icons/lib/DoDisturbOnTwoTone.js index 0607da4093a494..a2cbedb05d6a47 100644 --- a/packages/material-ui-icons/lib/DoDisturbOnTwoTone.js +++ b/packages/material-ui-icons/lib/DoDisturbOnTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z" -}, "1")], 'DoDisturbOnTwoTone'); \ No newline at end of file +}, "1")], 'DoDisturbOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbOutlined.js b/packages/material-ui-icons/lib/DoDisturbOutlined.js index c9bfd7ff78dd91..6fa9f2b086f714 100644 --- a/packages/material-ui-icons/lib/DoDisturbOutlined.js +++ b/packages/material-ui-icons/lib/DoDisturbOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoDisturbOutlined'); \ No newline at end of file +}), 'DoDisturbOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbRounded.js b/packages/material-ui-icons/lib/DoDisturbRounded.js index 662fb237c256f1..b8523b2ecc63e0 100644 --- a/packages/material-ui-icons/lib/DoDisturbRounded.js +++ b/packages/material-ui-icons/lib/DoDisturbRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoDisturbRounded'); \ No newline at end of file +}), 'DoDisturbRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbSharp.js b/packages/material-ui-icons/lib/DoDisturbSharp.js index fd2feb8cbe0542..0f80ce0cd9b9aa 100644 --- a/packages/material-ui-icons/lib/DoDisturbSharp.js +++ b/packages/material-ui-icons/lib/DoDisturbSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoDisturbSharp'); \ No newline at end of file +}), 'DoDisturbSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoDisturbTwoTone.js b/packages/material-ui-icons/lib/DoDisturbTwoTone.js index 401a1f00c30d88..60aa11b7c45ead 100644 --- a/packages/material-ui-icons/lib/DoDisturbTwoTone.js +++ b/packages/material-ui-icons/lib/DoDisturbTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoDisturbTwoTone'); \ No newline at end of file +}), 'DoDisturbTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturb.js b/packages/material-ui-icons/lib/DoNotDisturb.js index 9a3b15441cfb33..70c7a81cf818cd 100644 --- a/packages/material-ui-icons/lib/DoNotDisturb.js +++ b/packages/material-ui-icons/lib/DoNotDisturb.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoNotDisturb'); \ No newline at end of file +}), 'DoNotDisturb'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbAlt.js b/packages/material-ui-icons/lib/DoNotDisturbAlt.js index adfb2b3b6b599f..c65b744a06bff2 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbAlt.js +++ b/packages/material-ui-icons/lib/DoNotDisturbAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoNotDisturbAlt'); \ No newline at end of file +}), 'DoNotDisturbAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbAltOutlined.js b/packages/material-ui-icons/lib/DoNotDisturbAltOutlined.js index fee5eab777fabc..0b0c3cb3e155b9 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbAltOutlined.js +++ b/packages/material-ui-icons/lib/DoNotDisturbAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoNotDisturbAltOutlined'); \ No newline at end of file +}), 'DoNotDisturbAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbAltRounded.js b/packages/material-ui-icons/lib/DoNotDisturbAltRounded.js index b6c6c7c7915d33..225f47064c509d 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbAltRounded.js +++ b/packages/material-ui-icons/lib/DoNotDisturbAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoNotDisturbAltRounded'); \ No newline at end of file +}), 'DoNotDisturbAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbAltSharp.js b/packages/material-ui-icons/lib/DoNotDisturbAltSharp.js index 5efe72bd7763a1..79bef696425b97 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbAltSharp.js +++ b/packages/material-ui-icons/lib/DoNotDisturbAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoNotDisturbAltSharp'); \ No newline at end of file +}), 'DoNotDisturbAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbAltTwoTone.js b/packages/material-ui-icons/lib/DoNotDisturbAltTwoTone.js index a552a1c8318469..30800d045662b1 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbAltTwoTone.js +++ b/packages/material-ui-icons/lib/DoNotDisturbAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" -}), 'DoNotDisturbAltTwoTone'); \ No newline at end of file +}), 'DoNotDisturbAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOff.js b/packages/material-ui-icons/lib/DoNotDisturbOff.js index 9523018395d395..f9c7de534994b9 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOff.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v2h-1.46l4.68 4.68C21.34 16.07 22 14.11 22 12c0-5.52-4.48-10-10-10-2.11 0-4.07.66-5.68 1.78L13.54 11H17zM2.27 2.27 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.27-1.27L11 11 2.27 2.27zM7 13v-2h1.46l2 2H7z" -}), 'DoNotDisturbOff'); \ No newline at end of file +}), 'DoNotDisturbOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOffOutlined.js b/packages/material-ui-icons/lib/DoNotDisturbOffOutlined.js index 7d38091c0a5099..e0664e99e498b4 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOffOutlined.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOffOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.94 5.12C9.14 4.41 10.52 4 12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.46zM2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06L8.17 11H7v2h3.17l5.88 5.88C14.86 19.59 13.48 20 12 20z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.83 11 2 2H17v-2z" -}, "1")], 'DoNotDisturbOffOutlined'); \ No newline at end of file +}, "1")], 'DoNotDisturbOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOffRounded.js b/packages/material-ui-icons/lib/DoNotDisturbOffRounded.js index f3c216dc889806..9fb87e43669609 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOffRounded.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v2h-1.17l4.51 4.51C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM2.1 4.93l1.56 1.56c-1.37 2.07-2 4.68-1.48 7.45.75 3.95 3.92 7.13 7.88 7.88 2.77.52 5.38-.1 7.45-1.48l1.56 1.56c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42zM7 11h1.17l2 2H7v-2z" -}), 'DoNotDisturbOffRounded'); \ No newline at end of file +}), 'DoNotDisturbOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOffSharp.js b/packages/material-ui-icons/lib/DoNotDisturbOffSharp.js index 8832dbbfb9af1f..f47ef05ac92240 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOffSharp.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11v2h-1.17l4.51 4.51C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zM7 11h1.17l2 2H7v-2z" -}), 'DoNotDisturbOffSharp'); \ No newline at end of file +}), 'DoNotDisturbOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOffTwoTone.js b/packages/material-ui-icons/lib/DoNotDisturbOffTwoTone.js index 93febb02e592a7..92e62a17065d95 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOffTwoTone.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOffTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13v-2h1.17L5.12 7.94C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12L10.17 13H7zm5-9c-1.48 0-2.86.41-4.06 1.12L13.83 11H17v2h-1.17l3.06 3.06c.7-1.2 1.11-2.58 1.11-4.06 0-4.41-3.59-8-8-8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm5 9v-2h-3.17l2 2H17zM1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zm3.73 3.72L8.17 11H7v2h3.17l5.88 5.88C14.86 19.59 13.48 20 12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z" -}, "1")], 'DoNotDisturbOffTwoTone'); \ No newline at end of file +}, "1")], 'DoNotDisturbOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOn.js b/packages/material-ui-icons/lib/DoNotDisturbOn.js index efc783777188e8..257f23f2477226 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOn.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" -}), 'DoNotDisturbOn'); \ No newline at end of file +}), 'DoNotDisturbOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnOutlined.js b/packages/material-ui-icons/lib/DoNotDisturbOnOutlined.js index 26d5021e80b914..3a51f1e76783d0 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnOutlined.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'DoNotDisturbOnOutlined'); \ No newline at end of file +}), 'DoNotDisturbOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnRounded.js b/packages/material-ui-icons/lib/DoNotDisturbOnRounded.js index 5e5c556ee4c816..6c69789751cd90 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnRounded.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'DoNotDisturbOnRounded'); \ No newline at end of file +}), 'DoNotDisturbOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnSharp.js b/packages/material-ui-icons/lib/DoNotDisturbOnSharp.js index e92b9653fa0361..9b7eafd330b9ae 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnSharp.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" -}), 'DoNotDisturbOnSharp'); \ No newline at end of file +}), 'DoNotDisturbOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilence.js b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilence.js index 8f9c783907cfa4..fef0f71be94ece 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilence.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilence.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" -}), 'DoNotDisturbOnTotalSilence'); \ No newline at end of file +}), 'DoNotDisturbOnTotalSilence'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceOutlined.js b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceOutlined.js index 98b187477dcafd..e8b217c36a1803 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceOutlined.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" -}), 'DoNotDisturbOnTotalSilenceOutlined'); \ No newline at end of file +}), 'DoNotDisturbOnTotalSilenceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceRounded.js b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceRounded.js index 8f16bd9d13e7fe..b154ed5d9da45c 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceRounded.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm2 7h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'DoNotDisturbOnTotalSilenceRounded'); \ No newline at end of file +}), 'DoNotDisturbOnTotalSilenceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceSharp.js b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceSharp.js index 8f29a6e48811b2..2561fe6ec397e6 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceSharp.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" -}), 'DoNotDisturbOnTotalSilenceSharp'); \ No newline at end of file +}), 'DoNotDisturbOnTotalSilenceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceTwoTone.js b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceTwoTone.js index cc5db368292948..ef870bbd9d6bdb 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceTwoTone.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnTotalSilenceTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" -}), 'DoNotDisturbOnTotalSilenceTwoTone'); \ No newline at end of file +}), 'DoNotDisturbOnTotalSilenceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOnTwoTone.js b/packages/material-ui-icons/lib/DoNotDisturbOnTwoTone.js index 0e9470caf03344..fb429c69567f7b 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOnTwoTone.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOnTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h10v2H7z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "2")], 'DoNotDisturbOnTwoTone'); \ No newline at end of file +}, "2")], 'DoNotDisturbOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbOutlined.js b/packages/material-ui-icons/lib/DoNotDisturbOutlined.js index 36e6d62efafd5b..87c3b5eedc334f 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbOutlined.js +++ b/packages/material-ui-icons/lib/DoNotDisturbOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoNotDisturbOutlined'); \ No newline at end of file +}), 'DoNotDisturbOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbRounded.js b/packages/material-ui-icons/lib/DoNotDisturbRounded.js index d25ad46493f9e8..fc34f83b4700c3 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbRounded.js +++ b/packages/material-ui-icons/lib/DoNotDisturbRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoNotDisturbRounded'); \ No newline at end of file +}), 'DoNotDisturbRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbSharp.js b/packages/material-ui-icons/lib/DoNotDisturbSharp.js index efc9f2d90097e9..1c1323be7424fb 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbSharp.js +++ b/packages/material-ui-icons/lib/DoNotDisturbSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoNotDisturbSharp'); \ No newline at end of file +}), 'DoNotDisturbSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotDisturbTwoTone.js b/packages/material-ui-icons/lib/DoNotDisturbTwoTone.js index e3d82581805e20..5673f8edd03caa 100644 --- a/packages/material-ui-icons/lib/DoNotDisturbTwoTone.js +++ b/packages/material-ui-icons/lib/DoNotDisturbTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'DoNotDisturbTwoTone'); \ No newline at end of file +}), 'DoNotDisturbTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotStep.js b/packages/material-ui-icons/lib/DoNotStep.js index 7396e6156e6e13..46ddd0ef1e57fa 100644 --- a/packages/material-ui-icons/lib/DoNotStep.js +++ b/packages/material-ui-icons/lib/DoNotStep.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1.39 4.22 7.9 7.9c.18.2.18.5-.01.7-.1.1-.23.15-.35.15s-.26-.05-.35-.15L6.87 11.1c-.11.4-.26.78-.45 1.12l1.4 1.4c.2.2.2.51 0 .71-.1.1-.23.15-.35.15s-.26-.05-.35-.15l-1.27-1.27c-.24.29-.5.56-.77.8l1.28 1.28c.2.2.2.51 0 .71-.1.1-.23.15-.36.15s-.26-.05-.35-.15l-1.38-1.38c-.69.46-1.39.79-1.97 1.02-.78.31-1.3 1.04-1.3 1.88V20h9.5l3.33-3.33 5.94 5.94 1.41-1.41L2.81 2.81 1.39 4.22zm17.12 11.46-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm2.37-6.6-4.48 4.48-7.1-7.09L13.8 2l7.08 7.08z" -}), 'DoNotStep'); \ No newline at end of file +}), 'DoNotStep'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotStepOutlined.js b/packages/material-ui-icons/lib/DoNotStepOutlined.js index dcf0ece9d8f4df..43092f96d308cb 100644 --- a/packages/material-ui-icons/lib/DoNotStepOutlined.js +++ b/packages/material-ui-icons/lib/DoNotStepOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.51 15.68-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm-3.53-3.53 3.07-3.07-4.25-4.26-3.08 3.07L9.3 6.47 13.8 2l7.08 7.08-4.48 4.48-1.42-1.41zm6.2 9.05-1.41 1.41-5.94-5.94L10.5 20H1v-2.63c0-.84.52-1.57 1.3-1.88.58-.23 1.28-.56 1.97-1.02l1.38 1.38c.09.1.22.15.35.15s.26-.05.36-.15c.2-.2.2-.51 0-.71l-1.28-1.28c.27-.24.53-.51.77-.8l1.27 1.27c.09.1.23.15.35.15s.25-.05.35-.15c.2-.2.2-.51 0-.71l-1.4-1.4c.19-.34.34-.72.45-1.12l1.71 1.72c.09.1.23.15.35.15s.25-.05.35-.15c.19-.2.19-.5.01-.7l-7.9-7.9 1.42-1.41L21.18 21.2zm-8.76-5.94-1.67-1.68-3.33 3.32c-.78.78-2.05.78-2.83-.01l-.19-.17-.47.24c-.29.14-.59.27-.89.39l-.01.65h6.64l2.75-2.74z" -}), 'DoNotStepOutlined'); \ No newline at end of file +}), 'DoNotStepOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotStepRounded.js b/packages/material-ui-icons/lib/DoNotStepRounded.js index 00273ba8dec89e..9d5dc7d3098c6f 100644 --- a/packages/material-ui-icons/lib/DoNotStepRounded.js +++ b/packages/material-ui-icons/lib/DoNotStepRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.1 3.51c-.39.39-.39 1.02 0 1.41l7.19 7.19c.18.2.18.5-.01.7-.1.1-.23.15-.35.15s-.26-.05-.35-.15L6.87 11.1c-.11.4-.26.78-.45 1.12l1.4 1.4c.2.2.2.51 0 .71-.1.1-.23.15-.35.15s-.26-.05-.35-.15l-1.27-1.27c-.24.29-.5.56-.77.8l1.28 1.28c.2.2.2.51 0 .71-.1.1-.23.15-.36.15s-.26-.05-.35-.15l-1.38-1.38c-.71.47-1.43.81-2.02 1.04-.76.3-1.25 1.04-1.25 1.86V18c0 1.1.9 2 2 2h6.67c.53 0 1.04-.21 1.41-.59l2.74-2.74 5.23 5.23c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0zm16.41 12.17-1.41-1.41 4.48-4.48c.78.78.78 2.05 0 2.83l-3.07 3.06zm2.37-6.6-4.48 4.48-7.1-7.09 3.09-3.07c.78-.78 2.04-.77 2.82 0l5.67 5.68z" -}), 'DoNotStepRounded'); \ No newline at end of file +}), 'DoNotStepRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotStepSharp.js b/packages/material-ui-icons/lib/DoNotStepSharp.js index 5cb50fde93d7be..0a4844c8a478c8 100644 --- a/packages/material-ui-icons/lib/DoNotStepSharp.js +++ b/packages/material-ui-icons/lib/DoNotStepSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1.39 4.22 8.24 8.24-.69.72-2.07-2.08c-.11.4-.26.78-.45 1.12l1.75 1.75-.69.72-1.63-1.63c-.24.29-.5.56-.77.8l1.63 1.63-.7.72-1.74-1.74c-1.44.96-2.93 1.35-3.27 1.45V20h9.5l3.33-3.33 5.94 5.94 1.41-1.41L2.81 2.81 1.39 4.22zm17.12 11.46-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm2.37-6.6-4.48 4.48-7.1-7.09L13.8 2l7.08 7.08z" -}), 'DoNotStepSharp'); \ No newline at end of file +}), 'DoNotStepSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotStepTwoTone.js b/packages/material-ui-icons/lib/DoNotStepTwoTone.js index d8c7eb9f616f0e..ccec2063a96b26 100644 --- a/packages/material-ui-icons/lib/DoNotStepTwoTone.js +++ b/packages/material-ui-icons/lib/DoNotStepTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.98 12.15 3.07-3.07-4.25-4.26-3.08 3.07 4.26 4.26zm-2.56 3.11-1.67-1.68-3.33 3.32c-.78.78-2.05.78-2.83-.01l-.19-.17-.47.24c-.29.14-.59.27-.89.39l-.01.65h6.64l2.75-2.74z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.51 15.68-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm-3.53-3.53 3.07-3.07-4.25-4.26-3.08 3.07L9.3 6.47 13.8 2l7.08 7.08-4.48 4.48-1.42-1.41zm6.2 9.05-1.41 1.41-5.94-5.94L10.5 20H1v-2.63c0-.84.52-1.57 1.3-1.88.58-.23 1.28-.56 1.97-1.02l1.38 1.38c.09.1.22.15.35.15s.26-.05.36-.15c.2-.2.2-.51 0-.71l-1.28-1.28c.27-.24.53-.51.77-.8l1.27 1.27c.09.1.23.15.35.15s.25-.05.35-.15c.2-.2.2-.51 0-.71l-1.4-1.4c.19-.34.34-.72.45-1.12l1.71 1.72c.09.1.23.15.35.15s.25-.05.35-.15c.19-.2.19-.5.01-.7l-7.9-7.9 1.42-1.41L21.18 21.2zm-8.76-5.94-1.67-1.68-3.33 3.32c-.78.78-2.05.78-2.83-.01l-.19-.17-.47.24c-.29.14-.59.27-.89.39l-.01.65h6.64l2.75-2.74z" -}, "1")], 'DoNotStepTwoTone'); \ No newline at end of file +}, "1")], 'DoNotStepTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotTouch.js b/packages/material-ui-icons/lib/DoNotTouch.js index 38f5ab29c249b4..92f51389b52dbc 100644 --- a/packages/material-ui-icons/lib/DoNotTouch.js +++ b/packages/material-ui-icons/lib/DoNotTouch.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 10.17-2.5-2.5V2.25c0-.69.56-1.25 1.25-1.25S13 1.56 13 2.25v7.92zm7 2.58v-7.5C20 4.56 19.44 4 18.75 4s-1.25.56-1.25 1.25V11h-1V3.25c0-.69-.56-1.25-1.25-1.25S14 2.56 14 3.25v7.92l6 6v-4.42zM9.5 4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67V4.25zm3.5 5.92-2.5-2.5V2.25c0-.69.56-1.25 1.25-1.25S13 1.56 13 2.25v7.92zm7 2.58v-7.5C20 4.56 19.44 4 18.75 4s-1.25.56-1.25 1.25V11h-1V3.25c0-.69-.56-1.25-1.25-1.25S14 2.56 14 3.25v7.92l6 6v-4.42zM9.5 4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67V4.25zm11.69 16.94L2.81 2.81 1.39 4.22l5.63 5.63L7 9.83v4.3c-1.11-.64-2.58-1.47-2.6-1.48-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26-.04.01-1.16 1.11-1.16 1.11l6.8 7.18c.57.6 1.35.94 2.18.94H17c.62 0 1.18-.19 1.65-.52l-.02-.02 1.15 1.15 1.41-1.42z" -}), 'DoNotTouch'); \ No newline at end of file +}), 'DoNotTouch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotTouchOutlined.js b/packages/material-ui-icons/lib/DoNotTouchOutlined.js index 0c5dec7724ee3d..79f366502eddf8 100644 --- a/packages/material-ui-icons/lib/DoNotTouchOutlined.js +++ b/packages/material-ui-icons/lib/DoNotTouchOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22 7 9.83v4.3l-2.6-1.48c-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26L2 13.88l6.8 7.18c.57.6 1.35.94 2.18.94H17c.62 0 1.18-.19 1.66-.52l1.12 1.12 1.41-1.41L2.81 2.81zM17 20h-6c-.39 0-.64-.23-.75-.36L6.87 16H9v-4.17l8.14 8.14c-.05.01-.09.03-.14.03zm-3.17-9H14V3.25c0-.69.56-1.25 1.25-1.25s1.25.56 1.25 1.25V11h1V5.25c0-.69.56-1.25 1.25-1.25S20 4.56 20 5.25v11.92l-2-2V13h-2.17l-2-2zm-.83-.83V2.25C13 1.56 12.44 1 11.75 1s-1.25.56-1.25 1.25v5.42l2.5 2.5zm-3.5-3.5V4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67z" -}), 'DoNotTouchOutlined'); \ No newline at end of file +}), 'DoNotTouchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotTouchRounded.js b/packages/material-ui-icons/lib/DoNotTouchRounded.js index 12b4a8398f4ef0..dce38f67bf3de7 100644 --- a/packages/material-ui-icons/lib/DoNotTouchRounded.js +++ b/packages/material-ui-icons/lib/DoNotTouchRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 10.17-2.5-2.5V2.25c0-.69.56-1.25 1.25-1.25S13 1.56 13 2.25v7.92zm7-4.85c0-.65-.47-1.25-1.12-1.32-.75-.08-1.38.51-1.38 1.24v5.25c0 .28-.22.5-.5.5s-.5-.22-.5-.5V3.31c0-.65-.47-1.25-1.12-1.32-.75-.06-1.38.53-1.38 1.26v7.92l6 6V5.32zM9.5 4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67V4.25zM17 22c.62 0 1.18-.19 1.65-.52l-.02-.02.44.44c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.92 4.92L7 9.83v4.3l-2.6-1.48c-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26L2 13.88l6.8 7.18c.57.6 1.35.94 2.18.94H17z" -}), 'DoNotTouchRounded'); \ No newline at end of file +}), 'DoNotTouchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotTouchSharp.js b/packages/material-ui-icons/lib/DoNotTouchSharp.js index 26c23ad280d98b..87bdfa599b2ba0 100644 --- a/packages/material-ui-icons/lib/DoNotTouchSharp.js +++ b/packages/material-ui-icons/lib/DoNotTouchSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 10.17-2.5-2.5V1H13v9.17zM20 4h-2.5v7h-1V2H14v9.17l6 6V4zM9.5 3H7.01v1.18L9.5 6.67V3zm11.69 18.19L2.81 2.81 1.39 4.22 7 9.83v4.3l-3.32-1.9L2 13.88 9.68 22h9.54l.56.61 1.41-1.42z" -}), 'DoNotTouchSharp'); \ No newline at end of file +}), 'DoNotTouchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoNotTouchTwoTone.js b/packages/material-ui-icons/lib/DoNotTouchTwoTone.js index 83900346052819..7da0745a539346 100644 --- a/packages/material-ui-icons/lib/DoNotTouchTwoTone.js +++ b/packages/material-ui-icons/lib/DoNotTouchTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 15.17V13h-2.17L18 15.17zm-9-3.34 8.14 8.14c-.05.01-.09.03-.14.03h-6c-.39 0-.64-.23-.75-.36L6.87 16H9v-4.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22 7 9.83v4.3l-2.6-1.48c-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26L2 13.88l6.8 7.18c.57.6 1.35.94 2.18.94H17c.62 0 1.18-.19 1.66-.52l1.12 1.12 1.41-1.41L2.81 2.81zM17 20h-6c-.39 0-.64-.23-.75-.36L6.87 16H9v-4.17l8.14 8.14c-.05.01-.09.03-.14.03zm-3.17-9H14V3.25c0-.69.56-1.25 1.25-1.25s1.25.56 1.25 1.25V11h1V5.25c0-.69.56-1.25 1.25-1.25S20 4.56 20 5.25v11.92l-2-2V13h-2.17l-2-2zm-.83-.83V2.25C13 1.56 12.44 1 11.75 1s-1.25.56-1.25 1.25v5.42l2.5 2.5zm-3.5-3.5V4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67z" -}, "1")], 'DoNotTouchTwoTone'); \ No newline at end of file +}, "1")], 'DoNotTouchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dock.js b/packages/material-ui-icons/lib/Dock.js index 393f7a9d8eaa68..16dae56462539c 100644 --- a/packages/material-ui-icons/lib/Dock.js +++ b/packages/material-ui-icons/lib/Dock.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" -}), 'Dock'); \ No newline at end of file +}), 'Dock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DockOutlined.js b/packages/material-ui-icons/lib/DockOutlined.js index 1f8ac0eef0ab6a..a7ff8e83a0b0b6 100644 --- a/packages/material-ui-icons/lib/DockOutlined.js +++ b/packages/material-ui-icons/lib/DockOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" -}), 'DockOutlined'); \ No newline at end of file +}), 'DockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DockRounded.js b/packages/material-ui-icons/lib/DockRounded.js index b4d211e14edfcc..4c787b023f1a1c 100644 --- a/packages/material-ui-icons/lib/DockRounded.js +++ b/packages/material-ui-icons/lib/DockRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 23h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm7-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" -}), 'DockRounded'); \ No newline at end of file +}), 'DockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DockSharp.js b/packages/material-ui-icons/lib/DockSharp.js index 3801e1ed9bf85c..17b41d3bde1706 100644 --- a/packages/material-ui-icons/lib/DockSharp.js +++ b/packages/material-ui-icons/lib/DockSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 23h8v-2H8v2zM18 1.01 6 1v18h12V1.01zM16 15H8V5h8v10z" -}), 'DockSharp'); \ No newline at end of file +}), 'DockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DockTwoTone.js b/packages/material-ui-icons/lib/DockTwoTone.js index f54128f50d964d..be64d78d504a23 100644 --- a/packages/material-ui-icons/lib/DockTwoTone.js +++ b/packages/material-ui-icons/lib/DockTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5h8v10H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 21h8v2H8zm8-19.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" -}, "1")], 'DockTwoTone'); \ No newline at end of file +}, "1")], 'DockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DocumentScanner.js b/packages/material-ui-icons/lib/DocumentScanner.js index a79cdd6ff60e9a..9dc8912cbe83ba 100644 --- a/packages/material-ui-icons/lib/DocumentScanner.js +++ b/packages/material-ui-icons/lib/DocumentScanner.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zm-1 0c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM15 8H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" -}), 'DocumentScanner'); \ No newline at end of file +}), 'DocumentScanner'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DocumentScannerOutlined.js b/packages/material-ui-icons/lib/DocumentScannerOutlined.js index 5865c6b0ba9a4f..79f6d467c425f0 100644 --- a/packages/material-ui-icons/lib/DocumentScannerOutlined.js +++ b/packages/material-ui-icons/lib/DocumentScannerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM17 6H7v12h10V6zm2 12c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM15 8H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" -}), 'DocumentScannerOutlined'); \ No newline at end of file +}), 'DocumentScannerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DocumentScannerRounded.js b/packages/material-ui-icons/lib/DocumentScannerRounded.js index af5da07562cdce..1bf1296e9ab0a2 100644 --- a/packages/material-ui-icons/lib/DocumentScannerRounded.js +++ b/packages/material-ui-icons/lib/DocumentScannerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1H4v2c0 .55-.45 1-1 1zm14-4c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1zM3 18c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1H4v-2c0-.55-.45-1-1-1zm14 4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1zm2-4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM9 9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zm0 3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zm0 3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1z" -}), 'DocumentScannerRounded'); \ No newline at end of file +}), 'DocumentScannerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DocumentScannerSharp.js b/packages/material-ui-icons/lib/DocumentScannerSharp.js index ffbe3adf21ab40..f0726f214c8738 100644 --- a/packages/material-ui-icons/lib/DocumentScannerSharp.js +++ b/packages/material-ui-icons/lib/DocumentScannerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM19 4v16H5V4h14zm-4 4H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" -}), 'DocumentScannerSharp'); \ No newline at end of file +}), 'DocumentScannerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DocumentScannerTwoTone.js b/packages/material-ui-icons/lib/DocumentScannerTwoTone.js index 8c502bd33126fc..3e1e6451142e3e 100644 --- a/packages/material-ui-icons/lib/DocumentScannerTwoTone.js +++ b/packages/material-ui-icons/lib/DocumentScannerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 6v12h10V6H7zm8 10H9v-2h6v2zm0-3H9v-2h6v2zm0-3H9V8h6v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM17 6H7v12h10V6zm2 12c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM15 8H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" -}, "1")], 'DocumentScannerTwoTone'); \ No newline at end of file +}, "1")], 'DocumentScannerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Domain.js b/packages/material-ui-icons/lib/Domain.js index cfddf59e3a1b79..2ca358b0827fce 100644 --- a/packages/material-ui-icons/lib/Domain.js +++ b/packages/material-ui-icons/lib/Domain.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'Domain'); \ No newline at end of file +}), 'Domain'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainDisabled.js b/packages/material-ui-icons/lib/DomainDisabled.js index a17d7bf90667df..c739de7d663468 100644 --- a/packages/material-ui-icons/lib/DomainDisabled.js +++ b/packages/material-ui-icons/lib/DomainDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5h2v2h-.9L12 9.9V9h8v8.9l2 2V7H12V3H5.1L8 5.9zm8 6h2v2h-2zM1.3 1.8.1 3.1 2 5v16h16l3 3 1.3-1.3-21-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm4 8H8v-2h2v2zm0-4H8v-2h2v2zm2 4v-2h2l2 2h-4z" -}), 'DomainDisabled'); \ No newline at end of file +}), 'DomainDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainDisabledOutlined.js b/packages/material-ui-icons/lib/DomainDisabledOutlined.js index ed8caae0f3393e..4d005b83e199a2 100644 --- a/packages/material-ui-icons/lib/DomainDisabledOutlined.js +++ b/packages/material-ui-icons/lib/DomainDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.69 0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" -}), 'DomainDisabledOutlined'); \ No newline at end of file +}), 'DomainDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainDisabledRounded.js b/packages/material-ui-icons/lib/DomainDisabledRounded.js index 97939f3f48b3bd..0bb06bb8d0ceb6 100644 --- a/packages/material-ui-icons/lib/DomainDisabledRounded.js +++ b/packages/material-ui-icons/lib/DomainDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M.71 2.39c-.39.39-.39 1.02 0 1.41L2 5.1V19c0 1.1.9 2 2 2h13.9l2.29 2.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.39a.9959.9959 0 0 0-1.41 0zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h7c.55 0 1 .45 1 1v7.45l2 2V9c0-1.1-.9-2-2-2h-8V5c0-1.1-.9-2-2-2H5.55L8 5.45V5zm8 6h2v2h-2z" -}), 'DomainDisabledRounded'); \ No newline at end of file +}), 'DomainDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainDisabledSharp.js b/packages/material-ui-icons/lib/DomainDisabledSharp.js index 4aea5ce4960872..30c101a3e958c9 100644 --- a/packages/material-ui-icons/lib/DomainDisabledSharp.js +++ b/packages/material-ui-icons/lib/DomainDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.69 0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" -}), 'DomainDisabledSharp'); \ No newline at end of file +}), 'DomainDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainDisabledTwoTone.js b/packages/material-ui-icons/lib/DomainDisabledTwoTone.js index 240cd127e97ac9..4a5e2f3d928488 100644 --- a/packages/material-ui-icons/lib/DomainDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/DomainDisabledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.69 0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9v.45l8 8V9h-8zm6 4h-2v-2h2v2z", opacity: ".3" -}, "1")], 'DomainDisabledTwoTone'); \ No newline at end of file +}, "1")], 'DomainDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainOutlined.js b/packages/material-ui-icons/lib/DomainOutlined.js index e2a653a4d7703d..6bdcac5163d49f 100644 --- a/packages/material-ui-icons/lib/DomainOutlined.js +++ b/packages/material-ui-icons/lib/DomainOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'DomainOutlined'); \ No newline at end of file +}), 'DomainOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainRounded.js b/packages/material-ui-icons/lib/DomainRounded.js index 16b87a88b8c949..ab2873890c8540 100644 --- a/packages/material-ui-icons/lib/DomainRounded.js +++ b/packages/material-ui-icons/lib/DomainRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'DomainRounded'); \ No newline at end of file +}), 'DomainRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainSharp.js b/packages/material-ui-icons/lib/DomainSharp.js index 4e30e434f9de04..62ed3a74f6d1d3 100644 --- a/packages/material-ui-icons/lib/DomainSharp.js +++ b/packages/material-ui-icons/lib/DomainSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" -}), 'DomainSharp'); \ No newline at end of file +}), 'DomainSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainTwoTone.js b/packages/material-ui-icons/lib/DomainTwoTone.js index 8a1e99a782b256..acf3e7b1f5c90e 100644 --- a/packages/material-ui-icons/lib/DomainTwoTone.js +++ b/packages/material-ui-icons/lib/DomainTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-4-8h2v2h-2zm0 4h2v2h-2z" -}, "1")], 'DomainTwoTone'); \ No newline at end of file +}, "1")], 'DomainTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainVerification.js b/packages/material-ui-icons/lib/DomainVerification.js index 9db69a3a4213d4..610aabf7b57a52 100644 --- a/packages/material-ui-icons/lib/DomainVerification.js +++ b/packages/material-ui-icons/lib/DomainVerification.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" -}, "1")], 'DomainVerification'); \ No newline at end of file +}, "1")], 'DomainVerification'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainVerificationOutlined.js b/packages/material-ui-icons/lib/DomainVerificationOutlined.js index 02fd59a7eb59bd..ae054fba94caa3 100644 --- a/packages/material-ui-icons/lib/DomainVerificationOutlined.js +++ b/packages/material-ui-icons/lib/DomainVerificationOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" -}, "1")], 'DomainVerificationOutlined'); \ No newline at end of file +}, "1")], 'DomainVerificationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainVerificationRounded.js b/packages/material-ui-icons/lib/DomainVerificationRounded.js index f5fe4a5b4c1563..4ae3f9343e4678 100644 --- a/packages/material-ui-icons/lib/DomainVerificationRounded.js +++ b/packages/material-ui-icons/lib/DomainVerificationRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.23 15.83c.39.39 1.02.39 1.41 0l4.24-4.24c.39-.39.39-1.02 0-1.42a.9959.9959 0 0 0-1.41 0l-3.54 3.53-1.41-1.41c-.39-.39-1.02-.39-1.42 0s-.39 1.02 0 1.41l2.13 2.13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 13c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V8h14v9z" -}, "1")], 'DomainVerificationRounded'); \ No newline at end of file +}, "1")], 'DomainVerificationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainVerificationSharp.js b/packages/material-ui-icons/lib/DomainVerificationSharp.js index cde97906f53830..a4cc325750b177 100644 --- a/packages/material-ui-icons/lib/DomainVerificationSharp.js +++ b/packages/material-ui-icons/lib/DomainVerificationSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4v16h18V4H3zm16 14H5V8h14v10z" -}, "1")], 'DomainVerificationSharp'); \ No newline at end of file +}, "1")], 'DomainVerificationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DomainVerificationTwoTone.js b/packages/material-ui-icons/lib/DomainVerificationTwoTone.js index cbade573f4cdb0..383000f13994f6 100644 --- a/packages/material-ui-icons/lib/DomainVerificationTwoTone.js +++ b/packages/material-ui-icons/lib/DomainVerificationTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h14V8H5v10zm3.82-6.42 2.12 2.12 4.24-4.24 1.41 1.41-5.66 5.66L7.4 13l1.42-1.42z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" -}, "2")], 'DomainVerificationTwoTone'); \ No newline at end of file +}, "2")], 'DomainVerificationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Done.js b/packages/material-ui-icons/lib/Done.js index d036e0bac36d3a..725a4f6e59ff21 100644 --- a/packages/material-ui-icons/lib/Done.js +++ b/packages/material-ui-icons/lib/Done.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" -}), 'Done'); \ No newline at end of file +}), 'Done'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneAll.js b/packages/material-ui-icons/lib/DoneAll.js index 8b73edb9877964..f4d4a567436305 100644 --- a/packages/material-ui-icons/lib/DoneAll.js +++ b/packages/material-ui-icons/lib/DoneAll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" -}), 'DoneAll'); \ No newline at end of file +}), 'DoneAll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneAllOutlined.js b/packages/material-ui-icons/lib/DoneAllOutlined.js index 37b15e848ca60d..e685ec669d2034 100644 --- a/packages/material-ui-icons/lib/DoneAllOutlined.js +++ b/packages/material-ui-icons/lib/DoneAllOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" -}), 'DoneAllOutlined'); \ No newline at end of file +}), 'DoneAllOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneAllRounded.js b/packages/material-ui-icons/lib/DoneAllRounded.js index afe44d91e903a1..8b8bf84eb0842a 100644 --- a/packages/material-ui-icons/lib/DoneAllRounded.js +++ b/packages/material-ui-icons/lib/DoneAllRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.3 6.3a.9959.9959 0 0 0-1.41 0l-5.64 5.64 1.41 1.41L17.3 7.7c.38-.38.38-1.02 0-1.4zm4.24-.01-9.88 9.88-3.48-3.47a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L22.95 7.71c.39-.39.39-1.02 0-1.41h-.01c-.38-.4-1.01-.4-1.4-.01zM1.12 14.12 5.3 18.3c.39.39 1.02.39 1.41 0l.7-.7-4.88-4.9a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42z" -}), 'DoneAllRounded'); \ No newline at end of file +}), 'DoneAllRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneAllSharp.js b/packages/material-ui-icons/lib/DoneAllSharp.js index e62685325c666b..723b364d50cfb2 100644 --- a/packages/material-ui-icons/lib/DoneAllSharp.js +++ b/packages/material-ui-icons/lib/DoneAllSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" -}), 'DoneAllSharp'); \ No newline at end of file +}), 'DoneAllSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneAllTwoTone.js b/packages/material-ui-icons/lib/DoneAllTwoTone.js index c1e1a528d6ea15..b49fef7463e751 100644 --- a/packages/material-ui-icons/lib/DoneAllTwoTone.js +++ b/packages/material-ui-icons/lib/DoneAllTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" -}), 'DoneAllTwoTone'); \ No newline at end of file +}), 'DoneAllTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneOutline.js b/packages/material-ui-icons/lib/DoneOutline.js index e88ccbfd8535d1..a9243864b8ddd2 100644 --- a/packages/material-ui-icons/lib/DoneOutline.js +++ b/packages/material-ui-icons/lib/DoneOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 5.03 1.4 1.4L8.43 19.17l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 5.03m0-2.83L8.43 13.54l-4.2-4.2L0 13.57 8.43 22 24 6.43 19.77 2.2z" -}), 'DoneOutline'); \ No newline at end of file +}), 'DoneOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneOutlineOutlined.js b/packages/material-ui-icons/lib/DoneOutlineOutlined.js index 5768905ce546d5..56f4d748ca4202 100644 --- a/packages/material-ui-icons/lib/DoneOutlineOutlined.js +++ b/packages/material-ui-icons/lib/DoneOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 4.93 1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" -}), 'DoneOutlineOutlined'); \ No newline at end of file +}), 'DoneOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneOutlineRounded.js b/packages/material-ui-icons/lib/DoneOutlineRounded.js index 5e6cec9e1b6839..2cd54ed43c0768 100644 --- a/packages/material-ui-icons/lib/DoneOutlineRounded.js +++ b/packages/material-ui-icons/lib/DoneOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.47 5.63c.39.39.39 1.01 0 1.4L9.13 18.37c-.39.39-1.01.39-1.4 0l-4.2-4.2a.9839.9839 0 0 1 0-1.4c.39-.39 1.01-.39 1.4 0l3.5 3.5L19.07 5.63c.39-.39 1.01-.39 1.4 0zm-2.11-2.12-9.93 9.93-2.79-2.79c-.78-.78-2.05-.78-2.83 0l-1.4 1.4c-.78.78-.78 2.05 0 2.83l5.6 5.6c.78.78 2.05.78 2.83 0L22.59 7.74c.78-.78.78-2.05 0-2.83l-1.4-1.4c-.79-.78-2.05-.78-2.83 0z" -}), 'DoneOutlineRounded'); \ No newline at end of file +}), 'DoneOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneOutlineSharp.js b/packages/material-ui-icons/lib/DoneOutlineSharp.js index 685ad2f1c5dcd8..ef3b1987fd9b22 100644 --- a/packages/material-ui-icons/lib/DoneOutlineSharp.js +++ b/packages/material-ui-icons/lib/DoneOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 4.93 1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" -}), 'DoneOutlineSharp'); \ No newline at end of file +}), 'DoneOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneOutlineTwoTone.js b/packages/material-ui-icons/lib/DoneOutlineTwoTone.js index f6f4d9aa9e8c5e..5f490892ffd51d 100644 --- a/packages/material-ui-icons/lib/DoneOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/DoneOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 4.93 1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" -}), 'DoneOutlineTwoTone'); \ No newline at end of file +}), 'DoneOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneOutlined.js b/packages/material-ui-icons/lib/DoneOutlined.js index 38dd402210d471..de52bd081ccd8d 100644 --- a/packages/material-ui-icons/lib/DoneOutlined.js +++ b/packages/material-ui-icons/lib/DoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" -}), 'DoneOutlined'); \ No newline at end of file +}), 'DoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneRounded.js b/packages/material-ui-icons/lib/DoneRounded.js index bd7151d5de0471..aec4e5ecd6d741 100644 --- a/packages/material-ui-icons/lib/DoneRounded.js +++ b/packages/material-ui-icons/lib/DoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 16.2-3.5-3.5a.9839.9839 0 0 0-1.4 0c-.39.39-.39 1.01 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7c.39-.39.39-1.01 0-1.4a.9839.9839 0 0 0-1.4 0L9 16.2z" -}), 'DoneRounded'); \ No newline at end of file +}), 'DoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneSharp.js b/packages/material-ui-icons/lib/DoneSharp.js index e41d1309583ad4..e62a10ebb0c749 100644 --- a/packages/material-ui-icons/lib/DoneSharp.js +++ b/packages/material-ui-icons/lib/DoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" -}), 'DoneSharp'); \ No newline at end of file +}), 'DoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoneTwoTone.js b/packages/material-ui-icons/lib/DoneTwoTone.js index 31edc1312114ec..20796a21e98413 100644 --- a/packages/material-ui-icons/lib/DoneTwoTone.js +++ b/packages/material-ui-icons/lib/DoneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" -}), 'DoneTwoTone'); \ No newline at end of file +}), 'DoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutLarge.js b/packages/material-ui-icons/lib/DonutLarge.js index 225f29ec2be9d7..d21fd3076246eb 100644 --- a/packages/material-ui-icons/lib/DonutLarge.js +++ b/packages/material-ui-icons/lib/DonutLarge.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5.08V2c-5 .5-9 4.81-9 10s4 9.5 9 10v-3.08c-3-.48-6-3.4-6-6.92s3-6.44 6-6.92zM18.97 11H22c-.47-5-4-8.53-9-9v3.08C16 5.51 18.54 8 18.97 11zM13 18.92V22c5-.47 8.53-4 9-9h-3.03c-.43 3-2.97 5.49-5.97 5.92z" -}), 'DonutLarge'); \ No newline at end of file +}), 'DonutLarge'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutLargeOutlined.js b/packages/material-ui-icons/lib/DonutLargeOutlined.js index 9aa1b0634e4c35..423be735e02983 100644 --- a/packages/material-ui-icons/lib/DonutLargeOutlined.js +++ b/packages/material-ui-icons/lib/DonutLargeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" -}), 'DonutLargeOutlined'); \ No newline at end of file +}), 'DonutLargeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutLargeRounded.js b/packages/material-ui-icons/lib/DonutLargeRounded.js index a867e9e98d467b..ae351c75d7a590 100644 --- a/packages/material-ui-icons/lib/DonutLargeRounded.js +++ b/packages/material-ui-icons/lib/DonutLargeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.07 5.32C16.26 6 18 7.74 18.68 9.93c.19.63.76 1.07 1.41 1.07h.04c1 0 1.72-.96 1.43-1.91-.97-3.18-3.48-5.69-6.66-6.66-.94-.29-1.9.43-1.9 1.43v.04c0 .66.44 1.23 1.07 1.42zm4.61 8.75c-.68 2.2-2.42 3.93-4.61 4.61-.63.19-1.07.76-1.07 1.41v.04c0 1 .96 1.72 1.91 1.43 3.18-.97 5.69-3.48 6.66-6.66.29-.95-.43-1.91-1.42-1.91h-.05c-.66.01-1.23.45-1.42 1.08zM11 20.11c0-.67-.45-1.24-1.09-1.44C7.07 17.78 5 15.13 5 12s2.07-5.78 4.91-6.67c.64-.2 1.09-.77 1.09-1.44v-.01c0-1-.97-1.74-1.93-1.44C4.98 3.69 2 7.5 2 12c0 4.5 2.98 8.31 7.07 9.56.96.3 1.93-.44 1.93-1.45z" -}), 'DonutLargeRounded'); \ No newline at end of file +}), 'DonutLargeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutLargeSharp.js b/packages/material-ui-icons/lib/DonutLargeSharp.js index 51b9040ffc1cd7..6164acdc7ff4e2 100644 --- a/packages/material-ui-icons/lib/DonutLargeSharp.js +++ b/packages/material-ui-icons/lib/DonutLargeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" -}), 'DonutLargeSharp'); \ No newline at end of file +}), 'DonutLargeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutLargeTwoTone.js b/packages/material-ui-icons/lib/DonutLargeTwoTone.js index c3bf1aaa99027e..03d9842df0831f 100644 --- a/packages/material-ui-icons/lib/DonutLargeTwoTone.js +++ b/packages/material-ui-icons/lib/DonutLargeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" -}), 'DonutLargeTwoTone'); \ No newline at end of file +}), 'DonutLargeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutSmall.js b/packages/material-ui-icons/lib/DonutSmall.js index b98f9be577add7..3012fe850dc8d1 100644 --- a/packages/material-ui-icons/lib/DonutSmall.js +++ b/packages/material-ui-icons/lib/DonutSmall.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9.16V2c-5 .5-9 4.79-9 10s4 9.5 9 10v-7.16c-1-.41-2-1.52-2-2.84s1-2.43 2-2.84zM14.86 11H22c-.48-4.75-4-8.53-9-9v7.16c1 .3 1.52.98 1.86 1.84zM13 14.84V22c5-.47 8.52-4.25 9-9h-7.14c-.34.86-.86 1.54-1.86 1.84z" -}), 'DonutSmall'); \ No newline at end of file +}), 'DonutSmall'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutSmallOutlined.js b/packages/material-ui-icons/lib/DonutSmallOutlined.js index a67468484be484..ed61e08e02d0e2 100644 --- a/packages/material-ui-icons/lib/DonutSmallOutlined.js +++ b/packages/material-ui-icons/lib/DonutSmallOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z" -}), 'DonutSmallOutlined'); \ No newline at end of file +}), 'DonutSmallOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutSmallRounded.js b/packages/material-ui-icons/lib/DonutSmallRounded.js index df6a471d50889b..1fe472d6b0d082 100644 --- a/packages/material-ui-icons/lib/DonutSmallRounded.js +++ b/packages/material-ui-icons/lib/DonutSmallRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3.18v17.64c0 .64-.59 1.12-1.21.98C5.32 20.8 2 16.79 2 12s3.32-8.8 7.79-9.8c.62-.14 1.21.34 1.21.98zm2.03 0v6.81c0 .55.45 1 1 1h6.79c.64 0 1.12-.59.98-1.22-.85-3.76-3.8-6.72-7.55-7.57-.63-.14-1.22.34-1.22.98zm0 10.83v6.81c0 .64.59 1.12 1.22.98 3.76-.85 6.71-3.82 7.56-7.58.14-.62-.35-1.22-.98-1.22h-6.79c-.56.01-1.01.46-1.01 1.01z" -}), 'DonutSmallRounded'); \ No newline at end of file +}), 'DonutSmallRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutSmallSharp.js b/packages/material-ui-icons/lib/DonutSmallSharp.js index 49ae0e58e02a23..1ec730b19add7f 100644 --- a/packages/material-ui-icons/lib/DonutSmallSharp.js +++ b/packages/material-ui-icons/lib/DonutSmallSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9.18c.85.3 1.51.97 1.82 1.82h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13zm-2 5.64C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-7.13zM14.82 13c-.3.85-.97 1.51-1.82 1.82v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13z" -}), 'DonutSmallSharp'); \ No newline at end of file +}), 'DonutSmallSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DonutSmallTwoTone.js b/packages/material-ui-icons/lib/DonutSmallTwoTone.js index 63d880ec9d918b..0b6d6d7ce9b92a 100644 --- a/packages/material-ui-icons/lib/DonutSmallTwoTone.js +++ b/packages/material-ui-icons/lib/DonutSmallTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.99 9h3.43C18.6 7 17 5.4 15 4.58v3.43c.37.28.71.62.99.99zM4 12c0 3.35 2.04 6.24 5 7.42v-3.44c-1.23-.93-2-2.4-2-3.99C7 10.4 7.77 8.93 9 8V4.58C6.04 5.76 4 8.65 4 12zm11 3.99v3.43c2-.82 3.6-2.42 4.42-4.42h-3.43c-.28.37-.62.71-.99.99z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z" -}, "1")], 'DonutSmallTwoTone'); \ No newline at end of file +}, "1")], 'DonutSmallTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorBack.js b/packages/material-ui-icons/lib/DoorBack.js index 2b789d814d52a2..aa80c429a48f97 100644 --- a/packages/material-ui-icons/lib/DoorBack.js +++ b/packages/material-ui-icons/lib/DoorBack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-8-6H9v-2h2v2z" -}), 'DoorBack'); \ No newline at end of file +}), 'DoorBack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorBackOutlined.js b/packages/material-ui-icons/lib/DoorBackOutlined.js index 26d13b4608cf59..6cfd3da1d36dbe 100644 --- a/packages/material-ui-icons/lib/DoorBackOutlined.js +++ b/packages/material-ui-icons/lib/DoorBackOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11h2v2H9z" -}, "1")], 'DoorBackOutlined'); \ No newline at end of file +}, "1")], 'DoorBackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorBackRounded.js b/packages/material-ui-icons/lib/DoorBackRounded.js index 018e81b5edac50..cff98f90e123e0 100644 --- a/packages/material-ui-icons/lib/DoorBackRounded.js +++ b/packages/material-ui-icons/lib/DoorBackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19h-1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm-10-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'DoorBackRounded'); \ No newline at end of file +}), 'DoorBackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorBackSharp.js b/packages/material-ui-icons/lib/DoorBackSharp.js index efad5fadda072a..4c9c28a720fc0a 100644 --- a/packages/material-ui-icons/lib/DoorBackSharp.js +++ b/packages/material-ui-icons/lib/DoorBackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V3H5v16H3v2h18v-2h-2zm-8-6H9v-2h2v2z" -}), 'DoorBackSharp'); \ No newline at end of file +}), 'DoorBackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorBackTwoTone.js b/packages/material-ui-icons/lib/DoorBackTwoTone.js index d6dd41160663c5..8f8119dd41b294 100644 --- a/packages/material-ui-icons/lib/DoorBackTwoTone.js +++ b/packages/material-ui-icons/lib/DoorBackTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10V5H7v14zm2-8h2v2H9v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11h2v2H9z" -}, "2")], 'DoorBackTwoTone'); \ No newline at end of file +}, "2")], 'DoorBackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorFront.js b/packages/material-ui-icons/lib/DoorFront.js index 91906156aa021e..f0a8b925ce6064 100644 --- a/packages/material-ui-icons/lib/DoorFront.js +++ b/packages/material-ui-icons/lib/DoorFront.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-4-6h-2v-2h2v2z" -}), 'DoorFront'); \ No newline at end of file +}), 'DoorFront'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorFrontOutlined.js b/packages/material-ui-icons/lib/DoorFrontOutlined.js index 13c5794ac17c3b..c94aee44b0fc03 100644 --- a/packages/material-ui-icons/lib/DoorFrontOutlined.js +++ b/packages/material-ui-icons/lib/DoorFrontOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14zm-4-8h2v2h-2v-2z" -}), 'DoorFrontOutlined'); \ No newline at end of file +}), 'DoorFrontOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorFrontRounded.js b/packages/material-ui-icons/lib/DoorFrontRounded.js index b88c1f42920ed9..e28495786d6898 100644 --- a/packages/material-ui-icons/lib/DoorFrontRounded.js +++ b/packages/material-ui-icons/lib/DoorFrontRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19h-1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm-6-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'DoorFrontRounded'); \ No newline at end of file +}), 'DoorFrontRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorFrontSharp.js b/packages/material-ui-icons/lib/DoorFrontSharp.js index 8c62904a8a43a8..99832718bc73a8 100644 --- a/packages/material-ui-icons/lib/DoorFrontSharp.js +++ b/packages/material-ui-icons/lib/DoorFrontSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V3H5v16H3v2h18v-2h-2zm-4-6h-2v-2h2v2z" -}), 'DoorFrontSharp'); \ No newline at end of file +}), 'DoorFrontSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorFrontTwoTone.js b/packages/material-ui-icons/lib/DoorFrontTwoTone.js index 99790ca3ca37ac..3f64a9c3aadb6c 100644 --- a/packages/material-ui-icons/lib/DoorFrontTwoTone.js +++ b/packages/material-ui-icons/lib/DoorFrontTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10V5H7v14zm6-8h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11h2v2h-2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14z" -}, "2")], 'DoorFrontTwoTone'); \ No newline at end of file +}, "2")], 'DoorFrontTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorSliding.js b/packages/material-ui-icons/lib/DoorSliding.js index 07c2bff4e3ee3f..98a2e45026e786 100644 --- a/packages/material-ui-icons/lib/DoorSliding.js +++ b/packages/material-ui-icons/lib/DoorSliding.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19V5c0-1.1-.9-2-2-2h-5.25v16h-1.5V3H6c-1.1 0-2 .9-2 2v14H3v2h18v-2h-1zm-10-6H8v-2h2v2zm6 0h-2v-2h2v2z" -}), 'DoorSliding'); \ No newline at end of file +}), 'DoorSliding'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorSlidingOutlined.js b/packages/material-ui-icons/lib/DoorSlidingOutlined.js index 13c77925207d2c..4cc9401810f81e 100644 --- a/packages/material-ui-icons/lib/DoorSlidingOutlined.js +++ b/packages/material-ui-icons/lib/DoorSlidingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 13H8v-2h2v2zm6-2h-2v2h2v-2zm5 8v2H3v-2h1V5c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v14h1zM11 5H6v14h5V5zm7 0h-5v14h5V5z" -}), 'DoorSlidingOutlined'); \ No newline at end of file +}), 'DoorSlidingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorSlidingRounded.js b/packages/material-ui-icons/lib/DoorSlidingRounded.js index ec6a8fd5b5f121..dea652803b3705 100644 --- a/packages/material-ui-icons/lib/DoorSlidingRounded.js +++ b/packages/material-ui-icons/lib/DoorSlidingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19V5c0-1.1-.9-2-2-2h-5.25v16h-1.5V3H6c-1.1 0-2 .9-2 2v14c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zM9 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'DoorSlidingRounded'); \ No newline at end of file +}), 'DoorSlidingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorSlidingSharp.js b/packages/material-ui-icons/lib/DoorSlidingSharp.js index 4d0904830a483f..d7e8b58d0fa1eb 100644 --- a/packages/material-ui-icons/lib/DoorSlidingSharp.js +++ b/packages/material-ui-icons/lib/DoorSlidingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19V3h-7.25v16h-1.5V3H4v16H3v2h18v-2h-1zm-10-6H8v-2h2v2zm6 0h-2v-2h2v2z" -}), 'DoorSlidingSharp'); \ No newline at end of file +}), 'DoorSlidingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorSlidingTwoTone.js b/packages/material-ui-icons/lib/DoorSlidingTwoTone.js index 88c0e42a20d84d..3b3753899b3beb 100644 --- a/packages/material-ui-icons/lib/DoorSlidingTwoTone.js +++ b/packages/material-ui-icons/lib/DoorSlidingTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 19h5V5h-5v14zm1-8h2v2h-2v-2zm-8 8h5V5H6v14zm2-8h2v2H8v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v14H3v2h18v-2h-1zm-9 0H6V5h5v14zm7 0h-5V5h5v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h2v2H8zm6 0h2v2h-2z" -}, "2")], 'DoorSlidingTwoTone'); \ No newline at end of file +}, "2")], 'DoorSlidingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Doorbell.js b/packages/material-ui-icons/lib/Doorbell.js index 3dfcba0f9726c6..4c65d1acb21d3d 100644 --- a/packages/material-ui-icons/lib/Doorbell.js +++ b/packages/material-ui-icons/lib/Doorbell.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm0 14.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm4-1.5H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-.25c0-.41.34-.75.75-.75s.75.34.75.75v.25c1.44.34 2.25 1.62 2.25 3.16V15h1v1z" -}), 'Doorbell'); \ No newline at end of file +}), 'Doorbell'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorbellOutlined.js b/packages/material-ui-icons/lib/DoorbellOutlined.js index f22946459b9d07..71c201d726ebb5 100644 --- a/packages/material-ui-icons/lib/DoorbellOutlined.js +++ b/packages/material-ui-icons/lib/DoorbellOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16.5h2c0 .55-.45 1-1 1s-1-.45-1-1zm4-1.5v-2.34c0-1.54-.81-2.82-2.25-3.16v-.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v.25C9.82 9.84 9 11.12 9 12.66V15H8v1h8v-1h-1zm-3-9.5L6 10v9h12v-9l-6-4.5M12 3l8 6v12H4V9l8-6z" -}), 'DoorbellOutlined'); \ No newline at end of file +}), 'DoorbellOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorbellRounded.js b/packages/material-ui-icons/lib/DoorbellRounded.js index a0f07e68720acd..dd98e3bd354429 100644 --- a/packages/material-ui-icons/lib/DoorbellRounded.js +++ b/packages/material-ui-icons/lib/DoorbellRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.8 3.9-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zM12 17.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm3.5-1.5h-7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H9v-2.34c0-1.54.82-2.82 2.25-3.16v-.25c0-.41.34-.75.75-.75s.75.34.75.75v.25c1.44.34 2.25 1.62 2.25 3.16V15h.5c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'DoorbellRounded'); \ No newline at end of file +}), 'DoorbellRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorbellSharp.js b/packages/material-ui-icons/lib/DoorbellSharp.js index 164ffb27416c02..aa1b0500cc61f7 100644 --- a/packages/material-ui-icons/lib/DoorbellSharp.js +++ b/packages/material-ui-icons/lib/DoorbellSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm0 14.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm4-1.5H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-1h1.5v1c1.44.34 2.25 1.62 2.25 3.16V15h1v1z" -}), 'DoorbellSharp'); \ No newline at end of file +}), 'DoorbellSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoorbellTwoTone.js b/packages/material-ui-icons/lib/DoorbellTwoTone.js index 9e1a8b5d1a0724..333aad71f6ce80 100644 --- a/packages/material-ui-icons/lib/DoorbellTwoTone.js +++ b/packages/material-ui-icons/lib/DoorbellTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10v9h12v-9l-6-4.5L6 10zm6 7.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm.75-8.25v.25c1.44.34 2.25 1.62 2.25 3.16V15h1v1H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-.25c0-.41.34-.75.75-.75s.75.34.75.75z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm6 16H6v-9l6-4.5 6 4.5v9z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.25 9.25v.25C9.82 9.84 9 11.12 9 12.66V15H8v1h8v-1h-1v-2.34c0-1.54-.81-2.82-2.25-3.16v-.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75zM12 17.5c.55 0 1-.45 1-1h-2c0 .55.45 1 1 1z" -}, "2")], 'DoorbellTwoTone'); \ No newline at end of file +}, "2")], 'DoorbellTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoubleArrow.js b/packages/material-ui-icons/lib/DoubleArrow.js index ad511ee2dfca8b..f6978159c7258c 100644 --- a/packages/material-ui-icons/lib/DoubleArrow.js +++ b/packages/material-ui-icons/lib/DoubleArrow.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5H11l5 7-5 7h4.5l5-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 5H4l5 7-5 7h4.5l5-7z" -}, "1")], 'DoubleArrow'); \ No newline at end of file +}, "1")], 'DoubleArrow'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoubleArrowOutlined.js b/packages/material-ui-icons/lib/DoubleArrowOutlined.js index 349aaaffc290bd..d15fc551b9e9a0 100644 --- a/packages/material-ui-icons/lib/DoubleArrowOutlined.js +++ b/packages/material-ui-icons/lib/DoubleArrowOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5H11l5 7-5 7h4.5l5-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 5H4l5 7-5 7h4.5l5-7z" -}, "1")], 'DoubleArrowOutlined'); \ No newline at end of file +}, "1")], 'DoubleArrowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoubleArrowRounded.js b/packages/material-ui-icons/lib/DoubleArrowRounded.js index 2f2e751ba09923..0940aea84edfd5 100644 --- a/packages/material-ui-icons/lib/DoubleArrowRounded.js +++ b/packages/material-ui-icons/lib/DoubleArrowRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.08 11.42-4.04-5.65c-.34-.48-.89-.77-1.48-.77-1.49 0-2.35 1.68-1.49 2.89L16 12l-2.93 4.11c-.87 1.21 0 2.89 1.49 2.89.59 0 1.15-.29 1.49-.77l4.04-5.65c.24-.35.24-.81-.01-1.16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.08 11.42 9.05 5.77C8.7 5.29 8.15 5 7.56 5 6.07 5 5.2 6.68 6.07 7.89L9 12l-2.93 4.11C5.2 17.32 6.07 19 7.56 19c.59 0 1.15-.29 1.49-.77l4.04-5.65c.24-.35.24-.81-.01-1.16z" -}, "1")], 'DoubleArrowRounded'); \ No newline at end of file +}, "1")], 'DoubleArrowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoubleArrowSharp.js b/packages/material-ui-icons/lib/DoubleArrowSharp.js index 8bbd15d0221e15..a1ae99b738ddbb 100644 --- a/packages/material-ui-icons/lib/DoubleArrowSharp.js +++ b/packages/material-ui-icons/lib/DoubleArrowSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5H11l5 7-5 7h4.5l5-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 5H4l5 7-5 7h4.5l5-7z" -}, "1")], 'DoubleArrowSharp'); \ No newline at end of file +}, "1")], 'DoubleArrowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DoubleArrowTwoTone.js b/packages/material-ui-icons/lib/DoubleArrowTwoTone.js index b3d012fcfed8c7..b8958ec90eea96 100644 --- a/packages/material-ui-icons/lib/DoubleArrowTwoTone.js +++ b/packages/material-ui-icons/lib/DoubleArrowTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 5H11l5 7-5 7h4.5l5-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 5H4l5 7-5 7h4.5l5-7z" -}, "1")], 'DoubleArrowTwoTone'); \ No newline at end of file +}, "1")], 'DoubleArrowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownhillSkiing.js b/packages/material-ui-icons/lib/DownhillSkiing.js index bd8fd2644d10ce..333b6cb496033c 100644 --- a/packages/material-ui-icons/lib/DownhillSkiing.js +++ b/packages/material-ui-icons/lib/DownhillSkiing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" -}), 'DownhillSkiing'); \ No newline at end of file +}), 'DownhillSkiing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownhillSkiingOutlined.js b/packages/material-ui-icons/lib/DownhillSkiingOutlined.js index aceaa772b113b6..235f5818494d2f 100644 --- a/packages/material-ui-icons/lib/DownhillSkiingOutlined.js +++ b/packages/material-ui-icons/lib/DownhillSkiingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" -}), 'DownhillSkiingOutlined'); \ No newline at end of file +}), 'DownhillSkiingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownhillSkiingRounded.js b/packages/material-ui-icons/lib/DownhillSkiingRounded.js index 95f071ede98124..b9786d298a397a 100644 --- a/packages/material-ui-icons/lib/DownhillSkiingRounded.js +++ b/packages/material-ui-icons/lib/DownhillSkiingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.68 0 1.34-.12 1.95-.33.27-.09.57-.02.78.18.39.4.23 1.06-.3 1.24-.76.27-1.58.41-2.43.41-.86 0-1.68-.14-2.45-.41L2.7 17.72c-.39-.14-.59-.57-.45-.95.14-.39.57-.6.96-.45l6.19 2.25 1.72-4.44-3.57-3.73c-.9-.94-.68-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.29-.89c.13-.39.55-.61.94-.48.4.13.61.55.48.95l-.6 1.85c-.17.52-.72.82-1.24.65-2.02-.63-3.64-2.15-4.42-4.1l-2.53 1.45 2.23 2.55c.49.56.63 1.34.36 2.04l-1.78 4.63 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.56z" -}), 'DownhillSkiingRounded'); \ No newline at end of file +}), 'DownhillSkiingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownhillSkiingSharp.js b/packages/material-ui-icons/lib/DownhillSkiingSharp.js index 541ac5b4a18b6f..7d59f6b8ba3e35 100644 --- a/packages/material-ui-icons/lib/DownhillSkiingSharp.js +++ b/packages/material-ui-icons/lib/DownhillSkiingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" -}), 'DownhillSkiingSharp'); \ No newline at end of file +}), 'DownhillSkiingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownhillSkiingTwoTone.js b/packages/material-ui-icons/lib/DownhillSkiingTwoTone.js index 3d7b749588655e..d8007ed2a45dda 100644 --- a/packages/material-ui-icons/lib/DownhillSkiingTwoTone.js +++ b/packages/material-ui-icons/lib/DownhillSkiingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" -}), 'DownhillSkiingTwoTone'); \ No newline at end of file +}), 'DownhillSkiingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Download.js b/packages/material-ui-icons/lib/Download.js index 9d45d8f741e1bc..c9a1fcc2c3efd1 100644 --- a/packages/material-ui-icons/lib/Download.js +++ b/packages/material-ui-icons/lib/Download.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20h14v-2H5v2zM19 9h-4V3H9v6H5l7 7 7-7z" -}), 'Download'); \ No newline at end of file +}), 'Download'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadDone.js b/packages/material-ui-icons/lib/DownloadDone.js index 3218956733ffa2..f91a020c1fc881 100644 --- a/packages/material-ui-icons/lib/DownloadDone.js +++ b/packages/material-ui-icons/lib/DownloadDone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" -}), 'DownloadDone'); \ No newline at end of file +}), 'DownloadDone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadDoneOutlined.js b/packages/material-ui-icons/lib/DownloadDoneOutlined.js index ced66f5ccdb25a..604dba08e197b7 100644 --- a/packages/material-ui-icons/lib/DownloadDoneOutlined.js +++ b/packages/material-ui-icons/lib/DownloadDoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" -}), 'DownloadDoneOutlined'); \ No newline at end of file +}), 'DownloadDoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadDoneRounded.js b/packages/material-ui-icons/lib/DownloadDoneRounded.js index ae5713ff128663..a432f933117f0d 100644 --- a/packages/material-ui-icons/lib/DownloadDoneRounded.js +++ b/packages/material-ui-icons/lib/DownloadDoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 18h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm5.01-4.1c-.78.77-2.04.77-2.82-.01L6 11.7c-.55-.55-.54-1.44.03-1.97.54-.52 1.4-.5 1.92.02L9.6 11.4l6.43-6.43c.54-.54 1.41-.54 1.95 0l.04.04c.54.54.54 1.42-.01 1.96l-7 6.93z" -}), 'DownloadDoneRounded'); \ No newline at end of file +}), 'DownloadDoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadDoneSharp.js b/packages/material-ui-icons/lib/DownloadDoneSharp.js index bc275adfe2630e..676d3021f52b9f 100644 --- a/packages/material-ui-icons/lib/DownloadDoneSharp.js +++ b/packages/material-ui-icons/lib/DownloadDoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" -}), 'DownloadDoneSharp'); \ No newline at end of file +}), 'DownloadDoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadDoneTwoTone.js b/packages/material-ui-icons/lib/DownloadDoneTwoTone.js index f12e58dbdcd8a9..45aed7eb1ce27a 100644 --- a/packages/material-ui-icons/lib/DownloadDoneTwoTone.js +++ b/packages/material-ui-icons/lib/DownloadDoneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" -}), 'DownloadDoneTwoTone'); \ No newline at end of file +}), 'DownloadDoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadForOffline.js b/packages/material-ui-icons/lib/DownloadForOffline.js index ea2bed1a11dfa3..dc3143e94e5916 100644 --- a/packages/material-ui-icons/lib/DownloadForOffline.js +++ b/packages/material-ui-icons/lib/DownloadForOffline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z" -}), 'DownloadForOffline'); \ No newline at end of file +}), 'DownloadForOffline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadForOfflineOutlined.js b/packages/material-ui-icons/lib/DownloadForOfflineOutlined.js index a98e15810edc45..2a2a5f14e1f132 100644 --- a/packages/material-ui-icons/lib/DownloadForOfflineOutlined.js +++ b/packages/material-ui-icons/lib/DownloadForOfflineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm2.59-11.41L16 10l-4 4-4-4 1.41-1.41L11 10.17V6h2v4.17l1.59-1.58zM17 17H7v-2h10v2z" -}), 'DownloadForOfflineOutlined'); \ No newline at end of file +}), 'DownloadForOfflineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadForOfflineRounded.js b/packages/material-ui-icons/lib/DownloadForOfflineRounded.js index 8697d328fdde2d..aa268498190c59 100644 --- a/packages/material-ui-icons/lib/DownloadForOfflineRounded.js +++ b/packages/material-ui-icons/lib/DownloadForOfflineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V7c0-.55.45-1 1-1s1 .45 1 1v3h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.51.2-.71 0l-2.79-2.79c-.31-.31-.09-.85.36-.85H11zm5 7H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'DownloadForOfflineRounded'); \ No newline at end of file +}), 'DownloadForOfflineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadForOfflineSharp.js b/packages/material-ui-icons/lib/DownloadForOfflineSharp.js index 85a17b033f74da..88a93c2d68d3d8 100644 --- a/packages/material-ui-icons/lib/DownloadForOfflineSharp.js +++ b/packages/material-ui-icons/lib/DownloadForOfflineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z" -}), 'DownloadForOfflineSharp'); \ No newline at end of file +}), 'DownloadForOfflineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadForOfflineTwoTone.js b/packages/material-ui-icons/lib/DownloadForOfflineTwoTone.js index 0f77d510a55808..d65faf7b81431e 100644 --- a/packages/material-ui-icons/lib/DownloadForOfflineTwoTone.js +++ b/packages/material-ui-icons/lib/DownloadForOfflineTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 6V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10h-3V6h-2v4H8l4 4zm-9 5h10v2H7z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "2")], 'DownloadForOfflineTwoTone'); \ No newline at end of file +}, "2")], 'DownloadForOfflineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadOutlined.js b/packages/material-ui-icons/lib/DownloadOutlined.js index 57ef7546a1c719..0d38b423f6c782 100644 --- a/packages/material-ui-icons/lib/DownloadOutlined.js +++ b/packages/material-ui-icons/lib/DownloadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z" -}), 'DownloadOutlined'); \ No newline at end of file +}), 'DownloadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadRounded.js b/packages/material-ui-icons/lib/DownloadRounded.js index 625671a791e325..271baadc143593 100644 --- a/packages/material-ui-icons/lib/DownloadRounded.js +++ b/packages/material-ui-icons/lib/DownloadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" -}), 'DownloadRounded'); \ No newline at end of file +}), 'DownloadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadSharp.js b/packages/material-ui-icons/lib/DownloadSharp.js index 81a1bb8875d7a1..2603e9bec1cbd7 100644 --- a/packages/material-ui-icons/lib/DownloadSharp.js +++ b/packages/material-ui-icons/lib/DownloadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" -}), 'DownloadSharp'); \ No newline at end of file +}), 'DownloadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadTwoTone.js b/packages/material-ui-icons/lib/DownloadTwoTone.js index b396be08e54e41..ad403b9d9a0c0b 100644 --- a/packages/material-ui-icons/lib/DownloadTwoTone.js +++ b/packages/material-ui-icons/lib/DownloadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9V5h-2v6H9.83L12 13.17 14.17 11H13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9V3H9v6H5l7 7 7-7h-4zm-3 4.17L9.83 11H11V5h2v6h1.17L12 13.17zM5 18h14v2H5z" -}, "1")], 'DownloadTwoTone'); \ No newline at end of file +}, "1")], 'DownloadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Downloading.js b/packages/material-ui-icons/lib/Downloading.js index 7a183292b9c62e..e72f0ea07036e1 100644 --- a/packages/material-ui-icons/lib/Downloading.js +++ b/packages/material-ui-icons/lib/Downloading.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zM13 12V7h-2v5H7l5 5 5-5h-4zm-2 7.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" -}), 'Downloading'); \ No newline at end of file +}), 'Downloading'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadingOutlined.js b/packages/material-ui-icons/lib/DownloadingOutlined.js index a0e5e8bfe261c7..52999599e866f3 100644 --- a/packages/material-ui-icons/lib/DownloadingOutlined.js +++ b/packages/material-ui-icons/lib/DownloadingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm2.59-9.34L13 13.17V7h-2v6.17l-2.59-2.59L7 12l5 5 5-5-1.41-1.41zM11 19.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" -}), 'DownloadingOutlined'); \ No newline at end of file +}), 'DownloadingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadingRounded.js b/packages/material-ui-icons/lib/DownloadingRounded.js index 5ee7e19e048f36..923dca7b6ebc8b 100644 --- a/packages/material-ui-icons/lib/DownloadingRounded.js +++ b/packages/material-ui-icons/lib/DownloadingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.33 3.55c-.94-.6-1.99-1.04-3.12-1.3-.62-.14-1.21.34-1.21.98 0 .45.3.87.74.97.91.2 1.77.56 2.53 1.05.39.25.89.17 1.22-.16.45-.45.38-1.2-.16-1.54zM20.77 11c.64 0 1.13-.59.98-1.21-.26-1.12-.7-2.17-1.3-3.12-.34-.54-1.1-.61-1.55-.16-.32.32-.4.83-.16 1.22.49.77.85 1.62 1.05 2.53.11.44.52.74.98.74zm-1.87 6.49c.45.45 1.21.38 1.55-.15.6-.94 1.04-1.99 1.3-3.11.14-.62-.35-1.21-.98-1.21-.45 0-.87.3-.97.74-.2.91-.57 1.76-1.05 2.53-.25.37-.17.88.15 1.2zM13 20.77c0 .64.59 1.13 1.21.98 1.12-.26 2.17-.7 3.11-1.3.54-.34.61-1.1.16-1.55-.32-.32-.83-.4-1.21-.15-.76.49-1.61.85-2.53 1.05-.44.1-.74.51-.74.97zM13 12V8c0-.55-.45-1-1-1s-1 .45-1 1v4H9.41c-.89 0-1.34 1.08-.71 1.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H13zm-2 8.77c0 .64-.59 1.13-1.21.99C5.33 20.75 2 16.77 2 12s3.33-8.75 7.79-9.75c.62-.14 1.21.34 1.21.98 0 .46-.31.87-.76.97C6.67 5 4 8.19 4 12s2.67 7 6.24 7.8c.45.1.76.51.76.97z" -}), 'DownloadingRounded'); \ No newline at end of file +}), 'DownloadingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadingSharp.js b/packages/material-ui-icons/lib/DownloadingSharp.js index 83deb29af9a37e..27ae39e0fae9ca 100644 --- a/packages/material-ui-icons/lib/DownloadingSharp.js +++ b/packages/material-ui-icons/lib/DownloadingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zM13 12V7h-2v5H7l5 5 5-5h-4zm-2 7.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" -}), 'DownloadingSharp'); \ No newline at end of file +}), 'DownloadingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DownloadingTwoTone.js b/packages/material-ui-icons/lib/DownloadingTwoTone.js index 83482b20b2e604..6a249f953df3e5 100644 --- a/packages/material-ui-icons/lib/DownloadingTwoTone.js +++ b/packages/material-ui-icons/lib/DownloadingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zM13 12V7h-2v5H7l5 5 5-5h-4zm-2 7.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" -}), 'DownloadingTwoTone'); \ No newline at end of file +}), 'DownloadingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Drafts.js b/packages/material-ui-icons/lib/Drafts.js index 1fbd0ec1de23b9..4cde93d5eae9f1 100644 --- a/packages/material-ui-icons/lib/Drafts.js +++ b/packages/material-ui-icons/lib/Drafts.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 13 3.74 7.84 12 3l8.26 4.84L12 13z" -}), 'Drafts'); \ No newline at end of file +}), 'Drafts'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DraftsOutlined.js b/packages/material-ui-icons/lib/DraftsOutlined.js index aba58742b4bcb6..e7b405cf719ab7 100644 --- a/packages/material-ui-icons/lib/DraftsOutlined.js +++ b/packages/material-ui-icons/lib/DraftsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-2 0v.01L12 13 4 8l8-4.68L19.99 8zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z" -}), 'DraftsOutlined'); \ No newline at end of file +}), 'DraftsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DraftsRounded.js b/packages/material-ui-icons/lib/DraftsRounded.js index 57d431d9806328..3f3bdc0e447923 100644 --- a/packages/material-ui-icons/lib/DraftsRounded.js +++ b/packages/material-ui-icons/lib/DraftsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 8c0-.72-.37-1.35-.94-1.7l-8.04-4.71c-.62-.37-1.4-.37-2.02 0L2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-11.05 4.34-7.2-4.5 7.25-4.25c.62-.37 1.4-.37 2.02 0l7.25 4.25-7.2 4.5c-.65.4-1.47.4-2.12 0z" -}), 'DraftsRounded'); \ No newline at end of file +}), 'DraftsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DraftsSharp.js b/packages/material-ui-icons/lib/DraftsSharp.js index 133151dbc65781..e9fd5cfb56ce4f 100644 --- a/packages/material-ui-icons/lib/DraftsSharp.js +++ b/packages/material-ui-icons/lib/DraftsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 6.86 12 1 2 6.86V20h20l-.01-13.14zM12 13 3.74 7.84 12 3l8.26 4.84L12 13z" -}), 'DraftsSharp'); \ No newline at end of file +}), 'DraftsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DraftsTwoTone.js b/packages/material-ui-icons/lib/DraftsTwoTone.js index 6195e8a28c6adf..d4d4a30e6c5939 100644 --- a/packages/material-ui-icons/lib/DraftsTwoTone.js +++ b/packages/material-ui-icons/lib/DraftsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 15.36-8-5.02V18h16l-.01-7.63z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 3.32 19.99 8v.01L12 13 4 8l8-4.68zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z" -}, "1")], 'DraftsTwoTone'); \ No newline at end of file +}, "1")], 'DraftsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragHandle.js b/packages/material-ui-icons/lib/DragHandle.js index b74c4466c7b051..7583ad462c3336 100644 --- a/packages/material-ui-icons/lib/DragHandle.js +++ b/packages/material-ui-icons/lib/DragHandle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z" -}), 'DragHandle'); \ No newline at end of file +}), 'DragHandle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragHandleOutlined.js b/packages/material-ui-icons/lib/DragHandleOutlined.js index 4aa95221727323..4922a3da1a619d 100644 --- a/packages/material-ui-icons/lib/DragHandleOutlined.js +++ b/packages/material-ui-icons/lib/DragHandleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z" -}), 'DragHandleOutlined'); \ No newline at end of file +}), 'DragHandleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragHandleRounded.js b/packages/material-ui-icons/lib/DragHandleRounded.js index 1236b99f2b14c8..968750c992b9eb 100644 --- a/packages/material-ui-icons/lib/DragHandleRounded.js +++ b/packages/material-ui-icons/lib/DragHandleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'DragHandleRounded'); \ No newline at end of file +}), 'DragHandleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragHandleSharp.js b/packages/material-ui-icons/lib/DragHandleSharp.js index 9e60af7fda7f2b..32deb5bce03483 100644 --- a/packages/material-ui-icons/lib/DragHandleSharp.js +++ b/packages/material-ui-icons/lib/DragHandleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z" -}), 'DragHandleSharp'); \ No newline at end of file +}), 'DragHandleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragHandleTwoTone.js b/packages/material-ui-icons/lib/DragHandleTwoTone.js index c2fc6e39510c31..320cf35abe2b33 100644 --- a/packages/material-ui-icons/lib/DragHandleTwoTone.js +++ b/packages/material-ui-icons/lib/DragHandleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h16v2H4zm0 4h16v2H4z" -}), 'DragHandleTwoTone'); \ No newline at end of file +}), 'DragHandleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragIndicator.js b/packages/material-ui-icons/lib/DragIndicator.js index 0dc00e1c51433d..65c850faec9791 100644 --- a/packages/material-ui-icons/lib/DragIndicator.js +++ b/packages/material-ui-icons/lib/DragIndicator.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DragIndicator'); \ No newline at end of file +}), 'DragIndicator'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragIndicatorOutlined.js b/packages/material-ui-icons/lib/DragIndicatorOutlined.js index 034f8a26b5e804..78165dc322d76d 100644 --- a/packages/material-ui-icons/lib/DragIndicatorOutlined.js +++ b/packages/material-ui-icons/lib/DragIndicatorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DragIndicatorOutlined'); \ No newline at end of file +}), 'DragIndicatorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragIndicatorRounded.js b/packages/material-ui-icons/lib/DragIndicatorRounded.js index 926666f81301c5..f24e55b61ad06a 100644 --- a/packages/material-ui-icons/lib/DragIndicatorRounded.js +++ b/packages/material-ui-icons/lib/DragIndicatorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DragIndicatorRounded'); \ No newline at end of file +}), 'DragIndicatorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragIndicatorSharp.js b/packages/material-ui-icons/lib/DragIndicatorSharp.js index 16016c45bed8f6..2abb81acd6a026 100644 --- a/packages/material-ui-icons/lib/DragIndicatorSharp.js +++ b/packages/material-ui-icons/lib/DragIndicatorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DragIndicatorSharp'); \ No newline at end of file +}), 'DragIndicatorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DragIndicatorTwoTone.js b/packages/material-ui-icons/lib/DragIndicatorTwoTone.js index ff8b91daa4ba7a..20869f687b6ddb 100644 --- a/packages/material-ui-icons/lib/DragIndicatorTwoTone.js +++ b/packages/material-ui-icons/lib/DragIndicatorTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'DragIndicatorTwoTone'); \ No newline at end of file +}), 'DragIndicatorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveEta.js b/packages/material-ui-icons/lib/DriveEta.js index 7d28876e0155c6..2d36281498ac3a 100644 --- a/packages/material-ui-icons/lib/DriveEta.js +++ b/packages/material-ui-icons/lib/DriveEta.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" -}), 'DriveEta'); \ No newline at end of file +}), 'DriveEta'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveEtaOutlined.js b/packages/material-ui-icons/lib/DriveEtaOutlined.js index 718795fbe81514..c0a21636bcd1a8 100644 --- a/packages/material-ui-icons/lib/DriveEtaOutlined.js +++ b/packages/material-ui-icons/lib/DriveEtaOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "13.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "13.5", r: "1.5" -}, "2")], 'DriveEtaOutlined'); \ No newline at end of file +}, "2")], 'DriveEtaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveEtaRounded.js b/packages/material-ui-icons/lib/DriveEtaRounded.js index c14beaf672297d..6b496474602af4 100644 --- a/packages/material-ui-icons/lib/DriveEtaRounded.js +++ b/packages/material-ui-icons/lib/DriveEtaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 19.33 6 18.5V18h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 10H5z" -}), 'DriveEtaRounded'); \ No newline at end of file +}), 'DriveEtaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveEtaSharp.js b/packages/material-ui-icons/lib/DriveEtaSharp.js index f4373f58b90a58..2be7b4bf3d36f6 100644 --- a/packages/material-ui-icons/lib/DriveEtaSharp.js +++ b/packages/material-ui-icons/lib/DriveEtaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01 18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" -}), 'DriveEtaSharp'); \ No newline at end of file +}), 'DriveEtaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveEtaTwoTone.js b/packages/material-ui-icons/lib/DriveEtaTwoTone.js index 1ee6a8cea33894..45992228776db2 100644 --- a/packages/material-ui-icons/lib/DriveEtaTwoTone.js +++ b/packages/material-ui-icons/lib/DriveEtaTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.12 11-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "13.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "13.5", r: "1.5" -}, "3")], 'DriveEtaTwoTone'); \ No newline at end of file +}, "3")], 'DriveEtaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileMove.js b/packages/material-ui-icons/lib/DriveFileMove.js index fb5bced6bf254f..fefc8cd37c355b 100644 --- a/packages/material-ui-icons/lib/DriveFileMove.js +++ b/packages/material-ui-icons/lib/DriveFileMove.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 12v-3h-4v-4h4V8l5 5-5 5z" -}), 'DriveFileMove'); \ No newline at end of file +}), 'DriveFileMove'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileMoveOutlined.js b/packages/material-ui-icons/lib/DriveFileMoveOutlined.js index b9ce47c6bb2039..d414b4a6feec51 100644 --- a/packages/material-ui-icons/lib/DriveFileMoveOutlined.js +++ b/packages/material-ui-icons/lib/DriveFileMoveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10zm-7.84-6H8v2h4.16l-1.59 1.59L11.99 17 16 13.01 11.99 9l-1.41 1.41L12.16 12z" -}), 'DriveFileMoveOutlined'); \ No newline at end of file +}), 'DriveFileMoveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileMoveRounded.js b/packages/material-ui-icons/lib/DriveFileMoveRounded.js index 33cf41dfcd33b0..e11b5c3a3e91b6 100644 --- a/packages/material-ui-icons/lib/DriveFileMoveRounded.js +++ b/packages/material-ui-icons/lib/DriveFileMoveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 9.79V14H9c-.55 0-1-.45-1-1s.45-1 1-1h3v-1.79c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36z" -}), 'DriveFileMoveRounded'); \ No newline at end of file +}), 'DriveFileMoveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileMoveSharp.js b/packages/material-ui-icons/lib/DriveFileMoveSharp.js index d0a0677e74b20d..f7104aaa83ae4e 100644 --- a/packages/material-ui-icons/lib/DriveFileMoveSharp.js +++ b/packages/material-ui-icons/lib/DriveFileMoveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H12l-2-2H2v16h20V6zM12 17v-3H8v-2h4V9l4 4-4 4z" -}), 'DriveFileMoveSharp'); \ No newline at end of file +}), 'DriveFileMoveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileMoveTwoTone.js b/packages/material-ui-icons/lib/DriveFileMoveTwoTone.js index d9ae3b1e6d7694..7b7b63939c5bed 100644 --- a/packages/material-ui-icons/lib/DriveFileMoveTwoTone.js +++ b/packages/material-ui-icons/lib/DriveFileMoveTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 14h4v3l4-4-4-4v3H8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 7.41 9.17 6H4v12h16V8h-8.83l-.58-.59zM12 9l4 4-4 4v-3H8v-2h4V9z", opacity: ".3" -}, "2")], 'DriveFileMoveTwoTone'); \ No newline at end of file +}, "2")], 'DriveFileMoveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileRenameOutline.js b/packages/material-ui-icons/lib/DriveFileRenameOutline.js index 68293588abc132..5082078a6b7ddd 100644 --- a/packages/material-ui-icons/lib/DriveFileRenameOutline.js +++ b/packages/material-ui-icons/lib/DriveFileRenameOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.41 5.8 17.2 4.59c-.78-.78-2.05-.78-2.83 0l-2.68 2.68L3 15.96V20h4.04l8.74-8.74 2.63-2.63c.79-.78.79-2.05 0-2.83zM6.21 18H5v-1.21l8.66-8.66 1.21 1.21L6.21 18zM11 20l4-4h6v4H11z" -}), 'DriveFileRenameOutline'); \ No newline at end of file +}), 'DriveFileRenameOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileRenameOutlineOutlined.js b/packages/material-ui-icons/lib/DriveFileRenameOutlineOutlined.js index 6641509e26d57a..1ba957efde16ac 100644 --- a/packages/material-ui-icons/lib/DriveFileRenameOutlineOutlined.js +++ b/packages/material-ui-icons/lib/DriveFileRenameOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06-3.75-3.75zM5.92 18H5v-.92l7.06-7.06.92.92L5.92 18zm12.79-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'DriveFileRenameOutlineOutlined'); \ No newline at end of file +}), 'DriveFileRenameOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileRenameOutlineRounded.js b/packages/material-ui-icons/lib/DriveFileRenameOutlineRounded.js index 0fe6881560f048..ab7d6c5b7f87cb 100644 --- a/packages/material-ui-icons/lib/DriveFileRenameOutlineRounded.js +++ b/packages/material-ui-icons/lib/DriveFileRenameOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 16-4 4h8c1.1 0 2-.9 2-2s-.9-2-2-2h-4zm-2.94-8.81-8.77 8.77c-.18.18-.29.44-.29.7V19c0 .55.45 1 1 1h2.34c.27 0 .52-.11.71-.29l8.77-8.77-3.76-3.75zm6.65.85c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'DriveFileRenameOutlineRounded'); \ No newline at end of file +}), 'DriveFileRenameOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileRenameOutlineSharp.js b/packages/material-ui-icons/lib/DriveFileRenameOutlineSharp.js index 86166b7e4d8f1b..31d006c9b9cf8a 100644 --- a/packages/material-ui-icons/lib/DriveFileRenameOutlineSharp.js +++ b/packages/material-ui-icons/lib/DriveFileRenameOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06zm1.072-1.0673 2.5385-2.5386 3.7477 3.7477-2.5385 2.5385z" -}), 'DriveFileRenameOutlineSharp'); \ No newline at end of file +}), 'DriveFileRenameOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFileRenameOutlineTwoTone.js b/packages/material-ui-icons/lib/DriveFileRenameOutlineTwoTone.js index 4292e504dc5e35..9959c04e06fc63 100644 --- a/packages/material-ui-icons/lib/DriveFileRenameOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/DriveFileRenameOutlineTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.06 10.02 5 17.08V18h.92l7.06-7.06z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06-3.75-3.75zM5.92 18H5v-.92l7.06-7.06.92.92L5.92 18zm12.79-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83z" -}, "1")], 'DriveFileRenameOutlineTwoTone'); \ No newline at end of file +}, "1")], 'DriveFileRenameOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFolderUpload.js b/packages/material-ui-icons/lib/DriveFolderUpload.js index 6833a7255b8821..c6da56edfc10c3 100644 --- a/packages/material-ui-icons/lib/DriveFolderUpload.js +++ b/packages/material-ui-icons/lib/DriveFolderUpload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zM8 13.01l1.41 1.41L11 12.84V17h2v-4.16l1.59 1.59L16 13.01 12.01 9 8 13.01z" -}), 'DriveFolderUpload'); \ No newline at end of file +}), 'DriveFolderUpload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFolderUploadOutlined.js b/packages/material-ui-icons/lib/DriveFolderUploadOutlined.js index ec68c401ff06b0..081d3b704565da 100644 --- a/packages/material-ui-icons/lib/DriveFolderUploadOutlined.js +++ b/packages/material-ui-icons/lib/DriveFolderUploadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zM9.41 14.42 11 12.84V17h2v-4.16l1.59 1.59L16 13.01 12.01 9 8 13.01l1.41 1.41z" -}), 'DriveFolderUploadOutlined'); \ No newline at end of file +}), 'DriveFolderUploadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFolderUploadRounded.js b/packages/material-ui-icons/lib/DriveFolderUploadRounded.js index ee096dadf66b46..7f7f766b71887e 100644 --- a/packages/material-ui-icons/lib/DriveFolderUploadRounded.js +++ b/packages/material-ui-icons/lib/DriveFolderUploadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7 7v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H9.21c-.45 0-.67-.54-.35-.85l2.8-2.79c.2-.2.51-.19.71 0l2.79 2.79c.3.31.08.85-.36.85H13z" -}), 'DriveFolderUploadRounded'); \ No newline at end of file +}), 'DriveFolderUploadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFolderUploadSharp.js b/packages/material-ui-icons/lib/DriveFolderUploadSharp.js index 9f529c69646a0d..42956beec64c3f 100644 --- a/packages/material-ui-icons/lib/DriveFolderUploadSharp.js +++ b/packages/material-ui-icons/lib/DriveFolderUploadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H12l-2-2H2v16h20V6zm-9 7v4h-2v-4H8l4.01-4L16 13h-3z" -}), 'DriveFolderUploadSharp'); \ No newline at end of file +}), 'DriveFolderUploadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DriveFolderUploadTwoTone.js b/packages/material-ui-icons/lib/DriveFolderUploadTwoTone.js index 4de3bce6a28753..989e4cc041ec62 100644 --- a/packages/material-ui-icons/lib/DriveFolderUploadTwoTone.js +++ b/packages/material-ui-icons/lib/DriveFolderUploadTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.17 6H4v12h16V8h-8.83l-2-2zM16 13h-3v4h-2v-4H8l4.01-4L16 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13v4h2v-4h3l-3.99-4L8 13z" -}, "2")], 'DriveFolderUploadTwoTone'); \ No newline at end of file +}, "2")], 'DriveFolderUploadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dry.js b/packages/material-ui-icons/lib/Dry.js index f7b580f1c5bdda..b6c1b3a62f4042 100644 --- a/packages/material-ui-icons/lib/Dry.js +++ b/packages/material-ui-icons/lib/Dry.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.65 4.86-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zM9.12 5l-7.18 6.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25S19.44 10 18.75 10H8.86c.64-1.11 1.48-2.58 1.49-2.61.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7C10.22 6.12 9.12 5 9.12 5z" -}), 'Dry'); \ No newline at end of file +}), 'Dry'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryCleaning.js b/packages/material-ui-icons/lib/DryCleaning.js index e3f57c4447f1fe..4389c22961bc8c 100644 --- a/packages/material-ui-icons/lib/DryCleaning.js +++ b/packages/material-ui-icons/lib/DryCleaning.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v6h10v-6h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM18.58 14H17v-1H7v1H5.42c-.23 0-.42-.19-.42-.43 0-.17.1-.32.25-.38l6.75-3 6.75 3c.15.07.25.22.25.39 0 .23-.19.42-.42.42z" -}), 'DryCleaning'); \ No newline at end of file +}), 'DryCleaning'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryCleaningOutlined.js b/packages/material-ui-icons/lib/DryCleaningOutlined.js index 828366d00ab600..c870ac6fd66c6d 100644 --- a/packages/material-ui-icons/lib/DryCleaningOutlined.js +++ b/packages/material-ui-icons/lib/DryCleaningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v6h10v-6h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM15 20H9v-5h6v5zm3.58-6H17v-1H7v1H5.42c-.46 0-.58-.65-.17-.81l6.75-3 6.75 3c.42.19.28.81-.17.81z" -}), 'DryCleaningOutlined'); \ No newline at end of file +}), 'DryCleaningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryCleaningRounded.js b/packages/material-ui-icons/lib/DryCleaningRounded.js index 80c20882343df2..fc4e63f95fe201 100644 --- a/packages/material-ui-icons/lib/DryCleaningRounded.js +++ b/packages/material-ui-icons/lib/DryCleaningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1c.38 0 .72.22.88.53.16.31.51.47.85.47.74 0 1.26-.79.91-1.44-.6-1.1-1.86-1.78-3.24-1.51-1.17.23-2.12 1.2-2.34 2.37-.29 1.56.61 2.93 1.94 3.4v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v4c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-4h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM18.58 14h-1.86c-.35-.6-.98-1-1.72-1H9c-.74 0-1.38.4-1.72 1H5.42c-.46 0-.58-.65-.17-.81l6.75-3 6.75 3c.42.19.28.81-.17.81z" -}), 'DryCleaningRounded'); \ No newline at end of file +}), 'DryCleaningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryCleaningSharp.js b/packages/material-ui-icons/lib/DryCleaningSharp.js index 91054436749ba5..754c120f880499 100644 --- a/packages/material-ui-icons/lib/DryCleaningSharp.js +++ b/packages/material-ui-icons/lib/DryCleaningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 12-8-3.56V6h-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-8 3.56V16h4v6h10v-6h4v-4zm-2 2h-2v-1H7v1H5v-.7l7-3.11 7 3.11v.7z" -}), 'DryCleaningSharp'); \ No newline at end of file +}), 'DryCleaningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryCleaningTwoTone.js b/packages/material-ui-icons/lib/DryCleaningTwoTone.js index 6f389ab5c0852c..d596542a361ecb 100644 --- a/packages/material-ui-icons/lib/DryCleaningTwoTone.js +++ b/packages/material-ui-icons/lib/DryCleaningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15h6v5H9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v6h10v-6h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM15 20H9v-5h6v5zm3.58-6H17v-1H7v1H5.42c-.46 0-.58-.65-.17-.81l6.75-3 6.75 3c.42.19.28.81-.17.81z" -}, "1")], 'DryCleaningTwoTone'); \ No newline at end of file +}, "1")], 'DryCleaningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryOutlined.js b/packages/material-ui-icons/lib/DryOutlined.js index be84e23f85bfe7..edf890750640bd 100644 --- a/packages/material-ui-icons/lib/DryOutlined.js +++ b/packages/material-ui-icons/lib/DryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm5.65-16.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" -}), 'DryOutlined'); \ No newline at end of file +}), 'DryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryRounded.js b/packages/material-ui-icons/lib/DryRounded.js index 27712e957ff805..7906cc73365d88 100644 --- a/packages/material-ui-icons/lib/DryRounded.js +++ b/packages/material-ui-icons/lib/DryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.94 11.79c-.6.57-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.68c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h8.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38h-9.9l1.49-2.61c.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7l-.42-.45c-.38-.39-1.01-.41-1.41-.03l-6.46 6.11zm15.05-3.72c0 .52-.42.93-.93.93-.52 0-.93-.42-.93-.93.03-.67-.22-1.33-.71-1.86l-.07-.06c-.9-.89-1.38-2.03-1.34-3.22-.01-.51.41-.93.92-.93s.93.42.93.93c-.03.67.22 1.33.71 1.86l.07.07c.91.88 1.39 2.02 1.35 3.21zm4.01 0c0 .51-.42.93-.94.93s-.93-.42-.93-.93c.03-.67-.22-1.33-.71-1.86l-.07-.06c-.9-.89-1.38-2.03-1.34-3.22 0-.51.42-.93.93-.93s.93.42.93.93c-.03.67.22 1.33.71 1.86l.07.07c.9.88 1.38 2.02 1.35 3.21z" -}), 'DryRounded'); \ No newline at end of file +}), 'DryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DrySharp.js b/packages/material-ui-icons/lib/DrySharp.js index 7a6b9c962affe7..196e413ac9e106 100644 --- a/packages/material-ui-icons/lib/DrySharp.js +++ b/packages/material-ui-icons/lib/DrySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68zm14.65-7.82-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" -}), 'DrySharp'); \ No newline at end of file +}), 'DrySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DryTwoTone.js b/packages/material-ui-icons/lib/DryTwoTone.js index 0c7dc5f916a4e5..e41b7264123dd8 100644 --- a/packages/material-ui-icons/lib/DryTwoTone.js +++ b/packages/material-ui-icons/lib/DryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm5.65-16.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" -}, "1")], 'DryTwoTone'); \ No newline at end of file +}, "1")], 'DryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Duo.js b/packages/material-ui-icons/lib/Duo.js index 1f2cff83a93479..f724af97011781 100644 --- a/packages/material-ui-icons/lib/Duo.js +++ b/packages/material-ui-icons/lib/Duo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" -}), 'Duo'); \ No newline at end of file +}), 'Duo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DuoOutlined.js b/packages/material-ui-icons/lib/DuoOutlined.js index 586484fcf4445b..9458a1b711bc0d 100644 --- a/packages/material-ui-icons/lib/DuoOutlined.js +++ b/packages/material-ui-icons/lib/DuoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" -}), 'DuoOutlined'); \ No newline at end of file +}), 'DuoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DuoRounded.js b/packages/material-ui-icons/lib/DuoRounded.js index 6bc62205764ff4..6349f876cd8c4f 100644 --- a/packages/material-ui-icons/lib/DuoRounded.js +++ b/packages/material-ui-icons/lib/DuoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" -}), 'DuoRounded'); \ No newline at end of file +}), 'DuoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DuoSharp.js b/packages/material-ui-icons/lib/DuoSharp.js index e92b0342dd1d74..631ac16c0a8dff 100644 --- a/packages/material-ui-icons/lib/DuoSharp.js +++ b/packages/material-ui-icons/lib/DuoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" -}), 'DuoSharp'); \ No newline at end of file +}), 'DuoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DuoTwoTone.js b/packages/material-ui-icons/lib/DuoTwoTone.js index 49511926cbf424..ceda7763d71b6d 100644 --- a/packages/material-ui-icons/lib/DuoTwoTone.js +++ b/packages/material-ui-icons/lib/DuoTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" -}), 'DuoTwoTone'); \ No newline at end of file +}), 'DuoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Dvr.js b/packages/material-ui-icons/lib/Dvr.js index 15a70dce83df98..09fe53a76eaf1c 100644 --- a/packages/material-ui-icons/lib/Dvr.js +++ b/packages/material-ui-icons/lib/Dvr.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" -}), 'Dvr'); \ No newline at end of file +}), 'Dvr'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DvrOutlined.js b/packages/material-ui-icons/lib/DvrOutlined.js index e4dd9162cd0e3b..7bf3a29cdd42c5 100644 --- a/packages/material-ui-icons/lib/DvrOutlined.js +++ b/packages/material-ui-icons/lib/DvrOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" -}), 'DvrOutlined'); \ No newline at end of file +}), 'DvrOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DvrRounded.js b/packages/material-ui-icons/lib/DvrRounded.js index 1d109c764406c5..97348d7efeeb2e 100644 --- a/packages/material-ui-icons/lib/DvrRounded.js +++ b/packages/material-ui-icons/lib/DvrRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-2-9H9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM7 8H5v2h2V8zm0 4H5v2h2v-2z" -}), 'DvrRounded'); \ No newline at end of file +}), 'DvrRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DvrSharp.js b/packages/material-ui-icons/lib/DvrSharp.js index 7e67c140406029..acb4530bc0e4e0 100644 --- a/packages/material-ui-icons/lib/DvrSharp.js +++ b/packages/material-ui-icons/lib/DvrSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" -}), 'DvrSharp'); \ No newline at end of file +}), 'DvrSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DvrTwoTone.js b/packages/material-ui-icons/lib/DvrTwoTone.js index d7f09d25045409..35d0b15cc6d83d 100644 --- a/packages/material-ui-icons/lib/DvrTwoTone.js +++ b/packages/material-ui-icons/lib/DvrTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18V5H3v12zm5-9h11v2H8V8zm0 4h11v2H8v-2zM5 8h2v2H5V8zm0 4h2v2H5v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12h11v2H8zm0-4h11v2H8zm13-5H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM5 12h2v2H5zm0-4h2v2H5z" -}, "1")], 'DvrTwoTone'); \ No newline at end of file +}, "1")], 'DvrTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFeed.js b/packages/material-ui-icons/lib/DynamicFeed.js index 78903961d5e75e..8dbd7f98adc5fd 100644 --- a/packages/material-ui-icons/lib/DynamicFeed.js +++ b/packages/material-ui-icons/lib/DynamicFeed.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8H6v7c0 1.1.9 2 2 2h9v-2H8V8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM4 12H2v7c0 1.1.9 2 2 2h9v-2H4v-7z" -}, "1")], 'DynamicFeed'); \ No newline at end of file +}, "1")], 'DynamicFeed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFeedOutlined.js b/packages/material-ui-icons/lib/DynamicFeedOutlined.js index 6408b05048e6d6..a28552ffb3ed08 100644 --- a/packages/material-ui-icons/lib/DynamicFeedOutlined.js +++ b/packages/material-ui-icons/lib/DynamicFeedOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8H6v7c0 1.1.9 2 2 2h9v-2H8V8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM4 12H2v7c0 1.1.9 2 2 2h9v-2H4v-7z" -}, "1")], 'DynamicFeedOutlined'); \ No newline at end of file +}, "1")], 'DynamicFeedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFeedRounded.js b/packages/material-ui-icons/lib/DynamicFeedRounded.js index d6df4b8924a48d..1961127f1121a2 100644 --- a/packages/material-ui-icons/lib/DynamicFeedRounded.js +++ b/packages/material-ui-icons/lib/DynamicFeedRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8c-.55 0-1 .45-1 1v6c0 1.1.9 2 2 2h8c.55 0 1-.45 1-1s-.45-1-1-1H8V9c0-.55-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM3 12c-.55 0-1 .45-1 1v6c0 1.1.9 2 2 2h8c.55 0 1-.45 1-1s-.45-1-1-1H4v-6c0-.55-.45-1-1-1z" -}, "1")], 'DynamicFeedRounded'); \ No newline at end of file +}, "1")], 'DynamicFeedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFeedSharp.js b/packages/material-ui-icons/lib/DynamicFeedSharp.js index 4fce1fc83f86cd..d36a8a55bc78f9 100644 --- a/packages/material-ui-icons/lib/DynamicFeedSharp.js +++ b/packages/material-ui-icons/lib/DynamicFeedSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8H6v9h11v-2H8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H10v10h12V3zm-2 8h-8V7h8v4zM4 12H2v9h11v-2H4z" -}, "1")], 'DynamicFeedSharp'); \ No newline at end of file +}, "1")], 'DynamicFeedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFeedTwoTone.js b/packages/material-ui-icons/lib/DynamicFeedTwoTone.js index 9f1152b357b2a0..e1f52a4a5ec0cb 100644 --- a/packages/material-ui-icons/lib/DynamicFeedTwoTone.js +++ b/packages/material-ui-icons/lib/DynamicFeedTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7h8v4h-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8H6v7c0 1.1.9 2 2 2h9v-2H8V8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM4 12H2v7c0 1.1.9 2 2 2h9v-2H4v-7z" -}, "2")], 'DynamicFeedTwoTone'); \ No newline at end of file +}, "2")], 'DynamicFeedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicForm.js b/packages/material-ui-icons/lib/DynamicForm.js index 829973986af6a3..61c8387d00c6a7 100644 --- a/packages/material-ui-icons/lib/DynamicForm.js +++ b/packages/material-ui-icons/lib/DynamicForm.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20v-9h-2V4h7l-2 5h2l-5 11zm-2-7v7H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11zm-8.75 2.75h-1.5v1.5h1.5v-1.5zM13 4v7H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9zM6.25 6.75h-1.5v1.5h1.5v-1.5z" -}), 'DynamicForm'); \ No newline at end of file +}), 'DynamicForm'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFormOutlined.js b/packages/material-ui-icons/lib/DynamicFormOutlined.js index 2edaa1867c6d51..6eb4cc431ef930 100644 --- a/packages/material-ui-icons/lib/DynamicFormOutlined.js +++ b/packages/material-ui-icons/lib/DynamicFormOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9v7zM4 9h7V6H4v3zm11 11H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11v7zM4 18h9v-3H4v3zm18-9h-2l2-5h-7v7h2v9l5-11zM4.75 17.25h1.5v-1.5h-1.5v1.5zm0-9h1.5v-1.5h-1.5v1.5z" -}), 'DynamicFormOutlined'); \ No newline at end of file +}), 'DynamicFormOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFormRounded.js b/packages/material-ui-icons/lib/DynamicFormRounded.js index 22ebd06ba638de..6941cc46ebf75a 100644 --- a/packages/material-ui-icons/lib/DynamicFormRounded.js +++ b/packages/material-ui-icons/lib/DynamicFormRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.68 9.71-3.72 8.19c-.23.49-.96.33-.96-.21V11h-1.5c-.28 0-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5h5.76c.35 0 .6.36.46.69L20 9h1.22c.37 0 .61.38.46.71zM15 13v7H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11zm-8.75 3.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75zM13 4v7H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9zM6.25 7.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75z" -}), 'DynamicFormRounded'); \ No newline at end of file +}), 'DynamicFormRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFormSharp.js b/packages/material-ui-icons/lib/DynamicFormSharp.js index 94f188dda70884..fd83ff1a5067f6 100644 --- a/packages/material-ui-icons/lib/DynamicFormSharp.js +++ b/packages/material-ui-icons/lib/DynamicFormSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20v-9h-2V4h7l-2 5h2l-5 11zm-2-7v7H2v-7h13zm-8.75 2.75h-1.5v1.5h1.5v-1.5zM13 4v7H2V4h11zM6.25 6.75h-1.5v1.5h1.5v-1.5z" -}), 'DynamicFormSharp'); \ No newline at end of file +}), 'DynamicFormSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/DynamicFormTwoTone.js b/packages/material-ui-icons/lib/DynamicFormTwoTone.js index 06c7b492df4cae..e377df8170ba31 100644 --- a/packages/material-ui-icons/lib/DynamicFormTwoTone.js +++ b/packages/material-ui-icons/lib/DynamicFormTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h7V6H4v3zm0 9h9v-3H4v3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9v7zM4 9h7V6H4v3zm11 11H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11v7zM4 18h9v-3H4v3zm18-9h-2l2-5h-7v7h2v9l5-11zM4.75 17.25h1.5v-1.5h-1.5v1.5zm0-9h1.5v-1.5h-1.5v1.5z" -}, "1")], 'DynamicFormTwoTone'); \ No newline at end of file +}, "1")], 'DynamicFormTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EMobiledata.js b/packages/material-ui-icons/lib/EMobiledata.js index b64e58f365a3f0..2d902d71c801cd 100644 --- a/packages/material-ui-icons/lib/EMobiledata.js +++ b/packages/material-ui-icons/lib/EMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" -}), 'EMobiledata'); \ No newline at end of file +}), 'EMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EMobiledataOutlined.js b/packages/material-ui-icons/lib/EMobiledataOutlined.js index 03bb6c496c18d8..5298215b2dbc52 100644 --- a/packages/material-ui-icons/lib/EMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/EMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" -}), 'EMobiledataOutlined'); \ No newline at end of file +}), 'EMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EMobiledataRounded.js b/packages/material-ui-icons/lib/EMobiledataRounded.js index aeff18f3017990..eb6b25a5402a21 100644 --- a/packages/material-ui-icons/lib/EMobiledataRounded.js +++ b/packages/material-ui-icons/lib/EMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 8c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-5v-2h5c.55 0 1-.45 1-1s-.45-1-1-1h-5V9h5c.55 0 1-.45 1-1z" -}), 'EMobiledataRounded'); \ No newline at end of file +}), 'EMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EMobiledataSharp.js b/packages/material-ui-icons/lib/EMobiledataSharp.js index fff486d5634b9b..b47fc2d4d9fd44 100644 --- a/packages/material-ui-icons/lib/EMobiledataSharp.js +++ b/packages/material-ui-icons/lib/EMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" -}), 'EMobiledataSharp'); \ No newline at end of file +}), 'EMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EMobiledataTwoTone.js b/packages/material-ui-icons/lib/EMobiledataTwoTone.js index 1dec559bfadd16..0205ab6660d1cd 100644 --- a/packages/material-ui-icons/lib/EMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/EMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" -}), 'EMobiledataTwoTone'); \ No newline at end of file +}), 'EMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Earbuds.js b/packages/material-ui-icons/lib/Earbuds.js index 84958569ad89ca..6071047f0b1672 100644 --- a/packages/material-ui-icons/lib/Earbuds.js +++ b/packages/material-ui-icons/lib/Earbuds.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z" -}), 'Earbuds'); \ No newline at end of file +}), 'Earbuds'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsBattery.js b/packages/material-ui-icons/lib/EarbudsBattery.js index 4fe2e518a035eb..f40782bbff6aa5 100644 --- a/packages/material-ui-icons/lib/EarbudsBattery.js +++ b/packages/material-ui-icons/lib/EarbudsBattery.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM10.62 6C8.76 6 7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38C14 7.51 12.49 6 10.62 6z" -}), 'EarbudsBattery'); \ No newline at end of file +}), 'EarbudsBattery'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsBatteryOutlined.js b/packages/material-ui-icons/lib/EarbudsBatteryOutlined.js index a0baa00f8e05af..149df92cd4647a 100644 --- a/packages/material-ui-icons/lib/EarbudsBatteryOutlined.js +++ b/packages/material-ui-icons/lib/EarbudsBatteryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7zm-6-6.62C14 7.51 12.49 6 10.62 6S7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38z" -}), 'EarbudsBatteryOutlined'); \ No newline at end of file +}), 'EarbudsBatteryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsBatteryRounded.js b/packages/material-ui-icons/lib/EarbudsBatteryRounded.js index b522507044259b..b17afd34d62029 100644 --- a/packages/material-ui-icons/lib/EarbudsBatteryRounded.js +++ b/packages/material-ui-icons/lib/EarbudsBatteryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-1v-.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-7 2.38C14 7.51 12.49 6 10.62 6S7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38z" -}), 'EarbudsBatteryRounded'); \ No newline at end of file +}), 'EarbudsBatteryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsBatterySharp.js b/packages/material-ui-icons/lib/EarbudsBatterySharp.js index 69b24341ce79be..8c58147b7e9b68 100644 --- a/packages/material-ui-icons/lib/EarbudsBatterySharp.js +++ b/packages/material-ui-icons/lib/EarbudsBatterySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7V6h-2v1h-2v11h6V7zM5.38 16.5c-1.04 0-1.88-.84-1.88-1.87V10H6V6H4c-1.1 0-2 .9-2 2v6.63C2 16.49 3.51 18 5.37 18s3.37-1.51 3.37-3.37V9.37c0-1.04.84-1.87 1.87-1.87 1.04 0 1.87.84 1.87 1.87V14H10v4h2c1.1 0 2-.9 2-2V9.37C14 7.51 12.49 6 10.63 6 8.76 6 7.25 7.51 7.25 9.37v5.25c0 1.04-.84 1.88-1.87 1.88z" -}), 'EarbudsBatterySharp'); \ No newline at end of file +}), 'EarbudsBatterySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsBatteryTwoTone.js b/packages/material-ui-icons/lib/EarbudsBatteryTwoTone.js index 694e91361c410e..8155d68a23fee0 100644 --- a/packages/material-ui-icons/lib/EarbudsBatteryTwoTone.js +++ b/packages/material-ui-icons/lib/EarbudsBatteryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9h2v7h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.62 6C8.76 6 7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38C14 7.51 12.49 6 10.62 6zM21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7z" -}, "1")], 'EarbudsBatteryTwoTone'); \ No newline at end of file +}, "1")], 'EarbudsBatteryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsOutlined.js b/packages/material-ui-icons/lib/EarbudsOutlined.js index f88bb889540b12..78b5029871a0b5 100644 --- a/packages/material-ui-icons/lib/EarbudsOutlined.js +++ b/packages/material-ui-icons/lib/EarbudsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3c-2.76 0-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21 9.12 4.52 7.84 3.11 6.2 3 4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5zM5 6c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1H5V6zm14 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1h1v1z" -}), 'EarbudsOutlined'); \ No newline at end of file +}), 'EarbudsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsRounded.js b/packages/material-ui-icons/lib/EarbudsRounded.js index 48d3e034da90ea..a5c0c946f5ca06 100644 --- a/packages/material-ui-icons/lib/EarbudsRounded.js +++ b/packages/material-ui-icons/lib/EarbudsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z" -}), 'EarbudsRounded'); \ No newline at end of file +}), 'EarbudsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsSharp.js b/packages/material-ui-icons/lib/EarbudsSharp.js index 5739a94bef09ba..9d7a3a3412f296 100644 --- a/packages/material-ui-icons/lib/EarbudsSharp.js +++ b/packages/material-ui-icons/lib/EarbudsSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3h3v6H6zm9 12h3v6h-3z" -}, "1")], 'EarbudsSharp'); \ No newline at end of file +}, "1")], 'EarbudsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EarbudsTwoTone.js b/packages/material-ui-icons/lib/EarbudsTwoTone.js index b560cde6f0d8eb..03670ed6559133 100644 --- a/packages/material-ui-icons/lib/EarbudsTwoTone.js +++ b/packages/material-ui-icons/lib/EarbudsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 6c0-.55-.45-1-1-1s-1 .45-1 1v1h1c.55 0 1-.45 1-1zm10 12c0 .55.45 1 1 1s1-.45 1-1v-1h-1c-.55 0-1 .45-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3c-2.76 0-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21 9.12 4.52 7.84 3.11 6.2 3 4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5zM5 6c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1H5V6zm14 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1h1v1z" -}, "1")], 'EarbudsTwoTone'); \ No newline at end of file +}, "1")], 'EarbudsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/East.js b/packages/material-ui-icons/lib/East.js index 52861587a9c0ef..b2b08e4457be80 100644 --- a/packages/material-ui-icons/lib/East.js +++ b/packages/material-ui-icons/lib/East.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" -}), 'East'); \ No newline at end of file +}), 'East'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EastOutlined.js b/packages/material-ui-icons/lib/EastOutlined.js index a9df0104298bfd..db4b6370396a96 100644 --- a/packages/material-ui-icons/lib/EastOutlined.js +++ b/packages/material-ui-icons/lib/EastOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" -}), 'EastOutlined'); \ No newline at end of file +}), 'EastOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EastRounded.js b/packages/material-ui-icons/lib/EastRounded.js index 9f6f9fc22011e5..1f9f68ea1b4889 100644 --- a/packages/material-ui-icons/lib/EastRounded.js +++ b/packages/material-ui-icons/lib/EastRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.29 5.71c-.39.39-.39 1.02 0 1.41L18.17 11H3c-.55 0-1 .45-1 1s.45 1 1 1h15.18l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l5.59-5.59c.39-.39.39-1.02 0-1.41l-5.6-5.58c-.38-.39-1.02-.39-1.41 0z" -}), 'EastRounded'); \ No newline at end of file +}), 'EastRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EastSharp.js b/packages/material-ui-icons/lib/EastSharp.js index 31dcb900e59003..defec2cc287981 100644 --- a/packages/material-ui-icons/lib/EastSharp.js +++ b/packages/material-ui-icons/lib/EastSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" -}), 'EastSharp'); \ No newline at end of file +}), 'EastSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EastTwoTone.js b/packages/material-ui-icons/lib/EastTwoTone.js index f61dfd57985b81..885e0814a75667 100644 --- a/packages/material-ui-icons/lib/EastTwoTone.js +++ b/packages/material-ui-icons/lib/EastTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" -}), 'EastTwoTone'); \ No newline at end of file +}), 'EastTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorHigh.js b/packages/material-ui-icons/lib/EdgesensorHigh.js index 0ee7ede4b08022..166d0db4e35d8a 100644 --- a/packages/material-ui-icons/lib/EdgesensorHigh.js +++ b/packages/material-ui-icons/lib/EdgesensorHigh.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-3-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" -}), 'EdgesensorHigh'); \ No newline at end of file +}), 'EdgesensorHigh'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorHighOutlined.js b/packages/material-ui-icons/lib/EdgesensorHighOutlined.js index f0180918f300f2..d35db309a5aa85 100644 --- a/packages/material-ui-icons/lib/EdgesensorHighOutlined.js +++ b/packages/material-ui-icons/lib/EdgesensorHighOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-3-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zM8 5V4h8v1H8z" -}), 'EdgesensorHighOutlined'); \ No newline at end of file +}), 'EdgesensorHighOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorHighRounded.js b/packages/material-ui-icons/lib/EdgesensorHighRounded.js index 239db875333fa6..ccd52e1ec5c277 100644 --- a/packages/material-ui-icons/lib/EdgesensorHighRounded.js +++ b/packages/material-ui-icons/lib/EdgesensorHighRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-3 3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1v-5c0-.55.45-1 1-1zm22-3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-3 3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1v-5c0-.55.45-1 1-1zm-4-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" -}), 'EdgesensorHighRounded'); \ No newline at end of file +}), 'EdgesensorHighRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorHighSharp.js b/packages/material-ui-icons/lib/EdgesensorHighSharp.js index 3def835f9e94cf..ad692c12a4284b 100644 --- a/packages/material-ui-icons/lib/EdgesensorHighSharp.js +++ b/packages/material-ui-icons/lib/EdgesensorHighSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-1-8H6v20h12V2zm-2 15H8V7h8v10z" -}), 'EdgesensorHighSharp'); \ No newline at end of file +}), 'EdgesensorHighSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorHighTwoTone.js b/packages/material-ui-icons/lib/EdgesensorHighTwoTone.js index e622c74ddd28bb..63fa52a0a76c58 100644 --- a/packages/material-ui-icons/lib/EdgesensorHighTwoTone.js +++ b/packages/material-ui-icons/lib/EdgesensorHighTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h8v1H8zm0 15h8v1H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 2.01 8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zm0-12H8V4h8v1zm3 5h2v7h-2zm3-3h2v7h-2zM3 7h2v7H3zm-3 3h2v7H0z" -}, "1")], 'EdgesensorHighTwoTone'); \ No newline at end of file +}, "1")], 'EdgesensorHighTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorLow.js b/packages/material-ui-icons/lib/EdgesensorLow.js index 429e5dc90ea809..ad7c4cd80c6f7e 100644 --- a/packages/material-ui-icons/lib/EdgesensorLow.js +++ b/packages/material-ui-icons/lib/EdgesensorLow.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zm-4-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" -}), 'EdgesensorLow'); \ No newline at end of file +}), 'EdgesensorLow'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorLowOutlined.js b/packages/material-ui-icons/lib/EdgesensorLowOutlined.js index 41abbd678a55c9..88f10c36ff516f 100644 --- a/packages/material-ui-icons/lib/EdgesensorLowOutlined.js +++ b/packages/material-ui-icons/lib/EdgesensorLowOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zm-4-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zM8 5V4h8v1H8z" -}), 'EdgesensorLowOutlined'); \ No newline at end of file +}), 'EdgesensorLowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorLowRounded.js b/packages/material-ui-icons/lib/EdgesensorLowRounded.js index a178f1b7278b98..db1018034c3007 100644 --- a/packages/material-ui-icons/lib/EdgesensorLowRounded.js +++ b/packages/material-ui-icons/lib/EdgesensorLowRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm18 3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1v-5c0-.55.45-1 1-1zm-5-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" -}), 'EdgesensorLowRounded'); \ No newline at end of file +}), 'EdgesensorLowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorLowSharp.js b/packages/material-ui-icons/lib/EdgesensorLowSharp.js index 40c64c05785735..808e535d0cb296 100644 --- a/packages/material-ui-icons/lib/EdgesensorLowSharp.js +++ b/packages/material-ui-icons/lib/EdgesensorLowSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zM6 2v20h12V2H6zm10 15H8V7h8v10z" -}), 'EdgesensorLowSharp'); \ No newline at end of file +}), 'EdgesensorLowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EdgesensorLowTwoTone.js b/packages/material-ui-icons/lib/EdgesensorLowTwoTone.js index de8fc31259e0d8..68fb4e71878692 100644 --- a/packages/material-ui-icons/lib/EdgesensorLowTwoTone.js +++ b/packages/material-ui-icons/lib/EdgesensorLowTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h8v1H8zm0 15h8v1H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10h2v7h-2zM2 7h2v7H2zm14-4.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zm0-12H8V4h8v1z" -}, "1")], 'EdgesensorLowTwoTone'); \ No newline at end of file +}, "1")], 'EdgesensorLowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Edit.js b/packages/material-ui-icons/lib/Edit.js index 882d79a739cd35..cf9beed687aeea 100644 --- a/packages/material-ui-icons/lib/Edit.js +++ b/packages/material-ui-icons/lib/Edit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'Edit'); \ No newline at end of file +}), 'Edit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditAttributes.js b/packages/material-ui-icons/lib/EditAttributes.js index f6112c4cc7ff6f..318d1f7193e608 100644 --- a/packages/material-ui-icons/lib/EditAttributes.js +++ b/packages/material-ui-icons/lib/EditAttributes.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z" -}), 'EditAttributes'); \ No newline at end of file +}), 'EditAttributes'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditAttributesOutlined.js b/packages/material-ui-icons/lib/EditAttributesOutlined.js index 8a9f47884ce951..f46f56ecbb1b73 100644 --- a/packages/material-ui-icons/lib/EditAttributesOutlined.js +++ b/packages/material-ui-icons/lib/EditAttributesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z" -}), 'EditAttributesOutlined'); \ No newline at end of file +}), 'EditAttributesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditAttributesRounded.js b/packages/material-ui-icons/lib/EditAttributesRounded.js index b3783168f271ca..1693f0c322ef6d 100644 --- a/packages/material-ui-icons/lib/EditAttributesRounded.js +++ b/packages/material-ui-icons/lib/EditAttributesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm-6.52 3.6L7.6 14.11c-.1.1-.23.15-.35.15s-.26-.05-.35-.15l-1.86-1.86c-.2-.2-.2-.51 0-.71s.51-.2.71 0l1.51 1.51 3.16-3.16c.2-.2.51-.2.71 0s.17.51-.02.71z" -}), 'EditAttributesRounded'); \ No newline at end of file +}), 'EditAttributesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditAttributesSharp.js b/packages/material-ui-icons/lib/EditAttributesSharp.js index 8a788deccd948e..c8a057fa44a494 100644 --- a/packages/material-ui-icons/lib/EditAttributesSharp.js +++ b/packages/material-ui-icons/lib/EditAttributesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z" -}), 'EditAttributesSharp'); \ No newline at end of file +}), 'EditAttributesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditAttributesTwoTone.js b/packages/material-ui-icons/lib/EditAttributesTwoTone.js index c39d82a7620124..61b493262786d7 100644 --- a/packages/material-ui-icons/lib/EditAttributesTwoTone.js +++ b/packages/material-ui-icons/lib/EditAttributesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 9H6.37C5.09 9 4 10.37 4 12s1.09 3 2.37 3h11.26c1.28 0 2.37-1.37 2.37-3s-1.09-3-2.37-3zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z" -}, "1")], 'EditAttributesTwoTone'); \ No newline at end of file +}, "1")], 'EditAttributesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocation.js b/packages/material-ui-icons/lib/EditLocation.js index 2bc546624b9c82..ffb55f4ed9e5a0 100644 --- a/packages/material-ui-icons/lib/EditLocation.js +++ b/packages/material-ui-icons/lib/EditLocation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.56 10H9v-1.44l3.35-3.34 1.43 1.43L10.44 12zm4.45-4.45-.7.7-1.44-1.44.7-.7c.15-.15.39-.15.54 0l.9.9c.15.15.15.39 0 .54z" -}), 'EditLocation'); \ No newline at end of file +}), 'EditLocation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationAlt.js b/packages/material-ui-icons/lib/EditLocationAlt.js index 8e8778e147c12f..9a3d3b645c644f 100644 --- a/packages/material-ui-icons/lib/EditLocationAlt.js +++ b/packages/material-ui-icons/lib/EditLocationAlt.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.95 13H9V8.05l5.61-5.61C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8l-5.6 5.6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h2.12l6.16-6.16-2.12-2.12L11 8.88zm9.71-9L20 1.29c-.2-.19-.45-.29-.71-.29-.13 0-.48.07-.71.29l-.72.72 2.12 2.12.72-.72c.4-.39.4-1.02.01-1.41z" -}, "1")], 'EditLocationAlt'); \ No newline at end of file +}, "1")], 'EditLocationAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationAltOutlined.js b/packages/material-ui-icons/lib/EditLocationAltOutlined.js index 37492e94d580af..2df99f92c5920a 100644 --- a/packages/material-ui-icons/lib/EditLocationAltOutlined.js +++ b/packages/material-ui-icons/lib/EditLocationAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11zm9.71-9L20 1.29a.9959.9959 0 0 0-1.41 0l-.72.72 2.12 2.12.72-.72c.39-.39.39-1.02 0-1.41zM17.9 9.05c.06.36.1.74.1 1.15 0 1.71-1.08 4.64-6 9.14-4.92-4.49-6-7.43-6-9.14C6 6.17 9.09 4 12 4c.32 0 .65.03.97.08l1.65-1.65C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8L17.9 9.05z" -}), 'EditLocationAltOutlined'); \ No newline at end of file +}), 'EditLocationAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationAltRounded.js b/packages/material-ui-icons/lib/EditLocationAltRounded.js index 2e14c066481254..1cef3d76956ea5 100644 --- a/packages/material-ui-icons/lib/EditLocationAltRounded.js +++ b/packages/material-ui-icons/lib/EditLocationAltRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.54 13H10c-.55 0-1-.45-1-1V8.46c0-.26.11-.52.29-.7l5.32-5.32C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.44 6.92 7.33 11.22.38.33.96.33 1.34 0C17.56 17.12 20 13.37 20 10.2c0-1.01-.16-1.94-.45-2.8l-5.31 5.31c-.18.18-.44.29-.7.29z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h2.12l6.16-6.16-2.12-2.12L11 8.88zm9.71-9L20 1.29a.9959.9959 0 0 0-1.41 0l-.72.72 2.12 2.12.72-.72c.39-.39.39-1.02 0-1.41z" -}, "1")], 'EditLocationAltRounded'); \ No newline at end of file +}, "1")], 'EditLocationAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationAltSharp.js b/packages/material-ui-icons/lib/EditLocationAltSharp.js index e92916caaf8831..027e05775d8ebc 100644 --- a/packages/material-ui-icons/lib/EditLocationAltSharp.js +++ b/packages/material-ui-icons/lib/EditLocationAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.95 13H9V8.05l5.61-5.61C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8l-5.6 5.6zM11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11zM19.29.59l-1.42 1.42 2.12 2.12 1.42-1.42L19.29.59z" -}), 'EditLocationAltSharp'); \ No newline at end of file +}), 'EditLocationAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationAltTwoTone.js b/packages/material-ui-icons/lib/EditLocationAltTwoTone.js index 605b0e31a593c8..d28865986beb4d 100644 --- a/packages/material-ui-icons/lib/EditLocationAltTwoTone.js +++ b/packages/material-ui-icons/lib/EditLocationAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.9 9.05c.06.36.1.74.1 1.15 0 1.71-1.08 4.64-6 9.14-4.92-4.49-6-7.43-6-9.14C6 6.17 9.09 4 12 4c.32 0 .65.03.97.08l1.65-1.65C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8L17.9 9.05zM20.71 2 20 1.29a.9959.9959 0 0 0-1.41 0l-.72.72 2.12 2.12.72-.72c.39-.39.39-1.02 0-1.41zM11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.95 13H9V8.05l3.97-3.97C12.65 4.03 12.32 4 12 4c-2.91 0-6 2.17-6 6.2 0 1.71 1.08 4.64 6 9.14 4.92-4.49 6-7.43 6-9.14 0-.4-.04-.78-.1-1.15L13.95 13z", opacity: ".3" -}, "1")], 'EditLocationAltTwoTone'); \ No newline at end of file +}, "1")], 'EditLocationAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationOutlined.js b/packages/material-ui-icons/lib/EditLocationOutlined.js index 6a1aabcf78ce38..eb155d060bb46a 100644 --- a/packages/material-ui-icons/lib/EditLocationOutlined.js +++ b/packages/material-ui-icons/lib/EditLocationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.17 4.91 17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29a1.49 1.49 0 0 1 2.12 0l1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z" -}), 'EditLocationOutlined'); \ No newline at end of file +}), 'EditLocationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationRounded.js b/packages/material-ui-icons/lib/EditLocationRounded.js index a98e701d908935..057a8a9a295f11 100644 --- a/packages/material-ui-icons/lib/EditLocationRounded.js +++ b/packages/material-ui-icons/lib/EditLocationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zM9.73 13.5H8.5v-1.44l3.93-3.92 1.43 1.43-3.77 3.78c-.1.1-.22.15-.36.15zm5.55-5.34-.7.7-1.44-1.44.7-.7c.15-.15.39-.15.54 0l.9.9c.15.15.15.39 0 .54z" -}), 'EditLocationRounded'); \ No newline at end of file +}), 'EditLocationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationSharp.js b/packages/material-ui-icons/lib/EditLocationSharp.js index 3d2264fbb04fd3..435e1c6753d2c7 100644 --- a/packages/material-ui-icons/lib/EditLocationSharp.js +++ b/packages/material-ui-icons/lib/EditLocationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.11 1.77 19.78.1l2.12 2.12-1.67 1.67-2.12-2.12zm-1 1 2.12 2.12L13.12 11H11V8.89l6.11-6.12zm-1.98-.13L9.5 8.27v4.24h4.24l5.62-5.62c.41.99.64 2.1.64 3.32 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2 1.09 0 2.16.22 3.13.63z" -}), 'EditLocationSharp'); \ No newline at end of file +}), 'EditLocationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditLocationTwoTone.js b/packages/material-ui-icons/lib/EditLocationTwoTone.js index 0a9365634fbbb4..25ee539d292408 100644 --- a/packages/material-ui-icons/lib/EditLocationTwoTone.js +++ b/packages/material-ui-icons/lib/EditLocationTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.11 14H8V7.91l.59-.59L11.91 4C8.61 4.05 6 6.6 6 10.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.08l-3.3 3.3-.59.58z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.17 4.91 17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29c.58-.59 1.52-.59 2.11-.01l.01.01 1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.17 4.91 17.1 3.84l-5.55 5.55v1.08h1.08z", opacity: ".3" -}, "2")], 'EditLocationTwoTone'); \ No newline at end of file +}, "2")], 'EditLocationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditNotifications.js b/packages/material-ui-icons/lib/EditNotifications.js index 90cb89e075e2a9..a6bdc1274f3668 100644 --- a/packages/material-ui-icons/lib/EditNotifications.js +++ b/packages/material-ui-icons/lib/EditNotifications.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09L10.6 10.4V15h4.6l2.8-2.8zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" -}), 'EditNotifications'); \ No newline at end of file +}), 'EditNotifications'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditNotificationsOutlined.js b/packages/material-ui-icons/lib/EditNotificationsOutlined.js index 6ab34c0707a1b7..c8420dfa121964 100644 --- a/packages/material-ui-icons/lib/EditNotificationsOutlined.js +++ b/packages/material-ui-icons/lib/EditNotificationsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09l-1.43 1.43C13.64 6.26 12.85 6 12 6c-2.21 0-4 1.79-4 4v7h8v-2.8l2-2zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" -}), 'EditNotificationsOutlined'); \ No newline at end of file +}), 'EditNotificationsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditNotificationsRounded.js b/packages/material-ui-icons/lib/EditNotificationsRounded.js index d89b350888e82a..798dea58f7bf5f 100644 --- a/packages/material-ui-icons/lib/EditNotificationsRounded.js +++ b/packages/material-ui-icons/lib/EditNotificationsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.58 6.25 1.77 1.77-4.84 4.84c-.09.09-.22.14-.35.14H13.1c-.28 0-.5-.22-.5-.5v-1.06c0-.13.05-.26.15-.35l4.83-4.84zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM20 18c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h1v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09l-4.52 4.52c-.38.38-.59.88-.59 1.41V13c0 1.1.9 2 2 2h1.77c.53 0 1.04-.21 1.41-.59L18 12.2V17h1c.55 0 1 .45 1 1zm-10 2h4c0 1.1-.9 2-2 2s-2-.9-2-2z" -}), 'EditNotificationsRounded'); \ No newline at end of file +}), 'EditNotificationsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditNotificationsSharp.js b/packages/material-ui-icons/lib/EditNotificationsSharp.js index d14c2a37e4d5a0..1d1e005b03ad70 100644 --- a/packages/material-ui-icons/lib/EditNotificationsSharp.js +++ b/packages/material-ui-icons/lib/EditNotificationsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.82.21 1.57.59 2.21 1.09L10.6 10.4V15h4.6l2.8-2.8zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" -}), 'EditNotificationsSharp'); \ No newline at end of file +}), 'EditNotificationsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditNotificationsTwoTone.js b/packages/material-ui-icons/lib/EditNotificationsTwoTone.js index c5a579aad700d6..7fde88f7cafa9e 100644 --- a/packages/material-ui-icons/lib/EditNotificationsTwoTone.js +++ b/packages/material-ui-icons/lib/EditNotificationsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 14.2-.8.8h-4.6v-4.6l3.68-3.68C13.64 6.26 12.85 6 12 6c-2.21 0-4 1.79-4 4v7h8v-2.8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09l-1.43 1.43C13.64 6.26 12.85 6 12 6c-2.21 0-4 1.79-4 4v7h8v-2.8l2-2zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" -}, "1")], 'EditNotificationsTwoTone'); \ No newline at end of file +}, "1")], 'EditNotificationsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditOff.js b/packages/material-ui-icons/lib/EditOff.js index e51cf5cab06484..d9a27e450a1ff9 100644 --- a/packages/material-ui-icons/lib/EditOff.js +++ b/packages/material-ui-icons/lib/EditOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.126 8.125 1.937-1.937 3.747 3.747-1.937 1.938zM20.71 5.63l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75L20.71 7a1 1 0 0 0 0-1.37zM2 5l6.63 6.63L3 17.25V21h3.75l5.63-5.62L18 21l2-2L4 3 2 5z" -}), 'EditOff'); \ No newline at end of file +}), 'EditOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditOffOutlined.js b/packages/material-ui-icons/lib/EditOffOutlined.js index d03aa2955eaa42..7837da9c923af1 100644 --- a/packages/material-ui-icons/lib/EditOffOutlined.js +++ b/packages/material-ui-icons/lib/EditOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.06 9.02.92.92-1.11 1.11 1.41 1.41 2.52-2.52-3.75-3.75-2.52 2.52 1.41 1.41 1.12-1.1zm6.65-1.98c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2.81 2.81 1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81zM5.92 19H5v-.92l5.13-5.13.92.92L5.92 19z" -}), 'EditOffOutlined'); \ No newline at end of file +}), 'EditOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditOffRounded.js b/packages/material-ui-icons/lib/EditOffRounded.js index a2650a472fb2b3..8c1ead56de9884 100644 --- a/packages/material-ui-icons/lib/EditOffRounded.js +++ b/packages/material-ui-icons/lib/EditOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.1 3.51c-.39.39-.39 1.02 0 1.41l6.61 6.61-5.56 5.57c-.1.1-.15.22-.15.36v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15l5.56-5.56 6.61 6.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.52 3.51c-.4-.39-1.03-.39-1.42 0zm18.61 3.53c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83zm-9.1749 1.6697 2.5173-2.5173L17.8001 9.94l-2.5173 2.5173z" -}), 'EditOffRounded'); \ No newline at end of file +}), 'EditOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditOffSharp.js b/packages/material-ui-icons/lib/EditOffSharp.js index d61a23d162d863..27b489efaa44b6 100644 --- a/packages/material-ui-icons/lib/EditOffSharp.js +++ b/packages/material-ui-icons/lib/EditOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 6.33-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54zM1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81 1.39 4.22zm16.42 5.72-3.75-3.75-2.52 2.52 3.75 3.75 2.52-2.52z" -}), 'EditOffSharp'); \ No newline at end of file +}), 'EditOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditOffTwoTone.js b/packages/material-ui-icons/lib/EditOffTwoTone.js index 09c2b4f179960b..08f07c0e0f30f4 100644 --- a/packages/material-ui-icons/lib/EditOffTwoTone.js +++ b/packages/material-ui-icons/lib/EditOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18.08V19h.92l5.12-5.12-.92-.92L5 18.08zm9.06-9.06-1.11 1.11.92.92 1.11-1.11-.92-.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.06 9.02.92.92-1.11 1.11 1.41 1.41 2.52-2.52-3.75-3.75-2.52 2.52 1.41 1.41 1.12-1.1zm6.65-1.98c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2.81 2.81 1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81zM5.92 19H5v-.92l5.13-5.13.92.92L5.92 19z" -}, "1")], 'EditOffTwoTone'); \ No newline at end of file +}, "1")], 'EditOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditOutlined.js b/packages/material-ui-icons/lib/EditOutlined.js index 4f30ebd9a0a309..86ceab1490b7e3 100644 --- a/packages/material-ui-icons/lib/EditOutlined.js +++ b/packages/material-ui-icons/lib/EditOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.06 9.02.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" -}), 'EditOutlined'); \ No newline at end of file +}), 'EditOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditRoad.js b/packages/material-ui-icons/lib/EditRoad.js index f911b74a353bff..09cadce33ffbe3 100644 --- a/packages/material-ui-icons/lib/EditRoad.js +++ b/packages/material-ui-icons/lib/EditRoad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" -}), 'EditRoad'); \ No newline at end of file +}), 'EditRoad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditRoadOutlined.js b/packages/material-ui-icons/lib/EditRoadOutlined.js index 0662ae8e67bec7..d4263c857416f7 100644 --- a/packages/material-ui-icons/lib/EditRoadOutlined.js +++ b/packages/material-ui-icons/lib/EditRoadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" -}), 'EditRoadOutlined'); \ No newline at end of file +}), 'EditRoadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditRoadRounded.js b/packages/material-ui-icons/lib/EditRoadRounded.js index 5849b5a173bc7d..d399b7c1d2a277 100644 --- a/packages/material-ui-icons/lib/EditRoadRounded.js +++ b/packages/material-ui-icons/lib/EditRoadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4c-.55 0-1 .45-1 1v6.9l2-2V5c0-.55-.45-1-1-1zM5 20c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1zm6-12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm11.56-7.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73v2.77c0 .28.22.5.5.5h2.77l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" -}), 'EditRoadRounded'); \ No newline at end of file +}), 'EditRoadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditRoadSharp.js b/packages/material-ui-icons/lib/EditRoadSharp.js index 8d49d4a2d037be..d729d18410e2ad 100644 --- a/packages/material-ui-icons/lib/EditRoadSharp.js +++ b/packages/material-ui-icons/lib/EditRoadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" -}), 'EditRoadSharp'); \ No newline at end of file +}), 'EditRoadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditRoadTwoTone.js b/packages/material-ui-icons/lib/EditRoadTwoTone.js index c2c8d804d89f47..e78d64e207d1fa 100644 --- a/packages/material-ui-icons/lib/EditRoadTwoTone.js +++ b/packages/material-ui-icons/lib/EditRoadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.55 17.42v1.03h1.03L20.03 15 19 13.97z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" -}, "1")], 'EditRoadTwoTone'); \ No newline at end of file +}, "1")], 'EditRoadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditRounded.js b/packages/material-ui-icons/lib/EditRounded.js index 447cefe4e03dfe..d3e06535a0a36e 100644 --- a/packages/material-ui-icons/lib/EditRounded.js +++ b/packages/material-ui-icons/lib/EditRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'EditRounded'); \ No newline at end of file +}), 'EditRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditSharp.js b/packages/material-ui-icons/lib/EditSharp.js index 990ef2257a4e22..a7f7fe739a6c70 100644 --- a/packages/material-ui-icons/lib/EditSharp.js +++ b/packages/material-ui-icons/lib/EditSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" -}), 'EditSharp'); \ No newline at end of file +}), 'EditSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EditTwoTone.js b/packages/material-ui-icons/lib/EditTwoTone.js index 73681e5015c243..2a5ef0f3eed589 100644 --- a/packages/material-ui-icons/lib/EditTwoTone.js +++ b/packages/material-ui-icons/lib/EditTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19z" -}, "1")], 'EditTwoTone'); \ No newline at end of file +}, "1")], 'EditTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightK.js b/packages/material-ui-icons/lib/EightK.js index 835d932a74509e..4277992ee877f4 100644 --- a/packages/material-ui-icons/lib/EightK.js +++ b/packages/material-ui-icons/lib/EightK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.5h1.5V14H8zM8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'EightK'); \ No newline at end of file +}), 'EightK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKOutlined.js b/packages/material-ui-icons/lib/EightKOutlined.js index f20b91a6d16264..c8d2fd18736433 100644 --- a/packages/material-ui-icons/lib/EightKOutlined.js +++ b/packages/material-ui-icons/lib/EightKOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 15H10c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1.5v1.5H8V10zm0 2.5h1.5V14H8v-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "2")], 'EightKOutlined'); \ No newline at end of file +}, "2")], 'EightKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKPlus.js b/packages/material-ui-icons/lib/EightKPlus.js index 11384aae151bda..776bac9961dbda 100644 --- a/packages/material-ui-icons/lib/EightKPlus.js +++ b/packages/material-ui-icons/lib/EightKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 12.5H8V14H6.5zm0-2.5H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'EightKPlus'); \ No newline at end of file +}), 'EightKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKPlusOutlined.js b/packages/material-ui-icons/lib/EightKPlusOutlined.js index dfb12c565733e6..46492f4fb9eef1 100644 --- a/packages/material-ui-icons/lib/EightKPlusOutlined.js +++ b/packages/material-ui-icons/lib/EightKPlusOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h2c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1v1.5h-1V10zm0 2.5h1V14h-1v-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "2")], 'EightKPlusOutlined'); \ No newline at end of file +}, "2")], 'EightKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKPlusRounded.js b/packages/material-ui-icons/lib/EightKPlusRounded.js index 16d6c4a101b4c6..1b63d6438562c0 100644 --- a/packages/material-ui-icons/lib/EightKPlusRounded.js +++ b/packages/material-ui-icons/lib/EightKPlusRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 11c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 12.5h1V14h-1zm0-2.5h1v1.5h-1z" -}, "1")], 'EightKPlusRounded'); \ No newline at end of file +}, "1")], 'EightKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKPlusSharp.js b/packages/material-ui-icons/lib/EightKPlusSharp.js index 4e18ac335dea4b..c3394d71a55fbc 100644 --- a/packages/material-ui-icons/lib/EightKPlusSharp.js +++ b/packages/material-ui-icons/lib/EightKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 12.5h1V14h-1v-1.5zm0-2.5h1v1.5h-1V10zM21 3H3v18h18V3zM10 14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm6 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'EightKPlusSharp'); \ No newline at end of file +}), 'EightKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKPlusTwoTone.js b/packages/material-ui-icons/lib/EightKPlusTwoTone.js index 29196d5eba2579..b68404f6eb9513 100644 --- a/packages/material-ui-icons/lib/EightKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/EightKPlusTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 12.5h1V14h-1zm0-2.5h1v1.5h-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h2c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1v1.5h-1V10zm0 2.5h1V14h-1v-1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "4")], 'EightKPlusTwoTone'); \ No newline at end of file +}, "4")], 'EightKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKRounded.js b/packages/material-ui-icons/lib/EightKRounded.js index 4604773fed00ac..c8d6cec24ee304 100644 --- a/packages/material-ui-icons/lib/EightKRounded.js +++ b/packages/material-ui-icons/lib/EightKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.5h1.5V14H8v-1.5zM8 10h1.5v1.5H8V10zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm5.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'EightKRounded'); \ No newline at end of file +}), 'EightKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKSharp.js b/packages/material-ui-icons/lib/EightKSharp.js index 008584c5a33010..811afd963b85a6 100644 --- a/packages/material-ui-icons/lib/EightKSharp.js +++ b/packages/material-ui-icons/lib/EightKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.5h1.5V14H8v-1.5zM8 10h1.5v1.5H8V10zm13-7H3v18h18V3zm-10 7v4c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1zm7 5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'EightKSharp'); \ No newline at end of file +}), 'EightKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightKTwoTone.js b/packages/material-ui-icons/lib/EightKTwoTone.js index 7878c304c8ae3c..c65d30b615bf95 100644 --- a/packages/material-ui-icons/lib/EightKTwoTone.js +++ b/packages/material-ui-icons/lib/EightKTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10h1.5v1.5H8zm0 2.5h1.5V14H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 1c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 15H10c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1.5v1.5H8V10zm0 2.5h1.5V14H8v-1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "4")], 'EightKTwoTone'); \ No newline at end of file +}, "4")], 'EightKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightMp.js b/packages/material-ui-icons/lib/EightMp.js index 53353ab33eb3b4..6ac89fefd911fb 100644 --- a/packages/material-ui-icons/lib/EightMp.js +++ b/packages/material-ui-icons/lib/EightMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" -}), 'EightMp'); \ No newline at end of file +}), 'EightMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightMpOutlined.js b/packages/material-ui-icons/lib/EightMpOutlined.js index 0e2379bf6401ed..8c914d44ae998c 100644 --- a/packages/material-ui-icons/lib/EightMpOutlined.js +++ b/packages/material-ui-icons/lib/EightMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H13V8h-1.5V6.5zm0 2.5H13v1.5h-1.5V9z" -}, "2")], 'EightMpOutlined'); \ No newline at end of file +}, "2")], 'EightMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightMpRounded.js b/packages/material-ui-icons/lib/EightMpRounded.js index 5fece8fa9373a9..68d32963b48600 100644 --- a/packages/material-ui-icons/lib/EightMpRounded.js +++ b/packages/material-ui-icons/lib/EightMpRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm2.5 11.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5z" -}, "2")], 'EightMpRounded'); \ No newline at end of file +}, "2")], 'EightMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightMpSharp.js b/packages/material-ui-icons/lib/EightMpSharp.js index 3c870dea6bb233..56dedefecb51a4 100644 --- a/packages/material-ui-icons/lib/EightMpSharp.js +++ b/packages/material-ui-icons/lib/EightMpSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm7 2.5h4.5v6H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v1.5h-1.5z" -}, "2")], 'EightMpSharp'); \ No newline at end of file +}, "2")], 'EightMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightMpTwoTone.js b/packages/material-ui-icons/lib/EightMpTwoTone.js index 0dffdd90202f32..e8d129b1808bdd 100644 --- a/packages/material-ui-icons/lib/EightMpTwoTone.js +++ b/packages/material-ui-icons/lib/EightMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5zm0 2.5H13v1.5h-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm-4 7c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H13V8h-1.5V6.5zm0 2.5H13v1.5h-1.5V9z" -}, "4")], 'EightMpTwoTone'); \ No newline at end of file +}, "4")], 'EightMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightteenMp.js b/packages/material-ui-icons/lib/EightteenMp.js index 694339a22a80eb..b06c06d9b09d3d 100644 --- a/packages/material-ui-icons/lib/EightteenMp.js +++ b/packages/material-ui-icons/lib/EightteenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-3 0H15V9h-1.5v1.5zm0-2.5H15V6.5h-1.5V8zm2 6H17v1.5h-1.5z" -}), 'EightteenMp'); \ No newline at end of file +}), 'EightteenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightteenMpOutlined.js b/packages/material-ui-icons/lib/EightteenMpOutlined.js index 5b7b57bd4fef2b..aadc5ab8ec512d 100644 --- a/packages/material-ui-icons/lib/EightteenMpOutlined.js +++ b/packages/material-ui-icons/lib/EightteenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm4.5 0h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H15V8h-1.5V6.5zm0 2.5H15v1.5h-1.5V9z" -}, "2")], 'EightteenMpOutlined'); \ No newline at end of file +}, "2")], 'EightteenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightteenMpRounded.js b/packages/material-ui-icons/lib/EightteenMpRounded.js index d49b81d619d873..4fd1c7d8b850a6 100644 --- a/packages/material-ui-icons/lib/EightteenMpRounded.js +++ b/packages/material-ui-icons/lib/EightteenMpRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 9H15v1.5h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 10.5v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1zm6 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z" -}, "2")], 'EightteenMpRounded'); \ No newline at end of file +}, "2")], 'EightteenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightteenMpSharp.js b/packages/material-ui-icons/lib/EightteenMpSharp.js index 0371c5a613c6e0..0dc312874c133c 100644 --- a/packages/material-ui-icons/lib/EightteenMpSharp.js +++ b/packages/material-ui-icons/lib/EightteenMpSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 9H15v1.5h-1.5zm0-2.5H15V8h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 2.5h4.5v6H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "2")], 'EightteenMpSharp'); \ No newline at end of file +}, "2")], 'EightteenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EightteenMpTwoTone.js b/packages/material-ui-icons/lib/EightteenMpTwoTone.js index 2c14d50cfe14ab..be0abc05ab5aed 100644 --- a/packages/material-ui-icons/lib/EightteenMpTwoTone.js +++ b/packages/material-ui-icons/lib/EightteenMpTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 6.5H15V8h-1.5zm0 2.5H15v1.5h-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4zm-5-1h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm4.5 0h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H15V8h-1.5V6.5zm0 2.5H15v1.5h-1.5V9z" -}, "5")], 'EightteenMpTwoTone'); \ No newline at end of file +}, "5")], 'EightteenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Eject.js b/packages/material-ui-icons/lib/Eject.js index a3d9148f7971ff..846399eaf86e91 100644 --- a/packages/material-ui-icons/lib/Eject.js +++ b/packages/material-ui-icons/lib/Eject.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17h14v2H5zm7-12L5.33 15h13.34z" -}), 'Eject'); \ No newline at end of file +}), 'Eject'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EjectOutlined.js b/packages/material-ui-icons/lib/EjectOutlined.js index fed8090db16229..66aabc7ac72c30 100644 --- a/packages/material-ui-icons/lib/EjectOutlined.js +++ b/packages/material-ui-icons/lib/EjectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6 2.93 4.4H9.07L12 8.6z" -}), 'EjectOutlined'); \ No newline at end of file +}), 'EjectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EjectRounded.js b/packages/material-ui-icons/lib/EjectRounded.js index 661b260f348b5a..6bed8e5d4b2fdb 100644 --- a/packages/material-ui-icons/lib/EjectRounded.js +++ b/packages/material-ui-icons/lib/EjectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 17h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm5.17-10.75-4.8 7.2c-.45.66.03 1.55.83 1.55h9.6c.8 0 1.28-.89.83-1.55l-4.8-7.2c-.39-.6-1.27-.6-1.66 0z" -}), 'EjectRounded'); \ No newline at end of file +}), 'EjectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EjectSharp.js b/packages/material-ui-icons/lib/EjectSharp.js index 12655b632b8900..94a4375c856f6e 100644 --- a/packages/material-ui-icons/lib/EjectSharp.js +++ b/packages/material-ui-icons/lib/EjectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17h14v2H5v-2zm7-12L5.33 15h13.34L12 5z" -}), 'EjectSharp'); \ No newline at end of file +}), 'EjectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EjectTwoTone.js b/packages/material-ui-icons/lib/EjectTwoTone.js index 0f6a5cb2375592..d8aaf3b5058e2f 100644 --- a/packages/material-ui-icons/lib/EjectTwoTone.js +++ b/packages/material-ui-icons/lib/EjectTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.6 9.07 13h5.86z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6 2.93 4.4H9.07L12 8.6z" -}, "1")], 'EjectTwoTone'); \ No newline at end of file +}, "1")], 'EjectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Elderly.js b/packages/material-ui-icons/lib/Elderly.js index 1c4701490c9530..3dbe4d76df1b94 100644 --- a/packages/material-ui-icons/lib/Elderly.js +++ b/packages/material-ui-icons/lib/Elderly.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" -}), 'Elderly'); \ No newline at end of file +}), 'Elderly'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElderlyOutlined.js b/packages/material-ui-icons/lib/ElderlyOutlined.js index b2f485c1c080c5..adf656e2482e45 100644 --- a/packages/material-ui-icons/lib/ElderlyOutlined.js +++ b/packages/material-ui-icons/lib/ElderlyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" -}), 'ElderlyOutlined'); \ No newline at end of file +}), 'ElderlyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElderlyRounded.js b/packages/material-ui-icons/lib/ElderlyRounded.js index 01f06d1beb3fcf..8eb69ef144b0a5 100644 --- a/packages/material-ui-icons/lib/ElderlyRounded.js +++ b/packages/material-ui-icons/lib/ElderlyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.03 7.5c-1.57.01-2.94-.9-3.6-2.21l-.79-1.67c-.17-.35-.44-.65-.8-.85-.62-.36-1.35-.34-1.94-.03v-.01l-4.39 2.5C6.39 9.08 6 9.74 6 10.46V13c0 .55.45 1 1 1s1-.45 1-1v-2.54l1.5-.85C9.18 10.71 9 11.85 9 13v5.33L7 21c-.33.44-.24 1.07.2 1.4.44.33 1.07.24 1.4-.2l2.04-2.72c.23-.31.37-.69.4-1.08l.18-2.94L13 18v4c0 .55.45 1 1 1s1-.45 1-1v-4.87c0-.41-.13-.81-.36-1.15l-1.6-2.29v-.01c-.11-1.16.07-2.32.46-3.4.81 1.23 2.05 2.14 3.51 2.52v.2c0 .28.22.5.5.5s.49-.22.49-.5v-.5c0-.28.22-.5.5-.5s.5.22.5.5v10c0 .28.22.5.5.5s.5-.22.5-.5v-10c0-.82-.66-1.51-1.47-1.5z" -}), 'ElderlyRounded'); \ No newline at end of file +}), 'ElderlyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElderlySharp.js b/packages/material-ui-icons/lib/ElderlySharp.js index d2c60bcd56dc67..b5d1015b8d0752 100644 --- a/packages/material-ui-icons/lib/ElderlySharp.js +++ b/packages/material-ui-icons/lib/ElderlySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" -}), 'ElderlySharp'); \ No newline at end of file +}), 'ElderlySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElderlyTwoTone.js b/packages/material-ui-icons/lib/ElderlyTwoTone.js index 4a72ca745ad020..5b6516bd2aac36 100644 --- a/packages/material-ui-icons/lib/ElderlyTwoTone.js +++ b/packages/material-ui-icons/lib/ElderlyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" -}), 'ElderlyTwoTone'); \ No newline at end of file +}), 'ElderlyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricBike.js b/packages/material-ui-icons/lib/ElectricBike.js index 374c65381d011c..638f577e66b02f 100644 --- a/packages/material-ui-icons/lib/ElectricBike.js +++ b/packages/material-ui-icons/lib/ElectricBike.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H12v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" -}), 'ElectricBike'); \ No newline at end of file +}), 'ElectricBike'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricBikeOutlined.js b/packages/material-ui-icons/lib/ElectricBikeOutlined.js index 3ec631b042a607..f077e2667de3c3 100644 --- a/packages/material-ui-icons/lib/ElectricBikeOutlined.js +++ b/packages/material-ui-icons/lib/ElectricBikeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H12v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" -}), 'ElectricBikeOutlined'); \ No newline at end of file +}), 'ElectricBikeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricBikeRounded.js b/packages/material-ui-icons/lib/ElectricBikeRounded.js index c483fd8099c3e5..910a038401d52f 100644 --- a/packages/material-ui-icons/lib/ElectricBikeRounded.js +++ b/packages/material-ui-icons/lib/ElectricBikeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H13c-.55 0-1 .45-1 1s.45 1 1 1h1.6l1.46 4h-4.81l-.36-1h.09c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1h.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM6 13h1.82c-.42 1.23-1.6 2.08-3.02 1.99-1.49-.09-2.73-1.35-2.8-2.85C1.93 10.39 3.27 9 5 9c1.33 0 2.42.83 2.82 2H6c-.55 0-1 .45-1 1s.45 1 1 1zm8.1-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.78 4c-1.54-.06-2.84-1.37-2.88-2.92-.02-.96.39-1.8 1.05-2.36l.62 1.7c.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28l-.63-1.73.01-.01c1.71-.04 3.07 1.29 3.07 3 0 1.72-1.38 3.06-3.12 3zM11 20H7l6 3v-2h4l-6-3z" -}), 'ElectricBikeRounded'); \ No newline at end of file +}), 'ElectricBikeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricBikeSharp.js b/packages/material-ui-icons/lib/ElectricBikeSharp.js index 0ab908c7ae8312..63deaef00fbf25 100644 --- a/packages/material-ui-icons/lib/ElectricBikeSharp.js +++ b/packages/material-ui-icons/lib/ElectricBikeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-.82L16 1h-4v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" -}), 'ElectricBikeSharp'); \ No newline at end of file +}), 'ElectricBikeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricBikeTwoTone.js b/packages/material-ui-icons/lib/ElectricBikeTwoTone.js index c1bfc657cbcc82..d6063c52292a4e 100644 --- a/packages/material-ui-icons/lib/ElectricBikeTwoTone.js +++ b/packages/material-ui-icons/lib/ElectricBikeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H12v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" -}), 'ElectricBikeTwoTone'); \ No newline at end of file +}), 'ElectricBikeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricCar.js b/packages/material-ui-icons/lib/ElectricCar.js index 10f101c2745b73..3fc9a6e2f51f44 100644 --- a/packages/material-ui-icons/lib/ElectricCar.js +++ b/packages/material-ui-icons/lib/ElectricCar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8l-2.08-5.99zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.5-4.5h11L19 7H5zm2 13h4v-2l6 3h-4v2z" -}), 'ElectricCar'); \ No newline at end of file +}), 'ElectricCar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricCarOutlined.js b/packages/material-ui-icons/lib/ElectricCarOutlined.js index 5112bff38f2085..692d72ab58e541 100644 --- a/packages/material-ui-icons/lib/ElectricCarOutlined.js +++ b/packages/material-ui-icons/lib/ElectricCarOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8l-2.08-5.99zM6.85 3h10.29l1.08 3.11H5.77L6.85 3zM19 13H5V8h14v5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "10.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "10.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20h4v-2l6 3h-4v2z" -}, "3")], 'ElectricCarOutlined'); \ No newline at end of file +}, "3")], 'ElectricCarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricCarRounded.js b/packages/material-ui-icons/lib/ElectricCarRounded.js index f9de574638bd79..f5c93e7f0c0a8a 100644 --- a/packages/material-ui-icons/lib/ElectricCarRounded.js +++ b/packages/material-ui-icons/lib/ElectricCarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3.11 7.68c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 16.33 6 15.5V15h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5V8.34c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 7H5zm2 13h4v-2l6 3h-4v2z" -}), 'ElectricCarRounded'); \ No newline at end of file +}), 'ElectricCarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricCarSharp.js b/packages/material-ui-icons/lib/ElectricCarSharp.js index 2d8335cfd35683..d702584a6f23d2 100644 --- a/packages/material-ui-icons/lib/ElectricCarSharp.js +++ b/packages/material-ui-icons/lib/ElectricCarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.58 1H5.43L3 8v9h3v-2h12v2h3V8l-2.42-7zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.5-4.5h11L19 7H5zm2 13h4v-2l6 3h-4v2z" -}), 'ElectricCarSharp'); \ No newline at end of file +}), 'ElectricCarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricCarTwoTone.js b/packages/material-ui-icons/lib/ElectricCarTwoTone.js index 82f391bda10d39..c2610da5595975 100644 --- a/packages/material-ui-icons/lib/ElectricCarTwoTone.js +++ b/packages/material-ui-icons/lib/ElectricCarTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13h14V8H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 12 7.5 12 6 11.33 6 10.5 6.67 9 7.5 9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8l-2.08-5.99zM6.85 3h10.29l1.08 3.11H5.77L6.85 3zM19 13H5V8h14v5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "10.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "10.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20h4v-2l6 3h-4v2z" -}, "4")], 'ElectricCarTwoTone'); \ No newline at end of file +}, "4")], 'ElectricCarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricMoped.js b/packages/material-ui-icons/lib/ElectricMoped.js index beb6699e81fdca..a1e6cd3f3acb52 100644 --- a/packages/material-ui-icons/lib/ElectricMoped.js +++ b/packages/material-ui-icons/lib/ElectricMoped.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}, "1")], 'ElectricMoped'); \ No newline at end of file +}, "1")], 'ElectricMoped'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricMopedOutlined.js b/packages/material-ui-icons/lib/ElectricMopedOutlined.js index bb2b2bf9c8b2c7..6e5a89fc2d0db3 100644 --- a/packages/material-ui-icons/lib/ElectricMopedOutlined.js +++ b/packages/material-ui-icons/lib/ElectricMopedOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM4 12v-1c0-1.1.9-2 2-2h2v3H4zm3 3c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}, "1")], 'ElectricMopedOutlined'); \ No newline at end of file +}, "1")], 'ElectricMopedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricMopedRounded.js b/packages/material-ui-icons/lib/ElectricMopedRounded.js index 7aa3632dd92cad..6300fba420168e 100644 --- a/packages/material-ui-icons/lib/ElectricMopedRounded.js +++ b/packages/material-ui-icons/lib/ElectricMopedRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5c0-1.1-.9-2-2-2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2.65L13.52 12H10V8c0-.55-.45-1-1-1H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm10 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}, "1")], 'ElectricMopedRounded'); \ No newline at end of file +}, "1")], 'ElectricMopedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricMopedSharp.js b/packages/material-ui-icons/lib/ElectricMopedSharp.js index f155b59221461e..4e638c627d2211 100644 --- a/packages/material-ui-icons/lib/ElectricMopedSharp.js +++ b/packages/material-ui-icons/lib/ElectricMopedSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8.35V3h-5v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}, "1")], 'ElectricMopedSharp'); \ No newline at end of file +}, "1")], 'ElectricMopedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricMopedTwoTone.js b/packages/material-ui-icons/lib/ElectricMopedTwoTone.js index 538c92e438de45..b839a12a1ee691 100644 --- a/packages/material-ui-icons/lib/ElectricMopedTwoTone.js +++ b/packages/material-ui-icons/lib/ElectricMopedTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11v1h4V9H6c-1.1 0-2 .9-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm1-3H4v-1c0-1.1.9-2 2-2h2v3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}, "2")], 'ElectricMopedTwoTone'); \ No newline at end of file +}, "2")], 'ElectricMopedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricRickshaw.js b/packages/material-ui-icons/lib/ElectricRickshaw.js index d633420e9ba97f..5847a58df0136f 100644 --- a/packages/material-ui-icons/lib/ElectricRickshaw.js +++ b/packages/material-ui-icons/lib/ElectricRickshaw.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM18.4 9H16V6.12L18.4 9zM3 5h4v4H3V5zm3 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h3V9H9V5h5v8H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}), 'ElectricRickshaw'); \ No newline at end of file +}), 'ElectricRickshaw'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricRickshawOutlined.js b/packages/material-ui-icons/lib/ElectricRickshawOutlined.js index 5a696979755e77..4d473e0be51d03 100644 --- a/packages/material-ui-icons/lib/ElectricRickshawOutlined.js +++ b/packages/material-ui-icons/lib/ElectricRickshawOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM6 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3.83c-.31-.11-.65-.17-1-.17-1.3 0-2.42.84-2.83 2H3v-3h4v1.17zM7 8H3V5h4v3zm7 5H9v-3h3V8H9V5h5v8zm2-6.88L18.4 9H16V6.12zM17.17 13H16v-2h3v.17c-.85.3-1.53.98-1.83 1.83zM20 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}), 'ElectricRickshawOutlined'); \ No newline at end of file +}), 'ElectricRickshawOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricRickshawRounded.js b/packages/material-ui-icons/lib/ElectricRickshawRounded.js index 195470fa1edafb..f76b20fd990581 100644 --- a/packages/material-ui-icons/lib/ElectricRickshawRounded.js +++ b/packages/material-ui-icons/lib/ElectricRickshawRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM18.4 9H16V6.12L18.4 9zM4 5h3v4H3V6c0-.55.45-1 1-1zm2 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H9V5h4c.55 0 1 .45 1 1v7H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}), 'ElectricRickshawRounded'); \ No newline at end of file +}), 'ElectricRickshawRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricRickshawSharp.js b/packages/material-ui-icons/lib/ElectricRickshawSharp.js index dfe515cb4e740b..84b3363f8c9618 100644 --- a/packages/material-ui-icons/lib/ElectricRickshawSharp.js +++ b/packages/material-ui-icons/lib/ElectricRickshawSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.18V9l-5-6H1v12h2.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.48 1.34 1.86 2.25 3.42 1.94 1.16-.23 2.11-1.17 2.33-2.33.31-1.56-.6-2.95-1.94-3.43zM18.4 9H16V6.12L18.4 9zM3 5h4v4H3V5zm3 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h3V9H9V5h5v8H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}), 'ElectricRickshawSharp'); \ No newline at end of file +}), 'ElectricRickshawSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricRickshawTwoTone.js b/packages/material-ui-icons/lib/ElectricRickshawTwoTone.js index aa7a1e86bba8df..30595c25411b8d 100644 --- a/packages/material-ui-icons/lib/ElectricRickshawTwoTone.js +++ b/packages/material-ui-icons/lib/ElectricRickshawTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h.17c.41-1.16 1.53-2 2.83-2 .35 0 .69.06 1 .17V10H3v3zm16-2h-3v2h1.17c.3-.85.98-1.53 1.83-1.83V11z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM6 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3.83c-.31-.11-.65-.17-1-.17-1.3 0-2.42.84-2.83 2H3v-3h4v1.17zM7 8H3V5h4v3zm7 5H9v-3h3V8H9V5h5v8zm2-6.88L18.4 9H16V6.12zM17.17 13H16v-2h3v.17c-.85.3-1.53.98-1.83 1.83zM20 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" -}, "1")], 'ElectricRickshawTwoTone'); \ No newline at end of file +}, "1")], 'ElectricRickshawTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricScooter.js b/packages/material-ui-icons/lib/ElectricScooter.js index eac09fbc79e1b9..77ff087c73c402 100644 --- a/packages/material-ui-icons/lib/ElectricScooter.js +++ b/packages/material-ui-icons/lib/ElectricScooter.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" -}, "1")], 'ElectricScooter'); \ No newline at end of file +}, "1")], 'ElectricScooter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricScooterOutlined.js b/packages/material-ui-icons/lib/ElectricScooterOutlined.js index c82048e6f45a9a..26af30b76551cd 100644 --- a/packages/material-ui-icons/lib/ElectricScooterOutlined.js +++ b/packages/material-ui-icons/lib/ElectricScooterOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" -}, "1")], 'ElectricScooterOutlined'); \ No newline at end of file +}, "1")], 'ElectricScooterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricScooterRounded.js b/packages/material-ui-icons/lib/ElectricScooterRounded.js index 0238b2c90f6dca..d32ac8f5ec6031 100644 --- a/packages/material-ui-icons/lib/ElectricScooterRounded.js +++ b/packages/material-ui-icons/lib/ElectricScooterRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H13c-.55 0-1 .45-1 1s.45 1 1 1h2.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" -}, "1")], 'ElectricScooterRounded'); \ No newline at end of file +}, "1")], 'ElectricScooterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricScooterSharp.js b/packages/material-ui-icons/lib/ElectricScooterSharp.js index 3685433f106e0a..58144824a30c02 100644 --- a/packages/material-ui-icons/lib/ElectricScooterSharp.js +++ b/packages/material-ui-icons/lib/ElectricScooterSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74L17.49 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" -}, "1")], 'ElectricScooterSharp'); \ No newline at end of file +}, "1")], 'ElectricScooterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricScooterTwoTone.js b/packages/material-ui-icons/lib/ElectricScooterTwoTone.js index e6021a832c9bed..3db1d27f7a1a5e 100644 --- a/packages/material-ui-icons/lib/ElectricScooterTwoTone.js +++ b/packages/material-ui-icons/lib/ElectricScooterTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" -}, "1")], 'ElectricScooterTwoTone'); \ No newline at end of file +}, "1")], 'ElectricScooterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricalServices.js b/packages/material-ui-icons/lib/ElectricalServices.js index 5441facf1d7b22..d1c57f5c407d00 100644 --- a/packages/material-ui-icons/lib/ElectricalServices.js +++ b/packages/material-ui-icons/lib/ElectricalServices.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14c0-.55-.45-1-1-1h-2v2h2c.55 0 1-.45 1-1zm-1 3h-2v2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-8-3h-2v4h2c0 1.1.9 2 2 2h3v-8h-3c-1.1 0-2 .9-2 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13c0-1.1.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2z" -}, "1")], 'ElectricalServices'); \ No newline at end of file +}, "1")], 'ElectricalServices'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricalServicesOutlined.js b/packages/material-ui-icons/lib/ElectricalServicesOutlined.js index 7c9540b28e579c..8b2ad9c14e67c0 100644 --- a/packages/material-ui-icons/lib/ElectricalServicesOutlined.js +++ b/packages/material-ui-icons/lib/ElectricalServicesOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14c0-.55-.45-1-1-1h-2v2h2c.55 0 1-.45 1-1zm-1 3h-2v2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-8-3h-2v4h2c0 1.1.9 2 2 2h3v-8h-3c-1.1 0-2 .9-2 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13c0-1.1.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2z" -}, "1")], 'ElectricalServicesOutlined'); \ No newline at end of file +}, "1")], 'ElectricalServicesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricalServicesRounded.js b/packages/material-ui-icons/lib/ElectricalServicesRounded.js index 007a61a5c6eef0..38cc0849bfc466 100644 --- a/packages/material-ui-icons/lib/ElectricalServicesRounded.js +++ b/packages/material-ui-icons/lib/ElectricalServicesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14c0-.55-.45-1-1-1h-2v2h2c.55 0 1-.45 1-1zm-1 3h-2v2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-4-5h-2c-1.1 0-2 .9-2 2h-1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h1c0 1.1.9 2 2 2h2c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM5 13c0-1.1.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2z" -}), 'ElectricalServicesRounded'); \ No newline at end of file +}), 'ElectricalServicesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricalServicesSharp.js b/packages/material-ui-icons/lib/ElectricalServicesSharp.js index 8a4a85c69fa151..59c66b70a3211c 100644 --- a/packages/material-ui-icons/lib/ElectricalServicesSharp.js +++ b/packages/material-ui-icons/lib/ElectricalServicesSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h3v2h-3zm-6-1v2h-2v4h2v2h5v-8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h7V4H4v2h6v3H3v8h6v-2H5zm13 6h3v2h-3z" -}, "1")], 'ElectricalServicesSharp'); \ No newline at end of file +}, "1")], 'ElectricalServicesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElectricalServicesTwoTone.js b/packages/material-ui-icons/lib/ElectricalServicesTwoTone.js index 79f7d9ae10abe4..92717581387e93 100644 --- a/packages/material-ui-icons/lib/ElectricalServicesTwoTone.js +++ b/packages/material-ui-icons/lib/ElectricalServicesTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15h-2v-2h2c.55 0 1 .45 1 1s-.45 1-1 1zm0 4h-2v-2h2c.55 0 1 .45 1 1s-.45 1-1 1zm-6-7c-1.1 0-2 .9-2 2h-2v4h2c0 1.1.9 2 2 2h3v-8h-3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0 .55.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2s.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1z" -}, "1")], 'ElectricalServicesTwoTone'); \ No newline at end of file +}, "1")], 'ElectricalServicesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Elevator.js b/packages/material-ui-icons/lib/Elevator.js index 591982980bece6..c3b26e0821c32e 100644 --- a/packages/material-ui-icons/lib/Elevator.js +++ b/packages/material-ui-icons/lib/Elevator.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.5 6c.69 0 1.25.56 1.25 1.25S9.19 8.5 8.5 8.5s-1.25-.56-1.25-1.25S7.81 6 8.5 6zm2.5 8h-1v4H7v-4H6v-2.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2V14zm4.5 3L13 13h5l-2.5 4zM13 11l2.5-4 2.5 4h-5z" -}), 'Elevator'); \ No newline at end of file +}), 'Elevator'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevatorOutlined.js b/packages/material-ui-icons/lib/ElevatorOutlined.js index 78af5ca7a97268..f5edd9b389a626 100644 --- a/packages/material-ui-icons/lib/ElevatorOutlined.js +++ b/packages/material-ui-icons/lib/ElevatorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4h3zM8.5 8.5c.69 0 1.25-.56 1.25-1.25S9.19 6 8.5 6s-1.25.56-1.25 1.25S7.81 8.5 8.5 8.5zM18 11l-2.5-4-2.5 4h5zm-5 2 2.5 4 2.5-4h-5z" -}), 'ElevatorOutlined'); \ No newline at end of file +}), 'ElevatorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevatorRounded.js b/packages/material-ui-icons/lib/ElevatorRounded.js index aa0097938f7d3e..24c0aecea13cfe 100644 --- a/packages/material-ui-icons/lib/ElevatorRounded.js +++ b/packages/material-ui-icons/lib/ElevatorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.5 6c.69 0 1.25.56 1.25 1.25S9.19 8.5 8.5 8.5s-1.25-.56-1.25-1.25S7.81 6 8.5 6zm2.5 7c0 .55-.45 1-1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c-.55 0-1-.45-1-1v-1.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2V13zm6.52.76-1.6 2.56c-.2.31-.65.31-.85 0l-1.6-2.56c-.2-.33.04-.76.43-.76h3.2c.39 0 .63.43.42.76zM17.1 11h-3.2c-.39 0-.63-.43-.42-.77l1.6-2.56c.2-.31.65-.31.85 0l1.6 2.56c.2.34-.04.77-.43.77z" -}), 'ElevatorRounded'); \ No newline at end of file +}), 'ElevatorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevatorSharp.js b/packages/material-ui-icons/lib/ElevatorSharp.js index 9274ab4bdb5a0a..1ce0f174850e07 100644 --- a/packages/material-ui-icons/lib/ElevatorSharp.js +++ b/packages/material-ui-icons/lib/ElevatorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM8.5 6c.69 0 1.25.56 1.25 1.25S9.19 8.5 8.5 8.5s-1.25-.56-1.25-1.25S7.81 6 8.5 6zm2.5 8h-1v4H7v-4H6V9.5h5V14zm4.5 3L13 13h5l-2.5 4zM13 11l2.5-4 2.5 4h-5z" -}), 'ElevatorSharp'); \ No newline at end of file +}), 'ElevatorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevatorTwoTone.js b/packages/material-ui-icons/lib/ElevatorTwoTone.js index 46ed911ef5992a..7353af50e1846d 100644 --- a/packages/material-ui-icons/lib/ElevatorTwoTone.js +++ b/packages/material-ui-icons/lib/ElevatorTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m-9 13v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4h3zM8.5 8.5c.69 0 1.25-.56 1.25-1.25S9.19 6 8.5 6s-1.25.56-1.25 1.25S7.81 8.5 8.5 8.5zM18 11l-2.5-4-2.5 4h5zm-5 2 2.5 4 2.5-4h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4h3zM8.5 8.5c.69 0 1.25-.56 1.25-1.25S9.19 6 8.5 6s-1.25.56-1.25 1.25S7.81 8.5 8.5 8.5zM18 11l-2.5-4-2.5 4h5zm-5 2 2.5 4 2.5-4h-5z" -}, "1")], 'ElevatorTwoTone'); \ No newline at end of file +}, "1")], 'ElevatorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevenMp.js b/packages/material-ui-icons/lib/ElevenMp.js index 5dcad944dfea0c..162df765e34a75 100644 --- a/packages/material-ui-icons/lib/ElevenMp.js +++ b/packages/material-ui-icons/lib/ElevenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 5.5v6H9.5V7H8V5.5h3zm5 0v6h-1.5V7H13V5.5h3zm-.5 8.5H17v1.5h-1.5z" -}), 'ElevenMp'); \ No newline at end of file +}), 'ElevenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevenMpOutlined.js b/packages/material-ui-icons/lib/ElevenMpOutlined.js index 46f2561bb0e378..18f37ea089a784 100644 --- a/packages/material-ui-icons/lib/ElevenMpOutlined.js +++ b/packages/material-ui-icons/lib/ElevenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 11.5H11v-6H8V7h1.5zm5 0H16v-6h-3V7h1.5z" -}, "2")], 'ElevenMpOutlined'); \ No newline at end of file +}, "2")], 'ElevenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevenMpRounded.js b/packages/material-ui-icons/lib/ElevenMpRounded.js index 97429146d9045e..1993180154a2c6 100644 --- a/packages/material-ui-icons/lib/ElevenMpRounded.js +++ b/packages/material-ui-icons/lib/ElevenMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.75 5.5H10c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C8.34 7 8 6.66 8 6.25s.34-.75.75-.75zm3.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-11.5c0-.41.34-.75.75-.75H15c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'ElevenMpRounded'); \ No newline at end of file +}, "1")], 'ElevenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevenMpSharp.js b/packages/material-ui-icons/lib/ElevenMpSharp.js index e97e77c7ace9fe..bc64187f470286 100644 --- a/packages/material-ui-icons/lib/ElevenMpSharp.js +++ b/packages/material-ui-icons/lib/ElevenMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm5 2.5h3v6H9.5V7H8V5.5zm4.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'ElevenMpSharp'); \ No newline at end of file +}, "1")], 'ElevenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ElevenMpTwoTone.js b/packages/material-ui-icons/lib/ElevenMpTwoTone.js index 7e1688d89ed962..35c8663de25924 100644 --- a/packages/material-ui-icons/lib/ElevenMpTwoTone.js +++ b/packages/material-ui-icons/lib/ElevenMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-5-8h3v6h-1.5V7H13V5.5zm-5 0h3v6H9.5V7H8V5.5zm-2 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 11.5H11v-6H8V7h1.5zm5 0H16v-6h-3V7h1.5z" -}, "4")], 'ElevenMpTwoTone'); \ No newline at end of file +}, "4")], 'ElevenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Email.js b/packages/material-ui-icons/lib/Email.js index 7e9834c25bbc57..09013753bdf218 100644 --- a/packages/material-ui-icons/lib/Email.js +++ b/packages/material-ui-icons/lib/Email.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" -}), 'Email'); \ No newline at end of file +}), 'Email'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmailOutlined.js b/packages/material-ui-icons/lib/EmailOutlined.js index 1c51f7ee5b8900..a05b6b27dd2df0 100644 --- a/packages/material-ui-icons/lib/EmailOutlined.js +++ b/packages/material-ui-icons/lib/EmailOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" -}), 'EmailOutlined'); \ No newline at end of file +}), 'EmailOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmailRounded.js b/packages/material-ui-icons/lib/EmailRounded.js index 66b7c746e9802c..08cc3f63df2208 100644 --- a/packages/material-ui-icons/lib/EmailRounded.js +++ b/packages/material-ui-icons/lib/EmailRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-7.07 4.42c-.32.2-.74.2-1.06 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" -}), 'EmailRounded'); \ No newline at end of file +}), 'EmailRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmailSharp.js b/packages/material-ui-icons/lib/EmailSharp.js index 93d7c16b78fea0..8fe2e059556278 100644 --- a/packages/material-ui-icons/lib/EmailSharp.js +++ b/packages/material-ui-icons/lib/EmailSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" -}), 'EmailSharp'); \ No newline at end of file +}), 'EmailSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmailTwoTone.js b/packages/material-ui-icons/lib/EmailTwoTone.js index f12f47aa6e4224..68dfc2d89891a6 100644 --- a/packages/material-ui-icons/lib/EmailTwoTone.js +++ b/packages/material-ui-icons/lib/EmailTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 8-8 5-8-5v10h16zm0-2H4l8 4.99z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM20 6l-8 4.99L4 6h16zM4 8l8 5 8-5v10H4V8z" -}, "1")], 'EmailTwoTone'); \ No newline at end of file +}, "1")], 'EmailTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEmotions.js b/packages/material-ui-icons/lib/EmojiEmotions.js index f0477f028e626d..1c8fb518474ae9 100644 --- a/packages/material-ui-icons/lib/EmojiEmotions.js +++ b/packages/material-ui-icons/lib/EmojiEmotions.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'EmojiEmotions'); \ No newline at end of file +}), 'EmojiEmotions'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEmotionsOutlined.js b/packages/material-ui-icons/lib/EmojiEmotionsOutlined.js index 81ae61750894d9..b9c1d86202d962 100644 --- a/packages/material-ui-icons/lib/EmojiEmotionsOutlined.js +++ b/packages/material-ui-icons/lib/EmojiEmotionsOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18c2.28 0 4.22-1.66 5-4H7c.78 2.34 2.72 4 5 4z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "3")], 'EmojiEmotionsOutlined'); \ No newline at end of file +}, "3")], 'EmojiEmotionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEmotionsRounded.js b/packages/material-ui-icons/lib/EmojiEmotionsRounded.js index 01706aa53c244d..6a901ee260607e 100644 --- a/packages/material-ui-icons/lib/EmojiEmotionsRounded.js +++ b/packages/material-ui-icons/lib/EmojiEmotionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm8.21 6.72C15.8 16.67 14.04 18 12 18s-3.8-1.33-4.71-3.28c-.16-.33.08-.72.45-.72h8.52c.37 0 .61.39.45.72zM15.5 11c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'EmojiEmotionsRounded'); \ No newline at end of file +}), 'EmojiEmotionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEmotionsSharp.js b/packages/material-ui-icons/lib/EmojiEmotionsSharp.js index 60895199ea793e..ce5a4d1d86afbc 100644 --- a/packages/material-ui-icons/lib/EmojiEmotionsSharp.js +++ b/packages/material-ui-icons/lib/EmojiEmotionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'EmojiEmotionsSharp'); \ No newline at end of file +}), 'EmojiEmotionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEmotionsTwoTone.js b/packages/material-ui-icons/lib/EmojiEmotionsTwoTone.js index 928b971c208103..a9063b927dd4e6 100644 --- a/packages/material-ui-icons/lib/EmojiEmotionsTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiEmotionsTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8 8-3.58 8-8zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18c2.28 0 4.22-1.66 5-4H7c.78 2.34 2.72 4 5 4z" -}, "4")], 'EmojiEmotionsTwoTone'); \ No newline at end of file +}, "4")], 'EmojiEmotionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEvents.js b/packages/material-ui-icons/lib/EmojiEvents.js index 7ab56e1b1c56b2..a002a00318b495 100644 --- a/packages/material-ui-icons/lib/EmojiEvents.js +++ b/packages/material-ui-icons/lib/EmojiEvents.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z" -}), 'EmojiEvents'); \ No newline at end of file +}), 'EmojiEvents'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEventsOutlined.js b/packages/material-ui-icons/lib/EmojiEventsOutlined.js index 5da59dae3c02df..61e3ce8b3ba8f4 100644 --- a/packages/material-ui-icons/lib/EmojiEventsOutlined.js +++ b/packages/material-ui-icons/lib/EmojiEventsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm7 6c-1.65 0-3-1.35-3-3V5h6v6c0 1.65-1.35 3-3 3zm7-6c0 1.3-.84 2.4-2 2.82V7h2v1z" -}), 'EmojiEventsOutlined'); \ No newline at end of file +}), 'EmojiEventsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEventsRounded.js b/packages/material-ui-icons/lib/EmojiEventsRounded.js index 2597dbad0f542d..043328627facee 100644 --- a/packages/material-ui-icons/lib/EmojiEventsRounded.js +++ b/packages/material-ui-icons/lib/EmojiEventsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5h-2V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H8c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1h-3v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z" -}), 'EmojiEventsRounded'); \ No newline at end of file +}), 'EmojiEventsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEventsSharp.js b/packages/material-ui-icons/lib/EmojiEventsSharp.js index ecb6eed185715b..8e14827fe19ad2 100644 --- a/packages/material-ui-icons/lib/EmojiEventsSharp.js +++ b/packages/material-ui-icons/lib/EmojiEventsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z" -}), 'EmojiEventsSharp'); \ No newline at end of file +}), 'EmojiEventsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiEventsTwoTone.js b/packages/material-ui-icons/lib/EmojiEventsTwoTone.js index ea83354b34821a..a21f165b0d17af 100644 --- a/packages/material-ui-icons/lib/EmojiEventsTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiEventsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c-1.65 0-3-1.35-3-3V5h6v6c0 1.65-1.35 3-3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm7 6c-1.65 0-3-1.35-3-3V5h6v6c0 1.65-1.35 3-3 3zm7-6c0 1.3-.84 2.4-2 2.82V7h2v1z" -}, "1")], 'EmojiEventsTwoTone'); \ No newline at end of file +}, "1")], 'EmojiEventsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFlags.js b/packages/material-ui-icons/lib/EmojiFlags.js index f631c7a0d1f3d1..f68a9c530320f9 100644 --- a/packages/material-ui-icons/lib/EmojiFlags.js +++ b/packages/material-ui-icons/lib/EmojiFlags.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" -}), 'EmojiFlags'); \ No newline at end of file +}), 'EmojiFlags'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFlagsOutlined.js b/packages/material-ui-icons/lib/EmojiFlagsOutlined.js index 7e0184681090e3..dd4c000f8ef96f 100644 --- a/packages/material-ui-icons/lib/EmojiFlagsOutlined.js +++ b/packages/material-ui-icons/lib/EmojiFlagsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" -}), 'EmojiFlagsOutlined'); \ No newline at end of file +}), 'EmojiFlagsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFlagsRounded.js b/packages/material-ui-icons/lib/EmojiFlagsRounded.js index c4264936ad5a9e..cb31e32655b83d 100644 --- a/packages/material-ui-icons/lib/EmojiFlagsRounded.js +++ b/packages/material-ui-icons/lib/EmojiFlagsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-5l-.72-1.45c-.17-.34-.52-.55-.9-.55H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V20c0 .55.45 1 1 1s1-.45 1-1v-3h5l.72 1.45c.17.34.52.55.89.55H19c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1zm-1 8h-4l-1-2H7V9h5l1 2h5v6z" -}), 'EmojiFlagsRounded'); \ No newline at end of file +}), 'EmojiFlagsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFlagsSharp.js b/packages/material-ui-icons/lib/EmojiFlagsSharp.js index d61a0152458ecb..5b35c8cf5b01b1 100644 --- a/packages/material-ui-icons/lib/EmojiFlagsSharp.js +++ b/packages/material-ui-icons/lib/EmojiFlagsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" -}), 'EmojiFlagsSharp'); \ No newline at end of file +}), 'EmojiFlagsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFlagsTwoTone.js b/packages/material-ui-icons/lib/EmojiFlagsTwoTone.js index 65ac6f533e925f..1c5ed61ca29fef 100644 --- a/packages/material-ui-icons/lib/EmojiFlagsTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiFlagsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9H7v6h6l1 2h4v-6h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" -}, "1")], 'EmojiFlagsTwoTone'); \ No newline at end of file +}, "1")], 'EmojiFlagsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFoodBeverage.js b/packages/material-ui-icons/lib/EmojiFoodBeverage.js index 2db5487381a7c7..815e421fe2e8f7 100644 --- a/packages/material-ui-icons/lib/EmojiFoodBeverage.js +++ b/packages/material-ui-icons/lib/EmojiFoodBeverage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H9v2.4l1.81 1.45c.12.09.19.24.19.39v4.26c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5V7.24c0-.15.07-.3.19-.39L8 5.4V3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" -}), 'EmojiFoodBeverage'); \ No newline at end of file +}), 'EmojiFoodBeverage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFoodBeverageOutlined.js b/packages/material-ui-icons/lib/EmojiFoodBeverageOutlined.js index 821c04d76ec47b..e08392290dad55 100644 --- a/packages/material-ui-icons/lib/EmojiFoodBeverageOutlined.js +++ b/packages/material-ui-icons/lib/EmojiFoodBeverageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19h18v2H2zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h3v1.4L7.19 7.85c-.12.09-.19.24-.19.39v4.26c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5V8.24c0-.15-.07-.3-.19-.39L10 6.4V5h6v8zM9.5 7.28l1.5 1.2V12H8V8.48l1.5-1.2zM20 8h-2V5h2v3z" -}), 'EmojiFoodBeverageOutlined'); \ No newline at end of file +}), 'EmojiFoodBeverageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFoodBeverageRounded.js b/packages/material-ui-icons/lib/EmojiFoodBeverageRounded.js index 8faac847683d95..1ccbc50189db12 100644 --- a/packages/material-ui-icons/lib/EmojiFoodBeverageRounded.js +++ b/packages/material-ui-icons/lib/EmojiFoodBeverageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H3c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm1-16H9v2.4l1.81 1.45c.12.09.19.24.19.39v4.26c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5V7.24c0-.15.07-.3.19-.39L8 5.4V3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3z" -}), 'EmojiFoodBeverageRounded'); \ No newline at end of file +}), 'EmojiFoodBeverageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFoodBeverageSharp.js b/packages/material-ui-icons/lib/EmojiFoodBeverageSharp.js index 3f5f1e51a0ea2b..2d01b471c4d3d0 100644 --- a/packages/material-ui-icons/lib/EmojiFoodBeverageSharp.js +++ b/packages/material-ui-icons/lib/EmojiFoodBeverageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19h18v2H2zM20 3H9v2.4L11 7v5H6V7l2-1.6V3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3z" -}), 'EmojiFoodBeverageSharp'); \ No newline at end of file +}), 'EmojiFoodBeverageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiFoodBeverageTwoTone.js b/packages/material-ui-icons/lib/EmojiFoodBeverageTwoTone.js index bb11465cfd2762..a6144276127290 100644 --- a/packages/material-ui-icons/lib/EmojiFoodBeverageTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiFoodBeverageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 6.4 1.81 1.45c.12.09.19.24.19.39v4.26c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5V8.24c0-.15.07-.3.19-.39L9 6.4V5H6v8c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5h-6v1.4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19h18v2H2zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zM9.5 7.28l1.5 1.2V12H8V8.48l1.5-1.2zM16 13c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h3v1.4L7.19 7.85c-.12.09-.19.24-.19.39v4.26c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5V8.24c0-.15-.07-.3-.19-.39L10 6.4V5h6v8zm4-5h-2V5h2v3z" -}, "1")], 'EmojiFoodBeverageTwoTone'); \ No newline at end of file +}, "1")], 'EmojiFoodBeverageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiNature.js b/packages/material-ui-icons/lib/EmojiNature.js index c5ed29d37794ec..bc83514ceabe8f 100644 --- a/packages/material-ui-icons/lib/EmojiNature.js +++ b/packages/material-ui-icons/lib/EmojiNature.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91s2.57 1.38 3.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-8.82 3.78c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" -}), 'EmojiNature'); \ No newline at end of file +}), 'EmojiNature'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiNatureOutlined.js b/packages/material-ui-icons/lib/EmojiNatureOutlined.js index 1fcacbb5ab1bcc..db643cf7ff4038 100644 --- a/packages/material-ui-icons/lib/EmojiNatureOutlined.js +++ b/packages/material-ui-icons/lib/EmojiNatureOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17l-.5.5-1.33-.5c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91.78.78 1.8 1.17 2.83 1.17.37 0 .73-.07 1.09-.17.29.42.68.77 1.16 1 .41.2.84.3 1.28.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.49-1.3.5-.5c.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-5.91 8.31c-.15.04-.3.06-.46.06-.53 0-1.04-.21-1.41-.59-.38-.38-.59-.88-.59-1.41 0-.16.03-.32.06-.47.14.01.28.03.42.03.85 0 1.68-.2 2.44-.48-.32.89-.54 1.87-.46 2.86zm-2.91-4.53c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" -}), 'EmojiNatureOutlined'); \ No newline at end of file +}), 'EmojiNatureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiNatureRounded.js b/packages/material-ui-icons/lib/EmojiNatureRounded.js index 1e05a322a1a8e2..f3a85f0c5188d0 100644 --- a/packages/material-ui-icons/lib/EmojiNatureRounded.js +++ b/packages/material-ui-icons/lib/EmojiNatureRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2.5 5h-1.09c-.19-.54-.49-1.05-.93-1.49s-.94-.73-1.48-.92V8.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.88c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91s2.57 1.38 3.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17h.88c.28 0 .5-.22.5-.5-.01-.29-.23-.51-.51-.51zM4.67 14.29c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" -}), 'EmojiNatureRounded'); \ No newline at end of file +}), 'EmojiNatureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiNatureSharp.js b/packages/material-ui-icons/lib/EmojiNatureSharp.js index c50e1ac9534b28..0de41e467fbea2 100644 --- a/packages/material-ui-icons/lib/EmojiNatureSharp.js +++ b/packages/material-ui-icons/lib/EmojiNatureSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91s2.57 1.38 3.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-8.82 3.78c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" -}), 'EmojiNatureSharp'); \ No newline at end of file +}), 'EmojiNatureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiNatureTwoTone.js b/packages/material-ui-icons/lib/EmojiNatureTwoTone.js index 6a10fd0aa1acf5..15204d29891164 100644 --- a/packages/material-ui-icons/lib/EmojiNatureTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiNatureTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.94 4.88c-.19-.55-.75-.92-1.36-.88h-.98l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-.98c-.61-.04-1.16.32-1.35.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.5.37 1.17.35 1.64-.06l.81-.7.81.7c.47.4 1.15.43 1.64.06.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.1 17.9c.53.53 1.27.69 1.94.5-.03-1.19.35-2.37.92-3.36-1 .57-2.17.95-3.36.92-.19.67-.02 1.41.5 1.94zm3.55-6.35 1.61.66c.25.1.44.3.54.54l.66 1.61c.75-.78.74-2.01-.03-2.78-.77-.78-2-.78-2.78-.03z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.86 12c-.17-.67-.5-1.31-1.03-1.84-.52-.52-1.16-.85-1.83-1.02V7h-1v2c-1.01.01-2.02.39-2.79 1.16l-.56.56-1.53-.63c-1.52-.63-3.27.1-3.89 1.62-.6 1.46.05 3.11 1.44 3.8-.33 1.31 0 2.76 1.03 3.79 1.03 1.03 2.48 1.36 3.79 1.03.69 1.39 2.34 2.04 3.8 1.44 1.52-.63 2.25-2.37 1.62-3.89l-.63-1.53.56-.56C14.61 15.02 15 14.01 15 13h2v-1h-2.14zM4.58 13.8c-.51-.21-.75-.79-.54-1.3.21-.51.79-.75 1.3-.54l2.92 1.2c-1.04.68-2.43 1.15-3.68.64zm3.46 4.6c-.67.19-1.41.02-1.94-.5-.53-.53-.69-1.27-.5-1.94 1.19.03 2.37-.35 3.36-.92-.57.99-.95 2.17-.92 3.36zm3.46 1.56c-.51.21-1.09-.03-1.3-.54-.51-1.25-.04-2.64.64-3.67l1.2 2.92c.21.5-.03 1.09-.54 1.29zm.95-5.61-.66-1.61c-.1-.25-.3-.44-.54-.54l-1.61-.66c.78-.75 2.01-.74 2.78.03.78.77.78 2 .03 2.78z" -}, "3")], 'EmojiNatureTwoTone'); \ No newline at end of file +}, "3")], 'EmojiNatureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiObjects.js b/packages/material-ui-icons/lib/EmojiObjects.js index 098bc94a344342..2f6c329282cc4c 100644 --- a/packages/material-ui-icons/lib/EmojiObjects.js +++ b/packages/material-ui-icons/lib/EmojiObjects.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm-1.5-5.59V14h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.82z" -}), 'EmojiObjects'); \ No newline at end of file +}), 'EmojiObjects'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiObjectsOutlined.js b/packages/material-ui-icons/lib/EmojiObjectsOutlined.js index cad2bd4465adaa..e29accaab1dc50 100644 --- a/packages/material-ui-icons/lib/EmojiObjectsOutlined.js +++ b/packages/material-ui-icons/lib/EmojiObjectsOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 14h-4v-1h4v1zm-4 2v-1h4v1h-4zm5.31-5.26c-.09.08-.16.18-.24.26H8.92c-.08-.09-.15-.19-.24-.27-1.32-1.18-1.91-2.94-1.59-4.7.36-1.94 1.96-3.55 3.89-3.93.34-.07.68-.1 1.02-.1 2.76 0 5 2.24 5 5 0 1.43-.61 2.79-1.69 3.74z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 11h1v3h-1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.6724 9.5808.7071-.7071 2.1214 2.1213-.7071.7071z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.2081 11.7124-.707-.7071 2.1212-2.1214.7071.7072z" -}, "3")], 'EmojiObjectsOutlined'); \ No newline at end of file +}, "3")], 'EmojiObjectsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiObjectsRounded.js b/packages/material-ui-icons/lib/EmojiObjectsRounded.js index 8cc223c9c5fdcf..d21e1c80155899 100644 --- a/packages/material-ui-icons/lib/EmojiObjectsRounded.js +++ b/packages/material-ui-icons/lib/EmojiObjectsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm.5 11h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.83V14zm1 5c-.01 0-.02-.01-.03-.01V19h-2.94v-.01c-.01 0-.02.01-.03.01-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.01 0 .02.01.03.01V18h2.94v.01c.01 0 .02-.01.03-.01.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'EmojiObjectsRounded'); \ No newline at end of file +}), 'EmojiObjectsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiObjectsSharp.js b/packages/material-ui-icons/lib/EmojiObjectsSharp.js index e6ce14954c0200..fbf62cc5deea8f 100644 --- a/packages/material-ui-icons/lib/EmojiObjectsSharp.js +++ b/packages/material-ui-icons/lib/EmojiObjectsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-.42 0-.85.04-1.28.11-2.81.5-5.08 2.75-5.6 5.55-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V21h2.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H16v-4.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm-1.5-5.59V14h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.82z" -}), 'EmojiObjectsSharp'); \ No newline at end of file +}), 'EmojiObjectsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiObjectsTwoTone.js b/packages/material-ui-icons/lib/EmojiObjectsTwoTone.js index 2657650d0061a3..94c52127c6cc22 100644 --- a/packages/material-ui-icons/lib/EmojiObjectsTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiObjectsTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 18h4v1h-4zm0-2h4v1h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm1.31-3.26c-.09.08-.16.18-.24.26H8.92c-.08-.09-.15-.19-.24-.27-1.32-1.18-1.91-2.94-1.59-4.7.36-1.94 1.96-3.55 3.89-3.93.34-.07.68-.1 1.02-.1 2.76 0 5 2.24 5 5 0 1.43-.61 2.79-1.69 3.74z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 11h1v3h-1z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.6724 9.5808.7071-.7071 2.1214 2.1213-.7071.7071z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.2081 11.7124-.707-.7071 2.1212-2.1214.7071.7072z" -}, "4")], 'EmojiObjectsTwoTone'); \ No newline at end of file +}, "4")], 'EmojiObjectsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiPeople.js b/packages/material-ui-icons/lib/EmojiPeople.js index 7170d623682fc8..18f0eb717923cb 100644 --- a/packages/material-ui-icons/lib/EmojiPeople.js +++ b/packages/material-ui-icons/lib/EmojiPeople.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" -}, "1")], 'EmojiPeople'); \ No newline at end of file +}, "1")], 'EmojiPeople'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiPeopleOutlined.js b/packages/material-ui-icons/lib/EmojiPeopleOutlined.js index d967ff07565658..fe91a3b9712fad 100644 --- a/packages/material-ui-icons/lib/EmojiPeopleOutlined.js +++ b/packages/material-ui-icons/lib/EmojiPeopleOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" -}, "1")], 'EmojiPeopleOutlined'); \ No newline at end of file +}, "1")], 'EmojiPeopleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiPeopleRounded.js b/packages/material-ui-icons/lib/EmojiPeopleRounded.js index d085e4355c2467..036e8eb0e0fef4 100644 --- a/packages/material-ui-icons/lib/EmojiPeopleRounded.js +++ b/packages/material-ui-icons/lib/EmojiPeopleRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54c-2.46-.01-4.51-1.8-4.92-4.15-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14C4.53 5.8 6.47 7.95 9 8.71V21c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V10.05l3.24 3.24c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-3.76-3.77z" -}, "1")], 'EmojiPeopleRounded'); \ No newline at end of file +}, "1")], 'EmojiPeopleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiPeopleSharp.js b/packages/material-ui-icons/lib/EmojiPeopleSharp.js index 99ce53ae4c336f..14dbf26879318d 100644 --- a/packages/material-ui-icons/lib/EmojiPeopleSharp.js +++ b/packages/material-ui-icons/lib/EmojiPeopleSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" -}, "1")], 'EmojiPeopleSharp'); \ No newline at end of file +}, "1")], 'EmojiPeopleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiPeopleTwoTone.js b/packages/material-ui-icons/lib/EmojiPeopleTwoTone.js index f0446b2ded8988..e0865967a74e38 100644 --- a/packages/material-ui-icons/lib/EmojiPeopleTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiPeopleTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" -}, "1")], 'EmojiPeopleTwoTone'); \ No newline at end of file +}, "1")], 'EmojiPeopleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiSymbols.js b/packages/material-ui-icons/lib/EmojiSymbols.js index 39cdc09786b10e..eec8c2d9c471d4 100644 --- a/packages/material-ui-icons/lib/EmojiSymbols.js +++ b/packages/material-ui-icons/lib/EmojiSymbols.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" -}, "3")], 'EmojiSymbols'); \ No newline at end of file +}, "3")], 'EmojiSymbols'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiSymbolsOutlined.js b/packages/material-ui-icons/lib/EmojiSymbolsOutlined.js index b6ccdfa34dbca9..c10ec0c9270820 100644 --- a/packages/material-ui-icons/lib/EmojiSymbolsOutlined.js +++ b/packages/material-ui-icons/lib/EmojiSymbolsOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" -}, "3")], 'EmojiSymbolsOutlined'); \ No newline at end of file +}, "3")], 'EmojiSymbolsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiSymbolsRounded.js b/packages/material-ui-icons/lib/EmojiSymbolsRounded.js index f04593ad1ad548..3c5a0e60509174 100644 --- a/packages/material-ui-icons/lib/EmojiSymbolsRounded.js +++ b/packages/material-ui-icons/lib/EmojiSymbolsRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5H4c-.55 0-1 .45-1 1s.45 1 1 1h2v3c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1zm0-3H4c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm10.89 11.11a.9959.9959 0 0 0-1.41 0l-6.36 6.36c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1v3.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.05 7.09c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.71.71-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.48 1.14.72 1.78.72.64 0 1.28-.24 1.77-.73l1.06-1.06.71.71c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71.71-.71zm-4.6-3.89c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.12-.12-.15-.26-.15-.35s.03-.23.15-.35zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.12-.12-.15-.26-.15-.35s.03-.23.15-.35l1.06-1.06.71.71-1.07 1.05z" -}, "3")], 'EmojiSymbolsRounded'); \ No newline at end of file +}, "3")], 'EmojiSymbolsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiSymbolsSharp.js b/packages/material-ui-icons/lib/EmojiSymbolsSharp.js index b59268fa66684d..265c4d9b35afc7 100644 --- a/packages/material-ui-icons/lib/EmojiSymbolsSharp.js +++ b/packages/material-ui-icons/lib/EmojiSymbolsSharp.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" -}, "3")], 'EmojiSymbolsSharp'); \ No newline at end of file +}, "3")], 'EmojiSymbolsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiSymbolsTwoTone.js b/packages/material-ui-icons/lib/EmojiSymbolsTwoTone.js index f4abc0696d0828..be1b08e467350f 100644 --- a/packages/material-ui-icons/lib/EmojiSymbolsTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiSymbolsTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" -}, "3")], 'EmojiSymbolsTwoTone'); \ No newline at end of file +}, "3")], 'EmojiSymbolsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiTransportation.js b/packages/material-ui-icons/lib/EmojiTransportation.js index 384d2775f988be..dd0eb8567400bd 100644 --- a/packages/material-ui-icons/lib/EmojiTransportation.js +++ b/packages/material-ui-icons/lib/EmojiTransportation.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" -}, "2")], 'EmojiTransportation'); \ No newline at end of file +}, "2")], 'EmojiTransportation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiTransportationOutlined.js b/packages/material-ui-icons/lib/EmojiTransportationOutlined.js index b4ab68e263d01f..acf5219e139cca 100644 --- a/packages/material-ui-icons/lib/EmojiTransportationOutlined.js +++ b/packages/material-ui-icons/lib/EmojiTransportationOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" -}, "2")], 'EmojiTransportationOutlined'); \ No newline at end of file +}, "2")], 'EmojiTransportationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiTransportationRounded.js b/packages/material-ui-icons/lib/EmojiTransportationRounded.js index af9684becc9ded..ce161e3bc76812 100644 --- a/packages/material-ui-icons/lib/EmojiTransportationRounded.js +++ b/packages/material-ui-icons/lib/EmojiTransportationRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.99 14.77-1.43-4.11c-.14-.4-.52-.66-.97-.66H12.4c-.46 0-.83.26-.98.66L10 14.77v5.24c0 .55.45.99 1 .99s1-.45 1-1v-1h8v1c0 .55.45 1 1 1s.99-.44 1-.99l-.01-5.24zm-10.38-1.43.69-2c.05-.2.24-.34.46-.34h6.48c.21 0 .4.14.47.34l.69 2c.11.32-.13.66-.47.66h-7.85c-.34 0-.58-.34-.47-.66zm.38 3.66c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4.5V9h1V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v4H3c-.55 0-1 .45-1 1v12h1V9.5c0-.28.22-.5.5-.5h4c.28 0 .5-.22.5-.5v-4c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" -}, "2")], 'EmojiTransportationRounded'); \ No newline at end of file +}, "2")], 'EmojiTransportationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiTransportationSharp.js b/packages/material-ui-icons/lib/EmojiTransportationSharp.js index 7481d24898cf1e..ac8cf9224c3aaa 100644 --- a/packages/material-ui-icons/lib/EmojiTransportationSharp.js +++ b/packages/material-ui-icons/lib/EmojiTransportationSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" -}, "2")], 'EmojiTransportationSharp'); \ No newline at end of file +}, "2")], 'EmojiTransportationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EmojiTransportationTwoTone.js b/packages/material-ui-icons/lib/EmojiTransportationTwoTone.js index 24287f3f29e3d9..811bf2c8bf4b8b 100644 --- a/packages/material-ui-icons/lib/EmojiTransportationTwoTone.js +++ b/packages/material-ui-icons/lib/EmojiTransportationTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" -}, "2")], 'EmojiTransportationTwoTone'); \ No newline at end of file +}, "2")], 'EmojiTransportationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Engineering.js b/packages/material-ui-icons/lib/Engineering.js index d3d42c8312e780..60d37b0b8ed18b 100644 --- a/packages/material-ui-icons/lib/Engineering.js +++ b/packages/material-ui-icons/lib/Engineering.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm13.1-8.16c.01-.11.02-.22.02-.34 0-.12-.01-.23-.03-.34l.74-.58c.07-.05.08-.15.04-.22l-.7-1.21c-.04-.08-.14-.1-.21-.08l-.86.35c-.18-.14-.38-.25-.59-.34l-.13-.93c-.02-.09-.09-.15-.18-.15h-1.4c-.09 0-.16.06-.17.15l-.13.93c-.21.09-.41.21-.59.34l-.87-.35c-.08-.03-.17 0-.21.08l-.7 1.21c-.04.08-.03.17.04.22l.74.58c-.02.11-.03.23-.03.34 0 .11.01.23.03.34l-.74.58c-.07.05-.08.15-.04.22l.7 1.21c.04.08.14.1.21.08l.87-.35c.18.14.38.25.59.34l.13.93c.01.09.08.15.17.15h1.4c.09 0 .16-.06.17-.15l.13-.93c.21-.09.41-.21.59-.34l.87.35c.08.03.17 0 .21-.08l.7-1.21c.04-.08.03-.17-.04-.22l-.73-.58zm-2.6.91c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm.42 3.93-.5-.87c-.03-.06-.1-.08-.15-.06l-.62.25c-.13-.1-.27-.18-.42-.24l-.09-.66c-.02-.06-.08-.1-.14-.1h-1c-.06 0-.11.04-.12.11l-.09.66c-.15.06-.29.15-.42.24l-.62-.25c-.06-.02-.12 0-.15.06l-.5.87c-.03.06-.02.12.03.16l.53.41c-.01.08-.02.16-.02.24 0 .08.01.17.02.24l-.53.41c-.05.04-.06.11-.03.16l.5.87c.03.06.1.08.15.06l.62-.25c.13.1.27.18.42.24l.09.66c.01.07.06.11.12.11h1c.06 0 .12-.04.12-.11l.09-.66c.15-.06.29-.15.42-.24l.62.25c.06.02.12 0 .15-.06l.5-.87c.03-.06.02-.12-.03-.16l-.52-.41c.01-.08.02-.16.02-.24 0-.08-.01-.17-.02-.24l.53-.41c.05-.04.06-.11.04-.17zm-2.42 1.65c-.46 0-.83-.38-.83-.83 0-.46.38-.83.83-.83s.83.38.83.83c0 .46-.37.83-.83.83zM4.74 9h8.53c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3z" -}), 'Engineering'); \ No newline at end of file +}), 'Engineering'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EngineeringOutlined.js b/packages/material-ui-icons/lib/EngineeringOutlined.js index 964f3a2f90a757..36c0a42d6a9b0f 100644 --- a/packages/material-ui-icons/lib/EngineeringOutlined.js +++ b/packages/material-ui-icons/lib/EngineeringOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM4.74 9H5c0 2.21 1.79 4 4 4s4-1.79 4-4h.26c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM11 9c0 1.1-.9 2-2 2s-2-.9-2-2h4zm10.98-2.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.1 3.04-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" -}), 'EngineeringOutlined'); \ No newline at end of file +}), 'EngineeringOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EngineeringRounded.js b/packages/material-ui-icons/lib/EngineeringRounded.js index a7965c4bd33846..fba829207a647d 100644 --- a/packages/material-ui-icons/lib/EngineeringRounded.js +++ b/packages/material-ui-icons/lib/EngineeringRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zM4.74 9h8.53c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3zm12.98-6.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.1 3.04-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" -}), 'EngineeringRounded'); \ No newline at end of file +}), 'EngineeringRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EngineeringSharp.js b/packages/material-ui-icons/lib/EngineeringSharp.js index cc7ff480e2fdd2..71fe85b1ce0439 100644 --- a/packages/material-ui-icons/lib/EngineeringSharp.js +++ b/packages/material-ui-icons/lib/EngineeringSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm4.75-7H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.75v1h9.5V8zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3zm12.98-6.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.1 3.04-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" -}), 'EngineeringSharp'); \ No newline at end of file +}), 'EngineeringSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EngineeringTwoTone.js b/packages/material-ui-icons/lib/EngineeringTwoTone.js index 707323189b63f2..3bbf6ecd7a17d4 100644 --- a/packages/material-ui-icons/lib/EngineeringTwoTone.js +++ b/packages/material-ui-icons/lib/EngineeringTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11c1.1 0 2-.9 2-2H7c0 1.1.9 2 2 2zM7.5 6c.28 0 .5-.22.5-.5V4.14c-.36.09-.69.23-1 .41v.95c0 .28.22.5.5.5zm3 0c.28 0 .5-.22.5-.5v-.95c-.31-.18-.64-.32-1-.41V5.5c0 .28.22.5.5.5zM9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM4.74 9H5c0 2.21 1.79 4 4 4s4-1.79 4-4h.26c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM11 9c0 1.1-.9 2-2 2s-2-.9-2-2h4zm10.98-2.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.23 4.56.66-.59-.54-.93-.85.28c-.1-.08-.21-.14-.33-.19l-.17-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37zm-1.77 1.08c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" -}, "1")], 'EngineeringTwoTone'); \ No newline at end of file +}, "1")], 'EngineeringTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EnhancedEncryption.js b/packages/material-ui-icons/lib/EnhancedEncryption.js index a71e77fb0dbbd7..4069c32811c794 100644 --- a/packages/material-ui-icons/lib/EnhancedEncryption.js +++ b/packages/material-ui-icons/lib/EnhancedEncryption.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" -}), 'EnhancedEncryption'); \ No newline at end of file +}), 'EnhancedEncryption'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EnhancedEncryptionOutlined.js b/packages/material-ui-icons/lib/EnhancedEncryptionOutlined.js index 612870dd9245a1..f18197529b4cce 100644 --- a/packages/material-ui-icons/lib/EnhancedEncryptionOutlined.js +++ b/packages/material-ui-icons/lib/EnhancedEncryptionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-5-9h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}), 'EnhancedEncryptionOutlined'); \ No newline at end of file +}), 'EnhancedEncryptionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EnhancedEncryptionRounded.js b/packages/material-ui-icons/lib/EnhancedEncryptionRounded.js index 9eacd00e0a8714..5d2aeb534d097c 100644 --- a/packages/material-ui-icons/lib/EnhancedEncryptionRounded.js +++ b/packages/material-ui-icons/lib/EnhancedEncryptionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM15 16h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'EnhancedEncryptionRounded'); \ No newline at end of file +}), 'EnhancedEncryptionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EnhancedEncryptionSharp.js b/packages/material-ui-icons/lib/EnhancedEncryptionSharp.js index 1952f75daeadc2..01cb16ca7e54c7 100644 --- a/packages/material-ui-icons/lib/EnhancedEncryptionSharp.js +++ b/packages/material-ui-icons/lib/EnhancedEncryptionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" -}), 'EnhancedEncryptionSharp'); \ No newline at end of file +}), 'EnhancedEncryptionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EnhancedEncryptionTwoTone.js b/packages/material-ui-icons/lib/EnhancedEncryptionTwoTone.js index a0af3067faaf77..08b352cdc22da0 100644 --- a/packages/material-ui-icons/lib/EnhancedEncryptionTwoTone.js +++ b/packages/material-ui-icons/lib/EnhancedEncryptionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h12V10H6v10zm2-6h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-7-1h2v-3h3v-2h-3v-3h-2v3H8v2h3z" -}, "1")], 'EnhancedEncryptionTwoTone'); \ No newline at end of file +}, "1")], 'EnhancedEncryptionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Equalizer.js b/packages/material-ui-icons/lib/Equalizer.js index b933067168fa6d..6e27be5c4aa2ab 100644 --- a/packages/material-ui-icons/lib/Equalizer.js +++ b/packages/material-ui-icons/lib/Equalizer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" -}), 'Equalizer'); \ No newline at end of file +}), 'Equalizer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EqualizerOutlined.js b/packages/material-ui-icons/lib/EqualizerOutlined.js index 1ba1be2d2c0380..79ea12915082f0 100644 --- a/packages/material-ui-icons/lib/EqualizerOutlined.js +++ b/packages/material-ui-icons/lib/EqualizerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" -}), 'EqualizerOutlined'); \ No newline at end of file +}), 'EqualizerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EqualizerRounded.js b/packages/material-ui-icons/lib/EqualizerRounded.js index 1f559bc3910f75..bf1c95478b99f5 100644 --- a/packages/material-ui-icons/lib/EqualizerRounded.js +++ b/packages/material-ui-icons/lib/EqualizerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 1.1.9 2 2 2zm-6 0c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2s-2 .9-2 2v4c0 1.1.9 2 2 2zm10-9v7c0 1.1.9 2 2 2s2-.9 2-2v-7c0-1.1-.9-2-2-2s-2 .9-2 2z" -}), 'EqualizerRounded'); \ No newline at end of file +}), 'EqualizerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EqualizerSharp.js b/packages/material-ui-icons/lib/EqualizerSharp.js index 194117f3988a2f..12846a26ded23b 100644 --- a/packages/material-ui-icons/lib/EqualizerSharp.js +++ b/packages/material-ui-icons/lib/EqualizerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" -}), 'EqualizerSharp'); \ No newline at end of file +}), 'EqualizerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EqualizerTwoTone.js b/packages/material-ui-icons/lib/EqualizerTwoTone.js index f2605025cc7abe..7b7786816e952e 100644 --- a/packages/material-ui-icons/lib/EqualizerTwoTone.js +++ b/packages/material-ui-icons/lib/EqualizerTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h4v11h-4zm-6-5h4v16h-4zm-6 8h4v8H4z" -}), 'EqualizerTwoTone'); \ No newline at end of file +}), 'EqualizerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Error.js b/packages/material-ui-icons/lib/Error.js index a0a79c2c009d69..b71a77c8c4bc6d 100644 --- a/packages/material-ui-icons/lib/Error.js +++ b/packages/material-ui-icons/lib/Error.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" -}), 'Error'); \ No newline at end of file +}), 'Error'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorOutline.js b/packages/material-ui-icons/lib/ErrorOutline.js index ae7a227c06ba20..5653f84c9229ca 100644 --- a/packages/material-ui-icons/lib/ErrorOutline.js +++ b/packages/material-ui-icons/lib/ErrorOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'ErrorOutline'); \ No newline at end of file +}), 'ErrorOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorOutlineOutlined.js b/packages/material-ui-icons/lib/ErrorOutlineOutlined.js index 43ca946633f077..5078e8c0e56d26 100644 --- a/packages/material-ui-icons/lib/ErrorOutlineOutlined.js +++ b/packages/material-ui-icons/lib/ErrorOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'ErrorOutlineOutlined'); \ No newline at end of file +}), 'ErrorOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorOutlineRounded.js b/packages/material-ui-icons/lib/ErrorOutlineRounded.js index e69dd43213fcd8..889faa26553d5c 100644 --- a/packages/material-ui-icons/lib/ErrorOutlineRounded.js +++ b/packages/material-ui-icons/lib/ErrorOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-.01-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-3h-2v-2h2v2z" -}), 'ErrorOutlineRounded'); \ No newline at end of file +}), 'ErrorOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorOutlineSharp.js b/packages/material-ui-icons/lib/ErrorOutlineSharp.js index 9ce16fd3e06205..b87bca0089773b 100644 --- a/packages/material-ui-icons/lib/ErrorOutlineSharp.js +++ b/packages/material-ui-icons/lib/ErrorOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'ErrorOutlineSharp'); \ No newline at end of file +}), 'ErrorOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorOutlineTwoTone.js b/packages/material-ui-icons/lib/ErrorOutlineTwoTone.js index 50468cc9bc9b44..31662cd8b563c1 100644 --- a/packages/material-ui-icons/lib/ErrorOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/ErrorOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z" -}), 'ErrorOutlineTwoTone'); \ No newline at end of file +}), 'ErrorOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorOutlined.js b/packages/material-ui-icons/lib/ErrorOutlined.js index 6a21ab8db496a1..56d649a82e2ade 100644 --- a/packages/material-ui-icons/lib/ErrorOutlined.js +++ b/packages/material-ui-icons/lib/ErrorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" -}), 'ErrorOutlined'); \ No newline at end of file +}), 'ErrorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorRounded.js b/packages/material-ui-icons/lib/ErrorRounded.js index 4b9649859d5dbc..1cd869591530aa 100644 --- a/packages/material-ui-icons/lib/ErrorRounded.js +++ b/packages/material-ui-icons/lib/ErrorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 11c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z" -}), 'ErrorRounded'); \ No newline at end of file +}), 'ErrorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorSharp.js b/packages/material-ui-icons/lib/ErrorSharp.js index 4df99c5d66a9a6..b8eed433a0ff10 100644 --- a/packages/material-ui-icons/lib/ErrorSharp.js +++ b/packages/material-ui-icons/lib/ErrorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" -}), 'ErrorSharp'); \ No newline at end of file +}), 'ErrorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ErrorTwoTone.js b/packages/material-ui-icons/lib/ErrorTwoTone.js index b354795f87c40a..50f18970bba9ca 100644 --- a/packages/material-ui-icons/lib/ErrorTwoTone.js +++ b/packages/material-ui-icons/lib/ErrorTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-4h-2V7h2v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z" -}, "1")], 'ErrorTwoTone'); \ No newline at end of file +}, "1")], 'ErrorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Escalator.js b/packages/material-ui-icons/lib/Escalator.js index 924d6fa2c67af7..4a8596ab35b067 100644 --- a/packages/material-ui-icons/lib/Escalator.js +++ b/packages/material-ui-icons/lib/Escalator.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 6h-1.7l-5 9H7c-.83 0-1.5-.67-1.5-1.5S6.17 15 7 15h1.7l5-9H17c.83 0 1.5.67 1.5 1.5S17.83 9 17 9z" -}), 'Escalator'); \ No newline at end of file +}), 'Escalator'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorOutlined.js b/packages/material-ui-icons/lib/EscalatorOutlined.js index 3a6e9bfc89d21e..e55f7e203c6677 100644 --- a/packages/material-ui-icons/lib/EscalatorOutlined.js +++ b/packages/material-ui-icons/lib/EscalatorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 3h-3.3l-5 9H7c-.83 0-1.5.67-1.5 1.5S6.17 18 7 18h3.3l5-9H17c.83 0 1.5-.67 1.5-1.5S17.83 6 17 6z" -}), 'EscalatorOutlined'); \ No newline at end of file +}), 'EscalatorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorRounded.js b/packages/material-ui-icons/lib/EscalatorRounded.js index 8cc076298aa31b..0f1ae27fe82a55 100644 --- a/packages/material-ui-icons/lib/EscalatorRounded.js +++ b/packages/material-ui-icons/lib/EscalatorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 6h-1.7l-4.71 8.49c-.18.31-.52.51-.88.51H7c-.83 0-1.5-.67-1.5-1.5S6.17 15 7 15h1.7l4.71-8.49c.18-.31.52-.51.88-.51H17c.83 0 1.5.67 1.5 1.5S17.83 9 17 9z" -}), 'EscalatorRounded'); \ No newline at end of file +}), 'EscalatorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorSharp.js b/packages/material-ui-icons/lib/EscalatorSharp.js index bbcb1c54f2b554..b9bfd1b7333040 100644 --- a/packages/material-ui-icons/lib/EscalatorSharp.js +++ b/packages/material-ui-icons/lib/EscalatorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-2.5 6h-3.2l-5 9H5.5v-3h3.2l5-9h4.8v3z" -}), 'EscalatorSharp'); \ No newline at end of file +}), 'EscalatorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorTwoTone.js b/packages/material-ui-icons/lib/EscalatorTwoTone.js index d852402f9080b6..35bcdc68385124 100644 --- a/packages/material-ui-icons/lib/EscalatorTwoTone.js +++ b/packages/material-ui-icons/lib/EscalatorTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m-2 1h-3.3l-5 9H7c-.83 0-1.5.67-1.5 1.5S6.17 18 7 18h3.3l5-9H17c.83 0 1.5-.67 1.5-1.5S17.83 6 17 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 3h-3.3l-5 9H7c-.83 0-1.5.67-1.5 1.5S6.17 18 7 18h3.3l5-9H17c.83 0 1.5-.67 1.5-1.5S17.83 6 17 6z" -}, "1")], 'EscalatorTwoTone'); \ No newline at end of file +}, "1")], 'EscalatorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorWarning.js b/packages/material-ui-icons/lib/EscalatorWarning.js index f9049765ce9740..0b35b869900c43 100644 --- a/packages/material-ui-icons/lib/EscalatorWarning.js +++ b/packages/material-ui-icons/lib/EscalatorWarning.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v6h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-3.5c0-.82-.67-1.5-1.5-1.5z" -}), 'EscalatorWarning'); \ No newline at end of file +}), 'EscalatorWarning'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorWarningOutlined.js b/packages/material-ui-icons/lib/EscalatorWarningOutlined.js index dd7b42c994eae0..3cf1b51e75f097 100644 --- a/packages/material-ui-icons/lib/EscalatorWarningOutlined.js +++ b/packages/material-ui-icons/lib/EscalatorWarningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v6h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-3.5c0-.82-.67-1.5-1.5-1.5z" -}), 'EscalatorWarningOutlined'); \ No newline at end of file +}), 'EscalatorWarningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorWarningRounded.js b/packages/material-ui-icons/lib/EscalatorWarningRounded.js index d74dbf34555893..c2ee418fb49a5e 100644 --- a/packages/material-ui-icons/lib/EscalatorWarningRounded.js +++ b/packages/material-ui-icons/lib/EscalatorWarningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h.5v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-9.39l2.24 3.89c.18.31.51.5.87.5h1.1c.33 0 .63-.16.82-.43l.47-.67V21c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-4c.55 0 1-.45 1-1v-2.5c0-.82-.67-1.5-1.5-1.5z" -}), 'EscalatorWarningRounded'); \ No newline at end of file +}), 'EscalatorWarningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorWarningSharp.js b/packages/material-ui-icons/lib/EscalatorWarningSharp.js index ace900f02fb27b..7d9edf8e0ca798 100644 --- a/packages/material-ui-icons/lib/EscalatorWarningSharp.js +++ b/packages/material-ui-icons/lib/EscalatorWarningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm-1.29 3.36-.92 1.32L9.72 8c-.35-.62-1.01-1-1.73-1H3v8h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-5h-4.15c-.66 0-1.27.32-1.64.86z" -}), 'EscalatorWarningSharp'); \ No newline at end of file +}), 'EscalatorWarningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EscalatorWarningTwoTone.js b/packages/material-ui-icons/lib/EscalatorWarningTwoTone.js index 8448ba9850bd10..8b0828e81963b0 100644 --- a/packages/material-ui-icons/lib/EscalatorWarningTwoTone.js +++ b/packages/material-ui-icons/lib/EscalatorWarningTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v6h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-3.5c0-.82-.67-1.5-1.5-1.5z" -}), 'EscalatorWarningTwoTone'); \ No newline at end of file +}), 'EscalatorWarningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Euro.js b/packages/material-ui-icons/lib/Euro.js index 3f2a957e5e0f23..a7370d4a3a0d56 100644 --- a/packages/material-ui-icons/lib/Euro.js +++ b/packages/material-ui-icons/lib/Euro.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'Euro'); \ No newline at end of file +}), 'Euro'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroOutlined.js b/packages/material-ui-icons/lib/EuroOutlined.js index 1ec40cbd42a0cf..4d09f4a0418e62 100644 --- a/packages/material-ui-icons/lib/EuroOutlined.js +++ b/packages/material-ui-icons/lib/EuroOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'EuroOutlined'); \ No newline at end of file +}), 'EuroOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroRounded.js b/packages/material-ui-icons/lib/EuroRounded.js index 84865c0afa0270..be370a76111cc0 100644 --- a/packages/material-ui-icons/lib/EuroRounded.js +++ b/packages/material-ui-icons/lib/EuroRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5h5.14c.38 0 .73-.21.89-.55.33-.66-.15-1.45-.89-1.45h-5.8c-.05-.33-.08-.66-.08-1s.03-.67.08-1h5.8c.38 0 .73-.21.89-.55.34-.67-.14-1.45-.89-1.45H9.24C10.32 6.92 12.5 5.5 15 5.5c1.25 0 2.42.36 3.42.97.5.31 1.15.26 1.57-.16.58-.58.45-1.53-.25-1.96C18.36 3.5 16.73 3 15 3c-3.92 0-7.24 2.51-8.48 6h-2.9c-.38 0-.73.21-.9.55-.33.67.15 1.45.9 1.45h2.44c-.04.33-.06.66-.06 1s.02.67.06 1H3.62c-.38 0-.73.21-.89.55-.34.67.14 1.45.89 1.45h2.9c1.24 3.49 4.56 6 8.48 6 1.74 0 3.36-.49 4.74-1.35.69-.43.82-1.39.24-1.97-.42-.42-1.07-.47-1.57-.15-.99.62-2.15.97-3.41.97z" -}), 'EuroRounded'); \ No newline at end of file +}), 'EuroRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroSharp.js b/packages/material-ui-icons/lib/EuroSharp.js index c82e86cba96700..c16942e9d18f92 100644 --- a/packages/material-ui-icons/lib/EuroSharp.js +++ b/packages/material-ui-icons/lib/EuroSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'EuroSharp'); \ No newline at end of file +}), 'EuroSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroSymbol.js b/packages/material-ui-icons/lib/EuroSymbol.js index 6a57f4b0dad367..700ca0f6e4a72f 100644 --- a/packages/material-ui-icons/lib/EuroSymbol.js +++ b/packages/material-ui-icons/lib/EuroSymbol.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1 0 .34.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'EuroSymbol'); \ No newline at end of file +}), 'EuroSymbol'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroSymbolOutlined.js b/packages/material-ui-icons/lib/EuroSymbolOutlined.js index ecee72245b1250..adf039ba40ae0d 100644 --- a/packages/material-ui-icons/lib/EuroSymbolOutlined.js +++ b/packages/material-ui-icons/lib/EuroSymbolOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'EuroSymbolOutlined'); \ No newline at end of file +}), 'EuroSymbolOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroSymbolRounded.js b/packages/material-ui-icons/lib/EuroSymbolRounded.js index 9bc50b5292abdd..314b0459cc38cb 100644 --- a/packages/material-ui-icons/lib/EuroSymbolRounded.js +++ b/packages/material-ui-icons/lib/EuroSymbolRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H14c.55 0 1-.45 1-1s-.45-1-1-1H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H14c.55 0 1-.45 1-1s-.45-1-1-1H9.24C10.32 6.92 12.5 5.5 15 5.5c1.25 0 2.42.36 3.42.97.5.31 1.15.26 1.57-.16.58-.58.45-1.53-.25-1.96C18.36 3.5 16.73 3 15 3c-3.92 0-7.24 2.51-8.48 6H4c-.55 0-1 .45-1 1s.45 1 1 1h2.06c-.04.33-.06.66-.06 1s.02.67.06 1H4c-.55 0-1 .45-1 1s.45 1 1 1h2.52c1.24 3.49 4.56 6 8.48 6 1.74 0 3.36-.49 4.74-1.35.69-.43.82-1.39.24-1.97-.42-.42-1.07-.47-1.57-.15-.99.62-2.15.97-3.41.97z" -}), 'EuroSymbolRounded'); \ No newline at end of file +}), 'EuroSymbolRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroSymbolSharp.js b/packages/material-ui-icons/lib/EuroSymbolSharp.js index f52c7da19ab1d7..91cd7608a89986 100644 --- a/packages/material-ui-icons/lib/EuroSymbolSharp.js +++ b/packages/material-ui-icons/lib/EuroSymbolSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'EuroSymbolSharp'); \ No newline at end of file +}), 'EuroSymbolSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroSymbolTwoTone.js b/packages/material-ui-icons/lib/EuroSymbolTwoTone.js index c29c751be25e96..b4ead0e2b13e06 100644 --- a/packages/material-ui-icons/lib/EuroSymbolTwoTone.js +++ b/packages/material-ui-icons/lib/EuroSymbolTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'EuroSymbolTwoTone'); \ No newline at end of file +}), 'EuroSymbolTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EuroTwoTone.js b/packages/material-ui-icons/lib/EuroTwoTone.js index 452f549954f44f..a67fcbd13a3e6b 100644 --- a/packages/material-ui-icons/lib/EuroTwoTone.js +++ b/packages/material-ui-icons/lib/EuroTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" -}), 'EuroTwoTone'); \ No newline at end of file +}), 'EuroTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EvStation.js b/packages/material-ui-icons/lib/EvStation.js index 3343f18b49a344..cad6eeb03a1828 100644 --- a/packages/material-ui-icons/lib/EvStation.js +++ b/packages/material-ui-icons/lib/EvStation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z" -}), 'EvStation'); \ No newline at end of file +}), 'EvStation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EvStationOutlined.js b/packages/material-ui-icons/lib/EvStationOutlined.js index 801387e5812c49..1876275661314e 100644 --- a/packages/material-ui-icons/lib/EvStationOutlined.js +++ b/packages/material-ui-icons/lib/EvStationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 11v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4-4 7.5h2V18l4-7h-2z" -}), 'EvStationOutlined'); \ No newline at end of file +}), 'EvStationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EvStationRounded.js b/packages/material-ui-icons/lib/EvStationRounded.js index fb6a1fa4b5a3a0..67168e67244c91 100644 --- a/packages/material-ui-icons/lib/EvStationRounded.js +++ b/packages/material-ui-icons/lib/EvStationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.19-3.19c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.58 1.58c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v15c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-6.5h1.5v4.86c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 16.12V13.5H6.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3h1.14c.38 0 .62.41.43.75l-2.64 4.62c-.25.44-.93.26-.93-.25z" -}), 'EvStationRounded'); \ No newline at end of file +}), 'EvStationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EvStationSharp.js b/packages/material-ui-icons/lib/EvStationSharp.js index 9b4640ec0932c9..cc80f917b179ad 100644 --- a/packages/material-ui-icons/lib/EvStationSharp.js +++ b/packages/material-ui-icons/lib/EvStationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5V21h5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z" -}), 'EvStationSharp'); \ No newline at end of file +}), 'EvStationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EvStationTwoTone.js b/packages/material-ui-icons/lib/EvStationTwoTone.js index cf529286c543df..02aa207af62f76 100644 --- a/packages/material-ui-icons/lib/EvStationTwoTone.js +++ b/packages/material-ui-icons/lib/EvStationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 13.5H6V19h6v-8l-4 7zm-2 0L10 6v5h2V5H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 8v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4-4 7.5h2V18l4-7h-2z" -}, "1")], 'EvStationTwoTone'); \ No newline at end of file +}, "1")], 'EvStationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Event.js b/packages/material-ui-icons/lib/Event.js index 3cb70bca7f4548..0a04f1f25bdece 100644 --- a/packages/material-ui-icons/lib/Event.js +++ b/packages/material-ui-icons/lib/Event.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z" -}), 'Event'); \ No newline at end of file +}), 'Event'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventAvailable.js b/packages/material-ui-icons/lib/EventAvailable.js index 019325e9dab4f5..6183b5ba06fbfb 100644 --- a/packages/material-ui-icons/lib/EventAvailable.js +++ b/packages/material-ui-icons/lib/EventAvailable.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.53 11.06 15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z" -}), 'EventAvailable'); \ No newline at end of file +}), 'EventAvailable'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventAvailableOutlined.js b/packages/material-ui-icons/lib/EventAvailableOutlined.js index 779ae438981fbb..9768e92b238861 100644 --- a/packages/material-ui-icons/lib/EventAvailableOutlined.js +++ b/packages/material-ui-icons/lib/EventAvailableOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm5.56 10.46 5.93-5.93-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06z" -}), 'EventAvailableOutlined'); \ No newline at end of file +}), 'EventAvailableOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventAvailableRounded.js b/packages/material-ui-icons/lib/EventAvailableRounded.js index 962b06ba276acb..64e205206fe73c 100644 --- a/packages/material-ui-icons/lib/EventAvailableRounded.js +++ b/packages/material-ui-icons/lib/EventAvailableRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10.53c-.29-.29-.77-.29-1.06 0l-4.35 4.35L9 13.29c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.94 1.94c.39.39 1.02.39 1.41 0l4.7-4.7c.3-.29.3-.77.01-1.06zM19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z" -}), 'EventAvailableRounded'); \ No newline at end of file +}), 'EventAvailableRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventAvailableSharp.js b/packages/material-ui-icons/lib/EventAvailableSharp.js index b1a91bf965aeff..5a223a7ea29283 100644 --- a/packages/material-ui-icons/lib/EventAvailableSharp.js +++ b/packages/material-ui-icons/lib/EventAvailableSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.53 11.06 15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11z" -}), 'EventAvailableSharp'); \ No newline at end of file +}), 'EventAvailableSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventAvailableTwoTone.js b/packages/material-ui-icons/lib/EventAvailableTwoTone.js index e24a1e30724e5a..ad9c8c95631e44 100644 --- a/packages/material-ui-icons/lib/EventAvailableTwoTone.js +++ b/packages/material-ui-icons/lib/EventAvailableTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h14v2H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2.51 4.53-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06 3.17 3.17z" -}, "1")], 'EventAvailableTwoTone'); \ No newline at end of file +}, "1")], 'EventAvailableTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventBusy.js b/packages/material-ui-icons/lib/EventBusy.js index f02371848e6d8e..e4a4742207d6f7 100644 --- a/packages/material-ui-icons/lib/EventBusy.js +++ b/packages/material-ui-icons/lib/EventBusy.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.31 17 2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z" -}), 'EventBusy'); \ No newline at end of file +}), 'EventBusy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventBusyOutlined.js b/packages/material-ui-icons/lib/EventBusyOutlined.js index 0c68f21bfcd252..66851fced6cad9 100644 --- a/packages/material-ui-icons/lib/EventBusyOutlined.js +++ b/packages/material-ui-icons/lib/EventBusyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm3.23 9.41 1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z" -}), 'EventBusyOutlined'); \ No newline at end of file +}), 'EventBusyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventBusyRounded.js b/packages/material-ui-icons/lib/EventBusyRounded.js index 2b97787464872c..f17fd03d5ef690 100644 --- a/packages/material-ui-icons/lib/EventBusyRounded.js +++ b/packages/material-ui-icons/lib/EventBusyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.84 16.47 1.91-1.91 1.91 1.91c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-1.91-1.91 1.91-1.91c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-1.91 1.91-1.91-1.91c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.91 1.91-1.91 1.91c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zM19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z" -}), 'EventBusyRounded'); \ No newline at end of file +}), 'EventBusyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventBusySharp.js b/packages/material-ui-icons/lib/EventBusySharp.js index fac3b38f924d4a..d1885a04837ae3 100644 --- a/packages/material-ui-icons/lib/EventBusySharp.js +++ b/packages/material-ui-icons/lib/EventBusySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.31 17 2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM21 3h-3V1h-2v2H8V1H6v2H3.01L3 21h18V3zm-2 16H5V8h14v11z" -}), 'EventBusySharp'); \ No newline at end of file +}), 'EventBusySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventBusyTwoTone.js b/packages/material-ui-icons/lib/EventBusyTwoTone.js index fb71f5adbf3480..eba9387bfa781f 100644 --- a/packages/material-ui-icons/lib/EventBusyTwoTone.js +++ b/packages/material-ui-icons/lib/EventBusyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h14v2H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM9.29 17.47l2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44-2.44 2.44z" -}, "1")], 'EventBusyTwoTone'); \ No newline at end of file +}, "1")], 'EventBusyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventNote.js b/packages/material-ui-icons/lib/EventNote.js index 015740966ff5ca..aa09bdaa6688b6 100644 --- a/packages/material-ui-icons/lib/EventNote.js +++ b/packages/material-ui-icons/lib/EventNote.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10H7v2h10v-2zm2-7h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zm-5-5H7v2h7v-2z" -}), 'EventNote'); \ No newline at end of file +}), 'EventNote'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventNoteOutlined.js b/packages/material-ui-icons/lib/EventNoteOutlined.js index 7b2112c8bdd0df..f560411282d40c 100644 --- a/packages/material-ui-icons/lib/EventNoteOutlined.js +++ b/packages/material-ui-icons/lib/EventNoteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm2 4h10v2H7zm0 4h7v2H7z" -}), 'EventNoteOutlined'); \ No newline at end of file +}), 'EventNoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventNoteRounded.js b/packages/material-ui-icons/lib/EventNoteRounded.js index 0306e0b985cd37..4e83a9c5c69d4d 100644 --- a/packages/material-ui-icons/lib/EventNoteRounded.js +++ b/packages/material-ui-icons/lib/EventNoteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10H8c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm3-7h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1zm-5-5H8c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'EventNoteRounded'); \ No newline at end of file +}), 'EventNoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventNoteSharp.js b/packages/material-ui-icons/lib/EventNoteSharp.js index f47839caef1c42..d0a31983026ea4 100644 --- a/packages/material-ui-icons/lib/EventNoteSharp.js +++ b/packages/material-ui-icons/lib/EventNoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10H7v2h10v-2zm4-7h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zm-5-5H7v2h7v-2z" -}), 'EventNoteSharp'); \ No newline at end of file +}), 'EventNoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventNoteTwoTone.js b/packages/material-ui-icons/lib/EventNoteTwoTone.js index f172cb2b333bd5..d624ab1f2f7f72 100644 --- a/packages/material-ui-icons/lib/EventNoteTwoTone.js +++ b/packages/material-ui-icons/lib/EventNoteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h14v2H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h10v2H7zm0 4h7v2H7z" -}, "1")], 'EventNoteTwoTone'); \ No newline at end of file +}, "1")], 'EventNoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventOutlined.js b/packages/material-ui-icons/lib/EventOutlined.js index b07b5ace9162d0..a91b4644cf066e 100644 --- a/packages/material-ui-icons/lib/EventOutlined.js +++ b/packages/material-ui-icons/lib/EventOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z" -}), 'EventOutlined'); \ No newline at end of file +}), 'EventOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventRounded.js b/packages/material-ui-icons/lib/EventRounded.js index 2f5a949065bbf5..89ffa381d66c8c 100644 --- a/packages/material-ui-icons/lib/EventRounded.js +++ b/packages/material-ui-icons/lib/EventRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-10v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-1V3c0-.55-.45-1-1-1s-1 .45-1 1zm2 17H6c-.55 0-1-.45-1-1V9h14v10c0 .55-.45 1-1 1z" -}), 'EventRounded'); \ No newline at end of file +}), 'EventRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventSeat.js b/packages/material-ui-icons/lib/EventSeat.js index 5abb95d968079d..3c795d25e23af9 100644 --- a/packages/material-ui-icons/lib/EventSeat.js +++ b/packages/material-ui-icons/lib/EventSeat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18v3h3v-3h10v3h3v-6H4v3zm15-8h3v3h-3v-3zM2 10h3v3H2v-3zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z" -}), 'EventSeat'); \ No newline at end of file +}), 'EventSeat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventSeatOutlined.js b/packages/material-ui-icons/lib/EventSeatOutlined.js index 3be9a6bdbf010f..88c79144b60b2a 100644 --- a/packages/material-ui-icons/lib/EventSeatOutlined.js +++ b/packages/material-ui-icons/lib/EventSeatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 5v7H9V5h6m0-2H9c-1.1 0-2 .9-2 2v9h10V5c0-1.1-.9-2-2-2zm7 7h-3v3h3v-3zM5 10H2v3h3v-3zm15 5H4v6h2v-4h12v4h2v-6z" -}), 'EventSeatOutlined'); \ No newline at end of file +}), 'EventSeatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventSeatRounded.js b/packages/material-ui-icons/lib/EventSeatRounded.js index 6da68c9dbdece7..e020fc2e3fb673 100644 --- a/packages/material-ui-icons/lib/EventSeatRounded.js +++ b/packages/material-ui-icons/lib/EventSeatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 21c.83 0 1.5-.67 1.5-1.5V18h10v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V17c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v2.5c0 .83.67 1.5 1.5 1.5zM20 10h1c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1zM3 10h1c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1zm14 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z" -}), 'EventSeatRounded'); \ No newline at end of file +}), 'EventSeatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventSeatSharp.js b/packages/material-ui-icons/lib/EventSeatSharp.js index 8e0630e1d47621..c7f5f4be69d370 100644 --- a/packages/material-ui-icons/lib/EventSeatSharp.js +++ b/packages/material-ui-icons/lib/EventSeatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 21h3v-3h10v3h3v-6H4v6zm15-11h3v3h-3v-3zM2 10h3v3H2v-3zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z" -}), 'EventSeatSharp'); \ No newline at end of file +}), 'EventSeatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventSeatTwoTone.js b/packages/material-ui-icons/lib/EventSeatTwoTone.js index 184a6c2641a994..9cfca041d00cb8 100644 --- a/packages/material-ui-icons/lib/EventSeatTwoTone.js +++ b/packages/material-ui-icons/lib/EventSeatTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5h6v7H9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 21h2v-4h12v4h2v-6H4zM17 5c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v9h10V5zm-2 7H9V5h6v7zm4-2h3v3h-3zM2 10h3v3H2z" -}, "1")], 'EventSeatTwoTone'); \ No newline at end of file +}, "1")], 'EventSeatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventSharp.js b/packages/material-ui-icons/lib/EventSharp.js index 6d2003b293f6d1..6b727f97203818 100644 --- a/packages/material-ui-icons/lib/EventSharp.js +++ b/packages/material-ui-icons/lib/EventSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13h-5v5h5v-5zM16 2v2H8V2H6v2H3.01L3 22h18V4h-3V2h-2zm3 18H5V9h14v11z" -}), 'EventSharp'); \ No newline at end of file +}), 'EventSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/EventTwoTone.js b/packages/material-ui-icons/lib/EventTwoTone.js index 11e6ac70b29d17..ed90bf0e787b96 100644 --- a/packages/material-ui-icons/lib/EventTwoTone.js +++ b/packages/material-ui-icons/lib/EventTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8h14V6H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z" -}, "1")], 'EventTwoTone'); \ No newline at end of file +}, "1")], 'EventTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExitToApp.js b/packages/material-ui-icons/lib/ExitToApp.js index 2bf7dfb75cec59..57afa8cfb42891 100644 --- a/packages/material-ui-icons/lib/ExitToApp.js +++ b/packages/material-ui-icons/lib/ExitToApp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'ExitToApp'); \ No newline at end of file +}), 'ExitToApp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExitToAppOutlined.js b/packages/material-ui-icons/lib/ExitToAppOutlined.js index cb2410f580a0b6..1ea8a562c539f6 100644 --- a/packages/material-ui-icons/lib/ExitToAppOutlined.js +++ b/packages/material-ui-icons/lib/ExitToAppOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'ExitToAppOutlined'); \ No newline at end of file +}), 'ExitToAppOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExitToAppRounded.js b/packages/material-ui-icons/lib/ExitToAppRounded.js index 6004e40cce691a..ef56f76b8c8b9f 100644 --- a/packages/material-ui-icons/lib/ExitToAppRounded.js +++ b/packages/material-ui-icons/lib/ExitToAppRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.79 16.29c.39.39 1.02.39 1.41 0l3.59-3.59c.39-.39.39-1.02 0-1.41L12.2 7.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L12.67 11H4c-.55 0-1 .45-1 1s.45 1 1 1h8.67l-1.88 1.88c-.39.39-.38 1.03 0 1.41zM19 3H5c-1.11 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'ExitToAppRounded'); \ No newline at end of file +}), 'ExitToAppRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExitToAppSharp.js b/packages/material-ui-icons/lib/ExitToAppSharp.js index 8bd20fc362781b..16f72f0ecf4d47 100644 --- a/packages/material-ui-icons/lib/ExitToAppSharp.js +++ b/packages/material-ui-icons/lib/ExitToAppSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM21 3H3v6h2V5h14v14H5v-4H3v6h18V3z" -}), 'ExitToAppSharp'); \ No newline at end of file +}), 'ExitToAppSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExitToAppTwoTone.js b/packages/material-ui-icons/lib/ExitToAppTwoTone.js index 10cafa543962c1..34247a59968568 100644 --- a/packages/material-ui-icons/lib/ExitToAppTwoTone.js +++ b/packages/material-ui-icons/lib/ExitToAppTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'ExitToAppTwoTone'); \ No newline at end of file +}), 'ExitToAppTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Expand.js b/packages/material-ui-icons/lib/Expand.js index b626c1bfc76cb2..8a3b9444612e25 100644 --- a/packages/material-ui-icons/lib/Expand.js +++ b/packages/material-ui-icons/lib/Expand.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16v2H4zM4 2h16v2H4zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3z" -}), 'Expand'); \ No newline at end of file +}), 'Expand'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandLess.js b/packages/material-ui-icons/lib/ExpandLess.js index 6035668c33708c..debd63c209979f 100644 --- a/packages/material-ui-icons/lib/ExpandLess.js +++ b/packages/material-ui-icons/lib/ExpandLess.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z" -}), 'ExpandLess'); \ No newline at end of file +}), 'ExpandLess'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandLessOutlined.js b/packages/material-ui-icons/lib/ExpandLessOutlined.js index 47e93dad56dc80..171feeb5dfb40a 100644 --- a/packages/material-ui-icons/lib/ExpandLessOutlined.js +++ b/packages/material-ui-icons/lib/ExpandLessOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" -}), 'ExpandLessOutlined'); \ No newline at end of file +}), 'ExpandLessOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandLessRounded.js b/packages/material-ui-icons/lib/ExpandLessRounded.js index 461b866c98d1a5..764005cd7db9af 100644 --- a/packages/material-ui-icons/lib/ExpandLessRounded.js +++ b/packages/material-ui-icons/lib/ExpandLessRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.29 8.71 6.7 13.3c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 10.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 8.71c-.38-.39-1.02-.39-1.41 0z" -}), 'ExpandLessRounded'); \ No newline at end of file +}), 'ExpandLessRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandLessSharp.js b/packages/material-ui-icons/lib/ExpandLessSharp.js index 6dd36fcc8e3932..769ad804e84932 100644 --- a/packages/material-ui-icons/lib/ExpandLessSharp.js +++ b/packages/material-ui-icons/lib/ExpandLessSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" -}), 'ExpandLessSharp'); \ No newline at end of file +}), 'ExpandLessSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandLessTwoTone.js b/packages/material-ui-icons/lib/ExpandLessTwoTone.js index 649da24a7e6340..2270135581ffe4 100644 --- a/packages/material-ui-icons/lib/ExpandLessTwoTone.js +++ b/packages/material-ui-icons/lib/ExpandLessTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" -}), 'ExpandLessTwoTone'); \ No newline at end of file +}), 'ExpandLessTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandMore.js b/packages/material-ui-icons/lib/ExpandMore.js index e71e12b08d31e9..b2578c04573fdd 100644 --- a/packages/material-ui-icons/lib/ExpandMore.js +++ b/packages/material-ui-icons/lib/ExpandMore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z" -}), 'ExpandMore'); \ No newline at end of file +}), 'ExpandMore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandMoreOutlined.js b/packages/material-ui-icons/lib/ExpandMoreOutlined.js index 95635033bf3267..da5d13131840c8 100644 --- a/packages/material-ui-icons/lib/ExpandMoreOutlined.js +++ b/packages/material-ui-icons/lib/ExpandMoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" -}), 'ExpandMoreOutlined'); \ No newline at end of file +}), 'ExpandMoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandMoreRounded.js b/packages/material-ui-icons/lib/ExpandMoreRounded.js index fb9409ffcc6df3..599e08d6cc40f7 100644 --- a/packages/material-ui-icons/lib/ExpandMoreRounded.js +++ b/packages/material-ui-icons/lib/ExpandMoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.88 9.29 12 13.17 8.12 9.29a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41-.39-.38-1.03-.39-1.42 0z" -}), 'ExpandMoreRounded'); \ No newline at end of file +}), 'ExpandMoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandMoreSharp.js b/packages/material-ui-icons/lib/ExpandMoreSharp.js index 0b011f3d7ea0cd..58e02c0e7a5edf 100644 --- a/packages/material-ui-icons/lib/ExpandMoreSharp.js +++ b/packages/material-ui-icons/lib/ExpandMoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" -}), 'ExpandMoreSharp'); \ No newline at end of file +}), 'ExpandMoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandMoreTwoTone.js b/packages/material-ui-icons/lib/ExpandMoreTwoTone.js index 3e797fb12e3ff0..ae8bf64c202d4f 100644 --- a/packages/material-ui-icons/lib/ExpandMoreTwoTone.js +++ b/packages/material-ui-icons/lib/ExpandMoreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" -}), 'ExpandMoreTwoTone'); \ No newline at end of file +}), 'ExpandMoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandOutlined.js b/packages/material-ui-icons/lib/ExpandOutlined.js index 1f801889268ea3..b9eca2ff9f46af 100644 --- a/packages/material-ui-icons/lib/ExpandOutlined.js +++ b/packages/material-ui-icons/lib/ExpandOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16v2H4zM4 2h16v2H4zm5.41 11.59L8 15l4 4 4-4-1.41-1.41L13 15.17V8.83l1.59 1.58L16 9l-4-4-4 4 1.41 1.41L11 8.83v6.34z" -}), 'ExpandOutlined'); \ No newline at end of file +}), 'ExpandOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandRounded.js b/packages/material-ui-icons/lib/ExpandRounded.js index 070f511a0f7163..c3c8a76a7db8b1 100644 --- a/packages/material-ui-icons/lib/ExpandRounded.js +++ b/packages/material-ui-icons/lib/ExpandRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zM5 2h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm8 7h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0L8.85 8.15c-.31.31-.09.85.36.85H11v6H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.35-.85H13V9z" -}), 'ExpandRounded'); \ No newline at end of file +}), 'ExpandRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandSharp.js b/packages/material-ui-icons/lib/ExpandSharp.js index 4754fc629d342d..670eefe74fdf6b 100644 --- a/packages/material-ui-icons/lib/ExpandSharp.js +++ b/packages/material-ui-icons/lib/ExpandSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16v2H4v-2zM4 2h16v2H4V2zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3V9z" -}), 'ExpandSharp'); \ No newline at end of file +}), 'ExpandSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExpandTwoTone.js b/packages/material-ui-icons/lib/ExpandTwoTone.js index 5cf1a32e18f872..17bd0f0fdba945 100644 --- a/packages/material-ui-icons/lib/ExpandTwoTone.js +++ b/packages/material-ui-icons/lib/ExpandTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16v2H4v-2zM4 2h16v2H4V2zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3V9z" -}), 'ExpandTwoTone'); \ No newline at end of file +}), 'ExpandTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Explicit.js b/packages/material-ui-icons/lib/Explicit.js index b382d1e8d46731..bcd597388d87aa 100644 --- a/packages/material-ui-icons/lib/Explicit.js +++ b/packages/material-ui-icons/lib/Explicit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h4v2h-4v2h4v2H9V7h6v2z" -}), 'Explicit'); \ No newline at end of file +}), 'Explicit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExplicitOutlined.js b/packages/material-ui-icons/lib/ExplicitOutlined.js index ef3c3d138cb748..b0a86784815c93 100644 --- a/packages/material-ui-icons/lib/ExplicitOutlined.js +++ b/packages/material-ui-icons/lib/ExplicitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z" -}), 'ExplicitOutlined'); \ No newline at end of file +}), 'ExplicitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExplicitRounded.js b/packages/material-ui-icons/lib/ExplicitRounded.js index 5cba570af980fa..9ff04694bb41b4 100644 --- a/packages/material-ui-icons/lib/ExplicitRounded.js +++ b/packages/material-ui-icons/lib/ExplicitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-3v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'ExplicitRounded'); \ No newline at end of file +}), 'ExplicitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExplicitSharp.js b/packages/material-ui-icons/lib/ExplicitSharp.js index 115df745d87f66..0eb695fb86e442 100644 --- a/packages/material-ui-icons/lib/ExplicitSharp.js +++ b/packages/material-ui-icons/lib/ExplicitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-6 6h-4v2h4v2h-4v2h4v2H9V7h6v2z" -}), 'ExplicitSharp'); \ No newline at end of file +}), 'ExplicitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExplicitTwoTone.js b/packages/material-ui-icons/lib/ExplicitTwoTone.js index 920b5da86f243f..718d2c88d7a930 100644 --- a/packages/material-ui-icons/lib/ExplicitTwoTone.js +++ b/packages/material-ui-icons/lib/ExplicitTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zM9 7h6v2h-4v2h4v2h-4v2h4v2H9V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z" -}, "1")], 'ExplicitTwoTone'); \ No newline at end of file +}, "1")], 'ExplicitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Explore.js b/packages/material-ui-icons/lib/Explore.js index 6bb17f4372c522..ee274abff7b3de 100644 --- a/packages/material-ui-icons/lib/Explore.js +++ b/packages/material-ui-icons/lib/Explore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" -}), 'Explore'); \ No newline at end of file +}), 'Explore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreOff.js b/packages/material-ui-icons/lib/ExploreOff.js index 7ff166c85e1835..b01425a32f29ff 100644 --- a/packages/material-ui-icons/lib/ExploreOff.js +++ b/packages/material-ui-icons/lib/ExploreOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.19 14.19-1.41-1.41-1.56-1.56L11 11 9.81 9.81 4.93 4.93 2.27 2.27 1 3.54l2.78 2.78c-.11.16-.21.32-.31.48-.04.07-.09.14-.13.21-.09.15-.17.31-.25.47-.05.1-.1.21-.16.32-.06.14-.13.28-.19.43-.1.24-.19.48-.27.73l-.09.3c-.05.2-.1.39-.14.59-.02.11-.04.22-.07.33-.04.2-.07.4-.09.61-.01.1-.03.2-.03.3-.03.29-.05.6-.05.91 0 5.52 4.48 10 10 10 .31 0 .62-.02.92-.05l.3-.03c.2-.02.41-.06.61-.09.11-.02.22-.04.33-.07.2-.04.39-.09.58-.15.1-.03.2-.05.3-.09.25-.08.49-.17.73-.27.15-.06.29-.13.43-.19.11-.05.22-.1.33-.16.16-.08.31-.16.46-.25.07-.04.14-.09.21-.13.16-.1.32-.2.48-.31L20.46 23l1.27-1.27-2.66-2.66-4.88-4.88zM6 18l3-6.46L12.46 15 6 18zm16-6c0 .31-.02.62-.05.92l-.03.3c-.02.2-.06.41-.09.61-.02.11-.04.22-.07.33-.04.2-.09.39-.15.58-.03.1-.05.21-.09.31-.08.25-.17.49-.27.73-.06.15-.13.29-.19.43-.05.11-.1.22-.16.33-.08.16-.16.31-.25.46-.04.07-.09.14-.13.21-.1.16-.2.32-.31.48L15 12.46 18 6l-6.46 3-5.22-5.22c.16-.11.32-.21.48-.31.07-.04.14-.09.21-.13.15-.09.31-.17.46-.25.11-.05.22-.1.33-.16.14-.06.28-.13.43-.19.24-.1.48-.19.73-.27l.31-.09c.19-.05.38-.11.58-.15.11-.02.22-.04.33-.07.2-.04.4-.07.61-.09.1-.01.2-.03.3-.03.29-.02.6-.04.91-.04 5.52 0 10 4.48 10 10z" -}), 'ExploreOff'); \ No newline at end of file +}), 'ExploreOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreOffOutlined.js b/packages/material-ui-icons/lib/ExploreOffOutlined.js index 22411c20a16952..1c8a60015688ed 100644 --- a/packages/material-ui-icons/lib/ExploreOffOutlined.js +++ b/packages/material-ui-icons/lib/ExploreOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm2.91 8.08L17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01 3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z" -}), 'ExploreOffOutlined'); \ No newline at end of file +}), 'ExploreOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreOffRounded.js b/packages/material-ui-icons/lib/ExploreOffRounded.js index 344bb690206d30..9a3ca84948df54 100644 --- a/packages/material-ui-icons/lib/ExploreOffRounded.js +++ b/packages/material-ui-icons/lib/ExploreOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 6-2.91 6.26 5.25 5.25C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.81 5.64l.85.85c-1.37 2.07-2 4.68-1.48 7.45.75 3.95 3.92 7.13 7.88 7.88 2.77.52 5.38-.1 7.45-1.48l.85.85c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.22 4.22a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42zm6.1 6.1 3.35 3.35L6 18l2.91-6.26z" -}), 'ExploreOffRounded'); \ No newline at end of file +}), 'ExploreOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreOffSharp.js b/packages/material-ui-icons/lib/ExploreOffSharp.js index 600d38587bf5a2..0ec43ad37021a6 100644 --- a/packages/material-ui-icons/lib/ExploreOffSharp.js +++ b/packages/material-ui-icons/lib/ExploreOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 6-2.91 6.26 5.25 5.25C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm6.81 6.81 3.35 3.35L6 18l2.91-6.26z" -}), 'ExploreOffSharp'); \ No newline at end of file +}), 'ExploreOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreOffTwoTone.js b/packages/material-ui-icons/lib/ExploreOffTwoTone.js index d3930f0473f953..f2033357f991b3 100644 --- a/packages/material-ui-icons/lib/ExploreOffTwoTone.js +++ b/packages/material-ui-icons/lib/ExploreOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c1.48 0 2.86-.41 4.06-1.12l-3.98-3.98-5.58 2.6 2.59-5.58-3.97-3.98C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8zm0-16c-1.48 0-2.86.41-4.06 1.12l3.98 3.98 5.58-2.6-2.59 5.58 3.98 3.98c.7-1.2 1.11-2.58 1.11-4.06 0-4.41-3.59-8-8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.5 6.5-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01 3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06zM12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4z" -}, "1")], 'ExploreOffTwoTone'); \ No newline at end of file +}, "1")], 'ExploreOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreOutlined.js b/packages/material-ui-icons/lib/ExploreOutlined.js index 4d56dfe9169fe4..94d04009027283 100644 --- a/packages/material-ui-icons/lib/ExploreOutlined.js +++ b/packages/material-ui-icons/lib/ExploreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5 7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" -}), 'ExploreOutlined'); \ No newline at end of file +}), 'ExploreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreRounded.js b/packages/material-ui-icons/lib/ExploreRounded.js index 6cb8d2cd5f0565..80de39e8211aa5 100644 --- a/packages/material-ui-icons/lib/ExploreRounded.js +++ b/packages/material-ui-icons/lib/ExploreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" -}), 'ExploreRounded'); \ No newline at end of file +}), 'ExploreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreSharp.js b/packages/material-ui-icons/lib/ExploreSharp.js index bf1a936b2f2901..753a51a53515f3 100644 --- a/packages/material-ui-icons/lib/ExploreSharp.js +++ b/packages/material-ui-icons/lib/ExploreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" -}), 'ExploreSharp'); \ No newline at end of file +}), 'ExploreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExploreTwoTone.js b/packages/material-ui-icons/lib/ExploreTwoTone.js index eaf8a4241691e6..9705a1c6c35a01 100644 --- a/packages/material-ui-icons/lib/ExploreTwoTone.js +++ b/packages/material-ui-icons/lib/ExploreTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm2.01 10.01L6.5 17.5l3.49-7.51L17.5 6.5l-3.49 7.51z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5 7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" -}, "1")], 'ExploreTwoTone'); \ No newline at end of file +}, "1")], 'ExploreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Exposure.js b/packages/material-ui-icons/lib/Exposure.js index 07e5f8616249d3..2c3d1420e59264 100644 --- a/packages/material-ui-icons/lib/Exposure.js +++ b/packages/material-ui-icons/lib/Exposure.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z" -}), 'Exposure'); \ No newline at end of file +}), 'Exposure'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExposureOutlined.js b/packages/material-ui-icons/lib/ExposureOutlined.js index 03fafe78e2f988..10a7ce12498157 100644 --- a/packages/material-ui-icons/lib/ExposureOutlined.js +++ b/packages/material-ui-icons/lib/ExposureOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1.41 2L5 17.59V5h12.59zM6.41 19 19 6.41V19H6.41zM6 7h5v1.5H6zm10 5.5h-1.5v2h-2V16h2v2H16v-2h2v-1.5h-2z" -}), 'ExposureOutlined'); \ No newline at end of file +}), 'ExposureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExposureRounded.js b/packages/material-ui-icons/lib/ExposureRounded.js index f8bec27b59cca4..9410eb5272024c 100644 --- a/packages/material-ui-icons/lib/ExposureRounded.js +++ b/packages/material-ui-icons/lib/ExposureRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.75 7h3.5c.41 0 .75.34.75.75s-.34.75-.75.75h-3.5c-.41 0-.75-.34-.75-.75S6.34 7 6.75 7zM18 19H5L19 5v13c0 .55-.45 1-1 1zm-3.5-3v1.25c0 .41.34.75.75.75s.75-.34.75-.75V16h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H16v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.25h-1.25c-.41 0-.75.34-.75.75s.34.75.75.75h1.25z" -}), 'ExposureRounded'); \ No newline at end of file +}), 'ExposureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExposureSharp.js b/packages/material-ui-icons/lib/ExposureSharp.js index cea60cc611efb8..1070cf827490c8 100644 --- a/packages/material-ui-icons/lib/ExposureSharp.js +++ b/packages/material-ui-icons/lib/ExposureSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16h2z" -}), 'ExposureSharp'); \ No newline at end of file +}), 'ExposureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExposureTwoTone.js b/packages/material-ui-icons/lib/ExposureTwoTone.js index 6b26a0538a02ea..44b74932422057 100644 --- a/packages/material-ui-icons/lib/ExposureTwoTone.js +++ b/packages/material-ui-icons/lib/ExposureTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5L5 19h14zm-4.5-4.5v-2H16v2h2V16h-2v2h-1.5v-2h-2v-1.5h2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z" -}, "1")], 'ExposureTwoTone'); \ No newline at end of file +}, "1")], 'ExposureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Extension.js b/packages/material-ui-icons/lib/Extension.js index 0dd94bd8ddefa0..796b4af3509f3f 100644 --- a/packages/material-ui-icons/lib/Extension.js +++ b/packages/material-ui-icons/lib/Extension.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z" -}), 'Extension'); \ No newline at end of file +}), 'Extension'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionOff.js b/packages/material-ui-icons/lib/ExtensionOff.js index 558c3d87f93dcc..e826e1fd0762eb 100644 --- a/packages/material-ui-icons/lib/ExtensionOff.js +++ b/packages/material-ui-icons/lib/ExtensionOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.78 22.61-1.63-1.63c-.05 0-.1.02-.15.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H5c-1.1 0-2-.9-2-2v-3.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm.22-5.44V15c1.38 0 2.5-1.12 2.5-2.5S21.38 10 20 10V6c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9 2.62 9 4H6.83L20 17.17z" -}), 'ExtensionOff'); \ No newline at end of file +}), 'ExtensionOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionOffOutlined.js b/packages/material-ui-icons/lib/ExtensionOffOutlined.js index a100857d71b179..d509decbca10e8 100644 --- a/packages/material-ui-icons/lib/ExtensionOffOutlined.js +++ b/packages/material-ui-icons/lib/ExtensionOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1.39 4.22 1.62 1.62c0 .05-.01.1-.01.16v3.8c2.7 0 3 2.16 3 2.7s-.29 2.7-3 2.7V19c0 1.1.9 2 2 2h3.8c0-2.71 2.16-3 2.7-3s2.7.29 2.7 3H18c.06 0 .11 0 .16-.01l1.61 1.61 1.41-1.41L2.81 2.81 1.39 4.22zM11.5 16c-1.5 0-3.57.83-4.37 3H5v-2.13c2.17-.8 3-2.87 3-4.37 0-.69-.18-1.5-.58-2.25l6.33 6.33c-.75-.4-1.56-.58-2.25-.58zM8.83 6l-2-2H9c0-1.38 1.12-2.5 2.5-2.5S14 2.62 14 4h4c1.1 0 2 .9 2 2v4c1.38 0 2.5 1.12 2.5 2.5S21.38 15 20 15v2.17l-2-2V13h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-2V6h-6V4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H8.83z" -}), 'ExtensionOffOutlined'); \ No newline at end of file +}), 'ExtensionOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionOffRounded.js b/packages/material-ui-icons/lib/ExtensionOffRounded.js index 20d57e5f4d658c..3fc4a0c4297261 100644 --- a/packages/material-ui-icons/lib/ExtensionOffRounded.js +++ b/packages/material-ui-icons/lib/ExtensionOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 21.9c-.39.39-1.02.39-1.41 0l-.92-.92c-.06 0-.11.02-.16.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H5c-1.1 0-2-.9-2-2v-3.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14l-.93-.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM20 17.17V15c1.38 0 2.5-1.12 2.5-2.5S21.38 10 20 10V6c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9 2.62 9 4H6.83L20 17.17z" -}), 'ExtensionOffRounded'); \ No newline at end of file +}), 'ExtensionOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionOffSharp.js b/packages/material-ui-icons/lib/ExtensionOffSharp.js index 770ea04c125d29..23bb5f80a78936 100644 --- a/packages/material-ui-icons/lib/ExtensionOffSharp.js +++ b/packages/material-ui-icons/lib/ExtensionOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.78 22.61-1.63-1.63c-.05 0-.1.02-.15.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H3v-5.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm.22-5.44V15c1.38 0 2.5-1.12 2.5-2.5S21.38 10 20 10V4h-6c0-1.38-1.12-2.5-2.5-2.5S9 2.62 9 4H6.83L20 17.17z" -}), 'ExtensionOffSharp'); \ No newline at end of file +}), 'ExtensionOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionOffTwoTone.js b/packages/material-ui-icons/lib/ExtensionOffTwoTone.js index 2434be475bc93e..0214f4f1c35a0d 100644 --- a/packages/material-ui-icons/lib/ExtensionOffTwoTone.js +++ b/packages/material-ui-icons/lib/ExtensionOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13v2.17L8.83 6H11V4c0-.28.22-.5.5-.5s.5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2zm-10-.5c0 1.5-.83 3.57-3 4.37V19h2.13c.8-2.17 2.87-3 4.37-3 .69 0 1.5.18 2.25.58l-6.33-6.33c.4.75.58 1.56.58 2.25z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1.39 4.22 1.62 1.62c0 .05-.01.1-.01.16v3.8c2.7 0 3 2.16 3 2.7s-.29 2.7-3 2.7V19c0 1.1.9 2 2 2h3.8c0-2.71 2.16-3 2.7-3s2.7.29 2.7 3H18c.06 0 .11 0 .16-.01l1.61 1.61 1.41-1.41L2.81 2.81 1.39 4.22zM11.5 16c-1.5 0-3.57.83-4.37 3H5v-2.13c2.17-.8 3-2.87 3-4.37 0-.69-.18-1.5-.58-2.25l6.33 6.33c-.75-.4-1.56-.58-2.25-.58zM8.83 6l-2-2H9c0-1.38 1.12-2.5 2.5-2.5S14 2.62 14 4h4c1.1 0 2 .9 2 2v4c1.38 0 2.5 1.12 2.5 2.5S21.38 15 20 15v2.17l-2-2V13h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-2V6h-6V4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H8.83z" -}, "1")], 'ExtensionOffTwoTone'); \ No newline at end of file +}, "1")], 'ExtensionOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionOutlined.js b/packages/material-ui-icons/lib/ExtensionOutlined.js index 151e014eb489f6..90affbe7a23922 100644 --- a/packages/material-ui-icons/lib/ExtensionOutlined.js +++ b/packages/material-ui-icons/lib/ExtensionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 4.5c.28 0 .5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3s-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5m0-2C9.12 2.5 8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5z" -}), 'ExtensionOutlined'); \ No newline at end of file +}), 'ExtensionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionRounded.js b/packages/material-ui-icons/lib/ExtensionRounded.js index aa9d640eaf635d..208e40786bf673 100644 --- a/packages/material-ui-icons/lib/ExtensionRounded.js +++ b/packages/material-ui-icons/lib/ExtensionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z" -}), 'ExtensionRounded'); \ No newline at end of file +}), 'ExtensionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionSharp.js b/packages/material-ui-icons/lib/ExtensionSharp.js index 084bd846400a73..c107a02217fac8 100644 --- a/packages/material-ui-icons/lib/ExtensionSharp.js +++ b/packages/material-ui-icons/lib/ExtensionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.36 11H19V5h-6V3.64c0-1.31-.94-2.5-2.24-2.63C9.26.86 8 2.03 8 3.5V5H2.01v5.8H3.4c1.31 0 2.5.88 2.75 2.16.33 1.72-.98 3.24-2.65 3.24H2V22h5.8v-1.4c0-1.31.88-2.5 2.16-2.75 1.72-.33 3.24.98 3.24 2.65V22H19v-6h1.5c1.47 0 2.64-1.26 2.49-2.76-.13-1.3-1.33-2.24-2.63-2.24z" -}), 'ExtensionSharp'); \ No newline at end of file +}), 'ExtensionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ExtensionTwoTone.js b/packages/material-ui-icons/lib/ExtensionTwoTone.js index df5616778b11f8..e31297b4e11796 100644 --- a/packages/material-ui-icons/lib/ExtensionTwoTone.js +++ b/packages/material-ui-icons/lib/ExtensionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13h-2V7h-6V5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H4l.01 2.12C5.76 9.8 7 11.51 7 13.5c0 1.99-1.25 3.7-3 4.38V20h2.12c.68-1.75 2.39-3 4.38-3 1.99 0 3.7 1.25 4.38 3H17v-6h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11zm0 3h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3-1.99 0-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5s.5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5z" -}, "1")], 'ExtensionTwoTone'); \ No newline at end of file +}, "1")], 'ExtensionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Face.js b/packages/material-ui-icons/lib/Face.js index a866c51c7968eb..f6a0f7ba6e241e 100644 --- a/packages/material-ui-icons/lib/Face.js +++ b/packages/material-ui-icons/lib/Face.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z" -}), 'Face'); \ No newline at end of file +}), 'Face'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceOutlined.js b/packages/material-ui-icons/lib/FaceOutlined.js index 6fd92f14ad1cf2..4c2228c88ce0f8 100644 --- a/packages/material-ui-icons/lib/FaceOutlined.js +++ b/packages/material-ui-icons/lib/FaceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z" -}), 'FaceOutlined'); \ No newline at end of file +}), 'FaceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingNatural.js b/packages/material-ui-icons/lib/FaceRetouchingNatural.js index dfc46662193417..b0dbdd29d6e9f4 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingNatural.js +++ b/packages/material-ui-icons/lib/FaceRetouchingNatural.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.77 8.58-.92 2.01c.09.46.15.93.15 1.41 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55C11.58 8.56 14.37 10 17.5 10c.45 0 .89-.04 1.33-.1l-.6-1.32-.88-1.93-1.93-.88-2.79-1.27 2.79-1.27.71-.32C14.87 2.33 13.47 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.47-.33-2.87-.9-4.13l-.33.71z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1.25" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.6 5.6 19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5z" -}, "3")], 'FaceRetouchingNatural'); \ No newline at end of file +}, "3")], 'FaceRetouchingNatural'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingNaturalOutlined.js b/packages/material-ui-icons/lib/FaceRetouchingNaturalOutlined.js index 7e7254aa6b81ea..2800fc5bc8d97c 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingNaturalOutlined.js +++ b/packages/material-ui-icons/lib/FaceRetouchingNaturalOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.89 10.75c.07.41.11.82.11 1.25 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55 3.38 4.14 7.97 3.73 8.99 3.61l-.89-1.93c-.13.01-4.62.38-7.18-3.86 1.01-.16 1.71-.15 2.59-.01 2.52-1.15 1.93-.89 2.76-1.26C14.78 2.3 13.43 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.43-.3-2.78-.84-4.01l-1.27 2.76zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1.25" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 4.5-2.4-1.1L19.5 1l-1.1 2.4L16 4.5l2.4 1.1L19.5 8l1.1-2.4z" -}, "3")], 'FaceRetouchingNaturalOutlined'); \ No newline at end of file +}, "3")], 'FaceRetouchingNaturalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingNaturalRounded.js b/packages/material-ui-icons/lib/FaceRetouchingNaturalRounded.js index 69b1f113c0910a..3d8973e5fc3fc1 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingNaturalRounded.js +++ b/packages/material-ui-icons/lib/FaceRetouchingNaturalRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.01 4.05 20.6 3.4l-.65-1.41c-.18-.39-.73-.39-.91 0L18.4 3.4l-1.41.65c-.39.18-.39.73 0 .91l1.41.64.65 1.41c.18.39.73.39.91 0l.64-1.41 1.41-.65c.39-.17.39-.73 0-.9z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1.25" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 8.8c-.78 0-1.49-.46-1.82-1.17l-.41-.9-.9-.41c-.71-.33-1.17-1.04-1.17-1.82 0-.66.34-1.26.87-1.63C14.83 2.32 13.45 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.45-.32-2.83-.87-4.07-.37.53-.97.87-1.63.87zM12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55C11.58 8.56 14.37 10 17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z" -}, "3")], 'FaceRetouchingNaturalRounded'); \ No newline at end of file +}, "3")], 'FaceRetouchingNaturalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingNaturalSharp.js b/packages/material-ui-icons/lib/FaceRetouchingNaturalSharp.js index e15215ec8bb679..78cfac08cb61d3 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingNaturalSharp.js +++ b/packages/material-ui-icons/lib/FaceRetouchingNaturalSharp.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.85 10.59C20.79 15.4 17.01 20 12 20c-4.41 0-8-3.59-8-8 0-.39 3.87-1.12 5.74-5.69 3.42 4.19 8.07 3.73 9.09 3.59l-1.48-3.25-4.72-2.15 3.5-1.59C9.51-.14 2 4.77 2 12c0 5.52 4.48 10 10 10 7.21 0 12.12-7.45 9.1-14.13l-1.25 2.72z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1.25" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.6 5.6 19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5l-2.4 1.1z" -}, "3")], 'FaceRetouchingNaturalSharp'); \ No newline at end of file +}, "3")], 'FaceRetouchingNaturalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingNaturalTwoTone.js b/packages/material-ui-icons/lib/FaceRetouchingNaturalTwoTone.js index 3d63e1256f720e..a1b6d65ba38d42 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingNaturalTwoTone.js +++ b/packages/material-ui-icons/lib/FaceRetouchingNaturalTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.66 4.12c2.55 4.23 7.03 3.87 7.18 3.86l-.57-1.25L12.4 4.5l.85-.39C12.84 4.04 12.43 4 12 4c-.46 0-.91.05-1.34.12zm-2.58.91C6.37 6 5.05 7.58 4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.89 10.75c.07.41.11.82.11 1.25 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55 3.38 4.14 7.97 3.73 8.99 3.61l-.89-1.93c-.13.01-4.62.38-7.18-3.86 1.01-.16 1.71-.15 2.59-.01l2.12-.97.64-.29C14.78 2.3 13.43 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.43-.3-2.78-.84-4.01l-1.27 2.76zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1.25" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.6 3.4 19.5 1l-1.1 2.4L16 4.5l2.4 1.1L19.5 8l1.1-2.4L23 4.5z" -}, "4")], 'FaceRetouchingNaturalTwoTone'); \ No newline at end of file +}, "4")], 'FaceRetouchingNaturalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingOff.js b/packages/material-ui-icons/lib/FaceRetouchingOff.js index 064a2b76406591..e4e383c97ce433 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingOff.js +++ b/packages/material-ui-icons/lib/FaceRetouchingOff.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM1.89 3.72l2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02z" -}, "1")], 'FaceRetouchingOff'); \ No newline at end of file +}, "1")], 'FaceRetouchingOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingOffOutlined.js b/packages/material-ui-icons/lib/FaceRetouchingOffOutlined.js index e1569935d269ce..381544c070bd76 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingOffOutlined.js +++ b/packages/material-ui-icons/lib/FaceRetouchingOffOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zm-6.84-5.88c.43-.07.88-.12 1.34-.12 2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88zm-8.77-.4 2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02zM6.23 8.06c-.53.55-1.14 1.03-1.81 1.41.26-.77.63-1.48 1.09-2.13l.72.72z" -}, "1")], 'FaceRetouchingOffOutlined'); \ No newline at end of file +}, "1")], 'FaceRetouchingOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingOffRounded.js b/packages/material-ui-icons/lib/FaceRetouchingOffRounded.js index d9d683d65934e3..0cadf5c666050d 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingOffRounded.js +++ b/packages/material-ui-icons/lib/FaceRetouchingOffRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM2.6 4.43l1.48 1.48C2.51 7.95 1.7 10.6 2.1 13.46c.62 4.33 4.11 7.82 8.44 8.44 2.85.41 5.51-.41 7.55-1.98l1.48 1.48c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.01 3.01a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42zm14.06 14.06C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02z" -}, "1")], 'FaceRetouchingOffRounded'); \ No newline at end of file +}, "1")], 'FaceRetouchingOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingOffSharp.js b/packages/material-ui-icons/lib/FaceRetouchingOffSharp.js index ea2d72b3fd3115..e4b009837f2ab5 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingOffSharp.js +++ b/packages/material-ui-icons/lib/FaceRetouchingOffSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM1.89 3.72l2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02z" -}, "1")], 'FaceRetouchingOffSharp'); \ No newline at end of file +}, "1")], 'FaceRetouchingOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRetouchingOffTwoTone.js b/packages/material-ui-icons/lib/FaceRetouchingOffTwoTone.js index 278a636a9eb2d2..516c5091f0117e 100644 --- a/packages/material-ui-icons/lib/FaceRetouchingOffTwoTone.js +++ b/packages/material-ui-icons/lib/FaceRetouchingOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-.46 0-.91.05-1.34.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4zM4.42 9.47c.67-.38 1.28-.86 1.81-1.41l-.72-.72c-.46.65-.83 1.36-1.09 2.13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 14.25c.69 0 1.25-.56 1.25-1.25S9.69 11.75 9 11.75s-1.25.56-1.25 1.25.56 1.25 1.25 1.25zM17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zm-6.84-5.88c.43-.07.88-.12 1.34-.12 2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88zm-8.77-.4 2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02zM5.51 7.34l.72.72c-.53.55-1.14 1.03-1.81 1.41.26-.77.63-1.48 1.09-2.13z" -}, "1")], 'FaceRetouchingOffTwoTone'); \ No newline at end of file +}, "1")], 'FaceRetouchingOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceRounded.js b/packages/material-ui-icons/lib/FaceRounded.js index 4232d7cee50086..00506b4be315cb 100644 --- a/packages/material-ui-icons/lib/FaceRounded.js +++ b/packages/material-ui-icons/lib/FaceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z" -}), 'FaceRounded'); \ No newline at end of file +}), 'FaceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceSharp.js b/packages/material-ui-icons/lib/FaceSharp.js index 1b044035ba2537..5a31ce5a15c25f 100644 --- a/packages/material-ui-icons/lib/FaceSharp.js +++ b/packages/material-ui-icons/lib/FaceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z" -}), 'FaceSharp'); \ No newline at end of file +}), 'FaceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FaceTwoTone.js b/packages/material-ui-icons/lib/FaceTwoTone.js index a07acc3dcce37b..abed4138b2e8fe 100644 --- a/packages/material-ui-icons/lib/FaceTwoTone.js +++ b/packages/material-ui-icons/lib/FaceTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12C12.06 6.44 14.6 8 17.5 8zM8.08 5.03C6.37 6 5.05 7.58 4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 2c2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88.43-.07.88-.12 1.34-.12zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03zM12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1.01-.15 2.6-.98 4.68-2.99 5.74-5.55 1.83 2.26 4.62 3.7 7.75 3.7.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1.25" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1.25" -}, "3")], 'FaceTwoTone'); \ No newline at end of file +}, "3")], 'FaceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Facebook.js b/packages/material-ui-icons/lib/Facebook.js index 9a8991d46d17ea..858e8fc26de8c3 100644 --- a/packages/material-ui-icons/lib/Facebook.js +++ b/packages/material-ui-icons/lib/Facebook.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m13 2h-2.5A3.5 3.5 0 0 0 12 8.5V11h-2v3h2v7h3v-7h3v-3h-3V9a1 1 0 0 1 1-1h2V5z" -}), 'Facebook'); \ No newline at end of file +}), 'Facebook'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FacebookOutlined.js b/packages/material-ui-icons/lib/FacebookOutlined.js index 019b065e0c66b9..4af4889f64459e 100644 --- a/packages/material-ui-icons/lib/FacebookOutlined.js +++ b/packages/material-ui-icons/lib/FacebookOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" -}), 'FacebookOutlined'); \ No newline at end of file +}), 'FacebookOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FacebookRounded.js b/packages/material-ui-icons/lib/FacebookRounded.js index bf2ed4b8abaf76..f6d10d1c1a9eba 100644 --- a/packages/material-ui-icons/lib/FacebookRounded.js +++ b/packages/material-ui-icons/lib/FacebookRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" -}), 'FacebookRounded'); \ No newline at end of file +}), 'FacebookRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FacebookSharp.js b/packages/material-ui-icons/lib/FacebookSharp.js index c645567e31f6ee..35537beadd4d01 100644 --- a/packages/material-ui-icons/lib/FacebookSharp.js +++ b/packages/material-ui-icons/lib/FacebookSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" -}), 'FacebookSharp'); \ No newline at end of file +}), 'FacebookSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FacebookTwoTone.js b/packages/material-ui-icons/lib/FacebookTwoTone.js index ad0fbdd5e5a2b8..5df5fefff43450 100644 --- a/packages/material-ui-icons/lib/FacebookTwoTone.js +++ b/packages/material-ui-icons/lib/FacebookTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" -}), 'FacebookTwoTone'); \ No newline at end of file +}), 'FacebookTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FactCheck.js b/packages/material-ui-icons/lib/FactCheck.js index ddb1e3929c5771..9b4ba867e9254d 100644 --- a/packages/material-ui-icons/lib/FactCheck.js +++ b/packages/material-ui-icons/lib/FactCheck.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM10 17H5v-2h5v2zm0-4H5v-2h5v2zm0-4H5V7h5v2zm4.82 6L12 12.16l1.41-1.41 1.41 1.42L17.99 9l1.42 1.42L14.82 15z" -}), 'FactCheck'); \ No newline at end of file +}), 'FactCheck'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FactCheckOutlined.js b/packages/material-ui-icons/lib/FactCheckOutlined.js index ae0582feeeb1bf..19c6ce44842347 100644 --- a/packages/material-ui-icons/lib/FactCheckOutlined.js +++ b/packages/material-ui-icons/lib/FactCheckOutlined.js @@ -1,11 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs("g", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", { fillRule: "evenodd", - children: [/*#__PURE__*/_jsx("path", { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H4V5h16v14z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.41 10.42 17.99 9l-3.17 3.17-1.41-1.42L12 12.16 14.82 15zM5 7h5v2H5zm0 4h5v2H5zm0 4h5v2H5z" })] -}), 'FactCheckOutlined'); \ No newline at end of file +}), 'FactCheckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FactCheckRounded.js b/packages/material-ui-icons/lib/FactCheckRounded.js index fc932a65d1473b..1f2b509c3329b2 100644 --- a/packages/material-ui-icons/lib/FactCheckRounded.js +++ b/packages/material-ui-icons/lib/FactCheckRounded.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H6c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H6c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H6c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm9.7 2.12-3.17 3.17c-.39.39-1.03.39-1.42 0l-1.41-1.42a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.47-2.47c.39-.39 1.02-.39 1.41 0l.01.01c.38.39.38 1.03-.01 1.41z" -}), 'FactCheckRounded'); \ No newline at end of file +}), 'FactCheckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FactCheckSharp.js b/packages/material-ui-icons/lib/FactCheckSharp.js index 58eadc47b2edb9..7b34edc0a41770 100644 --- a/packages/material-ui-icons/lib/FactCheckSharp.js +++ b/packages/material-ui-icons/lib/FactCheckSharp.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M2 3v18h20V3H2zm8 14H5v-2h5v2zm0-4H5v-2h5v2zm0-4H5V7h5v2zm4.82 6L12 12.16l1.41-1.41 1.41 1.42L17.99 9l1.42 1.42L14.82 15z" -}), 'FactCheckSharp'); \ No newline at end of file +}), 'FactCheckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FactCheckTwoTone.js b/packages/material-ui-icons/lib/FactCheckTwoTone.js index d385c9cd9d26cb..f10293f9319532 100644 --- a/packages/material-ui-icons/lib/FactCheckTwoTone.js +++ b/packages/material-ui-icons/lib/FactCheckTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h16V5H4v14zm9.41-8.25 1.41 1.42L17.99 9l1.42 1.42L14.82 15 12 12.16l1.41-1.41zM5 7h5v2H5V7zm0 4h5v2H5v-2zm0 4h5v2H5v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H4V5h16v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.41 10.42 17.99 9l-3.17 3.17-1.41-1.42L12 12.16 14.82 15zM5 7h5v2H5zm0 4h5v2H5zm0 4h5v2H5z" -}, "2")], 'FactCheckTwoTone'); \ No newline at end of file +}, "2")], 'FactCheckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FamilyRestroom.js b/packages/material-ui-icons/lib/FamilyRestroom.js index e4195a83124dc8..88235694ffa02d 100644 --- a/packages/material-ui-icons/lib/FamilyRestroom.js +++ b/packages/material-ui-icons/lib/FamilyRestroom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7h4zm6.5 0v-4h1v-4c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5v4h1v4h3z" -}), 'FamilyRestroom'); \ No newline at end of file +}), 'FamilyRestroom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FamilyRestroomOutlined.js b/packages/material-ui-icons/lib/FamilyRestroomOutlined.js index e55bbba6b50871..c966c2eca09dc9 100644 --- a/packages/material-ui-icons/lib/FamilyRestroomOutlined.js +++ b/packages/material-ui-icons/lib/FamilyRestroomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7h4zm6.5 0v-4h1v-4c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5v4h1v4h3z" -}), 'FamilyRestroomOutlined'); \ No newline at end of file +}), 'FamilyRestroomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FamilyRestroomRounded.js b/packages/material-ui-icons/lib/FamilyRestroomRounded.js index 78ecf9c1ebb2a3..938b93d63cc4c0 100644 --- a/packages/material-ui-icons/lib/FamilyRestroomRounded.js +++ b/packages/material-ui-icons/lib/FamilyRestroomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 17v-5h1.11c.68 0 1.16-.67.95-1.32l-2.1-6.31C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h2c.55 0 1-.45 1-1zm-7.5-9.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 15v-6H8c.55 0 1-.45 1-1V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h.5v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1zm2.5-7v3c0 .55.45 1 1 1v3c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-3c.55 0 1-.45 1-1v-3c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5" -}), 'FamilyRestroomRounded'); \ No newline at end of file +}), 'FamilyRestroomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FamilyRestroomSharp.js b/packages/material-ui-icons/lib/FamilyRestroomSharp.js index 6ba7d2ef39c162..4a952aa72943f2 100644 --- a/packages/material-ui-icons/lib/FamilyRestroomSharp.js +++ b/packages/material-ui-icons/lib/FamilyRestroomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-3-9h-3l-1.17 3.5H17V22h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V7H2v8h1.5v7h4zm6.5 0v-4h1v-5.5h-5V18h1v4h3z" -}), 'FamilyRestroomSharp'); \ No newline at end of file +}), 'FamilyRestroomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FamilyRestroomTwoTone.js b/packages/material-ui-icons/lib/FamilyRestroomTwoTone.js index 071dbc115f2157..4366c85517edaa 100644 --- a/packages/material-ui-icons/lib/FamilyRestroomTwoTone.js +++ b/packages/material-ui-icons/lib/FamilyRestroomTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7h4zm6.5 0v-4h1v-4c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5v4h1v4h3z" -}), 'FamilyRestroomTwoTone'); \ No newline at end of file +}), 'FamilyRestroomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastForward.js b/packages/material-ui-icons/lib/FastForward.js index 8f8e7b988872db..dd280ae7881e21 100644 --- a/packages/material-ui-icons/lib/FastForward.js +++ b/packages/material-ui-icons/lib/FastForward.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 18 8.5-6L4 6v12zm9-12v12l8.5-6L13 6z" -}), 'FastForward'); \ No newline at end of file +}), 'FastForward'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastForwardOutlined.js b/packages/material-ui-icons/lib/FastForwardOutlined.js index 9946045107c65a..635e9dfa25311b 100644 --- a/packages/material-ui-icons/lib/FastForwardOutlined.js +++ b/packages/material-ui-icons/lib/FastForwardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9.86 18.03 12 15 14.14V9.86m-9 0L9.03 12 6 14.14V9.86M13 6v12l8.5-6L13 6zM4 6v12l8.5-6L4 6z" -}), 'FastForwardOutlined'); \ No newline at end of file +}), 'FastForwardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastForwardRounded.js b/packages/material-ui-icons/lib/FastForwardRounded.js index ba58e258a926a4..f1ec0ed29dee84 100644 --- a/packages/material-ui-icons/lib/FastForwardRounded.js +++ b/packages/material-ui-icons/lib/FastForwardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.58 16.89 5.77-4.07c.56-.4.56-1.24 0-1.63L5.58 7.11C4.91 6.65 4 7.12 4 7.93v8.14c0 .81.91 1.28 1.58.82zM13 7.93v8.14c0 .81.91 1.28 1.58.82l5.77-4.07c.56-.4.56-1.24 0-1.63l-5.77-4.07c-.67-.47-1.58 0-1.58.81z" -}), 'FastForwardRounded'); \ No newline at end of file +}), 'FastForwardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastForwardSharp.js b/packages/material-ui-icons/lib/FastForwardSharp.js index ad5708c1e20dbd..53170a7523fa29 100644 --- a/packages/material-ui-icons/lib/FastForwardSharp.js +++ b/packages/material-ui-icons/lib/FastForwardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 18 8.5-6L4 6v12zm9-12v12l8.5-6L13 6z" -}), 'FastForwardSharp'); \ No newline at end of file +}), 'FastForwardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastForwardTwoTone.js b/packages/material-ui-icons/lib/FastForwardTwoTone.js index b49473c0cb906a..f8b2bc15bb1a75 100644 --- a/packages/material-ui-icons/lib/FastForwardTwoTone.js +++ b/packages/material-ui-icons/lib/FastForwardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9.86v4.28L18.03 12zm-9 0v4.28L9.03 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 18 8.5-6L4 6v12zm2-8.14L9.03 12 6 14.14V9.86zM21.5 12 13 6v12l8.5-6zM15 9.86 18.03 12 15 14.14V9.86z" -}, "1")], 'FastForwardTwoTone'); \ No newline at end of file +}, "1")], 'FastForwardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastRewind.js b/packages/material-ui-icons/lib/FastRewind.js index da4dc0d36c4614..aaad5ed3473518 100644 --- a/packages/material-ui-icons/lib/FastRewind.js +++ b/packages/material-ui-icons/lib/FastRewind.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18V6l-8.5 6 8.5 6zm.5-6 8.5 6V6l-8.5 6z" -}), 'FastRewind'); \ No newline at end of file +}), 'FastRewind'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastRewindOutlined.js b/packages/material-ui-icons/lib/FastRewindOutlined.js index 973ed188138467..935877293ca6c9 100644 --- a/packages/material-ui-icons/lib/FastRewindOutlined.js +++ b/packages/material-ui-icons/lib/FastRewindOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0-8.5 6 8.5 6V6z" -}), 'FastRewindOutlined'); \ No newline at end of file +}), 'FastRewindOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastRewindRounded.js b/packages/material-ui-icons/lib/FastRewindRounded.js index d1aa3539080525..59662df8d468c2 100644 --- a/packages/material-ui-icons/lib/FastRewindRounded.js +++ b/packages/material-ui-icons/lib/FastRewindRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16.07V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.56.4-.56 1.24 0 1.63l5.77 4.07c.67.47 1.58 0 1.58-.81zm1.66-3.25 5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.57.4-.57 1.24 0 1.64z" -}), 'FastRewindRounded'); \ No newline at end of file +}), 'FastRewindRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastRewindSharp.js b/packages/material-ui-icons/lib/FastRewindSharp.js index 6346e55f58d4c5..797c3075e2b7ae 100644 --- a/packages/material-ui-icons/lib/FastRewindSharp.js +++ b/packages/material-ui-icons/lib/FastRewindSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18V6l-8.5 6 8.5 6zm.5-6 8.5 6V6l-8.5 6z" -}), 'FastRewindSharp'); \ No newline at end of file +}), 'FastRewindSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastRewindTwoTone.js b/packages/material-ui-icons/lib/FastRewindTwoTone.js index 025c9d10679f59..c951d4c94306b8 100644 --- a/packages/material-ui-icons/lib/FastRewindTwoTone.js +++ b/packages/material-ui-icons/lib/FastRewindTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 14.14V9.86L5.97 12zm9 0V9.86L14.97 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 6-8.5 6 8.5 6V6zm-2 8.14L5.97 12 9 9.86v4.28zM20 6l-8.5 6 8.5 6V6zm-2 8.14L14.97 12 18 9.86v4.28z" -}, "1")], 'FastRewindTwoTone'); \ No newline at end of file +}, "1")], 'FastRewindTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Fastfood.js b/packages/material-ui-icons/lib/Fastfood.js index a5bab8e170897c..c1c40d3f23f1a9 100644 --- a/packages/material-ui-icons/lib/Fastfood.js +++ b/packages/material-ui-icons/lib/Fastfood.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.06 22.99h1.66c.84 0 1.53-.64 1.63-1.46L23 5.05h-5V1h-1.97v4.05h-4.97l.3 2.34c1.71.47 3.31 1.32 4.27 2.26 1.44 1.42 2.43 2.89 2.43 5.29v8.05zM1 21.99V21h15.03v.99c0 .55-.45 1-1.01 1H2.01c-.56 0-1.01-.45-1.01-1zm15.03-7c0-8-15.03-8-15.03 0h15.03zM1.02 17h15v2h-15z" -}), 'Fastfood'); \ No newline at end of file +}), 'Fastfood'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastfoodOutlined.js b/packages/material-ui-icons/lib/FastfoodOutlined.js index d735ce4ed3f96b..a2918cc3c3dc70 100644 --- a/packages/material-ui-icons/lib/FastfoodOutlined.js +++ b/packages/material-ui-icons/lib/FastfoodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z" -}), 'FastfoodOutlined'); \ No newline at end of file +}), 'FastfoodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastfoodRounded.js b/packages/material-ui-icons/lib/FastfoodRounded.js index a9f052a6775afb..337ee7d0b5c630 100644 --- a/packages/material-ui-icons/lib/FastfoodRounded.js +++ b/packages/material-ui-icons/lib/FastfoodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.9 5H18V2c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.9c-.59 0-1.05.51-1 1.1l.12 1.21C14.9 8.16 18 10.77 18 15l.02 8h1.7c.84 0 1.53-.65 1.63-1.47L22.89 6.1c.06-.59-.4-1.1-.99-1.1zM15 21H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM2.1 15h12.8c.62 0 1.11-.56.99-1.16-.65-3.23-4.02-4.85-7.39-4.85s-6.73 1.62-7.39 4.85c-.12.6.38 1.16.99 1.16zM15 17H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'FastfoodRounded'); \ No newline at end of file +}), 'FastfoodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastfoodSharp.js b/packages/material-ui-icons/lib/FastfoodSharp.js index c03fc69765dba2..75e4db6195de33 100644 --- a/packages/material-ui-icons/lib/FastfoodSharp.js +++ b/packages/material-ui-icons/lib/FastfoodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V1h-2v4h-5l.23 2.31C14.9 8.16 18 10.77 18 15l.02 8h3.18L23 5h-5zM1 21h15v2H1zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM1 17h15v2H1z" -}), 'FastfoodSharp'); \ No newline at end of file +}), 'FastfoodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FastfoodTwoTone.js b/packages/material-ui-icons/lib/FastfoodTwoTone.js index ad7dafe59303ee..1cc48b0ce69c85 100644 --- a/packages/material-ui-icons/lib/FastfoodTwoTone.js +++ b/packages/material-ui-icons/lib/FastfoodTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 10.99c-1.42 0-3.77.46-4.88 2.01h9.77c-1.12-1.55-3.47-2.01-4.89-2.01z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z" -}, "2")], 'FastfoodTwoTone'); \ No newline at end of file +}, "2")], 'FastfoodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Favorite.js b/packages/material-ui-icons/lib/Favorite.js index d1e0c1daf5cac9..3fccebaec396cb 100644 --- a/packages/material-ui-icons/lib/Favorite.js +++ b/packages/material-ui-icons/lib/Favorite.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" -}), 'Favorite'); \ No newline at end of file +}), 'Favorite'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteBorder.js b/packages/material-ui-icons/lib/FavoriteBorder.js index ae04e611ce6f7e..7d523a685460f7 100644 --- a/packages/material-ui-icons/lib/FavoriteBorder.js +++ b/packages/material-ui-icons/lib/FavoriteBorder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" -}), 'FavoriteBorder'); \ No newline at end of file +}), 'FavoriteBorder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteBorderOutlined.js b/packages/material-ui-icons/lib/FavoriteBorderOutlined.js index ed813f165661f5..9f0cd7542e5164 100644 --- a/packages/material-ui-icons/lib/FavoriteBorderOutlined.js +++ b/packages/material-ui-icons/lib/FavoriteBorderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" -}), 'FavoriteBorderOutlined'); \ No newline at end of file +}), 'FavoriteBorderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteBorderRounded.js b/packages/material-ui-icons/lib/FavoriteBorderRounded.js index 763b9351037a03..a3bfed274c561c 100644 --- a/packages/material-ui-icons/lib/FavoriteBorderRounded.js +++ b/packages/material-ui-icons/lib/FavoriteBorderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.66 3.99c-2.64-1.8-5.9-.96-7.66 1.1-1.76-2.06-5.02-2.91-7.66-1.1-1.4.96-2.28 2.58-2.34 4.29-.14 3.88 3.3 6.99 8.55 11.76l.1.09c.76.69 1.93.69 2.69-.01l.11-.1c5.25-4.76 8.68-7.87 8.55-11.75-.06-1.7-.94-3.32-2.34-4.28zM12.1 18.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" -}), 'FavoriteBorderRounded'); \ No newline at end of file +}), 'FavoriteBorderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteBorderSharp.js b/packages/material-ui-icons/lib/FavoriteBorderSharp.js index 43b0fac3776f6e..31f79f7ca79a64 100644 --- a/packages/material-ui-icons/lib/FavoriteBorderSharp.js +++ b/packages/material-ui-icons/lib/FavoriteBorderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" -}), 'FavoriteBorderSharp'); \ No newline at end of file +}), 'FavoriteBorderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteBorderTwoTone.js b/packages/material-ui-icons/lib/FavoriteBorderTwoTone.js index d63a8642ac7f31..e2d9af822f9692 100644 --- a/packages/material-ui-icons/lib/FavoriteBorderTwoTone.js +++ b/packages/material-ui-icons/lib/FavoriteBorderTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" -}), 'FavoriteBorderTwoTone'); \ No newline at end of file +}), 'FavoriteBorderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteOutlined.js b/packages/material-ui-icons/lib/FavoriteOutlined.js index c5d86d1a6a2d31..46f1107eb15ac8 100644 --- a/packages/material-ui-icons/lib/FavoriteOutlined.js +++ b/packages/material-ui-icons/lib/FavoriteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" -}), 'FavoriteOutlined'); \ No newline at end of file +}), 'FavoriteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteRounded.js b/packages/material-ui-icons/lib/FavoriteRounded.js index 2a7d8855c33245..00506ddb3021bd 100644 --- a/packages/material-ui-icons/lib/FavoriteRounded.js +++ b/packages/material-ui-icons/lib/FavoriteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.35 20.13c-.76.69-1.93.69-2.69-.01l-.11-.1C5.3 15.27 1.87 12.16 2 8.28c.06-1.7.93-3.33 2.34-4.29 2.64-1.8 5.9-.96 7.66 1.1 1.76-2.06 5.02-2.91 7.66-1.1 1.41.96 2.28 2.59 2.34 4.29.14 3.88-3.3 6.99-8.55 11.76l-.1.09z" -}), 'FavoriteRounded'); \ No newline at end of file +}), 'FavoriteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteSharp.js b/packages/material-ui-icons/lib/FavoriteSharp.js index 39e48d934fa2f9..964b3455848003 100644 --- a/packages/material-ui-icons/lib/FavoriteSharp.js +++ b/packages/material-ui-icons/lib/FavoriteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" -}), 'FavoriteSharp'); \ No newline at end of file +}), 'FavoriteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FavoriteTwoTone.js b/packages/material-ui-icons/lib/FavoriteTwoTone.js index 884bcb223e5b32..9f9d2a5e5b481d 100644 --- a/packages/material-ui-icons/lib/FavoriteTwoTone.js +++ b/packages/material-ui-icons/lib/FavoriteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" -}, "1")], 'FavoriteTwoTone'); \ No newline at end of file +}, "1")], 'FavoriteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedPlayList.js b/packages/material-ui-icons/lib/FeaturedPlayList.js index 4e1e78a57d4fec..becfbb6218530d 100644 --- a/packages/material-ui-icons/lib/FeaturedPlayList.js +++ b/packages/material-ui-icons/lib/FeaturedPlayList.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8H3V9h9v2zm0-4H3V5h9v2z" -}), 'FeaturedPlayList'); \ No newline at end of file +}), 'FeaturedPlayList'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedPlayListOutlined.js b/packages/material-ui-icons/lib/FeaturedPlayListOutlined.js index 1d8e5788fec100..80a3f195c90696 100644 --- a/packages/material-ui-icons/lib/FeaturedPlayListOutlined.js +++ b/packages/material-ui-icons/lib/FeaturedPlayListOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z" -}), 'FeaturedPlayListOutlined'); \ No newline at end of file +}), 'FeaturedPlayListOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedPlayListRounded.js b/packages/material-ui-icons/lib/FeaturedPlayListRounded.js index 02f67c07226ae8..84642446b2112a 100644 --- a/packages/material-ui-icons/lib/FeaturedPlayListRounded.js +++ b/packages/material-ui-icons/lib/FeaturedPlayListRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-10 8H4c-.55 0-1-.45-1-1s.45-1 1-1h7c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H4c-.55 0-1-.45-1-1s.45-1 1-1h7c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'FeaturedPlayListRounded'); \ No newline at end of file +}), 'FeaturedPlayListRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedPlayListSharp.js b/packages/material-ui-icons/lib/FeaturedPlayListSharp.js index 4fdb9fb7286d5a..90b87557d99b5e 100644 --- a/packages/material-ui-icons/lib/FeaturedPlayListSharp.js +++ b/packages/material-ui-icons/lib/FeaturedPlayListSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-11 8H3V9h9v2zm0-4H3V5h9v2z" -}), 'FeaturedPlayListSharp'); \ No newline at end of file +}), 'FeaturedPlayListSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedPlayListTwoTone.js b/packages/material-ui-icons/lib/FeaturedPlayListTwoTone.js index d482742ea765b4..a57d0b811ff06b 100644 --- a/packages/material-ui-icons/lib/FeaturedPlayListTwoTone.js +++ b/packages/material-ui-icons/lib/FeaturedPlayListTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V5H3v14zM5 7h9v2H5V7zm0 3h9v2H5v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z" -}, "1")], 'FeaturedPlayListTwoTone'); \ No newline at end of file +}, "1")], 'FeaturedPlayListTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedVideo.js b/packages/material-ui-icons/lib/FeaturedVideo.js index 81943ec71df7d5..9eceebd6f79341 100644 --- a/packages/material-ui-icons/lib/FeaturedVideo.js +++ b/packages/material-ui-icons/lib/FeaturedVideo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9H3V5h9v7z" -}), 'FeaturedVideo'); \ No newline at end of file +}), 'FeaturedVideo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedVideoOutlined.js b/packages/material-ui-icons/lib/FeaturedVideoOutlined.js index 92ab77d509cb09..7bbefe0d4e5919 100644 --- a/packages/material-ui-icons/lib/FeaturedVideoOutlined.js +++ b/packages/material-ui-icons/lib/FeaturedVideoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z" -}), 'FeaturedVideoOutlined'); \ No newline at end of file +}), 'FeaturedVideoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedVideoRounded.js b/packages/material-ui-icons/lib/FeaturedVideoRounded.js index 05afbd21bc161d..e565d58b73d033 100644 --- a/packages/material-ui-icons/lib/FeaturedVideoRounded.js +++ b/packages/material-ui-icons/lib/FeaturedVideoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-10 9H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1z" -}), 'FeaturedVideoRounded'); \ No newline at end of file +}), 'FeaturedVideoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedVideoSharp.js b/packages/material-ui-icons/lib/FeaturedVideoSharp.js index 643b0a48ebcb8d..da42f75f5e579e 100644 --- a/packages/material-ui-icons/lib/FeaturedVideoSharp.js +++ b/packages/material-ui-icons/lib/FeaturedVideoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-11 9H3V5h9v7z" -}), 'FeaturedVideoSharp'); \ No newline at end of file +}), 'FeaturedVideoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeaturedVideoTwoTone.js b/packages/material-ui-icons/lib/FeaturedVideoTwoTone.js index 6789a0f5f00331..ea7f5569a0da18 100644 --- a/packages/material-ui-icons/lib/FeaturedVideoTwoTone.js +++ b/packages/material-ui-icons/lib/FeaturedVideoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V5H3v14zM4 6h9v7H4V6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z" -}, "1")], 'FeaturedVideoTwoTone'); \ No newline at end of file +}, "1")], 'FeaturedVideoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Feed.js b/packages/material-ui-icons/lib/Feed.js index 1f2177b59a335d..7892f1d5bbe4b2 100644 --- a/packages/material-ui-icons/lib/Feed.js +++ b/packages/material-ui-icons/lib/Feed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2zm-2-4V5l4 4h-4z" -}), 'Feed'); \ No newline at end of file +}), 'Feed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedOutlined.js b/packages/material-ui-icons/lib/FeedOutlined.js index 433daf773a348d..6fe87d470db75f 100644 --- a/packages/material-ui-icons/lib/FeedOutlined.js +++ b/packages/material-ui-icons/lib/FeedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zm3 16H5V5h10v4h4v10zM7 17h10v-2H7v2zm5-10H7v2h5V7zm-5 6h10v-2H7v2z" -}), 'FeedOutlined'); \ No newline at end of file +}), 'FeedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedRounded.js b/packages/material-ui-icons/lib/FeedRounded.js index ad7f3733b6a8d4..4b426b0c26b03e 100644 --- a/packages/material-ui-icons/lib/FeedRounded.js +++ b/packages/material-ui-icons/lib/FeedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zM8 7h3c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm8 10H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-1-5V5l4 4h-3c-.55 0-1-.45-1-1z" -}), 'FeedRounded'); \ No newline at end of file +}), 'FeedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedSharp.js b/packages/material-ui-icons/lib/FeedSharp.js index 274269399a0bb1..b891f1babdc738 100644 --- a/packages/material-ui-icons/lib/FeedSharp.js +++ b/packages/material-ui-icons/lib/FeedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3H3v18h18V8l-5-5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2zm-2-4V5l4 4h-4z" -}), 'FeedSharp'); \ No newline at end of file +}), 'FeedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedTwoTone.js b/packages/material-ui-icons/lib/FeedTwoTone.js index 117de60be7eefa..e0de173f4b642c 100644 --- a/packages/material-ui-icons/lib/FeedTwoTone.js +++ b/packages/material-ui-icons/lib/FeedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 5H5v14h14V9h-4V5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-6v2H7v-2h10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13h10v-2H7v2zm0 4h10v-2H7v2zm9-14H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zm3 16H5V5h10v4h4v10zM12 7H7v2h5V7z" -}, "1")], 'FeedTwoTone'); \ No newline at end of file +}, "1")], 'FeedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Feedback.js b/packages/material-ui-icons/lib/Feedback.js index 6f0ded7abcf1e6..0f75a6ff94f8b9 100644 --- a/packages/material-ui-icons/lib/Feedback.js +++ b/packages/material-ui-icons/lib/Feedback.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z" -}), 'Feedback'); \ No newline at end of file +}), 'Feedback'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedbackOutlined.js b/packages/material-ui-icons/lib/FeedbackOutlined.js index ac7ca680a24a95..483da92492ca0b 100644 --- a/packages/material-ui-icons/lib/FeedbackOutlined.js +++ b/packages/material-ui-icons/lib/FeedbackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" -}), 'FeedbackOutlined'); \ No newline at end of file +}), 'FeedbackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedbackRounded.js b/packages/material-ui-icons/lib/FeedbackRounded.js index 70edfd0f5bab84..d2c9d116a98b08 100644 --- a/packages/material-ui-icons/lib/FeedbackRounded.js +++ b/packages/material-ui-icons/lib/FeedbackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4.01c-1.1 0-2 .9-2 2v18L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v2z" -}), 'FeedbackRounded'); \ No newline at end of file +}), 'FeedbackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedbackSharp.js b/packages/material-ui-icons/lib/FeedbackSharp.js index fd2e6029c39635..6d0e12747fc59a 100644 --- a/packages/material-ui-icons/lib/FeedbackSharp.js +++ b/packages/material-ui-icons/lib/FeedbackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2.01L2 22l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z" -}), 'FeedbackSharp'); \ No newline at end of file +}), 'FeedbackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FeedbackTwoTone.js b/packages/material-ui-icons/lib/FeedbackTwoTone.js index a827e4622f75a5..fbbaaaebd694e8 100644 --- a/packages/material-ui-icons/lib/FeedbackTwoTone.js +++ b/packages/material-ui-icons/lib/FeedbackTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17 5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" -}, "1")], 'FeedbackTwoTone'); \ No newline at end of file +}, "1")], 'FeedbackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Female.js b/packages/material-ui-icons/lib/Female.js index 5726212760d147..c33a00ed36b9fa 100644 --- a/packages/material-ui-icons/lib/Female.js +++ b/packages/material-ui-icons/lib/Female.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" -}), 'Female'); \ No newline at end of file +}), 'Female'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FemaleOutlined.js b/packages/material-ui-icons/lib/FemaleOutlined.js index bbadd1a28d76e3..7955c52922e1e6 100644 --- a/packages/material-ui-icons/lib/FemaleOutlined.js +++ b/packages/material-ui-icons/lib/FemaleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" -}), 'FemaleOutlined'); \ No newline at end of file +}), 'FemaleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FemaleRounded.js b/packages/material-ui-icons/lib/FemaleRounded.js index eaeb9a7f8675f8..c39a9a14b44ab0 100644 --- a/packages/material-ui-icons/lib/FemaleRounded.js +++ b/packages/material-ui-icons/lib/FemaleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm1 8.91c2.56-.47 4.5-2.71 4.5-5.41C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.94 4.5 5.41V17h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2.09z" -}), 'FemaleRounded'); \ No newline at end of file +}), 'FemaleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FemaleSharp.js b/packages/material-ui-icons/lib/FemaleSharp.js index 7ffee351002938..2cd9fb64a4bcfc 100644 --- a/packages/material-ui-icons/lib/FemaleSharp.js +++ b/packages/material-ui-icons/lib/FemaleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" -}), 'FemaleSharp'); \ No newline at end of file +}), 'FemaleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FemaleTwoTone.js b/packages/material-ui-icons/lib/FemaleTwoTone.js index 805a24c599b043..9bdd73d7a82dea 100644 --- a/packages/material-ui-icons/lib/FemaleTwoTone.js +++ b/packages/material-ui-icons/lib/FemaleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" -}), 'FemaleTwoTone'); \ No newline at end of file +}), 'FemaleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Fence.js b/packages/material-ui-icons/lib/Fence.js index 617b95ed16383a..b3f178ebe26575 100644 --- a/packages/material-ui-icons/lib/Fence.js +++ b/packages/material-ui-icons/lib/Fence.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'Fence'); \ No newline at end of file +}), 'Fence'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FenceOutlined.js b/packages/material-ui-icons/lib/FenceOutlined.js index 4acc26dd695ef1..e823f0f524a7ea 100644 --- a/packages/material-ui-icons/lib/FenceOutlined.js +++ b/packages/material-ui-icons/lib/FenceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'FenceOutlined'); \ No newline at end of file +}), 'FenceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FenceRounded.js b/packages/material-ui-icons/lib/FenceRounded.js index 93c1f0af196e45..96534ecf43e25f 100644 --- a/packages/material-ui-icons/lib/FenceRounded.js +++ b/packages/material-ui-icons/lib/FenceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11c0-.55-.45-1-1-1h-1V7l-2.29-2.29a.9959.9959 0 0 0-1.41 0L14 6l-1.29-1.29a.9959.9959 0 0 0-1.41 0L10 6 8.71 4.71a.9959.9959 0 0 0-1.41 0L5 7v3H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v3c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1zm-5-4.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'FenceRounded'); \ No newline at end of file +}), 'FenceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FenceSharp.js b/packages/material-ui-icons/lib/FenceSharp.js index b23a80a14c1742..6a3039f5b49d89 100644 --- a/packages/material-ui-icons/lib/FenceSharp.js +++ b/packages/material-ui-icons/lib/FenceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'FenceSharp'); \ No newline at end of file +}), 'FenceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FenceTwoTone.js b/packages/material-ui-icons/lib/FenceTwoTone.js index c23f66b06be0e9..06f28c8056a0f5 100644 --- a/packages/material-ui-icons/lib/FenceTwoTone.js +++ b/packages/material-ui-icons/lib/FenceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 6.83 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" -}, "1")], 'FenceTwoTone'); \ No newline at end of file +}, "1")], 'FenceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Festival.js b/packages/material-ui-icons/lib/Festival.js index 1024c61658f9fb..676f2bc4fae726 100644 --- a/packages/material-ui-icons/lib/Festival.js +++ b/packages/material-ui-icons/lib/Festival.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.7V4h3l-1-1.49L16 1h-5v4.7L2 12v10h7v-5l3.03-2L15 17v5h7V12z" -}), 'Festival'); \ No newline at end of file +}), 'Festival'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FestivalOutlined.js b/packages/material-ui-icons/lib/FestivalOutlined.js index 485fa3593dd434..a616db07980e5a 100644 --- a/packages/material-ui-icons/lib/FestivalOutlined.js +++ b/packages/material-ui-icons/lib/FestivalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11V9c-6-2-11-7-11-7S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74C22.07 13.75 23 12.49 23 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" -}), 'FestivalOutlined'); \ No newline at end of file +}), 'FestivalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FestivalRounded.js b/packages/material-ui-icons/lib/FestivalRounded.js index 5ee6055c65d6f9..3d8726095ecb81 100644 --- a/packages/material-ui-icons/lib/FestivalRounded.js +++ b/packages/material-ui-icons/lib/FestivalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11v-.61c0-.8-.48-1.54-1.23-1.84-3.65-1.48-6.81-3.93-8.48-5.37-.74-.64-1.84-.64-2.58 0-1.68 1.44-4.83 3.88-8.48 5.37C1.48 8.85 1 9.58 1 10.39V11c0 1.49.93 2.75 2.24 3.26-.03 1.68-.16 3.55-.52 5.29-.26 1.26.66 2.45 1.95 2.45h14.67c1.29 0 2.21-1.19 1.95-2.45-.36-1.75-.5-3.62-.52-5.29C22.07 13.75 23 12.49 23 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" -}), 'FestivalRounded'); \ No newline at end of file +}), 'FestivalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FestivalSharp.js b/packages/material-ui-icons/lib/FestivalSharp.js index f81be15b1ac4ee..dca03c458177e3 100644 --- a/packages/material-ui-icons/lib/FestivalSharp.js +++ b/packages/material-ui-icons/lib/FestivalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11V9c-6-2-11-7-11-7S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74C22.07 13.75 23 12.49 23 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" -}), 'FestivalSharp'); \ No newline at end of file +}), 'FestivalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FestivalTwoTone.js b/packages/material-ui-icons/lib/FestivalTwoTone.js index 65b3209151ee8a..3fe23ccfdef06d 100644 --- a/packages/material-ui-icons/lib/FestivalTwoTone.js +++ b/packages/material-ui-icons/lib/FestivalTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.24 14.42c-.04 1.76-.18 3.72-.58 5.58h2.67c.27-1.94.43-4.07.52-5.93-.31-.17-.6-.37-.85-.63-.47.49-1.08.83-1.76.98zM11 11H8c0 .83.67 1.5 1.5 1.5S11 11.83 11 11zm-5 0H3c0 .83.67 1.5 1.5 1.5S6 11.83 6 11zm6-6.29C10.67 5.85 8.51 7.55 5.89 9h12.23C15.49 7.55 13.33 5.85 12 4.71zm7.5 7.79c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zm2.5.94c-.25.25-.54.45-.85.62.1 1.87.26 4 .52 5.93h2.67c-.39-1.86-.54-3.82-.57-5.58-.69-.14-1.3-.48-1.77-.97z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74C22.07 13.75 23 12.49 23 11V9c-6-2-11-7-11-7zm0 2.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM3 11h3c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11zm4.33 9H4.66c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.08 1.87-.24 4-.51 5.94zM8 11h3c0 .83-.67 1.5-1.5 1.5S8 11.83 8 11zm1.35 9c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm5.15-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm2.17 7.5c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" -}, "1")], 'FestivalTwoTone'); \ No newline at end of file +}, "1")], 'FestivalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberDvr.js b/packages/material-ui-icons/lib/FiberDvr.js index 3418b1e9f3d9fe..921bdfcbd9bf12 100644 --- a/packages/material-ui-icons/lib/FiberDvr.js +++ b/packages/material-ui-icons/lib/FiberDvr.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10.5h2v1h-2v-1zm-13 0h2v3h-2v-3zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 11.5c0 .6-.4 1.15-.9 1.4L21 15h-1.5l-.85-2H17.5v2H16V9h3.5c.85 0 1.5.65 1.5 1.5v1z" -}), 'FiberDvr'); \ No newline at end of file +}), 'FiberDvr'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberDvrOutlined.js b/packages/material-ui-icons/lib/FiberDvrOutlined.js index 48973548d8e6dc..fed1d8030f35b1 100644 --- a/packages/material-ui-icons/lib/FiberDvrOutlined.js +++ b/packages/material-ui-icons/lib/FiberDvrOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.87 12.43-1-3.43h-1.5l1.75 6h1.5l1.75-6h-1.5zM21 11.5v-1c0-.85-.65-1.5-1.5-1.5H16v6h1.5v-2h1.15l.85 2H21l-.9-2.1c.5-.25.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zM6.5 9H3v6h3.5c.85 0 1.5-.65 1.5-1.5v-3C8 9.65 7.35 9 6.5 9zm0 4.5h-2v-3h2v3z" -}), 'FiberDvrOutlined'); \ No newline at end of file +}), 'FiberDvrOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberDvrRounded.js b/packages/material-ui-icons/lib/FiberDvrRounded.js index 7ede6ed7821982..979f0ffed2b529 100644 --- a/packages/material-ui-icons/lib/FiberDvrRounded.js +++ b/packages/material-ui-icons/lib/FiberDvrRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 10.5h2v3h-2zm13 0h2v1h-2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zM8 13.5c0 .83-.67 1.5-1.5 1.5h-3c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h3c.83 0 1.5.67 1.5 1.5v3zm6.1-3.58-1.27 4.36c-.12.43-.52.72-.96.72s-.84-.29-.96-.72L9.64 9.92c-.14-.46.21-.92.69-.92.32 0 .6.21.69.52l.85 2.91.85-2.91c.09-.31.37-.52.69-.52.48 0 .83.46.69.92zM21 11.5c0 .6-.4 1.15-.9 1.4l.63 1.48c.19.45-.14.96-.63.96-.28 0-.53-.16-.63-.42L18.65 13H17.5v1.31c0 .38-.31.69-.69.69h-.12c-.38 0-.69-.31-.69-.69V9.64c0-.35.29-.64.64-.64h2.86c.83 0 1.5.67 1.5 1.5v1z" -}), 'FiberDvrRounded'); \ No newline at end of file +}), 'FiberDvrRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberDvrSharp.js b/packages/material-ui-icons/lib/FiberDvrSharp.js index 7f526cb18e3bd4..a4f8aba64b1869 100644 --- a/packages/material-ui-icons/lib/FiberDvrSharp.js +++ b/packages/material-ui-icons/lib/FiberDvrSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10.5h2v1h-2v-1zm-13 0h2v3h-2v-3zM23 3H1v18h22V3zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 12.9h-.9L21 15h-1.5l-.85-2H17.5v2H16V9h5v3.9z" -}), 'FiberDvrSharp'); \ No newline at end of file +}), 'FiberDvrSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberDvrTwoTone.js b/packages/material-ui-icons/lib/FiberDvrTwoTone.js index 7368840e276676..44d37d53bb5492 100644 --- a/packages/material-ui-icons/lib/FiberDvrTwoTone.js +++ b/packages/material-ui-icons/lib/FiberDvrTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11.56v-.89c0-.76-.58-1.33-1.33-1.33h-3.11v5.33h1.33v-1.78h1.02l.76 1.78H20l-.8-1.87c.44-.22.8-.71.8-1.24zm-1.33 0h-1.78v-.89h1.78v.89zM7.11 9.33H4v5.33h3.11c.76 0 1.33-.58 1.33-1.33v-2.67c0-.75-.57-1.33-1.33-1.33zm0 4H5.33v-2.67h1.78v2.67zm7-4h-1.34l-.89 3.05L11 9.33H9.66l1.56 5.34h1.33z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h18v14H3z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 16H3V5h18v14z" -}, "2")], 'FiberDvrTwoTone'); \ No newline at end of file +}, "2")], 'FiberDvrTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberManualRecord.js b/packages/material-ui-icons/lib/FiberManualRecord.js index 3a5d4593202bb7..9b9464506ea9f3 100644 --- a/packages/material-ui-icons/lib/FiberManualRecord.js +++ b/packages/material-ui-icons/lib/FiberManualRecord.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "8" -}), 'FiberManualRecord'); \ No newline at end of file +}), 'FiberManualRecord'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberManualRecordOutlined.js b/packages/material-ui-icons/lib/FiberManualRecordOutlined.js index 7bd2c1b7c9cd1d..17b3dfe4ebc4bd 100644 --- a/packages/material-ui-icons/lib/FiberManualRecordOutlined.js +++ b/packages/material-ui-icons/lib/FiberManualRecordOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8z" -}), 'FiberManualRecordOutlined'); \ No newline at end of file +}), 'FiberManualRecordOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberManualRecordRounded.js b/packages/material-ui-icons/lib/FiberManualRecordRounded.js index 9af93481d229fe..afad00f00200d9 100644 --- a/packages/material-ui-icons/lib/FiberManualRecordRounded.js +++ b/packages/material-ui-icons/lib/FiberManualRecordRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "8" -}), 'FiberManualRecordRounded'); \ No newline at end of file +}), 'FiberManualRecordRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberManualRecordSharp.js b/packages/material-ui-icons/lib/FiberManualRecordSharp.js index 5b482e467417c8..7ecc0f8c0dcb8d 100644 --- a/packages/material-ui-icons/lib/FiberManualRecordSharp.js +++ b/packages/material-ui-icons/lib/FiberManualRecordSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "8" -}), 'FiberManualRecordSharp'); \ No newline at end of file +}), 'FiberManualRecordSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberManualRecordTwoTone.js b/packages/material-ui-icons/lib/FiberManualRecordTwoTone.js index 0e6a5917b6ca7c..aa0f3c4c8b189d 100644 --- a/packages/material-ui-icons/lib/FiberManualRecordTwoTone.js +++ b/packages/material-ui-icons/lib/FiberManualRecordTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zm0-14c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z" -}, "1")], 'FiberManualRecordTwoTone'); \ No newline at end of file +}, "1")], 'FiberManualRecordTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberNew.js b/packages/material-ui-icons/lib/FiberNew.js index bdedc1dbe562ba..f1c68fd14f9418 100644 --- a/packages/material-ui-icons/lib/FiberNew.js +++ b/packages/material-ui-icons/lib/FiberNew.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 3.74c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v5z" -}), 'FiberNew'); \ No newline at end of file +}), 'FiberNew'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberNewOutlined.js b/packages/material-ui-icons/lib/FiberNewOutlined.js index 9b3a1959f0eb2c..fdd182dee8410c 100644 --- a/packages/material-ui-icons/lib/FiberNewOutlined.js +++ b/packages/material-ui-icons/lib/FiberNewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.25 12.5 4.75 9H3.5v6h1.25v-3.5L7.3 15h1.2V9H7.25zM9.5 15h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12h2.5V9h-4zm9.75-6v4.5h-1.12V9.99h-1.25v3.52h-1.13V9H14.5v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h-1.25z" -}), 'FiberNewOutlined'); \ No newline at end of file +}), 'FiberNewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberNewRounded.js b/packages/material-ui-icons/lib/FiberNewRounded.js index 92905fc6d4d7fa..14625821f920a2 100644 --- a/packages/material-ui-icons/lib/FiberNewRounded.js +++ b/packages/material-ui-icons/lib/FiberNewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM8.5 14.21c0 .43-.36.79-.79.79-.25 0-.49-.12-.64-.33L4.75 11.5v2.88c0 .35-.28.62-.62.62s-.63-.28-.63-.62V9.79c0-.43.36-.79.79-.79h.05c.26 0 .5.12.65.33l2.26 3.17V9.62c0-.34.28-.62.63-.62s.62.28.62.62v4.59zm5-4.57c0 .35-.28.62-.62.62H11v1.12h1.88c.35 0 .62.28.62.62v.01c0 .35-.28.62-.62.62H11v1.11h1.88c.35 0 .62.28.62.62 0 .35-.28.62-.62.62h-2.53c-.47 0-.85-.38-.85-.85v-4.3c0-.45.38-.83.85-.83h2.53c.35 0 .62.28.62.62v.02zm7 4.36c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1V9.62c0-.34.28-.62.62-.62s.62.28.62.62v3.89h1.13v-2.9c0-.35.28-.62.62-.62s.62.28.62.62v2.89h1.12V9.62c0-.35.28-.62.62-.62s.62.28.62.62V14z" -}), 'FiberNewRounded'); \ No newline at end of file +}), 'FiberNewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberNewSharp.js b/packages/material-ui-icons/lib/FiberNewSharp.js index 8a7e7c9ccf6579..fb865a868abfdd 100644 --- a/packages/material-ui-icons/lib/FiberNewSharp.js +++ b/packages/material-ui-icons/lib/FiberNewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 4.74h-6V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v6z" -}), 'FiberNewSharp'); \ No newline at end of file +}), 'FiberNewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberNewTwoTone.js b/packages/material-ui-icons/lib/FiberNewTwoTone.js index 74848ede98aee4..2a5dbcf5666615 100644 --- a/packages/material-ui-icons/lib/FiberNewTwoTone.js +++ b/packages/material-ui-icons/lib/FiberNewTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.12 14.47V9.53H8.09v2.88L6.03 9.53H5v4.94h1.03v-2.88l2.1 2.88zm4.12-3.9V9.53h-3.3v4.94h3.3v-1.03h-2.06v-.91h2.06v-1.04h-2.06v-.92zm.82-1.04v4.12c0 .45.37.82.82.82h3.29c.45 0 .82-.37.82-.82V9.53h-1.03v3.71h-.92v-2.89h-1.03v2.9h-.93V9.53h-1.02z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16v12H4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" -}, "2")], 'FiberNewTwoTone'); \ No newline at end of file +}, "2")], 'FiberNewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberPin.js b/packages/material-ui-icons/lib/FiberPin.js index 375c958b35ee92..fc378cc3543c69 100644 --- a/packages/material-ui-icons/lib/FiberPin.js +++ b/packages/material-ui-icons/lib/FiberPin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 10.5h2v1h-2zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .85-.65 1.5-1.5 1.5h-2v2H4V9h3.5c.85 0 1.5.65 1.5 1.5v1zm3.5 3.5H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z" -}), 'FiberPin'); \ No newline at end of file +}), 'FiberPin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberPinOutlined.js b/packages/material-ui-icons/lib/FiberPinOutlined.js index 2cf2c0e9b53259..18e777fea123cd 100644 --- a/packages/material-ui-icons/lib/FiberPinOutlined.js +++ b/packages/material-ui-icons/lib/FiberPinOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h1.5V9H11v6zm7.75-6v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9h-1.25zM7.5 9H4v6h1.5v-2h2c.85 0 1.5-.65 1.5-1.5v-1C9 9.65 8.35 9 7.5 9zm0 2.5h-2v-1h2v1z" -}), 'FiberPinOutlined'); \ No newline at end of file +}), 'FiberPinOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberPinRounded.js b/packages/material-ui-icons/lib/FiberPinRounded.js index 82f8bc84bdfe2b..356f0e99462263 100644 --- a/packages/material-ui-icons/lib/FiberPinRounded.js +++ b/packages/material-ui-icons/lib/FiberPinRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .83-.67 1.5-1.5 1.5h-2v1.25c0 .41-.34.75-.75.75S4 14.66 4 14.25V10c0-.55.45-1 1-1h2.5c.83 0 1.5.67 1.5 1.5v1zm3.5 2.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v4.5zm7.5-.04c0 .44-.35.79-.79.79-.25 0-.49-.12-.64-.33l-2.31-3.17v2.88c0 .34-.28.62-.62.62h-.01c-.35 0-.63-.28-.63-.62V9.83c0-.46.37-.83.83-.83.27 0 .52.13.67.35l2.25 3.15V9.62c0-.34.28-.62.62-.62h.01c.34 0 .62.28.62.62v4.59zM5.5 10.5h2v1h-2z" -}), 'FiberPinRounded'); \ No newline at end of file +}), 'FiberPinRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberPinSharp.js b/packages/material-ui-icons/lib/FiberPinSharp.js index a46505af39c3c4..0049b5eea73919 100644 --- a/packages/material-ui-icons/lib/FiberPinSharp.js +++ b/packages/material-ui-icons/lib/FiberPinSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 10.5h2v1h-2v-1zM22 4H2v16h20V4zM9 13H5.5v2H4V9h5v4zm3.5 2H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z" -}), 'FiberPinSharp'); \ No newline at end of file +}), 'FiberPinSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberPinTwoTone.js b/packages/material-ui-icons/lib/FiberPinTwoTone.js index 4b23a1b9a34a82..5a69315d1fd4b2 100644 --- a/packages/material-ui-icons/lib/FiberPinTwoTone.js +++ b/packages/material-ui-icons/lib/FiberPinTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 14.62h1.31v-1.75h1.75c.74 0 1.31-.57 1.31-1.31v-.88c0-.74-.57-1.31-1.31-1.31H5v5.25zm1.31-3.93h1.75v.88H6.31v-.88zm5.03-1.31h1.31v5.25h-1.31zm3.28 5.24h1.1v-3.06l2.23 3.06H19V9.38h-1.09v3.06l-2.19-3.06h-1.1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16v12H4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" -}, "2")], 'FiberPinTwoTone'); \ No newline at end of file +}, "2")], 'FiberPinTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberSmartRecord.js b/packages/material-ui-icons/lib/FiberSmartRecord.js index d597460775c716..e4126163dc9f58 100644 --- a/packages/material-ui-icons/lib/FiberSmartRecord.js +++ b/packages/material-ui-icons/lib/FiberSmartRecord.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "12", r: "8" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z" -}, "1")], 'FiberSmartRecord'); \ No newline at end of file +}, "1")], 'FiberSmartRecord'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberSmartRecordOutlined.js b/packages/material-ui-icons/lib/FiberSmartRecordOutlined.js index 4ed9d72b104028..73f091f34dfce1 100644 --- a/packages/material-ui-icons/lib/FiberSmartRecordOutlined.js +++ b/packages/material-ui-icons/lib/FiberSmartRecordOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm8-13.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z" -}), 'FiberSmartRecordOutlined'); \ No newline at end of file +}), 'FiberSmartRecordOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberSmartRecordRounded.js b/packages/material-ui-icons/lib/FiberSmartRecordRounded.js index 0cfc78b6a676fa..1f1b6692dd90d2 100644 --- a/packages/material-ui-icons/lib/FiberSmartRecordRounded.js +++ b/packages/material-ui-icons/lib/FiberSmartRecordRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "12", r: "8" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5.55v.18c0 .37.23.69.57.85C19.6 7.54 21 9.61 21 12s-1.4 4.46-3.43 5.42c-.34.16-.57.47-.57.84v.18c0 .68.71 1.11 1.32.82C21.08 18.01 23 15.23 23 12s-1.92-6.01-4.68-7.27c-.61-.28-1.32.14-1.32.82z" -}, "1")], 'FiberSmartRecordRounded'); \ No newline at end of file +}, "1")], 'FiberSmartRecordRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberSmartRecordSharp.js b/packages/material-ui-icons/lib/FiberSmartRecordSharp.js index 5dc5447ed55787..73393944880266 100644 --- a/packages/material-ui-icons/lib/FiberSmartRecordSharp.js +++ b/packages/material-ui-icons/lib/FiberSmartRecordSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "12", r: "8" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z" -}, "1")], 'FiberSmartRecordSharp'); \ No newline at end of file +}, "1")], 'FiberSmartRecordSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiberSmartRecordTwoTone.js b/packages/material-ui-icons/lib/FiberSmartRecordTwoTone.js index 45ea9514cab637..e9075ac19686a6 100644 --- a/packages/material-ui-icons/lib/FiberSmartRecordTwoTone.js +++ b/packages/material-ui-icons/lib/FiberSmartRecordTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zM9 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm8-1.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z" -}, "1")], 'FiberSmartRecordTwoTone'); \ No newline at end of file +}, "1")], 'FiberSmartRecordTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileCopy.js b/packages/material-ui-icons/lib/FileCopy.js index e107a47780882d..2d7c6ba2754e0e 100644 --- a/packages/material-ui-icons/lib/FileCopy.js +++ b/packages/material-ui-icons/lib/FileCopy.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4 6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z" -}), 'FileCopy'); \ No newline at end of file +}), 'FileCopy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileCopyOutlined.js b/packages/material-ui-icons/lib/FileCopyOutlined.js index 38897c30ba2a43..df80f06c3a07f9 100644 --- a/packages/material-ui-icons/lib/FileCopyOutlined.js +++ b/packages/material-ui-icons/lib/FileCopyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z" -}), 'FileCopyOutlined'); \ No newline at end of file +}), 'FileCopyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileCopyRounded.js b/packages/material-ui-icons/lib/FileCopyRounded.js index 35014b9b0cd305..a4359c4b43e221 100644 --- a/packages/material-ui-icons/lib/FileCopyRounded.js +++ b/packages/material-ui-icons/lib/FileCopyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 1H4c-1.1 0-2 .9-2 2v13c0 .55.45 1 1 1s1-.45 1-1V4c0-.55.45-1 1-1h10c.55 0 1-.45 1-1s-.45-1-1-1zm.59 4.59 4.83 4.83c.37.37.58.88.58 1.41V21c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h6.17c.53 0 1.04.21 1.42.59zM15 12h4.5L14 6.5V11c0 .55.45 1 1 1z" -}), 'FileCopyRounded'); \ No newline at end of file +}), 'FileCopyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileCopySharp.js b/packages/material-ui-icons/lib/FileCopySharp.js index 80f39a0154b553..bdbc822cd7149a 100644 --- a/packages/material-ui-icons/lib/FileCopySharp.js +++ b/packages/material-ui-icons/lib/FileCopySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H2v16h2V3h12V1zm-1 4 6 6v12H6V5h9zm-1 7h5.5L14 6.5V12z" -}), 'FileCopySharp'); \ No newline at end of file +}), 'FileCopySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileCopyTwoTone.js b/packages/material-ui-icons/lib/FileCopyTwoTone.js index f2d2eed7869010..8df03b7810e05d 100644 --- a/packages/material-ui-icons/lib/FileCopyTwoTone.js +++ b/packages/material-ui-icons/lib/FileCopyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 7H8v14h11v-9h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zm4 16H8V7h6v5h5v9z" -}, "1")], 'FileCopyTwoTone'); \ No newline at end of file +}, "1")], 'FileCopyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownload.js b/packages/material-ui-icons/lib/FileDownload.js index f9a01a4c7b4f96..f7c8c2f35ea148 100644 --- a/packages/material-ui-icons/lib/FileDownload.js +++ b/packages/material-ui-icons/lib/FileDownload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" -}), 'FileDownload'); \ No newline at end of file +}), 'FileDownload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadDone.js b/packages/material-ui-icons/lib/FileDownloadDone.js index 6166ea8b3d4b2c..febe68e43f58aa 100644 --- a/packages/material-ui-icons/lib/FileDownloadDone.js +++ b/packages/material-ui-icons/lib/FileDownloadDone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" -}), 'FileDownloadDone'); \ No newline at end of file +}), 'FileDownloadDone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadDoneOutlined.js b/packages/material-ui-icons/lib/FileDownloadDoneOutlined.js index 0f8d012905277a..64b9476d2ec79f 100644 --- a/packages/material-ui-icons/lib/FileDownloadDoneOutlined.js +++ b/packages/material-ui-icons/lib/FileDownloadDoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" -}), 'FileDownloadDoneOutlined'); \ No newline at end of file +}), 'FileDownloadDoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadDoneRounded.js b/packages/material-ui-icons/lib/FileDownloadDoneRounded.js index 8a952d2e20643e..47c7ac337d365b 100644 --- a/packages/material-ui-icons/lib/FileDownloadDoneRounded.js +++ b/packages/material-ui-icons/lib/FileDownloadDoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.42 4.71a.9959.9959 0 0 0-1.41 0L9.53 13.2 5.99 9.66a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.24 4.24c.39.39 1.02.39 1.41 0l9.19-9.19c.4-.39.4-1.02 0-1.41zM6 20h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'FileDownloadDoneRounded'); \ No newline at end of file +}), 'FileDownloadDoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadDoneSharp.js b/packages/material-ui-icons/lib/FileDownloadDoneSharp.js index 0e515e17861943..4cf23caaa403a0 100644 --- a/packages/material-ui-icons/lib/FileDownloadDoneSharp.js +++ b/packages/material-ui-icons/lib/FileDownloadDoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" -}), 'FileDownloadDoneSharp'); \ No newline at end of file +}), 'FileDownloadDoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadDoneTwoTone.js b/packages/material-ui-icons/lib/FileDownloadDoneTwoTone.js index 4096c43e4cd8c7..af68acf7c17be7 100644 --- a/packages/material-ui-icons/lib/FileDownloadDoneTwoTone.js +++ b/packages/material-ui-icons/lib/FileDownloadDoneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" -}), 'FileDownloadDoneTwoTone'); \ No newline at end of file +}), 'FileDownloadDoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadOff.js b/packages/material-ui-icons/lib/FileDownloadOff.js index 0a9a69789a005e..e57fcc8cb82486 100644 --- a/packages/material-ui-icons/lib/FileDownloadOff.js +++ b/packages/material-ui-icons/lib/FileDownloadOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V3h6v6h4l-3.59 3.59L9 6.17zm12.19 15.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z" -}), 'FileDownloadOff'); \ No newline at end of file +}), 'FileDownloadOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadOffOutlined.js b/packages/material-ui-icons/lib/FileDownloadOffOutlined.js index 7c056d06732f5b..289f5819b783d3 100644 --- a/packages/material-ui-icons/lib/FileDownloadOffOutlined.js +++ b/packages/material-ui-icons/lib/FileDownloadOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 15.17V15h2v2.17l-2-2zm-2.59-2.58L17 11l-1.41-1.41L14 11.17l1.41 1.42zM13 10.17V4h-2v4.17l2 2zm8.19 11.02-1.78-1.78-16.6-16.6-1.42 1.41 6.19 6.19L7 11l5 5 .59-.59L15.17 18H6v-3H4v3c0 1.1.9 2 2 2h11.17l2.61 2.61 1.41-1.42z" -}), 'FileDownloadOffOutlined'); \ No newline at end of file +}), 'FileDownloadOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadOffRounded.js b/packages/material-ui-icons/lib/FileDownloadOffRounded.js index 1da1c2543e31cf..939b96b2e9813b 100644 --- a/packages/material-ui-icons/lib/FileDownloadOffRounded.js +++ b/packages/material-ui-icons/lib/FileDownloadOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v5h1.59c.89 0 1.33 1.08.7 1.71l-1.88 1.88L9 6.17zm11.49 14.32L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.5 4.5c-.26.37-.28.91.1 1.28l4.59 4.59c.35.35.88.37 1.27.09L15.17 18H6c-.55 0-1 .45-1 1s.45 1 1 1h11.17l1.9 1.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" -}), 'FileDownloadOffRounded'); \ No newline at end of file +}), 'FileDownloadOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadOffSharp.js b/packages/material-ui-icons/lib/FileDownloadOffSharp.js index 3375f6345ab39c..4c773e2d5b535c 100644 --- a/packages/material-ui-icons/lib/FileDownloadOffSharp.js +++ b/packages/material-ui-icons/lib/FileDownloadOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V3h6v6h4l-3.59 3.59L9 6.17zm12.19 15.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z" -}), 'FileDownloadOffSharp'); \ No newline at end of file +}), 'FileDownloadOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadOffTwoTone.js b/packages/material-ui-icons/lib/FileDownloadOffTwoTone.js index affa8394a81659..0036595c807b05 100644 --- a/packages/material-ui-icons/lib/FileDownloadOffTwoTone.js +++ b/packages/material-ui-icons/lib/FileDownloadOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5h-2v3.17l2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 8.17-2-2V3h6v6h4l-3.59 3.59L13 10.17V5h-2v3.17zm10.19 13.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z" -}, "1")], 'FileDownloadOffTwoTone'); \ No newline at end of file +}, "1")], 'FileDownloadOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadOutlined.js b/packages/material-ui-icons/lib/FileDownloadOutlined.js index 8be13f306e7ac4..0b266298b886c7 100644 --- a/packages/material-ui-icons/lib/FileDownloadOutlined.js +++ b/packages/material-ui-icons/lib/FileDownloadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zm-1-4-1.41-1.41L13 12.17V4h-2v8.17L8.41 9.59 7 11l5 5 5-5z" -}), 'FileDownloadOutlined'); \ No newline at end of file +}), 'FileDownloadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadRounded.js b/packages/material-ui-icons/lib/FileDownloadRounded.js index b7a3466f971b5a..bc24619668447d 100644 --- a/packages/material-ui-icons/lib/FileDownloadRounded.js +++ b/packages/material-ui-icons/lib/FileDownloadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" -}), 'FileDownloadRounded'); \ No newline at end of file +}), 'FileDownloadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadSharp.js b/packages/material-ui-icons/lib/FileDownloadSharp.js index 73cfa288f03bc3..3b3c9feb75bd0a 100644 --- a/packages/material-ui-icons/lib/FileDownloadSharp.js +++ b/packages/material-ui-icons/lib/FileDownloadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" -}), 'FileDownloadSharp'); \ No newline at end of file +}), 'FileDownloadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileDownloadTwoTone.js b/packages/material-ui-icons/lib/FileDownloadTwoTone.js index 47e6d1e119c0f7..6c239058b3952c 100644 --- a/packages/material-ui-icons/lib/FileDownloadTwoTone.js +++ b/packages/material-ui-icons/lib/FileDownloadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 11H13V5h-2v6H9.83L12 13.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h14v2H5zm14-9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11z" -}, "1")], 'FileDownloadTwoTone'); \ No newline at end of file +}, "1")], 'FileDownloadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilePresent.js b/packages/material-ui-icons/lib/FilePresent.js index 0b1a2fd3d6d14d..122e399a82b7c2 100644 --- a/packages/material-ui-icons/lib/FilePresent.js +++ b/packages/material-ui-icons/lib/FilePresent.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V7l-5-5zM6 20V4h8v4h4v12H6zm10-10v5c0 2.21-1.79 4-4 4s-4-1.79-4-4V8.5c0-1.47 1.26-2.64 2.76-2.49 1.3.13 2.24 1.32 2.24 2.63V15h-2V8.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-5h2z" -}), 'FilePresent'); \ No newline at end of file +}), 'FilePresent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilePresentOutlined.js b/packages/material-ui-icons/lib/FilePresentOutlined.js index 0260fe187c6c9f..ec03548d3c21ba 100644 --- a/packages/material-ui-icons/lib/FilePresentOutlined.js +++ b/packages/material-ui-icons/lib/FilePresentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h8v4h4v12zm-6-3c-1.1 0-2-.9-2-2V9.5c0-.28.22-.5.5-.5s.5.22.5.5V15h2V9.5C13 8.12 11.88 7 10.5 7S8 8.12 8 9.5V15c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2v4c0 1.1-.9 2-2 2z" -}), 'FilePresentOutlined'); \ No newline at end of file +}), 'FilePresentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilePresentRounded.js b/packages/material-ui-icons/lib/FilePresentRounded.js index b5ef472dc9e62d..86ffc174edc152 100644 --- a/packages/material-ui-icons/lib/FilePresentRounded.js +++ b/packages/material-ui-icons/lib/FilePresentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM16 15c0 2.34-2.01 4.21-4.39 3.98C9.53 18.78 8 16.92 8 14.83V9.64c0-1.31.94-2.5 2.24-2.63C11.74 6.86 13 8.03 13 9.5V14c0 .55-.45 1-1 1s-1-.45-1-1V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v5.39c0 1 .68 1.92 1.66 2.08 1.26.21 2.34-.76 2.34-1.97v-3c0-.55.45-1 1-1s1 .45 1 1v3zm-2-8V4l4 4h-3c-.55 0-1-.45-1-1z" -}), 'FilePresentRounded'); \ No newline at end of file +}), 'FilePresentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilePresentSharp.js b/packages/material-ui-icons/lib/FilePresentSharp.js index c970019920eb58..a15ae934f47fa0 100644 --- a/packages/material-ui-icons/lib/FilePresentSharp.js +++ b/packages/material-ui-icons/lib/FilePresentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm2 13c0 2.21-1.79 4-4 4s-4-1.79-4-4V9.5C8 8.12 9.12 7 10.5 7S13 8.12 13 9.5V15h-2V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4zm-2-7V4l4 4h-4z" -}), 'FilePresentSharp'); \ No newline at end of file +}), 'FilePresentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilePresentTwoTone.js b/packages/material-ui-icons/lib/FilePresentTwoTone.js index 0a179352f1f3b4..8866f5a6d58a49 100644 --- a/packages/material-ui-icons/lib/FilePresentTwoTone.js +++ b/packages/material-ui-icons/lib/FilePresentTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4H6v16h12V8h-4V4zm2 7v4c0 2.21-1.79 4-4 4s-4-1.79-4-4V9.5C8 8.12 9.12 7 10.5 7S13 8.12 13 9.5V15h-2V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-4h2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 15c0 1.1-.9 2-2 2s-2-.9-2-2V9.5c0-.28.22-.5.5-.5s.5.22.5.5V15h2V9.5C13 8.12 11.88 7 10.5 7S8 8.12 8 9.5V15c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2v4z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h8v4h4v12z" -}, "2")], 'FilePresentTwoTone'); \ No newline at end of file +}, "2")], 'FilePresentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileUpload.js b/packages/material-ui-icons/lib/FileUpload.js index 475673d584fc50..d13c571b2883b0 100644 --- a/packages/material-ui-icons/lib/FileUpload.js +++ b/packages/material-ui-icons/lib/FileUpload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z" -}), 'FileUpload'); \ No newline at end of file +}), 'FileUpload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileUploadOutlined.js b/packages/material-ui-icons/lib/FileUploadOutlined.js index 3d65731d044fa2..03c50c997277c6 100644 --- a/packages/material-ui-icons/lib/FileUploadOutlined.js +++ b/packages/material-ui-icons/lib/FileUploadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z" -}), 'FileUploadOutlined'); \ No newline at end of file +}), 'FileUploadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileUploadRounded.js b/packages/material-ui-icons/lib/FileUploadRounded.js index 9bdb0d07bb6631..d7cea7d8c30141 100644 --- a/packages/material-ui-icons/lib/FileUploadRounded.js +++ b/packages/material-ui-icons/lib/FileUploadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.4 10h1.59v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.7 3.7a.9959.9959 0 0 0-1.41 0L6.7 8.29c-.63.63-.19 1.71.7 1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" -}), 'FileUploadRounded'); \ No newline at end of file +}), 'FileUploadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileUploadSharp.js b/packages/material-ui-icons/lib/FileUploadSharp.js index 4262d6b0b2a659..d48eb4db2b15f2 100644 --- a/packages/material-ui-icons/lib/FileUploadSharp.js +++ b/packages/material-ui-icons/lib/FileUploadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 10h4v6h6v-6h4l-7-7-7 7zm0 8v2h14v-2H5z" -}), 'FileUploadSharp'); \ No newline at end of file +}), 'FileUploadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FileUploadTwoTone.js b/packages/material-ui-icons/lib/FileUploadTwoTone.js index 362990ce7e9232..26e48179693d48 100644 --- a/packages/material-ui-icons/lib/FileUploadTwoTone.js +++ b/packages/material-ui-icons/lib/FileUploadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.83 8H11v6h2V8h1.17L12 5.83z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h14v2H5zm0-8h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2V8H9.83L12 5.83 14.17 8H13z" -}, "1")], 'FileUploadTwoTone'); \ No newline at end of file +}, "1")], 'FileUploadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter.js b/packages/material-ui-icons/lib/Filter.js index b503e5227b4118..03efd4d4b6d77b 100644 --- a/packages/material-ui-icons/lib/Filter.js +++ b/packages/material-ui-icons/lib/Filter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.96 10.29-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'Filter'); \ No newline at end of file +}), 'Filter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter1.js b/packages/material-ui-icons/lib/Filter1.js index 195202eb65426c..7edaf2f9570697 100644 --- a/packages/material-ui-icons/lib/Filter1.js +++ b/packages/material-ui-icons/lib/Filter1.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'Filter1'); \ No newline at end of file +}), 'Filter1'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter1Outlined.js b/packages/material-ui-icons/lib/Filter1Outlined.js index 1ceae65f340558..1036771fc4fa1f 100644 --- a/packages/material-ui-icons/lib/Filter1Outlined.js +++ b/packages/material-ui-icons/lib/Filter1Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'Filter1Outlined'); \ No newline at end of file +}), 'Filter1Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter1Rounded.js b/packages/material-ui-icons/lib/Filter1Rounded.js index c2467abab4b248..254de894b82c02 100644 --- a/packages/material-ui-icons/lib/Filter1Rounded.js +++ b/packages/material-ui-icons/lib/Filter1Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm13 10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v7c0 .55.45 1 1 1zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'Filter1Rounded'); \ No newline at end of file +}), 'Filter1Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter1Sharp.js b/packages/material-ui-icons/lib/Filter1Sharp.js index 3008cc353700e6..ff07a2e01e5105 100644 --- a/packages/material-ui-icons/lib/Filter1Sharp.js +++ b/packages/material-ui-icons/lib/Filter1Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm11 10h2V5h-4v2h2v8zm9-14H5v18h18V1zm-2 16H7V3h14v14z" -}), 'Filter1Sharp'); \ No newline at end of file +}), 'Filter1Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter1TwoTone.js b/packages/material-ui-icons/lib/Filter1TwoTone.js index 2594c00190c224..09282abfc88683 100644 --- a/packages/material-ui-icons/lib/Filter1TwoTone.js +++ b/packages/material-ui-icons/lib/Filter1TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm5-12h4v10h-2V7h-2V5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 15h2V5h-4v2h2zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 5v16c0 1.1.9 2 2 2h16v-2H3V5H1z" -}, "1")], 'Filter1TwoTone'); \ No newline at end of file +}, "1")], 'Filter1TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter2.js b/packages/material-ui-icons/lib/Filter2.js index 3862d0a4261a1f..0681a31d2c5489 100644 --- a/packages/material-ui-icons/lib/Filter2.js +++ b/packages/material-ui-icons/lib/Filter2.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" -}), 'Filter2'); \ No newline at end of file +}), 'Filter2'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter2Outlined.js b/packages/material-ui-icons/lib/Filter2Outlined.js index 7fad20b0b85a5f..6248c94a37f2d6 100644 --- a/packages/material-ui-icons/lib/Filter2Outlined.js +++ b/packages/material-ui-icons/lib/Filter2Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" -}), 'Filter2Outlined'); \ No newline at end of file +}), 'Filter2Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter2Rounded.js b/packages/material-ui-icons/lib/Filter2Rounded.js index 71dbfa997f16af..497ed02500f380 100644 --- a/packages/material-ui-icons/lib/Filter2Rounded.js +++ b/packages/material-ui-icons/lib/Filter2Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4-4h-3v-2h2c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v2h-2c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'Filter2Rounded'); \ No newline at end of file +}), 'Filter2Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter2Sharp.js b/packages/material-ui-icons/lib/Filter2Sharp.js index a76cdc3c75e927..cda6bae3271189 100644 --- a/packages/material-ui-icons/lib/Filter2Sharp.js +++ b/packages/material-ui-icons/lib/Filter2Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-4-4h-4v-2h4V5h-6v2h4v2h-4v6h6v-2z" -}), 'Filter2Sharp'); \ No newline at end of file +}), 'Filter2Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter2TwoTone.js b/packages/material-ui-icons/lib/Filter2TwoTone.js index 9fa0affb0e484e..4e02b22e280578 100644 --- a/packages/material-ui-icons/lib/Filter2TwoTone.js +++ b/packages/material-ui-icons/lib/Filter2TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm4-6c0-1.11.9-2 2-2h2V7h-4V5h4c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2v2h4v2h-6v-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16z" -}, "1")], 'Filter2TwoTone'); \ No newline at end of file +}, "1")], 'Filter2TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter3.js b/packages/material-ui-icons/lib/Filter3.js index fc43e630c6584e..af88efe4be9e07 100644 --- a/packages/material-ui-icons/lib/Filter3.js +++ b/packages/material-ui-icons/lib/Filter3.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z" -}), 'Filter3'); \ No newline at end of file +}), 'Filter3'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter3Outlined.js b/packages/material-ui-icons/lib/Filter3Outlined.js index 88607495b82081..959f768f6a4ba6 100644 --- a/packages/material-ui-icons/lib/Filter3Outlined.js +++ b/packages/material-ui-icons/lib/Filter3Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z" -}), 'Filter3Outlined'); \ No newline at end of file +}), 'Filter3Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter3Rounded.js b/packages/material-ui-icons/lib/Filter3Rounded.js index c1770777866f8e..42bcc0ecd67bb5 100644 --- a/packages/material-ui-icons/lib/Filter3Rounded.js +++ b/packages/material-ui-icons/lib/Filter3Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm15 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.1-.9-2-2-2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v2h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2z" -}), 'Filter3Rounded'); \ No newline at end of file +}), 'Filter3Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter3Sharp.js b/packages/material-ui-icons/lib/Filter3Sharp.js index af9e87ee2463ea..441ff3332dc59e 100644 --- a/packages/material-ui-icons/lib/Filter3Sharp.js +++ b/packages/material-ui-icons/lib/Filter3Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V5h-6v2h4v2h-2v2h2v2h-4v2h6z" -}), 'Filter3Sharp'); \ No newline at end of file +}), 'Filter3Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter3TwoTone.js b/packages/material-ui-icons/lib/Filter3TwoTone.js index 135e1ce6f18567..47f019eb372441 100644 --- a/packages/material-ui-icons/lib/Filter3TwoTone.js +++ b/packages/material-ui-icons/lib/Filter3TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm4-4h4v-2h-2V9h2V7h-4V5h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-4v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2zm2 10v-2H3V5H1v16c0 1.1.9 2 2 2h16z" -}, "1")], 'Filter3TwoTone'); \ No newline at end of file +}, "1")], 'Filter3TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter4.js b/packages/material-ui-icons/lib/Filter4.js index 3be2baf3ef5cb2..6c7e81e352eb20 100644 --- a/packages/material-ui-icons/lib/Filter4.js +++ b/packages/material-ui-icons/lib/Filter4.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'Filter4'); \ No newline at end of file +}), 'Filter4'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter4Outlined.js b/packages/material-ui-icons/lib/Filter4Outlined.js index dc92fa0c59a60f..81b1f4f03ef941 100644 --- a/packages/material-ui-icons/lib/Filter4Outlined.js +++ b/packages/material-ui-icons/lib/Filter4Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'Filter4Outlined'); \ No newline at end of file +}), 'Filter4Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter4Rounded.js b/packages/material-ui-icons/lib/Filter4Rounded.js index 4d955af791eff8..ec989eb78334e1 100644 --- a/packages/material-ui-icons/lib/Filter4Rounded.js +++ b/packages/material-ui-icons/lib/Filter4Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm14 10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v3h-2V6c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h3v3c0 .55.45 1 1 1zm5-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'Filter4Rounded'); \ No newline at end of file +}), 'Filter4Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter4Sharp.js b/packages/material-ui-icons/lib/Filter4Sharp.js index 2dfefa3bdc65ab..efc26cdb6170b5 100644 --- a/packages/material-ui-icons/lib/Filter4Sharp.js +++ b/packages/material-ui-icons/lib/Filter4Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm8-14H5v18h18V1zm-2 16H7V3h14v14z" -}), 'Filter4Sharp'); \ No newline at end of file +}), 'Filter4Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter4TwoTone.js b/packages/material-ui-icons/lib/Filter4TwoTone.js index 05ab40453983d1..709f1d6fab2e28 100644 --- a/packages/material-ui-icons/lib/Filter4TwoTone.js +++ b/packages/material-ui-icons/lib/Filter4TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H7v14h14V3zm-4 12h-2v-4h-4V5h2v4h2V5h2v10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm4-4h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM7 3h14v14H7V3zm8 6h-2V5h-2v6h4v4h2V5h-2z" -}, "1")], 'Filter4TwoTone'); \ No newline at end of file +}, "1")], 'Filter4TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter5.js b/packages/material-ui-icons/lib/Filter5.js index a693766277c210..7e9b696fff093d 100644 --- a/packages/material-ui-icons/lib/Filter5.js +++ b/packages/material-ui-icons/lib/Filter5.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z" -}), 'Filter5'); \ No newline at end of file +}), 'Filter5'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter5Outlined.js b/packages/material-ui-icons/lib/Filter5Outlined.js index 90f7691e5df3a7..d82df60c42ffc9 100644 --- a/packages/material-ui-icons/lib/Filter5Outlined.js +++ b/packages/material-ui-icons/lib/Filter5Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z" -}), 'Filter5Outlined'); \ No newline at end of file +}), 'Filter5Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter5Rounded.js b/packages/material-ui-icons/lib/Filter5Rounded.js index 5541d25aecb7fa..952efe5c9bbd55 100644 --- a/packages/material-ui-icons/lib/Filter5Rounded.js +++ b/packages/material-ui-icons/lib/Filter5Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm15 8v-2c0-1.1-.9-2-2-2h-2V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2z" -}), 'Filter5Rounded'); \ No newline at end of file +}), 'Filter5Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter5Sharp.js b/packages/material-ui-icons/lib/Filter5Sharp.js index ed831971bc6677..2e7d952b8da6f2 100644 --- a/packages/material-ui-icons/lib/Filter5Sharp.js +++ b/packages/material-ui-icons/lib/Filter5Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V9h-4V7h4V5h-6v6h4v2h-4v2h6z" -}), 'Filter5Sharp'); \ No newline at end of file +}), 'Filter5Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter5TwoTone.js b/packages/material-ui-icons/lib/Filter5TwoTone.js index a90e76765b3d2c..4f177f4267d608 100644 --- a/packages/material-ui-icons/lib/Filter5TwoTone.js +++ b/packages/material-ui-icons/lib/Filter5TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm4-4h4v-2h-4V5h6v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-4v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 23v-2H3V5H1v16c0 1.1.9 2 2 2h16zm-2-10v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}, "1")], 'Filter5TwoTone'); \ No newline at end of file +}, "1")], 'Filter5TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter6.js b/packages/material-ui-icons/lib/Filter6.js index ffeae65a993eb8..6703b6db60f34b 100644 --- a/packages/material-ui-icons/lib/Filter6.js +++ b/packages/material-ui-icons/lib/Filter6.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z" -}), 'Filter6'); \ No newline at end of file +}), 'Filter6'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter6Outlined.js b/packages/material-ui-icons/lib/Filter6Outlined.js index 66af45a2db540e..70c6cef82a49a1 100644 --- a/packages/material-ui-icons/lib/Filter6Outlined.js +++ b/packages/material-ui-icons/lib/Filter6Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z" -}), 'Filter6Outlined'); \ No newline at end of file +}), 'Filter6Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter6Rounded.js b/packages/material-ui-icons/lib/Filter6Rounded.js index 4e4a99f0cc3c88..12e2165018139c 100644 --- a/packages/material-ui-icons/lib/Filter6Rounded.js +++ b/packages/material-ui-icons/lib/Filter6Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-7-2h2c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2h-2V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm0-4h2v2h-2v-2z" -}), 'Filter6Rounded'); \ No newline at end of file +}), 'Filter6Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter6Sharp.js b/packages/material-ui-icons/lib/Filter6Sharp.js index e45081e6f3691d..ac26a71a09c225 100644 --- a/packages/material-ui-icons/lib/Filter6Sharp.js +++ b/packages/material-ui-icons/lib/Filter6Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-10-2h6V9h-4V7h4V5h-6v10zm2-4h2v2h-2v-2z" -}), 'Filter6Sharp'); \ No newline at end of file +}), 'Filter6Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter6TwoTone.js b/packages/material-ui-icons/lib/Filter6TwoTone.js index 4137000a089c31..9549545beb225d 100644 --- a/packages/material-ui-icons/lib/Filter6TwoTone.js +++ b/packages/material-ui-icons/lib/Filter6TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm4-10c0-1.11.9-2 2-2h4v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V7zm2 4h2v2h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2z" -}, "1")], 'Filter6TwoTone'); \ No newline at end of file +}, "1")], 'Filter6TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter7.js b/packages/material-ui-icons/lib/Filter7.js index fe23e616a117d2..0a6dddcf0e54ee 100644 --- a/packages/material-ui-icons/lib/Filter7.js +++ b/packages/material-ui-icons/lib/Filter7.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2 4-8V5h-6v2h4l-4 8h2z" -}), 'Filter7'); \ No newline at end of file +}), 'Filter7'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter7Outlined.js b/packages/material-ui-icons/lib/Filter7Outlined.js index 3ef37dd94b5691..d3561a5eebd947 100644 --- a/packages/material-ui-icons/lib/Filter7Outlined.js +++ b/packages/material-ui-icons/lib/Filter7Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2 4-8V5h-6v2h4l-4 8h2z" -}), 'Filter7Outlined'); \ No newline at end of file +}), 'Filter7Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter7Rounded.js b/packages/material-ui-icons/lib/Filter7Rounded.js index 50f30731f6cb01..e539f112757e44 100644 --- a/packages/material-ui-icons/lib/Filter7Rounded.js +++ b/packages/material-ui-icons/lib/Filter7Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-6.75-2.49 3.58-7.17c.11-.22.17-.47.17-.72 0-.9-.72-1.62-1.62-1.62H12c-.55 0-1 .45-1 1s.45 1 1 1h3l-3.36 6.71c-.3.59.13 1.29.8 1.29h.01c.34 0 .65-.19.8-.49z" -}), 'Filter7Rounded'); \ No newline at end of file +}), 'Filter7Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter7Sharp.js b/packages/material-ui-icons/lib/Filter7Sharp.js index becb4ae08c210e..2b66d8af4a6f30 100644 --- a/packages/material-ui-icons/lib/Filter7Sharp.js +++ b/packages/material-ui-icons/lib/Filter7Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2 4-8V5h-6v2h4l-4 8h2z" -}), 'Filter7Sharp'); \ No newline at end of file +}), 'Filter7Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter7TwoTone.js b/packages/material-ui-icons/lib/Filter7TwoTone.js index f9cf0f299a0949..036f67a3d0042e 100644 --- a/packages/material-ui-icons/lib/Filter7TwoTone.js +++ b/packages/material-ui-icons/lib/Filter7TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm4-10V5h6v2l-4 8h-2l4-8h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8 4-8V5h-6v2h4l-4 8zm8-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}, "1")], 'Filter7TwoTone'); \ No newline at end of file +}, "1")], 'Filter7TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter8.js b/packages/material-ui-icons/lib/Filter8.js index 80c84b458591e4..31af4443d5b205 100644 --- a/packages/material-ui-icons/lib/Filter8.js +++ b/packages/material-ui-icons/lib/Filter8.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" -}), 'Filter8'); \ No newline at end of file +}), 'Filter8'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter8Outlined.js b/packages/material-ui-icons/lib/Filter8Outlined.js index ec4bd33cc79197..bad92488abb108 100644 --- a/packages/material-ui-icons/lib/Filter8Outlined.js +++ b/packages/material-ui-icons/lib/Filter8Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" -}), 'Filter8Outlined'); \ No newline at end of file +}), 'Filter8Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter8Rounded.js b/packages/material-ui-icons/lib/Filter8Rounded.js index e62d9aa671de5c..9d64d2d76a9825 100644 --- a/packages/material-ui-icons/lib/Filter8Rounded.js +++ b/packages/material-ui-icons/lib/Filter8Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-7-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" -}), 'Filter8Rounded'); \ No newline at end of file +}), 'Filter8Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter8Sharp.js b/packages/material-ui-icons/lib/Filter8Sharp.js index 9359f212d35be1..1cbee1e74225b3 100644 --- a/packages/material-ui-icons/lib/Filter8Sharp.js +++ b/packages/material-ui-icons/lib/Filter8Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" -}), 'Filter8Sharp'); \ No newline at end of file +}), 'Filter8Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter8TwoTone.js b/packages/material-ui-icons/lib/Filter8TwoTone.js index 188bdc7e113b3b..3e0d656cbf7dad 100644 --- a/packages/material-ui-icons/lib/Filter8TwoTone.js +++ b/packages/material-ui-icons/lib/Filter8TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm4-5.5c0-.83.67-1.5 1.5-1.5-.83 0-1.5-.67-1.5-1.5V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2v-1.5zM13 7h2v2h-2zm0 4h2v2h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" -}, "1")], 'Filter8TwoTone'); \ No newline at end of file +}, "1")], 'Filter8TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9.js b/packages/material-ui-icons/lib/Filter9.js index 4153bd2da08e0f..7df40484eefefe 100644 --- a/packages/material-ui-icons/lib/Filter9.js +++ b/packages/material-ui-icons/lib/Filter9.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z" -}), 'Filter9'); \ No newline at end of file +}), 'Filter9'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9Outlined.js b/packages/material-ui-icons/lib/Filter9Outlined.js index 4d6052b6be6af2..170726b3ed0cb5 100644 --- a/packages/material-ui-icons/lib/Filter9Outlined.js +++ b/packages/material-ui-icons/lib/Filter9Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z" -}), 'Filter9Outlined'); \ No newline at end of file +}), 'Filter9Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9Plus.js b/packages/material-ui-icons/lib/Filter9Plus.js index 2b0553b1113756..9d8bd8dbe1c083 100644 --- a/packages/material-ui-icons/lib/Filter9Plus.js +++ b/packages/material-ui-icons/lib/Filter9Plus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" -}), 'Filter9Plus'); \ No newline at end of file +}), 'Filter9Plus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9PlusOutlined.js b/packages/material-ui-icons/lib/Filter9PlusOutlined.js index c003b5b11e4a12..e68acb3a255409 100644 --- a/packages/material-ui-icons/lib/Filter9PlusOutlined.js +++ b/packages/material-ui-icons/lib/Filter9PlusOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" -}), 'Filter9PlusOutlined'); \ No newline at end of file +}), 'Filter9PlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9PlusRounded.js b/packages/material-ui-icons/lib/Filter9PlusRounded.js index c526bb74ac6b12..2bd4f8e543e9eb 100644 --- a/packages/material-ui-icons/lib/Filter9PlusRounded.js +++ b/packages/material-ui-icons/lib/Filter9PlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm12 7V8c0-1.1-.9-2-2-2h-1c-1.1 0-2 .9-2 2v1c0 1.1.9 2 2 2h1v1h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c1.1 0 2-.9 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-7c0-.55-.45-1-1-1h-1V8c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1z" -}), 'Filter9PlusRounded'); \ No newline at end of file +}), 'Filter9PlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9PlusSharp.js b/packages/material-ui-icons/lib/Filter9PlusSharp.js index 87d0008090996a..56d11cc38af435 100644 --- a/packages/material-ui-icons/lib/Filter9PlusSharp.js +++ b/packages/material-ui-icons/lib/Filter9PlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm11 9V6H9v5h3v1H9v2h5zm-3-5V8h1v1h-1zm12-8H5v18h18V1zm-2 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" -}), 'Filter9PlusSharp'); \ No newline at end of file +}), 'Filter9PlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9PlusTwoTone.js b/packages/material-ui-icons/lib/Filter9PlusTwoTone.js index 826d2f66adfefa..77d434ce98d783 100644 --- a/packages/material-ui-icons/lib/Filter9PlusTwoTone.js +++ b/packages/material-ui-icons/lib/Filter9PlusTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14v-6h-2v2h-2v-2h-2V9h2V7h2v2h2V3H7v14zm2-5h3v-1h-1c-1.1 0-2-.89-2-2V8c0-1.11.9-2 2-2h1c1.1 0 2 .89 2 2v4c0 1.11-.9 2-2 2H9v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 21H3V5H1v16c0 1.1.9 2 2 2h16v-2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8h1v1h-1z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2V8c0-1.11-.9-2-2-2zm0 3h-1V8h1v1zm9-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" -}, "3")], 'Filter9PlusTwoTone'); \ No newline at end of file +}, "3")], 'Filter9PlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9Rounded.js b/packages/material-ui-icons/lib/Filter9Rounded.js index c3fc564d714b89..3c04a35d6d6d4d 100644 --- a/packages/material-ui-icons/lib/Filter9Rounded.js +++ b/packages/material-ui-icons/lib/Filter9Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM15 5h-2c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h2v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 4h-2V7h2v2z" -}), 'Filter9Rounded'); \ No newline at end of file +}), 'Filter9Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9Sharp.js b/packages/material-ui-icons/lib/Filter9Sharp.js index cbf7155b1f5485..b92f12ff74be44 100644 --- a/packages/material-ui-icons/lib/Filter9Sharp.js +++ b/packages/material-ui-icons/lib/Filter9Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zM17 5h-6v6h4v2h-4v2h6V5zm-2 4h-2V7h2v2z" -}), 'Filter9Sharp'); \ No newline at end of file +}), 'Filter9Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Filter9TwoTone.js b/packages/material-ui-icons/lib/Filter9TwoTone.js index 20960569e2f7df..c39162cd0a267d 100644 --- a/packages/material-ui-icons/lib/Filter9TwoTone.js +++ b/packages/material-ui-icons/lib/Filter9TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h2v2h-2zM7 17h14V3H7v14zm4-4h4v-2h-2c-1.1 0-2-.89-2-2V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v6c0 1.11-.9 2-2 2h-4v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm14-10V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2zm-4-4V7h2v2h-2z" -}, "1")], 'Filter9TwoTone'); \ No newline at end of file +}, "1")], 'Filter9TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterAlt.js b/packages/material-ui-icons/lib/FilterAlt.js index a81d36724584f0..95aafeb6e0bfb1 100644 --- a/packages/material-ui-icons/lib/FilterAlt.js +++ b/packages/material-ui-icons/lib/FilterAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.25 5.61C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39c.51-.66.04-1.61-.79-1.61H5.04c-.83 0-1.3.95-.79 1.61z" -}), 'FilterAlt'); \ No newline at end of file +}), 'FilterAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterAltOutlined.js b/packages/material-ui-icons/lib/FilterAltOutlined.js index f5ee1503ab35a2..04db4c9cb39935 100644 --- a/packages/material-ui-icons/lib/FilterAltOutlined.js +++ b/packages/material-ui-icons/lib/FilterAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 6h10l-5.01 6.3L7 6zm-2.75-.39C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39c.51-.66.04-1.61-.79-1.61H5.04c-.83 0-1.3.95-.79 1.61z" -}), 'FilterAltOutlined'); \ No newline at end of file +}), 'FilterAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterAltRounded.js b/packages/material-ui-icons/lib/FilterAltRounded.js index 7052df16b66ea7..cbce076840c683 100644 --- a/packages/material-ui-icons/lib/FilterAltRounded.js +++ b/packages/material-ui-icons/lib/FilterAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.25 5.61C6.57 8.59 10 13 10 13v5c0 1.1.9 2 2 2s2-.9 2-2v-5s3.43-4.41 5.75-7.39c.51-.66.04-1.61-.8-1.61H5.04c-.83 0-1.3.95-.79 1.61z" -}), 'FilterAltRounded'); \ No newline at end of file +}), 'FilterAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterAltSharp.js b/packages/material-ui-icons/lib/FilterAltSharp.js index 253cf66d946952..2b904d6fdb90ea 100644 --- a/packages/material-ui-icons/lib/FilterAltSharp.js +++ b/packages/material-ui-icons/lib/FilterAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4c2.01 2.59 7 9 7 9v7h4v-7s4.98-6.41 7-9H3z" -}), 'FilterAltSharp'); \ No newline at end of file +}), 'FilterAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterAltTwoTone.js b/packages/material-ui-icons/lib/FilterAltTwoTone.js index 4ebb32f28a61df..0a85cb4664d78d 100644 --- a/packages/material-ui-icons/lib/FilterAltTwoTone.js +++ b/packages/material-ui-icons/lib/FilterAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 6h10l-5.01 6.3L7 6zm-2.75-.39C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39c.51-.66.04-1.61-.79-1.61H5.04c-.83 0-1.3.95-.79 1.61z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 6h10l-5.01 6.3z", opacity: ".3" -}, "1")], 'FilterAltTwoTone'); \ No newline at end of file +}, "1")], 'FilterAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterBAndW.js b/packages/material-ui-icons/lib/FilterBAndW.js index e74a0e4ff1a689..de0f3c523a950d 100644 --- a/packages/material-ui-icons/lib/FilterBAndW.js +++ b/packages/material-ui-icons/lib/FilterBAndW.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16-7-8v8H5l7-8V5h7v14z" -}), 'FilterBAndW'); \ No newline at end of file +}), 'FilterBAndW'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterBAndWOutlined.js b/packages/material-ui-icons/lib/FilterBAndWOutlined.js index dfe6dbeddf0b7e..200011d2f4c972 100644 --- a/packages/material-ui-icons/lib/FilterBAndWOutlined.js +++ b/packages/material-ui-icons/lib/FilterBAndWOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16-7-8v8H5l7-8V5h7v14z" -}), 'FilterBAndWOutlined'); \ No newline at end of file +}), 'FilterBAndWOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterBAndWRounded.js b/packages/material-ui-icons/lib/FilterBAndWRounded.js index bee67240973374..8549ba068990fd 100644 --- a/packages/material-ui-icons/lib/FilterBAndWRounded.js +++ b/packages/material-ui-icons/lib/FilterBAndWRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16-7-8v8H5l7-8V5h6c.55 0 1 .45 1 1v13z" -}), 'FilterBAndWRounded'); \ No newline at end of file +}), 'FilterBAndWRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterBAndWSharp.js b/packages/material-ui-icons/lib/FilterBAndWSharp.js index e7454ec3162b30..5f4a2590972609 100644 --- a/packages/material-ui-icons/lib/FilterBAndWSharp.js +++ b/packages/material-ui-icons/lib/FilterBAndWSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-2 16-7-8v8H5l7-8V5h7v14z" -}), 'FilterBAndWSharp'); \ No newline at end of file +}), 'FilterBAndWSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterBAndWTwoTone.js b/packages/material-ui-icons/lib/FilterBAndWTwoTone.js index d963d38d439b57..d05264b27b8984 100644 --- a/packages/material-ui-icons/lib/FilterBAndWTwoTone.js +++ b/packages/material-ui-icons/lib/FilterBAndWTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5h-7v6l7 8zm-7 14v-8l-7 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9 0H5l7-8V5h7v14l-7-8v8z" -}, "1")], 'FilterBAndWTwoTone'); \ No newline at end of file +}, "1")], 'FilterBAndWTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterCenterFocus.js b/packages/material-ui-icons/lib/FilterCenterFocus.js index 4c0490cd59361c..ff0cc802ff5a4d 100644 --- a/packages/material-ui-icons/lib/FilterCenterFocus.js +++ b/packages/material-ui-icons/lib/FilterCenterFocus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'FilterCenterFocus'); \ No newline at end of file +}), 'FilterCenterFocus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterCenterFocusOutlined.js b/packages/material-ui-icons/lib/FilterCenterFocusOutlined.js index 5a6e0b614360dc..d50d9cbd2310d7 100644 --- a/packages/material-ui-icons/lib/FilterCenterFocusOutlined.js +++ b/packages/material-ui-icons/lib/FilterCenterFocusOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'FilterCenterFocusOutlined'); \ No newline at end of file +}), 'FilterCenterFocusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterCenterFocusRounded.js b/packages/material-ui-icons/lib/FilterCenterFocusRounded.js index 4f0d534dd1fe71..437319034f7f74 100644 --- a/packages/material-ui-icons/lib/FilterCenterFocusRounded.js +++ b/packages/material-ui-icons/lib/FilterCenterFocusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zm-7-9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'FilterCenterFocusRounded'); \ No newline at end of file +}), 'FilterCenterFocusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterCenterFocusSharp.js b/packages/material-ui-icons/lib/FilterCenterFocusSharp.js index bf4ea9087b5c90..554e1baad1aa52 100644 --- a/packages/material-ui-icons/lib/FilterCenterFocusSharp.js +++ b/packages/material-ui-icons/lib/FilterCenterFocusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'FilterCenterFocusSharp'); \ No newline at end of file +}), 'FilterCenterFocusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterCenterFocusTwoTone.js b/packages/material-ui-icons/lib/FilterCenterFocusTwoTone.js index 2c9414c1aecc8a..fd5cc4d4caf686 100644 --- a/packages/material-ui-icons/lib/FilterCenterFocusTwoTone.js +++ b/packages/material-ui-icons/lib/FilterCenterFocusTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm7-6h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4z" -}), 'FilterCenterFocusTwoTone'); \ No newline at end of file +}), 'FilterCenterFocusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterDrama.js b/packages/material-ui-icons/lib/FilterDrama.js index 03b9ecceb21f3c..2f013e137fd4e9 100644 --- a/packages/material-ui-icons/lib/FilterDrama.js +++ b/packages/material-ui-icons/lib/FilterDrama.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" -}), 'FilterDrama'); \ No newline at end of file +}), 'FilterDrama'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterDramaOutlined.js b/packages/material-ui-icons/lib/FilterDramaOutlined.js index f4a9eda153982b..a70c8ec1173b81 100644 --- a/packages/material-ui-icons/lib/FilterDramaOutlined.js +++ b/packages/material-ui-icons/lib/FilterDramaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" -}), 'FilterDramaOutlined'); \ No newline at end of file +}), 'FilterDramaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterDramaRounded.js b/packages/material-ui-icons/lib/FilterDramaRounded.js index ca2fca8f8d1c40..82af7d0b9eecbb 100644 --- a/packages/material-ui-icons/lib/FilterDramaRounded.js +++ b/packages/material-ui-icons/lib/FilterDramaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6.17c-2.09 0-3.95-1.53-4.15-3.61C1.79 12.01 3.66 10 6 10c1.92 0 3.53 1.36 3.91 3.17.1.48.5.83.98.83.61 0 1.11-.55.99-1.15-.43-2.24-2.11-4.03-4.29-4.63 1.1-1.46 2.89-2.37 4.89-2.2 2.88.25 5.01 2.82 5.01 5.71V12h1.37c1.45 0 2.79.97 3.07 2.4.39 1.91-1.08 3.6-2.93 3.6z" -}), 'FilterDramaRounded'); \ No newline at end of file +}), 'FilterDramaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterDramaSharp.js b/packages/material-ui-icons/lib/FilterDramaSharp.js index e21324b950db1d..115991b837c286 100644 --- a/packages/material-ui-icons/lib/FilterDramaSharp.js +++ b/packages/material-ui-icons/lib/FilterDramaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" -}), 'FilterDramaSharp'); \ No newline at end of file +}), 'FilterDramaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterDramaTwoTone.js b/packages/material-ui-icons/lib/FilterDramaTwoTone.js index 9cbe0c85f22418..f208a5d2ceea3a 100644 --- a/packages/material-ui-icons/lib/FilterDramaTwoTone.js +++ b/packages/material-ui-icons/lib/FilterDramaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h-1.5v-.5C17.5 8.47 15.03 6 12 6c-1.8 0-3.39.88-4.4 2.22 2.54.7 4.4 3.02 4.4 5.78h-2c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4h13c1.65 0 3-1.35 3-3s-1.35-3-3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" -}, "1")], 'FilterDramaTwoTone'); \ No newline at end of file +}, "1")], 'FilterDramaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterFrames.js b/packages/material-ui-icons/lib/FilterFrames.js index 1922407418ab82..3c340b6b3b2d58 100644 --- a/packages/material-ui-icons/lib/FilterFrames.js +++ b/packages/material-ui-icons/lib/FilterFrames.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12" -}), 'FilterFrames'); \ No newline at end of file +}), 'FilterFrames'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterFramesOutlined.js b/packages/material-ui-icons/lib/FilterFramesOutlined.js index 4a34948105abdd..2f64ed620f1b89 100644 --- a/packages/material-ui-icons/lib/FilterFramesOutlined.js +++ b/packages/material-ui-icons/lib/FilterFramesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z" -}), 'FilterFramesOutlined'); \ No newline at end of file +}), 'FilterFramesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterFramesRounded.js b/packages/material-ui-icons/lib/FilterFramesRounded.js index 517a7e7f137558..ec27bc4472908f 100644 --- a/packages/material-ui-icons/lib/FilterFramesRounded.js +++ b/packages/material-ui-icons/lib/FilterFramesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-4L12.71.71a.9959.9959 0 0 0-1.41 0L8 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 16H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h3.52l3.52-3.5L15.52 6H19c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM17 8H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z" -}), 'FilterFramesRounded'); \ No newline at end of file +}), 'FilterFramesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterFramesSharp.js b/packages/material-ui-icons/lib/FilterFramesSharp.js index 10a7a44d63db05..dd090fdf64b506 100644 --- a/packages/material-ui-icons/lib/FilterFramesSharp.js +++ b/packages/material-ui-icons/lib/FilterFramesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4h-6l-4-4-4 4H2v18h20V4zm-2 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12" -}), 'FilterFramesSharp'); \ No newline at end of file +}), 'FilterFramesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterFramesTwoTone.js b/packages/material-ui-icons/lib/FilterFramesTwoTone.js index a2e7812471f2ab..aa74955e725179 100644 --- a/packages/material-ui-icons/lib/FilterFramesTwoTone.js +++ b/packages/material-ui-icons/lib/FilterFramesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10h8v6H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z" -}, "1")], 'FilterFramesTwoTone'); \ No newline at end of file +}, "1")], 'FilterFramesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterHdr.js b/packages/material-ui-icons/lib/FilterHdr.js index b75938e67ead58..e13ead73df8862 100644 --- a/packages/material-ui-icons/lib/FilterHdr.js +++ b/packages/material-ui-icons/lib/FilterHdr.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" -}), 'FilterHdr'); \ No newline at end of file +}), 'FilterHdr'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterHdrOutlined.js b/packages/material-ui-icons/lib/FilterHdrOutlined.js index e7cf2dbcf6711b..8ccbe1ed825345 100644 --- a/packages/material-ui-icons/lib/FilterHdrOutlined.js +++ b/packages/material-ui-icons/lib/FilterHdrOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" -}), 'FilterHdrOutlined'); \ No newline at end of file +}), 'FilterHdrOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterHdrRounded.js b/packages/material-ui-icons/lib/FilterHdrRounded.js index d21ff121262d69..614f9c98f0ec4c 100644 --- a/packages/material-ui-icons/lib/FilterHdrRounded.js +++ b/packages/material-ui-icons/lib/FilterHdrRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.2 7.07 10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z" -}), 'FilterHdrRounded'); \ No newline at end of file +}), 'FilterHdrRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterHdrSharp.js b/packages/material-ui-icons/lib/FilterHdrSharp.js index ce7c73fc5521f7..a27ee964342e4c 100644 --- a/packages/material-ui-icons/lib/FilterHdrSharp.js +++ b/packages/material-ui-icons/lib/FilterHdrSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" -}), 'FilterHdrSharp'); \ No newline at end of file +}), 'FilterHdrSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterHdrTwoTone.js b/packages/material-ui-icons/lib/FilterHdrTwoTone.js index b3f0114953d381..58a153392337fd 100644 --- a/packages/material-ui-icons/lib/FilterHdrTwoTone.js +++ b/packages/material-ui-icons/lib/FilterHdrTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h3.04l-1.52-2.03z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" -}, "1")], 'FilterHdrTwoTone'); \ No newline at end of file +}, "1")], 'FilterHdrTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterList.js b/packages/material-ui-icons/lib/FilterList.js index 565715d522e033..4063910a2b0481 100644 --- a/packages/material-ui-icons/lib/FilterList.js +++ b/packages/material-ui-icons/lib/FilterList.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" -}), 'FilterList'); \ No newline at end of file +}), 'FilterList'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterListOutlined.js b/packages/material-ui-icons/lib/FilterListOutlined.js index 64bc717293afd2..351f38d7f24c1c 100644 --- a/packages/material-ui-icons/lib/FilterListOutlined.js +++ b/packages/material-ui-icons/lib/FilterListOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" -}), 'FilterListOutlined'); \ No newline at end of file +}), 'FilterListOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterListRounded.js b/packages/material-ui-icons/lib/FilterListRounded.js index 1a506a73862c0c..b0662199c16ebf 100644 --- a/packages/material-ui-icons/lib/FilterListRounded.js +++ b/packages/material-ui-icons/lib/FilterListRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm4 6h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'FilterListRounded'); \ No newline at end of file +}), 'FilterListRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterListSharp.js b/packages/material-ui-icons/lib/FilterListSharp.js index fb3c7327ba84c8..c7227651ada423 100644 --- a/packages/material-ui-icons/lib/FilterListSharp.js +++ b/packages/material-ui-icons/lib/FilterListSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" -}), 'FilterListSharp'); \ No newline at end of file +}), 'FilterListSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterListTwoTone.js b/packages/material-ui-icons/lib/FilterListTwoTone.js index dd0ae1192822c8..7839f89f66fe01 100644 --- a/packages/material-ui-icons/lib/FilterListTwoTone.js +++ b/packages/material-ui-icons/lib/FilterListTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" -}), 'FilterListTwoTone'); \ No newline at end of file +}), 'FilterListTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterNone.js b/packages/material-ui-icons/lib/FilterNone.js index 455e4abceeca62..5fe4ab7777a777 100644 --- a/packages/material-ui-icons/lib/FilterNone.js +++ b/packages/material-ui-icons/lib/FilterNone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'FilterNone'); \ No newline at end of file +}), 'FilterNone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterNoneOutlined.js b/packages/material-ui-icons/lib/FilterNoneOutlined.js index 63fe18a15e4a40..97a0d40fce13e6 100644 --- a/packages/material-ui-icons/lib/FilterNoneOutlined.js +++ b/packages/material-ui-icons/lib/FilterNoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'FilterNoneOutlined'); \ No newline at end of file +}), 'FilterNoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterNoneRounded.js b/packages/material-ui-icons/lib/FilterNoneRounded.js index cb41152ccb50ed..b493d370d04f36 100644 --- a/packages/material-ui-icons/lib/FilterNoneRounded.js +++ b/packages/material-ui-icons/lib/FilterNoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'FilterNoneRounded'); \ No newline at end of file +}), 'FilterNoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterNoneSharp.js b/packages/material-ui-icons/lib/FilterNoneSharp.js index 8fef250b0e1753..efb0d0cbeec435 100644 --- a/packages/material-ui-icons/lib/FilterNoneSharp.js +++ b/packages/material-ui-icons/lib/FilterNoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z" -}), 'FilterNoneSharp'); \ No newline at end of file +}), 'FilterNoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterNoneTwoTone.js b/packages/material-ui-icons/lib/FilterNoneTwoTone.js index 68e1339546c8d2..c642582e3ae63e 100644 --- a/packages/material-ui-icons/lib/FilterNoneTwoTone.js +++ b/packages/material-ui-icons/lib/FilterNoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h14v14H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}, "1")], 'FilterNoneTwoTone'); \ No newline at end of file +}, "1")], 'FilterNoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterOutlined.js b/packages/material-ui-icons/lib/FilterOutlined.js index d8272a824f227f..1e82d56b15bca4 100644 --- a/packages/material-ui-icons/lib/FilterOutlined.js +++ b/packages/material-ui-icons/lib/FilterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.96 10.29-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" -}), 'FilterOutlined'); \ No newline at end of file +}), 'FilterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterRounded.js b/packages/material-ui-icons/lib/FilterRounded.js index fe3f257bf72a0b..352b5c52f85369 100644 --- a/packages/material-ui-icons/lib/FilterRounded.js +++ b/packages/material-ui-icons/lib/FilterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.56 10.81-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'FilterRounded'); \ No newline at end of file +}), 'FilterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterSharp.js b/packages/material-ui-icons/lib/FilterSharp.js index 413e1765110d23..9bbaec16b484e2 100644 --- a/packages/material-ui-icons/lib/FilterSharp.js +++ b/packages/material-ui-icons/lib/FilterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.96 10.29-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z" -}), 'FilterSharp'); \ No newline at end of file +}), 'FilterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterTiltShift.js b/packages/material-ui-icons/lib/FilterTiltShift.js index 36109004e1b366..493966fa08fe62 100644 --- a/packages/material-ui-icons/lib/FilterTiltShift.js +++ b/packages/material-ui-icons/lib/FilterTiltShift.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" -}), 'FilterTiltShift'); \ No newline at end of file +}), 'FilterTiltShift'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterTiltShiftOutlined.js b/packages/material-ui-icons/lib/FilterTiltShiftOutlined.js index 5641a6f8a985c2..2c03051eb2b6e8 100644 --- a/packages/material-ui-icons/lib/FilterTiltShiftOutlined.js +++ b/packages/material-ui-icons/lib/FilterTiltShiftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" -}), 'FilterTiltShiftOutlined'); \ No newline at end of file +}), 'FilterTiltShiftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterTiltShiftRounded.js b/packages/material-ui-icons/lib/FilterTiltShiftRounded.js index 3c97d64f374b5e..8b6a0369a05f8e 100644 --- a/packages/material-ui-icons/lib/FilterTiltShiftRounded.js +++ b/packages/material-ui-icons/lib/FilterTiltShiftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3.23c0-.64-.59-1.13-1.21-.99-1.12.26-2.18.7-3.12 1.3-.53.34-.61 1.1-.16 1.55.32.32.83.4 1.21.16.77-.49 1.62-.85 2.54-1.05.44-.1.74-.51.74-.97zm6.33.32c-.94-.6-2-1.04-3.12-1.3-.62-.14-1.21.34-1.21.98 0 .45.3.87.74.96.91.2 1.77.57 2.53 1.05.39.24.89.17 1.21-.16.46-.44.39-1.19-.15-1.53zM20.77 11c.64 0 1.13-.59.99-1.21-.26-1.12-.7-2.18-1.3-3.12-.34-.53-1.1-.61-1.55-.16-.32.32-.4.83-.16 1.21.49.77.85 1.62 1.05 2.53.1.45.51.75.97.75zM5.1 6.51c-.46-.45-1.21-.38-1.55.16-.6.94-1.04 2-1.3 3.12-.14.62.34 1.21.98 1.21.45 0 .87-.3.96-.74.2-.91.57-1.77 1.05-2.53.26-.39.18-.9-.14-1.22zM3.23 13c-.64 0-1.13.59-.99 1.21.26 1.12.7 2.17 1.3 3.12.34.54 1.1.61 1.55.16.32-.32.4-.83.15-1.21-.49-.76-.85-1.61-1.05-2.53-.09-.45-.5-.75-.96-.75zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.9 5.49c.45.45 1.21.38 1.55-.15.6-.94 1.04-2 1.3-3.11.14-.62-.35-1.21-.98-1.21-.45 0-.87.3-.96.74-.2.91-.57 1.76-1.05 2.53-.26.37-.18.88.14 1.2zM13 20.77c0 .64.59 1.13 1.21.99 1.12-.26 2.17-.7 3.12-1.3.54-.34.61-1.1.16-1.55-.32-.32-.83-.4-1.21-.15-.76.49-1.61.85-2.53 1.05-.45.09-.75.5-.75.96zm-6.33-.32c.95.6 2 1.04 3.12 1.3.62.14 1.21-.35 1.21-.98 0-.45-.3-.87-.74-.96-.91-.2-1.77-.57-2.53-1.05-.39-.24-.89-.17-1.21.16-.46.44-.39 1.19.15 1.53z" -}), 'FilterTiltShiftRounded'); \ No newline at end of file +}), 'FilterTiltShiftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterTiltShiftSharp.js b/packages/material-ui-icons/lib/FilterTiltShiftSharp.js index d9d84a11ff1c3b..41878bcaf90d33 100644 --- a/packages/material-ui-icons/lib/FilterTiltShiftSharp.js +++ b/packages/material-ui-icons/lib/FilterTiltShiftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" -}), 'FilterTiltShiftSharp'); \ No newline at end of file +}), 'FilterTiltShiftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterTiltShiftTwoTone.js b/packages/material-ui-icons/lib/FilterTiltShiftTwoTone.js index c0e6cb1a039485..8cd5af36389c5e 100644 --- a/packages/material-ui-icons/lib/FilterTiltShiftTwoTone.js +++ b/packages/material-ui-icons/lib/FilterTiltShiftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43C16.84 3.05 15.01 2.25 13 2.05zm0 17.88v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-8.74-1.61 1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm16.26-3.9c.86 1.11 1.44 2.44 1.62 3.9h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zm16.27-6.73h-2.02c-.18 1.45-.76 2.78-1.62 3.89l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32zM9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'FilterTiltShiftTwoTone'); \ No newline at end of file +}), 'FilterTiltShiftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterTwoTone.js b/packages/material-ui-icons/lib/FilterTwoTone.js index b50824487e9bdf..39baa871d60500 100644 --- a/packages/material-ui-icons/lib/FilterTwoTone.js +++ b/packages/material-ui-icons/lib/FilterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h14V3H7v14zm4.25-5.53 1.96 2.36 2.75-3.54L19.5 15h-11l2.75-3.53z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L8.5 15h11z" -}, "1")], 'FilterTwoTone'); \ No newline at end of file +}, "1")], 'FilterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterVintage.js b/packages/material-ui-icons/lib/FilterVintage.js index 8ed0553966282f..7050eb498842bb 100644 --- a/packages/material-ui-icons/lib/FilterVintage.js +++ b/packages/material-ui-icons/lib/FilterVintage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'FilterVintage'); \ No newline at end of file +}), 'FilterVintage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterVintageOutlined.js b/packages/material-ui-icons/lib/FilterVintageOutlined.js index 713f2def33b061..2827ebfadde7f5 100644 --- a/packages/material-ui-icons/lib/FilterVintageOutlined.js +++ b/packages/material-ui-icons/lib/FilterVintageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zm-2.54-3.88c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 20.63c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zm6.69-4.24c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z" -}), 'FilterVintageOutlined'); \ No newline at end of file +}), 'FilterVintageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterVintageRounded.js b/packages/material-ui-icons/lib/FilterVintageRounded.js index 6a3911a7b1842a..6279a1d780d7ba 100644 --- a/packages/material-ui-icons/lib/FilterVintageRounded.js +++ b/packages/material-ui-icons/lib/FilterVintageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'FilterVintageRounded'); \ No newline at end of file +}), 'FilterVintageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterVintageSharp.js b/packages/material-ui-icons/lib/FilterVintageSharp.js index 0c83219ef570d3..85b7ec34e9d84d 100644 --- a/packages/material-ui-icons/lib/FilterVintageSharp.js +++ b/packages/material-ui-icons/lib/FilterVintageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'FilterVintageSharp'); \ No newline at end of file +}), 'FilterVintageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FilterVintageTwoTone.js b/packages/material-ui-icons/lib/FilterVintageTwoTone.js index 12acc59e0fb8d2..dd1d4b067399b1 100644 --- a/packages/material-ui-icons/lib/FilterVintageTwoTone.js +++ b/packages/material-ui-icons/lib/FilterVintageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.69 7.61c-.7 0-1.39.19-2 .54-.16.09-.32.21-.54.37l-1.13.9c.31.36.56.78.72 1.24l1.38-.52c.22-.08.41-.17.58-.27.84-.49 1.47-1.27 1.78-2.18-.26-.06-.52-.08-.79-.08zm-1.56 6.26-1.38-.52c-.16.45-.4.85-.7 1.21l1.15.96c.15.12.31.24.49.34.61.35 1.3.54 1.99.54.27 0 .53-.03.8-.08-.31-.91-.94-1.69-1.78-2.18-.16-.1-.35-.19-.57-.27zM11 6c0 .19.02.41.05.63l.23 1.44c.24-.04.48-.07.72-.07s.48.03.71.07l.23-1.44c.04-.22.06-.44.06-.63 0-.98-.37-1.91-1-2.63-.63.72-1 1.65-1 2.63zm1.71 9.93c-.23.04-.47.07-.71.07-.25 0-.49-.03-.72-.07l-.22 1.42c-.04.24-.06.45-.06.65 0 .98.37 1.91 1 2.63.63-.72 1-1.66 1-2.63 0-.19-.02-.41-.05-.63l-.24-1.44zm-5.84-5.81 1.38.52c.16-.44.4-.85.7-1.2L7.8 8.49c-.17-.15-.34-.27-.49-.35-.62-.36-1.3-.54-2-.54-.27 0-.54.03-.81.08.3.91.93 1.68 1.79 2.18.17.09.36.18.58.26zm0 3.74c-.22.08-.41.17-.58.27-.84.49-1.47 1.27-1.78 2.18.26.05.52.08.79.08.7 0 1.39-.19 2-.54.16-.09.32-.21.54-.37l1.13-.89c-.31-.36-.56-.78-.72-1.24l-1.38.51z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zm0 17.26c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zM12 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4.16-5.48c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zm2.53 7.87c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z" -}, "1")], 'FilterVintageTwoTone'); \ No newline at end of file +}, "1")], 'FilterVintageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindInPage.js b/packages/material-ui-icons/lib/FindInPage.js index 2f936196fc07aa..e249f5c7b45530 100644 --- a/packages/material-ui-icons/lib/FindInPage.js +++ b/packages/material-ui-icons/lib/FindInPage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19.59V8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'FindInPage'); \ No newline at end of file +}), 'FindInPage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindInPageOutlined.js b/packages/material-ui-icons/lib/FindInPageOutlined.js index 08e494132015d9..a7e0cc0474394e 100644 --- a/packages/material-ui-icons/lib/FindInPageOutlined.js +++ b/packages/material-ui-icons/lib/FindInPageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 4h7l5 5v8.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11z" -}), 'FindInPageOutlined'); \ No newline at end of file +}), 'FindInPageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindInPageRounded.js b/packages/material-ui-icons/lib/FindInPageRounded.js index 4e8e135f474260..5eb71332d2c0b4 100644 --- a/packages/material-ui-icons/lib/FindInPageRounded.js +++ b/packages/material-ui-icons/lib/FindInPageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19.59V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31-.44-3.35 2.45-6.18 5.83-5.61 1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'FindInPageRounded'); \ No newline at end of file +}), 'FindInPageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindInPageSharp.js b/packages/material-ui-icons/lib/FindInPageSharp.js index 5b7e502c8918e0..15a993cc4f0bd3 100644 --- a/packages/material-ui-icons/lib/FindInPageSharp.js +++ b/packages/material-ui-icons/lib/FindInPageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19.59V8l-6-6H4v20l15.57-.02-4.81-4.81c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'FindInPageSharp'); \ No newline at end of file +}), 'FindInPageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindInPageTwoTone.js b/packages/material-ui-icons/lib/FindInPageTwoTone.js index 39fcb9f6d5936e..c9fa9820fd18e7 100644 --- a/packages/material-ui-icons/lib/FindInPageTwoTone.js +++ b/packages/material-ui-icons/lib/FindInPageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4v16h11.6l-2.85-2.85c-.83.55-1.79.83-2.75.83-1.28 0-2.55-.49-3.53-1.46-1.95-1.95-1.95-5.11 0-7.05C9.45 8.49 10.72 8 12 8c1.28 0 2.55.49 3.53 1.46 1.71 1.71 1.92 4.34.64 6.28L18 17.58V9l-5-5H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 15.58-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4h7l5 5v8.58zm-3.01-4.59c0 .8-.31 1.55-.88 2.11-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11S11.2 10 12 10s1.55.31 2.11.88c.57.56.88 1.31.88 2.11z" -}, "1")], 'FindInPageTwoTone'); \ No newline at end of file +}, "1")], 'FindInPageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindReplace.js b/packages/material-ui-icons/lib/FindReplace.js index 17dd97c20ae25c..a27b32dc61ece1 100644 --- a/packages/material-ui-icons/lib/FindReplace.js +++ b/packages/material-ui-icons/lib/FindReplace.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" -}), 'FindReplace'); \ No newline at end of file +}), 'FindReplace'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindReplaceOutlined.js b/packages/material-ui-icons/lib/FindReplaceOutlined.js index e4ced11d829685..2f7f07624b680e 100644 --- a/packages/material-ui-icons/lib/FindReplaceOutlined.js +++ b/packages/material-ui-icons/lib/FindReplaceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" -}), 'FindReplaceOutlined'); \ No newline at end of file +}), 'FindReplaceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindReplaceRounded.js b/packages/material-ui-icons/lib/FindReplaceRounded.js index 112ed98245844a..3156077262bee4 100644 --- a/packages/material-ui-icons/lib/FindReplaceRounded.js +++ b/packages/material-ui-icons/lib/FindReplaceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6c1.38 0 2.63.56 3.54 1.46l-1.69 1.69c-.31.31-.09.85.36.85h4.29c.28 0 .5-.22.5-.5V5.21c0-.45-.54-.67-.85-.35l-1.2 1.2C14.68 4.78 12.93 4 11 4 7.96 4 5.38 5.94 4.42 8.64c-.24.66.23 1.36.93 1.36.42 0 .79-.26.93-.66C6.96 7.4 8.82 6 11 6zm5.64 9.14c.4-.54.72-1.15.95-1.8.23-.65-.25-1.34-.94-1.34-.42 0-.79.26-.93.66C15.04 14.6 13.18 16 11 16c-1.38 0-2.63-.56-3.54-1.46l1.69-1.69c.31-.31.09-.85-.36-.85H4.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35l1.2-1.2C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36l4.11 4.11c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49l-4.1-4.12z" -}), 'FindReplaceRounded'); \ No newline at end of file +}), 'FindReplaceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindReplaceSharp.js b/packages/material-ui-icons/lib/FindReplaceSharp.js index 0ae10b0fe53f78..2b25efc62781a3 100644 --- a/packages/material-ui-icons/lib/FindReplaceSharp.js +++ b/packages/material-ui-icons/lib/FindReplaceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" -}), 'FindReplaceSharp'); \ No newline at end of file +}), 'FindReplaceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FindReplaceTwoTone.js b/packages/material-ui-icons/lib/FindReplaceTwoTone.js index 62452f35c6fb02..4278cabb863da0 100644 --- a/packages/material-ui-icons/lib/FindReplaceTwoTone.js +++ b/packages/material-ui-icons/lib/FindReplaceTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" -}), 'FindReplaceTwoTone'); \ No newline at end of file +}), 'FindReplaceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Fingerprint.js b/packages/material-ui-icons/lib/Fingerprint.js index 7f49e72af86797..cab024632c4d5c 100644 --- a/packages/material-ui-icons/lib/Fingerprint.js +++ b/packages/material-ui-icons/lib/Fingerprint.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" -}), 'Fingerprint'); \ No newline at end of file +}), 'Fingerprint'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FingerprintOutlined.js b/packages/material-ui-icons/lib/FingerprintOutlined.js index 86fe30ca88688b..e51027ab488039 100644 --- a/packages/material-ui-icons/lib/FingerprintOutlined.js +++ b/packages/material-ui-icons/lib/FingerprintOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" -}), 'FingerprintOutlined'); \ No newline at end of file +}), 'FingerprintOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FingerprintRounded.js b/packages/material-ui-icons/lib/FingerprintRounded.js index 7900863c7eaaeb..c0f696babd62db 100644 --- a/packages/material-ui-icons/lib/FingerprintRounded.js +++ b/packages/material-ui-icons/lib/FingerprintRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" -}), 'FingerprintRounded'); \ No newline at end of file +}), 'FingerprintRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FingerprintSharp.js b/packages/material-ui-icons/lib/FingerprintSharp.js index 0052cb04cefb21..1cd52fab035ac0 100644 --- a/packages/material-ui-icons/lib/FingerprintSharp.js +++ b/packages/material-ui-icons/lib/FingerprintSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" -}), 'FingerprintSharp'); \ No newline at end of file +}), 'FingerprintSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FingerprintTwoTone.js b/packages/material-ui-icons/lib/FingerprintTwoTone.js index cebe193cc36ddc..71cf644cf29793 100644 --- a/packages/material-ui-icons/lib/FingerprintTwoTone.js +++ b/packages/material-ui-icons/lib/FingerprintTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" -}), 'FingerprintTwoTone'); \ No newline at end of file +}), 'FingerprintTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireExtinguisher.js b/packages/material-ui-icons/lib/FireExtinguisher.js index e600b0fddae873..1f1585950b521c 100644 --- a/packages/material-ui-icons/lib/FireExtinguisher.js +++ b/packages/material-ui-icons/lib/FireExtinguisher.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" -}), 'FireExtinguisher'); \ No newline at end of file +}), 'FireExtinguisher'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireExtinguisherOutlined.js b/packages/material-ui-icons/lib/FireExtinguisherOutlined.js index c15c85d997c108..27a28b4ebed301 100644 --- a/packages/material-ui-icons/lib/FireExtinguisherOutlined.js +++ b/packages/material-ui-icons/lib/FireExtinguisherOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" -}), 'FireExtinguisherOutlined'); \ No newline at end of file +}), 'FireExtinguisherOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireExtinguisherRounded.js b/packages/material-ui-icons/lib/FireExtinguisherRounded.js index 349778d5365a47..062155fc561227 100644 --- a/packages/material-ui-icons/lib/FireExtinguisherRounded.js +++ b/packages/material-ui-icons/lib/FireExtinguisherRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 4.23v3.54c0 .63-.58 1.11-1.21.98l-1.94-.41c0 .02 0 .01-.01.03 1.54.62 2.71 1.98 3.06 3.63H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5.49 6.6C5.2 6.54 5 6.29 5 6s.2-.54.49-.6l3.88-.81C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66l1.94-.41c.63-.13 1.21.35 1.21.98zM13 6c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" -}), 'FireExtinguisherRounded'); \ No newline at end of file +}), 'FireExtinguisherRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireExtinguisherSharp.js b/packages/material-ui-icons/lib/FireExtinguisherSharp.js index 115f94eaafd322..19d54d51194c27 100644 --- a/packages/material-ui-icons/lib/FireExtinguisherSharp.js +++ b/packages/material-ui-icons/lib/FireExtinguisherSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10v3H7v-3zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" -}), 'FireExtinguisherSharp'); \ No newline at end of file +}), 'FireExtinguisherSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireExtinguisherTwoTone.js b/packages/material-ui-icons/lib/FireExtinguisherTwoTone.js index b8e46fd951cb56..c58c709c6b4b05 100644 --- a/packages/material-ui-icons/lib/FireExtinguisherTwoTone.js +++ b/packages/material-ui-icons/lib/FireExtinguisherTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" -}), 'FireExtinguisherTwoTone'); \ No newline at end of file +}), 'FireExtinguisherTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Fireplace.js b/packages/material-ui-icons/lib/Fireplace.js index d4d07e53f5d126..e0fb0debf15a28 100644 --- a/packages/material-ui-icons/lib/Fireplace.js +++ b/packages/material-ui-icons/lib/Fireplace.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 2v20h20V2H2zm9.86 14.96c.76-.24 1.4-1.04 1.53-1.63.13-.56-.1-1.05-.2-1.6-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.7-2.11 2.38-3.39 1.33zM20 20h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" -}), 'Fireplace'); \ No newline at end of file +}), 'Fireplace'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireplaceOutlined.js b/packages/material-ui-icons/lib/FireplaceOutlined.js index a34a6d821a3772..759991827c8bbe 100644 --- a/packages/material-ui-icons/lib/FireplaceOutlined.js +++ b/packages/material-ui-icons/lib/FireplaceOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 12.46c-.15.42-.15.82-.08 1.28.1.55.33 1.04.2 1.6-.13.59-.77 1.38-1.53 1.63 1.28 1.05 3.2.37 3.39-1.32.17-1.54-1.44-1.98-1.98-3.19z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 2v20h20V2H2zm10 16c-1.58 0-2.97-1.88-3-3.06 0-.05-.01-.13-.01-.22-.13-1.73 1-3.2 2.47-4.37.47 1.01 1.27 2.03 2.57 2.92.58.42.97.86.97 1.73 0 1.65-1.35 3-3 3zm8 2h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" -}, "1")], 'FireplaceOutlined'); \ No newline at end of file +}, "1")], 'FireplaceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireplaceRounded.js b/packages/material-ui-icons/lib/FireplaceRounded.js index 7e4027836ec086..449f8eed11352d 100644 --- a/packages/material-ui-icons/lib/FireplaceRounded.js +++ b/packages/material-ui-icons/lib/FireplaceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 17c0 .55-.45 1-1 1h-1v-1c0-.55-.45-1-1-1h-1.15c.71-.85 1.15-1.89 1.15-3 0-1.89-1.09-2.84-1.85-3.36-1.86-1.27-2.23-2.78-2.25-3.72-.01-.4-.43-.63-.77-.43-5.8 3.43-5.15 7-5.13 7.51.03.96.49 2.07 1.24 3H7c-.55 0-1 .45-1 1v1H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v14zm-6.8-5.26c-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.69-2.11 2.37-3.39 1.32.76-.24 1.4-1.04 1.53-1.63.12-.55-.11-1.04-.2-1.59z" -}), 'FireplaceRounded'); \ No newline at end of file +}), 'FireplaceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireplaceSharp.js b/packages/material-ui-icons/lib/FireplaceSharp.js index c39433ce879c36..2554f045ac5325 100644 --- a/packages/material-ui-icons/lib/FireplaceSharp.js +++ b/packages/material-ui-icons/lib/FireplaceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 2v20h20V2H2zm11.2 11.74c-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.69-2.11 2.37-3.39 1.32.76-.24 1.4-1.04 1.53-1.63.12-.55-.11-1.04-.2-1.59zM20 20h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" -}), 'FireplaceSharp'); \ No newline at end of file +}), 'FireplaceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FireplaceTwoTone.js b/packages/material-ui-icons/lib/FireplaceTwoTone.js index bbb82272600efa..96d26c5f913bc1 100644 --- a/packages/material-ui-icons/lib/FireplaceTwoTone.js +++ b/packages/material-ui-icons/lib/FireplaceTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h2v-2h2.23c-.75-.93-1.2-2.04-1.23-3-.02-.53-.73-4.43 6-8 0 0-.8 2.61 2.15 4.63.76.52 1.85 1.48 1.85 3.37 0 1.13-.39 2.16-1.02 3H18v2h2V4H4v16z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 12.46c-.15.42-.15.82-.08 1.28.1.55.33 1.04.2 1.6-.13.59-.77 1.38-1.53 1.63 1.28 1.05 3.2.37 3.39-1.32.17-1.54-1.44-1.98-1.98-3.19z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 2v20h20V2H2zm10 16c-1.58 0-2.97-1.88-3-3.06 0-.05-.01-.13-.01-.22-.13-1.73 1-3.2 2.47-4.37.47 1.01 1.27 2.03 2.57 2.92.58.42.97.86.97 1.73 0 1.65-1.35 3-3 3zm8 2h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" -}, "2")], 'FireplaceTwoTone'); \ No newline at end of file +}, "2")], 'FireplaceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FirstPage.js b/packages/material-ui-icons/lib/FirstPage.js index aecb71588782ef..89282259727528 100644 --- a/packages/material-ui-icons/lib/FirstPage.js +++ b/packages/material-ui-icons/lib/FirstPage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z" -}), 'FirstPage'); \ No newline at end of file +}), 'FirstPage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FirstPageOutlined.js b/packages/material-ui-icons/lib/FirstPageOutlined.js index 5db834cd166c0f..86b613420f53f6 100644 --- a/packages/material-ui-icons/lib/FirstPageOutlined.js +++ b/packages/material-ui-icons/lib/FirstPageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" -}), 'FirstPageOutlined'); \ No newline at end of file +}), 'FirstPageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FirstPageRounded.js b/packages/material-ui-icons/lib/FirstPageRounded.js index e039a285437c0a..090e56a711eb85 100644 --- a/packages/material-ui-icons/lib/FirstPageRounded.js +++ b/packages/material-ui-icons/lib/FirstPageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.7 15.89 13.82 12l3.89-3.89c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-4.59 4.59c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.38.38-1.02-.01-1.4zM7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1z" -}), 'FirstPageRounded'); \ No newline at end of file +}), 'FirstPageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FirstPageSharp.js b/packages/material-ui-icons/lib/FirstPageSharp.js index 7989d6d2f0a33e..792c852f49062e 100644 --- a/packages/material-ui-icons/lib/FirstPageSharp.js +++ b/packages/material-ui-icons/lib/FirstPageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" -}), 'FirstPageSharp'); \ No newline at end of file +}), 'FirstPageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FirstPageTwoTone.js b/packages/material-ui-icons/lib/FirstPageTwoTone.js index 3211cfad5fad4b..10976ea930d4fa 100644 --- a/packages/material-ui-icons/lib/FirstPageTwoTone.js +++ b/packages/material-ui-icons/lib/FirstPageTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" -}), 'FirstPageTwoTone'); \ No newline at end of file +}), 'FirstPageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitScreen.js b/packages/material-ui-icons/lib/FitScreen.js index 542322978dafe2..0387bcceabd5a2 100644 --- a/packages/material-ui-icons/lib/FitScreen.js +++ b/packages/material-ui-icons/lib/FitScreen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h3c1.1 0 2 .9 2 2v2h-2V6h-3V4zM4 8V6h3V4H4c-1.1 0-2 .9-2 2v2h2zm16 8v2h-3v2h3c1.1 0 2-.9 2-2v-2h-2zM7 18H4v-2H2v2c0 1.1.9 2 2 2h3v-2zM18 8H6v8h12V8z" -}), 'FitScreen'); \ No newline at end of file +}), 'FitScreen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitScreenOutlined.js b/packages/material-ui-icons/lib/FitScreenOutlined.js index d4808fc1fbe30c..c7ba0f1bf05008 100644 --- a/packages/material-ui-icons/lib/FitScreenOutlined.js +++ b/packages/material-ui-icons/lib/FitScreenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 16h12V8H6v8zm2-6h8v4H8v-4zm-4 5H2v3c0 1.1.9 2 2 2h3v-2H4v-3zm0-9h3V4H4c-1.1 0-2 .9-2 2v3h2V6zm16-2h-3v2h3v3h2V6c0-1.1-.9-2-2-2zm0 14h-3v2h3c1.1 0 2-.9 2-2v-3h-2v3z" -}), 'FitScreenOutlined'); \ No newline at end of file +}), 'FitScreenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitScreenRounded.js b/packages/material-ui-icons/lib/FitScreenRounded.js index 77558521ee82fc..7780e69f1c486a 100644 --- a/packages/material-ui-icons/lib/FitScreenRounded.js +++ b/packages/material-ui-icons/lib/FitScreenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h2c1.1 0 2 .9 2 2v2c0 .55-.45 1-1 1s-1-.45-1-1V6h-2c-.55 0-1-.45-1-1s.45-1 1-1zM4 8V6h2c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1zm16 8v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c1.1 0 2-.9 2-2v-2c0-.55-.45-1-1-1s-1 .45-1 1zM6 18H4v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h2c.55 0 1-.45 1-1s-.45-1-1-1zM16 8H8c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2z" -}), 'FitScreenRounded'); \ No newline at end of file +}), 'FitScreenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitScreenSharp.js b/packages/material-ui-icons/lib/FitScreenSharp.js index 8de0444db95701..3ffd1dc90d9962 100644 --- a/packages/material-ui-icons/lib/FitScreenSharp.js +++ b/packages/material-ui-icons/lib/FitScreenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h5v5h-2V6h-3V4zM4 9V6h3V4H2v5h2zm16 6v3h-3v2h5v-5h-2zM7 18H4v-3H2v5h5v-2zM18 8H6v8h12V8z" -}), 'FitScreenSharp'); \ No newline at end of file +}), 'FitScreenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitScreenTwoTone.js b/packages/material-ui-icons/lib/FitScreenTwoTone.js index 6f406fbef7e12a..212c1178f94db4 100644 --- a/packages/material-ui-icons/lib/FitScreenTwoTone.js +++ b/packages/material-ui-icons/lib/FitScreenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10h8v4H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 16h12V8H6v8zm2-6h8v4H8v-4zm-4 5H2v3c0 1.1.9 2 2 2h3v-2H4v-3zm0-9h3V4H4c-1.1 0-2 .9-2 2v3h2V6zm16-2h-3v2h3v3h2V6c0-1.1-.9-2-2-2zm0 14h-3v2h3c1.1 0 2-.9 2-2v-3h-2v3z" -}, "1")], 'FitScreenTwoTone'); \ No newline at end of file +}, "1")], 'FitScreenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitnessCenter.js b/packages/material-ui-icons/lib/FitnessCenter.js index d599fc3b09919e..2e9e812d2480a7 100644 --- a/packages/material-ui-icons/lib/FitnessCenter.js +++ b/packages/material-ui-icons/lib/FitnessCenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z" -}), 'FitnessCenter'); \ No newline at end of file +}), 'FitnessCenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitnessCenterOutlined.js b/packages/material-ui-icons/lib/FitnessCenterOutlined.js index 941379d77ccce7..acfca376b54680 100644 --- a/packages/material-ui-icons/lib/FitnessCenterOutlined.js +++ b/packages/material-ui-icons/lib/FitnessCenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" -}), 'FitnessCenterOutlined'); \ No newline at end of file +}), 'FitnessCenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitnessCenterRounded.js b/packages/material-ui-icons/lib/FitnessCenterRounded.js index 6b5a864e84bc69..bfff22c9dd6db8 100644 --- a/packages/material-ui-icons/lib/FitnessCenterRounded.js +++ b/packages/material-ui-icons/lib/FitnessCenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.57 14.86.72-.72c.39-.39.39-1.02 0-1.41l-.02-.02a.9959.9959 0 0 0-1.41 0L17 15.57 8.43 7l2.86-2.86c.39-.39.39-1.02 0-1.41l-.02-.02a.9959.9959 0 0 0-1.41 0l-.72.72-.72-.72c-.39-.39-1.03-.39-1.42 0L5.57 4.14l-.72-.72c-.39-.39-1.04-.39-1.43 0-.39.39-.39 1.04 0 1.43l.72.72L2.71 7c-.39.39-.39 1.02 0 1.41l.72.72-.72.73c-.39.39-.39 1.02 0 1.41l.02.02c.39.39 1.02.39 1.41 0L7 8.43 15.57 17l-2.86 2.86c-.39.39-.39 1.02 0 1.41l.02.02c.39.39 1.02.39 1.41 0l.72-.72.72.72c.39.39 1.02.39 1.41 0l1.43-1.43.72.72c.39.39 1.04.39 1.43 0 .39-.39.39-1.04 0-1.43l-.72-.72L21.29 17c.39-.39.39-1.02 0-1.41l-.72-.73z" -}), 'FitnessCenterRounded'); \ No newline at end of file +}), 'FitnessCenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitnessCenterSharp.js b/packages/material-ui-icons/lib/FitnessCenterSharp.js index 1f81b472cc07cc..9e09deb6e2f497 100644 --- a/packages/material-ui-icons/lib/FitnessCenterSharp.js +++ b/packages/material-ui-icons/lib/FitnessCenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" -}), 'FitnessCenterSharp'); \ No newline at end of file +}), 'FitnessCenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FitnessCenterTwoTone.js b/packages/material-ui-icons/lib/FitnessCenterTwoTone.js index 0b92c1374dc9d0..b9be0a349db6d1 100644 --- a/packages/material-ui-icons/lib/FitnessCenterTwoTone.js +++ b/packages/material-ui-icons/lib/FitnessCenterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" -}), 'FitnessCenterTwoTone'); \ No newline at end of file +}), 'FitnessCenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveG.js b/packages/material-ui-icons/lib/FiveG.js index d116f7b833d909..365b9283460112 100644 --- a/packages/material-ui-icons/lib/FiveG.js +++ b/packages/material-ui-icons/lib/FiveG.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4v2zM3 13h5v2H3v2h5c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h5V7H3v6z" -}), 'FiveG'); \ No newline at end of file +}), 'FiveG'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveGOutlined.js b/packages/material-ui-icons/lib/FiveGOutlined.js index d02d8078fbc6c6..a9af5579a43991 100644 --- a/packages/material-ui-icons/lib/FiveGOutlined.js +++ b/packages/material-ui-icons/lib/FiveGOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 13H19v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4.5v2zM3 13h5v2H3v2h5c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h5V7H3v6z" -}), 'FiveGOutlined'); \ No newline at end of file +}), 'FiveGOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveGRounded.js b/packages/material-ui-icons/lib/FiveGRounded.js index 47ee156f5db4a7..7b02f983ec4ca0 100644 --- a/packages/material-ui-icons/lib/FiveGRounded.js +++ b/packages/material-ui-icons/lib/FiveGRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h1v2h-5V9h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM4 13h4v2H4c-.55 0-1 .45-1 1s.45 1 1 1h4c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" -}), 'FiveGRounded'); \ No newline at end of file +}), 'FiveGRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveGSharp.js b/packages/material-ui-icons/lib/FiveGSharp.js index 2c98b3d08d1f51..e4ef25ff82e4bd 100644 --- a/packages/material-ui-icons/lib/FiveGSharp.js +++ b/packages/material-ui-icons/lib/FiveGSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 13h2v2h-5V9h7V7h-9v10h9v-6h-4zM3 13h5v2H3v2h7v-6H5V9h5V7H3z" -}), 'FiveGSharp'); \ No newline at end of file +}), 'FiveGSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveGTwoTone.js b/packages/material-ui-icons/lib/FiveGTwoTone.js index 90dacd2c6acd98..44ebb43d63b2a8 100644 --- a/packages/material-ui-icons/lib/FiveGTwoTone.js +++ b/packages/material-ui-icons/lib/FiveGTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 13H19v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4.5v2zM3 13h5v2H3v2h5c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h5V7H3v6z" -}), 'FiveGTwoTone'); \ No newline at end of file +}), 'FiveGTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveK.js b/packages/material-ui-icons/lib/FiveK.js index ca08d6fa5046fd..243799091c01dd 100644 --- a/packages/material-ui-icons/lib/FiveK.js +++ b/packages/material-ui-icons/lib/FiveK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'FiveK'); \ No newline at end of file +}), 'FiveK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKOutlined.js b/packages/material-ui-icons/lib/FiveKOutlined.js index b8db0e9180af4e..46a87b958d1b2e 100644 --- a/packages/material-ui-icons/lib/FiveKOutlined.js +++ b/packages/material-ui-icons/lib/FiveKOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14v-1.5c0-.55-.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "1")], 'FiveKOutlined'); \ No newline at end of file +}, "1")], 'FiveKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKPlus.js b/packages/material-ui-icons/lib/FiveKPlus.js index be1e42f145383c..cfe13270c44d7d 100644 --- a/packages/material-ui-icons/lib/FiveKPlus.js +++ b/packages/material-ui-icons/lib/FiveKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3v-1H5V9h4.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'FiveKPlus'); \ No newline at end of file +}), 'FiveKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKPlusOutlined.js b/packages/material-ui-icons/lib/FiveKPlusOutlined.js index 370cd6397534c2..d9a3a64f5ac10e 100644 --- a/packages/material-ui-icons/lib/FiveKPlusOutlined.js +++ b/packages/material-ui-icons/lib/FiveKPlusOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "1")], 'FiveKPlusOutlined'); \ No newline at end of file +}, "1")], 'FiveKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKPlusRounded.js b/packages/material-ui-icons/lib/FiveKPlusRounded.js index 8423afe69028aa..3c373ec8428e8b 100644 --- a/packages/material-ui-icons/lib/FiveKPlusRounded.js +++ b/packages/material-ui-icons/lib/FiveKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.75 7.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75zm5.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'FiveKPlusRounded'); \ No newline at end of file +}), 'FiveKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKPlusSharp.js b/packages/material-ui-icons/lib/FiveKPlusSharp.js index d76c9dfe416495..4c1f4f3d1eb854 100644 --- a/packages/material-ui-icons/lib/FiveKPlusSharp.js +++ b/packages/material-ui-icons/lib/FiveKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6v-1.5h2.5v-1H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'FiveKPlusSharp'); \ No newline at end of file +}), 'FiveKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKPlusTwoTone.js b/packages/material-ui-icons/lib/FiveKPlusTwoTone.js index aa9f360f121795..fc2d756441afb4 100644 --- a/packages/material-ui-icons/lib/FiveKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/FiveKPlusTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 4.5h2.5v-1H6V9h4v1.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6v-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "2")], 'FiveKPlusTwoTone'); \ No newline at end of file +}, "2")], 'FiveKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKRounded.js b/packages/material-ui-icons/lib/FiveKRounded.js index c52d2f81b010b5..c361d3328ed7ca 100644 --- a/packages/material-ui-icons/lib/FiveKRounded.js +++ b/packages/material-ui-icons/lib/FiveKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H9.5v-1H7.25c-.41 0-.75-.34-.75-.75v-2c0-.41.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75zm6.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'FiveKRounded'); \ No newline at end of file +}), 'FiveKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKSharp.js b/packages/material-ui-icons/lib/FiveKSharp.js index edd954c0b1a6e6..b8f9dbc29a8a65 100644 --- a/packages/material-ui-icons/lib/FiveKSharp.js +++ b/packages/material-ui-icons/lib/FiveKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'FiveKSharp'); \ No newline at end of file +}), 'FiveKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveKTwoTone.js b/packages/material-ui-icons/lib/FiveKTwoTone.js index c2216e2fda45c5..e600e393d664bf 100644 --- a/packages/material-ui-icons/lib/FiveKTwoTone.js +++ b/packages/material-ui-icons/lib/FiveKTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 4.5h3v-1h-3V9H11v1.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14v-1.5c0-.55-.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "2")], 'FiveKTwoTone'); \ No newline at end of file +}, "2")], 'FiveKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveMp.js b/packages/material-ui-icons/lib/FiveMp.js index 56e7bd0b595606..ceeadd8731a5f1 100644 --- a/packages/material-ui-icons/lib/FiveMp.js +++ b/packages/material-ui-icons/lib/FiveMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM14.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10h3V9h-3V5.5h4.5V7zm1 7H17v1.5h-1.5z" -}), 'FiveMp'); \ No newline at end of file +}), 'FiveMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveMpOutlined.js b/packages/material-ui-icons/lib/FiveMpOutlined.js index 3f6f89a4b82a31..6685861b61d23c 100644 --- a/packages/material-ui-icons/lib/FiveMpOutlined.js +++ b/packages/material-ui-icons/lib/FiveMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5V9c0-.55-.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "2")], 'FiveMpOutlined'); \ No newline at end of file +}, "2")], 'FiveMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveMpRounded.js b/packages/material-ui-icons/lib/FiveMpRounded.js index cb96671a9e03c8..edbf81c476b75c 100644 --- a/packages/material-ui-icons/lib/FiveMpRounded.js +++ b/packages/material-ui-icons/lib/FiveMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 6c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H11.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H13V9h-2zm1.5 8.75c0 .41-.34.75-.75.75s-.75-.33-.75-.75V14h-1v2.25c0 .42-.34.75-.75.75s-.75-.33-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.17 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'FiveMpRounded'); \ No newline at end of file +}, "1")], 'FiveMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveMpSharp.js b/packages/material-ui-icons/lib/FiveMpSharp.js index 2429ff366a7f7f..4fc5a33fe54841 100644 --- a/packages/material-ui-icons/lib/FiveMpSharp.js +++ b/packages/material-ui-icons/lib/FiveMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'FiveMpSharp'); \ No newline at end of file +}, "1")], 'FiveMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FiveMpTwoTone.js b/packages/material-ui-icons/lib/FiveMpTwoTone.js index 91df949520ffa0..1c76829ff66e63 100644 --- a/packages/material-ui-icons/lib/FiveMpTwoTone.js +++ b/packages/material-ui-icons/lib/FiveMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 10h3V9h-3V5.5h4.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10zm-4 3.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5V9c0-.55-.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "4")], 'FiveMpTwoTone'); \ No newline at end of file +}, "4")], 'FiveMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FivteenMp.js b/packages/material-ui-icons/lib/FivteenMp.js index 44132fa3852914..9396c91d24a029 100644 --- a/packages/material-ui-icons/lib/FivteenMp.js +++ b/packages/material-ui-icons/lib/FivteenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM16.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10h3V9h-3V5.5h4.5V7zm-1 7H17v1.5h-1.5z" -}), 'FivteenMp'); \ No newline at end of file +}), 'FivteenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FivteenMpOutlined.js b/packages/material-ui-icons/lib/FivteenMpOutlined.js index cdf0af636ac58e..fcd75e729d1b3e 100644 --- a/packages/material-ui-icons/lib/FivteenMpOutlined.js +++ b/packages/material-ui-icons/lib/FivteenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm8-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "2")], 'FivteenMpOutlined'); \ No newline at end of file +}, "2")], 'FivteenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FivteenMpRounded.js b/packages/material-ui-icons/lib/FivteenMpRounded.js index 309f10199c5b89..ec52b3e9627f6e 100644 --- a/packages/material-ui-icons/lib/FivteenMpRounded.js +++ b/packages/material-ui-icons/lib/FivteenMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.5-7c0-.41.34-.75.75-.75H15V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H13.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'FivteenMpRounded'); \ No newline at end of file +}, "1")], 'FivteenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FivteenMpSharp.js b/packages/material-ui-icons/lib/FivteenMpSharp.js index b3d6aa289b338f..8c16819e76388c 100644 --- a/packages/material-ui-icons/lib/FivteenMpSharp.js +++ b/packages/material-ui-icons/lib/FivteenMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'FivteenMpSharp'); \ No newline at end of file +}, "1")], 'FivteenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FivteenMpTwoTone.js b/packages/material-ui-icons/lib/FivteenMpTwoTone.js index 3afdde4b4cbf19..abb4fc4cd30a18 100644 --- a/packages/material-ui-icons/lib/FivteenMpTwoTone.js +++ b/packages/material-ui-icons/lib/FivteenMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 10h3V9h-3V5.5h4.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm8-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "4")], 'FivteenMpTwoTone'); \ No newline at end of file +}, "4")], 'FivteenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Flag.js b/packages/material-ui-icons/lib/Flag.js index 8ccac7898add0b..35966e350aa3c8 100644 --- a/packages/material-ui-icons/lib/Flag.js +++ b/packages/material-ui-icons/lib/Flag.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6z" -}), 'Flag'); \ No newline at end of file +}), 'Flag'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlagOutlined.js b/packages/material-ui-icons/lib/FlagOutlined.js index 4a9a3202c4a4ba..8f5d242150cb23 100644 --- a/packages/material-ui-icons/lib/FlagOutlined.js +++ b/packages/material-ui-icons/lib/FlagOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.36 6 .4 2H18v6h-3.36l-.4-2H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z" -}), 'FlagOutlined'); \ No newline at end of file +}), 'FlagOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlagRounded.js b/packages/material-ui-icons/lib/FlagRounded.js index 389244f7b6c7cc..335c8d0c63031b 100644 --- a/packages/material-ui-icons/lib/FlagRounded.js +++ b/packages/material-ui-icons/lib/FlagRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.4 6-.24-1.2c-.09-.46-.5-.8-.98-.8H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5.6l.24 1.2c.09.47.5.8.98.8H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-4.6z" -}), 'FlagRounded'); \ No newline at end of file +}), 'FlagRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlagSharp.js b/packages/material-ui-icons/lib/FlagSharp.js index 009856960e7cae..00faedd562e32f 100644 --- a/packages/material-ui-icons/lib/FlagSharp.js +++ b/packages/material-ui-icons/lib/FlagSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z" -}), 'FlagSharp'); \ No newline at end of file +}), 'FlagSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlagTwoTone.js b/packages/material-ui-icons/lib/FlagTwoTone.js index adacab0b8ec0bf..f0895901e46b01 100644 --- a/packages/material-ui-icons/lib/FlagTwoTone.js +++ b/packages/material-ui-icons/lib/FlagTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.36 6H7v6h7.24l.4 2H18V8h-5.24z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6zm3.6 8h-3.36l-.4-2H7V6h5.36l.4 2H18v6z" -}, "1")], 'FlagTwoTone'); \ No newline at end of file +}, "1")], 'FlagTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Flaky.js b/packages/material-ui-icons/lib/Flaky.js index 89c5d6fc84a0f4..414511f1f40ad7 100644 --- a/packages/material-ui-icons/lib/Flaky.js +++ b/packages/material-ui-icons/lib/Flaky.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" -}), 'Flaky'); \ No newline at end of file +}), 'Flaky'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlakyOutlined.js b/packages/material-ui-icons/lib/FlakyOutlined.js index 4dca987b65ee86..05e270f8b468c4 100644 --- a/packages/material-ui-icons/lib/FlakyOutlined.js +++ b/packages/material-ui-icons/lib/FlakyOutlined.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" -}), 'FlakyOutlined'); \ No newline at end of file +}), 'FlakyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlakyRounded.js b/packages/material-ui-icons/lib/FlakyRounded.js index fda9063231c865..e96a1a3f79b1e1 100644 --- a/packages/material-ui-icons/lib/FlakyRounded.js +++ b/packages/material-ui-icons/lib/FlakyRounded.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M12.16 15.72c-.29-.29-.29-.77 0-1.06.29-.29.77-.29 1.06 0l.82.82L16 13.52c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-2.65 2.65c-.19.19-.51.2-.7 0l-1.55-1.51zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.87 6.81l.88.88.88-.88c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.88.88.88.88c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0l-.88-.88-.88.88c-.29.29-.77.29-1.06 0-.29-.29-.29-.77 0-1.06l.88-.88-.88-.88c-.29-.29-.29-.77 0-1.06.29-.3.76-.3 1.06 0zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" -}), 'FlakyRounded'); \ No newline at end of file +}), 'FlakyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlakySharp.js b/packages/material-ui-icons/lib/FlakySharp.js index fabda474d0e296..6fadd56ee29bc3 100644 --- a/packages/material-ui-icons/lib/FlakySharp.js +++ b/packages/material-ui-icons/lib/FlakySharp.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" -}), 'FlakySharp'); \ No newline at end of file +}), 'FlakySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlakyTwoTone.js b/packages/material-ui-icons/lib/FlakyTwoTone.js index db06145e2424c3..f496a6ed03b856 100644 --- a/packages/material-ui-icons/lib/FlakyTwoTone.js +++ b/packages/material-ui-icons/lib/FlakyTwoTone.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" -}), 'FlakyTwoTone'); \ No newline at end of file +}), 'FlakyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Flare.js b/packages/material-ui-icons/lib/Flare.js index 61de0abd4efd16..a6b9e813e0529c 100644 --- a/packages/material-ui-icons/lib/Flare.js +++ b/packages/material-ui-icons/lib/Flare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" -}), 'Flare'); \ No newline at end of file +}), 'Flare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlareOutlined.js b/packages/material-ui-icons/lib/FlareOutlined.js index 0868a9bff2b715..d8cf8dcd420d6d 100644 --- a/packages/material-ui-icons/lib/FlareOutlined.js +++ b/packages/material-ui-icons/lib/FlareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" -}), 'FlareOutlined'); \ No newline at end of file +}), 'FlareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlareRounded.js b/packages/material-ui-icons/lib/FlareRounded.js index 55ee0d01209269..12a17998856ab8 100644 --- a/packages/material-ui-icons/lib/FlareRounded.js +++ b/packages/material-ui-icons/lib/FlareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 11H2c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zm2.47-3.94-.72-.72a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.71.71c.39.39 1.02.39 1.41 0 .39-.38.39-1.02.01-1.4zM12 1c-.56 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zm5.66 5.35a.9959.9959 0 0 0-1.41 0l-.71.71c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.71-.71c.38-.39.38-1.03 0-1.41zM17 12c0 .56.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zm-5-3c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm3.53 7.94.71.71c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41zm-9.19.71c.39.39 1.02.39 1.41 0l.71-.71c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.71.71c-.38.39-.38 1.03 0 1.41zM12 23c.56 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" -}), 'FlareRounded'); \ No newline at end of file +}), 'FlareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlareSharp.js b/packages/material-ui-icons/lib/FlareSharp.js index 968f53c2d8b96e..fe35f8108ff680 100644 --- a/packages/material-ui-icons/lib/FlareSharp.js +++ b/packages/material-ui-icons/lib/FlareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" -}), 'FlareSharp'); \ No newline at end of file +}), 'FlareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlareTwoTone.js b/packages/material-ui-icons/lib/FlareTwoTone.js index 7675684041ddfc..2fa71ce5b21e23 100644 --- a/packages/material-ui-icons/lib/FlareTwoTone.js +++ b/packages/material-ui-icons/lib/FlareTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.644 7.05 7.05 5.645l2.123 2.122-1.408 1.407zM11 1h2v6h-2zm5.242 13.834 2.12 2.12-1.406 1.408-2.12-2.12zM14.834 7.76l2.12-2.123 1.41 1.407-2.123 2.122zm-5.668 8.482-2.122 2.12-1.407-1.406 2.122-2.122zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-1 8h2v6h-2zM1 11h6v2H1zm16 0h6v2h-6z" -}), 'FlareTwoTone'); \ No newline at end of file +}), 'FlareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashAuto.js b/packages/material-ui-icons/lib/FlashAuto.js index 14122acee7e958..f8f427fd711747 100644 --- a/packages/material-ui-icons/lib/FlashAuto.js +++ b/packages/material-ui-icons/lib/FlashAuto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" -}), 'FlashAuto'); \ No newline at end of file +}), 'FlashAuto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashAutoOutlined.js b/packages/material-ui-icons/lib/FlashAutoOutlined.js index 48f7cf4fa0b961..579e8e70ce470f 100644 --- a/packages/material-ui-icons/lib/FlashAutoOutlined.js +++ b/packages/material-ui-icons/lib/FlashAutoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" -}), 'FlashAutoOutlined'); \ No newline at end of file +}), 'FlashAutoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashAutoRounded.js b/packages/material-ui-icons/lib/FlashAutoRounded.js index 06d60c38b6648e..dafe8d9555a2ad 100644 --- a/packages/material-ui-icons/lib/FlashAutoRounded.js +++ b/packages/material-ui-icons/lib/FlashAutoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v10c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l5.19-8.9c.39-.67-.09-1.5-.86-1.5H9l3.38-7.59c.29-.67-.2-1.41-.92-1.41H4c-.55 0-1 .45-1 1zm15-1c-.6 0-1.13.38-1.34.94L14.22 9.8c-.2.59.23 1.2.85 1.2.38 0 .72-.24.84-.6L16.4 9h3.2l.49 1.4c.13.36.46.6.84.6.62 0 1.05-.61.84-1.19l-2.44-6.86C19.13 2.38 18.6 2 18 2zm-1.15 5.65L18 4l1.15 3.65h-2.3z" -}), 'FlashAutoRounded'); \ No newline at end of file +}), 'FlashAutoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashAutoSharp.js b/packages/material-ui-icons/lib/FlashAutoSharp.js index fe020c677c425c..3c7daab3d1560e 100644 --- a/packages/material-ui-icons/lib/FlashAutoSharp.js +++ b/packages/material-ui-icons/lib/FlashAutoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" -}), 'FlashAutoSharp'); \ No newline at end of file +}), 'FlashAutoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashAutoTwoTone.js b/packages/material-ui-icons/lib/FlashAutoTwoTone.js index d59c33f899d7ee..db0eca73dcce9a 100644 --- a/packages/material-ui-icons/lib/FlashAutoTwoTone.js +++ b/packages/material-ui-icons/lib/FlashAutoTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 2v12h3v9l7-12H9l4-9zm14 0-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2h-2zm-.15 5.65L18 4l1.15 3.65h-2.3z" -}), 'FlashAutoTwoTone'); \ No newline at end of file +}), 'FlashAutoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOff.js b/packages/material-ui-icons/lib/FlashOff.js index 97839eb85c8ea9..5ba1ea22f676cc 100644 --- a/packages/material-ui-icons/lib/FlashOff.js +++ b/packages/material-ui-icons/lib/FlashOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.27 3 2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73 3.27 3zM17 10h-4l4-8H7v2.18l8.46 8.46L17 10z" -}), 'FlashOff'); \ No newline at end of file +}), 'FlashOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOffOutlined.js b/packages/material-ui-icons/lib/FlashOffOutlined.js index 1fa58f9636b6d0..46bdca19851d2d 100644 --- a/packages/material-ui-icons/lib/FlashOffOutlined.js +++ b/packages/material-ui-icons/lib/FlashOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" -}), 'FlashOffOutlined'); \ No newline at end of file +}), 'FlashOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOffRounded.js b/packages/material-ui-icons/lib/FlashOffRounded.js index aa70a476e84772..df4c03d17c1bea 100644 --- a/packages/material-ui-icons/lib/FlashOffRounded.js +++ b/packages/material-ui-icons/lib/FlashOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.12 11.5c.39-.67-.09-1.5-.86-1.5h-1.87l2.28 2.28.45-.78zm.16-8.05c.33-.67-.15-1.45-.9-1.45H8c-.55 0-1 .45-1 1v.61l6.13 6.13 3.15-6.29zm2.16 14.43L4.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L7 9.27V12c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l2.65-4.55 3.44 3.44c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" -}), 'FlashOffRounded'); \ No newline at end of file +}), 'FlashOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOffSharp.js b/packages/material-ui-icons/lib/FlashOffSharp.js index 8479af5cd1e3af..d44c033ee9ea83 100644 --- a/packages/material-ui-icons/lib/FlashOffSharp.js +++ b/packages/material-ui-icons/lib/FlashOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" -}), 'FlashOffSharp'); \ No newline at end of file +}), 'FlashOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOffTwoTone.js b/packages/material-ui-icons/lib/FlashOffTwoTone.js index 06c3ef0fd46d24..0aa340a8d86452 100644 --- a/packages/material-ui-icons/lib/FlashOffTwoTone.js +++ b/packages/material-ui-icons/lib/FlashOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" -}), 'FlashOffTwoTone'); \ No newline at end of file +}), 'FlashOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOn.js b/packages/material-ui-icons/lib/FlashOn.js index c341650c1d5f54..5cacbbf8d586c8 100644 --- a/packages/material-ui-icons/lib/FlashOn.js +++ b/packages/material-ui-icons/lib/FlashOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 2v11h3v9l7-12h-4l4-8z" -}), 'FlashOn'); \ No newline at end of file +}), 'FlashOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOnOutlined.js b/packages/material-ui-icons/lib/FlashOnOutlined.js index 1189f695bb9fc6..bb25e96fd37f21 100644 --- a/packages/material-ui-icons/lib/FlashOnOutlined.js +++ b/packages/material-ui-icons/lib/FlashOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 2v11h3v9l7-12h-4l3-8z" -}), 'FlashOnOutlined'); \ No newline at end of file +}), 'FlashOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOnRounded.js b/packages/material-ui-icons/lib/FlashOnRounded.js index 7361a11e895cd1..f501e5b0f49688 100644 --- a/packages/material-ui-icons/lib/FlashOnRounded.js +++ b/packages/material-ui-icons/lib/FlashOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3v9c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l5.19-8.9c.39-.67-.09-1.5-.86-1.5H13l2.49-6.65c.25-.65-.23-1.35-.93-1.35H8c-.55 0-1 .45-1 1z" -}), 'FlashOnRounded'); \ No newline at end of file +}), 'FlashOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOnSharp.js b/packages/material-ui-icons/lib/FlashOnSharp.js index b966bb5272dc9a..a0a7eef23fd283 100644 --- a/packages/material-ui-icons/lib/FlashOnSharp.js +++ b/packages/material-ui-icons/lib/FlashOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 2v11h3v9l7-12h-4l3-8z" -}), 'FlashOnSharp'); \ No newline at end of file +}), 'FlashOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashOnTwoTone.js b/packages/material-ui-icons/lib/FlashOnTwoTone.js index 069d0ad93bcddf..15afb9ec7aefe3 100644 --- a/packages/material-ui-icons/lib/FlashOnTwoTone.js +++ b/packages/material-ui-icons/lib/FlashOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10h-4l3-8H7v11h3v9z" -}), 'FlashOnTwoTone'); \ No newline at end of file +}), 'FlashOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOff.js b/packages/material-ui-icons/lib/FlashlightOff.js index 1d70b2a35780b0..baed45bdeb3609 100644 --- a/packages/material-ui-icons/lib/FlashlightOff.js +++ b/packages/material-ui-icons/lib/FlashlightOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V2H6v1.17L7.83 5zm-2 6 2-3V7H9.83L16 13.17zM2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81z" -}), 'FlashlightOff'); \ No newline at end of file +}), 'FlashlightOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOffOutlined.js b/packages/material-ui-icons/lib/FlashlightOffOutlined.js index 8265339da9f759..bf1afd1f0b4035 100644 --- a/packages/material-ui-icons/lib/FlashlightOffOutlined.js +++ b/packages/material-ui-icons/lib/FlashlightOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81zM14 20h-4v-7.17l4 4V20zm2-16v1H7.83l2 2H16v.39l-2 3.01v.77l2 2V11l2-3V2H6v1.17l.83.83z" -}), 'FlashlightOffOutlined'); \ No newline at end of file +}), 'FlashlightOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOffRounded.js b/packages/material-ui-icons/lib/FlashlightOffRounded.js index 03acc2fb770429..cb7eddd1bea6a3 100644 --- a/packages/material-ui-icons/lib/FlashlightOffRounded.js +++ b/packages/material-ui-icons/lib/FlashlightOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V4c0-1.1-.9-2-2-2H8c-.86 0-1.58.54-1.87 1.3L7.83 5H18zm-2 6 2-3V7H9.83L16 13.17zM2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9V20c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-1.17l3.07 3.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0z" -}), 'FlashlightOffRounded'); \ No newline at end of file +}), 'FlashlightOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOffSharp.js b/packages/material-ui-icons/lib/FlashlightOffSharp.js index 8e23232adfa8d0..735a622f6e473a 100644 --- a/packages/material-ui-icons/lib/FlashlightOffSharp.js +++ b/packages/material-ui-icons/lib/FlashlightOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V2H6v1.17L7.83 5zm-2 6 2-3V7H9.83L16 13.17zM2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81z" -}), 'FlashlightOffSharp'); \ No newline at end of file +}), 'FlashlightOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOffTwoTone.js b/packages/material-ui-icons/lib/FlashlightOffTwoTone.js index c9b3468f590390..6f9cceee38d0a2 100644 --- a/packages/material-ui-icons/lib/FlashlightOffTwoTone.js +++ b/packages/material-ui-icons/lib/FlashlightOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7H9.83L14 11.17v-.77l2-3.01zm-6 5.83V20h4v-3.17zM16 5V4H6.83l1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81zM14 20h-4v-7.17l4 4V20zm2-16v1H7.83l2 2H16v.39l-2 3.01v.77l2 2V11l2-3V2H6v1.17l.83.83z" -}, "1")], 'FlashlightOffTwoTone'); \ No newline at end of file +}, "1")], 'FlashlightOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOn.js b/packages/material-ui-icons/lib/FlashlightOn.js index cac2cfecc7418a..9127ca560f2ed9 100644 --- a/packages/material-ui-icons/lib/FlashlightOn.js +++ b/packages/material-ui-icons/lib/FlashlightOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2h12v3H6zm0 5v1l2 3v11h8V11l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'FlashlightOn'); \ No newline at end of file +}), 'FlashlightOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOnOutlined.js b/packages/material-ui-icons/lib/FlashlightOnOutlined.js index 93500ce26401fe..639cd194428065 100644 --- a/packages/material-ui-icons/lib/FlashlightOnOutlined.js +++ b/packages/material-ui-icons/lib/FlashlightOnOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6v6l2 3v11h8V11l2-3V2zm-2 2v1H8V4h8zm-2 6.4V20h-4v-9.61l-2-3V7h8v.39l-2 3.01z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "14", r: "1.5" -}, "1")], 'FlashlightOnOutlined'); \ No newline at end of file +}, "1")], 'FlashlightOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOnRounded.js b/packages/material-ui-icons/lib/FlashlightOnRounded.js index 2293c0d6e223f6..44a6715c619d35 100644 --- a/packages/material-ui-icons/lib/FlashlightOnRounded.js +++ b/packages/material-ui-icons/lib/FlashlightOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4v1h12V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm0 3v1l2 3v9c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-9l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'FlashlightOnRounded'); \ No newline at end of file +}), 'FlashlightOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOnSharp.js b/packages/material-ui-icons/lib/FlashlightOnSharp.js index f259d3375ab977..17e62c08f3561f 100644 --- a/packages/material-ui-icons/lib/FlashlightOnSharp.js +++ b/packages/material-ui-icons/lib/FlashlightOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2h12v3H6zm0 5v1l2 3v11h8V11l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'FlashlightOnSharp'); \ No newline at end of file +}), 'FlashlightOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlashlightOnTwoTone.js b/packages/material-ui-icons/lib/FlashlightOnTwoTone.js index 80eca737448e0e..c2e738b12229b7 100644 --- a/packages/material-ui-icons/lib/FlashlightOnTwoTone.js +++ b/packages/material-ui-icons/lib/FlashlightOnTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 7.39 2 3V20h4v-9.6l2-3.01V7H8v.39zm4 5.11c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM8 4h8v1H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v6l2 3v11h8V11l2-3V2H6zm10 5.39-2 3.01V20h-4v-9.61l-2-3V7h8v.39zM16 5H8V4h8v1z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "14", r: "1.5" -}, "2")], 'FlashlightOnTwoTone'); \ No newline at end of file +}, "2")], 'FlashlightOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Flatware.js b/packages/material-ui-icons/lib/Flatware.js index 1cf8a340924473..3328771d316347 100644 --- a/packages/material-ui-icons/lib/Flatware.js +++ b/packages/material-ui-icons/lib/Flatware.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v10h2V11c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" -}), 'Flatware'); \ No newline at end of file +}), 'Flatware'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlatwareOutlined.js b/packages/material-ui-icons/lib/FlatwareOutlined.js index 22f37e0669f753..7be97f15123c9e 100644 --- a/packages/material-ui-icons/lib/FlatwareOutlined.js +++ b/packages/material-ui-icons/lib/FlatwareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v10h2V11c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" -}), 'FlatwareOutlined'); \ No newline at end of file +}), 'FlatwareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlatwareRounded.js b/packages/material-ui-icons/lib/FlatwareRounded.js index 180e8f65abbb1a..f7ae66a59fc21c 100644 --- a/packages/material-ui-icons/lib/FlatwareRounded.js +++ b/packages/material-ui-icons/lib/FlatwareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7.08c0 1.77-.84 3.25-2 3.82V20c0 .55-.45 1-1 1s-1-.45-1-1v-9.1c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zm2.27-3.9c-.63-.19-1.27.31-1.27.97V20c0 .55.45 1 1 1s1-.45 1-1v-7h1c.55 0 1-.45 1-1V7c0-1.46-.86-3.26-2.73-3.82zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v9c0 .55.45 1 1 1s1-.45 1-1v-9c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" -}), 'FlatwareRounded'); \ No newline at end of file +}), 'FlatwareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlatwareSharp.js b/packages/material-ui-icons/lib/FlatwareSharp.js index bfc3645653f755..c638f99eede8d5 100644 --- a/packages/material-ui-icons/lib/FlatwareSharp.js +++ b/packages/material-ui-icons/lib/FlatwareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3h-.72v4h-.84V3H5.28v4h-.84V3H3v8h2v10h2V11h2V3h-.72z" -}), 'FlatwareSharp'); \ No newline at end of file +}), 'FlatwareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlatwareTwoTone.js b/packages/material-ui-icons/lib/FlatwareTwoTone.js index 6f951beb20da8a..d60c016ac89108 100644 --- a/packages/material-ui-icons/lib/FlatwareTwoTone.js +++ b/packages/material-ui-icons/lib/FlatwareTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v10h2V11c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" -}), 'FlatwareTwoTone'); \ No newline at end of file +}), 'FlatwareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Flight.js b/packages/material-ui-icons/lib/Flight.js index cda9be0dd74a91..1ef7b732e4cee8 100644 --- a/packages/material-ui-icons/lib/Flight.js +++ b/packages/material-ui-icons/lib/Flight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" -}), 'Flight'); \ No newline at end of file +}), 'Flight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightLand.js b/packages/material-ui-icons/lib/FlightLand.js index b7b70be1160fba..d73cb97712edec 100644 --- a/packages/material-ui-icons/lib/FlightLand.js +++ b/packages/material-ui-icons/lib/FlightLand.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" -}), 'FlightLand'); \ No newline at end of file +}), 'FlightLand'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightLandOutlined.js b/packages/material-ui-icons/lib/FlightLandOutlined.js index 831e3e521cf15c..796081d966b899 100644 --- a/packages/material-ui-icons/lib/FlightLandOutlined.js +++ b/packages/material-ui-icons/lib/FlightLandOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" -}), 'FlightLandOutlined'); \ No newline at end of file +}), 'FlightLandOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightLandRounded.js b/packages/material-ui-icons/lib/FlightLandRounded.js index 5bf2b877c552cb..89ed989a9f7e7c 100644 --- a/packages/material-ui-icons/lib/FlightLandRounded.js +++ b/packages/material-ui-icons/lib/FlightLandRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 19h-17c-.55 0-1 .45-1 1s.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1zM3.51 11.61l15.83 4.24c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.58-8.45c-.11-.36-.39-.63-.75-.73-.68-.18-1.35.33-1.35 1.04v6.88L5.15 8.95 4.4 7.09c-.12-.29-.36-.51-.67-.59l-.33-.09c-.32-.09-.63.15-.63.48v3.75c0 .46.3.85.74.97z" -}), 'FlightLandRounded'); \ No newline at end of file +}), 'FlightLandRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightLandSharp.js b/packages/material-ui-icons/lib/FlightLandSharp.js index 3b20be835a3c71..7f13c4841e7dca 100644 --- a/packages/material-ui-icons/lib/FlightLandSharp.js +++ b/packages/material-ui-icons/lib/FlightLandSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" -}), 'FlightLandSharp'); \ No newline at end of file +}), 'FlightLandSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightLandTwoTone.js b/packages/material-ui-icons/lib/FlightLandTwoTone.js index a3910285e3115e..1a48d1c0860d98 100644 --- a/packages/material-ui-icons/lib/FlightLandTwoTone.js +++ b/packages/material-ui-icons/lib/FlightLandTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" -}), 'FlightLandTwoTone'); \ No newline at end of file +}), 'FlightLandTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightOutlined.js b/packages/material-ui-icons/lib/FlightOutlined.js index d925eec7cb5ab8..69df146201026f 100644 --- a/packages/material-ui-icons/lib/FlightOutlined.js +++ b/packages/material-ui-icons/lib/FlightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" -}), 'FlightOutlined'); \ No newline at end of file +}), 'FlightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightRounded.js b/packages/material-ui-icons/lib/FlightRounded.js index a77bd6bfb3bf24..cb8210cf4338cd 100644 --- a/packages/material-ui-icons/lib/FlightRounded.js +++ b/packages/material-ui-icons/lib/FlightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14.58c0-.36-.19-.69-.49-.89L13 9V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-7.51 4.69c-.3.19-.49.53-.49.89 0 .7.68 1.21 1.36 1L10 13.5V19l-1.8 1.35c-.13.09-.2.24-.2.4v.59c0 .33.32.57.64.48L11.5 21l2.86.82c.32.09.64-.15.64-.48v-.59c0-.16-.07-.31-.2-.4L13 19v-5.5l6.64 2.08c.68.21 1.36-.3 1.36-1z" -}), 'FlightRounded'); \ No newline at end of file +}), 'FlightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightSharp.js b/packages/material-ui-icons/lib/FlightSharp.js index 893c5c6a8ae100..73c6b7c314bb25 100644 --- a/packages/material-ui-icons/lib/FlightSharp.js +++ b/packages/material-ui-icons/lib/FlightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" -}), 'FlightSharp'); \ No newline at end of file +}), 'FlightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightTakeoff.js b/packages/material-ui-icons/lib/FlightTakeoff.js index bae48adf05b5a6..4b0347c7c6ec17 100644 --- a/packages/material-ui-icons/lib/FlightTakeoff.js +++ b/packages/material-ui-icons/lib/FlightTakeoff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49s7.12-1.9 16.57-4.43c.81-.23 1.28-1.05 1.07-1.85z" -}), 'FlightTakeoff'); \ No newline at end of file +}), 'FlightTakeoff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightTakeoffOutlined.js b/packages/material-ui-icons/lib/FlightTakeoffOutlined.js index 70c184d06b1c5c..9d4ff0bfe1eb5b 100644 --- a/packages/material-ui-icons/lib/FlightTakeoffOutlined.js +++ b/packages/material-ui-icons/lib/FlightTakeoffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" -}), 'FlightTakeoffOutlined'); \ No newline at end of file +}), 'FlightTakeoffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightTakeoffRounded.js b/packages/material-ui-icons/lib/FlightTakeoffRounded.js index 16fcb75784036d..bc8f0a04ecd7f4 100644 --- a/packages/material-ui-icons/lib/FlightTakeoffRounded.js +++ b/packages/material-ui-icons/lib/FlightTakeoffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 19h-17c-.55 0-1 .45-1 1s.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1zm1.57-9.36c-.22-.8-1.04-1.27-1.84-1.06L14.92 10 8.46 3.98c-.27-.26-.66-.35-1.02-.25-.68.19-1 .97-.65 1.58l3.44 5.96-4.97 1.33-1.57-1.24c-.25-.19-.57-.26-.88-.18l-.33.09c-.32.08-.47.45-.3.73l1.88 3.25c.23.39.69.58 1.12.47L21 11.48c.8-.22 1.28-1.04 1.07-1.84z" -}), 'FlightTakeoffRounded'); \ No newline at end of file +}), 'FlightTakeoffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightTakeoffSharp.js b/packages/material-ui-icons/lib/FlightTakeoffSharp.js index efa167634714b9..c870434f1fbbaa 100644 --- a/packages/material-ui-icons/lib/FlightTakeoffSharp.js +++ b/packages/material-ui-icons/lib/FlightTakeoffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" -}), 'FlightTakeoffSharp'); \ No newline at end of file +}), 'FlightTakeoffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightTakeoffTwoTone.js b/packages/material-ui-icons/lib/FlightTakeoffTwoTone.js index 99f708359de554..c2acaecc6fb7a3 100644 --- a/packages/material-ui-icons/lib/FlightTakeoffTwoTone.js +++ b/packages/material-ui-icons/lib/FlightTakeoffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" -}), 'FlightTakeoffTwoTone'); \ No newline at end of file +}), 'FlightTakeoffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlightTwoTone.js b/packages/material-ui-icons/lib/FlightTwoTone.js index 22c89b4e917b52..12199cd3552fcb 100644 --- a/packages/material-ui-icons/lib/FlightTwoTone.js +++ b/packages/material-ui-icons/lib/FlightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 19-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19z" -}), 'FlightTwoTone'); \ No newline at end of file +}), 'FlightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Flip.js b/packages/material-ui-icons/lib/Flip.js index 8ba464f2a6c7b8..02ee5104407331 100644 --- a/packages/material-ui-icons/lib/Flip.js +++ b/packages/material-ui-icons/lib/Flip.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" -}), 'Flip'); \ No newline at end of file +}), 'Flip'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraAndroid.js b/packages/material-ui-icons/lib/FlipCameraAndroid.js index ab3bc9ccfc1b0c..e648fc9dfd7e7d 100644 --- a/packages/material-ui-icons/lib/FlipCameraAndroid.js +++ b/packages/material-ui-icons/lib/FlipCameraAndroid.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" -}, "1")], 'FlipCameraAndroid'); \ No newline at end of file +}, "1")], 'FlipCameraAndroid'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraAndroidOutlined.js b/packages/material-ui-icons/lib/FlipCameraAndroidOutlined.js index 2b110e5f14d003..1fa716f8918399 100644 --- a/packages/material-ui-icons/lib/FlipCameraAndroidOutlined.js +++ b/packages/material-ui-icons/lib/FlipCameraAndroidOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" -}, "1")], 'FlipCameraAndroidOutlined'); \ No newline at end of file +}, "1")], 'FlipCameraAndroidOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraAndroidRounded.js b/packages/material-ui-icons/lib/FlipCameraAndroidRounded.js index 4d356d97911b21..2834ea2800194a 100644 --- a/packages/material-ui-icons/lib/FlipCameraAndroidRounded.js +++ b/packages/material-ui-icons/lib/FlipCameraAndroidRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9c0-.55-.45-1-1-1H5.09C6.47 5.61 9.05 4 12 4c3.49 0 6.45 2.24 7.54 5.36.14.39.53.64.94.64.68 0 1.18-.67.96-1.31C20.07 4.79 16.36 2 12 2 8.73 2 5.82 3.58 4 6.01V5c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1zm8 6c0 .55.45 1 1 1h1.91c-1.38 2.39-3.96 4-6.91 4-3.49 0-6.45-2.24-7.54-5.36-.14-.39-.53-.64-.94-.64-.68 0-1.18.67-.96 1.31C3.93 19.21 7.64 22 12 22c3.27 0 6.18-1.58 8-4.01V19c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1z" -}, "1")], 'FlipCameraAndroidRounded'); \ No newline at end of file +}, "1")], 'FlipCameraAndroidRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraAndroidSharp.js b/packages/material-ui-icons/lib/FlipCameraAndroidSharp.js index 5c40fe320719f8..5dcaaa40443f21 100644 --- a/packages/material-ui-icons/lib/FlipCameraAndroidSharp.js +++ b/packages/material-ui-icons/lib/FlipCameraAndroidSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" -}, "1")], 'FlipCameraAndroidSharp'); \ No newline at end of file +}, "1")], 'FlipCameraAndroidSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraAndroidTwoTone.js b/packages/material-ui-icons/lib/FlipCameraAndroidTwoTone.js index 459b8be16359df..c0efa2dff17e9f 100644 --- a/packages/material-ui-icons/lib/FlipCameraAndroidTwoTone.js +++ b/packages/material-ui-icons/lib/FlipCameraAndroidTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6V8zm8 6v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" -}, "2")], 'FlipCameraAndroidTwoTone'); \ No newline at end of file +}, "2")], 'FlipCameraAndroidTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraIos.js b/packages/material-ui-icons/lib/FlipCameraIos.js index c05d326be968f2..10b662e3636933 100644 --- a/packages/material-ui-icons/lib/FlipCameraIos.js +++ b/packages/material-ui-icons/lib/FlipCameraIos.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm4.5-2.5L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2l-2.5 2.5z" -}), 'FlipCameraIos'); \ No newline at end of file +}), 'FlipCameraIos'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraIosOutlined.js b/packages/material-ui-icons/lib/FlipCameraIosOutlined.js index e44e929439be27..e243ce58ec8c47 100644 --- a/packages/material-ui-icons/lib/FlipCameraIosOutlined.js +++ b/packages/material-ui-icons/lib/FlipCameraIosOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-2.21 0-4-1.79-4-4h2l-2.5-2.5L5 13h2c0 2.76 2.24 5 5 5 .86 0 1.65-.24 2.36-.62l-.74-.74c-.49.23-1.04.36-1.62.36zm0-9c-.86 0-1.65.24-2.36.62l.74.73C10.87 9.13 11.42 9 12 9c2.21 0 4 1.79 4 4h-2l2.5 2.5L19 13h-2c0-2.76-2.24-5-5-5z" -}, "1")], 'FlipCameraIosOutlined'); \ No newline at end of file +}, "1")], 'FlipCameraIosOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraIosRounded.js b/packages/material-ui-icons/lib/FlipCameraIosRounded.js index f110242cf19b0e..445f3847e62363 100644 --- a/packages/material-ui-icons/lib/FlipCameraIosRounded.js +++ b/packages/material-ui-icons/lib/FlipCameraIosRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6.33 12.7c-.52.19-1.08.3-1.67.3-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .46 0 .91-.08 1.32-.23.19-.07.39-.03.53.11.26.26.16.69-.18.82zm2.83-2.2L14 13h2c0-2.21-1.79-4-4-4-.46 0-.91.08-1.32.23-.19.07-.39.03-.53-.11-.26-.26-.16-.69.18-.82.52-.19 1.08-.3 1.67-.3 2.76 0 5 2.24 5 5h2l-2.5 2.5z" -}), 'FlipCameraIosRounded'); \ No newline at end of file +}), 'FlipCameraIosRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraIosSharp.js b/packages/material-ui-icons/lib/FlipCameraIosSharp.js index 5284824a217fdc..4bafa045e1eded 100644 --- a/packages/material-ui-icons/lib/FlipCameraIosSharp.js +++ b/packages/material-ui-icons/lib/FlipCameraIosSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm4.5-2.5L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2l-2.5 2.5z" -}), 'FlipCameraIosSharp'); \ No newline at end of file +}), 'FlipCameraIosSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipCameraIosTwoTone.js b/packages/material-ui-icons/lib/FlipCameraIosTwoTone.js index 1eb8ede234346e..2c5ef69a4f93bc 100644 --- a/packages/material-ui-icons/lib/FlipCameraIosTwoTone.js +++ b/packages/material-ui-icons/lib/FlipCameraIosTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.12 5H9.88L8.05 7H4v12h16V7h-4.05l-1.83-2zM12 18c-2.76 0-5-2.24-5-5H5l2.49-2.49.01-.01L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm7-5-2.49 2.49-.01.01L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-2.21 0-4-1.79-4-4h2l-2.5-2.5-.01.01L5 13h2c0 2.76 2.24 5 5 5 .86 0 1.65-.24 2.36-.62l-.74-.74c-.49.23-1.04.36-1.62.36zm0-9c-.86 0-1.65.24-2.36.62l.74.73C10.87 9.13 11.42 9 12 9c2.21 0 4 1.79 4 4h-2l2.5 2.5.01-.01L19 13h-2c0-2.76-2.24-5-5-5z" -}, "2")], 'FlipCameraIosTwoTone'); \ No newline at end of file +}, "2")], 'FlipCameraIosTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipOutlined.js b/packages/material-ui-icons/lib/FlipOutlined.js index f66bca3ac22cec..e307500d418894 100644 --- a/packages/material-ui-icons/lib/FlipOutlined.js +++ b/packages/material-ui-icons/lib/FlipOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" -}), 'FlipOutlined'); \ No newline at end of file +}), 'FlipOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipRounded.js b/packages/material-ui-icons/lib/FlipRounded.js index da0e8032791e6c..633646a0b34579 100644 --- a/packages/material-ui-icons/lib/FlipRounded.js +++ b/packages/material-ui-icons/lib/FlipRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-7 20c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v20c0 .55.45 1 1 1zm7-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" -}), 'FlipRounded'); \ No newline at end of file +}), 'FlipRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipSharp.js b/packages/material-ui-icons/lib/FlipSharp.js index 593c71f44b1ab3..520c6e7e740b54 100644 --- a/packages/material-ui-icons/lib/FlipSharp.js +++ b/packages/material-ui-icons/lib/FlipSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 3v18h6v-2H5V5h4V3H3zm16 0v2h2V3h-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8h2v-2h-2v2z" -}), 'FlipSharp'); \ No newline at end of file +}), 'FlipSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToBack.js b/packages/material-ui-icons/lib/FlipToBack.js index 11d7b3daf65ec8..3cb5f03fbbf195 100644 --- a/packages/material-ui-icons/lib/FlipToBack.js +++ b/packages/material-ui-icons/lib/FlipToBack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" -}), 'FlipToBack'); \ No newline at end of file +}), 'FlipToBack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToBackOutlined.js b/packages/material-ui-icons/lib/FlipToBackOutlined.js index ebb5087b114336..f6e1e2526da58a 100644 --- a/packages/material-ui-icons/lib/FlipToBackOutlined.js +++ b/packages/material-ui-icons/lib/FlipToBackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" -}), 'FlipToBackOutlined'); \ No newline at end of file +}), 'FlipToBackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToBackRounded.js b/packages/material-ui-icons/lib/FlipToBackRounded.js index 67f9ac021c1293..3e0329447caeca 100644 --- a/packages/material-ui-icons/lib/FlipToBackRounded.js +++ b/packages/material-ui-icons/lib/FlipToBackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM4 7c-.55 0-1 .45-1 1v11c0 1.1.9 2 2 2h11c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1V8c0-.55-.45-1-1-1zm11-2h2V3h-2v2zm0 12h2v-2h-2v2z" -}), 'FlipToBackRounded'); \ No newline at end of file +}), 'FlipToBackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToBackSharp.js b/packages/material-ui-icons/lib/FlipToBackSharp.js index 2eeb974a117b0f..3b7852b3220d3e 100644 --- a/packages/material-ui-icons/lib/FlipToBackSharp.js +++ b/packages/material-ui-icons/lib/FlipToBackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm4 4h-2v2h2v-2zm0-12h-2v2h2V3zM9 3H7v2h2V3zm12 0h-2v2h2V3zm0 12h-2v2h2v-2zM9 15H7v2h2v-2zm10-2h2v-2h-2v2zm0-4h2V7h-2v2zM5 7H3v14h14v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" -}), 'FlipToBackSharp'); \ No newline at end of file +}), 'FlipToBackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToBackTwoTone.js b/packages/material-ui-icons/lib/FlipToBackTwoTone.js index 8276da4eb7df9b..498e5019f89a4b 100644 --- a/packages/material-ui-icons/lib/FlipToBackTwoTone.js +++ b/packages/material-ui-icons/lib/FlipToBackTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" -}), 'FlipToBackTwoTone'); \ No newline at end of file +}), 'FlipToBackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToFront.js b/packages/material-ui-icons/lib/FlipToFront.js index 47eb6d94420f48..cd7a2139b99d53 100644 --- a/packages/material-ui-icons/lib/FlipToFront.js +++ b/packages/material-ui-icons/lib/FlipToFront.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" -}), 'FlipToFront'); \ No newline at end of file +}), 'FlipToFront'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToFrontOutlined.js b/packages/material-ui-icons/lib/FlipToFrontOutlined.js index 40848d867017a0..b83a27232c73bb 100644 --- a/packages/material-ui-icons/lib/FlipToFrontOutlined.js +++ b/packages/material-ui-icons/lib/FlipToFrontOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" -}), 'FlipToFrontOutlined'); \ No newline at end of file +}), 'FlipToFrontOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToFrontRounded.js b/packages/material-ui-icons/lib/FlipToFrontRounded.js index 117407bef87748..da6b079ce17c9e 100644 --- a/packages/material-ui-icons/lib/FlipToFrontRounded.js +++ b/packages/material-ui-icons/lib/FlipToFrontRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 12h-8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-7 6h2v-2h-2v2zm-4 0h2v-2H7v2z" -}), 'FlipToFrontRounded'); \ No newline at end of file +}), 'FlipToFrontRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToFrontSharp.js b/packages/material-ui-icons/lib/FlipToFrontSharp.js index fd799810358ec6..f8756fc129fce3 100644 --- a/packages/material-ui-icons/lib/FlipToFrontSharp.js +++ b/packages/material-ui-icons/lib/FlipToFrontSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm12 12h2v-2h-2v2zm6-18H7v14h14V3zm-2 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2zm-4 0h2v-2H3v2z" -}), 'FlipToFrontSharp'); \ No newline at end of file +}), 'FlipToFrontSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipToFrontTwoTone.js b/packages/material-ui-icons/lib/FlipToFrontTwoTone.js index 28ac2e65bda473..994c99bcf81878 100644 --- a/packages/material-ui-icons/lib/FlipToFrontTwoTone.js +++ b/packages/material-ui-icons/lib/FlipToFrontTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" -}), 'FlipToFrontTwoTone'); \ No newline at end of file +}), 'FlipToFrontTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlipTwoTone.js b/packages/material-ui-icons/lib/FlipTwoTone.js index 08b9c9c569ccf1..27d5a0a71c1691 100644 --- a/packages/material-ui-icons/lib/FlipTwoTone.js +++ b/packages/material-ui-icons/lib/FlipTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h2v2h-2zm0 14c1.1 0 2-.9 2-2h-2v2zm0-6h2v2h-2zm0-4h2v2h-2zM9 5V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4v-2H5V5h4zm10-2v2h2c0-1.1-.9-2-2-2zm-8-2h2v22h-2zm4 2h2v2h-2zm0 16h2v2h-2z" -}), 'FlipTwoTone'); \ No newline at end of file +}), 'FlipTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Flourescent.js b/packages/material-ui-icons/lib/Flourescent.js index 4ec336051c5db0..48b9f5cfadc132 100644 --- a/packages/material-ui-icons/lib/Flourescent.js +++ b/packages/material-ui-icons/lib/Flourescent.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9h14v6H5zm6-7h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" -}), 'Flourescent'); \ No newline at end of file +}), 'Flourescent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlourescentOutlined.js b/packages/material-ui-icons/lib/FlourescentOutlined.js index fa0aba4e23087b..8da8bbc1e5a3c1 100644 --- a/packages/material-ui-icons/lib/FlourescentOutlined.js +++ b/packages/material-ui-icons/lib/FlourescentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-9h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" -}), 'FlourescentOutlined'); \ No newline at end of file +}), 'FlourescentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlourescentRounded.js b/packages/material-ui-icons/lib/FlourescentRounded.js index 735e253ca9288f..cb23708b5dce63 100644 --- a/packages/material-ui-icons/lib/FlourescentRounded.js +++ b/packages/material-ui-icons/lib/FlourescentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h10c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2zm5-13c-.56 0-1 .45-1 1v1c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1zm7.79 3.3a.9959.9959 0 0 0-1.41 0l-.38.38c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.38-.38c.39-.38.39-1.02 0-1.41zM12 22c.56 0 1-.45 1-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1zm5.99-3.59.38.39c.39.39 1.02.39 1.41 0l.01-.01c.39-.39.39-1.02 0-1.41L19.4 17a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.41zM6 5.69l-.39-.38a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.39.38c.39.39 1.02.39 1.41 0 .38-.39.38-1.03 0-1.41zm-1.8 13.1c.39.4 1.03.4 1.42 0L6 18.4c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.39.39c-.39.39-.39 1.02 0 1.41z" -}), 'FlourescentRounded'); \ No newline at end of file +}), 'FlourescentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlourescentSharp.js b/packages/material-ui-icons/lib/FlourescentSharp.js index 461524072c509f..337e7cb1e697ff 100644 --- a/packages/material-ui-icons/lib/FlourescentSharp.js +++ b/packages/material-ui-icons/lib/FlourescentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9h14v6H5zm6-7h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" -}), 'FlourescentSharp'); \ No newline at end of file +}), 'FlourescentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlourescentTwoTone.js b/packages/material-ui-icons/lib/FlourescentTwoTone.js index bdfd524492b553..af6f22550d3974 100644 --- a/packages/material-ui-icons/lib/FlourescentTwoTone.js +++ b/packages/material-ui-icons/lib/FlourescentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h10v2H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-9h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" -}, "1")], 'FlourescentTwoTone'); \ No newline at end of file +}, "1")], 'FlourescentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlutterDash.js b/packages/material-ui-icons/lib/FlutterDash.js index 152a4003eb6868..d6f77bbcefbd3b 100644 --- a/packages/material-ui-icons/lib/FlutterDash.js +++ b/packages/material-ui-icons/lib/FlutterDash.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" -}), 'FlutterDash'); \ No newline at end of file +}), 'FlutterDash'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlutterDashOutlined.js b/packages/material-ui-icons/lib/FlutterDashOutlined.js index 87f8ca0ae41ac9..b3df48641ce0f5 100644 --- a/packages/material-ui-icons/lib/FlutterDashOutlined.js +++ b/packages/material-ui-icons/lib/FlutterDashOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" -}), 'FlutterDashOutlined'); \ No newline at end of file +}), 'FlutterDashOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlutterDashRounded.js b/packages/material-ui-icons/lib/FlutterDashRounded.js index d5d2be729c01ea..8b99e77547ec34 100644 --- a/packages/material-ui-icons/lib/FlutterDashRounded.js +++ b/packages/material-ui-icons/lib/FlutterDashRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" -}), 'FlutterDashRounded'); \ No newline at end of file +}), 'FlutterDashRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlutterDashSharp.js b/packages/material-ui-icons/lib/FlutterDashSharp.js index f75cf2bca654ba..b6d3be3c840616 100644 --- a/packages/material-ui-icons/lib/FlutterDashSharp.js +++ b/packages/material-ui-icons/lib/FlutterDashSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" -}), 'FlutterDashSharp'); \ No newline at end of file +}), 'FlutterDashSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FlutterDashTwoTone.js b/packages/material-ui-icons/lib/FlutterDashTwoTone.js index dfd1c37872f7e1..99b78a25dc5004 100644 --- a/packages/material-ui-icons/lib/FlutterDashTwoTone.js +++ b/packages/material-ui-icons/lib/FlutterDashTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" -}, "1")], 'FlutterDashTwoTone'); \ No newline at end of file +}, "1")], 'FlutterDashTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdBad.js b/packages/material-ui-icons/lib/FmdBad.js index 6d71ab5ba4f87c..352f2eae34794e 100644 --- a/packages/material-ui-icons/lib/FmdBad.js +++ b/packages/material-ui-icons/lib/FmdBad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm1 13h-2v-2h2v2zm0-4h-2V6h2v5z" -}), 'FmdBad'); \ No newline at end of file +}), 'FmdBad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdBadOutlined.js b/packages/material-ui-icons/lib/FmdBadOutlined.js index 12c81293ae2eae..d382267e7a3345 100644 --- a/packages/material-ui-icons/lib/FmdBadOutlined.js +++ b/packages/material-ui-icons/lib/FmdBadOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 17.33c-4.05-3.7-6-6.79-6-9.14C6 6.57 8.65 4 12 4s6 2.57 6 6.2c0 2.34-1.95 5.44-6 9.13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6h2v5h-2zm0 7h2v2h-2z" -}, "1")], 'FmdBadOutlined'); \ No newline at end of file +}, "1")], 'FmdBadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdBadRounded.js b/packages/material-ui-icons/lib/FmdBadRounded.js index 3aea0fe2b5d152..525044f10ef6d3 100644 --- a/packages/material-ui-icons/lib/FmdBadRounded.js +++ b/packages/material-ui-icons/lib/FmdBadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" -}), 'FmdBadRounded'); \ No newline at end of file +}), 'FmdBadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdBadSharp.js b/packages/material-ui-icons/lib/FmdBadSharp.js index 9359ba271c2ca6..e97ee0a2cee154 100644 --- a/packages/material-ui-icons/lib/FmdBadSharp.js +++ b/packages/material-ui-icons/lib/FmdBadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm1 13h-2v-2h2v2zm0-4h-2V6h2v5z" -}), 'FmdBadSharp'); \ No newline at end of file +}), 'FmdBadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdBadTwoTone.js b/packages/material-ui-icons/lib/FmdBadTwoTone.js index 1c2119f7bcdd3d..5e3763b53f54c3 100644 --- a/packages/material-ui-icons/lib/FmdBadTwoTone.js +++ b/packages/material-ui-icons/lib/FmdBadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v-2h-2v2zm0-4h2V6h-2v5zm1-9c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 17.33c-4.05-3.7-6-6.79-6-9.14C6 6.57 8.65 4 12 4s6 2.57 6 6.2c0 2.34-1.95 5.44-6 9.13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19.33c4.05-3.7 6-6.79 6-9.14C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.13zM11 6h2v5h-2V6zm0 7h2v2h-2v-2z", opacity: ".3" -}, "1")], 'FmdBadTwoTone'); \ No newline at end of file +}, "1")], 'FmdBadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdGood.js b/packages/material-ui-icons/lib/FmdGood.js index 1035f20f56dfae..cf3c2ffb7764f7 100644 --- a/packages/material-ui-icons/lib/FmdGood.js +++ b/packages/material-ui-icons/lib/FmdGood.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'FmdGood'); \ No newline at end of file +}), 'FmdGood'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdGoodOutlined.js b/packages/material-ui-icons/lib/FmdGoodOutlined.js index b1e3b7cc633161..07e6ad4e2d4529 100644 --- a/packages/material-ui-icons/lib/FmdGoodOutlined.js +++ b/packages/material-ui-icons/lib/FmdGoodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'FmdGoodOutlined'); \ No newline at end of file +}), 'FmdGoodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdGoodRounded.js b/packages/material-ui-icons/lib/FmdGoodRounded.js index d8f18d6b207394..810067d335882e 100644 --- a/packages/material-ui-icons/lib/FmdGoodRounded.js +++ b/packages/material-ui-icons/lib/FmdGoodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'FmdGoodRounded'); \ No newline at end of file +}), 'FmdGoodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdGoodSharp.js b/packages/material-ui-icons/lib/FmdGoodSharp.js index bdc3167a3b9c24..2375f564d80c9e 100644 --- a/packages/material-ui-icons/lib/FmdGoodSharp.js +++ b/packages/material-ui-icons/lib/FmdGoodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'FmdGoodSharp'); \ No newline at end of file +}), 'FmdGoodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FmdGoodTwoTone.js b/packages/material-ui-icons/lib/FmdGoodTwoTone.js index 9a92b4d1432a0c..4c387473845f5d 100644 --- a/packages/material-ui-icons/lib/FmdGoodTwoTone.js +++ b/packages/material-ui-icons/lib/FmdGoodTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14C18 6.57 15.35 4 12 4zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 17.33c-4.05-3.7-6-6.79-6-9.14C6 6.57 8.65 4 12 4s6 2.57 6 6.2c0 2.34-1.95 5.44-6 9.13z" -}, "1")], 'FmdGoodTwoTone'); \ No newline at end of file +}, "1")], 'FmdGoodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Folder.js b/packages/material-ui-icons/lib/Folder.js index f9543526d758a7..349cd3d16e4478 100644 --- a/packages/material-ui-icons/lib/Folder.js +++ b/packages/material-ui-icons/lib/Folder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" -}), 'Folder'); \ No newline at end of file +}), 'Folder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderOpen.js b/packages/material-ui-icons/lib/FolderOpen.js index a879f8c7298bc3..ad42ea60854c50 100644 --- a/packages/material-ui-icons/lib/FolderOpen.js +++ b/packages/material-ui-icons/lib/FolderOpen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" -}), 'FolderOpen'); \ No newline at end of file +}), 'FolderOpen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderOpenOutlined.js b/packages/material-ui-icons/lib/FolderOpenOutlined.js index 9ad74208847955..fa4e988e248d74 100644 --- a/packages/material-ui-icons/lib/FolderOpenOutlined.js +++ b/packages/material-ui-icons/lib/FolderOpenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" -}), 'FolderOpenOutlined'); \ No newline at end of file +}), 'FolderOpenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderOpenRounded.js b/packages/material-ui-icons/lib/FolderOpenRounded.js index 4c0ece43a07117..e47720ff0fc0b7 100644 --- a/packages/material-ui-icons/lib/FolderOpenRounded.js +++ b/packages/material-ui-icons/lib/FolderOpenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 12H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" -}), 'FolderOpenRounded'); \ No newline at end of file +}), 'FolderOpenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderOpenSharp.js b/packages/material-ui-icons/lib/FolderOpenSharp.js index 62391473fc5eae..20b5b841def0bf 100644 --- a/packages/material-ui-icons/lib/FolderOpenSharp.js +++ b/packages/material-ui-icons/lib/FolderOpenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H12l-2-2H2v16h20V6zm-2 12H4V8h16v10z" -}), 'FolderOpenSharp'); \ No newline at end of file +}), 'FolderOpenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderOpenTwoTone.js b/packages/material-ui-icons/lib/FolderOpenTwoTone.js index 5f45f1aeff789a..11ac725c57f328 100644 --- a/packages/material-ui-icons/lib/FolderOpenTwoTone.js +++ b/packages/material-ui-icons/lib/FolderOpenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8h16v10H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" -}, "1")], 'FolderOpenTwoTone'); \ No newline at end of file +}, "1")], 'FolderOpenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderOutlined.js b/packages/material-ui-icons/lib/FolderOutlined.js index eac2b9ba8409dc..ac2211ffe4e879 100644 --- a/packages/material-ui-icons/lib/FolderOutlined.js +++ b/packages/material-ui-icons/lib/FolderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.17 6 2 2H20v10H4V6h5.17M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" -}), 'FolderOutlined'); \ No newline at end of file +}), 'FolderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderRounded.js b/packages/material-ui-icons/lib/FolderRounded.js index 27728f83d90778..55c47ef7b732c8 100644 --- a/packages/material-ui-icons/lib/FolderRounded.js +++ b/packages/material-ui-icons/lib/FolderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 4.59C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-1.41-1.41z" -}), 'FolderRounded'); \ No newline at end of file +}), 'FolderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderShared.js b/packages/material-ui-icons/lib/FolderShared.js index 6f8af17211f180..9124c7c3e21ccf 100644 --- a/packages/material-ui-icons/lib/FolderShared.js +++ b/packages/material-ui-icons/lib/FolderShared.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" -}), 'FolderShared'); \ No newline at end of file +}), 'FolderShared'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSharedOutlined.js b/packages/material-ui-icons/lib/FolderSharedOutlined.js index 276e29ed405d04..ede6c6d0fb75cb 100644 --- a/packages/material-ui-icons/lib/FolderSharedOutlined.js +++ b/packages/material-ui-icons/lib/FolderSharedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 4h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1z" -}), 'FolderSharedOutlined'); \ No newline at end of file +}), 'FolderSharedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSharedRounded.js b/packages/material-ui-icons/lib/FolderSharedRounded.js index a6b7154dee55fe..45bee0a17d5fb0 100644 --- a/packages/material-ui-icons/lib/FolderSharedRounded.js +++ b/packages/material-ui-icons/lib/FolderSharedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" -}), 'FolderSharedRounded'); \ No newline at end of file +}), 'FolderSharedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSharedSharp.js b/packages/material-ui-icons/lib/FolderSharedSharp.js index febf886658f21b..30f4da7168194f 100644 --- a/packages/material-ui-icons/lib/FolderSharedSharp.js +++ b/packages/material-ui-icons/lib/FolderSharedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H12l-2-2H2v16h20V6zm-7 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" -}), 'FolderSharedSharp'); \ No newline at end of file +}), 'FolderSharedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSharedTwoTone.js b/packages/material-ui-icons/lib/FolderSharedTwoTone.js index fe6b74c6bf1ecd..e7e24d8c206138 100644 --- a/packages/material-ui-icons/lib/FolderSharedTwoTone.js +++ b/packages/material-ui-icons/lib/FolderSharedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.17 8-.59-.59L9.17 6H4v12h16V8h-8.83zM19 16v1h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm-4-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 3v1h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2z" -}, "1")], 'FolderSharedTwoTone'); \ No newline at end of file +}, "1")], 'FolderSharedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSharp.js b/packages/material-ui-icons/lib/FolderSharp.js index ed7e92af5895e1..7429cb7f7e8553 100644 --- a/packages/material-ui-icons/lib/FolderSharp.js +++ b/packages/material-ui-icons/lib/FolderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4H2v16h20V6H12l-2-2z" -}), 'FolderSharp'); \ No newline at end of file +}), 'FolderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSpecial.js b/packages/material-ui-icons/lib/FolderSpecial.js index eb7a007fb09fa9..bb8144943135c4 100644 --- a/packages/material-ui-icons/lib/FolderSpecial.js +++ b/packages/material-ui-icons/lib/FolderSpecial.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z" -}), 'FolderSpecial'); \ No newline at end of file +}), 'FolderSpecial'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSpecialOutlined.js b/packages/material-ui-icons/lib/FolderSpecialOutlined.js index 1eb5d65a0ec200..dd77720559fa76 100644 --- a/packages/material-ui-icons/lib/FolderSpecialOutlined.js +++ b/packages/material-ui-icons/lib/FolderSpecialOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z" -}), 'FolderSpecialOutlined'); \ No newline at end of file +}), 'FolderSpecialOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSpecialRounded.js b/packages/material-ui-icons/lib/FolderSpecialRounded.js index 15806bbf418c8e..f1b25291987656 100644 --- a/packages/material-ui-icons/lib/FolderSpecialRounded.js +++ b/packages/material-ui-icons/lib/FolderSpecialRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-3.06 10.41L15 15.28l-1.94 1.13c-.38.22-.84-.12-.74-.55l.51-2.2-1.69-1.46c-.33-.29-.16-.84.28-.88l2.23-.19.88-2.06c.17-.4.75-.4.92 0l.88 2.06 2.23.19c.44.04.62.59.28.88l-1.69 1.46.51 2.2c.11.43-.35.77-.72.55z" -}), 'FolderSpecialRounded'); \ No newline at end of file +}), 'FolderSpecialRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSpecialSharp.js b/packages/material-ui-icons/lib/FolderSpecialSharp.js index fd432f96a12817..86c668dfae86e6 100644 --- a/packages/material-ui-icons/lib/FolderSpecialSharp.js +++ b/packages/material-ui-icons/lib/FolderSpecialSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H12l-2-2H2v16h20V6zm-4.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z" -}), 'FolderSpecialSharp'); \ No newline at end of file +}), 'FolderSpecialSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderSpecialTwoTone.js b/packages/material-ui-icons/lib/FolderSpecialTwoTone.js index e7e72af403271b..bfa90243510898 100644 --- a/packages/material-ui-icons/lib/FolderSpecialTwoTone.js +++ b/packages/material-ui-icons/lib/FolderSpecialTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.17 8-2-2H4v12h16V8h-8.83zM15 9l1.19 2.79 3.03.26-2.3 1.99.69 2.96L15 15.47 12.39 17l.69-2.96-2.3-1.99 3.03-.26L15 9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z" -}, "1")], 'FolderSpecialTwoTone'); \ No newline at end of file +}, "1")], 'FolderSpecialTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FolderTwoTone.js b/packages/material-ui-icons/lib/FolderTwoTone.js index 6404ae3730fdc5..b5118807b34a13 100644 --- a/packages/material-ui-icons/lib/FolderTwoTone.js +++ b/packages/material-ui-icons/lib/FolderTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.17 8-.58-.59L9.17 6H4v12h16V8h-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10z" -}, "1")], 'FolderTwoTone'); \ No newline at end of file +}, "1")], 'FolderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FollowTheSigns.js b/packages/material-ui-icons/lib/FollowTheSigns.js index dd5d1e33b6531e..fa332bab353acf 100644 --- a/packages/material-ui-icons/lib/FollowTheSigns.js +++ b/packages/material-ui-icons/lib/FollowTheSigns.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z" -}), 'FollowTheSigns'); \ No newline at end of file +}), 'FollowTheSigns'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FollowTheSignsOutlined.js b/packages/material-ui-icons/lib/FollowTheSignsOutlined.js index 850416f8b6b08a..ecabeaed9d09e3 100644 --- a/packages/material-ui-icons/lib/FollowTheSignsOutlined.js +++ b/packages/material-ui-icons/lib/FollowTheSignsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z" -}), 'FollowTheSignsOutlined'); \ No newline at end of file +}), 'FollowTheSignsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FollowTheSignsRounded.js b/packages/material-ui-icons/lib/FollowTheSignsRounded.js index e18af357ca70ad..4873b636035807 100644 --- a/packages/material-ui-icons/lib/FollowTheSignsRounded.js +++ b/packages/material-ui-icons/lib/FollowTheSignsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3.23 21.81c-.12.62.35 1.19.98 1.19h.09c.47 0 .88-.33.98-.79L6.85 15 9 17v5c0 .55.45 1 1 1s1-.45 1-1v-6.14c0-.27-.11-.52-.29-.71L8.95 13.4l.6-3c1.07 1.32 2.58 2.23 4.31 2.51.6.1 1.14-.39 1.14-1 0-.49-.36-.9-.84-.98-1.49-.25-2.75-1.15-3.51-2.38l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15l-4.63 1.9c-.37.15-.62.52-.62.92V12c0 .55.45 1 1 1s1-.45 1-1V9.65l1.75-.75M21 2h-7c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h2.75v13.25c0 .41.34.75.75.75s.75-.34.75-.75V9H21c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-.85 3.85-1.28 1.29c-.31.32-.85.09-.85-.35v-.54h-2.76c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.76v-.54c0-.45.54-.67.85-.35l1.28 1.29c.19.19.19.51 0 .7z" -}), 'FollowTheSignsRounded'); \ No newline at end of file +}), 'FollowTheSignsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FollowTheSignsSharp.js b/packages/material-ui-icons/lib/FollowTheSignsSharp.js index c535eb3954dc6c..24889764944710 100644 --- a/packages/material-ui-icons/lib/FollowTheSignsSharp.js +++ b/packages/material-ui-icons/lib/FollowTheSignsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z" -}), 'FollowTheSignsSharp'); \ No newline at end of file +}), 'FollowTheSignsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FollowTheSignsTwoTone.js b/packages/material-ui-icons/lib/FollowTheSignsTwoTone.js index 1e936fb74f4608..f456b5222783b2 100644 --- a/packages/material-ui-icons/lib/FollowTheSignsTwoTone.js +++ b/packages/material-ui-icons/lib/FollowTheSignsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.64 7.75V6h-3.51V4.5h3.51V2.75l2.49 2.5-2.49 2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.12 5.25c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.74 3.4-2.75 14.1h2.1l1.75-8 2.15 2v6h2V15.2l-2.05-2.05.6-3c1.3 1.6 3.25 2.6 5.45 2.6v-2c-1.85 0-3.45-1-4.35-2.45l-.96-1.6c-.35-.6-1-.95-1.7-.95-.25 0-.5.05-.75.15L1.62 8.05v4.7h2V9.4l1.76-.75m7.24-6.9v7h3.75v14h1.5v-14h3.75v-7h-9zm5.02 6V6h-3.51V4.5h3.51V2.75l2.49 2.5-2.49 2.5z" -}, "1")], 'FollowTheSignsTwoTone'); \ No newline at end of file +}, "1")], 'FollowTheSignsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownload.js b/packages/material-ui-icons/lib/FontDownload.js index e7792a782f3045..8fcc6bc2241169 100644 --- a/packages/material-ui-icons/lib/FontDownload.js +++ b/packages/material-ui-icons/lib/FontDownload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.93 13.5h4.14L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.05 16.5-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z" -}), 'FontDownload'); \ No newline at end of file +}), 'FontDownload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadOff.js b/packages/material-ui-icons/lib/FontDownloadOff.js index f78b53c1fbfd2f..7e024f33473de1 100644 --- a/packages/material-ui-icons/lib/FontDownloadOff.js +++ b/packages/material-ui-icons/lib/FontDownloadOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.58 9.75-.87-.87.23-.66h.1l.54 1.53zm-2.23-2.23L10.92 6h2.14l2.55 6.79L22 19.17V4c0-1.1-.9-2-2-2H4.83l5.52 5.52zm10.14 15.79L19.17 22H4c-1.1 0-2-.9-2-2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zm-8.39-8.38-3.3-3.3L6.41 18h2.08l1.09-3.07h2.52z" -}), 'FontDownloadOff'); \ No newline at end of file +}), 'FontDownloadOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadOffOutlined.js b/packages/material-ui-icons/lib/FontDownloadOffOutlined.js index e93014f4e4bf50..afa597f1f23c1c 100644 --- a/packages/material-ui-icons/lib/FontDownloadOffOutlined.js +++ b/packages/material-ui-icons/lib/FontDownloadOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.83 2H20c1.1 0 2 .9 2 2v15.17l-2-2V4H6.83l-2-2zm6.09 4-.57 1.52 1.36 1.36.23-.66h.1l.54 1.52 3.04 3.04L13.07 6h-2.15zm9.57 17.31L19.17 22H4c-1.1 0-2-.9-2-2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM17.17 20l-5.07-5.07H9.58L8.49 18H6.41l2.39-6.37L4 6.83V20h13.17z" -}), 'FontDownloadOffOutlined'); \ No newline at end of file +}), 'FontDownloadOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadOffRounded.js b/packages/material-ui-icons/lib/FontDownloadOffRounded.js index 3d1d9a3bf798b8..36077009628600 100644 --- a/packages/material-ui-icons/lib/FontDownloadOffRounded.js +++ b/packages/material-ui-icons/lib/FontDownloadOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.58 9.75-.87-.87.23-.66h.1l.54 1.53zm-2.23-2.23.2-.52c.23-.6.8-1 1.45-1s1.22.4 1.45 1l2.17 5.79L22 19.17V4c0-1.1-.9-2-2-2H4.83l5.52 5.52zm10.84 15.09c-.39.39-1.02.39-1.41 0l-.61-.61H4c-1.1 0-2-.9-2-2V4.83l-.61-.61a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.4.39.4 1.03.01 1.42zm-9.09-7.68-3.3-3.3-1.9 5.07c-.23.63.23 1.3.9 1.3h.01c.41 0 .77-.26.9-.64l.86-2.43h2.53z" -}), 'FontDownloadOffRounded'); \ No newline at end of file +}), 'FontDownloadOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadOffSharp.js b/packages/material-ui-icons/lib/FontDownloadOffSharp.js index fd4b10297516c4..5c5b8ac295e6a8 100644 --- a/packages/material-ui-icons/lib/FontDownloadOffSharp.js +++ b/packages/material-ui-icons/lib/FontDownloadOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.58 9.75-.87-.87.23-.66h.1l.54 1.53zm7.91 13.56L19.17 22H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zm-8.39-8.38-3.3-3.3L6.41 18h2.08l1.09-3.07h2.52zm-1.75-7.41L10.92 6h2.14l2.55 6.79L22 19.17V2H4.83l5.52 5.52z" -}), 'FontDownloadOffSharp'); \ No newline at end of file +}), 'FontDownloadOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadOffTwoTone.js b/packages/material-ui-icons/lib/FontDownloadOffTwoTone.js index 47fb8c98721c4e..1eef631dbe9850 100644 --- a/packages/material-ui-icons/lib/FontDownloadOffTwoTone.js +++ b/packages/material-ui-icons/lib/FontDownloadOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.35 7.52 10.92 6h2.14l2.55 6.79L20 17.17V4H6.83l3.52 3.52zm2.23 2.23-.54-1.52h-.1l-.23.66.87.86zM17.17 20l-5.07-5.07H9.58L8.49 18H6.41l2.39-6.37L4 6.83V20h13.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.83 2H20c1.1 0 2 .9 2 2v15.17l-2-2V4H6.83l-2-2zm6.09 4-.57 1.52 1.36 1.36.23-.66h.1l.54 1.52 3.04 3.04L13.07 6h-2.15zm9.57 17.31L19.17 22H4c-1.1 0-2-.9-2-2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM17.17 20l-5.07-5.07H9.58L8.49 18H6.41l2.39-6.37L4 6.83V20h13.17z" -}, "1")], 'FontDownloadOffTwoTone'); \ No newline at end of file +}, "1")], 'FontDownloadOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadOutlined.js b/packages/material-ui-icons/lib/FontDownloadOutlined.js index c4190317107409..f8ec60bf0cf7e2 100644 --- a/packages/material-ui-icons/lib/FontDownloadOutlined.js +++ b/packages/material-ui-icons/lib/FontDownloadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}), 'FontDownloadOutlined'); \ No newline at end of file +}), 'FontDownloadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadRounded.js b/packages/material-ui-icons/lib/FontDownloadRounded.js index 080698ff752af2..8b16d06d5cb47e 100644 --- a/packages/material-ui-icons/lib/FontDownloadRounded.js +++ b/packages/material-ui-icons/lib/FontDownloadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.93 13.5h4.14L12 7.98 9.93 13.5zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.29 15.88-.9-2.38H9.17l-.89 2.37c-.14.38-.5.63-.91.63-.68 0-1.15-.69-.9-1.32l4.25-10.81c.22-.53.72-.87 1.28-.87s1.06.34 1.27.87l4.25 10.81c.25.63-.22 1.32-.9 1.32-.4 0-.76-.25-.91-.62z" -}), 'FontDownloadRounded'); \ No newline at end of file +}), 'FontDownloadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadSharp.js b/packages/material-ui-icons/lib/FontDownloadSharp.js index 47591124dc7aaa..87ea510e37a502 100644 --- a/packages/material-ui-icons/lib/FontDownloadSharp.js +++ b/packages/material-ui-icons/lib/FontDownloadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.93 13.5h4.14L12 7.98 9.93 13.5zM22 2H2v20h20V2zm-6.05 16.5-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z" -}), 'FontDownloadSharp'); \ No newline at end of file +}), 'FontDownloadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FontDownloadTwoTone.js b/packages/material-ui-icons/lib/FontDownloadTwoTone.js index d8e522a7e049e4..1ab4681755dd8f 100644 --- a/packages/material-ui-icons/lib/FontDownloadTwoTone.js +++ b/packages/material-ui-icons/lib/FontDownloadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zm7.07-14.5h1.86l5.11 13h-2.09l-1.14-3H9.17l-1.12 3H5.96l5.11-13zM12 7.98 9.93 13.5h4.14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "1")], 'FontDownloadTwoTone'); \ No newline at end of file +}, "1")], 'FontDownloadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoodBank.js b/packages/material-ui-icons/lib/FoodBank.js index 2c69a279c56710..3d92691e2c513d 100644 --- a/packages/material-ui-icons/lib/FoodBank.js +++ b/packages/material-ui-icons/lib/FoodBank.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm.5 9.5c0 .83-.67 1.5-1.5 1.5v4h-1v-4c-.83 0-1.5-.67-1.5-1.5v-3h1v3h.5v-3h1v3h.5v-3h1v3zM15 18h-1v-3.5h-1v-3c0-1.1.9-2 2-2V18z" -}), 'FoodBank'); \ No newline at end of file +}), 'FoodBank'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoodBankOutlined.js b/packages/material-ui-icons/lib/FoodBankOutlined.js index 134a57347c11fa..be38a3767defc3 100644 --- a/packages/material-ui-icons/lib/FoodBankOutlined.js +++ b/packages/material-ui-icons/lib/FoodBankOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm-.5 6.5v3H11v-3h-1v3h-.5v-3h-1v3c0 .83.67 1.5 1.5 1.5v4h1v-4c.83 0 1.5-.67 1.5-1.5v-3h-1zm1.5 2v3h1V18h1V9.5c-1.1 0-2 .9-2 2z" -}), 'FoodBankOutlined'); \ No newline at end of file +}), 'FoodBankOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoodBankRounded.js b/packages/material-ui-icons/lib/FoodBankRounded.js index a1855584647be6..5344c55a46158d 100644 --- a/packages/material-ui-icons/lib/FoodBankRounded.js +++ b/packages/material-ui-icons/lib/FoodBankRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.8 3.9-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zm1.7 8.6c0 .83-.67 1.5-1.5 1.5v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V14c-.83 0-1.5-.67-1.5-1.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5h.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5h.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5zm2 5.5c-.28 0-.5-.22-.5-.5v-3h-.5c-.28 0-.5-.22-.5-.5v-2.5c0-.88.57-1.63 1.36-1.89.31-.11.64.14.64.48v7.41c0 .28-.22.5-.5.5z" -}), 'FoodBankRounded'); \ No newline at end of file +}), 'FoodBankRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoodBankSharp.js b/packages/material-ui-icons/lib/FoodBankSharp.js index 79b57298c205ab..2f001b09567858 100644 --- a/packages/material-ui-icons/lib/FoodBankSharp.js +++ b/packages/material-ui-icons/lib/FoodBankSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm.5 9.5c0 .83-.67 1.5-1.5 1.5v4h-1v-4c-.83 0-1.5-.67-1.5-1.5v-3h1v3h.5v-3h1v3h.5v-3h1v3zM15 18h-1v-3.5h-1v-3c0-1.1.9-2 2-2V18z" -}), 'FoodBankSharp'); \ No newline at end of file +}), 'FoodBankSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoodBankTwoTone.js b/packages/material-ui-icons/lib/FoodBankTwoTone.js index 103943d0689e25..4955d1653aa73c 100644 --- a/packages/material-ui-icons/lib/FoodBankTwoTone.js +++ b/packages/material-ui-icons/lib/FoodBankTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.5 6 4.5v9H6v-9l6-4.5m-.5 4v3H11v-3h-1v3h-.5v-3h-1v3c0 .83.67 1.5 1.5 1.5v4h1v-4c.83 0 1.5-.67 1.5-1.5v-3h-1zm1.5 2v3h1V18h1V9.5c-1.1 0-2 .9-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm-.5 6.5v3H11v-3h-1v3h-.5v-3h-1v3c0 .83.67 1.5 1.5 1.5v4h1v-4c.83 0 1.5-.67 1.5-1.5v-3h-1zm1.5 2v3h1V18h1V9.5c-1.1 0-2 .9-2 2z" -}, "1")], 'FoodBankTwoTone'); \ No newline at end of file +}, "1")], 'FoodBankTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignCenter.js b/packages/material-ui-icons/lib/FormatAlignCenter.js index ad4d634f6ce4cc..1ba29ef67ed779 100644 --- a/packages/material-ui-icons/lib/FormatAlignCenter.js +++ b/packages/material-ui-icons/lib/FormatAlignCenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" -}), 'FormatAlignCenter'); \ No newline at end of file +}), 'FormatAlignCenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignCenterOutlined.js b/packages/material-ui-icons/lib/FormatAlignCenterOutlined.js index 05a3276ae6d7ba..4238979b7b5643 100644 --- a/packages/material-ui-icons/lib/FormatAlignCenterOutlined.js +++ b/packages/material-ui-icons/lib/FormatAlignCenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" -}), 'FormatAlignCenterOutlined'); \ No newline at end of file +}), 'FormatAlignCenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignCenterRounded.js b/packages/material-ui-icons/lib/FormatAlignCenterRounded.js index e33461f951f260..5085e8a9c4ab6e 100644 --- a/packages/material-ui-icons/lib/FormatAlignCenterRounded.js +++ b/packages/material-ui-icons/lib/FormatAlignCenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm-3 5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'FormatAlignCenterRounded'); \ No newline at end of file +}), 'FormatAlignCenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignCenterSharp.js b/packages/material-ui-icons/lib/FormatAlignCenterSharp.js index aeca80290a8ac2..c9c3d20b8dc047 100644 --- a/packages/material-ui-icons/lib/FormatAlignCenterSharp.js +++ b/packages/material-ui-icons/lib/FormatAlignCenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" -}), 'FormatAlignCenterSharp'); \ No newline at end of file +}), 'FormatAlignCenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignCenterTwoTone.js b/packages/material-ui-icons/lib/FormatAlignCenterTwoTone.js index 7f0c3fe6cb429a..4a76d36970d342 100644 --- a/packages/material-ui-icons/lib/FormatAlignCenterTwoTone.js +++ b/packages/material-ui-icons/lib/FormatAlignCenterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3zm4 12h10v2H7zm0-8h10v2H7zm-4 4h18v2H3zm0 8h18v2H3z" -}), 'FormatAlignCenterTwoTone'); \ No newline at end of file +}), 'FormatAlignCenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignJustify.js b/packages/material-ui-icons/lib/FormatAlignJustify.js index 549b80eb6bd499..9f1b4c1f8d7891 100644 --- a/packages/material-ui-icons/lib/FormatAlignJustify.js +++ b/packages/material-ui-icons/lib/FormatAlignJustify.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" -}), 'FormatAlignJustify'); \ No newline at end of file +}), 'FormatAlignJustify'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignJustifyOutlined.js b/packages/material-ui-icons/lib/FormatAlignJustifyOutlined.js index 260b6d2643cdb3..5125e4ed55b9ff 100644 --- a/packages/material-ui-icons/lib/FormatAlignJustifyOutlined.js +++ b/packages/material-ui-icons/lib/FormatAlignJustifyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" -}), 'FormatAlignJustifyOutlined'); \ No newline at end of file +}), 'FormatAlignJustifyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignJustifyRounded.js b/packages/material-ui-icons/lib/FormatAlignJustifyRounded.js index ca9e2ae9ea0c76..2aee040c9c9fae 100644 --- a/packages/material-ui-icons/lib/FormatAlignJustifyRounded.js +++ b/packages/material-ui-icons/lib/FormatAlignJustifyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'FormatAlignJustifyRounded'); \ No newline at end of file +}), 'FormatAlignJustifyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignJustifySharp.js b/packages/material-ui-icons/lib/FormatAlignJustifySharp.js index e53e576148fa84..b798ccc593bc01 100644 --- a/packages/material-ui-icons/lib/FormatAlignJustifySharp.js +++ b/packages/material-ui-icons/lib/FormatAlignJustifySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" -}), 'FormatAlignJustifySharp'); \ No newline at end of file +}), 'FormatAlignJustifySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignJustifyTwoTone.js b/packages/material-ui-icons/lib/FormatAlignJustifyTwoTone.js index 0f2fae01fcbbad..971d552741e20a 100644 --- a/packages/material-ui-icons/lib/FormatAlignJustifyTwoTone.js +++ b/packages/material-ui-icons/lib/FormatAlignJustifyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3zm0 8h18v2H3zm0 8h18v2H3zm0-4h18v2H3zm0-8h18v2H3z" -}), 'FormatAlignJustifyTwoTone'); \ No newline at end of file +}), 'FormatAlignJustifyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignLeft.js b/packages/material-ui-icons/lib/FormatAlignLeft.js index bdc2456cb9ee3e..f5933f1cfb06a4 100644 --- a/packages/material-ui-icons/lib/FormatAlignLeft.js +++ b/packages/material-ui-icons/lib/FormatAlignLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" -}), 'FormatAlignLeft'); \ No newline at end of file +}), 'FormatAlignLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignLeftOutlined.js b/packages/material-ui-icons/lib/FormatAlignLeftOutlined.js index f5b3a3841d9b88..31f194af553a51 100644 --- a/packages/material-ui-icons/lib/FormatAlignLeftOutlined.js +++ b/packages/material-ui-icons/lib/FormatAlignLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" -}), 'FormatAlignLeftOutlined'); \ No newline at end of file +}), 'FormatAlignLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignLeftRounded.js b/packages/material-ui-icons/lib/FormatAlignLeftRounded.js index 87d360113befea..34caca7fc6c53e 100644 --- a/packages/material-ui-icons/lib/FormatAlignLeftRounded.js +++ b/packages/material-ui-icons/lib/FormatAlignLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 15H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-8H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM4 13h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'FormatAlignLeftRounded'); \ No newline at end of file +}), 'FormatAlignLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignLeftSharp.js b/packages/material-ui-icons/lib/FormatAlignLeftSharp.js index 2d4c416e1e12b1..edf369e2555c59 100644 --- a/packages/material-ui-icons/lib/FormatAlignLeftSharp.js +++ b/packages/material-ui-icons/lib/FormatAlignLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" -}), 'FormatAlignLeftSharp'); \ No newline at end of file +}), 'FormatAlignLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignLeftTwoTone.js b/packages/material-ui-icons/lib/FormatAlignLeftTwoTone.js index 3d47a866c373ad..d0050e80da9f7c 100644 --- a/packages/material-ui-icons/lib/FormatAlignLeftTwoTone.js +++ b/packages/material-ui-icons/lib/FormatAlignLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18v2H3zM3 7h12v2H3zm0-4h18v2H3zm0 12h12v2H3zm0-4h18v2H3z" -}), 'FormatAlignLeftTwoTone'); \ No newline at end of file +}), 'FormatAlignLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignRight.js b/packages/material-ui-icons/lib/FormatAlignRight.js index 76a17681a7896d..16898ebac027ff 100644 --- a/packages/material-ui-icons/lib/FormatAlignRight.js +++ b/packages/material-ui-icons/lib/FormatAlignRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" -}), 'FormatAlignRight'); \ No newline at end of file +}), 'FormatAlignRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignRightOutlined.js b/packages/material-ui-icons/lib/FormatAlignRightOutlined.js index 64032bae7c9fce..fffa318cfebd4e 100644 --- a/packages/material-ui-icons/lib/FormatAlignRightOutlined.js +++ b/packages/material-ui-icons/lib/FormatAlignRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" -}), 'FormatAlignRightOutlined'); \ No newline at end of file +}), 'FormatAlignRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignRightRounded.js b/packages/material-ui-icons/lib/FormatAlignRightRounded.js index b1b5551934f182..531a160e9f4b92 100644 --- a/packages/material-ui-icons/lib/FormatAlignRightRounded.js +++ b/packages/material-ui-icons/lib/FormatAlignRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zm-6-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'FormatAlignRightRounded'); \ No newline at end of file +}), 'FormatAlignRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignRightSharp.js b/packages/material-ui-icons/lib/FormatAlignRightSharp.js index 5e9ab1775a597f..ca968a2422327e 100644 --- a/packages/material-ui-icons/lib/FormatAlignRightSharp.js +++ b/packages/material-ui-icons/lib/FormatAlignRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" -}), 'FormatAlignRightSharp'); \ No newline at end of file +}), 'FormatAlignRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatAlignRightTwoTone.js b/packages/material-ui-icons/lib/FormatAlignRightTwoTone.js index bdff2eb51633bb..40a158e4377fab 100644 --- a/packages/material-ui-icons/lib/FormatAlignRightTwoTone.js +++ b/packages/material-ui-icons/lib/FormatAlignRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3zm0 16h18v2H3zm0-8h18v2H3zm6 4h12v2H9zm0-8h12v2H9z" -}), 'FormatAlignRightTwoTone'); \ No newline at end of file +}), 'FormatAlignRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatBold.js b/packages/material-ui-icons/lib/FormatBold.js index a057bddd59a705..f8a1f90e5787ea 100644 --- a/packages/material-ui-icons/lib/FormatBold.js +++ b/packages/material-ui-icons/lib/FormatBold.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" -}), 'FormatBold'); \ No newline at end of file +}), 'FormatBold'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatBoldOutlined.js b/packages/material-ui-icons/lib/FormatBoldOutlined.js index 170d270dbb085c..4a2c2f2ec334b8 100644 --- a/packages/material-ui-icons/lib/FormatBoldOutlined.js +++ b/packages/material-ui-icons/lib/FormatBoldOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" -}), 'FormatBoldOutlined'); \ No newline at end of file +}), 'FormatBoldOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatBoldRounded.js b/packages/material-ui-icons/lib/FormatBoldRounded.js index 3d3124b709918c..340c9033700160 100644 --- a/packages/material-ui-icons/lib/FormatBoldRounded.js +++ b/packages/material-ui-icons/lib/FormatBoldRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h5.78c2.07 0 3.96-1.69 3.97-3.77.01-1.53-.85-2.84-2.15-3.44zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" -}), 'FormatBoldRounded'); \ No newline at end of file +}), 'FormatBoldRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatBoldSharp.js b/packages/material-ui-icons/lib/FormatBoldSharp.js index 04fa786e4f6b8e..ab5399f8888f9f 100644 --- a/packages/material-ui-icons/lib/FormatBoldSharp.js +++ b/packages/material-ui-icons/lib/FormatBoldSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" -}), 'FormatBoldSharp'); \ No newline at end of file +}), 'FormatBoldSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatBoldTwoTone.js b/packages/material-ui-icons/lib/FormatBoldTwoTone.js index 841c5dd9852f30..950de763e83b55 100644 --- a/packages/material-ui-icons/lib/FormatBoldTwoTone.js +++ b/packages/material-ui-icons/lib/FormatBoldTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.25 8c0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42.97-.67 1.65-1.77 1.65-2.79zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" -}), 'FormatBoldTwoTone'); \ No newline at end of file +}), 'FormatBoldTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatClear.js b/packages/material-ui-icons/lib/FormatClear.js index 42e4fccff53fef..eed96d577cb63f 100644 --- a/packages/material-ui-icons/lib/FormatClear.js +++ b/packages/material-ui-icons/lib/FormatClear.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.27 5 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21 18 19.73 3.55 5.27 3.27 5zM6 5v.18L8.82 8h2.4l-.72 1.68 2.1 2.1L14.21 8H20V5H6z" -}), 'FormatClear'); \ No newline at end of file +}), 'FormatClear'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatClearOutlined.js b/packages/material-ui-icons/lib/FormatClearOutlined.js index 66105c064b7000..7d2d1c14e46e94 100644 --- a/packages/material-ui-icons/lib/FormatClearOutlined.js +++ b/packages/material-ui-icons/lib/FormatClearOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" -}), 'FormatClearOutlined'); \ No newline at end of file +}), 'FormatClearOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatClearRounded.js b/packages/material-ui-icons/lib/FormatClearRounded.js index 68524d24f5191d..f44bca06292f5e 100644 --- a/packages/material-ui-icons/lib/FormatClearRounded.js +++ b/packages/material-ui-icons/lib/FormatClearRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 8c.83 0 1.5-.67 1.5-1.5S19.33 5 18.5 5H6.39l3 3h1.83l-.55 1.28 2.09 2.09L14.21 8h4.29zm-1.06 10.88L4.12 5.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l6.26 6.26-1.65 3.84c-.39.92.28 1.93 1.27 1.93.55 0 1.05-.33 1.27-.84l1.21-2.83 4.95 4.95c.39.39 1.02.39 1.41 0 .4-.38.4-1.01.01-1.4z" -}), 'FormatClearRounded'); \ No newline at end of file +}), 'FormatClearRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatClearSharp.js b/packages/material-ui-icons/lib/FormatClearSharp.js index 471cf28686959b..a6f8cb7513a363 100644 --- a/packages/material-ui-icons/lib/FormatClearSharp.js +++ b/packages/material-ui-icons/lib/FormatClearSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" -}), 'FormatClearSharp'); \ No newline at end of file +}), 'FormatClearSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatClearTwoTone.js b/packages/material-ui-icons/lib/FormatClearTwoTone.js index a395a597d00d95..642b221b70c373 100644 --- a/packages/material-ui-icons/lib/FormatClearTwoTone.js +++ b/packages/material-ui-icons/lib/FormatClearTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" -}), 'FormatClearTwoTone'); \ No newline at end of file +}), 'FormatClearTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorFill.js b/packages/material-ui-icons/lib/FormatColorFill.js index 5accfd8c40e637..81204ef863982e 100644 --- a/packages/material-ui-icons/lib/FormatColorFill.js +++ b/packages/material-ui-icons/lib/FormatColorFill.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.56 8.94 7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12zM5.21 10 10 5.21 14.79 10H5.21zM19 11.5s-2 2.17-2 3.5c0 1.1.9 2 2 2s2-.9 2-2c0-1.33-2-3.5-2-3.5zM2 20h20v4H2v-4z" -}), 'FormatColorFill'); \ No newline at end of file +}), 'FormatColorFill'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorFillOutlined.js b/packages/material-ui-icons/lib/FormatColorFillOutlined.js index bb8927313cbe17..f0277556c2ba2a 100644 --- a/packages/material-ui-icons/lib/FormatColorFillOutlined.js +++ b/packages/material-ui-icons/lib/FormatColorFillOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.56 8.94 7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12zM5.21 10 10 5.21 14.79 10H5.21zM19 11.5s-2 2.17-2 3.5c0 1.1.9 2 2 2s2-.9 2-2c0-1.33-2-3.5-2-3.5zM2 20h20v4H2v-4z" -}), 'FormatColorFillOutlined'); \ No newline at end of file +}), 'FormatColorFillOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorFillRounded.js b/packages/material-ui-icons/lib/FormatColorFillRounded.js index fd6bdfd181b33e..b6aeb79c7e1ab7 100644 --- a/packages/material-ui-icons/lib/FormatColorFillRounded.js +++ b/packages/material-ui-icons/lib/FormatColorFillRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.94 16.56c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12L8.32.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.68 1.68-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5zM10 5.21 14.79 10H5.21L10 5.21zM19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zm1 3H4c-1.1 0-2 .9-2 2s.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2z" -}), 'FormatColorFillRounded'); \ No newline at end of file +}), 'FormatColorFillRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorFillSharp.js b/packages/material-ui-icons/lib/FormatColorFillSharp.js index cdd3035e995553..44af745cc3aaf1 100644 --- a/packages/material-ui-icons/lib/FormatColorFillSharp.js +++ b/packages/material-ui-icons/lib/FormatColorFillSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 17.62 17.62 10l-10-10-1.41 1.41 2.38 2.38L2.38 10 10 17.62zm0-12.41L14.79 10H5.21L10 5.21zM19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zM2 20h20v4H2z" -}), 'FormatColorFillSharp'); \ No newline at end of file +}), 'FormatColorFillSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorFillTwoTone.js b/packages/material-ui-icons/lib/FormatColorFillTwoTone.js index 2375c636656883..ecece3ecc5bffa 100644 --- a/packages/material-ui-icons/lib/FormatColorFillTwoTone.js +++ b/packages/material-ui-icons/lib/FormatColorFillTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.56 8.94 7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12zM5.21 10 10 5.21 14.79 10H5.21zM19 11.5s-2 2.17-2 3.5c0 1.1.9 2 2 2s2-.9 2-2c0-1.33-2-3.5-2-3.5zM2 20h20v4H2v-4z" -}), 'FormatColorFillTwoTone'); \ No newline at end of file +}), 'FormatColorFillTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorReset.js b/packages/material-ui-icons/lib/FormatColorReset.js index dbe442aeafda50..c36a4ac5b3dca3 100644 --- a/packages/material-ui-icons/lib/FormatColorReset.js +++ b/packages/material-ui-icons/lib/FormatColorReset.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14c0-4-6-10.8-6-10.8s-1.33 1.51-2.73 3.52l8.59 8.59c.09-.42.14-.86.14-1.31zm-.88 3.12L12.5 12.5 5.27 5.27 4 6.55l3.32 3.32C6.55 11.32 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.96-1.5l2.63 2.63 1.27-1.27-2.74-2.74z" -}), 'FormatColorReset'); \ No newline at end of file +}), 'FormatColorReset'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorResetOutlined.js b/packages/material-ui-icons/lib/FormatColorResetOutlined.js index 6dc655ca388462..ab6ba16c602cc7 100644 --- a/packages/material-ui-icons/lib/FormatColorResetOutlined.js +++ b/packages/material-ui-icons/lib/FormatColorResetOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14 4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z" -}), 'FormatColorResetOutlined'); \ No newline at end of file +}), 'FormatColorResetOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorResetRounded.js b/packages/material-ui-icons/lib/FormatColorResetRounded.js index e0c001fd387fb4..d22748fa3ec9bd 100644 --- a/packages/material-ui-icons/lib/FormatColorResetRounded.js +++ b/packages/material-ui-icons/lib/FormatColorResetRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14c0-3.09-3.6-7.88-5.23-9.87-.4-.49-1.15-.49-1.55 0-.46.57-1.08 1.36-1.73 2.27l8.44 8.44c.04-.28.07-.56.07-.84zm1.29 5.01L6.12 5.84a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.61 2.61C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l1.92 1.92c.39.39 1.02.39 1.41 0 .4-.38.4-1.02.01-1.41z" -}), 'FormatColorResetRounded'); \ No newline at end of file +}), 'FormatColorResetRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorResetSharp.js b/packages/material-ui-icons/lib/FormatColorResetSharp.js index 786976e0714392..f7fe5bcaacead6 100644 --- a/packages/material-ui-icons/lib/FormatColorResetSharp.js +++ b/packages/material-ui-icons/lib/FormatColorResetSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14c0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l8.44 8.44c.03-.27.06-.55.06-.83zM5.41 5.14 4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14z" -}), 'FormatColorResetSharp'); \ No newline at end of file +}), 'FormatColorResetSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorResetTwoTone.js b/packages/material-ui-icons/lib/FormatColorResetTwoTone.js index 8353b6d2d8d4ba..0ed96741137ebd 100644 --- a/packages/material-ui-icons/lib/FormatColorResetTwoTone.js +++ b/packages/material-ui-icons/lib/FormatColorResetTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.93 7.83 4.77 4.77c-.62-1.81-2.17-4.24-3.71-6.24-.35.47-.71.96-1.06 1.47zM12 18c.96 0 1.83-.36 2.53-.92l-5.72-5.72C8.32 12.38 8 13.31 8 14c0 2.21 1.79 4 4 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14 4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z" -}, "1")], 'FormatColorResetTwoTone'); \ No newline at end of file +}, "1")], 'FormatColorResetTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorText.js b/packages/material-ui-icons/lib/FormatColorText.js index 61059e9842c622..f8c8b33045314a 100644 --- a/packages/material-ui-icons/lib/FormatColorText.js +++ b/packages/material-ui-icons/lib/FormatColorText.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" -}), 'FormatColorText'); \ No newline at end of file +}), 'FormatColorText'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorTextOutlined.js b/packages/material-ui-icons/lib/FormatColorTextOutlined.js index c3cffefc11b862..80e2aa12eda3f5 100644 --- a/packages/material-ui-icons/lib/FormatColorTextOutlined.js +++ b/packages/material-ui-icons/lib/FormatColorTextOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" -}), 'FormatColorTextOutlined'); \ No newline at end of file +}), 'FormatColorTextOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorTextRounded.js b/packages/material-ui-icons/lib/FormatColorTextRounded.js index 2ac3b312122aef..80f5af3be9d7fe 100644 --- a/packages/material-ui-icons/lib/FormatColorTextRounded.js +++ b/packages/material-ui-icons/lib/FormatColorTextRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 20H4c-1.1 0-2 .9-2 2s.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2zM7.11 17c.48 0 .91-.3 1.06-.75l1.01-2.83h5.65l.99 2.82c.16.46.59.76 1.07.76.79 0 1.33-.79 1.05-1.52L13.69 4.17C13.43 3.47 12.75 3 12 3s-1.43.47-1.69 1.17L6.06 15.48c-.28.73.27 1.52 1.05 1.52zm4.83-11.4h.12l2.03 5.79H9.91l2.03-5.79z" -}), 'FormatColorTextRounded'); \ No newline at end of file +}), 'FormatColorTextRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorTextSharp.js b/packages/material-ui-icons/lib/FormatColorTextSharp.js index 3847cd4d6b1789..c843f1f56c7061 100644 --- a/packages/material-ui-icons/lib/FormatColorTextSharp.js +++ b/packages/material-ui-icons/lib/FormatColorTextSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" -}), 'FormatColorTextSharp'); \ No newline at end of file +}), 'FormatColorTextSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatColorTextTwoTone.js b/packages/material-ui-icons/lib/FormatColorTextTwoTone.js index 54b099a1f4492d..2ad49b58d56c63 100644 --- a/packages/material-ui-icons/lib/FormatColorTextTwoTone.js +++ b/packages/material-ui-icons/lib/FormatColorTextTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" -}), 'FormatColorTextTwoTone'); \ No newline at end of file +}), 'FormatColorTextTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentDecrease.js b/packages/material-ui-icons/lib/FormatIndentDecrease.js index 9511d97211de13..d328da196ad34f 100644 --- a/packages/material-ui-icons/lib/FormatIndentDecrease.js +++ b/packages/material-ui-icons/lib/FormatIndentDecrease.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h10v-2H11v2zm-8-5 4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" -}), 'FormatIndentDecrease'); \ No newline at end of file +}), 'FormatIndentDecrease'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentDecreaseOutlined.js b/packages/material-ui-icons/lib/FormatIndentDecreaseOutlined.js index b0b25059afe4bf..8d0a33eb1a208f 100644 --- a/packages/material-ui-icons/lib/FormatIndentDecreaseOutlined.js +++ b/packages/material-ui-icons/lib/FormatIndentDecreaseOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h10v-2H11v2zm-8-5 4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" -}), 'FormatIndentDecreaseOutlined'); \ No newline at end of file +}), 'FormatIndentDecreaseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentDecreaseRounded.js b/packages/material-ui-icons/lib/FormatIndentDecreaseRounded.js index 719d7638d110e4..07e9aad43791b6 100644 --- a/packages/material-ui-icons/lib/FormatIndentDecreaseRounded.js +++ b/packages/material-ui-icons/lib/FormatIndentDecreaseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm-8.65-4.65 2.79 2.79c.32.32.86.1.86-.35V9.21c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.19-.2.51-.01.7zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm9 5h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'FormatIndentDecreaseRounded'); \ No newline at end of file +}), 'FormatIndentDecreaseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentDecreaseSharp.js b/packages/material-ui-icons/lib/FormatIndentDecreaseSharp.js index bed9c0a6156b6e..668d74354b0b2f 100644 --- a/packages/material-ui-icons/lib/FormatIndentDecreaseSharp.js +++ b/packages/material-ui-icons/lib/FormatIndentDecreaseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h10v-2H11v2zm-8-5 4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" -}), 'FormatIndentDecreaseSharp'); \ No newline at end of file +}), 'FormatIndentDecreaseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentDecreaseTwoTone.js b/packages/material-ui-icons/lib/FormatIndentDecreaseTwoTone.js index ecde35eae2025b..ab45fd926afe5e 100644 --- a/packages/material-ui-icons/lib/FormatIndentDecreaseTwoTone.js +++ b/packages/material-ui-icons/lib/FormatIndentDecreaseTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16V8l-4 4zm4-9h10v2H11zm0 4h10v2H11zm0 4h10v2H11zm-8 4h18v2H3zM3 3h18v2H3z" -}), 'FormatIndentDecreaseTwoTone'); \ No newline at end of file +}), 'FormatIndentDecreaseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentIncrease.js b/packages/material-ui-icons/lib/FormatIndentIncrease.js index e80857cef4d37c..3c8e5a9a40ab83 100644 --- a/packages/material-ui-icons/lib/FormatIndentIncrease.js +++ b/packages/material-ui-icons/lib/FormatIndentIncrease.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" -}), 'FormatIndentIncrease'); \ No newline at end of file +}), 'FormatIndentIncrease'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentIncreaseOutlined.js b/packages/material-ui-icons/lib/FormatIndentIncreaseOutlined.js index 50c4c688953774..a7ce9549a786d8 100644 --- a/packages/material-ui-icons/lib/FormatIndentIncreaseOutlined.js +++ b/packages/material-ui-icons/lib/FormatIndentIncreaseOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" -}), 'FormatIndentIncreaseOutlined'); \ No newline at end of file +}), 'FormatIndentIncreaseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentIncreaseRounded.js b/packages/material-ui-icons/lib/FormatIndentIncreaseRounded.js index 6e47c684975213..498e704c420da9 100644 --- a/packages/material-ui-icons/lib/FormatIndentIncreaseRounded.js +++ b/packages/material-ui-icons/lib/FormatIndentIncreaseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 9.21v5.59c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.8c-.31-.31-.85-.09-.85.36zM12 17h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm9 5h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'FormatIndentIncreaseRounded'); \ No newline at end of file +}), 'FormatIndentIncreaseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentIncreaseSharp.js b/packages/material-ui-icons/lib/FormatIndentIncreaseSharp.js index 80030edffebc43..4656e8c2220b7b 100644 --- a/packages/material-ui-icons/lib/FormatIndentIncreaseSharp.js +++ b/packages/material-ui-icons/lib/FormatIndentIncreaseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" -}), 'FormatIndentIncreaseSharp'); \ No newline at end of file +}), 'FormatIndentIncreaseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatIndentIncreaseTwoTone.js b/packages/material-ui-icons/lib/FormatIndentIncreaseTwoTone.js index d84eaa251ea5b6..429aa156a11698 100644 --- a/packages/material-ui-icons/lib/FormatIndentIncreaseTwoTone.js +++ b/packages/material-ui-icons/lib/FormatIndentIncreaseTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18v2H3zM3 3h18v2H3zm8 4h10v2H11zM3 8v8l4-4zm8 3h10v2H11zm0 4h10v2H11z" -}), 'FormatIndentIncreaseTwoTone'); \ No newline at end of file +}), 'FormatIndentIncreaseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatItalic.js b/packages/material-ui-icons/lib/FormatItalic.js index cc9e3ffcacea40..48a2a36031165e 100644 --- a/packages/material-ui-icons/lib/FormatItalic.js +++ b/packages/material-ui-icons/lib/FormatItalic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z" -}), 'FormatItalic'); \ No newline at end of file +}), 'FormatItalic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatItalicOutlined.js b/packages/material-ui-icons/lib/FormatItalicOutlined.js index 5f2a0d1acb2a46..b4474ff44e09d7 100644 --- a/packages/material-ui-icons/lib/FormatItalicOutlined.js +++ b/packages/material-ui-icons/lib/FormatItalicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z" -}), 'FormatItalicOutlined'); \ No newline at end of file +}), 'FormatItalicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatItalicRounded.js b/packages/material-ui-icons/lib/FormatItalicRounded.js index 00fe951b341f5c..824050a6c3d0cf 100644 --- a/packages/material-ui-icons/lib/FormatItalicRounded.js +++ b/packages/material-ui-icons/lib/FormatItalicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5.5c0 .83.67 1.5 1.5 1.5h.71l-3.42 8H7.5c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.71l3.42-8h1.29c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4h-5c-.83 0-1.5.67-1.5 1.5z" -}), 'FormatItalicRounded'); \ No newline at end of file +}), 'FormatItalicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatItalicSharp.js b/packages/material-ui-icons/lib/FormatItalicSharp.js index 99d060d0678bdc..faa5b4c5176430 100644 --- a/packages/material-ui-icons/lib/FormatItalicSharp.js +++ b/packages/material-ui-icons/lib/FormatItalicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z" -}), 'FormatItalicSharp'); \ No newline at end of file +}), 'FormatItalicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatItalicTwoTone.js b/packages/material-ui-icons/lib/FormatItalicTwoTone.js index f8a87341365eb9..e1151b47fd7127 100644 --- a/packages/material-ui-icons/lib/FormatItalicTwoTone.js +++ b/packages/material-ui-icons/lib/FormatItalicTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 15v3h8v-3h-2.21l3.42-8H18V4h-8v3h2.21l-3.42 8z" -}), 'FormatItalicTwoTone'); \ No newline at end of file +}), 'FormatItalicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatLineSpacing.js b/packages/material-ui-icons/lib/FormatLineSpacing.js index 42045e9805c43d..1c50235430774c 100644 --- a/packages/material-ui-icons/lib/FormatLineSpacing.js +++ b/packages/material-ui-icons/lib/FormatLineSpacing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" -}), 'FormatLineSpacing'); \ No newline at end of file +}), 'FormatLineSpacing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatLineSpacingOutlined.js b/packages/material-ui-icons/lib/FormatLineSpacingOutlined.js index d4bd6130c17d1f..5b6a00dd9e56d6 100644 --- a/packages/material-ui-icons/lib/FormatLineSpacingOutlined.js +++ b/packages/material-ui-icons/lib/FormatLineSpacingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" -}), 'FormatLineSpacingOutlined'); \ No newline at end of file +}), 'FormatLineSpacingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatLineSpacingRounded.js b/packages/material-ui-icons/lib/FormatLineSpacingRounded.js index 180fda9d9af644..21315a0fed103d 100644 --- a/packages/material-ui-icons/lib/FormatLineSpacingRounded.js +++ b/packages/material-ui-icons/lib/FormatLineSpacingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.29 7c.45 0 .67-.54.35-.85l-2.29-2.3c-.2-.2-.51-.2-.71 0l-2.29 2.3c-.31.31-.09.85.36.85H4v10H2.71c-.45 0-.67.54-.35.85l2.29 2.29c.2.2.51.2.71 0l2.29-2.29c.31-.31.09-.85-.36-.85H6V7h1.29zM11 7h10c.55 0 1-.45 1-1s-.45-1-1-1H11c-.55 0-1 .45-1 1s.45 1 1 1zm10 10H11c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H11c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'FormatLineSpacingRounded'); \ No newline at end of file +}), 'FormatLineSpacingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatLineSpacingSharp.js b/packages/material-ui-icons/lib/FormatLineSpacingSharp.js index 511e4cd66de004..a700c0b4f5c233 100644 --- a/packages/material-ui-icons/lib/FormatLineSpacingSharp.js +++ b/packages/material-ui-icons/lib/FormatLineSpacingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" -}), 'FormatLineSpacingSharp'); \ No newline at end of file +}), 'FormatLineSpacingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatLineSpacingTwoTone.js b/packages/material-ui-icons/lib/FormatLineSpacingTwoTone.js index 5fd208fb20079a..a67332538bd5fb 100644 --- a/packages/material-ui-icons/lib/FormatLineSpacingTwoTone.js +++ b/packages/material-ui-icons/lib/FormatLineSpacingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5h12v2H10zm0 12h12v2H10zm-8.5 0L5 20.5 8.5 17H6V7h2.5L5 3.5 1.5 7H4v10zm8.5-6h12v2H10z" -}), 'FormatLineSpacingTwoTone'); \ No newline at end of file +}), 'FormatLineSpacingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListBulleted.js b/packages/material-ui-icons/lib/FormatListBulleted.js index ad53ead3e9dc49..353f0edfeae31d 100644 --- a/packages/material-ui-icons/lib/FormatListBulleted.js +++ b/packages/material-ui-icons/lib/FormatListBulleted.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" -}), 'FormatListBulleted'); \ No newline at end of file +}), 'FormatListBulleted'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListBulletedOutlined.js b/packages/material-ui-icons/lib/FormatListBulletedOutlined.js index 58c56c62b37c2e..412cb71b520790 100644 --- a/packages/material-ui-icons/lib/FormatListBulletedOutlined.js +++ b/packages/material-ui-icons/lib/FormatListBulletedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" -}), 'FormatListBulletedOutlined'); \ No newline at end of file +}), 'FormatListBulletedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListBulletedRounded.js b/packages/material-ui-icons/lib/FormatListBulletedRounded.js index 30e85fe6dc6a29..04b34c1b20184c 100644 --- a/packages/material-ui-icons/lib/FormatListBulletedRounded.js +++ b/packages/material-ui-icons/lib/FormatListBulletedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM8 19h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0-6h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z" -}), 'FormatListBulletedRounded'); \ No newline at end of file +}), 'FormatListBulletedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListBulletedSharp.js b/packages/material-ui-icons/lib/FormatListBulletedSharp.js index 31f09c3a6f28e4..95886c72845e3e 100644 --- a/packages/material-ui-icons/lib/FormatListBulletedSharp.js +++ b/packages/material-ui-icons/lib/FormatListBulletedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" -}), 'FormatListBulletedSharp'); \ No newline at end of file +}), 'FormatListBulletedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListBulletedTwoTone.js b/packages/material-ui-icons/lib/FormatListBulletedTwoTone.js index dc196465d52c7e..262fa0e01d69e4 100644 --- a/packages/material-ui-icons/lib/FormatListBulletedTwoTone.js +++ b/packages/material-ui-icons/lib/FormatListBulletedTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h14v2H7z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "6", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h14v2H7zm0 6h14v2H7zm-3 2.5c.82 0 1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5-1.5.68-1.5 1.5.68 1.5 1.5 1.5z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "12", r: "1.5" -}, "3")], 'FormatListBulletedTwoTone'); \ No newline at end of file +}, "3")], 'FormatListBulletedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumbered.js b/packages/material-ui-icons/lib/FormatListNumbered.js index b2158ac23c94ca..fbad8e5ec24cfe 100644 --- a/packages/material-ui-icons/lib/FormatListNumbered.js +++ b/packages/material-ui-icons/lib/FormatListNumbered.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" -}), 'FormatListNumbered'); \ No newline at end of file +}), 'FormatListNumbered'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedOutlined.js b/packages/material-ui-icons/lib/FormatListNumberedOutlined.js index d43686806ed803..24e9c5ef126b4a 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedOutlined.js +++ b/packages/material-ui-icons/lib/FormatListNumberedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" -}), 'FormatListNumberedOutlined'); \ No newline at end of file +}), 'FormatListNumberedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedRounded.js b/packages/material-ui-icons/lib/FormatListNumberedRounded.js index 3420a65fb5852d..eddc85c9adbcc5 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedRounded.js +++ b/packages/material-ui-icons/lib/FormatListNumberedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 7h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm12 10H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM4.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5H2.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-2-11H3v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2 5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96c-.08.09-.12.21-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H3.2l1.68-1.96c.08-.09.12-.21.12-.32v-.22c0-.28-.22-.5-.5-.5z" -}), 'FormatListNumberedRounded'); \ No newline at end of file +}), 'FormatListNumberedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedRtl.js b/packages/material-ui-icons/lib/FormatListNumberedRtl.js index 79afe88424588d..85a852be73efd2 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedRtl.js +++ b/packages/material-ui-icons/lib/FormatListNumberedRtl.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm1-9h1V4h-2v1h1zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zM2 5h14v2H2zm0 12h14v2H2zm0-6h14v2H2z" -}), 'FormatListNumberedRtl'); \ No newline at end of file +}), 'FormatListNumberedRtl'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedRtlOutlined.js b/packages/material-ui-icons/lib/FormatListNumberedRtlOutlined.js index c5497648d9a2f9..77eb7529013ab2 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedRtlOutlined.js +++ b/packages/material-ui-icons/lib/FormatListNumberedRtlOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z" -}), 'FormatListNumberedRtlOutlined'); \ No newline at end of file +}), 'FormatListNumberedRtlOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedRtlRounded.js b/packages/material-ui-icons/lib/FormatListNumberedRtlRounded.js index 4428848aca44e9..ffdd64a1fdf7f9 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedRtlRounded.js +++ b/packages/material-ui-icons/lib/FormatListNumberedRtlRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H20v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v.5h-1.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-2-11h.5v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2.5 5.72v-.22c0-.28-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96c-.08.09-.12.21-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.3l1.68-1.96c.08-.09.12-.21.12-.32zM15 5H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 12H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'FormatListNumberedRtlRounded'); \ No newline at end of file +}), 'FormatListNumberedRtlRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedRtlSharp.js b/packages/material-ui-icons/lib/FormatListNumberedRtlSharp.js index fa98ae4e7ac240..7f0db7a70c2ab2 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedRtlSharp.js +++ b/packages/material-ui-icons/lib/FormatListNumberedRtlSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z" -}), 'FormatListNumberedRtlSharp'); \ No newline at end of file +}), 'FormatListNumberedRtlSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedRtlTwoTone.js b/packages/material-ui-icons/lib/FormatListNumberedRtlTwoTone.js index d49577f832b9c8..c135ed721b53a7 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedRtlTwoTone.js +++ b/packages/material-ui-icons/lib/FormatListNumberedRtlTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 11h14v2H2zm16 6h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm0-6h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zm2-3V4h-2v1h1v3zM2 17h14v2H2zM2 5h14v2H2z" -}), 'FormatListNumberedRtlTwoTone'); \ No newline at end of file +}), 'FormatListNumberedRtlTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedSharp.js b/packages/material-ui-icons/lib/FormatListNumberedSharp.js index c2586f940b1535..73ebbc18013b01 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedSharp.js +++ b/packages/material-ui-icons/lib/FormatListNumberedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" -}), 'FormatListNumberedSharp'); \ No newline at end of file +}), 'FormatListNumberedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatListNumberedTwoTone.js b/packages/material-ui-icons/lib/FormatListNumberedTwoTone.js index 073611cbf2e14d..e977994834cc6e 100644 --- a/packages/material-ui-icons/lib/FormatListNumberedTwoTone.js +++ b/packages/material-ui-icons/lib/FormatListNumberedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13H3.2L5 10.9V10H2v1h1.8L2 13.1v.9h3zm2-8h14v2H7zM5 16H2v1h2v.5H3v1h1v.5H2v1h3zm2 1h14v2H7zM3 8h1V4H2v1h1zm4 3h14v2H7z" -}), 'FormatListNumberedTwoTone'); \ No newline at end of file +}), 'FormatListNumberedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatPaint.js b/packages/material-ui-icons/lib/FormatPaint.js index fddf5e939794be..e3ebb85fff8af8 100644 --- a/packages/material-ui-icons/lib/FormatPaint.js +++ b/packages/material-ui-icons/lib/FormatPaint.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3z" -}), 'FormatPaint'); \ No newline at end of file +}), 'FormatPaint'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatPaintOutlined.js b/packages/material-ui-icons/lib/FormatPaintOutlined.js index f0bbc995f300fa..9a5b931083dcb7 100644 --- a/packages/material-ui-icons/lib/FormatPaintOutlined.js +++ b/packages/material-ui-icons/lib/FormatPaintOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z" -}), 'FormatPaintOutlined'); \ No newline at end of file +}), 'FormatPaintOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatPaintRounded.js b/packages/material-ui-icons/lib/FormatPaintRounded.js index ad024fff53a016..8c70829514fc03 100644 --- a/packages/material-ui-icons/lib/FormatPaintRounded.js +++ b/packages/material-ui-icons/lib/FormatPaintRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4h-9c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h7c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2z" -}), 'FormatPaintRounded'); \ No newline at end of file +}), 'FormatPaintRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatPaintSharp.js b/packages/material-ui-icons/lib/FormatPaintSharp.js index d453ce1f309c75..3746708af0f787 100644 --- a/packages/material-ui-icons/lib/FormatPaintSharp.js +++ b/packages/material-ui-icons/lib/FormatPaintSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4V2H4v6h14V6h1v4H9v12h4V12h8V4h-3z" -}), 'FormatPaintSharp'); \ No newline at end of file +}), 'FormatPaintSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatPaintTwoTone.js b/packages/material-ui-icons/lib/FormatPaintTwoTone.js index 8abbb29ebb1190..bf9b650b601fbc 100644 --- a/packages/material-ui-icons/lib/FormatPaintTwoTone.js +++ b/packages/material-ui-icons/lib/FormatPaintTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4h10v2H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3V3c0-.55-.45-1-1-1zm-1 4H6V4h10v2z" -}, "1")], 'FormatPaintTwoTone'); \ No newline at end of file +}, "1")], 'FormatPaintTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatQuote.js b/packages/material-ui-icons/lib/FormatQuote.js index ab7daa95f9fccb..f27543c569f0ba 100644 --- a/packages/material-ui-icons/lib/FormatQuote.js +++ b/packages/material-ui-icons/lib/FormatQuote.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z" -}), 'FormatQuote'); \ No newline at end of file +}), 'FormatQuote'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatQuoteOutlined.js b/packages/material-ui-icons/lib/FormatQuoteOutlined.js index c1f2d695432ed5..d08e23a7ffdae9 100644 --- a/packages/material-ui-icons/lib/FormatQuoteOutlined.js +++ b/packages/material-ui-icons/lib/FormatQuoteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z" -}), 'FormatQuoteOutlined'); \ No newline at end of file +}), 'FormatQuoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatQuoteRounded.js b/packages/material-ui-icons/lib/FormatQuoteRounded.js index 7f6df46832d5f5..d75189b3041c3a 100644 --- a/packages/material-ui-icons/lib/FormatQuoteRounded.js +++ b/packages/material-ui-icons/lib/FormatQuoteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.17 17c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94zm10 0c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94z" -}), 'FormatQuoteRounded'); \ No newline at end of file +}), 'FormatQuoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatQuoteSharp.js b/packages/material-ui-icons/lib/FormatQuoteSharp.js index 933c0023f9f3ba..b7406804f1656d 100644 --- a/packages/material-ui-icons/lib/FormatQuoteSharp.js +++ b/packages/material-ui-icons/lib/FormatQuoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17h3l2-4V7H4v6h3l-2 4zm10 0h3l2-4V7h-6v6h3l-2 4z" -}), 'FormatQuoteSharp'); \ No newline at end of file +}), 'FormatQuoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatQuoteTwoTone.js b/packages/material-ui-icons/lib/FormatQuoteTwoTone.js index 1d850e70edf111..68170c3173c391 100644 --- a/packages/material-ui-icons/lib/FormatQuoteTwoTone.js +++ b/packages/material-ui-icons/lib/FormatQuoteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.62 16h.76L19 12.76V8h-4v4h3.62zm-10 0h.76L9 12.76V8H5v4h3.62z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.62 18 21 13.24V6h-8v8h2.38l-2 4h5.24zM15 12V8h4v4.76L17.38 16h-.76l2-4H15zM3.38 18h5.24L11 13.24V6H3v8h2.38l-2 4zM5 12V8h4v4.76L7.38 16h-.76l2-4H5z" -}, "1")], 'FormatQuoteTwoTone'); \ No newline at end of file +}, "1")], 'FormatQuoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatShapes.js b/packages/material-ui-icons/lib/FormatShapes.js index 2dd002972a16b1..e77fddb32995ca 100644 --- a/packages/material-ui-icons/lib/FormatShapes.js +++ b/packages/material-ui-icons/lib/FormatShapes.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" -}), 'FormatShapes'); \ No newline at end of file +}), 'FormatShapes'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatShapesOutlined.js b/packages/material-ui-icons/lib/FormatShapesOutlined.js index eff6fce381aa6e..d787b61e92ce7c 100644 --- a/packages/material-ui-icons/lib/FormatShapesOutlined.js +++ b/packages/material-ui-icons/lib/FormatShapesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" -}), 'FormatShapesOutlined'); \ No newline at end of file +}), 'FormatShapesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatShapesRounded.js b/packages/material-ui-icons/lib/FormatShapesRounded.js index cb6212bde43c36..ab48903d34854e 100644 --- a/packages/material-ui-icons/lib/FormatShapesRounded.js +++ b/packages/material-ui-icons/lib/FormatShapesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 6V2c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v1H7V2c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h1v10H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1h10v1c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-1V7h1c.55 0 1-.45 1-1zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-1c0-.55-.45-1-1-1H5V7h1c.55 0 1-.45 1-1V5h10v1c0 .55.45 1 1 1h1v10h-1c-.55 0-1 .45-1 1v1zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-6.06 2.65c-.15-.39-.53-.65-.95-.65-.42 0-.8.26-.94.65l-2.77 7.33c-.19.49.17 1.02.7 1.02.32 0 .6-.2.71-.5l.55-1.5h3.49l.56 1.51c.11.29.39.49.71.49h.01c.53 0 .89-.53.71-1.02l-2.78-7.33zm-2.25 5.09L12 8.91l1.3 3.83h-2.61z" -}), 'FormatShapesRounded'); \ No newline at end of file +}), 'FormatShapesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatShapesSharp.js b/packages/material-ui-icons/lib/FormatShapesSharp.js index d9ee63d95e2d93..0f92b520860232 100644 --- a/packages/material-ui-icons/lib/FormatShapesSharp.js +++ b/packages/material-ui-icons/lib/FormatShapesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" -}), 'FormatShapesSharp'); \ No newline at end of file +}), 'FormatShapesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatShapesTwoTone.js b/packages/material-ui-icons/lib/FormatShapesTwoTone.js index 61558eac1ba296..bb5d43a995579a 100644 --- a/packages/material-ui-icons/lib/FormatShapesTwoTone.js +++ b/packages/material-ui-icons/lib/FormatShapesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h2v2H3zm16 16h2v2h-2zm0-16h2v2h-2zM3 19h2v2H3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.29 7-3.4 9h1.62l.73-2h3.49l.74 2h1.63l-3.41-9h-1.4zm-.6 5.74L12 8.91l1.3 3.83h-2.61zM17 3H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2V1h-6v2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm16 0h-2v-2h2v2zM19 3h2v2h-2V3zm0 14h-2v2H7v-2H5V7h2V5h10v2h2v10z" -}, "1")], 'FormatShapesTwoTone'); \ No newline at end of file +}, "1")], 'FormatShapesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatSize.js b/packages/material-ui-icons/lib/FormatSize.js index b3cce7fc7e1358..026e19542f9699 100644 --- a/packages/material-ui-icons/lib/FormatSize.js +++ b/packages/material-ui-icons/lib/FormatSize.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" -}), 'FormatSize'); \ No newline at end of file +}), 'FormatSize'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatSizeOutlined.js b/packages/material-ui-icons/lib/FormatSizeOutlined.js index 49a3a350642f95..eafc5d3298cd31 100644 --- a/packages/material-ui-icons/lib/FormatSizeOutlined.js +++ b/packages/material-ui-icons/lib/FormatSizeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" -}), 'FormatSizeOutlined'); \ No newline at end of file +}), 'FormatSizeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatSizeRounded.js b/packages/material-ui-icons/lib/FormatSizeRounded.js index e4a255ed560876..844af12c34ae10 100644 --- a/packages/material-ui-icons/lib/FormatSizeRounded.js +++ b/packages/material-ui-icons/lib/FormatSizeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5.5c0 .83.67 1.5 1.5 1.5H14v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h3.5c.83 0 1.5-.67 1.5-1.5S21.33 4 20.5 4h-10C9.67 4 9 4.67 9 5.5zM4.5 12H6v5.5c0 .83.67 1.5 1.5 1.5S9 18.33 9 17.5V12h1.5c.83 0 1.5-.67 1.5-1.5S11.33 9 10.5 9h-6C3.67 9 3 9.67 3 10.5S3.67 12 4.5 12z" -}), 'FormatSizeRounded'); \ No newline at end of file +}), 'FormatSizeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatSizeSharp.js b/packages/material-ui-icons/lib/FormatSizeSharp.js index c04a4c2b5c4bd1..5b90931eb711fb 100644 --- a/packages/material-ui-icons/lib/FormatSizeSharp.js +++ b/packages/material-ui-icons/lib/FormatSizeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" -}), 'FormatSizeSharp'); \ No newline at end of file +}), 'FormatSizeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatSizeTwoTone.js b/packages/material-ui-icons/lib/FormatSizeTwoTone.js index c0e93451fc768a..cabbe8571e9ef3 100644 --- a/packages/material-ui-icons/lib/FormatSizeTwoTone.js +++ b/packages/material-ui-icons/lib/FormatSizeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12h3v7h3v-7h3V9H3zm6-5h5v12h3V7h5V4H9z" -}), 'FormatSizeTwoTone'); \ No newline at end of file +}), 'FormatSizeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatStrikethrough.js b/packages/material-ui-icons/lib/FormatStrikethrough.js index 837f6560562d15..e8dd51f8d896a0 100644 --- a/packages/material-ui-icons/lib/FormatStrikethrough.js +++ b/packages/material-ui-icons/lib/FormatStrikethrough.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" -}), 'FormatStrikethrough'); \ No newline at end of file +}), 'FormatStrikethrough'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatStrikethroughOutlined.js b/packages/material-ui-icons/lib/FormatStrikethroughOutlined.js index 932dcc9da910b0..3e9ba46d2a241f 100644 --- a/packages/material-ui-icons/lib/FormatStrikethroughOutlined.js +++ b/packages/material-ui-icons/lib/FormatStrikethroughOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" -}), 'FormatStrikethroughOutlined'); \ No newline at end of file +}), 'FormatStrikethroughOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatStrikethroughRounded.js b/packages/material-ui-icons/lib/FormatStrikethroughRounded.js index 7b87a939df64e9..e47b63b507431b 100644 --- a/packages/material-ui-icons/lib/FormatStrikethroughRounded.js +++ b/packages/material-ui-icons/lib/FormatStrikethroughRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c1.1 0 2-.9 2-2v-1h-4v1c0 1.1.9 2 2 2zM5 5.5C5 6.33 5.67 7 6.5 7H10v3h4V7h3.5c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5zM4 14h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'FormatStrikethroughRounded'); \ No newline at end of file +}), 'FormatStrikethroughRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatStrikethroughSharp.js b/packages/material-ui-icons/lib/FormatStrikethroughSharp.js index 2c992f20fa0e45..55101ea15bc7fa 100644 --- a/packages/material-ui-icons/lib/FormatStrikethroughSharp.js +++ b/packages/material-ui-icons/lib/FormatStrikethroughSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" -}), 'FormatStrikethroughSharp'); \ No newline at end of file +}), 'FormatStrikethroughSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatStrikethroughTwoTone.js b/packages/material-ui-icons/lib/FormatStrikethroughTwoTone.js index e58f4d198bf818..b98eb76a010db1 100644 --- a/packages/material-ui-icons/lib/FormatStrikethroughTwoTone.js +++ b/packages/material-ui-icons/lib/FormatStrikethroughTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12h18v2H3zm11-2V7h5V4H5v3h5v3zm-4 6h4v3h-4z" -}), 'FormatStrikethroughTwoTone'); \ No newline at end of file +}), 'FormatStrikethroughTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionLToR.js b/packages/material-ui-icons/lib/FormatTextdirectionLToR.js index 8dab977c2fdfbc..4d45452644d8d3 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionLToR.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionLToR.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8-4-4v3H5v2h12v3l4-4z" -}), 'FormatTextdirectionLToR'); \ No newline at end of file +}), 'FormatTextdirectionLToR'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionLToROutlined.js b/packages/material-ui-icons/lib/FormatTextdirectionLToROutlined.js index c08a79bd40cb56..c3c18f98178ea9 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionLToROutlined.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionLToROutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2H9C6.79 2 5 3.79 5 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zm0 12v3H5v2h12v3l4-4-4-4z" -}), 'FormatTextdirectionLToROutlined'); \ No newline at end of file +}), 'FormatTextdirectionLToROutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionLToRRounded.js b/packages/material-ui-icons/lib/FormatTextdirectionLToRRounded.js index f9a30bca028d9c..afafa7ed4cb299 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionLToRRounded.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionLToRRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 10v4c0 .55.45 1 1 1s1-.45 1-1V4h2v10c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1H9.17C7.08 2 5.22 3.53 5.02 5.61 4.79 7.99 6.66 10 9 10zm11.65 7.65-2.79-2.79c-.32-.32-.86-.1-.86.35V17H6c-.55 0-1 .45-1 1s.45 1 1 1h11v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" -}), 'FormatTextdirectionLToRRounded'); \ No newline at end of file +}), 'FormatTextdirectionLToRRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionLToRSharp.js b/packages/material-ui-icons/lib/FormatTextdirectionLToRSharp.js index f4c20a6ff78390..93343de603f339 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionLToRSharp.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionLToRSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8-4-4v3H5v2h12v3l4-4z" -}), 'FormatTextdirectionLToRSharp'); \ No newline at end of file +}), 'FormatTextdirectionLToRSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionLToRTwoTone.js b/packages/material-ui-icons/lib/FormatTextdirectionLToRTwoTone.js index fdb06eeeaca7bc..3430a36709c358 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionLToRTwoTone.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionLToRTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8V4c-1.1 0-2 .9-2 2s.9 2 2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm0-6v4c-1.1 0-2-.9-2-2s.9-2 2-2zm12 14-4-4v3H5v2h12v3z" -}, "1")], 'FormatTextdirectionLToRTwoTone'); \ No newline at end of file +}, "1")], 'FormatTextdirectionLToRTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionRToL.js b/packages/material-ui-icons/lib/FormatTextdirectionRToL.js index 6dd7ca89cf03fa..031bb77ab584e0 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionRToL.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionRToL.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z" -}), 'FormatTextdirectionRToL'); \ No newline at end of file +}), 'FormatTextdirectionRToL'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionRToLOutlined.js b/packages/material-ui-icons/lib/FormatTextdirectionRToLOutlined.js index 4c45b81b5640c1..e6b40149d30524 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionRToLOutlined.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionRToLOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zM8 14l-4 4 4 4v-3h12v-2H8v-3z" -}), 'FormatTextdirectionRToLOutlined'); \ No newline at end of file +}), 'FormatTextdirectionRToLOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionRToLRounded.js b/packages/material-ui-icons/lib/FormatTextdirectionRToLRounded.js index eb88f5b55d1663..7ea3f28bcdc83a 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionRToLRounded.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionRToLRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v4c0 .55.45 1 1 1s1-.45 1-1V4h2v10c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1h-6.83C8.08 2 6.22 3.53 6.02 5.61 5.79 7.99 7.66 10 10 10zm-2 7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1s-.45-1-1-1H8z" -}), 'FormatTextdirectionRToLRounded'); \ No newline at end of file +}), 'FormatTextdirectionRToLRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionRToLSharp.js b/packages/material-ui-icons/lib/FormatTextdirectionRToLSharp.js index 7e3430c3a19ab7..d50bddb48b960e 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionRToLSharp.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionRToLSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z" -}), 'FormatTextdirectionRToLSharp'); \ No newline at end of file +}), 'FormatTextdirectionRToLSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatTextdirectionRToLTwoTone.js b/packages/material-ui-icons/lib/FormatTextdirectionRToLTwoTone.js index 73eddc60a58e89..fd634f12d3acf5 100644 --- a/packages/material-ui-icons/lib/FormatTextdirectionRToLTwoTone.js +++ b/packages/material-ui-icons/lib/FormatTextdirectionRToLTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 6c0 1.1.9 2 2 2V4c-1.1 0-2 .9-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6c0 2.21 1.79 4 4 4v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6zm4 2c-1.1 0-2-.9-2-2s.9-2 2-2v4zM4 18l4 4v-3h12v-2H8v-3z" -}, "1")], 'FormatTextdirectionRToLTwoTone'); \ No newline at end of file +}, "1")], 'FormatTextdirectionRToLTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatUnderlined.js b/packages/material-ui-icons/lib/FormatUnderlined.js index 3339fde4562cf4..f7997d3ce944f3 100644 --- a/packages/material-ui-icons/lib/FormatUnderlined.js +++ b/packages/material-ui-icons/lib/FormatUnderlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" -}), 'FormatUnderlined'); \ No newline at end of file +}), 'FormatUnderlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatUnderlinedOutlined.js b/packages/material-ui-icons/lib/FormatUnderlinedOutlined.js index f3a1095d8a57ad..f9eb178a090e4e 100644 --- a/packages/material-ui-icons/lib/FormatUnderlinedOutlined.js +++ b/packages/material-ui-icons/lib/FormatUnderlinedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" -}), 'FormatUnderlinedOutlined'); \ No newline at end of file +}), 'FormatUnderlinedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatUnderlinedRounded.js b/packages/material-ui-icons/lib/FormatUnderlinedRounded.js index 9641e94a1b68ec..d952426efcdecf 100644 --- a/packages/material-ui-icons/lib/FormatUnderlinedRounded.js +++ b/packages/material-ui-icons/lib/FormatUnderlinedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.79 16.95c3.03-.39 5.21-3.11 5.21-6.16V4.25C18 3.56 17.44 3 16.75 3s-1.25.56-1.25 1.25v6.65c0 1.67-1.13 3.19-2.77 3.52-2.25.47-4.23-1.25-4.23-3.42V4.25C8.5 3.56 7.94 3 7.25 3S6 3.56 6 4.25V11c0 3.57 3.13 6.42 6.79 5.95zM5 20c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" -}), 'FormatUnderlinedRounded'); \ No newline at end of file +}), 'FormatUnderlinedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatUnderlinedSharp.js b/packages/material-ui-icons/lib/FormatUnderlinedSharp.js index c252124a2343b3..324d63c72a2c4c 100644 --- a/packages/material-ui-icons/lib/FormatUnderlinedSharp.js +++ b/packages/material-ui-icons/lib/FormatUnderlinedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" -}), 'FormatUnderlinedSharp'); \ No newline at end of file +}), 'FormatUnderlinedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FormatUnderlinedTwoTone.js b/packages/material-ui-icons/lib/FormatUnderlinedTwoTone.js index 5fbb9fc4a79233..76d3ccb5149341 100644 --- a/packages/material-ui-icons/lib/FormatUnderlinedTwoTone.js +++ b/packages/material-ui-icons/lib/FormatUnderlinedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v2H5zM6 3v8c0 3.31 2.69 6 6 6s6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6z" -}), 'FormatUnderlinedTwoTone'); \ No newline at end of file +}), 'FormatUnderlinedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forum.js b/packages/material-ui-icons/lib/Forum.js index f4d288a9ae734f..69e7a1b8bc43d2 100644 --- a/packages/material-ui-icons/lib/Forum.js +++ b/packages/material-ui-icons/lib/Forum.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z" -}), 'Forum'); \ No newline at end of file +}), 'Forum'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForumOutlined.js b/packages/material-ui-icons/lib/ForumOutlined.js index 0fa0fe276b6972..e8b69a0611f249 100644 --- a/packages/material-ui-icons/lib/ForumOutlined.js +++ b/packages/material-ui-icons/lib/ForumOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4v7H5.17L4 12.17V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z" -}), 'ForumOutlined'); \ No newline at end of file +}), 'ForumOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForumRounded.js b/packages/material-ui-icons/lib/ForumRounded.js index bac818766e92b4..2c95286aa65be7 100644 --- a/packages/material-ui-icons/lib/ForumRounded.js +++ b/packages/material-ui-icons/lib/ForumRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2zm-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2z" -}), 'ForumRounded'); \ No newline at end of file +}), 'ForumRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForumSharp.js b/packages/material-ui-icons/lib/ForumSharp.js index 3d4df6bdcdb3f5..579613afe5e946 100644 --- a/packages/material-ui-icons/lib/ForumSharp.js +++ b/packages/material-ui-icons/lib/ForumSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z" -}), 'ForumSharp'); \ No newline at end of file +}), 'ForumSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForumTwoTone.js b/packages/material-ui-icons/lib/ForumTwoTone.js index 9844eace154fe3..f56d5f85da059a 100644 --- a/packages/material-ui-icons/lib/ForumTwoTone.js +++ b/packages/material-ui-icons/lib/ForumTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V4H4v8.17L5.17 11H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zm-12-.83V4h11v7H5.17L4 12.17zM22 7c0-.55-.45-1-1-1h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7z" -}, "1")], 'ForumTwoTone'); \ No newline at end of file +}, "1")], 'ForumTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward.js b/packages/material-ui-icons/lib/Forward.js index 67e4347fe2f6a3..db804656df7828 100644 --- a/packages/material-ui-icons/lib/Forward.js +++ b/packages/material-ui-icons/lib/Forward.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8V4l8 8-8 8v-4H4V8z" -}), 'Forward'); \ No newline at end of file +}), 'Forward'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward10.js b/packages/material-ui-icons/lib/Forward10.js index da2b58d663afe4..08be743aa6a352 100644 --- a/packages/material-ui-icons/lib/Forward10.js +++ b/packages/material-ui-icons/lib/Forward10.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.86 15.94v-4.27h-.09L9 12.3v.69l1.01-.31v3.26zm1.39-2.5v.74c0 1.9 1.31 1.82 1.44 1.82.14 0 1.44.09 1.44-1.82v-.74c0-1.9-1.31-1.82-1.44-1.82-.14 0-1.44-.09-1.44 1.82zm2.04-.12v.97c0 .77-.21 1.03-.59 1.03s-.6-.26-.6-1.03v-.97c0-.75.22-1.01.59-1.01.38-.01.6.26.6 1.01z" -}, "1")], 'Forward10'); \ No newline at end of file +}, "1")], 'Forward10'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward10Outlined.js b/packages/material-ui-icons/lib/Forward10Outlined.js index a5016064183057..2388dc8a97da06 100644 --- a/packages/material-ui-icons/lib/Forward10Outlined.js +++ b/packages/material-ui-icons/lib/Forward10Outlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}, "1")], 'Forward10Outlined'); \ No newline at end of file +}, "1")], 'Forward10Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward10Rounded.js b/packages/material-ui-icons/lib/Forward10Rounded.js index 743c31873fbac2..cc4f916dc892e0 100644 --- a/packages/material-ui-icons/lib/Forward10Rounded.js +++ b/packages/material-ui-icons/lib/Forward10Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.32 10.42 8.27 7 12 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71l-3.79-3.79c-.31-.31-.85-.09-.85.36V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-8.02 3v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}), 'Forward10Rounded'); \ No newline at end of file +}), 'Forward10Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward10Sharp.js b/packages/material-ui-icons/lib/Forward10Sharp.js index 5cc9cd77fc4326..3ed22b65f9e83b 100644 --- a/packages/material-ui-icons/lib/Forward10Sharp.js +++ b/packages/material-ui-icons/lib/Forward10Sharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}, "1")], 'Forward10Sharp'); \ No newline at end of file +}, "1")], 'Forward10Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward10TwoTone.js b/packages/material-ui-icons/lib/Forward10TwoTone.js index 12b2e8a385abb2..9fd2fe961fbe61 100644 --- a/packages/material-ui-icons/lib/Forward10TwoTone.js +++ b/packages/material-ui-icons/lib/Forward10TwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}, "1")], 'Forward10TwoTone'); \ No newline at end of file +}, "1")], 'Forward10TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward30.js b/packages/material-ui-icons/lib/Forward30.js index bc893227318ce3..a1c240ef861521 100644 --- a/packages/material-ui-icons/lib/Forward30.js +++ b/packages/material-ui-icons/lib/Forward30.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.06 15.38c-.29 0-.62-.17-.62-.54h-.85c0 .97.9 1.23 1.45 1.23.87 0 1.51-.46 1.51-1.25 0-.66-.45-.9-.71-1 .11-.05.65-.32.65-.92 0-.21-.05-1.22-1.44-1.22-.62 0-1.4.35-1.4 1.16h.85c0-.34.31-.48.57-.48.59 0 .58.5.58.54 0 .52-.41.59-.63.59h-.46v.66h.45c.65 0 .7.42.7.64 0 .32-.21.59-.65.59zm3.79-3.7c-.14 0-1.44-.08-1.44 1.82v.74c0 1.9 1.31 1.82 1.44 1.82.14 0 1.44.09 1.44-1.82v-.74c.01-1.91-1.3-1.82-1.44-1.82zm.6 2.67c0 .77-.21 1.03-.59 1.03s-.6-.26-.6-1.03v-.97c0-.75.22-1.01.59-1.01.38 0 .6.26.6 1.01v.97z" -}, "1")], 'Forward30'); \ No newline at end of file +}, "1")], 'Forward30'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward30Outlined.js b/packages/material-ui-icons/lib/Forward30Outlined.js index abe53b946f0f33..34a4a538cc0c63 100644 --- a/packages/material-ui-icons/lib/Forward30Outlined.js +++ b/packages/material-ui-icons/lib/Forward30Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}), 'Forward30Outlined'); \ No newline at end of file +}), 'Forward30Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward30Rounded.js b/packages/material-ui-icons/lib/Forward30Rounded.js index cf4ccb86fe1340..0e3a446ad333fd 100644 --- a/packages/material-ui-icons/lib/Forward30Rounded.js +++ b/packages/material-ui-icons/lib/Forward30Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.32 10.42 8.27 7 12 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71l-3.79-3.79c-.31-.31-.85-.09-.85.36V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-8.38 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}), 'Forward30Rounded'); \ No newline at end of file +}), 'Forward30Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward30Sharp.js b/packages/material-ui-icons/lib/Forward30Sharp.js index 0e65d163228eca..e1c1aa8e3d0d93 100644 --- a/packages/material-ui-icons/lib/Forward30Sharp.js +++ b/packages/material-ui-icons/lib/Forward30Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}), 'Forward30Sharp'); \ No newline at end of file +}), 'Forward30Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward30TwoTone.js b/packages/material-ui-icons/lib/Forward30TwoTone.js index a807b9fdd70079..37f4795db319aa 100644 --- a/packages/material-ui-icons/lib/Forward30TwoTone.js +++ b/packages/material-ui-icons/lib/Forward30TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" -}), 'Forward30TwoTone'); \ No newline at end of file +}), 'Forward30TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward5.js b/packages/material-ui-icons/lib/Forward5.js index dea66d797120b9..89436098131784 100644 --- a/packages/material-ui-icons/lib/Forward5.js +++ b/packages/material-ui-icons/lib/Forward5.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.03 15.38c-.44 0-.58-.31-.6-.56h-.84c.03.85.79 1.25 1.44 1.25.93 0 1.44-.63 1.44-1.43 0-1.33-.97-1.44-1.3-1.44-.2 0-.43.05-.64.16l.11-.92h1.7v-.71h-2.39l-.25 2.17.67.17c.13-.13.28-.23.57-.23.4 0 .69.23.69.75-.01.05.02.79-.6.79z" -}, "1")], 'Forward5'); \ No newline at end of file +}, "1")], 'Forward5'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward5Outlined.js b/packages/material-ui-icons/lib/Forward5Outlined.js index 1d6c7285be82a7..da4bec2b337163 100644 --- a/packages/material-ui-icons/lib/Forward5Outlined.js +++ b/packages/material-ui-icons/lib/Forward5Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" -}), 'Forward5Outlined'); \ No newline at end of file +}), 'Forward5Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward5Rounded.js b/packages/material-ui-icons/lib/Forward5Rounded.js index 00874aca70f6df..69c217b3660276 100644 --- a/packages/material-ui-icons/lib/Forward5Rounded.js +++ b/packages/material-ui-icons/lib/Forward5Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.87 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.27 10.42 8.22 7 11.95 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71L12.8 1.85c-.31-.31-.85-.09-.85.35V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-6.44 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" -}), 'Forward5Rounded'); \ No newline at end of file +}), 'Forward5Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward5Sharp.js b/packages/material-ui-icons/lib/Forward5Sharp.js index 8ea94c5faa95b2..58f230a771cc24 100644 --- a/packages/material-ui-icons/lib/Forward5Sharp.js +++ b/packages/material-ui-icons/lib/Forward5Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" -}), 'Forward5Sharp'); \ No newline at end of file +}), 'Forward5Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Forward5TwoTone.js b/packages/material-ui-icons/lib/Forward5TwoTone.js index 5a4353031a0aaf..5038bf93637cee 100644 --- a/packages/material-ui-icons/lib/Forward5TwoTone.js +++ b/packages/material-ui-icons/lib/Forward5TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" -}), 'Forward5TwoTone'); \ No newline at end of file +}), 'Forward5TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardOutlined.js b/packages/material-ui-icons/lib/ForwardOutlined.js index 3127f8770dee5a..10a53317de9c42 100644 --- a/packages/material-ui-icons/lib/ForwardOutlined.js +++ b/packages/material-ui-icons/lib/ForwardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8.83 17.17 12 14 15.17V14H6v-4h8V8.83M12 4v4H4v8h8v4l8-8-8-8z" -}), 'ForwardOutlined'); \ No newline at end of file +}), 'ForwardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardRounded.js b/packages/material-ui-icons/lib/ForwardRounded.js index 50b739d433b2bf..17cb72f6d01120 100644 --- a/packages/material-ui-icons/lib/ForwardRounded.js +++ b/packages/material-ui-icons/lib/ForwardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8V6.41c0-.89 1.08-1.34 1.71-.71l5.59 5.59c.39.39.39 1.02 0 1.41l-5.59 5.59c-.63.63-1.71.19-1.71-.7V16H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h7z" -}), 'ForwardRounded'); \ No newline at end of file +}), 'ForwardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardSharp.js b/packages/material-ui-icons/lib/ForwardSharp.js index 08bdbcefd0b61e..82d1dcdf145f52 100644 --- a/packages/material-ui-icons/lib/ForwardSharp.js +++ b/packages/material-ui-icons/lib/ForwardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8V4l8 8-8 8v-4H4V8h8z" -}), 'ForwardSharp'); \ No newline at end of file +}), 'ForwardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardToInbox.js b/packages/material-ui-icons/lib/ForwardToInbox.js index 083e531440d00e..a7029077c0fbee 100644 --- a/packages/material-ui-icons/lib/ForwardToInbox.js +++ b/packages/material-ui-icons/lib/ForwardToInbox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" -}), 'ForwardToInbox'); \ No newline at end of file +}), 'ForwardToInbox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardToInboxOutlined.js b/packages/material-ui-icons/lib/ForwardToInboxOutlined.js index 9ede3b8638d994..577cd9a9529976 100644 --- a/packages/material-ui-icons/lib/ForwardToInboxOutlined.js +++ b/packages/material-ui-icons/lib/ForwardToInboxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" -}), 'ForwardToInboxOutlined'); \ No newline at end of file +}), 'ForwardToInboxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardToInboxRounded.js b/packages/material-ui-icons/lib/ForwardToInboxRounded.js index 54814a2754130a..1dc7fcf06378ac 100644 --- a/packages/material-ui-icons/lib/ForwardToInboxRounded.js +++ b/packages/material-ui-icons/lib/ForwardToInboxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l6.94 4.34c.65.41 1.47.41 2.12 0L20 8v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 5.21c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36V20h-3c-.55 0-1-.45-1-1s.45-1 1-1h3v-1.79z" -}), 'ForwardToInboxRounded'); \ No newline at end of file +}), 'ForwardToInboxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardToInboxSharp.js b/packages/material-ui-icons/lib/ForwardToInboxSharp.js index 4c3b48352e8d23..5e2e0b89528557 100644 --- a/packages/material-ui-icons/lib/ForwardToInboxSharp.js +++ b/packages/material-ui-icons/lib/ForwardToInboxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h11v-2H4V8l8 5 8-5v5h2V4zm-10 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" -}), 'ForwardToInboxSharp'); \ No newline at end of file +}), 'ForwardToInboxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardToInboxTwoTone.js b/packages/material-ui-icons/lib/ForwardToInboxTwoTone.js index daeb838fd50a19..37d6d2b7469cd1 100644 --- a/packages/material-ui-icons/lib/ForwardToInboxTwoTone.js +++ b/packages/material-ui-icons/lib/ForwardToInboxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 18H4V8l8 5 8-5v5h-2c-2.76 0-5 2.24-5 5zm-1-7L4 6h16l-8 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" -}, "1")], 'ForwardToInboxTwoTone'); \ No newline at end of file +}, "1")], 'ForwardToInboxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ForwardTwoTone.js b/packages/material-ui-icons/lib/ForwardTwoTone.js index 067f5d4a6c23cf..68784d5eb1fafd 100644 --- a/packages/material-ui-icons/lib/ForwardTwoTone.js +++ b/packages/material-ui-icons/lib/ForwardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 14v1.17L17.17 12 14 8.83V10H6v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 12-8-8v4H4v8h8v4l8-8zM6 14v-4h8V8.83L17.17 12 14 15.17V14H6z" -}, "1")], 'ForwardTwoTone'); \ No newline at end of file +}, "1")], 'ForwardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Foundation.js b/packages/material-ui-icons/lib/Foundation.js index 66a0f4899a7123..f26469a0e8f9b9 100644 --- a/packages/material-ui-icons/lib/Foundation.js +++ b/packages/material-ui-icons/lib/Foundation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" -}), 'Foundation'); \ No newline at end of file +}), 'Foundation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoundationOutlined.js b/packages/material-ui-icons/lib/FoundationOutlined.js index 7ebb674a78eba8..4d3e50f3ea20a3 100644 --- a/packages/material-ui-icons/lib/FoundationOutlined.js +++ b/packages/material-ui-icons/lib/FoundationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" -}), 'FoundationOutlined'); \ No newline at end of file +}), 'FoundationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoundationRounded.js b/packages/material-ui-icons/lib/FoundationRounded.js index bfc73c00158a99..96f7245daa0823 100644 --- a/packages/material-ui-icons/lib/FoundationRounded.js +++ b/packages/material-ui-icons/lib/FoundationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v3H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" -}), 'FoundationRounded'); \ No newline at end of file +}), 'FoundationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoundationSharp.js b/packages/material-ui-icons/lib/FoundationSharp.js index f8962dc2d246e8..5d3c7750ea7039 100644 --- a/packages/material-ui-icons/lib/FoundationSharp.js +++ b/packages/material-ui-icons/lib/FoundationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" -}), 'FoundationSharp'); \ No newline at end of file +}), 'FoundationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FoundationTwoTone.js b/packages/material-ui-icons/lib/FoundationTwoTone.js index c13883b690ba85..db4d7dccf2f6a5 100644 --- a/packages/material-ui-icons/lib/FoundationTwoTone.js +++ b/packages/material-ui-icons/lib/FoundationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" -}, "1")], 'FoundationTwoTone'); \ No newline at end of file +}, "1")], 'FoundationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGMobiledata.js b/packages/material-ui-icons/lib/FourGMobiledata.js index 102f1ade286b24..5570a83bd4927f 100644 --- a/packages/material-ui-icons/lib/FourGMobiledata.js +++ b/packages/material-ui-icons/lib/FourGMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" -}), 'FourGMobiledata'); \ No newline at end of file +}), 'FourGMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGMobiledataOutlined.js b/packages/material-ui-icons/lib/FourGMobiledataOutlined.js index 2bad0d9ca29e6e..7dd3ebac54076f 100644 --- a/packages/material-ui-icons/lib/FourGMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/FourGMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" -}), 'FourGMobiledataOutlined'); \ No newline at end of file +}), 'FourGMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGMobiledataRounded.js b/packages/material-ui-icons/lib/FourGMobiledataRounded.js index c826459f1f99a4..7d79146294ef7e 100644 --- a/packages/material-ui-icons/lib/FourGMobiledataRounded.js +++ b/packages/material-ui-icons/lib/FourGMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 7c-.55 0-1 .45-1 1v4H5V8c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h3v2c0 .55.45 1 1 1s1-.45 1-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1H9V8c0-.55-.45-1-1-1zm9 5c0 .55.45 1 1 1h1v2h-5V9h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1z" -}), 'FourGMobiledataRounded'); \ No newline at end of file +}), 'FourGMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGMobiledataSharp.js b/packages/material-ui-icons/lib/FourGMobiledataSharp.js index 4422e9c8700b1c..fe16f41835f3c1 100644 --- a/packages/material-ui-icons/lib/FourGMobiledataSharp.js +++ b/packages/material-ui-icons/lib/FourGMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7V7h-9v10h9v-6h-4z" -}), 'FourGMobiledataSharp'); \ No newline at end of file +}), 'FourGMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGMobiledataTwoTone.js b/packages/material-ui-icons/lib/FourGMobiledataTwoTone.js index 8f7148cfb9ef51..311f9562d407a2 100644 --- a/packages/material-ui-icons/lib/FourGMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/FourGMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" -}), 'FourGMobiledataTwoTone'); \ No newline at end of file +}), 'FourGMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGPlusMobiledata.js b/packages/material-ui-icons/lib/FourGPlusMobiledata.js index c8e31d9eb3af51..f683b67e473591 100644 --- a/packages/material-ui-icons/lib/FourGPlusMobiledata.js +++ b/packages/material-ui-icons/lib/FourGPlusMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11v2h2v2h-4V9h6c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" -}), 'FourGPlusMobiledata'); \ No newline at end of file +}), 'FourGPlusMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGPlusMobiledataOutlined.js b/packages/material-ui-icons/lib/FourGPlusMobiledataOutlined.js index a35081c29d0c84..9e8709b47aea07 100644 --- a/packages/material-ui-icons/lib/FourGPlusMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/FourGPlusMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11v2h2v2h-4V9h6c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" -}), 'FourGPlusMobiledataOutlined'); \ No newline at end of file +}), 'FourGPlusMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGPlusMobiledataRounded.js b/packages/material-ui-icons/lib/FourGPlusMobiledataRounded.js index e3832a4c8f5d39..3230b92089755f 100644 --- a/packages/material-ui-icons/lib/FourGPlusMobiledataRounded.js +++ b/packages/material-ui-icons/lib/FourGPlusMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9c.55 0 1-.45 1-1s-.45-1-1-1h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v2h-4V9h5zm7 2h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zM7 12V8c0-.55-.45-1-1-1s-1 .45-1 1v4H3V8c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h3v2c0 .55.45 1 1 1s1-.45 1-1v-2c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'FourGPlusMobiledataRounded'); \ No newline at end of file +}), 'FourGPlusMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGPlusMobiledataSharp.js b/packages/material-ui-icons/lib/FourGPlusMobiledataSharp.js index c5684d97a1e041..b3dfe91c6efc70 100644 --- a/packages/material-ui-icons/lib/FourGPlusMobiledataSharp.js +++ b/packages/material-ui-icons/lib/FourGPlusMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11v2h2v2h-4V9h6V7H9v10h8v-6h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" -}), 'FourGPlusMobiledataSharp'); \ No newline at end of file +}), 'FourGPlusMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourGPlusMobiledataTwoTone.js b/packages/material-ui-icons/lib/FourGPlusMobiledataTwoTone.js index 249f679742d500..862cc5f4f50216 100644 --- a/packages/material-ui-icons/lib/FourGPlusMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/FourGPlusMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11v2h2v2h-4V9h6c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" -}), 'FourGPlusMobiledataTwoTone'); \ No newline at end of file +}), 'FourGPlusMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourK.js b/packages/material-ui-icons/lib/FourK.js index 91ea2313a06a49..b35ba6ee5ba1c9 100644 --- a/packages/material-ui-icons/lib/FourK.js +++ b/packages/material-ui-icons/lib/FourK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 10.5h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.5zm6 1.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'FourK'); \ No newline at end of file +}), 'FourK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKOutlined.js b/packages/material-ui-icons/lib/FourKOutlined.js index b37ce82044f28a..53322d4bb95ba9 100644 --- a/packages/material-ui-icons/lib/FourKOutlined.js +++ b/packages/material-ui-icons/lib/FourKOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z" -}), 'FourKOutlined'); \ No newline at end of file +}), 'FourKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKPlus.js b/packages/material-ui-icons/lib/FourKPlus.js index 20b414a10649a2..b9ac226fe6c1c5 100644 --- a/packages/material-ui-icons/lib/FourKPlus.js +++ b/packages/material-ui-icons/lib/FourKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 10.5h-1V15H8v-1.5H5V9h1.5v3H8V9h1.5v3h1v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'FourKPlus'); \ No newline at end of file +}), 'FourKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKPlusOutlined.js b/packages/material-ui-icons/lib/FourKPlusOutlined.js index 29b1912d9f3891..ae6a59507e69fc 100644 --- a/packages/material-ui-icons/lib/FourKPlusOutlined.js +++ b/packages/material-ui-icons/lib/FourKPlusOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 15H10v-1.5h1V12h-1V9H8.5v3H7V9H5.5v4.5h3zm4.5-2.25L14.75 15h1.75l-2.25-3 2.25-3h-1.75L13 11.25V9h-1.5v6H13z" -}, "1")], 'FourKPlusOutlined'); \ No newline at end of file +}, "1")], 'FourKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKPlusRounded.js b/packages/material-ui-icons/lib/FourKPlusRounded.js index 6ea6ba87c52ae9..e7f682ab444a2a 100644 --- a/packages/material-ui-icons/lib/FourKPlusRounded.js +++ b/packages/material-ui-icons/lib/FourKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 10.5H10v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-.75h-2c-.55 0-1-.45-1-1V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h1.5V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h.25c.41 0 .75.34.75.75s-.34.75-.75.75zm4.84 1.5c-.22 0-.42-.1-.55-.27L13 12.75v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.4 0 .71.31.71.7v1.55l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L14.25 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.41-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'FourKPlusRounded'); \ No newline at end of file +}), 'FourKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKPlusSharp.js b/packages/material-ui-icons/lib/FourKPlusSharp.js index fa8feb11c14641..df1405cedc9735 100644 --- a/packages/material-ui-icons/lib/FourKPlusSharp.js +++ b/packages/material-ui-icons/lib/FourKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM11 13.5h-1V15H8.5v-1.5h-3V9H7v3h1.5V9H10v3h1v1.5zm3.75 1.5L13 12.75V15h-1.5V9H13v2.25L14.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'FourKPlusSharp'); \ No newline at end of file +}), 'FourKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKPlusTwoTone.js b/packages/material-ui-icons/lib/FourKPlusTwoTone.js index 8d2818dbcc12e7..470d1926644b0d 100644 --- a/packages/material-ui-icons/lib/FourKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/FourKPlusTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6.5-10H13v2.25L14.75 9h1.75l-2.25 3 2.25 3h-1.75L13 12.75V15h-1.5V9zm-6 0H7v3h1.5V9H10v3h1v1.5h-1V15H8.5v-1.5h-3V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 15H10v-1.5h1V12h-1V9H8.5v3H7V9H5.5v4.5h3zm4.5-2.25L14.75 15h1.75l-2.25-3 2.25-3h-1.75L13 11.25V9h-1.5v6H13z" -}, "2")], 'FourKPlusTwoTone'); \ No newline at end of file +}, "2")], 'FourKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKRounded.js b/packages/material-ui-icons/lib/FourKRounded.js index e3b8238a2e08fd..eeca8c3460ccfd 100644 --- a/packages/material-ui-icons/lib/FourKRounded.js +++ b/packages/material-ui-icons/lib/FourKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-7 9.76c0 .41-.34.75-.75.75H11v.74c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-.75h-2c-.55 0-1-.45-1-1V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h1.5V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h.25c.41 0 .75.34.75.75v.01zm5.47 1.14c.22.33.13.77-.2.98-.12.08-.26.12-.39.12-.23 0-.45-.11-.59-.32L14.5 12v2.24c0 .41-.34.75-.75.75-.41.01-.75-.33-.75-.74v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v2.24l1.79-2.68c.22-.33.66-.41.98-.2.33.22.41.66.2.98L16.2 12l1.27 1.9z" -}), 'FourKRounded'); \ No newline at end of file +}), 'FourKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKSharp.js b/packages/material-ui-icons/lib/FourKSharp.js index f8c9d7e35b1e10..f99a78edb503cd 100644 --- a/packages/material-ui-icons/lib/FourKSharp.js +++ b/packages/material-ui-icons/lib/FourKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-9 10.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z" -}), 'FourKSharp'); \ No newline at end of file +}), 'FourKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourKTwoTone.js b/packages/material-ui-icons/lib/FourKTwoTone.js index d086ea3e37099d..e9baad98ca1526 100644 --- a/packages/material-ui-icons/lib/FourKTwoTone.js +++ b/packages/material-ui-icons/lib/FourKTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v14h14V5zm-7 8.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm6 4H9.5v3H8V9H6.5v4.5h3V15H11v-1.49h1V12h-1zm5.5 0-2 3 2 3h1.7l-2-3 2-3zM13 9v6h1.5V9z" -}, "1")], 'FourKTwoTone'); \ No newline at end of file +}, "1")], 'FourKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourMp.js b/packages/material-ui-icons/lib/FourMp.js index 9e11aeb6b572ff..dd56f9a4d8e6b2 100644 --- a/packages/material-ui-icons/lib/FourMp.js +++ b/packages/material-ui-icons/lib/FourMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3-8.5h-1v1.5h-1.5V10h-3V5.5H11v3h1.5v-3H14v3h1V10zm.5 8.5H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z" -}), 'FourMp'); \ No newline at end of file +}), 'FourMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourMpOutlined.js b/packages/material-ui-icons/lib/FourMpOutlined.js index 55f55128094973..cd2434f76e6c9d 100644 --- a/packages/material-ui-icons/lib/FourMpOutlined.js +++ b/packages/material-ui-icons/lib/FourMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 11.5H14V10h1V8.5h-1v-3h-1.5v3H11v-3H9.5V10h3z" -}, "2")], 'FourMpOutlined'); \ No newline at end of file +}, "2")], 'FourMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourMpRounded.js b/packages/material-ui-icons/lib/FourMpRounded.js index 10c32e6bb60db5..8e09cc093090be 100644 --- a/packages/material-ui-icons/lib/FourMpRounded.js +++ b/packages/material-ui-icons/lib/FourMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.5 14.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm0-7V10h-2c-.55 0-1-.45-1-1V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h1.5V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h.25c.41 0 .75.34.75.75s-.34.75-.75.75H14v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'FourMpRounded'); \ No newline at end of file +}, "1")], 'FourMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourMpSharp.js b/packages/material-ui-icons/lib/FourMpSharp.js index f9f4219f84e1be..0ede5c3da5a06a 100644 --- a/packages/material-ui-icons/lib/FourMpSharp.js +++ b/packages/material-ui-icons/lib/FourMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-3-8.5V5.5H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3zm8.5 7h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'FourMpSharp'); \ No newline at end of file +}, "1")], 'FourMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourMpTwoTone.js b/packages/material-ui-icons/lib/FourMpTwoTone.js index ab48e02a10f911..fad25714169df7 100644 --- a/packages/material-ui-icons/lib/FourMpTwoTone.js +++ b/packages/material-ui-icons/lib/FourMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8.5-8H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3V5.5zm-3.5 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 11.5H14V10h1V8.5h-1v-3h-1.5v3H11v-3H9.5V10h3z" -}, "4")], 'FourMpTwoTone'); \ No newline at end of file +}, "4")], 'FourMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourteenMp.js b/packages/material-ui-icons/lib/FourteenMp.js index 50cee36fad5291..fde3d38f342b35 100644 --- a/packages/material-ui-icons/lib/FourteenMp.js +++ b/packages/material-ui-icons/lib/FourteenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm7.5 4.5h-1v1.5H15V10h-3V5.5h1.5v3H15v-3h1.5v3h1V10zm-2 4H17v1.5h-1.5z" -}), 'FourteenMp'); \ No newline at end of file +}), 'FourteenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourteenMpOutlined.js b/packages/material-ui-icons/lib/FourteenMpOutlined.js index ae80fff71934fc..20b567f51261b9 100644 --- a/packages/material-ui-icons/lib/FourteenMpOutlined.js +++ b/packages/material-ui-icons/lib/FourteenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm6.5 0h1.5V10h1V8.5h-1v-3H15v3h-1.5v-3H12V10h3z" -}, "2")], 'FourteenMpOutlined'); \ No newline at end of file +}, "2")], 'FourteenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourteenMpRounded.js b/packages/material-ui-icons/lib/FourteenMpRounded.js index a602b75aa44b73..d79f0d41d4e273 100644 --- a/packages/material-ui-icons/lib/FourteenMpRounded.js +++ b/packages/material-ui-icons/lib/FourteenMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 9V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5H15V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h.25c.41 0 .75.34.75.75s-.34.75-.75.75h-.25v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10h-2c-.55 0-1-.45-1-1zm6 7c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'FourteenMpRounded'); \ No newline at end of file +}, "1")], 'FourteenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourteenMpSharp.js b/packages/material-ui-icons/lib/FourteenMpSharp.js index fe7dc13b46c24a..68ebbe6392bb7c 100644 --- a/packages/material-ui-icons/lib/FourteenMpSharp.js +++ b/packages/material-ui-icons/lib/FourteenMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 2.5h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'FourteenMpSharp'); \ No newline at end of file +}, "1")], 'FourteenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FourteenMpTwoTone.js b/packages/material-ui-icons/lib/FourteenMpTwoTone.js index 543b8d5047cc26..c9cd9ef78603a5 100644 --- a/packages/material-ui-icons/lib/FourteenMpTwoTone.js +++ b/packages/material-ui-icons/lib/FourteenMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-8h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zm-5 0h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm6.5 0h1.5V10h1V8.5h-1v-3H15v3h-1.5v-3H12V10h3z" -}, "4")], 'FourteenMpTwoTone'); \ No newline at end of file +}, "4")], 'FourteenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FreeBreakfast.js b/packages/material-ui-icons/lib/FreeBreakfast.js index 13cbbb29929a73..1185f1ac1af770 100644 --- a/packages/material-ui-icons/lib/FreeBreakfast.js +++ b/packages/material-ui-icons/lib/FreeBreakfast.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" -}), 'FreeBreakfast'); \ No newline at end of file +}), 'FreeBreakfast'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FreeBreakfastOutlined.js b/packages/material-ui-icons/lib/FreeBreakfastOutlined.js index c23648f7295681..338250341cc9a6 100644 --- a/packages/material-ui-icons/lib/FreeBreakfastOutlined.js +++ b/packages/material-ui-icons/lib/FreeBreakfastOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z" -}), 'FreeBreakfastOutlined'); \ No newline at end of file +}), 'FreeBreakfastOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FreeBreakfastRounded.js b/packages/material-ui-icons/lib/FreeBreakfastRounded.js index d6dff6b3ad415d..26cdd5249be50e 100644 --- a/packages/material-ui-icons/lib/FreeBreakfastRounded.js +++ b/packages/material-ui-icons/lib/FreeBreakfastRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM5 19h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'FreeBreakfastRounded'); \ No newline at end of file +}), 'FreeBreakfastRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FreeBreakfastSharp.js b/packages/material-ui-icons/lib/FreeBreakfastSharp.js index eaf942d0603964..fae2974be92ceb 100644 --- a/packages/material-ui-icons/lib/FreeBreakfastSharp.js +++ b/packages/material-ui-icons/lib/FreeBreakfastSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4v14h14v-7h2c1.11 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4v-2z" -}), 'FreeBreakfastSharp'); \ No newline at end of file +}), 'FreeBreakfastSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FreeBreakfastTwoTone.js b/packages/material-ui-icons/lib/FreeBreakfastTwoTone.js index ea2b344a35dc4a..cecf9b16b3ecb8 100644 --- a/packages/material-ui-icons/lib/FreeBreakfastTwoTone.js +++ b/packages/material-ui-icons/lib/FreeBreakfastTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5H6v8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z" -}, "1")], 'FreeBreakfastTwoTone'); \ No newline at end of file +}, "1")], 'FreeBreakfastTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Fullscreen.js b/packages/material-ui-icons/lib/Fullscreen.js index 0718f0c12c7c34..e91c7bd289230a 100644 --- a/packages/material-ui-icons/lib/Fullscreen.js +++ b/packages/material-ui-icons/lib/Fullscreen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" -}), 'Fullscreen'); \ No newline at end of file +}), 'Fullscreen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenExit.js b/packages/material-ui-icons/lib/FullscreenExit.js index 1653722b6bacb3..a6aff66d092a5e 100644 --- a/packages/material-ui-icons/lib/FullscreenExit.js +++ b/packages/material-ui-icons/lib/FullscreenExit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" -}), 'FullscreenExit'); \ No newline at end of file +}), 'FullscreenExit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenExitOutlined.js b/packages/material-ui-icons/lib/FullscreenExitOutlined.js index fbf8a48b9d6297..e0000ac3f3f1d5 100644 --- a/packages/material-ui-icons/lib/FullscreenExitOutlined.js +++ b/packages/material-ui-icons/lib/FullscreenExitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" -}), 'FullscreenExitOutlined'); \ No newline at end of file +}), 'FullscreenExitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenExitRounded.js b/packages/material-ui-icons/lib/FullscreenExitRounded.js index 359b9497fe2c5d..a0555efdc83e2f 100644 --- a/packages/material-ui-icons/lib/FullscreenExitRounded.js +++ b/packages/material-ui-icons/lib/FullscreenExitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 16h2v2c0 .55.45 1 1 1s1-.45 1-1v-3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm2-8H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v2zm7 11c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm1-11V6c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2z" -}), 'FullscreenExitRounded'); \ No newline at end of file +}), 'FullscreenExitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenExitSharp.js b/packages/material-ui-icons/lib/FullscreenExitSharp.js index 66a96bfdf598e6..b6aacbc0689974 100644 --- a/packages/material-ui-icons/lib/FullscreenExitSharp.js +++ b/packages/material-ui-icons/lib/FullscreenExitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" -}), 'FullscreenExitSharp'); \ No newline at end of file +}), 'FullscreenExitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenExitTwoTone.js b/packages/material-ui-icons/lib/FullscreenExitTwoTone.js index fba238974a7f63..e40173f3d61f4d 100644 --- a/packages/material-ui-icons/lib/FullscreenExitTwoTone.js +++ b/packages/material-ui-icons/lib/FullscreenExitTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" -}), 'FullscreenExitTwoTone'); \ No newline at end of file +}), 'FullscreenExitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenOutlined.js b/packages/material-ui-icons/lib/FullscreenOutlined.js index 372b525a6a91fa..10aa452fc82391 100644 --- a/packages/material-ui-icons/lib/FullscreenOutlined.js +++ b/packages/material-ui-icons/lib/FullscreenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" -}), 'FullscreenOutlined'); \ No newline at end of file +}), 'FullscreenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenRounded.js b/packages/material-ui-icons/lib/FullscreenRounded.js index 6d8ff7d88d44cd..da09a60b1bfe86 100644 --- a/packages/material-ui-icons/lib/FullscreenRounded.js +++ b/packages/material-ui-icons/lib/FullscreenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 14c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1H7v-2c0-.55-.45-1-1-1zm0-4c.55 0 1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm11 7h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zM14 6c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1z" -}), 'FullscreenRounded'); \ No newline at end of file +}), 'FullscreenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenSharp.js b/packages/material-ui-icons/lib/FullscreenSharp.js index fe98f37a7281a2..8bb2f89b61be05 100644 --- a/packages/material-ui-icons/lib/FullscreenSharp.js +++ b/packages/material-ui-icons/lib/FullscreenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" -}), 'FullscreenSharp'); \ No newline at end of file +}), 'FullscreenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FullscreenTwoTone.js b/packages/material-ui-icons/lib/FullscreenTwoTone.js index 0cee8da3480152..d7583ad33bc674 100644 --- a/packages/material-ui-icons/lib/FullscreenTwoTone.js +++ b/packages/material-ui-icons/lib/FullscreenTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" -}), 'FullscreenTwoTone'); \ No newline at end of file +}), 'FullscreenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Functions.js b/packages/material-ui-icons/lib/Functions.js index 9658f66e8c5bb8..27670c3ea806ff 100644 --- a/packages/material-ui-icons/lib/Functions.js +++ b/packages/material-ui-icons/lib/Functions.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7z" -}), 'Functions'); \ No newline at end of file +}), 'Functions'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FunctionsOutlined.js b/packages/material-ui-icons/lib/FunctionsOutlined.js index 872d91252a26bb..4825f56a8d23da 100644 --- a/packages/material-ui-icons/lib/FunctionsOutlined.js +++ b/packages/material-ui-icons/lib/FunctionsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z" -}), 'FunctionsOutlined'); \ No newline at end of file +}), 'FunctionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FunctionsRounded.js b/packages/material-ui-icons/lib/FunctionsRounded.js index 9477f2c3910488..2227680c358bbd 100644 --- a/packages/material-ui-icons/lib/FunctionsRounded.js +++ b/packages/material-ui-icons/lib/FunctionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 4H7.56C6.7 4 6 4.7 6 5.56c0 .28.12.55.32.74L12.5 12l-6.18 5.7c-.2.19-.32.46-.32.74C6 19.3 6.7 20 7.56 20h8.94c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H11l3.59-3.59c.78-.78.78-2.05 0-2.83L11 7h5.5c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4z" -}), 'FunctionsRounded'); \ No newline at end of file +}), 'FunctionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FunctionsSharp.js b/packages/material-ui-icons/lib/FunctionsSharp.js index 7f960333edee45..b30d6aa1fd59ca 100644 --- a/packages/material-ui-icons/lib/FunctionsSharp.js +++ b/packages/material-ui-icons/lib/FunctionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z" -}), 'FunctionsSharp'); \ No newline at end of file +}), 'FunctionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/FunctionsTwoTone.js b/packages/material-ui-icons/lib/FunctionsTwoTone.js index 8f0dbd89204511..7b3907336127f7 100644 --- a/packages/material-ui-icons/lib/FunctionsTwoTone.js +++ b/packages/material-ui-icons/lib/FunctionsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17h-7l5-5-5-5h7V4H6v2l6.5 6L6 18v2h12z" -}), 'FunctionsTwoTone'); \ No newline at end of file +}), 'FunctionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GMobiledata.js b/packages/material-ui-icons/lib/GMobiledata.js index cc277774558e08..2281de2f948025 100644 --- a/packages/material-ui-icons/lib/GMobiledata.js +++ b/packages/material-ui-icons/lib/GMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11v2h2v2H9V9h7c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" -}), 'GMobiledata'); \ No newline at end of file +}), 'GMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GMobiledataOutlined.js b/packages/material-ui-icons/lib/GMobiledataOutlined.js index cec891c04abc25..f4e015ef457e5f 100644 --- a/packages/material-ui-icons/lib/GMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/GMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11v2h2v2H9V9h7c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" -}), 'GMobiledataOutlined'); \ No newline at end of file +}), 'GMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GMobiledataRounded.js b/packages/material-ui-icons/lib/GMobiledataRounded.js index df5236e67357a3..b55ad8d5a0af1b 100644 --- a/packages/material-ui-icons/lib/GMobiledataRounded.js +++ b/packages/material-ui-icons/lib/GMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c0 .55.45 1 1 1h1v2H9V9h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1z" -}), 'GMobiledataRounded'); \ No newline at end of file +}), 'GMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GMobiledataSharp.js b/packages/material-ui-icons/lib/GMobiledataSharp.js index c4ec0395a3c574..60fe8e6fb4d03a 100644 --- a/packages/material-ui-icons/lib/GMobiledataSharp.js +++ b/packages/material-ui-icons/lib/GMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11v2h2v2H9V9h7V7H7v10h9v-6h-4z" -}), 'GMobiledataSharp'); \ No newline at end of file +}), 'GMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GMobiledataTwoTone.js b/packages/material-ui-icons/lib/GMobiledataTwoTone.js index 99e9622802ccdf..73ac748a9f0e2c 100644 --- a/packages/material-ui-icons/lib/GMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/GMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11v2h2v2H9V9h7c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" -}), 'GMobiledataTwoTone'); \ No newline at end of file +}), 'GMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GTranslate.js b/packages/material-ui-icons/lib/GTranslate.js index 76cd02e211af7c..d005bcc4a1ccc6 100644 --- a/packages/material-ui-icons/lib/GTranslate.js +++ b/packages/material-ui-icons/lib/GTranslate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H11l-1-3H3c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8l1 3h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 16c-2.76 0-5-2.24-5-5s2.24-5 5-5c1.35 0 2.48.5 3.35 1.3L9.03 8.57c-.38-.36-1.04-.78-2.03-.78-1.74 0-3.15 1.44-3.15 3.21S5.26 14.21 7 14.21c2.01 0 2.84-1.44 2.92-2.41H7v-1.71h4.68c.07.31.12.61.12 1.02C11.8 13.97 9.89 16 7 16zm6.17-5.42h3.7c-.43 1.25-1.11 2.43-2.05 3.47-.31-.35-.6-.72-.86-1.1l-.79-2.37zm8.33 9.92c0 .55-.45 1-1 1H14l2-2.5-1.04-3.1 3.1 3.1.92-.92-3.3-3.25.02-.02c1.13-1.25 1.93-2.69 2.4-4.22H20v-1.3h-4.53V8h-1.29v1.29h-1.44L11.46 5.5h9.04c.55 0 1 .45 1 1v14z" -}), 'GTranslate'); \ No newline at end of file +}), 'GTranslate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GTranslateOutlined.js b/packages/material-ui-icons/lib/GTranslateOutlined.js index 33b66d38721b74..48c556ade6c1aa 100644 --- a/packages/material-ui-icons/lib/GTranslateOutlined.js +++ b/packages/material-ui-icons/lib/GTranslateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" -}), 'GTranslateOutlined'); \ No newline at end of file +}), 'GTranslateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GTranslateRounded.js b/packages/material-ui-icons/lib/GTranslateRounded.js index 6e2bebb72c7ae9..f7acdc1b6e07b1 100644 --- a/packages/material-ui-icons/lib/GTranslateRounded.js +++ b/packages/material-ui-icons/lib/GTranslateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" -}), 'GTranslateRounded'); \ No newline at end of file +}), 'GTranslateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GTranslateSharp.js b/packages/material-ui-icons/lib/GTranslateSharp.js index 1c543a9b3a9ae5..382dee2aa65a52 100644 --- a/packages/material-ui-icons/lib/GTranslateSharp.js +++ b/packages/material-ui-icons/lib/GTranslateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" -}), 'GTranslateSharp'); \ No newline at end of file +}), 'GTranslateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GTranslateTwoTone.js b/packages/material-ui-icons/lib/GTranslateTwoTone.js index fecfc720115550..3d2acf5618290c 100644 --- a/packages/material-ui-icons/lib/GTranslateTwoTone.js +++ b/packages/material-ui-icons/lib/GTranslateTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42 0 1.33 1.07 2.42 2.38 2.42 1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm5.5-3.51h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7h-.99l-.31-1.04zm1.72 3.5-.54.53-.65-2.23c.33.6.74 1.18 1.19 1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" -}), 'GTranslateTwoTone'); \ No newline at end of file +}), 'GTranslateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Gamepad.js b/packages/material-ui-icons/lib/Gamepad.js index db64f80a9b2a99..ca2320d5dd1b37 100644 --- a/packages/material-ui-icons/lib/Gamepad.js +++ b/packages/material-ui-icons/lib/Gamepad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" -}), 'Gamepad'); \ No newline at end of file +}), 'Gamepad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamepadOutlined.js b/packages/material-ui-icons/lib/GamepadOutlined.js index 71a7331afafa5f..4305b3d6ef1afd 100644 --- a/packages/material-ui-icons/lib/GamepadOutlined.js +++ b/packages/material-ui-icons/lib/GamepadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5-3 3V22h6v-5.5l-3-3z" -}), 'GamepadOutlined'); \ No newline at end of file +}), 'GamepadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamepadRounded.js b/packages/material-ui-icons/lib/GamepadRounded.js index adfe19bbc2cffe..3ba7c58d9a8a90 100644 --- a/packages/material-ui-icons/lib/GamepadRounded.js +++ b/packages/material-ui-icons/lib/GamepadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7.29V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4.29c0 .13.05.26.15.35l2.5 2.5c.2.2.51.2.71 0l2.5-2.5c.09-.09.14-.21.14-.35zM7.29 9H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4.29c.13 0 .26-.05.35-.15l2.5-2.5c.2-.2.2-.51 0-.71l-2.5-2.5C7.55 9.05 7.43 9 7.29 9zM9 16.71V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.29c0-.13-.05-.26-.15-.35l-2.5-2.5c-.2-.2-.51-.2-.71 0l-2.5 2.5c-.09.09-.14.21-.14.35zm7.35-7.56-2.5 2.5c-.2.2-.2.51 0 .71l2.5 2.5c.09.09.22.15.35.15H21c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4.29c-.14-.01-.26.04-.36.14z" -}), 'GamepadRounded'); \ No newline at end of file +}), 'GamepadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamepadSharp.js b/packages/material-ui-icons/lib/GamepadSharp.js index acccec2724ad11..30ffc89b43d265 100644 --- a/packages/material-ui-icons/lib/GamepadSharp.js +++ b/packages/material-ui-icons/lib/GamepadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" -}), 'GamepadSharp'); \ No newline at end of file +}), 'GamepadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamepadTwoTone.js b/packages/material-ui-icons/lib/GamepadTwoTone.js index c75d52f993ef51..7b5031eb8a96a3 100644 --- a/packages/material-ui-icons/lib/GamepadTwoTone.js +++ b/packages/material-ui-icons/lib/GamepadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.67 11H4v2h2.67l1-1zM13 6.67V4h-2v2.67l1 1zm-2 10.66V20h2v-2.67l-1-1zM16.33 12l1 1H20v-2h-2.67z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.5V22h6v-5.5l-3-3-3 3zm4 3.5h-2v-2.67l1-1 1 1V20zm2-12.5V2H9v5.5l3 3 3-3zM11 4h2v2.67l-1 1-1-1V4zM7.5 9H2v6h5.5l3-3-3-3zm-.83 4H4v-2h2.67l1 1-1 1zm9.83-4-3 3 3 3H22V9h-5.5zm3.5 4h-2.67l-1-1 1-1H20v2z" -}, "1")], 'GamepadTwoTone'); \ No newline at end of file +}, "1")], 'GamepadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Games.js b/packages/material-ui-icons/lib/Games.js index 1aedd51ab2dba0..a16a0eb8aed82d 100644 --- a/packages/material-ui-icons/lib/Games.js +++ b/packages/material-ui-icons/lib/Games.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" -}), 'Games'); \ No newline at end of file +}), 'Games'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamesOutlined.js b/packages/material-ui-icons/lib/GamesOutlined.js index 50a71151d3a4ec..958a3fc93248a9 100644 --- a/packages/material-ui-icons/lib/GamesOutlined.js +++ b/packages/material-ui-icons/lib/GamesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5-3 3V22h6v-5.5l-3-3z" -}), 'GamesOutlined'); \ No newline at end of file +}), 'GamesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamesRounded.js b/packages/material-ui-icons/lib/GamesRounded.js index 6274c16e0d1998..af33895b6a5b65 100644 --- a/packages/material-ui-icons/lib/GamesRounded.js +++ b/packages/material-ui-icons/lib/GamesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7.29V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4.29c0 .13.05.26.15.35l2.5 2.5c.2.2.51.2.71 0l2.5-2.5c.09-.09.14-.21.14-.35zM7.29 9H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4.29c.13 0 .26-.05.35-.15l2.5-2.5c.2-.2.2-.51 0-.71l-2.5-2.5C7.55 9.05 7.43 9 7.29 9zM9 16.71V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.29c0-.13-.05-.26-.15-.35l-2.5-2.5c-.2-.2-.51-.2-.71 0l-2.5 2.5c-.09.09-.14.21-.14.35zm7.35-7.56-2.5 2.5c-.2.2-.2.51 0 .71l2.5 2.5c.09.09.22.15.35.15H21c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4.29c-.14-.01-.26.04-.36.14z" -}), 'GamesRounded'); \ No newline at end of file +}), 'GamesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamesSharp.js b/packages/material-ui-icons/lib/GamesSharp.js index 6f01e4e019b4a7..81734988cfaf20 100644 --- a/packages/material-ui-icons/lib/GamesSharp.js +++ b/packages/material-ui-icons/lib/GamesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" -}), 'GamesSharp'); \ No newline at end of file +}), 'GamesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GamesTwoTone.js b/packages/material-ui-icons/lib/GamesTwoTone.js index dbb6b81ea6572f..904784a7b7d5eb 100644 --- a/packages/material-ui-icons/lib/GamesTwoTone.js +++ b/packages/material-ui-icons/lib/GamesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17.33V20h2v-2.67l-1-1zm2-10.66V4h-2v2.67l1 1zM16.33 12l1 1H20v-2h-2.67zM4 11v2h2.67l1-1-1-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 9v6h5.5l3-3-3-3H2zm4.67 4H4v-2h2.67l1 1-1 1zM22 9h-5.5l-3 3 3 3H22V9zm-2 4h-2.67l-1-1 1-1H20v2zm-5 3.5-3-3-3 3V22h6v-5.5zM13 20h-2v-2.67l1-1 1 1V20zM9 7.5l3 3 3-3V2H9v5.5zM11 4h2v2.67l-1 1-1-1V4z" -}, "1")], 'GamesTwoTone'); \ No newline at end of file +}, "1")], 'GamesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Garage.js b/packages/material-ui-icons/lib/Garage.js index 95c15435b46815..8205067da2c9bd 100644 --- a/packages/material-ui-icons/lib/Garage.js +++ b/packages/material-ui-icons/lib/Garage.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.33 7.5-.66 2h8.66l-.66-2z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 15.69c0 .45-.35.81-.78.81h-.44c-.44 0-.78-.36-.78-.81V16.5H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5c.82-2.47 1.34-4.03 1.56-4.69.05-.16.12-.29.19-.4.02-.02.03-.04.05-.06.38-.53.92-.54.92-.54h8.56s.54.01.92.53c.02.03.03.05.05.07.07.11.14.24.19.4.22.66.74 2.23 1.56 4.69v6.5z" -}, "3")], 'Garage'); \ No newline at end of file +}, "3")], 'Garage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GarageOutlined.js b/packages/material-ui-icons/lib/GarageOutlined.js index 0b297bbdb468fb..d5206bf78bdf25 100644 --- a/packages/material-ui-icons/lib/GarageOutlined.js +++ b/packages/material-ui-icons/lib/GarageOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.78 18.5h.44c.43 0 .78-.36.78-.81V16.5h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81zm2.55-11h7.34l.23.69.43 1.31H7.67l.66-2zM7 11.51v-.01h10v3H7v-2.99z" -}, "3")], 'GarageOutlined'); \ No newline at end of file +}, "3")], 'GarageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GarageRounded.js b/packages/material-ui-icons/lib/GarageRounded.js index d2fa1cec915b61..321ff8329f178a 100644 --- a/packages/material-ui-icons/lib/GarageRounded.js +++ b/packages/material-ui-icons/lib/GarageRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.33 7.5-.66 2h8.66l-.66-2z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 15.69c0 .45-.35.81-.78.81h-.44c-.44 0-.78-.36-.78-.81V16.5H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5c.82-2.47 1.34-4.03 1.56-4.69.05-.16.12-.29.19-.4.02-.02.03-.04.05-.06.38-.53.92-.54.92-.54h8.56s.54.01.92.53c.02.03.03.05.05.07.07.11.14.24.19.4.22.66.74 2.23 1.56 4.69v6.5z" -}, "3")], 'GarageRounded'); \ No newline at end of file +}, "3")], 'GarageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GarageSharp.js b/packages/material-ui-icons/lib/GarageSharp.js index 21ed6fd5a132a1..a53d71c08f708e 100644 --- a/packages/material-ui-icons/lib/GarageSharp.js +++ b/packages/material-ui-icons/lib/GarageSharp.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.33 7.5-.66 2h8.66l-.66-2z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zm-3 16.5h-2v-2H7v2H5v-7.31L6.89 5.5H17.1l1.9 5.69v7.31z" -}, "3")], 'GarageSharp'); \ No newline at end of file +}, "3")], 'GarageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GarageTwoTone.js b/packages/material-ui-icons/lib/GarageTwoTone.js index 157a33539d12c9..278ffe59440d7d 100644 --- a/packages/material-ui-icons/lib/GarageTwoTone.js +++ b/packages/material-ui-icons/lib/GarageTwoTone.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11.51v-.01H7v3h10v-2.99zM9 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zm1-8.81c.82-2.47 1.34-4.03 1.56-4.69.05-.16.12-.29.19-.4.02-.02.03-.04.05-.06.38-.53.92-.54.92-.54h8.56s.54.01.92.53c.02.03.03.05.05.07.07.11.14.24.19.4.22.66.74 2.23 1.56 4.69v6.5c0 .45-.35.81-.78.81h-.44c-.44 0-.78-.36-.78-.81V16.5H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.78 18.5h.44c.43 0 .78-.36.78-.81V16.5h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81zm2.55-11h7.34l.23.69.43 1.31H7.67l.66-2zM7 11.51v-.01h10v3H7v-2.99z" -}, "5")], 'GarageTwoTone'); \ No newline at end of file +}, "5")], 'GarageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Gavel.js b/packages/material-ui-icons/lib/Gavel.js index 9d0047eb0af6d2..fa7557b95bf89b 100644 --- a/packages/material-ui-icons/lib/Gavel.js +++ b/packages/material-ui-icons/lib/Gavel.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.2494 8.0688 2.83-2.8269 14.1343 14.15-2.83 2.8269zm4.2363-4.2415 2.828-2.8289 5.6577 5.656-2.828 2.8289zM.9989 12.3147l2.8284-2.8285 5.6569 5.6569-2.8285 2.8284zM1 21h12v2H1z" -}), 'Gavel'); \ No newline at end of file +}), 'Gavel'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GavelOutlined.js b/packages/material-ui-icons/lib/GavelOutlined.js index 92d4be209c33dc..00b8e83e8f4ed9 100644 --- a/packages/material-ui-icons/lib/GavelOutlined.js +++ b/packages/material-ui-icons/lib/GavelOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" -}), 'GavelOutlined'); \ No newline at end of file +}), 'GavelOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GavelRounded.js b/packages/material-ui-icons/lib/GavelRounded.js index 62ed63f1ab50a2..608fe421b84cbd 100644 --- a/packages/material-ui-icons/lib/GavelRounded.js +++ b/packages/material-ui-icons/lib/GavelRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 21h10c.55 0 1 .45 1 1s-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1zM5.24 8.07l2.83-2.83L20.8 17.97c.78.78.78 2.05 0 2.83-.78.78-2.05.78-2.83 0L5.24 8.07zm8.49-5.66 2.83 2.83c.78.78.78 2.05 0 2.83l-1.42 1.42-5.65-5.66 1.41-1.41c.78-.79 2.05-.79 2.83-.01zm-9.9 7.07 5.66 5.66-1.41 1.41c-.78.78-2.05.78-2.83 0l-2.83-2.83c-.78-.78-.78-2.05 0-2.83l1.41-1.41z" -}), 'GavelRounded'); \ No newline at end of file +}), 'GavelRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GavelSharp.js b/packages/material-ui-icons/lib/GavelSharp.js index 70dd590b5bc853..03d243d1cb7433 100644 --- a/packages/material-ui-icons/lib/GavelSharp.js +++ b/packages/material-ui-icons/lib/GavelSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" -}), 'GavelSharp'); \ No newline at end of file +}), 'GavelSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GavelTwoTone.js b/packages/material-ui-icons/lib/GavelTwoTone.js index 240dacc1d7a2ff..3686382ad8cc5e 100644 --- a/packages/material-ui-icons/lib/GavelTwoTone.js +++ b/packages/material-ui-icons/lib/GavelTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" -}), 'GavelTwoTone'); \ No newline at end of file +}), 'GavelTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Gesture.js b/packages/material-ui-icons/lib/Gesture.js index ccdd0aa9074037..c1d77f234aa285 100644 --- a/packages/material-ui-icons/lib/Gesture.js +++ b/packages/material-ui-icons/lib/Gesture.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" -}), 'Gesture'); \ No newline at end of file +}), 'Gesture'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GestureOutlined.js b/packages/material-ui-icons/lib/GestureOutlined.js index f5979433b4812c..8513a2fa2d3352 100644 --- a/packages/material-ui-icons/lib/GestureOutlined.js +++ b/packages/material-ui-icons/lib/GestureOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" -}), 'GestureOutlined'); \ No newline at end of file +}), 'GestureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GestureRounded.js b/packages/material-ui-icons/lib/GestureRounded.js index 767bde1b300463..9ff85ac56f47cc 100644 --- a/packages/material-ui-icons/lib/GestureRounded.js +++ b/packages/material-ui-icons/lib/GestureRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.72 6.04c.47.46 1.21.48 1.71.06.37-.32.69-.51.87-.43.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1h1.21c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25h-1.22c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3c-1.09 0-2.04.63-2.7 1.22-.53.48-.53 1.32-.02 1.82zm10.16 12.51c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" -}), 'GestureRounded'); \ No newline at end of file +}), 'GestureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GestureSharp.js b/packages/material-ui-icons/lib/GestureSharp.js index 96471eccd02142..cca26a0be4170d 100644 --- a/packages/material-ui-icons/lib/GestureSharp.js +++ b/packages/material-ui-icons/lib/GestureSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" -}), 'GestureSharp'); \ No newline at end of file +}), 'GestureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GestureTwoTone.js b/packages/material-ui-icons/lib/GestureTwoTone.js index d93fc10c76d537..32e9e9fe245087 100644 --- a/packages/material-ui-icons/lib/GestureTwoTone.js +++ b/packages/material-ui-icons/lib/GestureTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" -}), 'GestureTwoTone'); \ No newline at end of file +}), 'GestureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GetApp.js b/packages/material-ui-icons/lib/GetApp.js index c332cf6d869ca3..ced5c0b5d9b6f3 100644 --- a/packages/material-ui-icons/lib/GetApp.js +++ b/packages/material-ui-icons/lib/GetApp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" -}), 'GetApp'); \ No newline at end of file +}), 'GetApp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GetAppOutlined.js b/packages/material-ui-icons/lib/GetAppOutlined.js index 0c213e2ee56096..05459ddadda1e5 100644 --- a/packages/material-ui-icons/lib/GetAppOutlined.js +++ b/packages/material-ui-icons/lib/GetAppOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5v6h1.17L12 13.17 9.83 11H11V5h2m2-2H9v6H5l7 7 7-7h-4V3zm4 15H5v2h14v-2z" -}), 'GetAppOutlined'); \ No newline at end of file +}), 'GetAppOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GetAppRounded.js b/packages/material-ui-icons/lib/GetAppRounded.js index 811b52fcc2b620..f4422c056aa0ba 100644 --- a/packages/material-ui-icons/lib/GetAppRounded.js +++ b/packages/material-ui-icons/lib/GetAppRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" -}), 'GetAppRounded'); \ No newline at end of file +}), 'GetAppRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GetAppSharp.js b/packages/material-ui-icons/lib/GetAppSharp.js index 9f2786126520ed..9d6a8480d11220 100644 --- a/packages/material-ui-icons/lib/GetAppSharp.js +++ b/packages/material-ui-icons/lib/GetAppSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" -}), 'GetAppSharp'); \ No newline at end of file +}), 'GetAppSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GetAppTwoTone.js b/packages/material-ui-icons/lib/GetAppTwoTone.js index 5ae1492db36b8f..c2d249417291e6 100644 --- a/packages/material-ui-icons/lib/GetAppTwoTone.js +++ b/packages/material-ui-icons/lib/GetAppTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 11H13V5h-2v6H9.83L12 13.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z" -}, "1")], 'GetAppTwoTone'); \ No newline at end of file +}, "1")], 'GetAppTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Gif.js b/packages/material-ui-icons/lib/Gif.js index 6db53c5a1c04ca..fe8fa7b8e95e62 100644 --- a/packages/material-ui-icons/lib/Gif.js +++ b/packages/material-ui-icons/lib/Gif.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v6h-1.5zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1z" -}), 'Gif'); \ No newline at end of file +}), 'Gif'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GifOutlined.js b/packages/material-ui-icons/lib/GifOutlined.js index 8c9d5644196d85..ad78473094a7be 100644 --- a/packages/material-ui-icons/lib/GifOutlined.js +++ b/packages/material-ui-icons/lib/GifOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z" -}), 'GifOutlined'); \ No newline at end of file +}), 'GifOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GifRounded.js b/packages/material-ui-icons/lib/GifRounded.js index 373c9ce17b7496..49fd929c259615 100644 --- a/packages/material-ui-icons/lib/GifRounded.js +++ b/packages/material-ui-icons/lib/GifRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.25 9c.41 0 .75.34.75.75v4.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75zM10 9.75c0-.41-.34-.75-.75-.75H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v.75h-2v-3h2.75c.41 0 .75-.34.75-.75zm9 0c0-.41-.34-.75-.75-.75H15.5c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H16v-1h2.25c.41 0 .75-.34.75-.75z" -}), 'GifRounded'); \ No newline at end of file +}), 'GifRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GifSharp.js b/packages/material-ui-icons/lib/GifSharp.js index de9ae98ae29249..94f90b36176b97 100644 --- a/packages/material-ui-icons/lib/GifSharp.js +++ b/packages/material-ui-icons/lib/GifSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v6h-1.5V9zM10 9H5v6h5v-3H8.5v1.5h-2v-3H10V9zm9 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z" -}), 'GifSharp'); \ No newline at end of file +}), 'GifSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GifTwoTone.js b/packages/material-ui-icons/lib/GifTwoTone.js index 1ce7f732949d62..0e1932c3a0e05c 100644 --- a/packages/material-ui-icons/lib/GifTwoTone.js +++ b/packages/material-ui-icons/lib/GifTwoTone.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z", opacity: ".87" -}), 'GifTwoTone'); \ No newline at end of file +}), 'GifTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GitHub.js b/packages/material-ui-icons/lib/GitHub.js index 6656523bd709f6..9bb2af32de7c42 100644 --- a/packages/material-ui-icons/lib/GitHub.js +++ b/packages/material-ui-icons/lib/GitHub.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 .3a12 12 0 0 0-3.8 23.4c.6.1.8-.3.8-.6v-2c-3.3.7-4-1.6-4-1.6-.6-1.4-1.4-1.8-1.4-1.8-1-.7.1-.7.1-.7 1.2 0 1.9 1.2 1.9 1.2 1 1.8 2.8 1.3 3.5 1 0-.8.4-1.3.7-1.6-2.7-.3-5.5-1.3-5.5-6 0-1.2.5-2.3 1.3-3.1-.2-.4-.6-1.6 0-3.2 0 0 1-.3 3.4 1.2a11.5 11.5 0 0 1 6 0c2.3-1.5 3.3-1.2 3.3-1.2.6 1.6.2 2.8 0 3.2.9.8 1.3 1.9 1.3 3.2 0 4.6-2.8 5.6-5.5 5.9.5.4.9 1 .9 2.2v3.3c0 .3.1.7.8.6A12 12 0 0 0 12 .3" -}), 'GitHub'); \ No newline at end of file +}), 'GitHub'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Gite.js b/packages/material-ui-icons/lib/Gite.js index 03c0146ad2bc44..7f421316018487 100644 --- a/packages/material-ui-icons/lib/Gite.js +++ b/packages/material-ui-icons/lib/Gite.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" -}), 'Gite'); \ No newline at end of file +}), 'Gite'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GiteOutlined.js b/packages/material-ui-icons/lib/GiteOutlined.js index 3e309daa0f4f87..b37e6bf1ab40b3 100644 --- a/packages/material-ui-icons/lib/GiteOutlined.js +++ b/packages/material-ui-icons/lib/GiteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" -}), 'GiteOutlined'); \ No newline at end of file +}), 'GiteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GiteRounded.js b/packages/material-ui-icons/lib/GiteRounded.js index 9631b2bba0f870..1e545b23cba413 100644 --- a/packages/material-ui-icons/lib/GiteRounded.js +++ b/packages/material-ui-icons/lib/GiteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 9.41-2.83-2.83c-.37-.37-.88-.58-1.41-.58H9V5c0-.55-.45-1-1-1s-1 .45-1 1v1h-.17c-.53 0-1.04.21-1.42.59L2.59 9.41c-.38.38-.59.89-.59 1.42V17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-6.17c0-.53-.21-1.04-.59-1.42zM14 17H4v-5h10v5zm6 0h-4v-6.17l2-2 2 2V17z" -}), 'GiteRounded'); \ No newline at end of file +}), 'GiteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GiteSharp.js b/packages/material-ui-icons/lib/GiteSharp.js index 39ee6a24332b05..f75cfcf181991c 100644 --- a/packages/material-ui-icons/lib/GiteSharp.js +++ b/packages/material-ui-icons/lib/GiteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" -}), 'GiteSharp'); \ No newline at end of file +}), 'GiteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GiteTwoTone.js b/packages/material-ui-icons/lib/GiteTwoTone.js index 913f92567c86f6..4d93228d5d21af 100644 --- a/packages/material-ui-icons/lib/GiteTwoTone.js +++ b/packages/material-ui-icons/lib/GiteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" -}, "1")], 'GiteTwoTone'); \ No newline at end of file +}, "1")], 'GiteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GolfCourse.js b/packages/material-ui-icons/lib/GolfCourse.js index dbe713509f0bc7..b0f23aad4001ff 100644 --- a/packages/material-ui-icons/lib/GolfCourse.js +++ b/packages/material-ui-icons/lib/GolfCourse.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" -}, "1")], 'GolfCourse'); \ No newline at end of file +}, "1")], 'GolfCourse'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GolfCourseOutlined.js b/packages/material-ui-icons/lib/GolfCourseOutlined.js index aac68dce25722f..95ea88721e20f3 100644 --- a/packages/material-ui-icons/lib/GolfCourseOutlined.js +++ b/packages/material-ui-icons/lib/GolfCourseOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" -}, "1")], 'GolfCourseOutlined'); \ No newline at end of file +}, "1")], 'GolfCourseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GolfCourseRounded.js b/packages/material-ui-icons/lib/GolfCourseRounded.js index f148b502db8c74..23d74527fa55e4 100644 --- a/packages/material-ui-icons/lib/GolfCourseRounded.js +++ b/packages/material-ui-icons/lib/GolfCourseRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18.03V8.98l4.22-2.15c.73-.37.73-1.43-.01-1.79l-4.76-2.33C9.78 2.38 9 2.86 9 3.6V19c0 .55-.45 1-1 1s-1-.45-1-1v-.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97z" -}, "1")], 'GolfCourseRounded'); \ No newline at end of file +}, "1")], 'GolfCourseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GolfCourseSharp.js b/packages/material-ui-icons/lib/GolfCourseSharp.js index 12b1263f77c346..31d28b8cb7555d 100644 --- a/packages/material-ui-icons/lib/GolfCourseSharp.js +++ b/packages/material-ui-icons/lib/GolfCourseSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" -}, "1")], 'GolfCourseSharp'); \ No newline at end of file +}, "1")], 'GolfCourseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GolfCourseTwoTone.js b/packages/material-ui-icons/lib/GolfCourseTwoTone.js index bc4fe363f64dda..8a21220f9306a5 100644 --- a/packages/material-ui-icons/lib/GolfCourseTwoTone.js +++ b/packages/material-ui-icons/lib/GolfCourseTwoTone.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "19.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" -}, "3")], 'GolfCourseTwoTone'); \ No newline at end of file +}, "3")], 'GolfCourseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Google.js b/packages/material-ui-icons/lib/Google.js index 62312510c3c1d7..69fa438ead937c 100644 --- a/packages/material-ui-icons/lib/Google.js +++ b/packages/material-ui-icons/lib/Google.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.545,10.239v3.821h5.445c-0.712,2.315-2.647,3.972-5.445,3.972c-3.332,0-6.033-2.701-6.033-6.032s2.701-6.032,6.033-6.032c1.498,0,2.866,0.549,3.921,1.453l2.814-2.814C17.503,2.988,15.139,2,12.545,2C7.021,2,2.543,6.477,2.543,12s4.478,10,10.002,10c8.396,0,10.249-7.85,9.426-11.748L12.545,10.239z" -}), 'Google'); \ No newline at end of file +}), 'Google'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppBad.js b/packages/material-ui-icons/lib/GppBad.js index 552a9911692f62..c3c64eef4f4332 100644 --- a/packages/material-ui-icons/lib/GppBad.js +++ b/packages/material-ui-icons/lib/GppBad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.5 12.09-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41L13.42 12l2.08 2.09z" -}), 'GppBad'); \ No newline at end of file +}), 'GppBad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppBadOutlined.js b/packages/material-ui-icons/lib/GppBadOutlined.js index b76b3b1aee1111..d1abb301b7fc19 100644 --- a/packages/material-ui-icons/lib/GppBadOutlined.js +++ b/packages/material-ui-icons/lib/GppBadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7zM9.91 8.5 8.5 9.91 10.59 12 8.5 14.09l1.41 1.41L12 13.42l2.09 2.08 1.41-1.41L13.42 12l2.08-2.09-1.41-1.41L12 10.59 9.91 8.5z" -}), 'GppBadOutlined'); \ No newline at end of file +}), 'GppBadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppBadRounded.js b/packages/material-ui-icons/lib/GppBadRounded.js index dddcf80fe5c1aa..54604b594cdfa7 100644 --- a/packages/material-ui-icons/lib/GppBadRounded.js +++ b/packages/material-ui-icons/lib/GppBadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.7 4.51-6-2.25c-.45-.17-.95-.17-1.4 0l-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 4.94 3.27 9.57 7.71 10.83.19.05.39.05.57 0C16.73 20.66 20 16.03 20 11.09v-4.7c0-.84-.52-1.58-1.3-1.88zm-3.9 10.28c-.39.39-1.02.39-1.41.01L12 13.42l-1.39 1.38c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 9.2 10.61a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l1.39-1.39c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.42 12l1.38 1.38c.39.39.39 1.02 0 1.41z" -}), 'GppBadRounded'); \ No newline at end of file +}), 'GppBadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppBadSharp.js b/packages/material-ui-icons/lib/GppBadSharp.js index c0dcf01c95ed3b..96bb5013871e7f 100644 --- a/packages/material-ui-icons/lib/GppBadSharp.js +++ b/packages/material-ui-icons/lib/GppBadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.5 12.09-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41L13.42 12l2.08 2.09z" -}), 'GppBadSharp'); \ No newline at end of file +}), 'GppBadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppBadTwoTone.js b/packages/material-ui-icons/lib/GppBadTwoTone.js index cb9a7c4f528df0..2cb785e935e628 100644 --- a/packages/material-ui-icons/lib/GppBadTwoTone.js +++ b/packages/material-ui-icons/lib/GppBadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7zM9.91 8.5 8.5 9.91 10.59 12 8.5 14.09l1.41 1.41L12 13.42l2.09 2.08 1.41-1.41L13.42 12l2.08-2.09-1.41-1.41L12 10.59 9.91 8.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25-6 2.25zm9.5 3.52L13.42 12l2.08 2.09-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41z", opacity: ".3" -}, "1")], 'GppBadTwoTone'); \ No newline at end of file +}, "1")], 'GppBadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppGood.js b/packages/material-ui-icons/lib/GppGood.js index 6240e0d25b835e..582df42df479fe 100644 --- a/packages/material-ui-icons/lib/GppGood.js +++ b/packages/material-ui-icons/lib/GppGood.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z" -}), 'GppGood'); \ No newline at end of file +}), 'GppGood'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppGoodOutlined.js b/packages/material-ui-icons/lib/GppGoodOutlined.js index 8445e5918e10e2..2c18d91e44cfb6 100644 --- a/packages/material-ui-icons/lib/GppGoodOutlined.js +++ b/packages/material-ui-icons/lib/GppGoodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12 6 2.12v4.78zm-9.18-.5L7.4 12l3.54 3.54 5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" -}), 'GppGoodOutlined'); \ No newline at end of file +}), 'GppGoodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppGoodRounded.js b/packages/material-ui-icons/lib/GppGoodRounded.js index 5b583e1e6f319d..1b506f7934f821 100644 --- a/packages/material-ui-icons/lib/GppGoodRounded.js +++ b/packages/material-ui-icons/lib/GppGoodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.3 2.26-6 2.25C4.52 4.81 4 5.55 4 6.39v4.71c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V6.39c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01zm-1.07 12.57-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.24c-.38.4-1.02.4-1.41.01z" -}), 'GppGoodRounded'); \ No newline at end of file +}), 'GppGoodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppGoodSharp.js b/packages/material-ui-icons/lib/GppGoodSharp.js index 2775bc06f4935e..e9eb3693bc4af6 100644 --- a/packages/material-ui-icons/lib/GppGoodSharp.js +++ b/packages/material-ui-icons/lib/GppGoodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z" -}), 'GppGoodSharp'); \ No newline at end of file +}), 'GppGoodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppGoodTwoTone.js b/packages/material-ui-icons/lib/GppGoodTwoTone.js index 77e01960f5ee99..0343a0a4bb4dba 100644 --- a/packages/material-ui-icons/lib/GppGoodTwoTone.js +++ b/packages/material-ui-icons/lib/GppGoodTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6.31v4.78c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83V6.31l-6-2.12-6 2.12zm10.6 3.57-5.66 5.66L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.43 1.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12 6 2.12v4.78zm-9.18-.5L7.4 12l3.54 3.54 5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" -}, "1")], 'GppGoodTwoTone'); \ No newline at end of file +}, "1")], 'GppGoodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppMaybe.js b/packages/material-ui-icons/lib/GppMaybe.js index 88ae497456a8eb..2cba8dda870631 100644 --- a/packages/material-ui-icons/lib/GppMaybe.js +++ b/packages/material-ui-icons/lib/GppMaybe.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z" -}), 'GppMaybe'); \ No newline at end of file +}), 'GppMaybe'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppMaybeOutlined.js b/packages/material-ui-icons/lib/GppMaybeOutlined.js index 440dda1d623d75..950662b52a5c25 100644 --- a/packages/material-ui-icons/lib/GppMaybeOutlined.js +++ b/packages/material-ui-icons/lib/GppMaybeOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14h2v2h-2zm0-7h2v5h-2z" -}, "1")], 'GppMaybeOutlined'); \ No newline at end of file +}, "1")], 'GppMaybeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppMaybeRounded.js b/packages/material-ui-icons/lib/GppMaybeRounded.js index 3956c28f902c67..f596a9e3bf128b 100644 --- a/packages/material-ui-icons/lib/GppMaybeRounded.js +++ b/packages/material-ui-icons/lib/GppMaybeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.3 2.26-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" -}), 'GppMaybeRounded'); \ No newline at end of file +}), 'GppMaybeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppMaybeSharp.js b/packages/material-ui-icons/lib/GppMaybeSharp.js index aa63e36635b961..c50c4dfd53a77e 100644 --- a/packages/material-ui-icons/lib/GppMaybeSharp.js +++ b/packages/material-ui-icons/lib/GppMaybeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z" -}), 'GppMaybeSharp'); \ No newline at end of file +}), 'GppMaybeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GppMaybeTwoTone.js b/packages/material-ui-icons/lib/GppMaybeTwoTone.js index 085b34720d40a6..2c7f6f85655c34 100644 --- a/packages/material-ui-icons/lib/GppMaybeTwoTone.js +++ b/packages/material-ui-icons/lib/GppMaybeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25-6 2.25zM13 16h-2v-2h2v2zm0-4h-2V7h2v5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7zM11 16h2v-2h-2v2zm0-4h2V7h-2v5z" -}, "1")], 'GppMaybeTwoTone'); \ No newline at end of file +}, "1")], 'GppMaybeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsFixed.js b/packages/material-ui-icons/lib/GpsFixed.js index 36880ddc007649..57d0cac6ef084f 100644 --- a/packages/material-ui-icons/lib/GpsFixed.js +++ b/packages/material-ui-icons/lib/GpsFixed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsFixed'); \ No newline at end of file +}), 'GpsFixed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsFixedOutlined.js b/packages/material-ui-icons/lib/GpsFixedOutlined.js index 10b0a7a6ba650f..1d7c004a4cedeb 100644 --- a/packages/material-ui-icons/lib/GpsFixedOutlined.js +++ b/packages/material-ui-icons/lib/GpsFixedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsFixedOutlined'); \ No newline at end of file +}), 'GpsFixedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsFixedRounded.js b/packages/material-ui-icons/lib/GpsFixedRounded.js index 759b1513dbc123..0096de1eeb5448 100644 --- a/packages/material-ui-icons/lib/GpsFixedRounded.js +++ b/packages/material-ui-icons/lib/GpsFixedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsFixedRounded'); \ No newline at end of file +}), 'GpsFixedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsFixedSharp.js b/packages/material-ui-icons/lib/GpsFixedSharp.js index df1c375ea0e50a..7ce00d4a81686c 100644 --- a/packages/material-ui-icons/lib/GpsFixedSharp.js +++ b/packages/material-ui-icons/lib/GpsFixedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsFixedSharp'); \ No newline at end of file +}), 'GpsFixedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsFixedTwoTone.js b/packages/material-ui-icons/lib/GpsFixedTwoTone.js index 36067a1b643b1c..1967b44f8c5bb5 100644 --- a/packages/material-ui-icons/lib/GpsFixedTwoTone.js +++ b/packages/material-ui-icons/lib/GpsFixedTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.94-3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}, "1")], 'GpsFixedTwoTone'); \ No newline at end of file +}, "1")], 'GpsFixedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsNotFixed.js b/packages/material-ui-icons/lib/GpsNotFixed.js index 1d511f4b201564..065f4bdac84dee 100644 --- a/packages/material-ui-icons/lib/GpsNotFixed.js +++ b/packages/material-ui-icons/lib/GpsNotFixed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsNotFixed'); \ No newline at end of file +}), 'GpsNotFixed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsNotFixedOutlined.js b/packages/material-ui-icons/lib/GpsNotFixedOutlined.js index 5a2755d4c738c9..f9519eede8aa4f 100644 --- a/packages/material-ui-icons/lib/GpsNotFixedOutlined.js +++ b/packages/material-ui-icons/lib/GpsNotFixedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsNotFixedOutlined'); \ No newline at end of file +}), 'GpsNotFixedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsNotFixedRounded.js b/packages/material-ui-icons/lib/GpsNotFixedRounded.js index faec99a5c1d4a5..fcbbb8d0e2396f 100644 --- a/packages/material-ui-icons/lib/GpsNotFixedRounded.js +++ b/packages/material-ui-icons/lib/GpsNotFixedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsNotFixedRounded'); \ No newline at end of file +}), 'GpsNotFixedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsNotFixedSharp.js b/packages/material-ui-icons/lib/GpsNotFixedSharp.js index 63d01494854ae6..c102ab5dc86b8b 100644 --- a/packages/material-ui-icons/lib/GpsNotFixedSharp.js +++ b/packages/material-ui-icons/lib/GpsNotFixedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsNotFixedSharp'); \ No newline at end of file +}), 'GpsNotFixedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsNotFixedTwoTone.js b/packages/material-ui-icons/lib/GpsNotFixedTwoTone.js index e9b413e5563037..869878b25786a7 100644 --- a/packages/material-ui-icons/lib/GpsNotFixedTwoTone.js +++ b/packages/material-ui-icons/lib/GpsNotFixedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'GpsNotFixedTwoTone'); \ No newline at end of file +}), 'GpsNotFixedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsOff.js b/packages/material-ui-icons/lib/GpsOff.js index e62e70fa0b34d1..b3d9b1ca40ecf3 100644 --- a/packages/material-ui-icons/lib/GpsOff.js +++ b/packages/material-ui-icons/lib/GpsOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" -}), 'GpsOff'); \ No newline at end of file +}), 'GpsOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsOffOutlined.js b/packages/material-ui-icons/lib/GpsOffOutlined.js index 78295dd50c6cde..616214217fe108 100644 --- a/packages/material-ui-icons/lib/GpsOffOutlined.js +++ b/packages/material-ui-icons/lib/GpsOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" -}), 'GpsOffOutlined'); \ No newline at end of file +}), 'GpsOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsOffRounded.js b/packages/material-ui-icons/lib/GpsOffRounded.js index 54d5e20eb7f5a2..a523a7ca54b661 100644 --- a/packages/material-ui-icons/lib/GpsOffRounded.js +++ b/packages/material-ui-icons/lib/GpsOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13c.55 0 1-.45 1-1s-.45-1-1-1h-1.06c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H22zm-1.56 5.88L5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.04 6.3C3.97 7.62 3.26 9.23 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c1.77-.2 3.38-.91 4.69-1.98l1.33 1.33c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" -}), 'GpsOffRounded'); \ No newline at end of file +}), 'GpsOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsOffSharp.js b/packages/material-ui-icons/lib/GpsOffSharp.js index 64d8359c3d4080..73d370589f3fc0 100644 --- a/packages/material-ui-icons/lib/GpsOffSharp.js +++ b/packages/material-ui-icons/lib/GpsOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" -}), 'GpsOffSharp'); \ No newline at end of file +}), 'GpsOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GpsOffTwoTone.js b/packages/material-ui-icons/lib/GpsOffTwoTone.js index 9f54055c3edd29..3cd49b4fb48e67 100644 --- a/packages/material-ui-icons/lib/GpsOffTwoTone.js +++ b/packages/material-ui-icons/lib/GpsOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" -}), 'GpsOffTwoTone'); \ No newline at end of file +}), 'GpsOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grade.js b/packages/material-ui-icons/lib/Grade.js index 54fb74272ca118..b0611f5bef4b16 100644 --- a/packages/material-ui-icons/lib/Grade.js +++ b/packages/material-ui-icons/lib/Grade.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" -}), 'Grade'); \ No newline at end of file +}), 'Grade'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradeOutlined.js b/packages/material-ui-icons/lib/GradeOutlined.js index d7f862a610cde2..b37ba42e39252a 100644 --- a/packages/material-ui-icons/lib/GradeOutlined.js +++ b/packages/material-ui-icons/lib/GradeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 7.13.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.18.56 2.41-2.12-1.28-1.03-.64-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27M12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z" -}), 'GradeOutlined'); \ No newline at end of file +}), 'GradeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradeRounded.js b/packages/material-ui-icons/lib/GradeRounded.js index 01b14d3ad1abfa..fe9d4e6f4dbc20 100644 --- a/packages/material-ui-icons/lib/GradeRounded.js +++ b/packages/material-ui-icons/lib/GradeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 17.27 5.17 3.12c.38.23.85-.11.75-.54l-1.37-5.88 4.56-3.95c.33-.29.16-.84-.29-.88l-6.01-.51-2.35-5.54c-.17-.41-.75-.41-.92 0L9.19 8.63l-6.01.51c-.44.04-.62.59-.28.88l4.56 3.95-1.37 5.88c-.1.43.37.77.75.54L12 17.27z" -}), 'GradeRounded'); \ No newline at end of file +}), 'GradeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradeSharp.js b/packages/material-ui-icons/lib/GradeSharp.js index b6152714b0483f..888f672a098b73 100644 --- a/packages/material-ui-icons/lib/GradeSharp.js +++ b/packages/material-ui-icons/lib/GradeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" -}), 'GradeSharp'); \ No newline at end of file +}), 'GradeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradeTwoTone.js b/packages/material-ui-icons/lib/GradeTwoTone.js index 597d5d7354b3c5..2fc7afcfcdce00 100644 --- a/packages/material-ui-icons/lib/GradeTwoTone.js +++ b/packages/material-ui-icons/lib/GradeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.11 10.83-2.47-.21-1.2-.1-.47-1.11L12 7.13l-.97 2.28-.47 1.11-1.2.1-2.47.21 1.88 1.63.91.79-.27 1.17-.57 2.42 2.13-1.28 1.03-.63 1.03.63 2.13 1.28-.57-2.42-.27-1.17.91-.79z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24zm-7.41 5.18.56 2.41-2.12-1.28-1.03-.62-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.16z" -}, "1")], 'GradeTwoTone'); \ No newline at end of file +}, "1")], 'GradeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Gradient.js b/packages/material-ui-icons/lib/Gradient.js index 73ede4dcdb2d06..b7b513ee2f2bd0 100644 --- a/packages/material-ui-icons/lib/Gradient.js +++ b/packages/material-ui-icons/lib/Gradient.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" -}), 'Gradient'); \ No newline at end of file +}), 'Gradient'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradientOutlined.js b/packages/material-ui-icons/lib/GradientOutlined.js index 985655440f0daa..3e3e752ce82465 100644 --- a/packages/material-ui-icons/lib/GradientOutlined.js +++ b/packages/material-ui-icons/lib/GradientOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" -}), 'GradientOutlined'); \ No newline at end of file +}), 'GradientOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradientRounded.js b/packages/material-ui-icons/lib/GradientRounded.js index 5b9c9269eba371..54dba508f7716e 100644 --- a/packages/material-ui-icons/lib/GradientRounded.js +++ b/packages/material-ui-icons/lib/GradientRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v5z" -}), 'GradientRounded'); \ No newline at end of file +}), 'GradientRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradientSharp.js b/packages/material-ui-icons/lib/GradientSharp.js index e075016997e12c..a952b3ceea238c 100644 --- a/packages/material-ui-icons/lib/GradientSharp.js +++ b/packages/material-ui-icons/lib/GradientSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm14-6H3v18h18V3zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" -}), 'GradientSharp'); \ No newline at end of file +}), 'GradientSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradientTwoTone.js b/packages/material-ui-icons/lib/GradientTwoTone.js index 2b2a9e8f2d2f71..d2a15fb2a850f7 100644 --- a/packages/material-ui-icons/lib/GradientTwoTone.js +++ b/packages/material-ui-icons/lib/GradientTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11h2v2h-2zm6 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zM5 13h2v-2H5V5h14v6h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2zm2-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2zm-2 2h2v2H9z" -}), 'GradientTwoTone'); \ No newline at end of file +}), 'GradientTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grading.js b/packages/material-ui-icons/lib/Grading.js index 5541852894292d..faf69ae75ad3d6 100644 --- a/packages/material-ui-icons/lib/Grading.js +++ b/packages/material-ui-icons/lib/Grading.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" -}), 'Grading'); \ No newline at end of file +}), 'Grading'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradingOutlined.js b/packages/material-ui-icons/lib/GradingOutlined.js index 9b902bfccd568d..04e3aa87227a52 100644 --- a/packages/material-ui-icons/lib/GradingOutlined.js +++ b/packages/material-ui-icons/lib/GradingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" -}), 'GradingOutlined'); \ No newline at end of file +}), 'GradingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradingRounded.js b/packages/material-ui-icons/lib/GradingRounded.js index ee1d745750395b..b46a558d2a2e6a 100644 --- a/packages/material-ui-icons/lib/GradingRounded.js +++ b/packages/material-ui-icons/lib/GradingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm10.41-2.83-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.42 1.42c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2.47 2.46zM4 4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" -}), 'GradingRounded'); \ No newline at end of file +}), 'GradingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradingSharp.js b/packages/material-ui-icons/lib/GradingSharp.js index c819a4d428cddd..5d8a7fea1f9ede 100644 --- a/packages/material-ui-icons/lib/GradingSharp.js +++ b/packages/material-ui-icons/lib/GradingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" -}), 'GradingSharp'); \ No newline at end of file +}), 'GradingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GradingTwoTone.js b/packages/material-ui-icons/lib/GradingTwoTone.js index b60d0671328289..6f92ff4655b4be 100644 --- a/packages/material-ui-icons/lib/GradingTwoTone.js +++ b/packages/material-ui-icons/lib/GradingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" -}), 'GradingTwoTone'); \ No newline at end of file +}), 'GradingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grain.js b/packages/material-ui-icons/lib/Grain.js index a2d8940ef4cf5f..d000ca1325fb92 100644 --- a/packages/material-ui-icons/lib/Grain.js +++ b/packages/material-ui-icons/lib/Grain.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'Grain'); \ No newline at end of file +}), 'Grain'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrainOutlined.js b/packages/material-ui-icons/lib/GrainOutlined.js index 2c346cd8722a67..a06fb686eeaaab 100644 --- a/packages/material-ui-icons/lib/GrainOutlined.js +++ b/packages/material-ui-icons/lib/GrainOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'GrainOutlined'); \ No newline at end of file +}), 'GrainOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrainRounded.js b/packages/material-ui-icons/lib/GrainRounded.js index 22a43bcbad6291..1733f1bfbd5fd4 100644 --- a/packages/material-ui-icons/lib/GrainRounded.js +++ b/packages/material-ui-icons/lib/GrainRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'GrainRounded'); \ No newline at end of file +}), 'GrainRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrainSharp.js b/packages/material-ui-icons/lib/GrainSharp.js index ed55e066e233b9..71521ad0dc2f72 100644 --- a/packages/material-ui-icons/lib/GrainSharp.js +++ b/packages/material-ui-icons/lib/GrainSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'GrainSharp'); \ No newline at end of file +}), 'GrainSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrainTwoTone.js b/packages/material-ui-icons/lib/GrainTwoTone.js index b182abccd0260c..2743acc138714c 100644 --- a/packages/material-ui-icons/lib/GrainTwoTone.js +++ b/packages/material-ui-icons/lib/GrainTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-8 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'GrainTwoTone'); \ No newline at end of file +}), 'GrainTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GraphicEq.js b/packages/material-ui-icons/lib/GraphicEq.js index b7545e502e96ff..d0d39b0a954cb3 100644 --- a/packages/material-ui-icons/lib/GraphicEq.js +++ b/packages/material-ui-icons/lib/GraphicEq.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" -}), 'GraphicEq'); \ No newline at end of file +}), 'GraphicEq'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GraphicEqOutlined.js b/packages/material-ui-icons/lib/GraphicEqOutlined.js index 77839c6f43ba5b..af8e6644292c0f 100644 --- a/packages/material-ui-icons/lib/GraphicEqOutlined.js +++ b/packages/material-ui-icons/lib/GraphicEqOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" -}), 'GraphicEqOutlined'); \ No newline at end of file +}), 'GraphicEqOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GraphicEqRounded.js b/packages/material-ui-icons/lib/GraphicEqRounded.js index 3cab361e588d58..5d13a03c5a448e 100644 --- a/packages/material-ui-icons/lib/GraphicEqRounded.js +++ b/packages/material-ui-icons/lib/GraphicEqRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 18c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1zm4 4c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1s-1 .45-1 1v18c0 .55.45 1 1 1zm-8-8c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm12 4c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1zm3-7v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'GraphicEqRounded'); \ No newline at end of file +}), 'GraphicEqRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GraphicEqSharp.js b/packages/material-ui-icons/lib/GraphicEqSharp.js index efa1c5c1e6337d..f6be134bb6e504 100644 --- a/packages/material-ui-icons/lib/GraphicEqSharp.js +++ b/packages/material-ui-icons/lib/GraphicEqSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" -}), 'GraphicEqSharp'); \ No newline at end of file +}), 'GraphicEqSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GraphicEqTwoTone.js b/packages/material-ui-icons/lib/GraphicEqTwoTone.js index 67c358b52abe91..c58691dd4c0be4 100644 --- a/packages/material-ui-icons/lib/GraphicEqTwoTone.js +++ b/packages/material-ui-icons/lib/GraphicEqTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" -}), 'GraphicEqTwoTone'); \ No newline at end of file +}), 'GraphicEqTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grass.js b/packages/material-ui-icons/lib/Grass.js index 982c374802e410..5d6599727832e7 100644 --- a/packages/material-ui-icons/lib/Grass.js +++ b/packages/material-ui-icons/lib/Grass.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" -}), 'Grass'); \ No newline at end of file +}), 'Grass'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrassOutlined.js b/packages/material-ui-icons/lib/GrassOutlined.js index 64c359cba4758b..caa6582059f8e7 100644 --- a/packages/material-ui-icons/lib/GrassOutlined.js +++ b/packages/material-ui-icons/lib/GrassOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" -}), 'GrassOutlined'); \ No newline at end of file +}), 'GrassOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrassRounded.js b/packages/material-ui-icons/lib/GrassRounded.js index 384fc0f0037e74..cd97fd5adfa717 100644 --- a/packages/material-ui-icons/lib/GrassRounded.js +++ b/packages/material-ui-icons/lib/GrassRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.64 11.02c.55-1.47 1.43-2.78 2.56-3.83.38-.36.04-1-.46-.85-3.32.98-5.75 4.05-5.74 7.69.95-1.28 2.2-2.31 3.64-3.01zm-4.22-2.17c-.6-1.56-1.63-2.91-2.96-3.87-.42-.3-.96.19-.72.65C8.54 7.15 9 8.88 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29zM12 20H3c-.55 0-1-.45-1-1s.45-1 1-1h4.75c-.57-2.19-2.04-4.02-4-5.06-.16-.08-.26-.25-.26-.44 0-.27.22-.49.49-.5H4c4.42 0 8 3.58 8 8zm8.26-7.06c-1.96 1.04-3.44 2.87-4 5.06H21c.55 0 1 .45 1 1s-.45 1-1 1h-7c0-.68-.07-1.35-.2-2-.15-.72-.38-1.42-.67-2.07C14.52 13.58 17.07 12 20 12h.02c.27 0 .49.23.49.5.01.19-.1.35-.25.44z" -}), 'GrassRounded'); \ No newline at end of file +}), 'GrassRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrassSharp.js b/packages/material-ui-icons/lib/GrassSharp.js index ab00c2781b9ade..0304124dfabf7d 100644 --- a/packages/material-ui-icons/lib/GrassSharp.js +++ b/packages/material-ui-icons/lib/GrassSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" -}), 'GrassSharp'); \ No newline at end of file +}), 'GrassSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GrassTwoTone.js b/packages/material-ui-icons/lib/GrassTwoTone.js index faeb41ff47457e..91105f5e060de2 100644 --- a/packages/material-ui-icons/lib/GrassTwoTone.js +++ b/packages/material-ui-icons/lib/GrassTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" -}), 'GrassTwoTone'); \ No newline at end of file +}), 'GrassTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid3x3.js b/packages/material-ui-icons/lib/Grid3x3.js index 10b64c1ee93dc4..47581065cdba99 100644 --- a/packages/material-ui-icons/lib/Grid3x3.js +++ b/packages/material-ui-icons/lib/Grid3x3.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'Grid3x3'); \ No newline at end of file +}), 'Grid3x3'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid3x3Outlined.js b/packages/material-ui-icons/lib/Grid3x3Outlined.js index d4580b7c97e9ec..e2b893b143735c 100644 --- a/packages/material-ui-icons/lib/Grid3x3Outlined.js +++ b/packages/material-ui-icons/lib/Grid3x3Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'Grid3x3Outlined'); \ No newline at end of file +}), 'Grid3x3Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid3x3Rounded.js b/packages/material-ui-icons/lib/Grid3x3Rounded.js index 9703a05a7ad6fe..5c7334f526d149 100644 --- a/packages/material-ui-icons/lib/Grid3x3Rounded.js +++ b/packages/material-ui-icons/lib/Grid3x3Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9c0-.55-.45-1-1-1h-3V5c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V5c0-.55-.45-1-1-1s-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v4H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h4v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3v-4h3c.55 0 1-.45 1-1zm-6 5h-4v-4h4v4z" -}), 'Grid3x3Rounded'); \ No newline at end of file +}), 'Grid3x3Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid3x3Sharp.js b/packages/material-ui-icons/lib/Grid3x3Sharp.js index 6bb608e12d8e0f..da44afd589f407 100644 --- a/packages/material-ui-icons/lib/Grid3x3Sharp.js +++ b/packages/material-ui-icons/lib/Grid3x3Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'Grid3x3Sharp'); \ No newline at end of file +}), 'Grid3x3Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid3x3TwoTone.js b/packages/material-ui-icons/lib/Grid3x3TwoTone.js index abce1300036626..348ecc9a5bd9f3 100644 --- a/packages/material-ui-icons/lib/Grid3x3TwoTone.js +++ b/packages/material-ui-icons/lib/Grid3x3TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'Grid3x3TwoTone'); \ No newline at end of file +}), 'Grid3x3TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid4x4.js b/packages/material-ui-icons/lib/Grid4x4.js index 40ac4e3f72d5e8..8d91812c1bd9d4 100644 --- a/packages/material-ui-icons/lib/Grid4x4.js +++ b/packages/material-ui-icons/lib/Grid4x4.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" -}), 'Grid4x4'); \ No newline at end of file +}), 'Grid4x4'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid4x4Outlined.js b/packages/material-ui-icons/lib/Grid4x4Outlined.js index d8a3f79a7f6c54..104e8ddfeedd85 100644 --- a/packages/material-ui-icons/lib/Grid4x4Outlined.js +++ b/packages/material-ui-icons/lib/Grid4x4Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" -}), 'Grid4x4Outlined'); \ No newline at end of file +}), 'Grid4x4Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid4x4Rounded.js b/packages/material-ui-icons/lib/Grid4x4Rounded.js index 45887cb9443300..1f3099da2a6095 100644 --- a/packages/material-ui-icons/lib/Grid4x4Rounded.js +++ b/packages/material-ui-icons/lib/Grid4x4Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6c0-.55-.45-1-1-1h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-4V3c0-.55-.45-1-1-1s-1 .45-1 1v2H7V3c0-.55-.45-1-1-1s-1 .45-1 1v2H3c-.55 0-1 .45-1 1s.45 1 1 1h2v4H3c-.55 0-1 .45-1 1s.45 1 1 1h2v4H3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-4h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V7h2c.55 0 1-.45 1-1zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" -}), 'Grid4x4Rounded'); \ No newline at end of file +}), 'Grid4x4Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid4x4Sharp.js b/packages/material-ui-icons/lib/Grid4x4Sharp.js index 61e427fd774b79..7040f3d833be04 100644 --- a/packages/material-ui-icons/lib/Grid4x4Sharp.js +++ b/packages/material-ui-icons/lib/Grid4x4Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" -}), 'Grid4x4Sharp'); \ No newline at end of file +}), 'Grid4x4Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Grid4x4TwoTone.js b/packages/material-ui-icons/lib/Grid4x4TwoTone.js index c56ed663c4955a..5f749dc213391c 100644 --- a/packages/material-ui-icons/lib/Grid4x4TwoTone.js +++ b/packages/material-ui-icons/lib/Grid4x4TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" -}), 'Grid4x4TwoTone'); \ No newline at end of file +}), 'Grid4x4TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridGoldenratio.js b/packages/material-ui-icons/lib/GridGoldenratio.js index ac81793c1997d0..fd7d679a802394 100644 --- a/packages/material-ui-icons/lib/GridGoldenratio.js +++ b/packages/material-ui-icons/lib/GridGoldenratio.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" -}), 'GridGoldenratio'); \ No newline at end of file +}), 'GridGoldenratio'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridGoldenratioOutlined.js b/packages/material-ui-icons/lib/GridGoldenratioOutlined.js index dcf503c5a2e333..1bbbfa93d1807a 100644 --- a/packages/material-ui-icons/lib/GridGoldenratioOutlined.js +++ b/packages/material-ui-icons/lib/GridGoldenratioOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" -}), 'GridGoldenratioOutlined'); \ No newline at end of file +}), 'GridGoldenratioOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridGoldenratioRounded.js b/packages/material-ui-icons/lib/GridGoldenratioRounded.js index 059169dfb896b1..92c52d05488b90 100644 --- a/packages/material-ui-icons/lib/GridGoldenratioRounded.js +++ b/packages/material-ui-icons/lib/GridGoldenratioRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 13h-6v-2h6c.55 0 1-.45 1-1s-.45-1-1-1h-6V3c0-.55-.45-1-1-1s-1 .45-1 1v6h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v6H3c-.55 0-1 .45-1 1s.45 1 1 1h6v2H3c-.55 0-1 .45-1 1s.45 1 1 1h6v6c0 .55.45 1 1 1s1-.45 1-1v-6h2v6c0 .55.45 1 1 1s1-.45 1-1v-6h6c.55 0 1-.45 1-1s-.45-1-1-1zm-8 0h-2v-2h2v2z" -}), 'GridGoldenratioRounded'); \ No newline at end of file +}), 'GridGoldenratioRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridGoldenratioSharp.js b/packages/material-ui-icons/lib/GridGoldenratioSharp.js index ff047284874363..7dc7719089b99c 100644 --- a/packages/material-ui-icons/lib/GridGoldenratioSharp.js +++ b/packages/material-ui-icons/lib/GridGoldenratioSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" -}), 'GridGoldenratioSharp'); \ No newline at end of file +}), 'GridGoldenratioSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridGoldenratioTwoTone.js b/packages/material-ui-icons/lib/GridGoldenratioTwoTone.js index 1ceebf1334dbe2..a127801e128247 100644 --- a/packages/material-ui-icons/lib/GridGoldenratioTwoTone.js +++ b/packages/material-ui-icons/lib/GridGoldenratioTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" -}), 'GridGoldenratioTwoTone'); \ No newline at end of file +}), 'GridGoldenratioTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOff.js b/packages/material-ui-icons/lib/GridOff.js index 43f44452fe1687..559aac0844fa1f 100644 --- a/packages/material-ui-icons/lib/GridOff.js +++ b/packages/material-ui-icons/lib/GridOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4v1.45l2 2V4h4v4h-3.45l2 2H14v1.45l2 2V10h4v4h-3.45l2 2H20v1.45l2 2V4c0-1.1-.9-2-2-2H4.55l2 2H8zm8 0h4v4h-4V4zM1.27 1.27 0 2.55l2 2V20c0 1.1.9 2 2 2h15.46l2 2 1.27-1.27L1.27 1.27zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.54V20zm2 0v-1.46L17.46 20H16z" -}), 'GridOff'); \ No newline at end of file +}), 'GridOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOffOutlined.js b/packages/material-ui-icons/lib/GridOffOutlined.js index 992e396b802aae..23f7d15f48384f 100644 --- a/packages/material-ui-icons/lib/GridOffOutlined.js +++ b/packages/material-ui-icons/lib/GridOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14 0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" -}), 'GridOffOutlined'); \ No newline at end of file +}), 'GridOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOffRounded.js b/packages/material-ui-icons/lib/GridOffRounded.js index 1978ec300c44d4..7492950f69f41b 100644 --- a/packages/material-ui-icons/lib/GridOffRounded.js +++ b/packages/material-ui-icons/lib/GridOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h3c.55 0 1 .45 1 1v3h-4V4zm6.16 17.88L2.12 1.84a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L2 4.55V20c0 1.1.9 2 2 2h15.45l1.3 1.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H5c-.55 0-1-.45-1-1v-3h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" -}), 'GridOffRounded'); \ No newline at end of file +}), 'GridOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOffSharp.js b/packages/material-ui-icons/lib/GridOffSharp.js index b30e4824a5e399..b6ce8ff59b2807 100644 --- a/packages/material-ui-icons/lib/GridOffSharp.js +++ b/packages/material-ui-icons/lib/GridOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14 0 2.55l2 2V22h17.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" -}), 'GridOffSharp'); \ No newline at end of file +}), 'GridOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOffTwoTone.js b/packages/material-ui-icons/lib/GridOffTwoTone.js index 1fb7bc7537e43b..232f11c26f3d58 100644 --- a/packages/material-ui-icons/lib/GridOffTwoTone.js +++ b/packages/material-ui-icons/lib/GridOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 14v-4h-4v2.89L17.11 14zm-10-1.45V14h1.45zM14 10h-.89l.89.89zm5.11 6 .89.89V16zM8 4h-.89l.89.89zm6 4V4h-4v2.89L11.11 8zm2-4h4v4h-4zm-6 12v4h4v-3.45l-.55-.55zm-6-6v4h4v-3.45L7.45 10zm12 10h1.45L16 18.55zM4 16h4v4H4zm0-9.45V8h1.45z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14 0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" -}, "1")], 'GridOffTwoTone'); \ No newline at end of file +}, "1")], 'GridOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOn.js b/packages/material-ui-icons/lib/GridOn.js index 24695788389f29..68e7e431f1bda0 100644 --- a/packages/material-ui-icons/lib/GridOn.js +++ b/packages/material-ui-icons/lib/GridOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" -}), 'GridOn'); \ No newline at end of file +}), 'GridOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOnOutlined.js b/packages/material-ui-icons/lib/GridOnOutlined.js index fae492b7dfbd5d..fb01257b2b40fd 100644 --- a/packages/material-ui-icons/lib/GridOnOutlined.js +++ b/packages/material-ui-icons/lib/GridOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" -}), 'GridOnOutlined'); \ No newline at end of file +}), 'GridOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOnRounded.js b/packages/material-ui-icons/lib/GridOnRounded.js index c6220b8172e2bd..e3629793c05050 100644 --- a/packages/material-ui-icons/lib/GridOnRounded.js +++ b/packages/material-ui-icons/lib/GridOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H5c-.55 0-1-.45-1-1v-3h4v4zm0-6H4v-4h4v4zm0-6H4V5c0-.55.45-1 1-1h3v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm5 12h-3v-4h4v3c0 .55-.45 1-1 1zm1-6h-4v-4h4v4zm0-6h-4V4h3c.55 0 1 .45 1 1v3z" -}), 'GridOnRounded'); \ No newline at end of file +}), 'GridOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOnSharp.js b/packages/material-ui-icons/lib/GridOnSharp.js index 99c1279618ca83..2eac4c20fa90e8 100644 --- a/packages/material-ui-icons/lib/GridOnSharp.js +++ b/packages/material-ui-icons/lib/GridOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" -}), 'GridOnSharp'); \ No newline at end of file +}), 'GridOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridOnTwoTone.js b/packages/material-ui-icons/lib/GridOnTwoTone.js index 8499da9e65323b..66de8580b5ac8f 100644 --- a/packages/material-ui-icons/lib/GridOnTwoTone.js +++ b/packages/material-ui-icons/lib/GridOnTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10h4v4h-4zm0 6h4v4h-4zM4 4h4v4H4zm0 6h4v4H4zm0 6h4v4H4zM16 4h4v4h-4zm0 6h4v4h-4zm0 6h4v4h-4zM10 4h4v4h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" -}, "1")], 'GridOnTwoTone'); \ No newline at end of file +}, "1")], 'GridOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridView.js b/packages/material-ui-icons/lib/GridView.js index fd6bba6906f7c7..e191ee6c124d51 100644 --- a/packages/material-ui-icons/lib/GridView.js +++ b/packages/material-ui-icons/lib/GridView.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z" -}), 'GridView'); \ No newline at end of file +}), 'GridView'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridViewOutlined.js b/packages/material-ui-icons/lib/GridViewOutlined.js index 1c0975968e5a6f..4b4c197d2a6e70 100644 --- a/packages/material-ui-icons/lib/GridViewOutlined.js +++ b/packages/material-ui-icons/lib/GridViewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z" -}), 'GridViewOutlined'); \ No newline at end of file +}), 'GridViewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridViewRounded.js b/packages/material-ui-icons/lib/GridViewRounded.js index d69d4d9e44cfda..3a6b83ddcceac3 100644 --- a/packages/material-ui-icons/lib/GridViewRounded.js +++ b/packages/material-ui-icons/lib/GridViewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm0 10h4c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm8-16v4c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2zm2 16h4c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2z" -}), 'GridViewRounded'); \ No newline at end of file +}), 'GridViewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridViewSharp.js b/packages/material-ui-icons/lib/GridViewSharp.js index 2c19fc7f17687f..ef198daa27a9a2 100644 --- a/packages/material-ui-icons/lib/GridViewSharp.js +++ b/packages/material-ui-icons/lib/GridViewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h8v8H3zm0 10h8v8H3zM13 3h8v8h-8zm0 10h8v8h-8z" -}), 'GridViewSharp'); \ No newline at end of file +}), 'GridViewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GridViewTwoTone.js b/packages/material-ui-icons/lib/GridViewTwoTone.js index dd5c7f0a3339c6..30182149572b61 100644 --- a/packages/material-ui-icons/lib/GridViewTwoTone.js +++ b/packages/material-ui-icons/lib/GridViewTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h4v4H5zm0 10h4v4H5zm10 0h4v4h-4zm0-10h4v4h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h8v-8H3v8zm2-6h4v4H5v-4zm-2-4h8V3H3v8zm2-6h4v4H5V5zm8 16h8v-8h-8v8zm2-6h4v4h-4v-4zM13 3v8h8V3h-8zm6 6h-4V5h4v4z" -}, "1")], 'GridViewTwoTone'); \ No newline at end of file +}, "1")], 'GridViewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Group.js b/packages/material-ui-icons/lib/Group.js index 5555676209c164..dd465c9ad3cc64 100644 --- a/packages/material-ui-icons/lib/Group.js +++ b/packages/material-ui-icons/lib/Group.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" -}), 'Group'); \ No newline at end of file +}), 'Group'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupAdd.js b/packages/material-ui-icons/lib/GroupAdd.js index c55357238f78e8..70fe7a8963d082 100644 --- a/packages/material-ui-icons/lib/GroupAdd.js +++ b/packages/material-ui-icons/lib/GroupAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10H5V7H3v3H0v2h3v3h2v-3h3v-2zm10 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm6.62 2.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84zM13 13c-2 0-6 1-6 3v2h12v-2c0-2-4-3-6-3z" -}), 'GroupAdd'); \ No newline at end of file +}), 'GroupAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupAddOutlined.js b/packages/material-ui-icons/lib/GroupAddOutlined.js index ecdc05130244db..2ecca74e53085c 100644 --- a/packages/material-ui-icons/lib/GroupAddOutlined.js +++ b/packages/material-ui-icons/lib/GroupAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15v-3h3v-2H5V7H3v3H0v2h3v3zm7-1.25c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm5 5c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z" -}), 'GroupAddOutlined'); \ No newline at end of file +}), 'GroupAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupAddRounded.js b/packages/material-ui-icons/lib/GroupAddRounded.js index 7337d221a2efed..8f15bc6df3987e 100644 --- a/packages/material-ui-icons/lib/GroupAddRounded.js +++ b/packages/material-ui-icons/lib/GroupAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 10H5V8c0-.55-.45-1-1-1s-1 .45-1 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1zm11 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5s-3 1.34-3 3 1.34 3 3 3zm0 2c-2 0-6 1-6 3v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-1c0-2-4-3-6-3zm6.62.16c.83.73 1.38 1.66 1.38 2.84v1.5c0 .17-.02.34-.05.5h2.55c.28 0 .5-.22.5-.5V16c0-1.54-2.37-2.49-4.38-2.84z" -}), 'GroupAddRounded'); \ No newline at end of file +}), 'GroupAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupAddSharp.js b/packages/material-ui-icons/lib/GroupAddSharp.js index c65ba3e2906a49..30991edfa5016e 100644 --- a/packages/material-ui-icons/lib/GroupAddSharp.js +++ b/packages/material-ui-icons/lib/GroupAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10H5V7H3v3H0v2h3v3h2v-3h3v-2zm10 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5s-3 1.34-3 3 1.34 3 3 3zm6.62 2.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84zM13 13c-2 0-6 1-6 3v2h12v-2c0-2-4-3-6-3z" -}), 'GroupAddSharp'); \ No newline at end of file +}), 'GroupAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupAddTwoTone.js b/packages/material-ui-icons/lib/GroupAddTwoTone.js index eee250d41f3393..159d9b4a1ca960 100644 --- a/packages/material-ui-icons/lib/GroupAddTwoTone.js +++ b/packages/material-ui-icons/lib/GroupAddTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15v-3h3v-2H5V7H3v3H0v2h3v3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "8.5", r: "1.5", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM17 12c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z" -}, "3")], 'GroupAddTwoTone'); \ No newline at end of file +}, "3")], 'GroupAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupOutlined.js b/packages/material-ui-icons/lib/GroupOutlined.js index d5da1c5ad40eee..66263eb7340619 100644 --- a/packages/material-ui-icons/lib/GroupOutlined.js +++ b/packages/material-ui-icons/lib/GroupOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}), 'GroupOutlined'); \ No newline at end of file +}), 'GroupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupRounded.js b/packages/material-ui-icons/lib/GroupRounded.js index 377902874efc36..f227cbced9ba6c 100644 --- a/packages/material-ui-icons/lib/GroupRounded.js +++ b/packages/material-ui-icons/lib/GroupRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z" -}), 'GroupRounded'); \ No newline at end of file +}), 'GroupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupSharp.js b/packages/material-ui-icons/lib/GroupSharp.js index 557041af652536..28265fa8bdaa98 100644 --- a/packages/material-ui-icons/lib/GroupSharp.js +++ b/packages/material-ui-icons/lib/GroupSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" -}), 'GroupSharp'); \ No newline at end of file +}), 'GroupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupTwoTone.js b/packages/material-ui-icons/lib/GroupTwoTone.js index 6380646210eead..eef04710ea8f84 100644 --- a/packages/material-ui-icons/lib/GroupTwoTone.js +++ b/packages/material-ui-icons/lib/GroupTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8.5", r: "1.5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}, "2")], 'GroupTwoTone'); \ No newline at end of file +}, "2")], 'GroupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupWork.js b/packages/material-ui-icons/lib/GroupWork.js index 822d3783743f83..ff58df788018a5 100644 --- a/packages/material-ui-icons/lib/GroupWork.js +++ b/packages/material-ui-icons/lib/GroupWork.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'GroupWork'); \ No newline at end of file +}), 'GroupWork'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupWorkOutlined.js b/packages/material-ui-icons/lib/GroupWorkOutlined.js index 561142eac98010..5f15cc470d2cf5 100644 --- a/packages/material-ui-icons/lib/GroupWorkOutlined.js +++ b/packages/material-ui-icons/lib/GroupWorkOutlined.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "14", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "8", r: "2" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "14", r: "2" -}, "3")], 'GroupWorkOutlined'); \ No newline at end of file +}, "3")], 'GroupWorkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupWorkRounded.js b/packages/material-ui-icons/lib/GroupWorkRounded.js index 411faf6343a168..d544de7133206e 100644 --- a/packages/material-ui-icons/lib/GroupWorkRounded.js +++ b/packages/material-ui-icons/lib/GroupWorkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'GroupWorkRounded'); \ No newline at end of file +}), 'GroupWorkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupWorkSharp.js b/packages/material-ui-icons/lib/GroupWorkSharp.js index 30c58a0dee2506..4352a110b509b8 100644 --- a/packages/material-ui-icons/lib/GroupWorkSharp.js +++ b/packages/material-ui-icons/lib/GroupWorkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'GroupWorkSharp'); \ No newline at end of file +}), 'GroupWorkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupWorkTwoTone.js b/packages/material-ui-icons/lib/GroupWorkTwoTone.js index 862004ef5902e5..81afaaf6705aa3 100644 --- a/packages/material-ui-icons/lib/GroupWorkTwoTone.js +++ b/packages/material-ui-icons/lib/GroupWorkTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM8 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4-6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "14", r: "2" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "8", r: "2" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "14", r: "2" -}, "4")], 'GroupWorkTwoTone'); \ No newline at end of file +}, "4")], 'GroupWorkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Groups.js b/packages/material-ui-icons/lib/Groups.js index 4795bae6e263b5..3200879be719cc 100644 --- a/packages/material-ui-icons/lib/Groups.js +++ b/packages/material-ui-icons/lib/Groups.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z" -}), 'Groups'); \ No newline at end of file +}), 'Groups'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupsOutlined.js b/packages/material-ui-icons/lib/GroupsOutlined.js index 7612a1310e7fe9..e4797a109efdbd 100644 --- a/packages/material-ui-icons/lib/GroupsOutlined.js +++ b/packages/material-ui-icons/lib/GroupsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zm-7.76-2.78c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9C6.68 14.13 6 15.21 6 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zM8.07 16c.09-.23.13-.39.91-.69.97-.38 1.99-.56 3.02-.56s2.05.18 3.02.56c.77.3.81.46.91.69H8.07zM12 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'GroupsOutlined'); \ No newline at end of file +}), 'GroupsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupsRounded.js b/packages/material-ui-icons/lib/GroupsRounded.js index d954d13a83851c..9a35857b27b5f0 100644 --- a/packages/material-ui-icons/lib/GroupsRounded.js +++ b/packages/material-ui-icons/lib/GroupsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V17c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V17c0 .55.45 1 1 1h3.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H23c.55 0 1-.45 1-1v-.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z" -}), 'GroupsRounded'); \ No newline at end of file +}), 'GroupsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupsSharp.js b/packages/material-ui-icons/lib/GroupsSharp.js index 8e2fc0950236a9..d4a624ba4ccc03 100644 --- a/packages/material-ui-icons/lib/GroupsSharp.js +++ b/packages/material-ui-icons/lib/GroupsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z" -}), 'GroupsSharp'); \ No newline at end of file +}), 'GroupsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/GroupsTwoTone.js b/packages/material-ui-icons/lib/GroupsTwoTone.js index 027a3992589cac..96bb67e2b5d969 100644 --- a/packages/material-ui-icons/lib/GroupsTwoTone.js +++ b/packages/material-ui-icons/lib/GroupsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.07 16c.09-.23.13-.39.91-.69.97-.38 1.99-.56 3.02-.56s2.05.18 3.02.56c.77.3.81.46.91.69H8.07zM12 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zm-7.76-2.78c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9C6.68 14.13 6 15.21 6 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zM8.07 16c.09-.23.13-.39.91-.69.97-.38 1.99-.56 3.02-.56s2.05.18 3.02.56c.77.3.81.46.91.69H8.07zM12 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}, "1")], 'GroupsTwoTone'); \ No newline at end of file +}, "1")], 'GroupsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HMobiledata.js b/packages/material-ui-icons/lib/HMobiledata.js index 66786ee2e70893..e71ef9e2ed8d27 100644 --- a/packages/material-ui-icons/lib/HMobiledata.js +++ b/packages/material-ui-icons/lib/HMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" -}), 'HMobiledata'); \ No newline at end of file +}), 'HMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HMobiledataOutlined.js b/packages/material-ui-icons/lib/HMobiledataOutlined.js index 19a3146843c5e6..dc92d48bf5493b 100644 --- a/packages/material-ui-icons/lib/HMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/HMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" -}), 'HMobiledataOutlined'); \ No newline at end of file +}), 'HMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HMobiledataRounded.js b/packages/material-ui-icons/lib/HMobiledataRounded.js index 2ed86dbd2a91e9..8fea78dff28f2e 100644 --- a/packages/material-ui-icons/lib/HMobiledataRounded.js +++ b/packages/material-ui-icons/lib/HMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11H9V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1v-3h6v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v3z" -}), 'HMobiledataRounded'); \ No newline at end of file +}), 'HMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HMobiledataSharp.js b/packages/material-ui-icons/lib/HMobiledataSharp.js index 4bb9914276d6e4..f1b1dc55b91fb6 100644 --- a/packages/material-ui-icons/lib/HMobiledataSharp.js +++ b/packages/material-ui-icons/lib/HMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" -}), 'HMobiledataSharp'); \ No newline at end of file +}), 'HMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HMobiledataTwoTone.js b/packages/material-ui-icons/lib/HMobiledataTwoTone.js index af51074a5edf9a..ec65879bd67bf8 100644 --- a/packages/material-ui-icons/lib/HMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/HMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" -}), 'HMobiledataTwoTone'); \ No newline at end of file +}), 'HMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HPlusMobiledata.js b/packages/material-ui-icons/lib/HPlusMobiledata.js index d91d468a507e53..2081da6725fb7a 100644 --- a/packages/material-ui-icons/lib/HPlusMobiledata.js +++ b/packages/material-ui-icons/lib/HPlusMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'HPlusMobiledata'); \ No newline at end of file +}), 'HPlusMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HPlusMobiledataOutlined.js b/packages/material-ui-icons/lib/HPlusMobiledataOutlined.js index ab8f0570bec61e..c0a0723921d65d 100644 --- a/packages/material-ui-icons/lib/HPlusMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/HPlusMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'HPlusMobiledataOutlined'); \ No newline at end of file +}), 'HPlusMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HPlusMobiledataRounded.js b/packages/material-ui-icons/lib/HPlusMobiledataRounded.js index d43c3d453a625a..1f36b268dfd1dd 100644 --- a/packages/material-ui-icons/lib/HPlusMobiledataRounded.js +++ b/packages/material-ui-icons/lib/HPlusMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11H6V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1v-3h6v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v3zm9 0h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'HPlusMobiledataRounded'); \ No newline at end of file +}), 'HPlusMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HPlusMobiledataSharp.js b/packages/material-ui-icons/lib/HPlusMobiledataSharp.js index 5af2de9905f075..25276f264f7d5b 100644 --- a/packages/material-ui-icons/lib/HPlusMobiledataSharp.js +++ b/packages/material-ui-icons/lib/HPlusMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'HPlusMobiledataSharp'); \ No newline at end of file +}), 'HPlusMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HPlusMobiledataTwoTone.js b/packages/material-ui-icons/lib/HPlusMobiledataTwoTone.js index 9fecd0e3aa1c31..04d86041e8bf22 100644 --- a/packages/material-ui-icons/lib/HPlusMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/HPlusMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'HPlusMobiledataTwoTone'); \ No newline at end of file +}), 'HPlusMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hail.js b/packages/material-ui-icons/lib/Hail.js index b161ffa78d10ca..f5443a200f8b7e 100644 --- a/packages/material-ui-icons/lib/Hail.js +++ b/packages/material-ui-icons/lib/Hail.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2v.4c-.1 2.2-.8 3.9-2.3 5.1-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.9.7-1.39 1.6-1.4 3.1v.5H5v-.5c0-2 .71-3.59 2.11-4.79C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C16.48 5.14 17 4 17 2.5V2zM4 16h3v6H4v-6z" -}), 'Hail'); \ No newline at end of file +}), 'Hail'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HailOutlined.js b/packages/material-ui-icons/lib/HailOutlined.js index 461433c9ba0e9e..7ba51f38eab88b 100644 --- a/packages/material-ui-icons/lib/HailOutlined.js +++ b/packages/material-ui-icons/lib/HailOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z" -}), 'HailOutlined'); \ No newline at end of file +}), 'HailOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HailRounded.js b/packages/material-ui-icons/lib/HailRounded.js index 4ced067f0af6af..0fb79e05e7948e 100644 --- a/packages/material-ui-icons/lib/HailRounded.js +++ b/packages/material-ui-icons/lib/HailRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.95-4c.59 0 1.06.51 1 1.09-.02.15-.21 4.06-3.95 5.31V21c0 .55-.45 1-1 1s-1-.45-1-1v-5h-2v5c0 .55-.45 1-1 1s-1-.45-1-1V10.1c-.3.1-.5.2-.6.3-.46.36-1.17.87-1.36 2.67-.05.52-.47.93-1 .93-.58 0-1.05-.49-1-1.07.13-1.6.62-2.98 2.07-4.22C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06c.43-.34 1.28-.99 1.48-3.02.05-.52.47-.92.99-.92zM5 16h1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1z" -}), 'HailRounded'); \ No newline at end of file +}), 'HailRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HailSharp.js b/packages/material-ui-icons/lib/HailSharp.js index 76431db011eb1c..fd0fdabdf9ecf4 100644 --- a/packages/material-ui-icons/lib/HailSharp.js +++ b/packages/material-ui-icons/lib/HailSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z" -}), 'HailSharp'); \ No newline at end of file +}), 'HailSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HailTwoTone.js b/packages/material-ui-icons/lib/HailTwoTone.js index 98fed8e213f76f..fc9b16b6204790 100644 --- a/packages/material-ui-icons/lib/HailTwoTone.js +++ b/packages/material-ui-icons/lib/HailTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z" -}), 'HailTwoTone'); \ No newline at end of file +}), 'HailTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Handyman.js b/packages/material-ui-icons/lib/Handyman.js index adff5e74162f4c..1cc6e3b36cd946 100644 --- a/packages/material-ui-icons/lib/Handyman.js +++ b/packages/material-ui-icons/lib/Handyman.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.67 18.17-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05z" -}, "1")], 'Handyman'); \ No newline at end of file +}, "1")], 'Handyman'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HandymanOutlined.js b/packages/material-ui-icons/lib/HandymanOutlined.js index ed5142e02986f0..d84803f1dbe293 100644 --- a/packages/material-ui-icons/lib/HandymanOutlined.js +++ b/packages/material-ui-icons/lib/HandymanOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.67 18.17-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41zm-2.83 1.42-4.24-4.24.71-.71 4.24 4.24-.71.71z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05zm-7.98 5.15-4.24 4.24-.71-.71 4.24-4.24.71.71z" -}, "1")], 'HandymanOutlined'); \ No newline at end of file +}, "1")], 'HandymanOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HandymanRounded.js b/packages/material-ui-icons/lib/HandymanRounded.js index 4cdf806bad3d9e..003b8d415365dd 100644 --- a/packages/material-ui-icons/lib/HandymanRounded.js +++ b/packages/material-ui-icons/lib/HandymanRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.67 18.17-4.72-4.72c-.48-.48-.99-.59-1.58-.59l-2.54 2.54c0 .59.11 1.11.59 1.58l4.72 4.72c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.63 9.49c.39.39 1.02.39 1.41 0l.71-.71 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-2.83-2.83a.9959.9959 0 0 0-1.41 0l-.71.71V2c0-.62-.76-.95-1.21-.5l-2.54 2.54c-.45.45-.12 1.21.5 1.21h2.54l-.71.71c-.39.39-.39 1.02 0 1.41l.35.35-2.89 2.89-4.11-4.13v-1c0-.27-.11-.52-.29-.71L5.54 2.74a.9959.9959 0 0 0-1.41 0L2.71 4.16c-.39.39-.39 1.02 0 1.41L4.73 7.6c.19.19.44.29.71.29h1l4.13 4.13-.85.85h-1.3c-.53 0-1.04.21-1.41.59l-4.72 4.72c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l4.72-4.72c.38-.38.59-.88.59-1.41v-1.29l5.15-5.15.35.35z" -}, "1")], 'HandymanRounded'); \ No newline at end of file +}, "1")], 'HandymanRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HandymanSharp.js b/packages/material-ui-icons/lib/HandymanSharp.js index 49ef26a59d793a..01e05900ef1083 100644 --- a/packages/material-ui-icons/lib/HandymanSharp.js +++ b/packages/material-ui-icons/lib/HandymanSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.37 12.87h-.99l-2.54 2.54v.99l6.01 6.01 3.54-3.54-6.02-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-6.01 6.01 3.54 3.54 6.01-6.01V14.3l5.15-5.15 1.05 1.04z" -}, "1")], 'HandymanSharp'); \ No newline at end of file +}, "1")], 'HandymanSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HandymanTwoTone.js b/packages/material-ui-icons/lib/HandymanTwoTone.js index e76c14c62a3d5f..a4172473e284e2 100644 --- a/packages/material-ui-icons/lib/HandymanTwoTone.js +++ b/packages/material-ui-icons/lib/HandymanTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.66 14.64-4.25 4.24.71.71 4.24-4.25-.7-.7zm5.9356.7054.7071-.7072 4.2426 4.2427-.707.7071z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.67 18.17-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41zm-2.83 1.42-4.24-4.24.71-.71 4.24 4.24-.71.71z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05zm-7.98 5.15-4.24 4.24-.71-.71 4.24-4.24.71.71z" -}, "2")], 'HandymanTwoTone'); \ No newline at end of file +}, "2")], 'HandymanTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hardware.js b/packages/material-ui-icons/lib/Hardware.js index 1d032c351c7c43..ec2fe783c09a52 100644 --- a/packages/material-ui-icons/lib/Hardware.js +++ b/packages/material-ui-icons/lib/Hardware.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v3h6V8l3 3h2V3h-2zM9 13v7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-7H9z" -}), 'Hardware'); \ No newline at end of file +}), 'Hardware'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HardwareOutlined.js b/packages/material-ui-icons/lib/HardwareOutlined.js index a221fda89716b1..ed952e6ff640e2 100644 --- a/packages/material-ui-icons/lib/HardwareOutlined.js +++ b/packages/material-ui-icons/lib/HardwareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v12c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8l3 3h2V3h-2zm-5 16h-2v-6h2v6zm-2-8V6H6.77C7.32 5.39 8.11 5 9 5h4v6h-2z" -}), 'HardwareOutlined'); \ No newline at end of file +}), 'HardwareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HardwareRounded.js b/packages/material-ui-icons/lib/HardwareRounded.js index a0d9ed0c28b10c..442ac2de22328f 100644 --- a/packages/material-ui-icons/lib/HardwareRounded.js +++ b/packages/material-ui-icons/lib/HardwareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.59 3.41 15 6V5c0-1.1-.9-2-2-2H9C6.24 3 4 5.24 4 8h5v3h6V8l2.59 2.59c.26.26.62.41 1 .41h.01c.77 0 1.4-.63 1.4-1.41V4.41C20 3.63 19.37 3 18.59 3h-.01c-.37 0-.73.15-.99.41zM9 13v7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-7H9z" -}), 'HardwareRounded'); \ No newline at end of file +}), 'HardwareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HardwareSharp.js b/packages/material-ui-icons/lib/HardwareSharp.js index 4647d53400c7d2..e56ef93004394a 100644 --- a/packages/material-ui-icons/lib/HardwareSharp.js +++ b/packages/material-ui-icons/lib/HardwareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v3h6V8l3 3h2V3h-2zM9 13v8h6v-8H9z" -}), 'HardwareSharp'); \ No newline at end of file +}), 'HardwareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HardwareTwoTone.js b/packages/material-ui-icons/lib/HardwareTwoTone.js index d30a1a889ef0ec..451d0fbd6d46dd 100644 --- a/packages/material-ui-icons/lib/HardwareTwoTone.js +++ b/packages/material-ui-icons/lib/HardwareTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.77 6H11v5h2V5H9c-.89 0-1.68.39-2.23 1zM11 13h2v6h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v12c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8l3 3h2V3h-2zm-5 16h-2v-6h2v6zm0-8h-2V6H6.77C7.32 5.39 8.11 5 9 5h4v6z" -}, "1")], 'HardwareTwoTone'); \ No newline at end of file +}, "1")], 'HardwareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hd.js b/packages/material-ui-icons/lib/Hd.js index 1dca6e5423358a..9a9637f4d28958 100644 --- a/packages/material-ui-icons/lib/Hd.js +++ b/packages/material-ui-icons/lib/Hd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 12H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z" -}), 'Hd'); \ No newline at end of file +}), 'Hd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdOutlined.js b/packages/material-ui-icons/lib/HdOutlined.js index ba515e5d101d33..3b7b391873e510 100644 --- a/packages/material-ui-icons/lib/HdOutlined.js +++ b/packages/material-ui-icons/lib/HdOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zM18 14v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z" -}), 'HdOutlined'); \ No newline at end of file +}), 'HdOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdRounded.js b/packages/material-ui-icons/lib/HdRounded.js index f72cb6cf432067..59dc16a54309d7 100644 --- a/packages/material-ui-icons/lib/HdRounded.js +++ b/packages/material-ui-icons/lib/HdRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 12c-.41 0-.75-.34-.75-.75V13h-2v1.25c0 .41-.34.75-.75.75S6 14.66 6 14.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.75h2V9.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zm3.25-6H17c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-3.5c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5zm1 4.5h2v-3h-2v3z" -}), 'HdRounded'); \ No newline at end of file +}), 'HdRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdSharp.js b/packages/material-ui-icons/lib/HdSharp.js index b0307eafb63a6a..227c9e04b95b3d 100644 --- a/packages/material-ui-icons/lib/HdSharp.js +++ b/packages/material-ui-icons/lib/HdSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z" -}), 'HdSharp'); \ No newline at end of file +}), 'HdSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdTwoTone.js b/packages/material-ui-icons/lib/HdTwoTone.js index 63c09700c748ee..2be0af06473e95 100644 --- a/packages/material-ui-icons/lib/HdTwoTone.js +++ b/packages/material-ui-icons/lib/HdTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5h2v3h-2zM19 5H5v14h14V5zm-8 10H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-4V9h4c.55 0 1 .45 1 1v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm4.5 6.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-4v6h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z" -}, "1")], 'HdTwoTone'); \ No newline at end of file +}, "1")], 'HdTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAuto.js b/packages/material-ui-icons/lib/HdrAuto.js index 17fda6ee108f82..57188784929d62 100644 --- a/packages/material-ui-icons/lib/HdrAuto.js +++ b/packages/material-ui-icons/lib/HdrAuto.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.04 8.04h-.09l-1.6 4.55h3.29z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.21 15-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z" -}, "1")], 'HdrAuto'); \ No newline at end of file +}, "1")], 'HdrAuto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoOutlined.js b/packages/material-ui-icons/lib/HdrAutoOutlined.js index 182deef2458711..4a4c08c8952f72 100644 --- a/packages/material-ui-icons/lib/HdrAutoOutlined.js +++ b/packages/material-ui-icons/lib/HdrAutoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-.99-14L6.88 17h1.9l1-2.81h4.44l.99 2.81h1.9L12.98 6h-1.97zm-.66 6.59 1.6-4.55h.09l1.6 4.55h-3.29z" -}), 'HdrAutoOutlined'); \ No newline at end of file +}), 'HdrAutoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoRounded.js b/packages/material-ui-icons/lib/HdrAutoRounded.js index a38778e4b79d11..0dbfc19b77d270 100644 --- a/packages/material-ui-icons/lib/HdrAutoRounded.js +++ b/packages/material-ui-icons/lib/HdrAutoRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.04 8.04h-.09l-1.6 4.55h3.29z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3 14.41-.78-2.22H9.78l-.79 2.22c-.12.35-.46.59-.83.59-.62 0-1.05-.62-.83-1.2l3.34-8.88C10.88 6.37 11.4 6 12 6c.59 0 1.12.37 1.33.92l3.34 8.88c.22.58-.21 1.2-.83 1.2-.38 0-.72-.24-.84-.59z" -}, "1")], 'HdrAutoRounded'); \ No newline at end of file +}, "1")], 'HdrAutoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoSelect.js b/packages/material-ui-icons/lib/HdrAutoSelect.js index 5f1622b97fe828..c6361d699db10f 100644 --- a/packages/material-ui-icons/lib/HdrAutoSelect.js +++ b/packages/material-ui-icons/lib/HdrAutoSelect.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm6.5-4.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" -}, "1")], 'HdrAutoSelect'); \ No newline at end of file +}, "1")], 'HdrAutoSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoSelectOutlined.js b/packages/material-ui-icons/lib/HdrAutoSelectOutlined.js index 0cbd74640c796b..e1d17523be50d4 100644 --- a/packages/material-ui-icons/lib/HdrAutoSelectOutlined.js +++ b/packages/material-ui-icons/lib/HdrAutoSelectOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zM3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM16.5 16H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" -}, "1")], 'HdrAutoSelectOutlined'); \ No newline at end of file +}, "1")], 'HdrAutoSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoSelectRounded.js b/packages/material-ui-icons/lib/HdrAutoSelectRounded.js index b025d8db9ba633..e007a28059ef90 100644 --- a/packages/material-ui-icons/lib/HdrAutoSelectRounded.js +++ b/packages/material-ui-icons/lib/HdrAutoSelectRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16H7.25c-.41 0-.75.34-.75.75v4.5c0 .41.34.75.75.75H10c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5zm0 4.5H8v-3h2v3zM4.25 16c-.41 0-.75.34-.75.75V18h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75zm19 2.5H22v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.25h-1.25c-.41 0-.75.34-.75.75s.34.75.75.75h1.25v1.25c0 .41.34.75.75.75s.75-.34.75-.75V20h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zM16.5 16h-2.75c-.41 0-.75.34-.75.75v4.56c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4v-1c0-.83-.67-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.44 9c-.24 0-.45-.15-.53-.38l-.49-1.41h-2.83l-.5 1.41c-.08.23-.29.38-.53.38-.39 0-.67-.39-.53-.76l2.12-5.65c.14-.36.47-.59.85-.59s.71.23.85.59l2.12 5.65c.14.37-.13.76-.53.76z" -}, "1")], 'HdrAutoSelectRounded'); \ No newline at end of file +}, "1")], 'HdrAutoSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoSelectSharp.js b/packages/material-ui-icons/lib/HdrAutoSelectSharp.js index 06c9dc3103660e..df59a698cdce81 100644 --- a/packages/material-ui-icons/lib/HdrAutoSelectSharp.js +++ b/packages/material-ui-icons/lib/HdrAutoSelectSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm12-2v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM13 22h1.5v-2h1.1l.9 2H18l-.86-2H18v-4h-5v6zm1.5-4.5h2v1h-2v-1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" -}, "1")], 'HdrAutoSelectSharp'); \ No newline at end of file +}, "1")], 'HdrAutoSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoSelectTwoTone.js b/packages/material-ui-icons/lib/HdrAutoSelectTwoTone.js index aa8abf2d86e5f4..fa5c3cef71a2f7 100644 --- a/packages/material-ui-icons/lib/HdrAutoSelectTwoTone.js +++ b/packages/material-ui-icons/lib/HdrAutoSelectTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm13-2H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm1.97-15.2-1.02 2.89h2.1L12.03 5.3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" -}, "1")], 'HdrAutoSelectTwoTone'); \ No newline at end of file +}, "1")], 'HdrAutoSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoSharp.js b/packages/material-ui-icons/lib/HdrAutoSharp.js index 5269ef97a889f5..454b0f2341942b 100644 --- a/packages/material-ui-icons/lib/HdrAutoSharp.js +++ b/packages/material-ui-icons/lib/HdrAutoSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.04 8.04h-.09l-1.6 4.55h3.29z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.21 15-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z" -}, "1")], 'HdrAutoSharp'); \ No newline at end of file +}, "1")], 'HdrAutoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrAutoTwoTone.js b/packages/material-ui-icons/lib/HdrAutoTwoTone.js index 97e574be904384..38fe6a9a77ce56 100644 --- a/packages/material-ui-icons/lib/HdrAutoTwoTone.js +++ b/packages/material-ui-icons/lib/HdrAutoTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.04 8.04h-.09l-1.6 4.55h3.29z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm3.21 13-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.01 6 6.88 17h1.9l1-2.81h4.44l.99 2.81h1.9L12.98 6h-1.97zm-.66 6.59 1.6-4.55h.09l1.6 4.55h-3.29z" -}, "3")], 'HdrAutoTwoTone'); \ No newline at end of file +}, "3")], 'HdrAutoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrEnhancedSelect.js b/packages/material-ui-icons/lib/HdrEnhancedSelect.js index 67ad5fdf7d06cb..71b4fe26e988a7 100644 --- a/packages/material-ui-icons/lib/HdrEnhancedSelect.js +++ b/packages/material-ui-icons/lib/HdrEnhancedSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm1 7h-2V9H9V7h2V5h2v2h2v2h-2v2zm11 9h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zm-6-1.5c0 .6-.4 1.1-.9 1.4L18 22h-1.5l-.9-2h-1.1v2H13v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm-1.5 0v-1h-2v1h2zm-13-.5v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2h2zm6.5-2c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H6.5v-6H10zm0 4.5v-3H8v3h2z" -}), 'HdrEnhancedSelect'); \ No newline at end of file +}), 'HdrEnhancedSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrEnhancedSelectOutlined.js b/packages/material-ui-icons/lib/HdrEnhancedSelectOutlined.js index 5ead459fcfbd8d..ed95e8f3b471a3 100644 --- a/packages/material-ui-icons/lib/HdrEnhancedSelectOutlined.js +++ b/packages/material-ui-icons/lib/HdrEnhancedSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm1 7h-2V9H9V7h2V5h2v2h2v2h-2v2zm11 9h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zm-6-1.5c0 .6-.4 1.1-.9 1.4L18 22h-1.5l-.9-2h-1.1v2H13v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm-1.5 0v-1h-2v1h2zm-13-.5v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2h2zm6.5-2c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H6.5v-6H10zm0 4.5v-3H8v3h2z" -}), 'HdrEnhancedSelectOutlined'); \ No newline at end of file +}), 'HdrEnhancedSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrEnhancedSelectRounded.js b/packages/material-ui-icons/lib/HdrEnhancedSelectRounded.js index 4e9868d8592441..f0530ce75ea0d5 100644 --- a/packages/material-ui-icons/lib/HdrEnhancedSelectRounded.js +++ b/packages/material-ui-icons/lib/HdrEnhancedSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2 7h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V9h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V6c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1zm-4 7H7c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5h3c.82 0 1.5-.67 1.5-1.5v-3c0-.83-.68-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm6.5-4.5H14c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4v-1c0-.83-.67-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zm-13-.5h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75V18zm18.5.5v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.25h-1.25c-.41 0-.75.34-.75.75s.34.75.75.75h1.25v1.25c0 .41.34.75.75.75s.75-.34.75-.75V20h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H22z" -}), 'HdrEnhancedSelectRounded'); \ No newline at end of file +}), 'HdrEnhancedSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrEnhancedSelectSharp.js b/packages/material-ui-icons/lib/HdrEnhancedSelectSharp.js index 79aa2c6f7bf806..00f0d00f74ae9f 100644 --- a/packages/material-ui-icons/lib/HdrEnhancedSelectSharp.js +++ b/packages/material-ui-icons/lib/HdrEnhancedSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm3 7h-2v2h-2V9H9V7h2V5h2v2h2v2zm-5 7H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm8-4.5h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18v-4zm-1.5 2.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5z" -}), 'HdrEnhancedSelectSharp'); \ No newline at end of file +}), 'HdrEnhancedSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrEnhancedSelectTwoTone.js b/packages/material-ui-icons/lib/HdrEnhancedSelectTwoTone.js index 5ba3739f379b54..70ddf26d697fe6 100644 --- a/packages/material-ui-icons/lib/HdrEnhancedSelectTwoTone.js +++ b/packages/material-ui-icons/lib/HdrEnhancedSelectTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm3 5h-2v2h-2V9H9V7h2V5h2v2h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5h-2v2H9v2h2v2h2V9h2V7h-2zM3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM16.5 16H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3z" -}, "2")], 'HdrEnhancedSelectTwoTone'); \ No newline at end of file +}, "2")], 'HdrEnhancedSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOff.js b/packages/material-ui-icons/lib/HdrOff.js index d3d9b59d4e7ff6..8d5e354d30d709 100644 --- a/packages/material-ui-icons/lib/HdrOff.js +++ b/packages/material-ui-icons/lib/HdrOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z" -}), 'HdrOff'); \ No newline at end of file +}), 'HdrOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffOutlined.js b/packages/material-ui-icons/lib/HdrOffOutlined.js index e53b560c6f30a3..19c61fbf873120 100644 --- a/packages/material-ui-icons/lib/HdrOffOutlined.js +++ b/packages/material-ui-icons/lib/HdrOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49 1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" -}), 'HdrOffOutlined'); \ No newline at end of file +}), 'HdrOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffRounded.js b/packages/material-ui-icons/lib/HdrOffRounded.js index 1befec227a9e6e..37be184bdbc24c 100644 --- a/packages/material-ui-icons/lib/HdrOffRounded.js +++ b/packages/material-ui-icons/lib/HdrOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 14.25V13h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.96l-.49-1.14c.5-.3.9-.8.9-1.4v-1c0-.83-.67-1.5-1.5-1.5H17c-.55 0-1 .45-1 1v3.9l1.04 1.04c.27-.11.46-.38.46-.69zm0-3.75h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.82-.68-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm8.03 10.53-18-18c-.29-.29-.76-.29-1.05 0-.29.29-.29.76 0 1.05l4.98 4.98c-.27.11-.46.38-.46.69V11h-2V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75V10.1l1.5 1.5v2.9c0 .28.22.5.5.5h2.5c.12 0 .24-.01.36-.04l7.11 7.11c.29.29.76.29 1.05 0 .29-.28.29-.75.01-1.04z" -}), 'HdrOffRounded'); \ No newline at end of file +}), 'HdrOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffSelect.js b/packages/material-ui-icons/lib/HdrOffSelect.js index 0c744be5d098fa..90048bef5c7251 100644 --- a/packages/material-ui-icons/lib/HdrOffSelect.js +++ b/packages/material-ui-icons/lib/HdrOffSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" -}), 'HdrOffSelect'); \ No newline at end of file +}), 'HdrOffSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffSelectOutlined.js b/packages/material-ui-icons/lib/HdrOffSelectOutlined.js index f613b72fb68417..5e9e1f28c01d6c 100644 --- a/packages/material-ui-icons/lib/HdrOffSelectOutlined.js +++ b/packages/material-ui-icons/lib/HdrOffSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" -}), 'HdrOffSelectOutlined'); \ No newline at end of file +}), 'HdrOffSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffSelectRounded.js b/packages/material-ui-icons/lib/HdrOffSelectRounded.js index b5629780a33305..449a2d5ec2c1cb 100644 --- a/packages/material-ui-icons/lib/HdrOffSelectRounded.js +++ b/packages/material-ui-icons/lib/HdrOffSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.83-.67-1.5-1.5-1.5H14c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75V18zm6.5-2H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1H10c.82 0 1.5-.67 1.5-1.5v-3c0-.83-.68-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm13.25-.5H22v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V20h-1.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.25v-1.25c0-.41.34-.75.75-.75s.75.34.75.75v1.25h1.25c.41 0 .75.34.75.75s-.34.75-.75.75zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zm-5.35-1.1c-.39.39-.39 1.02 0 1.41l.96.96c-2.42 5.1 2.88 10.41 7.99 7.99l.95.95c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-9.9-9.91c-.38-.38-1.02-.38-1.41.01zm2.52 3.93 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" -}), 'HdrOffSelectRounded'); \ No newline at end of file +}), 'HdrOffSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffSelectSharp.js b/packages/material-ui-icons/lib/HdrOffSelectSharp.js index 7cf6aa6e93060c..d6ec22fef302ca 100644 --- a/packages/material-ui-icons/lib/HdrOffSelectSharp.js +++ b/packages/material-ui-icons/lib/HdrOffSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20v-4h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18zm-1.5-1.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" -}), 'HdrOffSelectSharp'); \ No newline at end of file +}), 'HdrOffSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffSelectTwoTone.js b/packages/material-ui-icons/lib/HdrOffSelectTwoTone.js index d3b2d9d761f5ae..9729318be57ce4 100644 --- a/packages/material-ui-icons/lib/HdrOffSelectTwoTone.js +++ b/packages/material-ui-icons/lib/HdrOffSelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" -}), 'HdrOffSelectTwoTone'); \ No newline at end of file +}), 'HdrOffSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffSharp.js b/packages/material-ui-icons/lib/HdrOffSharp.js index 833fb4999812be..0e7854efe40fa9 100644 --- a/packages/material-ui-icons/lib/HdrOffSharp.js +++ b/packages/material-ui-icons/lib/HdrOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1h.9V9h-5v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49 1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" -}), 'HdrOffSharp'); \ No newline at end of file +}), 'HdrOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOffTwoTone.js b/packages/material-ui-icons/lib/HdrOffTwoTone.js index 2c179b476227a9..24029fb7ac7485 100644 --- a/packages/material-ui-icons/lib/HdrOffTwoTone.js +++ b/packages/material-ui-icons/lib/HdrOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49 1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" -}), 'HdrOffTwoTone'); \ No newline at end of file +}), 'HdrOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOn.js b/packages/material-ui-icons/lib/HdrOn.js index 2be838a54e770d..87a90e3a4fe311 100644 --- a/packages/material-ui-icons/lib/HdrOn.js +++ b/packages/material-ui-icons/lib/HdrOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" -}), 'HdrOn'); \ No newline at end of file +}), 'HdrOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnOutlined.js b/packages/material-ui-icons/lib/HdrOnOutlined.js index 3c15bf5a0415da..ceb0144cfd6e1e 100644 --- a/packages/material-ui-icons/lib/HdrOnOutlined.js +++ b/packages/material-ui-icons/lib/HdrOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" -}), 'HdrOnOutlined'); \ No newline at end of file +}), 'HdrOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnRounded.js b/packages/material-ui-icons/lib/HdrOnRounded.js index 5d9b246b4e0cb3..c6f23a7105cf1d 100644 --- a/packages/material-ui-icons/lib/HdrOnRounded.js +++ b/packages/material-ui-icons/lib/HdrOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.25 9c-.41 0-.75.34-.75.75V11h-2V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C8 9.34 7.66 9 7.25 9zM21 11.5v-1c0-.83-.67-1.5-1.5-1.5H17c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.96l-.49-1.14c.5-.3.9-.8.9-1.4zm-3.5 0v-1h2v1h-2zM13 9h-3c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5h3c.82 0 1.5-.68 1.5-1.5v-3c0-.82-.68-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" -}), 'HdrOnRounded'); \ No newline at end of file +}), 'HdrOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnSelect.js b/packages/material-ui-icons/lib/HdrOnSelect.js index e2308ca2ed6f44..de9ba7a4da67ac 100644 --- a/packages/material-ui-icons/lib/HdrOnSelect.js +++ b/packages/material-ui-icons/lib/HdrOnSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" -}), 'HdrOnSelect'); \ No newline at end of file +}), 'HdrOnSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnSelectOutlined.js b/packages/material-ui-icons/lib/HdrOnSelectOutlined.js index 112f4e0ff5de5c..a46bc05d1645fd 100644 --- a/packages/material-ui-icons/lib/HdrOnSelectOutlined.js +++ b/packages/material-ui-icons/lib/HdrOnSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" -}), 'HdrOnSelectOutlined'); \ No newline at end of file +}), 'HdrOnSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnSelectRounded.js b/packages/material-ui-icons/lib/HdrOnSelectRounded.js index e82201d47fdd23..09bdf5eccafc9e 100644 --- a/packages/material-ui-icons/lib/HdrOnSelectRounded.js +++ b/packages/material-ui-icons/lib/HdrOnSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.83-.67-1.5-1.5-1.5H14c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75V18zm6.5-2H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1H10c.82 0 1.5-.67 1.5-1.5v-3c0-.83-.68-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm13.25-.5H22v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V20h-1.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.25v-1.25c0-.41.34-.75.75-.75s.75.34.75.75v1.25h1.25c.41 0 .75.34.75.75s-.34.75-.75.75zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" -}), 'HdrOnSelectRounded'); \ No newline at end of file +}), 'HdrOnSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnSelectSharp.js b/packages/material-ui-icons/lib/HdrOnSelectSharp.js index 95aa41f6adbc49..c4f8769650dd95 100644 --- a/packages/material-ui-icons/lib/HdrOnSelectSharp.js +++ b/packages/material-ui-icons/lib/HdrOnSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 19.9V16h-5v6h1.5v-2h1.1l.9 2H18l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" -}), 'HdrOnSelectSharp'); \ No newline at end of file +}), 'HdrOnSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnSelectTwoTone.js b/packages/material-ui-icons/lib/HdrOnSelectTwoTone.js index 300d280fc428de..2381a5ed0a2c4f 100644 --- a/packages/material-ui-icons/lib/HdrOnSelectTwoTone.js +++ b/packages/material-ui-icons/lib/HdrOnSelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" -}), 'HdrOnSelectTwoTone'); \ No newline at end of file +}), 'HdrOnSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnSharp.js b/packages/material-ui-icons/lib/HdrOnSharp.js index acc2cfe75ae887..fd7ff4ec50c128 100644 --- a/packages/material-ui-icons/lib/HdrOnSharp.js +++ b/packages/material-ui-icons/lib/HdrOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12.9V9h-5v6h1.5v-2h1.1l.9 2H21l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" -}), 'HdrOnSharp'); \ No newline at end of file +}), 'HdrOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrOnTwoTone.js b/packages/material-ui-icons/lib/HdrOnTwoTone.js index d63b8927f407e0..527a7bf4b33e55 100644 --- a/packages/material-ui-icons/lib/HdrOnTwoTone.js +++ b/packages/material-ui-icons/lib/HdrOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3zm8-2v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5z" -}), 'HdrOnTwoTone'); \ No newline at end of file +}), 'HdrOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrPlus.js b/packages/material-ui-icons/lib/HdrPlus.js index 7dc195c562eaa6..34bc1285e6040b 100644 --- a/packages/material-ui-icons/lib/HdrPlus.js +++ b/packages/material-ui-icons/lib/HdrPlus.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13.5c0 .6-.4 1.1-.9 1.4L12 19h-1.5l-.9-2H8.5v2H7v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm0-3.5h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z" -}, "1")], 'HdrPlus'); \ No newline at end of file +}, "1")], 'HdrPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrPlusOutlined.js b/packages/material-ui-icons/lib/HdrPlusOutlined.js index b0528398f3e4c1..a6117d0cce491a 100644 --- a/packages/material-ui-icons/lib/HdrPlusOutlined.js +++ b/packages/material-ui-icons/lib/HdrPlusOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.13 19c1.15.64 2.47 1 3.87 1 4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8c0 2.52 1.17 4.77 3 6.24V13h3.5c.8 0 1.5.7 1.5 1.5v1c0 .6-.4 1.1-.9 1.4L12 19h-1.5l-.9-2H8.5v2h-.37zM12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zm5.5 14H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm-7-.5v-1h-2v1h2zm0-7.5V6H12v6h-1.5V9.5h-2V12H7V6h1.5v2h2zM16 6c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5h-3V6h3zm0 4.5v-3h-1.5v3H16z" -}), 'HdrPlusOutlined'); \ No newline at end of file +}), 'HdrPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrPlusRounded.js b/packages/material-ui-icons/lib/HdrPlusRounded.js index 64e07f337ec9e3..95de08d23e0dbc 100644 --- a/packages/material-ui-icons/lib/HdrPlusRounded.js +++ b/packages/material-ui-icons/lib/HdrPlusRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13.5c0 .6-.4 1.1-.9 1.4l.49 1.13c.2.46-.14.97-.64.97-.27 0-.52-.16-.63-.41L9.6 17H8.5v1.31c0 .38-.31.69-.69.69h-.12c-.38 0-.69-.31-.69-.69V14c0-.55.45-1 1-1h2.5c.82 0 1.5.68 1.5 1.5v1zm-.75-3.5c-.41 0-.75-.34-.75-.75V9.5h-2v1.75c0 .41-.34.75-.75.75S7 11.66 7 11.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75V8h2V6.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zm5.5 4H16v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V16h-.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.75v-.75c0-.41.34-.75.75-.75s.75.34.75.75v.74h.75c.41 0 .75.34.75.75v.01c0 .41-.34.75-.75.75zm.75-5.5c0 .82-.67 1.5-1.5 1.5h-2.5c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5H16c.83 0 1.5.68 1.5 1.5v3z" -}, "1")], 'HdrPlusRounded'); \ No newline at end of file +}, "1")], 'HdrPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrPlusSharp.js b/packages/material-ui-icons/lib/HdrPlusSharp.js index f0f14a819ee006..0fd6e7e4fd7906 100644 --- a/packages/material-ui-icons/lib/HdrPlusSharp.js +++ b/packages/material-ui-icons/lib/HdrPlusSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15-.86-.01L12 19h-1.5l-.9-2H8.5v2H7v-6h5v4zm0-5h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z" -}, "1")], 'HdrPlusSharp'); \ No newline at end of file +}, "1")], 'HdrPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrPlusTwoTone.js b/packages/material-ui-icons/lib/HdrPlusTwoTone.js index 14f75a5bda5055..3c091611321074 100644 --- a/packages/material-ui-icons/lib/HdrPlusTwoTone.js +++ b/packages/material-ui-icons/lib/HdrPlusTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8 0 2.52 1.17 4.77 3 6.24V13h3.5c.8 0 1.5.7 1.5 1.5v1c0 .6-.4 1.1-.9 1.4L12 19h-1.5l-.9-2H8.5v2h-.37c1.15.64 2.47 1 3.87 1 4.41 0 8-3.59 8-8s-3.59-8-8-8zm0 8h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 7.5H16v3h-1.5zm-6 7h2v1h-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-1.4 0-2.72-.36-3.87-1h.37v-2h1.1l.9 2H12l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H7v5.24C5.17 16.77 4 14.52 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8-3.59 8-8 8zm-3.5-4.5v-1h2v1h-2z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 8h-2V6H7v6h1.5V9.5h2V12H12V6h-1.5zM16 6h-3v6h3c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-1.5v-3H16v3zm0 2.5h-1.5v1.5H13V16h1.5v1.5H16V16h1.5v-1.51H16z" -}, "3")], 'HdrPlusTwoTone'); \ No newline at end of file +}, "3")], 'HdrPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrStrong.js b/packages/material-ui-icons/lib/HdrStrong.js index 760ea348680c9d..1193cfcbb87432 100644 --- a/packages/material-ui-icons/lib/HdrStrong.js +++ b/packages/material-ui-icons/lib/HdrStrong.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'HdrStrong'); \ No newline at end of file +}), 'HdrStrong'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrStrongOutlined.js b/packages/material-ui-icons/lib/HdrStrongOutlined.js index 2b5999fdfb830e..e4b9c10c55a2f8 100644 --- a/packages/material-ui-icons/lib/HdrStrongOutlined.js +++ b/packages/material-ui-icons/lib/HdrStrongOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'HdrStrongOutlined'); \ No newline at end of file +}), 'HdrStrongOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrStrongRounded.js b/packages/material-ui-icons/lib/HdrStrongRounded.js index 2b93097911abba..f04f672a27a3fc 100644 --- a/packages/material-ui-icons/lib/HdrStrongRounded.js +++ b/packages/material-ui-icons/lib/HdrStrongRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'HdrStrongRounded'); \ No newline at end of file +}), 'HdrStrongRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrStrongSharp.js b/packages/material-ui-icons/lib/HdrStrongSharp.js index 64b50014b87d9f..64126b774203a4 100644 --- a/packages/material-ui-icons/lib/HdrStrongSharp.js +++ b/packages/material-ui-icons/lib/HdrStrongSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'HdrStrongSharp'); \ No newline at end of file +}), 'HdrStrongSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrStrongTwoTone.js b/packages/material-ui-icons/lib/HdrStrongTwoTone.js index a096f587b4921d..ac774f7d28825b 100644 --- a/packages/material-ui-icons/lib/HdrStrongTwoTone.js +++ b/packages/material-ui-icons/lib/HdrStrongTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zM5 16c2.21 0 4-1.79 4-4S7.21 8 5 8s-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" -}, "1")], 'HdrStrongTwoTone'); \ No newline at end of file +}, "1")], 'HdrStrongTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrWeak.js b/packages/material-ui-icons/lib/HdrWeak.js index e9c5ad2e240603..3ccf11ca64f600 100644 --- a/packages/material-ui-icons/lib/HdrWeak.js +++ b/packages/material-ui-icons/lib/HdrWeak.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'HdrWeak'); \ No newline at end of file +}), 'HdrWeak'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrWeakOutlined.js b/packages/material-ui-icons/lib/HdrWeakOutlined.js index cc010237cac841..8ba42635f385d4 100644 --- a/packages/material-ui-icons/lib/HdrWeakOutlined.js +++ b/packages/material-ui-icons/lib/HdrWeakOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'HdrWeakOutlined'); \ No newline at end of file +}), 'HdrWeakOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrWeakRounded.js b/packages/material-ui-icons/lib/HdrWeakRounded.js index 0ebb086f52fa87..e063e6e2bfe637 100644 --- a/packages/material-ui-icons/lib/HdrWeakRounded.js +++ b/packages/material-ui-icons/lib/HdrWeakRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'HdrWeakRounded'); \ No newline at end of file +}), 'HdrWeakRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrWeakSharp.js b/packages/material-ui-icons/lib/HdrWeakSharp.js index e5a104e258292e..3afd25ee9f73a4 100644 --- a/packages/material-ui-icons/lib/HdrWeakSharp.js +++ b/packages/material-ui-icons/lib/HdrWeakSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}), 'HdrWeakSharp'); \ No newline at end of file +}), 'HdrWeakSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HdrWeakTwoTone.js b/packages/material-ui-icons/lib/HdrWeakTwoTone.js index 885157c6854bcd..f36eed5cc15b03 100644 --- a/packages/material-ui-icons/lib/HdrWeakTwoTone.js +++ b/packages/material-ui-icons/lib/HdrWeakTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5", cy: "12", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "2")], 'HdrWeakTwoTone'); \ No newline at end of file +}, "2")], 'HdrWeakTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Headphones.js b/packages/material-ui-icons/lib/Headphones.js index 5979e3961d4ec1..81971494dbe4b5 100644 --- a/packages/material-ui-icons/lib/Headphones.js +++ b/packages/material-ui-icons/lib/Headphones.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9v7c0 1.1.9 2 2 2h4v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h4c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9z" -}), 'Headphones'); \ No newline at end of file +}), 'Headphones'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesBattery.js b/packages/material-ui-icons/lib/HeadphonesBattery.js index 461d2614215477..ee768a8be454cd 100644 --- a/packages/material-ui-icons/lib/HeadphonesBattery.js +++ b/packages/material-ui-icons/lib/HeadphonesBattery.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2h2v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h2c1.1 0 2-.9 2-2v-4c0-3.31-2.69-6-6-6z" -}), 'HeadphonesBattery'); \ No newline at end of file +}), 'HeadphonesBattery'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesBatteryOutlined.js b/packages/material-ui-icons/lib/HeadphonesBatteryOutlined.js index d278f970baf577..33ad3df7de2e4d 100644 --- a/packages/material-ui-icons/lib/HeadphonesBatteryOutlined.js +++ b/packages/material-ui-icons/lib/HeadphonesBatteryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2h2v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h2c1.1 0 2-.9 2-2v-4c0-3.31-2.69-6-6-6z" -}), 'HeadphonesBatteryOutlined'); \ No newline at end of file +}), 'HeadphonesBatteryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesBatteryRounded.js b/packages/material-ui-icons/lib/HeadphonesBatteryRounded.js index d406d0e517aa01..de4ef449236f15 100644 --- a/packages/material-ui-icons/lib/HeadphonesBatteryRounded.js +++ b/packages/material-ui-icons/lib/HeadphonesBatteryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-1v-.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2s2-.9 2-2v-1c0-1.1-.9-2-2-2h-.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H12c-1.1 0-2 .9-2 2v1c0 1.1.9 2 2 2s2-.9 2-2v-4c0-3.31-2.69-6-6-6z" -}), 'HeadphonesBatteryRounded'); \ No newline at end of file +}), 'HeadphonesBatteryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesBatterySharp.js b/packages/material-ui-icons/lib/HeadphonesBatterySharp.js index 23723492f4a06e..889d8353319d39 100644 --- a/packages/material-ui-icons/lib/HeadphonesBatterySharp.js +++ b/packages/material-ui-icons/lib/HeadphonesBatterySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7V6h-2v1h-2v11h6V7zM8 6c-3.31 0-6 2.69-6 6v6h4v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h4v-6c0-3.31-2.69-6-6-6z" -}), 'HeadphonesBatterySharp'); \ No newline at end of file +}), 'HeadphonesBatterySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesBatteryTwoTone.js b/packages/material-ui-icons/lib/HeadphonesBatteryTwoTone.js index 92f23df0d73f84..743401c9a6c7d0 100644 --- a/packages/material-ui-icons/lib/HeadphonesBatteryTwoTone.js +++ b/packages/material-ui-icons/lib/HeadphonesBatteryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9h2v7h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2h2v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h2c1.1 0 2-.9 2-2v-4c0-3.31-2.69-6-6-6z" -}, "1")], 'HeadphonesBatteryTwoTone'); \ No newline at end of file +}, "1")], 'HeadphonesBatteryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesOutlined.js b/packages/material-ui-icons/lib/HeadphonesOutlined.js index 849fa0f3da702d..c5435c821caf59 100644 --- a/packages/material-ui-icons/lib/HeadphonesOutlined.js +++ b/packages/material-ui-icons/lib/HeadphonesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9v7c0 1.1.9 2 2 2h4v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h4c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9zM7 15v4H5v-4h2zm12 4h-2v-4h2v4z" -}), 'HeadphonesOutlined'); \ No newline at end of file +}), 'HeadphonesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesRounded.js b/packages/material-ui-icons/lib/HeadphonesRounded.js index 45844a3712e81c..83049158c21ceb 100644 --- a/packages/material-ui-icons/lib/HeadphonesRounded.js +++ b/packages/material-ui-icons/lib/HeadphonesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12v7c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9s-9 4.03-9 9z" -}), 'HeadphonesRounded'); \ No newline at end of file +}), 'HeadphonesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesSharp.js b/packages/material-ui-icons/lib/HeadphonesSharp.js index ffaccbf77de875..ea8160e80b386f 100644 --- a/packages/material-ui-icons/lib/HeadphonesSharp.js +++ b/packages/material-ui-icons/lib/HeadphonesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9v9h6v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h6v-9c0-4.97-4.03-9-9-9z" -}), 'HeadphonesSharp'); \ No newline at end of file +}), 'HeadphonesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadphonesTwoTone.js b/packages/material-ui-icons/lib/HeadphonesTwoTone.js index a5d281b3a75a64..82f9ef8e9124de 100644 --- a/packages/material-ui-icons/lib/HeadphonesTwoTone.js +++ b/packages/material-ui-icons/lib/HeadphonesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h2v4H5zm12 0h2v4h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.97 0-9 4.03-9 9v7c0 1.1.9 2 2 2h4v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h4c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9zM7 15v4H5v-4h2zm12 4h-2v-4h2v4z" -}, "1")], 'HeadphonesTwoTone'); \ No newline at end of file +}, "1")], 'HeadphonesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Headset.js b/packages/material-ui-icons/lib/Headset.js index 371f18c95bf623..4faf6189006837 100644 --- a/packages/material-ui-icons/lib/Headset.js +++ b/packages/material-ui-icons/lib/Headset.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" -}), 'Headset'); \ No newline at end of file +}), 'Headset'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetMic.js b/packages/material-ui-icons/lib/HeadsetMic.js index c1ee9d094d5fcd..8e0ead7ed87822 100644 --- a/packages/material-ui-icons/lib/HeadsetMic.js +++ b/packages/material-ui-icons/lib/HeadsetMic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z" -}), 'HeadsetMic'); \ No newline at end of file +}), 'HeadsetMic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetMicOutlined.js b/packages/material-ui-icons/lib/HeadsetMicOutlined.js index a69b67cfa3519d..7bac37abd51258 100644 --- a/packages/material-ui-icons/lib/HeadsetMicOutlined.js +++ b/packages/material-ui-icons/lib/HeadsetMicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 14v4h-2v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z" -}), 'HeadsetMicOutlined'); \ No newline at end of file +}), 'HeadsetMicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetMicRounded.js b/packages/material-ui-icons/lib/HeadsetMicRounded.js index eefe175f4e03b7..d141594e2ec1c3 100644 --- a/packages/material-ui-icons/lib/HeadsetMicRounded.js +++ b/packages/material-ui-icons/lib/HeadsetMicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V17c0 1.66 1.34 3 3 3h1c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2v1h-6c-.55 0-1 .45-1 1s.45 1 1 1h5c1.66 0 3-1.34 3-3V10c0-5.17-4.36-9.32-9.6-8.98z" -}), 'HeadsetMicRounded'); \ No newline at end of file +}), 'HeadsetMicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetMicSharp.js b/packages/material-ui-icons/lib/HeadsetMicSharp.js index e0971a7bea9e9f..8cfecee82f4401 100644 --- a/packages/material-ui-icons/lib/HeadsetMicSharp.js +++ b/packages/material-ui-icons/lib/HeadsetMicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.4 1.02C6.62 1.33 3 5.51 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-4v8h4v1h-7v2h9V10c0-5.17-4.36-9.32-9.6-8.98z" -}), 'HeadsetMicSharp'); \ No newline at end of file +}), 'HeadsetMicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetMicTwoTone.js b/packages/material-ui-icons/lib/HeadsetMicTwoTone.js index 7ab295d2a0c4d7..69d86abfa4202e 100644 --- a/packages/material-ui-icons/lib/HeadsetMicTwoTone.js +++ b/packages/material-ui-icons/lib/HeadsetMicTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17c0 .55.45 1 1 1h1v-4H5v3zm12-3h2v4h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 4h-2v-4h2v4z" -}, "1")], 'HeadsetMicTwoTone'); \ No newline at end of file +}, "1")], 'HeadsetMicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetOff.js b/packages/material-ui-icons/lib/HeadsetOff.js index e2be4bc1b574ea..3eba2536f16ee5 100644 --- a/packages/material-ui-icons/lib/HeadsetOff.js +++ b/packages/material-ui-icons/lib/HeadsetOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c3.87 0 7 3.13 7 7v2h-2.92L21 17.92V11c0-4.97-4.03-9-9-9-1.95 0-3.76.62-5.23 1.68l1.44 1.44C9.3 4.41 10.6 4 12 4zM2.27 1.72 1 3l3.33 3.32C3.49 7.68 3 9.29 3 11v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-1.17.29-2.26.79-3.22L15 17v4h3c.3 0 .59-.06.86-.14L21 23l1.27-1.27-20-20.01z" -}), 'HeadsetOff'); \ No newline at end of file +}), 'HeadsetOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetOffOutlined.js b/packages/material-ui-icons/lib/HeadsetOffOutlined.js index a93a91605fc201..fe6a66a52c474c 100644 --- a/packages/material-ui-icons/lib/HeadsetOffOutlined.js +++ b/packages/material-ui-icons/lib/HeadsetOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17L16.83 14H19v2.17l2 2V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zM2.1 2.1.69 3.51l3.33 3.33C3.37 8.09 3 9.5 3 11v7c0 1.1.9 2 2 2h4v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h7c.34 0 .65-.09.93-.24l.55.55 1.41-1.41L2.1 2.1zM7 14v4H5v-4h2z" -}), 'HeadsetOffOutlined'); \ No newline at end of file +}), 'HeadsetOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetOffRounded.js b/packages/material-ui-icons/lib/HeadsetOffRounded.js index f3d991dfe39e13..4d41eb854f8ea1 100644 --- a/packages/material-ui-icons/lib/HeadsetOffRounded.js +++ b/packages/material-ui-icons/lib/HeadsetOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c3.87 0 7 3.13 7 7v1h-2c-.6 0-1.13.27-1.49.68L21 18.17V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zm9.19 17.19L2.81 2.81a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l2.63 2.63C3.37 8.09 3 9.5 3 11v7c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1c0-.94.19-1.83.52-2.65L15 17.83V18c0 1.1.9 2 2 2h.17l1 1H13c-.55 0-1 .45-1 1s.45 1 1 1h6c.36 0 .68-.1.97-.26.38.23.89.2 1.22-.13.39-.39.39-1.03 0-1.42z" -}), 'HeadsetOffRounded'); \ No newline at end of file +}), 'HeadsetOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetOffSharp.js b/packages/material-ui-icons/lib/HeadsetOffSharp.js index 27257164e467c6..f133bb1b2d1244 100644 --- a/packages/material-ui-icons/lib/HeadsetOffSharp.js +++ b/packages/material-ui-icons/lib/HeadsetOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17l6 6V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zM2.1 2.1.69 3.51l3.33 3.33C3.37 8.09 3 9.5 3 11v9h6v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h8.17l.31.31 1.41-1.41L2.1 2.1z" -}), 'HeadsetOffSharp'); \ No newline at end of file +}), 'HeadsetOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetOffTwoTone.js b/packages/material-ui-icons/lib/HeadsetOffTwoTone.js index 50caaa207d1c0b..47bd1f9ef06d5a 100644 --- a/packages/material-ui-icons/lib/HeadsetOffTwoTone.js +++ b/packages/material-ui-icons/lib/HeadsetOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 14h2v4H5zm11.83 0L19 16.17V14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17L16.83 14H19v2.17l2 2V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zM2.1 2.1.69 3.51l3.33 3.33C3.37 8.09 3 9.5 3 11v7c0 1.1.9 2 2 2h4v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h7c.34 0 .65-.09.93-.24l.55.55 1.41-1.41L2.1 2.1zM7 14v4H5v-4h2z" -}, "1")], 'HeadsetOffTwoTone'); \ No newline at end of file +}, "1")], 'HeadsetOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetOutlined.js b/packages/material-ui-icons/lib/HeadsetOutlined.js index 644b77115f74b3..a65e5857b2d7b5 100644 --- a/packages/material-ui-icons/lib/HeadsetOutlined.js +++ b/packages/material-ui-icons/lib/HeadsetOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 14v3c0 .55-.45 1-1 1h-1v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" -}), 'HeadsetOutlined'); \ No newline at end of file +}), 'HeadsetOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetRounded.js b/packages/material-ui-icons/lib/HeadsetRounded.js index 5aa2f556f927b5..2308f9def3728f 100644 --- a/packages/material-ui-icons/lib/HeadsetRounded.js +++ b/packages/material-ui-icons/lib/HeadsetRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V17c0 1.66 1.34 3 3 3h1c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h1c1.66 0 3-1.34 3-3v-7c0-5.17-4.36-9.32-9.6-8.98z" -}), 'HeadsetRounded'); \ No newline at end of file +}), 'HeadsetRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetSharp.js b/packages/material-ui-icons/lib/HeadsetSharp.js index 620e7210b16a88..1973b18ebd31cf 100644 --- a/packages/material-ui-icons/lib/HeadsetSharp.js +++ b/packages/material-ui-icons/lib/HeadsetSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-4v8h6V10c0-5.17-4.36-9.32-9.6-8.98z" -}), 'HeadsetSharp'); \ No newline at end of file +}), 'HeadsetSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeadsetTwoTone.js b/packages/material-ui-icons/lib/HeadsetTwoTone.js index 4da0ccc5ab16b4..d21fbde2c713a0 100644 --- a/packages/material-ui-icons/lib/HeadsetTwoTone.js +++ b/packages/material-ui-icons/lib/HeadsetTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18h1c.55 0 1-.45 1-1v-3h-2v4zM5 17c0 .55.45 1 1 1h1v-4H5v3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 3c0 .55-.45 1-1 1h-1v-4h2v3z" -}, "1")], 'HeadsetTwoTone'); \ No newline at end of file +}, "1")], 'HeadsetTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Healing.js b/packages/material-ui-icons/lib/Healing.js index d1fc01fd2bf497..7dd6ebebb77c7d 100644 --- a/packages/material-ui-icons/lib/Healing.js +++ b/packages/material-ui-icons/lib/Healing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" -}), 'Healing'); \ No newline at end of file +}), 'Healing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealingOutlined.js b/packages/material-ui-icons/lib/HealingOutlined.js index 8b3b8615960ef3..cbe80bb0799cb1 100644 --- a/packages/material-ui-icons/lib/HealingOutlined.js +++ b/packages/material-ui-icons/lib/HealingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" -}), 'HealingOutlined'); \ No newline at end of file +}), 'HealingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealingRounded.js b/packages/material-ui-icons/lib/HealingRounded.js index 18dab66dfa8fb8..be21467dbc9cce 100644 --- a/packages/material-ui-icons/lib/HealingRounded.js +++ b/packages/material-ui-icons/lib/HealingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" -}), 'HealingRounded'); \ No newline at end of file +}), 'HealingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealingSharp.js b/packages/material-ui-icons/lib/HealingSharp.js index 8dfd17730e20fe..97249c7f62b6a3 100644 --- a/packages/material-ui-icons/lib/HealingSharp.js +++ b/packages/material-ui-icons/lib/HealingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.74 12.01 4.68-4.68-5.75-5.75-4.68 4.68L7.3 1.58 1.55 7.34l4.68 4.69-4.68 4.68 5.75 5.75 4.68-4.68 4.69 4.69 5.76-5.76-4.69-4.7zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" -}), 'HealingSharp'); \ No newline at end of file +}), 'HealingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealingTwoTone.js b/packages/material-ui-icons/lib/HealingTwoTone.js index 7e10c790a55a4d..a30dc978396c6a 100644 --- a/packages/material-ui-icons/lib/HealingTwoTone.js +++ b/packages/material-ui-icons/lib/HealingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.03 16.72 3.63 3.62 3.62-3.63-3.62-3.62zM7.29 3.71 3.66 7.34l3.63 3.62 3.62-3.63z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29s.51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" -}, "1")], 'HealingTwoTone'); \ No newline at end of file +}, "1")], 'HealingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealthAndSafety.js b/packages/material-ui-icons/lib/HealthAndSafety.js index 04be8bd0e7956a..5a36511e6e1761 100644 --- a/packages/material-ui-icons/lib/HealthAndSafety.js +++ b/packages/material-ui-icons/lib/HealthAndSafety.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" -}), 'HealthAndSafety'); \ No newline at end of file +}), 'HealthAndSafety'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealthAndSafetyOutlined.js b/packages/material-ui-icons/lib/HealthAndSafetyOutlined.js index 110933325f6cf2..e8738c44a8e14c 100644 --- a/packages/material-ui-icons/lib/HealthAndSafetyOutlined.js +++ b/packages/material-ui-icons/lib/HealthAndSafetyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" -}), 'HealthAndSafetyOutlined'); \ No newline at end of file +}), 'HealthAndSafetyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealthAndSafetyRounded.js b/packages/material-ui-icons/lib/HealthAndSafetyRounded.js index 61ae7f61e043d3..a8ce53655309d3 100644 --- a/packages/material-ui-icons/lib/HealthAndSafetyRounded.js +++ b/packages/material-ui-icons/lib/HealthAndSafetyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 13h-1c-.83 0-1.5-.67-1.5-1.5S8.67 10 9.5 10h1V9c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1h1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-1v1c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-1zm.8-10.74-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01z" -}), 'HealthAndSafetyRounded'); \ No newline at end of file +}), 'HealthAndSafetyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealthAndSafetySharp.js b/packages/material-ui-icons/lib/HealthAndSafetySharp.js index 19081cbf9a6ed9..80b7a88a24db9f 100644 --- a/packages/material-ui-icons/lib/HealthAndSafetySharp.js +++ b/packages/material-ui-icons/lib/HealthAndSafetySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" -}), 'HealthAndSafetySharp'); \ No newline at end of file +}), 'HealthAndSafetySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HealthAndSafetyTwoTone.js b/packages/material-ui-icons/lib/HealthAndSafetyTwoTone.js index 00403c8afcfa74..2585123400ae61 100644 --- a/packages/material-ui-icons/lib/HealthAndSafetyTwoTone.js +++ b/packages/material-ui-icons/lib/HealthAndSafetyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.14 6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25zM16 13h-2.5v2.5h-3V13H8v-3h2.5V7.5h3V10H16v3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" -}, "1")], 'HealthAndSafetyTwoTone'); \ No newline at end of file +}, "1")], 'HealthAndSafetyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hearing.js b/packages/material-ui-icons/lib/Hearing.js index 8c4af488b2ba17..ea67d8b6ff8163 100644 --- a/packages/material-ui-icons/lib/Hearing.js +++ b/packages/material-ui-icons/lib/Hearing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" -}), 'Hearing'); \ No newline at end of file +}), 'Hearing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingDisabled.js b/packages/material-ui-icons/lib/HearingDisabled.js index 4f6c618e7f9751..80dc8f76fc403b 100644 --- a/packages/material-ui-icons/lib/HearingDisabled.js +++ b/packages/material-ui-icons/lib/HearingDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" -}), 'HearingDisabled'); \ No newline at end of file +}), 'HearingDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingDisabledOutlined.js b/packages/material-ui-icons/lib/HearingDisabledOutlined.js index bf4d4f637776a4..1d00842e1b584f 100644 --- a/packages/material-ui-icons/lib/HearingDisabledOutlined.js +++ b/packages/material-ui-icons/lib/HearingDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" -}), 'HearingDisabledOutlined'); \ No newline at end of file +}), 'HearingDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingDisabledRounded.js b/packages/material-ui-icons/lib/HearingDisabledRounded.js index 1546537558d6b3..5172de427c6ccb 100644 --- a/packages/material-ui-icons/lib/HearingDisabledRounded.js +++ b/packages/material-ui-icons/lib/HearingDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.96 3.3c-.32-.39-.29-.96.07-1.32l.01-.01c.42-.42 1.12-.38 1.49.08C20.07 3.94 21 6.36 21 9c0 2.57-.89 4.94-2.36 6.81l-1.43-1.43C18.33 12.88 19 11.02 19 9c0-2.17-.77-4.16-2.04-5.7zM7.49 4.66C8.23 4.24 9.08 4 10 4c2.8 0 5 2.2 5 5 0 .8-.23 1.69-.63 2.54l1.48 1.48c.02-.04.05-.08.08-.13C16.62 11.65 17 10.26 17 9c0-3.93-3.07-7-7-7-1.49 0-2.85.44-3.97 1.2l1.46 1.46zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm10.49 13.99L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.42 1.42c-.2.49-.35 1-.43 1.54-.1.59.38 1.12.97 1.12h.04c.48 0 .89-.35.96-.82.02-.08.04-.16.06-.23l6.62 6.62c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.2.09-.47.15-.76.15-.88 0-1.63-.58-1.9-1.37-.13-.39-.53-.63-.95-.63-.66 0-1.15.64-.95 1.26C3.73 20.85 5.23 22 7 22c.57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l5.91 5.91c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" -}), 'HearingDisabledRounded'); \ No newline at end of file +}), 'HearingDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingDisabledSharp.js b/packages/material-ui-icons/lib/HearingDisabledSharp.js index 8c291555bc7687..33a803ddf0b968 100644 --- a/packages/material-ui-icons/lib/HearingDisabledSharp.js +++ b/packages/material-ui-icons/lib/HearingDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" -}), 'HearingDisabledSharp'); \ No newline at end of file +}), 'HearingDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingDisabledTwoTone.js b/packages/material-ui-icons/lib/HearingDisabledTwoTone.js index 33d6ce8d3e643a..1971cf8183b5d6 100644 --- a/packages/material-ui-icons/lib/HearingDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/HearingDisabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" -}), 'HearingDisabledTwoTone'); \ No newline at end of file +}), 'HearingDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingOutlined.js b/packages/material-ui-icons/lib/HearingOutlined.js index 90caf31ac90db4..f1343efd9d069a 100644 --- a/packages/material-ui-icons/lib/HearingOutlined.js +++ b/packages/material-ui-icons/lib/HearingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" -}), 'HearingOutlined'); \ No newline at end of file +}), 'HearingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingRounded.js b/packages/material-ui-icons/lib/HearingRounded.js index ffa50a334d8bc2..eee369ef04bb26 100644 --- a/packages/material-ui-icons/lib/HearingRounded.js +++ b/packages/material-ui-icons/lib/HearingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5 2.56 0 4.63 1.85 4.95 4.31.06.4.41.69.82.69h.34c.5 0 .89-.44.83-.94C20.49 4.59 17.61 2 14 2c-3.93 0-7 3.07-7 7 0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 1.84 0 3.39-1.24 3.86-2.93.14-.54-.25-1.07-.81-1.07h-.35c-.38 0-.68.27-.81.63-.26.79-1.01 1.37-1.89 1.37zM6.97 1.97c-.43-.43-1.12-.39-1.5.07C3.93 3.94 3 6.36 3 9s.93 5.06 2.47 6.95c.38.46 1.07.5 1.49.08.36-.36.39-.93.07-1.32C5.77 13.16 5 11.17 5 9s.77-4.16 2.04-5.7c.33-.4.29-.97-.07-1.33zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" -}), 'HearingRounded'); \ No newline at end of file +}), 'HearingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingSharp.js b/packages/material-ui-icons/lib/HearingSharp.js index 180847c8e0edce..cad96f87b70728 100644 --- a/packages/material-ui-icons/lib/HearingSharp.js +++ b/packages/material-ui-icons/lib/HearingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" -}), 'HearingSharp'); \ No newline at end of file +}), 'HearingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HearingTwoTone.js b/packages/material-ui-icons/lib/HearingTwoTone.js index abf4e5b2851786..d06cd164dc7e5c 100644 --- a/packages/material-ui-icons/lib/HearingTwoTone.js +++ b/packages/material-ui-icons/lib/HearingTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "9", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2z" -}, "2")], 'HearingTwoTone'); \ No newline at end of file +}, "2")], 'HearingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Height.js b/packages/material-ui-icons/lib/Height.js index 18febc9244f7ce..e5fc886f211351 100644 --- a/packages/material-ui-icons/lib/Height.js +++ b/packages/material-ui-icons/lib/Height.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" -}), 'Height'); \ No newline at end of file +}), 'Height'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeightOutlined.js b/packages/material-ui-icons/lib/HeightOutlined.js index 9892d00809ccdc..c671ba41749c68 100644 --- a/packages/material-ui-icons/lib/HeightOutlined.js +++ b/packages/material-ui-icons/lib/HeightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" -}), 'HeightOutlined'); \ No newline at end of file +}), 'HeightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeightRounded.js b/packages/material-ui-icons/lib/HeightRounded.js index 4fb89b22c372c5..0f4ed4eaee2bf8 100644 --- a/packages/material-ui-icons/lib/HeightRounded.js +++ b/packages/material-ui-icons/lib/HeightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.99h1.79c.45 0 .67-.54.35-.85l-2.79-2.78c-.2-.19-.51-.19-.71 0L8.86 6.14c-.32.31-.1.85.35.85H11v10.02H9.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H13V6.99z" -}), 'HeightRounded'); \ No newline at end of file +}), 'HeightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeightSharp.js b/packages/material-ui-icons/lib/HeightSharp.js index c560b69904bdde..36dd4eb9d3d82a 100644 --- a/packages/material-ui-icons/lib/HeightSharp.js +++ b/packages/material-ui-icons/lib/HeightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" -}), 'HeightSharp'); \ No newline at end of file +}), 'HeightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HeightTwoTone.js b/packages/material-ui-icons/lib/HeightTwoTone.js index 80131f71147e01..26ad2a8d439934 100644 --- a/packages/material-ui-icons/lib/HeightTwoTone.js +++ b/packages/material-ui-icons/lib/HeightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" -}), 'HeightTwoTone'); \ No newline at end of file +}), 'HeightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Help.js b/packages/material-ui-icons/lib/Help.js index b8d60dc21434c4..6ab75ddf965c19 100644 --- a/packages/material-ui-icons/lib/Help.js +++ b/packages/material-ui-icons/lib/Help.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" -}), 'Help'); \ No newline at end of file +}), 'Help'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpCenter.js b/packages/material-ui-icons/lib/HelpCenter.js index bebfc92644697e..2879e75248f3bc 100644 --- a/packages/material-ui-icons/lib/HelpCenter.js +++ b/packages/material-ui-icons/lib/HelpCenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z" -}), 'HelpCenter'); \ No newline at end of file +}), 'HelpCenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpCenterOutlined.js b/packages/material-ui-icons/lib/HelpCenterOutlined.js index 1549bffb1f2434..72e1e0586ebc4b 100644 --- a/packages/material-ui-icons/lib/HelpCenterOutlined.js +++ b/packages/material-ui-icons/lib/HelpCenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.25 16.74c0 .69-.53 1.26-1.25 1.26-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.55 1.25 1.25zM11.99 6c-1.77 0-2.98 1.15-3.43 2.49l1.64.69c.22-.67.74-1.48 1.8-1.48 1.62 0 1.94 1.52 1.37 2.33-.54.77-1.47 1.29-1.96 2.16-.39.69-.31 1.49-.31 1.98h1.82c0-.93.07-1.12.22-1.41.39-.72 1.11-1.06 1.87-2.17.68-1 .42-2.36-.02-3.08-.51-.84-1.52-1.51-3-1.51zM19 5H5v14h14V5m0-2c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14z" -}), 'HelpCenterOutlined'); \ No newline at end of file +}), 'HelpCenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpCenterRounded.js b/packages/material-ui-icons/lib/HelpCenterRounded.js index e43c6b8e5d406d..d9e6939785bf5f 100644 --- a/packages/material-ui-icons/lib/HelpCenterRounded.js +++ b/packages/material-ui-icons/lib/HelpCenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.1.18-.16.32-.19.63-.05.45-.45.78-.9.78H12c-.52 0-.93-.44-.88-.96.03-.34.11-.69.3-1.03.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-.71 0-1.18.36-1.47.79-.25.36-.69.53-1.1.36-.53-.21-.72-.85-.4-1.31C9.65 6.65 10.67 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z" -}), 'HelpCenterRounded'); \ No newline at end of file +}), 'HelpCenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpCenterSharp.js b/packages/material-ui-icons/lib/HelpCenterSharp.js index 3a2faa9fb45aaf..d9a28409b35589 100644 --- a/packages/material-ui-icons/lib/HelpCenterSharp.js +++ b/packages/material-ui-icons/lib/HelpCenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-8.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z" -}), 'HelpCenterSharp'); \ No newline at end of file +}), 'HelpCenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpCenterTwoTone.js b/packages/material-ui-icons/lib/HelpCenterTwoTone.js index c96d8f2be8b23c..5aef07439d2d31 100644 --- a/packages/material-ui-icons/lib/HelpCenterTwoTone.js +++ b/packages/material-ui-icons/lib/HelpCenterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm7.01 13c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.25 16.74c0 .69-.53 1.26-1.25 1.26-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.55 1.25 1.25zM11.99 6c-1.77 0-2.98 1.15-3.43 2.49l1.64.69c.22-.67.74-1.48 1.8-1.48 1.62 0 1.94 1.52 1.37 2.33-.54.77-1.47 1.29-1.96 2.16-.39.69-.31 1.49-.31 1.98h1.82c0-.93.07-1.12.22-1.41.39-.72 1.11-1.06 1.87-2.17.68-1 .42-2.36-.02-3.08-.51-.84-1.52-1.51-3-1.51zM19 5H5v14h14V5m0-2c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14z" -}, "1")], 'HelpCenterTwoTone'); \ No newline at end of file +}, "1")], 'HelpCenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpOutline.js b/packages/material-ui-icons/lib/HelpOutline.js index 57c5dc7b5d5227..a328c8ef44fc06 100644 --- a/packages/material-ui-icons/lib/HelpOutline.js +++ b/packages/material-ui-icons/lib/HelpOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" -}), 'HelpOutline'); \ No newline at end of file +}), 'HelpOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpOutlineOutlined.js b/packages/material-ui-icons/lib/HelpOutlineOutlined.js index de289d6f6cbc71..884b415f4e1f82 100644 --- a/packages/material-ui-icons/lib/HelpOutlineOutlined.js +++ b/packages/material-ui-icons/lib/HelpOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" -}), 'HelpOutlineOutlined'); \ No newline at end of file +}), 'HelpOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpOutlineRounded.js b/packages/material-ui-icons/lib/HelpOutlineRounded.js index 07b34cc53cf93d..d62957d96d091b 100644 --- a/packages/material-ui-icons/lib/HelpOutlineRounded.js +++ b/packages/material-ui-icons/lib/HelpOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2zm1.61-9.96c-2.06-.3-3.88.97-4.43 2.79-.18.58.26 1.17.87 1.17h.2c.41 0 .74-.29.88-.67.32-.89 1.27-1.5 2.3-1.28.95.2 1.65 1.13 1.57 2.1-.1 1.34-1.62 1.63-2.45 2.88 0 .01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2 1.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91 2.26-1.65 1.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z" -}), 'HelpOutlineRounded'); \ No newline at end of file +}), 'HelpOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpOutlineSharp.js b/packages/material-ui-icons/lib/HelpOutlineSharp.js index 4908dc197e2ad4..59cc5281854da1 100644 --- a/packages/material-ui-icons/lib/HelpOutlineSharp.js +++ b/packages/material-ui-icons/lib/HelpOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" -}), 'HelpOutlineSharp'); \ No newline at end of file +}), 'HelpOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpOutlineTwoTone.js b/packages/material-ui-icons/lib/HelpOutlineTwoTone.js index 498ccbd4e0d4cb..4071243fbcfb2e 100644 --- a/packages/material-ui-icons/lib/HelpOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/HelpOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" -}), 'HelpOutlineTwoTone'); \ No newline at end of file +}), 'HelpOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpOutlined.js b/packages/material-ui-icons/lib/HelpOutlined.js index 69430025952929..353ee23e24cbfa 100644 --- a/packages/material-ui-icons/lib/HelpOutlined.js +++ b/packages/material-ui-icons/lib/HelpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" -}), 'HelpOutlined'); \ No newline at end of file +}), 'HelpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpRounded.js b/packages/material-ui-icons/lib/HelpRounded.js index 03c7dbc78c5611..4c4807a6f9a8fe 100644 --- a/packages/material-ui-icons/lib/HelpRounded.js +++ b/packages/material-ui-icons/lib/HelpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92c-.5.51-.86.97-1.04 1.69-.08.32-.13.68-.13 1.14h-2v-.5c0-.46.08-.9.22-1.31.2-.58.53-1.1.95-1.52l1.24-1.26c.46-.44.68-1.1.55-1.8-.13-.72-.69-1.33-1.39-1.53-1.11-.31-2.14.32-2.47 1.27-.12.37-.43.65-.82.65h-.3C8.4 9 8 8.44 8.16 7.88c.43-1.47 1.68-2.59 3.23-2.83 1.52-.24 2.97.55 3.87 1.8 1.18 1.63.83 3.38-.19 4.4z" -}), 'HelpRounded'); \ No newline at end of file +}), 'HelpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpSharp.js b/packages/material-ui-icons/lib/HelpSharp.js index 9b271cbe208304..eb7e003ca9c5e5 100644 --- a/packages/material-ui-icons/lib/HelpSharp.js +++ b/packages/material-ui-icons/lib/HelpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" -}), 'HelpSharp'); \ No newline at end of file +}), 'HelpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HelpTwoTone.js b/packages/material-ui-icons/lib/HelpTwoTone.js index ea159f62e8dfb1..abd1e2167d153d 100644 --- a/packages/material-ui-icons/lib/HelpTwoTone.js +++ b/packages/material-ui-icons/lib/HelpTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 14h-2v-2h2v2zm0-3h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" -}, "1")], 'HelpTwoTone'); \ No newline at end of file +}, "1")], 'HelpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hevc.js b/packages/material-ui-icons/lib/Hevc.js index b4b29023cd7db7..afd91bd17076c7 100644 --- a/packages/material-ui-icons/lib/Hevc.js +++ b/packages/material-ui-icons/lib/Hevc.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11v-1c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-1.5v.5h-1v-3h1v.5H21zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" -}), 'Hevc'); \ No newline at end of file +}), 'Hevc'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HevcOutlined.js b/packages/material-ui-icons/lib/HevcOutlined.js index 4fab39bd307020..f9a4ccbcb4eb83 100644 --- a/packages/material-ui-icons/lib/HevcOutlined.js +++ b/packages/material-ui-icons/lib/HevcOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11v-1c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-1.5v.5h-1v-3h1v.5H21zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" -}), 'HevcOutlined'); \ No newline at end of file +}), 'HevcOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HevcRounded.js b/packages/material-ui-icons/lib/HevcRounded.js index d29d85e78cca78..364e096f92a785 100644 --- a/packages/material-ui-icons/lib/HevcRounded.js +++ b/packages/material-ui-icons/lib/HevcRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.25 9c-.41 0-.75.34-.75.75V11h-1V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h1v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C7 9.34 6.66 9 6.25 9zm4.5 1.5c.41 0 .75-.34.75-.75S11.16 9 10.75 9H9c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h1.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H9.5v-1h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H9.5v-.5h1.25zM15.63 9c-.36 0-.67.26-.73.62l-.65 3.88-.65-3.88c-.06-.36-.37-.62-.73-.62-.46 0-.8.41-.73.86l.65 3.91c.12.71.73 1.23 1.46 1.23s1.34-.52 1.46-1.23l.65-3.91c.07-.45-.28-.86-.73-.86zm3.87 1.5c0 .28.22.5.5.5h.5c.28 0 .5-.22.5-.5V10c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-.5c0-.28-.22-.5-.5-.5H20c-.28 0-.5.22-.5.5h-1v-3h1z" -}), 'HevcRounded'); \ No newline at end of file +}), 'HevcRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HevcSharp.js b/packages/material-ui-icons/lib/HevcSharp.js index 0950454ff3fd57..699642b315d07d 100644 --- a/packages/material-ui-icons/lib/HevcSharp.js +++ b/packages/material-ui-icons/lib/HevcSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11V9h-4v6h4v-2h-1.5v.5h-1v-3h1v.5zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" -}), 'HevcSharp'); \ No newline at end of file +}), 'HevcSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HevcTwoTone.js b/packages/material-ui-icons/lib/HevcTwoTone.js index 6984ea0937529a..a9467675fd0ce9 100644 --- a/packages/material-ui-icons/lib/HevcTwoTone.js +++ b/packages/material-ui-icons/lib/HevcTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11v-1c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-1.5v.5h-1v-3h1v.5H21zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" -}), 'HevcTwoTone'); \ No newline at end of file +}), 'HevcTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideImage.js b/packages/material-ui-icons/lib/HideImage.js index 8b15a7683efbcd..3c9408475bd0a0 100644 --- a/packages/material-ui-icons/lib/HideImage.js +++ b/packages/material-ui-icons/lib/HideImage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c0-1.1-.9-2-2-2H5.83L21 18.17V5zM2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.41L2.81 2.81zM6 17l3-4 2.25 3 .82-1.1 2.1 2.1H6z" -}), 'HideImage'); \ No newline at end of file +}), 'HideImage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideImageOutlined.js b/packages/material-ui-icons/lib/HideImageOutlined.js index 970968426d86f7..c946ec8d0199b0 100644 --- a/packages/material-ui-icons/lib/HideImageOutlined.js +++ b/packages/material-ui-icons/lib/HideImageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v11.17l2 2V5c0-1.1-.9-2-2-2H5.83l2 2H19zM2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.41L2.81 2.81zM5 19V7.83l7.07 7.07-.82 1.1L9 13l-3 4h8.17l2 2H5z" -}), 'HideImageOutlined'); \ No newline at end of file +}), 'HideImageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideImageRounded.js b/packages/material-ui-icons/lib/HideImageRounded.js index beb027aadf44a3..a52729cbc0f91b 100644 --- a/packages/material-ui-icons/lib/HideImageRounded.js +++ b/packages/material-ui-icons/lib/HideImageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5.83L21 18.17V5c0-1.1-.9-2-2-2zm-15.49.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.9.91V19c0 1.1.9 2 2 2h13.17l.9.9c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51zM7 17c-.41 0-.65-.47-.4-.8l2-2.67c.2-.27.6-.27.8 0L11.25 16l.82-1.1 2.1 2.1H7z" -}), 'HideImageRounded'); \ No newline at end of file +}), 'HideImageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideImageSharp.js b/packages/material-ui-icons/lib/HideImageSharp.js index 2b155ed94272f4..bd66070902e9ed 100644 --- a/packages/material-ui-icons/lib/HideImageSharp.js +++ b/packages/material-ui-icons/lib/HideImageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H5.83L21 18.17zM2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.41L2.81 2.81zM6 17l3-4 2.25 3 .82-1.1 2.1 2.1H6z" -}), 'HideImageSharp'); \ No newline at end of file +}), 'HideImageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideImageTwoTone.js b/packages/material-ui-icons/lib/HideImageTwoTone.js index 944cfa85247ba7..d270384a3fd4ce 100644 --- a/packages/material-ui-icons/lib/HideImageTwoTone.js +++ b/packages/material-ui-icons/lib/HideImageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.17 19-2-2H6l3-4 2.25 3 .82-1.1L5 7.83V19zM7.83 5 19 16.17V5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v11.17l2 2V5c0-1.1-.9-2-2-2H5.83l2 2H19zM2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.41L2.81 2.81zM5 19V7.83l7.07 7.07-.82 1.1L9 13l-3 4h8.17l2 2H5z" -}, "1")], 'HideImageTwoTone'); \ No newline at end of file +}, "1")], 'HideImageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideSource.js b/packages/material-ui-icons/lib/HideSource.js index 6c4bece56a2246..75cb5c3d96a387 100644 --- a/packages/material-ui-icons/lib/HideSource.js +++ b/packages/material-ui-icons/lib/HideSource.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" -}), 'HideSource'); \ No newline at end of file +}), 'HideSource'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideSourceOutlined.js b/packages/material-ui-icons/lib/HideSourceOutlined.js index ab8f1f40c95a2d..55febfc8e28a13 100644 --- a/packages/material-ui-icons/lib/HideSourceOutlined.js +++ b/packages/material-ui-icons/lib/HideSourceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" -}), 'HideSourceOutlined'); \ No newline at end of file +}), 'HideSourceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideSourceRounded.js b/packages/material-ui-icons/lib/HideSourceRounded.js index a027033401f66e..9a4f7886f4642e 100644 --- a/packages/material-ui-icons/lib/HideSourceRounded.js +++ b/packages/material-ui-icons/lib/HideSourceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.1 3.51c-.39.39-.39 1.03 0 1.42l1.56 1.56c-1.25 1.88-1.88 4.2-1.59 6.69.52 4.54 4.21 8.23 8.75 8.75 2.49.29 4.81-.34 6.69-1.59l1.56 1.56c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" -}), 'HideSourceRounded'); \ No newline at end of file +}), 'HideSourceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideSourceSharp.js b/packages/material-ui-icons/lib/HideSourceSharp.js index 4bab74c8344fd2..fa476e0c5dcc70 100644 --- a/packages/material-ui-icons/lib/HideSourceSharp.js +++ b/packages/material-ui-icons/lib/HideSourceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" -}), 'HideSourceSharp'); \ No newline at end of file +}), 'HideSourceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HideSourceTwoTone.js b/packages/material-ui-icons/lib/HideSourceTwoTone.js index aa3830b5ff69c6..e1990854cc8629 100644 --- a/packages/material-ui-icons/lib/HideSourceTwoTone.js +++ b/packages/material-ui-icons/lib/HideSourceTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" -}), 'HideSourceTwoTone'); \ No newline at end of file +}), 'HideSourceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighQuality.js b/packages/material-ui-icons/lib/HighQuality.js index db401ba204a0b4..b46551d37fcabd 100644 --- a/packages/material-ui-icons/lib/HighQuality.js +++ b/packages/material-ui-icons/lib/HighQuality.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 11H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z" -}), 'HighQuality'); \ No newline at end of file +}), 'HighQuality'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighQualityOutlined.js b/packages/material-ui-icons/lib/HighQualityOutlined.js index aa469f8d736d36..add2703cf726ec 100644 --- a/packages/material-ui-icons/lib/HighQualityOutlined.js +++ b/packages/material-ui-icons/lib/HighQualityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zm6.5 2h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h2v3h-2v-3z" -}), 'HighQualityOutlined'); \ No newline at end of file +}), 'HighQualityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighQualityRounded.js b/packages/material-ui-icons/lib/HighQualityRounded.js index e219765ef6240a..805c6a0ec69bde 100644 --- a/packages/material-ui-icons/lib/HighQualityRounded.js +++ b/packages/material-ui-icons/lib/HighQualityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8.75 11c-.41 0-.75-.34-.75-.75V13h-2v1.25c0 .41-.34.75-.75.75S6 14.66 6 14.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.75h2V9.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zM18 14c0 .55-.45 1-1 1h-.75v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z" -}), 'HighQualityRounded'); \ No newline at end of file +}), 'HighQualityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighQualitySharp.js b/packages/material-ui-icons/lib/HighQualitySharp.js index a3bc8ec1a78b43..7b63bcf7277fef 100644 --- a/packages/material-ui-icons/lib/HighQualitySharp.js +++ b/packages/material-ui-icons/lib/HighQualitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3v16h18V4zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7 0h-1.75v1.5h-1.5V15H13V9h5v6zm-3.5-1.5h2v-3h-2v3z" -}), 'HighQualitySharp'); \ No newline at end of file +}), 'HighQualitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighQualityTwoTone.js b/packages/material-ui-icons/lib/HighQualityTwoTone.js index e3af2bed42565a..fd6af9c9cbbdf9 100644 --- a/packages/material-ui-icons/lib/HighQualityTwoTone.js +++ b/packages/material-ui-icons/lib/HighQualityTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6H5v12h14V6zm-8 9H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-3.5h2v3h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm2 0h14v12H5V6zm4.5 5.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z" -}, "1")], 'HighQualityTwoTone'); \ No newline at end of file +}, "1")], 'HighQualityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Highlight.js b/packages/material-ui-icons/lib/Highlight.js index ab875b61265f7f..6dfa8d320e2eeb 100644 --- a/packages/material-ui-icons/lib/Highlight.js +++ b/packages/material-ui-icons/lib/Highlight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm5-12h2v3h-2V2zM3.5 5.88l1.41-1.41 2.12 2.12L5.62 8 3.5 5.88zm13.46.71 2.12-2.12 1.41 1.41L18.38 8l-1.42-1.41z" -}), 'Highlight'); \ No newline at end of file +}), 'Highlight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightAlt.js b/packages/material-ui-icons/lib/HighlightAlt.js index 700ad341f0da15..bda6e32b8c7aa5 100644 --- a/packages/material-ui-icons/lib/HighlightAlt.js +++ b/packages/material-ui-icons/lib/HighlightAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5h-2V3h2v2zm-2 16h2v-2.59L19.59 21 21 19.59 18.41 17H21v-2h-6v6zm4-12h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z" -}), 'HighlightAlt'); \ No newline at end of file +}), 'HighlightAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightAltOutlined.js b/packages/material-ui-icons/lib/HighlightAltOutlined.js index 6051448b4bf089..96d517507cb37a 100644 --- a/packages/material-ui-icons/lib/HighlightAltOutlined.js +++ b/packages/material-ui-icons/lib/HighlightAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5h-2V3h2v2zm-2 10v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6zm4-6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z" -}), 'HighlightAltOutlined'); \ No newline at end of file +}), 'HighlightAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightAltRounded.js b/packages/material-ui-icons/lib/HighlightAltRounded.js index 6666839a4299c8..4ae72a6c46d90d 100644 --- a/packages/material-ui-icons/lib/HighlightAltRounded.js +++ b/packages/material-ui-icons/lib/HighlightAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5h-2V3h2v2zm2 4h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2zm15.71 12.29 1.44-1.44c.32-.32.09-.85-.35-.85H16c-.55 0-1 .45-1 1v3.79c0 .45.54.67.85.35l1.44-1.44 2 2c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.99-2z" -}), 'HighlightAltRounded'); \ No newline at end of file +}), 'HighlightAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightAltSharp.js b/packages/material-ui-icons/lib/HighlightAltSharp.js index 28987d1318c3e1..9c35dc69910f16 100644 --- a/packages/material-ui-icons/lib/HighlightAltSharp.js +++ b/packages/material-ui-icons/lib/HighlightAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5h-2V3h2v2zm2-2v2h2V3h-2zm0 6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 5h2V3H3v2zm0 12h2v-2H3v2zm0 4h2v-2H3v2zm8-16h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm12 2v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6z" -}), 'HighlightAltSharp'); \ No newline at end of file +}), 'HighlightAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightAltTwoTone.js b/packages/material-ui-icons/lib/HighlightAltTwoTone.js index 0dbf51abc7d4c5..89aa3721dceb5c 100644 --- a/packages/material-ui-icons/lib/HighlightAltTwoTone.js +++ b/packages/material-ui-icons/lib/HighlightAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5h-2V3h2v2zm-2 10v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6zm4-6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z" -}), 'HighlightAltTwoTone'); \ No newline at end of file +}), 'HighlightAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightOff.js b/packages/material-ui-icons/lib/HighlightOff.js index a341a79050e38c..1dddf2a1fd5666 100644 --- a/packages/material-ui-icons/lib/HighlightOff.js +++ b/packages/material-ui-icons/lib/HighlightOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'HighlightOff'); \ No newline at end of file +}), 'HighlightOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightOffOutlined.js b/packages/material-ui-icons/lib/HighlightOffOutlined.js index 096ae5ee0e7547..7a67e4a91d0ff8 100644 --- a/packages/material-ui-icons/lib/HighlightOffOutlined.js +++ b/packages/material-ui-icons/lib/HighlightOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'HighlightOffOutlined'); \ No newline at end of file +}), 'HighlightOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightOffRounded.js b/packages/material-ui-icons/lib/HighlightOffRounded.js index aa756c9369ff6b..2b64b90ff84838 100644 --- a/packages/material-ui-icons/lib/HighlightOffRounded.js +++ b/packages/material-ui-icons/lib/HighlightOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.89 8.7 12 10.59 10.11 8.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 8.7 13.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l1.89 1.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l1.89-1.89c.39-.39.39-1.02 0-1.41-.39-.38-1.03-.38-1.41 0zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'HighlightOffRounded'); \ No newline at end of file +}), 'HighlightOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightOffSharp.js b/packages/material-ui-icons/lib/HighlightOffSharp.js index c3b64fc59633af..6352ad617344bc 100644 --- a/packages/material-ui-icons/lib/HighlightOffSharp.js +++ b/packages/material-ui-icons/lib/HighlightOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'HighlightOffSharp'); \ No newline at end of file +}), 'HighlightOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightOffTwoTone.js b/packages/material-ui-icons/lib/HighlightOffTwoTone.js index c158f5fb25ea7e..f055452a0191f8 100644 --- a/packages/material-ui-icons/lib/HighlightOffTwoTone.js +++ b/packages/material-ui-icons/lib/HighlightOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4 10.59L14.59 16 12 13.41 9.41 16 8 14.59 10.59 12 8 9.41 9.41 8 12 10.59 14.59 8 16 9.41 13.41 12 16 14.59z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'HighlightOffTwoTone'); \ No newline at end of file +}, "1")], 'HighlightOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightOutlined.js b/packages/material-ui-icons/lib/HighlightOutlined.js index 7807f425272432..4223151bf4af22 100644 --- a/packages/material-ui-icons/lib/HighlightOutlined.js +++ b/packages/material-ui-icons/lib/HighlightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM3.502 5.874 4.916 4.46l2.122 2.12-1.414 1.415zm13.458.708 2.123-2.12 1.413 1.416-2.123 2.12z" -}), 'HighlightOutlined'); \ No newline at end of file +}), 'HighlightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightRounded.js b/packages/material-ui-icons/lib/HighlightRounded.js index 4faeb487c6774a..2e37cbc4ccc759 100644 --- a/packages/material-ui-icons/lib/HighlightRounded.js +++ b/packages/material-ui-icons/lib/HighlightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.29 14.29 9 17v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4l2.71-2.71c.19-.19.29-.44.29-.71V10c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3.59c0 .26.11.52.29.7zM12 2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1s-1-.45-1-1V3c0-.55.45-1 1-1zM4.21 5.17c.39-.39 1.02-.39 1.42 0l.71.71c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-.72-.71a.9959.9959 0 0 1 0-1.41zm13.46.71.71-.71c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-.71.71c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41z" -}), 'HighlightRounded'); \ No newline at end of file +}), 'HighlightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightSharp.js b/packages/material-ui-icons/lib/HighlightSharp.js index 4101d709fc329b..add7319f4870fe 100644 --- a/packages/material-ui-icons/lib/HighlightSharp.js +++ b/packages/material-ui-icons/lib/HighlightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm5-12h2v3h-2V2zM3.5 5.88l1.41-1.41 2.12 2.12L5.62 8 3.5 5.88zm13.46.71 2.12-2.12 1.41 1.41L18.38 8l-1.42-1.41z" -}), 'HighlightSharp'); \ No newline at end of file +}), 'HighlightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HighlightTwoTone.js b/packages/material-ui-icons/lib/HighlightTwoTone.js index 9fbaa2caa0b676..f70b9be6bfd9dd 100644 --- a/packages/material-ui-icons/lib/HighlightTwoTone.js +++ b/packages/material-ui-icons/lib/HighlightTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 20h2v-3.83l3-3V11H8v2.17l3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM4.916 4.464l2.12 2.122L5.62 8 3.5 5.877zM18.372 8l-1.414-1.414 2.12-2.12 1.415 1.413z" -}, "1")], 'HighlightTwoTone'); \ No newline at end of file +}, "1")], 'HighlightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hiking.js b/packages/material-ui-icons/lib/Hiking.js index a480a0e72c7547..4b575cc6967608 100644 --- a/packages/material-ui-icons/lib/Hiking.js +++ b/packages/material-ui-icons/lib/Hiking.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" -}), 'Hiking'); \ No newline at end of file +}), 'Hiking'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HikingOutlined.js b/packages/material-ui-icons/lib/HikingOutlined.js index e4bb491abd3feb..0acc7ab9092c7f 100644 --- a/packages/material-ui-icons/lib/HikingOutlined.js +++ b/packages/material-ui-icons/lib/HikingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" -}), 'HikingOutlined'); \ No newline at end of file +}), 'HikingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HikingRounded.js b/packages/material-ui-icons/lib/HikingRounded.js index 030f89fa2500b0..bcb763e3ab9edc 100644 --- a/packages/material-ui-icons/lib/HikingRounded.js +++ b/packages/material-ui-icons/lib/HikingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM18.25 9c-.41 0-.75.34-.75.75v1.03c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44L7.25 21.76c-.13.64.36 1.24 1.02 1.24.49 0 .91-.34 1.02-.81L10.9 15l2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45L12.9 13.5l.6-3c1 1.15 2.41 2.01 4 2.34v9.41c0 .41.34.75.75.75s.75-.34.75-.75V9.75c0-.41-.34-.75-.75-.75zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" -}), 'HikingRounded'); \ No newline at end of file +}), 'HikingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HikingSharp.js b/packages/material-ui-icons/lib/HikingSharp.js index 00e1507d7eaf72..60c7bd9eb9d96b 100644 --- a/packages/material-ui-icons/lib/HikingSharp.js +++ b/packages/material-ui-icons/lib/HikingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-3.1-.6 1.34-6.87 3.13.61-1.37 6.86z" -}), 'HikingSharp'); \ No newline at end of file +}), 'HikingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HikingTwoTone.js b/packages/material-ui-icons/lib/HikingTwoTone.js index 5e9362440f637d..276fe83b5100ba 100644 --- a/packages/material-ui-icons/lib/HikingTwoTone.js +++ b/packages/material-ui-icons/lib/HikingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" -}), 'HikingTwoTone'); \ No newline at end of file +}), 'HikingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/History.js b/packages/material-ui-icons/lib/History.js index 13fa7dba0852c3..cc87e274c567cb 100644 --- a/packages/material-ui-icons/lib/History.js +++ b/packages/material-ui-icons/lib/History.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z" -}), 'History'); \ No newline at end of file +}), 'History'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryEdu.js b/packages/material-ui-icons/lib/HistoryEdu.js index 98e3d16f67f4d8..f167417a547bb6 100644 --- a/packages/material-ui-icons/lib/HistoryEdu.js +++ b/packages/material-ui-icons/lib/HistoryEdu.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" -}), 'HistoryEdu'); \ No newline at end of file +}), 'HistoryEdu'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryEduOutlined.js b/packages/material-ui-icons/lib/HistoryEduOutlined.js index 26bfa1905f38df..cc80275f5daad0 100644 --- a/packages/material-ui-icons/lib/HistoryEduOutlined.js +++ b/packages/material-ui-icons/lib/HistoryEduOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" -}), 'HistoryEduOutlined'); \ No newline at end of file +}), 'HistoryEduOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryEduRounded.js b/packages/material-ui-icons/lib/HistoryEduRounded.js index f7747129beb81c..bd99b7ebab70f6 100644 --- a/packages/material-ui-icons/lib/HistoryEduRounded.js +++ b/packages/material-ui-icons/lib/HistoryEduRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v.38c-.83-.33-1.72-.5-2.61-.5-1.42 0-2.84.43-4.05 1.29-.51.36-.57 1.09-.13 1.53l2.57 2.57h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H7c-.55 0-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V5c0-.55-.45-1-1-1H10c-.55 0-1 .45-1 1zm-1.11 5.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-1c0-.55-.45-1-1-1h-5v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" -}), 'HistoryEduRounded'); \ No newline at end of file +}), 'HistoryEduRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryEduSharp.js b/packages/material-ui-icons/lib/HistoryEduSharp.js index 650f96e939fed9..bd5dbdb18e484e 100644 --- a/packages/material-ui-icons/lib/HistoryEduSharp.js +++ b/packages/material-ui-icons/lib/HistoryEduSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" -}), 'HistoryEduSharp'); \ No newline at end of file +}), 'HistoryEduSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryEduTwoTone.js b/packages/material-ui-icons/lib/HistoryEduTwoTone.js index 7c22ebc8dc2342..59a36c656e48a0 100644 --- a/packages/material-ui-icons/lib/HistoryEduTwoTone.js +++ b/packages/material-ui-icons/lib/HistoryEduTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.34 9.76 9.93 8.34c-.95-.94-2.2-1.46-3.54-1.46-.63 0-1.25.12-1.82.34l1.04 1.04h2.28v2.14c.4.23.86.35 1.33.35.73 0 1.41-.28 1.92-.8l.2-.19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 6.62 6 5.97V14h-1.41l-2.83-2.83-.2.2c-.46.46-.99.8-1.56 1.03V15h6v2c0 .55.45 1 1 1s1-.45 1-1V6h-8v.62z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" -}, "2")], 'HistoryEduTwoTone'); \ No newline at end of file +}, "2")], 'HistoryEduTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryOutlined.js b/packages/material-ui-icons/lib/HistoryOutlined.js index 77058d798be345..b43a5f1930eccb 100644 --- a/packages/material-ui-icons/lib/HistoryOutlined.js +++ b/packages/material-ui-icons/lib/HistoryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" -}), 'HistoryOutlined'); \ No newline at end of file +}), 'HistoryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryRounded.js b/packages/material-ui-icons/lib/HistoryRounded.js index a11731ea9afd36..c939a3d2ae3857 100644 --- a/packages/material-ui-icons/lib/HistoryRounded.js +++ b/packages/material-ui-icons/lib/HistoryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.26 3C8.17 2.86 4 6.95 4 12H2.21c-.45 0-.67.54-.35.85l2.79 2.8c.2.2.51.2.71 0l2.79-2.8c.31-.31.09-.85-.36-.85H6c0-3.9 3.18-7.05 7.1-7 3.72.05 6.85 3.18 6.9 6.9.05 3.91-3.1 7.1-7 7.1-1.61 0-3.1-.55-4.28-1.48-.4-.31-.96-.28-1.32.08-.42.42-.39 1.13.08 1.49C9 20.29 10.91 21 13 21c5.05 0 9.14-4.17 9-9.26-.13-4.69-4.05-8.61-8.74-8.74zm-.51 5c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.09-.82-.26-1.03l-2.88-1.71v-3.4c0-.4-.34-.74-.75-.74z" -}), 'HistoryRounded'); \ No newline at end of file +}), 'HistoryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistorySharp.js b/packages/material-ui-icons/lib/HistorySharp.js index df1835ffe483ef..f0373c0c8d6ba7 100644 --- a/packages/material-ui-icons/lib/HistorySharp.js +++ b/packages/material-ui-icons/lib/HistorySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.29-3.52-2.09V8H12z" -}), 'HistorySharp'); \ No newline at end of file +}), 'HistorySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryToggleOff.js b/packages/material-ui-icons/lib/HistoryToggleOff.js index b3505e687e1887..3d1245cf46a572 100644 --- a/packages/material-ui-icons/lib/HistoryToggleOff.js +++ b/packages/material-ui-icons/lib/HistoryToggleOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" -}), 'HistoryToggleOff'); \ No newline at end of file +}), 'HistoryToggleOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryToggleOffOutlined.js b/packages/material-ui-icons/lib/HistoryToggleOffOutlined.js index c4918faaa1b1f6..fc627c703fd07c 100644 --- a/packages/material-ui-icons/lib/HistoryToggleOffOutlined.js +++ b/packages/material-ui-icons/lib/HistoryToggleOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" -}), 'HistoryToggleOffOutlined'); \ No newline at end of file +}), 'HistoryToggleOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryToggleOffRounded.js b/packages/material-ui-icons/lib/HistoryToggleOffRounded.js index fac02a6713c0f5..b49f46d71eb246 100644 --- a/packages/material-ui-icons/lib/HistoryToggleOffRounded.js +++ b/packages/material-ui-icons/lib/HistoryToggleOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM12 7c-.55 0-1 .45-1 1v3.59c0 .53.21 1.04.59 1.41l3 3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-3-3V8c0-.55-.45-1-1-1z" -}), 'HistoryToggleOffRounded'); \ No newline at end of file +}), 'HistoryToggleOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryToggleOffSharp.js b/packages/material-ui-icons/lib/HistoryToggleOffSharp.js index 299afd8ec9fae2..bdd7acc7d2817f 100644 --- a/packages/material-ui-icons/lib/HistoryToggleOffSharp.js +++ b/packages/material-ui-icons/lib/HistoryToggleOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" -}), 'HistoryToggleOffSharp'); \ No newline at end of file +}), 'HistoryToggleOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryToggleOffTwoTone.js b/packages/material-ui-icons/lib/HistoryToggleOffTwoTone.js index 541be7e47e8134..dcf6feb572b51b 100644 --- a/packages/material-ui-icons/lib/HistoryToggleOffTwoTone.js +++ b/packages/material-ui-icons/lib/HistoryToggleOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" -}), 'HistoryToggleOffTwoTone'); \ No newline at end of file +}), 'HistoryToggleOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HistoryTwoTone.js b/packages/material-ui-icons/lib/HistoryTwoTone.js index 62810ecf81fb13..6a71f801cd4503 100644 --- a/packages/material-ui-icons/lib/HistoryTwoTone.js +++ b/packages/material-ui-icons/lib/HistoryTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" -}), 'HistoryTwoTone'); \ No newline at end of file +}), 'HistoryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HolidayVillage.js b/packages/material-ui-icons/lib/HolidayVillage.js index 0174ec79d4de60..d34db3d2b37780 100644 --- a/packages/material-ui-icons/lib/HolidayVillage.js +++ b/packages/material-ui-icons/lib/HolidayVillage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2zM8 4l-6 6v10h5v-5h2v5h5V10L8 4zm1 9H7v-2h2v2z" -}), 'HolidayVillage'); \ No newline at end of file +}), 'HolidayVillage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HolidayVillageOutlined.js b/packages/material-ui-icons/lib/HolidayVillageOutlined.js index 4dcb66f090db04..5b690b40c34495 100644 --- a/packages/material-ui-icons/lib/HolidayVillageOutlined.js +++ b/packages/material-ui-icons/lib/HolidayVillageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 4-6 6v10h12V10L8 4zm4 14H9v-3H7v3H4v-7.17l4-4 4 4V18zm-3-5H7v-2h2v2zm9 7V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2z" -}), 'HolidayVillageOutlined'); \ No newline at end of file +}), 'HolidayVillageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HolidayVillageRounded.js b/packages/material-ui-icons/lib/HolidayVillageRounded.js index 2b710af57deffb..350da971024294 100644 --- a/packages/material-ui-icons/lib/HolidayVillageRounded.js +++ b/packages/material-ui-icons/lib/HolidayVillageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20c.55 0 1-.45 1-1V8.76c0-.27-.11-.52-.29-.71l-3.76-3.76c-.19-.18-.44-.29-.71-.29-.89 0-1.34 1.08-.71 1.71l3.32 3.32c.1.09.15.22.15.35V19c0 .55.45 1 1 1zm4 0c.55 0 1-.45 1-1V7.11c0-.26-.11-.52-.29-.71l-2.1-2.11c-.19-.18-.45-.29-.71-.29-.9 0-1.34 1.08-.71 1.71l1.67 1.67c.09.09.14.22.14.35V19c0 .55.45 1 1 1zM8 15c.55 0 1 .45 1 1v4h4c.55 0 1-.45 1-1v-8.59c0-.27-.11-.52-.29-.71l-5-5a.9959.9959 0 0 0-1.41 0l-5 5c-.19.19-.3.45-.3.71V19c0 .55.45 1 1 1h4v-4c0-.55.45-1 1-1zm0-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'HolidayVillageRounded'); \ No newline at end of file +}), 'HolidayVillageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HolidayVillageSharp.js b/packages/material-ui-icons/lib/HolidayVillageSharp.js index f64cafa8d2ccb9..9ff36179d0225b 100644 --- a/packages/material-ui-icons/lib/HolidayVillageSharp.js +++ b/packages/material-ui-icons/lib/HolidayVillageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2zM8 4l-6 6v10h5v-5h2v5h5V10L8 4zm1 9H7v-2h2v2z" -}), 'HolidayVillageSharp'); \ No newline at end of file +}), 'HolidayVillageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HolidayVillageTwoTone.js b/packages/material-ui-icons/lib/HolidayVillageTwoTone.js index 01b84f3da69d87..5978c6986e2c0e 100644 --- a/packages/material-ui-icons/lib/HolidayVillageTwoTone.js +++ b/packages/material-ui-icons/lib/HolidayVillageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 6.83-4 4V18h3v-3h2v3h3v-7.17l-4-4zM9 13H7v-2h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 4-6 6v10h12V10L8 4zm4 14H9v-3H7v3H4v-7.17l4-4 4 4V18zm-3-5H7v-2h2v2zm9 7V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2z" -}, "1")], 'HolidayVillageTwoTone'); \ No newline at end of file +}, "1")], 'HolidayVillageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Home.js b/packages/material-ui-icons/lib/Home.js index cecc39b81b3dbd..515f94ab9e1a42 100644 --- a/packages/material-ui-icons/lib/Home.js +++ b/packages/material-ui-icons/lib/Home.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" -}), 'Home'); \ No newline at end of file +}), 'Home'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMax.js b/packages/material-ui-icons/lib/HomeMax.js index fa31debab4d012..92458951bd8ea3 100644 --- a/packages/material-ui-icons/lib/HomeMax.js +++ b/packages/material-ui-icons/lib/HomeMax.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" -}), 'HomeMax'); \ No newline at end of file +}), 'HomeMax'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMaxOutlined.js b/packages/material-ui-icons/lib/HomeMaxOutlined.js index 84459ef1c5fcc8..f425707f4ffbd7 100644 --- a/packages/material-ui-icons/lib/HomeMaxOutlined.js +++ b/packages/material-ui-icons/lib/HomeMaxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" -}), 'HomeMaxOutlined'); \ No newline at end of file +}), 'HomeMaxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMaxRounded.js b/packages/material-ui-icons/lib/HomeMaxRounded.js index 8a0f2b1db7277e..f9e91b74cd6ae9 100644 --- a/packages/material-ui-icons/lib/HomeMaxRounded.js +++ b/packages/material-ui-icons/lib/HomeMaxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" -}), 'HomeMaxRounded'); \ No newline at end of file +}), 'HomeMaxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMaxSharp.js b/packages/material-ui-icons/lib/HomeMaxSharp.js index 28330975561739..50747dce427004 100644 --- a/packages/material-ui-icons/lib/HomeMaxSharp.js +++ b/packages/material-ui-icons/lib/HomeMaxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" -}), 'HomeMaxSharp'); \ No newline at end of file +}), 'HomeMaxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMaxTwoTone.js b/packages/material-ui-icons/lib/HomeMaxTwoTone.js index 8bff9ffcd6f1c5..df3e25a056452a 100644 --- a/packages/material-ui-icons/lib/HomeMaxTwoTone.js +++ b/packages/material-ui-icons/lib/HomeMaxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H5c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" -}, "1")], 'HomeMaxTwoTone'); \ No newline at end of file +}, "1")], 'HomeMaxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMini.js b/packages/material-ui-icons/lib/HomeMini.js index 070181de2b5006..eec208d1572c7b 100644 --- a/packages/material-ui-icons/lib/HomeMini.js +++ b/packages/material-ui-icons/lib/HomeMini.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" -}), 'HomeMini'); \ No newline at end of file +}), 'HomeMini'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMiniOutlined.js b/packages/material-ui-icons/lib/HomeMiniOutlined.js index 74384bd8270524..1c4986d6ff0b32 100644 --- a/packages/material-ui-icons/lib/HomeMiniOutlined.js +++ b/packages/material-ui-icons/lib/HomeMiniOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" -}), 'HomeMiniOutlined'); \ No newline at end of file +}), 'HomeMiniOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMiniRounded.js b/packages/material-ui-icons/lib/HomeMiniRounded.js index 026073675386d2..f0382ff43e4fd7 100644 --- a/packages/material-ui-icons/lib/HomeMiniRounded.js +++ b/packages/material-ui-icons/lib/HomeMiniRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" -}), 'HomeMiniRounded'); \ No newline at end of file +}), 'HomeMiniRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMiniSharp.js b/packages/material-ui-icons/lib/HomeMiniSharp.js index 0df44e3a74a36d..53a3eb60d45e11 100644 --- a/packages/material-ui-icons/lib/HomeMiniSharp.js +++ b/packages/material-ui-icons/lib/HomeMiniSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" -}), 'HomeMiniSharp'); \ No newline at end of file +}), 'HomeMiniSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeMiniTwoTone.js b/packages/material-ui-icons/lib/HomeMiniTwoTone.js index dc4ba7382e1adb..6864af3f287d76 100644 --- a/packages/material-ui-icons/lib/HomeMiniTwoTone.js +++ b/packages/material-ui-icons/lib/HomeMiniTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-7.91 0-8 4.8-8 5h16c-.01-.49-.36-5-8-5zM9.14 17h5.72c2.1 0 3.92-1.24 4.71-3H4.42c.8 1.76 2.62 3 4.72 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm2.86 12H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3zM4 12c0-.2.09-5 8-5 7.64 0 7.99 4.51 8 5H4z" -}, "1")], 'HomeMiniTwoTone'); \ No newline at end of file +}, "1")], 'HomeMiniTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeOutlined.js b/packages/material-ui-icons/lib/HomeOutlined.js index 5ace40d33e3882..822e90e0da332f 100644 --- a/packages/material-ui-icons/lib/HomeOutlined.js +++ b/packages/material-ui-icons/lib/HomeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.69 5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3 2 12h3v8h6v-6h2v6h6v-8h3L12 3z" -}), 'HomeOutlined'); \ No newline at end of file +}), 'HomeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeRepairService.js b/packages/material-ui-icons/lib/HomeRepairService.js index cf556ef465d679..a077e090237e95 100644 --- a/packages/material-ui-icons/lib/HomeRepairService.js +++ b/packages/material-ui-icons/lib/HomeRepairService.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16h-2v-1H8v1H6v-1H2v5h20v-5h-4zm2-8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v4h4v-2h2v2h8v-2h2v2h4v-4c0-1.1-.9-2-2-2zm-5 0H9V6h6v2z" -}), 'HomeRepairService'); \ No newline at end of file +}), 'HomeRepairService'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeRepairServiceOutlined.js b/packages/material-ui-icons/lib/HomeRepairServiceOutlined.js index 818f487eab1681..fa8fc28430a535 100644 --- a/packages/material-ui-icons/lib/HomeRepairServiceOutlined.js +++ b/packages/material-ui-icons/lib/HomeRepairServiceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10h20V10c0-1.1-.9-2-2-2zM9 6h6v2H9V6zm11 12H4v-3h2v1h2v-1h8v1h2v-1h2v3zm-2-5v-1h-2v1H8v-1H6v1H4v-3h16v3h-2z" -}), 'HomeRepairServiceOutlined'); \ No newline at end of file +}), 'HomeRepairServiceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeRepairServiceRounded.js b/packages/material-ui-icons/lib/HomeRepairServiceRounded.js index 54641da2bc48d5..2d9533bcfa848c 100644 --- a/packages/material-ui-icons/lib/HomeRepairServiceRounded.js +++ b/packages/material-ui-icons/lib/HomeRepairServiceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16c-.55 0-1-.45-1-1H8c0 .55-.45 1-1 1s-1-.45-1-1H2v3c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-3h-4c0 .55-.45 1-1 1zm3-8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v4h4v-1c0-.55.45-1 1-1s1 .45 1 1v1h8v-1c0-.55.45-1 1-1s1 .45 1 1v1h4v-4c0-1.1-.9-2-2-2zm-5 0H9V6h6v2z" -}), 'HomeRepairServiceRounded'); \ No newline at end of file +}), 'HomeRepairServiceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeRepairServiceSharp.js b/packages/material-ui-icons/lib/HomeRepairServiceSharp.js index 3168022df4e900..317d2e012d8480 100644 --- a/packages/material-ui-icons/lib/HomeRepairServiceSharp.js +++ b/packages/material-ui-icons/lib/HomeRepairServiceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16h-2v-1H8v1H6v-1H2v5h20v-5h-4zm-1-8V4H7v4H2v6h4v-2h2v2h8v-2h2v2h4V8h-5zM9 6h6v2H9V6z" -}), 'HomeRepairServiceSharp'); \ No newline at end of file +}), 'HomeRepairServiceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeRepairServiceTwoTone.js b/packages/material-ui-icons/lib/HomeRepairServiceTwoTone.js index 10fc1736684586..d616e7aa0780c2 100644 --- a/packages/material-ui-icons/lib/HomeRepairServiceTwoTone.js +++ b/packages/material-ui-icons/lib/HomeRepairServiceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10h20V10c0-1.1-.9-2-2-2zM9 6h6v2H9V6zm11 12H4v-3h2v1h2v-1h8v1h2v-1h2v3zm0-5h-2v-1h-2v1H8v-1H6v1H4v-3h16v3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16h-2v-1H8v1H6v-1H4v3h16v-3h-2zM4 10v3h2v-1h2v1h8v-1h2v1h2v-3H7z", opacity: ".3" -}, "1")], 'HomeRepairServiceTwoTone'); \ No newline at end of file +}, "1")], 'HomeRepairServiceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeRounded.js b/packages/material-ui-icons/lib/HomeRounded.js index cfb9a34d8790f8..7f87b9d600ece4 100644 --- a/packages/material-ui-icons/lib/HomeRounded.js +++ b/packages/material-ui-icons/lib/HomeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z" -}), 'HomeRounded'); \ No newline at end of file +}), 'HomeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeSharp.js b/packages/material-ui-icons/lib/HomeSharp.js index bd5940e15a1f66..0ea79f253638d5 100644 --- a/packages/material-ui-icons/lib/HomeSharp.js +++ b/packages/material-ui-icons/lib/HomeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z" -}), 'HomeSharp'); \ No newline at end of file +}), 'HomeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeTwoTone.js b/packages/material-ui-icons/lib/HomeTwoTone.js index ba1a8263880bdd..34cb8bd4bf9759 100644 --- a/packages/material-ui-icons/lib/HomeTwoTone.js +++ b/packages/material-ui-icons/lib/HomeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 12h3v8h6v-6h2v6h6v-8h3L12 3zm5 15h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 10.19V18h2v-6h6v6h2v-7.81l-5-4.5z", opacity: ".3" -}, "1")], 'HomeTwoTone'); \ No newline at end of file +}, "1")], 'HomeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeWork.js b/packages/material-ui-icons/lib/HomeWork.js index 68f14052b8ca73..e88425e350ddfd 100644 --- a/packages/material-ui-icons/lib/HomeWork.js +++ b/packages/material-ui-icons/lib/HomeWork.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.17 5.7 1 10.48V21h5v-8h4v8h5V10.25z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.51l2 1.33L13.73 7H15v.85l2 1.34V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" -}, "1")], 'HomeWork'); \ No newline at end of file +}, "1")], 'HomeWork'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeWorkOutlined.js b/packages/material-ui-icons/lib/HomeWorkOutlined.js index fc0ca907ef52e0..cf72c7ae079d83 100644 --- a/packages/material-ui-icons/lib/HomeWorkOutlined.js +++ b/packages/material-ui-icons/lib/HomeWorkOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm-3.26 0 1.26.84V7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.17 5.7 15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z" -}, "2")], 'HomeWorkOutlined'); \ No newline at end of file +}, "2")], 'HomeWorkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeWorkRounded.js b/packages/material-ui-icons/lib/HomeWorkRounded.js index 84834a29802ac7..7c300fba9d9088 100644 --- a/packages/material-ui-icons/lib/HomeWorkRounded.js +++ b/packages/material-ui-icons/lib/HomeWorkRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-8c-.55 0-1 .45-1 1v1.61l.01.01 5 4.5c.63.56.99 1.38.99 2.23V13h2v2h-2v2h2v2h-2v2h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-5 4h-2V5h2v2zm4 4h-2V9h2v2zm0-4h-2V5h2v2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 20v-7.65c0-.28-.12-.55-.33-.74l-5-4.5c-.19-.18-.43-.26-.67-.26-.24 0-.48.09-.67.26l-5 4.5c-.21.18-.33.45-.33.74V20c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-4h4v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1z" -}, "1")], 'HomeWorkRounded'); \ No newline at end of file +}, "1")], 'HomeWorkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeWorkSharp.js b/packages/material-ui-icons/lib/HomeWorkSharp.js index c4d2925d3e1f1a..395c5d6e44feb0 100644 --- a/packages/material-ui-icons/lib/HomeWorkSharp.js +++ b/packages/material-ui-icons/lib/HomeWorkSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.17 5.7 1 10.48V21h5v-8h4v8h5V10.25z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.51l2 1.33L13.73 7H15v.85l2 1.34V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" -}, "1")], 'HomeWorkSharp'); \ No newline at end of file +}, "1")], 'HomeWorkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HomeWorkTwoTone.js b/packages/material-ui-icons/lib/HomeWorkTwoTone.js index b0ca79e60b3c6b..a491cc2e0576d4 100644 --- a/packages/material-ui-icons/lib/HomeWorkTwoTone.js +++ b/packages/material-ui-icons/lib/HomeWorkTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm-3.26 0 1.26.84V7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.17 5.7 15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4z", opacity: ".3" -}, "3")], 'HomeWorkTwoTone'); \ No newline at end of file +}, "3")], 'HomeWorkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalRule.js b/packages/material-ui-icons/lib/HorizontalRule.js index d9acc890a09ad7..0577a834280d98 100644 --- a/packages/material-ui-icons/lib/HorizontalRule.js +++ b/packages/material-ui-icons/lib/HorizontalRule.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M4 11h16v2H4z" -}), 'HorizontalRule'); \ No newline at end of file +}), 'HorizontalRule'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalRuleOutlined.js b/packages/material-ui-icons/lib/HorizontalRuleOutlined.js index aa03e1cf414fdb..7411025dc7e384 100644 --- a/packages/material-ui-icons/lib/HorizontalRuleOutlined.js +++ b/packages/material-ui-icons/lib/HorizontalRuleOutlined.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M4 11h16v2H4z" -}), 'HorizontalRuleOutlined'); \ No newline at end of file +}), 'HorizontalRuleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalRuleRounded.js b/packages/material-ui-icons/lib/HorizontalRuleRounded.js index 85a6e1b3f002f8..b83bf6fa3ee83a 100644 --- a/packages/material-ui-icons/lib/HorizontalRuleRounded.js +++ b/packages/material-ui-icons/lib/HorizontalRuleRounded.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M19 13H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'HorizontalRuleRounded'); \ No newline at end of file +}), 'HorizontalRuleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalRuleSharp.js b/packages/material-ui-icons/lib/HorizontalRuleSharp.js index 50766e85ca1ffa..14e2540213556f 100644 --- a/packages/material-ui-icons/lib/HorizontalRuleSharp.js +++ b/packages/material-ui-icons/lib/HorizontalRuleSharp.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M4 11h16v2H4z" -}), 'HorizontalRuleSharp'); \ No newline at end of file +}), 'HorizontalRuleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalRuleTwoTone.js b/packages/material-ui-icons/lib/HorizontalRuleTwoTone.js index 080dc684b1570d..e5ab4b0ea93698 100644 --- a/packages/material-ui-icons/lib/HorizontalRuleTwoTone.js +++ b/packages/material-ui-icons/lib/HorizontalRuleTwoTone.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M4 11h16v2H4z" -}), 'HorizontalRuleTwoTone'); \ No newline at end of file +}), 'HorizontalRuleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalSplit.js b/packages/material-ui-icons/lib/HorizontalSplit.js index ca5d19c4493501..b87949d2f21c47 100644 --- a/packages/material-ui-icons/lib/HorizontalSplit.js +++ b/packages/material-ui-icons/lib/HorizontalSplit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z" -}), 'HorizontalSplit'); \ No newline at end of file +}), 'HorizontalSplit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalSplitOutlined.js b/packages/material-ui-icons/lib/HorizontalSplitOutlined.js index c20636ee47fc5b..aec1b71ce5b7a5 100644 --- a/packages/material-ui-icons/lib/HorizontalSplitOutlined.js +++ b/packages/material-ui-icons/lib/HorizontalSplitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z" -}), 'HorizontalSplitOutlined'); \ No newline at end of file +}), 'HorizontalSplitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalSplitRounded.js b/packages/material-ui-icons/lib/HorizontalSplitRounded.js index bf31adef4fcb88..943540c29445ae 100644 --- a/packages/material-ui-icons/lib/HorizontalSplitRounded.js +++ b/packages/material-ui-icons/lib/HorizontalSplitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h16c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'HorizontalSplitRounded'); \ No newline at end of file +}), 'HorizontalSplitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalSplitSharp.js b/packages/material-ui-icons/lib/HorizontalSplitSharp.js index dd69c5ef6d6066..2a201fd2c3d3de 100644 --- a/packages/material-ui-icons/lib/HorizontalSplitSharp.js +++ b/packages/material-ui-icons/lib/HorizontalSplitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z" -}), 'HorizontalSplitSharp'); \ No newline at end of file +}), 'HorizontalSplitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HorizontalSplitTwoTone.js b/packages/material-ui-icons/lib/HorizontalSplitTwoTone.js index 94dafa83ecf677..9a4db7a02be7f3 100644 --- a/packages/material-ui-icons/lib/HorizontalSplitTwoTone.js +++ b/packages/material-ui-icons/lib/HorizontalSplitTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h14v2H5z", opacity: ".3" -}, "1")], 'HorizontalSplitTwoTone'); \ No newline at end of file +}, "1")], 'HorizontalSplitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotTub.js b/packages/material-ui-icons/lib/HotTub.js index 6bae3b9196b1c1..c5408a70f247e9 100644 --- a/packages/material-ui-icons/lib/HotTub.js +++ b/packages/material-ui-icons/lib/HotTub.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" -}, "1")], 'HotTub'); \ No newline at end of file +}, "1")], 'HotTub'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotTubOutlined.js b/packages/material-ui-icons/lib/HotTubOutlined.js index 373a23a7fabcf3..966b1d1d18cba9 100644 --- a/packages/material-ui-icons/lib/HotTubOutlined.js +++ b/packages/material-ui-icons/lib/HotTubOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zm-4 0c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z" -}, "1")], 'HotTubOutlined'); \ No newline at end of file +}, "1")], 'HotTubOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotTubRounded.js b/packages/material-ui-icons/lib/HotTubRounded.js index b5092200b5994c..9d9d4dcb3ba472 100644 --- a/packages/material-ui-icons/lib/HotTubRounded.js +++ b/packages/material-ui-icons/lib/HotTubRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12h-9.85c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H3c-.55 0-1 .45-1 1v7c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-7c0-.55-.45-1-1-1zM7 19c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm-3.94-9c.5 0 .93-.39.94-.89.04-1.4-.58-2.48-1.35-3.25-.65-.72-.8-1.27-.77-1.91.02-.52-.41-.95-.94-.95-.5 0-.93.4-.94.9-.03 1.29.5 2.43 1.35 3.25.61.59.78 1.27.78 1.89-.01.52.4.96.93.96zm4 0c.5 0 .93-.39.94-.89.04-1.4-.58-2.48-1.35-3.25-.65-.72-.8-1.27-.77-1.91.02-.52-.41-.95-.94-.95-.5 0-.93.4-.94.9-.03 1.29.5 2.43 1.35 3.25.61.59.78 1.27.78 1.89-.01.52.4.96.93.96z" -}, "1")], 'HotTubRounded'); \ No newline at end of file +}, "1")], 'HotTubRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotTubSharp.js b/packages/material-ui-icons/lib/HotTubSharp.js index 18030e2dcc70bb..0110f24d9e9b79 100644 --- a/packages/material-ui-icons/lib/HotTubSharp.js +++ b/packages/material-ui-icons/lib/HotTubSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v10h20V12H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" -}, "1")], 'HotTubSharp'); \ No newline at end of file +}, "1")], 'HotTubSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotTubTwoTone.js b/packages/material-ui-icons/lib/HotTubTwoTone.js index 5c0be51d35c4fa..e60111ad39a33a 100644 --- a/packages/material-ui-icons/lib/HotTubTwoTone.js +++ b/packages/material-ui-icons/lib/HotTubTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zM11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM13.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z" -}, "1")], 'HotTubTwoTone'); \ No newline at end of file +}, "1")], 'HotTubTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hotel.js b/packages/material-ui-icons/lib/Hotel.js index 5f1d24be27a0b5..78dd195c1e96f8 100644 --- a/packages/material-ui-icons/lib/Hotel.js +++ b/packages/material-ui-icons/lib/Hotel.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z" -}), 'Hotel'); \ No newline at end of file +}), 'Hotel'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotelOutlined.js b/packages/material-ui-icons/lib/HotelOutlined.js index e11e910dabff61..78fcb35b2865bd 100644 --- a/packages/material-ui-icons/lib/HotelOutlined.js +++ b/packages/material-ui-icons/lib/HotelOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" -}), 'HotelOutlined'); \ No newline at end of file +}), 'HotelOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotelRounded.js b/packages/material-ui-icons/lib/HotelRounded.js index b8c23bd0ef3458..c17198a62963d6 100644 --- a/packages/material-ui-icons/lib/HotelRounded.js +++ b/packages/material-ui-icons/lib/HotelRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V6c0-.55-.45-1-1-1s-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1v-2h18v2c0 .55.45 1 1 1s1-.45 1-1v-8c0-2.21-1.79-4-4-4z" -}), 'HotelRounded'); \ No newline at end of file +}), 'HotelRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotelSharp.js b/packages/material-ui-icons/lib/HotelSharp.js index 3be844557014fb..e92c4f225b9022 100644 --- a/packages/material-ui-icons/lib/HotelSharp.js +++ b/packages/material-ui-icons/lib/HotelSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z" -}), 'HotelSharp'); \ No newline at end of file +}), 'HotelSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HotelTwoTone.js b/packages/material-ui-icons/lib/HotelTwoTone.js index ba0ef8d218d4c8..b89c25b38576b5 100644 --- a/packages/material-ui-icons/lib/HotelTwoTone.js +++ b/packages/material-ui-icons/lib/HotelTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "11", r: "1", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" -}, "2")], 'HotelTwoTone'); \ No newline at end of file +}, "2")], 'HotelTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassBottom.js b/packages/material-ui-icons/lib/HourglassBottom.js index 78234f952142fe..cc5b7d53fd8ca3 100644 --- a/packages/material-ui-icons/lib/HourglassBottom.js +++ b/packages/material-ui-icons/lib/HourglassBottom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z" -}), 'HourglassBottom'); \ No newline at end of file +}), 'HourglassBottom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassBottomOutlined.js b/packages/material-ui-icons/lib/HourglassBottomOutlined.js index 7c44d69711cb7d..38cdea1fd8e551 100644 --- a/packages/material-ui-icons/lib/HourglassBottomOutlined.js +++ b/packages/material-ui-icons/lib/HourglassBottomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z" -}), 'HourglassBottomOutlined'); \ No newline at end of file +}), 'HourglassBottomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassBottomRounded.js b/packages/material-ui-icons/lib/HourglassBottomRounded.js index 438c3623f6a3bd..d52749da0fab80 100644 --- a/packages/material-ui-icons/lib/HourglassBottomRounded.js +++ b/packages/material-ui-icons/lib/HourglassBottomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 22c1.1 0 2-.9 2-2l-.01-3.18c0-.53-.21-1.03-.58-1.41L14 12l3.41-3.43c.37-.37.58-.88.58-1.41L18 4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3.16c0 .53.21 1.04.58 1.42L10 12l-3.41 3.4c-.38.38-.59.89-.59 1.42V20c0 1.1.9 2 2 2h8zM8 7.09V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.09c0 .27-.11.52-.29.71L12 11.5 8.29 7.79c-.18-.18-.29-.44-.29-.7z" -}), 'HourglassBottomRounded'); \ No newline at end of file +}), 'HourglassBottomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassBottomSharp.js b/packages/material-ui-icons/lib/HourglassBottomSharp.js index 1504013f61b316..fd2912513abb63 100644 --- a/packages/material-ui-icons/lib/HourglassBottomSharp.js +++ b/packages/material-ui-icons/lib/HourglassBottomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z" -}), 'HourglassBottomSharp'); \ No newline at end of file +}), 'HourglassBottomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassBottomTwoTone.js b/packages/material-ui-icons/lib/HourglassBottomTwoTone.js index 325e7eb9ec08b7..45fbf8d06d9f5a 100644 --- a/packages/material-ui-icons/lib/HourglassBottomTwoTone.js +++ b/packages/material-ui-icons/lib/HourglassBottomTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 16.5-4-4-4 4V20h8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 16.5-4-4-4 4V20h8z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 22h12v-6l-4-4 3.99-4.01L18 2H6l.01 5.99L10 12l-4 3.99V22zM8 7.5V4h8v3.5l-4 4-4-4zm0 9 4-4 4 4V20H8v-3.5z" -}, "2")], 'HourglassBottomTwoTone'); \ No newline at end of file +}, "2")], 'HourglassBottomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassDisabled.js b/packages/material-ui-icons/lib/HourglassDisabled.js index 29f4061e641356..1a56ffbe9848fa 100644 --- a/packages/material-ui-icons/lib/HourglassDisabled.js +++ b/packages/material-ui-icons/lib/HourglassDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" -}), 'HourglassDisabled'); \ No newline at end of file +}), 'HourglassDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassDisabledOutlined.js b/packages/material-ui-icons/lib/HourglassDisabledOutlined.js index 3a0ff91aca302b..a6c55c0eaff01f 100644 --- a/packages/material-ui-icons/lib/HourglassDisabledOutlined.js +++ b/packages/material-ui-icons/lib/HourglassDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" -}), 'HourglassDisabledOutlined'); \ No newline at end of file +}), 'HourglassDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassDisabledRounded.js b/packages/material-ui-icons/lib/HourglassDisabledRounded.js index a8f353a240c5cc..435735088a1f59 100644 --- a/packages/material-ui-icons/lib/HourglassDisabledRounded.js +++ b/packages/material-ui-icons/lib/HourglassDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l8.19 8.19-3 3.01c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c.86 0 1.58-.54 1.87-1.3l1.91 1.91c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.81 2.81zM16 19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.5l2.84-2.84L16 18.83V19zM8 5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.5l-2.84 2.84 1.25 1.25 3-2.99c.38-.38.59-.89.59-1.42V4c0-1.11-.9-2-2-2H8c-.86 0-1.58.54-1.87 1.3L8 5.17V5z" -}), 'HourglassDisabledRounded'); \ No newline at end of file +}), 'HourglassDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassDisabledSharp.js b/packages/material-ui-icons/lib/HourglassDisabledSharp.js index 2a5c4988d6d3fa..843dba6a3d2440 100644 --- a/packages/material-ui-icons/lib/HourglassDisabledSharp.js +++ b/packages/material-ui-icons/lib/HourglassDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" -}), 'HourglassDisabledSharp'); \ No newline at end of file +}), 'HourglassDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassDisabledTwoTone.js b/packages/material-ui-icons/lib/HourglassDisabledTwoTone.js index 336c0b3c7a6172..9e18c97722b227 100644 --- a/packages/material-ui-icons/lib/HourglassDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/HourglassDisabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" -}), 'HourglassDisabledTwoTone'); \ No newline at end of file +}), 'HourglassDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassEmpty.js b/packages/material-ui-icons/lib/HourglassEmpty.js index 34cb5b4c83f64f..084c0b598cf8bd 100644 --- a/packages/material-ui-icons/lib/HourglassEmpty.js +++ b/packages/material-ui-icons/lib/HourglassEmpty.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z" -}), 'HourglassEmpty'); \ No newline at end of file +}), 'HourglassEmpty'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassEmptyOutlined.js b/packages/material-ui-icons/lib/HourglassEmptyOutlined.js index 546db0210e1482..5b2e4908703bec 100644 --- a/packages/material-ui-icons/lib/HourglassEmptyOutlined.js +++ b/packages/material-ui-icons/lib/HourglassEmptyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z" -}), 'HourglassEmptyOutlined'); \ No newline at end of file +}), 'HourglassEmptyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassEmptyRounded.js b/packages/material-ui-icons/lib/HourglassEmptyRounded.js index b001307c89f633..b132073ce29a04 100644 --- a/packages/material-ui-icons/lib/HourglassEmptyRounded.js +++ b/packages/material-ui-icons/lib/HourglassEmptyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 2c-1.1 0-2 .9-2 2v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8zm8 14.5V19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.5l4-4 4 4zm-4-5-4-4V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.5l-4 4z" -}), 'HourglassEmptyRounded'); \ No newline at end of file +}), 'HourglassEmptyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassEmptySharp.js b/packages/material-ui-icons/lib/HourglassEmptySharp.js index 5b8002ea8c4708..3e3719d9be0210 100644 --- a/packages/material-ui-icons/lib/HourglassEmptySharp.js +++ b/packages/material-ui-icons/lib/HourglassEmptySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z" -}), 'HourglassEmptySharp'); \ No newline at end of file +}), 'HourglassEmptySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassEmptyTwoTone.js b/packages/material-ui-icons/lib/HourglassEmptyTwoTone.js index bf7f9841ff4a1b..48d3f3941dbf6b 100644 --- a/packages/material-ui-icons/lib/HourglassEmptyTwoTone.js +++ b/packages/material-ui-icons/lib/HourglassEmptyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9-4 4-4-4V4h8v3.5z" -}), 'HourglassEmptyTwoTone'); \ No newline at end of file +}), 'HourglassEmptyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassFull.js b/packages/material-ui-icons/lib/HourglassFull.js index f6cf2fcfa730e5..58aa014020b513 100644 --- a/packages/material-ui-icons/lib/HourglassFull.js +++ b/packages/material-ui-icons/lib/HourglassFull.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" -}), 'HourglassFull'); \ No newline at end of file +}), 'HourglassFull'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassFullOutlined.js b/packages/material-ui-icons/lib/HourglassFullOutlined.js index 1e828e408fcf5d..b2e028f727fcab 100644 --- a/packages/material-ui-icons/lib/HourglassFullOutlined.js +++ b/packages/material-ui-icons/lib/HourglassFullOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" -}), 'HourglassFullOutlined'); \ No newline at end of file +}), 'HourglassFullOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassFullRounded.js b/packages/material-ui-icons/lib/HourglassFullRounded.js index 438f30a148b760..8e1415a519483b 100644 --- a/packages/material-ui-icons/lib/HourglassFullRounded.js +++ b/packages/material-ui-icons/lib/HourglassFullRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2z" -}), 'HourglassFullRounded'); \ No newline at end of file +}), 'HourglassFullRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassFullSharp.js b/packages/material-ui-icons/lib/HourglassFullSharp.js index 1058c912506838..56ef16a60dc31b 100644 --- a/packages/material-ui-icons/lib/HourglassFullSharp.js +++ b/packages/material-ui-icons/lib/HourglassFullSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" -}), 'HourglassFullSharp'); \ No newline at end of file +}), 'HourglassFullSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassFullTwoTone.js b/packages/material-ui-icons/lib/HourglassFullTwoTone.js index 94dd381acc1ee5..3d1cad395efddb 100644 --- a/packages/material-ui-icons/lib/HourglassFullTwoTone.js +++ b/packages/material-ui-icons/lib/HourglassFullTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 7.5 4 4 4-4V4H8zm0 9V20h8v-3.5l-4-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9-4 4-4-4V4h8v3.5z" -}, "1")], 'HourglassFullTwoTone'); \ No newline at end of file +}, "1")], 'HourglassFullTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassTop.js b/packages/material-ui-icons/lib/HourglassTop.js index 1984321d87761f..8fd8732c49c5ec 100644 --- a/packages/material-ui-icons/lib/HourglassTop.js +++ b/packages/material-ui-icons/lib/HourglassTop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z" -}), 'HourglassTop'); \ No newline at end of file +}), 'HourglassTop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassTopOutlined.js b/packages/material-ui-icons/lib/HourglassTopOutlined.js index 48c47f479e7df1..f3e2495d925bd6 100644 --- a/packages/material-ui-icons/lib/HourglassTopOutlined.js +++ b/packages/material-ui-icons/lib/HourglassTopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z" -}), 'HourglassTopOutlined'); \ No newline at end of file +}), 'HourglassTopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassTopRounded.js b/packages/material-ui-icons/lib/HourglassTopRounded.js index dfad205907676f..948d06fbd7a0c0 100644 --- a/packages/material-ui-icons/lib/HourglassTopRounded.js +++ b/packages/material-ui-icons/lib/HourglassTopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 2c-1.1 0-2 .9-2 2l.01 3.18c0 .53.21 1.03.58 1.41L10 12l-3.41 3.43c-.37.37-.58.88-.58 1.41L6 20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8zm8 14.91V19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.09c0-.27.11-.52.29-.71L12 12.5l3.71 3.71c.18.18.29.44.29.7z" -}), 'HourglassTopRounded'); \ No newline at end of file +}), 'HourglassTopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassTopSharp.js b/packages/material-ui-icons/lib/HourglassTopSharp.js index f643523e614363..3d47283c034f89 100644 --- a/packages/material-ui-icons/lib/HourglassTopSharp.js +++ b/packages/material-ui-icons/lib/HourglassTopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z" -}), 'HourglassTopSharp'); \ No newline at end of file +}), 'HourglassTopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HourglassTopTwoTone.js b/packages/material-ui-icons/lib/HourglassTopTwoTone.js index 0040ab2eed58c5..ed8a2ae5611bea 100644 --- a/packages/material-ui-icons/lib/HourglassTopTwoTone.js +++ b/packages/material-ui-icons/lib/HourglassTopTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 7.5 4 4 4-4V4H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 7.5 4 4 4-4V4H8z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6v6l4 4-3.99 4.01L6 22h12l-.01-5.99L14 12l4-3.99V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9-4 4-4-4V4h8v3.5z" -}, "2")], 'HourglassTopTwoTone'); \ No newline at end of file +}, "2")], 'HourglassTopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/House.js b/packages/material-ui-icons/lib/House.js index 54c5f7f97c5dad..ab640ca7d41e12 100644 --- a/packages/material-ui-icons/lib/House.js +++ b/packages/material-ui-icons/lib/House.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h5v-6h4v6h5v-8h3l-3-2.7zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z" -}), 'House'); \ No newline at end of file +}), 'House'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseOutlined.js b/packages/material-ui-icons/lib/HouseOutlined.js index ce19afdc0669b4..269cb9e1c204b1 100644 --- a/packages/material-ui-icons/lib/HouseOutlined.js +++ b/packages/material-ui-icons/lib/HouseOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h6v-6h2v6h6v-8h3l-3-2.7zM17 18h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10h4c0-1.1-.9-2-2-2s-2 .9-2 2z" -}, "1")], 'HouseOutlined'); \ No newline at end of file +}, "1")], 'HouseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseRounded.js b/packages/material-ui-icons/lib/HouseRounded.js index 638eb5331b50cc..001196463e10db 100644 --- a/packages/material-ui-icons/lib/HouseRounded.js +++ b/packages/material-ui-icons/lib/HouseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9.3V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1.6l-3.33-3c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L19 9.3zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z" -}), 'HouseRounded'); \ No newline at end of file +}), 'HouseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseSharp.js b/packages/material-ui-icons/lib/HouseSharp.js index 33fef8f230bce5..0922d0fc971085 100644 --- a/packages/material-ui-icons/lib/HouseSharp.js +++ b/packages/material-ui-icons/lib/HouseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h5v-6h4v6h5v-8h3l-3-2.7zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z" -}), 'HouseSharp'); \ No newline at end of file +}), 'HouseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseSiding.js b/packages/material-ui-icons/lib/HouseSiding.js index 971b8091f4ffac..afd280dc8b7c79 100644 --- a/packages/material-ui-icons/lib/HouseSiding.js +++ b/packages/material-ui-icons/lib/HouseSiding.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" -}), 'HouseSiding'); \ No newline at end of file +}), 'HouseSiding'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseSidingOutlined.js b/packages/material-ui-icons/lib/HouseSidingOutlined.js index 7594b194550a9a..2534d627991ebf 100644 --- a/packages/material-ui-icons/lib/HouseSidingOutlined.js +++ b/packages/material-ui-icons/lib/HouseSidingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" -}), 'HouseSidingOutlined'); \ No newline at end of file +}), 'HouseSidingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseSidingRounded.js b/packages/material-ui-icons/lib/HouseSidingRounded.js index 645dd5527c315e..99570af3dffb04 100644 --- a/packages/material-ui-icons/lib/HouseSidingRounded.js +++ b/packages/material-ui-icons/lib/HouseSidingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1s1-.45 1-1v-1h10v1c0 .55.45 1 1 1s1-.45 1-1v-7zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" -}), 'HouseSidingRounded'); \ No newline at end of file +}), 'HouseSidingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseSidingSharp.js b/packages/material-ui-icons/lib/HouseSidingSharp.js index 7e692466aa4139..a5dc8c582c7bc3 100644 --- a/packages/material-ui-icons/lib/HouseSidingSharp.js +++ b/packages/material-ui-icons/lib/HouseSidingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" -}), 'HouseSidingSharp'); \ No newline at end of file +}), 'HouseSidingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseSidingTwoTone.js b/packages/material-ui-icons/lib/HouseSidingTwoTone.js index 97b653e592be2a..525bac2b6e6491 100644 --- a/packages/material-ui-icons/lib/HouseSidingTwoTone.js +++ b/packages/material-ui-icons/lib/HouseSidingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" -}, "1")], 'HouseSidingTwoTone'); \ No newline at end of file +}, "1")], 'HouseSidingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseTwoTone.js b/packages/material-ui-icons/lib/HouseTwoTone.js index 05b88ecde64626..8a123436048f50 100644 --- a/packages/material-ui-icons/lib/HouseTwoTone.js +++ b/packages/material-ui-icons/lib/HouseTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 10.19V18h2v-6h6v6h2v-7.81l-5-4.5-5 4.5zm7-.19h-4c0-1.1.9-2 2-2s2 .9 2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h6v-6h2v6h6v-8h3l-3-2.7zM17 18h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10h4c0-1.1-.9-2-2-2s-2 .9-2 2z" -}, "2")], 'HouseTwoTone'); \ No newline at end of file +}, "2")], 'HouseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Houseboat.js b/packages/material-ui-icons/lib/Houseboat.js index b6dfdabf95dcdd..0334db28f2297f 100644 --- a/packages/material-ui-icons/lib/Houseboat.js +++ b/packages/material-ui-icons/lib/Houseboat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66-1.37 1.37c-.19.18-.45.29-.71.29H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-1.37-1.37-1.41 1.41 1.37 1.37c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l1.37-1.37-1.4-1.41zM13 13h-2v-2h2v2z" -}), 'Houseboat'); \ No newline at end of file +}), 'Houseboat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseboatOutlined.js b/packages/material-ui-icons/lib/HouseboatOutlined.js index 6b2c6fba5593e9..14d221dcf9a649 100644 --- a/packages/material-ui-icons/lib/HouseboatOutlined.js +++ b/packages/material-ui-icons/lib/HouseboatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66-1.37 1.37c-.19.18-.45.29-.71.29H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-1.37-1.37-1.41 1.41 1.37 1.37c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l1.37-1.37-1.4-1.41zM13 13v-2h-2v2H9V8.18l3-2.2 3 2.2V13h-2z" -}), 'HouseboatOutlined'); \ No newline at end of file +}), 'HouseboatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseboatRounded.js b/packages/material-ui-icons/lib/HouseboatRounded.js index abd8c104dbddaf..a14a9eca0ad36c 100644 --- a/packages/material-ui-icons/lib/HouseboatRounded.js +++ b/packages/material-ui-icons/lib/HouseboatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 17.83c0-.42-.27-.8-.67-.94-.71-.27-1.12-.89-2.66-.89-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1s-2.1 1-3.34 1c-1.19 0-1.42-1-3.33-1-1.54 0-1.95.62-2.66.88-.4.15-.67.52-.67.95 0 .7.69 1.19 1.35.95.8-.29 1.18-.78 2-.78 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 .83 0 1.21.49 2 .78.66.24 1.35-.26 1.35-.95zm-3.09-8.02c.33-.45.23-1.07-.22-1.4l-6.1-4.47a.99.99 0 0 0-1.18 0l-6.1 4.47c-.45.33-.54.95-.22 1.4.33.45.95.54 1.4.22L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-.66-.66a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.66.66c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l.66-.66c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.66.66c-.18.18-.44.29-.7.29H17V9.65l.51.37c.45.33 1.07.23 1.4-.21zM13 13h-2v-2h2v2z" -}), 'HouseboatRounded'); \ No newline at end of file +}), 'HouseboatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseboatSharp.js b/packages/material-ui-icons/lib/HouseboatSharp.js index 4b0ed986c045ab..087235363c0f66 100644 --- a/packages/material-ui-icons/lib/HouseboatSharp.js +++ b/packages/material-ui-icons/lib/HouseboatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66L18.67 13H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.33l-1.66-1.66-1.41 1.41L4.5 15h15l2.25-2.25-1.41-1.41zM13 13h-2v-2h2v2z" -}), 'HouseboatSharp'); \ No newline at end of file +}), 'HouseboatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HouseboatTwoTone.js b/packages/material-ui-icons/lib/HouseboatTwoTone.js index 468fda72f8a5a0..51defa5bdd75a7 100644 --- a/packages/material-ui-icons/lib/HouseboatTwoTone.js +++ b/packages/material-ui-icons/lib/HouseboatTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 13v-2h-2v2H9V8.18l3-2.2 3 2.2V13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66-1.37 1.37c-.19.18-.45.29-.71.29H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-1.37-1.37-1.41 1.41 1.37 1.37c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l1.37-1.37-1.4-1.41zM13 13v-2h-2v2H9V8.18l3-2.2 3 2.2V13h-2z" -}, "1")], 'HouseboatTwoTone'); \ No newline at end of file +}, "1")], 'HouseboatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToReg.js b/packages/material-ui-icons/lib/HowToReg.js index b8a9f374162885..9a2862cc538800 100644 --- a/packages/material-ui-icons/lib/HowToReg.js +++ b/packages/material-ui-icons/lib/HowToReg.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "m9 17 3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m4.47 8.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z" -}), 'HowToReg'); \ No newline at end of file +}), 'HowToReg'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToRegOutlined.js b/packages/material-ui-icons/lib/HowToRegOutlined.js index 11936c8df5323f..8c3e8f52677e7c 100644 --- a/packages/material-ui-icons/lib/HowToRegOutlined.js +++ b/packages/material-ui-icons/lib/HowToRegOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z" -}), 'HowToRegOutlined'); \ No newline at end of file +}), 'HowToRegOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToRegRounded.js b/packages/material-ui-icons/lib/HowToRegRounded.js index 2d6ca4869dbe7e..f2106f5dcfbe8e 100644 --- a/packages/material-ui-icons/lib/HowToRegRounded.js +++ b/packages/material-ui-icons/lib/HowToRegRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 20-.86-.86c-1.18-1.18-1.17-3.1.02-4.26l.84-.82c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9zm-1-8c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m5.18 7.78c-.39.39-1.03.39-1.42 0l-2.07-2.09c-.38-.39-.38-1.01 0-1.39l.01-.01c.39-.39 1.02-.39 1.4 0l1.37 1.37 4.43-4.46c.39-.39 1.02-.39 1.41 0l.01.01c.38.39.38 1.01 0 1.39l-5.14 5.18z" -}), 'HowToRegRounded'); \ No newline at end of file +}), 'HowToRegRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToRegSharp.js b/packages/material-ui-icons/lib/HowToRegSharp.js index f78f6df9d96b27..4e838e59da3da2 100644 --- a/packages/material-ui-icons/lib/HowToRegSharp.js +++ b/packages/material-ui-icons/lib/HowToRegSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 17 3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m4.47 8.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41-6.53 6.59z" -}), 'HowToRegSharp'); \ No newline at end of file +}), 'HowToRegSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToRegTwoTone.js b/packages/material-ui-icons/lib/HowToRegTwoTone.js index e4feead9dbb646..8c52c3b68a6397 100644 --- a/packages/material-ui-icons/lib/HowToRegTwoTone.js +++ b/packages/material-ui-icons/lib/HowToRegTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "8", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h4.99L9 17l.93-.94C7.55 16.33 5.2 17.37 5 18z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-1 12H5c.2-.63 2.55-1.67 4.93-1.94h.03l.46-.45L12 14.06c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2zm10.6-5.5-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z" -}, "2")], 'HowToRegTwoTone'); \ No newline at end of file +}, "2")], 'HowToRegTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToVote.js b/packages/material-ui-icons/lib/HowToVote.js index 150f0d14ff0521..9c75c24ea67004 100644 --- a/packages/material-ui-icons/lib/HowToVote.js +++ b/packages/material-ui-icons/lib/HowToVote.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm-1-5.05-4.95 4.95-3.54-3.54 4.95-4.95L17 7.95zm-4.24-5.66L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01z" -}), 'HowToVote'); \ No newline at end of file +}), 'HowToVote'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToVoteOutlined.js b/packages/material-ui-icons/lib/HowToVoteOutlined.js index 5f28fb9cf9cc3b..e68aa1472b85b2 100644 --- a/packages/material-ui-icons/lib/HowToVoteOutlined.js +++ b/packages/material-ui-icons/lib/HowToVoteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1zm-7.66-4.98c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95zm2.12-10.61L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z" -}), 'HowToVoteOutlined'); \ No newline at end of file +}), 'HowToVoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToVoteRounded.js b/packages/material-ui-icons/lib/HowToVoteRounded.js index e765f698df3b52..e60ec45a8b3a28 100644 --- a/packages/material-ui-icons/lib/HowToVoteRounded.js +++ b/packages/material-ui-icons/lib/HowToVoteRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 12.18-1.5 1.64 2 2.18h-13l2-2.18L6 12.18l-3 3.27V20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4.54l-3-3.28z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 14.42c.78.79 2.05.8 2.84.01l4.98-4.98c.78-.78.78-2.05 0-2.83l-3.54-3.53c-.78-.78-2.05-.78-2.83 0L7.09 8.04c-.78.78-.78 2.03-.01 2.82l3.51 3.56zm2.87-9.92 3.53 3.53-4.94 4.94-3.53-3.53 4.94-4.94z" -}, "1")], 'HowToVoteRounded'); \ No newline at end of file +}, "1")], 'HowToVoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToVoteSharp.js b/packages/material-ui-icons/lib/HowToVoteSharp.js index f32e02cbbd8992..337b9ab7b94187 100644 --- a/packages/material-ui-icons/lib/HowToVoteSharp.js +++ b/packages/material-ui-icons/lib/HowToVoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v6h18v-6zm1.81-5.04L13.45 1.6 5.68 9.36l6.36 6.36 7.77-7.76zm-6.35-3.55L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z" -}), 'HowToVoteSharp'); \ No newline at end of file +}), 'HowToVoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HowToVoteTwoTone.js b/packages/material-ui-icons/lib/HowToVoteTwoTone.js index 50b5f848bc7632..361863ae1ed543 100644 --- a/packages/material-ui-icons/lib/HowToVoteTwoTone.js +++ b/packages/material-ui-icons/lib/HowToVoteTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v1H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.048 12.905 8.505 9.362l4.95-4.95 3.543 3.543z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.11 7.25 14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41zm-7.06 5.65L8.51 9.36l4.95-4.95L17 7.95l-4.95 4.95z" -}, "3")], 'HowToVoteTwoTone'); \ No newline at end of file +}, "3")], 'HowToVoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Http.js b/packages/material-ui-icons/lib/Http.js index 38a79031e3e02c..ec1c772c58a5b7 100644 --- a/packages/material-ui-icons/lib/Http.js +++ b/packages/material-ui-icons/lib/Http.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" -}), 'Http'); \ No newline at end of file +}), 'Http'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpOutlined.js b/packages/material-ui-icons/lib/HttpOutlined.js index 1754a122f66895..13608dedc37ad2 100644 --- a/packages/material-ui-icons/lib/HttpOutlined.js +++ b/packages/material-ui-icons/lib/HttpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" -}), 'HttpOutlined'); \ No newline at end of file +}), 'HttpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpRounded.js b/packages/material-ui-icons/lib/HttpRounded.js index 63f620d9e6eeec..c342d6f557b7a6 100644 --- a/packages/material-ui-icons/lib/HttpRounded.js +++ b/packages/material-ui-icons/lib/HttpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 11h-2V9.75c0-.41-.34-.75-.75-.75S1 9.34 1 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C6 9.34 5.66 9 5.25 9s-.75.34-.75.75V11zm3.25-.5h.75v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h.75c.41 0 .75-.34.75-.75S11.16 9 10.75 9h-3c-.41 0-.75.34-.75.75s.34.75.75.75zm5.5 0H14v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h.75c.41 0 .75-.34.75-.75S16.66 9 16.25 9h-3c-.41 0-.75.34-.75.75s.34.75.75.75zM21.5 9H19c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h2c.83 0 1.5-.68 1.5-1.5v-1c0-.82-.67-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" -}), 'HttpRounded'); \ No newline at end of file +}), 'HttpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpSharp.js b/packages/material-ui-icons/lib/HttpSharp.js index ef2d33c249e54c..a97c8934da8d7b 100644 --- a/packages/material-ui-icons/lib/HttpSharp.js +++ b/packages/material-ui-icons/lib/HttpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zM23 9h-5v6h1.5v-2H23V9zm-1.5 2.5h-2v-1h2v1z" -}), 'HttpSharp'); \ No newline at end of file +}), 'HttpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpTwoTone.js b/packages/material-ui-icons/lib/HttpTwoTone.js index a1ae9ab0e93e73..3907aa9debd7f4 100644 --- a/packages/material-ui-icons/lib/HttpTwoTone.js +++ b/packages/material-ui-icons/lib/HttpTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" -}), 'HttpTwoTone'); \ No newline at end of file +}), 'HttpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Https.js b/packages/material-ui-icons/lib/Https.js index 8f5e8607a4eeab..6e811c0b1328d2 100644 --- a/packages/material-ui-icons/lib/Https.js +++ b/packages/material-ui-icons/lib/Https.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z" -}), 'Https'); \ No newline at end of file +}), 'Https'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpsOutlined.js b/packages/material-ui-icons/lib/HttpsOutlined.js index 099257fb8ace76..dc7b53dd36333a 100644 --- a/packages/material-ui-icons/lib/HttpsOutlined.js +++ b/packages/material-ui-icons/lib/HttpsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'HttpsOutlined'); \ No newline at end of file +}), 'HttpsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpsRounded.js b/packages/material-ui-icons/lib/HttpsRounded.js index 2dd43f907a4e2b..b97cf38c0b5a76 100644 --- a/packages/material-ui-icons/lib/HttpsRounded.js +++ b/packages/material-ui-icons/lib/HttpsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" -}), 'HttpsRounded'); \ No newline at end of file +}), 'HttpsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpsSharp.js b/packages/material-ui-icons/lib/HttpsSharp.js index 8f3f73a5649da0..7fd8cbc0a1ee92 100644 --- a/packages/material-ui-icons/lib/HttpsSharp.js +++ b/packages/material-ui-icons/lib/HttpsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" -}), 'HttpsSharp'); \ No newline at end of file +}), 'HttpsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HttpsTwoTone.js b/packages/material-ui-icons/lib/HttpsTwoTone.js index dcc58a06e3008b..a292564b89f98b 100644 --- a/packages/material-ui-icons/lib/HttpsTwoTone.js +++ b/packages/material-ui-icons/lib/HttpsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}, "1")], 'HttpsTwoTone'); \ No newline at end of file +}, "1")], 'HttpsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Hvac.js b/packages/material-ui-icons/lib/Hvac.js index 2d2d19c475eb6c..7b439a1093c012 100644 --- a/packages/material-ui-icons/lib/Hvac.js +++ b/packages/material-ui-icons/lib/Hvac.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm-3.44-2h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}, "1")], 'Hvac'); \ No newline at end of file +}, "1")], 'Hvac'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HvacOutlined.js b/packages/material-ui-icons/lib/HvacOutlined.js index 6c9d2aef31c2a4..fbdc86595b56f4 100644 --- a/packages/material-ui-icons/lib/HvacOutlined.js +++ b/packages/material-ui-icons/lib/HvacOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm3.44-8c.26.45.44.96.51 1.5h-7.9c.07-.54.24-1.05.51-1.5h6.88zm.51 2.5c-.07.54-.24 1.05-.51 1.5H8.56c-.26-.45-.44-.96-.51-1.5h7.9zM9.38 15h5.24c-.7.61-1.61 1-2.62 1s-1.91-.39-2.62-1zm5.24-6H9.38c.7-.61 1.61-1 2.62-1s1.91.39 2.62 1z" -}, "1")], 'HvacOutlined'); \ No newline at end of file +}, "1")], 'HvacOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HvacRounded.js b/packages/material-ui-icons/lib/HvacRounded.js index ff3f1b7c56c1e7..1722e00cb3eebe 100644 --- a/packages/material-ui-icons/lib/HvacRounded.js +++ b/packages/material-ui-icons/lib/HvacRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm-3.44-2h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}, "1")], 'HvacRounded'); \ No newline at end of file +}, "1")], 'HvacRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HvacSharp.js b/packages/material-ui-icons/lib/HvacSharp.js index f449e4b3dec274..4fcc0b55654a57 100644 --- a/packages/material-ui-icons/lib/HvacSharp.js +++ b/packages/material-ui-icons/lib/HvacSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.56 14h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm0-8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}, "1")], 'HvacSharp'); \ No newline at end of file +}, "1")], 'HvacSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/HvacTwoTone.js b/packages/material-ui-icons/lib/HvacTwoTone.js index e13610f80dd0f7..284551de65d449 100644 --- a/packages/material-ui-icons/lib/HvacTwoTone.js +++ b/packages/material-ui-icons/lib/HvacTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm7-13c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm0-2c-1.01 0-1.91-.39-2.62-1h5.24c-.71.61-1.61 1-2.62 1zm0-8c1.01 0 1.91.39 2.62 1H9.38c.71-.61 1.61-1 2.62-1zm-3.44 2h6.89c.26.45.44.96.51 1.5h-7.9c.06-.54.23-1.05.5-1.5zm7.39 2.5c-.07.54-.24 1.05-.51 1.5H8.56c-.26-.45-.44-.96-.51-1.5h7.9z" -}, "2")], 'HvacTwoTone'); \ No newline at end of file +}, "2")], 'HvacTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IceSkating.js b/packages/material-ui-icons/lib/IceSkating.js index 60423e7924e3ae..3c12ecc106c223 100644 --- a/packages/material-ui-icons/lib/IceSkating.js +++ b/packages/material-ui-icons/lib/IceSkating.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8.5c0-.28.22-.5.5-.5h2.52L11 7H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H11V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2c0 1.66-1.34 3-3 3h-2v-2h3v-2.88c0-2.1-1.55-3.53-3.03-3.88l-2.7-.67c-.87-.22-1.57-.81-1.95-1.57H8.5c-.28 0-.5-.22-.5-.5zM14 20H8v-2h6v2z" -}), 'IceSkating'); \ No newline at end of file +}), 'IceSkating'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IceSkatingOutlined.js b/packages/material-ui-icons/lib/IceSkatingOutlined.js index 0dc4c5793c1d0a..803bc1129c92bb 100644 --- a/packages/material-ui-icons/lib/IceSkatingOutlined.js +++ b/packages/material-ui-icons/lib/IceSkatingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-.74C12.62 9.19 12 8.39 12 7.5V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zM5 16V5h5v1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5H10l.1 1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5h1.81c.45 1.12 1.4 2.01 2.6 2.36l2.62.73C16.4 12.33 17 13.1 17 14v2H5zm9 4H8v-2h6v2z" -}), 'IceSkatingOutlined'); \ No newline at end of file +}), 'IceSkatingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IceSkatingRounded.js b/packages/material-ui-icons/lib/IceSkatingRounded.js index 72d82755976228..79538d87c4055d 100644 --- a/packages/material-ui-icons/lib/IceSkatingRounded.js +++ b/packages/material-ui-icons/lib/IceSkatingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.87 17c-.47 0-.85.34-.98.8-.35 1.27-1.51 2.2-2.89 2.2h-2v-2h1c1.1 0 2-.9 2-2v-.88c0-2.1-1.55-3.53-3.03-3.88l-2.7-.67c-.87-.22-1.57-.81-1.95-1.57H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h2.52L11 7H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H11V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h1v2H3c-.55 0-1 .45-1 1s.45 1 1 1h15c2.33 0 4.29-1.6 4.84-3.75.17-.63-.32-1.25-.97-1.25zM14 20H8v-2h6v2z" -}), 'IceSkatingRounded'); \ No newline at end of file +}), 'IceSkatingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IceSkatingSharp.js b/packages/material-ui-icons/lib/IceSkatingSharp.js index b99481fe57a7e1..83b6f39d7d3506 100644 --- a/packages/material-ui-icons/lib/IceSkatingSharp.js +++ b/packages/material-ui-icons/lib/IceSkatingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3l-.01-6-5.71-1.43c-.88-.22-1.58-.81-1.96-1.57H8V8h3.02L11 7H8V6h3V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zm-7 3H8v-2h6v2z" -}), 'IceSkatingSharp'); \ No newline at end of file +}), 'IceSkatingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IceSkatingTwoTone.js b/packages/material-ui-icons/lib/IceSkatingTwoTone.js index df9f7307f67154..d04953305ecefb 100644 --- a/packages/material-ui-icons/lib/IceSkatingTwoTone.js +++ b/packages/material-ui-icons/lib/IceSkatingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16V5h5v1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5H10l.1 1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5h1.81c.45 1.12 1.4 2.01 2.6 2.36l2.62.73C16.4 12.33 17 13.1 17 14v2H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-.74C12.62 9.19 12 8.39 12 7.5V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zM5 16V5h5v1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5H10l.1 1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5h1.81c.45 1.12 1.4 2.01 2.6 2.36l2.62.73C16.4 12.33 17 13.1 17 14v2H5zm9 4H8v-2h6v2z" -}, "1")], 'IceSkatingTwoTone'); \ No newline at end of file +}, "1")], 'IceSkatingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Icecream.js b/packages/material-ui-icons/lib/Icecream.js index 4913e8add81c25..15f8d27c18f5bf 100644 --- a/packages/material-ui-icons/lib/Icecream.js +++ b/packages/material-ui-icons/lib/Icecream.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "m8.79 12.4 3.26 6.22 3.17-6.21c-.11-.08-.21-.16-.3-.25-.84.53-1.85.84-2.92.84s-2.08-.31-2.92-.84c-.09.09-.19.17-.29.24zm-1.96.59C5.25 12.9 4 11.6 4 10c0-1.49 1.09-2.73 2.52-2.96C6.75 4.22 9.12 2 12 2s5.25 2.22 5.48 5.04C18.91 7.27 20 8.51 20 10c0 1.59-1.24 2.9-2.81 2.99L12.07 23 6.83 12.99z" -}), 'Icecream'); \ No newline at end of file +}), 'Icecream'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IcecreamOutlined.js b/packages/material-ui-icons/lib/IcecreamOutlined.js index e02d438c12d386..ee35dc2d53b985 100644 --- a/packages/material-ui-icons/lib/IcecreamOutlined.js +++ b/packages/material-ui-icons/lib/IcecreamOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23zM17 12c-.52 0-1.01-.2-1.39-.56l-.56-.54-.66.42c-.71.44-1.53.68-2.39.68s-1.68-.24-2.39-.69l-.66-.41-.56.54c-.38.35-.87.56-1.39.56-1.1 0-2-.89-2-2 0-.98.72-1.82 1.68-1.97l.77-.13.06-.78C7.71 4.8 9.66 3 12 3s4.29 1.8 4.48 4.12l.06.78.77.12c.97.16 1.69.99 1.69 1.98 0 1.1-.9 2-2 2z" -}), 'IcecreamOutlined'); \ No newline at end of file +}), 'IcecreamOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IcecreamRounded.js b/packages/material-ui-icons/lib/IcecreamRounded.js index 3c2f1ad4f550fd..ddfd8e4a8d2cdd 100644 --- a/packages/material-ui-icons/lib/IcecreamRounded.js +++ b/packages/material-ui-icons/lib/IcecreamRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02l3.83 7.31c.38.72 1.41.71 1.78-.01l3.73-7.31c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23z" -}), 'IcecreamRounded'); \ No newline at end of file +}), 'IcecreamRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IcecreamSharp.js b/packages/material-ui-icons/lib/IcecreamSharp.js index 555a92348bf907..ed6dc5c2281773 100644 --- a/packages/material-ui-icons/lib/IcecreamSharp.js +++ b/packages/material-ui-icons/lib/IcecreamSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23z" -}), 'IcecreamSharp'); \ No newline at end of file +}), 'IcecreamSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IcecreamTwoTone.js b/packages/material-ui-icons/lib/IcecreamTwoTone.js index abb7bf729c2021..daa6e74bcaa47c 100644 --- a/packages/material-ui-icons/lib/IcecreamTwoTone.js +++ b/packages/material-ui-icons/lib/IcecreamTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.32 13.42 2.73 5.21 2.67-5.23c-.84.39-1.77.6-2.72.6-.94 0-1.85-.21-2.68-.58zm7.99-5.4-.77-.12-.06-.78C16.29 4.8 14.34 3 12 3S7.71 4.8 7.51 7.12l-.06.78-.77.13C5.72 8.18 5 9.02 5 10c0 1.11.9 2 2 2 .52 0 1.01-.21 1.39-.56l.56-.54.66.41c.71.45 1.53.69 2.39.69s1.68-.24 2.39-.68l.66-.42.56.54c.38.36.87.56 1.39.56 1.1 0 2-.9 2-2 0-.99-.72-1.82-1.69-1.98z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23zM17 12c-.52 0-1.01-.2-1.39-.56l-.56-.54-.66.42c-.71.44-1.53.68-2.39.68s-1.68-.24-2.39-.69l-.66-.41-.56.54c-.38.35-.87.56-1.39.56-1.1 0-2-.89-2-2 0-.98.72-1.82 1.68-1.97l.77-.13.06-.78C7.71 4.8 9.66 3 12 3s4.29 1.8 4.48 4.12l.06.78.77.12c.97.16 1.69.99 1.69 1.98 0 1.1-.9 2-2 2z" -}, "1")], 'IcecreamTwoTone'); \ No newline at end of file +}, "1")], 'IcecreamTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Image.js b/packages/material-ui-icons/lib/Image.js index bbe2eb19547d43..0414593b89a1df 100644 --- a/packages/material-ui-icons/lib/Image.js +++ b/packages/material-ui-icons/lib/Image.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" -}), 'Image'); \ No newline at end of file +}), 'Image'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageAspectRatio.js b/packages/material-ui-icons/lib/ImageAspectRatio.js index 3a21d0f0703519..5c0470481ae2c8 100644 --- a/packages/material-ui-icons/lib/ImageAspectRatio.js +++ b/packages/material-ui-icons/lib/ImageAspectRatio.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}), 'ImageAspectRatio'); \ No newline at end of file +}), 'ImageAspectRatio'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageAspectRatioOutlined.js b/packages/material-ui-icons/lib/ImageAspectRatioOutlined.js index f050353410d265..d3bb241eae73e5 100644 --- a/packages/material-ui-icons/lib/ImageAspectRatioOutlined.js +++ b/packages/material-ui-icons/lib/ImageAspectRatioOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}), 'ImageAspectRatioOutlined'); \ No newline at end of file +}), 'ImageAspectRatioOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageAspectRatioRounded.js b/packages/material-ui-icons/lib/ImageAspectRatioRounded.js index bce9fb1bfdddda..f9581b08c6b2fc 100644 --- a/packages/material-ui-icons/lib/ImageAspectRatioRounded.js +++ b/packages/material-ui-icons/lib/ImageAspectRatioRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'ImageAspectRatioRounded'); \ No newline at end of file +}), 'ImageAspectRatioRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageAspectRatioSharp.js b/packages/material-ui-icons/lib/ImageAspectRatioSharp.js index 58900adcc11f1c..6c728599287c98 100644 --- a/packages/material-ui-icons/lib/ImageAspectRatioSharp.js +++ b/packages/material-ui-icons/lib/ImageAspectRatioSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm10-6H2v16h20V4zm-2 14H4V6h16v12z" -}), 'ImageAspectRatioSharp'); \ No newline at end of file +}), 'ImageAspectRatioSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageAspectRatioTwoTone.js b/packages/material-ui-icons/lib/ImageAspectRatioTwoTone.js index 5b4d15c6079160..8a29ef9a670ef2 100644 --- a/packages/material-ui-icons/lib/ImageAspectRatioTwoTone.js +++ b/packages/material-ui-icons/lib/ImageAspectRatioTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zm10-8h2v2h-2v-2zm0 4h2v2h-2v-2zm-4-4h2v2h-2v-2zm-4 0h2v2H6v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10h2v2h-2zm0 4h2v2h-2zm-8-4h2v2H6zm4 0h2v2h-2zm10-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "1")], 'ImageAspectRatioTwoTone'); \ No newline at end of file +}, "1")], 'ImageAspectRatioTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageNotSupported.js b/packages/material-ui-icons/lib/ImageNotSupported.js index c880b7c49cfc25..c98ffa8841781b 100644 --- a/packages/material-ui-icons/lib/ImageNotSupported.js +++ b/packages/material-ui-icons/lib/ImageNotSupported.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 21.9-8.49-8.49-9.82-9.82L2.1 2.1.69 3.51 3 5.83V19c0 1.1.9 2 2 2h13.17l2.31 2.31 1.42-1.41zM5 18l3.5-4.5 2.5 3.01L12.17 15l3 3H5zm16 .17L5.83 3H19c1.1 0 2 .9 2 2v13.17z" -}), 'ImageNotSupported'); \ No newline at end of file +}), 'ImageNotSupported'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageNotSupportedOutlined.js b/packages/material-ui-icons/lib/ImageNotSupportedOutlined.js index 71de2828ecedd1..5d1a8f0374f147 100644 --- a/packages/material-ui-icons/lib/ImageNotSupportedOutlined.js +++ b/packages/material-ui-icons/lib/ImageNotSupportedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 21.9-6.1-6.1-2.69-2.69L5 5 3.59 3.59 2.1 2.1.69 3.51 3 5.83V19c0 1.1.9 2 2 2h13.17l2.31 2.31 1.42-1.41zM5 19V7.83l6.84 6.84-.84 1.05L9 13l-3 4h8.17l2 2H5zM7.83 5l-2-2H19c1.1 0 2 .9 2 2v13.17l-2-2V5H7.83z" -}), 'ImageNotSupportedOutlined'); \ No newline at end of file +}), 'ImageNotSupportedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageNotSupportedRounded.js b/packages/material-ui-icons/lib/ImageNotSupportedRounded.js index 26bc3d4d34db1b..b8cbaacf3a4386 100644 --- a/packages/material-ui-icons/lib/ImageNotSupportedRounded.js +++ b/packages/material-ui-icons/lib/ImageNotSupportedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.19 21.19-.78-.78L18 18l-4.59-4.59-9.82-9.82-.78-.78a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22L3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42zM6.02 18c-.42 0-.65-.48-.39-.81l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53L12.17 15l3 3H6.02zm14.98.17L5.83 3H19c1.1 0 2 .9 2 2v13.17z" -}), 'ImageNotSupportedRounded'); \ No newline at end of file +}), 'ImageNotSupportedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageNotSupportedSharp.js b/packages/material-ui-icons/lib/ImageNotSupportedSharp.js index fcdc5cc2f887ff..3ecd27b9470c1e 100644 --- a/packages/material-ui-icons/lib/ImageNotSupportedSharp.js +++ b/packages/material-ui-icons/lib/ImageNotSupportedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 21.9-8.49-8.49L3 3l-.9-.9L.69 3.51 3 5.83V21h15.17l2.31 2.31 1.42-1.41zM5 18l3.5-4.5 2.5 3.01L12.17 15l3 3H5zm16 .17L5.83 3H21v15.17z" -}), 'ImageNotSupportedSharp'); \ No newline at end of file +}), 'ImageNotSupportedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageNotSupportedTwoTone.js b/packages/material-ui-icons/lib/ImageNotSupportedTwoTone.js index 403c5604882aaa..50d79385f431dd 100644 --- a/packages/material-ui-icons/lib/ImageNotSupportedTwoTone.js +++ b/packages/material-ui-icons/lib/ImageNotSupportedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 5H19v11.17L7.83 5zm8.34 14-2-2H6l3-4 2 2.72.84-1.05L5 7.83V19h11.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5H7.83l-2-2zm14.66 20.31L18.17 21H5c-1.1 0-2-.9-2-2V5.83L.69 3.51 2.1 2.1l1.49 1.49L5 5l8.11 8.11 2.69 2.69L19 19l1.41 1.41 1.49 1.49-1.41 1.41zM16.17 19l-2-2H6l3-4 2 2.72.84-1.05L5 7.83V19h11.17z" -}, "1")], 'ImageNotSupportedTwoTone'); \ No newline at end of file +}, "1")], 'ImageNotSupportedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageOutlined.js b/packages/material-ui-icons/lib/ImageOutlined.js index 2b3c6c987626e4..7188086f5942dc 100644 --- a/packages/material-ui-icons/lib/ImageOutlined.js +++ b/packages/material-ui-icons/lib/ImageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86-3 3.87L9 13.14 6 17h12l-3.86-5.14z" -}), 'ImageOutlined'); \ No newline at end of file +}), 'ImageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageRounded.js b/packages/material-ui-icons/lib/ImageRounded.js index ca01c86bc9eef5..3a0799a9a09ba5 100644 --- a/packages/material-ui-icons/lib/ImageRounded.js +++ b/packages/material-ui-icons/lib/ImageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z" -}), 'ImageRounded'); \ No newline at end of file +}), 'ImageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageSearch.js b/packages/material-ui-icons/lib/ImageSearch.js index cc238159a590c3..ca8d28aaf78421 100644 --- a/packages/material-ui-icons/lib/ImageSearch.js +++ b/packages/material-ui-icons/lib/ImageSearch.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" -}), 'ImageSearch'); \ No newline at end of file +}), 'ImageSearch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageSearchOutlined.js b/packages/material-ui-icons/lib/ImageSearchOutlined.js index 3e8702d982b911..c5f17a1d8146ad 100644 --- a/packages/material-ui-icons/lib/ImageSearchOutlined.js +++ b/packages/material-ui-icons/lib/ImageSearchOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" -}), 'ImageSearchOutlined'); \ No newline at end of file +}), 'ImageSearchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageSearchRounded.js b/packages/material-ui-icons/lib/ImageSearchRounded.js index a57419f2836a76..3bf25730f3cf28 100644 --- a/packages/material-ui-icons/lib/ImageSearchRounded.js +++ b/packages/material-ui-icons/lib/ImageSearchRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 15v4c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h3.02c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5c0-.55-.45-1-1-1s-1 .45-1 1zm-2.5 3H6.52c-.42 0-.65-.48-.39-.81l1.74-2.23c.2-.25.58-.26.78-.01l1.56 1.88 2.35-3.02c.2-.26.6-.26.79.01l2.55 3.39c.25.32.01.79-.4.79zm3.8-9.11c.48-.77.75-1.67.69-2.66-.13-2.15-1.84-3.97-3.97-4.2C13.3 1.73 11 3.84 11 6.5c0 2.49 2.01 4.5 4.49 4.5.88 0 1.7-.26 2.39-.7l2.41 2.41c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-2.41-2.4zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" -}), 'ImageSearchRounded'); \ No newline at end of file +}), 'ImageSearchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageSearchSharp.js b/packages/material-ui-icons/lib/ImageSearchSharp.js index 2f59640f39e8b2..aa7d74db19b821 100644 --- a/packages/material-ui-icons/lib/ImageSearchSharp.js +++ b/packages/material-ui-icons/lib/ImageSearchSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H2v18h18v-7l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" -}), 'ImageSearchSharp'); \ No newline at end of file +}), 'ImageSearchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageSearchTwoTone.js b/packages/material-ui-icons/lib/ImageSearchTwoTone.js index e9b6bbe0b301ee..6b7f587d5290b8 100644 --- a/packages/material-ui-icons/lib/ImageSearchTwoTone.js +++ b/packages/material-ui-icons/lib/ImageSearchTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.7 11.53c-.7.31-1.45.47-2.21.47C12.46 12 10 9.53 10 6.5c0-.17.01-.34.03-.5H4v14h14v-8.17l-.3-.3zM5.5 18l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18h-11z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.21 16.83-1.96-2.36L5.5 18h11l-3.54-4.71zM20 6.5C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89c.44-.7.7-1.51.7-2.39zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9zM18 20H4V6h6.03c.06-.72.27-1.39.58-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.17l-2-2V20z" -}, "1")], 'ImageSearchTwoTone'); \ No newline at end of file +}, "1")], 'ImageSearchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageSharp.js b/packages/material-ui-icons/lib/ImageSharp.js index 5cc05d3840c616..528a062498b8d6 100644 --- a/packages/material-ui-icons/lib/ImageSharp.js +++ b/packages/material-ui-icons/lib/ImageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" -}), 'ImageSharp'); \ No newline at end of file +}), 'ImageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImageTwoTone.js b/packages/material-ui-icons/lib/ImageTwoTone.js index 1b849835908555..df9944be0c1937 100644 --- a/packages/material-ui-icons/lib/ImageTwoTone.js +++ b/packages/material-ui-icons/lib/ImageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm4-5.86 2.14 2.58 3-3.87L18 17H6l3-3.86z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4.86-7.14-3 3.86L9 13.14 6 17h12z" -}, "1")], 'ImageTwoTone'); \ No newline at end of file +}, "1")], 'ImageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImagesearchRoller.js b/packages/material-ui-icons/lib/ImagesearchRoller.js index d576a0c79e6b5e..0b99cb83292783 100644 --- a/packages/material-ui-icons/lib/ImagesearchRoller.js +++ b/packages/material-ui-icons/lib/ImagesearchRoller.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2" -}), 'ImagesearchRoller'); \ No newline at end of file +}), 'ImagesearchRoller'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImagesearchRollerOutlined.js b/packages/material-ui-icons/lib/ImagesearchRollerOutlined.js index c8b1787904d883..1f9f11d495695c 100644 --- a/packages/material-ui-icons/lib/ImagesearchRollerOutlined.js +++ b/packages/material-ui-icons/lib/ImagesearchRollerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7V3c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h8v3h-1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-1v-3c0-1.1-.9-2-2-2H4V6h2v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1zM8 4h10v2H8V4zm6 17h-2v-4h2v4z" -}), 'ImagesearchRollerOutlined'); \ No newline at end of file +}), 'ImagesearchRollerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImagesearchRollerRounded.js b/packages/material-ui-icons/lib/ImagesearchRollerRounded.js index 6a08278c5ea65e..60a2c01966b69c 100644 --- a/packages/material-ui-icons/lib/ImagesearchRollerRounded.js +++ b/packages/material-ui-icons/lib/ImagesearchRollerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3v4c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1V6H4v4h8c1.1 0 2 .9 2 2v3h1c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1h1v-3H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h2V3c0-.55.45-1 1-1h12c.55 0 1 .45 1 1z" -}), 'ImagesearchRollerRounded'); \ No newline at end of file +}), 'ImagesearchRollerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImagesearchRollerSharp.js b/packages/material-ui-icons/lib/ImagesearchRollerSharp.js index 7bebc0b1dc5d58..51e5799408cf92 100644 --- a/packages/material-ui-icons/lib/ImagesearchRollerSharp.js +++ b/packages/material-ui-icons/lib/ImagesearchRollerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2h14z" -}), 'ImagesearchRollerSharp'); \ No newline at end of file +}), 'ImagesearchRollerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImagesearchRollerTwoTone.js b/packages/material-ui-icons/lib/ImagesearchRollerTwoTone.js index 623d882ee873c4..ef1d5d39a53269 100644 --- a/packages/material-ui-icons/lib/ImagesearchRollerTwoTone.js +++ b/packages/material-ui-icons/lib/ImagesearchRollerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h10v2H8zm4 13h2v4h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7V3c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h8v3h-1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-1v-3c0-1.1-.9-2-2-2H4V6h2v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1zM8 4h10v2H8V4zm6 17h-2v-4h2v4z" -}, "1")], 'ImagesearchRollerTwoTone'); \ No newline at end of file +}, "1")], 'ImagesearchRollerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportContacts.js b/packages/material-ui-icons/lib/ImportContacts.js index 2bdae84064c3c4..15bd934045941e 100644 --- a/packages/material-ui-icons/lib/ImportContacts.js +++ b/packages/material-ui-icons/lib/ImportContacts.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 4.5c-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .65.73.45.75.45C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.41.21.75-.19.75-.45V6c-1.49-1.12-3.63-1.5-5.5-1.5zm3.5 14c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" -}), 'ImportContacts'); \ No newline at end of file +}), 'ImportContacts'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportContactsOutlined.js b/packages/material-ui-icons/lib/ImportContactsOutlined.js index 738b917fb86940..3d2da1c4731be6 100644 --- a/packages/material-ui-icons/lib/ImportContactsOutlined.js +++ b/packages/material-ui-icons/lib/ImportContactsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" -}), 'ImportContactsOutlined'); \ No newline at end of file +}), 'ImportContactsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportContactsRounded.js b/packages/material-ui-icons/lib/ImportContactsRounded.js index 0d90fe584b17ac..36e6596e2111d5 100644 --- a/packages/material-ui-icons/lib/ImportContactsRounded.js +++ b/packages/material-ui-icons/lib/ImportContactsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 4.5c-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5-1.45 0-2.99.22-4.28.79C1.49 5.62 1 6.33 1 7.14v11.28c0 1.3 1.22 2.26 2.48 1.94.98-.25 2.02-.36 3.02-.36 1.56 0 3.22.26 4.56.92.6.3 1.28.3 1.87 0 1.34-.67 3-.92 4.56-.92 1 0 2.04.11 3.02.36 1.26.33 2.48-.63 2.48-1.94V7.14c0-.81-.49-1.52-1.22-1.85-1.28-.57-2.82-.79-4.27-.79zM21 17.23c0 .63-.58 1.09-1.2.98-.75-.14-1.53-.2-2.3-.2-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5.92 0 1.83.09 2.7.28.46.1.8.51.8.98v9.47z" -}), 'ImportContactsRounded'); \ No newline at end of file +}), 'ImportContactsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportContactsSharp.js b/packages/material-ui-icons/lib/ImportContactsSharp.js index c9e18820b46d99..38d7f2beaebe99 100644 --- a/packages/material-ui-icons/lib/ImportContactsSharp.js +++ b/packages/material-ui-icons/lib/ImportContactsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" -}), 'ImportContactsSharp'); \ No newline at end of file +}), 'ImportContactsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportContactsTwoTone.js b/packages/material-ui-icons/lib/ImportContactsTwoTone.js index db6d8ad7482ab1..4c069f0d7f2b68 100644 --- a/packages/material-ui-icons/lib/ImportContactsTwoTone.js +++ b/packages/material-ui-icons/lib/ImportContactsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zM3 18.5V7c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99v11.5C9.63 18.41 7.84 18 6.5 18c-1.2 0-2.4.15-3.5.5zm18 0c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.13.41-4.5.99V7.49c1.37-.59 3.16-.99 4.5-.99 1.2 0 2.4.15 3.5.5v11.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7.49c-1.37-.58-3.16-.99-4.5-.99-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99V7.49z", opacity: ".3" -}, "1")], 'ImportContactsTwoTone'); \ No newline at end of file +}, "1")], 'ImportContactsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportExport.js b/packages/material-ui-icons/lib/ImportExport.js index fd47f9b11ac3e6..8d0eb3ac83b599 100644 --- a/packages/material-ui-icons/lib/ImportExport.js +++ b/packages/material-ui-icons/lib/ImportExport.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" -}), 'ImportExport'); \ No newline at end of file +}), 'ImportExport'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportExportOutlined.js b/packages/material-ui-icons/lib/ImportExportOutlined.js index 1318c75d1e49e9..8602f9ea911a20 100644 --- a/packages/material-ui-icons/lib/ImportExportOutlined.js +++ b/packages/material-ui-icons/lib/ImportExportOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" -}), 'ImportExportOutlined'); \ No newline at end of file +}), 'ImportExportOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportExportRounded.js b/packages/material-ui-icons/lib/ImportExportRounded.js index b5c77f8fd8064d..5bcf7c871d848a 100644 --- a/packages/material-ui-icons/lib/ImportExportRounded.js +++ b/packages/material-ui-icons/lib/ImportExportRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.65 3.35 5.86 6.14c-.32.31-.1.85.35.85H8V13c0 .55.45 1 1 1s1-.45 1-1V6.99h1.79c.45 0 .67-.54.35-.85L9.35 3.35c-.19-.19-.51-.19-.7 0zM16 17.01V11c0-.55-.45-1-1-1s-1 .45-1 1v6.01h-1.79c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H16z" -}), 'ImportExportRounded'); \ No newline at end of file +}), 'ImportExportRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportExportSharp.js b/packages/material-ui-icons/lib/ImportExportSharp.js index 63e023d30684a2..f861686e73e8a4 100644 --- a/packages/material-ui-icons/lib/ImportExportSharp.js +++ b/packages/material-ui-icons/lib/ImportExportSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" -}), 'ImportExportSharp'); \ No newline at end of file +}), 'ImportExportSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportExportTwoTone.js b/packages/material-ui-icons/lib/ImportExportTwoTone.js index da7e13d8416b6d..115f898ad711e0 100644 --- a/packages/material-ui-icons/lib/ImportExportTwoTone.js +++ b/packages/material-ui-icons/lib/ImportExportTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6.99h3V14h2V6.99h3L9 3zM14 10v7.01h-3L15 21l4-3.99h-3V10z" -}), 'ImportExportTwoTone'); \ No newline at end of file +}), 'ImportExportTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportantDevices.js b/packages/material-ui-icons/lib/ImportantDevices.js index 5c6b08e85cb151..748b4e19088f02 100644 --- a/packages/material-ui-icons/lib/ImportantDevices.js +++ b/packages/material-ui-icons/lib/ImportantDevices.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" -}), 'ImportantDevices'); \ No newline at end of file +}), 'ImportantDevices'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportantDevicesOutlined.js b/packages/material-ui-icons/lib/ImportantDevicesOutlined.js index 69b96fc868a031..dc22456f163ac9 100644 --- a/packages/material-ui-icons/lib/ImportantDevicesOutlined.js +++ b/packages/material-ui-icons/lib/ImportantDevicesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" -}), 'ImportantDevicesOutlined'); \ No newline at end of file +}), 'ImportantDevicesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportantDevicesRounded.js b/packages/material-ui-icons/lib/ImportantDevicesRounded.js index dcea5eb7643bb4..a7b27e33ba9f06 100644 --- a/packages/material-ui-icons/lib/ImportantDevicesRounded.js +++ b/packages/material-ui-icons/lib/ImportantDevicesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.9 2 0 2.9 0 4v12c0 1.1.9 2 2 2h7v2H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V4c0-1.1-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" -}), 'ImportantDevicesRounded'); \ No newline at end of file +}), 'ImportantDevicesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportantDevicesSharp.js b/packages/material-ui-icons/lib/ImportantDevicesSharp.js index b3c2842b7f02d8..6b6e7908c5846a 100644 --- a/packages/material-ui-icons/lib/ImportantDevicesSharp.js +++ b/packages/material-ui-icons/lib/ImportantDevicesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 11.01 17 11v11h7V11.01zM23 20h-5v-7h5v7zM22 2H0v16h9v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V2zM11.97 9 11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" -}), 'ImportantDevicesSharp'); \ No newline at end of file +}), 'ImportantDevicesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ImportantDevicesTwoTone.js b/packages/material-ui-icons/lib/ImportantDevicesTwoTone.js index 266184a2359d50..d7813dd2f149ab 100644 --- a/packages/material-ui-icons/lib/ImportantDevicesTwoTone.js +++ b/packages/material-ui-icons/lib/ImportantDevicesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h5v7h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM2 4h18v5h2V4c0-1.11-.9-2-2-2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4zm9 2-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" -}, "1")], 'ImportantDevicesTwoTone'); \ No newline at end of file +}, "1")], 'ImportantDevicesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Inbox.js b/packages/material-ui-icons/lib/Inbox.js index f18bc400131791..96082c60911522 100644 --- a/packages/material-ui-icons/lib/Inbox.js +++ b/packages/material-ui-icons/lib/Inbox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H4.99c-1.11 0-1.98.89-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10z" -}), 'Inbox'); \ No newline at end of file +}), 'Inbox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InboxOutlined.js b/packages/material-ui-icons/lib/InboxOutlined.js index cff986f33b0d12..6252365d2b86a4 100644 --- a/packages/material-ui-icons/lib/InboxOutlined.js +++ b/packages/material-ui-icons/lib/InboxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z" -}), 'InboxOutlined'); \ No newline at end of file +}), 'InboxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InboxRounded.js b/packages/material-ui-icons/lib/InboxRounded.js index 5bcb3b7e0775da..27051e67b83575 100644 --- a/packages/material-ui-icons/lib/InboxRounded.js +++ b/packages/material-ui-icons/lib/InboxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v9h-3.56c-.36 0-.68.19-.86.5-.52.9-1.47 1.5-2.58 1.5s-2.06-.6-2.58-1.5c-.18-.31-.51-.5-.86-.5H5V5h14z" -}), 'InboxRounded'); \ No newline at end of file +}), 'InboxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InboxSharp.js b/packages/material-ui-icons/lib/InboxSharp.js index 04d19d046d4900..82ad218b058cdd 100644 --- a/packages/material-ui-icons/lib/InboxSharp.js +++ b/packages/material-ui-icons/lib/InboxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3.01v18H21V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H5V5h14v10z" -}), 'InboxSharp'); \ No newline at end of file +}), 'InboxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InboxTwoTone.js b/packages/material-ui-icons/lib/InboxTwoTone.js index c7c6ae7906cbc5..51f728da2250e0 100644 --- a/packages/material-ui-icons/lib/InboxTwoTone.js +++ b/packages/material-ui-icons/lib/InboxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-5c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z" -}, "1")], 'InboxTwoTone'); \ No newline at end of file +}, "1")], 'InboxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IndeterminateCheckBox.js b/packages/material-ui-icons/lib/IndeterminateCheckBox.js index 9acb4cf227bc03..bdacd56d3667ab 100644 --- a/packages/material-ui-icons/lib/IndeterminateCheckBox.js +++ b/packages/material-ui-icons/lib/IndeterminateCheckBox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10H7v-2h10v2z" -}), 'IndeterminateCheckBox'); \ No newline at end of file +}), 'IndeterminateCheckBox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IndeterminateCheckBoxOutlined.js b/packages/material-ui-icons/lib/IndeterminateCheckBoxOutlined.js index 255e81c11a78a5..5b1b8488ab4730 100644 --- a/packages/material-ui-icons/lib/IndeterminateCheckBoxOutlined.js +++ b/packages/material-ui-icons/lib/IndeterminateCheckBoxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z" -}), 'IndeterminateCheckBoxOutlined'); \ No newline at end of file +}), 'IndeterminateCheckBoxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IndeterminateCheckBoxRounded.js b/packages/material-ui-icons/lib/IndeterminateCheckBoxRounded.js index 461ef24e841921..bae209262a3de9 100644 --- a/packages/material-ui-icons/lib/IndeterminateCheckBoxRounded.js +++ b/packages/material-ui-icons/lib/IndeterminateCheckBoxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'IndeterminateCheckBoxRounded'); \ No newline at end of file +}), 'IndeterminateCheckBoxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IndeterminateCheckBoxSharp.js b/packages/material-ui-icons/lib/IndeterminateCheckBoxSharp.js index 2e3f6bd8349ea4..dc1b2dfd331c36 100644 --- a/packages/material-ui-icons/lib/IndeterminateCheckBoxSharp.js +++ b/packages/material-ui-icons/lib/IndeterminateCheckBoxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-4 10H7v-2h10v2z" -}), 'IndeterminateCheckBoxSharp'); \ No newline at end of file +}), 'IndeterminateCheckBoxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IndeterminateCheckBoxTwoTone.js b/packages/material-ui-icons/lib/IndeterminateCheckBoxTwoTone.js index d61fcb11270e6c..de0089c0bca712 100644 --- a/packages/material-ui-icons/lib/IndeterminateCheckBoxTwoTone.js +++ b/packages/material-ui-icons/lib/IndeterminateCheckBoxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm2-8h10v2H7v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z" -}, "1")], 'IndeterminateCheckBoxTwoTone'); \ No newline at end of file +}, "1")], 'IndeterminateCheckBoxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Info.js b/packages/material-ui-icons/lib/Info.js index 9946772957e0a9..cc6efb0ee1cff7 100644 --- a/packages/material-ui-icons/lib/Info.js +++ b/packages/material-ui-icons/lib/Info.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z" -}), 'Info'); \ No newline at end of file +}), 'Info'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InfoOutlined.js b/packages/material-ui-icons/lib/InfoOutlined.js index eb25c4e9e3aac7..72405e148458f1 100644 --- a/packages/material-ui-icons/lib/InfoOutlined.js +++ b/packages/material-ui-icons/lib/InfoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'InfoOutlined'); \ No newline at end of file +}), 'InfoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InfoRounded.js b/packages/material-ui-icons/lib/InfoRounded.js index 373dff4739997e..7fe7a3bc701440 100644 --- a/packages/material-ui-icons/lib/InfoRounded.js +++ b/packages/material-ui-icons/lib/InfoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1-8h-2V7h2v2z" -}), 'InfoRounded'); \ No newline at end of file +}), 'InfoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InfoSharp.js b/packages/material-ui-icons/lib/InfoSharp.js index 354ae194b0f4bb..a69f3ef7713008 100644 --- a/packages/material-ui-icons/lib/InfoSharp.js +++ b/packages/material-ui-icons/lib/InfoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z" -}), 'InfoSharp'); \ No newline at end of file +}), 'InfoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InfoTwoTone.js b/packages/material-ui-icons/lib/InfoTwoTone.js index 09499fb3ca2dc6..9aab29ddfe3c6c 100644 --- a/packages/material-ui-icons/lib/InfoTwoTone.js +++ b/packages/material-ui-icons/lib/InfoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 13h-2v-6h2v6zm0-8h-2V7h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'InfoTwoTone'); \ No newline at end of file +}, "1")], 'InfoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Input.js b/packages/material-ui-icons/lib/Input.js index acba05d7b4b8f3..97fd1823614bd8 100644 --- a/packages/material-ui-icons/lib/Input.js +++ b/packages/material-ui-icons/lib/Input.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" -}), 'Input'); \ No newline at end of file +}), 'Input'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InputOutlined.js b/packages/material-ui-icons/lib/InputOutlined.js index 3e1496bdb892a3..79b0c91b06874c 100644 --- a/packages/material-ui-icons/lib/InputOutlined.js +++ b/packages/material-ui-icons/lib/InputOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" -}), 'InputOutlined'); \ No newline at end of file +}), 'InputOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InputRounded.js b/packages/material-ui-icons/lib/InputRounded.js index 8b6531dbedc650..f6bea9cce7a940 100644 --- a/packages/material-ui-icons/lib/InputRounded.js +++ b/packages/material-ui-icons/lib/InputRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3.01H3c-1.1 0-2 .9-2 2V8c0 .55.45 1 1 1s1-.45 1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V16c0-.55-.45-1-1-1s-1 .45-1 1v3.01c0 1.09.89 1.98 1.98 1.98H21c1.1 0 2-.9 2-2V5.01c0-1.1-.9-2-2-2zm-9.15 12.14 2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.32-.85-.1-.85.35V11H2c-.55 0-1 .45-1 1s.45 1 1 1h9v1.79c0 .45.54.67.85.36z" -}), 'InputRounded'); \ No newline at end of file +}), 'InputRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InputSharp.js b/packages/material-ui-icons/lib/InputSharp.js index 6b19e59ad6e6ed..cf5e3ac5b81e33 100644 --- a/packages/material-ui-icons/lib/InputSharp.js +++ b/packages/material-ui-icons/lib/InputSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM23 3.01H1V9h2V4.99h18v14.03H3V15H1v5.99h22V3.01zM11 16l4-4-4-4v3H1v2h10v3z" -}), 'InputSharp'); \ No newline at end of file +}), 'InputSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InputTwoTone.js b/packages/material-ui-icons/lib/InputTwoTone.js index 4264720de381c0..354b7a15ab38b0 100644 --- a/packages/material-ui-icons/lib/InputTwoTone.js +++ b/packages/material-ui-icons/lib/InputTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" -}), 'InputTwoTone'); \ No newline at end of file +}), 'InputTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChart.js b/packages/material-ui-icons/lib/InsertChart.js index c7b57eceefaa5b..5b5daad8f730df 100644 --- a/packages/material-ui-icons/lib/InsertChart.js +++ b/packages/material-ui-icons/lib/InsertChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" -}), 'InsertChart'); \ No newline at end of file +}), 'InsertChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartOutlined.js b/packages/material-ui-icons/lib/InsertChartOutlined.js index 0b7de3c46807f0..b6dc099c8d6798 100644 --- a/packages/material-ui-icons/lib/InsertChartOutlined.js +++ b/packages/material-ui-icons/lib/InsertChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2.5 2.1h-15V5h15v14.1zm0-16.1h-15c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'InsertChartOutlined'); \ No newline at end of file +}), 'InsertChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartOutlinedOutlined.js b/packages/material-ui-icons/lib/InsertChartOutlinedOutlined.js index efe56fae5dbdca..7af7939030e82a 100644 --- a/packages/material-ui-icons/lib/InsertChartOutlinedOutlined.js +++ b/packages/material-ui-icons/lib/InsertChartOutlinedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'InsertChartOutlinedOutlined'); \ No newline at end of file +}), 'InsertChartOutlinedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartOutlinedRounded.js b/packages/material-ui-icons/lib/InsertChartOutlinedRounded.js index 936b58b9404e9a..b2e5b4e3ab4be5 100644 --- a/packages/material-ui-icons/lib/InsertChartOutlinedRounded.js +++ b/packages/material-ui-icons/lib/InsertChartOutlinedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm2 2H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'InsertChartOutlinedRounded'); \ No newline at end of file +}), 'InsertChartOutlinedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartOutlinedSharp.js b/packages/material-ui-icons/lib/InsertChartOutlinedSharp.js index 7cf72b706fd332..6acda2e446798e 100644 --- a/packages/material-ui-icons/lib/InsertChartOutlinedSharp.js +++ b/packages/material-ui-icons/lib/InsertChartOutlinedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm2-16H3v18h18V3z" -}), 'InsertChartOutlinedSharp'); \ No newline at end of file +}), 'InsertChartOutlinedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartOutlinedTwoTone.js b/packages/material-ui-icons/lib/InsertChartOutlinedTwoTone.js index 901dbac57b9d06..4c0e0925ca12de 100644 --- a/packages/material-ui-icons/lib/InsertChartOutlinedTwoTone.js +++ b/packages/material-ui-icons/lib/InsertChartOutlinedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'InsertChartOutlinedTwoTone'); \ No newline at end of file +}), 'InsertChartOutlinedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartRounded.js b/packages/material-ui-icons/lib/InsertChartRounded.js index 6ae25a221e70ca..6dcb141ab11bc3 100644 --- a/packages/material-ui-icons/lib/InsertChartRounded.js +++ b/packages/material-ui-icons/lib/InsertChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'InsertChartRounded'); \ No newline at end of file +}), 'InsertChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartSharp.js b/packages/material-ui-icons/lib/InsertChartSharp.js index 46dc44be80bfd8..b7774635ebb4be 100644 --- a/packages/material-ui-icons/lib/InsertChartSharp.js +++ b/packages/material-ui-icons/lib/InsertChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" -}), 'InsertChartSharp'); \ No newline at end of file +}), 'InsertChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertChartTwoTone.js b/packages/material-ui-icons/lib/InsertChartTwoTone.js index bf433e73adb8fb..cf3c100470da53 100644 --- a/packages/material-ui-icons/lib/InsertChartTwoTone.js +++ b/packages/material-ui-icons/lib/InsertChartTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v14h14V5zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm2 0h14v14H5V5zm2 5h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" -}, "1")], 'InsertChartTwoTone'); \ No newline at end of file +}, "1")], 'InsertChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertComment.js b/packages/material-ui-icons/lib/InsertComment.js index 8cb25971d04a97..7ef7283e6d17bd 100644 --- a/packages/material-ui-icons/lib/InsertComment.js +++ b/packages/material-ui-icons/lib/InsertComment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" -}), 'InsertComment'); \ No newline at end of file +}), 'InsertComment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertCommentOutlined.js b/packages/material-ui-icons/lib/InsertCommentOutlined.js index 032629ba6cd468..cc65c95a8354f0 100644 --- a/packages/material-ui-icons/lib/InsertCommentOutlined.js +++ b/packages/material-ui-icons/lib/InsertCommentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v13.17L18.83 16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 10H6v2h12v-2zm0-3H6v2h12V9zm0-3H6v2h12V6z" -}), 'InsertCommentOutlined'); \ No newline at end of file +}), 'InsertCommentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertCommentRounded.js b/packages/material-ui-icons/lib/InsertCommentRounded.js index f1b33748c2b7be..99a59ab82dbebb 100644 --- a/packages/material-ui-icons/lib/InsertCommentRounded.js +++ b/packages/material-ui-icons/lib/InsertCommentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-3 12H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'InsertCommentRounded'); \ No newline at end of file +}), 'InsertCommentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertCommentSharp.js b/packages/material-ui-icons/lib/InsertCommentSharp.js index 6ceb3ef98ad077..37c05ae530ce89 100644 --- a/packages/material-ui-icons/lib/InsertCommentSharp.js +++ b/packages/material-ui-icons/lib/InsertCommentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v16h16l4 4V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" -}), 'InsertCommentSharp'); \ No newline at end of file +}), 'InsertCommentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertCommentTwoTone.js b/packages/material-ui-icons/lib/InsertCommentTwoTone.js index b9474ddd2a446a..0e5f0d5c96a2fb 100644 --- a/packages/material-ui-icons/lib/InsertCommentTwoTone.js +++ b/packages/material-ui-icons/lib/InsertCommentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16h14.83L20 17.17V4H4v12zM6 6h12v2H6V6zm0 3h12v2H6V9zm0 3h12v2H6v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 2v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" -}, "1")], 'InsertCommentTwoTone'); \ No newline at end of file +}, "1")], 'InsertCommentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertDriveFile.js b/packages/material-ui-icons/lib/InsertDriveFile.js index f3780ea8df6f69..550158ef875b00 100644 --- a/packages/material-ui-icons/lib/InsertDriveFile.js +++ b/packages/material-ui-icons/lib/InsertDriveFile.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z" -}), 'InsertDriveFile'); \ No newline at end of file +}), 'InsertDriveFile'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertDriveFileOutlined.js b/packages/material-ui-icons/lib/InsertDriveFileOutlined.js index 803f4a8b03cfb7..d821f5a396b5fa 100644 --- a/packages/material-ui-icons/lib/InsertDriveFileOutlined.js +++ b/packages/material-ui-icons/lib/InsertDriveFileOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z" -}), 'InsertDriveFileOutlined'); \ No newline at end of file +}), 'InsertDriveFileOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertDriveFileRounded.js b/packages/material-ui-icons/lib/InsertDriveFileRounded.js index 65d1a3f336793d..a227492d8a6408 100644 --- a/packages/material-ui-icons/lib/InsertDriveFileRounded.js +++ b/packages/material-ui-icons/lib/InsertDriveFileRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6zm7 6V3.5L18.5 9H14c-.55 0-1-.45-1-1z" -}), 'InsertDriveFileRounded'); \ No newline at end of file +}), 'InsertDriveFileRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertDriveFileSharp.js b/packages/material-ui-icons/lib/InsertDriveFileSharp.js index d67b1f538f51f6..b3024c6213635b 100644 --- a/packages/material-ui-icons/lib/InsertDriveFileSharp.js +++ b/packages/material-ui-icons/lib/InsertDriveFileSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.01 2 4 22h16V8l-6-6H4.01zM13 9V3.5L18.5 9H13z" -}), 'InsertDriveFileSharp'); \ No newline at end of file +}), 'InsertDriveFileSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertDriveFileTwoTone.js b/packages/material-ui-icons/lib/InsertDriveFileTwoTone.js index 73009457f64afb..bc5ba934c98f9e 100644 --- a/packages/material-ui-icons/lib/InsertDriveFileTwoTone.js +++ b/packages/material-ui-icons/lib/InsertDriveFileTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 4H6v16h12V9h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 8-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zm-2 12H6V4h7v5h5v11z" -}, "1")], 'InsertDriveFileTwoTone'); \ No newline at end of file +}, "1")], 'InsertDriveFileTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertEmoticon.js b/packages/material-ui-icons/lib/InsertEmoticon.js index c1a1d9b3ac1277..6313488da83c32 100644 --- a/packages/material-ui-icons/lib/InsertEmoticon.js +++ b/packages/material-ui-icons/lib/InsertEmoticon.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'InsertEmoticon'); \ No newline at end of file +}), 'InsertEmoticon'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertEmoticonOutlined.js b/packages/material-ui-icons/lib/InsertEmoticonOutlined.js index 4dbed409292308..a80dee9fa8f188 100644 --- a/packages/material-ui-icons/lib/InsertEmoticonOutlined.js +++ b/packages/material-ui-icons/lib/InsertEmoticonOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'InsertEmoticonOutlined'); \ No newline at end of file +}), 'InsertEmoticonOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertEmoticonRounded.js b/packages/material-ui-icons/lib/InsertEmoticonRounded.js index 21dfc03613847d..b0ad902c27bb92 100644 --- a/packages/material-ui-icons/lib/InsertEmoticonRounded.js +++ b/packages/material-ui-icons/lib/InsertEmoticonRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm8.25 6.75c-.95 1.64-2.72 2.75-4.75 2.75s-3.8-1.11-4.75-2.75c-.19-.33.06-.75.44-.75h8.62c.39 0 .63.42.44.75zM15.5 11c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'InsertEmoticonRounded'); \ No newline at end of file +}), 'InsertEmoticonRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertEmoticonSharp.js b/packages/material-ui-icons/lib/InsertEmoticonSharp.js index 491009ad3d679f..69b0def7cf06cc 100644 --- a/packages/material-ui-icons/lib/InsertEmoticonSharp.js +++ b/packages/material-ui-icons/lib/InsertEmoticonSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'InsertEmoticonSharp'); \ No newline at end of file +}), 'InsertEmoticonSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertEmoticonTwoTone.js b/packages/material-ui-icons/lib/InsertEmoticonTwoTone.js index d8a9a89a82b172..2f4d6eb059b9f3 100644 --- a/packages/material-ui-icons/lib/InsertEmoticonTwoTone.js +++ b/packages/material-ui-icons/lib/InsertEmoticonTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}, "4")], 'InsertEmoticonTwoTone'); \ No newline at end of file +}, "4")], 'InsertEmoticonTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertInvitation.js b/packages/material-ui-icons/lib/InsertInvitation.js index eff224a08050d5..6a8a1d5660296f 100644 --- a/packages/material-ui-icons/lib/InsertInvitation.js +++ b/packages/material-ui-icons/lib/InsertInvitation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z" -}), 'InsertInvitation'); \ No newline at end of file +}), 'InsertInvitation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertInvitationOutlined.js b/packages/material-ui-icons/lib/InsertInvitationOutlined.js index a1eb412ef51cb7..d08b6d0a4336f2 100644 --- a/packages/material-ui-icons/lib/InsertInvitationOutlined.js +++ b/packages/material-ui-icons/lib/InsertInvitationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2 5h-5v5h5v-5z" -}), 'InsertInvitationOutlined'); \ No newline at end of file +}), 'InsertInvitationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertInvitationRounded.js b/packages/material-ui-icons/lib/InsertInvitationRounded.js index 7cec301fd46ac4..d0482be369398a 100644 --- a/packages/material-ui-icons/lib/InsertInvitationRounded.js +++ b/packages/material-ui-icons/lib/InsertInvitationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 12h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-10v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm2 17H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z" -}), 'InsertInvitationRounded'); \ No newline at end of file +}), 'InsertInvitationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertInvitationSharp.js b/packages/material-ui-icons/lib/InsertInvitationSharp.js index bb642d89eeb84d..6773818deeb074 100644 --- a/packages/material-ui-icons/lib/InsertInvitationSharp.js +++ b/packages/material-ui-icons/lib/InsertInvitationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H3.01v18H21V3h-3V1h-2zm3 18H5V8h14v11z" -}), 'InsertInvitationSharp'); \ No newline at end of file +}), 'InsertInvitationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertInvitationTwoTone.js b/packages/material-ui-icons/lib/InsertInvitationTwoTone.js index 8156266d25eea4..3c03676224a5f7 100644 --- a/packages/material-ui-icons/lib/InsertInvitationTwoTone.js +++ b/packages/material-ui-icons/lib/InsertInvitationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v2h14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2zM5 7V5h14v2H5zm0 2h14v10H5V9zm7 3h5v5h-5z" -}, "1")], 'InsertInvitationTwoTone'); \ No newline at end of file +}, "1")], 'InsertInvitationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertLink.js b/packages/material-ui-icons/lib/InsertLink.js index 9922849dfc9498..0fbeb1c00b49f8 100644 --- a/packages/material-ui-icons/lib/InsertLink.js +++ b/packages/material-ui-icons/lib/InsertLink.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" -}), 'InsertLink'); \ No newline at end of file +}), 'InsertLink'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertLinkOutlined.js b/packages/material-ui-icons/lib/InsertLinkOutlined.js index ca53d09503dbe5..b3392579e8a551 100644 --- a/packages/material-ui-icons/lib/InsertLinkOutlined.js +++ b/packages/material-ui-icons/lib/InsertLinkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" -}), 'InsertLinkOutlined'); \ No newline at end of file +}), 'InsertLinkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertLinkRounded.js b/packages/material-ui-icons/lib/InsertLinkRounded.js index f585407330490c..a0eb7dba77bbe6 100644 --- a/packages/material-ui-icons/lib/InsertLinkRounded.js +++ b/packages/material-ui-icons/lib/InsertLinkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.96 11.38C4.24 9.91 5.62 8.9 7.12 8.9h2.93c.52 0 .95-.43.95-.95S10.57 7 10.05 7H7.22c-2.61 0-4.94 1.91-5.19 4.51C1.74 14.49 4.08 17 7 17h3.05c.52 0 .95-.43.95-.95s-.43-.95-.95-.95H7c-1.91 0-3.42-1.74-3.04-3.72zM9 13h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm7.78-6h-2.83c-.52 0-.95.43-.95.95s.43.95.95.95h2.93c1.5 0 2.88 1.01 3.16 2.48.38 1.98-1.13 3.72-3.04 3.72h-3.05c-.52 0-.95.43-.95.95s.43.95.95.95H17c2.92 0 5.26-2.51 4.98-5.49-.25-2.6-2.59-4.51-5.2-4.51z" -}), 'InsertLinkRounded'); \ No newline at end of file +}), 'InsertLinkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertLinkSharp.js b/packages/material-ui-icons/lib/InsertLinkSharp.js index 0d45562473b609..45e601dceef2c5 100644 --- a/packages/material-ui-icons/lib/InsertLinkSharp.js +++ b/packages/material-ui-icons/lib/InsertLinkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" -}), 'InsertLinkSharp'); \ No newline at end of file +}), 'InsertLinkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertLinkTwoTone.js b/packages/material-ui-icons/lib/InsertLinkTwoTone.js index 712eca71d5291a..3e8a9b9518afb7 100644 --- a/packages/material-ui-icons/lib/InsertLinkTwoTone.js +++ b/packages/material-ui-icons/lib/InsertLinkTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" -}), 'InsertLinkTwoTone'); \ No newline at end of file +}), 'InsertLinkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertPhoto.js b/packages/material-ui-icons/lib/InsertPhoto.js index 4a3c5d77eaa79e..6fb89177c13e42 100644 --- a/packages/material-ui-icons/lib/InsertPhoto.js +++ b/packages/material-ui-icons/lib/InsertPhoto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" -}), 'InsertPhoto'); \ No newline at end of file +}), 'InsertPhoto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertPhotoOutlined.js b/packages/material-ui-icons/lib/InsertPhotoOutlined.js index 0fab4cf193b158..aa79c5039dd69b 100644 --- a/packages/material-ui-icons/lib/InsertPhotoOutlined.js +++ b/packages/material-ui-icons/lib/InsertPhotoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86-3 3.87L9 13.14 6 17h12l-3.86-5.14z" -}), 'InsertPhotoOutlined'); \ No newline at end of file +}), 'InsertPhotoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertPhotoRounded.js b/packages/material-ui-icons/lib/InsertPhotoRounded.js index 0dab8e2ec64f8c..f9e08383ab9f89 100644 --- a/packages/material-ui-icons/lib/InsertPhotoRounded.js +++ b/packages/material-ui-icons/lib/InsertPhotoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z" -}), 'InsertPhotoRounded'); \ No newline at end of file +}), 'InsertPhotoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertPhotoSharp.js b/packages/material-ui-icons/lib/InsertPhotoSharp.js index d2ab892b63d529..1b4f9a3cceaee5 100644 --- a/packages/material-ui-icons/lib/InsertPhotoSharp.js +++ b/packages/material-ui-icons/lib/InsertPhotoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" -}), 'InsertPhotoSharp'); \ No newline at end of file +}), 'InsertPhotoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsertPhotoTwoTone.js b/packages/material-ui-icons/lib/InsertPhotoTwoTone.js index 560a6d3a9f6877..3f9f5a032a6e81 100644 --- a/packages/material-ui-icons/lib/InsertPhotoTwoTone.js +++ b/packages/material-ui-icons/lib/InsertPhotoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm4-5.86 2.14 2.58 3-3.87L18 17H6l3-3.86z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14zm-4.86-7.14-3 3.86L9 13.14 6 17h12z" -}, "1")], 'InsertPhotoTwoTone'); \ No newline at end of file +}, "1")], 'InsertPhotoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Insights.js b/packages/material-ui-icons/lib/Insights.js index b65cdd30955de2..7c34229e42e643 100644 --- a/packages/material-ui-icons/lib/Insights.js +++ b/packages/material-ui-icons/lib/Insights.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" -}, "1")], 'Insights'); \ No newline at end of file +}, "1")], 'Insights'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsightsOutlined.js b/packages/material-ui-icons/lib/InsightsOutlined.js index 385e674b78b8c7..3517d852dcbec6 100644 --- a/packages/material-ui-icons/lib/InsightsOutlined.js +++ b/packages/material-ui-icons/lib/InsightsOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" -}, "1")], 'InsightsOutlined'); \ No newline at end of file +}, "1")], 'InsightsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsightsRounded.js b/packages/material-ui-icons/lib/InsightsRounded.js index 3fd9a29758b1e2..2cd4fcd0f22f35 100644 --- a/packages/material-ui-icons/lib/InsightsRounded.js +++ b/packages/material-ui-icons/lib/InsightsRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" -}, "1")], 'InsightsRounded'); \ No newline at end of file +}, "1")], 'InsightsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsightsSharp.js b/packages/material-ui-icons/lib/InsightsSharp.js index 8bd10059d87283..afe3ac285b5d7c 100644 --- a/packages/material-ui-icons/lib/InsightsSharp.js +++ b/packages/material-ui-icons/lib/InsightsSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" -}, "1")], 'InsightsSharp'); \ No newline at end of file +}, "1")], 'InsightsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InsightsTwoTone.js b/packages/material-ui-icons/lib/InsightsTwoTone.js index 0a994d04bc12ba..7d1b90284135b6 100644 --- a/packages/material-ui-icons/lib/InsightsTwoTone.js +++ b/packages/material-ui-icons/lib/InsightsTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" -}, "1")], 'InsightsTwoTone'); \ No newline at end of file +}, "1")], 'InsightsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Instagram.js b/packages/material-ui-icons/lib/Instagram.js index 382173b09bb799..f5b11e2945bd25 100644 --- a/packages/material-ui-icons/lib/Instagram.js +++ b/packages/material-ui-icons/lib/Instagram.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z" -}), 'Instagram'); \ No newline at end of file +}), 'Instagram'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IntegrationInstructions.js b/packages/material-ui-icons/lib/IntegrationInstructions.js index b6cf033f14a9d6..badee76f6b73e5 100644 --- a/packages/material-ui-icons/lib/IntegrationInstructions.js +++ b/packages/material-ui-icons/lib/IntegrationInstructions.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11.17-1.41 1.42L6 12l3.59-3.59L11 9.83 8.83 12 11 14.17zm1-9.92c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm2.41 11.34L13 14.17 15.17 12 13 9.83l1.41-1.42L18 12l-3.59 3.59z" -}), 'IntegrationInstructions'); \ No newline at end of file +}), 'IntegrationInstructions'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IntegrationInstructionsOutlined.js b/packages/material-ui-icons/lib/IntegrationInstructionsOutlined.js index a48f9d39c64888..6811d8142f850d 100644 --- a/packages/material-ui-icons/lib/IntegrationInstructionsOutlined.js +++ b/packages/material-ui-icons/lib/IntegrationInstructionsOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14.17 8.83 12 11 9.83 9.59 8.41 6 12l3.59 3.59zm3.41 1.42L18 12l-3.59-3.59L13 9.83 15.17 12 13 14.17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 15v4H5V5h14v10z" -}, "1")], 'IntegrationInstructionsOutlined'); \ No newline at end of file +}, "1")], 'IntegrationInstructionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IntegrationInstructionsRounded.js b/packages/material-ui-icons/lib/IntegrationInstructionsRounded.js index 634bf8e1c660cd..92b9de1b719179 100644 --- a/packages/material-ui-icons/lib/IntegrationInstructionsRounded.js +++ b/packages/material-ui-icons/lib/IntegrationInstructionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.7 11.88c-.39.39-1.03.39-1.42 0l-2.17-2.17a.9959.9959 0 0 1 0-1.41l2.17-2.17c.39-.39 1.03-.39 1.42 0 .39.39.39 1.02 0 1.41L8.83 12l1.46 1.46c.39.39.4 1.03.01 1.42zM12 4.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm1.7 10.63a.9959.9959 0 0 1 0-1.41L15.17 12l-1.47-1.47a.9959.9959 0 0 1 0-1.41c.39-.39 1.03-.39 1.42 0l2.17 2.17c.39.39.39 1.02 0 1.41l-2.17 2.17c-.39.4-1.03.4-1.42.01z" -}), 'IntegrationInstructionsRounded'); \ No newline at end of file +}), 'IntegrationInstructionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IntegrationInstructionsSharp.js b/packages/material-ui-icons/lib/IntegrationInstructionsSharp.js index 8b54900f9e83f9..309efbda289dad 100644 --- a/packages/material-ui-icons/lib/IntegrationInstructionsSharp.js +++ b/packages/material-ui-icons/lib/IntegrationInstructionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zM11 14.17l-1.41 1.42L6 12l3.59-3.59L11 9.83 8.83 12 11 14.17zm1-9.92c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm2.41 11.34L13 14.17 15.17 12 13 9.83l1.41-1.42L18 12l-3.59 3.59z" -}), 'IntegrationInstructionsSharp'); \ No newline at end of file +}), 'IntegrationInstructionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IntegrationInstructionsTwoTone.js b/packages/material-ui-icons/lib/IntegrationInstructionsTwoTone.js index 518a17db89c6de..18c304b0911d56 100644 --- a/packages/material-ui-icons/lib/IntegrationInstructionsTwoTone.js +++ b/packages/material-ui-icons/lib/IntegrationInstructionsTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14.17 8.83 12 11 9.83 9.59 8.41 6 12l3.59 3.59zm3.41 1.42L18 12l-3.59-3.59L13 9.83 15.17 12 13 14.17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h14v14H5z", opacity: ".3" -}, "2")], 'IntegrationInstructionsTwoTone'); \ No newline at end of file +}, "2")], 'IntegrationInstructionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Inventory.js b/packages/material-ui-icons/lib/Inventory.js index f1b4120457f203..7d52b057c1f6fd 100644 --- a/packages/material-ui-icons/lib/Inventory.js +++ b/packages/material-ui-icons/lib/Inventory.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4l16-.02V7z" -}), 'Inventory'); \ No newline at end of file +}), 'Inventory'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Inventory2.js b/packages/material-ui-icons/lib/Inventory2.js index cf6557b69f4e2f..746d63884470fc 100644 --- a/packages/material-ui-icons/lib/Inventory2.js +++ b/packages/material-ui-icons/lib/Inventory2.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4h16v3z" -}), 'Inventory2'); \ No newline at end of file +}), 'Inventory2'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Inventory2Outlined.js b/packages/material-ui-icons/lib/Inventory2Outlined.js index ce836d3ce0ef83..115841b241f52a 100644 --- a/packages/material-ui-icons/lib/Inventory2Outlined.js +++ b/packages/material-ui-icons/lib/Inventory2Outlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-1 18H5V9h14v11zm1-13H4V4h16v3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12h6v2H9z" -}, "1")], 'Inventory2Outlined'); \ No newline at end of file +}, "1")], 'Inventory2Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Inventory2Rounded.js b/packages/material-ui-icons/lib/Inventory2Rounded.js index a635adefc8470f..c23c9f3a0b5660 100644 --- a/packages/material-ui-icons/lib/Inventory2Rounded.js +++ b/packages/material-ui-icons/lib/Inventory2Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-6 12h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm6-7H4V4h16v3z" -}), 'Inventory2Rounded'); \ No newline at end of file +}), 'Inventory2Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Inventory2Sharp.js b/packages/material-ui-icons/lib/Inventory2Sharp.js index 1b8197aaf58aff..476c79d73939c2 100644 --- a/packages/material-ui-icons/lib/Inventory2Sharp.js +++ b/packages/material-ui-icons/lib/Inventory2Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 2v6.7h1V22h18V8.7h1V2H2zm13 12H9v-2h6v2zm5-7H4V4h16v3z" -}), 'Inventory2Sharp'); \ No newline at end of file +}), 'Inventory2Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Inventory2TwoTone.js b/packages/material-ui-icons/lib/Inventory2TwoTone.js index bc55c558efc61c..6f03cb6407d163 100644 --- a/packages/material-ui-icons/lib/Inventory2TwoTone.js +++ b/packages/material-ui-icons/lib/Inventory2TwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h16V3.98L4 4zm1 13h14V9H5v11zm4-8h6v2H9v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-1 18H5V9h14v11zm1-13H4V4l16-.02V7z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12h6v2H9z" -}, "2")], 'Inventory2TwoTone'); \ No newline at end of file +}, "2")], 'Inventory2TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InventoryOutlined.js b/packages/material-ui-icons/lib/InventoryOutlined.js index 73378e82c00002..ed16a55adb7267 100644 --- a/packages/material-ui-icons/lib/InventoryOutlined.js +++ b/packages/material-ui-icons/lib/InventoryOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h2v3h10V5h2v5h2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.5 15.51 17l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z" -}, "1")], 'InventoryOutlined'); \ No newline at end of file +}, "1")], 'InventoryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InventoryRounded.js b/packages/material-ui-icons/lib/InventoryRounded.js index d4e25b2401c77e..e4217fcda3c886 100644 --- a/packages/material-ui-icons/lib/InventoryRounded.js +++ b/packages/material-ui-icons/lib/InventoryRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h2v1c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5h2v5h2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.75 12.25c-.41-.41-1.09-.41-1.5 0L15.51 17l-2.26-2.25c-.41-.41-1.08-.41-1.5 0-.41.41-.41 1.09 0 1.5l3.05 3.04c.39.39 1.02.39 1.41 0l5.53-5.54c.42-.41.42-1.09.01-1.5z" -}, "1")], 'InventoryRounded'); \ No newline at end of file +}, "1")], 'InventoryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InventorySharp.js b/packages/material-ui-icons/lib/InventorySharp.js index 68e54315232d27..4ec37280a81612 100644 --- a/packages/material-ui-icons/lib/InventorySharp.js +++ b/packages/material-ui-icons/lib/InventorySharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h2v3h10V5h2v5h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h8v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.5 15.51 17l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z" -}, "1")], 'InventorySharp'); \ No newline at end of file +}, "1")], 'InventorySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InventoryTwoTone.js b/packages/material-ui-icons/lib/InventoryTwoTone.js index 67787511722379..bc958d123573ba 100644 --- a/packages/material-ui-icons/lib/InventoryTwoTone.js +++ b/packages/material-ui-icons/lib/InventoryTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 11.5 1.5 1.5-6.99 7L11 15.5l1.5-1.5 3.01 3L21 11.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5v3H7V5H5v14h6.68l-3.51-3.5 4.33-4.33 3.01 3 3.49-3.5V5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19V5h2v3h10V5h2v5.67l2-2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8.68l-2-2H5zm7-16c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "2")], 'InventoryTwoTone'); \ No newline at end of file +}, "2")], 'InventoryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColors.js b/packages/material-ui-icons/lib/InvertColors.js index 96b4afba40b1bc..0954fec57c8641 100644 --- a/packages/material-ui-icons/lib/InvertColors.js +++ b/packages/material-ui-icons/lib/InvertColors.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2 6.35 7.56z" -}), 'InvertColors'); \ No newline at end of file +}), 'InvertColors'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsOff.js b/packages/material-ui-icons/lib/InvertColorsOff.js index 3672cf0b2ec807..3f12642ced7f4c 100644 --- a/packages/material-ui-icons/lib/InvertColorsOff.js +++ b/packages/material-ui-icons/lib/InvertColorsOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" -}), 'InvertColorsOff'); \ No newline at end of file +}), 'InvertColorsOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsOffOutlined.js b/packages/material-ui-icons/lib/InvertColorsOffOutlined.js index 8245e89f2851af..abb3924b046312 100644 --- a/packages/material-ui-icons/lib/InvertColorsOffOutlined.js +++ b/packages/material-ui-icons/lib/InvertColorsOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" -}), 'InvertColorsOffOutlined'); \ No newline at end of file +}), 'InvertColorsOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsOffRounded.js b/packages/material-ui-icons/lib/InvertColorsOffRounded.js index 147e6ecd0f12d7..cd4e61d514ffd8 100644 --- a/packages/material-ui-icons/lib/InvertColorsOffRounded.js +++ b/packages/material-ui-icons/lib/InvertColorsOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.5 3.5c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l2.4 2.4c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56l2.91-2.87c.39-.38 1.01-.38 1.4 0l4.95 4.87C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" -}), 'InvertColorsOffRounded'); \ No newline at end of file +}), 'InvertColorsOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsOffSharp.js b/packages/material-ui-icons/lib/InvertColorsOffSharp.js index 14fbbf9e7634d5..9d25d0c797be3a 100644 --- a/packages/material-ui-icons/lib/InvertColorsOffSharp.js +++ b/packages/material-ui-icons/lib/InvertColorsOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" -}), 'InvertColorsOffSharp'); \ No newline at end of file +}), 'InvertColorsOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsOffTwoTone.js b/packages/material-ui-icons/lib/InvertColorsOffTwoTone.js index f23d45297fcdd7..1dd9f0c9068877 100644 --- a/packages/material-ui-icons/lib/InvertColorsOffTwoTone.js +++ b/packages/material-ui-icons/lib/InvertColorsOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14.83V19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83zm0-10.02v4.37l-2.2-2.2L12 4.81", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" -}, "1")], 'InvertColorsOffTwoTone'); \ No newline at end of file +}, "1")], 'InvertColorsOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsOutlined.js b/packages/material-ui-icons/lib/InvertColorsOutlined.js index 785707358c6d1a..59d44dea3c7d35 100644 --- a/packages/material-ui-icons/lib/InvertColorsOutlined.js +++ b/packages/material-ui-icons/lib/InvertColorsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M12 2 6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2z" -}), 'InvertColorsOutlined'); \ No newline at end of file +}), 'InvertColorsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsRounded.js b/packages/material-ui-icons/lib/InvertColorsRounded.js index 988eeefcad9d17..683b3acf355d53 100644 --- a/packages/material-ui-icons/lib/InvertColorsRounded.js +++ b/packages/material-ui-icons/lib/InvertColorsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12.7 2.69c-.39-.38-1.01-.38-1.4 0L6.35 7.56z" -}), 'InvertColorsRounded'); \ No newline at end of file +}), 'InvertColorsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsSharp.js b/packages/material-ui-icons/lib/InvertColorsSharp.js index 4e4145888b85b3..e0c94ef23dd9df 100644 --- a/packages/material-ui-icons/lib/InvertColorsSharp.js +++ b/packages/material-ui-icons/lib/InvertColorsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2 6.35 7.56z" -}), 'InvertColorsSharp'); \ No newline at end of file +}), 'InvertColorsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/InvertColorsTwoTone.js b/packages/material-ui-icons/lib/InvertColorsTwoTone.js index 2ff5c2fe7a6563..ff41fcc54d90ce 100644 --- a/packages/material-ui-icons/lib/InvertColorsTwoTone.js +++ b/packages/material-ui-icons/lib/InvertColorsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.75 8.99C6.62 10.1 6 11.57 6 13.13 6 16.37 8.69 19 12 19V4.81L7.75 8.99z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 7.56 12 2 6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57zM6 13.13c0-1.56.62-3.03 1.75-4.14L12 4.81V19c-3.31 0-6-2.63-6-5.87z" -}, "1")], 'InvertColorsTwoTone'); \ No newline at end of file +}, "1")], 'InvertColorsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IosShare.js b/packages/material-ui-icons/lib/IosShare.js index 1d5de6d75a6114..6de4dc8afc6687 100644 --- a/packages/material-ui-icons/lib/IosShare.js +++ b/packages/material-ui-icons/lib/IosShare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 5-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z" -}), 'IosShare'); \ No newline at end of file +}), 'IosShare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IosShareOutlined.js b/packages/material-ui-icons/lib/IosShareOutlined.js index 3a345ce4791805..028aa2d564d90c 100644 --- a/packages/material-ui-icons/lib/IosShareOutlined.js +++ b/packages/material-ui-icons/lib/IosShareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 5-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z" -}), 'IosShareOutlined'); \ No newline at end of file +}), 'IosShareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IosShareRounded.js b/packages/material-ui-icons/lib/IosShareRounded.js index 0b807e44d2e8df..3a6e790fcfd077 100644 --- a/packages/material-ui-icons/lib/IosShareRounded.js +++ b/packages/material-ui-icons/lib/IosShareRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v11H6V10h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c.55 0 1-.45 1-1V5h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0L8.85 4.15c-.31.31-.09.85.36.85H11v10c0 .55.45 1 1 1z" -}, "1")], 'IosShareRounded'); \ No newline at end of file +}, "1")], 'IosShareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IosShareSharp.js b/packages/material-ui-icons/lib/IosShareSharp.js index d54772a8bc3881..54020f0cb53332 100644 --- a/packages/material-ui-icons/lib/IosShareSharp.js +++ b/packages/material-ui-icons/lib/IosShareSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-5v2h3v11H6V10h3V8H4v15h16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16h2V5h3l-4-4-4 4h3z" -}, "1")], 'IosShareSharp'); \ No newline at end of file +}, "1")], 'IosShareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IosShareTwoTone.js b/packages/material-ui-icons/lib/IosShareTwoTone.js index ee5ee1f13f6564..1a876ee90eb8ce 100644 --- a/packages/material-ui-icons/lib/IosShareTwoTone.js +++ b/packages/material-ui-icons/lib/IosShareTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-3v2h3v11H6V10h3V8H6c-1.11 0-2 .89-2 2v11c0 1.1.89 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.11-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16h2V5h3l-4-4-4 4h3z" -}, "1")], 'IosShareTwoTone'); \ No newline at end of file +}, "1")], 'IosShareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Iron.js b/packages/material-ui-icons/lib/Iron.js index 92e79a441d3f11..21a1c30a068eac 100644 --- a/packages/material-ui-icons/lib/Iron.js +++ b/packages/material-ui-icons/lib/Iron.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6h-1z" -}), 'Iron'); \ No newline at end of file +}), 'Iron'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IronOutlined.js b/packages/material-ui-icons/lib/IronOutlined.js index dc73ba78562e3c..257b5127704d03 100644 --- a/packages/material-ui-icons/lib/IronOutlined.js +++ b/packages/material-ui-icons/lib/IronOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6h-1zm-6 10H4v-1c0-1.1.9-2 2-2h9v3z" -}), 'IronOutlined'); \ No newline at end of file +}), 'IronOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IronRounded.js b/packages/material-ui-icons/lib/IronRounded.js index e41194fdb29482..dab874ef538f92 100644 --- a/packages/material-ui-icons/lib/IronRounded.js +++ b/packages/material-ui-icons/lib/IronRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.27 10c.34 0 .68-.16.84-.47.17-.31.51-.53.89-.53h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v2c0 .55.45 1 1 1h13c.55 0 1-.45 1-1v-1c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1s1-.45 1-1-.45-1-1-1c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.13 0-2.11.62-2.63 1.55-.36.65.16 1.45.9 1.45z" -}), 'IronRounded'); \ No newline at end of file +}), 'IronRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IronSharp.js b/packages/material-ui-icons/lib/IronSharp.js index c3a7008e77697d..2d9a86b5ffaef3 100644 --- a/packages/material-ui-icons/lib/IronSharp.js +++ b/packages/material-ui-icons/lib/IronSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6v8h-1V7H7v3h2V9h6v2H6c-2.21 0-4 1.79-4 4v3h15v-2h3V8h2V6h-4z" -}), 'IronSharp'); \ No newline at end of file +}), 'IronSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IronTwoTone.js b/packages/material-ui-icons/lib/IronTwoTone.js index afba82a9406bc5..824d248a339e72 100644 --- a/packages/material-ui-icons/lib/IronTwoTone.js +++ b/packages/material-ui-icons/lib/IronTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16H4v-1c0-1.1.9-2 2-2h9v3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6h-1zm-6 10H4v-1c0-1.1.9-2 2-2h9v3z" -}, "1")], 'IronTwoTone'); \ No newline at end of file +}, "1")], 'IronTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Iso.js b/packages/material-ui-icons/lib/Iso.js index ba27341ee83ad2..21330bfd297941 100644 --- a/packages/material-ui-icons/lib/Iso.js +++ b/packages/material-ui-icons/lib/Iso.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" -}), 'Iso'); \ No newline at end of file +}), 'Iso'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IsoOutlined.js b/packages/material-ui-icons/lib/IsoOutlined.js index c518508d1d3f0a..c06af5ff60a3fa 100644 --- a/packages/material-ui-icons/lib/IsoOutlined.js +++ b/packages/material-ui-icons/lib/IsoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" -}), 'IsoOutlined'); \ No newline at end of file +}), 'IsoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IsoRounded.js b/packages/material-ui-icons/lib/IsoRounded.js index f332f972f7a9b9..3061119c1e3b07 100644 --- a/packages/material-ui-icons/lib/IsoRounded.js +++ b/packages/material-ui-icons/lib/IsoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.25 7.5H7.5V6.25c0-.41.34-.75.75-.75s.75.34.75.75V7.5h1.25c.41 0 .75.34.75.75s-.34.75-.75.75H9v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V9H6.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM18 19H5L19 5v13c0 .55-.45 1-1 1zm-1-2.75c0-.41-.34-.75-.75-.75h-3.5c-.41 0-.75.34-.75.75s.34.75.75.75h3.5c.41 0 .75-.34.75-.75z" -}), 'IsoRounded'); \ No newline at end of file +}), 'IsoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IsoSharp.js b/packages/material-ui-icons/lib/IsoSharp.js index 06d2ee6dbea177..a42826c9d6e637 100644 --- a/packages/material-ui-icons/lib/IsoSharp.js +++ b/packages/material-ui-icons/lib/IsoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" -}), 'IsoSharp'); \ No newline at end of file +}), 'IsoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/IsoTwoTone.js b/packages/material-ui-icons/lib/IsoTwoTone.js index b3afc4b31dc35b..cff7f78c6c60d7 100644 --- a/packages/material-ui-icons/lib/IsoTwoTone.js +++ b/packages/material-ui-icons/lib/IsoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V5L5 19h14zm-2-3.5V17h-5v-1.5h5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15.5h5V17h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14z" -}, "1")], 'IsoTwoTone'); \ No newline at end of file +}, "1")], 'IsoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Kayaking.js b/packages/material-ui-icons/lib/Kayaking.js index c8f5bc1d23d4f1..351e85488848b5 100644 --- a/packages/material-ui-icons/lib/Kayaking.js +++ b/packages/material-ui-icons/lib/Kayaking.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" -}), 'Kayaking'); \ No newline at end of file +}), 'Kayaking'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KayakingOutlined.js b/packages/material-ui-icons/lib/KayakingOutlined.js index 1fe16cadaad9e3..f25a0cfb630d9d 100644 --- a/packages/material-ui-icons/lib/KayakingOutlined.js +++ b/packages/material-ui-icons/lib/KayakingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" -}), 'KayakingOutlined'); \ No newline at end of file +}), 'KayakingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KayakingRounded.js b/packages/material-ui-icons/lib/KayakingRounded.js index fbbd8d28e1dfcd..1235c84b596998 100644 --- a/packages/material-ui-icons/lib/KayakingRounded.js +++ b/packages/material-ui-icons/lib/KayakingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22c0-.55.45-1 1-1 .87 0 1.73-.24 2.53-.7.29-.16.65-.17.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 .8.46 1.66.7 2.53.7.55 0 1 .45 1 1s-.45 1-1 1c-1.03 0-2.06-.25-3-.75-1.92 1.02-4.18 1-6.09-.05-1.79.87-3.92.98-5.58-.14C5.3 22.69 4.15 23 3 23c-.55 0-1-.45-1-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9.47 12.95c-.42.14-.9.28-1.41.42-.53-.15-1.03-.43-1.45-.77-.35-.29-.87-.29-1.23 0-.66.53-1.48.9-2.38.9s-1.72-.37-2.39-.91c-.35-.28-.87-.28-1.22 0-.67.54-1.49.91-2.39.91s-1.72-.37-2.39-.91c-.35-.29-.87-.28-1.23 0-.43.35-.92.62-1.45.77-.51-.14-.98-.28-1.4-.42-.92-.3-.92-1.6 0-1.9 1.21-.39 2.79-.82 4.6-1.13l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.36-.93c-.1-.25-.09-.52.02-.76l.74-1.68c.22-.51.82-.73 1.32-.51l1.37.61c.5.23.73.82.5 1.32l-.75 1.68c-.11.24-.31.43-.56.53l-.9.36-3.72 8.34c2.33.3 4.35.84 5.82 1.31.93.3.94 1.6.01 1.9zm-6.45-5.49-.59.31c-.58.31-1.28.31-1.86 0l-.81-.43-.71 2.17c.31 0 .63-.01.95-.01.71 0 1.4.03 2.07.08l.95-2.12z" -}), 'KayakingRounded'); \ No newline at end of file +}), 'KayakingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KayakingSharp.js b/packages/material-ui-icons/lib/KayakingSharp.js index 8f022fdeccea9f..f42387f21982c9 100644 --- a/packages/material-ui-icons/lib/KayakingSharp.js +++ b/packages/material-ui-icons/lib/KayakingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" -}), 'KayakingSharp'); \ No newline at end of file +}), 'KayakingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KayakingTwoTone.js b/packages/material-ui-icons/lib/KayakingTwoTone.js index 25bb0937a9b84c..63886f219c3ec8 100644 --- a/packages/material-ui-icons/lib/KayakingTwoTone.js +++ b/packages/material-ui-icons/lib/KayakingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" -}), 'KayakingTwoTone'); \ No newline at end of file +}), 'KayakingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Keyboard.js b/packages/material-ui-icons/lib/Keyboard.js index 01ed44389f79df..003cd33e959b7c 100644 --- a/packages/material-ui-icons/lib/Keyboard.js +++ b/packages/material-ui-icons/lib/Keyboard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" -}), 'Keyboard'); \ No newline at end of file +}), 'Keyboard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardAlt.js b/packages/material-ui-icons/lib/KeyboardAlt.js index 7dbd19cdb24687..87800c3a6ac8d5 100644 --- a/packages/material-ui-icons/lib/KeyboardAlt.js +++ b/packages/material-ui-icons/lib/KeyboardAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6v1H8v-1h8zm-1-4v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z" -}), 'KeyboardAlt'); \ No newline at end of file +}), 'KeyboardAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardAltOutlined.js b/packages/material-ui-icons/lib/KeyboardAltOutlined.js index 3234896f722115..3d478fe2e9305a 100644 --- a/packages/material-ui-icons/lib/KeyboardAltOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15H3V6h18v13zM9 8h2v2H9V8zM5 8h2v2H5V8zm3 8h8v1H8v-1zm5-8h2v2h-2V8zm-4 4h2v2H9v-2zm-4 0h2v2H5v-2zm8 0h2v2h-2v-2zm4-4h2v2h-2V8zm0 4h2v2h-2v-2z" -}), 'KeyboardAltOutlined'); \ No newline at end of file +}), 'KeyboardAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardAltRounded.js b/packages/material-ui-icons/lib/KeyboardAltRounded.js index ceed5382fcef47..77a6115c45ff43 100644 --- a/packages/material-ui-icons/lib/KeyboardAltRounded.js +++ b/packages/material-ui-icons/lib/KeyboardAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6.5c0 .28-.22.5-.5.5h-7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7c.28 0 .5.22.5.5zM15 12v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z" -}), 'KeyboardAltRounded'); \ No newline at end of file +}), 'KeyboardAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardAltSharp.js b/packages/material-ui-icons/lib/KeyboardAltSharp.js index bf9491989d54fe..6db6e41341e428 100644 --- a/packages/material-ui-icons/lib/KeyboardAltSharp.js +++ b/packages/material-ui-icons/lib/KeyboardAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 4H1v17h22V4zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6v1H8v-1h8zm-1-4v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z" -}), 'KeyboardAltSharp'); \ No newline at end of file +}), 'KeyboardAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardAltTwoTone.js b/packages/material-ui-icons/lib/KeyboardAltTwoTone.js index 734df126c16305..4ab215251ff004 100644 --- a/packages/material-ui-icons/lib/KeyboardAltTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardAltTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V6H3v13zM17 8h2v2h-2V8zm0 4h2v2h-2v-2zm-4-4h2v2h-2V8zm0 4h2v2h-2v-2zM9 8h2v2H9V8zm0 4h2v2H9v-2zm-1 4h8v1H8v-1zM5 8h2v2H5V8zm0 4h2v2H5v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15H3V6h18v13z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8h2v2H9zM5 8h2v2H5zm3 8h8v1H8zm5-8h2v2h-2zm-4 4h2v2H9zm-4 0h2v2H5zm8 0h2v2h-2zm4-4h2v2h-2zm0 4h2v2h-2z" -}, "2")], 'KeyboardAltTwoTone'); \ No newline at end of file +}, "2")], 'KeyboardAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowDown.js b/packages/material-ui-icons/lib/KeyboardArrowDown.js index 6b14844b684d23..992916adc940aa 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowDown.js +++ b/packages/material-ui-icons/lib/KeyboardArrowDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" -}), 'KeyboardArrowDown'); \ No newline at end of file +}), 'KeyboardArrowDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowDownOutlined.js b/packages/material-ui-icons/lib/KeyboardArrowDownOutlined.js index b4387d2cce811a..4780244e52d2a0 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowDownOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardArrowDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" -}), 'KeyboardArrowDownOutlined'); \ No newline at end of file +}), 'KeyboardArrowDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowDownRounded.js b/packages/material-ui-icons/lib/KeyboardArrowDownRounded.js index 8a6bda67821079..404d3eff2b5d4c 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowDownRounded.js +++ b/packages/material-ui-icons/lib/KeyboardArrowDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.12 9.29 12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7a.9959.9959 0 0 1 0-1.41c.39-.38 1.03-.39 1.42 0z" -}), 'KeyboardArrowDownRounded'); \ No newline at end of file +}), 'KeyboardArrowDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowDownSharp.js b/packages/material-ui-icons/lib/KeyboardArrowDownSharp.js index ac30b7558f969b..d0871eeb8bf106 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowDownSharp.js +++ b/packages/material-ui-icons/lib/KeyboardArrowDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" -}), 'KeyboardArrowDownSharp'); \ No newline at end of file +}), 'KeyboardArrowDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowDownTwoTone.js b/packages/material-ui-icons/lib/KeyboardArrowDownTwoTone.js index 007f033c9ee6e1..409df6c502e9fd 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowDownTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardArrowDownTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" -}), 'KeyboardArrowDownTwoTone'); \ No newline at end of file +}), 'KeyboardArrowDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowLeft.js b/packages/material-ui-icons/lib/KeyboardArrowLeft.js index 39705c131ffd0e..ec0b98bf329c0d 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowLeft.js +++ b/packages/material-ui-icons/lib/KeyboardArrowLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" -}), 'KeyboardArrowLeft'); \ No newline at end of file +}), 'KeyboardArrowLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowLeftOutlined.js b/packages/material-ui-icons/lib/KeyboardArrowLeftOutlined.js index 6bb859f50a3373..df9fd0a452eab7 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowLeftOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardArrowLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" -}), 'KeyboardArrowLeftOutlined'); \ No newline at end of file +}), 'KeyboardArrowLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowLeftRounded.js b/packages/material-ui-icons/lib/KeyboardArrowLeftRounded.js index e7bc8788293fbd..136b8628e78c92 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowLeftRounded.js +++ b/packages/material-ui-icons/lib/KeyboardArrowLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.71 15.88 10.83 12l3.88-3.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.39.39-1.03 0-1.42z" -}), 'KeyboardArrowLeftRounded'); \ No newline at end of file +}), 'KeyboardArrowLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowLeftSharp.js b/packages/material-ui-icons/lib/KeyboardArrowLeftSharp.js index 87fce5798947fb..3d20605c645e8a 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowLeftSharp.js +++ b/packages/material-ui-icons/lib/KeyboardArrowLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" -}), 'KeyboardArrowLeftSharp'); \ No newline at end of file +}), 'KeyboardArrowLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowLeftTwoTone.js b/packages/material-ui-icons/lib/KeyboardArrowLeftTwoTone.js index bc1cd9ee0271e8..197d374aca58a7 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowLeftTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardArrowLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" -}), 'KeyboardArrowLeftTwoTone'); \ No newline at end of file +}), 'KeyboardArrowLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowRight.js b/packages/material-ui-icons/lib/KeyboardArrowRight.js index 7461b0ddb7885f..15072827636bfd 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowRight.js +++ b/packages/material-ui-icons/lib/KeyboardArrowRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" -}), 'KeyboardArrowRight'); \ No newline at end of file +}), 'KeyboardArrowRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowRightOutlined.js b/packages/material-ui-icons/lib/KeyboardArrowRightOutlined.js index a1fa002c26d851..de12964da76f35 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowRightOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardArrowRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" -}), 'KeyboardArrowRightOutlined'); \ No newline at end of file +}), 'KeyboardArrowRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowRightRounded.js b/packages/material-ui-icons/lib/KeyboardArrowRightRounded.js index 6d131018ea3d20..3f0de69e68a240 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowRightRounded.js +++ b/packages/material-ui-icons/lib/KeyboardArrowRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.29 15.88 13.17 12 9.29 8.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l4.59 4.59c.39.39.39 1.02 0 1.41L10.7 17.3c-.39.39-1.02.39-1.41 0-.38-.39-.39-1.03 0-1.42z" -}), 'KeyboardArrowRightRounded'); \ No newline at end of file +}), 'KeyboardArrowRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowRightSharp.js b/packages/material-ui-icons/lib/KeyboardArrowRightSharp.js index 36d315e57b039b..cb91fd927e485e 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowRightSharp.js +++ b/packages/material-ui-icons/lib/KeyboardArrowRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" -}), 'KeyboardArrowRightSharp'); \ No newline at end of file +}), 'KeyboardArrowRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowRightTwoTone.js b/packages/material-ui-icons/lib/KeyboardArrowRightTwoTone.js index 94fdeaaaa5365e..e29afdc1742c37 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowRightTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardArrowRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" -}), 'KeyboardArrowRightTwoTone'); \ No newline at end of file +}), 'KeyboardArrowRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowUp.js b/packages/material-ui-icons/lib/KeyboardArrowUp.js index ea35a748dbf30e..a5a15e4a27d4b2 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowUp.js +++ b/packages/material-ui-icons/lib/KeyboardArrowUp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6z" -}), 'KeyboardArrowUp'); \ No newline at end of file +}), 'KeyboardArrowUp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowUpOutlined.js b/packages/material-ui-icons/lib/KeyboardArrowUpOutlined.js index 82b18ee4f2336b..f996f7def2f934 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowUpOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardArrowUpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" -}), 'KeyboardArrowUpOutlined'); \ No newline at end of file +}), 'KeyboardArrowUpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowUpRounded.js b/packages/material-ui-icons/lib/KeyboardArrowUpRounded.js index a936e99d5a200e..c633053c2538b5 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowUpRounded.js +++ b/packages/material-ui-icons/lib/KeyboardArrowUpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.12 14.71 12 10.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 8.71a.9959.9959 0 0 0-1.41 0L6.7 13.3c-.39.39-.39 1.02 0 1.41.39.38 1.03.39 1.42 0z" -}), 'KeyboardArrowUpRounded'); \ No newline at end of file +}), 'KeyboardArrowUpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowUpSharp.js b/packages/material-ui-icons/lib/KeyboardArrowUpSharp.js index b089cb524bdf26..cf4ae2ffbcbfbb 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowUpSharp.js +++ b/packages/material-ui-icons/lib/KeyboardArrowUpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" -}), 'KeyboardArrowUpSharp'); \ No newline at end of file +}), 'KeyboardArrowUpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardArrowUpTwoTone.js b/packages/material-ui-icons/lib/KeyboardArrowUpTwoTone.js index 5b24fdc3eec400..876c3227292266 100644 --- a/packages/material-ui-icons/lib/KeyboardArrowUpTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardArrowUpTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" -}), 'KeyboardArrowUpTwoTone'); \ No newline at end of file +}), 'KeyboardArrowUpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardBackspace.js b/packages/material-ui-icons/lib/KeyboardBackspace.js index 6e6133030705e0..d9a1549467f79a 100644 --- a/packages/material-ui-icons/lib/KeyboardBackspace.js +++ b/packages/material-ui-icons/lib/KeyboardBackspace.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21z" -}), 'KeyboardBackspace'); \ No newline at end of file +}), 'KeyboardBackspace'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardBackspaceOutlined.js b/packages/material-ui-icons/lib/KeyboardBackspaceOutlined.js index 7e17b6cc2ff2d4..706293079ce7a6 100644 --- a/packages/material-ui-icons/lib/KeyboardBackspaceOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardBackspaceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" -}), 'KeyboardBackspaceOutlined'); \ No newline at end of file +}), 'KeyboardBackspaceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardBackspaceRounded.js b/packages/material-ui-icons/lib/KeyboardBackspaceRounded.js index 14996de2f555ee..1f46d03bf6e6f2 100644 --- a/packages/material-ui-icons/lib/KeyboardBackspaceRounded.js +++ b/packages/material-ui-icons/lib/KeyboardBackspaceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11H6.83l2.88-2.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L3.71 11.3c-.39.39-.39 1.02 0 1.41L8.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.83 13H20c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'KeyboardBackspaceRounded'); \ No newline at end of file +}), 'KeyboardBackspaceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardBackspaceSharp.js b/packages/material-ui-icons/lib/KeyboardBackspaceSharp.js index 35197f055e0672..503a6b760d6e6d 100644 --- a/packages/material-ui-icons/lib/KeyboardBackspaceSharp.js +++ b/packages/material-ui-icons/lib/KeyboardBackspaceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" -}), 'KeyboardBackspaceSharp'); \ No newline at end of file +}), 'KeyboardBackspaceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardBackspaceTwoTone.js b/packages/material-ui-icons/lib/KeyboardBackspaceTwoTone.js index 842f6c5c58f7b9..5051b128f1fdc1 100644 --- a/packages/material-ui-icons/lib/KeyboardBackspaceTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardBackspaceTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" -}), 'KeyboardBackspaceTwoTone'); \ No newline at end of file +}), 'KeyboardBackspaceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardCapslock.js b/packages/material-ui-icons/lib/KeyboardCapslock.js index 580ae4b4956816..5f1522b32b8f91 100644 --- a/packages/material-ui-icons/lib/KeyboardCapslock.js +++ b/packages/material-ui-icons/lib/KeyboardCapslock.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" -}), 'KeyboardCapslock'); \ No newline at end of file +}), 'KeyboardCapslock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardCapslockOutlined.js b/packages/material-ui-icons/lib/KeyboardCapslockOutlined.js index efee9f7c27f551..97d01a14e3cbf9 100644 --- a/packages/material-ui-icons/lib/KeyboardCapslockOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardCapslockOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" -}), 'KeyboardCapslockOutlined'); \ No newline at end of file +}), 'KeyboardCapslockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardCapslockRounded.js b/packages/material-ui-icons/lib/KeyboardCapslockRounded.js index 779fc24bc249a1..355d3d4c8ed7af 100644 --- a/packages/material-ui-icons/lib/KeyboardCapslockRounded.js +++ b/packages/material-ui-icons/lib/KeyboardCapslockRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.41 3.89 3.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.71 6.3a.9959.9959 0 0 0-1.41 0l-4.6 4.59c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 8.41zM7 18h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'KeyboardCapslockRounded'); \ No newline at end of file +}), 'KeyboardCapslockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardCapslockSharp.js b/packages/material-ui-icons/lib/KeyboardCapslockSharp.js index 2620c617f81b44..6eb95cdbf16087 100644 --- a/packages/material-ui-icons/lib/KeyboardCapslockSharp.js +++ b/packages/material-ui-icons/lib/KeyboardCapslockSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" -}), 'KeyboardCapslockSharp'); \ No newline at end of file +}), 'KeyboardCapslockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardCapslockTwoTone.js b/packages/material-ui-icons/lib/KeyboardCapslockTwoTone.js index 062e3a76fa3f1b..b70a1842be680b 100644 --- a/packages/material-ui-icons/lib/KeyboardCapslockTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardCapslockTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" -}), 'KeyboardCapslockTwoTone'); \ No newline at end of file +}), 'KeyboardCapslockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardHide.js b/packages/material-ui-icons/lib/KeyboardHide.js index 39705a5d9569cd..8177c74f74cd8f 100644 --- a/packages/material-ui-icons/lib/KeyboardHide.js +++ b/packages/material-ui-icons/lib/KeyboardHide.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15 4-4H8l4 4z" -}), 'KeyboardHide'); \ No newline at end of file +}), 'KeyboardHide'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardHideOutlined.js b/packages/material-ui-icons/lib/KeyboardHideOutlined.js index 49b4e7475d44d4..25f4ed75d66b3f 100644 --- a/packages/material-ui-icons/lib/KeyboardHideOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardHideOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17 4-4H8z" -}), 'KeyboardHideOutlined'); \ No newline at end of file +}), 'KeyboardHideOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardHideRounded.js b/packages/material-ui-icons/lib/KeyboardHideRounded.js index 61fc1290ed2ba6..dc836a751d73c8 100644 --- a/packages/material-ui-icons/lib/KeyboardHideRounded.js +++ b/packages/material-ui-icons/lib/KeyboardHideRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm8 7H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm1-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-6.65 14.65 2.79-2.79c.31-.31.09-.85-.35-.85H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.19.19.51.19.7 0z" -}), 'KeyboardHideRounded'); \ No newline at end of file +}), 'KeyboardHideRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardHideSharp.js b/packages/material-ui-icons/lib/KeyboardHideSharp.js index 33fd57fa5f0455..9e14e403ac53ce 100644 --- a/packages/material-ui-icons/lib/KeyboardHideSharp.js +++ b/packages/material-ui-icons/lib/KeyboardHideSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2.01L2 17h20V3zM11 6h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15 4-4H8l4 4z" -}), 'KeyboardHideSharp'); \ No newline at end of file +}), 'KeyboardHideSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardHideTwoTone.js b/packages/material-ui-icons/lib/KeyboardHideTwoTone.js index 2cee2ee5fb6734..264d5681dbd26b 100644 --- a/packages/material-ui-icons/lib/KeyboardHideTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardHideTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h16V5H4v10zm13-9h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm0 3h8v2H8v-2zM5 6h2v2H5V6zm0 3h2v2H5V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17 4-4H8l4 4z" -}, "1")], 'KeyboardHideTwoTone'); \ No newline at end of file +}, "1")], 'KeyboardHideTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardOutlined.js b/packages/material-ui-icons/lib/KeyboardOutlined.js index 1e5d03366f4757..0c036969e28d30 100644 --- a/packages/material-ui-icons/lib/KeyboardOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7v10H4V7h16m0-2H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z" -}), 'KeyboardOutlined'); \ No newline at end of file +}), 'KeyboardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardReturn.js b/packages/material-ui-icons/lib/KeyboardReturn.js index 9003cd46033da0..63dbfc5e62c7cc 100644 --- a/packages/material-ui-icons/lib/KeyboardReturn.js +++ b/packages/material-ui-icons/lib/KeyboardReturn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7z" -}), 'KeyboardReturn'); \ No newline at end of file +}), 'KeyboardReturn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardReturnOutlined.js b/packages/material-ui-icons/lib/KeyboardReturnOutlined.js index 6ecfaa9301c1b5..5580a7922d5c68 100644 --- a/packages/material-ui-icons/lib/KeyboardReturnOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardReturnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" -}), 'KeyboardReturnOutlined'); \ No newline at end of file +}), 'KeyboardReturnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardReturnRounded.js b/packages/material-ui-icons/lib/KeyboardReturnRounded.js index c1118e4a06ba93..29c3f765cc9a12 100644 --- a/packages/material-ui-icons/lib/KeyboardReturnRounded.js +++ b/packages/material-ui-icons/lib/KeyboardReturnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8v3H5.83l2.88-2.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L2.71 11.3c-.39.39-.39 1.02 0 1.41L7.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.83 13H20c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'KeyboardReturnRounded'); \ No newline at end of file +}), 'KeyboardReturnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardReturnSharp.js b/packages/material-ui-icons/lib/KeyboardReturnSharp.js index 55e6a0fc44e1e6..c830cd4ef1fc80 100644 --- a/packages/material-ui-icons/lib/KeyboardReturnSharp.js +++ b/packages/material-ui-icons/lib/KeyboardReturnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" -}), 'KeyboardReturnSharp'); \ No newline at end of file +}), 'KeyboardReturnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardReturnTwoTone.js b/packages/material-ui-icons/lib/KeyboardReturnTwoTone.js index 836f163cb034bc..757315e0e2fbf8 100644 --- a/packages/material-ui-icons/lib/KeyboardReturnTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardReturnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" -}), 'KeyboardReturnTwoTone'); \ No newline at end of file +}), 'KeyboardReturnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardRounded.js b/packages/material-ui-icons/lib/KeyboardRounded.js index ef149920612713..cc759c2eaf5263 100644 --- a/packages/material-ui-icons/lib/KeyboardRounded.js +++ b/packages/material-ui-icons/lib/KeyboardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm8 7H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm1-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" -}), 'KeyboardRounded'); \ No newline at end of file +}), 'KeyboardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardSharp.js b/packages/material-ui-icons/lib/KeyboardSharp.js index 7275c0cade0f86..4faa7ab3349a46 100644 --- a/packages/material-ui-icons/lib/KeyboardSharp.js +++ b/packages/material-ui-icons/lib/KeyboardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5H2.01L2 19h20V5zM11 8h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" -}), 'KeyboardSharp'); \ No newline at end of file +}), 'KeyboardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardTab.js b/packages/material-ui-icons/lib/KeyboardTab.js index e5f1cee889d40d..61764b9b7cb56d 100644 --- a/packages/material-ui-icons/lib/KeyboardTab.js +++ b/packages/material-ui-icons/lib/KeyboardTab.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" -}), 'KeyboardTab'); \ No newline at end of file +}), 'KeyboardTab'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardTabOutlined.js b/packages/material-ui-icons/lib/KeyboardTabOutlined.js index f6afd45b9ed809..91768b18651b16 100644 --- a/packages/material-ui-icons/lib/KeyboardTabOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardTabOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" -}), 'KeyboardTabOutlined'); \ No newline at end of file +}), 'KeyboardTabOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardTabRounded.js b/packages/material-ui-icons/lib/KeyboardTabRounded.js index 2edabe21af9947..562af5869cb397 100644 --- a/packages/material-ui-icons/lib/KeyboardTabRounded.js +++ b/packages/material-ui-icons/lib/KeyboardTabRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.29 8.12 15.17 11H2c-.55 0-1 .45-1 1s.45 1 1 1h13.17l-2.88 2.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L13.7 6.7a.9959.9959 0 0 0-1.41 0c-.38.39-.39 1.03 0 1.42zM20 7v10c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'KeyboardTabRounded'); \ No newline at end of file +}), 'KeyboardTabRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardTabSharp.js b/packages/material-ui-icons/lib/KeyboardTabSharp.js index 8f31a9c26fda37..30ae211496268f 100644 --- a/packages/material-ui-icons/lib/KeyboardTabSharp.js +++ b/packages/material-ui-icons/lib/KeyboardTabSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" -}), 'KeyboardTabSharp'); \ No newline at end of file +}), 'KeyboardTabSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardTabTwoTone.js b/packages/material-ui-icons/lib/KeyboardTabTwoTone.js index ac86e5073fc2ee..258513b4055597 100644 --- a/packages/material-ui-icons/lib/KeyboardTabTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardTabTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" -}), 'KeyboardTabTwoTone'); \ No newline at end of file +}), 'KeyboardTabTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardTwoTone.js b/packages/material-ui-icons/lib/KeyboardTwoTone.js index 99500e3a415de8..3cfde4cfa411cf 100644 --- a/packages/material-ui-icons/lib/KeyboardTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h16V7H4v10zm13-9h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm0 3h8v2H8v-2zM5 8h2v2H5V8zm0 3h2v2H5v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H4V7h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z" -}, "1")], 'KeyboardTwoTone'); \ No newline at end of file +}, "1")], 'KeyboardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardVoice.js b/packages/material-ui-icons/lib/KeyboardVoice.js index 4c6f2e5232ec59..83ee60ef3800b5 100644 --- a/packages/material-ui-icons/lib/KeyboardVoice.js +++ b/packages/material-ui-icons/lib/KeyboardVoice.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" -}), 'KeyboardVoice'); \ No newline at end of file +}), 'KeyboardVoice'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardVoiceOutlined.js b/packages/material-ui-icons/lib/KeyboardVoiceOutlined.js index 892f317b39f523..413de2fb1f883c 100644 --- a/packages/material-ui-icons/lib/KeyboardVoiceOutlined.js +++ b/packages/material-ui-icons/lib/KeyboardVoiceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" -}), 'KeyboardVoiceOutlined'); \ No newline at end of file +}), 'KeyboardVoiceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardVoiceRounded.js b/packages/material-ui-icons/lib/KeyboardVoiceRounded.js index 1c93f30a6baae3..204ef74ed9b3e1 100644 --- a/packages/material-ui-icons/lib/KeyboardVoiceRounded.js +++ b/packages/material-ui-icons/lib/KeyboardVoiceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm6.08-3c-.42 0-.77.3-.83.71-.37 2.61-2.72 4.39-5.25 4.39s-4.88-1.77-5.25-4.39c-.06-.41-.42-.71-.83-.71-.52 0-.92.46-.85.97.46 2.97 2.96 5.3 5.93 5.75V21c0 .55.45 1 1 1s1-.45 1-1v-2.28c2.96-.43 5.47-2.78 5.93-5.75.07-.51-.33-.97-.85-.97z" -}), 'KeyboardVoiceRounded'); \ No newline at end of file +}), 'KeyboardVoiceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardVoiceSharp.js b/packages/material-ui-icons/lib/KeyboardVoiceSharp.js index 3d5c624634bab9..60cb32ba8b41d7 100644 --- a/packages/material-ui-icons/lib/KeyboardVoiceSharp.js +++ b/packages/material-ui-icons/lib/KeyboardVoiceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" -}), 'KeyboardVoiceSharp'); \ No newline at end of file +}), 'KeyboardVoiceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KeyboardVoiceTwoTone.js b/packages/material-ui-icons/lib/KeyboardVoiceTwoTone.js index 93df8282b4d4fb..307ea0d2edea95 100644 --- a/packages/material-ui-icons/lib/KeyboardVoiceTwoTone.js +++ b/packages/material-ui-icons/lib/KeyboardVoiceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13.3c.66 0 1.19-.54 1.19-1.2l.01-6.2c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v6.2c0 .66.54 1.2 1.2 1.2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" -}, "1")], 'KeyboardVoiceTwoTone'); \ No newline at end of file +}, "1")], 'KeyboardVoiceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KingBed.js b/packages/material-ui-icons/lib/KingBed.js index c7ecdd30093b09..ff90c46ff4e37a 100644 --- a/packages/material-ui-icons/lib/KingBed.js +++ b/packages/material-ui-icons/lib/KingBed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5c0-1.1-.9-2-2-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z" -}), 'KingBed'); \ No newline at end of file +}), 'KingBed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KingBedOutlined.js b/packages/material-ui-icons/lib/KingBedOutlined.js index f48ce2d00bc9f5..fc7d6e4c2fa1d4 100644 --- a/packages/material-ui-icons/lib/KingBedOutlined.js +++ b/packages/material-ui-icons/lib/KingBedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-1.1-.9-2-2-2V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5zm-4-2h-5V7h5v3zM6 7h5v3H6V7zm-2 5h16v3H4v-3z" -}), 'KingBedOutlined'); \ No newline at end of file +}), 'KingBedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KingBedRounded.js b/packages/material-ui-icons/lib/KingBedRounded.js index 4d2313717c8165..214f62408ba4ae 100644 --- a/packages/material-ui-icons/lib/KingBedRounded.js +++ b/packages/material-ui-icons/lib/KingBedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33l.51 1.53c.1.28.36.47.66.47.3 0 .56-.19.66-.47L5.67 17h12.67l.51 1.53c.09.28.35.47.65.47.3 0 .56-.19.66-.47l.51-1.53H22v-5c0-1.1-.9-2-2-2zm-9 0H6V8c0-.55.45-1 1-1h4v3zm7 0h-5V7h4c.55 0 1 .45 1 1v2z" -}), 'KingBedRounded'); \ No newline at end of file +}), 'KingBedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KingBedSharp.js b/packages/material-ui-icons/lib/KingBedSharp.js index aca98f28445c6b..2612c3c6e6ee28 100644 --- a/packages/material-ui-icons/lib/KingBedSharp.js +++ b/packages/material-ui-icons/lib/KingBedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V5H4v5H2v7h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-7h-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z" -}), 'KingBedSharp'); \ No newline at end of file +}), 'KingBedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KingBedTwoTone.js b/packages/material-ui-icons/lib/KingBedTwoTone.js index 2c810710d3760a..50becae54846a8 100644 --- a/packages/material-ui-icons/lib/KingBedTwoTone.js +++ b/packages/material-ui-icons/lib/KingBedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12h16v3H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5c0-1.1-.9-2-2-2zm-7-3h5v3h-5V7zM6 7h5v3H6V7zm14 8H4v-3h16v3z" -}, "1")], 'KingBedTwoTone'); \ No newline at end of file +}, "1")], 'KingBedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Kitchen.js b/packages/material-ui-icons/lib/Kitchen.js index 4a44e23627056d..3475fd6954041e 100644 --- a/packages/material-ui-icons/lib/Kitchen.js +++ b/packages/material-ui-icons/lib/Kitchen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2.01 6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z" -}), 'Kitchen'); \ No newline at end of file +}), 'Kitchen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitchenOutlined.js b/packages/material-ui-icons/lib/KitchenOutlined.js index 4a256f171c668a..f0937763977fb6 100644 --- a/packages/material-ui-icons/lib/KitchenOutlined.js +++ b/packages/material-ui-icons/lib/KitchenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5h2v3H8zm0 7h2v5H8zm10-9.99L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5z" -}), 'KitchenOutlined'); \ No newline at end of file +}), 'KitchenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitchenRounded.js b/packages/material-ui-icons/lib/KitchenRounded.js index 3962f795f0ca18..029d54014b7dc2 100644 --- a/packages/material-ui-icons/lib/KitchenRounded.js +++ b/packages/material-ui-icons/lib/KitchenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2.01 6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM17 20H7c-.55 0-1-.45-1-1v-7.02c0-.55.45-1 1-1h10c.55 0 1 .45 1 1V19c0 .55-.45 1-1 1zm0-11H7c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zM9 5c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm0 7c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1z" -}), 'KitchenRounded'); \ No newline at end of file +}), 'KitchenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitchenSharp.js b/packages/material-ui-icons/lib/KitchenSharp.js index b79e7ee7ba87fa..33245bbf4d90bb 100644 --- a/packages/material-ui-icons/lib/KitchenSharp.js +++ b/packages/material-ui-icons/lib/KitchenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2.01 4 2v20h16V2.01zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8V5zm0 7h2v5H8v-5z" -}), 'KitchenSharp'); \ No newline at end of file +}), 'KitchenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitchenTwoTone.js b/packages/material-ui-icons/lib/KitchenTwoTone.js index a9b109766e3cff..01a292df98e483 100644 --- a/packages/material-ui-icons/lib/KitchenTwoTone.js +++ b/packages/material-ui-icons/lib/KitchenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5h2v3H8zm0 7h2v5H8zm-2 8h12v-9.02H6V20zm2-8h2v5H8v-5zM6 9h12V4H6v5zm2-4h2v3H8V5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2.01 6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z" -}, "1")], 'KitchenTwoTone'); \ No newline at end of file +}, "1")], 'KitchenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Kitesurfing.js b/packages/material-ui-icons/lib/Kitesurfing.js index 5b16aaa59e12d4..31673db8f30ff8 100644 --- a/packages/material-ui-icons/lib/Kitesurfing.js +++ b/packages/material-ui-icons/lib/Kitesurfing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17l-1.55-2.97C6.15 13.3 6 12.64 6 12V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" -}), 'Kitesurfing'); \ No newline at end of file +}), 'Kitesurfing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitesurfingOutlined.js b/packages/material-ui-icons/lib/KitesurfingOutlined.js index 6bdfbb8ffeeebe..1d28c9f9248adb 100644 --- a/packages/material-ui-icons/lib/KitesurfingOutlined.js +++ b/packages/material-ui-icons/lib/KitesurfingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17l-1.55-2.97C6.15 13.3 6 12.64 6 12V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" -}), 'KitesurfingOutlined'); \ No newline at end of file +}), 'KitesurfingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitesurfingRounded.js b/packages/material-ui-icons/lib/KitesurfingRounded.js index 252f12176b7338..86eef70f54ec4a 100644 --- a/packages/material-ui-icons/lib/KitesurfingRounded.js +++ b/packages/material-ui-icons/lib/KitesurfingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm10.03.97c.29.29.77.29 1.06 0L20.06 1h-2.12l-1.91 1.91c-.29.29-.29.77 0 1.06zM19.15 12c-1.29 0-3.11.53-5.06 1.38L13 12.16c-.38-.42-.92-.66-1.49-.66H9.6V8H11c1.52 0 2.94-.49 4.09-1.32.49-.35.52-1.07.09-1.5-.35-.35-.9-.38-1.3-.09-.82.57-1.81.91-2.88.91H8c-1.1 0-2 .9-2 2v4.04c0 .64.15 1.27.45 1.83L8 16.84c-.53.38-1.03.78-1.49 1.17.68.58 1.55.99 2.49.99 1.2 0 2.27-.66 3-1.5.73.84 1.8 1.5 3 1.5.33 0 .65-.05.96-.14C18.81 16.9 21 14.72 21 13.28c0-1.03-1.01-1.28-1.85-1.28zm-9.32 3.61L9 13.6l2.5-.1.7.77c-.56.28-1.78.96-2.37 1.34zM22 22c0-.55-.45-1-1-1-.87 0-1.73-.24-2.53-.7-.29-.16-.65-.17-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-.8.46-1.66.7-2.53.7-.55 0-1 .45-1 1s.45 1 1 1c1.15 0 2.3-.31 3.33-.94 1.66 1.11 3.78 1.01 5.58.14 1.91 1.05 4.17 1.07 6.09.05.95.5 1.97.75 3 .75.55 0 1-.45 1-1z" -}), 'KitesurfingRounded'); \ No newline at end of file +}), 'KitesurfingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitesurfingSharp.js b/packages/material-ui-icons/lib/KitesurfingSharp.js index 0d124f500dc135..6f393b4b6d0563 100644 --- a/packages/material-ui-icons/lib/KitesurfingSharp.js +++ b/packages/material-ui-icons/lib/KitesurfingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17L6 13V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" -}), 'KitesurfingSharp'); \ No newline at end of file +}), 'KitesurfingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/KitesurfingTwoTone.js b/packages/material-ui-icons/lib/KitesurfingTwoTone.js index 6fdb8429f993d9..22c5d66fb4aee9 100644 --- a/packages/material-ui-icons/lib/KitesurfingTwoTone.js +++ b/packages/material-ui-icons/lib/KitesurfingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17l-1.55-2.97C6.15 13.3 6 12.64 6 12V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" -}), 'KitesurfingTwoTone'); \ No newline at end of file +}), 'KitesurfingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Label.js b/packages/material-ui-icons/lib/Label.js index 1ce5c41844e98d..f89df89fe43c86 100644 --- a/packages/material-ui-icons/lib/Label.js +++ b/packages/material-ui-icons/lib/Label.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16z" -}), 'Label'); \ No newline at end of file +}), 'Label'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelImportant.js b/packages/material-ui-icons/lib/LabelImportant.js index eefd796370861f..a7abd5ff756eef 100644 --- a/packages/material-ui-icons/lib/LabelImportant.js +++ b/packages/material-ui-icons/lib/LabelImportant.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.5 18.99 11 .01c.67 0 1.27-.33 1.63-.84L20.5 12l-4.37-6.16c-.36-.51-.96-.84-1.63-.84l-11 .01L8.34 12 3.5 18.99z" -}), 'LabelImportant'); \ No newline at end of file +}), 'LabelImportant'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelImportantOutlined.js b/packages/material-ui-icons/lib/LabelImportantOutlined.js index 35470f576a650f..67e9eaad59bd92 100644 --- a/packages/material-ui-icons/lib/LabelImportantOutlined.js +++ b/packages/material-ui-icons/lib/LabelImportantOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z" -}), 'LabelImportantOutlined'); \ No newline at end of file +}), 'LabelImportantOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelImportantRounded.js b/packages/material-ui-icons/lib/LabelImportantRounded.js index 2230f98ad19d1d..393cfbcb346aed 100644 --- a/packages/material-ui-icons/lib/LabelImportantRounded.js +++ b/packages/material-ui-icons/lib/LabelImportantRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.94 18.99H15c.65 0 1.26-.31 1.63-.84l3.95-5.57c.25-.35.25-.81 0-1.16l-3.96-5.58C16.26 5.31 15.65 5 15 5H5.94c-.81 0-1.28.93-.81 1.59L9 12l-3.87 5.41c-.47.66 0 1.58.81 1.58z" -}), 'LabelImportantRounded'); \ No newline at end of file +}), 'LabelImportantRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelImportantSharp.js b/packages/material-ui-icons/lib/LabelImportantSharp.js index 4ec53e97a97673..6555b2bfd6c964 100644 --- a/packages/material-ui-icons/lib/LabelImportantSharp.js +++ b/packages/material-ui-icons/lib/LabelImportantSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18.99h12.04L21 12l-4.97-7H4l5 7-5 6.99z" -}), 'LabelImportantSharp'); \ No newline at end of file +}), 'LabelImportantSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelImportantTwoTone.js b/packages/material-ui-icons/lib/LabelImportantTwoTone.js index 7495072003664e..98b6cc7719e320 100644 --- a/packages/material-ui-icons/lib/LabelImportantTwoTone.js +++ b/packages/material-ui-icons/lib/LabelImportantTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7H7.89l3.57 5-3.57 5H15l3.55-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.63 5.84C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16zM15 17H7.89l3.57-5-3.57-5H15l3.55 5L15 17z" -}, "1")], 'LabelImportantTwoTone'); \ No newline at end of file +}, "1")], 'LabelImportantTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelOff.js b/packages/material-ui-icons/lib/LabelOff.js index 7ecfb3ba18c8ba..b16039e8acd14c 100644 --- a/packages/material-ui-icons/lib/LabelOff.js +++ b/packages/material-ui-icons/lib/LabelOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.25 2.75 17 17L19 21l-2-2H5c-1.1 0-2-.9-2-2V7c0-.55.23-1.05.59-1.41L2 4l1.25-1.25zM22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5H8l11 11 3-4z" -}), 'LabelOff'); \ No newline at end of file +}), 'LabelOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelOffOutlined.js b/packages/material-ui-icons/lib/LabelOffOutlined.js index 7bf95cacfdcb7d..98f6543a6dec75 100644 --- a/packages/material-ui-icons/lib/LabelOffOutlined.js +++ b/packages/material-ui-icons/lib/LabelOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 7 3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z" -}), 'LabelOffOutlined'); \ No newline at end of file +}), 'LabelOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelOffRounded.js b/packages/material-ui-icons/lib/LabelOffRounded.js index 3c7df26a076fb9..bea34718074dff 100644 --- a/packages/material-ui-icons/lib/LabelOffRounded.js +++ b/packages/material-ui-icons/lib/LabelOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.59 12.58c.25-.35.25-.81 0-1.16l-3.96-5.58C17.27 5.33 16.67 5 16 5H8.66l10.7 10.73 2.23-3.15zM2.72 4.72l.87.87C3.23 5.95 3 6.45 3 7v10c0 1.1.9 2 2 2h12l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.14 3.31c-.38-.38-1.01-.39-1.4-.01-.41.38-.41 1.03-.02 1.42z" -}), 'LabelOffRounded'); \ No newline at end of file +}), 'LabelOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelOffSharp.js b/packages/material-ui-icons/lib/LabelOffSharp.js index b9922a77ec7ceb..1e347f41ee2c4a 100644 --- a/packages/material-ui-icons/lib/LabelOffSharp.js +++ b/packages/material-ui-icons/lib/LabelOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4.97-7H8.66l10.7 10.73zM2 4l1 1v14h14l2 2 1.41-1.41L3.44 2.62z" -}), 'LabelOffSharp'); \ No newline at end of file +}), 'LabelOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelOffTwoTone.js b/packages/material-ui-icons/lib/LabelOffTwoTone.js index 3e6f3ab9265b35..67a27d9b1ea1ef 100644 --- a/packages/material-ui-icons/lib/LabelOffTwoTone.js +++ b/packages/material-ui-icons/lib/LabelOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7.03V17h9.97zM16 7h-5.37l7.29 7.29L19.55 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 7 3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zm3 3L14.97 17H5V7.03z" -}, "1")], 'LabelOffTwoTone'); \ No newline at end of file +}, "1")], 'LabelOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelOutlined.js b/packages/material-ui-icons/lib/LabelOutlined.js index 5b0b1e00ebc557..79dc4e634fb235 100644 --- a/packages/material-ui-icons/lib/LabelOutlined.js +++ b/packages/material-ui-icons/lib/LabelOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z" -}), 'LabelOutlined'); \ No newline at end of file +}), 'LabelOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelRounded.js b/packages/material-ui-icons/lib/LabelRounded.js index 10cb7246ba742b..03d484a9fd3f3c 100644 --- a/packages/material-ui-icons/lib/LabelRounded.js +++ b/packages/material-ui-icons/lib/LabelRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58c.25-.35.25-.81 0-1.16l-3.96-5.58z" -}), 'LabelRounded'); \ No newline at end of file +}), 'LabelRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelSharp.js b/packages/material-ui-icons/lib/LabelSharp.js index 0ae4bfeae02ddb..24acc4f72167dc 100644 --- a/packages/material-ui-icons/lib/LabelSharp.js +++ b/packages/material-ui-icons/lib/LabelSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.03 5 3 5.01v13.98l14.03.01L22 12l-4.97-7z" -}), 'LabelSharp'); \ No newline at end of file +}), 'LabelSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LabelTwoTone.js b/packages/material-ui-icons/lib/LabelTwoTone.js index c2fc1bfb4afe62..4aeff4f3ca40c4 100644 --- a/packages/material-ui-icons/lib/LabelTwoTone.js +++ b/packages/material-ui-icons/lib/LabelTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7H5v10h11l3.55-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z" -}, "1")], 'LabelTwoTone'); \ No newline at end of file +}, "1")], 'LabelTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Landscape.js b/packages/material-ui-icons/lib/Landscape.js index 83da40ac616bf1..58e5f503187639 100644 --- a/packages/material-ui-icons/lib/Landscape.js +++ b/packages/material-ui-icons/lib/Landscape.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" -}), 'Landscape'); \ No newline at end of file +}), 'Landscape'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LandscapeOutlined.js b/packages/material-ui-icons/lib/LandscapeOutlined.js index 1d74d750e8fbe9..cdf2fda2886d12 100644 --- a/packages/material-ui-icons/lib/LandscapeOutlined.js +++ b/packages/material-ui-icons/lib/LandscapeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" -}), 'LandscapeOutlined'); \ No newline at end of file +}), 'LandscapeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LandscapeRounded.js b/packages/material-ui-icons/lib/LandscapeRounded.js index e1d8338418a9fc..0c97552a5c83d6 100644 --- a/packages/material-ui-icons/lib/LandscapeRounded.js +++ b/packages/material-ui-icons/lib/LandscapeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.2 7.07 10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z" -}), 'LandscapeRounded'); \ No newline at end of file +}), 'LandscapeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LandscapeSharp.js b/packages/material-ui-icons/lib/LandscapeSharp.js index c72e01974d8f61..68c13a73a5cbbf 100644 --- a/packages/material-ui-icons/lib/LandscapeSharp.js +++ b/packages/material-ui-icons/lib/LandscapeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" -}), 'LandscapeSharp'); \ No newline at end of file +}), 'LandscapeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LandscapeTwoTone.js b/packages/material-ui-icons/lib/LandscapeTwoTone.js index 2a8c3fcc5c10f4..ecdfdf94a23526 100644 --- a/packages/material-ui-icons/lib/LandscapeTwoTone.js +++ b/packages/material-ui-icons/lib/LandscapeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h3.04l-1.52-2.03z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" -}, "1")], 'LandscapeTwoTone'); \ No newline at end of file +}, "1")], 'LandscapeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Language.js b/packages/material-ui-icons/lib/Language.js index 8aa24da5ea7852..1637dffb1683bd 100644 --- a/packages/material-ui-icons/lib/Language.js +++ b/packages/material-ui-icons/lib/Language.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" -}), 'Language'); \ No newline at end of file +}), 'Language'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LanguageOutlined.js b/packages/material-ui-icons/lib/LanguageOutlined.js index d1cb120c0663e4..1a3f72c638e3d0 100644 --- a/packages/material-ui-icons/lib/LanguageOutlined.js +++ b/packages/material-ui-icons/lib/LanguageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" -}), 'LanguageOutlined'); \ No newline at end of file +}), 'LanguageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LanguageRounded.js b/packages/material-ui-icons/lib/LanguageRounded.js index dee47c82b48a5d..46f422470c146d 100644 --- a/packages/material-ui-icons/lib/LanguageRounded.js +++ b/packages/material-ui-icons/lib/LanguageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" -}), 'LanguageRounded'); \ No newline at end of file +}), 'LanguageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LanguageSharp.js b/packages/material-ui-icons/lib/LanguageSharp.js index 30dd78bc33486a..f61beba08e313e 100644 --- a/packages/material-ui-icons/lib/LanguageSharp.js +++ b/packages/material-ui-icons/lib/LanguageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" -}), 'LanguageSharp'); \ No newline at end of file +}), 'LanguageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LanguageTwoTone.js b/packages/material-ui-icons/lib/LanguageTwoTone.js index d7794691e7bae3..d73a58ec79c59e 100644 --- a/packages/material-ui-icons/lib/LanguageTwoTone.js +++ b/packages/material-ui-icons/lib/LanguageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.08 8h2.95c.32-1.25.78-2.45 1.38-3.56-1.84.63-3.37 1.9-4.33 3.56zm2.42 4c0-.68.06-1.34.14-2H4.26c-.16.64-.26 1.31-.26 2s.1 1.36.26 2h3.38c-.08-.66-.14-1.32-.14-2zm-2.42 4c.96 1.66 2.49 2.93 4.33 3.56-.6-1.11-1.06-2.31-1.38-3.56H5.08zM12 4.04c-.83 1.2-1.48 2.53-1.91 3.96h3.82c-.43-1.43-1.08-2.76-1.91-3.96zM18.92 8c-.96-1.65-2.49-2.93-4.33-3.56.6 1.11 1.06 2.31 1.38 3.56h2.95zM12 19.96c.83-1.2 1.48-2.53 1.91-3.96h-3.82c.43 1.43 1.08 2.76 1.91 3.96zm2.59-.4c1.84-.63 3.37-1.91 4.33-3.56h-2.95c-.32 1.25-.78 2.45-1.38 3.56zM19.74 10h-3.38c.08.66.14 1.32.14 2s-.06 1.34-.14 2h3.38c.16-.64.26-1.31.26-2s-.1-1.36-.26-2zM9.66 10c-.09.65-.16 1.32-.16 2s.07 1.34.16 2h4.68c.09-.66.16-1.32.16-2s-.07-1.35-.16-2H9.66z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" -}, "1")], 'LanguageTwoTone'); \ No newline at end of file +}, "1")], 'LanguageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Laptop.js b/packages/material-ui-icons/lib/Laptop.js index 1eb30f255ad906..b4cec7774604c0 100644 --- a/packages/material-ui-icons/lib/Laptop.js +++ b/packages/material-ui-icons/lib/Laptop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}), 'Laptop'); \ No newline at end of file +}), 'Laptop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopChromebook.js b/packages/material-ui-icons/lib/LaptopChromebook.js index 528b8de9c29a45..4fa3eae8c9c795 100644 --- a/packages/material-ui-icons/lib/LaptopChromebook.js +++ b/packages/material-ui-icons/lib/LaptopChromebook.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" -}), 'LaptopChromebook'); \ No newline at end of file +}), 'LaptopChromebook'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopChromebookOutlined.js b/packages/material-ui-icons/lib/LaptopChromebookOutlined.js index dd61ce56fa6711..0ffc0fb200cbde 100644 --- a/packages/material-ui-icons/lib/LaptopChromebookOutlined.js +++ b/packages/material-ui-icons/lib/LaptopChromebookOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" -}), 'LaptopChromebookOutlined'); \ No newline at end of file +}), 'LaptopChromebookOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopChromebookRounded.js b/packages/material-ui-icons/lib/LaptopChromebookRounded.js index 9f282cc4313839..af6f2365cd251c 100644 --- a/packages/material-ui-icons/lib/LaptopChromebookRounded.js +++ b/packages/material-ui-icons/lib/LaptopChromebookRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 18h-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1zm-9.5 0h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm6.5-3H4V6c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v9z" -}), 'LaptopChromebookRounded'); \ No newline at end of file +}), 'LaptopChromebookRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopChromebookSharp.js b/packages/material-ui-icons/lib/LaptopChromebookSharp.js index d56ba74e60f343..d7872b93f5d2c9 100644 --- a/packages/material-ui-icons/lib/LaptopChromebookSharp.js +++ b/packages/material-ui-icons/lib/LaptopChromebookSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" -}), 'LaptopChromebookSharp'); \ No newline at end of file +}), 'LaptopChromebookSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopChromebookTwoTone.js b/packages/material-ui-icons/lib/LaptopChromebookTwoTone.js index 4fda1f48ae921b..3f3f85a637264b 100644 --- a/packages/material-ui-icons/lib/LaptopChromebookTwoTone.js +++ b/packages/material-ui-icons/lib/LaptopChromebookTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5h16v10H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" -}, "1")], 'LaptopChromebookTwoTone'); \ No newline at end of file +}, "1")], 'LaptopChromebookTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopMac.js b/packages/material-ui-icons/lib/LaptopMac.js index 3008d52fb0dec4..d26bb16cbd5e10 100644 --- a/packages/material-ui-icons/lib/LaptopMac.js +++ b/packages/material-ui-icons/lib/LaptopMac.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LaptopMac'); \ No newline at end of file +}), 'LaptopMac'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopMacOutlined.js b/packages/material-ui-icons/lib/LaptopMacOutlined.js index fadf2ce028092f..4d158548f647ca 100644 --- a/packages/material-ui-icons/lib/LaptopMacOutlined.js +++ b/packages/material-ui-icons/lib/LaptopMacOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LaptopMacOutlined'); \ No newline at end of file +}), 'LaptopMacOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopMacRounded.js b/packages/material-ui-icons/lib/LaptopMacRounded.js index a9d8bd2e23bcaf..5c1aa0e482f617 100644 --- a/packages/material-ui-icons/lib/LaptopMacRounded.js +++ b/packages/material-ui-icons/lib/LaptopMacRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM5 5h14c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1zm7 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LaptopMacRounded'); \ No newline at end of file +}), 'LaptopMacRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopMacSharp.js b/packages/material-ui-icons/lib/LaptopMacSharp.js index b1f0395fd35e8f..b1c6a020d8b51f 100644 --- a/packages/material-ui-icons/lib/LaptopMacSharp.js +++ b/packages/material-ui-icons/lib/LaptopMacSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 18 1.99-2L22 3H2v13l2 2H0v2h24v-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LaptopMacSharp'); \ No newline at end of file +}), 'LaptopMacSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopMacTwoTone.js b/packages/material-ui-icons/lib/LaptopMacTwoTone.js index 02f251fef611da..5923cfe0d9cf92 100644 --- a/packages/material-ui-icons/lib/LaptopMacTwoTone.js +++ b/packages/material-ui-icons/lib/LaptopMacTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5h16v11H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'LaptopMacTwoTone'); \ No newline at end of file +}, "1")], 'LaptopMacTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopOutlined.js b/packages/material-ui-icons/lib/LaptopOutlined.js index 37f5409d010fdf..2e81e590fa72a1 100644 --- a/packages/material-ui-icons/lib/LaptopOutlined.js +++ b/packages/material-ui-icons/lib/LaptopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}), 'LaptopOutlined'); \ No newline at end of file +}), 'LaptopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopRounded.js b/packages/material-ui-icons/lib/LaptopRounded.js index c43eb5ee3bbe2d..67a35c4d3ebc44 100644 --- a/packages/material-ui-icons/lib/LaptopRounded.js +++ b/packages/material-ui-icons/lib/LaptopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 6h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z" -}), 'LaptopRounded'); \ No newline at end of file +}), 'LaptopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopSharp.js b/packages/material-ui-icons/lib/LaptopSharp.js index f19d0ab83c0301..b46083299acb1f 100644 --- a/packages/material-ui-icons/lib/LaptopSharp.js +++ b/packages/material-ui-icons/lib/LaptopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 18 2-2V4H2v12l2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}), 'LaptopSharp'); \ No newline at end of file +}), 'LaptopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopTwoTone.js b/packages/material-ui-icons/lib/LaptopTwoTone.js index 611aa1f5d2ca2d..5514bb89aac8b3 100644 --- a/packages/material-ui-icons/lib/LaptopTwoTone.js +++ b/packages/material-ui-icons/lib/LaptopTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16v10H4V6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" -}, "1")], 'LaptopTwoTone'); \ No newline at end of file +}, "1")], 'LaptopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopWindows.js b/packages/material-ui-icons/lib/LaptopWindows.js index 5789642b828098..c13f1c36f0faa4 100644 --- a/packages/material-ui-icons/lib/LaptopWindows.js +++ b/packages/material-ui-icons/lib/LaptopWindows.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" -}), 'LaptopWindows'); \ No newline at end of file +}), 'LaptopWindows'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopWindowsOutlined.js b/packages/material-ui-icons/lib/LaptopWindowsOutlined.js index e8d3813be8a313..d81e1f1b68d46b 100644 --- a/packages/material-ui-icons/lib/LaptopWindowsOutlined.js +++ b/packages/material-ui-icons/lib/LaptopWindowsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" -}), 'LaptopWindowsOutlined'); \ No newline at end of file +}), 'LaptopWindowsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopWindowsRounded.js b/packages/material-ui-icons/lib/LaptopWindowsRounded.js index 49f67a48bbcf84..c94818e0112099 100644 --- a/packages/material-ui-icons/lib/LaptopWindowsRounded.js +++ b/packages/material-ui-icons/lib/LaptopWindowsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 5h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z" -}), 'LaptopWindowsRounded'); \ No newline at end of file +}), 'LaptopWindowsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopWindowsSharp.js b/packages/material-ui-icons/lib/LaptopWindowsSharp.js index cf50abbf582066..e9d5d76e8f555f 100644 --- a/packages/material-ui-icons/lib/LaptopWindowsSharp.js +++ b/packages/material-ui-icons/lib/LaptopWindowsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-1h1.99L22 3H2v14h2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" -}), 'LaptopWindowsSharp'); \ No newline at end of file +}), 'LaptopWindowsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaptopWindowsTwoTone.js b/packages/material-ui-icons/lib/LaptopWindowsTwoTone.js index eba4b265809e52..62dc14365cd3c7 100644 --- a/packages/material-ui-icons/lib/LaptopWindowsTwoTone.js +++ b/packages/material-ui-icons/lib/LaptopWindowsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5h16v10H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" -}, "1")], 'LaptopWindowsTwoTone'); \ No newline at end of file +}, "1")], 'LaptopWindowsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LastPage.js b/packages/material-ui-icons/lib/LastPage.js index 2c218645009ca8..7e3030b54a769d 100644 --- a/packages/material-ui-icons/lib/LastPage.js +++ b/packages/material-ui-icons/lib/LastPage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z" -}), 'LastPage'); \ No newline at end of file +}), 'LastPage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LastPageOutlined.js b/packages/material-ui-icons/lib/LastPageOutlined.js index bcaf92a4bf70b6..1bd9dd07afe926 100644 --- a/packages/material-ui-icons/lib/LastPageOutlined.js +++ b/packages/material-ui-icons/lib/LastPageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" -}), 'LastPageOutlined'); \ No newline at end of file +}), 'LastPageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LastPageRounded.js b/packages/material-ui-icons/lib/LastPageRounded.js index 88b06f585aea81..5c707ab961b0ae 100644 --- a/packages/material-ui-icons/lib/LastPageRounded.js +++ b/packages/material-ui-icons/lib/LastPageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.29 8.11 10.18 12l-3.89 3.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L7.7 6.7a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41zM17 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1z" -}), 'LastPageRounded'); \ No newline at end of file +}), 'LastPageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LastPageSharp.js b/packages/material-ui-icons/lib/LastPageSharp.js index 35e97fba0c5d88..27b8fcf91acd4a 100644 --- a/packages/material-ui-icons/lib/LastPageSharp.js +++ b/packages/material-ui-icons/lib/LastPageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" -}), 'LastPageSharp'); \ No newline at end of file +}), 'LastPageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LastPageTwoTone.js b/packages/material-ui-icons/lib/LastPageTwoTone.js index df9f9832f42a69..a08f16307142e8 100644 --- a/packages/material-ui-icons/lib/LastPageTwoTone.js +++ b/packages/material-ui-icons/lib/LastPageTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" -}), 'LastPageTwoTone'); \ No newline at end of file +}), 'LastPageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Launch.js b/packages/material-ui-icons/lib/Launch.js index 709533216b6cf6..c74ba32ef3d799 100644 --- a/packages/material-ui-icons/lib/Launch.js +++ b/packages/material-ui-icons/lib/Launch.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'Launch'); \ No newline at end of file +}), 'Launch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaunchOutlined.js b/packages/material-ui-icons/lib/LaunchOutlined.js index f3780eabc1bd60..bfd685765b46c8 100644 --- a/packages/material-ui-icons/lib/LaunchOutlined.js +++ b/packages/material-ui-icons/lib/LaunchOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'LaunchOutlined'); \ No newline at end of file +}), 'LaunchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaunchRounded.js b/packages/material-ui-icons/lib/LaunchRounded.js index 375c660994735d..c11fec2618ce12 100644 --- a/packages/material-ui-icons/lib/LaunchRounded.js +++ b/packages/material-ui-icons/lib/LaunchRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V3h-6c-.55 0-1 .45-1 1z" -}), 'LaunchRounded'); \ No newline at end of file +}), 'LaunchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaunchSharp.js b/packages/material-ui-icons/lib/LaunchSharp.js index 14d923530d0019..8aba294f4d714f 100644 --- a/packages/material-ui-icons/lib/LaunchSharp.js +++ b/packages/material-ui-icons/lib/LaunchSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'LaunchSharp'); \ No newline at end of file +}), 'LaunchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LaunchTwoTone.js b/packages/material-ui-icons/lib/LaunchTwoTone.js index 9e30a00742a4e3..6002be0ef33be0 100644 --- a/packages/material-ui-icons/lib/LaunchTwoTone.js +++ b/packages/material-ui-icons/lib/LaunchTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'LaunchTwoTone'); \ No newline at end of file +}), 'LaunchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Layers.js b/packages/material-ui-icons/lib/Layers.js index 41f3d19b6b7376..2993ee8e079553 100644 --- a/packages/material-ui-icons/lib/Layers.js +++ b/packages/material-ui-icons/lib/Layers.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.99 18.54-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" -}), 'Layers'); \ No newline at end of file +}), 'Layers'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersClear.js b/packages/material-ui-icons/lib/LayersClear.js index 5b43c46f781a21..2be1f3367a4e4b 100644 --- a/packages/material-ui-icons/lib/LayersClear.js +++ b/packages/material-ui-icons/lib/LayersClear.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.81 14.99 1.19-.92-1.43-1.43-1.19.92 1.43 1.43zm-.45-4.72L21 9l-9-7-2.91 2.27 7.87 7.88 2.4-1.88zM3.27 1 2 2.27l4.22 4.22L3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73 3.27 1z" -}), 'LayersClear'); \ No newline at end of file +}), 'LayersClear'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersClearOutlined.js b/packages/material-ui-icons/lib/LayersClearOutlined.js index 4615db1e3a9b7d..211db747c9f9db 100644 --- a/packages/material-ui-icons/lib/LayersClearOutlined.js +++ b/packages/material-ui-icons/lib/LayersClearOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.53 17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54-1.63-1.27-.67.52 1.43 1.43zM3.41.86 2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47 6.26 9l1.39-1.08 5.02 5.02-.67.53z" -}), 'LayersClearOutlined'); \ No newline at end of file +}), 'LayersClearOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersClearRounded.js b/packages/material-ui-icons/lib/LayersClearRounded.js index cc779fce77113b..45cc83aac557f5 100644 --- a/packages/material-ui-icons/lib/LayersClearRounded.js +++ b/packages/material-ui-icons/lib/LayersClearRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.99 9.79c.51-.4.51-1.18 0-1.58l-6.76-5.26c-.72-.56-1.73-.56-2.46 0L9.41 4.02l7.88 7.88 2.7-2.11zm0 3.49-.01-.01a.991.991 0 0 0-1.22 0l-.05.04 1.4 1.4c.37-.41.34-1.07-.12-1.43zm1.45 5.6L4.12 1.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.52 3.52-2.22 1.72c-.51.4-.51 1.18 0 1.58l6.76 5.26c.72.56 1.73.56 2.46 0l.87-.68 1.42 1.42-2.92 2.27c-.36.28-.87.28-1.23 0l-6.15-4.78a.991.991 0 0 0-1.22 0c-.51.4-.51 1.17 0 1.57l6.76 5.26c.72.56 1.73.56 2.46 0l3.72-2.89 3.07 3.07c.39.39 1.02.39 1.41 0 .41-.39.41-1.02.02-1.41z" -}), 'LayersClearRounded'); \ No newline at end of file +}), 'LayersClearRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersClearSharp.js b/packages/material-ui-icons/lib/LayersClearSharp.js index 8417d65c4bb307..90e92c1f88c8df 100644 --- a/packages/material-ui-icons/lib/LayersClearSharp.js +++ b/packages/material-ui-icons/lib/LayersClearSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 9-9-7-2.59 2.02 7.87 7.87zm0 5.07-1.63-1.27-.67.52 1.43 1.43zM3.41.86 2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41z" -}), 'LayersClearSharp'); \ No newline at end of file +}), 'LayersClearSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersClearTwoTone.js b/packages/material-ui-icons/lib/LayersClearTwoTone.js index 71b839a31bb7ac..cbdd4be9b549bd 100644 --- a/packages/material-ui-icons/lib/LayersClearTwoTone.js +++ b/packages/material-ui-icons/lib/LayersClearTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 13.47.67-.53-5.02-5.02L6.26 9zm0-8.94-1.17.91 5.02 5.03L17.74 9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.53 17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54-1.63-1.27-.67.52 1.43 1.43zM3.41.86 2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47 6.26 9l1.39-1.08 5.02 5.02-.67.53z" -}, "1")], 'LayersClearTwoTone'); \ No newline at end of file +}, "1")], 'LayersClearTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersOutlined.js b/packages/material-ui-icons/lib/LayersOutlined.js index 315386f472521c..82f9c7d231eae0 100644 --- a/packages/material-ui-icons/lib/LayersOutlined.js +++ b/packages/material-ui-icons/lib/LayersOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.99 18.54-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z" -}), 'LayersOutlined'); \ No newline at end of file +}), 'LayersOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersRounded.js b/packages/material-ui-icons/lib/LayersRounded.js index 3567dfbe9140bd..f0c01245939ace 100644 --- a/packages/material-ui-icons/lib/LayersRounded.js +++ b/packages/material-ui-icons/lib/LayersRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.6 18.06c-.36.28-.87.28-1.23 0l-6.15-4.78a.991.991 0 0 0-1.22 0c-.51.4-.51 1.17 0 1.57l6.76 5.26c.72.56 1.73.56 2.46 0l6.76-5.26c.51-.4.51-1.17 0-1.57l-.01-.01a.991.991 0 0 0-1.22 0l-6.15 4.79zm.63-3.02 6.76-5.26c.51-.4.51-1.18 0-1.58l-6.76-5.26c-.72-.56-1.73-.56-2.46 0L4.01 8.21c-.51.4-.51 1.18 0 1.58l6.76 5.26c.72.56 1.74.56 2.46-.01z" -}), 'LayersRounded'); \ No newline at end of file +}), 'LayersRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersSharp.js b/packages/material-ui-icons/lib/LayersSharp.js index 8deadc4aa10c6f..ec864c6d79c1fd 100644 --- a/packages/material-ui-icons/lib/LayersSharp.js +++ b/packages/material-ui-icons/lib/LayersSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.99 18.54-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" -}), 'LayersSharp'); \ No newline at end of file +}), 'LayersSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LayersTwoTone.js b/packages/material-ui-icons/lib/LayersTwoTone.js index cbae7810460b2f..1f82d264a5e6d3 100644 --- a/packages/material-ui-icons/lib/LayersTwoTone.js +++ b/packages/material-ui-icons/lib/LayersTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.26 9 12 13.47 17.74 9 12 4.53z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.37 12.8-7.38 5.74-7.37-5.73L3 14.07l9 7 9-7zM12 2 3 9l1.63 1.27L12 16l7.36-5.73L21 9l-9-7zm0 11.47L6.26 9 12 4.53 17.74 9 12 13.47z" -}, "1")], 'LayersTwoTone'); \ No newline at end of file +}, "1")], 'LayersTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Leaderboard.js b/packages/material-ui-icons/lib/Leaderboard.js index 92c14bdce650dd..cb9dfdbcf08a6b 100644 --- a/packages/material-ui-icons/lib/Leaderboard.js +++ b/packages/material-ui-icons/lib/Leaderboard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 21H2V9h5.5v12zm7.25-18h-5.5v18h5.5V3zM22 11h-5.5v10H22V11z" -}), 'Leaderboard'); \ No newline at end of file +}), 'Leaderboard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeaderboardOutlined.js b/packages/material-ui-icons/lib/LeaderboardOutlined.js index 20ea07f8151ea6..e9a1a3ae29f870 100644 --- a/packages/material-ui-icons/lib/LeaderboardOutlined.js +++ b/packages/material-ui-icons/lib/LeaderboardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11V3H8v6H2v12h20V11h-6zm-6-6h4v14h-4V5zm-6 6h4v8H4v-8zm16 8h-4v-6h4v6z" -}), 'LeaderboardOutlined'); \ No newline at end of file +}), 'LeaderboardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeaderboardRounded.js b/packages/material-ui-icons/lib/LeaderboardRounded.js index 870215f6c4eabc..d353c6d31d86bc 100644 --- a/packages/material-ui-icons/lib/LeaderboardRounded.js +++ b/packages/material-ui-icons/lib/LeaderboardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 21H3c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm7.25-18h-3.5c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h3.5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM21 11h-3.5c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1H21c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1z" -}), 'LeaderboardRounded'); \ No newline at end of file +}), 'LeaderboardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeaderboardSharp.js b/packages/material-ui-icons/lib/LeaderboardSharp.js index 925e89f569dabf..e6a851da074002 100644 --- a/packages/material-ui-icons/lib/LeaderboardSharp.js +++ b/packages/material-ui-icons/lib/LeaderboardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 21H2V9h5.5v12zm7.25-18h-5.5v18h5.5V3zM22 11h-5.5v10H22V11z" -}), 'LeaderboardSharp'); \ No newline at end of file +}), 'LeaderboardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeaderboardTwoTone.js b/packages/material-ui-icons/lib/LeaderboardTwoTone.js index 33a6d68c640ea7..fe7ddfdc8e6c7a 100644 --- a/packages/material-ui-icons/lib/LeaderboardTwoTone.js +++ b/packages/material-ui-icons/lib/LeaderboardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5h4v14h-4V5zm-6 6h4v8H4v-8zm16 8h-4v-6h4v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11V3H8v6H2v12h20V11h-6zm-6-6h4v14h-4V5zm-6 6h4v8H4v-8zm16 8h-4v-6h4v6z" -}, "1")], 'LeaderboardTwoTone'); \ No newline at end of file +}, "1")], 'LeaderboardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakAdd.js b/packages/material-ui-icons/lib/LeakAdd.js index 2611111b70b702..9f2caef25f67ad 100644 --- a/packages/material-ui-icons/lib/LeakAdd.js +++ b/packages/material-ui-icons/lib/LeakAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" -}), 'LeakAdd'); \ No newline at end of file +}), 'LeakAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakAddOutlined.js b/packages/material-ui-icons/lib/LeakAddOutlined.js index 5fa5ad29cfaf4f..39221fc7300e76 100644 --- a/packages/material-ui-icons/lib/LeakAddOutlined.js +++ b/packages/material-ui-icons/lib/LeakAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" -}), 'LeakAddOutlined'); \ No newline at end of file +}), 'LeakAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakAddRounded.js b/packages/material-ui-icons/lib/LeakAddRounded.js index ffc15e3610d71c..2058532b906fcb 100644 --- a/packages/material-ui-icons/lib/LeakAddRounded.js +++ b/packages/material-ui-icons/lib/LeakAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.05 21c.5 0 .94-.37.99-.87.41-4.27 3.81-7.67 8.08-8.08.5-.05.88-.48.88-.99 0-.59-.51-1.06-1.1-1-5.19.52-9.32 4.65-9.84 9.83-.06.59.4 1.11.99 1.11zM18 21h3v-3c-1.66 0-3 1.34-3 3zm-2.91 0c.49 0 .9-.36.98-.85.36-2.08 2-3.72 4.08-4.08.49-.08.85-.49.85-.98 0-.61-.54-1.09-1.14-1-2.96.48-5.29 2.81-5.77 5.77-.1.6.39 1.14 1 1.14zM12.97 3.02c-.5 0-.94.37-.99.87-.41 4.27-3.81 7.67-8.08 8.08-.5.05-.88.48-.88.99 0 .59.51 1.06 1.1 1 5.19-.52 9.32-4.65 9.84-9.83.07-.58-.39-1.11-.99-1.11zm-6.94 0h-3v3c1.66 0 3-1.34 3-3zm2.91 0c-.49 0-.9.36-.98.85-.36 2.08-2 3.72-4.08 4.08-.49.09-.85.49-.85.99 0 .61.54 1.09 1.14 1 2.96-.48 5.29-2.81 5.77-5.77.09-.61-.4-1.15-1-1.15z" -}), 'LeakAddRounded'); \ No newline at end of file +}), 'LeakAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakAddSharp.js b/packages/material-ui-icons/lib/LeakAddSharp.js index d082789f4b523f..3cbdc985ec8f2e 100644 --- a/packages/material-ui-icons/lib/LeakAddSharp.js +++ b/packages/material-ui-icons/lib/LeakAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" -}), 'LeakAddSharp'); \ No newline at end of file +}), 'LeakAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakAddTwoTone.js b/packages/material-ui-icons/lib/LeakAddTwoTone.js index 20191197454c57..d76fd3e8f46de8 100644 --- a/packages/material-ui-icons/lib/LeakAddTwoTone.js +++ b/packages/material-ui-icons/lib/LeakAddTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 21h3v-3c-1.66 0-3 1.34-3 3zM3 14c6.08 0 11-4.93 11-11h-2c0 4.97-4.03 9-9 9v2zm11 7h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7zM3 10c3.87 0 7-3.13 7-7H8c0 2.76-2.24 5-5 5v2zm7 11h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zM3 3v3c1.66 0 3-1.34 3-3H3z" -}), 'LeakAddTwoTone'); \ No newline at end of file +}), 'LeakAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakRemove.js b/packages/material-ui-icons/lib/LeakRemove.js index d6ce1494698f0d..1188cf0158811d 100644 --- a/packages/material-ui-icons/lib/LeakRemove.js +++ b/packages/material-ui-icons/lib/LeakRemove.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3zM3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.71 0 5.19-.99 7.11-2.62l2.5 2.5C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3 3 4.27zM14 3h-2c0 1.5-.37 2.91-1.02 4.16l1.46 1.46C13.42 6.98 14 5.06 14 3zm5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.52l1.6 1.6zm-4.56-4.56 1.46 1.46C18.09 12.37 19.5 12 21 12v-2c-2.06 0-3.98.58-5.62 1.56z" -}), 'LeakRemove'); \ No newline at end of file +}), 'LeakRemove'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakRemoveOutlined.js b/packages/material-ui-icons/lib/LeakRemoveOutlined.js index 151aa441473f3d..aea80c3ae2cd0d 100644 --- a/packages/material-ui-icons/lib/LeakRemoveOutlined.js +++ b/packages/material-ui-icons/lib/LeakRemoveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" -}), 'LeakRemoveOutlined'); \ No newline at end of file +}), 'LeakRemoveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakRemoveRounded.js b/packages/material-ui-icons/lib/LeakRemoveRounded.js index acba7541dfebf4..5905dea23ef1d0 100644 --- a/packages/material-ui-icons/lib/LeakRemoveRounded.js +++ b/packages/material-ui-icons/lib/LeakRemoveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.12 12.04c.5-.05.88-.48.88-.99 0-.59-.51-1.06-1.1-1-1.5.15-2.9.61-4.16 1.3l1.48 1.48c.9-.41 1.87-.69 2.9-.79zm.88 3.05c0-.61-.54-1.09-1.14-1-.38.06-.75.16-1.11.28l1.62 1.62c.37-.15.63-.49.63-.9zM13.97 4.14c.06-.59-.4-1.11-1-1.11-.5 0-.94.37-.99.87-.1 1.03-.38 2.01-.79 2.91l1.48 1.48c.69-1.26 1.15-2.66 1.3-4.15zm-4.04.02c.1-.6-.39-1.14-1-1.14-.41 0-.75.26-.9.62l1.62 1.62c.13-.35.22-.72.28-1.1zm10.51 14.72L5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.15 2.15c-.59.41-1.26.7-1.99.82-.48.1-.84.5-.84 1 0 .61.54 1.09 1.14 1 1.17-.19 2.23-.68 3.13-1.37L8.73 10c-1.34 1.1-3 1.82-4.81 1.99-.5.05-.88.48-.88.99 0 .59.51 1.06 1.1 1 2.28-.23 4.36-1.15 6.01-2.56l2.48 2.48c-1.4 1.65-2.33 3.72-2.56 6-.06.59.4 1.11 1 1.11.5 0 .94-.37.99-.87.18-1.82.9-3.48 1.99-4.82l1.43 1.43c-.69.9-1.18 1.96-1.37 3.13-.1.6.39 1.14 1 1.14.49 0 .9-.36.98-.85.12-.73.42-1.4.82-1.99l2.13 2.13c.39.39 1.02.39 1.41 0 .38-.41.38-1.04-.01-1.43z" -}), 'LeakRemoveRounded'); \ No newline at end of file +}), 'LeakRemoveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakRemoveSharp.js b/packages/material-ui-icons/lib/LeakRemoveSharp.js index 357a8adf702c08..2c2f026fda6e57 100644 --- a/packages/material-ui-icons/lib/LeakRemoveSharp.js +++ b/packages/material-ui-icons/lib/LeakRemoveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" -}), 'LeakRemoveSharp'); \ No newline at end of file +}), 'LeakRemoveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LeakRemoveTwoTone.js b/packages/material-ui-icons/lib/LeakRemoveTwoTone.js index 666af8a4dbba52..cf5d97a715ff2d 100644 --- a/packages/material-ui-icons/lib/LeakRemoveTwoTone.js +++ b/packages/material-ui-icons/lib/LeakRemoveTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" -}), 'LeakRemoveTwoTone'); \ No newline at end of file +}), 'LeakRemoveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LegendToggle.js b/packages/material-ui-icons/lib/LegendToggle.js index c51d6a531918e3..39c101fd03427a 100644 --- a/packages/material-ui-icons/lib/LegendToggle.js +++ b/packages/material-ui-icons/lib/LegendToggle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" -}), 'LegendToggle'); \ No newline at end of file +}), 'LegendToggle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LegendToggleOutlined.js b/packages/material-ui-icons/lib/LegendToggleOutlined.js index 346c525305f210..07a0198fd14032 100644 --- a/packages/material-ui-icons/lib/LegendToggleOutlined.js +++ b/packages/material-ui-icons/lib/LegendToggleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" -}), 'LegendToggleOutlined'); \ No newline at end of file +}), 'LegendToggleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LegendToggleRounded.js b/packages/material-ui-icons/lib/LegendToggleRounded.js index 8d278e674010eb..6b7cb65a98ffb5 100644 --- a/packages/material-ui-icons/lib/LegendToggleRounded.js +++ b/packages/material-ui-icons/lib/LegendToggleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 15H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1zm0 2H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-4-6 4.58-3.25c.26-.19.42-.49.42-.81 0-.81-.92-1.29-1.58-.82L15 8.55 10 5 4.48 8.36c-.3.19-.48.51-.48.86 0 .78.85 1.26 1.52.85l4.4-2.68L15 11z" -}), 'LegendToggleRounded'); \ No newline at end of file +}), 'LegendToggleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LegendToggleSharp.js b/packages/material-ui-icons/lib/LegendToggleSharp.js index 748a4c79c51a29..bca713ac84d642 100644 --- a/packages/material-ui-icons/lib/LegendToggleSharp.js +++ b/packages/material-ui-icons/lib/LegendToggleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" -}), 'LegendToggleSharp'); \ No newline at end of file +}), 'LegendToggleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LegendToggleTwoTone.js b/packages/material-ui-icons/lib/LegendToggleTwoTone.js index b5fb5bfd82238c..3360ec9fbce92c 100644 --- a/packages/material-ui-icons/lib/LegendToggleTwoTone.js +++ b/packages/material-ui-icons/lib/LegendToggleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" -}), 'LegendToggleTwoTone'); \ No newline at end of file +}), 'LegendToggleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Lens.js b/packages/material-ui-icons/lib/Lens.js index 766d7f5bf9dd9b..359301130388ff 100644 --- a/packages/material-ui-icons/lib/Lens.js +++ b/packages/material-ui-icons/lib/Lens.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'Lens'); \ No newline at end of file +}), 'Lens'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensBlur.js b/packages/material-ui-icons/lib/LensBlur.js index ae475d9a58bcfd..1c952756a90a63 100644 --- a/packages/material-ui-icons/lib/LensBlur.js +++ b/packages/material-ui-icons/lib/LensBlur.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'LensBlur'); \ No newline at end of file +}), 'LensBlur'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensBlurOutlined.js b/packages/material-ui-icons/lib/LensBlurOutlined.js index 68b8d87fcc7e6e..843c253c6aa8aa 100644 --- a/packages/material-ui-icons/lib/LensBlurOutlined.js +++ b/packages/material-ui-icons/lib/LensBlurOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'LensBlurOutlined'); \ No newline at end of file +}), 'LensBlurOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensBlurRounded.js b/packages/material-ui-icons/lib/LensBlurRounded.js index 0e90bc3f4b8709..1f63847c6c9563 100644 --- a/packages/material-ui-icons/lib/LensBlurRounded.js +++ b/packages/material-ui-icons/lib/LensBlurRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'LensBlurRounded'); \ No newline at end of file +}), 'LensBlurRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensBlurSharp.js b/packages/material-ui-icons/lib/LensBlurSharp.js index 7107408c68e4dd..d9018a691c6b1f 100644 --- a/packages/material-ui-icons/lib/LensBlurSharp.js +++ b/packages/material-ui-icons/lib/LensBlurSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'LensBlurSharp'); \ No newline at end of file +}), 'LensBlurSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensBlurTwoTone.js b/packages/material-ui-icons/lib/LensBlurTwoTone.js index eebb5a3e462d27..35c5a428b680fb 100644 --- a/packages/material-ui-icons/lib/LensBlurTwoTone.js +++ b/packages/material-ui-icons/lib/LensBlurTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'LensBlurTwoTone'); \ No newline at end of file +}), 'LensBlurTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensOutlined.js b/packages/material-ui-icons/lib/LensOutlined.js index 57e66d92da4981..c5b2dd0ef39db9 100644 --- a/packages/material-ui-icons/lib/LensOutlined.js +++ b/packages/material-ui-icons/lib/LensOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'LensOutlined'); \ No newline at end of file +}), 'LensOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensRounded.js b/packages/material-ui-icons/lib/LensRounded.js index 5002939050a371..d75d09dc895d1d 100644 --- a/packages/material-ui-icons/lib/LensRounded.js +++ b/packages/material-ui-icons/lib/LensRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'LensRounded'); \ No newline at end of file +}), 'LensRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensSharp.js b/packages/material-ui-icons/lib/LensSharp.js index 54c4021fd05cfe..c88c84d7d06d72 100644 --- a/packages/material-ui-icons/lib/LensSharp.js +++ b/packages/material-ui-icons/lib/LensSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'LensSharp'); \ No newline at end of file +}), 'LensSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LensTwoTone.js b/packages/material-ui-icons/lib/LensTwoTone.js index ae8df82e16c8e0..e0de58ebf775c0 100644 --- a/packages/material-ui-icons/lib/LensTwoTone.js +++ b/packages/material-ui-icons/lib/LensTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'LensTwoTone'); \ No newline at end of file +}, "1")], 'LensTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAdd.js b/packages/material-ui-icons/lib/LibraryAdd.js index 02d187de2f8fbd..931a7b2671abc4 100644 --- a/packages/material-ui-icons/lib/LibraryAdd.js +++ b/packages/material-ui-icons/lib/LibraryAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" -}), 'LibraryAdd'); \ No newline at end of file +}), 'LibraryAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddCheck.js b/packages/material-ui-icons/lib/LibraryAddCheck.js index b940df62fb43bf..c2e30550c6ff6e 100644 --- a/packages/material-ui-icons/lib/LibraryAddCheck.js +++ b/packages/material-ui-icons/lib/LibraryAddCheck.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" -}), 'LibraryAddCheck'); \ No newline at end of file +}), 'LibraryAddCheck'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddCheckOutlined.js b/packages/material-ui-icons/lib/LibraryAddCheckOutlined.js index 0b0390da57ce14..c019f51ba41fc4 100644 --- a/packages/material-ui-icons/lib/LibraryAddCheckOutlined.js +++ b/packages/material-ui-icons/lib/LibraryAddCheckOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" -}), 'LibraryAddCheckOutlined'); \ No newline at end of file +}), 'LibraryAddCheckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddCheckRounded.js b/packages/material-ui-icons/lib/LibraryAddCheckRounded.js index ab797ab67ba536..e18d04eb6ab328 100644 --- a/packages/material-ui-icons/lib/LibraryAddCheckRounded.js +++ b/packages/material-ui-icons/lib/LibraryAddCheckRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.24 11.28L9.69 11.2c-.38-.39-.38-1.01 0-1.4.39-.39 1.02-.39 1.41 0l1.36 1.37 4.42-4.46c.39-.39 1.02-.39 1.41 0 .38.39.38 1.01 0 1.4l-5.13 5.17c-.37.4-1.01.4-1.4 0zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1z" -}), 'LibraryAddCheckRounded'); \ No newline at end of file +}), 'LibraryAddCheckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddCheckSharp.js b/packages/material-ui-icons/lib/LibraryAddCheckSharp.js index 0441270b9e6c2f..6624197350a8e0 100644 --- a/packages/material-ui-icons/lib/LibraryAddCheckSharp.js +++ b/packages/material-ui-icons/lib/LibraryAddCheckSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H6v16h16V2zm-9.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v16h16v-2H4V6z" -}), 'LibraryAddCheckSharp'); \ No newline at end of file +}), 'LibraryAddCheckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddCheckTwoTone.js b/packages/material-ui-icons/lib/LibraryAddCheckTwoTone.js index 85d3ed2110373e..8c407abda1769d 100644 --- a/packages/material-ui-icons/lib/LibraryAddCheckTwoTone.js +++ b/packages/material-ui-icons/lib/LibraryAddCheckTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm2.4-6.91 2.07 2.08L17.6 6 19 7.41 12.47 14 9 10.5l1.4-1.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.53-2L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 20h14v2H4c-1.1 0-2-.9-2-2V6h2v14z" -}, "1")], 'LibraryAddCheckTwoTone'); \ No newline at end of file +}, "1")], 'LibraryAddCheckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddOutlined.js b/packages/material-ui-icons/lib/LibraryAddOutlined.js index eb2e37195f00dc..f8acda57496d52 100644 --- a/packages/material-ui-icons/lib/LibraryAddOutlined.js +++ b/packages/material-ui-icons/lib/LibraryAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z" -}), 'LibraryAddOutlined'); \ No newline at end of file +}), 'LibraryAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddRounded.js b/packages/material-ui-icons/lib/LibraryAddRounded.js index c19bea465c43c4..6477c111261a7f 100644 --- a/packages/material-ui-icons/lib/LibraryAddRounded.js +++ b/packages/material-ui-icons/lib/LibraryAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'LibraryAddRounded'); \ No newline at end of file +}), 'LibraryAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddSharp.js b/packages/material-ui-icons/lib/LibraryAddSharp.js index b6452eb0c794f8..1f577b960b4023 100644 --- a/packages/material-ui-icons/lib/LibraryAddSharp.js +++ b/packages/material-ui-icons/lib/LibraryAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" -}), 'LibraryAddSharp'); \ No newline at end of file +}), 'LibraryAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryAddTwoTone.js b/packages/material-ui-icons/lib/LibraryAddTwoTone.js index 472f28a0bbe839..c99814d0c20cd1 100644 --- a/packages/material-ui-icons/lib/LibraryAddTwoTone.js +++ b/packages/material-ui-icons/lib/LibraryAddTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm2-7h3V6h2v3h3v2h-3v3h-2v-3h-3V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z" -}, "1")], 'LibraryAddTwoTone'); \ No newline at end of file +}, "1")], 'LibraryAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryBooks.js b/packages/material-ui-icons/lib/LibraryBooks.js index c2bace0ea3bf40..6d56aa8e2ce060 100644 --- a/packages/material-ui-icons/lib/LibraryBooks.js +++ b/packages/material-ui-icons/lib/LibraryBooks.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z" -}), 'LibraryBooks'); \ No newline at end of file +}), 'LibraryBooks'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryBooksOutlined.js b/packages/material-ui-icons/lib/LibraryBooksOutlined.js index d8b90bffac7bfc..19754219a3ae84 100644 --- a/packages/material-ui-icons/lib/LibraryBooksOutlined.js +++ b/packages/material-ui-icons/lib/LibraryBooksOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z" -}), 'LibraryBooksOutlined'); \ No newline at end of file +}), 'LibraryBooksOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryBooksRounded.js b/packages/material-ui-icons/lib/LibraryBooksRounded.js index 57f3aa6610b0c7..db622b1e10d9d9 100644 --- a/packages/material-ui-icons/lib/LibraryBooksRounded.js +++ b/packages/material-ui-icons/lib/LibraryBooksRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-4 4h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm4-8h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'LibraryBooksRounded'); \ No newline at end of file +}), 'LibraryBooksRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryBooksSharp.js b/packages/material-ui-icons/lib/LibraryBooksSharp.js index 8a0973bc2730a7..74e819b63e6ff7 100644 --- a/packages/material-ui-icons/lib/LibraryBooksSharp.js +++ b/packages/material-ui-icons/lib/LibraryBooksSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z" -}), 'LibraryBooksSharp'); \ No newline at end of file +}), 'LibraryBooksSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryBooksTwoTone.js b/packages/material-ui-icons/lib/LibraryBooksTwoTone.js index 39e259374c186a..3fd06bb235ad65 100644 --- a/packages/material-ui-icons/lib/LibraryBooksTwoTone.js +++ b/packages/material-ui-icons/lib/LibraryBooksTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm2-10h8v2h-8V6zm0 3h8v2h-8V9zm0 3h4v2h-4v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM6 4v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm14 12H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z" -}, "1")], 'LibraryBooksTwoTone'); \ No newline at end of file +}, "1")], 'LibraryBooksTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryMusic.js b/packages/material-ui-icons/lib/LibraryMusic.js index 422d22a4e011a6..3d631229888227 100644 --- a/packages/material-ui-icons/lib/LibraryMusic.js +++ b/packages/material-ui-icons/lib/LibraryMusic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" -}), 'LibraryMusic'); \ No newline at end of file +}), 'LibraryMusic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryMusicOutlined.js b/packages/material-ui-icons/lib/LibraryMusicOutlined.js index 75174b6daab14b..44fed892ce9830 100644 --- a/packages/material-ui-icons/lib/LibraryMusicOutlined.js +++ b/packages/material-ui-icons/lib/LibraryMusicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" -}), 'LibraryMusicOutlined'); \ No newline at end of file +}), 'LibraryMusicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryMusicRounded.js b/packages/material-ui-icons/lib/LibraryMusicRounded.js index 7a82a64fac634e..3bda9085706a1c 100644 --- a/packages/material-ui-icons/lib/LibraryMusicRounded.js +++ b/packages/material-ui-icons/lib/LibraryMusicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 5h-2v5.37c0 1.27-.9 2.44-2.16 2.6-1.69.23-3.11-1.25-2.8-2.95.2-1.1 1.18-1.95 2.3-2.02.63-.04 1.2.16 1.66.51V6c0-.55.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1z" -}), 'LibraryMusicRounded'); \ No newline at end of file +}), 'LibraryMusicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryMusicSharp.js b/packages/material-ui-icons/lib/LibraryMusicSharp.js index dbecbdc50f0600..e853ee3e17c2c6 100644 --- a/packages/material-ui-icons/lib/LibraryMusicSharp.js +++ b/packages/material-ui-icons/lib/LibraryMusicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H6v16h16V2zm-4 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v16h16v-2H4V6z" -}), 'LibraryMusicSharp'); \ No newline at end of file +}), 'LibraryMusicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LibraryMusicTwoTone.js b/packages/material-ui-icons/lib/LibraryMusicTwoTone.js index cb409687372b09..4faa6e18b5580d 100644 --- a/packages/material-ui-icons/lib/LibraryMusicTwoTone.js +++ b/packages/material-ui-icons/lib/LibraryMusicTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm4.5-6c.57 0 1.08.19 1.5.51V5h4v2h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" -}, "1")], 'LibraryMusicTwoTone'); \ No newline at end of file +}, "1")], 'LibraryMusicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Light.js b/packages/material-ui-icons/lib/Light.js index e085d3f7c3e391..9e494b095277eb 100644 --- a/packages/material-ui-icons/lib/Light.js +++ b/packages/material-ui-icons/lib/Light.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.06V3h-2v3.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" -}), 'Light'); \ No newline at end of file +}), 'Light'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightMode.js b/packages/material-ui-icons/lib/LightMode.js index 2a074c03c58e38..83aa94bcc6caa7 100644 --- a/packages/material-ui-icons/lib/LightMode.js +++ b/packages/material-ui-icons/lib/LightMode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" -}), 'LightMode'); \ No newline at end of file +}), 'LightMode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightModeOutlined.js b/packages/material-ui-icons/lib/LightModeOutlined.js index e5d751e514db00..b95468feb7159b 100644 --- a/packages/material-ui-icons/lib/LightModeOutlined.js +++ b/packages/material-ui-icons/lib/LightModeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" -}), 'LightModeOutlined'); \ No newline at end of file +}), 'LightModeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightModeRounded.js b/packages/material-ui-icons/lib/LightModeRounded.js index aa056dabb61acd..481f652ccba395 100644 --- a/packages/material-ui-icons/lib/LightModeRounded.js +++ b/packages/material-ui-icons/lib/LightModeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" -}), 'LightModeRounded'); \ No newline at end of file +}), 'LightModeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightModeSharp.js b/packages/material-ui-icons/lib/LightModeSharp.js index a52dcab025e5be..0360ea03cc7d10 100644 --- a/packages/material-ui-icons/lib/LightModeSharp.js +++ b/packages/material-ui-icons/lib/LightModeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1-6v4h2V1h-2zm0 18v4h2v-4h-2zm12-8h-4v2h4v-2zM5 11H1v2h4v-2zm11.24 6.66 2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zM3.87 5.28l2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zm2.47 10.96-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41zM18.72 3.87l-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41z" -}), 'LightModeSharp'); \ No newline at end of file +}), 'LightModeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightModeTwoTone.js b/packages/material-ui-icons/lib/LightModeTwoTone.js index 74ad0ee7967601..b116f61ce4c683 100644 --- a/packages/material-ui-icons/lib/LightModeTwoTone.js +++ b/packages/material-ui-icons/lib/LightModeTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" -}, "1")], 'LightModeTwoTone'); \ No newline at end of file +}, "1")], 'LightModeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightOutlined.js b/packages/material-ui-icons/lib/LightOutlined.js index def15d55bcaf4e..114ac241074e64 100644 --- a/packages/material-ui-icons/lib/LightOutlined.js +++ b/packages/material-ui-icons/lib/LightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.06V3h-2v3.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 19c-1.1 0-2-.9-2-2h4c0 1.1-.9 2-2 2zm0-4H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" -}), 'LightOutlined'); \ No newline at end of file +}), 'LightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightRounded.js b/packages/material-ui-icons/lib/LightRounded.js index bcc5a61ad1222c..db06f1bb164963 100644 --- a/packages/material-ui-icons/lib/LightRounded.js +++ b/packages/material-ui-icons/lib/LightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.06V4c0-.55-.45-1-1-1s-1 .45-1 1v2.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" -}), 'LightRounded'); \ No newline at end of file +}), 'LightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightSharp.js b/packages/material-ui-icons/lib/LightSharp.js index 37d8d5b654fada..64b0736b75ca22 100644 --- a/packages/material-ui-icons/lib/LightSharp.js +++ b/packages/material-ui-icons/lib/LightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.06V3h-2v3.06C5.87 6.63 2.03 11.51 3.22 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h4.78A9.0056 9.0056 0 0 0 13 6.06zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" -}), 'LightSharp'); \ No newline at end of file +}), 'LightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightTwoTone.js b/packages/material-ui-icons/lib/LightTwoTone.js index 0b2826837709d2..7b22f19d44f4fa 100644 --- a/packages/material-ui-icons/lib/LightTwoTone.js +++ b/packages/material-ui-icons/lib/LightTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 17c0 1.1.9 2 2 2s2-.9 2-2h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6.06V3h-2v3.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 19c-1.1 0-2-.9-2-2h4c0 1.1-.9 2-2 2zm0-4H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" -}, "1")], 'LightTwoTone'); \ No newline at end of file +}, "1")], 'LightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Lightbulb.js b/packages/material-ui-icons/lib/Lightbulb.js index 3debb72f533fa1..68011632d897bc 100644 --- a/packages/material-ui-icons/lib/Lightbulb.js +++ b/packages/material-ui-icons/lib/Lightbulb.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7z" -}), 'Lightbulb'); \ No newline at end of file +}), 'Lightbulb'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightbulbOutlined.js b/packages/material-ui-icons/lib/LightbulbOutlined.js index a684dd84bcc2fe..d429c1142dd745 100644 --- a/packages/material-ui-icons/lib/LightbulbOutlined.js +++ b/packages/material-ui-icons/lib/LightbulbOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z" -}), 'LightbulbOutlined'); \ No newline at end of file +}), 'LightbulbOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightbulbRounded.js b/packages/material-ui-icons/lib/LightbulbRounded.js index 1ff4a73b0f1b5b..f529e85a9e0843 100644 --- a/packages/material-ui-icons/lib/LightbulbRounded.js +++ b/packages/material-ui-icons/lib/LightbulbRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm-3-3h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm3-17C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2z" -}), 'LightbulbRounded'); \ No newline at end of file +}), 'LightbulbRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightbulbSharp.js b/packages/material-ui-icons/lib/LightbulbSharp.js index 501b312f3e7e9a..53501a67cc8bcc 100644 --- a/packages/material-ui-icons/lib/LightbulbSharp.js +++ b/packages/material-ui-icons/lib/LightbulbSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm-4-5h8v2H8zm4-15C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2z" -}), 'LightbulbSharp'); \ No newline at end of file +}), 'LightbulbSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LightbulbTwoTone.js b/packages/material-ui-icons/lib/LightbulbTwoTone.js index 1404d7ff4a5005..a0e4d41721faf3 100644 --- a/packages/material-ui-icons/lib/LightbulbTwoTone.js +++ b/packages/material-ui-icons/lib/LightbulbTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C8.97 4 6.5 6.47 6.5 9.5c0 2.47 1.49 3.89 2.35 4.5h6.3c.86-.61 2.35-2.03 2.35-4.5C17.5 6.47 15.03 4 12 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm-4-5h8v2H8zm4-15C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2zm3.15 12h-6.3c-.86-.61-2.35-2.03-2.35-4.5C6.5 6.47 8.97 4 12 4s5.5 2.47 5.5 5.5c0 2.47-1.49 3.89-2.35 4.5z" -}, "1")], 'LightbulbTwoTone'); \ No newline at end of file +}, "1")], 'LightbulbTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineStyle.js b/packages/material-ui-icons/lib/LineStyle.js index ae228cbce00c56..55cc8417babc2e 100644 --- a/packages/material-ui-icons/lib/LineStyle.js +++ b/packages/material-ui-icons/lib/LineStyle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" -}), 'LineStyle'); \ No newline at end of file +}), 'LineStyle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineStyleOutlined.js b/packages/material-ui-icons/lib/LineStyleOutlined.js index 353a08754a4dff..5785f47885854a 100644 --- a/packages/material-ui-icons/lib/LineStyleOutlined.js +++ b/packages/material-ui-icons/lib/LineStyleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" -}), 'LineStyleOutlined'); \ No newline at end of file +}), 'LineStyleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineStyleRounded.js b/packages/material-ui-icons/lib/LineStyleRounded.js index 6302a7f1fc7995..b4277be93fa7cf 100644 --- a/packages/material-ui-icons/lib/LineStyleRounded.js +++ b/packages/material-ui-icons/lib/LineStyleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6.5 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm6.5 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zM4 20c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4 12h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm10 0h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zM3 5v2c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'LineStyleRounded'); \ No newline at end of file +}), 'LineStyleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineStyleSharp.js b/packages/material-ui-icons/lib/LineStyleSharp.js index ea242d7500ded3..655938b45edb65 100644 --- a/packages/material-ui-icons/lib/LineStyleSharp.js +++ b/packages/material-ui-icons/lib/LineStyleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" -}), 'LineStyleSharp'); \ No newline at end of file +}), 'LineStyleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineStyleTwoTone.js b/packages/material-ui-icons/lib/LineStyleTwoTone.js index d6a7b126812156..b75d0e80cc0090 100644 --- a/packages/material-ui-icons/lib/LineStyleTwoTone.js +++ b/packages/material-ui-icons/lib/LineStyleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" -}), 'LineStyleTwoTone'); \ No newline at end of file +}), 'LineStyleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineWeight.js b/packages/material-ui-icons/lib/LineWeight.js index 94284515db227f..de6b46f3587643 100644 --- a/packages/material-ui-icons/lib/LineWeight.js +++ b/packages/material-ui-icons/lib/LineWeight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" -}), 'LineWeight'); \ No newline at end of file +}), 'LineWeight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineWeightOutlined.js b/packages/material-ui-icons/lib/LineWeightOutlined.js index cc65d22fd8173f..ea1cbbbecbb844 100644 --- a/packages/material-ui-icons/lib/LineWeightOutlined.js +++ b/packages/material-ui-icons/lib/LineWeightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" -}), 'LineWeightOutlined'); \ No newline at end of file +}), 'LineWeightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineWeightRounded.js b/packages/material-ui-icons/lib/LineWeightRounded.js index 2c145f7537b792..3061a67a7ce1d0 100644 --- a/packages/material-ui-icons/lib/LineWeightRounded.js +++ b/packages/material-ui-icons/lib/LineWeightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0-6H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm.5 15h-17c-.28 0-.5.22-.5.5s.22.5.5.5h17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z" -}), 'LineWeightRounded'); \ No newline at end of file +}), 'LineWeightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineWeightSharp.js b/packages/material-ui-icons/lib/LineWeightSharp.js index 019f86ad037f46..e149765589d903 100644 --- a/packages/material-ui-icons/lib/LineWeightSharp.js +++ b/packages/material-ui-icons/lib/LineWeightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" -}), 'LineWeightSharp'); \ No newline at end of file +}), 'LineWeightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LineWeightTwoTone.js b/packages/material-ui-icons/lib/LineWeightTwoTone.js index 6e0818327bf367..c8c5069eec2304 100644 --- a/packages/material-ui-icons/lib/LineWeightTwoTone.js +++ b/packages/material-ui-icons/lib/LineWeightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" -}), 'LineWeightTwoTone'); \ No newline at end of file +}), 'LineWeightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinearScale.js b/packages/material-ui-icons/lib/LinearScale.js index 14de70cedd0463..10517dc5292c94 100644 --- a/packages/material-ui-icons/lib/LinearScale.js +++ b/packages/material-ui-icons/lib/LinearScale.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" -}), 'LinearScale'); \ No newline at end of file +}), 'LinearScale'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinearScaleOutlined.js b/packages/material-ui-icons/lib/LinearScaleOutlined.js index 56cbd308c7db56..7e5a6fd1247921 100644 --- a/packages/material-ui-icons/lib/LinearScaleOutlined.js +++ b/packages/material-ui-icons/lib/LinearScaleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" -}), 'LinearScaleOutlined'); \ No newline at end of file +}), 'LinearScaleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinearScaleRounded.js b/packages/material-ui-icons/lib/LinearScaleRounded.js index 64b24626913417..df2d03328884d4 100644 --- a/packages/material-ui-icons/lib/LinearScaleRounded.js +++ b/packages/material-ui-icons/lib/LinearScaleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7c-2.41 0-4.43 1.72-4.9 4H6.79c-.39-.88-1.27-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.02 0 1.9-.62 2.29-1.5h5.31c.46 2.28 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}), 'LinearScaleRounded'); \ No newline at end of file +}), 'LinearScaleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinearScaleSharp.js b/packages/material-ui-icons/lib/LinearScaleSharp.js index 688ee7a1fe8b06..e218441a620f08 100644 --- a/packages/material-ui-icons/lib/LinearScaleSharp.js +++ b/packages/material-ui-icons/lib/LinearScaleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" -}), 'LinearScaleSharp'); \ No newline at end of file +}), 'LinearScaleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinearScaleTwoTone.js b/packages/material-ui-icons/lib/LinearScaleTwoTone.js index 7cfd77ea58cfad..3b97f529783cb9 100644 --- a/packages/material-ui-icons/lib/LinearScaleTwoTone.js +++ b/packages/material-ui-icons/lib/LinearScaleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" -}), 'LinearScaleTwoTone'); \ No newline at end of file +}), 'LinearScaleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Link.js b/packages/material-ui-icons/lib/Link.js index d64a3d22c4945e..54e1ba107991cb 100644 --- a/packages/material-ui-icons/lib/Link.js +++ b/packages/material-ui-icons/lib/Link.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" -}), 'Link'); \ No newline at end of file +}), 'Link'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkOff.js b/packages/material-ui-icons/lib/LinkOff.js index 10babf9d9576f7..e6dd53419156bc 100644 --- a/packages/material-ui-icons/lib/LinkOff.js +++ b/packages/material-ui-icons/lib/LinkOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z" -}), 'LinkOff'); \ No newline at end of file +}), 'LinkOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkOffOutlined.js b/packages/material-ui-icons/lib/LinkOffOutlined.js index 1a9bb3868708cf..09e53db3f13fb8 100644 --- a/packages/material-ui-icons/lib/LinkOffOutlined.js +++ b/packages/material-ui-icons/lib/LinkOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.39 11 16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" -}), 'LinkOffOutlined'); \ No newline at end of file +}), 'LinkOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkOffRounded.js b/packages/material-ui-icons/lib/LinkOffRounded.js index 59cc11c379bcb5..700f74b3e0d350 100644 --- a/packages/material-ui-icons/lib/LinkOffRounded.js +++ b/packages/material-ui-icons/lib/LinkOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h2.87c1.46 0 2.8.98 3.08 2.42.31 1.64-.74 3.11-2.22 3.48l1.53 1.53c1.77-.91 2.95-2.82 2.7-5.01C21.68 8.86 19.37 7 16.79 7H14c-.55 0-1 .45-1 1s.45 1 1 1zM3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.64 2.64c-1.77.91-2.95 2.82-2.7 5.01C2.32 15.14 4.63 17 7.21 17H10c.55 0 1-.45 1-1s-.45-1-1-1H7.13c-1.46 0-2.8-.98-3.08-2.42-.31-1.64.75-3.11 2.22-3.48l2.12 2.12c-.23.19-.39.46-.39.78 0 .55.45 1 1 1h1.17l8.9 8.9c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51zM14 11l1.71 1.71c.18-.18.29-.43.29-.71 0-.55-.45-1-1-1h-1z" -}), 'LinkOffRounded'); \ No newline at end of file +}), 'LinkOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkOffSharp.js b/packages/material-ui-icons/lib/LinkOffSharp.js index 93f4b4eb9ac6af..8947ddecd63de1 100644 --- a/packages/material-ui-icons/lib/LinkOffSharp.js +++ b/packages/material-ui-icons/lib/LinkOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.39 11 16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" -}), 'LinkOffSharp'); \ No newline at end of file +}), 'LinkOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkOffTwoTone.js b/packages/material-ui-icons/lib/LinkOffTwoTone.js index 4edfb9f8c3c086..9e21d0458a028a 100644 --- a/packages/material-ui-icons/lib/LinkOffTwoTone.js +++ b/packages/material-ui-icons/lib/LinkOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.39 11 16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" -}), 'LinkOffTwoTone'); \ No newline at end of file +}), 'LinkOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkOutlined.js b/packages/material-ui-icons/lib/LinkOutlined.js index 128328adb53de1..c04d2e5bb2db82 100644 --- a/packages/material-ui-icons/lib/LinkOutlined.js +++ b/packages/material-ui-icons/lib/LinkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z" -}), 'LinkOutlined'); \ No newline at end of file +}), 'LinkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkRounded.js b/packages/material-ui-icons/lib/LinkRounded.js index 6ccef098b6e909..4e6080c8ed1c7f 100644 --- a/packages/material-ui-icons/lib/LinkRounded.js +++ b/packages/material-ui-icons/lib/LinkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.65 0 3 1.35 3 3s-1.35 3-3 3h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-9 5c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1zm2 3H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h3c.55 0 1-.45 1-1s-.45-1-1-1H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h3c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'LinkRounded'); \ No newline at end of file +}), 'LinkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkSharp.js b/packages/material-ui-icons/lib/LinkSharp.js index e5edbdcf491982..d06f263ae1b34f 100644 --- a/packages/material-ui-icons/lib/LinkSharp.js +++ b/packages/material-ui-icons/lib/LinkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8zm9-4h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z" -}), 'LinkSharp'); \ No newline at end of file +}), 'LinkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkTwoTone.js b/packages/material-ui-icons/lib/LinkTwoTone.js index 7161d42be2cc54..21f5d5346ce142 100644 --- a/packages/material-ui-icons/lib/LinkTwoTone.js +++ b/packages/material-ui-icons/lib/LinkTwoTone.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z", opacity: ".87" -}), 'LinkTwoTone'); \ No newline at end of file +}), 'LinkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkedCamera.js b/packages/material-ui-icons/lib/LinkedCamera.js index 4e1575b143f48f..0184d7a9e83696 100644 --- a/packages/material-ui-icons/lib/LinkedCamera.js +++ b/packages/material-ui-icons/lib/LinkedCamera.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "14", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3.33c2.58 0 4.67 2.09 4.67 4.67H22c0-3.31-2.69-6-6-6v1.33M16 6c1.11 0 2 .89 2 2h1.33c0-1.84-1.49-3.33-3.33-3.33V6" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 9c0-1.11-.89-2-2-2V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-5zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "2")], 'LinkedCamera'); \ No newline at end of file +}, "2")], 'LinkedCamera'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkedCameraOutlined.js b/packages/material-ui-icons/lib/LinkedCameraOutlined.js index 4969e6c4283dcd..2e6dedc3093729 100644 --- a/packages/material-ui-icons/lib/LinkedCameraOutlined.js +++ b/packages/material-ui-icons/lib/LinkedCameraOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2zm.67-1.01H22C21.99 4.68 19.31 2 16 2v1.33c2.58 0 4.66 2.08 4.67 4.66zm-2.67 0h1.33c-.01-1.84-1.49-3.32-3.33-3.32V6c1.11 0 1.99.89 2 1.99zM7 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.34 3 3z" -}), 'LinkedCameraOutlined'); \ No newline at end of file +}), 'LinkedCameraOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkedCameraRounded.js b/packages/material-ui-icons/lib/LinkedCameraRounded.js index 46a5c46ead8cab..c31f590b9c6ba2 100644 --- a/packages/material-ui-icons/lib/LinkedCameraRounded.js +++ b/packages/material-ui-icons/lib/LinkedCameraRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "13", r: "2.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.6 2.37c2.1.27 3.77 1.93 4.03 4.03.04.34.32.6.66.6.39 0 .71-.34.66-.73-.33-2.72-2.5-4.89-5.22-5.22-.39-.05-.73.27-.73.66 0 .34.26.62.6.66zm2.63 3.82a3.338 3.338 0 0 0-2.42-2.42c-.41-.1-.81.22-.81.65 0 .29.19.57.48.64.72.18 1.29.74 1.46 1.46.07.29.34.48.64.48.43 0 .75-.4.65-.81z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8c0-1.1-.9-2-2-2V4c0-.55-.45-1-1-1H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2h-3zm-5 9.5c-2.48 0-4.5-2.02-4.5-4.5S9.52 8.5 12 8.5s4.5 2.02 4.5 4.5-2.02 4.5-4.5 4.5z" -}, "2")], 'LinkedCameraRounded'); \ No newline at end of file +}, "2")], 'LinkedCameraRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkedCameraSharp.js b/packages/material-ui-icons/lib/LinkedCameraSharp.js index 3ab1b923c9995c..2ba7d576bbd485 100644 --- a/packages/material-ui-icons/lib/LinkedCameraSharp.js +++ b/packages/material-ui-icons/lib/LinkedCameraSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "14", r: "3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h1.33c0-1.84-1.49-3.33-3.33-3.33V6c1.11 0 2 .89 2 2zm2.67 0H22c0-3.31-2.69-6-6-6v1.33c2.58 0 4.67 2.09 4.67 4.67zM15 7V4H9L7.17 6H2v16h20V9h-5c0-1.1-.9-2-2-2zm-3 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'LinkedCameraSharp'); \ No newline at end of file +}, "1")], 'LinkedCameraSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkedCameraTwoTone.js b/packages/material-ui-icons/lib/LinkedCameraTwoTone.js index 9bdc8c4079fefd..e8cb79b66b7e67 100644 --- a/packages/material-ui-icons/lib/LinkedCameraTwoTone.js +++ b/packages/material-ui-icons/lib/LinkedCameraTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 20H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2v11zM16 2v1.33c2.58 0 4.66 2.09 4.67 4.66H22C21.99 4.68 19.31 2 16 2zm0 2.67V6c1.11 0 1.99.89 2 1.99h1.33c-.01-1.84-1.49-3.32-3.33-3.32z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.98 10.01c-.13-.09-.26-.18-.39-.26.14.08.27.17.39.26zM17 9c0-.37-.11-.71-.28-1.01-.18-.3-.43-.55-.73-.72C15.7 7.1 15.36 7 15 7V6H9.88L8.05 8H4v12h16V9h-3zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}, "2")], 'LinkedCameraTwoTone'); \ No newline at end of file +}, "2")], 'LinkedCameraTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LinkedIn.js b/packages/material-ui-icons/lib/LinkedIn.js index c161c3ea062e8f..549e9fab68af3b 100644 --- a/packages/material-ui-icons/lib/LinkedIn.js +++ b/packages/material-ui-icons/lib/LinkedIn.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z" -}), 'LinkedIn'); \ No newline at end of file +}), 'LinkedIn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Liquor.js b/packages/material-ui-icons/lib/Liquor.js index b4c7d695b0ac83..aaee96afeb0d9c 100644 --- a/packages/material-ui-icons/lib/Liquor.js +++ b/packages/material-ui-icons/lib/Liquor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm15.63.54-.95-.32c-.4-.13-.68-.51-.68-.94V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.28.81-.68.95l-.95.32c-.82.27-1.37 1.03-1.37 1.89V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.37-1.9zM16 4h1v1h-1V4zm-3 6.44.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12h-7v-1.56zM20 20h-7v-2h7v2z" -}), 'Liquor'); \ No newline at end of file +}), 'Liquor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiquorOutlined.js b/packages/material-ui-icons/lib/LiquorOutlined.js index 97cabf515b44d5..d9cfad27bea7a8 100644 --- a/packages/material-ui-icons/lib/LiquorOutlined.js +++ b/packages/material-ui-icons/lib/LiquorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm0 5h2v1c0 .55-.45 1-1 1s-1-.45-1-1v-1zm15.64-4.46-.96-.32c-.41-.14-.68-.52-.68-.95V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.27.81-.68.95l-.96.32c-.81.28-1.36 1.04-1.36 1.9V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.36-1.9zM16 4h1v1h-1V4zm4 16h-7v-2h7v2zm0-4h-7v-2h7v2zm0-4h-7v-1.56l.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12z" -}), 'LiquorOutlined'); \ No newline at end of file +}), 'LiquorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiquorRounded.js b/packages/material-ui-icons/lib/LiquorRounded.js index 2f1347fb1ee012..206fdf7de024c5 100644 --- a/packages/material-ui-icons/lib/LiquorRounded.js +++ b/packages/material-ui-icons/lib/LiquorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14c0 1.3.84 2.4 2 2.82V20H4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H7v-3.18C8.16 16.4 9 15.3 9 14V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v7zm2-6h2v3H5V8zm15.64.54-.96-.32c-.41-.14-.68-.52-.68-.95V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.27.81-.68.95l-.96.32c-.81.28-1.36 1.04-1.36 1.9V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.36-1.9zM16 4h1v1h-1V4zm-3 6.44.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12h-7v-1.56zM20 20h-7v-2h7v2z" -}), 'LiquorRounded'); \ No newline at end of file +}), 'LiquorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiquorSharp.js b/packages/material-ui-icons/lib/LiquorSharp.js index d723c6bfcc9bfd..a80cba063c7286 100644 --- a/packages/material-ui-icons/lib/LiquorSharp.js +++ b/packages/material-ui-icons/lib/LiquorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm17 1-3-1.01V2h-5v6l-3 1.01V22h11V9zm-6-5h1v1h-1V4zm-3 6.44 3-.98V7h1v2.46l3 .98V12h-7v-1.56zM20 20h-7v-2h7v2z" -}), 'LiquorSharp'); \ No newline at end of file +}), 'LiquorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiquorTwoTone.js b/packages/material-ui-icons/lib/LiquorTwoTone.js index 9b3ad4f60fe1e8..5876366955cf6c 100644 --- a/packages/material-ui-icons/lib/LiquorTwoTone.js +++ b/packages/material-ui-icons/lib/LiquorTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4h1v1h-1zM6 15c.55 0 1-.45 1-1v-1H5v1c0 .55.45 1 1 1zm7-1h7v2h-7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm0 5h2v1c0 .55-.45 1-1 1s-1-.45-1-1v-1zm15.64-4.46-.96-.32c-.41-.14-.68-.52-.68-.95V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.27.81-.68.95l-.96.32c-.81.28-1.36 1.04-1.36 1.9V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.36-1.9zM16 4h1v1h-1V4zm4 16h-7v-2h7v2zm0-4h-7v-2h7v2zm0-4h-7v-1.56l.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12z" -}, "1")], 'LiquorTwoTone'); \ No newline at end of file +}, "1")], 'LiquorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/List.js b/packages/material-ui-icons/lib/List.js index be208367884676..00930e6dd61ec3 100644 --- a/packages/material-ui-icons/lib/List.js +++ b/packages/material-ui-icons/lib/List.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" -}), 'List'); \ No newline at end of file +}), 'List'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListAlt.js b/packages/material-ui-icons/lib/ListAlt.js index c0904fcf8c755a..23478b17dad71f 100644 --- a/packages/material-ui-icons/lib/ListAlt.js +++ b/packages/material-ui-icons/lib/ListAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m1.1-2H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM11 7h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7z" -}), 'ListAlt'); \ No newline at end of file +}), 'ListAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListAltOutlined.js b/packages/material-ui-icons/lib/ListAltOutlined.js index 9a2ee8b9976529..bdd607bb6873f3 100644 --- a/packages/material-ui-icons/lib/ListAltOutlined.js +++ b/packages/material-ui-icons/lib/ListAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z" -}), 'ListAltOutlined'); \ No newline at end of file +}), 'ListAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListAltRounded.js b/packages/material-ui-icons/lib/ListAltRounded.js index d9fd264e6623ec..b0467e8cf716c1 100644 --- a/packages/material-ui-icons/lib/ListAltRounded.js +++ b/packages/material-ui-icons/lib/ListAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20 3H4c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 16H5V5h14v14z" -}), 'ListAltRounded'); \ No newline at end of file +}), 'ListAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListAltSharp.js b/packages/material-ui-icons/lib/ListAltSharp.js index 9450f0d75526ca..e0a1cfa25b29bf 100644 --- a/packages/material-ui-icons/lib/ListAltSharp.js +++ b/packages/material-ui-icons/lib/ListAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM3 3v18h18V3H3zm16 16H5V5h14v14z" -}), 'ListAltSharp'); \ No newline at end of file +}), 'ListAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListAltTwoTone.js b/packages/material-ui-icons/lib/ListAltTwoTone.js index 71d5b88c1ad1bd..06a6c566413097 100644 --- a/packages/material-ui-icons/lib/ListAltTwoTone.js +++ b/packages/material-ui-icons/lib/ListAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm6-12h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2zm0 4h2v2H7v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z" -}, "1")], 'ListAltTwoTone'); \ No newline at end of file +}, "1")], 'ListAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListOutlined.js b/packages/material-ui-icons/lib/ListOutlined.js index 7422d3bd5a2256..a5e2a88ca65e49 100644 --- a/packages/material-ui-icons/lib/ListOutlined.js +++ b/packages/material-ui-icons/lib/ListOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" -}), 'ListOutlined'); \ No newline at end of file +}), 'ListOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListRounded.js b/packages/material-ui-icons/lib/ListRounded.js index 510f88bf5f69e3..84fe112f264850 100644 --- a/packages/material-ui-icons/lib/ListRounded.js +++ b/packages/material-ui-icons/lib/ListRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm-3 5c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z" -}), 'ListRounded'); \ No newline at end of file +}), 'ListRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListSharp.js b/packages/material-ui-icons/lib/ListSharp.js index 9cf0abfde3a819..e3643805b644b0 100644 --- a/packages/material-ui-icons/lib/ListSharp.js +++ b/packages/material-ui-icons/lib/ListSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" -}), 'ListSharp'); \ No newline at end of file +}), 'ListSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ListTwoTone.js b/packages/material-ui-icons/lib/ListTwoTone.js index 8882ddb2c7ccd2..aab437d9f4941f 100644 --- a/packages/material-ui-icons/lib/ListTwoTone.js +++ b/packages/material-ui-icons/lib/ListTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" -}), 'ListTwoTone'); \ No newline at end of file +}), 'ListTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveHelp.js b/packages/material-ui-icons/lib/LiveHelp.js index eb95629ec34e23..f396ac4296f64b 100644 --- a/packages/material-ui-icons/lib/LiveHelp.js +++ b/packages/material-ui-icons/lib/LiveHelp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" -}), 'LiveHelp'); \ No newline at end of file +}), 'LiveHelp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveHelpOutlined.js b/packages/material-ui-icons/lib/LiveHelpOutlined.js index 1d2e23fabcfdd9..8747131c8fd5ff 100644 --- a/packages/material-ui-icons/lib/LiveHelpOutlined.js +++ b/packages/material-ui-icons/lib/LiveHelpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z" -}), 'LiveHelpOutlined'); \ No newline at end of file +}), 'LiveHelpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveHelpRounded.js b/packages/material-ui-icons/lib/LiveHelpRounded.js index d7e3e53adcca8e..b2d3c82f0ff31e 100644 --- a/packages/material-ui-icons/lib/LiveHelpRounded.js +++ b/packages/material-ui-icons/lib/LiveHelpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75-.9.92c-.58.59-.99 1.1-1.12 2.06-.06.43-.41.76-.85.76h-.31c-.52 0-.92-.46-.85-.98.11-.91.53-1.72 1.14-2.34l1.24-1.26c.36-.36.58-.86.58-1.41 0-1.1-.9-2-2-2-.87 0-1.62.57-1.89 1.35-.13.37-.44.64-.83.64h-.3c-.58 0-.98-.56-.82-1.12C8.65 5.21 10.18 4 12 4c2.21 0 4 1.79 4 4 0 .88-.36 1.68-.93 2.25z" -}), 'LiveHelpRounded'); \ No newline at end of file +}), 'LiveHelpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveHelpSharp.js b/packages/material-ui-icons/lib/LiveHelpSharp.js index 65f2fc35694b99..0a1d276307c69d 100644 --- a/packages/material-ui-icons/lib/LiveHelpSharp.js +++ b/packages/material-ui-icons/lib/LiveHelpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3v18h6l3 3 3-3h6V2zm-8 16h-2v-2h2v2zm2.07-7.75-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" -}), 'LiveHelpSharp'); \ No newline at end of file +}), 'LiveHelpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveHelpTwoTone.js b/packages/material-ui-icons/lib/LiveHelpTwoTone.js index c198c3a19856bd..bc8e162fc991e0 100644 --- a/packages/material-ui-icons/lib/LiveHelpTwoTone.js +++ b/packages/material-ui-icons/lib/LiveHelpTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18h4.83l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14zm8-1h-2v-2h2v2zM12 5c2.21 0 4 1.79 4 4 0 2.5-3 2.75-3 5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4zm-2 14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z" -}, "1")], 'LiveHelpTwoTone'); \ No newline at end of file +}, "1")], 'LiveHelpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveTv.js b/packages/material-ui-icons/lib/LiveTv.js index f881a0aa8e7c01..a1c214a2647f96 100644 --- a/packages/material-ui-icons/lib/LiveTv.js +++ b/packages/material-ui-icons/lib/LiveTv.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-7.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm0 14H3V8h18v12zM9 10v8l7-4z" -}), 'LiveTv'); \ No newline at end of file +}), 'LiveTv'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveTvOutlined.js b/packages/material-ui-icons/lib/LiveTvOutlined.js index 6319656a28bd26..2fa086606f0d03 100644 --- a/packages/material-ui-icons/lib/LiveTvOutlined.js +++ b/packages/material-ui-icons/lib/LiveTvOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z" -}), 'LiveTvOutlined'); \ No newline at end of file +}), 'LiveTvOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveTvRounded.js b/packages/material-ui-icons/lib/LiveTvRounded.js index 22c1f9655e3739..74436acf21f6f3 100644 --- a/packages/material-ui-icons/lib/LiveTvRounded.js +++ b/packages/material-ui-icons/lib/LiveTvRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.5 17.15 3.98-2.28c.67-.38.67-1.35 0-1.74l-3.98-2.28c-.67-.38-1.5.11-1.5.87v4.55c0 .77.83 1.26 1.5.88zM21 6h-7.59l2.94-2.94c.2-.2.2-.51 0-.71s-.51-.2-.71 0L12 5.99 8.36 2.35c-.2-.2-.51-.2-.71 0s-.2.51 0 .71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'LiveTvRounded'); \ No newline at end of file +}), 'LiveTvRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveTvSharp.js b/packages/material-ui-icons/lib/LiveTvSharp.js index 9428ed362f2158..61ef9ca42bb057 100644 --- a/packages/material-ui-icons/lib/LiveTvSharp.js +++ b/packages/material-ui-icons/lib/LiveTvSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 6h-9.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H1v16h22V6zm-2 14H3V8h18v12zM9 10v8l7-4-7-4z" -}), 'LiveTvSharp'); \ No newline at end of file +}), 'LiveTvSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LiveTvTwoTone.js b/packages/material-ui-icons/lib/LiveTvTwoTone.js index 4b0fbb8ad57c49..5d9728ec775760 100644 --- a/packages/material-ui-icons/lib/LiveTvTwoTone.js +++ b/packages/material-ui-icons/lib/LiveTvTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 20h18V8H3v12zm6-10 7 4-7 4v-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z" -}, "1")], 'LiveTvTwoTone'); \ No newline at end of file +}, "1")], 'LiveTvTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Living.js b/packages/material-ui-icons/lib/Living.js index 730073a57a94bf..32552cc9530624 100644 --- a/packages/material-ui-icons/lib/Living.js +++ b/packages/material-ui-icons/lib/Living.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 11.5c-.55 0-1 .45-1 1v2h-7v-2c0-.55-.45-1-1-1s-1 .45-1 1V16c0 .28.22.5.5.5h10c.28 0 .5-.22.5-.5v-3.5c0-.55-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12.5v.5h4v-.5c0-1.3.99-2.35 2.25-2.47V9c0-.83-.67-1.5-1.5-1.5h-5.5c-.83 0-1.5.67-1.5 1.5v1.03C9.01 10.15 10 11.2 10 12.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 14c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-3.5c0-.92.51-1.72 1.25-2.15V9c0-1.66 1.34-3 3-3h5.5c1.66 0 3 1.34 3 3v1.35c.74.43 1.25 1.23 1.25 2.15V16z" -}, "2")], 'Living'); \ No newline at end of file +}, "2")], 'Living'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LivingOutlined.js b/packages/material-ui-icons/lib/LivingOutlined.js index e276edbe260a5c..f601aaa26fc9ec 100644 --- a/packages/material-ui-icons/lib/LivingOutlined.js +++ b/packages/material-ui-icons/lib/LivingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.75 10.35V9c0-1.66-1.34-3-3-3h-5.5c-1.66 0-3 1.34-3 3v1.35C5.51 10.78 5 11.58 5 12.5V16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-3.5c0-.92-.51-1.72-1.25-2.15zM9.25 7.5h5.5c.83 0 1.5.67 1.5 1.5v1.03C14.99 10.15 14 11.2 14 12.5v.5h-4v-.5c0-1.3-.99-2.35-2.25-2.47V9c0-.83.67-1.5 1.5-1.5zM17.5 16c0 .28-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5v-3.5c0-.55.45-1 1-1s1 .45 1 1v2h7v-2c0-.55.45-1 1-1s1 .45 1 1V16zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'LivingOutlined'); \ No newline at end of file +}), 'LivingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LivingRounded.js b/packages/material-ui-icons/lib/LivingRounded.js index 1e2fd994800bd8..74ea80786a929c 100644 --- a/packages/material-ui-icons/lib/LivingRounded.js +++ b/packages/material-ui-icons/lib/LivingRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 11.5c-.55 0-1 .45-1 1v2h-7v-2c0-.55-.45-1-1-1s-1 .45-1 1V16c0 .28.22.5.5.5h10c.28 0 .5-.22.5-.5v-3.5c0-.55-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12.5v.5h4v-.5c0-1.3.99-2.35 2.25-2.47V9c0-.83-.67-1.5-1.5-1.5h-5.5c-.83 0-1.5.67-1.5 1.5v1.03C9.01 10.15 10 11.2 10 12.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 14c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-3.5c0-.92.51-1.72 1.25-2.15V9c0-1.66 1.34-3 3-3h5.5c1.66 0 3 1.34 3 3v1.35c.74.43 1.25 1.23 1.25 2.15V16z" -}, "2")], 'LivingRounded'); \ No newline at end of file +}, "2")], 'LivingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LivingSharp.js b/packages/material-ui-icons/lib/LivingSharp.js index 920eec571a5b49..fb3f6b53c02a51 100644 --- a/packages/material-ui-icons/lib/LivingSharp.js +++ b/packages/material-ui-icons/lib/LivingSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 12v2.5h-7V12h-2v4.5h11V12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10v3h4v-3l2.25-.01V7.5h-8.5v2.49z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zm-3 7.99V18H5v-8l1.25-.01V6h11.5v3.99H19z" -}, "2")], 'LivingSharp'); \ No newline at end of file +}, "2")], 'LivingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LivingTwoTone.js b/packages/material-ui-icons/lib/LivingTwoTone.js index e88ddc87495eee..6f809725c8c873 100644 --- a/packages/material-ui-icons/lib/LivingTwoTone.js +++ b/packages/material-ui-icons/lib/LivingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zm1-7.5c0-.92.51-1.72 1.25-2.15V9c0-1.66 1.34-3 3-3h5.5c1.66 0 3 1.34 3 3v1.35c.74.43 1.25 1.23 1.25 2.15V16c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM7 18h10c1.1 0 2-.9 2-2v-3.5c0-.92-.51-1.72-1.25-2.15V9c0-1.66-1.34-3-3-3h-5.5c-1.66 0-3 1.34-3 3v1.35C5.51 10.78 5 11.58 5 12.5V16c0 1.1.9 2 2 2zm.75-9c0-.83.67-1.5 1.5-1.5h5.5c.83 0 1.5.67 1.5 1.5v1.03C14.99 10.15 14 11.2 14 12.5v.5h-4v-.5c0-1.3-.99-2.35-2.25-2.47V9zM6.5 12.5c0-.55.45-1 1-1s1 .45 1 1v2h7v-2c0-.55.45-1 1-1s1 .45 1 1V16c0 .28-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5v-3.5z" -}, "1")], 'LivingTwoTone'); \ No newline at end of file +}, "1")], 'LivingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalActivity.js b/packages/material-ui-icons/lib/LocalActivity.js index 8052c1ec3b0e1f..4ef35d068aaf60 100644 --- a/packages/material-ui-icons/lib/LocalActivity.js +++ b/packages/material-ui-icons/lib/LocalActivity.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" -}), 'LocalActivity'); \ No newline at end of file +}), 'LocalActivity'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalActivityOutlined.js b/packages/material-ui-icons/lib/LocalActivityOutlined.js index 11a21ed1c7c041..581ff59a181b13 100644 --- a/packages/material-ui-icons/lib/LocalActivityOutlined.js +++ b/packages/material-ui-icons/lib/LocalActivityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" -}), 'LocalActivityOutlined'); \ No newline at end of file +}), 'LocalActivityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalActivityRounded.js b/packages/material-ui-icons/lib/LocalActivityRounded.js index 387e3212f836c0..6a4da074c98963 100644 --- a/packages/material-ui-icons/lib/LocalActivityRounded.js +++ b/packages/material-ui-icons/lib/LocalActivityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-.76.43-1.42 1.06-1.76.6-.33.94-1.01.94-1.7V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 1.99v2.55c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7V18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76zm-5.5 4.1L12 14.5l-2.5 1.61c-.38.24-.87-.11-.75-.55l.75-2.88-2.3-1.88c-.35-.29-.17-.86.29-.89l2.96-.17 1.08-2.75c.17-.42.77-.42.93 0l1.08 2.76 2.96.17c.45.03.64.6.29.89l-2.3 1.88.76 2.86c.12.45-.37.8-.75.55z" -}), 'LocalActivityRounded'); \ No newline at end of file +}), 'LocalActivityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalActivitySharp.js b/packages/material-ui-icons/lib/LocalActivitySharp.js index 58fa26af73293f..e2f6b97b4bc8bb 100644 --- a/packages/material-ui-icons/lib/LocalActivitySharp.js +++ b/packages/material-ui-icons/lib/LocalActivitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" -}), 'LocalActivitySharp'); \ No newline at end of file +}), 'LocalActivitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalActivityTwoTone.js b/packages/material-ui-icons/lib/LocalActivityTwoTone.js index cf4583a19f4f58..6a83c5bee01949 100644 --- a/packages/material-ui-icons/lib/LocalActivityTwoTone.js +++ b/packages/material-ui-icons/lib/LocalActivityTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" -}, "1")], 'LocalActivityTwoTone'); \ No newline at end of file +}, "1")], 'LocalActivityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAirport.js b/packages/material-ui-icons/lib/LocalAirport.js index 7edd3e3590e5bf..7c5b13e6a3de4c 100644 --- a/packages/material-ui-icons/lib/LocalAirport.js +++ b/packages/material-ui-icons/lib/LocalAirport.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'LocalAirport'); \ No newline at end of file +}), 'LocalAirport'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAirportOutlined.js b/packages/material-ui-icons/lib/LocalAirportOutlined.js index 118629c6f5068c..23ece9cbfd390c 100644 --- a/packages/material-ui-icons/lib/LocalAirportOutlined.js +++ b/packages/material-ui-icons/lib/LocalAirportOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'LocalAirportOutlined'); \ No newline at end of file +}), 'LocalAirportOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAirportRounded.js b/packages/material-ui-icons/lib/LocalAirportRounded.js index 96a8765ee6b6e0..d8700f4d3f706f 100644 --- a/packages/material-ui-icons/lib/LocalAirportRounded.js +++ b/packages/material-ui-icons/lib/LocalAirportRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.48 13.7 13.5 9V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9l-7.98 4.7c-.32.18-.52.53-.52.9 0 .7.67 1.2 1.34 1.01l7.16-2.1V19l-2.26 1.35c-.15.09-.24.26-.24.43v.58c0 .33.31.57.62.49l2.92-.73L12 21l.38.09.42.11 1.9.48.67.17c.32.08.62-.16.62-.49v-.58c0-.18-.09-.34-.24-.43L13.5 19v-5.5l7.16 2.1c.67.2 1.34-.3 1.34-1 0-.37-.2-.72-.52-.9z" -}), 'LocalAirportRounded'); \ No newline at end of file +}), 'LocalAirportRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAirportSharp.js b/packages/material-ui-icons/lib/LocalAirportSharp.js index ef4fc8bc788517..84d056bdfd9849 100644 --- a/packages/material-ui-icons/lib/LocalAirportSharp.js +++ b/packages/material-ui-icons/lib/LocalAirportSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'LocalAirportSharp'); \ No newline at end of file +}), 'LocalAirportSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAirportTwoTone.js b/packages/material-ui-icons/lib/LocalAirportTwoTone.js index 56f37fd82a47e8..4db0e485a71229 100644 --- a/packages/material-ui-icons/lib/LocalAirportTwoTone.js +++ b/packages/material-ui-icons/lib/LocalAirportTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" -}), 'LocalAirportTwoTone'); \ No newline at end of file +}), 'LocalAirportTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAtm.js b/packages/material-ui-icons/lib/LocalAtm.js index 830f61c1f75b7d..301ab671d9fb13 100644 --- a/packages/material-ui-icons/lib/LocalAtm.js +++ b/packages/material-ui-icons/lib/LocalAtm.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" -}), 'LocalAtm'); \ No newline at end of file +}), 'LocalAtm'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAtmOutlined.js b/packages/material-ui-icons/lib/LocalAtmOutlined.js index be6a6648f1431f..dd7283bd88be49 100644 --- a/packages/material-ui-icons/lib/LocalAtmOutlined.js +++ b/packages/material-ui-icons/lib/LocalAtmOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" -}), 'LocalAtmOutlined'); \ No newline at end of file +}), 'LocalAtmOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAtmRounded.js b/packages/material-ui-icons/lib/LocalAtmRounded.js index 08f5ef6bc868ee..51c50446f06a2a 100644 --- a/packages/material-ui-icons/lib/LocalAtmRounded.js +++ b/packages/material-ui-icons/lib/LocalAtmRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 13c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10zm-6-7c.55 0 1-.45 1-1s-.45-1-1-1h-1v-.01c0-.55-.45-1-1-1s-1 .45-1 1V8h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1h-3c-.55 0-1 .45-1 1s.45 1 1 1h1c0 .55.45 1 1 1s1-.45 1-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h3z" -}), 'LocalAtmRounded'); \ No newline at end of file +}), 'LocalAtmRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAtmSharp.js b/packages/material-ui-icons/lib/LocalAtmSharp.js index 25feba0d6f5fd5..1a68a7240b6c9f 100644 --- a/packages/material-ui-icons/lib/LocalAtmSharp.js +++ b/packages/material-ui-icons/lib/LocalAtmSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h2v-1h2v-5h-4v-1h4V8h-2V7h-2v1H9v5h4v1H9v2h2v1zM22 4H2.01L2 20h20V4zm-2 14H4V6h16v12z" -}), 'LocalAtmSharp'); \ No newline at end of file +}), 'LocalAtmSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalAtmTwoTone.js b/packages/material-ui-icons/lib/LocalAtmTwoTone.js index b524a7fb4c4ba3..80fd4d18fd1b07 100644 --- a/packages/material-ui-icons/lib/LocalAtmTwoTone.js +++ b/packages/material-ui-icons/lib/LocalAtmTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zm5-4h4v-1h-3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12zm-9-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z" -}, "1")], 'LocalAtmTwoTone'); \ No newline at end of file +}, "1")], 'LocalAtmTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalBar.js b/packages/material-ui-icons/lib/LocalBar.js index f884c765b48dc8..2c576dafa517b9 100644 --- a/packages/material-ui-icons/lib/LocalBar.js +++ b/packages/material-ui-icons/lib/LocalBar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" -}), 'LocalBar'); \ No newline at end of file +}), 'LocalBar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalBarOutlined.js b/packages/material-ui-icons/lib/LocalBarOutlined.js index 6ce3a50ad312ec..081bd42fcd3d05 100644 --- a/packages/material-ui-icons/lib/LocalBarOutlined.js +++ b/packages/material-ui-icons/lib/LocalBarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.77 9 12 12.11 9.23 9h5.54M21 3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9V3zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" -}), 'LocalBarOutlined'); \ No newline at end of file +}), 'LocalBarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalBarRounded.js b/packages/material-ui-icons/lib/LocalBarRounded.js index 6892fbd7a49852..f9be7c33ed3199 100644 --- a/packages/material-ui-icons/lib/LocalBarRounded.js +++ b/packages/material-ui-icons/lib/LocalBarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4.45c0-.8-.65-1.45-1.45-1.45H4.45C3.65 3 3 3.65 3 4.45c0 .35.13.7.37.96L11 14v5H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1h-4v-5l7.63-8.59c.24-.26.37-.61.37-.96zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" -}), 'LocalBarRounded'); \ No newline at end of file +}), 'LocalBarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalBarSharp.js b/packages/material-ui-icons/lib/LocalBarSharp.js index 514b16982085e2..aff913fca50691 100644 --- a/packages/material-ui-icons/lib/LocalBarSharp.js +++ b/packages/material-ui-icons/lib/LocalBarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" -}), 'LocalBarSharp'); \ No newline at end of file +}), 'LocalBarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalBarTwoTone.js b/packages/material-ui-icons/lib/LocalBarTwoTone.js index c76c2ca7c244ca..0d9684bb379a08 100644 --- a/packages/material-ui-icons/lib/LocalBarTwoTone.js +++ b/packages/material-ui-icons/lib/LocalBarTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.23 9 12 12.11 14.77 9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM5.66 5h12.69l-1.78 2H7.43L5.66 5zM12 12.11 9.23 9h5.54L12 12.11z" -}, "1")], 'LocalBarTwoTone'); \ No newline at end of file +}, "1")], 'LocalBarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCafe.js b/packages/material-ui-icons/lib/LocalCafe.js index a4ef002fd57435..aab5dff22fb370 100644 --- a/packages/material-ui-icons/lib/LocalCafe.js +++ b/packages/material-ui-icons/lib/LocalCafe.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" -}), 'LocalCafe'); \ No newline at end of file +}), 'LocalCafe'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCafeOutlined.js b/packages/material-ui-icons/lib/LocalCafeOutlined.js index 678c2c8240b8d8..7c931c6ef18b7f 100644 --- a/packages/material-ui-icons/lib/LocalCafeOutlined.js +++ b/packages/material-ui-icons/lib/LocalCafeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 5v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10m4-2H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-2 5V5h2v3h-2zm2 11H2v2h18v-2z" -}), 'LocalCafeOutlined'); \ No newline at end of file +}), 'LocalCafeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCafeRounded.js b/packages/material-ui-icons/lib/LocalCafeRounded.js index c5d4493b46a698..53a936e7075b9a 100644 --- a/packages/material-ui-icons/lib/LocalCafeRounded.js +++ b/packages/material-ui-icons/lib/LocalCafeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM3 21h16c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'LocalCafeRounded'); \ No newline at end of file +}), 'LocalCafeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCafeSharp.js b/packages/material-ui-icons/lib/LocalCafeSharp.js index 9ad35a155855ab..2da47c9184191e 100644 --- a/packages/material-ui-icons/lib/LocalCafeSharp.js +++ b/packages/material-ui-icons/lib/LocalCafeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM2 21h18v-2H2v2z" -}), 'LocalCafeSharp'); \ No newline at end of file +}), 'LocalCafeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCafeTwoTone.js b/packages/material-ui-icons/lib/LocalCafeTwoTone.js index 242bf211f5515d..dbe6580833acf9 100644 --- a/packages/material-ui-icons/lib/LocalCafeTwoTone.js +++ b/packages/material-ui-icons/lib/LocalCafeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 15h6c1.1 0 2-.9 2-2V5H6v8c0 1.1.9 2 2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19h18v2H2zm2-6c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2H4v10zm14-8h2v3h-2V5zM6 5h10v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5z" -}, "1")], 'LocalCafeTwoTone'); \ No newline at end of file +}, "1")], 'LocalCafeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCarWash.js b/packages/material-ui-icons/lib/LocalCarWash.js index fc6ab2f7be7acf..2609b5e01ae702 100644 --- a/packages/material-ui-icons/lib/LocalCarWash.js +++ b/packages/material-ui-icons/lib/LocalCarWash.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5z" -}), 'LocalCarWash'); \ No newline at end of file +}), 'LocalCarWash'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCarWashOutlined.js b/packages/material-ui-icons/lib/LocalCarWashOutlined.js index 1da330c33194f2..d22cca17bfe17e 100644 --- a/packages/material-ui-icons/lib/LocalCarWashOutlined.js +++ b/packages/material-ui-icons/lib/LocalCarWashOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "16.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "16.5", r: "1.5" -}, "2")], 'LocalCarWashOutlined'); \ No newline at end of file +}, "2")], 'LocalCarWashOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCarWashRounded.js b/packages/material-ui-icons/lib/LocalCarWashRounded.js index 9d250886bf0f79..58b01e6e71594c 100644 --- a/packages/material-ui-icons/lib/LocalCarWashRounded.js +++ b/packages/material-ui-icons/lib/LocalCarWashRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22 0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22 0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 22.33 6 21.5V21h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 13H5z" -}), 'LocalCarWashRounded'); \ No newline at end of file +}), 'LocalCarWashRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCarWashSharp.js b/packages/material-ui-icons/lib/LocalCarWashSharp.js index ea396e4fac2609..abd8a987fe8305 100644 --- a/packages/material-ui-icons/lib/LocalCarWashSharp.js +++ b/packages/material-ui-icons/lib/LocalCarWashSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.58 7H5.43L3 14v9h3v-2h12v2h3v-9l-2.42-7zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5zm12-8c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5z" -}), 'LocalCarWashSharp'); \ No newline at end of file +}), 'LocalCarWashSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalCarWashTwoTone.js b/packages/material-ui-icons/lib/LocalCarWashTwoTone.js index 9248a5b340e908..d279b299d7953f 100644 --- a/packages/material-ui-icons/lib/LocalCarWashTwoTone.js +++ b/packages/material-ui-icons/lib/LocalCarWashTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.12 14-.12.34V19h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7zm-2 0c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5zm-5 0C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5s1.5-.67 1.5-1.5zM21 14l-2.08-5.99C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "16.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "16.5", r: "1.5" -}, "3")], 'LocalCarWashTwoTone'); \ No newline at end of file +}, "3")], 'LocalCarWashTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalConvenienceStore.js b/packages/material-ui-icons/lib/LocalConvenienceStore.js index abcd5fea7a4f96..9a5bed2d1206e3 100644 --- a/packages/material-ui-icons/lib/LocalConvenienceStore.js +++ b/packages/material-ui-icons/lib/LocalConvenienceStore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z" -}), 'LocalConvenienceStore'); \ No newline at end of file +}), 'LocalConvenienceStore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalConvenienceStoreOutlined.js b/packages/material-ui-icons/lib/LocalConvenienceStoreOutlined.js index 28e594f3fea995..ad0224855de856 100644 --- a/packages/material-ui-icons/lib/LocalConvenienceStoreOutlined.js +++ b/packages/material-ui-icons/lib/LocalConvenienceStoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm1 11h-4v-4H8v4H4V9h3V6h10v3h3v9zM8 8h2v1H8v3h3v-1H9v-1h2V7H8zm7 1h-1V7h-1v3h2v2h1V7h-1z" -}), 'LocalConvenienceStoreOutlined'); \ No newline at end of file +}), 'LocalConvenienceStoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalConvenienceStoreRounded.js b/packages/material-ui-icons/lib/LocalConvenienceStoreRounded.js index 22cd2555a88dea..7b28bae6c62ca2 100644 --- a/packages/material-ui-icons/lib/LocalConvenienceStoreRounded.js +++ b/packages/material-ui-icons/lib/LocalConvenienceStoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 7.89-1.05-3.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 7.89c-.46 1.97.85 3.11.9 3.17V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7.94c1.12-1.12 1.09-2.41.9-3.17zM13 5h1.96l.54 3.52c.09.71-.39 1.48-1.28 1.48-.67 0-1.22-.59-1.22-1.31V5zM6.44 8.86c-.08.65-.6 1.14-1.21 1.14-.93 0-1.35-.97-1.19-1.64L5.05 5h1.97l-.58 3.86zM10.5 16H9v1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5H10v-1H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h2c.28 0 .5.22.5.5v2c0 .28-.22.5-.5.5zm.5-7.31c0 .72-.55 1.31-1.29 1.31-.75 0-1.3-.7-1.22-1.48L9.04 5H11v3.69zM15.5 18c-.28 0-.5-.22-.5-.5V16h-1.5c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5s.5.22.5.5V15h1v-1.5c0-.28.22-.5.5-.5s.5.22.5.5v4c0 .28-.22.5-.5.5zm3.27-8c-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01 1.05 3.37c.16.67-.25 1.64-1.19 1.64z" -}), 'LocalConvenienceStoreRounded'); \ No newline at end of file +}), 'LocalConvenienceStoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalConvenienceStoreSharp.js b/packages/material-ui-icons/lib/LocalConvenienceStoreSharp.js index 0dcf9cc0104447..a1128ce5f1796f 100644 --- a/packages/material-ui-icons/lib/LocalConvenienceStoreSharp.js +++ b/packages/material-ui-icons/lib/LocalConvenienceStoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z" -}), 'LocalConvenienceStoreSharp'); \ No newline at end of file +}), 'LocalConvenienceStoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalConvenienceStoreTwoTone.js b/packages/material-ui-icons/lib/LocalConvenienceStoreTwoTone.js index 274357643e8c61..639e48bec7e3a4 100644 --- a/packages/material-ui-icons/lib/LocalConvenienceStoreTwoTone.js +++ b/packages/material-ui-icons/lib/LocalConvenienceStoreTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 14h2v4h4V9h-3V6H7v3H4v9h4v-4h6zm-1-7h1v2h1V7h1v5h-1v-2h-2V7zM8 9h2V8H8V7h3v3H9v1h2v1H8V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16h4v4h8V7h-3V4H5v3H2v13h8v-4zm-2 0v2H4V9h3V6h10v3h3v9h-4v-4H8v2zm3-5H9v-1h2V7H8v1h2v1H8v3h3zm4 1h1V7h-1v2h-1V7h-1v3h2z" -}, "1")], 'LocalConvenienceStoreTwoTone'); \ No newline at end of file +}, "1")], 'LocalConvenienceStoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDining.js b/packages/material-ui-icons/lib/LocalDining.js index 7a60865afa8a76..794c22e0bd3b8f 100644 --- a/packages/material-ui-icons/lib/LocalDining.js +++ b/packages/material-ui-icons/lib/LocalDining.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" -}), 'LocalDining'); \ No newline at end of file +}), 'LocalDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDiningOutlined.js b/packages/material-ui-icons/lib/LocalDiningOutlined.js index 9c7e31c97ace21..1fc591359ffe40 100644 --- a/packages/material-ui-icons/lib/LocalDiningOutlined.js +++ b/packages/material-ui-icons/lib/LocalDiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" -}), 'LocalDiningOutlined'); \ No newline at end of file +}), 'LocalDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDiningRounded.js b/packages/material-ui-icons/lib/LocalDiningRounded.js index 447ac8e087e446..424b5a23f83d2e 100644 --- a/packages/material-ui-icons/lib/LocalDiningRounded.js +++ b/packages/material-ui-icons/lib/LocalDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83-6.19-6.18c-.48-.48-1.31-.35-1.61.27-.71 1.49-.45 3.32.78 4.56l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27l-9.05 9.05c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 14.41l6.18 6.18c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 13l1.47-1.47z" -}), 'LocalDiningRounded'); \ No newline at end of file +}), 'LocalDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDiningSharp.js b/packages/material-ui-icons/lib/LocalDiningSharp.js index 8760f1ccc21f34..07abb0adca29a7 100644 --- a/packages/material-ui-icons/lib/LocalDiningSharp.js +++ b/packages/material-ui-icons/lib/LocalDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" -}), 'LocalDiningSharp'); \ No newline at end of file +}), 'LocalDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDiningTwoTone.js b/packages/material-ui-icons/lib/LocalDiningTwoTone.js index c981ef78c16f9e..6e2b37f13fe249 100644 --- a/packages/material-ui-icons/lib/LocalDiningTwoTone.js +++ b/packages/material-ui-icons/lib/LocalDiningTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.11 21.28 12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41zM3.91 9.16l4.19 4.18 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66z" -}), 'LocalDiningTwoTone'); \ No newline at end of file +}), 'LocalDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDrink.js b/packages/material-ui-icons/lib/LocalDrink.js index a40b5362443155..eb4273820c06c8 100644 --- a/packages/material-ui-icons/lib/LocalDrink.js +++ b/packages/material-ui-icons/lib/LocalDrink.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 2 2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z" -}), 'LocalDrink'); \ No newline at end of file +}), 'LocalDrink'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDrinkOutlined.js b/packages/material-ui-icons/lib/LocalDrinkOutlined.js index f43fa6439cba1b..d2a312339f7010 100644 --- a/packages/material-ui-icons/lib/LocalDrinkOutlined.js +++ b/packages/material-ui-icons/lib/LocalDrinkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 2 2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm14 18-10 .01L5.89 10H18.1L17 20zm1.33-12H5.67l-.44-4h13.53l-.43 4zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z" -}), 'LocalDrinkOutlined'); \ No newline at end of file +}), 'LocalDrinkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDrinkRounded.js b/packages/material-ui-icons/lib/LocalDrinkRounded.js index 9dd67d40de91ab..2ebb5b1a1aa959 100644 --- a/packages/material-ui-icons/lib/LocalDrinkRounded.js +++ b/packages/material-ui-icons/lib/LocalDrinkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.23 2C4.04 2 3.11 3.04 3.24 4.22l1.77 16.01C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77l1.77-16.01c.13-1.18-.8-2.22-1.99-2.22H5.23zM12 19c-1.66 0-3-1.34-3-3 0-1.55 1.81-3.95 2.62-4.94.2-.25.57-.25.77 0 .81 1 2.62 3.39 2.62 4.94-.01 1.66-1.35 3-3.01 3zm6.33-11H5.67l-.32-2.89c-.06-.59.4-1.11 1-1.11h11.3c.59 0 1.06.52.99 1.11L18.33 8z" -}), 'LocalDrinkRounded'); \ No newline at end of file +}), 'LocalDrinkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDrinkSharp.js b/packages/material-ui-icons/lib/LocalDrinkSharp.js index c4f292ad1636f7..ce3388f340a8f1 100644 --- a/packages/material-ui-icons/lib/LocalDrinkSharp.js +++ b/packages/material-ui-icons/lib/LocalDrinkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 2 2.21 20H18.8L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z" -}), 'LocalDrinkSharp'); \ No newline at end of file +}), 'LocalDrinkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalDrinkTwoTone.js b/packages/material-ui-icons/lib/LocalDrinkTwoTone.js index f7d47f35f24c96..851a0062ae9164 100644 --- a/packages/material-ui-icons/lib/LocalDrinkTwoTone.js +++ b/packages/material-ui-icons/lib/LocalDrinkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20.01 17 20l1.1-10H5.89L7 20.01zm5-9.41s3 3.4 3 5.4c0 1.66-1.34 3-3 3s-3-1.34-3-3c0-2 3-5.4 3-5.4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.01 20.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3l2.01 18.23zM17 20l-10 .01L5.89 10H18.1L17 20zm1.76-16-.43 4H5.67l-.44-4h13.53zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z" -}, "1")], 'LocalDrinkTwoTone'); \ No newline at end of file +}, "1")], 'LocalDrinkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFireDepartment.js b/packages/material-ui-icons/lib/LocalFireDepartment.js index 71b6cb2f5dfcd0..74ea1fbd0f6d20 100644 --- a/packages/material-ui-icons/lib/LocalFireDepartment.js +++ b/packages/material-ui-icons/lib/LocalFireDepartment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" -}), 'LocalFireDepartment'); \ No newline at end of file +}), 'LocalFireDepartment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFireDepartmentOutlined.js b/packages/material-ui-icons/lib/LocalFireDepartmentOutlined.js index 6111b402651156..f8a3a75ecf9261 100644 --- a/packages/material-ui-icons/lib/LocalFireDepartmentOutlined.js +++ b/packages/material-ui-icons/lib/LocalFireDepartmentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" -}), 'LocalFireDepartmentOutlined'); \ No newline at end of file +}), 'LocalFireDepartmentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFireDepartmentRounded.js b/packages/material-ui-icons/lib/LocalFireDepartmentRounded.js index 9e1f2057897a83..53fc11e9eb5f36 100644 --- a/packages/material-ui-icons/lib/LocalFireDepartmentRounded.js +++ b/packages/material-ui-icons/lib/LocalFireDepartmentRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" -}, "1")], 'LocalFireDepartmentRounded'); \ No newline at end of file +}, "1")], 'LocalFireDepartmentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFireDepartmentSharp.js b/packages/material-ui-icons/lib/LocalFireDepartmentSharp.js index 2d65b3994c6560..915249eb381b0e 100644 --- a/packages/material-ui-icons/lib/LocalFireDepartmentSharp.js +++ b/packages/material-ui-icons/lib/LocalFireDepartmentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.48 12.37C17.82 8.05 11.65 8 13.99.99 9.52 3 5.98 8.17 9.48 15 4.53 12.92 6.7 7.71 6.7 7.71S4 9.37 4 14.39c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zM10.2 17.4c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" -}), 'LocalFireDepartmentSharp'); \ No newline at end of file +}), 'LocalFireDepartmentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFireDepartmentTwoTone.js b/packages/material-ui-icons/lib/LocalFireDepartmentTwoTone.js index 2f6428105a7a3d..d1064c3a79e60e 100644 --- a/packages/material-ui-icons/lib/LocalFireDepartmentTwoTone.js +++ b/packages/material-ui-icons/lib/LocalFireDepartmentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.58 15.07c-.2.92-.94 1.96-2.38 2.31 2.9 2.37 5.64.2 5.56-2.32 0-2.05-2.95-3.21-3.27-5.08-.87 2.26.41 3.66.09 5.09z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" -}, "1")], 'LocalFireDepartmentTwoTone'); \ No newline at end of file +}, "1")], 'LocalFireDepartmentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFlorist.js b/packages/material-ui-icons/lib/LocalFlorist.js index 900e053df30234..5aa55ac0bbdf28 100644 --- a/packages/material-ui-icons/lib/LocalFlorist.js +++ b/packages/material-ui-icons/lib/LocalFlorist.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z" -}), 'LocalFlorist'); \ No newline at end of file +}), 'LocalFlorist'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFloristOutlined.js b/packages/material-ui-icons/lib/LocalFloristOutlined.js index 1bbd547a3ea398..abf9b3849015b9 100644 --- a/packages/material-ui-icons/lib/LocalFloristOutlined.js +++ b/packages/material-ui-icons/lib/LocalFloristOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zM12 13c-.62 0-1.12-.49-1.14-1.1l.12-1.09c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1zm3.34-1.93c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm2.44-2.44c.71-1.9 2.22-3.42 4.12-4.12-.71 1.9-2.22 3.41-4.12 4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z" -}), 'LocalFloristOutlined'); \ No newline at end of file +}), 'LocalFloristOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFloristRounded.js b/packages/material-ui-icons/lib/LocalFloristRounded.js index 1fe4850ee9f6aa..15dbe8973eb809 100644 --- a/packages/material-ui-icons/lib/LocalFloristRounded.js +++ b/packages/material-ui-icons/lib/LocalFloristRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c4.56 0 8.33-3.4 8.92-7.8.09-.64-.48-1.21-1.12-1.12-4.4.59-7.8 4.36-7.8 8.92zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zm-8.92 8.7C3.67 18.6 7.44 22 12 22c0-4.56-3.4-8.33-7.8-8.92-.64-.09-1.21.48-1.12 1.12z" -}), 'LocalFloristRounded'); \ No newline at end of file +}), 'LocalFloristRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFloristSharp.js b/packages/material-ui-icons/lib/LocalFloristSharp.js index 50c7ed052ebcf8..76d186bf917e3b 100644 --- a/packages/material-ui-icons/lib/LocalFloristSharp.js +++ b/packages/material-ui-icons/lib/LocalFloristSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z" -}), 'LocalFloristSharp'); \ No newline at end of file +}), 'LocalFloristSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalFloristTwoTone.js b/packages/material-ui-icons/lib/LocalFloristTwoTone.js index ebdb93b4464d3a..c111b5727e98d3 100644 --- a/packages/material-ui-icons/lib/LocalFloristTwoTone.js +++ b/packages/material-ui-icons/lib/LocalFloristTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c.62 0 1.12-.49 1.14-1.1l-.11-1.09c-.32.12-.67.19-1.03.19s-.7-.07-1.02-.19l-.12 1.09c.02.61.52 1.1 1.14 1.1zM8.17 7.1l.88.42c.12-.73.51-1.37 1.06-1.83l-.81-.56c-.18-.13-.41-.2-.64-.2-.63 0-1.14.51-1.14 1.14-.01.44.25.83.65 1.03zm7.66 1.8-.88-.42c-.12.73-.51 1.37-1.06 1.83l.81.57c.18.13.41.2.64.2.63 0 1.14-.51 1.14-1.14.01-.45-.25-.84-.65-1.04zm-.88-1.38.88-.42c.4-.19.66-.59.66-1.03 0-.63-.51-1.14-1.14-1.14-.24 0-.46.07-.65.2l-.81.55c.55.46.94 1.1 1.06 1.84zM12 5c.36 0 .71.07 1.03.19l.11-1.09C13.12 3.49 12.62 3 12 3s-1.12.49-1.14 1.1l.12 1.09C11.3 5.07 11.64 5 12 5zm-3.34 6.07c.24 0 .46-.07.65-.2l.81-.55c-.56-.46-.95-1.1-1.07-1.84l-.88.42c-.4.2-.66.59-.66 1.03 0 .63.52 1.14 1.15 1.14zm9.9 4.37c-1.9.71-3.42 2.22-4.12 4.12 1.9-.71 3.41-2.22 4.12-4.12zm-13.12 0c.71 1.9 2.22 3.42 4.12 4.12-.71-1.9-2.22-3.41-4.12-4.12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zm6.68-2c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zm1 5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-2.02 2.81c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1s-1.12-.49-1.14-1.1l.12-1.09zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm6.56-6.56c-.71 1.9-2.22 3.42-4.12 4.12.71-1.9 2.22-3.41 4.12-4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z" -}, "1")], 'LocalFloristTwoTone'); \ No newline at end of file +}, "1")], 'LocalFloristTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGasStation.js b/packages/material-ui-icons/lib/LocalGasStation.js index ff1f5c39ed13e7..1ca9704c563cfd 100644 --- a/packages/material-ui-icons/lib/LocalGasStation.js +++ b/packages/material-ui-icons/lib/LocalGasStation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalGasStation'); \ No newline at end of file +}), 'LocalGasStation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGasStationOutlined.js b/packages/material-ui-icons/lib/LocalGasStationOutlined.js index b96f6c1e2c68ce..6209f59c9ad265 100644 --- a/packages/material-ui-icons/lib/LocalGasStationOutlined.js +++ b/packages/material-ui-icons/lib/LocalGasStationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 13.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalGasStationOutlined'); \ No newline at end of file +}), 'LocalGasStationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGasStationRounded.js b/packages/material-ui-icons/lib/LocalGasStationRounded.js index 741c2f0956886e..e4c00d07384a77 100644 --- a/packages/material-ui-icons/lib/LocalGasStationRounded.js +++ b/packages/material-ui-icons/lib/LocalGasStationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.19-3.19c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.58 1.58c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v15c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-6.5h1.5v4.86c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V9c0-.69-.28-1.32-.73-1.77zM12 10H6V6c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalGasStationRounded'); \ No newline at end of file +}), 'LocalGasStationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGasStationSharp.js b/packages/material-ui-icons/lib/LocalGasStationSharp.js index 6a81f54ed99ad1..27427d83c50c9a 100644 --- a/packages/material-ui-icons/lib/LocalGasStationSharp.js +++ b/packages/material-ui-icons/lib/LocalGasStationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5v7.49h5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalGasStationSharp'); \ No newline at end of file +}), 'LocalGasStationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGasStationTwoTone.js b/packages/material-ui-icons/lib/LocalGasStationTwoTone.js index 1025963c45df5e..ad1c65c9f0a6ec 100644 --- a/packages/material-ui-icons/lib/LocalGasStationTwoTone.js +++ b/packages/material-ui-icons/lib/LocalGasStationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h6v-7H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 10.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'LocalGasStationTwoTone'); \ No newline at end of file +}, "1")], 'LocalGasStationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGroceryStore.js b/packages/material-ui-icons/lib/LocalGroceryStore.js index c3a7e5f1cfef92..eb410b730a8a39 100644 --- a/packages/material-ui-icons/lib/LocalGroceryStore.js +++ b/packages/material-ui-icons/lib/LocalGroceryStore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" -}), 'LocalGroceryStore'); \ No newline at end of file +}), 'LocalGroceryStore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGroceryStoreOutlined.js b/packages/material-ui-icons/lib/LocalGroceryStoreOutlined.js index 93f7a0abc15b78..4ba13678002869 100644 --- a/packages/material-ui-icons/lib/LocalGroceryStoreOutlined.js +++ b/packages/material-ui-icons/lib/LocalGroceryStoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z" -}), 'LocalGroceryStoreOutlined'); \ No newline at end of file +}), 'LocalGroceryStoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGroceryStoreRounded.js b/packages/material-ui-icons/lib/LocalGroceryStoreRounded.js index 58d16e38720fda..e2983b2b311e06 100644 --- a/packages/material-ui-icons/lib/LocalGroceryStoreRounded.js +++ b/packages/material-ui-icons/lib/LocalGroceryStoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM2 4h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.67-1.43c-.16-.35-.52-.57-.9-.57H2c-.55 0-1 .45-1 1s.45 1 1 1zm15 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" -}), 'LocalGroceryStoreRounded'); \ No newline at end of file +}), 'LocalGroceryStoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGroceryStoreSharp.js b/packages/material-ui-icons/lib/LocalGroceryStoreSharp.js index fd965f40652478..ef2d021d51f2f3 100644 --- a/packages/material-ui-icons/lib/LocalGroceryStoreSharp.js +++ b/packages/material-ui-icons/lib/LocalGroceryStoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 4h2l3.6 7.59L3.62 17H19v-2H7l1.1-2h8.64l4.97-9H5.21l-.94-2H1v2zm16 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" -}), 'LocalGroceryStoreSharp'); \ No newline at end of file +}), 'LocalGroceryStoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalGroceryStoreTwoTone.js b/packages/material-ui-icons/lib/LocalGroceryStoreTwoTone.js index 0a898245f52c0a..b29210f90e4382 100644 --- a/packages/material-ui-icons/lib/LocalGroceryStoreTwoTone.js +++ b/packages/material-ui-icons/lib/LocalGroceryStoreTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.53 11h7.02l2.76-5H6.16z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z" -}, "1")], 'LocalGroceryStoreTwoTone'); \ No newline at end of file +}, "1")], 'LocalGroceryStoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHospital.js b/packages/material-ui-icons/lib/LocalHospital.js index bd681dac1bc8d3..69cac5f0bd8918 100644 --- a/packages/material-ui-icons/lib/LocalHospital.js +++ b/packages/material-ui-icons/lib/LocalHospital.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z" -}), 'LocalHospital'); \ No newline at end of file +}), 'LocalHospital'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHospitalOutlined.js b/packages/material-ui-icons/lib/LocalHospitalOutlined.js index 7211d4b6b3eb35..e6c72ccd2bf845 100644 --- a/packages/material-ui-icons/lib/LocalHospitalOutlined.js +++ b/packages/material-ui-icons/lib/LocalHospitalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z" -}), 'LocalHospitalOutlined'); \ No newline at end of file +}), 'LocalHospitalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHospitalRounded.js b/packages/material-ui-icons/lib/LocalHospitalRounded.js index f3f3001152426e..62258e49e4286f 100644 --- a/packages/material-ui-icons/lib/LocalHospitalRounded.js +++ b/packages/material-ui-icons/lib/LocalHospitalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 11h-3v3c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1v-3H7c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1h3V7c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v3h3c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'LocalHospitalRounded'); \ No newline at end of file +}), 'LocalHospitalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHospitalSharp.js b/packages/material-ui-icons/lib/LocalHospitalSharp.js index 24ec5ed46b5b94..5c75b809c351f2 100644 --- a/packages/material-ui-icons/lib/LocalHospitalSharp.js +++ b/packages/material-ui-icons/lib/LocalHospitalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3.01L3 21h18V3zm-3 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z" -}), 'LocalHospitalSharp'); \ No newline at end of file +}), 'LocalHospitalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHospitalTwoTone.js b/packages/material-ui-icons/lib/LocalHospitalTwoTone.js index 21978b6cd0e45a..6fe6f006388168 100644 --- a/packages/material-ui-icons/lib/LocalHospitalTwoTone.js +++ b/packages/material-ui-icons/lib/LocalHospitalTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm2-8.5h3.5V7h3v3.5H17v3h-3.5V17h-3v-3.5H7v-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c0-1.1-.9-2-2-2H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5zm-2 14H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z" -}, "1")], 'LocalHospitalTwoTone'); \ No newline at end of file +}, "1")], 'LocalHospitalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHotel.js b/packages/material-ui-icons/lib/LocalHotel.js index 288ea5955b16d3..21e0a5cf0854bf 100644 --- a/packages/material-ui-icons/lib/LocalHotel.js +++ b/packages/material-ui-icons/lib/LocalHotel.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z" -}), 'LocalHotel'); \ No newline at end of file +}), 'LocalHotel'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHotelOutlined.js b/packages/material-ui-icons/lib/LocalHotelOutlined.js index 2f481409b99d1e..a4fe39c7a5ae29 100644 --- a/packages/material-ui-icons/lib/LocalHotelOutlined.js +++ b/packages/material-ui-icons/lib/LocalHotelOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" -}), 'LocalHotelOutlined'); \ No newline at end of file +}), 'LocalHotelOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHotelRounded.js b/packages/material-ui-icons/lib/LocalHotelRounded.js index e6ab459cbc48d1..5756682ee54663 100644 --- a/packages/material-ui-icons/lib/LocalHotelRounded.js +++ b/packages/material-ui-icons/lib/LocalHotelRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V6c0-.55-.45-1-1-1s-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1v-2h18v2c0 .55.45 1 1 1s1-.45 1-1v-8c0-2.21-1.79-4-4-4z" -}), 'LocalHotelRounded'); \ No newline at end of file +}), 'LocalHotelRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHotelSharp.js b/packages/material-ui-icons/lib/LocalHotelSharp.js index 236d0e4339aac9..d9019b4aeba894 100644 --- a/packages/material-ui-icons/lib/LocalHotelSharp.js +++ b/packages/material-ui-icons/lib/LocalHotelSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z" -}), 'LocalHotelSharp'); \ No newline at end of file +}), 'LocalHotelSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalHotelTwoTone.js b/packages/material-ui-icons/lib/LocalHotelTwoTone.js index 010d8cd6247cbc..2d493198c446e4 100644 --- a/packages/material-ui-icons/lib/LocalHotelTwoTone.js +++ b/packages/material-ui-icons/lib/LocalHotelTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "11", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" -}, "2")], 'LocalHotelTwoTone'); \ No newline at end of file +}, "2")], 'LocalHotelTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLaundryService.js b/packages/material-ui-icons/lib/LocalLaundryService.js index 2c62ff7526179e..c4d2884faa1afd 100644 --- a/packages/material-ui-icons/lib/LocalLaundryService.js +++ b/packages/material-ui-icons/lib/LocalLaundryService.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0 1.56-1.56 1.56-4.1 0-5.66l-5.66 5.66zM18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'LocalLaundryService'); \ No newline at end of file +}), 'LocalLaundryService'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLaundryServiceOutlined.js b/packages/material-ui-icons/lib/LocalLaundryServiceOutlined.js index fda881e05bcb3e..c25cd4e1a732c8 100644 --- a/packages/material-ui-icons/lib/LocalLaundryServiceOutlined.js +++ b/packages/material-ui-icons/lib/LocalLaundryServiceOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "6", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "6", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z" -}, "3")], 'LocalLaundryServiceOutlined'); \ No newline at end of file +}, "3")], 'LocalLaundryServiceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLaundryServiceRounded.js b/packages/material-ui-icons/lib/LocalLaundryServiceRounded.js index 4b0f6e3465dde9..9f84b70f91c851 100644 --- a/packages/material-ui-icons/lib/LocalLaundryServiceRounded.js +++ b/packages/material-ui-icons/lib/LocalLaundryServiceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.64 16.36c1.3 1.3 3.42 1.3 4.72 0 1.3-1.3 1.3-3.42 0-4.72l-4.72 4.72zM18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM11 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 14c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}), 'LocalLaundryServiceRounded'); \ No newline at end of file +}), 'LocalLaundryServiceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLaundryServiceSharp.js b/packages/material-ui-icons/lib/LocalLaundryServiceSharp.js index 04052e9624cd76..9640e01f3c5a50 100644 --- a/packages/material-ui-icons/lib/LocalLaundryServiceSharp.js +++ b/packages/material-ui-icons/lib/LocalLaundryServiceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0s1.56-4.1 0-5.66l-5.66 5.66zM20 2.01 4 2v20h16V2.01zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'LocalLaundryServiceSharp'); \ No newline at end of file +}), 'LocalLaundryServiceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLaundryServiceTwoTone.js b/packages/material-ui-icons/lib/LocalLaundryServiceTwoTone.js index bcfb9af8825494..83a12b22b9c2af 100644 --- a/packages/material-ui-icons/lib/LocalLaundryServiceTwoTone.js +++ b/packages/material-ui-icons/lib/LocalLaundryServiceTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.99 4 6 20h12V4H5.99c.01 0 0 0 0 0zM11 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 4c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "6", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z" -}, "4")], 'LocalLaundryServiceTwoTone'); \ No newline at end of file +}, "4")], 'LocalLaundryServiceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLibrary.js b/packages/material-ui-icons/lib/LocalLibrary.js index 40da6ec6e9b7a0..cb8937f2326e16 100644 --- a/packages/material-ui-icons/lib/LocalLibrary.js +++ b/packages/material-ui-icons/lib/LocalLibrary.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" -}), 'LocalLibrary'); \ No newline at end of file +}), 'LocalLibrary'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLibraryOutlined.js b/packages/material-ui-icons/lib/LocalLibraryOutlined.js index e484b93adc1717..d674a08013149c 100644 --- a/packages/material-ui-icons/lib/LocalLibraryOutlined.js +++ b/packages/material-ui-icons/lib/LocalLibraryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zm7 5.58c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.95c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95z" -}), 'LocalLibraryOutlined'); \ No newline at end of file +}), 'LocalLibraryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLibraryRounded.js b/packages/material-ui-icons/lib/LocalLibraryRounded.js index b6e110cad93761..8cd44d2f6f5a8b 100644 --- a/packages/material-ui-icons/lib/LocalLibraryRounded.js +++ b/packages/material-ui-icons/lib/LocalLibraryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11.55c-1.82-1.7-4.12-2.89-6.68-3.35C4.11 7.99 3 8.95 3 10.18v6.24c0 1.68.72 2.56 1.71 2.69 2.5.32 4.77 1.35 6.63 2.87.35.29.92.32 1.27.04 1.87-1.53 4.16-2.58 6.68-2.9.94-.13 1.71-1.06 1.71-2.02v-6.92c0-1.23-1.11-2.19-2.32-1.98-2.56.46-4.86 1.65-6.68 3.35zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" -}), 'LocalLibraryRounded'); \ No newline at end of file +}), 'LocalLibraryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLibrarySharp.js b/packages/material-ui-icons/lib/LocalLibrarySharp.js index 03853d3e3685e8..18b372caec7b39 100644 --- a/packages/material-ui-icons/lib/LocalLibrarySharp.js +++ b/packages/material-ui-icons/lib/LocalLibrarySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" -}), 'LocalLibrarySharp'); \ No newline at end of file +}), 'LocalLibrarySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalLibraryTwoTone.js b/packages/material-ui-icons/lib/LocalLibraryTwoTone.js index 8893f067a4629e..6067a60949d7b2 100644 --- a/packages/material-ui-icons/lib/LocalLibraryTwoTone.js +++ b/packages/material-ui-icons/lib/LocalLibraryTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 17.13v-6.95c-2.1.38-4.05 1.35-5.64 2.83L12 14.28l-1.36-1.27C9.05 11.53 7.1 10.56 5 10.18v6.95c2.53.34 4.94 1.3 7 2.83 2.07-1.52 4.47-2.49 7-2.83z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "5", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 5c0-2.21-1.79-4-4-4S8 2.79 8 5s1.79 4 4 4 4-1.79 4-4zm-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM3 19c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55C9.64 9.35 6.48 8 3 8v11zm2-8.82c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.94z" -}, "2")], 'LocalLibraryTwoTone'); \ No newline at end of file +}, "2")], 'LocalLibraryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMall.js b/packages/material-ui-icons/lib/LocalMall.js index 6e471954377617..6c2f937c49fc3d 100644 --- a/packages/material-ui-icons/lib/LocalMall.js +++ b/packages/material-ui-icons/lib/LocalMall.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z" -}), 'LocalMall'); \ No newline at end of file +}), 'LocalMall'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMallOutlined.js b/packages/material-ui-icons/lib/LocalMallOutlined.js index f6224e095203e7..f420a7730a1385 100644 --- a/packages/material-ui-icons/lib/LocalMallOutlined.js +++ b/packages/material-ui-icons/lib/LocalMallOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z" -}), 'LocalMallOutlined'); \ No newline at end of file +}), 'LocalMallOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMallRounded.js b/packages/material-ui-icons/lib/LocalMallRounded.js index e75d93b1a30ffe..e6371ee29c6907 100644 --- a/packages/material-ui-icons/lib/LocalMallRounded.js +++ b/packages/material-ui-icons/lib/LocalMallRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.33 0-4.29-1.59-4.84-3.75-.17-.63.32-1.25.97-1.25.47 0 .85.34.98.8.35 1.27 1.51 2.2 2.89 2.2s2.54-.93 2.89-2.2c.13-.46.51-.8.98-.8.65 0 1.13.62.97 1.25C16.29 11.41 14.33 13 12 13z" -}), 'LocalMallRounded'); \ No newline at end of file +}), 'LocalMallRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMallSharp.js b/packages/material-ui-icons/lib/LocalMallSharp.js index 1862da2dd1a774..dfd47501ee493d 100644 --- a/packages/material-ui-icons/lib/LocalMallSharp.js +++ b/packages/material-ui-icons/lib/LocalMallSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-4c0-2.76-2.24-5-5-5S7 3.24 7 6H3v16h18V6zm-9-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z" -}), 'LocalMallSharp'); \ No newline at end of file +}), 'LocalMallSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMallTwoTone.js b/packages/material-ui-icons/lib/LocalMallTwoTone.js index 6050db4e83bc73..1b963b1e054dba 100644 --- a/packages/material-ui-icons/lib/LocalMallTwoTone.js +++ b/packages/material-ui-icons/lib/LocalMallTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8v12h14V8H5zm7 6c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-2zm-5-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z" -}, "1")], 'LocalMallTwoTone'); \ No newline at end of file +}, "1")], 'LocalMallTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMovies.js b/packages/material-ui-icons/lib/LocalMovies.js index a976d898ed07bf..0b532733ab15c6 100644 --- a/packages/material-ui-icons/lib/LocalMovies.js +++ b/packages/material-ui-icons/lib/LocalMovies.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'LocalMovies'); \ No newline at end of file +}), 'LocalMovies'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMoviesOutlined.js b/packages/material-ui-icons/lib/LocalMoviesOutlined.js index f072a841f230ae..0a85c030cb1424 100644 --- a/packages/material-ui-icons/lib/LocalMoviesOutlined.js +++ b/packages/material-ui-icons/lib/LocalMoviesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5v14h-4V5h4m6-2h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3zm-4 6V7h2v2h-2zM6 9V7h2v2H6zm10 4v-2h2v2h-2zM6 13v-2h2v2H6zm10 4v-2h2v2h-2zM6 17v-2h2v2H6z" -}), 'LocalMoviesOutlined'); \ No newline at end of file +}), 'LocalMoviesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMoviesRounded.js b/packages/material-ui-icons/lib/LocalMoviesRounded.js index eebacdf4ee7320..cf7080710b65e7 100644 --- a/packages/material-ui-icons/lib/LocalMoviesRounded.js +++ b/packages/material-ui-icons/lib/LocalMoviesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'LocalMoviesRounded'); \ No newline at end of file +}), 'LocalMoviesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMoviesSharp.js b/packages/material-ui-icons/lib/LocalMoviesSharp.js index e0de4068896815..6e7e9ee6908593 100644 --- a/packages/material-ui-icons/lib/LocalMoviesSharp.js +++ b/packages/material-ui-icons/lib/LocalMoviesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'LocalMoviesSharp'); \ No newline at end of file +}), 'LocalMoviesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalMoviesTwoTone.js b/packages/material-ui-icons/lib/LocalMoviesTwoTone.js index a79cbc06cdd886..9c52835452298c 100644 --- a/packages/material-ui-icons/lib/LocalMoviesTwoTone.js +++ b/packages/material-ui-icons/lib/LocalMoviesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5h4v14h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 21V3h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm2-12h2v2h-2V7zm0 4h2v2h-2v-2zm0 6v-2h2v2h-2z" -}, "1")], 'LocalMoviesTwoTone'); \ No newline at end of file +}, "1")], 'LocalMoviesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalOffer.js b/packages/material-ui-icons/lib/LocalOffer.js index 8ffc14eaf00d16..c39ab8eab170ed 100644 --- a/packages/material-ui-icons/lib/LocalOffer.js +++ b/packages/material-ui-icons/lib/LocalOffer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" -}), 'LocalOffer'); \ No newline at end of file +}), 'LocalOffer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalOfferOutlined.js b/packages/material-ui-icons/lib/LocalOfferOutlined.js index f7c3fc3e2e383a..3eff377ec80675 100644 --- a/packages/material-ui-icons/lib/LocalOfferOutlined.js +++ b/packages/material-ui-icons/lib/LocalOfferOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "6.5", r: "1.5" -}, "1")], 'LocalOfferOutlined'); \ No newline at end of file +}, "1")], 'LocalOfferOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalOfferRounded.js b/packages/material-ui-icons/lib/LocalOfferRounded.js index f4b02e0b71644f..486a6b8d9aa031 100644 --- a/packages/material-ui-icons/lib/LocalOfferRounded.js +++ b/packages/material-ui-icons/lib/LocalOfferRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" -}), 'LocalOfferRounded'); \ No newline at end of file +}), 'LocalOfferRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalOfferSharp.js b/packages/material-ui-icons/lib/LocalOfferSharp.js index f0d1e12ac0dd99..0425cd72018236 100644 --- a/packages/material-ui-icons/lib/LocalOfferSharp.js +++ b/packages/material-ui-icons/lib/LocalOfferSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.83 12.99 11.83 2H2v9.83l10.99 10.99 9.84-9.83zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" -}), 'LocalOfferSharp'); \ No newline at end of file +}), 'LocalOfferSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalOfferTwoTone.js b/packages/material-ui-icons/lib/LocalOfferTwoTone.js index 86519cbc55166c..554ef2ececd745 100644 --- a/packages/material-ui-icons/lib/LocalOfferTwoTone.js +++ b/packages/material-ui-icons/lib/LocalOfferTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.41 2.58C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42l-9-9zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "6.5", r: "1.5" -}, "2")], 'LocalOfferTwoTone'); \ No newline at end of file +}, "2")], 'LocalOfferTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalParking.js b/packages/material-ui-icons/lib/LocalParking.js index 100779fcd83b00..baf29ef63b410e 100644 --- a/packages/material-ui-icons/lib/LocalParking.js +++ b/packages/material-ui-icons/lib/LocalParking.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" -}), 'LocalParking'); \ No newline at end of file +}), 'LocalParking'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalParkingOutlined.js b/packages/material-ui-icons/lib/LocalParkingOutlined.js index f7a3636f4af752..bf9b8e64cf0c32 100644 --- a/packages/material-ui-icons/lib/LocalParkingOutlined.js +++ b/packages/material-ui-icons/lib/LocalParkingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" -}), 'LocalParkingOutlined'); \ No newline at end of file +}), 'LocalParkingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalParkingRounded.js b/packages/material-ui-icons/lib/LocalParkingRounded.js index 30a31eeff7ad66..4f2cbc2233bda5 100644 --- a/packages/material-ui-icons/lib/LocalParkingRounded.js +++ b/packages/material-ui-icons/lib/LocalParkingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.79 3H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2s2-.9 2-2v-4h3c3.57 0 6.42-3.13 5.95-6.79C18.56 5.19 15.84 3 12.79 3zm.41 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" -}), 'LocalParkingRounded'); \ No newline at end of file +}), 'LocalParkingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalParkingSharp.js b/packages/material-ui-icons/lib/LocalParkingSharp.js index 99e47072a2f8e2..0ec70445ea7053 100644 --- a/packages/material-ui-icons/lib/LocalParkingSharp.js +++ b/packages/material-ui-icons/lib/LocalParkingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" -}), 'LocalParkingSharp'); \ No newline at end of file +}), 'LocalParkingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalParkingTwoTone.js b/packages/material-ui-icons/lib/LocalParkingTwoTone.js index 32648f6ce557a5..8528c4b4889d4b 100644 --- a/packages/material-ui-icons/lib/LocalParkingTwoTone.js +++ b/packages/material-ui-icons/lib/LocalParkingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" -}), 'LocalParkingTwoTone'); \ No newline at end of file +}), 'LocalParkingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPharmacy.js b/packages/material-ui-icons/lib/LocalPharmacy.js index 3bdccb4b59eb04..57d92256d09349 100644 --- a/packages/material-ui-icons/lib/LocalPharmacy.js +++ b/packages/material-ui-icons/lib/LocalPharmacy.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z" -}), 'LocalPharmacy'); \ No newline at end of file +}), 'LocalPharmacy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPharmacyOutlined.js b/packages/material-ui-icons/lib/LocalPharmacyOutlined.js index 459b5e993a8093..1e80660117ef82 100644 --- a/packages/material-ui-icons/lib/LocalPharmacyOutlined.js +++ b/packages/material-ui-icons/lib/LocalPharmacyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-3.9 8.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63zM13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}), 'LocalPharmacyOutlined'); \ No newline at end of file +}), 'LocalPharmacyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPharmacyRounded.js b/packages/material-ui-icons/lib/LocalPharmacyRounded.js index 46024c988606e1..f7cd51b7461dea 100644 --- a/packages/material-ui-icons/lib/LocalPharmacyRounded.js +++ b/packages/material-ui-icons/lib/LocalPharmacyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.89 5h-.53l.71-1.97c.24-.65-.1-1.37-.75-1.6-.65-.24-1.37.1-1.61.75L15.69 5H5.1C3.73 5 2.77 6.34 3.2 7.63L5 13l-1.79 5.37C2.77 19.66 3.74 21 5.1 21h13.78c1.36 0 2.33-1.34 1.9-2.63L19 13l1.78-5.37C21.21 6.34 20.25 5 18.89 5zM15 14h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'LocalPharmacyRounded'); \ No newline at end of file +}), 'LocalPharmacyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPharmacySharp.js b/packages/material-ui-icons/lib/LocalPharmacySharp.js index 98ca5436f4e6ce..5cd73c1a197107 100644 --- a/packages/material-ui-icons/lib/LocalPharmacySharp.js +++ b/packages/material-ui-icons/lib/LocalPharmacySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z" -}), 'LocalPharmacySharp'); \ No newline at end of file +}), 'LocalPharmacySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPharmacyTwoTone.js b/packages/material-ui-icons/lib/LocalPharmacyTwoTone.js index 6f57c24844f228..5b2c501d5b88ae 100644 --- a/packages/material-ui-icons/lib/LocalPharmacyTwoTone.js +++ b/packages/material-ui-icons/lib/LocalPharmacyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.11 19h13.78l-1.79-5.37-.21-.63.21-.63L18.89 7H5.11l1.79 5.37.21.63-.21.63L5.11 19zM8 12h3V9h2v3h3v2h-3v3h-2v-3H8v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h18v-2l-2-6 2-6V5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2zm3.9-8.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63zM11 17h2v-3h3v-2h-3V9h-2v3H8v2h3z" -}, "1")], 'LocalPharmacyTwoTone'); \ No newline at end of file +}, "1")], 'LocalPharmacyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPhone.js b/packages/material-ui-icons/lib/LocalPhone.js index 69be8fce5f7377..4c21b70329f902 100644 --- a/packages/material-ui-icons/lib/LocalPhone.js +++ b/packages/material-ui-icons/lib/LocalPhone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z" -}), 'LocalPhone'); \ No newline at end of file +}), 'LocalPhone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPhoneOutlined.js b/packages/material-ui-icons/lib/LocalPhoneOutlined.js index cefa92138cb968..a222419f40b444 100644 --- a/packages/material-ui-icons/lib/LocalPhoneOutlined.js +++ b/packages/material-ui-icons/lib/LocalPhoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" -}), 'LocalPhoneOutlined'); \ No newline at end of file +}), 'LocalPhoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPhoneRounded.js b/packages/material-ui-icons/lib/LocalPhoneRounded.js index 8867f638a8ffcf..206612f8fa164c 100644 --- a/packages/material-ui-icons/lib/LocalPhoneRounded.js +++ b/packages/material-ui-icons/lib/LocalPhoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" -}), 'LocalPhoneRounded'); \ No newline at end of file +}), 'LocalPhoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPhoneSharp.js b/packages/material-ui-icons/lib/LocalPhoneSharp.js index 09ca1522bc8b4b..50e4046deb6d7b 100644 --- a/packages/material-ui-icons/lib/LocalPhoneSharp.js +++ b/packages/material-ui-icons/lib/LocalPhoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 15.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" -}), 'LocalPhoneSharp'); \ No newline at end of file +}), 'LocalPhoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPhoneTwoTone.js b/packages/material-ui-icons/lib/LocalPhoneTwoTone.js index 45c1437c645718..433ea5d23c629b 100644 --- a/packages/material-ui-icons/lib/LocalPhoneTwoTone.js +++ b/packages/material-ui-icons/lib/LocalPhoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.99 7.59c-.24-.83-.39-1.7-.45-2.59h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.21z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4c0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm13.4 13.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51z" -}, "1")], 'LocalPhoneTwoTone'); \ No newline at end of file +}, "1")], 'LocalPhoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPizza.js b/packages/material-ui-icons/lib/LocalPizza.js index ee1d347ff6b8b9..67c2501ff1d78e 100644 --- a/packages/material-ui-icons/lib/LocalPizza.js +++ b/packages/material-ui-icons/lib/LocalPizza.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'LocalPizza'); \ No newline at end of file +}), 'LocalPizza'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPizzaOutlined.js b/packages/material-ui-icons/lib/LocalPizzaOutlined.js index d986ace16342aa..34f4aa1a1be0d9 100644 --- a/packages/material-ui-icons/lib/LocalPizzaOutlined.js +++ b/packages/material-ui-icons/lib/LocalPizzaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z" -}), 'LocalPizzaOutlined'); \ No newline at end of file +}), 'LocalPizzaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPizzaRounded.js b/packages/material-ui-icons/lib/LocalPizzaRounded.js index 3dda05b9ffcb29..1f401fa7911c9c 100644 --- a/packages/material-ui-icons/lib/LocalPizzaRounded.js +++ b/packages/material-ui-icons/lib/LocalPizzaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C9.01 2 6.28 3.08 4.17 4.88c-.71.61-.86 1.65-.4 2.46l7.36 13.11c.38.68 1.36.68 1.74 0l7.36-13.11c.46-.81.31-1.86-.4-2.46C17.73 3.09 14.99 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'LocalPizzaRounded'); \ No newline at end of file +}), 'LocalPizzaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPizzaSharp.js b/packages/material-ui-icons/lib/LocalPizzaSharp.js index a464af98db600e..4d2febbac8347b 100644 --- a/packages/material-ui-icons/lib/LocalPizzaSharp.js +++ b/packages/material-ui-icons/lib/LocalPizzaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'LocalPizzaSharp'); \ No newline at end of file +}), 'LocalPizzaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPizzaTwoTone.js b/packages/material-ui-icons/lib/LocalPizzaTwoTone.js index dea4f6a5e9e984..7286255499cca9 100644 --- a/packages/material-ui-icons/lib/LocalPizzaTwoTone.js +++ b/packages/material-ui-icons/lib/LocalPizzaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.51 6.36 12 17.92l6.49-11.55C16.68 4.85 14.38 4 12 4s-4.68.85-6.49 2.36zM9 8.5c-.83 0-1.5-.67-1.5-1.5S8.17 5.5 9 5.5s1.5.67 1.5 1.5S9.82 8.5 9 8.5zm4.5 4.5c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z" -}, "1")], 'LocalPizzaTwoTone'); \ No newline at end of file +}, "1")], 'LocalPizzaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPlay.js b/packages/material-ui-icons/lib/LocalPlay.js index ac9bb2085e0a45..ab359a8e360867 100644 --- a/packages/material-ui-icons/lib/LocalPlay.js +++ b/packages/material-ui-icons/lib/LocalPlay.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" -}), 'LocalPlay'); \ No newline at end of file +}), 'LocalPlay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPlayOutlined.js b/packages/material-ui-icons/lib/LocalPlayOutlined.js index 40cf052131d99c..c59fd57ae29c6d 100644 --- a/packages/material-ui-icons/lib/LocalPlayOutlined.js +++ b/packages/material-ui-icons/lib/LocalPlayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" -}), 'LocalPlayOutlined'); \ No newline at end of file +}), 'LocalPlayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPlayRounded.js b/packages/material-ui-icons/lib/LocalPlayRounded.js index 5a6a95335126e5..74c70710b20575 100644 --- a/packages/material-ui-icons/lib/LocalPlayRounded.js +++ b/packages/material-ui-icons/lib/LocalPlayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-.76.43-1.42 1.06-1.76.6-.33.94-1.01.94-1.7V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 1.99v2.55c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7v2.25C2 19.1 2.9 20 4 20h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76zm-5.5 4.1L12 14.5l-2.5 1.61c-.38.24-.87-.11-.75-.55l.75-2.88-2.3-1.88c-.35-.29-.17-.86.29-.89l2.96-.17 1.08-2.75c.17-.42.77-.42.93 0l1.08 2.76 2.96.17c.45.03.64.6.29.89l-2.3 1.88.76 2.86c.12.45-.37.8-.75.55z" -}), 'LocalPlayRounded'); \ No newline at end of file +}), 'LocalPlayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPlaySharp.js b/packages/material-ui-icons/lib/LocalPlaySharp.js index bdafe1a7b5e4d4..f6f95481aae85c 100644 --- a/packages/material-ui-icons/lib/LocalPlaySharp.js +++ b/packages/material-ui-icons/lib/LocalPlaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" -}), 'LocalPlaySharp'); \ No newline at end of file +}), 'LocalPlaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPlayTwoTone.js b/packages/material-ui-icons/lib/LocalPlayTwoTone.js index 960c37fcd04594..7b77dd29c500b8 100644 --- a/packages/material-ui-icons/lib/LocalPlayTwoTone.js +++ b/packages/material-ui-icons/lib/LocalPlayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" -}, "1")], 'LocalPlayTwoTone'); \ No newline at end of file +}, "1")], 'LocalPlayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPolice.js b/packages/material-ui-icons/lib/LocalPolice.js index 1159d4ffd3d2bc..f20754ac970bc0 100644 --- a/packages/material-ui-icons/lib/LocalPolice.js +++ b/packages/material-ui-icons/lib/LocalPolice.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm2.5 11.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59z" -}), 'LocalPolice'); \ No newline at end of file +}), 'LocalPolice'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPoliceOutlined.js b/packages/material-ui-icons/lib/LocalPoliceOutlined.js index 90a654ca39a12f..e01281e7c31922 100644 --- a/packages/material-ui-icons/lib/LocalPoliceOutlined.js +++ b/packages/material-ui-icons/lib/LocalPoliceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 12.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM12 3.19l7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" -}), 'LocalPoliceOutlined'); \ No newline at end of file +}), 'LocalPoliceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPoliceRounded.js b/packages/material-ui-icons/lib/LocalPoliceRounded.js index 7bd7025938597e..f18b4b21a33e62 100644 --- a/packages/material-ui-icons/lib/LocalPoliceRounded.js +++ b/packages/material-ui-icons/lib/LocalPoliceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 12.59.63 2.73c.1.43-.37.77-.75.54L12 14.42l-2.39 1.44c-.38.23-.85-.11-.75-.54l.64-2.72-2.1-1.81c-.34-.29-.16-.84.28-.88l2.78-.24 1.08-2.56c.17-.41.75-.41.92 0l1.08 2.55 2.78.24c.44.04.62.59.28.88l-2.1 1.81zM4.19 4.47C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.52-.23-1.11-.23-1.62 0l-7 3.11z" -}), 'LocalPoliceRounded'); \ No newline at end of file +}), 'LocalPoliceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPoliceSharp.js b/packages/material-ui-icons/lib/LocalPoliceSharp.js index 1481b7d1c5005f..cf4b6e352c36e7 100644 --- a/packages/material-ui-icons/lib/LocalPoliceSharp.js +++ b/packages/material-ui-icons/lib/LocalPoliceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 12.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4-9 4z" -}), 'LocalPoliceSharp'); \ No newline at end of file +}), 'LocalPoliceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPoliceTwoTone.js b/packages/material-ui-icons/lib/LocalPoliceTwoTone.js index cafa6c3e3a343f..5e7949858e2506 100644 --- a/packages/material-ui-icons/lib/LocalPoliceTwoTone.js +++ b/packages/material-ui-icons/lib/LocalPoliceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3.19 5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11zm2.5 9.4.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 12.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM12 3.19l7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" -}, "1")], 'LocalPoliceTwoTone'); \ No newline at end of file +}, "1")], 'LocalPoliceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPostOffice.js b/packages/material-ui-icons/lib/LocalPostOffice.js index 8b5b88431179ee..866a01b170aed9 100644 --- a/packages/material-ui-icons/lib/LocalPostOffice.js +++ b/packages/material-ui-icons/lib/LocalPostOffice.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" -}), 'LocalPostOffice'); \ No newline at end of file +}), 'LocalPostOffice'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPostOfficeOutlined.js b/packages/material-ui-icons/lib/LocalPostOfficeOutlined.js index 808ffa6464dcee..b1864fd2dea9f8 100644 --- a/packages/material-ui-icons/lib/LocalPostOfficeOutlined.js +++ b/packages/material-ui-icons/lib/LocalPostOfficeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" -}), 'LocalPostOfficeOutlined'); \ No newline at end of file +}), 'LocalPostOfficeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPostOfficeRounded.js b/packages/material-ui-icons/lib/LocalPostOfficeRounded.js index bc1fedbd0072c1..d94721bc8f7afa 100644 --- a/packages/material-ui-icons/lib/LocalPostOfficeRounded.js +++ b/packages/material-ui-icons/lib/LocalPostOfficeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" -}), 'LocalPostOfficeRounded'); \ No newline at end of file +}), 'LocalPostOfficeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPostOfficeSharp.js b/packages/material-ui-icons/lib/LocalPostOfficeSharp.js index 144eec250a3cd0..e5828d0b68310c 100644 --- a/packages/material-ui-icons/lib/LocalPostOfficeSharp.js +++ b/packages/material-ui-icons/lib/LocalPostOfficeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2.01v16H22V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" -}), 'LocalPostOfficeSharp'); \ No newline at end of file +}), 'LocalPostOfficeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPostOfficeTwoTone.js b/packages/material-ui-icons/lib/LocalPostOfficeTwoTone.js index 019cbe75604e75..69d62ed7b3e7c6 100644 --- a/packages/material-ui-icons/lib/LocalPostOfficeTwoTone.js +++ b/packages/material-ui-icons/lib/LocalPostOfficeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 11 8-5H4zM4 8v10h16V8l-8 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" -}, "1")], 'LocalPostOfficeTwoTone'); \ No newline at end of file +}, "1")], 'LocalPostOfficeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPrintshop.js b/packages/material-ui-icons/lib/LocalPrintshop.js index 6c062756816bb8..3d7752e9536a5c 100644 --- a/packages/material-ui-icons/lib/LocalPrintshop.js +++ b/packages/material-ui-icons/lib/LocalPrintshop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" -}), 'LocalPrintshop'); \ No newline at end of file +}), 'LocalPrintshop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPrintshopOutlined.js b/packages/material-ui-icons/lib/LocalPrintshopOutlined.js index d7263e3007cf9c..42b488e8c71633 100644 --- a/packages/material-ui-icons/lib/LocalPrintshopOutlined.js +++ b/packages/material-ui-icons/lib/LocalPrintshopOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm2-4v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "11.5", r: "1" -}, "1")], 'LocalPrintshopOutlined'); \ No newline at end of file +}, "1")], 'LocalPrintshopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPrintshopRounded.js b/packages/material-ui-icons/lib/LocalPrintshopRounded.js index e6155207b274c9..2f5ca204774a20 100644 --- a/packages/material-ui-icons/lib/LocalPrintshopRounded.js +++ b/packages/material-ui-icons/lib/LocalPrintshopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7V4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3h12zm1 1H5c-1.66 0-3 1.34-3 3v5c0 .55.45 1 1 1h3v2c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h3c.55 0 1-.45 1-1v-5c0-1.66-1.34-3-3-3zm-3 11H8v-4h8v4zm2-6.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalPrintshopRounded'); \ No newline at end of file +}), 'LocalPrintshopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPrintshopSharp.js b/packages/material-ui-icons/lib/LocalPrintshopSharp.js index 6a0ee534a2e12f..37fc88d4f4be0f 100644 --- a/packages/material-ui-icons/lib/LocalPrintshopSharp.js +++ b/packages/material-ui-icons/lib/LocalPrintshopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 8v9h4v4h12v-4h4V8H2zm14 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" -}), 'LocalPrintshopSharp'); \ No newline at end of file +}), 'LocalPrintshopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalPrintshopTwoTone.js b/packages/material-ui-icons/lib/LocalPrintshopTwoTone.js index 2279e74dbde53d..09525dcbe08e28 100644 --- a/packages/material-ui-icons/lib/LocalPrintshopTwoTone.js +++ b/packages/material-ui-icons/lib/LocalPrintshopTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5h8v3H8zm11 5H5c-.55 0-1 .45-1 1v4h2v-2h12v2h2v-4c0-.55-.45-1-1-1zm-1 2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "11.5", r: "1" -}, "2")], 'LocalPrintshopTwoTone'); \ No newline at end of file +}, "2")], 'LocalPrintshopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalSee.js b/packages/material-ui-icons/lib/LocalSee.js index 2a7ccac939b4da..6229137b474039 100644 --- a/packages/material-ui-icons/lib/LocalSee.js +++ b/packages/material-ui-icons/lib/LocalSee.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 2 7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'LocalSee'); \ No newline at end of file +}, "1")], 'LocalSee'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalSeeOutlined.js b/packages/material-ui-icons/lib/LocalSeeOutlined.js index 0431a9e9066fd1..896961d8892252 100644 --- a/packages/material-ui-icons/lib/LocalSeeOutlined.js +++ b/packages/material-ui-icons/lib/LocalSeeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z" -}), 'LocalSeeOutlined'); \ No newline at end of file +}), 'LocalSeeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalSeeRounded.js b/packages/material-ui-icons/lib/LocalSeeRounded.js index 2a4d5a26c65ad4..b175b47eca2df1 100644 --- a/packages/material-ui-icons/lib/LocalSeeRounded.js +++ b/packages/material-ui-icons/lib/LocalSeeRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 14c0 1.38 1.12 2.5 2.5 2.5 1.23 0 2.25-.9 2.46-2.07-1-1.01-1.83-1.98-2.48-2.93-1.37.02-2.48 1.13-2.48 2.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.65 17.08c-.37.32-.92.32-1.3 0-1.26-1.08-.7-.61-1.3-1.14-.83 1.74-2.73 2.87-4.85 2.5-1.83-.32-3.31-1.8-3.63-3.63-.42-2.44 1.13-4.58 3.31-5.14C10.3 8.45 10 7.28 10 6.15c0-.75.1-1.47.28-2.15h-.4c-.56 0-1.1.24-1.48.65L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-6.03c-1.41 1.49-2.65 2.51-3.35 3.11z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 14.42c.37.33.95.33 1.33 0C22.22 11.25 24 8.5 24 6.15 24 2.42 21.15 0 18 0s-6 2.42-6 6.15c0 2.35 1.78 5.1 5.34 8.27zm-.07-9.17L18 3l.73 2.25H21l-1.85 1.47.7 2.28L18 7.59 16.15 9l.7-2.28L15 5.25h2.27z" -}, "2")], 'LocalSeeRounded'); \ No newline at end of file +}, "2")], 'LocalSeeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalSeeSharp.js b/packages/material-ui-icons/lib/LocalSeeSharp.js index 3f9e668e04ee50..016784b284f71d 100644 --- a/packages/material-ui-icons/lib/LocalSeeSharp.js +++ b/packages/material-ui-icons/lib/LocalSeeSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'LocalSeeSharp'); \ No newline at end of file +}, "1")], 'LocalSeeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalSeeTwoTone.js b/packages/material-ui-icons/lib/LocalSeeTwoTone.js index 7ee54b7ad6029e..164bd8499c8525 100644 --- a/packages/material-ui-icons/lib/LocalSeeTwoTone.js +++ b/packages/material-ui-icons/lib/LocalSeeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4.05l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z" -}, "1")], 'LocalSeeTwoTone'); \ No newline at end of file +}, "1")], 'LocalSeeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalShipping.js b/packages/material-ui-icons/lib/LocalShipping.js index 7f29252eca2c16..431846f41210ed 100644 --- a/packages/material-ui-icons/lib/LocalShipping.js +++ b/packages/material-ui-icons/lib/LocalShipping.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9 1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'LocalShipping'); \ No newline at end of file +}), 'LocalShipping'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalShippingOutlined.js b/packages/material-ui-icons/lib/LocalShippingOutlined.js index eede78f9dd763c..4b8699b0f0a2ee 100644 --- a/packages/material-ui-icons/lib/LocalShippingOutlined.js +++ b/packages/material-ui-icons/lib/LocalShippingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-.5 1.5 1.96 2.5H17V9.5h2.5zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.22-3c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9H8.22zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalShippingOutlined'); \ No newline at end of file +}), 'LocalShippingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalShippingRounded.js b/packages/material-ui-icons/lib/LocalShippingRounded.js index 0aac76e4c3d6c3..178b30362dae41 100644 --- a/packages/material-ui-icons/lib/LocalShippingRounded.js +++ b/packages/material-ui-icons/lib/LocalShippingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 8H17V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2 0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h1c.55 0 1-.45 1-1v-3.33c0-.43-.14-.85-.4-1.2L20.3 8.4c-.19-.25-.49-.4-.8-.4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5 1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalShippingRounded'); \ No newline at end of file +}), 'LocalShippingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalShippingSharp.js b/packages/material-ui-icons/lib/LocalShippingSharp.js index a0cd51066ad130..48d56e4a53c1d2 100644 --- a/packages/material-ui-icons/lib/LocalShippingSharp.js +++ b/packages/material-ui-icons/lib/LocalShippingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V4H1v13h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5 1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'LocalShippingSharp'); \ No newline at end of file +}), 'LocalShippingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalShippingTwoTone.js b/packages/material-ui-icons/lib/LocalShippingTwoTone.js index 28108a14e27d9c..638189008ec70f 100644 --- a/packages/material-ui-icons/lib/LocalShippingTwoTone.js +++ b/packages/material-ui-icons/lib/LocalShippingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H15V6H3v9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4h-3zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9-3H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-6V9.5h2.5l1.96 2.5H17z" -}, "1")], 'LocalShippingTwoTone'); \ No newline at end of file +}, "1")], 'LocalShippingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalTaxi.js b/packages/material-ui-icons/lib/LocalTaxi.js index a8e469c14b9cf5..4c48564b9b1319 100644 --- a/packages/material-ui-icons/lib/LocalTaxi.js +++ b/packages/material-ui-icons/lib/LocalTaxi.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" -}), 'LocalTaxi'); \ No newline at end of file +}), 'LocalTaxi'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalTaxiOutlined.js b/packages/material-ui-icons/lib/LocalTaxiOutlined.js index 046900b55a857e..b5ff20a4ac14e5 100644 --- a/packages/material-ui-icons/lib/LocalTaxiOutlined.js +++ b/packages/material-ui-icons/lib/LocalTaxiOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "14.5", r: "1.5" -}, "2")], 'LocalTaxiOutlined'); \ No newline at end of file +}, "2")], 'LocalTaxiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalTaxiRounded.js b/packages/material-ui-icons/lib/LocalTaxiRounded.js index cc16054976d32e..f6e22c83d19e40 100644 --- a/packages/material-ui-icons/lib/LocalTaxiRounded.js +++ b/packages/material-ui-icons/lib/LocalTaxiRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v1H6.5c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" -}), 'LocalTaxiRounded'); \ No newline at end of file +}), 'LocalTaxiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalTaxiSharp.js b/packages/material-ui-icons/lib/LocalTaxiSharp.js index 003a8f1b7ec010..d6bd64b7b12092 100644 --- a/packages/material-ui-icons/lib/LocalTaxiSharp.js +++ b/packages/material-ui-icons/lib/LocalTaxiSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.58 5H15V3H9v2H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" -}), 'LocalTaxiSharp'); \ No newline at end of file +}), 'LocalTaxiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocalTaxiTwoTone.js b/packages/material-ui-icons/lib/LocalTaxiTwoTone.js index ceb742bd1fa6a4..9015939e0256fe 100644 --- a/packages/material-ui-icons/lib/LocalTaxiTwoTone.js +++ b/packages/material-ui-icons/lib/LocalTaxiTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.12 12-.12.34V17h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99C18.72 5.42 18.16 5 17.5 5zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "14.5", r: "1.5" -}, "3")], 'LocalTaxiTwoTone'); \ No newline at end of file +}, "3")], 'LocalTaxiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationCity.js b/packages/material-ui-icons/lib/LocationCity.js index 4f53322427eb11..d56ed2f2a15d2b 100644 --- a/packages/material-ui-icons/lib/LocationCity.js +++ b/packages/material-ui-icons/lib/LocationCity.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'LocationCity'); \ No newline at end of file +}), 'LocationCity'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationCityOutlined.js b/packages/material-ui-icons/lib/LocationCityOutlined.js index 2f8b123d3a48e0..02f8ca87fa23db 100644 --- a/packages/material-ui-icons/lib/LocationCityOutlined.js +++ b/packages/material-ui-icons/lib/LocationCityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'LocationCityOutlined'); \ No newline at end of file +}), 'LocationCityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationCityRounded.js b/packages/material-ui-icons/lib/LocationCityRounded.js index eee716f44b4021..ec7c703575a6cf 100644 --- a/packages/material-ui-icons/lib/LocationCityRounded.js +++ b/packages/material-ui-icons/lib/LocationCityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V5.83c0-.53-.21-1.04-.59-1.41L12.7 2.71a.9959.9959 0 0 0-1.41 0l-1.7 1.7C9.21 4.79 9 5.3 9 5.83V7H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-4zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'LocationCityRounded'); \ No newline at end of file +}), 'LocationCityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationCitySharp.js b/packages/material-ui-icons/lib/LocationCitySharp.js index 18a99189927bcf..2d327247e53f17 100644 --- a/packages/material-ui-icons/lib/LocationCitySharp.js +++ b/packages/material-ui-icons/lib/LocationCitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'LocationCitySharp'); \ No newline at end of file +}), 'LocationCitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationCityTwoTone.js b/packages/material-ui-icons/lib/LocationCityTwoTone.js index 2ea4b8544e7b1d..1c97bc8c10e074 100644 --- a/packages/material-ui-icons/lib/LocationCityTwoTone.js +++ b/packages/material-ui-icons/lib/LocationCityTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" -}), 'LocationCityTwoTone'); \ No newline at end of file +}), 'LocationCityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationDisabled.js b/packages/material-ui-icons/lib/LocationDisabled.js index 9728179eb8e9a1..189452dcc21468 100644 --- a/packages/material-ui-icons/lib/LocationDisabled.js +++ b/packages/material-ui-icons/lib/LocationDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" -}), 'LocationDisabled'); \ No newline at end of file +}), 'LocationDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationDisabledOutlined.js b/packages/material-ui-icons/lib/LocationDisabledOutlined.js index 3a72adbc9490e7..16ca58e3aee0d4 100644 --- a/packages/material-ui-icons/lib/LocationDisabledOutlined.js +++ b/packages/material-ui-icons/lib/LocationDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86 3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" -}), 'LocationDisabledOutlined'); \ No newline at end of file +}), 'LocationDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationDisabledRounded.js b/packages/material-ui-icons/lib/LocationDisabledRounded.js index 25f646623dd03d..00cb69909c244e 100644 --- a/packages/material-ui-icons/lib/LocationDisabledRounded.js +++ b/packages/material-ui-icons/lib/LocationDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13c.55 0 1-.45 1-1s-.45-1-1-1h-1.06c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H22zm-1.56 5.88L5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.04 6.3C3.97 7.62 3.26 9.23 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c1.77-.2 3.38-.91 4.69-1.98l1.33 1.33c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" -}), 'LocationDisabledRounded'); \ No newline at end of file +}), 'LocationDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationDisabledSharp.js b/packages/material-ui-icons/lib/LocationDisabledSharp.js index 5e658a2be5f930..8dbdb377b2a4e3 100644 --- a/packages/material-ui-icons/lib/LocationDisabledSharp.js +++ b/packages/material-ui-icons/lib/LocationDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86 3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" -}), 'LocationDisabledSharp'); \ No newline at end of file +}), 'LocationDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationDisabledTwoTone.js b/packages/material-ui-icons/lib/LocationDisabledTwoTone.js index 1391f40be1dae2..d7eeaf22180b00 100644 --- a/packages/material-ui-icons/lib/LocationDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/LocationDisabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86 3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" -}), 'LocationDisabledTwoTone'); \ No newline at end of file +}), 'LocationDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOff.js b/packages/material-ui-icons/lib/LocationOff.js index faa38f2734d8d4..2f7a13903cf009 100644 --- a/packages/material-ui-icons/lib/LocationOff.js +++ b/packages/material-ui-icons/lib/LocationOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c1.38 0 2.5 1.12 2.5 2.5 0 .74-.33 1.39-.83 1.85l3.63 3.63c.98-1.86 1.7-3.8 1.7-5.48 0-3.87-3.13-7-7-7-1.98 0-3.76.83-5.04 2.15l3.19 3.19c.46-.52 1.11-.84 1.85-.84zm4.37 9.6-4.63-4.63-.11-.11L3.27 3 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21 20 19.73l-3.63-3.63z" -}), 'LocationOff'); \ No newline at end of file +}), 'LocationOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOffOutlined.js b/packages/material-ui-icons/lib/LocationOffOutlined.js index 68261a58770e2a..28c898bc9aed4f 100644 --- a/packages/material-ui-icons/lib/LocationOffOutlined.js +++ b/packages/material-ui-icons/lib/LocationOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c2.76 0 5 2.24 5 5 0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4zm0 2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z" -}), 'LocationOffOutlined'); \ No newline at end of file +}), 'LocationOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOffRounded.js b/packages/material-ui-icons/lib/LocationOffRounded.js index 5c7e41e90e8def..71e2d343e627f2 100644 --- a/packages/material-ui-icons/lib/LocationOffRounded.js +++ b/packages/material-ui-icons/lib/LocationOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.71 3.56c-.39.39-.39 1.02 0 1.41l2.47 2.47C5.07 7.95 5 8.47 5 9c0 4.17 4.42 9.92 6.23 12.11.4.48 1.13.48 1.53 0 .65-.78 1.62-2.01 2.61-3.46l2.65 2.65c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 3.56a.9959.9959 0 0 0-1.41 0zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55 1.38 0 2.5 1.12 2.5 2.5 0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z" -}), 'LocationOffRounded'); \ No newline at end of file +}), 'LocationOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOffSharp.js b/packages/material-ui-icons/lib/LocationOffSharp.js index 127b75724c86f8..d39e17ee7ba653 100644 --- a/packages/material-ui-icons/lib/LocationOffSharp.js +++ b/packages/material-ui-icons/lib/LocationOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.41 2.86 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55 1.38 0 2.5 1.12 2.5 2.5 0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z" -}), 'LocationOffSharp'); \ No newline at end of file +}), 'LocationOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOffTwoTone.js b/packages/material-ui-icons/lib/LocationOffTwoTone.js index 59d190bab46f4e..885b14a77fcb21 100644 --- a/packages/material-ui-icons/lib/LocationOffTwoTone.js +++ b/packages/material-ui-icons/lib/LocationOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 9c0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4c2.76 0 5 2.24 5 5zm-5-2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z" -}), 'LocationOffTwoTone'); \ No newline at end of file +}), 'LocationOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOn.js b/packages/material-ui-icons/lib/LocationOn.js index bc8393c39694b3..9b91883c1760ae 100644 --- a/packages/material-ui-icons/lib/LocationOn.js +++ b/packages/material-ui-icons/lib/LocationOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'LocationOn'); \ No newline at end of file +}), 'LocationOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOnOutlined.js b/packages/material-ui-icons/lib/LocationOnOutlined.js index 8892d5a83c2bd7..99191d46acf666 100644 --- a/packages/material-ui-icons/lib/LocationOnOutlined.js +++ b/packages/material-ui-icons/lib/LocationOnOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9", r: "2.5" -}, "1")], 'LocationOnOutlined'); \ No newline at end of file +}, "1")], 'LocationOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOnRounded.js b/packages/material-ui-icons/lib/LocationOnRounded.js index 70da4c1ce43c06..54e2ff79d6a683 100644 --- a/packages/material-ui-icons/lib/LocationOnRounded.js +++ b/packages/material-ui-icons/lib/LocationOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'LocationOnRounded'); \ No newline at end of file +}), 'LocationOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOnSharp.js b/packages/material-ui-icons/lib/LocationOnSharp.js index 84fc6484257466..b7ea9a669e4e08 100644 --- a/packages/material-ui-icons/lib/LocationOnSharp.js +++ b/packages/material-ui-icons/lib/LocationOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'LocationOnSharp'); \ No newline at end of file +}), 'LocationOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationOnTwoTone.js b/packages/material-ui-icons/lib/LocationOnTwoTone.js index 417eed0e163e46..e7a268ba542228 100644 --- a/packages/material-ui-icons/lib/LocationOnTwoTone.js +++ b/packages/material-ui-icons/lib/LocationOnTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9", r: "2.5" -}, "2")], 'LocationOnTwoTone'); \ No newline at end of file +}, "2")], 'LocationOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationSearching.js b/packages/material-ui-icons/lib/LocationSearching.js index 5769250d494e66..b46a352405414d 100644 --- a/packages/material-ui-icons/lib/LocationSearching.js +++ b/packages/material-ui-icons/lib/LocationSearching.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'LocationSearching'); \ No newline at end of file +}), 'LocationSearching'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationSearchingOutlined.js b/packages/material-ui-icons/lib/LocationSearchingOutlined.js index 9d435e9db22dda..c529971a9eeb33 100644 --- a/packages/material-ui-icons/lib/LocationSearchingOutlined.js +++ b/packages/material-ui-icons/lib/LocationSearchingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'LocationSearchingOutlined'); \ No newline at end of file +}), 'LocationSearchingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationSearchingRounded.js b/packages/material-ui-icons/lib/LocationSearchingRounded.js index c9336c5bb8d023..082526c785f611 100644 --- a/packages/material-ui-icons/lib/LocationSearchingRounded.js +++ b/packages/material-ui-icons/lib/LocationSearchingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'LocationSearchingRounded'); \ No newline at end of file +}), 'LocationSearchingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationSearchingSharp.js b/packages/material-ui-icons/lib/LocationSearchingSharp.js index fc0df431110cb1..bae189b82843cd 100644 --- a/packages/material-ui-icons/lib/LocationSearchingSharp.js +++ b/packages/material-ui-icons/lib/LocationSearchingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'LocationSearchingSharp'); \ No newline at end of file +}), 'LocationSearchingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LocationSearchingTwoTone.js b/packages/material-ui-icons/lib/LocationSearchingTwoTone.js index 0587f081157c93..ec4f2431c1a7a3 100644 --- a/packages/material-ui-icons/lib/LocationSearchingTwoTone.js +++ b/packages/material-ui-icons/lib/LocationSearchingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'LocationSearchingTwoTone'); \ No newline at end of file +}), 'LocationSearchingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Lock.js b/packages/material-ui-icons/lib/Lock.js index 54688d4bbecf93..2d70a16d4f113a 100644 --- a/packages/material-ui-icons/lib/Lock.js +++ b/packages/material-ui-icons/lib/Lock.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z" -}), 'Lock'); \ No newline at end of file +}), 'Lock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockClock.js b/packages/material-ui-icons/lib/LockClock.js index a4762549a6c6b5..07afbf0b8d5365 100644 --- a/packages/material-ui-icons/lib/LockClock.js +++ b/packages/material-ui-icons/lib/LockClock.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.5 14.2 2.9 1.7-.8 1.3L13 15v-5h1.5v4.2zM22 14c0 4.41-3.59 8-8 8-2.02 0-3.86-.76-5.27-2H4c-1.15 0-2-.85-2-2V9c0-1.12.89-1.96 2-2v-.5C4 4.01 6.01 2 8.5 2c2.34 0 4.24 1.79 4.46 4.08.34-.05.69-.08 1.04-.08 4.41 0 8 3.59 8 8zM6 7h5v-.74C10.88 4.99 9.8 4 8.5 4 7.12 4 6 5.12 6 6.5V7zm14 7c0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6 6-2.69 6-6z" -}), 'LockClock'); \ No newline at end of file +}), 'LockClock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockClockOutlined.js b/packages/material-ui-icons/lib/LockClockOutlined.js index b9cbb1f308e02a..879c11555a91e5 100644 --- a/packages/material-ui-icons/lib/LockClockOutlined.js +++ b/packages/material-ui-icons/lib/LockClockOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20V10h12v1c.7 0 1.37.1 2 .29V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6.26c-.42-.6-.75-1.28-.97-2H6zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" -}, "1")], 'LockClockOutlined'); \ No newline at end of file +}, "1")], 'LockClockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockClockRounded.js b/packages/material-ui-icons/lib/LockClockRounded.js index c751f9afe493bf..2b3d8d5495234b 100644 --- a/packages/material-ui-icons/lib/LockClockRounded.js +++ b/packages/material-ui-icons/lib/LockClockRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11c.7 0 1.37.1 2 .29V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm2 7c-.2.2-.51.2-.71 0l-1.65-1.65c-.09-.09-.15-.22-.15-.35v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v2.29l1.5 1.5c.21.2.21.51.01.71z" -}, "1")], 'LockClockRounded'); \ No newline at end of file +}, "1")], 'LockClockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockClockSharp.js b/packages/material-ui-icons/lib/LockClockSharp.js index dd821839bc9828..b021e68bbeae00 100644 --- a/packages/material-ui-icons/lib/LockClockSharp.js +++ b/packages/material-ui-icons/lib/LockClockSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11c.7 0 1.37.1 2 .29V8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h8.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" -}), 'LockClockSharp'); \ No newline at end of file +}), 'LockClockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockClockTwoTone.js b/packages/material-ui-icons/lib/LockClockTwoTone.js index 6f69719b19f20c..580de0f6e361f5 100644 --- a/packages/material-ui-icons/lib/LockClockTwoTone.js +++ b/packages/material-ui-icons/lib/LockClockTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.29 20H6V10h12v1c.7 0 1.37.1 2 .29V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6.26c-.42-.6-.75-1.28-.97-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18c0-3.87 3.13-7 7-7v-1H6v10h5.29c-.19-.63-.29-1.3-.29-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" -}, "2")], 'LockClockTwoTone'); \ No newline at end of file +}, "2")], 'LockClockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockOpen.js b/packages/material-ui-icons/lib/LockOpen.js index eb31d428ef17f7..50fb6efb256ac2 100644 --- a/packages/material-ui-icons/lib/LockOpen.js +++ b/packages/material-ui-icons/lib/LockOpen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z" -}), 'LockOpen'); \ No newline at end of file +}), 'LockOpen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockOpenOutlined.js b/packages/material-ui-icons/lib/LockOpenOutlined.js index caeb3433800fa0..8c732fd035c7b4 100644 --- a/packages/material-ui-icons/lib/LockOpenOutlined.js +++ b/packages/material-ui-icons/lib/LockOpenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'LockOpenOutlined'); \ No newline at end of file +}), 'LockOpenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockOpenRounded.js b/packages/material-ui-icons/lib/LockOpenRounded.js index ddcf952e603f5e..2a9a48f439f090 100644 --- a/packages/material-ui-icons/lib/LockOpenRounded.js +++ b/packages/material-ui-icons/lib/LockOpenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-5h-1V6c0-2.76-2.24-5-5-5-2.28 0-4.27 1.54-4.84 3.75-.14.54.18 1.08.72 1.22.53.14 1.08-.18 1.22-.72C9.44 3.93 10.63 3 12 3c1.65 0 3 1.35 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 11c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v8z" -}), 'LockOpenRounded'); \ No newline at end of file +}), 'LockOpenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockOpenSharp.js b/packages/material-ui-icons/lib/LockOpenSharp.js index 1f53f100f09f91..9d015e65e712b0 100644 --- a/packages/material-ui-icons/lib/LockOpenSharp.js +++ b/packages/material-ui-icons/lib/LockOpenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6h2c0-1.13.6-2.24 1.64-2.7C12.85 2.31 15 3.9 15 6v2H4v14h16V8zm-2 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'LockOpenSharp'); \ No newline at end of file +}), 'LockOpenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockOpenTwoTone.js b/packages/material-ui-icons/lib/LockOpenTwoTone.js index 841776c29fa73d..e6ab53fcca2de4 100644 --- a/packages/material-ui-icons/lib/LockOpenTwoTone.js +++ b/packages/material-ui-icons/lib/LockOpenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}, "1")], 'LockOpenTwoTone'); \ No newline at end of file +}, "1")], 'LockOpenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockOutlined.js b/packages/material-ui-icons/lib/LockOutlined.js index 76a1dd1a8b79e8..1d7479197428cd 100644 --- a/packages/material-ui-icons/lib/LockOutlined.js +++ b/packages/material-ui-icons/lib/LockOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}), 'LockOutlined'); \ No newline at end of file +}), 'LockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockRounded.js b/packages/material-ui-icons/lib/LockRounded.js index 32917e2d917d82..42fd325bbe6a5b 100644 --- a/packages/material-ui-icons/lib/LockRounded.js +++ b/packages/material-ui-icons/lib/LockRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" -}), 'LockRounded'); \ No newline at end of file +}), 'LockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockSharp.js b/packages/material-ui-icons/lib/LockSharp.js index 2047c5946a62a2..5099f25ea59318 100644 --- a/packages/material-ui-icons/lib/LockSharp.js +++ b/packages/material-ui-icons/lib/LockSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" -}), 'LockSharp'); \ No newline at end of file +}), 'LockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LockTwoTone.js b/packages/material-ui-icons/lib/LockTwoTone.js index 4d65b42e2bf2bd..b276fc2cc08836 100644 --- a/packages/material-ui-icons/lib/LockTwoTone.js +++ b/packages/material-ui-icons/lib/LockTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" -}, "1")], 'LockTwoTone'); \ No newline at end of file +}, "1")], 'LockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Login.js b/packages/material-ui-icons/lib/Login.js index 6ee32c3a3c0439..bf499cea2c69ac 100644 --- a/packages/material-ui-icons/lib/Login.js +++ b/packages/material-ui-icons/lib/Login.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z" -}), 'Login'); \ No newline at end of file +}), 'Login'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoginOutlined.js b/packages/material-ui-icons/lib/LoginOutlined.js index 0775eb810e4469..72df44bb5dfcbb 100644 --- a/packages/material-ui-icons/lib/LoginOutlined.js +++ b/packages/material-ui-icons/lib/LoginOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z" -}), 'LoginOutlined'); \ No newline at end of file +}), 'LoginOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoginRounded.js b/packages/material-ui-icons/lib/LoginRounded.js index 4c34493cbe6363..d5eb3710e42d0d 100644 --- a/packages/material-ui-icons/lib/LoginRounded.js +++ b/packages/material-ui-icons/lib/LoginRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.3 7.7c-.39.39-.39 1.01 0 1.4l1.9 1.9H3c-.55 0-1 .45-1 1s.45 1 1 1h9.2l-1.9 1.9c-.39.39-.39 1.01 0 1.4.39.39 1.01.39 1.4 0l3.59-3.59c.39-.39.39-1.02 0-1.41L11.7 7.7a.9839.9839 0 0 0-1.4 0zM20 19h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-7c-.55 0-1 .45-1 1s.45 1 1 1h7v14z" -}), 'LoginRounded'); \ No newline at end of file +}), 'LoginRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoginSharp.js b/packages/material-ui-icons/lib/LoginSharp.js index 72a97b05a17775..253045a7d9ab1c 100644 --- a/packages/material-ui-icons/lib/LoginSharp.js +++ b/packages/material-ui-icons/lib/LoginSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h10V3H12v2h8v14z" -}), 'LoginSharp'); \ No newline at end of file +}), 'LoginSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoginTwoTone.js b/packages/material-ui-icons/lib/LoginTwoTone.js index 68e3a2fbb8ba5c..17f7ed87a9d254 100644 --- a/packages/material-ui-icons/lib/LoginTwoTone.js +++ b/packages/material-ui-icons/lib/LoginTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z" -}), 'LoginTwoTone'); \ No newline at end of file +}), 'LoginTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Logout.js b/packages/material-ui-icons/lib/Logout.js index 98b5e884a5ca0e..f4aaf5319ac36c 100644 --- a/packages/material-ui-icons/lib/Logout.js +++ b/packages/material-ui-icons/lib/Logout.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 7-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z" -}), 'Logout'); \ No newline at end of file +}), 'Logout'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LogoutOutlined.js b/packages/material-ui-icons/lib/LogoutOutlined.js index 28ed8595170e5f..3c6d7634186b6c 100644 --- a/packages/material-ui-icons/lib/LogoutOutlined.js +++ b/packages/material-ui-icons/lib/LogoutOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 8-1.41 1.41L17.17 11H9v2h8.17l-1.58 1.58L17 16l4-4-4-4zM5 5h7V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7v-2H5V5z" -}), 'LogoutOutlined'); \ No newline at end of file +}), 'LogoutOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LogoutRounded.js b/packages/material-ui-icons/lib/LogoutRounded.js index 28bea6113fe148..d6b58767663330 100644 --- a/packages/material-ui-icons/lib/LogoutRounded.js +++ b/packages/material-ui-icons/lib/LogoutRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h6c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6c.55 0 1-.45 1-1s-.45-1-1-1H5V5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.65 11.65-2.79-2.79c-.32-.32-.86-.1-.86.35V11h-7c-.55 0-1 .45-1 1s.45 1 1 1h7v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" -}, "1")], 'LogoutRounded'); \ No newline at end of file +}, "1")], 'LogoutRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LogoutSharp.js b/packages/material-ui-icons/lib/LogoutSharp.js index 57d6b5b7df2f5c..ff3bb086a8b73f 100644 --- a/packages/material-ui-icons/lib/LogoutSharp.js +++ b/packages/material-ui-icons/lib/LogoutSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h7V3H3v18h9v-2H5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 12-4-4v3H9v2h8v3z" -}, "1")], 'LogoutSharp'); \ No newline at end of file +}, "1")], 'LogoutSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LogoutTwoTone.js b/packages/material-ui-icons/lib/LogoutTwoTone.js index 167c166b1b7041..4860fb846db3ba 100644 --- a/packages/material-ui-icons/lib/LogoutTwoTone.js +++ b/packages/material-ui-icons/lib/LogoutTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h7V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7v-2H5V5zm16 7-4-4v3H9v2h8v3l4-4z" -}), 'LogoutTwoTone'); \ No newline at end of file +}), 'LogoutTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks.js b/packages/material-ui-icons/lib/Looks.js index dab3f2225bbed6..b3a845bae03449 100644 --- a/packages/material-ui-icons/lib/Looks.js +++ b/packages/material-ui-icons/lib/Looks.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" -}), 'Looks'); \ No newline at end of file +}), 'Looks'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks3.js b/packages/material-ui-icons/lib/Looks3.js index b0d04868c56897..6d5b561eb78e4d 100644 --- a/packages/material-ui-icons/lib/Looks3.js +++ b/packages/material-ui-icons/lib/Looks3.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.01 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4c1.1 0 2 .89 2 2v1.5z" -}), 'Looks3'); \ No newline at end of file +}), 'Looks3'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks3Outlined.js b/packages/material-ui-icons/lib/Looks3Outlined.js index 800771bc2e84d8..68aa113d74907c 100644 --- a/packages/material-ui-icons/lib/Looks3Outlined.js +++ b/packages/material-ui-icons/lib/Looks3Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z" -}), 'Looks3Outlined'); \ No newline at end of file +}), 'Looks3Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks3Rounded.js b/packages/material-ui-icons/lib/Looks3Rounded.js index 09f2c93ffd4c4b..c9c48cf8ba61d7 100644 --- a/packages/material-ui-icons/lib/Looks3Rounded.js +++ b/packages/material-ui-icons/lib/Looks3Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5.01c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3.99 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H10c-.55 0-1-.45-1-1s.45-1 1-1h3.01L13 13h-1c-.55 0-1-.45-1-1s.45-1 1-1h1l.01-2H10c-.55 0-.99-.45-.99-1s.44-1 .99-1h3.01c1.1 0 2 .9 2 2v1.5z" -}), 'Looks3Rounded'); \ No newline at end of file +}), 'Looks3Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks3Sharp.js b/packages/material-ui-icons/lib/Looks3Sharp.js index 0de3f136f0fc71..a0eec9cf42dede 100644 --- a/packages/material-ui-icons/lib/Looks3Sharp.js +++ b/packages/material-ui-icons/lib/Looks3Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3.01v18H21V3zm-5.99 14H9v-2h4v-2h-2v-2h2V9H9V7h6.01v10z" -}), 'Looks3Sharp'); \ No newline at end of file +}), 'Looks3Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks3TwoTone.js b/packages/material-ui-icons/lib/Looks3TwoTone.js index 83b15214f807a1..1d252acd4c13d3 100644 --- a/packages/material-ui-icons/lib/Looks3TwoTone.js +++ b/packages/material-ui-icons/lib/Looks3TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm4-4h4v-2h-2v-2h2V9H9V7h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H9v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z" -}, "1")], 'Looks3TwoTone'); \ No newline at end of file +}, "1")], 'Looks3TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks4.js b/packages/material-ui-icons/lib/Looks4.js index 67fd13ba54e3c9..766f1ddb6b6a2d 100644 --- a/packages/material-ui-icons/lib/Looks4.js +++ b/packages/material-ui-icons/lib/Looks4.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 14h-2v-4H9V7h2v4h2V7h2v10z" -}), 'Looks4'); \ No newline at end of file +}), 'Looks4'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks4Outlined.js b/packages/material-ui-icons/lib/Looks4Outlined.js index 3f55cf7d27a110..efbe41b0d11726 100644 --- a/packages/material-ui-icons/lib/Looks4Outlined.js +++ b/packages/material-ui-icons/lib/Looks4Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z" -}), 'Looks4Outlined'); \ No newline at end of file +}), 'Looks4Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks4Rounded.js b/packages/material-ui-icons/lib/Looks4Rounded.js index 10fd7d306520b3..004ab2313f8b0e 100644 --- a/packages/material-ui-icons/lib/Looks4Rounded.js +++ b/packages/material-ui-icons/lib/Looks4Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14c-.55 0-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3h2V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1z" -}), 'Looks4Rounded'); \ No newline at end of file +}), 'Looks4Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks4Sharp.js b/packages/material-ui-icons/lib/Looks4Sharp.js index 42a17da43c298a..293050c3f7da56 100644 --- a/packages/material-ui-icons/lib/Looks4Sharp.js +++ b/packages/material-ui-icons/lib/Looks4Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.04 3h-18v18h18V3zm-6 14h-2v-4h-4V7h2v4h2V7h2v10z" -}), 'Looks4Sharp'); \ No newline at end of file +}), 'Looks4Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks4TwoTone.js b/packages/material-ui-icons/lib/Looks4TwoTone.js index 5b86a71ad0d06a..001a9259622408 100644 --- a/packages/material-ui-icons/lib/Looks4TwoTone.js +++ b/packages/material-ui-icons/lib/Looks4TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.04 19h14V5h-14v14zm4-12h2v4h2V7h2v10h-2v-4h-4V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z" -}, "1")], 'Looks4TwoTone'); \ No newline at end of file +}, "1")], 'Looks4TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks5.js b/packages/material-ui-icons/lib/Looks5.js index f402280700c672..d42d53cd8b74dd 100644 --- a/packages/material-ui-icons/lib/Looks5.js +++ b/packages/material-ui-icons/lib/Looks5.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z" -}), 'Looks5'); \ No newline at end of file +}), 'Looks5'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks5Outlined.js b/packages/material-ui-icons/lib/Looks5Outlined.js index 2dde93cff1dd80..eb67917f6554d3 100644 --- a/packages/material-ui-icons/lib/Looks5Outlined.js +++ b/packages/material-ui-icons/lib/Looks5Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6h4v2H9v2h4c1.1 0 2-.89 2-2z" -}), 'Looks5Outlined'); \ No newline at end of file +}), 'Looks5Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks5Rounded.js b/packages/material-ui-icons/lib/Looks5Rounded.js index 586bc46b2eb725..e957ac49146c48 100644 --- a/packages/material-ui-icons/lib/Looks5Rounded.js +++ b/packages/material-ui-icons/lib/Looks5Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h2c1.1 0 2 .9 2 2v2c0 1.11-.9 2-2 2h-3c-.55 0-1-.45-1-1s.45-1 1-1h3v-2h-3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'Looks5Rounded'); \ No newline at end of file +}), 'Looks5Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks5Sharp.js b/packages/material-ui-icons/lib/Looks5Sharp.js index d33ed55dc8f7ea..25bf6e869a176d 100644 --- a/packages/material-ui-icons/lib/Looks5Sharp.js +++ b/packages/material-ui-icons/lib/Looks5Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-6 6h-4v2h4v6H9v-2h4v-2H9V7h6v2z" -}), 'Looks5Sharp'); \ No newline at end of file +}), 'Looks5Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks5TwoTone.js b/packages/material-ui-icons/lib/Looks5TwoTone.js index c5cd2bd521dd34..2818878fd5c42c 100644 --- a/packages/material-ui-icons/lib/Looks5TwoTone.js +++ b/packages/material-ui-icons/lib/Looks5TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm4 8h4v2H9v2h4c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6z" -}, "1")], 'Looks5TwoTone'); \ No newline at end of file +}, "1")], 'Looks5TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks6.js b/packages/material-ui-icons/lib/Looks6.js index 06289cf49afb31..93e076fb4dbafd 100644 --- a/packages/material-ui-icons/lib/Looks6.js +++ b/packages/material-ui-icons/lib/Looks6.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z" -}), 'Looks6'); \ No newline at end of file +}), 'Looks6'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks6Outlined.js b/packages/material-ui-icons/lib/Looks6Outlined.js index 4066498a281c20..f865ac65ee58da 100644 --- a/packages/material-ui-icons/lib/Looks6Outlined.js +++ b/packages/material-ui-icons/lib/Looks6Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zm8-10H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'Looks6Outlined'); \ No newline at end of file +}), 'Looks6Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks6Rounded.js b/packages/material-ui-icons/lib/Looks6Rounded.js index 38b09fe577eaf9..a7ac706b6e996e 100644 --- a/packages/material-ui-icons/lib/Looks6Rounded.js +++ b/packages/material-ui-icons/lib/Looks6Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h2c1.1 0 2 .9 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.1.9-2 2-2h3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'Looks6Rounded'); \ No newline at end of file +}), 'Looks6Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks6Sharp.js b/packages/material-ui-icons/lib/Looks6Sharp.js index 7e6589045e4a30..0c30c42f47933c 100644 --- a/packages/material-ui-icons/lib/Looks6Sharp.js +++ b/packages/material-ui-icons/lib/Looks6Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v-2h-2v2zM21 3H3v18h18V3zm-6 6h-4v2h4v6H9V7h6v2z" -}), 'Looks6Sharp'); \ No newline at end of file +}), 'Looks6Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Looks6TwoTone.js b/packages/material-ui-icons/lib/Looks6TwoTone.js index e86f91f574f456..180098f0902cf6 100644 --- a/packages/material-ui-icons/lib/Looks6TwoTone.js +++ b/packages/material-ui-icons/lib/Looks6TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13h2v2h-2zm8-8H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 9v6c0 1.11.9 2 2 2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2zm4 4v2h-2v-2h2zm-8 8h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5z" -}, "1")], 'Looks6TwoTone'); \ No newline at end of file +}, "1")], 'Looks6TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksOne.js b/packages/material-ui-icons/lib/LooksOne.js index 5d3b7ccc1f6c1d..f2220a50bcb0c1 100644 --- a/packages/material-ui-icons/lib/LooksOne.js +++ b/packages/material-ui-icons/lib/LooksOne.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z" -}), 'LooksOne'); \ No newline at end of file +}), 'LooksOne'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksOneOutlined.js b/packages/material-ui-icons/lib/LooksOneOutlined.js index 5c3333a000938c..96480ccfee4f00 100644 --- a/packages/material-ui-icons/lib/LooksOneOutlined.js +++ b/packages/material-ui-icons/lib/LooksOneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-7-2h2V7h-4v2h2z" -}), 'LooksOneOutlined'); \ No newline at end of file +}), 'LooksOneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksOneRounded.js b/packages/material-ui-icons/lib/LooksOneRounded.js index 3b2f2fa053dc22..8ef19fd8b4b45b 100644 --- a/packages/material-ui-icons/lib/LooksOneRounded.js +++ b/packages/material-ui-icons/lib/LooksOneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 14c-.55 0-1-.45-1-1V9h-1c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" -}), 'LooksOneRounded'); \ No newline at end of file +}), 'LooksOneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksOneSharp.js b/packages/material-ui-icons/lib/LooksOneSharp.js index 4643f0ebb5d00e..717f466ac0576b 100644 --- a/packages/material-ui-icons/lib/LooksOneSharp.js +++ b/packages/material-ui-icons/lib/LooksOneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-7 14h-2V9h-2V7h4v10z" -}), 'LooksOneSharp'); \ No newline at end of file +}), 'LooksOneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksOneTwoTone.js b/packages/material-ui-icons/lib/LooksOneTwoTone.js index 6b7bb68a6682e1..135128b8eea29e 100644 --- a/packages/material-ui-icons/lib/LooksOneTwoTone.js +++ b/packages/material-ui-icons/lib/LooksOneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v14h14V5zm-5 12h-2V9h-2V7h4v10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm5 4h2v8h2V7h-4z" -}, "1")], 'LooksOneTwoTone'); \ No newline at end of file +}, "1")], 'LooksOneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksOutlined.js b/packages/material-ui-icons/lib/LooksOutlined.js index ddfaaa43c1200c..49e90ddff70a60 100644 --- a/packages/material-ui-icons/lib/LooksOutlined.js +++ b/packages/material-ui-icons/lib/LooksOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" -}), 'LooksOutlined'); \ No newline at end of file +}), 'LooksOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksRounded.js b/packages/material-ui-icons/lib/LooksRounded.js index 1e5cdee197a85a..01d3bdb5931644 100644 --- a/packages/material-ui-icons/lib/LooksRounded.js +++ b/packages/material-ui-icons/lib/LooksRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10c-3.47 0-6.36 2.54-6.91 5.86-.1.6.39 1.14 1 1.14.49 0 .9-.36.98-.85C7.48 13.79 9.53 12 12 12s4.52 1.79 4.93 4.15c.08.49.49.85.98.85.61 0 1.09-.54.99-1.14C18.36 12.54 15.47 10 12 10zm0-4C6.3 6 1.61 10.34 1.05 15.9c-.05.59.41 1.1 1.01 1.1.51 0 .94-.38.99-.88C3.49 11.57 7.34 8 12 8s8.51 3.57 8.96 8.12c.05.5.48.88.99.88.59 0 1.06-.51 1-1.1C22.39 10.34 17.7 6 12 6z" -}), 'LooksRounded'); \ No newline at end of file +}), 'LooksRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksSharp.js b/packages/material-ui-icons/lib/LooksSharp.js index 38519f2ae6dec6..a74a20b363aced 100644 --- a/packages/material-ui-icons/lib/LooksSharp.js +++ b/packages/material-ui-icons/lib/LooksSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" -}), 'LooksSharp'); \ No newline at end of file +}), 'LooksSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksTwo.js b/packages/material-ui-icons/lib/LooksTwo.js index 7730e770734768..f607c96e8486e4 100644 --- a/packages/material-ui-icons/lib/LooksTwo.js +++ b/packages/material-ui-icons/lib/LooksTwo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z" -}), 'LooksTwo'); \ No newline at end of file +}), 'LooksTwo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksTwoOutlined.js b/packages/material-ui-icons/lib/LooksTwoOutlined.js index 9254cbc874d8bd..bc36a8ea744476 100644 --- a/packages/material-ui-icons/lib/LooksTwoOutlined.js +++ b/packages/material-ui-icons/lib/LooksTwoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" -}), 'LooksTwoOutlined'); \ No newline at end of file +}), 'LooksTwoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksTwoRounded.js b/packages/material-ui-icons/lib/LooksTwoRounded.js index cd4c12ff5d10bb..c2848464d81416 100644 --- a/packages/material-ui-icons/lib/LooksTwoRounded.js +++ b/packages/material-ui-icons/lib/LooksTwoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.1-.9 2-2 2h-2v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3c0-1.1.9-2 2-2h2V9h-3c-.55 0-1-.45-1-1s.45-1 1-1h3c1.1 0 2 .9 2 2v2z" -}), 'LooksTwoRounded'); \ No newline at end of file +}), 'LooksTwoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksTwoSharp.js b/packages/material-ui-icons/lib/LooksTwoSharp.js index f6dea710255b28..f5bbb670eef33c 100644 --- a/packages/material-ui-icons/lib/LooksTwoSharp.js +++ b/packages/material-ui-icons/lib/LooksTwoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-6 10h-4v2h4v2H9v-6h4V9H9V7h6v6z" -}), 'LooksTwoSharp'); \ No newline at end of file +}), 'LooksTwoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksTwoTone.js b/packages/material-ui-icons/lib/LooksTwoTone.js index d01855ae8c3b46..c931318a590471 100644 --- a/packages/material-ui-icons/lib/LooksTwoTone.js +++ b/packages/material-ui-icons/lib/LooksTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11zm0 6c2.76 0 5 2.24 5 5h2c0-3.86-3.14-7-7-7s-7 3.14-7 7h2c0-2.76 2.24-5 5-5z" -}), 'LooksTwoTone'); \ No newline at end of file +}), 'LooksTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LooksTwoTwoTone.js b/packages/material-ui-icons/lib/LooksTwoTwoTone.js index 24a0fc5faa53d6..f0fbb78071f662 100644 --- a/packages/material-ui-icons/lib/LooksTwoTwoTone.js +++ b/packages/material-ui-icons/lib/LooksTwoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v14h14V5zm-4 6c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm8 2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2z" -}, "1")], 'LooksTwoTwoTone'); \ No newline at end of file +}, "1")], 'LooksTwoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Loop.js b/packages/material-ui-icons/lib/Loop.js index 4bbaaf3eb7ff0f..245c781309a160 100644 --- a/packages/material-ui-icons/lib/Loop.js +++ b/packages/material-ui-icons/lib/Loop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" -}), 'Loop'); \ No newline at end of file +}), 'Loop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoopOutlined.js b/packages/material-ui-icons/lib/LoopOutlined.js index 1c86aa781607b4..1ce41c8bcfeb58 100644 --- a/packages/material-ui-icons/lib/LoopOutlined.js +++ b/packages/material-ui-icons/lib/LoopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" -}), 'LoopOutlined'); \ No newline at end of file +}), 'LoopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoopRounded.js b/packages/material-ui-icons/lib/LoopRounded.js index f6618a470d4ad9..b9b5d57de5fb8d 100644 --- a/packages/material-ui-icons/lib/LoopRounded.js +++ b/packages/material-ui-icons/lib/LoopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z" -}), 'LoopRounded'); \ No newline at end of file +}), 'LoopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoopSharp.js b/packages/material-ui-icons/lib/LoopSharp.js index 045539a989c891..d3e8091abe5e74 100644 --- a/packages/material-ui-icons/lib/LoopSharp.js +++ b/packages/material-ui-icons/lib/LoopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" -}), 'LoopSharp'); \ No newline at end of file +}), 'LoopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoopTwoTone.js b/packages/material-ui-icons/lib/LoopTwoTone.js index 396ecfd38e23fa..a9fe5ee52d1dd7 100644 --- a/packages/material-ui-icons/lib/LoopTwoTone.js +++ b/packages/material-ui-icons/lib/LoopTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3zm0-14V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8z" -}), 'LoopTwoTone'); \ No newline at end of file +}), 'LoopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Loupe.js b/packages/material-ui-icons/lib/Loupe.js index 61c34efe987405..76256998761c0b 100644 --- a/packages/material-ui-icons/lib/Loupe.js +++ b/packages/material-ui-icons/lib/Loupe.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'Loupe'); \ No newline at end of file +}), 'Loupe'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoupeOutlined.js b/packages/material-ui-icons/lib/LoupeOutlined.js index 0f47ce95f4fdd9..52be6c4e24cbec 100644 --- a/packages/material-ui-icons/lib/LoupeOutlined.js +++ b/packages/material-ui-icons/lib/LoupeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'LoupeOutlined'); \ No newline at end of file +}), 'LoupeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoupeRounded.js b/packages/material-ui-icons/lib/LoupeRounded.js index 23be0b8789080f..b055fada8684f5 100644 --- a/packages/material-ui-icons/lib/LoupeRounded.js +++ b/packages/material-ui-icons/lib/LoupeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'LoupeRounded'); \ No newline at end of file +}), 'LoupeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoupeSharp.js b/packages/material-ui-icons/lib/LoupeSharp.js index 361933c31816a1..337930be848a2e 100644 --- a/packages/material-ui-icons/lib/LoupeSharp.js +++ b/packages/material-ui-icons/lib/LoupeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-.27-4.97c-6.08-.44-11.14 4.62-10.7 10.7.38 5.28 5 9.27 10.29 9.27H22v-9.68c0-5.3-3.98-9.91-9.27-10.29zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'LoupeSharp'); \ No newline at end of file +}), 'LoupeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoupeTwoTone.js b/packages/material-ui-icons/lib/LoupeTwoTone.js index 270f8067151a1f..cad9ed0312ebc3 100644 --- a/packages/material-ui-icons/lib/LoupeTwoTone.js +++ b/packages/material-ui-icons/lib/LoupeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zm-5-9h4V7h2v4h4v2h-4v4h-2v-4H7v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 17h2v-4h4v-2h-4V7h-2v4H7v2h4zm1 5h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10S2 6.49 2 12s4.49 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" -}, "1")], 'LoupeTwoTone'); \ No newline at end of file +}, "1")], 'LoupeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LowPriority.js b/packages/material-ui-icons/lib/LowPriority.js index 1763ed83dd5b0f..574d907d0722dc 100644 --- a/packages/material-ui-icons/lib/LowPriority.js +++ b/packages/material-ui-icons/lib/LowPriority.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5h8v2h-8zm0 5.5h8v2h-8zm0 5.5h8v2h-8zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" -}), 'LowPriority'); \ No newline at end of file +}), 'LowPriority'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LowPriorityOutlined.js b/packages/material-ui-icons/lib/LowPriorityOutlined.js index d036c4e2c8f4e3..453cc7f84bba68 100644 --- a/packages/material-ui-icons/lib/LowPriorityOutlined.js +++ b/packages/material-ui-icons/lib/LowPriorityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" -}), 'LowPriorityOutlined'); \ No newline at end of file +}), 'LowPriorityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LowPriorityRounded.js b/packages/material-ui-icons/lib/LowPriorityRounded.js index b0d83e5f141895..15519719a53483 100644 --- a/packages/material-ui-icons/lib/LowPriorityRounded.js +++ b/packages/material-ui-icons/lib/LowPriorityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm0 5.5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm0 5.5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm-5.15 3.15 1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79c-.31-.32-.85-.1-.85.35v3.59c0 .44.54.66.85.35zM9 16h-.3c-2.35 0-4.45-1.71-4.68-4.05C3.76 9.27 5.87 7 8.5 7H11c.55 0 1-.45 1-1s-.45-1-1-1H8.5c-3.86 0-6.96 3.4-6.44 7.36C2.48 15.64 5.43 18 8.73 18H9" -}), 'LowPriorityRounded'); \ No newline at end of file +}), 'LowPriorityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LowPrioritySharp.js b/packages/material-ui-icons/lib/LowPrioritySharp.js index 6e71cb3769a6bb..e039cb294aebf0 100644 --- a/packages/material-ui-icons/lib/LowPrioritySharp.js +++ b/packages/material-ui-icons/lib/LowPrioritySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" -}), 'LowPrioritySharp'); \ No newline at end of file +}), 'LowPrioritySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LowPriorityTwoTone.js b/packages/material-ui-icons/lib/LowPriorityTwoTone.js index 0e7ae6770f187a..7e3e08989ea76a 100644 --- a/packages/material-ui-icons/lib/LowPriorityTwoTone.js +++ b/packages/material-ui-icons/lib/LowPriorityTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" -}), 'LowPriorityTwoTone'); \ No newline at end of file +}), 'LowPriorityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Loyalty.js b/packages/material-ui-icons/lib/Loyalty.js index 67b9647f1b0c69..6290c0ce18a4dc 100644 --- a/packages/material-ui-icons/lib/Loyalty.js +++ b/packages/material-ui-icons/lib/Loyalty.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z" -}), 'Loyalty'); \ No newline at end of file +}), 'Loyalty'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoyaltyOutlined.js b/packages/material-ui-icons/lib/LoyaltyOutlined.js index af6d8c71fc4f6c..16c95cdefd7805 100644 --- a/packages/material-ui-icons/lib/LoyaltyOutlined.js +++ b/packages/material-ui-icons/lib/LoyaltyOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "6.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z" -}, "2")], 'LoyaltyOutlined'); \ No newline at end of file +}, "2")], 'LoyaltyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoyaltyRounded.js b/packages/material-ui-icons/lib/LoyaltyRounded.js index 72d3d9d2c3066d..a70cb4d88317fd 100644 --- a/packages/material-ui-icons/lib/LoyaltyRounded.js +++ b/packages/material-ui-icons/lib/LoyaltyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27-3.92 3.92c-.2.2-.51.2-.71 0l-3.92-3.92c-.57-.58-.87-1.43-.67-2.34.19-.88.89-1.61 1.76-1.84.94-.25 1.85.04 2.44.65l.75.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z" -}), 'LoyaltyRounded'); \ No newline at end of file +}), 'LoyaltyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoyaltySharp.js b/packages/material-ui-icons/lib/LoyaltySharp.js index ffbda5fd2ad3de..792931de4a5b33 100644 --- a/packages/material-ui-icons/lib/LoyaltySharp.js +++ b/packages/material-ui-icons/lib/LoyaltySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.83 2H2v9.83l10.99 11s1.05-1.05 1.41-1.42L22.82 13 11.83 2zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zM13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77L13 19.54z" -}), 'LoyaltySharp'); \ No newline at end of file +}), 'LoyaltySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LoyaltyTwoTone.js b/packages/material-ui-icons/lib/LoyaltyTwoTone.js index 389a5c18e9ba83..67286eda27f770 100644 --- a/packages/material-ui-icons/lib/LoyaltyTwoTone.js +++ b/packages/material-ui-icons/lib/LoyaltyTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8zm6.5 3.7.6-.6c.37-.37.89-.6 1.45-.6 1.13 0 2.05.92 2.05 2.05 0 .57-.23 1.08-.6 1.45L13 17.5 9.5 14c-.37-.38-.6-.89-.6-1.45 0-1.13.92-2.05 2.05-2.05.57 0 1.08.23 1.45.61l.6.59z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "6.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z" -}, "3")], 'LoyaltyTwoTone'); \ No newline at end of file +}, "3")], 'LoyaltyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LteMobiledata.js b/packages/material-ui-icons/lib/LteMobiledata.js index 9ef8b2bc23e800..60135b33675ef1 100644 --- a/packages/material-ui-icons/lib/LteMobiledata.js +++ b/packages/material-ui-icons/lib/LteMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" -}), 'LteMobiledata'); \ No newline at end of file +}), 'LteMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LteMobiledataOutlined.js b/packages/material-ui-icons/lib/LteMobiledataOutlined.js index 33c44dc5d89415..64800d6a6186d8 100644 --- a/packages/material-ui-icons/lib/LteMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/LteMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" -}), 'LteMobiledataOutlined'); \ No newline at end of file +}), 'LteMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LteMobiledataRounded.js b/packages/material-ui-icons/lib/LteMobiledataRounded.js index a3696006edda9c..e414c2cf184aba 100644 --- a/packages/material-ui-icons/lib/LteMobiledataRounded.js +++ b/packages/material-ui-icons/lib/LteMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 14h2c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v5zm4-4h1v5c0 .55.45 1 1 1s1-.45 1-1v-5h1c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm11-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1z" -}), 'LteMobiledataRounded'); \ No newline at end of file +}), 'LteMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LteMobiledataSharp.js b/packages/material-ui-icons/lib/LteMobiledataSharp.js index 798d9bc7d3dbac..5bffc0d48682e0 100644 --- a/packages/material-ui-icons/lib/LteMobiledataSharp.js +++ b/packages/material-ui-icons/lib/LteMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" -}), 'LteMobiledataSharp'); \ No newline at end of file +}), 'LteMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LteMobiledataTwoTone.js b/packages/material-ui-icons/lib/LteMobiledataTwoTone.js index 74c90e07d9775f..9debbd17004563 100644 --- a/packages/material-ui-icons/lib/LteMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/LteMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" -}), 'LteMobiledataTwoTone'); \ No newline at end of file +}), 'LteMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LtePlusMobiledata.js b/packages/material-ui-icons/lib/LtePlusMobiledata.js index b24df10a18c5d5..ce991073d7c379 100644 --- a/packages/material-ui-icons/lib/LtePlusMobiledata.js +++ b/packages/material-ui-icons/lib/LtePlusMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'LtePlusMobiledata'); \ No newline at end of file +}), 'LtePlusMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LtePlusMobiledataOutlined.js b/packages/material-ui-icons/lib/LtePlusMobiledataOutlined.js index 2575cc1175cbb0..e17b3553d33739 100644 --- a/packages/material-ui-icons/lib/LtePlusMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/LtePlusMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'LtePlusMobiledataOutlined'); \ No newline at end of file +}), 'LtePlusMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LtePlusMobiledataRounded.js b/packages/material-ui-icons/lib/LtePlusMobiledataRounded.js index ba5978ccc9fb51..6abcd943438a3a 100644 --- a/packages/material-ui-icons/lib/LtePlusMobiledataRounded.js +++ b/packages/material-ui-icons/lib/LtePlusMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h2c.55 0 1 .45 1 1s-.45 1-1 1H2c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v5zm3-4h1v5c0 .55.45 1 1 1s1-.45 1-1v-5h1c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm7 6h3c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm10-5h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'LtePlusMobiledataRounded'); \ No newline at end of file +}), 'LtePlusMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LtePlusMobiledataSharp.js b/packages/material-ui-icons/lib/LtePlusMobiledataSharp.js index b4725ecb7dc3e0..83101aa29ca8aa 100644 --- a/packages/material-ui-icons/lib/LtePlusMobiledataSharp.js +++ b/packages/material-ui-icons/lib/LtePlusMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'LtePlusMobiledataSharp'); \ No newline at end of file +}), 'LtePlusMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LtePlusMobiledataTwoTone.js b/packages/material-ui-icons/lib/LtePlusMobiledataTwoTone.js index 48bee68cd0aa8c..6c8f7fc21a9717 100644 --- a/packages/material-ui-icons/lib/LtePlusMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/LtePlusMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" -}), 'LtePlusMobiledataTwoTone'); \ No newline at end of file +}), 'LtePlusMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Luggage.js b/packages/material-ui-icons/lib/Luggage.js index e07e8e46da6447..b0b65af7828856 100644 --- a/packages/material-ui-icons/lib/Luggage.js +++ b/packages/material-ui-icons/lib/Luggage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zm.75-12h-3V3.5h3V6zM16 18h-1.5V9H16v9z" -}), 'Luggage'); \ No newline at end of file +}), 'Luggage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LuggageOutlined.js b/packages/material-ui-icons/lib/LuggageOutlined.js index 0c2e4237bfce3f..4020eee4be5c91 100644 --- a/packages/material-ui-icons/lib/LuggageOutlined.js +++ b/packages/material-ui-icons/lib/LuggageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zM16 18h-1.5V9H16v9zm1-12h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6.5-2.5h3V6h-3V3.5zM17 19H7V8h10v11z" -}), 'LuggageOutlined'); \ No newline at end of file +}), 'LuggageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LuggageRounded.js b/packages/material-ui-icons/lib/LuggageRounded.js index 223be830cbc38d..a5ab3c1789ce5c 100644 --- a/packages/material-ui-icons/lib/LuggageRounded.js +++ b/packages/material-ui-icons/lib/LuggageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8.75 18c-.41 0-.75-.34-.75-.75v-7.5c0-.41.34-.75.75-.75s.75.34.75.75v7.5c0 .41-.34.75-.75.75zM12 18c-.41 0-.75-.34-.75-.75v-7.5c0-.41.34-.75.75-.75s.75.34.75.75v7.5c0 .41-.34.75-.75.75zm1.5-12h-3V3.5h3V6zm1.75 12c-.41 0-.75-.34-.75-.75v-7.5c0-.41.34-.75.75-.75s.75.34.75.75v7.5c0 .41-.34.75-.75.75z" -}), 'LuggageRounded'); \ No newline at end of file +}), 'LuggageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LuggageSharp.js b/packages/material-ui-icons/lib/LuggageSharp.js index 68b241315d06f4..6855a601d88d2f 100644 --- a/packages/material-ui-icons/lib/LuggageSharp.js +++ b/packages/material-ui-icons/lib/LuggageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 6h-4V2H9v4H5v15h2c0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1h2V6zM9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zm.75-12h-3V3.5h3V6zM16 18h-1.5V9H16v9z" -}), 'LuggageSharp'); \ No newline at end of file +}), 'LuggageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LuggageTwoTone.js b/packages/material-ui-icons/lib/LuggageTwoTone.js index 5ea8684d170e36..58e4ffc6147aff 100644 --- a/packages/material-ui-icons/lib/LuggageTwoTone.js +++ b/packages/material-ui-icons/lib/LuggageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8v11h10V8H7zm2.5 10H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zM16 18h-1.5V9H16v9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zM16 18h-1.5V9H16v9zm1-12h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6.5-2.5h3V6h-3V3.5zM17 19H7V8h10v11z" -}, "1")], 'LuggageTwoTone'); \ No newline at end of file +}, "1")], 'LuggageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LunchDining.js b/packages/material-ui-icons/lib/LunchDining.js index 1975b361523f9e..771af442aadc0c 100644 --- a/packages/material-ui-icons/lib/LunchDining.js +++ b/packages/material-ui-icons/lib/LunchDining.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M22 10c.32-3.28-4.28-6-9.99-6S1.7 6.72 2.02 10H22zM5.35 13.5c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.63 2.17.64v-1.98s-.79-.16-1.16-.38c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.21-.64.37-.23.59-.36 1.14-.36zM2 16v2c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2H2z" -}), 'LunchDining'); \ No newline at end of file +}), 'LunchDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LunchDiningOutlined.js b/packages/material-ui-icons/lib/LunchDiningOutlined.js index 517b4309a95b59..59f79ffeb1679f 100644 --- a/packages/material-ui-icons/lib/LunchDiningOutlined.js +++ b/packages/material-ui-icons/lib/LunchDiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-3H2v3zm2-1h16v1H4v-1zm14.66-6.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9zM4.18 8C5.01 5.81 8.61 5 12 5c3.31 0 5.93.73 7.19 1.99.3.31.52.64.65 1.01H4.18z" -}), 'LunchDiningOutlined'); \ No newline at end of file +}), 'LunchDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LunchDiningRounded.js b/packages/material-ui-icons/lib/LunchDiningRounded.js index 3f81ac7204a744..90e75294dd5287 100644 --- a/packages/material-ui-icons/lib/LunchDiningRounded.js +++ b/packages/material-ui-icons/lib/LunchDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.37 14.28c.79-.29 1.17-.78 1.99-.78 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 .81 0 1.17.46 1.93.76.67.26 1.39-.25 1.39-.96 0-.43-.28-.81-.69-.96-.97-.35-1.22-.83-2.65-.83-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.55 0-1.96.63-2.68.89-.39.14-.65.52-.65.94 0 .69.7 1.18 1.36.94zM2 19c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-1c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v1zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9c0 .55.45 1 1 1h18c.55 0 1-.45 1-1z" -}), 'LunchDiningRounded'); \ No newline at end of file +}), 'LunchDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LunchDiningSharp.js b/packages/material-ui-icons/lib/LunchDiningSharp.js index 5ebb7db64a13fe..a6f0e9f622a147 100644 --- a/packages/material-ui-icons/lib/LunchDiningSharp.js +++ b/packages/material-ui-icons/lib/LunchDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16h20v5H2zm16.66-4.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9z" -}), 'LunchDiningSharp'); \ No newline at end of file +}), 'LunchDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/LunchDiningTwoTone.js b/packages/material-ui-icons/lib/LunchDiningTwoTone.js index 1a23097b71bb5c..643c1720d5dc9b 100644 --- a/packages/material-ui-icons/lib/LunchDiningTwoTone.js +++ b/packages/material-ui-icons/lib/LunchDiningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M4 18h16v1H4zm8-13c-3.39 0-6.99.81-7.82 3h15.66c-.13-.37-.35-.7-.66-1.01C17.93 5.73 15.31 5 12 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 19c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-3H2v3zm2-1h16v1H4v-1zm14.66-6.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9zM4.18 8C5.01 5.81 8.61 5 12 5c3.31 0 5.93.73 7.19 1.99.3.31.52.64.65 1.01H4.18z" -}, "1")], 'LunchDiningTwoTone'); \ No newline at end of file +}, "1")], 'LunchDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mail.js b/packages/material-ui-icons/lib/Mail.js index 7b784b1e0bb3c3..2b9fd109ff65cb 100644 --- a/packages/material-ui-icons/lib/Mail.js +++ b/packages/material-ui-icons/lib/Mail.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" -}), 'Mail'); \ No newline at end of file +}), 'Mail'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailOutline.js b/packages/material-ui-icons/lib/MailOutline.js index fce19a1ed4211f..b663127aee1f16 100644 --- a/packages/material-ui-icons/lib/MailOutline.js +++ b/packages/material-ui-icons/lib/MailOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" -}), 'MailOutline'); \ No newline at end of file +}), 'MailOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailOutlineOutlined.js b/packages/material-ui-icons/lib/MailOutlineOutlined.js index 1549e89ddd2675..0caa6e1d03f7f1 100644 --- a/packages/material-ui-icons/lib/MailOutlineOutlined.js +++ b/packages/material-ui-icons/lib/MailOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" -}), 'MailOutlineOutlined'); \ No newline at end of file +}), 'MailOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailOutlineRounded.js b/packages/material-ui-icons/lib/MailOutlineRounded.js index 9525bacf32df0b..5531637dd35a3b 100644 --- a/packages/material-ui-icons/lib/MailOutlineRounded.js +++ b/packages/material-ui-icons/lib/MailOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H5c-.55 0-1-.45-1-1V8l6.94 4.34c.65.41 1.47.41 2.12 0L20 8v9c0 .55-.45 1-1 1zm-7-7L4 6h16l-8 5z" -}), 'MailOutlineRounded'); \ No newline at end of file +}), 'MailOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailOutlineSharp.js b/packages/material-ui-icons/lib/MailOutlineSharp.js index 1eb2e682868690..10ef12e814c893 100644 --- a/packages/material-ui-icons/lib/MailOutlineSharp.js +++ b/packages/material-ui-icons/lib/MailOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2.01L2 20h20V4zm-2 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" -}), 'MailOutlineSharp'); \ No newline at end of file +}), 'MailOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailOutlineTwoTone.js b/packages/material-ui-icons/lib/MailOutlineTwoTone.js index 7c212271d105dc..bf1763ed3ed60b 100644 --- a/packages/material-ui-icons/lib/MailOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/MailOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" -}), 'MailOutlineTwoTone'); \ No newline at end of file +}), 'MailOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailOutlined.js b/packages/material-ui-icons/lib/MailOutlined.js index 07a8737c1a3c15..d6c83eeb3e1d0f 100644 --- a/packages/material-ui-icons/lib/MailOutlined.js +++ b/packages/material-ui-icons/lib/MailOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z" -}), 'MailOutlined'); \ No newline at end of file +}), 'MailOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailRounded.js b/packages/material-ui-icons/lib/MailRounded.js index 5db4a190338259..6a15087effa46c 100644 --- a/packages/material-ui-icons/lib/MailRounded.js +++ b/packages/material-ui-icons/lib/MailRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" -}), 'MailRounded'); \ No newline at end of file +}), 'MailRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailSharp.js b/packages/material-ui-icons/lib/MailSharp.js index ddceb90da33b77..216e3256ddca30 100644 --- a/packages/material-ui-icons/lib/MailSharp.js +++ b/packages/material-ui-icons/lib/MailSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" -}), 'MailSharp'); \ No newline at end of file +}), 'MailSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MailTwoTone.js b/packages/material-ui-icons/lib/MailTwoTone.js index 75b7484ea7f18f..202321845e0c70 100644 --- a/packages/material-ui-icons/lib/MailTwoTone.js +++ b/packages/material-ui-icons/lib/MailTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H4l8 4.99zM4 8v10h16V8l-8 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z" -}, "1")], 'MailTwoTone'); \ No newline at end of file +}, "1")], 'MailTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Male.js b/packages/material-ui-icons/lib/Male.js index 40b6328261e7d5..61ff4d772c722f 100644 --- a/packages/material-ui-icons/lib/Male.js +++ b/packages/material-ui-icons/lib/Male.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" -}), 'Male'); \ No newline at end of file +}), 'Male'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaleOutlined.js b/packages/material-ui-icons/lib/MaleOutlined.js index 861228cd74e3bd..65b4ee937f497d 100644 --- a/packages/material-ui-icons/lib/MaleOutlined.js +++ b/packages/material-ui-icons/lib/MaleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" -}), 'MaleOutlined'); \ No newline at end of file +}), 'MaleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaleRounded.js b/packages/material-ui-icons/lib/MaleRounded.js index b337ce7d4a43ff..2690f91e70f76f 100644 --- a/packages/material-ui-icons/lib/MaleRounded.js +++ b/packages/material-ui-icons/lib/MaleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9 6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V9c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zM9.5 18C7.57 18 6 16.43 6 14.5S7.57 11 9.5 11s3.5 1.57 3.5 3.5S11.43 18 9.5 18z" -}), 'MaleRounded'); \ No newline at end of file +}), 'MaleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaleSharp.js b/packages/material-ui-icons/lib/MaleSharp.js index cca5798d3d2e7a..0056e3055dbf52 100644 --- a/packages/material-ui-icons/lib/MaleSharp.js +++ b/packages/material-ui-icons/lib/MaleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" -}), 'MaleSharp'); \ No newline at end of file +}), 'MaleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaleTwoTone.js b/packages/material-ui-icons/lib/MaleTwoTone.js index de8fa09ec67ff9..d7cc71a73cf186 100644 --- a/packages/material-ui-icons/lib/MaleTwoTone.js +++ b/packages/material-ui-icons/lib/MaleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" -}), 'MaleTwoTone'); \ No newline at end of file +}), 'MaleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageAccounts.js b/packages/material-ui-icons/lib/ManageAccounts.js index ea120c28b9c025..39de19e1fd182c 100644 --- a/packages/material-ui-icons/lib/ManageAccounts.js +++ b/packages/material-ui-icons/lib/ManageAccounts.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.79-1.13-1.26-2.51-1.26-4 0-1.07.25-2.07.67-2.98zM20.75 16c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'ManageAccounts'); \ No newline at end of file +}, "1")], 'ManageAccounts'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageAccountsOutlined.js b/packages/material-ui-icons/lib/ManageAccountsOutlined.js index 77868c4ce0bbb2..203001733bab5a 100644 --- a/packages/material-ui-icons/lib/ManageAccountsOutlined.js +++ b/packages/material-ui-icons/lib/ManageAccountsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18v-.65c0-.34.16-.66.41-.81C6.1 15.53 8.03 15 10 15c.03 0 .05 0 .08.01.1-.7.3-1.37.59-1.98-.22-.02-.44-.03-.67-.03-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.42-.6-.75-1.28-.97-2H4zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm10.75 10c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'ManageAccountsOutlined'); \ No newline at end of file +}), 'ManageAccountsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageAccountsRounded.js b/packages/material-ui-icons/lib/ManageAccountsRounded.js index 31caea74684990..5057e32b287df8 100644 --- a/packages/material-ui-icons/lib/ManageAccountsRounded.js +++ b/packages/material-ui-icons/lib/ManageAccountsRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V19c0 .55.45 1 1 1h8.26c-.79-1.13-1.26-2.51-1.26-4 0-1.07.25-2.07.67-2.98z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "4" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.75 16c0-.22-.03-.42-.06-.63l.84-.73c.18-.16.22-.42.1-.63l-.59-1.02c-.12-.21-.37-.3-.59-.22l-1.06.36c-.32-.27-.68-.48-1.08-.63l-.22-1.09c-.05-.23-.25-.4-.49-.4h-1.18c-.24 0-.44.17-.49.4l-.22 1.09c-.4.15-.76.36-1.08.63l-1.06-.36c-.23-.08-.47.02-.59.22l-.59 1.02c-.12.21-.08.47.1.63l.84.73c-.03.21-.06.41-.06.63s.03.42.06.63l-.84.73c-.18.16-.22.42-.1.63l.59 1.02c.12.21.37.3.59.22l1.06-.36c.32.27.68.48 1.08.63l.22 1.09c.05.23.25.4.49.4h1.18c.24 0 .44-.17.49-.4l.22-1.09c.4-.15.76-.36 1.08-.63l1.06.36c.23.08.47-.02.59-.22l.59-1.02c.12-.21.08-.47-.1-.63l-.84-.73c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "2")], 'ManageAccountsRounded'); \ No newline at end of file +}, "2")], 'ManageAccountsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageAccountsSharp.js b/packages/material-ui-icons/lib/ManageAccountsSharp.js index 53588cbf79c88d..5c28c087207818 100644 --- a/packages/material-ui-icons/lib/ManageAccountsSharp.js +++ b/packages/material-ui-icons/lib/ManageAccountsSharp.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.79-1.13-1.26-2.51-1.26-4 0-1.07.25-2.07.67-2.98z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "4" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.75 16c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "2")], 'ManageAccountsSharp'); \ No newline at end of file +}, "2")], 'ManageAccountsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageAccountsTwoTone.js b/packages/material-ui-icons/lib/ManageAccountsTwoTone.js index 1e66f6c6519c37..ad78b118bc9f2e 100644 --- a/packages/material-ui-icons/lib/ManageAccountsTwoTone.js +++ b/packages/material-ui-icons/lib/ManageAccountsTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16c0-.34.03-.67.08-.99-.03-.01-.05-.01-.08-.01-1.97 0-3.9.53-5.59 1.54-.25.14-.41.46-.41.81V18h6.29c-.19-.63-.29-1.3-.29-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18v-.65c0-.34.16-.66.41-.81C6.1 15.53 8.03 15 10 15c.03 0 .05 0 .08.01.1-.7.3-1.37.59-1.98-.22-.02-.44-.03-.67-.03-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.42-.6-.75-1.28-.97-2H4zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm10.83 6.63-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.03-.21.06-.41.06-.63s-.03-.42-.06-.63l1.14-1-1-1.75zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "2")], 'ManageAccountsTwoTone'); \ No newline at end of file +}, "2")], 'ManageAccountsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageSearch.js b/packages/material-ui-icons/lib/ManageSearch.js index a4bfaa60c5d6d2..fc5169af77be48 100644 --- a/packages/material-ui-icons/lib/ManageSearch.js +++ b/packages/material-ui-icons/lib/ManageSearch.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z" -}), 'ManageSearch'); \ No newline at end of file +}), 'ManageSearch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageSearchOutlined.js b/packages/material-ui-icons/lib/ManageSearchOutlined.js index 6807e451c94f2f..5a168426533735 100644 --- a/packages/material-ui-icons/lib/ManageSearchOutlined.js +++ b/packages/material-ui-icons/lib/ManageSearchOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z" -}), 'ManageSearchOutlined'); \ No newline at end of file +}), 'ManageSearchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageSearchRounded.js b/packages/material-ui-icons/lib/ManageSearchRounded.js index a3417ea9bc2be3..d8b1598f76c9af 100644 --- a/packages/material-ui-icons/lib/ManageSearchRounded.js +++ b/packages/material-ui-icons/lib/ManageSearchRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 9H3c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm0 3H3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm13.88 6.29-3.12-3.12c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31-.44-3.35 2.45-6.18 5.83-5.61 1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9l3.13 3.13c.39.39.39 1.02 0 1.41-.39.39-1.03.39-1.42 0zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM3 19h8c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'ManageSearchRounded'); \ No newline at end of file +}), 'ManageSearchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageSearchSharp.js b/packages/material-ui-icons/lib/ManageSearchSharp.js index c5bdf83bc8b340..535fe233e2d53b 100644 --- a/packages/material-ui-icons/lib/ManageSearchSharp.js +++ b/packages/material-ui-icons/lib/ManageSearchSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z" -}), 'ManageSearchSharp'); \ No newline at end of file +}), 'ManageSearchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ManageSearchTwoTone.js b/packages/material-ui-icons/lib/ManageSearchTwoTone.js index 00028ee8faa79f..324b6ca6ffac09 100644 --- a/packages/material-ui-icons/lib/ManageSearchTwoTone.js +++ b/packages/material-ui-icons/lib/ManageSearchTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 12h5v2H2zm16.17 1.75c.52-.79.83-1.73.83-2.75 0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.02 0 1.96-.31 2.76-.83L20.59 19 22 17.59l-3.83-3.84zM14 14c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zM2 7h5v2H2zm0 10h10v2H2z" -}), 'ManageSearchTwoTone'); \ No newline at end of file +}), 'ManageSearchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Map.js b/packages/material-ui-icons/lib/Map.js index 2707b22742f42f..ba0dfe03165547 100644 --- a/packages/material-ui-icons/lib/Map.js +++ b/packages/material-ui-icons/lib/Map.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM15 19l-6-2.11V5l6 2.11V19z" -}), 'Map'); \ No newline at end of file +}), 'Map'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapOutlined.js b/packages/material-ui-icons/lib/MapOutlined.js index d126441b727ab9..8e871b88f3ff37 100644 --- a/packages/material-ui-icons/lib/MapOutlined.js +++ b/packages/material-ui-icons/lib/MapOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99 3-1.01v11.7l-3 1.16V6.46zm14 11.08-3 1.01V6.86l3-1.16v11.84z" -}), 'MapOutlined'); \ No newline at end of file +}), 'MapOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapRounded.js b/packages/material-ui-icons/lib/MapRounded.js index bbe79e99a39381..6358431993db25 100644 --- a/packages/material-ui-icons/lib/MapRounded.js +++ b/packages/material-ui-icons/lib/MapRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.65 4.98-5-1.75c-.42-.15-.88-.15-1.3-.01L4.36 4.56C3.55 4.84 3 5.6 3 6.46v11.85c0 1.41 1.41 2.37 2.72 1.86l2.93-1.14c.22-.09.47-.09.69-.01l5 1.75c.42.15.88.15 1.3.01l3.99-1.34c.81-.27 1.36-1.04 1.36-1.9V5.69c0-1.41-1.41-2.37-2.72-1.86l-2.93 1.14c-.22.08-.46.09-.69.01zM15 18.89l-6-2.11V5.11l6 2.11v11.67z" -}), 'MapRounded'); \ No newline at end of file +}), 'MapRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapSharp.js b/packages/material-ui-icons/lib/MapSharp.js index a4f0c43cc1fe55..afb65a4ef0459a 100644 --- a/packages/material-ui-icons/lib/MapSharp.js +++ b/packages/material-ui-icons/lib/MapSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 5.1 9 3 3 5.02v16.2l6-2.33 6 2.1 6-2.02V2.77L15 5.1zm0 13.79-6-2.11V5.11l6 2.11v11.67z" -}), 'MapSharp'); \ No newline at end of file +}), 'MapSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapTwoTone.js b/packages/material-ui-icons/lib/MapTwoTone.js index f29d33943fd029..1a23a6027952be 100644 --- a/packages/material-ui-icons/lib/MapTwoTone.js +++ b/packages/material-ui-icons/lib/MapTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 18.31 3-1.16V5.45L5 6.46zm11 .24 3-1.01V5.69l-3 1.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM8 17.15l-3 1.16V6.46l3-1.01v11.7zm6 1.38-4-1.4V5.47l4 1.4v11.66zm5-.99-3 1.01V6.86l3-1.16v11.84z" -}, "1")], 'MapTwoTone'); \ No newline at end of file +}, "1")], 'MapTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsHomeWork.js b/packages/material-ui-icons/lib/MapsHomeWork.js index cb6630115dd26c..2aae3069faeb8b 100644 --- a/packages/material-ui-icons/lib/MapsHomeWork.js +++ b/packages/material-ui-icons/lib/MapsHomeWork.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 11v10h5v-6h4v6h5V11L8 6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" -}, "1")], 'MapsHomeWork'); \ No newline at end of file +}, "1")], 'MapsHomeWork'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsHomeWorkOutlined.js b/packages/material-ui-icons/lib/MapsHomeWorkOutlined.js index 16112ad578e820..91643a386794f6 100644 --- a/packages/material-ui-icons/lib/MapsHomeWorkOutlined.js +++ b/packages/material-ui-icons/lib/MapsHomeWorkOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM1 11v10h6v-5h2v5h6V11L8 6l-7 5zm12 8h-2v-5H5v5H3v-7l5-3.5 5 3.5v7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.97l2 1.43V5h9v14h-4v2h6V3z" -}, "1")], 'MapsHomeWorkOutlined'); \ No newline at end of file +}, "1")], 'MapsHomeWorkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsHomeWorkRounded.js b/packages/material-ui-icons/lib/MapsHomeWorkRounded.js index 2f76694aa2235c..fac80a58034ba3 100644 --- a/packages/material-ui-icons/lib/MapsHomeWorkRounded.js +++ b/packages/material-ui-icons/lib/MapsHomeWorkRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.16 10.4-5-3.57c-.7-.5-1.63-.5-2.32 0l-5 3.57c-.53.38-.84.98-.84 1.63V20c0 .55.45 1 1 1h4v-6h4v6h4c.55 0 1-.45 1-1v-7.97c0-.65-.31-1.25-.84-1.63z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.03 3h-9.06C10.88 3 10 3.88 10 4.97l.09.09c.08.05.16.09.24.14l5 3.57c.76.54 1.3 1.34 1.54 2.23H19v2h-2v2h2v2h-2v4h4.03c1.09 0 1.97-.88 1.97-1.97V4.97C23 3.88 22.12 3 21.03 3zM19 9h-2V7h2v2z" -}, "1")], 'MapsHomeWorkRounded'); \ No newline at end of file +}, "1")], 'MapsHomeWorkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsHomeWorkSharp.js b/packages/material-ui-icons/lib/MapsHomeWorkSharp.js index 8e6f8ad92f8365..9b717212c094ba 100644 --- a/packages/material-ui-icons/lib/MapsHomeWorkSharp.js +++ b/packages/material-ui-icons/lib/MapsHomeWorkSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 11v10h5v-6h4v6h5V11L8 6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" -}, "1")], 'MapsHomeWorkSharp'); \ No newline at end of file +}, "1")], 'MapsHomeWorkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsHomeWorkTwoTone.js b/packages/material-ui-icons/lib/MapsHomeWorkTwoTone.js index f0395a5957b6d2..164e548d38016f 100644 --- a/packages/material-ui-icons/lib/MapsHomeWorkTwoTone.js +++ b/packages/material-ui-icons/lib/MapsHomeWorkTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11h2v2h-2v2h2v2h-2v2h4V5h-9v1.4l5 3.57V11zm0-4h2v2h-2V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3v1.97l.96.69L12 6.4V5h9v14h-4v2h6V3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12v7h2v-5h6v5h2v-7L8 8.5z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM1 11v10h6v-5h2v5h6V11L8 6l-7 5zm12 8h-2v-5H5v5H3v-7l5-3.5 5 3.5v7z" -}, "3")], 'MapsHomeWorkTwoTone'); \ No newline at end of file +}, "3")], 'MapsHomeWorkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsUgc.js b/packages/material-ui-icons/lib/MapsUgc.js index 766d909f87e83d..62e78b92152c8a 100644 --- a/packages/material-ui-icons/lib/MapsUgc.js +++ b/packages/material-ui-icons/lib/MapsUgc.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M12 2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2zm4 11h-3v3h-2v-3H8v-2h3V8h2v3h3v2z" -}), 'MapsUgc'); \ No newline at end of file +}), 'MapsUgc'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsUgcOutlined.js b/packages/material-ui-icons/lib/MapsUgcOutlined.js index 78ada916622f8a..b1e9602828054a 100644 --- a/packages/material-ui-icons/lib/MapsUgcOutlined.js +++ b/packages/material-ui-icons/lib/MapsUgcOutlined.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}, "1")], 'MapsUgcOutlined'); \ No newline at end of file +}, "1")], 'MapsUgcOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsUgcRounded.js b/packages/material-ui-icons/lib/MapsUgcRounded.js index ef94f948f91f5d..9b79ca88acc769 100644 --- a/packages/material-ui-icons/lib/MapsUgcRounded.js +++ b/packages/material-ui-icons/lib/MapsUgcRounded.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.97 0 8.9 4.56 7.82 9.72-.68 3.23-3.4 5.74-6.67 6.2-1.59.22-3.14-.01-4.58-.7-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-2.31.68c-.38.11-.74-.24-.63-.63l.7-2.39c.13-.45.07-.92-.14-1.35C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29l-1.46 4.96c-.22.75.49 1.46 1.25 1.23l4.96-1.46c1.66.79 3.56 1.15 5.58.89 4.56-.59 8.21-4.35 8.66-8.92C22.53 7.03 17.85 2 12 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M12 8c-.55 0-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V9c0-.55-.45-1-1-1z" -}, "1")], 'MapsUgcRounded'); \ No newline at end of file +}, "1")], 'MapsUgcRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsUgcSharp.js b/packages/material-ui-icons/lib/MapsUgcSharp.js index 2fc1605883161b..95d13adceee71c 100644 --- a/packages/material-ui-icons/lib/MapsUgcSharp.js +++ b/packages/material-ui-icons/lib/MapsUgcSharp.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}, "1")], 'MapsUgcSharp'); \ No newline at end of file +}, "1")], 'MapsUgcSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MapsUgcTwoTone.js b/packages/material-ui-icons/lib/MapsUgcTwoTone.js index bb4591763d36b4..17b3c115b4a1cf 100644 --- a/packages/material-ui-icons/lib/MapsUgcTwoTone.js +++ b/packages/material-ui-icons/lib/MapsUgcTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}, "2")], 'MapsUgcTwoTone'); \ No newline at end of file +}, "2")], 'MapsUgcTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Margin.js b/packages/material-ui-icons/lib/Margin.js index c47cb9e6b972f9..ea46d875632069 100644 --- a/packages/material-ui-icons/lib/Margin.js +++ b/packages/material-ui-icons/lib/Margin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" -}), 'Margin'); \ No newline at end of file +}), 'Margin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarginOutlined.js b/packages/material-ui-icons/lib/MarginOutlined.js index afc560f24bc7c7..663423785edd7a 100644 --- a/packages/material-ui-icons/lib/MarginOutlined.js +++ b/packages/material-ui-icons/lib/MarginOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2V7zM7 7h2v2H7V7zm8 0h2v2h-2V7zm-8 4h2v2H7v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z" -}), 'MarginOutlined'); \ No newline at end of file +}), 'MarginOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarginRounded.js b/packages/material-ui-icons/lib/MarginRounded.js index 5da4b2fce71cbb..507077e8d90001 100644 --- a/packages/material-ui-icons/lib/MarginRounded.js +++ b/packages/material-ui-icons/lib/MarginRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm6 3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm0 4c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}), 'MarginRounded'); \ No newline at end of file +}), 'MarginRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarginSharp.js b/packages/material-ui-icons/lib/MarginSharp.js index 022beef85e1bc2..226bb5353951f5 100644 --- a/packages/material-ui-icons/lib/MarginSharp.js +++ b/packages/material-ui-icons/lib/MarginSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm6 10H7v-2h2v2zm0-4H7V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'MarginSharp'); \ No newline at end of file +}), 'MarginSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarginTwoTone.js b/packages/material-ui-icons/lib/MarginTwoTone.js index f077f992d7935a..886813caa044ee 100644 --- a/packages/material-ui-icons/lib/MarginTwoTone.js +++ b/packages/material-ui-icons/lib/MarginTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zM15 7h2v2h-2V7zm0 4h2v2h-2v-2zm-4-4h2v2h-2V7zm0 4h2v2h-2v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h2v2H7zm0 4h2v2H7z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm16 16H5V5h14v14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v2h-2zm4 4h2v2h-2zm-4 0h2v2h-2zm4-4h2v2h-2z" -}, "3")], 'MarginTwoTone'); \ No newline at end of file +}, "3")], 'MarginTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkAsUnread.js b/packages/material-ui-icons/lib/MarkAsUnread.js index 9dd232f146a287..5e6c50bd9e257c 100644 --- a/packages/material-ui-icons/lib/MarkAsUnread.js +++ b/packages/material-ui-icons/lib/MarkAsUnread.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.83 7h-2.6L10.5 4 4 7.4V17c-1.1 0-2-.9-2-2V7.17c0-.53.32-1.09.8-1.34L10.5 2l7.54 3.83c.43.23.73.7.79 1.17zM20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.67L13.5 15 7 11.67V10l6.5 3.33L20 10v1.67z" -}), 'MarkAsUnread'); \ No newline at end of file +}), 'MarkAsUnread'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkAsUnreadOutlined.js b/packages/material-ui-icons/lib/MarkAsUnreadOutlined.js index 8b243b3a8008e5..d6def26fa4b8ce 100644 --- a/packages/material-ui-icons/lib/MarkAsUnreadOutlined.js +++ b/packages/material-ui-icons/lib/MarkAsUnreadOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.23 7h2.6c-.06-.47-.36-.94-.79-1.17L10.5 2 2.8 5.83c-.48.26-.8.81-.8 1.34V15c0 1.1.9 2 2 2V7.4L10.5 4l5.73 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11H7v-7l6.5 3.33L20 12v7zm-6.5-5.67L7 10h13l-6.5 3.33z" -}, "1")], 'MarkAsUnreadOutlined'); \ No newline at end of file +}, "1")], 'MarkAsUnreadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkAsUnreadRounded.js b/packages/material-ui-icons/lib/MarkAsUnreadRounded.js index 7f3690091d7cd9..23cbafc00a58f8 100644 --- a/packages/material-ui-icons/lib/MarkAsUnreadRounded.js +++ b/packages/material-ui-icons/lib/MarkAsUnreadRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.23 7h2.6c-.06-.47-.36-.94-.79-1.17L11.4 2.45c-.56-.29-1.23-.29-1.8-.01L2.8 5.83c-.48.26-.8.81-.8 1.34V15c0 1.1.9 2 2 2V7.4L10.5 4l5.73 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.46c0 .33-.19.64-.48.79l-5.61 2.88c-.25.13-.56.13-.81 0l-5.61-2.88c-.3-.15-.49-.46-.49-.79 0-.67.7-1.1 1.3-.79l5.2 2.67 5.2-2.67c.6-.31 1.3.12 1.3.79z" -}, "1")], 'MarkAsUnreadRounded'); \ No newline at end of file +}, "1")], 'MarkAsUnreadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkAsUnreadSharp.js b/packages/material-ui-icons/lib/MarkAsUnreadSharp.js index 94ac221fb6c533..b1bc043c869eb1 100644 --- a/packages/material-ui-icons/lib/MarkAsUnreadSharp.js +++ b/packages/material-ui-icons/lib/MarkAsUnreadSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.23 7h4.12L10.5 2 2 6.21V17h2V7.4L10.5 4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8v13h17V8H5zm15 4-6.5 3.33L7 12v-2l6.5 3.33L20 10v2z" -}, "1")], 'MarkAsUnreadSharp'); \ No newline at end of file +}, "1")], 'MarkAsUnreadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkAsUnreadTwoTone.js b/packages/material-ui-icons/lib/MarkAsUnreadTwoTone.js index 8cdac6e065d333..0b9b5f1f3c944d 100644 --- a/packages/material-ui-icons/lib/MarkAsUnreadTwoTone.js +++ b/packages/material-ui-icons/lib/MarkAsUnreadTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 13.33 20 10H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 12v7h13v-7l-6.5 3.33z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.23 7h2.6c-.06-.47-.36-.94-.79-1.17L10.5 2 2.8 5.83c-.48.26-.8.81-.8 1.34V15c0 1.1.9 2 2 2V7.4L10.5 4l5.73 3z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11H7v-7l6.5 3.33L20 12v7zm-6.5-5.67L7 10h13l-6.5 3.33z" -}, "3")], 'MarkAsUnreadTwoTone'); \ No newline at end of file +}, "3")], 'MarkAsUnreadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatRead.js b/packages/material-ui-icons/lib/MarkChatRead.js index 0773cfdd4ae6d4..a2522c27dc3d45 100644 --- a/packages/material-ui-icons/lib/MarkChatRead.js +++ b/packages/material-ui-icons/lib/MarkChatRead.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 20-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 14.34 17.34 20zM12 17c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.17.01-.33.03-.5-.02-.16-.03-.33-.03-.5z" -}), 'MarkChatRead'); \ No newline at end of file +}), 'MarkChatRead'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatReadOutlined.js b/packages/material-ui-icons/lib/MarkChatReadOutlined.js index 5bae854080fe0b..bff1a042350ce7 100644 --- a/packages/material-ui-icons/lib/MarkChatReadOutlined.js +++ b/packages/material-ui-icons/lib/MarkChatReadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18H6l-4 4V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v7h-2V4H4v12h8v2zm11-3.66-1.41-1.41-4.24 4.24-2.12-2.12-1.41 1.41L17.34 20 23 14.34z" -}), 'MarkChatReadOutlined'); \ No newline at end of file +}), 'MarkChatReadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatReadRounded.js b/packages/material-ui-icons/lib/MarkChatReadRounded.js index e40f93b6415abc..8687de26592b7d 100644 --- a/packages/material-ui-icons/lib/MarkChatReadRounded.js +++ b/packages/material-ui-icons/lib/MarkChatReadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.05 19.29c-.39.39-1.02.39-1.41 0l-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.25zM12 17c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.17.01-.33.03-.5-.02-.17-.03-.33-.03-.5z" -}), 'MarkChatReadRounded'); \ No newline at end of file +}), 'MarkChatReadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatReadSharp.js b/packages/material-ui-icons/lib/MarkChatReadSharp.js index 769b5c3f573473..6060b4e8bc5a12 100644 --- a/packages/material-ui-icons/lib/MarkChatReadSharp.js +++ b/packages/material-ui-icons/lib/MarkChatReadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.03 17.5c-.02.17-.03.33-.03.5H6l-4 4V2h20v8.68c-.91-.43-1.92-.68-3-.68-3.87 0-7 3.13-7 7 0 .17.01.33.03.5zM23 14.34l-1.41-1.41-4.24 4.24-2.12-2.12-1.41 1.41L17.34 20 23 14.34z" -}), 'MarkChatReadSharp'); \ No newline at end of file +}), 'MarkChatReadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatReadTwoTone.js b/packages/material-ui-icons/lib/MarkChatReadTwoTone.js index 8fd18a10977804..5878a2b571e489 100644 --- a/packages/material-ui-icons/lib/MarkChatReadTwoTone.js +++ b/packages/material-ui-icons/lib/MarkChatReadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10c.34 0 .67.03 1 .08V4H4v12h8.08c.49-3.39 3.39-6 6.92-6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 20-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 14.34 17.34 20zm-5.26-4H4V4h16v6.08c.71.1 1.38.31 2 .6V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.14.02-.27.03-.4-.02-.2-.03-.4-.03-.6 0-.34.03-.67.08-1z" -}, "1")], 'MarkChatReadTwoTone'); \ No newline at end of file +}, "1")], 'MarkChatReadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatUnread.js b/packages/material-ui-icons/lib/MarkChatUnread.js index 791571c8fe1b33..77e617dd649a53 100644 --- a/packages/material-ui-icons/lib/MarkChatUnread.js +++ b/packages/material-ui-icons/lib/MarkChatUnread.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6.98V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 2.76 2.24 5 5 5 1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkChatUnread'); \ No newline at end of file +}), 'MarkChatUnread'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatUnreadOutlined.js b/packages/material-ui-icons/lib/MarkChatUnreadOutlined.js index 7506987d8f857c..b12d33a922f697 100644 --- a/packages/material-ui-icons/lib/MarkChatUnreadOutlined.js +++ b/packages/material-ui-icons/lib/MarkChatUnreadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6.98V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4v12h16V7.9c.74-.15 1.42-.48 2-.92zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkChatUnreadOutlined'); \ No newline at end of file +}), 'MarkChatUnreadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatUnreadRounded.js b/packages/material-ui-icons/lib/MarkChatUnreadRounded.js index 55baddbd9cece1..b9b95edcb9ae48 100644 --- a/packages/material-ui-icons/lib/MarkChatUnreadRounded.js +++ b/packages/material-ui-icons/lib/MarkChatUnreadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6.98V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 2.76 2.24 5 5 5 1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkChatUnreadRounded'); \ No newline at end of file +}), 'MarkChatUnreadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatUnreadSharp.js b/packages/material-ui-icons/lib/MarkChatUnreadSharp.js index 62642dc6da12db..78ce2459ead376 100644 --- a/packages/material-ui-icons/lib/MarkChatUnreadSharp.js +++ b/packages/material-ui-icons/lib/MarkChatUnreadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6.98V18H6l-4 4V2h12.1c-.06.32-.1.66-.1 1 0 2.76 2.24 5 5 5 1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkChatUnreadSharp'); \ No newline at end of file +}), 'MarkChatUnreadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkChatUnreadTwoTone.js b/packages/material-ui-icons/lib/MarkChatUnreadTwoTone.js index 361644b69f80dc..54f6a60692ecc4 100644 --- a/packages/material-ui-icons/lib/MarkChatUnreadTwoTone.js +++ b/packages/material-ui-icons/lib/MarkChatUnreadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16h16V7.9c-.32.06-.66.1-1 .1-2.42 0-4.44-1.72-4.9-4H4v12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7.9c.74-.15 1.42-.48 2-.92V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4v12h16V7.9zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}, "1")], 'MarkChatUnreadTwoTone'); \ No newline at end of file +}, "1")], 'MarkChatUnreadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailRead.js b/packages/material-ui-icons/lib/MarkEmailRead.js index 678d5b49995676..bf0b7c06690714 100644 --- a/packages/material-ui-icons/lib/MarkEmailRead.js +++ b/packages/material-ui-icons/lib/MarkEmailRead.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h8.08c-.05-.33-.08-.66-.08-1zM4 6l8 5 8-5v2l-8 5-8-5V6zm13.34 16-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" -}), 'MarkEmailRead'); \ No newline at end of file +}), 'MarkEmailRead'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailReadOutlined.js b/packages/material-ui-icons/lib/MarkEmailReadOutlined.js index e0e1a8faa11dc7..e95275c0584c99 100644 --- a/packages/material-ui-icons/lib/MarkEmailReadOutlined.js +++ b/packages/material-ui-icons/lib/MarkEmailReadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h8v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm5.34 11-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" -}), 'MarkEmailReadOutlined'); \ No newline at end of file +}), 'MarkEmailReadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailReadRounded.js b/packages/material-ui-icons/lib/MarkEmailReadRounded.js index f7c0ff0d6d0e4b..7271344bad2eaf 100644 --- a/packages/material-ui-icons/lib/MarkEmailReadRounded.js +++ b/packages/material-ui-icons/lib/MarkEmailReadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.05 21.29c-.39.39-1.02.39-1.41 0l-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.25zM12.08 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v6.68c-.91-.43-1.92-.68-3-.68-3.87 0-7 3.13-7 7 0 .34.03.67.08 1zm-.61-7.33c.32.2.74.2 1.06 0l7.07-4.42c.25-.16.4-.43.4-.72 0-.67-.73-1.07-1.3-.72L12 11 5.3 6.81c-.57-.35-1.3.05-1.3.72 0 .29.15.56.4.72l7.07 4.42z" -}), 'MarkEmailReadRounded'); \ No newline at end of file +}), 'MarkEmailReadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailReadSharp.js b/packages/material-ui-icons/lib/MarkEmailReadSharp.js index 415f7613976a73..0e57d6db94f17e 100644 --- a/packages/material-ui-icons/lib/MarkEmailReadSharp.js +++ b/packages/material-ui-icons/lib/MarkEmailReadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V4H2v16h10.08c-.05-.33-.08-.66-.08-1zM4 6l8 5 8-5v2l-8 5-8-5V6zm13.34 16-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" -}), 'MarkEmailReadSharp'); \ No newline at end of file +}), 'MarkEmailReadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailReadTwoTone.js b/packages/material-ui-icons/lib/MarkEmailReadTwoTone.js index a3542d1a08f1b6..7abe68af3dcb78 100644 --- a/packages/material-ui-icons/lib/MarkEmailReadTwoTone.js +++ b/packages/material-ui-icons/lib/MarkEmailReadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8v4.08c-.33-.05-.66-.08-1-.08-3.53 0-6.43 2.61-6.92 6H4V8l8 5 8-5zm0-2H4l8 5 8-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.08 18H4V8l8 5 8-5v4.08c.71.1 1.38.31 2 .6V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h8.08c-.05-.33-.08-.66-.08-1s.03-.67.08-1zM20 6l-8 5-8-5h16zm-2.66 16-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" -}, "1")], 'MarkEmailReadTwoTone'); \ No newline at end of file +}, "1")], 'MarkEmailReadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailUnread.js b/packages/material-ui-icons/lib/MarkEmailUnread.js index 70afaa54c02dbe..4d76d13eff7d0b 100644 --- a/packages/material-ui-icons/lib/MarkEmailUnread.js +++ b/packages/material-ui-icons/lib/MarkEmailUnread.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 8.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 4 6v2l8 5 5.3-3.32c.54.2 1.1.32 1.7.32 1.13 0 2.16-.39 3-1.02zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkEmailUnread'); \ No newline at end of file +}), 'MarkEmailUnread'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailUnreadOutlined.js b/packages/material-ui-icons/lib/MarkEmailUnreadOutlined.js index daea559b2d486f..e152ffb41d65b4 100644 --- a/packages/material-ui-icons/lib/MarkEmailUnreadOutlined.js +++ b/packages/material-ui-icons/lib/MarkEmailUnreadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 8.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4l8 5 3.67-2.29c.47.43 1.02.76 1.63.98L12 13 4 8v10h16V9.9c.74-.15 1.42-.48 2-.92zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkEmailUnreadOutlined'); \ No newline at end of file +}), 'MarkEmailUnreadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailUnreadRounded.js b/packages/material-ui-icons/lib/MarkEmailUnreadRounded.js index 72a84bbcb3b325..b984a6840bc92a 100644 --- a/packages/material-ui-icons/lib/MarkEmailUnreadRounded.js +++ b/packages/material-ui-icons/lib/MarkEmailUnreadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10c1.13 0 2.16-.39 3-1.02V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 5.3 6.81c-.57-.35-1.3.05-1.3.72 0 .29.15.56.4.72l7.07 4.42c.32.2.74.2 1.06 0l4.77-2.98c.54.19 1.1.31 1.7.31zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkEmailUnreadRounded'); \ No newline at end of file +}), 'MarkEmailUnreadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailUnreadSharp.js b/packages/material-ui-icons/lib/MarkEmailUnreadSharp.js index 836b150fc4550b..ba90f9ffb1021d 100644 --- a/packages/material-ui-icons/lib/MarkEmailUnreadSharp.js +++ b/packages/material-ui-icons/lib/MarkEmailUnreadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 8.98V20H2V4h12.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 4 6v2l8 5 5.3-3.32c.54.2 1.1.32 1.7.32 1.13 0 2.16-.39 3-1.02zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'MarkEmailUnreadSharp'); \ No newline at end of file +}), 'MarkEmailUnreadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkEmailUnreadTwoTone.js b/packages/material-ui-icons/lib/MarkEmailUnreadTwoTone.js index fb4f9072651ae9..156058bb0f31b8 100644 --- a/packages/material-ui-icons/lib/MarkEmailUnreadTwoTone.js +++ b/packages/material-ui-icons/lib/MarkEmailUnreadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h10.1c.22 1.07.79 2 1.57 2.71L12 11 4 6zm0 2v10h16V9.9c-.32.07-.66.1-1 .1-.6 0-1.16-.12-1.7-.32L12 13 4 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9.9c.74-.15 1.42-.48 2-.92V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4l8 5 3.67-2.29c.47.43 1.02.76 1.63.98L12 13 4 8v10h16V9.9zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}, "1")], 'MarkEmailUnreadTwoTone'); \ No newline at end of file +}, "1")], 'MarkEmailUnreadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Markunread.js b/packages/material-ui-icons/lib/Markunread.js index 0445f977d63d27..25dc5882af984a 100644 --- a/packages/material-ui-icons/lib/Markunread.js +++ b/packages/material-ui-icons/lib/Markunread.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" -}), 'Markunread'); \ No newline at end of file +}), 'Markunread'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadMailbox.js b/packages/material-ui-icons/lib/MarkunreadMailbox.js index 47a891380cf193..c6794250627abf 100644 --- a/packages/material-ui-icons/lib/MarkunreadMailbox.js +++ b/packages/material-ui-icons/lib/MarkunreadMailbox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H10v6H8V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" -}), 'MarkunreadMailbox'); \ No newline at end of file +}), 'MarkunreadMailbox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadMailboxOutlined.js b/packages/material-ui-icons/lib/MarkunreadMailboxOutlined.js index 470c1a28b0d8d0..1a5160af0e70d9 100644 --- a/packages/material-ui-icons/lib/MarkunreadMailboxOutlined.js +++ b/packages/material-ui-icons/lib/MarkunreadMailboxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" -}), 'MarkunreadMailboxOutlined'); \ No newline at end of file +}), 'MarkunreadMailboxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadMailboxRounded.js b/packages/material-ui-icons/lib/MarkunreadMailboxRounded.js index 9e7a9354ff19c4..8de680988f2851 100644 --- a/packages/material-ui-icons/lib/MarkunreadMailboxRounded.js +++ b/packages/material-ui-icons/lib/MarkunreadMailboxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H10v5c0 .55-.45 1-1 1s-1-.45-1-1V4h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" -}), 'MarkunreadMailboxRounded'); \ No newline at end of file +}), 'MarkunreadMailboxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadMailboxSharp.js b/packages/material-ui-icons/lib/MarkunreadMailboxSharp.js index 3c94a08465288f..3af2a2bac84bb9 100644 --- a/packages/material-ui-icons/lib/MarkunreadMailboxSharp.js +++ b/packages/material-ui-icons/lib/MarkunreadMailboxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H10v6H8V4h6V0H6v6H2v16h20V6z" -}), 'MarkunreadMailboxSharp'); \ No newline at end of file +}), 'MarkunreadMailboxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadMailboxTwoTone.js b/packages/material-ui-icons/lib/MarkunreadMailboxTwoTone.js index 175da4df496926..aafbd0df16a3ed 100644 --- a/packages/material-ui-icons/lib/MarkunreadMailboxTwoTone.js +++ b/packages/material-ui-icons/lib/MarkunreadMailboxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12H6V8H4v12h16V8H10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" -}, "1")], 'MarkunreadMailboxTwoTone'); \ No newline at end of file +}, "1")], 'MarkunreadMailboxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadOutlined.js b/packages/material-ui-icons/lib/MarkunreadOutlined.js index 3a2db831c6b686..c463ca09d8eb74 100644 --- a/packages/material-ui-icons/lib/MarkunreadOutlined.js +++ b/packages/material-ui-icons/lib/MarkunreadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" -}), 'MarkunreadOutlined'); \ No newline at end of file +}), 'MarkunreadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadRounded.js b/packages/material-ui-icons/lib/MarkunreadRounded.js index 8ac31df6c9520b..e59a8bec35ff7a 100644 --- a/packages/material-ui-icons/lib/MarkunreadRounded.js +++ b/packages/material-ui-icons/lib/MarkunreadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" -}), 'MarkunreadRounded'); \ No newline at end of file +}), 'MarkunreadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadSharp.js b/packages/material-ui-icons/lib/MarkunreadSharp.js index 720ef4723aa2fc..22842cdf8022e5 100644 --- a/packages/material-ui-icons/lib/MarkunreadSharp.js +++ b/packages/material-ui-icons/lib/MarkunreadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" -}), 'MarkunreadSharp'); \ No newline at end of file +}), 'MarkunreadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MarkunreadTwoTone.js b/packages/material-ui-icons/lib/MarkunreadTwoTone.js index 1928034c0d31ab..1965746f8961e2 100644 --- a/packages/material-ui-icons/lib/MarkunreadTwoTone.js +++ b/packages/material-ui-icons/lib/MarkunreadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H4l8 5zM4 8v10h16V8l-8 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" -}, "1")], 'MarkunreadTwoTone'); \ No newline at end of file +}, "1")], 'MarkunreadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Masks.js b/packages/material-ui-icons/lib/Masks.js index 22185d1a6d9833..8805bdb77eeab7 100644 --- a/packages/material-ui-icons/lib/Masks.js +++ b/packages/material-ui-icons/lib/Masks.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm17 0c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" -}), 'Masks'); \ No newline at end of file +}), 'Masks'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MasksOutlined.js b/packages/material-ui-icons/lib/MasksOutlined.js index 6de4a91dbd3de6..d106212c6cf80c 100644 --- a/packages/material-ui-icons/lib/MasksOutlined.js +++ b/packages/material-ui-icons/lib/MasksOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zM7 11.5V9.85c1.12-.23 1.95-.69 2.66-1.08C10.48 8.33 11.07 8 12 8c.93 0 1.52.33 2.34.78.71.39 1.54.84 2.66 1.08v1.65c0 2.76-2.24 5-5 5s-5-2.25-5-5.01zM20.5 9c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" -}), 'MasksOutlined'); \ No newline at end of file +}), 'MasksOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MasksRounded.js b/packages/material-ui-icons/lib/MasksRounded.js index 0ed5c913b8680d..cbc081eb60c5ea 100644 --- a/packages/material-ui-icons/lib/MasksRounded.js +++ b/packages/material-ui-icons/lib/MasksRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm10.8 2.01c-.4-.17-.72-.36-1.01-.53-.46-.28-.8-.48-1.29-.48s-.84.2-1.31.48c-.28.17-.6.35-.98.51-.34.15-.71-.08-.71-.45 0-.2.11-.38.29-.45.34-.14.62-.31.88-.46C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.27.16.55.33.9.48.18.08.29.26.29.45.01.36-.36.6-.69.46zM20.5 9c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9z" -}), 'MasksRounded'); \ No newline at end of file +}), 'MasksRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MasksSharp.js b/packages/material-ui-icons/lib/MasksSharp.js index 0bc0dc53f4d250..2549210201e190 100644 --- a/packages/material-ui-icons/lib/MasksSharp.js +++ b/packages/material-ui-icons/lib/MasksSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm17 0c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" -}), 'MasksSharp'); \ No newline at end of file +}), 'MasksSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MasksTwoTone.js b/packages/material-ui-icons/lib/MasksTwoTone.js index baeaaf470ae005..f398c17d09296c 100644 --- a/packages/material-ui-icons/lib/MasksTwoTone.js +++ b/packages/material-ui-icons/lib/MasksTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.34 8.78C13.52 8.33 12.93 8 12 8c-.93 0-1.52.33-2.34.77-.71.39-1.54.85-2.66 1.08v1.65c0 2.76 2.24 5 5 5s5-2.24 5-5V9.85c-1.12-.23-1.95-.69-2.66-1.07zm.66 2.47c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zM7 11.5V9.85c1.12-.23 1.95-.69 2.66-1.08C10.48 8.33 11.07 8 12 8c.93 0 1.52.33 2.34.78.71.39 1.54.84 2.66 1.08v1.65c0 2.76-2.24 5-5 5s-5-2.25-5-5.01zM20.5 9c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" -}, "1")], 'MasksTwoTone'); \ No newline at end of file +}, "1")], 'MasksTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Maximize.js b/packages/material-ui-icons/lib/Maximize.js index 0972fc5d490b3e..919c0ec581dffb 100644 --- a/packages/material-ui-icons/lib/Maximize.js +++ b/packages/material-ui-icons/lib/Maximize.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3z" -}), 'Maximize'); \ No newline at end of file +}), 'Maximize'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaximizeOutlined.js b/packages/material-ui-icons/lib/MaximizeOutlined.js index a4e77003e02928..1877b0f9d4ef03 100644 --- a/packages/material-ui-icons/lib/MaximizeOutlined.js +++ b/packages/material-ui-icons/lib/MaximizeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3V3z" -}), 'MaximizeOutlined'); \ No newline at end of file +}), 'MaximizeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaximizeRounded.js b/packages/material-ui-icons/lib/MaximizeRounded.js index c33c5b69e2fb3e..37b5cd5ff58c88 100644 --- a/packages/material-ui-icons/lib/MaximizeRounded.js +++ b/packages/material-ui-icons/lib/MaximizeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 3h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'MaximizeRounded'); \ No newline at end of file +}), 'MaximizeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaximizeSharp.js b/packages/material-ui-icons/lib/MaximizeSharp.js index 6a4aa8df2ef761..7be49ad2e1d24f 100644 --- a/packages/material-ui-icons/lib/MaximizeSharp.js +++ b/packages/material-ui-icons/lib/MaximizeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3V3z" -}), 'MaximizeSharp'); \ No newline at end of file +}), 'MaximizeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MaximizeTwoTone.js b/packages/material-ui-icons/lib/MaximizeTwoTone.js index 6d8b530362950c..0034977c6c6bd5 100644 --- a/packages/material-ui-icons/lib/MaximizeTwoTone.js +++ b/packages/material-ui-icons/lib/MaximizeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3h18v2H3V3z" -}), 'MaximizeTwoTone'); \ No newline at end of file +}), 'MaximizeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOff.js b/packages/material-ui-icons/lib/MediaBluetoothOff.js index 769258e6a23027..6636f5a016c18d 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOff.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm2.02 7.64-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l18.39 18.38z" -}), 'MediaBluetoothOff'); \ No newline at end of file +}), 'MediaBluetoothOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOffOutlined.js b/packages/material-ui-icons/lib/MediaBluetoothOffOutlined.js index 5e0b0df47da49b..2823dbc87b8c82 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOffOutlined.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm2.02 7.64-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l18.39 18.38z" -}), 'MediaBluetoothOffOutlined'); \ No newline at end of file +}), 'MediaBluetoothOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOffRounded.js b/packages/material-ui-icons/lib/MediaBluetoothOffRounded.js index 1e0c6901f13b83..c7647314b0caf8 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOffRounded.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V5c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2s-.9 2-2 2h-2v1.17l-2-2zM19.42 15l2.18 2.17c.22.22.22.58 0 .8-.22.22-.58.22-.8 0l-5.98-5.98c-.22-.22-.22-.58 0-.8.22-.22.58-.22.8 0l2.35 2.35V9.61c0-.45.54-.67.85-.35l2.82 2.82c.2.2.2.51 0 .71L19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm1.32 6.94c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-3.28-3.28-.16.16c-.23.23-.62.23-.85 0-.23-.23-.23-.62 0-.85l.16-.16L11 13.83v3.02c0 2.07-1.68 4.01-3.74 4.14C4.94 21.13 3 19.29 3 17c0-2.21 1.79-4 4.01-4 .73 0 1.41.21 2 .55v-1.72L2.1 4.92a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.98 16.98z" -}), 'MediaBluetoothOffRounded'); \ No newline at end of file +}), 'MediaBluetoothOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOffSharp.js b/packages/material-ui-icons/lib/MediaBluetoothOffSharp.js index dd47ed977089b2..10e5e0fc47617f 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOffSharp.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm-1.96 3.66 3.98 3.98-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l13.56 13.56.85.84z" -}), 'MediaBluetoothOffSharp'); \ No newline at end of file +}), 'MediaBluetoothOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOffTwoTone.js b/packages/material-ui-icons/lib/MediaBluetoothOffTwoTone.js index c7cb68c7d448ff..d2c9757e7d13a0 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOffTwoTone.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm-1.96 3.66 3.98 3.98-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l13.56 13.56.85.84z" -}), 'MediaBluetoothOffTwoTone'); \ No newline at end of file +}), 'MediaBluetoothOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOn.js b/packages/material-ui-icons/lib/MediaBluetoothOn.js index 0dbaad4746953b..dc8cb4dfd7f866 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOn.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" -}), 'MediaBluetoothOn'); \ No newline at end of file +}), 'MediaBluetoothOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOnOutlined.js b/packages/material-ui-icons/lib/MediaBluetoothOnOutlined.js index 2119cd620833bf..b238d1ef066fb0 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOnOutlined.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" -}), 'MediaBluetoothOnOutlined'); \ No newline at end of file +}), 'MediaBluetoothOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOnRounded.js b/packages/material-ui-icons/lib/MediaBluetoothOnRounded.js index 09ede627d1df39..169ab265bd9e38 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOnRounded.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 5 .01 8.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2zm11.29 6.72-2.47-2.47c-.32-.31-.85-.09-.85.35v3.94l-2.33-2.33c-.23-.23-.61-.23-.85 0-.23.23-.23.62 0 .85L16.73 15l-2.93 2.93c-.23.23-.23.61 0 .85.23.23.61.23.85 0l2.33-2.33v3.94c0 .45.54.67.85.35l2.46-2.46c.39-.39.39-1.02 0-1.41L18.42 15l1.87-1.86c.39-.39.39-1.03 0-1.42zm-2.12-.42 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" -}), 'MediaBluetoothOnRounded'); \ No newline at end of file +}), 'MediaBluetoothOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOnSharp.js b/packages/material-ui-icons/lib/MediaBluetoothOnSharp.js index 11b90b58e6e32f..295b2512f7351b 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOnSharp.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" -}), 'MediaBluetoothOnSharp'); \ No newline at end of file +}), 'MediaBluetoothOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediaBluetoothOnTwoTone.js b/packages/material-ui-icons/lib/MediaBluetoothOnTwoTone.js index 35450a23aaf7ba..84c91662db1f5f 100644 --- a/packages/material-ui-icons/lib/MediaBluetoothOnTwoTone.js +++ b/packages/material-ui-icons/lib/MediaBluetoothOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" -}), 'MediaBluetoothOnTwoTone'); \ No newline at end of file +}), 'MediaBluetoothOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mediation.js b/packages/material-ui-icons/lib/Mediation.js index 5d2b14a2f29c88..7ea2abb7b75196 100644 --- a/packages/material-ui-icons/lib/Mediation.js +++ b/packages/material-ui-icons/lib/Mediation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4 4-1.41-1.41L18.17 13h-5.23c-.34 3.1-2.26 5.72-4.94 7.05C7.96 21.69 6.64 23 5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05h5.23l-1.58-1.59L18 8l4 4z" -}), 'Mediation'); \ No newline at end of file +}), 'Mediation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediationOutlined.js b/packages/material-ui-icons/lib/MediationOutlined.js index f27520b7325c9e..5e9fe6aeece778 100644 --- a/packages/material-ui-icons/lib/MediationOutlined.js +++ b/packages/material-ui-icons/lib/MediationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 16 4-4-4-4v3h-5.06C12.6 7.9 10.68 5.28 8 3.95 7.96 2.31 6.64 1 5 1 3.34 1 2 2.34 2 4s1.34 3 3 3c.95 0 1.78-.45 2.33-1.14C9.23 6.9 10.6 8.77 10.92 11h-3.1C7.4 9.84 6.3 9 5 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2h3.1c-.32 2.23-1.69 4.1-3.58 5.14C6.78 17.45 5.95 17 5 17c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.64 0 2.96-1.31 2.99-2.95 2.68-1.33 4.6-3.95 4.94-7.05H18v3z" -}), 'MediationOutlined'); \ No newline at end of file +}), 'MediationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediationRounded.js b/packages/material-ui-icons/lib/MediationRounded.js index fa108968c765ba..94cebdd07ba4e9 100644 --- a/packages/material-ui-icons/lib/MediationRounded.js +++ b/packages/material-ui-icons/lib/MediationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h-5.06c-.34 3.1-2.26 5.72-4.94 7.05-.03 1.81-1.66 3.23-3.55 2.9-1.2-.21-2.19-1.2-2.4-2.4C1.71 18.65 3.16 17 5 17c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1c-.48 1.34-1.86 2.24-3.42 1.94-1.18-.23-2.13-1.2-2.35-2.38C1.7 10.66 3.16 9 5 9c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14-.64.8-1.67 1.28-2.81 1.1-1.23-.19-2.26-1.19-2.47-2.42C1.72 2.65 3.17 1 5 1c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05H18V9.21c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36V13z" -}), 'MediationRounded'); \ No newline at end of file +}), 'MediationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediationSharp.js b/packages/material-ui-icons/lib/MediationSharp.js index 71af5c14af5c77..58072e2275bf19 100644 --- a/packages/material-ui-icons/lib/MediationSharp.js +++ b/packages/material-ui-icons/lib/MediationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13h-5.06c-.34 3.1-2.26 5.72-4.94 7.05C7.96 21.69 6.64 23 5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05H18V8l4 4-4 4v-3z" -}), 'MediationSharp'); \ No newline at end of file +}), 'MediationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MediationTwoTone.js b/packages/material-ui-icons/lib/MediationTwoTone.js index 80ef54b9353216..8a7221ddf1e5f1 100644 --- a/packages/material-ui-icons/lib/MediationTwoTone.js +++ b/packages/material-ui-icons/lib/MediationTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 16 4-4-4-4v3h-5.06C12.6 7.9 10.68 5.28 8 3.95 7.96 2.31 6.64 1 5 1 3.34 1 2 2.34 2 4s1.34 3 3 3c.95 0 1.78-.45 2.33-1.14C9.23 6.9 10.6 8.77 10.92 11h-3.1C7.4 9.84 6.3 9 5 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2h3.1c-.32 2.23-1.69 4.1-3.58 5.14C6.78 17.45 5.95 17 5 17c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.64 0 2.96-1.31 2.99-2.95 2.68-1.33 4.6-3.95 4.94-7.05H18v3z" -}), 'MediationTwoTone'); \ No newline at end of file +}), 'MediationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicalServices.js b/packages/material-ui-icons/lib/MedicalServices.js index ab6c967322c9c1..2290619fc58790 100644 --- a/packages/material-ui-icons/lib/MedicalServices.js +++ b/packages/material-ui-icons/lib/MedicalServices.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm6 11h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" -}), 'MedicalServices'); \ No newline at end of file +}), 'MedicalServices'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicalServicesOutlined.js b/packages/material-ui-icons/lib/MedicalServicesOutlined.js index 149074769c0fa4..ce0ea50c776e2a 100644 --- a/packages/material-ui-icons/lib/MedicalServicesOutlined.js +++ b/packages/material-ui-icons/lib/MedicalServicesOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10h-2v3H8v2h3v3h2v-3h3v-2h-3z" -}, "1")], 'MedicalServicesOutlined'); \ No newline at end of file +}, "1")], 'MedicalServicesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicalServicesRounded.js b/packages/material-ui-icons/lib/MedicalServicesRounded.js index 5d488b2cc0bbcc..592b6c2e74674b 100644 --- a/packages/material-ui-icons/lib/MedicalServicesRounded.js +++ b/packages/material-ui-icons/lib/MedicalServicesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm5 11h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'MedicalServicesRounded'); \ No newline at end of file +}), 'MedicalServicesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicalServicesSharp.js b/packages/material-ui-icons/lib/MedicalServicesSharp.js index 01c9451c982f36..42a38e6a60d40a 100644 --- a/packages/material-ui-icons/lib/MedicalServicesSharp.js +++ b/packages/material-ui-icons/lib/MedicalServicesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6V2H8v4H2v16h20V6h-6zm-6-2h4v2h-4V4zm6 11h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" -}), 'MedicalServicesSharp'); \ No newline at end of file +}), 'MedicalServicesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicalServicesTwoTone.js b/packages/material-ui-icons/lib/MedicalServicesTwoTone.js index 1e311f729ea509..927e31eb2cbc6f 100644 --- a/packages/material-ui-icons/lib/MedicalServicesTwoTone.js +++ b/packages/material-ui-icons/lib/MedicalServicesTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V8H4v12zm4-7h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 18h2v-3h3v-2h-3v-3h-2v3H8v2h3z" -}, "2")], 'MedicalServicesTwoTone'); \ No newline at end of file +}, "2")], 'MedicalServicesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Medication.js b/packages/material-ui-icons/lib/Medication.js index bf6879d2e4307c..34ab29dc9dc306 100644 --- a/packages/material-ui-icons/lib/Medication.js +++ b/packages/material-ui-icons/lib/Medication.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3h12v2H6zm11 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16v3z" -}), 'Medication'); \ No newline at end of file +}), 'Medication'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicationOutlined.js b/packages/material-ui-icons/lib/MedicationOutlined.js index e46218d33bbabc..2d3a1ea396c98f 100644 --- a/packages/material-ui-icons/lib/MedicationOutlined.js +++ b/packages/material-ui-icons/lib/MedicationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 15H8v-3h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15zM19 8v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2zm-2 0H7v11h10V8zm1-5H6v2h12V3z" -}), 'MedicationOutlined'); \ No newline at end of file +}), 'MedicationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicationRounded.js b/packages/material-ui-icons/lib/MedicationRounded.js index abcfc33484e119..510a248bced99d 100644 --- a/packages/material-ui-icons/lib/MedicationRounded.js +++ b/packages/material-ui-icons/lib/MedicationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.5 9h-1v1c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-1h-1c-.83 0-1.5-.67-1.5-1.5S8.67 12 9.5 12h1v-1c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1h1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" -}), 'MedicationRounded'); \ No newline at end of file +}), 'MedicationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicationSharp.js b/packages/material-ui-icons/lib/MedicationSharp.js index 56b27bc1e5bd40..c7b78aacf15f18 100644 --- a/packages/material-ui-icons/lib/MedicationSharp.js +++ b/packages/material-ui-icons/lib/MedicationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3h12v2H6zm13 3H5v15h14V6zm-3 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16v3z" -}), 'MedicationSharp'); \ No newline at end of file +}), 'MedicationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MedicationTwoTone.js b/packages/material-ui-icons/lib/MedicationTwoTone.js index b5cac80f17f4ca..c6788ca45e0566 100644 --- a/packages/material-ui-icons/lib/MedicationTwoTone.js +++ b/packages/material-ui-icons/lib/MedicationTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10V8H7v11zm1-7h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15H8v-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3h12v2H6zm11 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 13H7V8h10v11z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 17.5h3V15H16v-3h-2.5V9.5h-3V12H8v3h2.5z" -}, "2")], 'MedicationTwoTone'); \ No newline at end of file +}, "2")], 'MedicationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MeetingRoom.js b/packages/material-ui-icons/lib/MeetingRoom.js index d68486b52c0468..41b8595cc14c97 100644 --- a/packages/material-ui-icons/lib/MeetingRoom.js +++ b/packages/material-ui-icons/lib/MeetingRoom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z" -}), 'MeetingRoom'); \ No newline at end of file +}), 'MeetingRoom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MeetingRoomOutlined.js b/packages/material-ui-icons/lib/MeetingRoomOutlined.js index 0eb57ba1bb1953..ac4a55e957c7bb 100644 --- a/packages/material-ui-icons/lib/MeetingRoomOutlined.js +++ b/packages/material-ui-icons/lib/MeetingRoomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z" -}), 'MeetingRoomOutlined'); \ No newline at end of file +}), 'MeetingRoomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MeetingRoomRounded.js b/packages/material-ui-icons/lib/MeetingRoomRounded.js index 7213cc0eaa31de..57e96adbc4c5da 100644 --- a/packages/material-ui-icons/lib/MeetingRoomRounded.js +++ b/packages/material-ui-icons/lib/MeetingRoomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 19h-1V5c0-.55-.45-1-1-1h-4c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v15H4c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1V6h3v14c0 .55.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1zm-9-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'MeetingRoomRounded'); \ No newline at end of file +}), 'MeetingRoomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MeetingRoomSharp.js b/packages/material-ui-icons/lib/MeetingRoomSharp.js index ad6bc8f616e371..4c63679c0bf250 100644 --- a/packages/material-ui-icons/lib/MeetingRoomSharp.js +++ b/packages/material-ui-icons/lib/MeetingRoomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z" -}), 'MeetingRoomSharp'); \ No newline at end of file +}), 'MeetingRoomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MeetingRoomTwoTone.js b/packages/material-ui-icons/lib/MeetingRoomTwoTone.js index 753ac15ef90a7b..96407646757884 100644 --- a/packages/material-ui-icons/lib/MeetingRoomTwoTone.js +++ b/packages/material-ui-icons/lib/MeetingRoomTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h6V5H7v14zm3-8h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z" -}, "1")], 'MeetingRoomTwoTone'); \ No newline at end of file +}, "1")], 'MeetingRoomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Memory.js b/packages/material-ui-icons/lib/Memory.js index 5ad5c80f453260..cfa69ecc501878 100644 --- a/packages/material-ui-icons/lib/Memory.js +++ b/packages/material-ui-icons/lib/Memory.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z" -}), 'Memory'); \ No newline at end of file +}), 'Memory'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MemoryOutlined.js b/packages/material-ui-icons/lib/MemoryOutlined.js index 909995e92c8d14..6ead1d604581e3 100644 --- a/packages/material-ui-icons/lib/MemoryOutlined.js +++ b/packages/material-ui-icons/lib/MemoryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z" -}), 'MemoryOutlined'); \ No newline at end of file +}), 'MemoryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MemoryRounded.js b/packages/material-ui-icons/lib/MemoryRounded.js index 13f9754a2715a8..073c67d172b7eb 100644 --- a/packages/material-ui-icons/lib/MemoryRounded.js +++ b/packages/material-ui-icons/lib/MemoryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 4h-2v-2h2v2zm8-3c0-.55-.45-1-1-1h-1V7c0-1.1-.9-2-2-2h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v1H7c-1.1 0-2 .9-2 2v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2c0 1.1.9 2 2 2h2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2c1.1 0 2-.9 2-2v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1zm-5 7H8c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" -}), 'MemoryRounded'); \ No newline at end of file +}), 'MemoryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MemorySharp.js b/packages/material-ui-icons/lib/MemorySharp.js index 3c23e5188b36ba..e7e422a96c8220 100644 --- a/packages/material-ui-icons/lib/MemorySharp.js +++ b/packages/material-ui-icons/lib/MemorySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V5h-4V3h-2v2h-2V3H9v2H5v4H3v2h2v2H3v2h2v4h4v2h2v-2h2v2h2v-2h4v-4h2v-2h-2v-2h2zm-4 6H7V7h10v10z" -}), 'MemorySharp'); \ No newline at end of file +}), 'MemorySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MemoryTwoTone.js b/packages/material-ui-icons/lib/MemoryTwoTone.js index 8200568166375e..afafed650af893 100644 --- a/packages/material-ui-icons/lib/MemoryTwoTone.js +++ b/packages/material-ui-icons/lib/MemoryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h10V7H7v10zm2-8h6v6H9V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10zm-2-8H9v6h6V9zm-2 4h-2v-2h2v2z" -}, "1")], 'MemoryTwoTone'); \ No newline at end of file +}, "1")], 'MemoryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Menu.js b/packages/material-ui-icons/lib/Menu.js index c4e19eb363588a..0f677e57d301fe 100644 --- a/packages/material-ui-icons/lib/Menu.js +++ b/packages/material-ui-icons/lib/Menu.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" -}), 'Menu'); \ No newline at end of file +}), 'Menu'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuBook.js b/packages/material-ui-icons/lib/MenuBook.js index a4e6c57b94f0f2..25d3652df0720e 100644 --- a/packages/material-ui-icons/lib/MenuBook.js +++ b/packages/material-ui-icons/lib/MenuBook.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z" -}, "1")], 'MenuBook'); \ No newline at end of file +}, "1")], 'MenuBook'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuBookOutlined.js b/packages/material-ui-icons/lib/MenuBookOutlined.js index cce87fd2b111e6..86e5091b4ad7d7 100644 --- a/packages/material-ui-icons/lib/MenuBookOutlined.js +++ b/packages/material-ui-icons/lib/MenuBookOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z" -}, "1")], 'MenuBookOutlined'); \ No newline at end of file +}, "1")], 'MenuBookOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuBookRounded.js b/packages/material-ui-icons/lib/MenuBookRounded.js index 55b4389065338e..ebecd65937e982 100644 --- a/packages/material-ui-icons/lib/MenuBookRounded.js +++ b/packages/material-ui-icons/lib/MenuBookRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 4.5c-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5-1.45 0-2.99.22-4.28.79C1.49 5.62 1 6.33 1 7.14v11.28c0 1.3 1.22 2.26 2.48 1.94.98-.25 2.02-.36 3.02-.36 1.56 0 3.22.26 4.56.92.6.3 1.28.3 1.87 0 1.34-.67 3-.92 4.56-.92 1 0 2.04.11 3.02.36 1.26.33 2.48-.63 2.48-1.94V7.14c0-.81-.49-1.52-1.22-1.85-1.28-.57-2.82-.79-4.27-.79zM21 17.23c0 .63-.58 1.09-1.2.98-.75-.14-1.53-.2-2.3-.2-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5.92 0 1.83.09 2.7.28.46.1.8.51.8.98v9.47z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.98 11.01c-.32 0-.61-.2-.71-.52-.13-.39.09-.82.48-.94 1.54-.5 3.53-.66 5.36-.45.41.05.71.42.66.83-.05.41-.42.71-.83.66-1.62-.19-3.39-.04-4.73.39-.08.01-.16.03-.23.03zm0 2.66c-.32 0-.61-.2-.71-.52-.13-.39.09-.82.48-.94 1.53-.5 3.53-.66 5.36-.45.41.05.71.42.66.83-.05.41-.42.71-.83.66-1.62-.19-3.39-.04-4.73.39-.08.02-.16.03-.23.03zm0 2.66c-.32 0-.61-.2-.71-.52-.13-.39.09-.82.48-.94 1.53-.5 3.53-.66 5.36-.45.41.05.71.42.66.83-.05.41-.42.7-.83.66-1.62-.19-3.39-.04-4.73.39-.08.02-.16.03-.23.03z" -}, "1")], 'MenuBookRounded'); \ No newline at end of file +}, "1")], 'MenuBookRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuBookSharp.js b/packages/material-ui-icons/lib/MenuBookSharp.js index 98a19482c9144f..e9fcf710c78eca 100644 --- a/packages/material-ui-icons/lib/MenuBookSharp.js +++ b/packages/material-ui-icons/lib/MenuBookSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z" -}, "1")], 'MenuBookSharp'); \ No newline at end of file +}, "1")], 'MenuBookSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuBookTwoTone.js b/packages/material-ui-icons/lib/MenuBookTwoTone.js index f38e568308fe08..545632a57ab3e6 100644 --- a/packages/material-ui-icons/lib/MenuBookTwoTone.js +++ b/packages/material-ui-icons/lib/MenuBookTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zM3 18.5V7c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99v11.5C9.63 18.41 7.84 18 6.5 18c-1.2 0-2.4.15-3.5.5zm18 0c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.13.41-4.5.99V7.49c1.37-.59 3.16-.99 4.5-.99 1.2 0 2.4.15 3.5.5v11.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7.49c-1.37-.58-3.16-.99-4.5-.99-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99V7.49z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.28 0-2.46.16-3.5.47v1.57c.99-.35 2.18-.54 3.5-.54zm0 2.66c.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.28 0-2.46.16-3.5.47v1.57c.99-.34 2.18-.54 3.5-.54zm0 2.67c.88 0 1.73.09 2.5.26v-1.52c-.79-.15-1.64-.24-2.5-.24-1.28 0-2.46.16-3.5.47v1.57c.99-.35 2.18-.54 3.5-.54z" -}, "2")], 'MenuBookTwoTone'); \ No newline at end of file +}, "2")], 'MenuBookTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuOpen.js b/packages/material-ui-icons/lib/MenuOpen.js index 7c76ae8cb720bb..f1ee07ffea67f3 100644 --- a/packages/material-ui-icons/lib/MenuOpen.js +++ b/packages/material-ui-icons/lib/MenuOpen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" -}), 'MenuOpen'); \ No newline at end of file +}), 'MenuOpen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuOpenOutlined.js b/packages/material-ui-icons/lib/MenuOpenOutlined.js index cc5087e4f664f3..4da82221d207a0 100644 --- a/packages/material-ui-icons/lib/MenuOpenOutlined.js +++ b/packages/material-ui-icons/lib/MenuOpenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" -}), 'MenuOpenOutlined'); \ No newline at end of file +}), 'MenuOpenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuOpenRounded.js b/packages/material-ui-icons/lib/MenuOpenRounded.js index 3262fbbb4a2d8f..a3f4a89a30ca07 100644 --- a/packages/material-ui-icons/lib/MenuOpenRounded.js +++ b/packages/material-ui-icons/lib/MenuOpenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h11c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h8c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm17.3 7.88L17.42 12l2.88-2.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L15.3 11.3c-.39.39-.39 1.02 0 1.41l3.59 3.59c.39.39 1.02.39 1.41 0 .38-.39.39-1.03 0-1.42z" -}), 'MenuOpenRounded'); \ No newline at end of file +}), 'MenuOpenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuOpenSharp.js b/packages/material-ui-icons/lib/MenuOpenSharp.js index 4f15dc2b60c5cd..3d1b4ecfe91669 100644 --- a/packages/material-ui-icons/lib/MenuOpenSharp.js +++ b/packages/material-ui-icons/lib/MenuOpenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" -}), 'MenuOpenSharp'); \ No newline at end of file +}), 'MenuOpenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuOpenTwoTone.js b/packages/material-ui-icons/lib/MenuOpenTwoTone.js index 66a6ce4365baca..52bbcb49c2e408 100644 --- a/packages/material-ui-icons/lib/MenuOpenTwoTone.js +++ b/packages/material-ui-icons/lib/MenuOpenTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" -}), 'MenuOpenTwoTone'); \ No newline at end of file +}), 'MenuOpenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuOutlined.js b/packages/material-ui-icons/lib/MenuOutlined.js index c0f753d8d803da..86bfccc71b0bc6 100644 --- a/packages/material-ui-icons/lib/MenuOutlined.js +++ b/packages/material-ui-icons/lib/MenuOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" -}), 'MenuOutlined'); \ No newline at end of file +}), 'MenuOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuRounded.js b/packages/material-ui-icons/lib/MenuRounded.js index 87d1c818d66cd3..b19489a1da4670 100644 --- a/packages/material-ui-icons/lib/MenuRounded.js +++ b/packages/material-ui-icons/lib/MenuRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'MenuRounded'); \ No newline at end of file +}), 'MenuRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuSharp.js b/packages/material-ui-icons/lib/MenuSharp.js index 4f63de7ea574fb..576036276d7315 100644 --- a/packages/material-ui-icons/lib/MenuSharp.js +++ b/packages/material-ui-icons/lib/MenuSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" -}), 'MenuSharp'); \ No newline at end of file +}), 'MenuSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MenuTwoTone.js b/packages/material-ui-icons/lib/MenuTwoTone.js index 0076fb256c8641..919f735e17dfed 100644 --- a/packages/material-ui-icons/lib/MenuTwoTone.js +++ b/packages/material-ui-icons/lib/MenuTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" -}), 'MenuTwoTone'); \ No newline at end of file +}), 'MenuTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MergeType.js b/packages/material-ui-icons/lib/MergeType.js index 07c045194a04b1..7196a0e3ee1aae 100644 --- a/packages/material-ui-icons/lib/MergeType.js +++ b/packages/material-ui-icons/lib/MergeType.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" -}), 'MergeType'); \ No newline at end of file +}), 'MergeType'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MergeTypeOutlined.js b/packages/material-ui-icons/lib/MergeTypeOutlined.js index a449bff9b9178e..9b9fbe1d9b02f5 100644 --- a/packages/material-ui-icons/lib/MergeTypeOutlined.js +++ b/packages/material-ui-icons/lib/MergeTypeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" -}), 'MergeTypeOutlined'); \ No newline at end of file +}), 'MergeTypeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MergeTypeRounded.js b/packages/material-ui-icons/lib/MergeTypeRounded.js index c69bc898dca31f..7a9aee1228f5e8 100644 --- a/packages/material-ui-icons/lib/MergeTypeRounded.js +++ b/packages/material-ui-icons/lib/MergeTypeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.7 19.7c.39-.39.39-1.02 0-1.41l-2.7-2.7L13.59 17l2.7 2.7c.39.39 1.03.39 1.41 0zM8.71 8H11v5.59l-4.71 4.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.71-4.7c.38-.38.59-.88.59-1.41V8h2.29c.45 0 .67-.54.35-.85l-3.29-3.29c-.2-.2-.51-.2-.71 0L8.35 7.15c-.31.31-.09.85.36.85z" -}), 'MergeTypeRounded'); \ No newline at end of file +}), 'MergeTypeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MergeTypeSharp.js b/packages/material-ui-icons/lib/MergeTypeSharp.js index 0cd986f28f4f3a..6aeccfa72531e1 100644 --- a/packages/material-ui-icons/lib/MergeTypeSharp.js +++ b/packages/material-ui-icons/lib/MergeTypeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" -}), 'MergeTypeSharp'); \ No newline at end of file +}), 'MergeTypeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MergeTypeTwoTone.js b/packages/material-ui-icons/lib/MergeTypeTwoTone.js index 87f8383292f347..a2f11518b6d739 100644 --- a/packages/material-ui-icons/lib/MergeTypeTwoTone.js +++ b/packages/material-ui-icons/lib/MergeTypeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59zm11.407 1.41-3.408-3.407 1.4-1.407 3.41 3.408z" -}), 'MergeTypeTwoTone'); \ No newline at end of file +}), 'MergeTypeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Message.js b/packages/material-ui-icons/lib/Message.js index 272f8cf50e9929..a79087407be5b6 100644 --- a/packages/material-ui-icons/lib/Message.js +++ b/packages/material-ui-icons/lib/Message.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" -}), 'Message'); \ No newline at end of file +}), 'Message'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MessageOutlined.js b/packages/material-ui-icons/lib/MessageOutlined.js index 14af252d061b24..f403d239d659e9 100644 --- a/packages/material-ui-icons/lib/MessageOutlined.js +++ b/packages/material-ui-icons/lib/MessageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h12v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z" -}), 'MessageOutlined'); \ No newline at end of file +}), 'MessageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MessageRounded.js b/packages/material-ui-icons/lib/MessageRounded.js index 0c879f2cd6d39a..67e1b1e63e7739 100644 --- a/packages/material-ui-icons/lib/MessageRounded.js +++ b/packages/material-ui-icons/lib/MessageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 12H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'MessageRounded'); \ No newline at end of file +}), 'MessageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MessageSharp.js b/packages/material-ui-icons/lib/MessageSharp.js index 5a901849f01ace..098c53d24f6745 100644 --- a/packages/material-ui-icons/lib/MessageSharp.js +++ b/packages/material-ui-icons/lib/MessageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2.01L2 22l4-4h16V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" -}), 'MessageSharp'); \ No newline at end of file +}), 'MessageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MessageTwoTone.js b/packages/material-ui-icons/lib/MessageTwoTone.js index 41ccde5a10f210..7aa3d086221aeb 100644 --- a/packages/material-ui-icons/lib/MessageTwoTone.js +++ b/packages/material-ui-icons/lib/MessageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4v13.17L5.17 16H20V4zm-2 10H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" -}, "1")], 'MessageTwoTone'); \ No newline at end of file +}, "1")], 'MessageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mic.js b/packages/material-ui-icons/lib/Mic.js index 4fec6c60916443..e1235dfe0005b4 100644 --- a/packages/material-ui-icons/lib/Mic.js +++ b/packages/material-ui-icons/lib/Mic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" -}), 'Mic'); \ No newline at end of file +}), 'Mic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOff.js b/packages/material-ui-icons/lib/MicExternalOff.js index 74a815a2328cb6..27b6de5e0d4714 100644 --- a/packages/material-ui-icons/lib/MicExternalOff.js +++ b/packages/material-ui-icons/lib/MicExternalOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l5.78 5.78 1.41-1.42zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18zm2-12v5.17l-2-2V6c0-2.21 1.79-4 4-4s4 1.79 4 4v11.17l-2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2zm-4-1c0 .62-.2 1.18-.52 1.66L5.33 2.51C5.81 2.19 6.38 2 7 2c1.66 0 3 1.34 3 3z" -}), 'MicExternalOff'); \ No newline at end of file +}), 'MicExternalOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOffOutlined.js b/packages/material-ui-icons/lib/MicExternalOffOutlined.js index 3b424f3eec7f9b..7d2b10161f064a 100644 --- a/packages/material-ui-icons/lib/MicExternalOffOutlined.js +++ b/packages/material-ui-icons/lib/MicExternalOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4 1c0-1.1.9-2 2-2s2 .9 2 2v9.17l2 2V6c0-2.21-1.79-4-4-4s-4 1.79-4 4v3.17l2 2V6zM2.1 2.1.69 3.51 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l6.49 6.49 1.41-1.41L2.1 2.1zM7.19 16h-.38l-.6-6h.96l.56.56L7.19 16zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18z" -}), 'MicExternalOffOutlined'); \ No newline at end of file +}), 'MicExternalOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOffRounded.js b/packages/material-ui-icons/lib/MicExternalOffRounded.js index e824946e88fd1c..3772b59d0a6906 100644 --- a/packages/material-ui-icons/lib/MicExternalOffRounded.js +++ b/packages/material-ui-icons/lib/MicExternalOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6c0-1.24 1.14-2.22 2.42-1.96.94.2 1.58 1.09 1.58 2.05v9.08l2 2V6.16c0-2.08-1.68-4.03-3.76-4.15C13.92 1.87 12 3.71 12 6v3.17l2 2V6zm-4-1c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zM1.39 2.81C1 3.2 1 3.83 1.39 4.22L5.17 8H5.1c-.59 0-1.05.51-1 1.1l.85 8.45c.03.26.25.45.5.45H6c0 2.34 2.01 4.21 4.39 3.98 2.08-.2 3.61-2.06 3.61-4.15v-1l5.78 5.78c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.81 2.81c-.39-.39-1.03-.39-1.42 0zM12 17.91c0 .96-.64 1.86-1.58 2.05C9.14 20.22 8 19.24 8 18h.55c.26 0 .47-.19.5-.45l.52-5.16L12 14.83v3.08z" -}), 'MicExternalOffRounded'); \ No newline at end of file +}), 'MicExternalOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOffSharp.js b/packages/material-ui-icons/lib/MicExternalOffSharp.js index 13e1ac72e95c2b..75aab2f4034ce0 100644 --- a/packages/material-ui-icons/lib/MicExternalOffSharp.js +++ b/packages/material-ui-icons/lib/MicExternalOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4-1h4v11.17l2 2V2h-8v7.17l2 2zM2.1 2.1.69 3.51 5.17 8H4l1 10h1v4h8v-5.17l6.49 6.49 1.41-1.41L2.1 2.1zM12 20H8v-2h1l.56-5.61L12 14.83V20z" -}), 'MicExternalOffSharp'); \ No newline at end of file +}), 'MicExternalOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOffTwoTone.js b/packages/material-ui-icons/lib/MicExternalOffTwoTone.js index a5650ff7248d49..b75f83c47f7f46 100644 --- a/packages/material-ui-icons/lib/MicExternalOffTwoTone.js +++ b/packages/material-ui-icons/lib/MicExternalOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.21 10 .6 6h.38l.54-5.44-.56-.56z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4 1c0-1.1.9-2 2-2s2 .9 2 2v9.17l2 2V6c0-2.21-1.79-4-4-4s-4 1.79-4 4v3.17l2 2V6zM2.1 2.1.69 3.51 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l6.49 6.49 1.41-1.41L2.1 2.1zM7.19 16h-.38l-.6-6h.96l.56.56L7.19 16zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18z" -}, "1")], 'MicExternalOffTwoTone'); \ No newline at end of file +}, "1")], 'MicExternalOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOn.js b/packages/material-ui-icons/lib/MicExternalOn.js index 619e3e15a9573d..213d0a6c9d8143 100644 --- a/packages/material-ui-icons/lib/MicExternalOn.js +++ b/packages/material-ui-icons/lib/MicExternalOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM16 2c2.21 0 4 1.79 4 4v16h-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 2.21-1.79 4-4 4s-4-1.79-4-4H5L4 8h6L9 18H8c0 1.1.9 2 2 2s2-.9 2-2V6c0-2.21 1.79-4 4-4z" -}), 'MicExternalOn'); \ No newline at end of file +}), 'MicExternalOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOnOutlined.js b/packages/material-ui-icons/lib/MicExternalOnOutlined.js index 7c0a6ca21eb732..bac24dd3be2411 100644 --- a/packages/material-ui-icons/lib/MicExternalOnOutlined.js +++ b/packages/material-ui-icons/lib/MicExternalOnOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.22 7c.48-.53.78-1.23.78-2 0-1.66-1.34-3-3-3S4 3.34 4 5c0 .77.3 1.47.78 2h4.44z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 2c-2.21 0-4 1.79-4 4v12c0 1.1-.9 2-2 2s-2-.9-2-2h1l1-10H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4V6c0-1.1.9-2 2-2s2 .9 2 2v16h2V6c0-2.21-1.79-4-4-4zM7.19 16h-.38l-.6-6h1.58l-.6 6z" -}, "1")], 'MicExternalOnOutlined'); \ No newline at end of file +}, "1")], 'MicExternalOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOnRounded.js b/packages/material-ui-icons/lib/MicExternalOnRounded.js index af7c35bfeb8441..ed9e90e4306c49 100644 --- a/packages/material-ui-icons/lib/MicExternalOnRounded.js +++ b/packages/material-ui-icons/lib/MicExternalOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zm7.02-4.99C18.32 2.13 20 4.08 20 6.16V21c0 .55-.45 1-1 1s-1-.45-1-1V6.09c0-.96-.64-1.86-1.58-2.05C15.14 3.78 14 4.76 14 6v11.84c0 2.08-1.68 4.03-3.76 4.15C7.92 22.13 6 20.29 6 18h-.55c-.26 0-.47-.19-.5-.45L4.11 9.1c-.06-.59.4-1.1.99-1.1h3.8c.59 0 1.05.51 1 1.1l-.85 8.45c-.03.26-.25.45-.5.45H8c0 1.24 1.14 2.22 2.42 1.96.94-.19 1.58-1.09 1.58-2.05V6c0-2.29 1.92-4.13 4.24-3.99z" -}), 'MicExternalOnRounded'); \ No newline at end of file +}), 'MicExternalOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOnSharp.js b/packages/material-ui-icons/lib/MicExternalOnSharp.js index 88d020df418cc8..815e6bd844b3b7 100644 --- a/packages/material-ui-icons/lib/MicExternalOnSharp.js +++ b/packages/material-ui-icons/lib/MicExternalOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM20 2v20h-2V4h-4v18H6v-4H5L4 8h6L9 18H8v2h4V2h8z" -}), 'MicExternalOnSharp'); \ No newline at end of file +}), 'MicExternalOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicExternalOnTwoTone.js b/packages/material-ui-icons/lib/MicExternalOnTwoTone.js index 0049b6150bf48c..fcb99b5b55b59c 100644 --- a/packages/material-ui-icons/lib/MicExternalOnTwoTone.js +++ b/packages/material-ui-icons/lib/MicExternalOnTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.81 16h.38l.6-6H6.21z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.22 7c.48-.53.78-1.23.78-2 0-1.66-1.34-3-3-3S4 3.34 4 5c0 .77.3 1.47.78 2h4.44z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 2c-2.21 0-4 1.79-4 4v12c0 1.1-.9 2-2 2s-2-.9-2-2h1l1-10H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4V6c0-1.1.9-2 2-2s2 .9 2 2v16h2V6c0-2.21-1.79-4-4-4zM7.19 16h-.38l-.6-6h1.58l-.6 6z" -}, "2")], 'MicExternalOnTwoTone'); \ No newline at end of file +}, "2")], 'MicExternalOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicNone.js b/packages/material-ui-icons/lib/MicNone.js index 082087f955a6dd..8b847c397fe091 100644 --- a/packages/material-ui-icons/lib/MicNone.js +++ b/packages/material-ui-icons/lib/MicNone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2V4.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" -}), 'MicNone'); \ No newline at end of file +}), 'MicNone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicNoneOutlined.js b/packages/material-ui-icons/lib/MicNoneOutlined.js index 4188eac5bd90d4..efdb7d2da6508e 100644 --- a/packages/material-ui-icons/lib/MicNoneOutlined.js +++ b/packages/material-ui-icons/lib/MicNoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" -}), 'MicNoneOutlined'); \ No newline at end of file +}), 'MicNoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicNoneRounded.js b/packages/material-ui-icons/lib/MicNoneRounded.js index d79bb8d723c639..efbd96a29649b5 100644 --- a/packages/material-ui-icons/lib/MicNoneRounded.js +++ b/packages/material-ui-icons/lib/MicNoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6.91 6c-.49 0-.9.36-.98.85C16.52 14.2 14.47 16 12 16s-4.52-1.8-4.93-4.15c-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14.49 3 2.89 5.35 5.91 5.78V20c0 .55.45 1 1 1s1-.45 1-1v-2.08c3.02-.43 5.42-2.78 5.91-5.78.1-.6-.39-1.14-1-1.14z" -}), 'MicNoneRounded'); \ No newline at end of file +}), 'MicNoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicNoneSharp.js b/packages/material-ui-icons/lib/MicNoneSharp.js index 1d0e849669cb2c..b03c19cddc997e 100644 --- a/packages/material-ui-icons/lib/MicNoneSharp.js +++ b/packages/material-ui-icons/lib/MicNoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" -}), 'MicNoneSharp'); \ No newline at end of file +}), 'MicNoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicNoneTwoTone.js b/packages/material-ui-icons/lib/MicNoneTwoTone.js index 71b7f506b78aca..cf2b4b0e3d7f70 100644 --- a/packages/material-ui-icons/lib/MicNoneTwoTone.js +++ b/packages/material-ui-icons/lib/MicNoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" -}, "1")], 'MicNoneTwoTone'); \ No newline at end of file +}, "1")], 'MicNoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicOff.js b/packages/material-ui-icons/lib/MicOff.js index 50ad7d38badccd..880df8c03dc68f 100644 --- a/packages/material-ui-icons/lib/MicOff.js +++ b/packages/material-ui-icons/lib/MicOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18l5.98 5.99zM4.27 3 3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z" -}), 'MicOff'); \ No newline at end of file +}), 'MicOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicOffOutlined.js b/packages/material-ui-icons/lib/MicOffOutlined.js index a191059f590bee..7d85ce589ff1da 100644 --- a/packages/material-ui-icons/lib/MicOffOutlined.js +++ b/packages/material-ui-icons/lib/MicOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9zM19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86 3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z" -}), 'MicOffOutlined'); \ No newline at end of file +}), 'MicOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicOffRounded.js b/packages/material-ui-icons/lib/MicOffRounded.js index dcd94d1a6fdc40..c7982686a59475 100644 --- a/packages/material-ui-icons/lib/MicOffRounded.js +++ b/packages/material-ui-icons/lib/MicOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm3.08.4c-.41 0-.77.3-.83.71-.05.32-.12.64-.22.93l1.27 1.27c.3-.6.52-1.25.63-1.94.07-.51-.33-.97-.85-.97zM3.71 3.56c-.39.39-.39 1.02 0 1.41L9 10.27v.43c0 1.19.6 2.32 1.63 2.91.75.43 1.41.44 2.02.31l1.66 1.66c-.71.33-1.5.52-2.31.52-2.54 0-4.88-1.77-5.25-4.39-.06-.41-.42-.71-.83-.71-.52 0-.92.46-.85.97.46 2.96 2.96 5.3 5.93 5.75V20c0 .55.45 1 1 1s1-.45 1-1v-2.28c.91-.13 1.77-.45 2.55-.9l3.49 3.49c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56a.9959.9959 0 0 0-1.41 0z" -}), 'MicOffRounded'); \ No newline at end of file +}), 'MicOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicOffSharp.js b/packages/material-ui-icons/lib/MicOffSharp.js index 3bf702759f0a19..176be5dbd9fcfb 100644 --- a/packages/material-ui-icons/lib/MicOffSharp.js +++ b/packages/material-ui-icons/lib/MicOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm4 .4h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86 3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z" -}), 'MicOffSharp'); \ No newline at end of file +}), 'MicOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicOffTwoTone.js b/packages/material-ui-icons/lib/MicOffTwoTone.js index 562da00fbf922b..5cba3a5954c36e 100644 --- a/packages/material-ui-icons/lib/MicOffTwoTone.js +++ b/packages/material-ui-icons/lib/MicOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3.7c-.66 0-1.2.54-1.2 1.2v1.51l2.39 2.39.01-3.9c0-.66-.54-1.2-1.2-1.2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86 3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86zM10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9z" -}, "1")], 'MicOffTwoTone'); \ No newline at end of file +}, "1")], 'MicOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicOutlined.js b/packages/material-ui-icons/lib/MicOutlined.js index a12822591998e0..d132ad7ac087fb 100644 --- a/packages/material-ui-icons/lib/MicOutlined.js +++ b/packages/material-ui-icons/lib/MicOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" -}, "1")], 'MicOutlined'); \ No newline at end of file +}, "1")], 'MicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicRounded.js b/packages/material-ui-icons/lib/MicRounded.js index 4c16a38cc29b6c..672c0dde2c1b43 100644 --- a/packages/material-ui-icons/lib/MicRounded.js +++ b/packages/material-ui-icons/lib/MicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.91-3c-.49 0-.9.36-.98.85C16.52 14.2 14.47 16 12 16s-4.52-1.8-4.93-4.15c-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14.49 3 2.89 5.35 5.91 5.78V20c0 .55.45 1 1 1s1-.45 1-1v-2.08c3.02-.43 5.42-2.78 5.91-5.78.1-.6-.39-1.14-1-1.14z" -}), 'MicRounded'); \ No newline at end of file +}), 'MicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicSharp.js b/packages/material-ui-icons/lib/MicSharp.js index 0db8e445403f0b..aaa825e996a410 100644 --- a/packages/material-ui-icons/lib/MicSharp.js +++ b/packages/material-ui-icons/lib/MicSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" -}, "1")], 'MicSharp'); \ No newline at end of file +}, "1")], 'MicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicTwoTone.js b/packages/material-ui-icons/lib/MicTwoTone.js index 8fae3e38594370..72b1caae9faa5e 100644 --- a/packages/material-ui-icons/lib/MicTwoTone.js +++ b/packages/material-ui-icons/lib/MicTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" -}, "2")], 'MicTwoTone'); \ No newline at end of file +}, "2")], 'MicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Microwave.js b/packages/material-ui-icons/lib/Microwave.js index c566d69714b665..d3cfdd7550d9a9 100644 --- a/packages/material-ui-icons/lib/Microwave.js +++ b/packages/material-ui-icons/lib/Microwave.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.8 10.61 5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66 1.16 0 2.01-.79 2.37-1.19l-1.42-1.42c-.15.2-.59.61-.95.61-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-1.16 0-2.02.79-2.38 1.19l1.42 1.42c.16-.2.59-.61.96-.61zM22 6v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-8 0H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z" -}), 'Microwave'); \ No newline at end of file +}), 'Microwave'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicrowaveOutlined.js b/packages/material-ui-icons/lib/MicrowaveOutlined.js index 9f0bc8eb06c220..9bbc1d42ad46de 100644 --- a/packages/material-ui-icons/lib/MicrowaveOutlined.js +++ b/packages/material-ui-icons/lib/MicrowaveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 6h10v12H4V6zm16 12h-4V6h4v12zm-1-9h-2V7h2v2zm-1 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-7.75-1c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61l-1.42-1.42c.35-.4 1.21-1.19 2.37-1.19.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19zm0-5c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19z" -}), 'MicrowaveOutlined'); \ No newline at end of file +}), 'MicrowaveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicrowaveRounded.js b/packages/material-ui-icons/lib/MicrowaveRounded.js index e343c75b9602e6..06c467cd10ab78 100644 --- a/packages/material-ui-icons/lib/MicrowaveRounded.js +++ b/packages/material-ui-icons/lib/MicrowaveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.15 9.97c-.46-.46-.38-1.24.18-1.57.4-.22.88-.4 1.42-.4.8 0 1.39.39 1.81.67.31.21.51.33.69.33.13 0 .26-.05.39-.12.39-.22.88-.16 1.2.16.46.46.38 1.24-.18 1.56-.39.23-.87.4-1.41.4-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.13 0-.26.05-.39.12-.4.23-.89.16-1.21-.15zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66.54 0 1.02-.17 1.41-.4.56-.32.64-1.1.18-1.56-.32-.32-.81-.38-1.2-.16-.13.07-.26.12-.39.12-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-.54 0-1.02.18-1.42.4-.56.33-.64 1.11-.18 1.56.32.32.81.38 1.2.16.14-.07.27-.12.4-.12zM22 6v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-8 0H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z" -}), 'MicrowaveRounded'); \ No newline at end of file +}), 'MicrowaveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicrowaveSharp.js b/packages/material-ui-icons/lib/MicrowaveSharp.js index 6275b73ea2ffd9..6e9fb9e6b144e3 100644 --- a/packages/material-ui-icons/lib/MicrowaveSharp.js +++ b/packages/material-ui-icons/lib/MicrowaveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.8 10.61 5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66 1.16 0 2.01-.79 2.37-1.19l-1.42-1.42c-.15.2-.59.61-.95.61-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-1.16 0-2.02.79-2.38 1.19l1.42 1.42c.16-.2.59-.61.96-.61zM22 4v16H2V4h20zm-8 2H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z" -}), 'MicrowaveSharp'); \ No newline at end of file +}), 'MicrowaveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MicrowaveTwoTone.js b/packages/material-ui-icons/lib/MicrowaveTwoTone.js index db80d17c025ccf..c20c125dd35538 100644 --- a/packages/material-ui-icons/lib/MicrowaveTwoTone.js +++ b/packages/material-ui-icons/lib/MicrowaveTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h10V6H4v12zM7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8zm0 5c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61l-1.42-1.42c.35-.4 1.21-1.19 2.37-1.19zM16 6v12h4V6h-4zm2 11c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-4h-2V7h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 6h10v12H4V6zm16 12h-4V6h4v12zm-1-9h-2V7h2v2zm-1 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-7.75-1c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61l-1.42-1.42c.35-.4 1.21-1.19 2.37-1.19.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19zm0-5c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19z" -}, "1")], 'MicrowaveTwoTone'); \ No newline at end of file +}, "1")], 'MicrowaveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MilitaryTech.js b/packages/material-ui-icons/lib/MilitaryTech.js index 16a5866d242fe8..ab8d0ff57ed046 100644 --- a/packages/material-ui-icons/lib/MilitaryTech.js +++ b/packages/material-ui-icons/lib/MilitaryTech.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.43V2H7v8.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34 4.18-2.51c.3-.18.48-.5.48-.86zm-4 1.8-1 .6-1-.6V3h2v9.23z" -}), 'MilitaryTech'); \ No newline at end of file +}), 'MilitaryTech'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MilitaryTechOutlined.js b/packages/material-ui-icons/lib/MilitaryTechOutlined.js index 47d81bd5817231..a80b16f7cb851f 100644 --- a/packages/material-ui-icons/lib/MilitaryTechOutlined.js +++ b/packages/material-ui-icons/lib/MilitaryTechOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.43V2H7v8.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34 4.18-2.51c.3-.18.48-.5.48-.86zm-6 .64-2-1.2V4h2v7.07zm4-1.2-2 1.2V4h2v5.87z" -}), 'MilitaryTechOutlined'); \ No newline at end of file +}), 'MilitaryTechOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MilitaryTechRounded.js b/packages/material-ui-icons/lib/MilitaryTechRounded.js index 403a4372549b13..e8ef670d2f677d 100644 --- a/packages/material-ui-icons/lib/MilitaryTechRounded.js +++ b/packages/material-ui-icons/lib/MilitaryTechRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.43V3c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v7.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-2.22.19c-.46.04-.64.59-.3.88l1.69 1.46-.51 2.18c-.1.43.37.77.75.54L12 20.23l1.91 1.15c.38.23.85-.11.75-.54l-.51-2.18 1.69-1.46c.33-.29.16-.84-.29-.88l-2.22-.19-.99-2.34 4.18-2.51c.3-.17.48-.49.48-.85zm-4 1.8-1 .6-1-.6V3h2v9.23z" -}), 'MilitaryTechRounded'); \ No newline at end of file +}), 'MilitaryTechRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MilitaryTechSharp.js b/packages/material-ui-icons/lib/MilitaryTechSharp.js index c13b7f31adb261..8c82710140f4a0 100644 --- a/packages/material-ui-icons/lib/MilitaryTechSharp.js +++ b/packages/material-ui-icons/lib/MilitaryTechSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 11V2H7v9l4.66 2.8-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34L17 11zm-4 1.23-1 .6-1-.6V3h2v9.23z" -}), 'MilitaryTechSharp'); \ No newline at end of file +}), 'MilitaryTechSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MilitaryTechTwoTone.js b/packages/material-ui-icons/lib/MilitaryTechTwoTone.js index 88f036cf58eebf..423dd1021fdaf8 100644 --- a/packages/material-ui-icons/lib/MilitaryTechTwoTone.js +++ b/packages/material-ui-icons/lib/MilitaryTechTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 11.07 2-1.2V4h-2zM9 4v5.87l2 1.2V4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.43V2H7v8.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34 4.18-2.51c.3-.18.48-.5.48-.86zm-6 .64-2-1.2V4h2v7.07zm4-1.2-2 1.2V4h2v5.87z" -}, "1")], 'MilitaryTechTwoTone'); \ No newline at end of file +}, "1")], 'MilitaryTechTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Minimize.js b/packages/material-ui-icons/lib/Minimize.js index dffb1a54ce370e..09d01460e4752d 100644 --- a/packages/material-ui-icons/lib/Minimize.js +++ b/packages/material-ui-icons/lib/Minimize.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h12v2H6z" -}), 'Minimize'); \ No newline at end of file +}), 'Minimize'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MinimizeOutlined.js b/packages/material-ui-icons/lib/MinimizeOutlined.js index 1ce0e4b5fbed9f..1bbd950b16b75e 100644 --- a/packages/material-ui-icons/lib/MinimizeOutlined.js +++ b/packages/material-ui-icons/lib/MinimizeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h12v2H6v-2z" -}), 'MinimizeOutlined'); \ No newline at end of file +}), 'MinimizeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MinimizeRounded.js b/packages/material-ui-icons/lib/MinimizeRounded.js index 2b7b3db15792fa..65ec42243d2bac 100644 --- a/packages/material-ui-icons/lib/MinimizeRounded.js +++ b/packages/material-ui-icons/lib/MinimizeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'MinimizeRounded'); \ No newline at end of file +}), 'MinimizeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MinimizeSharp.js b/packages/material-ui-icons/lib/MinimizeSharp.js index 2d1da7831ab3ea..f121926eb48af6 100644 --- a/packages/material-ui-icons/lib/MinimizeSharp.js +++ b/packages/material-ui-icons/lib/MinimizeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h12v2H6v-2z" -}), 'MinimizeSharp'); \ No newline at end of file +}), 'MinimizeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MinimizeTwoTone.js b/packages/material-ui-icons/lib/MinimizeTwoTone.js index 56ea2a35de7fc4..aab5f5c658d909 100644 --- a/packages/material-ui-icons/lib/MinimizeTwoTone.js +++ b/packages/material-ui-icons/lib/MinimizeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h12v2H6v-2z" -}), 'MinimizeTwoTone'); \ No newline at end of file +}), 'MinimizeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MiscellaneousServices.js b/packages/material-ui-icons/lib/MiscellaneousServices.js index 5a99f6f3ded8a8..dc29823ab0b851 100644 --- a/packages/material-ui-icons/lib/MiscellaneousServices.js +++ b/packages/material-ui-icons/lib/MiscellaneousServices.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" -}), 'MiscellaneousServices'); \ No newline at end of file +}), 'MiscellaneousServices'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MiscellaneousServicesOutlined.js b/packages/material-ui-icons/lib/MiscellaneousServicesOutlined.js index b8046c7e8fc4b1..a9e13423bc25ea 100644 --- a/packages/material-ui-icons/lib/MiscellaneousServicesOutlined.js +++ b/packages/material-ui-icons/lib/MiscellaneousServicesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" -}), 'MiscellaneousServicesOutlined'); \ No newline at end of file +}), 'MiscellaneousServicesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MiscellaneousServicesRounded.js b/packages/material-ui-icons/lib/MiscellaneousServicesRounded.js index 80c27f910d541d..f11de92aa7fde4 100644 --- a/packages/material-ui-icons/lib/MiscellaneousServicesRounded.js +++ b/packages/material-ui-icons/lib/MiscellaneousServicesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" -}), 'MiscellaneousServicesRounded'); \ No newline at end of file +}), 'MiscellaneousServicesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MiscellaneousServicesSharp.js b/packages/material-ui-icons/lib/MiscellaneousServicesSharp.js index 197300856d9bba..830c5d4aa552b7 100644 --- a/packages/material-ui-icons/lib/MiscellaneousServicesSharp.js +++ b/packages/material-ui-icons/lib/MiscellaneousServicesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.02 13.97 1.7-2.94s-.09-.08-.23-.18l-1.47-1.16-.01.02c.03-.24.05-.47.05-.71s-.02-.47-.06-.69l.01.01 1.71-1.34-1.7-2.95-2.01.81v.01c-.37-.28-.77-.52-1.2-.7h.01L10.52 2H7.11L6.8 4.15h.01c-.43.18-.83.42-1.2.7v-.01L3.6 4.03 1.9 6.98l1.7 1.34.01-.01c-.03.22-.05.45-.05.69s.02.47.05.71l-.01-.02-1.47 1.16c-.13.1-.23.18-.23.18l1.7 2.94 2.02-.8-.02-.03c.37.29.77.53 1.21.71H6.8L7.11 16h3.4s.02-.13.04-.3l.27-1.85h-.01c.44-.18.84-.42 1.21-.71l-.02.03 2.02.8zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm12.17 6.94-.01.01c.02-.15.03-.3.03-.45 0-.15-.01-.3-.04-.44l.01.01 1.1-.86-1.09-1.9-1.29.52v.01c-.24-.18-.49-.33-.77-.45h.01l-.2-1.39h-2.19l-.2 1.38h.01c-.28.12-.53.27-.77.45v-.01l-1.29-.52-1.09 1.9 1.09.86.01-.01c-.02.14-.03.29-.03.44 0 .15.01.3.03.46l-.01-.01-.94.75c-.08.06-.15.12-.15.12l1.09 1.89 1.3-.51-.01-.02c.24.19.5.34.78.46h-.01l.2 1.38h2.19s.01-.08.03-.19l.17-1.19h-.01c.28-.12.54-.27.78-.46l-.01.02 1.3.51 1.09-1.89s-.06-.05-.15-.12l-.96-.75zm-3.35.85c-.71 0-1.29-.58-1.29-1.29s.58-1.29 1.29-1.29 1.29.58 1.29 1.29-.58 1.29-1.29 1.29z" -}), 'MiscellaneousServicesSharp'); \ No newline at end of file +}), 'MiscellaneousServicesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MiscellaneousServicesTwoTone.js b/packages/material-ui-icons/lib/MiscellaneousServicesTwoTone.js index 8bbea04dafd00d..5845fb9fb05f28 100644 --- a/packages/material-ui-icons/lib/MiscellaneousServicesTwoTone.js +++ b/packages/material-ui-icons/lib/MiscellaneousServicesTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" -}), 'MiscellaneousServicesTwoTone'); \ No newline at end of file +}), 'MiscellaneousServicesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MissedVideoCall.js b/packages/material-ui-icons/lib/MissedVideoCall.js index b8a3c9165d5c40..24b3847d3e6be0 100644 --- a/packages/material-ui-icons/lib/MissedVideoCall.js +++ b/packages/material-ui-icons/lib/MissedVideoCall.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z" -}), 'MissedVideoCall'); \ No newline at end of file +}), 'MissedVideoCall'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MissedVideoCallOutlined.js b/packages/material-ui-icons/lib/MissedVideoCallOutlined.js index 487d3e98c74807..4179551e1dcc0b 100644 --- a/packages/material-ui-icons/lib/MissedVideoCallOutlined.js +++ b/packages/material-ui-icons/lib/MissedVideoCallOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zm-2-1.83V16H5V8h10v.67zm-7.89 2.44L11 15l3.77-3.79-.78-.79L11 13.43l-3.11-3.1h2.55V9.22H6v4.44h1.11z" -}), 'MissedVideoCallOutlined'); \ No newline at end of file +}), 'MissedVideoCallOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MissedVideoCallRounded.js b/packages/material-ui-icons/lib/MissedVideoCallRounded.js index 2dbf38ebc66976..5c06cc83d46e68 100644 --- a/packages/material-ui-icons/lib/MissedVideoCallRounded.js +++ b/packages/material-ui-icons/lib/MissedVideoCallRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5zm-6.29 3.79c-.39.39-1.02.39-1.41 0l-3.18-3.18v2.55H5V9.72c0-.28.22-.5.5-.5h3.94v1.11H6.89l3.11 3.1 4.22-4.22.78.79-4.29 4.29z" -}), 'MissedVideoCallRounded'); \ No newline at end of file +}), 'MissedVideoCallRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MissedVideoCallSharp.js b/packages/material-ui-icons/lib/MissedVideoCallSharp.js index bd26c486df54f6..6e83b7c6730726 100644 --- a/packages/material-ui-icons/lib/MissedVideoCallSharp.js +++ b/packages/material-ui-icons/lib/MissedVideoCallSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z" -}), 'MissedVideoCallSharp'); \ No newline at end of file +}), 'MissedVideoCallSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MissedVideoCallTwoTone.js b/packages/material-ui-icons/lib/MissedVideoCallTwoTone.js index 11f2f466aef975..de50ce13b8135f 100644 --- a/packages/material-ui-icons/lib/MissedVideoCallTwoTone.js +++ b/packages/material-ui-icons/lib/MissedVideoCallTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13.5V8H5v8h10v-2.5zM11 15l-3.89-3.89v2.55H6V9.22h4.44v1.11H7.89l3.11 3.1 2.99-3.01.78.79L11 15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10zm2-9h10v8H5V8zm6 5.43-3.11-3.1h2.55V9.22H6v4.44h1.11v-2.55L11 15l3.77-3.79-.78-.79z" -}, "1")], 'MissedVideoCallTwoTone'); \ No newline at end of file +}, "1")], 'MissedVideoCallTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mms.js b/packages/material-ui-icons/lib/Mms.js index b7421c931c740b..fed8a5e3a43c9d 100644 --- a/packages/material-ui-icons/lib/Mms.js +++ b/packages/material-ui-icons/lib/Mms.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z" -}), 'Mms'); \ No newline at end of file +}), 'Mms'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MmsOutlined.js b/packages/material-ui-icons/lib/MmsOutlined.js index 2d0c7cefd9fc6c..0ad5a84dd972a3 100644 --- a/packages/material-ui-icons/lib/MmsOutlined.js +++ b/packages/material-ui-icons/lib/MmsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z" -}), 'MmsOutlined'); \ No newline at end of file +}), 'MmsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MmsRounded.js b/packages/material-ui-icons/lib/MmsRounded.js index 46ddc9771d0041..11c6d6111671fb 100644 --- a/packages/material-ui-icons/lib/MmsRounded.js +++ b/packages/material-ui-icons/lib/MmsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5.63 13.19l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z" -}), 'MmsRounded'); \ No newline at end of file +}), 'MmsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MmsSharp.js b/packages/material-ui-icons/lib/MmsSharp.js index c484ac2239e115..f77a20b89e8940 100644 --- a/packages/material-ui-icons/lib/MmsSharp.js +++ b/packages/material-ui-icons/lib/MmsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z" -}), 'MmsSharp'); \ No newline at end of file +}), 'MmsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MmsTwoTone.js b/packages/material-ui-icons/lib/MmsTwoTone.js index c38a3eadd138b4..1553519ad7526d 100644 --- a/packages/material-ui-icons/lib/MmsTwoTone.js +++ b/packages/material-ui-icons/lib/MmsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17 5.17 16H20V4H4v13.17zM8.5 9.5l2.5 3.01L14.5 8l4.5 6H5l3.5-4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z" -}, "1")], 'MmsTwoTone'); \ No newline at end of file +}, "1")], 'MmsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileFriendly.js b/packages/material-ui-icons/lib/MobileFriendly.js index 49538437eb91cc..a2f325eba00f9f 100644 --- a/packages/material-ui-icons/lib/MobileFriendly.js +++ b/packages/material-ui-icons/lib/MobileFriendly.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27z" -}), 'MobileFriendly'); \ No newline at end of file +}), 'MobileFriendly'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileFriendlyOutlined.js b/packages/material-ui-icons/lib/MobileFriendlyOutlined.js index e64dc31bf03ffc..1ba52c2101648b 100644 --- a/packages/material-ui-icons/lib/MobileFriendlyOutlined.js +++ b/packages/material-ui-icons/lib/MobileFriendlyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" -}), 'MobileFriendlyOutlined'); \ No newline at end of file +}), 'MobileFriendlyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileFriendlyRounded.js b/packages/material-ui-icons/lib/MobileFriendlyRounded.js index b0c172afbbbfd2..082fcb84db803b 100644 --- a/packages/material-ui-icons/lib/MobileFriendlyRounded.js +++ b/packages/material-ui-icons/lib/MobileFriendlyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H9c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-1.92-1.92c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l2.47 2.47c.39.39 1.02.39 1.41 0l5.85-5.85c.35-.35.35-.92 0-1.27s-.92-.35-1.27 0l-5.27 5.3z" -}), 'MobileFriendlyRounded'); \ No newline at end of file +}), 'MobileFriendlyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileFriendlySharp.js b/packages/material-ui-icons/lib/MobileFriendlySharp.js index 68fe7ea59b19ed..55d8d5fe0693b5 100644 --- a/packages/material-ui-icons/lib/MobileFriendlySharp.js +++ b/packages/material-ui-icons/lib/MobileFriendlySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" -}), 'MobileFriendlySharp'); \ No newline at end of file +}), 'MobileFriendlySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileFriendlyTwoTone.js b/packages/material-ui-icons/lib/MobileFriendlyTwoTone.js index d6b63b0f1c0e71..df0fc4e4667455 100644 --- a/packages/material-ui-icons/lib/MobileFriendlyTwoTone.js +++ b/packages/material-ui-icons/lib/MobileFriendlyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" -}), 'MobileFriendlyTwoTone'); \ No newline at end of file +}), 'MobileFriendlyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileOff.js b/packages/material-ui-icons/lib/MobileOff.js index f466b9e6b1dab6..5ec2d6b014e9ea 100644 --- a/packages/material-ui-icons/lib/MobileOff.js +++ b/packages/material-ui-icons/lib/MobileOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.76 2.49 1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.27-1.27L2.76 2.49zM7 19V9.27L16.73 19H7zM17 5v9.17l2 2V3c0-1.1-.9-2-2-2H7c-.85 0-1.58.54-1.87 1.3L7.83 5H17z" -}), 'MobileOff'); \ No newline at end of file +}), 'MobileOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileOffOutlined.js b/packages/material-ui-icons/lib/MobileOffOutlined.js index 330e71375c4ea5..4bcfb612955a0e 100644 --- a/packages/material-ui-icons/lib/MobileOffOutlined.js +++ b/packages/material-ui-icons/lib/MobileOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27 16.73 19H7V9.27z" -}), 'MobileOffOutlined'); \ No newline at end of file +}), 'MobileOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileOffRounded.js b/packages/material-ui-icons/lib/MobileOffRounded.js index 93c97ff18d42dc..7e066c38071913 100644 --- a/packages/material-ui-icons/lib/MobileOffRounded.js +++ b/packages/material-ui-icons/lib/MobileOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16.44 3.61 3.05a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75L20 22.27c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L19 18.44l-2-2zM7 19V9.27L16.73 19H7zM17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17z" -}), 'MobileOffRounded'); \ No newline at end of file +}), 'MobileOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileOffSharp.js b/packages/material-ui-icons/lib/MobileOffSharp.js index 3a2f384e58dde0..10b01293056a3b 100644 --- a/packages/material-ui-icons/lib/MobileOffSharp.js +++ b/packages/material-ui-icons/lib/MobileOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5v8.61l2 2V1H5v.61L8.39 5zM2.9 2.35 1.49 3.76 5 7.27V23h14v-1.73l1.7 1.7 1.41-1.41L2.9 2.35zM7 19V9.27L16.73 19H7z" -}), 'MobileOffSharp'); \ No newline at end of file +}), 'MobileOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileOffTwoTone.js b/packages/material-ui-icons/lib/MobileOffTwoTone.js index eadb9fda0e8ba4..06c9b28c86082b 100644 --- a/packages/material-ui-icons/lib/MobileOffTwoTone.js +++ b/packages/material-ui-icons/lib/MobileOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27 16.73 19H7V9.27z" -}), 'MobileOffTwoTone'); \ No newline at end of file +}), 'MobileOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileScreenShare.js b/packages/material-ui-icons/lib/MobileScreenShare.js index e0c58625e3e2d0..e670da1c575a09 100644 --- a/packages/material-ui-icons/lib/MobileScreenShare.js +++ b/packages/material-ui-icons/lib/MobileScreenShare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.2-5.78v1.75l3.2-2.99L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" -}), 'MobileScreenShare'); \ No newline at end of file +}), 'MobileScreenShare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileScreenShareOutlined.js b/packages/material-ui-icons/lib/MobileScreenShareOutlined.js index e6ff995551ad56..b0f1a6a1e6b775 100644 --- a/packages/material-ui-icons/lib/MobileScreenShareOutlined.js +++ b/packages/material-ui-icons/lib/MobileScreenShareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05v-18C19 1.85 18.1 1 17 1zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" -}), 'MobileScreenShareOutlined'); \ No newline at end of file +}), 'MobileScreenShareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileScreenShareRounded.js b/packages/material-ui-icons/lib/MobileScreenShareRounded.js index 9fd8d8b7377691..003ee9328abf63 100644 --- a/packages/material-ui-icons/lib/MobileScreenShareRounded.js +++ b/packages/material-ui-icons/lib/MobileScreenShareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.78v1.75l2.81-2.62c.21-.2.21-.53 0-.73L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" -}), 'MobileScreenShareRounded'); \ No newline at end of file +}), 'MobileScreenShareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileScreenShareSharp.js b/packages/material-ui-icons/lib/MobileScreenShareSharp.js index 9f6fc465fcae06..6189ff4d626535 100644 --- a/packages/material-ui-icons/lib/MobileScreenShareSharp.js +++ b/packages/material-ui-icons/lib/MobileScreenShareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" -}), 'MobileScreenShareSharp'); \ No newline at end of file +}), 'MobileScreenShareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobileScreenShareTwoTone.js b/packages/material-ui-icons/lib/MobileScreenShareTwoTone.js index 9164463106d86c..73624439400ac6 100644 --- a/packages/material-ui-icons/lib/MobileScreenShareTwoTone.js +++ b/packages/material-ui-icons/lib/MobileScreenShareTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10V5H7v14zm5.8-8.28v-1.7L16 12l-3.2 2.99v-1.75c-2.22 0-3.69.68-4.8 2.18.45-2.14 1.69-4.27 4.8-4.7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" -}, "1")], 'MobileScreenShareTwoTone'); \ No newline at end of file +}, "1")], 'MobileScreenShareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobiledataOff.js b/packages/material-ui-icons/lib/MobiledataOff.js index d9c85318ce966d..ca98da8ba0bbc1 100644 --- a/packages/material-ui-icons/lib/MobiledataOff.js +++ b/packages/material-ui-icons/lib/MobiledataOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81 1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z" -}), 'MobiledataOff'); \ No newline at end of file +}), 'MobiledataOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobiledataOffOutlined.js b/packages/material-ui-icons/lib/MobiledataOffOutlined.js index 0f2c46e6b0891c..42f7a6ebdb36d4 100644 --- a/packages/material-ui-icons/lib/MobiledataOffOutlined.js +++ b/packages/material-ui-icons/lib/MobiledataOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 6.82 1.59 1.59L19 7l-4-4-4 4 1.41 1.41L14 6.82v4.35l2 2zM1.39 4.22 8 10.83v6.35l-1.59-1.59L5 17l4 4 4-4-1.41-1.41L10 17.18v-4.35l9.78 9.78 1.41-1.42L2.81 2.81z" -}), 'MobiledataOffOutlined'); \ No newline at end of file +}), 'MobiledataOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobiledataOffRounded.js b/packages/material-ui-icons/lib/MobiledataOffRounded.js index 924dd06db392e8..bf49604a02fbb1 100644 --- a/packages/material-ui-icons/lib/MobiledataOffRounded.js +++ b/packages/material-ui-icons/lib/MobiledataOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85H14v4.17l2 2V7zM2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9V17H6.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.79c.32-.32.09-.85-.35-.85h-1.79v-4.18l9.07 9.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0z" -}), 'MobiledataOffRounded'); \ No newline at end of file +}), 'MobiledataOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobiledataOffSharp.js b/packages/material-ui-icons/lib/MobiledataOffSharp.js index b800e347b7b09d..c61390279c8be4 100644 --- a/packages/material-ui-icons/lib/MobiledataOffSharp.js +++ b/packages/material-ui-icons/lib/MobiledataOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81 1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z" -}), 'MobiledataOffSharp'); \ No newline at end of file +}), 'MobiledataOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MobiledataOffTwoTone.js b/packages/material-ui-icons/lib/MobiledataOffTwoTone.js index 424d76db6f8f41..737f61c26f0cf5 100644 --- a/packages/material-ui-icons/lib/MobiledataOffTwoTone.js +++ b/packages/material-ui-icons/lib/MobiledataOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81 1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z" -}), 'MobiledataOffTwoTone'); \ No newline at end of file +}), 'MobiledataOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mode.js b/packages/material-ui-icons/lib/Mode.js index f8063f269e087b..bd63e6b913f754 100644 --- a/packages/material-ui-icons/lib/Mode.js +++ b/packages/material-ui-icons/lib/Mode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}), 'Mode'); \ No newline at end of file +}), 'Mode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeComment.js b/packages/material-ui-icons/lib/ModeComment.js index 46da62b9fec2f2..1de0d4db023ad7 100644 --- a/packages/material-ui-icons/lib/ModeComment.js +++ b/packages/material-ui-icons/lib/ModeComment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18z" -}), 'ModeComment'); \ No newline at end of file +}), 'ModeComment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeCommentOutlined.js b/packages/material-ui-icons/lib/ModeCommentOutlined.js index 17206f73df6443..ce9c293eadaf5b 100644 --- a/packages/material-ui-icons/lib/ModeCommentOutlined.js +++ b/packages/material-ui-icons/lib/ModeCommentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17.17 18.83 16H4V4h16v13.17zM20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2z" -}), 'ModeCommentOutlined'); \ No newline at end of file +}), 'ModeCommentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeCommentRounded.js b/packages/material-ui-icons/lib/ModeCommentRounded.js index 64f02b6b46e0ad..ac4735d9481785 100644 --- a/packages/material-ui-icons/lib/ModeCommentRounded.js +++ b/packages/material-ui-icons/lib/ModeCommentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4z" -}), 'ModeCommentRounded'); \ No newline at end of file +}), 'ModeCommentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeCommentSharp.js b/packages/material-ui-icons/lib/ModeCommentSharp.js index 01883118a56108..a6e193b465a45f 100644 --- a/packages/material-ui-icons/lib/ModeCommentSharp.js +++ b/packages/material-ui-icons/lib/ModeCommentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v16h16l4 4z" -}), 'ModeCommentSharp'); \ No newline at end of file +}), 'ModeCommentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeCommentTwoTone.js b/packages/material-ui-icons/lib/ModeCommentTwoTone.js index 311667e449174f..31e02bc4274b38 100644 --- a/packages/material-ui-icons/lib/ModeCommentTwoTone.js +++ b/packages/material-ui-icons/lib/ModeCommentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v12h14.83L20 17.17V4z", opacity: ".3" -}, "1")], 'ModeCommentTwoTone'); \ No newline at end of file +}, "1")], 'ModeCommentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEdit.js b/packages/material-ui-icons/lib/ModeEdit.js index 15c8c7f21f8a69..631a14436720f9 100644 --- a/packages/material-ui-icons/lib/ModeEdit.js +++ b/packages/material-ui-icons/lib/ModeEdit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'ModeEdit'); \ No newline at end of file +}), 'ModeEdit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditOutline.js b/packages/material-ui-icons/lib/ModeEditOutline.js index 48cd515a16bbcc..a2807ddb6aa60a 100644 --- a/packages/material-ui-icons/lib/ModeEditOutline.js +++ b/packages/material-ui-icons/lib/ModeEditOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}), 'ModeEditOutline'); \ No newline at end of file +}), 'ModeEditOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditOutlineOutlined.js b/packages/material-ui-icons/lib/ModeEditOutlineOutlined.js index 04c43127046595..62a962f4570ade 100644 --- a/packages/material-ui-icons/lib/ModeEditOutlineOutlined.js +++ b/packages/material-ui-icons/lib/ModeEditOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h3.75L17.81 9.94l-3.75-3.75L3 17.25V21zm2-2.92 9.06-9.06.92.92L5.92 19H5v-.92zM18.37 3.29a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34z" -}), 'ModeEditOutlineOutlined'); \ No newline at end of file +}), 'ModeEditOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditOutlineRounded.js b/packages/material-ui-icons/lib/ModeEditOutlineRounded.js index 130bb0e2704aef..1fffff170ad8b1 100644 --- a/packages/material-ui-icons/lib/ModeEditOutlineRounded.js +++ b/packages/material-ui-icons/lib/ModeEditOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}), 'ModeEditOutlineRounded'); \ No newline at end of file +}), 'ModeEditOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditOutlineSharp.js b/packages/material-ui-icons/lib/ModeEditOutlineSharp.js index 3f366ef2e9c604..d6cd3f0df84a88 100644 --- a/packages/material-ui-icons/lib/ModeEditOutlineSharp.js +++ b/packages/material-ui-icons/lib/ModeEditOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" -}), 'ModeEditOutlineSharp'); \ No newline at end of file +}), 'ModeEditOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditOutlineTwoTone.js b/packages/material-ui-icons/lib/ModeEditOutlineTwoTone.js index 9384cc31dfaa18..66e2642e176599 100644 --- a/packages/material-ui-icons/lib/ModeEditOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/ModeEditOutlineTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}, "1")], 'ModeEditOutlineTwoTone'); \ No newline at end of file +}, "1")], 'ModeEditOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditOutlined.js b/packages/material-ui-icons/lib/ModeEditOutlined.js index 9f8b0e0bd402d5..d8172ac6132490 100644 --- a/packages/material-ui-icons/lib/ModeEditOutlined.js +++ b/packages/material-ui-icons/lib/ModeEditOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h3.75L17.81 9.94l-3.75-3.75L3 17.25V21zm2-2.92 9.06-9.06.92.92L5.92 19H5v-.92zM18.37 3.29a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34z" -}), 'ModeEditOutlined'); \ No newline at end of file +}), 'ModeEditOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditRounded.js b/packages/material-ui-icons/lib/ModeEditRounded.js index 962d58458282ec..bf2f878263af39 100644 --- a/packages/material-ui-icons/lib/ModeEditRounded.js +++ b/packages/material-ui-icons/lib/ModeEditRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}), 'ModeEditRounded'); \ No newline at end of file +}), 'ModeEditRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditSharp.js b/packages/material-ui-icons/lib/ModeEditSharp.js index 4e53a9bc47c710..864f42a2a199af 100644 --- a/packages/material-ui-icons/lib/ModeEditSharp.js +++ b/packages/material-ui-icons/lib/ModeEditSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" -}), 'ModeEditSharp'); \ No newline at end of file +}), 'ModeEditSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeEditTwoTone.js b/packages/material-ui-icons/lib/ModeEditTwoTone.js index dd479210652cae..c207635dee09bb 100644 --- a/packages/material-ui-icons/lib/ModeEditTwoTone.js +++ b/packages/material-ui-icons/lib/ModeEditTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" -}, "1")], 'ModeEditTwoTone'); \ No newline at end of file +}, "1")], 'ModeEditTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeNight.js b/packages/material-ui-icons/lib/ModeNight.js index 102de44e23826d..5a5b09084451da 100644 --- a/packages/material-ui-icons/lib/ModeNight.js +++ b/packages/material-ui-icons/lib/ModeNight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z" -}), 'ModeNight'); \ No newline at end of file +}), 'ModeNight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeNightOutlined.js b/packages/material-ui-icons/lib/ModeNightOutlined.js index 83dcfeb537cbac..bd82740f7db8e0 100644 --- a/packages/material-ui-icons/lib/ModeNightOutlined.js +++ b/packages/material-ui-icons/lib/ModeNightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07 1.91-2.16 3.01-4.98 3.01-7.93s-1.1-5.77-3.01-7.93C8.82 4.02 9.16 4 9.5 4m0-2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z" -}), 'ModeNightOutlined'); \ No newline at end of file +}), 'ModeNightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeNightRounded.js b/packages/material-ui-icons/lib/ModeNightRounded.js index 2f4cf685c4c798..56fe88fc0cae56 100644 --- a/packages/material-ui-icons/lib/ModeNightRounded.js +++ b/packages/material-ui-icons/lib/ModeNightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.93 2.3c-2.04-.5-4.02-.35-5.77.28-.72.26-.91 1.22-.31 1.71C8.08 6.12 9.5 8.89 9.5 12c0 3.11-1.42 5.88-3.65 7.71-.59.49-.42 1.45.31 1.7 1.04.38 2.17.59 3.34.59 6.05 0 10.85-5.38 9.87-11.6-.61-3.92-3.59-7.16-7.44-8.1z" -}), 'ModeNightRounded'); \ No newline at end of file +}), 'ModeNightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeNightSharp.js b/packages/material-ui-icons/lib/ModeNightSharp.js index a8ee54b47a03fb..99950814f0253b 100644 --- a/packages/material-ui-icons/lib/ModeNightSharp.js +++ b/packages/material-ui-icons/lib/ModeNightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z" -}), 'ModeNightSharp'); \ No newline at end of file +}), 'ModeNightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeNightTwoTone.js b/packages/material-ui-icons/lib/ModeNightTwoTone.js index b11c6115af1220..607eda478f19c2 100644 --- a/packages/material-ui-icons/lib/ModeNightTwoTone.js +++ b/packages/material-ui-icons/lib/ModeNightTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 4c-.34 0-.68.02-1.01.07C10.4 6.23 11.5 9.05 11.5 12s-1.1 5.77-3.01 7.93c.33.05.67.07 1.01.07 4.41 0 8-3.59 8-8s-3.59-8-8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2zm0 18c-.34 0-.68-.02-1.01-.07 1.91-2.16 3.01-4.98 3.01-7.93s-1.1-5.77-3.01-7.93C8.82 4.02 9.16 4 9.5 4c4.41 0 8 3.59 8 8s-3.59 8-8 8z" -}, "1")], 'ModeNightTwoTone'); \ No newline at end of file +}, "1")], 'ModeNightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeOutlined.js b/packages/material-ui-icons/lib/ModeOutlined.js index cfb47dc1c28090..e300dbde724255 100644 --- a/packages/material-ui-icons/lib/ModeOutlined.js +++ b/packages/material-ui-icons/lib/ModeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.06 9.02.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" -}), 'ModeOutlined'); \ No newline at end of file +}), 'ModeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeRounded.js b/packages/material-ui-icons/lib/ModeRounded.js index 1321f9b9e0d044..f631710d0c8e5b 100644 --- a/packages/material-ui-icons/lib/ModeRounded.js +++ b/packages/material-ui-icons/lib/ModeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" -}), 'ModeRounded'); \ No newline at end of file +}), 'ModeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeSharp.js b/packages/material-ui-icons/lib/ModeSharp.js index b3d4bb75dcfb3d..3afe1eae8b47b4 100644 --- a/packages/material-ui-icons/lib/ModeSharp.js +++ b/packages/material-ui-icons/lib/ModeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" -}), 'ModeSharp'); \ No newline at end of file +}), 'ModeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeStandby.js b/packages/material-ui-icons/lib/ModeStandby.js index a74e44ff5d788e..0ae61acc22f0d0 100644 --- a/packages/material-ui-icons/lib/ModeStandby.js +++ b/packages/material-ui-icons/lib/ModeStandby.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'ModeStandby'); \ No newline at end of file +}), 'ModeStandby'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeStandbyOutlined.js b/packages/material-ui-icons/lib/ModeStandbyOutlined.js index e9e135e28cc997..95953782cd0f77 100644 --- a/packages/material-ui-icons/lib/ModeStandbyOutlined.js +++ b/packages/material-ui-icons/lib/ModeStandbyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'ModeStandbyOutlined'); \ No newline at end of file +}), 'ModeStandbyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeStandbyRounded.js b/packages/material-ui-icons/lib/ModeStandbyRounded.js index 60e2ab1c0be386..d81866951b7c7a 100644 --- a/packages/material-ui-icons/lib/ModeStandbyRounded.js +++ b/packages/material-ui-icons/lib/ModeStandbyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'ModeStandbyRounded'); \ No newline at end of file +}), 'ModeStandbyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeStandbySharp.js b/packages/material-ui-icons/lib/ModeStandbySharp.js index a5ea744baff50a..b3a776b4ac36f8 100644 --- a/packages/material-ui-icons/lib/ModeStandbySharp.js +++ b/packages/material-ui-icons/lib/ModeStandbySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'ModeStandbySharp'); \ No newline at end of file +}), 'ModeStandbySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeStandbyTwoTone.js b/packages/material-ui-icons/lib/ModeStandbyTwoTone.js index 79a5a579a96f4e..bd9ac448534055 100644 --- a/packages/material-ui-icons/lib/ModeStandbyTwoTone.js +++ b/packages/material-ui-icons/lib/ModeStandbyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}), 'ModeStandbyTwoTone'); \ No newline at end of file +}), 'ModeStandbyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModeTwoTone.js b/packages/material-ui-icons/lib/ModeTwoTone.js index ba91e0095d9eda..49af90484cac03 100644 --- a/packages/material-ui-icons/lib/ModeTwoTone.js +++ b/packages/material-ui-icons/lib/ModeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.06 9.02 5 18.08V19h.92l9.06-9.06z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.37 3.29c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34zm-.56 6.65-3.75-3.75L3 17.25V21h3.75L17.81 9.94zM5 19v-.92l9.06-9.06.92.92L5.92 19H5z" -}, "1")], 'ModeTwoTone'); \ No newline at end of file +}, "1")], 'ModeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModelTraining.js b/packages/material-ui-icons/lib/ModelTraining.js index d6cef3a8f76138..dd3a69d4068126 100644 --- a/packages/material-ui-icons/lib/ModelTraining.js +++ b/packages/material-ui-icons/lib/ModelTraining.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" -}), 'ModelTraining'); \ No newline at end of file +}), 'ModelTraining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModelTrainingOutlined.js b/packages/material-ui-icons/lib/ModelTrainingOutlined.js index 20d48da08592b8..3fc59344b55dc8 100644 --- a/packages/material-ui-icons/lib/ModelTrainingOutlined.js +++ b/packages/material-ui-icons/lib/ModelTrainingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" -}), 'ModelTrainingOutlined'); \ No newline at end of file +}), 'ModelTrainingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModelTrainingRounded.js b/packages/material-ui-icons/lib/ModelTrainingRounded.js index 225e7cab417c12..5831987f8d1a02 100644 --- a/packages/material-ui-icons/lib/ModelTrainingRounded.js +++ b/packages/material-ui-icons/lib/ModelTrainingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2v.5c0 .55.45 1 1 1s1-.45 1-1v-.5zm6-6.5c0 1.39-.41 2.69-1.12 3.78-.25.39-.19.91.14 1.24.44.44 1.2.38 1.54-.15C20.47 16.47 21 14.8 21 13c0-2.36-.91-4.51-2.4-6.12-.39-.42-1.05-.43-1.45-.03-.38.38-.38.99-.02 1.39C18.29 9.49 19 11.16 19 13zm-3.35-8.35-2.79-2.79c-.32-.32-.86-.1-.86.35V4c-4.97 0-9 4.03-9 9 0 1.8.53 3.47 1.44 4.88.34.53 1.1.59 1.54.15.33-.33.39-.84.14-1.23-1.39-2.15-1.64-5.1.13-8C7.45 6.85 9.71 5.81 12 6v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" -}), 'ModelTrainingRounded'); \ No newline at end of file +}), 'ModelTrainingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModelTrainingSharp.js b/packages/material-ui-icons/lib/ModelTrainingSharp.js index ec2ccbc36c66cc..27fd1f2b6428b3 100644 --- a/packages/material-ui-icons/lib/ModelTrainingSharp.js +++ b/packages/material-ui-icons/lib/ModelTrainingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" -}), 'ModelTrainingSharp'); \ No newline at end of file +}), 'ModelTrainingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ModelTrainingTwoTone.js b/packages/material-ui-icons/lib/ModelTrainingTwoTone.js index 923c76405aede7..7c4bc656a240e6 100644 --- a/packages/material-ui-icons/lib/ModelTrainingTwoTone.js +++ b/packages/material-ui-icons/lib/ModelTrainingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" -}), 'ModelTrainingTwoTone'); \ No newline at end of file +}), 'ModelTrainingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonetizationOn.js b/packages/material-ui-icons/lib/MonetizationOn.js index 56877d5f1257a5..87dd83a3318f29 100644 --- a/packages/material-ui-icons/lib/MonetizationOn.js +++ b/packages/material-ui-icons/lib/MonetizationOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z" -}), 'MonetizationOn'); \ No newline at end of file +}), 'MonetizationOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonetizationOnOutlined.js b/packages/material-ui-icons/lib/MonetizationOnOutlined.js index 2ec868e572a867..ee954597712059 100644 --- a/packages/material-ui-icons/lib/MonetizationOnOutlined.js +++ b/packages/material-ui-icons/lib/MonetizationOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z" -}), 'MonetizationOnOutlined'); \ No newline at end of file +}), 'MonetizationOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonetizationOnRounded.js b/packages/material-ui-icons/lib/MonetizationOnRounded.js index 66fb87af654bde..ed6403ec7237b5 100644 --- a/packages/material-ui-icons/lib/MonetizationOnRounded.js +++ b/packages/material-ui-icons/lib/MonetizationOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09v.58c0 .73-.6 1.33-1.33 1.33h-.01c-.73 0-1.33-.6-1.33-1.33v-.6c-1.33-.28-2.51-1.01-3.01-2.24-.23-.55.2-1.16.8-1.16h.24c.37 0 .67.25.81.6.29.75 1.05 1.27 2.51 1.27 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21v-.6c0-.73.6-1.33 1.33-1.33h.01c.73 0 1.33.6 1.33 1.33v.62c1.38.34 2.25 1.2 2.63 2.26.2.55-.22 1.13-.81 1.13h-.26c-.37 0-.67-.26-.77-.62-.23-.76-.86-1.25-2.12-1.25-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.02 1.83-1.39 2.83-3.13 3.16z" -}), 'MonetizationOnRounded'); \ No newline at end of file +}), 'MonetizationOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonetizationOnSharp.js b/packages/material-ui-icons/lib/MonetizationOnSharp.js index 477628c87e6f67..8cfc938be3d5fa 100644 --- a/packages/material-ui-icons/lib/MonetizationOnSharp.js +++ b/packages/material-ui-icons/lib/MonetizationOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z" -}), 'MonetizationOnSharp'); \ No newline at end of file +}), 'MonetizationOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonetizationOnTwoTone.js b/packages/material-ui-icons/lib/MonetizationOnTwoTone.js index c4a6f3a3ba814c..1ade3c615cd343 100644 --- a/packages/material-ui-icons/lib/MonetizationOnTwoTone.js +++ b/packages/material-ui-icons/lib/MonetizationOnTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1.23 13.33V19H10.9v-1.69c-1.5-.31-2.77-1.28-2.86-2.97h1.71c.09.92.72 1.64 2.32 1.64 1.71 0 2.1-.86 2.1-1.39 0-.73-.39-1.41-2.34-1.87-2.17-.53-3.66-1.42-3.66-3.21 0-1.51 1.22-2.48 2.72-2.81V5h2.34v1.71c1.63.39 2.44 1.63 2.49 2.97h-1.71c-.04-.97-.56-1.64-1.94-1.64-1.31 0-2.1.59-2.1 1.43 0 .73.57 1.22 2.34 1.67 1.77.46 3.66 1.22 3.66 3.42-.01 1.6-1.21 2.48-2.74 2.77z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z" -}, "1")], 'MonetizationOnTwoTone'); \ No newline at end of file +}, "1")], 'MonetizationOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Money.js b/packages/material-ui-icons/lib/Money.js index 3af5c741a7095f..1569d13a5755c2 100644 --- a/packages/material-ui-icons/lib/Money.js +++ b/packages/material-ui-icons/lib/Money.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8h2v8H5zm7 0H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4zm7-6h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4v16h20V4H2zm2 14V6h16v12H4z" -}, "1")], 'Money'); \ No newline at end of file +}, "1")], 'Money'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOff.js b/packages/material-ui-icons/lib/MoneyOff.js index 4a07010fa5937f..400b008c5cf66c 100644 --- a/packages/material-ui-icons/lib/MoneyOff.js +++ b/packages/material-ui-icons/lib/MoneyOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.53.12-1.03.3-1.48.54l1.47 1.47c.41-.17.91-.27 1.51-.27zM5.33 4.06 4.06 5.33 7.5 8.77c0 2.08 1.56 3.21 3.91 3.91l3.51 3.51c-.34.48-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.82-.55 2.45-1.12l2.22 2.22 1.27-1.27L5.33 4.06z" -}), 'MoneyOff'); \ No newline at end of file +}), 'MoneyOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffCsred.js b/packages/material-ui-icons/lib/MoneyOffCsred.js index 500c385731b0e6..c941ba07f83a41 100644 --- a/packages/material-ui-icons/lib/MoneyOffCsred.js +++ b/packages/material-ui-icons/lib/MoneyOffCsred.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.53 7.43c.42-.31.93-.47 1.54-.47s1.11.16 1.5.49c.39.32.65.7.79 1.12l1.89-.8c-.24-.71-.71-1.35-1.4-1.92-.5-.4-1.12-.65-1.85-.77V3h-2v2.11c-.41.08-.79.21-1.14.39-.35.18-.64.39-.9.63l1.43 1.43c.04-.04.09-.09.14-.13zM2.81 2.81 1.39 4.22l12.35 12.35c-.43.28-.95.43-1.55.43-.71 0-1.32-.23-1.83-.7-.5-.47-.86-1.07-1.06-1.81l-1.98.8c.34 1.17.95 2.08 1.83 2.73.57.42 1.19.68 1.85.83V21h2v-2.08c.44-.07.87-.17 1.29-.35.34-.14.64-.32.92-.53l4.57 4.57 1.41-1.41L2.81 2.81z" -}), 'MoneyOffCsred'); \ No newline at end of file +}), 'MoneyOffCsred'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffCsredOutlined.js b/packages/material-ui-icons/lib/MoneyOffCsredOutlined.js index 68c352c0097a4d..2cccda61df54a3 100644 --- a/packages/material-ui-icons/lib/MoneyOffCsredOutlined.js +++ b/packages/material-ui-icons/lib/MoneyOffCsredOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" -}), 'MoneyOffCsredOutlined'); \ No newline at end of file +}), 'MoneyOffCsredOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffCsredRounded.js b/packages/material-ui-icons/lib/MoneyOffCsredRounded.js index 124c029589c22d..46764033d1b55a 100644 --- a/packages/material-ui-icons/lib/MoneyOffCsredRounded.js +++ b/packages/material-ui-icons/lib/MoneyOffCsredRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.42 0 2.13.54 2.39 1.4.13.43.56.7 1.01.7h.06c.7 0 1.22-.71.97-1.36-.44-1.15-1.41-2.08-2.93-2.45V4.5c0-.83-.67-1.5-1.5-1.5S11 3.67 11 4.5v.66c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM4.77 4.62c-.39.39-.39 1.02 0 1.41L7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67H8.6c-.72 0-1.24.74-.95 1.39.59 1.33 1.89 2.12 3.36 2.44v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c.96-.18 1.83-.55 2.46-1.12l1.51 1.51c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.18 4.62a.9959.9959 0 0 0-1.41 0z" -}), 'MoneyOffCsredRounded'); \ No newline at end of file +}), 'MoneyOffCsredRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffCsredSharp.js b/packages/material-ui-icons/lib/MoneyOffCsredSharp.js index 82631d7f4517ce..a08e429daca840 100644 --- a/packages/material-ui-icons/lib/MoneyOffCsredSharp.js +++ b/packages/material-ui-icons/lib/MoneyOffCsredSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" -}), 'MoneyOffCsredSharp'); \ No newline at end of file +}), 'MoneyOffCsredSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffCsredTwoTone.js b/packages/material-ui-icons/lib/MoneyOffCsredTwoTone.js index b5ed177b99f538..8be2d283362c19 100644 --- a/packages/material-ui-icons/lib/MoneyOffCsredTwoTone.js +++ b/packages/material-ui-icons/lib/MoneyOffCsredTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" -}), 'MoneyOffCsredTwoTone'); \ No newline at end of file +}), 'MoneyOffCsredTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffOutlined.js b/packages/material-ui-icons/lib/MoneyOffOutlined.js index c4e2d0dacf821c..d474f02a0f170c 100644 --- a/packages/material-ui-icons/lib/MoneyOffOutlined.js +++ b/packages/material-ui-icons/lib/MoneyOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" -}), 'MoneyOffOutlined'); \ No newline at end of file +}), 'MoneyOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffRounded.js b/packages/material-ui-icons/lib/MoneyOffRounded.js index 780a0b8db2e49d..f111e30082badb 100644 --- a/packages/material-ui-icons/lib/MoneyOffRounded.js +++ b/packages/material-ui-icons/lib/MoneyOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.42 0 2.13.54 2.39 1.4.13.43.56.7 1.01.7h.06c.7 0 1.22-.71.97-1.36-.44-1.15-1.41-2.08-2.93-2.45V4.5c0-.83-.67-1.5-1.5-1.5S11 3.67 11 4.5v.66c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM4.77 4.62c-.39.39-.39 1.02 0 1.41L7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67H8.6c-.72 0-1.24.74-.95 1.39.59 1.33 1.89 2.12 3.36 2.44v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c.96-.18 1.83-.55 2.46-1.12l1.51 1.51c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.18 4.62a.9959.9959 0 0 0-1.41 0z" -}), 'MoneyOffRounded'); \ No newline at end of file +}), 'MoneyOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffSharp.js b/packages/material-ui-icons/lib/MoneyOffSharp.js index 7a416b62afa9e8..f0951ca2ea55dc 100644 --- a/packages/material-ui-icons/lib/MoneyOffSharp.js +++ b/packages/material-ui-icons/lib/MoneyOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" -}), 'MoneyOffSharp'); \ No newline at end of file +}), 'MoneyOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOffTwoTone.js b/packages/material-ui-icons/lib/MoneyOffTwoTone.js index 2ba041bc862249..785518f3c6e97e 100644 --- a/packages/material-ui-icons/lib/MoneyOffTwoTone.js +++ b/packages/material-ui-icons/lib/MoneyOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" -}), 'MoneyOffTwoTone'); \ No newline at end of file +}), 'MoneyOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyOutlined.js b/packages/material-ui-icons/lib/MoneyOutlined.js index 01578d269968b4..f34a71af675db7 100644 --- a/packages/material-ui-icons/lib/MoneyOutlined.js +++ b/packages/material-ui-icons/lib/MoneyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" -}), 'MoneyOutlined'); \ No newline at end of file +}), 'MoneyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyRounded.js b/packages/material-ui-icons/lib/MoneyRounded.js index 4852f1432a7037..5bc96dfc1d5d4e 100644 --- a/packages/material-ui-icons/lib/MoneyRounded.js +++ b/packages/material-ui-icons/lib/MoneyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM6 8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1zM2 6v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2zm17 12H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'MoneyRounded'); \ No newline at end of file +}), 'MoneyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneySharp.js b/packages/material-ui-icons/lib/MoneySharp.js index 022d1bd0c64a3b..330d7c4ada6dc9 100644 --- a/packages/material-ui-icons/lib/MoneySharp.js +++ b/packages/material-ui-icons/lib/MoneySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 16h5V8h-5v8zm2-6h1v4h-1v-4zm-8 6h5V8H8v8zm2-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" -}), 'MoneySharp'); \ No newline at end of file +}), 'MoneySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoneyTwoTone.js b/packages/material-ui-icons/lib/MoneyTwoTone.js index 1c6c3b455b8c86..1a3053413ded40 100644 --- a/packages/material-ui-icons/lib/MoneyTwoTone.js +++ b/packages/material-ui-icons/lib/MoneyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10h1v4h-1zm6 0h1v4h-1zM4 18h16V6H4v12zm10-9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1V9zM8 9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V9zM5 8h2v8H5V8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" -}, "1")], 'MoneyTwoTone'); \ No newline at end of file +}, "1")], 'MoneyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Monitor.js b/packages/material-ui-icons/lib/Monitor.js index 16782710f8837d..5c9c3974deb9bc 100644 --- a/packages/material-ui-icons/lib/Monitor.js +++ b/packages/material-ui-icons/lib/Monitor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z" -}), 'Monitor'); \ No newline at end of file +}), 'Monitor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorOutlined.js b/packages/material-ui-icons/lib/MonitorOutlined.js index 38df56e8a1cce2..5c342a54afa99f 100644 --- a/packages/material-ui-icons/lib/MonitorOutlined.js +++ b/packages/material-ui-icons/lib/MonitorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z" -}), 'MonitorOutlined'); \ No newline at end of file +}), 'MonitorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorRounded.js b/packages/material-ui-icons/lib/MonitorRounded.js index 9a4a404c228de3..0fea76d2842b04 100644 --- a/packages/material-ui-icons/lib/MonitorRounded.js +++ b/packages/material-ui-icons/lib/MonitorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3c-.55.55-1 .87-1 1.59 0 .78.63 1.41 1.41 1.41h9.17c.78 0 1.41-.63 1.41-1.41 0-.72-.44-1.03-1-1.59h3c1.1 0 2-.9 2-2V5C22 3.9 21.1 3 20 3zm0 13H4V5h16v11z" -}), 'MonitorRounded'); \ No newline at end of file +}), 'MonitorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorSharp.js b/packages/material-ui-icons/lib/MonitorSharp.js index 1259208873c150..f235d2f2d18a97 100644 --- a/packages/material-ui-icons/lib/MonitorSharp.js +++ b/packages/material-ui-icons/lib/MonitorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H2v15h5l-1 1v2h12v-2l-1-1h5V3zm-2 13H4V5h16v11z" -}), 'MonitorSharp'); \ No newline at end of file +}), 'MonitorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorTwoTone.js b/packages/material-ui-icons/lib/MonitorTwoTone.js index 03cdf3b03df356..09030e2be19b3d 100644 --- a/packages/material-ui-icons/lib/MonitorTwoTone.js +++ b/packages/material-ui-icons/lib/MonitorTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5h16v11H4z", opacity: ".3" -}, "1")], 'MonitorTwoTone'); \ No newline at end of file +}, "1")], 'MonitorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorWeight.js b/packages/material-ui-icons/lib/MonitorWeight.js index 65ddd08564607a..942d1c0bf0bdd5 100644 --- a/packages/material-ui-icons/lib/MonitorWeight.js +++ b/packages/material-ui-icons/lib/MonitorWeight.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8.5h1v1h-1zm1.5 0h1v1h-1zm1.5 0h1v1h-1z" -}, "1")], 'MonitorWeight'); \ No newline at end of file +}, "1")], 'MonitorWeight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorWeightOutlined.js b/packages/material-ui-icons/lib/MonitorWeightOutlined.js index f292ad01770536..e3ae65575865d8 100644 --- a/packages/material-ui-icons/lib/MonitorWeightOutlined.js +++ b/packages/material-ui-icons/lib/MonitorWeightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM12 6c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-1 3.5h-1v-1h1v1zm1.5 0h-1v-1h1v1zm1.5 0h-1v-1h1v1z" -}), 'MonitorWeightOutlined'); \ No newline at end of file +}), 'MonitorWeightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorWeightRounded.js b/packages/material-ui-icons/lib/MonitorWeightRounded.js index 97440e8d32897a..08ad3b183598ba 100644 --- a/packages/material-ui-icons/lib/MonitorWeightRounded.js +++ b/packages/material-ui-icons/lib/MonitorWeightRounded.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10.5", cy: "9", r: ".5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13.5", cy: "9", r: ".5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9", r: ".5" -}, "3")], 'MonitorWeightRounded'); \ No newline at end of file +}, "3")], 'MonitorWeightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorWeightSharp.js b/packages/material-ui-icons/lib/MonitorWeightSharp.js index b09c38ab450b4a..08d1e593407b9e 100644 --- a/packages/material-ui-icons/lib/MonitorWeightSharp.js +++ b/packages/material-ui-icons/lib/MonitorWeightSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-6.8 8.2c-3.23 2.43-6.84-1.18-4.4-4.41 3.23-2.42 6.83 1.19 4.4 4.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8.5h1v1h-1zm1.5 0h1v1h-1zm1.5 0h1v1h-1z" -}, "1")], 'MonitorWeightSharp'); \ No newline at end of file +}, "1")], 'MonitorWeightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonitorWeightTwoTone.js b/packages/material-ui-icons/lib/MonitorWeightTwoTone.js index c984e4deb7e43e..75a5c7af5ad283 100644 --- a/packages/material-ui-icons/lib/MonitorWeightTwoTone.js +++ b/packages/material-ui-icons/lib/MonitorWeightTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8.5h1v1h-1zm-3 0h1v1h-1zm1.5 0h1v1h-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm7-13c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm1-3.5h1v1h-1v-1zm-1.5 0h1v1h-1v-1zm-1.5 0h1v1h-1v-1z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3")], 'MonitorWeightTwoTone'); \ No newline at end of file +}, "3")], 'MonitorWeightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonochromePhotos.js b/packages/material-ui-icons/lib/MonochromePhotos.js index faac8388d6dd59..901ceb3a9a1b0b 100644 --- a/packages/material-ui-icons/lib/MonochromePhotos.js +++ b/packages/material-ui-icons/lib/MonochromePhotos.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" -}), 'MonochromePhotos'); \ No newline at end of file +}), 'MonochromePhotos'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonochromePhotosOutlined.js b/packages/material-ui-icons/lib/MonochromePhotosOutlined.js index b8c00106902b14..0081d6d0318b9b 100644 --- a/packages/material-ui-icons/lib/MonochromePhotosOutlined.js +++ b/packages/material-ui-icons/lib/MonochromePhotosOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" -}), 'MonochromePhotosOutlined'); \ No newline at end of file +}), 'MonochromePhotosOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonochromePhotosRounded.js b/packages/material-ui-icons/lib/MonochromePhotosRounded.js index 3ca8a9f8173a70..78a9c3bc2a05da 100644 --- a/packages/material-ui-icons/lib/MonochromePhotosRounded.js +++ b/packages/material-ui-icons/lib/MonochromePhotosRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.2l-1.2-1.34c-.38-.42-.92-.66-1.49-.66H9.89c-.57 0-1.11.24-1.49.66L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 13c0 .55-.45 1-1 1h-7v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h7c.55 0 1 .45 1 1v10zm-3-5c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" -}), 'MonochromePhotosRounded'); \ No newline at end of file +}), 'MonochromePhotosRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonochromePhotosSharp.js b/packages/material-ui-icons/lib/MonochromePhotosSharp.js index 75b33ae0d9db8d..f80982c84ba24d 100644 --- a/packages/material-ui-icons/lib/MonochromePhotosSharp.js +++ b/packages/material-ui-icons/lib/MonochromePhotosSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5h-5.2L15 3H9L7.2 5H2v16h20V5zm-2 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" -}), 'MonochromePhotosSharp'); \ No newline at end of file +}), 'MonochromePhotosSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MonochromePhotosTwoTone.js b/packages/material-ui-icons/lib/MonochromePhotosTwoTone.js index 906387046c3d36..66c2b7dc0bd9dd 100644 --- a/packages/material-ui-icons/lib/MonochromePhotosTwoTone.js +++ b/packages/material-ui-icons/lib/MonochromePhotosTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18v-1.8c-1.8 0-3.2-1.4-3.2-3.2s1.4-3.2 3.2-3.2V8c-2.8 0-5 2.2-5 5s2.2 5 5 5zm5-5c0 2.8-2.2 5-5 5v1h8V7h-8v1c2.8 0 5 2.2 5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 21h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zm8-13V7h8v12h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5zm3.2 5c0 1.8-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5s-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2zm-6.4 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" -}, "1")], 'MonochromePhotosTwoTone'); \ No newline at end of file +}, "1")], 'MonochromePhotosTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mood.js b/packages/material-ui-icons/lib/Mood.js index 91576ef7139164..dff26f8d8a505f 100644 --- a/packages/material-ui-icons/lib/Mood.js +++ b/packages/material-ui-icons/lib/Mood.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'Mood'); \ No newline at end of file +}), 'Mood'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodBad.js b/packages/material-ui-icons/lib/MoodBad.js index c6853979642ac5..078e5927687964 100644 --- a/packages/material-ui-icons/lib/MoodBad.js +++ b/packages/material-ui-icons/lib/MoodBad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 3c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" -}), 'MoodBad'); \ No newline at end of file +}), 'MoodBad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodBadOutlined.js b/packages/material-ui-icons/lib/MoodBadOutlined.js index 545ccf31d5d9b3..e6972ccebdd298 100644 --- a/packages/material-ui-icons/lib/MoodBadOutlined.js +++ b/packages/material-ui-icons/lib/MoodBadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" -}), 'MoodBadOutlined'); \ No newline at end of file +}), 'MoodBadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodBadRounded.js b/packages/material-ui-icons/lib/MoodBadRounded.js index 01a3e63d77d09b..f53a6d2104ead0 100644 --- a/packages/material-ui-icons/lib/MoodBadRounded.js +++ b/packages/material-ui-icons/lib/MoodBadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.03 0-3.8 1.11-4.75 2.75-.19.33.06.75.44.75h8.62c.38 0 .63-.42.44-.75-.95-1.64-2.72-2.75-4.75-2.75z" -}), 'MoodBadRounded'); \ No newline at end of file +}), 'MoodBadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodBadSharp.js b/packages/material-ui-icons/lib/MoodBadSharp.js index 9ec77524924134..66c8dcf27d8541 100644 --- a/packages/material-ui-icons/lib/MoodBadSharp.js +++ b/packages/material-ui-icons/lib/MoodBadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" -}), 'MoodBadSharp'); \ No newline at end of file +}), 'MoodBadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodBadTwoTone.js b/packages/material-ui-icons/lib/MoodBadTwoTone.js index 16e631c1c1ed20..cebea02e6410d3 100644 --- a/packages/material-ui-icons/lib/MoodBadTwoTone.js +++ b/packages/material-ui-icons/lib/MoodBadTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm-1.61 9c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "3")], 'MoodBadTwoTone'); \ No newline at end of file +}, "3")], 'MoodBadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodOutlined.js b/packages/material-ui-icons/lib/MoodOutlined.js index 36de849d1bef12..c1b7dd98fed247 100644 --- a/packages/material-ui-icons/lib/MoodOutlined.js +++ b/packages/material-ui-icons/lib/MoodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'MoodOutlined'); \ No newline at end of file +}), 'MoodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodRounded.js b/packages/material-ui-icons/lib/MoodRounded.js index 679003bf3e1182..8bbb00410014ac 100644 --- a/packages/material-ui-icons/lib/MoodRounded.js +++ b/packages/material-ui-icons/lib/MoodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.03 0 3.8-1.11 4.75-2.75.19-.33-.05-.75-.44-.75H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75z" -}), 'MoodRounded'); \ No newline at end of file +}), 'MoodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodSharp.js b/packages/material-ui-icons/lib/MoodSharp.js index c979129d5aa9c9..6f87f2bd648ada 100644 --- a/packages/material-ui-icons/lib/MoodSharp.js +++ b/packages/material-ui-icons/lib/MoodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'MoodSharp'); \ No newline at end of file +}), 'MoodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoodTwoTone.js b/packages/material-ui-icons/lib/MoodTwoTone.js index 4173b2d37dbb90..3d0ec750ca7675 100644 --- a/packages/material-ui-icons/lib/MoodTwoTone.js +++ b/packages/material-ui-icons/lib/MoodTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}, "4")], 'MoodTwoTone'); \ No newline at end of file +}, "4")], 'MoodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Moped.js b/packages/material-ui-icons/lib/Moped.js index c2cd6da0b77d68..5f918198632244 100644 --- a/packages/material-ui-icons/lib/Moped.js +++ b/packages/material-ui-icons/lib/Moped.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'Moped'); \ No newline at end of file +}, "1")], 'Moped'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MopedOutlined.js b/packages/material-ui-icons/lib/MopedOutlined.js index d74bd9faeb8612..1cf68b6f8e8c67 100644 --- a/packages/material-ui-icons/lib/MopedOutlined.js +++ b/packages/material-ui-icons/lib/MopedOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM4 14v-1c0-1.1.9-2 2-2h2v3H4zm3 3c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'MopedOutlined'); \ No newline at end of file +}, "1")], 'MopedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MopedRounded.js b/packages/material-ui-icons/lib/MopedRounded.js index 96ac459cb3ecc5..38a786cb875811 100644 --- a/packages/material-ui-icons/lib/MopedRounded.js +++ b/packages/material-ui-icons/lib/MopedRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2.65L13.52 14H10v-4c0-.55-.45-1-1-1H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm10 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'MopedRounded'); \ No newline at end of file +}, "1")], 'MopedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MopedSharp.js b/packages/material-ui-icons/lib/MopedSharp.js index 392dd0a7387e86..d7f47e3ff4337e 100644 --- a/packages/material-ui-icons/lib/MopedSharp.js +++ b/packages/material-ui-icons/lib/MopedSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'MopedSharp'); \ No newline at end of file +}, "1")], 'MopedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MopedTwoTone.js b/packages/material-ui-icons/lib/MopedTwoTone.js index 570620c5a992ea..15774af003f6c2 100644 --- a/packages/material-ui-icons/lib/MopedTwoTone.js +++ b/packages/material-ui-icons/lib/MopedTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 13v1h4v-3H6c-1.1 0-2 .9-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm1-3H4v-1c0-1.1.9-2 2-2h2v3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "2")], 'MopedTwoTone'); \ No newline at end of file +}, "2")], 'MopedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/More.js b/packages/material-ui-icons/lib/More.js index 69d32362d98075..ef76bb2adc36e9 100644 --- a/packages/material-ui-icons/lib/More.js +++ b/packages/material-ui-icons/lib/More.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'More'); \ No newline at end of file +}), 'More'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreHoriz.js b/packages/material-ui-icons/lib/MoreHoriz.js index 8f7032e04c6e79..f2b6cbd0d3b11a 100644 --- a/packages/material-ui-icons/lib/MoreHoriz.js +++ b/packages/material-ui-icons/lib/MoreHoriz.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreHoriz'); \ No newline at end of file +}), 'MoreHoriz'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreHorizOutlined.js b/packages/material-ui-icons/lib/MoreHorizOutlined.js index 649a22ccf9e970..5e0eee12ba7b95 100644 --- a/packages/material-ui-icons/lib/MoreHorizOutlined.js +++ b/packages/material-ui-icons/lib/MoreHorizOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreHorizOutlined'); \ No newline at end of file +}), 'MoreHorizOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreHorizRounded.js b/packages/material-ui-icons/lib/MoreHorizRounded.js index 0b8545a20f753c..81b7aff6a8a886 100644 --- a/packages/material-ui-icons/lib/MoreHorizRounded.js +++ b/packages/material-ui-icons/lib/MoreHorizRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreHorizRounded'); \ No newline at end of file +}), 'MoreHorizRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreHorizSharp.js b/packages/material-ui-icons/lib/MoreHorizSharp.js index 21d45c2d3dcc2b..b6e282c7981753 100644 --- a/packages/material-ui-icons/lib/MoreHorizSharp.js +++ b/packages/material-ui-icons/lib/MoreHorizSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreHorizSharp'); \ No newline at end of file +}), 'MoreHorizSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreHorizTwoTone.js b/packages/material-ui-icons/lib/MoreHorizTwoTone.js index 7dc2df00cbf7e1..9c94449cbe7ef1 100644 --- a/packages/material-ui-icons/lib/MoreHorizTwoTone.js +++ b/packages/material-ui-icons/lib/MoreHorizTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreHorizTwoTone'); \ No newline at end of file +}), 'MoreHorizTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreOutlined.js b/packages/material-ui-icons/lib/MoreOutlined.js index 675848020c4ad2..83838beac287fd 100644 --- a/packages/material-ui-icons/lib/MoreOutlined.js +++ b/packages/material-ui-icons/lib/MoreOutlined.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "12", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "12", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19", cy: "12", r: "1.5" -}, "3")], 'MoreOutlined'); \ No newline at end of file +}, "3")], 'MoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreRounded.js b/packages/material-ui-icons/lib/MoreRounded.js index 90d2d9274c9001..0412beaf6b798d 100644 --- a/packages/material-ui-icons/lib/MoreRounded.js +++ b/packages/material-ui-icons/lib/MoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L.37 11.45c-.22.34-.22.77 0 1.11l5.04 7.56c.36.52.97.88 1.66.88H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'MoreRounded'); \ No newline at end of file +}), 'MoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreSharp.js b/packages/material-ui-icons/lib/MoreSharp.js index abe4eedf852780..a7e822aef4cff5 100644 --- a/packages/material-ui-icons/lib/MoreSharp.js +++ b/packages/material-ui-icons/lib/MoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 3H6l-6 9 6 9h18V3zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'MoreSharp'); \ No newline at end of file +}), 'MoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreTime.js b/packages/material-ui-icons/lib/MoreTime.js index 78e81d0df3b991..793401242c1139 100644 --- a/packages/material-ui-icons/lib/MoreTime.js +++ b/packages/material-ui-icons/lib/MoreTime.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" -}, "2")], 'MoreTime'); \ No newline at end of file +}, "2")], 'MoreTime'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreTimeOutlined.js b/packages/material-ui-icons/lib/MoreTimeOutlined.js index 65225950ad936a..8c0aeccd1b089d 100644 --- a/packages/material-ui-icons/lib/MoreTimeOutlined.js +++ b/packages/material-ui-icons/lib/MoreTimeOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" -}, "2")], 'MoreTimeOutlined'); \ No newline at end of file +}, "2")], 'MoreTimeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreTimeRounded.js b/packages/material-ui-icons/lib/MoreTimeRounded.js index f4798d88811a75..29b128e4aa47e4 100644 --- a/packages/material-ui-icons/lib/MoreTimeRounded.js +++ b/packages/material-ui-icons/lib/MoreTimeRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.75 8c-.41 0-.75.34-.75.75v4.69c0 .35.18.67.47.85l3.64 2.24c.33.2.76.11.97-.21.23-.34.12-.8-.23-1.01L11.5 13.3V8.75c0-.41-.34-.75-.75-.75z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1z" -}, "2")], 'MoreTimeRounded'); \ No newline at end of file +}, "2")], 'MoreTimeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreTimeSharp.js b/packages/material-ui-icons/lib/MoreTimeSharp.js index ae7441a6451262..b234708bc7a548 100644 --- a/packages/material-ui-icons/lib/MoreTimeSharp.js +++ b/packages/material-ui-icons/lib/MoreTimeSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" -}, "2")], 'MoreTimeSharp'); \ No newline at end of file +}, "2")], 'MoreTimeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreTimeTwoTone.js b/packages/material-ui-icons/lib/MoreTimeTwoTone.js index aaba7f3800cabf..24fa83e396f1b3 100644 --- a/packages/material-ui-icons/lib/MoreTimeTwoTone.js +++ b/packages/material-ui-icons/lib/MoreTimeTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" -}, "2")], 'MoreTimeTwoTone'); \ No newline at end of file +}, "2")], 'MoreTimeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreTwoTone.js b/packages/material-ui-icons/lib/MoreTwoTone.js index 563eb939de0ee9..7aa29b7388eaea 100644 --- a/packages/material-ui-icons/lib/MoreTwoTone.js +++ b/packages/material-ui-icons/lib/MoreTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.06 5 2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM19 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "12", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "12", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19", cy: "12", r: "1.5" -}, "4")], 'MoreTwoTone'); \ No newline at end of file +}, "4")], 'MoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreVert.js b/packages/material-ui-icons/lib/MoreVert.js index 07325d1f8d6584..782483d27cd681 100644 --- a/packages/material-ui-icons/lib/MoreVert.js +++ b/packages/material-ui-icons/lib/MoreVert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreVert'); \ No newline at end of file +}), 'MoreVert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreVertOutlined.js b/packages/material-ui-icons/lib/MoreVertOutlined.js index 89b0dbdbece0ff..7e396d5c6236f4 100644 --- a/packages/material-ui-icons/lib/MoreVertOutlined.js +++ b/packages/material-ui-icons/lib/MoreVertOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreVertOutlined'); \ No newline at end of file +}), 'MoreVertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreVertRounded.js b/packages/material-ui-icons/lib/MoreVertRounded.js index 3bf942d1b6ac21..05a64df0216de7 100644 --- a/packages/material-ui-icons/lib/MoreVertRounded.js +++ b/packages/material-ui-icons/lib/MoreVertRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreVertRounded'); \ No newline at end of file +}), 'MoreVertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreVertSharp.js b/packages/material-ui-icons/lib/MoreVertSharp.js index ebd271eceab0d4..662b6d7616f30f 100644 --- a/packages/material-ui-icons/lib/MoreVertSharp.js +++ b/packages/material-ui-icons/lib/MoreVertSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreVertSharp'); \ No newline at end of file +}), 'MoreVertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoreVertTwoTone.js b/packages/material-ui-icons/lib/MoreVertTwoTone.js index 00804676fdb50b..38264070814b56 100644 --- a/packages/material-ui-icons/lib/MoreVertTwoTone.js +++ b/packages/material-ui-icons/lib/MoreVertTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'MoreVertTwoTone'); \ No newline at end of file +}), 'MoreVertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosAuto.js b/packages/material-ui-icons/lib/MotionPhotosAuto.js index f0e12d160a2345..2cf7fa8ccf9df0 100644 --- a/packages/material-ui-icons/lib/MotionPhotosAuto.js +++ b/packages/material-ui-icons/lib/MotionPhotosAuto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.71-10.5h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" -}), 'MotionPhotosAuto'); \ No newline at end of file +}), 'MotionPhotosAuto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosAutoOutlined.js b/packages/material-ui-icons/lib/MotionPhotosAutoOutlined.js index 8952cf9710bcaa..197ff3603558b4 100644 --- a/packages/material-ui-icons/lib/MotionPhotosAutoOutlined.js +++ b/packages/material-ui-icons/lib/MotionPhotosAutoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zm-.74-1.49h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" -}), 'MotionPhotosAutoOutlined'); \ No newline at end of file +}), 'MotionPhotosAutoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosAutoRounded.js b/packages/material-ui-icons/lib/MotionPhotosAutoRounded.js index 8f0cd2a024a0bb..a5512c3f35db20 100644 --- a/packages/material-ui-icons/lib/MotionPhotosAutoRounded.js +++ b/packages/material-ui-icons/lib/MotionPhotosAutoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9c.26.26.34.63.25.98-.35 1.36-.36 2.87.1 4.38.88 2.91 3.44 5.1 6.44 5.55 5.52.81 10.19-4.06 9.03-9.62-.65-3.13-3.23-5.61-6.37-6.16-1.21-.21-2.38-.15-3.46.13-.35.09-.73 0-.98-.25-.56-.56-.28-1.49.47-1.69 1.47-.38 3.06-.44 4.7-.09 3.98.86 7.09 4.18 7.7 8.2 1.04 6.81-4.82 12.58-11.64 11.42-4.01-.69-7.26-3.86-8.04-7.85-.31-1.59-.24-3.12.12-4.53C2.52 8.72 3.45 8.45 4 9zm3-3.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-3.39-3.37 2.43-6.46c.15-.4.53-.67.96-.67s.82.27.97.67l2.43 6.46c.16.42-.15.87-.6.87-.27 0-.52-.17-.61-.43l-.56-1.61H10.4l-.57 1.62c-.09.26-.33.43-.61.43-.46-.01-.77-.46-.61-.88z" -}), 'MotionPhotosAutoRounded'); \ No newline at end of file +}), 'MotionPhotosAutoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosAutoSharp.js b/packages/material-ui-icons/lib/MotionPhotosAutoSharp.js index edaa8e2c006fa5..94cfb9b9e652da 100644 --- a/packages/material-ui-icons/lib/MotionPhotosAutoSharp.js +++ b/packages/material-ui-icons/lib/MotionPhotosAutoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.71-10.5h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" -}), 'MotionPhotosAutoSharp'); \ No newline at end of file +}), 'MotionPhotosAutoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosAutoTwoTone.js b/packages/material-ui-icons/lib/MotionPhotosAutoTwoTone.js index 2f9090d19a77e8..807b0425682d1b 100644 --- a/packages/material-ui-icons/lib/MotionPhotosAutoTwoTone.js +++ b/packages/material-ui-icons/lib/MotionPhotosAutoTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zm-.74-1.49h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" -}), 'MotionPhotosAutoTwoTone'); \ No newline at end of file +}), 'MotionPhotosAutoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosOff.js b/packages/material-ui-icons/lib/MotionPhotosOff.js index f60c9736de89b5..837843da061e3c 100644 --- a/packages/material-ui-icons/lib/MotionPhotosOff.js +++ b/packages/material-ui-icons/lib/MotionPhotosOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.84 20.84 3.16 3.16 1.89 4.43l1.89 1.89C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.77l1.89 1.89 1.27-1.28zM12 20c-4.41 0-8-3.59-8-8 0-1.55.45-3 1.22-4.23l1.46 1.46C6.25 10.06 6 11 6 12c0 3.31 2.69 6 6 6 1 0 1.94-.25 2.77-.68l1.46 1.46C15 19.55 13.55 20 12 20zM6.32 3.77C7.93 2.66 9.89 2 12 2c5.52 0 10 4.48 10 10 0 2.11-.66 4.07-1.77 5.68l-1.45-1.45C19.55 15 20 13.55 20 12c0-4.41-3.59-8-8-8-1.55 0-3 .45-4.23 1.22L6.32 3.77zM18 12c0 1-.25 1.94-.68 2.77L9.23 6.68C10.06 6.25 11 6 12 6c3.31 0 6 2.69 6 6z" -}), 'MotionPhotosOff'); \ No newline at end of file +}), 'MotionPhotosOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosOffOutlined.js b/packages/material-ui-icons/lib/MotionPhotosOffOutlined.js index bad08bd9d0fdce..b0b396ec1266c3 100644 --- a/packages/material-ui-icons/lib/MotionPhotosOffOutlined.js +++ b/packages/material-ui-icons/lib/MotionPhotosOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.93 10.94C14.86 19.59 13.48 20 12 20zm0-16c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" -}), 'MotionPhotosOffOutlined'); \ No newline at end of file +}), 'MotionPhotosOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosOffRounded.js b/packages/material-ui-icons/lib/MotionPhotosOffRounded.js index 92f3eed6d2b7a9..65a028fccd19ec 100644 --- a/packages/material-ui-icons/lib/MotionPhotosOffRounded.js +++ b/packages/material-ui-icons/lib/MotionPhotosOffRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-.92 0-1.8.22-2.58.59l7.99 7.99c.37-.78.59-1.66.59-2.58 0-3.31-2.69-6-6-6zM2.1 3.51c-.39.39-.39 1.03 0 1.42l1.56 1.56c-1.25 1.88-1.88 4.21-1.59 6.7.52 4.54 4.21 8.23 8.75 8.75 2.49.28 4.81-.34 6.69-1.59l1.56 1.56c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41L3.51 3.51c-.38-.38-1.02-.39-1.41 0zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l1.47 1.47C6.22 10.2 6 11.08 6 12c0 3.31 2.69 6 6 6 .92 0 1.8-.22 2.58-.59l1.47 1.47C14.86 19.59 13.48 20 12 20z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" -}, "1")], 'MotionPhotosOffRounded'); \ No newline at end of file +}, "1")], 'MotionPhotosOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosOffSharp.js b/packages/material-ui-icons/lib/MotionPhotosOffSharp.js index aecf8af9a043d0..584339164403ea 100644 --- a/packages/material-ui-icons/lib/MotionPhotosOffSharp.js +++ b/packages/material-ui-icons/lib/MotionPhotosOffSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-.92 0-1.8.22-2.58.59l7.99 7.99c.37-.78.59-1.66.59-2.58 0-3.31-2.69-6-6-6zM2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l1.47 1.47C6.22 10.2 6 11.08 6 12c0 3.31 2.69 6 6 6 .92 0 1.8-.22 2.58-.59l1.47 1.47C14.86 19.59 13.48 20 12 20z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" -}, "1")], 'MotionPhotosOffSharp'); \ No newline at end of file +}, "1")], 'MotionPhotosOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MotionPhotosOffTwoTone.js b/packages/material-ui-icons/lib/MotionPhotosOffTwoTone.js index c18381c92f0df9..02c3e713e0ac39 100644 --- a/packages/material-ui-icons/lib/MotionPhotosOffTwoTone.js +++ b/packages/material-ui-icons/lib/MotionPhotosOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.93 10.94C14.86 19.59 13.48 20 12 20zm0-16c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" -}), 'MotionPhotosOffTwoTone'); \ No newline at end of file +}), 'MotionPhotosOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mouse.js b/packages/material-ui-icons/lib/Mouse.js index 1747759282cbef..55bfd3872a36b7 100644 --- a/packages/material-ui-icons/lib/Mouse.js +++ b/packages/material-ui-icons/lib/Mouse.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" -}), 'Mouse'); \ No newline at end of file +}), 'Mouse'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MouseOutlined.js b/packages/material-ui-icons/lib/MouseOutlined.js index 494d045e3bb91a..648e276b071e67 100644 --- a/packages/material-ui-icons/lib/MouseOutlined.js +++ b/packages/material-ui-icons/lib/MouseOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-2 0h-5V3.16c2.81.47 4.96 2.9 5 5.84zm-7-5.84V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z" -}), 'MouseOutlined'); \ No newline at end of file +}), 'MouseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MouseRounded.js b/packages/material-ui-icons/lib/MouseRounded.js index 31b019f2ffb164..8ef112fff3f90c 100644 --- a/packages/material-ui-icons/lib/MouseRounded.js +++ b/packages/material-ui-icons/lib/MouseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" -}), 'MouseRounded'); \ No newline at end of file +}), 'MouseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MouseSharp.js b/packages/material-ui-icons/lib/MouseSharp.js index fd7a1308b965dd..ac35221df26dae 100644 --- a/packages/material-ui-icons/lib/MouseSharp.js +++ b/packages/material-ui-icons/lib/MouseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" -}), 'MouseSharp'); \ No newline at end of file +}), 'MouseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MouseTwoTone.js b/packages/material-ui-icons/lib/MouseTwoTone.js index cc969bafd646cc..e085ba4f07b0aa 100644 --- a/packages/material-ui-icons/lib/MouseTwoTone.js +++ b/packages/material-ui-icons/lib/MouseTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3.16V9h5c-.04-2.94-2.19-5.37-5-5.84zm-2 0C8.19 3.63 6.04 6.06 6 9h5V3.16zM11 11H6v4c0 3.31 2.69 6 6 6s6-2.69 6-6v-4h-7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-7-5.84c2.81.47 4.96 2.9 5 5.84h-5V3.16zm-2 0V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z" -}, "1")], 'MouseTwoTone'); \ No newline at end of file +}, "1")], 'MouseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoveToInbox.js b/packages/material-ui-icons/lib/MoveToInbox.js index 23bda42044a64f..1ac3e20775a1a6 100644 --- a/packages/material-ui-icons/lib/MoveToInbox.js +++ b/packages/material-ui-icons/lib/MoveToInbox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z" -}), 'MoveToInbox'); \ No newline at end of file +}), 'MoveToInbox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoveToInboxOutlined.js b/packages/material-ui-icons/lib/MoveToInboxOutlined.js index 98ec6a8de88539..de075eff91cecd 100644 --- a/packages/material-ui-icons/lib/MoveToInboxOutlined.js +++ b/packages/material-ui-icons/lib/MoveToInboxOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z" -}), 'MoveToInboxOutlined'); \ No newline at end of file +}), 'MoveToInboxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoveToInboxRounded.js b/packages/material-ui-icons/lib/MoveToInboxRounded.js index 3d7220385b43b9..7c58f66bf6f8ab 100644 --- a/packages/material-ui-icons/lib/MoveToInboxRounded.js +++ b/packages/material-ui-icons/lib/MoveToInboxRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 11h-3.56c-.36 0-.68.19-.86.5-.52.9-1.47 1.5-2.58 1.5s-2.06-.6-2.58-1.5c-.18-.31-.51-.5-.86-.5H5V5h14v9zm-4.21-4H13V7c0-.55-.45-1-1-1s-1 .45-1 1v3H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" -}), 'MoveToInboxRounded'); \ No newline at end of file +}), 'MoveToInboxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoveToInboxSharp.js b/packages/material-ui-icons/lib/MoveToInboxSharp.js index ca9ed705d5df84..bdc7404dbd0aca 100644 --- a/packages/material-ui-icons/lib/MoveToInboxSharp.js +++ b/packages/material-ui-icons/lib/MoveToInboxSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z" -}), 'MoveToInboxSharp'); \ No newline at end of file +}), 'MoveToInboxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MoveToInboxTwoTone.js b/packages/material-ui-icons/lib/MoveToInboxTwoTone.js index d530e9b1b21a38..a7f11cc90b4c06 100644 --- a/packages/material-ui-icons/lib/MoveToInboxTwoTone.js +++ b/packages/material-ui-icons/lib/MoveToInboxTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z" -}, "1")], 'MoveToInboxTwoTone'); \ No newline at end of file +}, "1")], 'MoveToInboxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Movie.js b/packages/material-ui-icons/lib/Movie.js index 0233c068c98c85..e087550240c9ec 100644 --- a/packages/material-ui-icons/lib/Movie.js +++ b/packages/material-ui-icons/lib/Movie.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" -}), 'Movie'); \ No newline at end of file +}), 'Movie'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieCreation.js b/packages/material-ui-icons/lib/MovieCreation.js index 437d58c1cfa142..3b06c847006b4c 100644 --- a/packages/material-ui-icons/lib/MovieCreation.js +++ b/packages/material-ui-icons/lib/MovieCreation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" -}), 'MovieCreation'); \ No newline at end of file +}), 'MovieCreation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieCreationOutlined.js b/packages/material-ui-icons/lib/MovieCreationOutlined.js index 2bf5eabf263774..737634456881e8 100644 --- a/packages/material-ui-icons/lib/MovieCreationOutlined.js +++ b/packages/material-ui-icons/lib/MovieCreationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" -}), 'MovieCreationOutlined'); \ No newline at end of file +}), 'MovieCreationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieCreationRounded.js b/packages/material-ui-icons/lib/MovieCreationRounded.js index 45d7bfb9a61729..7d2b232ba218cc 100644 --- a/packages/material-ui-icons/lib/MovieCreationRounded.js +++ b/packages/material-ui-icons/lib/MovieCreationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L15 4h-2l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L10 4H8l1.82 3.64c.08.16-.04.36-.22.36H7.62c-.38 0-.73-.21-.9-.55L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1h-3z" -}), 'MovieCreationRounded'); \ No newline at end of file +}), 'MovieCreationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieCreationSharp.js b/packages/material-ui-icons/lib/MovieCreationSharp.js index e2784393183698..de5c27577cd116 100644 --- a/packages/material-ui-icons/lib/MovieCreationSharp.js +++ b/packages/material-ui-icons/lib/MovieCreationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" -}), 'MovieCreationSharp'); \ No newline at end of file +}), 'MovieCreationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieCreationTwoTone.js b/packages/material-ui-icons/lib/MovieCreationTwoTone.js index 67ebe1d31c6c70..c299c98b4b4564 100644 --- a/packages/material-ui-icons/lib/MovieCreationTwoTone.js +++ b/packages/material-ui-icons/lib/MovieCreationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6.47V18h16v-8H5.76z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm2 14H4V6.47L5.76 10H20v8z" -}, "1")], 'MovieCreationTwoTone'); \ No newline at end of file +}, "1")], 'MovieCreationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieFilter.js b/packages/material-ui-icons/lib/MovieFilter.js index ac99f3da0d5518..d53f8b6cb40114 100644 --- a/packages/material-ui-icons/lib/MovieFilter.js +++ b/packages/material-ui-icons/lib/MovieFilter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" -}), 'MovieFilter'); \ No newline at end of file +}), 'MovieFilter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieFilterOutlined.js b/packages/material-ui-icons/lib/MovieFilterOutlined.js index 5ae7d143476b3b..112adbc8801b63 100644 --- a/packages/material-ui-icons/lib/MovieFilterOutlined.js +++ b/packages/material-ui-icons/lib/MovieFilterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 11-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7 2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z" -}), 'MovieFilterOutlined'); \ No newline at end of file +}), 'MovieFilterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieFilterRounded.js b/packages/material-ui-icons/lib/MovieFilterRounded.js index cde86176beab9b..08024fe50c3607 100644 --- a/packages/material-ui-icons/lib/MovieFilterRounded.js +++ b/packages/material-ui-icons/lib/MovieFilterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.5 4H18l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.65-.17-.83-.45L15 4h-2l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.65-.17-.83-.45L10 4H8l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.64-.17-.83-.45L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4.5c0-.28-.22-.5-.5-.5zM11.25 15.25 10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" -}), 'MovieFilterRounded'); \ No newline at end of file +}), 'MovieFilterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieFilterSharp.js b/packages/material-ui-icons/lib/MovieFilterSharp.js index 247448a74d9939..0556fea1bbe82d 100644 --- a/packages/material-ui-icons/lib/MovieFilterSharp.js +++ b/packages/material-ui-icons/lib/MovieFilterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" -}), 'MovieFilterSharp'); \ No newline at end of file +}), 'MovieFilterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieFilterTwoTone.js b/packages/material-ui-icons/lib/MovieFilterTwoTone.js index 4044cb0fd59713..3ea7d9ec306e2c 100644 --- a/packages/material-ui-icons/lib/MovieFilterTwoTone.js +++ b/packages/material-ui-icons/lib/MovieFilterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.63 11.37 18 12l-1.37.63L16 14l-.63-1.37L14 12l1.37-.63L16 10H5.77L4.01 6.47V18h16v-8H16l.63 1.37zm-5.69 3.57L10 17l-.94-2.06L7 14l2.06-.94L10 11l.94 2.06L13 14l-2.06.94z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 11-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7 2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z" -}, "1")], 'MovieFilterTwoTone'); \ No newline at end of file +}, "1")], 'MovieFilterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieOutlined.js b/packages/material-ui-icons/lib/MovieOutlined.js index d9edad784c260c..d302d457ea9fcf 100644 --- a/packages/material-ui-icons/lib/MovieOutlined.js +++ b/packages/material-ui-icons/lib/MovieOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6.47 5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" -}), 'MovieOutlined'); \ No newline at end of file +}), 'MovieOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieRounded.js b/packages/material-ui-icons/lib/MovieRounded.js index 2dbb42a9149793..0b3218b4fe89d4 100644 --- a/packages/material-ui-icons/lib/MovieRounded.js +++ b/packages/material-ui-icons/lib/MovieRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L15 4h-2l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L10 4H8l1.82 3.64c.08.16-.04.36-.22.36H7.62c-.38 0-.73-.21-.9-.55L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1h-3z" -}), 'MovieRounded'); \ No newline at end of file +}), 'MovieRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieSharp.js b/packages/material-ui-icons/lib/MovieSharp.js index be297a713187ac..b309de449c2a46 100644 --- a/packages/material-ui-icons/lib/MovieSharp.js +++ b/packages/material-ui-icons/lib/MovieSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" -}), 'MovieSharp'); \ No newline at end of file +}), 'MovieSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovieTwoTone.js b/packages/material-ui-icons/lib/MovieTwoTone.js index da134be7f91998..f9bda3174fbfe0 100644 --- a/packages/material-ui-icons/lib/MovieTwoTone.js +++ b/packages/material-ui-icons/lib/MovieTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10H5.76L4 6.47V18h16z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.01 6 2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2zM4 6.47 5.76 10H20v8H4V6.47z" -}, "1")], 'MovieTwoTone'); \ No newline at end of file +}, "1")], 'MovieTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Moving.js b/packages/material-ui-icons/lib/Moving.js index 5b7df0a3d74475..dc92635929cec0 100644 --- a/packages/material-ui-icons/lib/Moving.js +++ b/packages/material-ui-icons/lib/Moving.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.71 9.71 22 12V6h-6l2.29 2.29-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0l4.19-4.17z" -}), 'Moving'); \ No newline at end of file +}), 'Moving'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovingOutlined.js b/packages/material-ui-icons/lib/MovingOutlined.js index 1a27efc670cde4..62659ad51c5b1d 100644 --- a/packages/material-ui-icons/lib/MovingOutlined.js +++ b/packages/material-ui-icons/lib/MovingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9.42V12h2V6h-6v2h2.58l-4.46 4.46c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0L20 9.42z" -}), 'MovingOutlined'); \ No newline at end of file +}), 'MovingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovingRounded.js b/packages/material-ui-icons/lib/MovingRounded.js index 0336cb0003df26..74e751a0bb5c98 100644 --- a/packages/material-ui-icons/lib/MovingRounded.js +++ b/packages/material-ui-icons/lib/MovingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.7 17.29c.39.39 1.02.39 1.41 0L8.7 12.7c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0L19.7 9.7l1.44 1.44c.31.31.85.09.85-.35V6.5c.01-.28-.21-.5-.49-.5h-4.29c-.45 0-.67.54-.35.85l1.44 1.44-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2.7 15.88c-.38.39-.38 1.03 0 1.41z" -}), 'MovingRounded'); \ No newline at end of file +}), 'MovingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovingSharp.js b/packages/material-ui-icons/lib/MovingSharp.js index 6db99ac81cfa2a..5da725cb51b730 100644 --- a/packages/material-ui-icons/lib/MovingSharp.js +++ b/packages/material-ui-icons/lib/MovingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.71 9.71 22 12V6h-6l2.29 2.29-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0l4.19-4.17z" -}), 'MovingSharp'); \ No newline at end of file +}), 'MovingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MovingTwoTone.js b/packages/material-ui-icons/lib/MovingTwoTone.js index 20bb26554cd06a..61a912ff57e726 100644 --- a/packages/material-ui-icons/lib/MovingTwoTone.js +++ b/packages/material-ui-icons/lib/MovingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.71 9.71 22 12V6h-6l2.29 2.29-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0l4.19-4.17z" -}), 'MovingTwoTone'); \ No newline at end of file +}), 'MovingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Mp.js b/packages/material-ui-icons/lib/Mp.js index 7b184ab80780f3..48d8fae4072960 100644 --- a/packages/material-ui-icons/lib/Mp.js +++ b/packages/material-ui-icons/lib/Mp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9H11c.55 0 1 .45 1 1v5h-1.5v-4.5h-1v3H8v-3H7V15H5.5v-5c0-.55.45-1 1-1zm9 6H14V9h3.5c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2V15zm0-3H17v-1.5h-1.5V12z" -}), 'Mp'); \ No newline at end of file +}), 'Mp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MpOutlined.js b/packages/material-ui-icons/lib/MpOutlined.js index 61ae95238814c2..1e33b011f136b1 100644 --- a/packages/material-ui-icons/lib/MpOutlined.js +++ b/packages/material-ui-icons/lib/MpOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 9h-3.5v6H15v-1.5h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-.5 3H15v-1.5h1.5V12zm-5-3H7c-.55 0-1 .45-1 1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5c0-.55-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 19V5h14v14H5z" -}, "1")], 'MpOutlined'); \ No newline at end of file +}, "1")], 'MpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MpRounded.js b/packages/material-ui-icons/lib/MpRounded.js index 9f070b62f1104e..d0b680645dee8c 100644 --- a/packages/material-ui-icons/lib/MpRounded.js +++ b/packages/material-ui-icons/lib/MpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7 9h4.5c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10.5h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10.5h-1v3.75c0 .41-.34.75-.75.75S6 14.66 6 14.25V10c0-.55.45-1 1-1zm7.25 6c-.41 0-.75-.33-.75-.75V10c0-.55.45-1 1-1H17c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75zm.75-3h1.5v-1.5H15V12z" -}), 'MpRounded'); \ No newline at end of file +}), 'MpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MpSharp.js b/packages/material-ui-icons/lib/MpSharp.js index ee4641245197ee..40044f3cf0dc2b 100644 --- a/packages/material-ui-icons/lib/MpSharp.js +++ b/packages/material-ui-icons/lib/MpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM6 9h6.5v6H11v-4.5h-1v3H8.5v-3h-1V15H6V9zm9 6h-1.5V9H18v4.5h-3V15zm0-3h1.5v-1.5H15V12z" -}), 'MpSharp'); \ No newline at end of file +}), 'MpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MpTwoTone.js b/packages/material-ui-icons/lib/MpTwoTone.js index 2d7a610a2acdf4..086373a1d2bb24 100644 --- a/packages/material-ui-icons/lib/MpTwoTone.js +++ b/packages/material-ui-icons/lib/MpTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10.5h1.5V12H15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V5H5zm7.5 10H11v-4.5h-1v3H8.5v-3h-1V15H6v-5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5zm5.5-2.5c0 .55-.45 1-1 1h-2V15h-1.5V9H17c.55 0 1 .45 1 1v2.5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 9h-3.5v6H15v-1.5h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-.5 3H15v-1.5h1.5V12zm-5-3H7c-.55 0-1 .45-1 1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5c0-.55-.45-1-1-1z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 19V5h14v14H5z" -}, "3")], 'MpTwoTone'); \ No newline at end of file +}, "3")], 'MpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultilineChart.js b/packages/material-ui-icons/lib/MultilineChart.js index 9bb5c3d5f48297..f9c289f844ab7b 100644 --- a/packages/material-ui-icons/lib/MultilineChart.js +++ b/packages/material-ui-icons/lib/MultilineChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" -}), 'MultilineChart'); \ No newline at end of file +}), 'MultilineChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultilineChartOutlined.js b/packages/material-ui-icons/lib/MultilineChartOutlined.js index f3382e6c3e20ed..edd82c696333f4 100644 --- a/packages/material-ui-icons/lib/MultilineChartOutlined.js +++ b/packages/material-ui-icons/lib/MultilineChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" -}), 'MultilineChartOutlined'); \ No newline at end of file +}), 'MultilineChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultilineChartRounded.js b/packages/material-ui-icons/lib/MultilineChartRounded.js index 3f30166379329d..03a87417c4936d 100644 --- a/packages/material-ui-icons/lib/MultilineChartRounded.js +++ b/packages/material-ui-icons/lib/MultilineChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.36 6.28-.06-.06c-.39-.39-1.03-.37-1.39.04l-2.18 2.45C15.68 6.4 12.83 5 9.61 5c-2.5 0-4.83.87-6.75 2.3-.47.35-.52 1.04-.11 1.45l.06.06c.33.33.86.39 1.23.11C5.63 7.72 7.54 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.12 6.13c-.37.37-.37.98 0 1.35l.15.15c.37.37.98.37 1.35 0l5.32-5.33 3.25 3.25c.41.41 1.07.39 1.45-.04l3.35-3.76c.62 1.12 1.08 2.39 1.32 3.73.08.47.47.82.95.82h.09c.6 0 1.05-.55.94-1.14-.32-1.85-.98-3.54-1.89-5L21.4 7.6c.34-.38.32-.96-.04-1.32z" -}), 'MultilineChartRounded'); \ No newline at end of file +}), 'MultilineChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultilineChartSharp.js b/packages/material-ui-icons/lib/MultilineChartSharp.js index fc94c3b5a43e9a..705a9a6bae1bc5 100644 --- a/packages/material-ui-icons/lib/MultilineChartSharp.js +++ b/packages/material-ui-icons/lib/MultilineChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" -}), 'MultilineChartSharp'); \ No newline at end of file +}), 'MultilineChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultilineChartTwoTone.js b/packages/material-ui-icons/lib/MultilineChartTwoTone.js index 2fb74556c92e31..d16d209519a2e5 100644 --- a/packages/material-ui-icons/lib/MultilineChartTwoTone.js +++ b/packages/material-ui-icons/lib/MultilineChartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" -}), 'MultilineChartTwoTone'); \ No newline at end of file +}), 'MultilineChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultipleStop.js b/packages/material-ui-icons/lib/MultipleStop.js index 07b6188930392c..2f7a92d7c4b24f 100644 --- a/packages/material-ui-icons/lib/MultipleStop.js +++ b/packages/material-ui-icons/lib/MultipleStop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 4 4 4-4 4V9h-4V7h4V4zm-7 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h4v-2H7v-3l-4 4 4 4v-3zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'MultipleStop'); \ No newline at end of file +}), 'MultipleStop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultipleStopOutlined.js b/packages/material-ui-icons/lib/MultipleStopOutlined.js index 846363278bab90..cb362de85e2754 100644 --- a/packages/material-ui-icons/lib/MultipleStopOutlined.js +++ b/packages/material-ui-icons/lib/MultipleStopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 4 4 4-4 4V9h-4V7h4V4zm-7 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h4v-2H7v-3l-4 4 4 4v-3zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'MultipleStopOutlined'); \ No newline at end of file +}), 'MultipleStopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultipleStopRounded.js b/packages/material-ui-icons/lib/MultipleStopRounded.js index 13563ad91a730f..a4bf2074edc897 100644 --- a/packages/material-ui-icons/lib/MultipleStopRounded.js +++ b/packages/material-ui-icons/lib/MultipleStopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 5.21c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36V9h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V5.21zM10 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h3c.55 0 1-.45 1-1s-.45-1-1-1H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V17zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'MultipleStopRounded'); \ No newline at end of file +}), 'MultipleStopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultipleStopSharp.js b/packages/material-ui-icons/lib/MultipleStopSharp.js index 2bef7db8004380..61b410ea36e852 100644 --- a/packages/material-ui-icons/lib/MultipleStopSharp.js +++ b/packages/material-ui-icons/lib/MultipleStopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 4 4 4-4 4V9h-4V7h4V4zM7 17h4v-2H7v-3l-4 4 4 4v-3zm12-2h-2v2h2v-2zm-4 0h-2v2h2v-2zm-4-8H9v2h2V7zM7 7H5v2h2V7z" -}), 'MultipleStopSharp'); \ No newline at end of file +}), 'MultipleStopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MultipleStopTwoTone.js b/packages/material-ui-icons/lib/MultipleStopTwoTone.js index 38ee01eb5d036d..eac03708c533e6 100644 --- a/packages/material-ui-icons/lib/MultipleStopTwoTone.js +++ b/packages/material-ui-icons/lib/MultipleStopTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17 4 4 4-4 4V9h-4V7h4V4zm-7 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h4v-2H7v-3l-4 4 4 4v-3zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'MultipleStopTwoTone'); \ No newline at end of file +}), 'MultipleStopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Museum.js b/packages/material-ui-icons/lib/Museum.js index 0f4fcbf3e41a15..e2bff708551cd4 100644 --- a/packages/material-ui-icons/lib/Museum.js +++ b/packages/material-ui-icons/lib/Museum.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-6 7h-2v-4l-2 3-2-3v4H8v-7h2l2 3 2-3h2v7z" -}), 'Museum'); \ No newline at end of file +}), 'Museum'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MuseumOutlined.js b/packages/material-ui-icons/lib/MuseumOutlined.js index db78b2181254c8..187a7014784c44 100644 --- a/packages/material-ui-icons/lib/MuseumOutlined.js +++ b/packages/material-ui-icons/lib/MuseumOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-4 9H6V9h12v11z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 14 2 3 2-3v4h2v-7h-2l-2 3-2-3H8v7h2z" -}, "1")], 'MuseumOutlined'); \ No newline at end of file +}, "1")], 'MuseumOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MuseumRounded.js b/packages/material-ui-icons/lib/MuseumRounded.js index 1b9b57f56f58e6..8cdde861b78d14 100644 --- a/packages/material-ui-icons/lib/MuseumRounded.js +++ b/packages/material-ui-icons/lib/MuseumRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.5 11c.28 0 .5-.22.5-.5V9.26c0-.16-.08-.32-.21-.41L12.57 2.4c-.34-.24-.8-.24-1.15 0L2.21 8.85c-.13.09-.21.25-.21.41v1.24c0 .28.22.5.5.5H4v9H3c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1h-1v-9h1.5zM16 17c0 .55-.45 1-1 1s-1-.45-1-1v-3l-1.17 1.75c-.4.59-1.27.59-1.66 0L10 14v3c0 .55-.45 1-1 1s-1-.45-1-1v-4.7c0-.72.58-1.3 1.3-1.3.43 0 .84.22 1.08.58L12 14l1.61-2.42c.25-.36.65-.58 1.09-.58.72 0 1.3.58 1.3 1.3V17z" -}), 'MuseumRounded'); \ No newline at end of file +}), 'MuseumRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MuseumSharp.js b/packages/material-ui-icons/lib/MuseumSharp.js index 6f2b0dc1137146..0a5328735e2947 100644 --- a/packages/material-ui-icons/lib/MuseumSharp.js +++ b/packages/material-ui-icons/lib/MuseumSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-6 7h-2v-4l-2 3-2-3v4H8v-7h2l2 3 2-3h2v7z" -}), 'MuseumSharp'); \ No newline at end of file +}), 'MuseumSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MuseumTwoTone.js b/packages/material-ui-icons/lib/MuseumTwoTone.js index b372981c73e03a..aa606b2bcc529f 100644 --- a/packages/material-ui-icons/lib/MuseumTwoTone.js +++ b/packages/material-ui-icons/lib/MuseumTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h12V9H6v11zm2-9h2l2 3 2-3h2v7h-2v-4l-2 3-2-3v4H8v-7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-4 9H6V9h12v11z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 14 2 3 2-3v4h2v-7h-2l-2 3-2-3H8v7h2z" -}, "2")], 'MuseumTwoTone'); \ No newline at end of file +}, "2")], 'MuseumTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicNote.js b/packages/material-ui-icons/lib/MusicNote.js index 0f3234d35d8082..5894adc0071f8d 100644 --- a/packages/material-ui-icons/lib/MusicNote.js +++ b/packages/material-ui-icons/lib/MusicNote.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" -}), 'MusicNote'); \ No newline at end of file +}), 'MusicNote'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicNoteOutlined.js b/packages/material-ui-icons/lib/MusicNoteOutlined.js index 764aec5625bddf..3df5f381ffec50 100644 --- a/packages/material-ui-icons/lib/MusicNoteOutlined.js +++ b/packages/material-ui-icons/lib/MusicNoteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 3 .01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'MusicNoteOutlined'); \ No newline at end of file +}), 'MusicNoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicNoteRounded.js b/packages/material-ui-icons/lib/MusicNoteRounded.js index 64605424cc96cf..01e72fb01fe46a 100644 --- a/packages/material-ui-icons/lib/MusicNoteRounded.js +++ b/packages/material-ui-icons/lib/MusicNoteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z" -}), 'MusicNoteRounded'); \ No newline at end of file +}), 'MusicNoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicNoteSharp.js b/packages/material-ui-icons/lib/MusicNoteSharp.js index ac0f6d10beeef5..a4e9b8586eeff7 100644 --- a/packages/material-ui-icons/lib/MusicNoteSharp.js +++ b/packages/material-ui-icons/lib/MusicNoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" -}), 'MusicNoteSharp'); \ No newline at end of file +}), 'MusicNoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicNoteTwoTone.js b/packages/material-ui-icons/lib/MusicNoteTwoTone.js index 120dabb9926f96..47ae67a411a362 100644 --- a/packages/material-ui-icons/lib/MusicNoteTwoTone.js +++ b/packages/material-ui-icons/lib/MusicNoteTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10.01", cy: "17", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 3 .01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'MusicNoteTwoTone'); \ No newline at end of file +}, "1")], 'MusicNoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicOff.js b/packages/material-ui-icons/lib/MusicOff.js index 0d45536b5ac3c3..ca3b84543f958e 100644 --- a/packages/material-ui-icons/lib/MusicOff.js +++ b/packages/material-ui-icons/lib/MusicOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.27 3 3 4.27l9 9v.28c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4v-1.73L19.73 21 21 19.73 4.27 3zM14 7h4V3h-6v5.18l2 2z" -}), 'MusicOff'); \ No newline at end of file +}), 'MusicOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicOffOutlined.js b/packages/material-ui-icons/lib/MusicOffOutlined.js index 7723db07eadaa7..001592f34023fe 100644 --- a/packages/material-ui-icons/lib/MusicOffOutlined.js +++ b/packages/material-ui-icons/lib/MusicOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'MusicOffOutlined'); \ No newline at end of file +}), 'MusicOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicOffRounded.js b/packages/material-ui-icons/lib/MusicOffRounded.js index 3b7fe52260cb43..27b4a5eb370d88 100644 --- a/packages/material-ui-icons/lib/MusicOffRounded.js +++ b/packages/material-ui-icons/lib/MusicOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9.61V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-3c-.55 0-1 .45-1 1v3.61l2 2zM5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l8.29 8.3v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58l5.02 5.02c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56z" -}), 'MusicOffRounded'); \ No newline at end of file +}), 'MusicOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicOffSharp.js b/packages/material-ui-icons/lib/MusicOffSharp.js index 5ad57e4f304161..e1b21807ad0dec 100644 --- a/packages/material-ui-icons/lib/MusicOffSharp.js +++ b/packages/material-ui-icons/lib/MusicOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9.61V7h4V3h-6v4.61zM4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44 4.41 2.86z" -}), 'MusicOffSharp'); \ No newline at end of file +}), 'MusicOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicOffTwoTone.js b/packages/material-ui-icons/lib/MusicOffTwoTone.js index f4d5bd59ef97f9..ca1c11f342282e 100644 --- a/packages/material-ui-icons/lib/MusicOffTwoTone.js +++ b/packages/material-ui-icons/lib/MusicOffTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "17", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'MusicOffTwoTone'); \ No newline at end of file +}, "1")], 'MusicOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicVideo.js b/packages/material-ui-icons/lib/MusicVideo.js index b3654c227b5bed..14d2c105fe2600 100644 --- a/packages/material-ui-icons/lib/MusicVideo.js +++ b/packages/material-ui-icons/lib/MusicVideo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" -}), 'MusicVideo'); \ No newline at end of file +}), 'MusicVideo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicVideoOutlined.js b/packages/material-ui-icons/lib/MusicVideoOutlined.js index eb7e4dafed0ebf..e0ecf46655a504 100644 --- a/packages/material-ui-icons/lib/MusicVideoOutlined.js +++ b/packages/material-ui-icons/lib/MusicVideoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" -}), 'MusicVideoOutlined'); \ No newline at end of file +}), 'MusicVideoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicVideoRounded.js b/packages/material-ui-icons/lib/MusicVideoRounded.js index efdc8b2d92cf02..6f56c5776fb9c5 100644 --- a/packages/material-ui-icons/lib/MusicVideoRounded.js +++ b/packages/material-ui-icons/lib/MusicVideoRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.84 16.98c1.26-.17 2.16-1.33 2.16-2.6V9h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1v4.51c-.46-.35-1.02-.54-1.66-.51-1.11.07-2.09.92-2.3 2.02-.31 1.71 1.11 3.18 2.8 2.96z" -}, "1")], 'MusicVideoRounded'); \ No newline at end of file +}, "1")], 'MusicVideoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicVideoSharp.js b/packages/material-ui-icons/lib/MusicVideoSharp.js index 18df223d08f246..fe068e9dd8a195 100644 --- a/packages/material-ui-icons/lib/MusicVideoSharp.js +++ b/packages/material-ui-icons/lib/MusicVideoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-2 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" -}), 'MusicVideoSharp'); \ No newline at end of file +}), 'MusicVideoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MusicVideoTwoTone.js b/packages/material-ui-icons/lib/MusicVideoTwoTone.js index 0834df267b7939..531150042967fc 100644 --- a/packages/material-ui-icons/lib/MusicVideoTwoTone.js +++ b/packages/material-ui-icons/lib/MusicVideoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V5H3v14zm8-7c.35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3s1.34-3 3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-1c1.65 0 2.98-1.33 3-2.97V8h3V6h-5v6.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3z" -}, "1")], 'MusicVideoTwoTone'); \ No newline at end of file +}, "1")], 'MusicVideoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MyLocation.js b/packages/material-ui-icons/lib/MyLocation.js index eb583637d91b0d..2c3ed2548be373 100644 --- a/packages/material-ui-icons/lib/MyLocation.js +++ b/packages/material-ui-icons/lib/MyLocation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'MyLocation'); \ No newline at end of file +}), 'MyLocation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MyLocationOutlined.js b/packages/material-ui-icons/lib/MyLocationOutlined.js index 4984e2dd76110f..8edcb42cf904d0 100644 --- a/packages/material-ui-icons/lib/MyLocationOutlined.js +++ b/packages/material-ui-icons/lib/MyLocationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'MyLocationOutlined'); \ No newline at end of file +}), 'MyLocationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MyLocationRounded.js b/packages/material-ui-icons/lib/MyLocationRounded.js index 77b611a65fb749..2d8cec0cf82739 100644 --- a/packages/material-ui-icons/lib/MyLocationRounded.js +++ b/packages/material-ui-icons/lib/MyLocationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'MyLocationRounded'); \ No newline at end of file +}), 'MyLocationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MyLocationSharp.js b/packages/material-ui-icons/lib/MyLocationSharp.js index 0be2fa8f6ff9d8..b8665d789ce183 100644 --- a/packages/material-ui-icons/lib/MyLocationSharp.js +++ b/packages/material-ui-icons/lib/MyLocationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'MyLocationSharp'); \ No newline at end of file +}), 'MyLocationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/MyLocationTwoTone.js b/packages/material-ui-icons/lib/MyLocationTwoTone.js index 635cba50e37f9c..d37cf007154547 100644 --- a/packages/material-ui-icons/lib/MyLocationTwoTone.js +++ b/packages/material-ui-icons/lib/MyLocationTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3.06V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "2")], 'MyLocationTwoTone'); \ No newline at end of file +}, "2")], 'MyLocationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Nat.js b/packages/material-ui-icons/lib/Nat.js index a1e7243b10f558..932864da1abdfb 100644 --- a/packages/material-ui-icons/lib/Nat.js +++ b/packages/material-ui-icons/lib/Nat.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" -}, "1")], 'Nat'); \ No newline at end of file +}, "1")], 'Nat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatOutlined.js b/packages/material-ui-icons/lib/NatOutlined.js index 33b7f36b02842a..fdbde843dc2e37 100644 --- a/packages/material-ui-icons/lib/NatOutlined.js +++ b/packages/material-ui-icons/lib/NatOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" -}, "1")], 'NatOutlined'); \ No newline at end of file +}, "1")], 'NatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatRounded.js b/packages/material-ui-icons/lib/NatRounded.js index b3e4b6568bf494..33674bc1352092 100644 --- a/packages/material-ui-icons/lib/NatRounded.js +++ b/packages/material-ui-icons/lib/NatRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.47 12.4c.27-.2.27-.6 0-.8L19 9v2h-4.05c-.47-4.69-4.16-8.42-8.83-8.94-.6-.06-1.12.4-1.12 1 0 .5.37.93.87.99C9.88 4.48 13 7.87 13 12s-3.12 7.52-7.13 7.95c-.5.06-.87.49-.87.99 0 .6.52 1.07 1.11 1 4.67-.52 8.37-4.25 8.83-8.94H19v2l3.47-2.6z" -}, "1")], 'NatRounded'); \ No newline at end of file +}, "1")], 'NatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatSharp.js b/packages/material-ui-icons/lib/NatSharp.js index 4270b9119ac769..d84aef4cf8cabd 100644 --- a/packages/material-ui-icons/lib/NatSharp.js +++ b/packages/material-ui-icons/lib/NatSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" -}, "1")], 'NatSharp'); \ No newline at end of file +}, "1")], 'NatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatTwoTone.js b/packages/material-ui-icons/lib/NatTwoTone.js index c9533347545ea0..e092d28c2ee2de 100644 --- a/packages/material-ui-icons/lib/NatTwoTone.js +++ b/packages/material-ui-icons/lib/NatTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "12", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" -}, "2")], 'NatTwoTone'); \ No newline at end of file +}, "2")], 'NatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Nature.js b/packages/material-ui-icons/lib/Nature.js index 4fdd0f31a4fbed..ec53584b6f9d7c 100644 --- a/packages/material-ui-icons/lib/Nature.js +++ b/packages/material-ui-icons/lib/Nature.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z" -}), 'Nature'); \ No newline at end of file +}), 'Nature'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatureOutlined.js b/packages/material-ui-icons/lib/NatureOutlined.js index 1351f97aa22c48..c576eb0e8e7e9c 100644 --- a/packages/material-ui-icons/lib/NatureOutlined.js +++ b/packages/material-ui-icons/lib/NatureOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z" -}), 'NatureOutlined'); \ No newline at end of file +}), 'NatureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NaturePeople.js b/packages/material-ui-icons/lib/NaturePeople.js index f9531c57999d3c..7835d2cbfc10b3 100644 --- a/packages/material-ui-icons/lib/NaturePeople.js +++ b/packages/material-ui-icons/lib/NaturePeople.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z" -}), 'NaturePeople'); \ No newline at end of file +}), 'NaturePeople'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NaturePeopleOutlined.js b/packages/material-ui-icons/lib/NaturePeopleOutlined.js index 2a7102e33958a8..ba766665567ff5 100644 --- a/packages/material-ui-icons/lib/NaturePeopleOutlined.js +++ b/packages/material-ui-icons/lib/NaturePeopleOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'NaturePeopleOutlined'); \ No newline at end of file +}, "1")], 'NaturePeopleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NaturePeopleRounded.js b/packages/material-ui-icons/lib/NaturePeopleRounded.js index 40617d5d0cb655..0cd508b5d028d3 100644 --- a/packages/material-ui-icons/lib/NaturePeopleRounded.js +++ b/packages/material-ui-icons/lib/NaturePeopleRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19.09 3.38 2.58 6.16 5.83 6.7V20H6v-3h.5c.28 0 .5-.22.5-.5V13c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3.5c0 .28.22.5.5.5H3v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1h-2v-3.88c3.47-.41 6.17-3.36 6.17-6.95z" -}, "1")], 'NaturePeopleRounded'); \ No newline at end of file +}, "1")], 'NaturePeopleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NaturePeopleSharp.js b/packages/material-ui-icons/lib/NaturePeopleSharp.js index 3d7d8d1bffb0ea..92761d373487cd 100644 --- a/packages/material-ui-icons/lib/NaturePeopleSharp.js +++ b/packages/material-ui-icons/lib/NaturePeopleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19.09 3.38 2.58 6.16 5.83 6.7V20H6v-3h1v-5H2v5h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z" -}), 'NaturePeopleSharp'); \ No newline at end of file +}), 'NaturePeopleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NaturePeopleTwoTone.js b/packages/material-ui-icons/lib/NaturePeopleTwoTone.js index ec84f53111e4c8..720af4c9db4a81 100644 --- a/packages/material-ui-icons/lib/NaturePeopleTwoTone.js +++ b/packages/material-ui-icons/lib/NaturePeopleTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.17", cy: "9.17", r: "5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.17 2.17c-3.87 0-7 3.13-7 7 0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "2")], 'NaturePeopleTwoTone'); \ No newline at end of file +}, "2")], 'NaturePeopleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatureRounded.js b/packages/material-ui-icons/lib/NatureRounded.js index 8c32de92db9100..9bc7b048713e89 100644 --- a/packages/material-ui-icons/lib/NatureRounded.js +++ b/packages/material-ui-icons/lib/NatureRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 16.12c3.37-.4 6.01-3.19 6.16-6.64.17-3.87-3.02-7.25-6.89-7.31-3.92-.05-7.1 3.1-7.1 7 0 3.47 2.52 6.34 5.83 6.89V20H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-5v-3.88z" -}), 'NatureRounded'); \ No newline at end of file +}), 'NatureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatureSharp.js b/packages/material-ui-icons/lib/NatureSharp.js index bc1b0938ff80cd..11dc896b419dbc 100644 --- a/packages/material-ui-icons/lib/NatureSharp.js +++ b/packages/material-ui-icons/lib/NatureSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z" -}), 'NatureSharp'); \ No newline at end of file +}), 'NatureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NatureTwoTone.js b/packages/material-ui-icons/lib/NatureTwoTone.js index 77c0e33913de4a..c54353dfada136 100644 --- a/packages/material-ui-icons/lib/NatureTwoTone.js +++ b/packages/material-ui-icons/lib/NatureTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.17 4.17c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.25-5-5-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88h-.03c3.49-.4 6.2-3.36 6.2-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.25 5-5 5z" -}, "1")], 'NatureTwoTone'); \ No newline at end of file +}, "1")], 'NatureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateBefore.js b/packages/material-ui-icons/lib/NavigateBefore.js index 09bbcf54ad6282..6d5b17ee93f8a1 100644 --- a/packages/material-ui-icons/lib/NavigateBefore.js +++ b/packages/material-ui-icons/lib/NavigateBefore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z" -}), 'NavigateBefore'); \ No newline at end of file +}), 'NavigateBefore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateBeforeOutlined.js b/packages/material-ui-icons/lib/NavigateBeforeOutlined.js index f57f234b6cf547..e57e1bbc169d11 100644 --- a/packages/material-ui-icons/lib/NavigateBeforeOutlined.js +++ b/packages/material-ui-icons/lib/NavigateBeforeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.61 7.41 14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" -}), 'NavigateBeforeOutlined'); \ No newline at end of file +}), 'NavigateBeforeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateBeforeRounded.js b/packages/material-ui-icons/lib/NavigateBeforeRounded.js index 5beb27d59b0830..3e0bea7c645f79 100644 --- a/packages/material-ui-icons/lib/NavigateBeforeRounded.js +++ b/packages/material-ui-icons/lib/NavigateBeforeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.91 6.71a.9959.9959 0 0 0-1.41 0L8.91 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L11.03 12l3.88-3.88c.38-.39.38-1.03 0-1.41z" -}), 'NavigateBeforeRounded'); \ No newline at end of file +}), 'NavigateBeforeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateBeforeSharp.js b/packages/material-ui-icons/lib/NavigateBeforeSharp.js index 4b14f349cb8fe2..ae1f064efe9312 100644 --- a/packages/material-ui-icons/lib/NavigateBeforeSharp.js +++ b/packages/material-ui-icons/lib/NavigateBeforeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.61 7.41 14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" -}), 'NavigateBeforeSharp'); \ No newline at end of file +}), 'NavigateBeforeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateBeforeTwoTone.js b/packages/material-ui-icons/lib/NavigateBeforeTwoTone.js index d56c3d22c0e1d0..5ee65684c3f9c6 100644 --- a/packages/material-ui-icons/lib/NavigateBeforeTwoTone.js +++ b/packages/material-ui-icons/lib/NavigateBeforeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.2 6-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" -}), 'NavigateBeforeTwoTone'); \ No newline at end of file +}), 'NavigateBeforeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateNext.js b/packages/material-ui-icons/lib/NavigateNext.js index 2bc41b2125002b..656ed7ad6e257f 100644 --- a/packages/material-ui-icons/lib/NavigateNext.js +++ b/packages/material-ui-icons/lib/NavigateNext.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" -}), 'NavigateNext'); \ No newline at end of file +}), 'NavigateNext'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateNextOutlined.js b/packages/material-ui-icons/lib/NavigateNextOutlined.js index d7cb5c88e71a8a..5dc51fc85af57f 100644 --- a/packages/material-ui-icons/lib/NavigateNextOutlined.js +++ b/packages/material-ui-icons/lib/NavigateNextOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.02 6 8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z" -}), 'NavigateNextOutlined'); \ No newline at end of file +}), 'NavigateNextOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateNextRounded.js b/packages/material-ui-icons/lib/NavigateNextRounded.js index fcb55583059cb5..45cb36c73b399c 100644 --- a/packages/material-ui-icons/lib/NavigateNextRounded.js +++ b/packages/material-ui-icons/lib/NavigateNextRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.31 6.71c-.39.39-.39 1.02 0 1.41L13.19 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L10.72 6.7c-.38-.38-1.02-.38-1.41.01z" -}), 'NavigateNextRounded'); \ No newline at end of file +}), 'NavigateNextRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateNextSharp.js b/packages/material-ui-icons/lib/NavigateNextSharp.js index 76eec429478b99..cabdce85c9dd6d 100644 --- a/packages/material-ui-icons/lib/NavigateNextSharp.js +++ b/packages/material-ui-icons/lib/NavigateNextSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.02 6 8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z" -}), 'NavigateNextSharp'); \ No newline at end of file +}), 'NavigateNextSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigateNextTwoTone.js b/packages/material-ui-icons/lib/NavigateNextTwoTone.js index 00a5d6c6b82b4d..1b0004bece60b6 100644 --- a/packages/material-ui-icons/lib/NavigateNextTwoTone.js +++ b/packages/material-ui-icons/lib/NavigateNextTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.02 18 6-6-6-6-1.41 1.41L13.19 12l-4.58 4.59z" -}), 'NavigateNextTwoTone'); \ No newline at end of file +}), 'NavigateNextTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Navigation.js b/packages/material-ui-icons/lib/Navigation.js index f9f68c625c1e77..52c91610de8acb 100644 --- a/packages/material-ui-icons/lib/Navigation.js +++ b/packages/material-ui-icons/lib/Navigation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4.5 20.29l.71.71L12 18l6.79 3 .71-.71z" -}), 'Navigation'); \ No newline at end of file +}), 'Navigation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigationOutlined.js b/packages/material-ui-icons/lib/NavigationOutlined.js index 8edc895545f7ff..3fb381dad0baa2 100644 --- a/packages/material-ui-icons/lib/NavigationOutlined.js +++ b/packages/material-ui-icons/lib/NavigationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 7.27 4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2 4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z" -}), 'NavigationOutlined'); \ No newline at end of file +}), 'NavigationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigationRounded.js b/packages/material-ui-icons/lib/NavigationRounded.js index b2e56aaaa1a4fe..c015ca6b2beea3 100644 --- a/packages/material-ui-icons/lib/NavigationRounded.js +++ b/packages/material-ui-icons/lib/NavigationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.93 4.26 6.15 14.99c.34.83-.51 1.66-1.33 1.29l-5.34-2.36c-.26-.11-.55-.11-.81 0l-5.34 2.36c-.82.36-1.67-.46-1.33-1.29l6.15-14.99c.33-.83 1.51-.83 1.85 0z" -}), 'NavigationRounded'); \ No newline at end of file +}), 'NavigationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigationSharp.js b/packages/material-ui-icons/lib/NavigationSharp.js index 23c4a9b2aed959..0a9ef8cb8fbe25 100644 --- a/packages/material-ui-icons/lib/NavigationSharp.js +++ b/packages/material-ui-icons/lib/NavigationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z" -}), 'NavigationSharp'); \ No newline at end of file +}), 'NavigationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NavigationTwoTone.js b/packages/material-ui-icons/lib/NavigationTwoTone.js index d3f89c5b232cdc..aee8616344f0c5 100644 --- a/packages/material-ui-icons/lib/NavigationTwoTone.js +++ b/packages/material-ui-icons/lib/NavigationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.72 17.7 3.47-1.53.81-.36.81.36 3.47 1.53L12 7.27z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.5 20.29.71.71L12 18l6.79 3 .71-.71L12 2 4.5 20.29zm8.31-4.12-.81-.36-.81.36-3.47 1.53L12 7.27l4.28 10.43-3.47-1.53z" -}, "1")], 'NavigationTwoTone'); \ No newline at end of file +}, "1")], 'NavigationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMe.js b/packages/material-ui-icons/lib/NearMe.js index 001c8410381935..51de59f320a43d 100644 --- a/packages/material-ui-icons/lib/NearMe.js +++ b/packages/material-ui-icons/lib/NearMe.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" -}), 'NearMe'); \ No newline at end of file +}), 'NearMe'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeDisabled.js b/packages/material-ui-icons/lib/NearMeDisabled.js index c458c09bb47e12..e90b621e785bb3 100644 --- a/packages/material-ui-icons/lib/NearMeDisabled.js +++ b/packages/material-ui-icons/lib/NearMeDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.34 21 3l-3.34 9L12 6.34zm10.61 13.44L4.22 1.39 2.81 2.81l5.07 5.07L3 9.69v1.41l7.07 2.83L12.9 21h1.41l1.81-4.88 5.07 5.07 1.42-1.41z" -}), 'NearMeDisabled'); \ No newline at end of file +}), 'NearMeDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeDisabledOutlined.js b/packages/material-ui-icons/lib/NearMeDisabledOutlined.js index 907e161907df53..c2a37af5e67ee5 100644 --- a/packages/material-ui-icons/lib/NearMeDisabledOutlined.js +++ b/packages/material-ui-icons/lib/NearMeDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.34 21 3l-3.34 9-1.56-1.56 1.5-4.05-4.05 1.5L12 6.34zm9.19 14.85-5.07-5.07L14.31 21H12.9l-2.83-7.07L3 11.1V9.69l4.88-1.81-5.07-5.07L4.22 1.4 22.6 19.78l-1.41 1.41zm-6.62-6.62L9.43 9.43l-2.71 1.01 4.89 1.95 1.95 4.89 1.01-2.71z" -}), 'NearMeDisabledOutlined'); \ No newline at end of file +}), 'NearMeDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeDisabledRounded.js b/packages/material-ui-icons/lib/NearMeDisabledRounded.js index 8c6f50aced8d9c..1d79be74b38f2b 100644 --- a/packages/material-ui-icons/lib/NearMeDisabledRounded.js +++ b/packages/material-ui-icons/lib/NearMeDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 6.34 6.95-2.58c.8-.3 1.58.48 1.29 1.29L17.66 12 12 6.34zm9.9 12.73L4.93 2.1a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.36 4.36-4.2 1.56c-.41.16-.68.54-.68.97 0 .42.26.8.65.96l6.42 2.57 2.57 6.42c.16.39.54.65.96.65.43 0 .82-.27.97-.67l1.56-4.2 4.36 4.36c.39.39 1.02.39 1.41 0 .39-.4.39-1.03 0-1.42z" -}), 'NearMeDisabledRounded'); \ No newline at end of file +}), 'NearMeDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeDisabledSharp.js b/packages/material-ui-icons/lib/NearMeDisabledSharp.js index e8def78851d06d..1583e5ecd80732 100644 --- a/packages/material-ui-icons/lib/NearMeDisabledSharp.js +++ b/packages/material-ui-icons/lib/NearMeDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.34 21 3l-3.34 9L12 6.34zm10.61 13.44L4.22 1.39 2.81 2.81l5.07 5.07L3 9.69v1.41l7.07 2.83L12.9 21h1.41l1.81-4.88 5.07 5.07 1.42-1.41z" -}), 'NearMeDisabledSharp'); \ No newline at end of file +}), 'NearMeDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeDisabledTwoTone.js b/packages/material-ui-icons/lib/NearMeDisabledTwoTone.js index a0546750070a04..ec07176fc73ba1 100644 --- a/packages/material-ui-icons/lib/NearMeDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/NearMeDisabledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.1 10.44 1.5-4.05-4.05 1.5 2.55 2.55zm-1.53 4.13L9.43 9.43l-2.71 1.01 4.89 1.95 1.95 4.89 1.01-2.71z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.34 21 3l-3.34 9-1.56-1.56 1.5-4.05-4.05 1.5L12 6.34zm9.19 14.85-5.07-5.07L14.31 21H12.9l-2.83-7.07L3 11.1V9.69l4.88-1.81-5.07-5.07L4.22 1.4 22.6 19.78l-1.41 1.41zm-6.62-6.62L9.43 9.43l-2.71 1.01 4.89 1.95 1.95 4.89 1.01-2.71z" -}, "1")], 'NearMeDisabledTwoTone'); \ No newline at end of file +}, "1")], 'NearMeDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeOutlined.js b/packages/material-ui-icons/lib/NearMeOutlined.js index 8edd6df93e8479..556a314bd4e20b 100644 --- a/packages/material-ui-icons/lib/NearMeOutlined.js +++ b/packages/material-ui-icons/lib/NearMeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.27 6.73-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" -}), 'NearMeOutlined'); \ No newline at end of file +}), 'NearMeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeRounded.js b/packages/material-ui-icons/lib/NearMeRounded.js index 0f5c8fa07f02cf..9564bb654d3373 100644 --- a/packages/material-ui-icons/lib/NearMeRounded.js +++ b/packages/material-ui-icons/lib/NearMeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.75 3.94 4.07 10.08c-.83.35-.81 1.53.02 1.85L9.43 14c.26.1.47.31.57.57l2.06 5.33c.32.84 1.51.86 1.86.03l6.15-14.67c.33-.83-.5-1.66-1.32-1.32z" -}), 'NearMeRounded'); \ No newline at end of file +}), 'NearMeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeSharp.js b/packages/material-ui-icons/lib/NearMeSharp.js index dcc3c4c74b11ed..2fe21db261456b 100644 --- a/packages/material-ui-icons/lib/NearMeSharp.js +++ b/packages/material-ui-icons/lib/NearMeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" -}), 'NearMeSharp'); \ No newline at end of file +}), 'NearMeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearMeTwoTone.js b/packages/material-ui-icons/lib/NearMeTwoTone.js index d4e41f54ffeaf5..766bb582fbc920 100644 --- a/packages/material-ui-icons/lib/NearMeTwoTone.js +++ b/packages/material-ui-icons/lib/NearMeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.39 12.61.32.83 1.32 3.42 4.24-10.13-10.13 4.24 3.42 1.33z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 11.51 6.84 2.65L12.48 21h.98L21 3 3 10.53v.98zm14.27-4.78-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23z" -}, "1")], 'NearMeTwoTone'); \ No newline at end of file +}, "1")], 'NearMeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyError.js b/packages/material-ui-icons/lib/NearbyError.js index 7f60214c4db7fe..6e6d05b08578ce 100644 --- a/packages/material-ui-icons/lib/NearbyError.js +++ b/packages/material-ui-icons/lib/NearbyError.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 7.57 4.42 4.42L12 16.41l-4.42-4.42L12 7.57zm0 11.62-7.2-7.2 7.2-7.2 6 6V7.16l-4.58-4.58c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L18 16.82v-3.63l-6 6zm8 .81h2v2h-2v-2zm2-10h-2v8h2v-8" -}), 'NearbyError'); \ No newline at end of file +}), 'NearbyError'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyErrorOutlined.js b/packages/material-ui-icons/lib/NearbyErrorOutlined.js index 62f3f3235eee02..8de01547db5695 100644 --- a/packages/material-ui-icons/lib/NearbyErrorOutlined.js +++ b/packages/material-ui-icons/lib/NearbyErrorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 7.57 4.42 4.42L12 16.41l-4.42-4.42L12 7.57zm0 11.62-7.2-7.2 7.2-7.2 6 6V7.16l-4.58-4.58c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L18 16.82v-3.63l-6 6zm8 .81h2v2h-2v-2zm2-10h-2v8h2v-8" -}), 'NearbyErrorOutlined'); \ No newline at end of file +}), 'NearbyErrorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyErrorRounded.js b/packages/material-ui-icons/lib/NearbyErrorRounded.js index 5f3bf4d050eee7..b5c77979ce87cc 100644 --- a/packages/material-ui-icons/lib/NearbyErrorRounded.js +++ b/packages/material-ui-icons/lib/NearbyErrorRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.29 8.28-3.01 3.01c-.39.39-.39 1.02 0 1.41l3.01 3.01c.39.39 1.02.39 1.41 0l3.01-3.01c.39-.39.39-1.02 0-1.41L12.7 8.28c-.38-.39-1.02-.39-1.41 0z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.59 2.59-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0l4.58-4.6V13.2l-6 6L4.79 12 12 4.79l6 6V7.17l-4.58-4.58c-.78-.79-2.05-.79-2.83 0zM20 11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "21", cy: "21", r: "1" -}, "2")], 'NearbyErrorRounded'); \ No newline at end of file +}, "2")], 'NearbyErrorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyErrorSharp.js b/packages/material-ui-icons/lib/NearbyErrorSharp.js index 49e3568d57d6ca..f62af5e5b2e3a2 100644 --- a/packages/material-ui-icons/lib/NearbyErrorSharp.js +++ b/packages/material-ui-icons/lib/NearbyErrorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7.58 16.42 12 12 16.42 7.58 12 12 7.58zm0 11.62L4.8 12 12 4.8l6 6V7.17l-5.99-5.99L1.18 12.01l10.83 10.83L18 16.83V13.2l-6 6zm8 .8h2v2h-2v-2zm2-10h-2v8h2v-8" -}), 'NearbyErrorSharp'); \ No newline at end of file +}), 'NearbyErrorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyErrorTwoTone.js b/packages/material-ui-icons/lib/NearbyErrorTwoTone.js index 558660636e429f..f10b870ceb5dfd 100644 --- a/packages/material-ui-icons/lib/NearbyErrorTwoTone.js +++ b/packages/material-ui-icons/lib/NearbyErrorTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 7.57 4.42 4.42L12 16.41l-4.42-4.42L12 7.57zm0 11.62-7.2-7.2 7.2-7.2 6 6V7.16l-4.58-4.58c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L18 16.82v-3.63l-6 6zm8 .81h2v2h-2v-2zm2-10h-2v8h2v-8" -}), 'NearbyErrorTwoTone'); \ No newline at end of file +}), 'NearbyErrorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyOff.js b/packages/material-ui-icons/lib/NearbyOff.js index 78ce31f76d4cd4..b0b1e99d72830e 100644 --- a/packages/material-ui-icons/lib/NearbyOff.js +++ b/packages/material-ui-icons/lib/NearbyOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.22 7.77-1.41 1.41L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" -}), 'NearbyOff'); \ No newline at end of file +}), 'NearbyOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyOffOutlined.js b/packages/material-ui-icons/lib/NearbyOffOutlined.js index 5703ec0e2eb171..b6eb7b36f6f82f 100644 --- a/packages/material-ui-icons/lib/NearbyOffOutlined.js +++ b/packages/material-ui-icons/lib/NearbyOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.22 7.77-1.41 1.41L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" -}), 'NearbyOffOutlined'); \ No newline at end of file +}), 'NearbyOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyOffRounded.js b/packages/material-ui-icons/lib/NearbyOffRounded.js index 8abaae8e5fed01..464953a1bf55e2 100644 --- a/packages/material-ui-icons/lib/NearbyOffRounded.js +++ b/packages/material-ui-icons/lib/NearbyOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.93 8.48c-.39.39-1.02.39-1.41 0L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.98 16.97c.38.38.38 1.02-.01 1.41zm-6.29-4.88-1.39-1.39-.09.09c-.39.39-1.02.39-1.42 0l-3.01-3.01a.9959.9959 0 0 1 0-1.41l.09-.09-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zm1.52-5.73L12.7 8.28a.9959.9959 0 0 0-1.41 0l-.09.1 4.42 4.42.09-.09c.39-.39.39-1.03 0-1.42z" -}), 'NearbyOffRounded'); \ No newline at end of file +}), 'NearbyOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyOffSharp.js b/packages/material-ui-icons/lib/NearbyOffSharp.js index d9065d30f64b3e..51fa4644977681 100644 --- a/packages/material-ui-icons/lib/NearbyOffSharp.js +++ b/packages/material-ui-icons/lib/NearbyOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.82 12.01 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l3.99-3.99 10.83 10.83zm-1.63 9.18-1.41 1.41L16 18.83l-3.99 3.99L1.18 11.99 5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" -}), 'NearbyOffSharp'); \ No newline at end of file +}), 'NearbyOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NearbyOffTwoTone.js b/packages/material-ui-icons/lib/NearbyOffTwoTone.js index 03fe117ac797b0..cfd06396f16946 100644 --- a/packages/material-ui-icons/lib/NearbyOffTwoTone.js +++ b/packages/material-ui-icons/lib/NearbyOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.22 7.77-1.41 1.41L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" -}), 'NearbyOffTwoTone'); \ No newline at end of file +}), 'NearbyOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCell.js b/packages/material-ui-icons/lib/NetworkCell.js index a174f11f93197c..b3d5a093486d17 100644 --- a/packages/material-ui-icons/lib/NetworkCell.js +++ b/packages/material-ui-icons/lib/NetworkCell.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" -}), 'NetworkCell'); \ No newline at end of file +}), 'NetworkCell'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCellOutlined.js b/packages/material-ui-icons/lib/NetworkCellOutlined.js index 4b01bfd6c289da..ddd06fcbf228bb 100644 --- a/packages/material-ui-icons/lib/NetworkCellOutlined.js +++ b/packages/material-ui-icons/lib/NetworkCellOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" -}), 'NetworkCellOutlined'); \ No newline at end of file +}), 'NetworkCellOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCellRounded.js b/packages/material-ui-icons/lib/NetworkCellRounded.js index 30e474546d9c71..ff89b93909694e 100644 --- a/packages/material-ui-icons/lib/NetworkCellRounded.js +++ b/packages/material-ui-icons/lib/NetworkCellRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.41 22H21c.55 0 1-.45 1-1V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71zM20 20h-3V9.83l3-3V20z" -}), 'NetworkCellRounded'); \ No newline at end of file +}), 'NetworkCellRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCellSharp.js b/packages/material-ui-icons/lib/NetworkCellSharp.js index fa581d7fc1e2b5..acc0f9923b9dc2 100644 --- a/packages/material-ui-icons/lib/NetworkCellSharp.js +++ b/packages/material-ui-icons/lib/NetworkCellSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" -}), 'NetworkCellSharp'); \ No newline at end of file +}), 'NetworkCellSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCellTwoTone.js b/packages/material-ui-icons/lib/NetworkCellTwoTone.js index 1861bfaab98fb8..100354c328b35c 100644 --- a/packages/material-ui-icons/lib/NetworkCellTwoTone.js +++ b/packages/material-ui-icons/lib/NetworkCellTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" -}), 'NetworkCellTwoTone'); \ No newline at end of file +}), 'NetworkCellTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCheck.js b/packages/material-ui-icons/lib/NetworkCheck.js index 50ff136fc13050..ab9bc3e472147c 100644 --- a/packages/material-ui-icons/lib/NetworkCheck.js +++ b/packages/material-ui-icons/lib/NetworkCheck.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" -}), 'NetworkCheck'); \ No newline at end of file +}), 'NetworkCheck'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCheckOutlined.js b/packages/material-ui-icons/lib/NetworkCheckOutlined.js index 57c770f11bd544..a69fca1dc1204c 100644 --- a/packages/material-ui-icons/lib/NetworkCheckOutlined.js +++ b/packages/material-ui-icons/lib/NetworkCheckOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" -}), 'NetworkCheckOutlined'); \ No newline at end of file +}), 'NetworkCheckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCheckRounded.js b/packages/material-ui-icons/lib/NetworkCheckRounded.js index a18e865ec08a54..33cadda97873da 100644 --- a/packages/material-ui-icons/lib/NetworkCheckRounded.js +++ b/packages/material-ui-icons/lib/NetworkCheckRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM2.06 10.06c.51.51 1.33.55 1.89.09 2.76-2.26 6.24-3.18 9.58-2.76l1.19-2.68c-4.35-.78-8.96.3-12.57 3.25-.64.53-.68 1.51-.09 2.1zm19.88 0c.59-.59.55-1.57-.1-2.1-1.36-1.11-2.86-1.95-4.44-2.53l-.53 2.82c1.13.47 2.19 1.09 3.17 1.89.58.46 1.39.43 1.9-.08zm-4.03 4.03c.6-.6.56-1.63-.14-2.12-.46-.33-.94-.61-1.44-.86l-.55 2.92c.11.07.22.14.32.22.57.4 1.33.32 1.81-.16zm-11.83-.01c.5.5 1.27.54 1.85.13.94-.66 2.01-1.06 3.1-1.22l1.28-2.88c-2.13-.06-4.28.54-6.09 1.84-.69.51-.74 1.53-.14 2.13z" -}), 'NetworkCheckRounded'); \ No newline at end of file +}), 'NetworkCheckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCheckSharp.js b/packages/material-ui-icons/lib/NetworkCheckSharp.js index a25974d0c61fd8..8760acd11bb7f7 100644 --- a/packages/material-ui-icons/lib/NetworkCheckSharp.js +++ b/packages/material-ui-icons/lib/NetworkCheckSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" -}), 'NetworkCheckSharp'); \ No newline at end of file +}), 'NetworkCheckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkCheckTwoTone.js b/packages/material-ui-icons/lib/NetworkCheckTwoTone.js index 7606d441885647..42251fcc6e7778 100644 --- a/packages/material-ui-icons/lib/NetworkCheckTwoTone.js +++ b/packages/material-ui-icons/lib/NetworkCheckTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" -}), 'NetworkCheckTwoTone'); \ No newline at end of file +}), 'NetworkCheckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkLocked.js b/packages/material-ui-icons/lib/NetworkLocked.js index 83d31e8a4700b7..816e0793432a42 100644 --- a/packages/material-ui-icons/lib/NetworkLocked.js +++ b/packages/material-ui-icons/lib/NetworkLocked.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 10c.17 0 .33.03.5.05V1L1 20h13v-3c0-.89.39-1.68 1-2.23v-.27c0-2.48 2.02-4.5 4.5-4.5zm2.5 6v-1.5c0-1.38-1.12-2.5-2.5-2.5S17 13.12 17 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z" -}), 'NetworkLocked'); \ No newline at end of file +}), 'NetworkLocked'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkLockedOutlined.js b/packages/material-ui-icons/lib/NetworkLockedOutlined.js index d904287458381e..35b29b9248f5e4 100644 --- a/packages/material-ui-icons/lib/NetworkLockedOutlined.js +++ b/packages/material-ui-icons/lib/NetworkLockedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z" -}), 'NetworkLockedOutlined'); \ No newline at end of file +}), 'NetworkLockedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkLockedRounded.js b/packages/material-ui-icons/lib/NetworkLockedRounded.js index d44c5ea1924894..51231966f6a145 100644 --- a/packages/material-ui-icons/lib/NetworkLockedRounded.js +++ b/packages/material-ui-icons/lib/NetworkLockedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12V4.42c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H15v-6c0-2.21 1.79-4 4-4h3zm0 5v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-3-1c0-.55.45-1 1-1s1 .45 1 1v1h-2v-1z" -}), 'NetworkLockedRounded'); \ No newline at end of file +}), 'NetworkLockedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkLockedSharp.js b/packages/material-ui-icons/lib/NetworkLockedSharp.js index 6de0d88e6707e3..4706ccea6d3c72 100644 --- a/packages/material-ui-icons/lib/NetworkLockedSharp.js +++ b/packages/material-ui-icons/lib/NetworkLockedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-.36c0-1.31-.94-2.5-2.24-2.63-1.5-.15-2.76 1.02-2.76 2.49v.5h-1v6h7v-6h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zm-1.5-5c.15 0 .3.01.46.02.01 0 .03.01.04.01V1L1 20h13v-6h1.26c.22-.63.58-1.2 1.06-1.68.85-.85 1.98-1.32 3.18-1.32z" -}), 'NetworkLockedSharp'); \ No newline at end of file +}), 'NetworkLockedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkLockedTwoTone.js b/packages/material-ui-icons/lib/NetworkLockedTwoTone.js index 706ccc55319dbd..254c00897c7393 100644 --- a/packages/material-ui-icons/lib/NetworkLockedTwoTone.js +++ b/packages/material-ui-icons/lib/NetworkLockedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z" -}), 'NetworkLockedTwoTone'); \ No newline at end of file +}), 'NetworkLockedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkWifi.js b/packages/material-ui-icons/lib/NetworkWifi.js index 96eca8d90ddf54..04071c6d8512db 100644 --- a/packages/material-ui-icons/lib/NetworkWifi.js +++ b/packages/material-ui-icons/lib/NetworkWifi.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21 24 8.98zm-21.08.09C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8s-5.5.94-7.65 2.51L2.92 9.07z" -}), 'NetworkWifi'); \ No newline at end of file +}), 'NetworkWifi'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkWifiOutlined.js b/packages/material-ui-icons/lib/NetworkWifiOutlined.js index da0128f6723413..8af98916baf4a3 100644 --- a/packages/material-ui-icons/lib/NetworkWifiOutlined.js +++ b/packages/material-ui-icons/lib/NetworkWifiOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" -}), 'NetworkWifiOutlined'); \ No newline at end of file +}), 'NetworkWifiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkWifiRounded.js b/packages/material-ui-icons/lib/NetworkWifiRounded.js index 53623c7b20937e..ed8dabd8326fb9 100644 --- a/packages/material-ui-icons/lib/NetworkWifiRounded.js +++ b/packages/material-ui-icons/lib/NetworkWifiRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" -}), 'NetworkWifiRounded'); \ No newline at end of file +}), 'NetworkWifiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkWifiSharp.js b/packages/material-ui-icons/lib/NetworkWifiSharp.js index b96725d40aeecd..1c3310832b669e 100644 --- a/packages/material-ui-icons/lib/NetworkWifiSharp.js +++ b/packages/material-ui-icons/lib/NetworkWifiSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" -}), 'NetworkWifiSharp'); \ No newline at end of file +}), 'NetworkWifiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NetworkWifiTwoTone.js b/packages/material-ui-icons/lib/NetworkWifiTwoTone.js index 4dd465a450529a..014fb1e1baa6a4 100644 --- a/packages/material-ui-icons/lib/NetworkWifiTwoTone.js +++ b/packages/material-ui-icons/lib/NetworkWifiTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" -}), 'NetworkWifiTwoTone'); \ No newline at end of file +}), 'NetworkWifiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NewReleases.js b/packages/material-ui-icons/lib/NewReleases.js index 292ab3095660a2..1727ddedcacb0a 100644 --- a/packages/material-ui-icons/lib/NewReleases.js +++ b/packages/material-ui-icons/lib/NewReleases.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z" -}), 'NewReleases'); \ No newline at end of file +}), 'NewReleases'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NewReleasesOutlined.js b/packages/material-ui-icons/lib/NewReleasesOutlined.js index 1529eb21b6f86b..552d6faa72cd03 100644 --- a/packages/material-ui-icons/lib/NewReleasesOutlined.js +++ b/packages/material-ui-icons/lib/NewReleasesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-4.51 2.11.26 2.79-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11zM11 15h2v2h-2zm0-8h2v6h-2z" -}), 'NewReleasesOutlined'); \ No newline at end of file +}), 'NewReleasesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NewReleasesRounded.js b/packages/material-ui-icons/lib/NewReleasesRounded.js index 8ea4b0c58c1587..7afd91074f377e 100644 --- a/packages/material-ui-icons/lib/NewReleasesRounded.js +++ b/packages/material-ui-icons/lib/NewReleasesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.42 11.34-1.86-2.12.26-2.81c.05-.5-.29-.96-.77-1.07l-2.76-.63-1.44-2.43c-.26-.43-.79-.61-1.25-.41L12 3 9.41 1.89c-.46-.2-1-.02-1.25.41L6.71 4.72l-2.75.62c-.49.11-.83.56-.78 1.07l.26 2.8-1.86 2.13c-.33.38-.33.94 0 1.32l1.86 2.12-.26 2.82c-.05.5.29.96.77 1.07l2.76.63 1.44 2.42c.26.43.79.61 1.26.41L12 21l2.59 1.11c.46.2 1 .02 1.25-.41l1.44-2.43 2.76-.63c.49-.11.82-.57.77-1.07l-.26-2.81 1.86-2.12c.34-.36.34-.92.01-1.3zM13 17h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z" -}), 'NewReleasesRounded'); \ No newline at end of file +}), 'NewReleasesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NewReleasesSharp.js b/packages/material-ui-icons/lib/NewReleasesSharp.js index 1deac30c933f39..f921cd5c1f3637 100644 --- a/packages/material-ui-icons/lib/NewReleasesSharp.js +++ b/packages/material-ui-icons/lib/NewReleasesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z" -}), 'NewReleasesSharp'); \ No newline at end of file +}), 'NewReleasesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NewReleasesTwoTone.js b/packages/material-ui-icons/lib/NewReleasesTwoTone.js index 6d8837cce148bb..c838f0c6dd3f2a 100644 --- a/packages/material-ui-icons/lib/NewReleasesTwoTone.js +++ b/packages/material-ui-icons/lib/NewReleasesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.49 9.89.26-2.79-2.74-.62-1.43-2.41L12 5.18 9.42 4.07 7.99 6.48l-2.74.62.26 2.78L3.66 12l1.85 2.11-.26 2.8 2.74.62 1.43 2.41L12 18.82l2.58 1.11 1.43-2.41 2.74-.62-.26-2.79L20.34 12l-1.85-2.11zM13 17h-2v-2h2v2zm0-4h-2V7h2v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.9 5.54-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12l-2.44-2.78.34-3.68zM18.75 16.9l-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11.26 2.79zM11 15h2v2h-2zm0-8h2v6h-2z" -}, "1")], 'NewReleasesTwoTone'); \ No newline at end of file +}, "1")], 'NewReleasesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextPlan.js b/packages/material-ui-icons/lib/NextPlan.js index bc6e16e82d625e..aa4d5e5841c536 100644 --- a/packages/material-ui-icons/lib/NextPlan.js +++ b/packages/material-ui-icons/lib/NextPlan.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26c-.91-1.06-2.25-1.74-3.76-1.74-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z" -}), 'NextPlan'); \ No newline at end of file +}), 'NextPlan'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextPlanOutlined.js b/packages/material-ui-icons/lib/NextPlanOutlined.js index 0b45713cee42fb..c1aed1ce72bbb0 100644 --- a/packages/material-ui-icons/lib/NextPlanOutlined.js +++ b/packages/material-ui-icons/lib/NextPlanOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.97 11.03C14.87 9.79 13.28 9 11.5 9c-2.82 0-5.18 1.95-5.82 4.56l.96.32C7.15 11.66 9.13 10 11.5 10c1.51 0 2.85.68 3.76 1.74L13 14h5V9l-2.03 2.03z" -}, "1")], 'NextPlanOutlined'); \ No newline at end of file +}, "1")], 'NextPlanOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextPlanRounded.js b/packages/material-ui-icons/lib/NextPlanRounded.js index 33b89958592762..7c18b614e7dd73 100644 --- a/packages/material-ui-icons/lib/NextPlanRounded.js +++ b/packages/material-ui-icons/lib/NextPlanRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26c-.91-1.06-2.25-1.74-3.76-1.74-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z" -}), 'NextPlanRounded'); \ No newline at end of file +}), 'NextPlanRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextPlanSharp.js b/packages/material-ui-icons/lib/NextPlanSharp.js index 977528683596fc..be15729858b80e 100644 --- a/packages/material-ui-icons/lib/NextPlanSharp.js +++ b/packages/material-ui-icons/lib/NextPlanSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26c-.91-1.06-2.25-1.74-3.76-1.74-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z" -}), 'NextPlanSharp'); \ No newline at end of file +}), 'NextPlanSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextPlanTwoTone.js b/packages/material-ui-icons/lib/NextPlanTwoTone.js index b11b123f8b66b1..7e21286ca2a4a3 100644 --- a/packages/material-ui-icons/lib/NextPlanTwoTone.js +++ b/packages/material-ui-icons/lib/NextPlanTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 10 2.26-2.26C14.35 10.68 13.01 10 11.5 10c-2.37 0-4.35 1.66-4.86 3.88l-.96-.32C6.32 10.95 8.68 9 11.5 9c1.78 0 3.37.79 4.47 2.03L18 9v5h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.97 11.03C14.87 9.79 13.28 9 11.5 9c-2.82 0-5.18 1.95-5.82 4.56l.96.32C7.15 11.66 9.13 10 11.5 10c1.51 0 2.85.68 3.76 1.74L13 14h5V9l-2.03 2.03z" -}, "2")], 'NextPlanTwoTone'); \ No newline at end of file +}, "2")], 'NextPlanTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextWeek.js b/packages/material-ui-icons/lib/NextWeek.js index 07cac438f4efba..e30e8e697662e0 100644 --- a/packages/material-ui-icons/lib/NextWeek.js +++ b/packages/material-ui-icons/lib/NextWeek.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm1 13.5-1-1 3-3-3-3 1-1 4 4-4 4z" -}), 'NextWeek'); \ No newline at end of file +}), 'NextWeek'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextWeekOutlined.js b/packages/material-ui-icons/lib/NextWeekOutlined.js index eef80e4a58fe9a..844e5cd406f64a 100644 --- a/packages/material-ui-icons/lib/NextWeekOutlined.js +++ b/packages/material-ui-icons/lib/NextWeekOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 18.5 4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z" -}), 'NextWeekOutlined'); \ No newline at end of file +}), 'NextWeekOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextWeekRounded.js b/packages/material-ui-icons/lib/NextWeekRounded.js index 2fbf0834f550f9..aba75a06f666b3 100644 --- a/packages/material-ui-icons/lib/NextWeekRounded.js +++ b/packages/material-ui-icons/lib/NextWeekRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm.5 13c-.28-.28-.28-.72 0-1l2.5-2.5-2.5-2.5c-.28-.28-.28-.72 0-1s.72-.28 1 0l3.15 3.15c.2.2.2.51 0 .71L11.5 18c-.28.28-.72.28-1 0z" -}), 'NextWeekRounded'); \ No newline at end of file +}), 'NextWeekRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextWeekSharp.js b/packages/material-ui-icons/lib/NextWeekSharp.js index d33568ff5f927a..b6db3f389864b2 100644 --- a/packages/material-ui-icons/lib/NextWeekSharp.js +++ b/packages/material-ui-icons/lib/NextWeekSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7h-6V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H2v15h20V7zM10 5h4v2h-4V5zm1 13.5-1-1 3-3-3-3 1-1 4 4-4 4z" -}), 'NextWeekSharp'); \ No newline at end of file +}), 'NextWeekSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NextWeekTwoTone.js b/packages/material-ui-icons/lib/NextWeekTwoTone.js index 567e10df1052a1..04d22dacb74c9d 100644 --- a/packages/material-ui-icons/lib/NextWeekTwoTone.js +++ b/packages/material-ui-icons/lib/NextWeekTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V9H4v11zm6-8.5 1-1 4 4-4 4-1-1 3-3-3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 18.5 4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z" -}, "1")], 'NextWeekTwoTone'); \ No newline at end of file +}, "1")], 'NextWeekTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Nfc.js b/packages/material-ui-icons/lib/Nfc.js index 58c16309d944db..0c26c944b0079e 100644 --- a/packages/material-ui-icons/lib/Nfc.js +++ b/packages/material-ui-icons/lib/Nfc.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" -}), 'Nfc'); \ No newline at end of file +}), 'Nfc'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NfcOutlined.js b/packages/material-ui-icons/lib/NfcOutlined.js index 91731d25a28439..743586a4eacf76 100644 --- a/packages/material-ui-icons/lib/NfcOutlined.js +++ b/packages/material-ui-icons/lib/NfcOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" -}), 'NfcOutlined'); \ No newline at end of file +}), 'NfcOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NfcRounded.js b/packages/material-ui-icons/lib/NfcRounded.js index ee1d190bc86cb7..5b6008b38fa69f 100644 --- a/packages/material-ui-icons/lib/NfcRounded.js +++ b/packages/material-ui-icons/lib/NfcRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 18H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1zM16 6h-3c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v7c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V8h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" -}), 'NfcRounded'); \ No newline at end of file +}), 'NfcRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NfcSharp.js b/packages/material-ui-icons/lib/NfcSharp.js index efc789e3aa9404..48cc95dce0d4f2 100644 --- a/packages/material-ui-icons/lib/NfcSharp.js +++ b/packages/material-ui-icons/lib/NfcSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zm-2 18H4V4h16v16zM18 6h-7v4.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" -}), 'NfcSharp'); \ No newline at end of file +}), 'NfcSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NfcTwoTone.js b/packages/material-ui-icons/lib/NfcTwoTone.js index a5212699bfca23..613ec452cc44db 100644 --- a/packages/material-ui-icons/lib/NfcTwoTone.js +++ b/packages/material-ui-icons/lib/NfcTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" -}), 'NfcTwoTone'); \ No newline at end of file +}), 'NfcTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightShelter.js b/packages/material-ui-icons/lib/NightShelter.js index be8f54de1af3ba..f1727b09cbbd31 100644 --- a/packages/material-ui-icons/lib/NightShelter.js +++ b/packages/material-ui-icons/lib/NightShelter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm-2.25 9.5c.69 0 1.25.56 1.25 1.25S10.44 15 9.75 15s-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM17 18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H15c1.1 0 2 .9 2 2v4z" -}), 'NightShelter'); \ No newline at end of file +}), 'NightShelter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightShelterOutlined.js b/packages/material-ui-icons/lib/NightShelterOutlined.js index 61ab5bba038622..3e1ec7a440479a 100644 --- a/packages/material-ui-icons/lib/NightShelterOutlined.js +++ b/packages/material-ui-icons/lib/NightShelterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm3 9h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4c0-1.1-.9-2-2-2zm-5.25.5c-.69 0-1.25.56-1.25 1.25S9.06 15 9.75 15 11 14.44 11 13.75s-.56-1.25-1.25-1.25z" -}), 'NightShelterOutlined'); \ No newline at end of file +}), 'NightShelterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightShelterRounded.js b/packages/material-ui-icons/lib/NightShelterRounded.js index 17d65f1a9a5c9a..0faf29cdbd24f6 100644 --- a/packages/material-ui-icons/lib/NightShelterRounded.js +++ b/packages/material-ui-icons/lib/NightShelterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.8 3.9-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zm-1.05 8.6c.69 0 1.25.56 1.25 1.25S10.44 15 9.75 15s-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM16.5 18c-.28 0-.5-.22-.5-.5v-1H8v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5s.5.22.5.5v4h3.5v-3c0-.28.22-.5.5-.5h3c1.1 0 2 .9 2 2v3.5c0 .28-.22.5-.5.5z" -}), 'NightShelterRounded'); \ No newline at end of file +}), 'NightShelterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightShelterSharp.js b/packages/material-ui-icons/lib/NightShelterSharp.js index 707b60b72aebf8..49833d760d7fd0 100644 --- a/packages/material-ui-icons/lib/NightShelterSharp.js +++ b/packages/material-ui-icons/lib/NightShelterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 4 9v12h16V9l-8-6zm-2.25 9.5c.69 0 1.25.56 1.25 1.25S10.44 15 9.75 15s-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM17 18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H17v6z" -}), 'NightShelterSharp'); \ No newline at end of file +}), 'NightShelterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightShelterTwoTone.js b/packages/material-ui-icons/lib/NightShelterTwoTone.js index 9bfebcad458c38..e9aa8e138372a2 100644 --- a/packages/material-ui-icons/lib/NightShelterTwoTone.js +++ b/packages/material-ui-icons/lib/NightShelterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.5 6 4.5v9H6v-9l6-4.5m3 6.5h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4c0-1.1-.9-2-2-2zm-5.25.5c-.69 0-1.25.56-1.25 1.25S9.06 15 9.75 15 11 14.44 11 13.75s-.56-1.25-1.25-1.25z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm3 9h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4c0-1.1-.9-2-2-2zm-5.25.5c-.69 0-1.25.56-1.25 1.25S9.06 15 9.75 15 11 14.44 11 13.75s-.56-1.25-1.25-1.25z" -}, "1")], 'NightShelterTwoTone'); \ No newline at end of file +}, "1")], 'NightShelterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Nightlife.js b/packages/material-ui-icons/lib/Nightlife.js index 1caf150d830d43..9723f5cb32b49b 100644 --- a/packages/material-ui-icons/lib/Nightlife.js +++ b/packages/material-ui-icons/lib/Nightlife.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" -}), 'Nightlife'); \ No newline at end of file +}), 'Nightlife'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlifeOutlined.js b/packages/material-ui-icons/lib/NightlifeOutlined.js index fd59cfa7e958ab..ce18aa104d22d8 100644 --- a/packages/material-ui-icons/lib/NightlifeOutlined.js +++ b/packages/material-ui-icons/lib/NightlifeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" -}), 'NightlifeOutlined'); \ No newline at end of file +}), 'NightlifeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlifeRounded.js b/packages/material-ui-icons/lib/NightlifeRounded.js index 78eb0b27c09292..c3d6b1ac97597f 100644 --- a/packages/material-ui-icons/lib/NightlifeRounded.js +++ b/packages/material-ui-icons/lib/NightlifeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.87 5h10.26c.8 0 1.28.89.83 1.55L9 14v4h1c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1h1v-4L2.04 6.55C1.59 5.89 2.07 5 2.87 5zm7.23 4 1.4-2H4.49l1.4 2h4.21zM19 5h1.5c.83 0 1.5.67 1.5 1.5S21.33 8 20.5 8H19v9c0 1.84-1.64 3.28-3.54 2.95-1.21-.21-2.2-1.2-2.41-2.41C12.72 15.64 14.16 14 16 14c.35 0 .69.06 1 .17V7c0-1.1.9-2 2-2z" -}), 'NightlifeRounded'); \ No newline at end of file +}), 'NightlifeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlifeSharp.js b/packages/material-ui-icons/lib/NightlifeSharp.js index f54ad6d00fed2b..53ddeec3c3bc09 100644 --- a/packages/material-ui-icons/lib/NightlifeSharp.js +++ b/packages/material-ui-icons/lib/NightlifeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" -}), 'NightlifeSharp'); \ No newline at end of file +}), 'NightlifeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlifeTwoTone.js b/packages/material-ui-icons/lib/NightlifeTwoTone.js index 582ed02b8dd858..61f7b65514f4ff 100644 --- a/packages/material-ui-icons/lib/NightlifeTwoTone.js +++ b/packages/material-ui-icons/lib/NightlifeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" -}), 'NightlifeTwoTone'); \ No newline at end of file +}), 'NightlifeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Nightlight.js b/packages/material-ui-icons/lib/Nightlight.js index da4aef50fe2a18..cb14e4697cd8d2 100644 --- a/packages/material-ui-icons/lib/Nightlight.js +++ b/packages/material-ui-icons/lib/Nightlight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2c1.82 0 3.53.5 5 1.35-2.99 1.73-5 4.95-5 8.65s2.01 6.92 5 8.65c-1.47.85-3.18 1.35-5 1.35-5.52 0-10-4.48-10-10S8.48 2 14 2z" -}), 'Nightlight'); \ No newline at end of file +}), 'Nightlight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightOutlined.js b/packages/material-ui-icons/lib/NightlightOutlined.js index ed98d27ac8a793..71d95f1c43ff06 100644 --- a/packages/material-ui-icons/lib/NightlightOutlined.js +++ b/packages/material-ui-icons/lib/NightlightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4c.34 0 .68.02 1.01.07C13.1 6.23 12 9.05 12 12s1.1 5.77 3.01 7.93c-.33.05-.67.07-1.01.07-4.41 0-8-3.59-8-8s3.59-8 8-8m0-2C8.48 2 4 6.48 4 12s4.48 10 10 10c1.82 0 3.53-.5 5-1.35-2.99-1.73-5-4.95-5-8.65s2.01-6.92 5-8.65C17.53 2.5 15.82 2 14 2z" -}), 'NightlightOutlined'); \ No newline at end of file +}), 'NightlightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightRound.js b/packages/material-ui-icons/lib/NightlightRound.js index 55897b91e434d1..4a9bcd3c1200dc 100644 --- a/packages/material-ui-icons/lib/NightlightRound.js +++ b/packages/material-ui-icons/lib/NightlightRound.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 12c0-3.57 2.2-6.62 5.31-7.87.89-.36.75-1.69-.19-1.9-1.1-.24-2.27-.3-3.48-.14-4.51.6-8.12 4.31-8.59 8.83C4.44 16.93 9.13 22 15.01 22c.73 0 1.43-.08 2.12-.23.95-.21 1.1-1.53.2-1.9-3.22-1.29-5.33-4.41-5.32-7.87z" -}), 'NightlightRound'); \ No newline at end of file +}), 'NightlightRound'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightRoundOutlined.js b/packages/material-ui-icons/lib/NightlightRoundOutlined.js index fef4baeaf93057..c772e5d799abb6 100644 --- a/packages/material-ui-icons/lib/NightlightRoundOutlined.js +++ b/packages/material-ui-icons/lib/NightlightRoundOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z" -}), 'NightlightRoundOutlined'); \ No newline at end of file +}), 'NightlightRoundOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightRoundRounded.js b/packages/material-ui-icons/lib/NightlightRoundRounded.js index 3b4c133d7ea246..629a4022009ef6 100644 --- a/packages/material-ui-icons/lib/NightlightRoundRounded.js +++ b/packages/material-ui-icons/lib/NightlightRoundRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 22h.21c.84-.02 1.12-1.11.41-1.56-2.78-1.77-4.63-4.89-4.63-8.43 0-3.55 1.85-6.66 4.63-8.44.7-.45.44-1.54-.39-1.56h-.13c-4.9-.05-9.21 3.53-9.98 8.37C4.64 16.61 9.45 22 15.5 22z" -}), 'NightlightRoundRounded'); \ No newline at end of file +}), 'NightlightRoundRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightRoundSharp.js b/packages/material-ui-icons/lib/NightlightRoundSharp.js index 860acc095e0a7b..ce5924729977d9 100644 --- a/packages/material-ui-icons/lib/NightlightRoundSharp.js +++ b/packages/material-ui-icons/lib/NightlightRoundSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z" -}), 'NightlightRoundSharp'); \ No newline at end of file +}), 'NightlightRoundSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightRoundTwoTone.js b/packages/material-ui-icons/lib/NightlightRoundTwoTone.js index 6c2c7581c3cbf3..399a54509ad18e 100644 --- a/packages/material-ui-icons/lib/NightlightRoundTwoTone.js +++ b/packages/material-ui-icons/lib/NightlightRoundTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z" -}), 'NightlightRoundTwoTone'); \ No newline at end of file +}), 'NightlightRoundTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightRounded.js b/packages/material-ui-icons/lib/NightlightRounded.js index 79ae9d42fdde84..f1451584741be4 100644 --- a/packages/material-ui-icons/lib/NightlightRounded.js +++ b/packages/material-ui-icons/lib/NightlightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.57 2.3c2.38-.59 4.68-.27 6.63.64.35.16.41.64.1.86C15.7 5.6 14 8.6 14 12s1.7 6.4 4.3 8.2c.32.22.26.7-.09.86-1.28.6-2.71.94-4.21.94-6.05 0-10.85-5.38-9.87-11.6.61-3.92 3.59-7.16 7.44-8.1z" -}), 'NightlightRounded'); \ No newline at end of file +}), 'NightlightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightSharp.js b/packages/material-ui-icons/lib/NightlightSharp.js index 7f1855cff6e7c0..437e57d649629c 100644 --- a/packages/material-ui-icons/lib/NightlightSharp.js +++ b/packages/material-ui-icons/lib/NightlightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2c1.82 0 3.53.5 5 1.35-2.99 1.73-5 4.95-5 8.65s2.01 6.92 5 8.65c-1.47.85-3.18 1.35-5 1.35-5.52 0-10-4.48-10-10S8.48 2 14 2z" -}), 'NightlightSharp'); \ No newline at end of file +}), 'NightlightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightlightTwoTone.js b/packages/material-ui-icons/lib/NightlightTwoTone.js index c41716c999d6ca..5a38c2051e701d 100644 --- a/packages/material-ui-icons/lib/NightlightTwoTone.js +++ b/packages/material-ui-icons/lib/NightlightTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 12c0-4.41 3.59-8 8-8 .34 0 .68.02 1.01.07C13.1 6.23 12 9.05 12 12s1.1 5.77 3.01 7.93c-.33.05-.67.07-1.01.07-4.41 0-8-3.59-8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-3.7 2.01-6.92 5-8.65C17.53 2.5 15.82 2 14 2 8.48 2 4 6.48 4 12s4.48 10 10 10c1.82 0 3.53-.5 5-1.35-2.99-1.73-5-4.95-5-8.65zm1.01 7.93c-.33.05-.67.07-1.01.07-4.41 0-8-3.59-8-8s3.59-8 8-8c.34 0 .68.02 1.01.07C13.1 6.23 12 9.05 12 12s1.1 5.77 3.01 7.93z" -}, "1")], 'NightlightTwoTone'); \ No newline at end of file +}, "1")], 'NightlightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightsStay.js b/packages/material-ui-icons/lib/NightsStay.js index 08da065ebd311f..a86e89c842a730 100644 --- a/packages/material-ui-icons/lib/NightsStay.js +++ b/packages/material-ui-icons/lib/NightsStay.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" -}, "1")], 'NightsStay'); \ No newline at end of file +}, "1")], 'NightsStay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightsStayOutlined.js b/packages/material-ui-icons/lib/NightsStayOutlined.js index 9478a5d622f6f8..f93e4224c5a6c4 100644 --- a/packages/material-ui-icons/lib/NightsStayOutlined.js +++ b/packages/material-ui-icons/lib/NightsStayOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.78 17.51c-2.47 0-6.57-1.33-8.68-5.43-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.61-.26 1.28-.42 1.98-.42 0-3.09 1.73-5.77 4.3-7.1-.5 2.19-.54 5.04 1.04 8.1 1.57 3.04 4.18 4.95 6.8 5.86-1.23.74-2.65 1.15-4.13 1.15-.5 0-1-.05-1.48-.14-.37.7-.94 1.27-1.64 1.64.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-.17.01-.37.02-.57.02z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" -}, "1")], 'NightsStayOutlined'); \ No newline at end of file +}, "1")], 'NightsStayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightsStayRounded.js b/packages/material-ui-icons/lib/NightsStayRounded.js index 4d80be2b11c7fb..7920853879ff32 100644 --- a/packages/material-ui-icons/lib/NightsStayRounded.js +++ b/packages/material-ui-icons/lib/NightsStayRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.1 12.08c-2-3.88-.92-7.36.07-9.27.19-.36-.12-.77-.53-.72-5.02.68-8.86 5.07-8.65 10.32.01 0 .01 0 .01.01.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.13 0 5.92-1.44 7.76-3.69.26-.32.04-.79-.37-.82-2.49-.13-6.28-1.53-8.28-5.42z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" -}, "1")], 'NightsStayRounded'); \ No newline at end of file +}, "1")], 'NightsStayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightsStaySharp.js b/packages/material-ui-icons/lib/NightsStaySharp.js index a656ded10eb7ce..983dae946676da 100644 --- a/packages/material-ui-icons/lib/NightsStaySharp.js +++ b/packages/material-ui-icons/lib/NightsStaySharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" -}, "1")], 'NightsStaySharp'); \ No newline at end of file +}, "1")], 'NightsStaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NightsStayTwoTone.js b/packages/material-ui-icons/lib/NightsStayTwoTone.js index 704110c3a11963..384ceee44c006a 100644 --- a/packages/material-ui-icons/lib/NightsStayTwoTone.js +++ b/packages/material-ui-icons/lib/NightsStayTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.1 14.15c1.67.48 2.9 2.02 2.9 3.85 0 .68-.19 1.31-.48 1.87.48.09.97.14 1.48.14 1.48 0 2.9-.41 4.13-1.15-2.62-.92-5.23-2.82-6.8-5.86-1.59-3.06-1.55-5.91-1.04-8.1-2.57 1.33-4.3 4.01-4.3 7.1h.02c1.65 0 3.17.83 4.09 2.15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.78 17.51c-2.47 0-6.57-1.33-8.68-5.43-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.61-.26 1.28-.42 1.98-.42 0-3.09 1.73-5.77 4.3-7.1-.5 2.19-.54 5.04 1.04 8.1 1.57 3.04 4.18 4.95 6.8 5.86-1.23.74-2.65 1.15-4.13 1.15-.5 0-1-.05-1.48-.14-.37.7-.94 1.27-1.64 1.64.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-.17.01-.37.02-.57.02z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" -}, "2")], 'NightsStayTwoTone'); \ No newline at end of file +}, "2")], 'NightsStayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineK.js b/packages/material-ui-icons/lib/NineK.js index 51f5785658f349..1ec5c431a4b12e 100644 --- a/packages/material-ui-icons/lib/NineK.js +++ b/packages/material-ui-icons/lib/NineK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'NineK'); \ No newline at end of file +}), 'NineK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKOutlined.js b/packages/material-ui-icons/lib/NineKOutlined.js index c3a6e40f4ddd48..f950699aabbec2 100644 --- a/packages/material-ui-icons/lib/NineKOutlined.js +++ b/packages/material-ui-icons/lib/NineKOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2v1h-3V15H10c.55 0 1-.45 1-1zm-1.5-2.5H8V10h1.5v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "2")], 'NineKOutlined'); \ No newline at end of file +}, "2")], 'NineKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKPlus.js b/packages/material-ui-icons/lib/NineKPlus.js index 0f7b76aabe103b..6c268330b32979 100644 --- a/packages/material-ui-icons/lib/NineKPlus.js +++ b/packages/material-ui-icons/lib/NineKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 10H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'NineKPlus'); \ No newline at end of file +}), 'NineKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKPlusOutlined.js b/packages/material-ui-icons/lib/NineKPlusOutlined.js index 17d867642c8d13..5a720695abc43e 100644 --- a/packages/material-ui-icons/lib/NineKPlusOutlined.js +++ b/packages/material-ui-icons/lib/NineKPlusOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h1.5v1H6V15h3c.55 0 1-.45 1-1zm-1.5-2.5h-1V10h1v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "2")], 'NineKPlusOutlined'); \ No newline at end of file +}, "2")], 'NineKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKPlusRounded.js b/packages/material-ui-icons/lib/NineKPlusRounded.js index 264e41b35cccbb..e83a8c74550f47 100644 --- a/packages/material-ui-icons/lib/NineKPlusRounded.js +++ b/packages/material-ui-icons/lib/NineKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 10h1v1.5h-1V10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 11c0 .55-.45 1-1 1H6.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'NineKPlusRounded'); \ No newline at end of file +}), 'NineKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKPlusSharp.js b/packages/material-ui-icons/lib/NineKPlusSharp.js index df539d66d9d018..1366d0421204c9 100644 --- a/packages/material-ui-icons/lib/NineKPlusSharp.js +++ b/packages/material-ui-icons/lib/NineKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 10h1v1.5h-1V10zM21 3H3v18h18V3zM10 9v6H6v-1.5h2.5v-1H6V9h4zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'NineKPlusSharp'); \ No newline at end of file +}), 'NineKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKPlusTwoTone.js b/packages/material-ui-icons/lib/NineKPlusTwoTone.js index 815cdf6e9bc806..f370433909ecad 100644 --- a/packages/material-ui-icons/lib/NineKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/NineKPlusTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 10h1v1.5h-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 4.5h2.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H6v-1.5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h1.5v1H6V15h3c.55 0 1-.45 1-1zm-1.5-2.5h-1V10h1v1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "4")], 'NineKPlusTwoTone'); \ No newline at end of file +}, "4")], 'NineKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKRounded.js b/packages/material-ui-icons/lib/NineKRounded.js index fa6876eb95205a..51faee8eb784de 100644 --- a/packages/material-ui-icons/lib/NineKRounded.js +++ b/packages/material-ui-icons/lib/NineKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10h1.5v1.5H8V10zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H9.5v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm5.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'NineKRounded'); \ No newline at end of file +}), 'NineKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKSharp.js b/packages/material-ui-icons/lib/NineKSharp.js index d64bcb2688634d..c2c250b47ed948 100644 --- a/packages/material-ui-icons/lib/NineKSharp.js +++ b/packages/material-ui-icons/lib/NineKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10h1.5v1.5H8V10zm13-7H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'NineKSharp'); \ No newline at end of file +}), 'NineKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineKTwoTone.js b/packages/material-ui-icons/lib/NineKTwoTone.js index 13ab3507cce3a3..1faea0a391ff55 100644 --- a/packages/material-ui-icons/lib/NineKTwoTone.js +++ b/packages/material-ui-icons/lib/NineKTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 4.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H6.5v-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 10h1.5v1.5H8z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2v1h-3V15H10c.55 0 1-.45 1-1zm-1.5-2.5H8V10h1.5v1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "4")], 'NineKTwoTone'); \ No newline at end of file +}, "4")], 'NineKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineMp.js b/packages/material-ui-icons/lib/NineMp.js index 6c87a6f3a291f8..e61da46faaa7bb 100644 --- a/packages/material-ui-icons/lib/NineMp.js +++ b/packages/material-ui-icons/lib/NineMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" -}), 'NineMp'); \ No newline at end of file +}), 'NineMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineMpOutlined.js b/packages/material-ui-icons/lib/NineMpOutlined.js index 48e63cee39b3cb..f0d95700ec2425 100644 --- a/packages/material-ui-icons/lib/NineMpOutlined.js +++ b/packages/material-ui-icons/lib/NineMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM13 8h-1.5V6.5H13V8z" -}, "2")], 'NineMpOutlined'); \ No newline at end of file +}, "2")], 'NineMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineMpRounded.js b/packages/material-ui-icons/lib/NineMpRounded.js index 362d4b7274a5ce..520cb391768e9c 100644 --- a/packages/material-ui-icons/lib/NineMpRounded.js +++ b/packages/material-ui-icons/lib/NineMpRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 6c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H13V9h-2zm1.5 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6.5H13V8h-1.5z" -}, "2")], 'NineMpRounded'); \ No newline at end of file +}, "2")], 'NineMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineMpSharp.js b/packages/material-ui-icons/lib/NineMpSharp.js index bb965e5d1cb348..3f27c381074193 100644 --- a/packages/material-ui-icons/lib/NineMpSharp.js +++ b/packages/material-ui-icons/lib/NineMpSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5v6H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6.5H13V8h-1.5z" -}, "2")], 'NineMpSharp'); \ No newline at end of file +}, "2")], 'NineMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineMpTwoTone.js b/packages/material-ui-icons/lib/NineMpTwoTone.js index f10fe68dd83ac1..bc14b3e8403aeb 100644 --- a/packages/material-ui-icons/lib/NineMpTwoTone.js +++ b/packages/material-ui-icons/lib/NineMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H10V10zm-4 3.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM13 8h-1.5V6.5H13V8z" -}, "4")], 'NineMpTwoTone'); \ No newline at end of file +}, "4")], 'NineMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineteenMp.js b/packages/material-ui-icons/lib/NineteenMp.js index 22b88782352dad..cd7e66b41344d4 100644 --- a/packages/material-ui-icons/lib/NineteenMp.js +++ b/packages/material-ui-icons/lib/NineteenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 7h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zm1.5-2H15V6.5h-1.5V8zM7 5.5h3v6H8.5V7H7V5.5zm5 13h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm6.5-2.5c0 .55-.45 1-1 1h-2v1.5H14v-6h3.5c.55 0 1 .45 1 1V16zm-3-2H17v1.5h-1.5z" -}), 'NineteenMp'); \ No newline at end of file +}), 'NineteenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineteenMpOutlined.js b/packages/material-ui-icons/lib/NineteenMpOutlined.js index 017a84c673918e..4f0e47606b011e 100644 --- a/packages/material-ui-icons/lib/NineteenMpOutlined.js +++ b/packages/material-ui-icons/lib/NineteenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm8-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM15 8h-1.5V6.5H15V8z" -}, "2")], 'NineteenMpOutlined'); \ No newline at end of file +}, "2")], 'NineteenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineteenMpRounded.js b/packages/material-ui-icons/lib/NineteenMpRounded.js index b00366fe2e1358..0d4beafde58edf 100644 --- a/packages/material-ui-icons/lib/NineteenMpRounded.js +++ b/packages/material-ui-icons/lib/NineteenMpRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 6.5H15V8h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.5-7c0-.41.34-.75.75-.75H15V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "2")], 'NineteenMpRounded'); \ No newline at end of file +}, "2")], 'NineteenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineteenMpSharp.js b/packages/material-ui-icons/lib/NineteenMpSharp.js index 89bf716958f21c..10b25833c79b35 100644 --- a/packages/material-ui-icons/lib/NineteenMpSharp.js +++ b/packages/material-ui-icons/lib/NineteenMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'NineteenMpSharp'); \ No newline at end of file +}, "1")], 'NineteenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NineteenMpTwoTone.js b/packages/material-ui-icons/lib/NineteenMpTwoTone.js index bd1677db66cc10..81c666913d00c7 100644 --- a/packages/material-ui-icons/lib/NineteenMpTwoTone.js +++ b/packages/material-ui-icons/lib/NineteenMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 10.5v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM15 8h-1.5V6.5H15V8zm-6.5 3.5H10v-6H7V7h1.5z" -}, "4")], 'NineteenMpTwoTone'); \ No newline at end of file +}, "4")], 'NineteenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoAccounts.js b/packages/material-ui-icons/lib/NoAccounts.js index 2db5d59ec8c454..3523acb8af0625 100644 --- a/packages/material-ui-icons/lib/NoAccounts.js +++ b/packages/material-ui-icons/lib/NoAccounts.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" -}, "1")], 'NoAccounts'); \ No newline at end of file +}, "1")], 'NoAccounts'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoAccountsOutlined.js b/packages/material-ui-icons/lib/NoAccountsOutlined.js index 9d7eebf9b9f4db..e85cdbecca03ee 100644 --- a/packages/material-ui-icons/lib/NoAccountsOutlined.js +++ b/packages/material-ui-icons/lib/NoAccountsOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12zm8 8c-1.74 0-3.34-.56-4.65-1.5C8.66 17.56 10.26 17 12 17s3.34.56 4.65 1.5c-1.31.94-2.91 1.5-4.65 1.5zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" -}, "1")], 'NoAccountsOutlined'); \ No newline at end of file +}, "1")], 'NoAccountsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoAccountsRounded.js b/packages/material-ui-icons/lib/NoAccountsRounded.js index 6de064cb2a47a1..603b0bf830ed9e 100644 --- a/packages/material-ui-icons/lib/NoAccountsRounded.js +++ b/packages/material-ui-icons/lib/NoAccountsRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" -}, "1")], 'NoAccountsRounded'); \ No newline at end of file +}, "1")], 'NoAccountsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoAccountsSharp.js b/packages/material-ui-icons/lib/NoAccountsSharp.js index 0b9bde864dd155..6bb9212a83d8fb 100644 --- a/packages/material-ui-icons/lib/NoAccountsSharp.js +++ b/packages/material-ui-icons/lib/NoAccountsSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" -}, "1")], 'NoAccountsSharp'); \ No newline at end of file +}, "1")], 'NoAccountsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoAccountsTwoTone.js b/packages/material-ui-icons/lib/NoAccountsTwoTone.js index e61c647e6f9d25..f6354611173f6e 100644 --- a/packages/material-ui-icons/lib/NoAccountsTwoTone.js +++ b/packages/material-ui-icons/lib/NoAccountsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-.52 0-1 .12-1.44.32l4.62 4.62c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6zm0-4C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12zm8 8c-1.74 0-3.34-.56-4.65-1.5C8.66 17.56 10.26 17 12 17s3.34.56 4.65 1.5c-1.31.94-2.91 1.5-4.65 1.5zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.35 18.5c1.31.94 2.91 1.5 4.65 1.5s3.34-.56 4.65-1.5C15.34 17.56 13.74 17 12 17s-3.34.56-4.65 1.5zm7.83-7.56-4.62-4.62C11 6.12 11.48 6 12 6c1.93 0 3.5 1.57 3.5 3.5 0 .52-.12 1-.32 1.44z", opacity: ".3" -}, "1")], 'NoAccountsTwoTone'); \ No newline at end of file +}, "1")], 'NoAccountsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoBackpack.js b/packages/material-ui-icons/lib/NoBackpack.js index 8aeca5c7138fa4..ef4ef5a7b39272 100644 --- a/packages/material-ui-icons/lib/NoBackpack.js +++ b/packages/material-ui-icons/lib/NoBackpack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.76 2.76C4.06 7.31 4 7.64 4 8v12c0 1.1.9 2 2 2h12c.34 0 .65-.09.93-.24l.85.85 1.41-1.42zM6 14v-2h3.17l2 2H6zm8.83-2L6.98 4.15c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V12h-3.17z" -}), 'NoBackpack'); \ No newline at end of file +}), 'NoBackpack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoBackpackOutlined.js b/packages/material-ui-icons/lib/NoBackpackOutlined.js index 83e0b555c9d6f5..3af1da591bbcef 100644 --- a/packages/material-ui-icons/lib/NoBackpackOutlined.js +++ b/packages/material-ui-icons/lib/NoBackpackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.98 4.15c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V8c0-1.1-.9-2-2-2H8.83L6.98 4.15zM14.83 12l1.67 1.67V12h-1.67zm4.95 10.61-.85-.85c-.28.15-.59.24-.93.24H6c-1.1 0-2-.9-2-2V8c0-.36.06-.69.15-1.02L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM17.17 20l-6-6H7.5v-2h1.67L6 8.83V20h11.17z" -}), 'NoBackpackOutlined'); \ No newline at end of file +}), 'NoBackpackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoBackpackRounded.js b/packages/material-ui-icons/lib/NoBackpackRounded.js index 5727201cbef977..d0e4dbf04eb3ef 100644 --- a/packages/material-ui-icons/lib/NoBackpackRounded.js +++ b/packages/material-ui-icons/lib/NoBackpackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.98 4.15c.01 0 .01-.01.02-.01V3.5C7 2.67 7.67 2 8.5 2s1.5.67 1.5 1.5V4h4v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.64c1.72.45 3 2 3 3.86v9.17l-2.03-2.03c.01-.05.03-.09.03-.14v-2c0-.55-.45-1-1-1h-2.17L6.98 4.15zM20.49 21.9c-.39.39-1.02.39-1.41 0l-.14-.14c-.29.15-.6.24-.94.24H6c-1.1 0-2-.9-2-2V8c0-.36.06-.69.15-1.02L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11.17 14l-2-2H7c-.55 0-1 .45-1 1s.45 1 1 1h4.17z" -}), 'NoBackpackRounded'); \ No newline at end of file +}), 'NoBackpackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoBackpackSharp.js b/packages/material-ui-icons/lib/NoBackpackSharp.js index 5a48e471212353..5b3d97fb26e1ab 100644 --- a/packages/material-ui-icons/lib/NoBackpackSharp.js +++ b/packages/material-ui-icons/lib/NoBackpackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.76 2.76C4.06 7.31 4 7.64 4 8v14h15.17l.61.61 1.41-1.42zM6 14v-2h3.17l2 2H6zm.98-9.85c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V12h-3.17L6.98 4.15z" -}), 'NoBackpackSharp'); \ No newline at end of file +}), 'NoBackpackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoBackpackTwoTone.js b/packages/material-ui-icons/lib/NoBackpackTwoTone.js index 97fee19028bc1d..85f2bbdef9da27 100644 --- a/packages/material-ui-icons/lib/NoBackpackTwoTone.js +++ b/packages/material-ui-icons/lib/NoBackpackTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 15.17V8c0-1.1-.9-2-2-2H8.83l6 6h1.67v1.67l1.5 1.5zM17.17 20l-6-6H7.5v-2h1.67L6 8.83V20h11.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.98 4.15c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V8c0-1.1-.9-2-2-2H8.83L6.98 4.15zM14.83 12l1.67 1.67V12h-1.67zm4.95 10.61-.85-.85c-.28.15-.59.24-.93.24H6c-1.1 0-2-.9-2-2V8c0-.36.06-.69.15-1.02L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM17.17 20l-6-6H7.5v-2h1.67L6 8.83V20h11.17z" -}, "1")], 'NoBackpackTwoTone'); \ No newline at end of file +}, "1")], 'NoBackpackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoCell.js b/packages/material-ui-icons/lib/NoCell.js index 7022406b7f6531..45808aaab1ae58 100644 --- a/packages/material-ui-icons/lib/NoCell.js +++ b/packages/material-ui-icons/lib/NoCell.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.83 6-3.7-3.7C5.42 1.55 6.15 1 7 1l10 .01c1.1 0 2 .89 2 1.99v13.17l-2-2V6H8.83zm10.95 16.61-.91-.91c-.29.75-1.02 1.3-1.87 1.3H7c-1.1 0-2-.9-2-2V7.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM15.17 18 7 9.83V18h8.17z" -}), 'NoCell'); \ No newline at end of file +}), 'NoCell'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoCellOutlined.js b/packages/material-ui-icons/lib/NoCellOutlined.js index 0230e0ad2cc8c4..524cf7229dac77 100644 --- a/packages/material-ui-icons/lib/NoCellOutlined.js +++ b/packages/material-ui-icons/lib/NoCellOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6v8.17l2 2V3c0-1.1-.9-1.99-2-1.99L7 1c-.85 0-1.58.55-1.87 1.3L8.83 6H17zM7 3h10v1H7V3zm14.19 18.19L19 19l-2-2L7 7 5 5 2.81 2.81 1.39 4.22 5 7.83V21c0 1.1.9 2 2 2h10c.85 0 1.58-.55 1.87-1.3l.91.91 1.41-1.42zM17 21H7v-1h10v1zM7 18V9.83L15.17 18H7z" -}), 'NoCellOutlined'); \ No newline at end of file +}), 'NoCellOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoCellRounded.js b/packages/material-ui-icons/lib/NoCellRounded.js index 88df238f2efa14..1b416ad7873115 100644 --- a/packages/material-ui-icons/lib/NoCellRounded.js +++ b/packages/material-ui-icons/lib/NoCellRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.83 6-3.7-3.7C5.42 1.55 6.15 1 7 1l10 .01c1.1 0 2 .89 2 1.99v13.17l-2-2V6H8.83zm11.66 15.9c-.39.39-1.02.39-1.41 0l-.2-.2c-.3.75-1.03 1.3-1.88 1.3H7c-1.1 0-2-.9-2-2V7.83l-2.9-2.9a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM15.17 18 7 9.83V18h8.17z" -}), 'NoCellRounded'); \ No newline at end of file +}), 'NoCellRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoCellSharp.js b/packages/material-ui-icons/lib/NoCellSharp.js index 6d15ead284360b..9f7918814d6fd1 100644 --- a/packages/material-ui-icons/lib/NoCellSharp.js +++ b/packages/material-ui-icons/lib/NoCellSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 5 7.83V23h14v-1.17l.78.78 1.41-1.42zM7 18V9.83L15.17 18H7zM8.83 6 5 2.17V1h14v15.17l-2-2V6H8.83z" -}), 'NoCellSharp'); \ No newline at end of file +}), 'NoCellSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoCellTwoTone.js b/packages/material-ui-icons/lib/NoCellTwoTone.js index ba18bc19fe73e2..e54c53ece85a4d 100644 --- a/packages/material-ui-icons/lib/NoCellTwoTone.js +++ b/packages/material-ui-icons/lib/NoCellTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6v8.17l2 2V3c0-1.1-.9-1.99-2-1.99L7 1c-.85 0-1.58.55-1.87 1.3L8.83 6H17zM7 3h10v1H7V3zm14.19 18.19L2.81 2.81 1.39 4.22 5 7.83V21c0 1.1.9 2 2 2h10c.85 0 1.58-.55 1.87-1.3l.91.91 1.41-1.42zM17 21H7v-1h10v1zM7 18V9.83L15.17 18H7z" -}, "1")], 'NoCellTwoTone'); \ No newline at end of file +}, "1")], 'NoCellTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoDrinks.js b/packages/material-ui-icons/lib/NoDrinks.js index 126b7d45e70566..ad0ba1e65dc149 100644 --- a/packages/material-ui-icons/lib/NoDrinks.js +++ b/packages/material-ui-icons/lib/NoDrinks.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.83 3H21v2l-6.2 6.97L9.83 7h6.74l1.78-2H7.83l-2-2zm13.95 19.61L18 20.83V21H6v-2h5v-5l-1.37-1.54-8.24-8.24L2.8 2.81 3 3l18.19 18.19-1.41 1.42zM16.17 19 13 15.83V19h3.17z" -}), 'NoDrinks'); \ No newline at end of file +}), 'NoDrinks'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoDrinksOutlined.js b/packages/material-ui-icons/lib/NoDrinksOutlined.js index 142326bae8cf7c..f1843c0617689c 100644 --- a/packages/material-ui-icons/lib/NoDrinksOutlined.js +++ b/packages/material-ui-icons/lib/NoDrinksOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97-1.42-1.42L14.77 9h-2.94l-2-2h6.74l1.78-2H7.83z" -}), 'NoDrinksOutlined'); \ No newline at end of file +}), 'NoDrinksOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoDrinksRounded.js b/packages/material-ui-icons/lib/NoDrinksRounded.js index 954ffde9b39d8e..18853b32be714f 100644 --- a/packages/material-ui-icons/lib/NoDrinksRounded.js +++ b/packages/material-ui-icons/lib/NoDrinksRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l7.54 7.54L11 14v5H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.32 0 .59-.16.78-.4l1.3 1.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2h13.72c.8 0 1.45.65 1.45 1.45 0 .35-.13.7-.37.96l-5.83 6.56L9.83 7h6.74l1.78-2H7.83z" -}), 'NoDrinksRounded'); \ No newline at end of file +}), 'NoDrinksRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoDrinksSharp.js b/packages/material-ui-icons/lib/NoDrinksSharp.js index 5acb04fd71ecdb..a9d7c0fdd445e4 100644 --- a/packages/material-ui-icons/lib/NoDrinksSharp.js +++ b/packages/material-ui-icons/lib/NoDrinksSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97L9.83 7h6.74l1.78-2H7.83z" -}), 'NoDrinksSharp'); \ No newline at end of file +}), 'NoDrinksSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoDrinksTwoTone.js b/packages/material-ui-icons/lib/NoDrinksTwoTone.js index 9000173c1a3aad..576a3108d74323 100644 --- a/packages/material-ui-icons/lib/NoDrinksTwoTone.js +++ b/packages/material-ui-icons/lib/NoDrinksTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.77 9h-2.94l1.55 1.56z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97-1.42-1.42L14.77 9h-2.94l-2-2h6.74l1.78-2H7.83z" -}, "1")], 'NoDrinksTwoTone'); \ No newline at end of file +}, "1")], 'NoDrinksTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryption.js b/packages/material-ui-icons/lib/NoEncryption.js index 14bf7569c7e419..a6deb245a8882c 100644 --- a/packages/material-ui-icons/lib/NoEncryption.js +++ b/packages/material-ui-icons/lib/NoEncryption.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 21.78 4.22 5 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12c.23 0 .45-.05.66-.12L19.78 23 21 21.78zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H9.66L20 18.34V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.56 0-4.64 1.93-4.94 4.4L8.9 7.24V6z" -}), 'NoEncryption'); \ No newline at end of file +}), 'NoEncryption'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionGmailerrorred.js b/packages/material-ui-icons/lib/NoEncryptionGmailerrorred.js index 44ab010403617d..7b1c0242933796 100644 --- a/packages/material-ui-icons/lib/NoEncryptionGmailerrorred.js +++ b/packages/material-ui-icons/lib/NoEncryptionGmailerrorred.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.27L20 17.17V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.21 0-4.07 1.45-4.73 3.44L8.9 6.07V6zM2.1 2.1.69 3.51 5.3 8.13C4.55 8.42 4 9.15 4 10v10c0 1.1.9 2 2 2h12c.34 0 .65-.09.93-.24l1.56 1.56 1.41-1.41L2.1 2.1zM12 17c-1.1 0-2-.9-2-2 0-.59.27-1.12.68-1.49l2.81 2.81c-.37.41-.9.68-1.49.68z" -}), 'NoEncryptionGmailerrorred'); \ No newline at end of file +}), 'NoEncryptionGmailerrorred'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredOutlined.js b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredOutlined.js index 3557faf2dcce6c..d0c3c1e2f9692b 100644 --- a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredOutlined.js +++ b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" -}), 'NoEncryptionGmailerrorredOutlined'); \ No newline at end of file +}), 'NoEncryptionGmailerrorredOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredRounded.js b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredRounded.js index 740fef16b1dfbf..3a988f9942aaba 100644 --- a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredRounded.js +++ b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zm-3.78-.49a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.33 1.33C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l.29.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 5.51z" -}), 'NoEncryptionGmailerrorredRounded'); \ No newline at end of file +}), 'NoEncryptionGmailerrorredRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredSharp.js b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredSharp.js index 760ffeec1fe4f6..dd22000fc15301 100644 --- a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredSharp.js +++ b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81 3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z" -}), 'NoEncryptionGmailerrorredSharp'); \ No newline at end of file +}), 'NoEncryptionGmailerrorredSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredTwoTone.js b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredTwoTone.js index 208d529f5e3c82..e678a231968160 100644 --- a/packages/material-ui-icons/lib/NoEncryptionGmailerrorredTwoTone.js +++ b/packages/material-ui-icons/lib/NoEncryptionGmailerrorredTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" -}, "1")], 'NoEncryptionGmailerrorredTwoTone'); \ No newline at end of file +}, "1")], 'NoEncryptionGmailerrorredTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionOutlined.js b/packages/material-ui-icons/lib/NoEncryptionOutlined.js index 75fe516320af44..ba5b6662379090 100644 --- a/packages/material-ui-icons/lib/NoEncryptionOutlined.js +++ b/packages/material-ui-icons/lib/NoEncryptionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" -}), 'NoEncryptionOutlined'); \ No newline at end of file +}), 'NoEncryptionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionRounded.js b/packages/material-ui-icons/lib/NoEncryptionRounded.js index ff02c89a5ecbcc..b8eaeeecb850ee 100644 --- a/packages/material-ui-icons/lib/NoEncryptionRounded.js +++ b/packages/material-ui-icons/lib/NoEncryptionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zm-3.78-.49a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.33 1.33C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l.29.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 5.51z" -}), 'NoEncryptionRounded'); \ No newline at end of file +}), 'NoEncryptionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionSharp.js b/packages/material-ui-icons/lib/NoEncryptionSharp.js index ef2ecea196bd8a..5d3db6d821b1dc 100644 --- a/packages/material-ui-icons/lib/NoEncryptionSharp.js +++ b/packages/material-ui-icons/lib/NoEncryptionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81 3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z" -}), 'NoEncryptionSharp'); \ No newline at end of file +}), 'NoEncryptionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoEncryptionTwoTone.js b/packages/material-ui-icons/lib/NoEncryptionTwoTone.js index 7f1b325ada6da4..662c0f6d733630 100644 --- a/packages/material-ui-icons/lib/NoEncryptionTwoTone.js +++ b/packages/material-ui-icons/lib/NoEncryptionTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" -}, "1")], 'NoEncryptionTwoTone'); \ No newline at end of file +}, "1")], 'NoEncryptionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFlash.js b/packages/material-ui-icons/lib/NoFlash.js index 09f8d5e90dbbaa..fedad22faf67eb 100644 --- a/packages/material-ui-icons/lib/NoFlash.js +++ b/packages/material-ui-icons/lib/NoFlash.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.93 13.93 2.45 2.45 1.04 3.87l5.3 5.3-.2.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l2.18 2.18 1.41-1.41L18 18l-4.07-4.07zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57C13.57 18.6 11.95 20 10 20zm8-4.83L10.83 8h1.75l1.28 1.4h2.54c.88 0 1.6.72 1.6 1.6v4.17zm2.4-9.57H22L19 11V7h-1V2h4l-1.6 3.6z" -}), 'NoFlash'); \ No newline at end of file +}), 'NoFlash'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFlashOutlined.js b/packages/material-ui-icons/lib/NoFlashOutlined.js index 044286fc6ab1b7..3fddd7fa9e5440 100644 --- a/packages/material-ui-icons/lib/NoFlashOutlined.js +++ b/packages/material-ui-icons/lib/NoFlashOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.4 5.6H22L19 11V7h-1V2h4l-1.6 3.6zM16 11.4v1.77l2 2V11c0-.88-.72-1.6-1.6-1.6h-2.54L12.58 8h-1.75l3.4 3.4H16zM2.1 2.1.69 3.51l5.66 5.66-.21.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l2.54 2.54 1.41-1.41L2.1 2.1zm9.4 13.4c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5zm4.46 4.5H4v-8.6h3.02l.59-.65.15-.16 1.5 1.5c-1.58.34-2.76 1.73-2.76 3.41 0 1.93 1.57 3.5 3.5 3.5 1.68 0 3.07-1.18 3.42-2.76l2.55 2.55-.01 1.21z" -}), 'NoFlashOutlined'); \ No newline at end of file +}), 'NoFlashOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFlashRounded.js b/packages/material-ui-icons/lib/NoFlashRounded.js index 4bda34aad42e4f..1f5fea4233da68 100644 --- a/packages/material-ui-icons/lib/NoFlashRounded.js +++ b/packages/material-ui-icons/lib/NoFlashRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.16 3.16a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.6 4.6-.21.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l1.47 1.47c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.16 3.16zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57C13.57 18.6 11.95 20 10 20zm8-4.83L10.83 8h.87c.56 0 1.1.24 1.48.65l.69.75h2.54c.88 0 1.6.72 1.6 1.6v4.17zm2.4-9.57h.75c.38 0 .62.41.44.74L19 11V7h-.5c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5h2.73c.36 0 .6.37.46.7L20.4 5.6z" -}), 'NoFlashRounded'); \ No newline at end of file +}), 'NoFlashRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFlashSharp.js b/packages/material-ui-icons/lib/NoFlashSharp.js index ffb0cf0399c321..4be8d1ef79f5c4 100644 --- a/packages/material-ui-icons/lib/NoFlashSharp.js +++ b/packages/material-ui-icons/lib/NoFlashSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.45 2.45 1.04 3.87l5.3 5.3-.2.23H2V22h16v-1.17l2.13 2.13 1.41-1.41L2.45 2.45zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57C13.57 18.6 11.95 20 10 20zm8-4.83L10.83 8h1.75l1.28 1.4H18v5.77zm2.4-9.57H22L19 11V7h-1V2h4l-1.6 3.6z" -}), 'NoFlashSharp'); \ No newline at end of file +}), 'NoFlashSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFlashTwoTone.js b/packages/material-ui-icons/lib/NoFlashTwoTone.js index d4ca99f2e8f473..fa72e9b0c3cabd 100644 --- a/packages/material-ui-icons/lib/NoFlashTwoTone.js +++ b/packages/material-ui-icons/lib/NoFlashTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.42 16.24 2.55 2.55-.01 1.21H4v-8.6h3.02l.59-.65.15-.16 1.5 1.5c-1.58.34-2.76 1.73-2.76 3.41 0 1.93 1.57 3.5 3.5 3.5 1.68 0 3.07-1.18 3.42-2.76zM16 13.17V11.4h-1.77L16 13.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.4 5.6H22L19 11V7h-1V2h4l-1.6 3.6zM16 11.4v1.77l2 2V11c0-.88-.72-1.6-1.6-1.6h-2.54L12.58 8h-1.75l3.4 3.4H16zm1.97 6.57L2.1 2.1.69 3.51l5.66 5.66-.21.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l2.54 2.54 1.41-1.41-3.93-3.94zM11.5 15.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5zm4.46 4.5H4v-8.6h3.02l.59-.65.15-.16 1.5 1.5c-1.58.34-2.76 1.73-2.76 3.41 0 1.93 1.57 3.5 3.5 3.5 1.68 0 3.07-1.18 3.42-2.76l2.55 2.55-.01 1.21z" -}, "1")], 'NoFlashTwoTone'); \ No newline at end of file +}, "1")], 'NoFlashTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFood.js b/packages/material-ui-icons/lib/NoFood.js index 8d368521378ccb..f47198320f89ed 100644 --- a/packages/material-ui-icons/lib/NoFood.js +++ b/packages/material-ui-icons/lib/NoFood.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.35 8.52 11 5h5V1h2v4h5l-1.38 13.79L11.35 8.52zM1 21v1c0 .55.45 1 1 1h13c.55 0 1-.45 1-1v-1H1zm20.9.9L2.1 2.1.69 3.51l5.7 5.7C3.28 9.87 1 11.99 1 15h11.17l2 2H1v2h15v-.17l4.49 4.49 1.41-1.42z" -}), 'NoFood'); \ No newline at end of file +}), 'NoFood'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFoodOutlined.js b/packages/material-ui-icons/lib/NoFoodOutlined.js index 8c5bf8cebabbb2..feefe88a13a8c4 100644 --- a/packages/material-ui-icons/lib/NoFoodOutlined.js +++ b/packages/material-ui-icons/lib/NoFoodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h15.01v.98c0 .56-.45 1.01-1.01 1.01H2.01c-.56 0-1.01-.45-1.01-1.01V21zm19.49 2.31L16 18.83V19H1v-2h13.17l-2-2H1c0-3.24 2.46-5.17 5.38-5.79l-5.7-5.7L2.1 2.1 13 13l2 2 6.9 6.9-1.41 1.41zM10.17 13l-2-2c-1.42.06-3.52.56-4.55 2h6.55zM23 5h-5V1h-2v4h-5l.23 2h9.56l-1 9.97 1.83 1.83L23 5z" -}), 'NoFoodOutlined'); \ No newline at end of file +}), 'NoFoodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFoodRounded.js b/packages/material-ui-icons/lib/NoFoodRounded.js index 09e883373eddb0..15c7f3e604e3dd 100644 --- a/packages/material-ui-icons/lib/NoFoodRounded.js +++ b/packages/material-ui-icons/lib/NoFoodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 22c0 .55-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1h13c.55 0 1 .45 1 1zm6.89-15.9c.06-.59-.4-1.1-.99-1.1H18V2c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.9c-.59 0-1.05.51-1 1.1l.24 2.41L18 15.17l3.62 3.62L22.89 6.1zm-1.7 16.51c.39-.39.39-1.02 0-1.41L12 12 9.01 9.01l-6.2-6.2a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l4.99 4.99c-2.56.54-4.76 2.08-5.28 4.63-.11.61.39 1.16 1 1.16h10.07l2 2H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.32 0 .59-.16.78-.4l4 4c.39.4 1.02.4 1.41.01z" -}), 'NoFoodRounded'); \ No newline at end of file +}), 'NoFoodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFoodSharp.js b/packages/material-ui-icons/lib/NoFoodSharp.js index ab62cea0c98509..53cff89846c897 100644 --- a/packages/material-ui-icons/lib/NoFoodSharp.js +++ b/packages/material-ui-icons/lib/NoFoodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.35 8.52 11 5h5V1h2v4h5l-1.38 13.79L18 15.17l-6.65-6.65zM21.9 21.9 2.1 2.1.69 3.51l5.7 5.7C3.46 9.83 1 11.76 1 15h11.17l2 2H1v2h15v-.17l4.49 4.49 1.41-1.42zM1 23h15v-2H1v2z" -}), 'NoFoodSharp'); \ No newline at end of file +}), 'NoFoodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoFoodTwoTone.js b/packages/material-ui-icons/lib/NoFoodTwoTone.js index 77ea90f145a6da..3ca765038d5c83 100644 --- a/packages/material-ui-icons/lib/NoFoodTwoTone.js +++ b/packages/material-ui-icons/lib/NoFoodTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.16 11c-1.43.07-3.52.57-4.54 2h6.55l-2.01-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h15.01v.98c0 .56-.45 1.01-1.01 1.01H2.01c-.56 0-1.01-.45-1.01-1.01V21zm19.49 2.31L16 18.83V19H1v-2h13.17l-2-2H1c0-3.24 2.46-5.17 5.38-5.79l-5.7-5.7L2.1 2.1 13 13l2 2 6.9 6.9-1.41 1.41zM10.17 13l-2-2c-1.42.06-3.52.56-4.55 2h6.55zM23 5h-5V1h-2v4h-5l.23 2h9.56l-1 9.97 1.83 1.83L23 5z" -}, "1")], 'NoFoodTwoTone'); \ No newline at end of file +}, "1")], 'NoFoodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoLuggage.js b/packages/material-ui-icons/lib/NoLuggage.js index 0aa9052020964f..0b987d011f6b0c 100644 --- a/packages/material-ui-icons/lib/NoLuggage.js +++ b/packages/material-ui-icons/lib/NoLuggage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.75 9v.92l1.75 1.75V9H16v4.17l3 3V8c0-1.1-.9-2-2-2h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3h-.17l3 3h.92zM10.5 3.5h3V6h-3V3.5zm10.69 17.69L2.81 2.81 1.39 4.22l3.63 3.63c0 .05-.02.1-.02.15v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c.34 0 .65-.09.93-.24l1.85 1.85 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm4.75 0h-1.5v-3.92l1.5 1.5V18z" -}), 'NoLuggage'); \ No newline at end of file +}), 'NoLuggage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoLuggageOutlined.js b/packages/material-ui-icons/lib/NoLuggageOutlined.js index 5e967758a63ac5..93fb8d3bff7baf 100644 --- a/packages/material-ui-icons/lib/NoLuggageOutlined.js +++ b/packages/material-ui-icons/lib/NoLuggageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 13.17-1.5-1.5V9H16v4.17zm3.78 9.44-1.85-1.85c-.28.15-.59.24-.93.24 0 .55-.45 1-1 1s-1-.45-1-1H9c0 .55-.45 1-1 1s-1-.45-1-1c-1.1 0-2-.9-2-2V8c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-3.42-3.42V18h-1.5v-3.92L9.5 12.33V18H8v-7.17l-1-1V19h9.17zM12.75 9h-.92l.92.92V9zM19 8v8.17l-2-2V8h-6.17l-.99-.99L9 6.17V3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3h2c1.1 0 2 .9 2 2zm-8.5-2h3V3.5h-3V6z" -}), 'NoLuggageOutlined'); \ No newline at end of file +}), 'NoLuggageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoLuggageRounded.js b/packages/material-ui-icons/lib/NoLuggageRounded.js index ff33b34b8ad3c0..28fe9c82079733 100644 --- a/packages/material-ui-icons/lib/NoLuggageRounded.js +++ b/packages/material-ui-icons/lib/NoLuggageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.92 2.92c0 .06-.02.11-.02.16v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c.34 0 .65-.09.93-.24l1.14 1.14c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM8.75 18c-.41 0-.75-.34-.75-.75v-6.42l1.5 1.5v4.92c0 .41-.34.75-.75.75zM12 18c-.41 0-.75-.34-.75-.75v-3.17l1.5 1.5v1.67c0 .41-.34.75-.75.75zm0-9c.41 0 .75.34.75.75v.17l1.75 1.75V9.75c0-.41.34-.75.75-.75s.75.34.75.75v3.42l3 3V8c0-1.1-.9-2-2-2h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3h-.17l3.03 3.03c.05-.01.09-.03.14-.03zm-1.5-5.5h3V6h-3V3.5z" -}), 'NoLuggageRounded'); \ No newline at end of file +}), 'NoLuggageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoLuggageSharp.js b/packages/material-ui-icons/lib/NoLuggageSharp.js index e8bb6983cedddd..924c09ff8fb623 100644 --- a/packages/material-ui-icons/lib/NoLuggageSharp.js +++ b/packages/material-ui-icons/lib/NoLuggageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.75 9v.92l1.75 1.75V9H16v4.17l3 3V6h-4V2H9v4h-.17l3 3h.92zM10.5 3.5h3V6h-3V3.5zm10.69 17.69L2.81 2.81 1.39 4.22 5 7.83V21h2v1h2v-1h6v1h2v-1h1.17l1.61 1.61 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm3.25 0v-3.92l1.5 1.5V18h-1.5z" -}), 'NoLuggageSharp'); \ No newline at end of file +}), 'NoLuggageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoLuggageTwoTone.js b/packages/material-ui-icons/lib/NoLuggageTwoTone.js index 0d59e421c03e4c..97d398fc0fd466 100644 --- a/packages/material-ui-icons/lib/NoLuggageTwoTone.js +++ b/packages/material-ui-icons/lib/NoLuggageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.17 19-3.42-3.42V18h-1.5v-3.92L9.5 12.33V18H8v-7.17l-1-1V19h9.17zM17 8v6.17l-1-1V9h-1.5v2.67l-1.75-1.75V9h-.92l-1-1H17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 13.17-1.5-1.5V9H16v4.17zm3.78 9.44-1.85-1.85c-.28.15-.59.24-.93.24 0 .55-.45 1-1 1s-1-.45-1-1H9c0 .55-.45 1-1 1s-1-.45-1-1c-1.1 0-2-.9-2-2V8c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-3.42-3.42V18h-1.5v-3.92L9.5 12.33V18H8v-7.17l-1-1V19h9.17zM12.75 9h-.92l.92.92V9zM19 8v8.17l-2-2V8h-6.17l-.99-.99L9 6.17V3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3h2c1.1 0 2 .9 2 2zm-8.5-2h3V3.5h-3V6z" -}, "1")], 'NoLuggageTwoTone'); \ No newline at end of file +}, "1")], 'NoLuggageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMeals.js b/packages/material-ui-icons/lib/NoMeals.js index 9b3499659e3d99..66fe703e450eeb 100644 --- a/packages/material-ui-icons/lib/NoMeals.js +++ b/packages/material-ui-icons/lib/NoMeals.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" -}), 'NoMeals'); \ No newline at end of file +}), 'NoMeals'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMealsOutlined.js b/packages/material-ui-icons/lib/NoMealsOutlined.js index b4f307c874f7d6..4cfc3a51b34030 100644 --- a/packages/material-ui-icons/lib/NoMealsOutlined.js +++ b/packages/material-ui-icons/lib/NoMealsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" -}), 'NoMealsOutlined'); \ No newline at end of file +}), 'NoMealsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMealsRounded.js b/packages/material-ui-icons/lib/NoMealsRounded.js index 2c3aa4464a21e4..4a88ce7ee7b976 100644 --- a/packages/material-ui-icons/lib/NoMealsRounded.js +++ b/packages/material-ui-icons/lib/NoMealsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 18.17-2-2V14h-1c-1.1 0-2-.9-2-2V6c0-1.49 1.6-3.32 3.76-3.85.63-.15 1.24.33 1.24.98v15.04zm.19 4.44c-.39.39-1.02.39-1.41 0l-9.76-9.76c-.33.09-.66.15-1.02.15v8c0 .55-.45 1-1 1s-1-.45-1-1v-8c-2.21 0-4-1.79-4-4V5.83L1.39 4.22a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.4.39.4 1.03.01 1.42zM6.17 9 5 7.83V9h1.17zM13 9V3c0-.55-.45-1-1-1s-1 .45-1 1v5.17l1.85 1.85c.09-.33.15-.66.15-1.02zM9 3c0-.55-.45-1-1-1s-1 .45-1 1v1.17l2 2V3z" -}), 'NoMealsRounded'); \ No newline at end of file +}), 'NoMealsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMealsSharp.js b/packages/material-ui-icons/lib/NoMealsSharp.js index 9231459632ddb2..69ebe3ce3af762 100644 --- a/packages/material-ui-icons/lib/NoMealsSharp.js +++ b/packages/material-ui-icons/lib/NoMealsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" -}), 'NoMealsSharp'); \ No newline at end of file +}), 'NoMealsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMealsTwoTone.js b/packages/material-ui-icons/lib/NoMealsTwoTone.js index 4a3258b38ea487..8460c118dc367c 100644 --- a/packages/material-ui-icons/lib/NoMealsTwoTone.js +++ b/packages/material-ui-icons/lib/NoMealsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" -}), 'NoMealsTwoTone'); \ No newline at end of file +}), 'NoMealsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMeetingRoom.js b/packages/material-ui-icons/lib/NoMeetingRoom.js index 2fb07898060c11..de761976b81a36 100644 --- a/packages/material-ui-icons/lib/NoMeetingRoom.js +++ b/packages/material-ui-icons/lib/NoMeetingRoom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h-1v2h2v-1l9.73 9.73L20.46 23 14 16.54V21H3v-2h2V7.54l-4-4 1.27-1.27L11 11zm3 .49L5.51 3H14v1h5v12.49l-2-2V6h-3v5.49z" -}), 'NoMeetingRoom'); \ No newline at end of file +}), 'NoMeetingRoom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMeetingRoomOutlined.js b/packages/material-ui-icons/lib/NoMeetingRoomOutlined.js index b2fdf35633ff2a..42bc2e8bef43bf 100644 --- a/packages/material-ui-icons/lib/NoMeetingRoomOutlined.js +++ b/packages/material-ui-icons/lib/NoMeetingRoomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z" -}), 'NoMeetingRoomOutlined'); \ No newline at end of file +}), 'NoMeetingRoomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMeetingRoomRounded.js b/packages/material-ui-icons/lib/NoMeetingRoomRounded.js index 99a3ddfa12e3b8..293a16e7179ced 100644 --- a/packages/material-ui-icons/lib/NoMeetingRoomRounded.js +++ b/packages/material-ui-icons/lib/NoMeetingRoomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6h3v7.88l2 2V5c0-.55-.45-1-1-1h-4c0-.55-.45-1-1-1H6.12L14 10.88V6zm7.17 14.88L12 11.71V13h-2v-2h1.29L3.12 2.83a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5 7.54V19H4c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1v-3.46l5.75 5.75c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" -}), 'NoMeetingRoomRounded'); \ No newline at end of file +}), 'NoMeetingRoomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMeetingRoomSharp.js b/packages/material-ui-icons/lib/NoMeetingRoomSharp.js index 5427700092e6fb..1944d8d52412fa 100644 --- a/packages/material-ui-icons/lib/NoMeetingRoomSharp.js +++ b/packages/material-ui-icons/lib/NoMeetingRoomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6h3v7.88l2 2V4h-5V3H6.12L14 10.88zm-2 5.71V13h-2v-2h1.29L2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41z" -}), 'NoMeetingRoomSharp'); \ No newline at end of file +}), 'NoMeetingRoomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoMeetingRoomTwoTone.js b/packages/material-ui-icons/lib/NoMeetingRoomTwoTone.js index b7b433f57ae778..22b6c337dbe27e 100644 --- a/packages/material-ui-icons/lib/NoMeetingRoomTwoTone.js +++ b/packages/material-ui-icons/lib/NoMeetingRoomTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5H8.12L12 8.88V6zM7 19h5v-4.46l-5-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z" -}, "1")], 'NoMeetingRoomTwoTone'); \ No newline at end of file +}, "1")], 'NoMeetingRoomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoPhotography.js b/packages/material-ui-icons/lib/NoPhotography.js index 53b1faa93f3f6c..b180265557364f 100644 --- a/packages/material-ui-icons/lib/NoPhotography.js +++ b/packages/material-ui-icons/lib/NoPhotography.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.94 8.12 7.48 4.66 9 3h6l1.83 2H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-5.1-5.1c.08-.35.12-.7.12-1.06 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm9.55 15.19L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49l-2-2L2.1 2.1l19.8 19.8-1.41 1.41zm-6-5.99-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5C7.25 11.24 7 12.09 7 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z" -}), 'NoPhotography'); \ No newline at end of file +}), 'NoPhotography'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoPhotographyOutlined.js b/packages/material-ui-icons/lib/NoPhotographyOutlined.js index 655fe8c6543b65..b96766837c6026 100644 --- a/packages/material-ui-icons/lib/NoPhotographyOutlined.js +++ b/packages/material-ui-icons/lib/NoPhotographyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6.07 7.48 4.66 9 3h6l1.83 2H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16L20 17.17V7h-4.05l-1.83-2H9.88L8.9 6.07zm11.59 17.24L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49l-2-2L2.1 2.1l19.8 19.8-1.41 1.41zM9.19 12.02c-.11.31-.19.63-.19.98 0 1.66 1.34 3 3 3 .35 0 .67-.08.98-.19l-3.79-3.79zM16.17 19l-1.68-1.68c-.73.43-1.58.68-2.49.68-2.76 0-5-2.24-5-5 0-.91.25-1.76.68-2.49L4.17 7H4v12h12.17zm-1.36-7.02 2.07 2.07c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12l2.07 2.07c.84.3 1.5.96 1.8 1.79z" -}), 'NoPhotographyOutlined'); \ No newline at end of file +}), 'NoPhotographyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoPhotographyRounded.js b/packages/material-ui-icons/lib/NoPhotographyRounded.js index 4f5d03a2c4f5de..4264d6297787f8 100644 --- a/packages/material-ui-icons/lib/NoPhotographyRounded.js +++ b/packages/material-ui-icons/lib/NoPhotographyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.94 8.12 7.48 4.66l.92-1.01c.38-.41.92-.65 1.48-.65h4.24c.56 0 1.1.24 1.47.65L16.83 5H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-5.1-5.1c.08-.35.12-.7.12-1.06 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm8.84 14.49L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49L1.39 4.22a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.39.39.39 1.02 0 1.41-.38.4-1.01.4-1.4.01zm-5.29-5.29-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5C7.25 11.24 7 12.09 7 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z" -}), 'NoPhotographyRounded'); \ No newline at end of file +}), 'NoPhotographyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoPhotographySharp.js b/packages/material-ui-icons/lib/NoPhotographySharp.js index b8fc572d22d511..0546df0a62c765 100644 --- a/packages/material-ui-icons/lib/NoPhotographySharp.js +++ b/packages/material-ui-icons/lib/NoPhotographySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.94 8.12 7.48 4.66 9 3h6l1.83 2H22v14.17l-5.12-5.12c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm9.55 15.19L18.17 21H2V5h.17L.69 3.51 2.1 2.1 21 21l.9.9-1.41 1.41zm-6-5.99-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5C7.25 11.24 7 12.09 7 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z" -}), 'NoPhotographySharp'); \ No newline at end of file +}), 'NoPhotographySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoPhotographyTwoTone.js b/packages/material-ui-icons/lib/NoPhotographyTwoTone.js index a6a2928e2901c4..1239c25d969e7c 100644 --- a/packages/material-ui-icons/lib/NoPhotographyTwoTone.js +++ b/packages/material-ui-icons/lib/NoPhotographyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.94 8.12 8.9 6.07 9.88 5h4.24l1.83 2H20v10.17l-3.12-3.12c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zM12 18c-2.76 0-5-2.24-5-5 0-.91.25-1.76.68-2.49L4.17 7H4v12h12.17l-1.68-1.68c-.73.43-1.58.68-2.49.68z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.9 6.07 7.48 4.66 9 3h6l1.83 2H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16L20 17.17V7h-4.05l-1.83-2H9.88L8.9 6.07zm11.59 17.24L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49l-2-2L2.1 2.1 7 7l2.01 2.01 1.43 1.43 4.1 4.1 1.43 1.43L19 19l1.82 1.82 1.08 1.08-1.41 1.41zM9.19 12.02c-.11.31-.19.63-.19.98 0 1.65 1.35 3 3 3 .35 0 .67-.08.98-.19l-3.79-3.79zM16.17 19l-1.68-1.68c-.73.43-1.58.68-2.49.68-2.76 0-5-2.24-5-5 0-.91.25-1.76.68-2.49L4.17 7H4v12h12.17zm-1.36-7.02 2.08 2.08c.07-.35.11-.7.11-1.06 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12l2.08 2.08c.83.3 1.48.95 1.79 1.78z" -}, "1")], 'NoPhotographyTwoTone'); \ No newline at end of file +}, "1")], 'NoPhotographyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoSim.js b/packages/material-ui-icons/lib/NoSim.js index df329c5da23e0d..bda5d8c834f7c2 100644 --- a/packages/material-ui-icons/lib/NoSim.js +++ b/packages/material-ui-icons/lib/NoSim.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88 2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z" -}), 'NoSim'); \ No newline at end of file +}), 'NoSim'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoSimOutlined.js b/packages/material-ui-icons/lib/NoSimOutlined.js index 749ede9e68c89f..b9139d790505db 100644 --- a/packages/material-ui-icons/lib/NoSimOutlined.js +++ b/packages/material-ui-icons/lib/NoSimOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.26 21.21 3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41zM7 19V9.77L16.23 19H7zm3.84-14H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z" -}), 'NoSimOutlined'); \ No newline at end of file +}), 'NoSimOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoSimRounded.js b/packages/material-ui-icons/lib/NoSimRounded.js index 8cd9a627700c8b..b8a56bc7a3b393 100644 --- a/packages/material-ui-icons/lib/NoSimRounded.js +++ b/packages/material-ui-icons/lib/NoSimRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.09 4.44c-.39.39-.39 1.02 0 1.41l2.03 2.03-.12.13V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.17 1.17c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.5 4.44a.9959.9959 0 0 0-1.41 0zM19 16.11V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06 19 16.11z" -}), 'NoSimRounded'); \ No newline at end of file +}), 'NoSimRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoSimSharp.js b/packages/material-ui-icons/lib/NoSimSharp.js index 017a5dc0b28c4c..c454191c8b3b62 100644 --- a/packages/material-ui-icons/lib/NoSimSharp.js +++ b/packages/material-ui-icons/lib/NoSimSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.79 3.74 2.38 5.15l2.74 2.74-.12.12V21h13.27l1.58 1.62 1.41-1.41zM19 16.11V3h-8.99L7.95 5.06z" -}), 'NoSimSharp'); \ No newline at end of file +}), 'NoSimSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoSimTwoTone.js b/packages/material-ui-icons/lib/NoSimTwoTone.js index c82945726e652a..08a96a2dea260d 100644 --- a/packages/material-ui-icons/lib/NoSimTwoTone.js +++ b/packages/material-ui-icons/lib/NoSimTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h9.23L7 9.77z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41L3.79 3.74zM7 19V9.77L16.23 19H7z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.84 5 9.36 6.47 17 14.11V5z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.84 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z" -}, "3")], 'NoSimTwoTone'); \ No newline at end of file +}, "3")], 'NoSimTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoStroller.js b/packages/material-ui-icons/lib/NoStroller.js index 1a8b4b1da67a29..c0733f6d0f93fb 100644 --- a/packages/material-ui-icons/lib/NoStroller.js +++ b/packages/material-ui-icons/lib/NoStroller.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3zm-7.98 7.67L2.81 2.81 1.39 4.22l7.97 7.97-2.66 3.12c-.55.65-.09 1.65.76 1.65h6.66l1.17 1.17C14.54 18.42 14 19.14 14 20c0 1.1.9 2 2 2 .86 0 1.58-.54 1.87-1.3l1.91 1.91 1.41-1.41-4.8-4.8-5.72-5.73zm2.8-5.64c.27-.32.58-.72.98-1.09-2.46-1.19-5.32-1.22-7.81-.13l4.25 4.25 2.58-3.03z" -}), 'NoStroller'); \ No newline at end of file +}), 'NoStroller'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoStrollerOutlined.js b/packages/material-ui-icons/lib/NoStrollerOutlined.js index 445f4501177aa6..3ea6a7fff06087 100644 --- a/packages/material-ui-icons/lib/NoStrollerOutlined.js +++ b/packages/material-ui-icons/lib/NoStrollerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm7-11.34v3.51l2 2v-7.9c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11 1.42 1.42L15 8.66zm4.78 13.95-1.91-1.91c-.29.76-1.01 1.3-1.87 1.3-1.1 0-2-.9-2-2 0-.86.54-1.58 1.3-1.87L14.17 17H7.43c-.85 0-1.31-1-.76-1.65l2.69-3.16-7.97-7.97L2.8 2.81l7.86 7.86 1.42 1.42 9.11 9.11-1.41 1.41zM12.17 15l-1.39-1.39L9.6 15h2.57zM10 5c.29 0 .58.02.86.05L9.49 6.67l1.42 1.42L14.3 4.1C13.03 3.4 11.56 3 10 3c-1.23 0-2.4.25-3.47.7L8.1 5.27C8.71 5.1 9.35 5 10 5z" -}), 'NoStrollerOutlined'); \ No newline at end of file +}), 'NoStrollerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoStrollerRounded.js b/packages/material-ui-icons/lib/NoStrollerRounded.js index 5245d8c716b3f3..32975779322f62 100644 --- a/packages/material-ui-icons/lib/NoStrollerRounded.js +++ b/packages/material-ui-icons/lib/NoStrollerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm6.3-15.9C13.03 3.4 11.56 3 10 3c-1.23 0-2.39.26-3.46.71l4.37 4.37L14.3 4.1zm6.19 17.8c.39-.39.39-1.02 0-1.41l-9.82-9.82-7.16-7.16a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l7.26 7.26L6.7 15.3c-.55.65-.09 1.65.76 1.65h6.66l1.17 1.17c-.88.33-1.47 1.25-1.26 2.28.15.76.78 1.39 1.54 1.54 1.03.21 1.95-.38 2.28-1.26l1.2 1.2c.41.41 1.04.41 1.44.02zM17 6.27c.58-.68.97-1.27 1.65-1.27.68 0 1.22.52 1.33 1.21.1.45.5.79.98.79.55 0 1-.45 1-1 0-.06 0-.11-.01-.16v-.01C21.65 4.22 20.3 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9z" -}), 'NoStrollerRounded'); \ No newline at end of file +}), 'NoStrollerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoStrollerSharp.js b/packages/material-ui-icons/lib/NoStrollerSharp.js index b9e5a6afd41455..8ac8b6eef8359c 100644 --- a/packages/material-ui-icons/lib/NoStrollerSharp.js +++ b/packages/material-ui-icons/lib/NoStrollerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.91 8.08 6.53 3.7C7.6 3.25 8.77 3 10 3c1.56 0 3.03.4 4.3 1.1l-3.39 3.98zm10.28 13.11-4.78-4.78-5.75-5.75-7.85-7.85-1.42 1.41 7.97 7.97L5.27 17h8.9l1.13 1.13c-.88.33-1.47 1.25-1.26 2.28.15.76.78 1.39 1.54 1.54 1.03.21 1.95-.38 2.28-1.26l1.91 1.91 1.42-1.41zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM17 6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9z" -}), 'NoStrollerSharp'); \ No newline at end of file +}), 'NoStrollerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoStrollerTwoTone.js b/packages/material-ui-icons/lib/NoStrollerTwoTone.js index 862d1aa4ce9423..6edb44fc007c77 100644 --- a/packages/material-ui-icons/lib/NoStrollerTwoTone.js +++ b/packages/material-ui-icons/lib/NoStrollerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.1 5.27C8.71 5.1 9.35 5 10 5c.29 0 .58.02.86.05L9.49 6.67 8.1 5.27zm6.9 6.9V8.66l-1.61 1.89L15 12.17zM12.17 15l-1.39-1.39L9.6 15h2.57z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm7-11.34v3.51l2 2v-7.9c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11 1.42 1.42L15 8.66zm4.78 13.95-1.91-1.91c-.29.76-1.01 1.3-1.87 1.3-1.1 0-2-.9-2-2 0-.86.54-1.58 1.3-1.87L14.17 17H7.43c-.85 0-1.31-1-.76-1.65l2.69-3.16-7.97-7.97L2.8 2.81l7.86 7.86 1.42 1.42 9.11 9.11-1.41 1.41zM12.17 15l-1.39-1.39L9.6 15h2.57zM10 5c.29 0 .58.02.86.05L9.49 6.67l1.42 1.42L14.3 4.1C13.03 3.4 11.56 3 10 3c-1.23 0-2.4.25-3.47.7L8.1 5.27C8.71 5.1 9.35 5 10 5z" -}, "1")], 'NoStrollerTwoTone'); \ No newline at end of file +}, "1")], 'NoStrollerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoTransfer.js b/packages/material-ui-icons/lib/NoTransfer.js index f272ccd11bd1df..2d80f0ee717573 100644 --- a/packages/material-ui-icons/lib/NoTransfer.js +++ b/packages/material-ui-icons/lib/NoTransfer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 4 6.83V16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.05 0 .09-.02.14-.03l1.64 1.64 1.41-1.42zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zM6 11V8.83L8.17 11H6zm2.83-5L5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83z" -}), 'NoTransfer'); \ No newline at end of file +}), 'NoTransfer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoTransferOutlined.js b/packages/material-ui-icons/lib/NoTransferOutlined.js index 58a405e77942ec..9b3dcd1589eb30 100644 --- a/packages/material-ui-icons/lib/NoTransferOutlined.js +++ b/packages/material-ui-icons/lib/NoTransferOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 13c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13zm11.28 9.61-1.64-1.64c-.05.01-.09.03-.14.03h-1c-.55 0-1-.45-1-1v-1H8v1c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-1.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM6 8.83V10h1.17L6 8.83zM14.17 17l-5-5H6v4c0 .37.21.62.34.73l.29.27h7.54zM12 4c3.69 0 5.11.46 5.66.99H7.82l2 2H18V10h-5.17l2 2H18v3.17l1.81 1.81c.11-.31.19-.63.19-.98V6c0-3.5-3.58-4-8-4-2.52 0-4.76.16-6.22.95l1.53 1.53C8.17 4.2 9.6 4 12 4z" -}), 'NoTransferOutlined'); \ No newline at end of file +}), 'NoTransferOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoTransferRounded.js b/packages/material-ui-icons/lib/NoTransferRounded.js index 2203e16cebb33b..6762a93868e192 100644 --- a/packages/material-ui-icons/lib/NoTransferRounded.js +++ b/packages/material-ui-icons/lib/NoTransferRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83L5.78 2.95zM20.49 21.9c-.39.39-1.02.39-1.41 0l-1.01-1.01c-.18.07-.37.11-.57.11-.83 0-1.5-.68-1.5-1.5V19H8v.5c0 .83-.67 1.5-1.5 1.5S5 20.33 5 19.5v-1.28c-.61-.55-1-1.34-1-2.22V6.83l-1.9-1.9a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM9 15.5c0-.83-.67-1.5-1.5-1.5S6 14.67 6 15.5 6.67 17 7.5 17 9 16.33 9 15.5zM8.17 11 6 8.83V11h2.17z" -}), 'NoTransferRounded'); \ No newline at end of file +}), 'NoTransferRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoTransferSharp.js b/packages/material-ui-icons/lib/NoTransferSharp.js index ee091cc3409f5f..4c998dcb9e7c12 100644 --- a/packages/material-ui-icons/lib/NoTransferSharp.js +++ b/packages/material-ui-icons/lib/NoTransferSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83L5.78 2.95zm14 19.66L18.17 21H16v-2H8v2H5v-2.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM9 15.5c0-.83-.67-1.5-1.5-1.5S6 14.67 6 15.5 6.67 17 7.5 17 9 16.33 9 15.5zM8.17 11 6 8.83V11h2.17z" -}), 'NoTransferSharp'); \ No newline at end of file +}), 'NoTransferSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoTransferTwoTone.js b/packages/material-ui-icons/lib/NoTransferTwoTone.js index b40d2c5f2e6cf6..816f1895e54ee6 100644 --- a/packages/material-ui-icons/lib/NoTransferTwoTone.js +++ b/packages/material-ui-icons/lib/NoTransferTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.83 12H18v3.17L14.83 12zm-5.66 0 5 5H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h3.17zm.83 2.5c0-.83-.67-1.5-1.5-1.5S7 13.67 7 14.5 7.67 16 8.5 16s1.5-.67 1.5-1.5zM7.82 4.99h9.83C17.11 4.46 15.69 4 12 4c-2.4 0-3.83.2-4.69.48l.51.51z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 13c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13zM7.31 4.48C8.17 4.2 9.6 4 12 4c3.69 0 5.11.46 5.66.99H7.82l2 2H18V10h-5.17l2 2H18v3.17l1.81 1.81c.11-.31.19-.63.19-.98V6c0-3.5-3.58-4-8-4-2.52 0-4.76.16-6.22.95l1.53 1.53zm12.47 18.13-1.64-1.64c-.05.01-.09.03-.14.03h-1c-.55 0-1-.45-1-1v-1H8v1c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-1.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM6 8.83V10h1.17L6 8.83zM14.17 17l-5-5H6v4c0 .37.21.62.34.73l.29.27h7.54z" -}, "1")], 'NoTransferTwoTone'); \ No newline at end of file +}, "1")], 'NoTransferTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NordicWalking.js b/packages/material-ui-icons/lib/NordicWalking.js index 5998fb07379996..f36617d6172cf5 100644 --- a/packages/material-ui-icons/lib/NordicWalking.js +++ b/packages/material-ui-icons/lib/NordicWalking.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" -}), 'NordicWalking'); \ No newline at end of file +}), 'NordicWalking'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NordicWalkingOutlined.js b/packages/material-ui-icons/lib/NordicWalkingOutlined.js index e9e76008521392..668a4dc9a36762 100644 --- a/packages/material-ui-icons/lib/NordicWalkingOutlined.js +++ b/packages/material-ui-icons/lib/NordicWalkingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" -}), 'NordicWalkingOutlined'); \ No newline at end of file +}), 'NordicWalkingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NordicWalkingRounded.js b/packages/material-ui-icons/lib/NordicWalkingRounded.js index 229fcd0f199e44..b55016db3a9b52 100644 --- a/packages/material-ui-icons/lib/NordicWalkingRounded.js +++ b/packages/material-ui-icons/lib/NordicWalkingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.25 23c-.41 0-.75-.34-.75-.75V14H19v8.25c0 .41-.34.75-.75.75zM4.93 23c.35 0 .66-.24.73-.59L7.53 14H6l-1.8 8.09c-.1.47.25.91.73.91zM13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM14 23c.55 0 1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45L12.9 13.5l.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.1 1.14-.38 1.14-.99 0-.49-.35-.91-.83-.98-1.53-.24-2.79-1.14-3.47-2.33l-1-1.6c-.56-.89-1.68-1.25-2.66-.84L7.22 7.78C6.48 8.1 6 8.82 6 9.62V12c0 .55.45 1 1 1s1-.45 1-1V9.6l1.8-.7-2.55 12.86c-.13.64.36 1.24 1.02 1.24.49 0 .91-.34 1.02-.81L10.9 15l2.1 2v5c0 .55.45 1 1 1z" -}), 'NordicWalkingRounded'); \ No newline at end of file +}), 'NordicWalkingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NordicWalkingSharp.js b/packages/material-ui-icons/lib/NordicWalkingSharp.js index 8aa2233e6e1b99..d2d1f4c94b6a90 100644 --- a/packages/material-ui-icons/lib/NordicWalkingSharp.js +++ b/packages/material-ui-icons/lib/NordicWalkingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" -}), 'NordicWalkingSharp'); \ No newline at end of file +}), 'NordicWalkingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NordicWalkingTwoTone.js b/packages/material-ui-icons/lib/NordicWalkingTwoTone.js index c7e22d4a12141c..a3ab5bde714c56 100644 --- a/packages/material-ui-icons/lib/NordicWalkingTwoTone.js +++ b/packages/material-ui-icons/lib/NordicWalkingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" -}), 'NordicWalkingTwoTone'); \ No newline at end of file +}), 'NordicWalkingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/North.js b/packages/material-ui-icons/lib/North.js index aed2b469365406..65deb54143e1ad 100644 --- a/packages/material-ui-icons/lib/North.js +++ b/packages/material-ui-icons/lib/North.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" -}), 'North'); \ No newline at end of file +}), 'North'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthEast.js b/packages/material-ui-icons/lib/NorthEast.js index 8b9a79153d1c49..b92ca22b939777 100644 --- a/packages/material-ui-icons/lib/NorthEast.js +++ b/packages/material-ui-icons/lib/NorthEast.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" -}), 'NorthEast'); \ No newline at end of file +}), 'NorthEast'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthEastOutlined.js b/packages/material-ui-icons/lib/NorthEastOutlined.js index 18a24832578713..34a0ffbd6f6191 100644 --- a/packages/material-ui-icons/lib/NorthEastOutlined.js +++ b/packages/material-ui-icons/lib/NorthEastOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" -}), 'NorthEastOutlined'); \ No newline at end of file +}), 'NorthEastOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthEastRounded.js b/packages/material-ui-icons/lib/NorthEastRounded.js index 929e18707f75e6..8dba8ade9544c5 100644 --- a/packages/material-ui-icons/lib/NorthEastRounded.js +++ b/packages/material-ui-icons/lib/NorthEastRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6c0 .56.45 1 1 1h5.59L4.7 17.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17 8.41V14c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-8c-.55 0-1 .45-1 1z" -}), 'NorthEastRounded'); \ No newline at end of file +}), 'NorthEastRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthEastSharp.js b/packages/material-ui-icons/lib/NorthEastSharp.js index 5b13a98fa7a610..bc89fb36fe52cc 100644 --- a/packages/material-ui-icons/lib/NorthEastSharp.js +++ b/packages/material-ui-icons/lib/NorthEastSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" -}), 'NorthEastSharp'); \ No newline at end of file +}), 'NorthEastSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthEastTwoTone.js b/packages/material-ui-icons/lib/NorthEastTwoTone.js index e7def7e04c54c2..a005876dc3bc62 100644 --- a/packages/material-ui-icons/lib/NorthEastTwoTone.js +++ b/packages/material-ui-icons/lib/NorthEastTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" -}), 'NorthEastTwoTone'); \ No newline at end of file +}), 'NorthEastTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthOutlined.js b/packages/material-ui-icons/lib/NorthOutlined.js index d6f9aa65ba3779..1fef68ca6cc729 100644 --- a/packages/material-ui-icons/lib/NorthOutlined.js +++ b/packages/material-ui-icons/lib/NorthOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" -}), 'NorthOutlined'); \ No newline at end of file +}), 'NorthOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthRounded.js b/packages/material-ui-icons/lib/NorthRounded.js index 6abff63b219a94..ae9b29714405e0 100644 --- a/packages/material-ui-icons/lib/NorthRounded.js +++ b/packages/material-ui-icons/lib/NorthRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.71 9.7c.39.39 1.02.39 1.41 0L11 5.83V21c0 .55.45 1 1 1s1-.45 1-1V5.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 2.7a.9959.9959 0 0 0-1.41 0L5.71 8.29c-.39.39-.39 1.03 0 1.41z" -}), 'NorthRounded'); \ No newline at end of file +}), 'NorthRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthSharp.js b/packages/material-ui-icons/lib/NorthSharp.js index a405dd4cb363a4..26a6bc8e83830d 100644 --- a/packages/material-ui-icons/lib/NorthSharp.js +++ b/packages/material-ui-icons/lib/NorthSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" -}), 'NorthSharp'); \ No newline at end of file +}), 'NorthSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthTwoTone.js b/packages/material-ui-icons/lib/NorthTwoTone.js index 9037b0c844d9a9..a97aea8ac26c48 100644 --- a/packages/material-ui-icons/lib/NorthTwoTone.js +++ b/packages/material-ui-icons/lib/NorthTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" -}), 'NorthTwoTone'); \ No newline at end of file +}), 'NorthTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthWest.js b/packages/material-ui-icons/lib/NorthWest.js index 02bacb32159514..a55459ff79db7e 100644 --- a/packages/material-ui-icons/lib/NorthWest.js +++ b/packages/material-ui-icons/lib/NorthWest.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" -}), 'NorthWest'); \ No newline at end of file +}), 'NorthWest'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthWestOutlined.js b/packages/material-ui-icons/lib/NorthWestOutlined.js index 7048021700acef..33af36b694adf0 100644 --- a/packages/material-ui-icons/lib/NorthWestOutlined.js +++ b/packages/material-ui-icons/lib/NorthWestOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" -}), 'NorthWestOutlined'); \ No newline at end of file +}), 'NorthWestOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthWestRounded.js b/packages/material-ui-icons/lib/NorthWestRounded.js index 4ac1fa15777ce7..a31e78c4d71939 100644 --- a/packages/material-ui-icons/lib/NorthWestRounded.js +++ b/packages/material-ui-icons/lib/NorthWestRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 15c.56 0 1-.45 1-1V8.41L17.89 19.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L8.41 7H14c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1z" -}), 'NorthWestRounded'); \ No newline at end of file +}), 'NorthWestRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthWestSharp.js b/packages/material-ui-icons/lib/NorthWestSharp.js index acf9195b30c49a..e5ba335dd8bff4 100644 --- a/packages/material-ui-icons/lib/NorthWestSharp.js +++ b/packages/material-ui-icons/lib/NorthWestSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" -}), 'NorthWestSharp'); \ No newline at end of file +}), 'NorthWestSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NorthWestTwoTone.js b/packages/material-ui-icons/lib/NorthWestTwoTone.js index 556f747f0899bd..42d28bb1b1356a 100644 --- a/packages/material-ui-icons/lib/NorthWestTwoTone.js +++ b/packages/material-ui-icons/lib/NorthWestTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" -}), 'NorthWestTwoTone'); \ No newline at end of file +}), 'NorthWestTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotAccessible.js b/packages/material-ui-icons/lib/NotAccessible.js index e0223d4f64ad55..3d6506e027287b 100644 --- a/packages/material-ui-icons/lib/NotAccessible.js +++ b/packages/material-ui-icons/lib/NotAccessible.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 11.05-3.42-3.42c.32-.34.74-.57 1.23-.61.48-.04.84.07 1.2.26.19.1.39.22.63.46l1.29 1.43c.98 1.08 2.53 1.85 4.07 1.83v2c-1.75-.01-3.71-.88-5-1.95zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2.81 2.81 1.39 4.22 10 12.83V15c0 1.1.9 2 2 2h2.17l5.61 5.61 1.41-1.41L2.81 2.81zM10 20c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z" -}), 'NotAccessible'); \ No newline at end of file +}), 'NotAccessible'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotAccessibleOutlined.js b/packages/material-ui-icons/lib/NotAccessibleOutlined.js index f750917aa1a4df..e33ade00fd9c5d 100644 --- a/packages/material-ui-icons/lib/NotAccessibleOutlined.js +++ b/packages/material-ui-icons/lib/NotAccessibleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9 9v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zM2.81 2.81 1.39 4.22 10 12.83V15c0 1.1.9 2 2 2h2.17l5.61 5.61 1.41-1.41L2.81 2.81z" -}), 'NotAccessibleOutlined'); \ No newline at end of file +}), 'NotAccessibleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotAccessibleRounded.js b/packages/material-ui-icons/lib/NotAccessibleRounded.js index 66720913ad9fd3..d2b10814b6403d 100644 --- a/packages/material-ui-icons/lib/NotAccessibleRounded.js +++ b/packages/material-ui-icons/lib/NotAccessibleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-2 18c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zm10.49.49L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l7.9 7.9V15c0 1.1.9 2 2 2h2.17l4.9 4.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zm-2.33-9.56c-1.25-.21-2.43-.88-3.23-1.76l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1 .83 2.4 1.54 3.8 1.82.62.13 1.2-.34 1.2-.97 0-.48-.36-.89-.84-.97z" -}), 'NotAccessibleRounded'); \ No newline at end of file +}), 'NotAccessibleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotAccessibleSharp.js b/packages/material-ui-icons/lib/NotAccessibleSharp.js index 62486b5a6b5162..ff4034cd948851 100644 --- a/packages/material-ui-icons/lib/NotAccessibleSharp.js +++ b/packages/material-ui-icons/lib/NotAccessibleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-2 18c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zm11.19 1.19L2.81 2.81 1.39 4.22 10 12.83V17h4.17l5.61 5.61 1.41-1.42zM19 11c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95v-2z" -}), 'NotAccessibleSharp'); \ No newline at end of file +}), 'NotAccessibleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotAccessibleTwoTone.js b/packages/material-ui-icons/lib/NotAccessibleTwoTone.js index a1a523bfbd12ee..bd3be13a5f02c8 100644 --- a/packages/material-ui-icons/lib/NotAccessibleTwoTone.js +++ b/packages/material-ui-icons/lib/NotAccessibleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9 9v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zM2.81 2.81 1.39 4.22 10 12.83V15c0 1.1.9 2 2 2h2.17l5.61 5.61 1.41-1.41L2.81 2.81z" -}), 'NotAccessibleTwoTone'); \ No newline at end of file +}), 'NotAccessibleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotInterested.js b/packages/material-ui-icons/lib/NotInterested.js index af4f1b4d419304..a5a9cfefdb4a34 100644 --- a/packages/material-ui-icons/lib/NotInterested.js +++ b/packages/material-ui-icons/lib/NotInterested.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'NotInterested'); \ No newline at end of file +}), 'NotInterested'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotInterestedOutlined.js b/packages/material-ui-icons/lib/NotInterestedOutlined.js index 8681d288a3c444..6803ee1d124bd4 100644 --- a/packages/material-ui-icons/lib/NotInterestedOutlined.js +++ b/packages/material-ui-icons/lib/NotInterestedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'NotInterestedOutlined'); \ No newline at end of file +}), 'NotInterestedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotInterestedRounded.js b/packages/material-ui-icons/lib/NotInterestedRounded.js index 3bc7063b1656bc..d7c7ae8c3ccb53 100644 --- a/packages/material-ui-icons/lib/NotInterestedRounded.js +++ b/packages/material-ui-icons/lib/NotInterestedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'NotInterestedRounded'); \ No newline at end of file +}), 'NotInterestedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotInterestedSharp.js b/packages/material-ui-icons/lib/NotInterestedSharp.js index 032e8b21f0c4e9..21a9be937692b0 100644 --- a/packages/material-ui-icons/lib/NotInterestedSharp.js +++ b/packages/material-ui-icons/lib/NotInterestedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" -}), 'NotInterestedSharp'); \ No newline at end of file +}), 'NotInterestedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotInterestedTwoTone.js b/packages/material-ui-icons/lib/NotInterestedTwoTone.js index 13d7e7d6bb11ed..d59bbc6cd1ac9e 100644 --- a/packages/material-ui-icons/lib/NotInterestedTwoTone.js +++ b/packages/material-ui-icons/lib/NotInterestedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9L7.1 5.69C8.45 4.63 10.15 4 12 4zM5.69 7.1 16.9 18.31C15.55 19.37 13.85 20 12 20c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9z" -}), 'NotInterestedTwoTone'); \ No newline at end of file +}), 'NotInterestedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotListedLocation.js b/packages/material-ui-icons/lib/NotListedLocation.js index 9cee854d789240..5a706d20f3bb78 100644 --- a/packages/material-ui-icons/lib/NotListedLocation.js +++ b/packages/material-ui-icons/lib/NotListedLocation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm.88 13.75h-1.75V14h1.75v1.75zm0-2.87h-1.75c0-2.84 2.62-2.62 2.62-4.38 0-.96-.79-1.75-1.75-1.75s-1.75.79-1.75 1.75H8.5C8.5 6.57 10.07 5 12 5s3.5 1.57 3.5 3.5c0 2.19-2.62 2.41-2.62 4.38z" -}), 'NotListedLocation'); \ No newline at end of file +}), 'NotListedLocation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotListedLocationOutlined.js b/packages/material-ui-icons/lib/NotListedLocationOutlined.js index 34c668c7232d6e..4bb51597f9f1bc 100644 --- a/packages/material-ui-icons/lib/NotListedLocationOutlined.js +++ b/packages/material-ui-icons/lib/NotListedLocationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 16c-.27 0-.52-.1-.71-.29-.2-.2-.29-.43-.29-.71-.01-.55.43-.99.98-1h.02c.28 0 .51.1.71.29.18.19.28.43.28.7s-.1.51-.29.71-.43.3-.7.3zm-.88-3.66c0-.45.1-.84.29-1.16.19-.33.53-.7 1-1.12.28-.25.48-.47.61-.66s.19-.4.19-.64c0-.29-.11-.53-.32-.74-.21-.2-.5-.3-.85-.3-.37 0-.74.1-.96.3-.21.2-.4.45-.4.98H9c0-1.01.46-1.73.97-2.21C10.53 6.28 11.25 6 12 6c.59 0 1.11.12 1.57.35s.79.55 1.05.96.38.86.38 1.35-.1.9-.31 1.25-.48.71-.89 1.09c-.32.3-.53.56-.65.77s-.18.49-.18.81V13h-1.85v-.66h.01zM18 10.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'NotListedLocationOutlined'); \ No newline at end of file +}), 'NotListedLocationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotListedLocationRounded.js b/packages/material-ui-icons/lib/NotListedLocationRounded.js index 011f70e62cde32..cd8419af886409 100644 --- a/packages/material-ui-icons/lib/NotListedLocationRounded.js +++ b/packages/material-ui-icons/lib/NotListedLocationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.22.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm.01 14c-.59 0-1.05-.47-1.05-1.05 0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05zm2.51-6.17c-.63.93-1.23 1.21-1.56 1.81-.08.14-.13.26-.16.49-.05.39-.36.68-.75.68h-.03c-.44 0-.79-.38-.75-.82.03-.27.09-.57.25-.84.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.61 0-1.01.32-1.26.7-.19.29-.57.39-.89.25-.42-.18-.6-.7-.34-1.07C10.03 6.55 10.88 6 12 6c1.23 0 2.08.56 2.51 1.26.36.61.58 1.73.01 2.57z" -}), 'NotListedLocationRounded'); \ No newline at end of file +}), 'NotListedLocationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotListedLocationSharp.js b/packages/material-ui-icons/lib/NotListedLocationSharp.js index 9866d5f20dd1fa..53a9cb47fb5f01 100644 --- a/packages/material-ui-icons/lib/NotListedLocationSharp.js +++ b/packages/material-ui-icons/lib/NotListedLocationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 16a.99.99 0 0 0 1-1 .99.99 0 0 0-1-1c-.28 0-.51.1-.71.29-.2.19-.3.43-.3.7s.1.51.29.71c.2.2.44.3.72.3zm-.88-3.66V13h1.85v-.42c0-.33.06-.6.18-.81.12-.21.33-.47.65-.77.4-.38.68-.75.89-1.09.19-.35.3-.76.3-1.25s-.13-.94-.39-1.35a2.57 2.57 0 0 0-1.05-.96C13.11 6.12 12.58 6 12 6c-.78 0-1.51.32-2.03.79C9.46 7.27 9 7.99 9 9h1.68c0-.52.19-.77.4-.98.21-.2.58-.3.96-.3.35 0 .64.1.85.3.21.2.32.45.32.74 0 .24-.06.46-.19.64-.13.19-.33.41-.61.66-.48.42-.81.79-1 1.12-.19.33-.28.71-.28 1.16zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'NotListedLocationSharp'); \ No newline at end of file +}), 'NotListedLocationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotListedLocationTwoTone.js b/packages/material-ui-icons/lib/NotListedLocationTwoTone.js index 1b54b786a23837..5f4a1d9a04739e 100644 --- a/packages/material-ui-icons/lib/NotListedLocationTwoTone.js +++ b/packages/material-ui-icons/lib/NotListedLocationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 16c-.27 0-.52-.1-.71-.29-.2-.2-.29-.43-.29-.71-.01-.55.43-.99.98-1h.02c.28 0 .51.1.71.29.18.19.28.43.28.7s-.1.51-.29.71-.43.3-.7.3zm-.88-3.66c0-.45.1-.84.29-1.16.19-.33.53-.7 1-1.12.28-.25.48-.47.61-.66s.19-.4.19-.64c0-.29-.11-.53-.32-.74-.21-.2-.5-.3-.85-.3-.37 0-.74.1-.96.3-.21.2-.4.45-.4.98H9c0-1.01.46-1.73.97-2.21C10.53 6.28 11.25 6 12 6c.59 0 1.11.12 1.57.35.88.43 1.43 1.33 1.43 2.31 0 .49-.1.9-.31 1.25s-.48.71-.89 1.09c-.32.3-.53.56-.65.77s-.18.49-.18.81V13h-1.85v-.66h.01zM18 10.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}, "1")], 'NotListedLocationTwoTone'); \ No newline at end of file +}, "1")], 'NotListedLocationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotStarted.js b/packages/material-ui-icons/lib/NotStarted.js index 3249ff0426e70f..abeddd7050c61b 100644 --- a/packages/material-ui-icons/lib/NotStarted.js +++ b/packages/material-ui-icons/lib/NotStarted.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm1 0V8l5 4-5 4z" -}), 'NotStarted'); \ No newline at end of file +}), 'NotStarted'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotStartedOutlined.js b/packages/material-ui-icons/lib/NotStartedOutlined.js index 084ecc4e89a922..9dbfd6e63b4054 100644 --- a/packages/material-ui-icons/lib/NotStartedOutlined.js +++ b/packages/material-ui-icons/lib/NotStartedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 6H9v8h2V8zm6 4-5-4v8l5-4z" -}), 'NotStartedOutlined'); \ No newline at end of file +}), 'NotStartedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotStartedRounded.js b/packages/material-ui-icons/lib/NotStartedRounded.js index 8e30b6b6bdd6d4..770954a6bc8430 100644 --- a/packages/material-ui-icons/lib/NotStartedRounded.js +++ b/packages/material-ui-icons/lib/NotStartedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 13c0 .55-.45 1-1 1s-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6zm5.02-2.22-2.4 1.92c-.65.52-1.62.06-1.62-.78v-3.84c0-.84.97-1.3 1.62-.78l2.4 1.92c.5.4.5 1.16 0 1.56z" -}), 'NotStartedRounded'); \ No newline at end of file +}), 'NotStartedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotStartedSharp.js b/packages/material-ui-icons/lib/NotStartedSharp.js index c51899e2bbf488..9c3a5fa7db2bfa 100644 --- a/packages/material-ui-icons/lib/NotStartedSharp.js +++ b/packages/material-ui-icons/lib/NotStartedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm1 0V8l5 4-5 4z" -}), 'NotStartedSharp'); \ No newline at end of file +}), 'NotStartedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotStartedTwoTone.js b/packages/material-ui-icons/lib/NotStartedTwoTone.js index 88c1fd8e078b10..c1be017454db24 100644 --- a/packages/material-ui-icons/lib/NotStartedTwoTone.js +++ b/packages/material-ui-icons/lib/NotStartedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 12H9V8h2v8zm1 0V8l5 4-5 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 6H9v8h2V8zm6 4-5-4v8l5-4z" -}, "1")], 'NotStartedTwoTone'); \ No newline at end of file +}, "1")], 'NotStartedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Note.js b/packages/material-ui-icons/lib/Note.js index daa9ab7e9c1401..c8b229c7526d60 100644 --- a/packages/material-ui-icons/lib/Note.js +++ b/packages/material-ui-icons/lib/Note.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 10-6-6H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99l16-.01c1.1 0 2-.89 2-1.99v-8zm-7-4.5 5.5 5.5H15V5.5z" -}), 'Note'); \ No newline at end of file +}), 'Note'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAdd.js b/packages/material-ui-icons/lib/NoteAdd.js index 50d8b19bad65e2..2d7123ceda85df 100644 --- a/packages/material-ui-icons/lib/NoteAdd.js +++ b/packages/material-ui-icons/lib/NoteAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z" -}), 'NoteAdd'); \ No newline at end of file +}), 'NoteAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAddOutlined.js b/packages/material-ui-icons/lib/NoteAddOutlined.js index cebeafc245a604..d033eafa7a8af6 100644 --- a/packages/material-ui-icons/lib/NoteAddOutlined.js +++ b/packages/material-ui-icons/lib/NoteAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" -}), 'NoteAddOutlined'); \ No newline at end of file +}), 'NoteAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAddRounded.js b/packages/material-ui-icons/lib/NoteAddRounded.js index c5a34848837a84..5039bff063f75f 100644 --- a/packages/material-ui-icons/lib/NoteAddRounded.js +++ b/packages/material-ui-icons/lib/NoteAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 2.59c-.38-.38-.89-.59-1.42-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15 16h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1zm-2-8V3.5L18.5 9H14c-.55 0-1-.45-1-1z" -}), 'NoteAddRounded'); \ No newline at end of file +}), 'NoteAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAddSharp.js b/packages/material-ui-icons/lib/NoteAddSharp.js index 48178b7ef92e1e..291dd143e0ba3d 100644 --- a/packages/material-ui-icons/lib/NoteAddSharp.js +++ b/packages/material-ui-icons/lib/NoteAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z" -}), 'NoteAddSharp'); \ No newline at end of file +}), 'NoteAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAddTwoTone.js b/packages/material-ui-icons/lib/NoteAddTwoTone.js index 4c6657be62c87b..6864d2141e334e 100644 --- a/packages/material-ui-icons/lib/NoteAddTwoTone.js +++ b/packages/material-ui-icons/lib/NoteAddTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 4H6v16h12V9h-5V4zm3 10v2h-3v3h-2v-3H8v-2h3v-3h2v3h3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" -}, "1")], 'NoteAddTwoTone'); \ No newline at end of file +}, "1")], 'NoteAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAlt.js b/packages/material-ui-icons/lib/NoteAlt.js index e6611189ae15ac..c90b5321a8efef 100644 --- a/packages/material-ui-icons/lib/NoteAlt.js +++ b/packages/material-ui-icons/lib/NoteAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM9.1 17H7v-2.14l5.96-5.96 2.12 2.12L9.1 17zm7.75-7.73-1.06 1.06-2.12-2.12 1.06-1.06c.2-.2.51-.2.71 0l1.41 1.41c.2.2.2.51 0 .71z" -}), 'NoteAlt'); \ No newline at end of file +}), 'NoteAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAltOutlined.js b/packages/material-ui-icons/lib/NoteAltOutlined.js index 181b876f45dc4b..c00cb1aa9ee02c 100644 --- a/packages/material-ui-icons/lib/NoteAltOutlined.js +++ b/packages/material-ui-icons/lib/NoteAltOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.08 11.03-2.12-2.12L7 14.86V17h2.1zm1.77-1.76c.2-.2.2-.51 0-.71l-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06z" -}, "1")], 'NoteAltOutlined'); \ No newline at end of file +}, "1")], 'NoteAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAltRounded.js b/packages/material-ui-icons/lib/NoteAltRounded.js index e3b933e354807b..f3a9812a2e24dd 100644 --- a/packages/material-ui-icons/lib/NoteAltRounded.js +++ b/packages/material-ui-icons/lib/NoteAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM8.9 17H7.5c-.28 0-.5-.22-.5-.5v-1.43c0-.13.05-.26.15-.35l5.81-5.81 2.12 2.12-5.83 5.83c-.09.09-.22.14-.35.14zm7.95-7.73-1.06 1.06-2.12-2.12 1.06-1.06c.2-.2.51-.2.71 0l1.41 1.41c.2.2.2.51 0 .71z" -}), 'NoteAltRounded'); \ No newline at end of file +}), 'NoteAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAltSharp.js b/packages/material-ui-icons/lib/NoteAltSharp.js index 49ec81493eff5e..02263d825a4909 100644 --- a/packages/material-ui-icons/lib/NoteAltSharp.js +++ b/packages/material-ui-icons/lib/NoteAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM9.1 17H7v-2.14l5.96-5.96 2.12 2.12L9.1 17zm8.1-8.09-1.41 1.41-2.13-2.12 1.41-1.41 2.13 2.12z" -}), 'NoteAltSharp'); \ No newline at end of file +}), 'NoteAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteAltTwoTone.js b/packages/material-ui-icons/lib/NoteAltTwoTone.js index 2477fd5c5d718c..126cc67321ff17 100644 --- a/packages/material-ui-icons/lib/NoteAltTwoTone.js +++ b/packages/material-ui-icons/lib/NoteAltTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm9.73-11.85c.2-.2.51-.2.71 0l1.41 1.41c.2.2.2.51 0 .71l-1.06 1.06-2.12-2.12 1.06-1.06zM7 14.86l5.96-5.96 2.12 2.12L9.1 17H7v-2.14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.08 11.03-2.12-2.12L7 14.86V17h2.1zm1.77-1.76c.2-.2.2-.51 0-.71l-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06z" -}, "2")], 'NoteAltTwoTone'); \ No newline at end of file +}, "2")], 'NoteAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteOutlined.js b/packages/material-ui-icons/lib/NoteOutlined.js index 92d05a67221ecc..612d3a36af52c2 100644 --- a/packages/material-ui-icons/lib/NoteOutlined.js +++ b/packages/material-ui-icons/lib/NoteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6zM4 18.01V6h11v5h5v7.01H4z" -}), 'NoteOutlined'); \ No newline at end of file +}), 'NoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteRounded.js b/packages/material-ui-icons/lib/NoteRounded.js index 6e286bb5516c1c..4e0de0c106abfa 100644 --- a/packages/material-ui-icons/lib/NoteRounded.js +++ b/packages/material-ui-icons/lib/NoteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 9.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v12.01c0 1.1.89 1.99 1.99 1.99H20c1.1 0 2-.9 2-2v-7.17c0-.53-.21-1.04-.59-1.42zM15 5.5l5.5 5.5H16c-.55 0-1-.45-1-1V5.5z" -}), 'NoteRounded'); \ No newline at end of file +}), 'NoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteSharp.js b/packages/material-ui-icons/lib/NoteSharp.js index a3ec239ae65fd6..cd15fcd0ed1f85 100644 --- a/packages/material-ui-icons/lib/NoteSharp.js +++ b/packages/material-ui-icons/lib/NoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 10-6-6H2v16h20V10zm-7-4.5 5.5 5.5H15V5.5z" -}), 'NoteSharp'); \ No newline at end of file +}), 'NoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NoteTwoTone.js b/packages/material-ui-icons/lib/NoteTwoTone.js index 90c50902bf1c43..9925b576a53b87 100644 --- a/packages/material-ui-icons/lib/NoteTwoTone.js +++ b/packages/material-ui-icons/lib/NoteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 6H4v12.01h16V11h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6H4zm16 14.01H4V6h11v5h5v7.01z" -}, "1")], 'NoteTwoTone'); \ No newline at end of file +}, "1")], 'NoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Notes.js b/packages/material-ui-icons/lib/Notes.js index 95b2724a7a2213..1fcb83cca009c7 100644 --- a/packages/material-ui-icons/lib/Notes.js +++ b/packages/material-ui-icons/lib/Notes.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h12v-2H3v2zM3 6v2h18V6H3zm0 7h18v-2H3v2z" -}), 'Notes'); \ No newline at end of file +}), 'Notes'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotesOutlined.js b/packages/material-ui-icons/lib/NotesOutlined.js index 57a9db4681385a..8e63c9bcee89da 100644 --- a/packages/material-ui-icons/lib/NotesOutlined.js +++ b/packages/material-ui-icons/lib/NotesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.01 3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" -}), 'NotesOutlined'); \ No newline at end of file +}), 'NotesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotesRounded.js b/packages/material-ui-icons/lib/NotesRounded.js index 67385191acd9b6..7d3912fae11487 100644 --- a/packages/material-ui-icons/lib/NotesRounded.js +++ b/packages/material-ui-icons/lib/NotesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zM4 18h10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM20 6H4c-.55 0-1 .45-1 1v.01c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z" -}), 'NotesRounded'); \ No newline at end of file +}), 'NotesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotesSharp.js b/packages/material-ui-icons/lib/NotesSharp.js index 38f18adb123264..6710db2011519f 100644 --- a/packages/material-ui-icons/lib/NotesSharp.js +++ b/packages/material-ui-icons/lib/NotesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.01 3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" -}), 'NotesSharp'); \ No newline at end of file +}), 'NotesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotesTwoTone.js b/packages/material-ui-icons/lib/NotesTwoTone.js index b87ffbbe1db3c3..0d7f853f0e3063 100644 --- a/packages/material-ui-icons/lib/NotesTwoTone.js +++ b/packages/material-ui-icons/lib/NotesTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11.01 3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" -}), 'NotesTwoTone'); \ No newline at end of file +}), 'NotesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationAdd.js b/packages/material-ui-icons/lib/NotificationAdd.js index 421a972194485c..9b60e822632754 100644 --- a/packages/material-ui-icons/lib/NotificationAdd.js +++ b/packages/material-ui-icons/lib/NotificationAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.71.18 1.36.49 1.95.9C14.54 6.14 14 7.51 14 9zm10-1h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" -}), 'NotificationAdd'); \ No newline at end of file +}), 'NotificationAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationAddOutlined.js b/packages/material-ui-icons/lib/NotificationAddOutlined.js index 41b73eaed596bd..dbabc33a47196a 100644 --- a/packages/material-ui-icons/lib/NotificationAddOutlined.js +++ b/packages/material-ui-icons/lib/NotificationAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14v3H8v-7c0-2.21 1.79-4 4-4 .85 0 1.64.26 2.28.72l1.43-1.43c-.64-.51-1.39-.88-2.21-1.09v-.7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.7C7.91 4.86 6 7.21 6 10v7H4v2h16v-2h-2v-3h-2zm-4 8c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zM24 8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" -}), 'NotificationAddOutlined'); \ No newline at end of file +}), 'NotificationAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationAddRounded.js b/packages/material-ui-icons/lib/NotificationAddRounded.js index 35df4b940fe356..5e51f99010505d 100644 --- a/packages/material-ui-icons/lib/NotificationAddRounded.js +++ b/packages/material-ui-icons/lib/NotificationAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h1c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h1v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.71.18 1.36.49 1.95.9C14.54 6.14 14 7.51 14 9zm9-1h-2V6c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'NotificationAddRounded'); \ No newline at end of file +}), 'NotificationAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationAddSharp.js b/packages/material-ui-icons/lib/NotificationAddSharp.js index 5fecbcb5a72a26..3847607e1c47a6 100644 --- a/packages/material-ui-icons/lib/NotificationAddSharp.js +++ b/packages/material-ui-icons/lib/NotificationAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.71.18 1.36.49 1.95.9C14.54 6.14 14 7.51 14 9zm10-1h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" -}), 'NotificationAddSharp'); \ No newline at end of file +}), 'NotificationAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationAddTwoTone.js b/packages/material-ui-icons/lib/NotificationAddTwoTone.js index 9708e226915cb5..a0396dace8bfe3 100644 --- a/packages/material-ui-icons/lib/NotificationAddTwoTone.js +++ b/packages/material-ui-icons/lib/NotificationAddTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14v3H8v-7c0-2.21 1.79-4 4-4 .85 0 1.64.26 2.28.72l1.43-1.43c-.64-.51-1.39-.88-2.21-1.09v-.7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.7C7.91 4.86 6 7.21 6 10v7H4v2h16v-2h-2v-3h-2zm-4 8c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zM24 8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" -}), 'NotificationAddTwoTone'); \ No newline at end of file +}), 'NotificationAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationImportant.js b/packages/material-ui-icons/lib/NotificationImportant.js index 862321429dc40b..8ea212e77f3b8d 100644 --- a/packages/material-ui-icons/lib/NotificationImportant.js +++ b/packages/material-ui-icons/lib/NotificationImportant.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-5 0h-2v-2h2v2zm0-4h-2V8h2v4zm-1 10c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z" -}), 'NotificationImportant'); \ No newline at end of file +}), 'NotificationImportant'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationImportantOutlined.js b/packages/material-ui-icons/lib/NotificationImportantOutlined.js index 6409d9ec7dda8e..9a5077cec13b19 100644 --- a/packages/material-ui-icons/lib/NotificationImportantOutlined.js +++ b/packages/material-ui-icons/lib/NotificationImportantOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM11 8h2v4h-2zm0 6h2v2h-2z" -}), 'NotificationImportantOutlined'); \ No newline at end of file +}), 'NotificationImportantOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationImportantRounded.js b/packages/material-ui-icons/lib/NotificationImportantRounded.js index a9a18d976d56fb..e793c944105aeb 100644 --- a/packages/material-ui-icons/lib/NotificationImportantRounded.js +++ b/packages/material-ui-icons/lib/NotificationImportantRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm8.29-4.71L19 17v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-1.29 1.29c-.63.63-.19 1.71.7 1.71h15.17c.9 0 1.34-1.08.71-1.71zM13 16h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v2z" -}), 'NotificationImportantRounded'); \ No newline at end of file +}), 'NotificationImportantRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationImportantSharp.js b/packages/material-ui-icons/lib/NotificationImportantSharp.js index 8411c7d6dc416c..bc522ca0f8da2a 100644 --- a/packages/material-ui-icons/lib/NotificationImportantSharp.js +++ b/packages/material-ui-icons/lib/NotificationImportantSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-6-1h-2v-2h2v2zm0-4h-2V8h2v4z" -}), 'NotificationImportantSharp'); \ No newline at end of file +}), 'NotificationImportantSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationImportantTwoTone.js b/packages/material-ui-icons/lib/NotificationImportantTwoTone.js index 25bc420abcaaff..03fece7a305271 100644 --- a/packages/material-ui-icons/lib/NotificationImportantTwoTone.js +++ b/packages/material-ui-icons/lib/NotificationImportantTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm1 10h-2v-2h2v2zm0-4h-2V8h2v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zM11 8h2v4h-2zm0 6h2v2h-2z" -}, "1")], 'NotificationImportantTwoTone'); \ No newline at end of file +}, "1")], 'NotificationImportantTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Notifications.js b/packages/material-ui-icons/lib/Notifications.js index c434a4d6e9e1ab..71112877e9f0cd 100644 --- a/packages/material-ui-icons/lib/Notifications.js +++ b/packages/material-ui-icons/lib/Notifications.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z" -}), 'Notifications'); \ No newline at end of file +}), 'Notifications'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsActive.js b/packages/material-ui-icons/lib/NotificationsActive.js index 5ab4214fb5c955..2baf2dd2d5fb42 100644 --- a/packages/material-ui-icons/lib/NotificationsActive.js +++ b/packages/material-ui-icons/lib/NotificationsActive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z" -}), 'NotificationsActive'); \ No newline at end of file +}), 'NotificationsActive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsActiveOutlined.js b/packages/material-ui-icons/lib/NotificationsActiveOutlined.js index b722a294d2f01e..af07f03a15f3b0 100644 --- a/packages/material-ui-icons/lib/NotificationsActiveOutlined.js +++ b/packages/material-ui-icons/lib/NotificationsActiveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z" -}), 'NotificationsActiveOutlined'); \ No newline at end of file +}), 'NotificationsActiveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsActiveRounded.js b/packages/material-ui-icons/lib/NotificationsActiveRounded.js index 2a8681bba3ce19..1de1ccc42e1ee8 100644 --- a/packages/material-ui-icons/lib/NotificationsActiveRounded.js +++ b/packages/material-ui-icons/lib/NotificationsActiveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.68-1.5-1.51-1.5S10.5 3.17 10.5 4v.68C7.63 5.36 6 7.92 6 11v5l-1.3 1.29c-.63.63-.19 1.71.7 1.71h13.17c.89 0 1.34-1.08.71-1.71L18 16zm-6.01 6c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zM6.77 4.73c.42-.38.43-1.03.03-1.43-.38-.38-1-.39-1.39-.02C3.7 4.84 2.52 6.96 2.14 9.34c-.09.61.38 1.16 1 1.16.48 0 .9-.35.98-.83.3-1.94 1.26-3.67 2.65-4.94zM18.6 3.28c-.4-.37-1.02-.36-1.4.02-.4.4-.38 1.04.03 1.42 1.38 1.27 2.35 3 2.65 4.94.07.48.49.83.98.83.61 0 1.09-.55.99-1.16-.38-2.37-1.55-4.48-3.25-6.05z" -}), 'NotificationsActiveRounded'); \ No newline at end of file +}), 'NotificationsActiveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsActiveSharp.js b/packages/material-ui-icons/lib/NotificationsActiveSharp.js index ccf76fb5ea28d3..09b4fd3ad0fb67 100644 --- a/packages/material-ui-icons/lib/NotificationsActiveSharp.js +++ b/packages/material-ui-icons/lib/NotificationsActiveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z" -}), 'NotificationsActiveSharp'); \ No newline at end of file +}), 'NotificationsActiveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsActiveTwoTone.js b/packages/material-ui-icons/lib/NotificationsActiveTwoTone.js index e413a50e24766e..7ba94745f7bcaf 100644 --- a/packages/material-ui-icons/lib/NotificationsActiveTwoTone.js +++ b/packages/material-ui-icons/lib/NotificationsActiveTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-2 6H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z" -}, "1")], 'NotificationsActiveTwoTone'); \ No newline at end of file +}, "1")], 'NotificationsActiveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsNone.js b/packages/material-ui-icons/lib/NotificationsNone.js index 15a9ae36a824e2..cee7bfd3a849f8 100644 --- a/packages/material-ui-icons/lib/NotificationsNone.js +++ b/packages/material-ui-icons/lib/NotificationsNone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" -}), 'NotificationsNone'); \ No newline at end of file +}), 'NotificationsNone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsNoneOutlined.js b/packages/material-ui-icons/lib/NotificationsNoneOutlined.js index 247ffad2bee4d0..2e22984257821d 100644 --- a/packages/material-ui-icons/lib/NotificationsNoneOutlined.js +++ b/packages/material-ui-icons/lib/NotificationsNoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" -}), 'NotificationsNoneOutlined'); \ No newline at end of file +}), 'NotificationsNoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsNoneRounded.js b/packages/material-ui-icons/lib/NotificationsNoneRounded.js index f34852519962f7..325b5bf9327714 100644 --- a/packages/material-ui-icons/lib/NotificationsNoneRounded.js +++ b/packages/material-ui-icons/lib/NotificationsNoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.29 17.29 18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.9 0 1.34-1.08.71-1.71zM16 17H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z" -}), 'NotificationsNoneRounded'); \ No newline at end of file +}), 'NotificationsNoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsNoneSharp.js b/packages/material-ui-icons/lib/NotificationsNoneSharp.js index 7f3f0ccba847c9..5f2f052777e3e8 100644 --- a/packages/material-ui-icons/lib/NotificationsNoneSharp.js +++ b/packages/material-ui-icons/lib/NotificationsNoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V2.5h-3v2.18C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" -}), 'NotificationsNoneSharp'); \ No newline at end of file +}), 'NotificationsNoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsNoneTwoTone.js b/packages/material-ui-icons/lib/NotificationsNoneTwoTone.js index c8e67d18622653..630f5042d922ed 100644 --- a/packages/material-ui-icons/lib/NotificationsNoneTwoTone.js +++ b/packages/material-ui-icons/lib/NotificationsNoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" -}, "1")], 'NotificationsNoneTwoTone'); \ No newline at end of file +}, "1")], 'NotificationsNoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsOff.js b/packages/material-ui-icons/lib/NotificationsOff.js index b5306d4d7c8e9d..dd4081be3d7ae0 100644 --- a/packages/material-ui-icons/lib/NotificationsOff.js +++ b/packages/material-ui-icons/lib/NotificationsOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18.69 7.84 6.14 5.27 3.49 4 4.76l2.8 2.8v.01c-.52.99-.8 2.16-.8 3.42v5l-2 2v1h13.73l2 2L21 19.72l-1-1.03zM12 22c1.11 0 2-.89 2-2h-4c0 1.11.89 2 2 2zm6-7.32V11c0-3.08-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.15.03-.29.08-.42.12-.1.03-.2.07-.3.11h-.01c-.01 0-.01 0-.02.01-.23.09-.46.2-.68.31 0 0-.01 0-.01.01L18 14.68z" -}), 'NotificationsOff'); \ No newline at end of file +}), 'NotificationsOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsOffOutlined.js b/packages/material-ui-icons/lib/NotificationsOffOutlined.js index 80a88cdbc371a3..e0217c1e97d83e 100644 --- a/packages/material-ui-icons/lib/NotificationsOffOutlined.js +++ b/packages/material-ui-icons/lib/NotificationsOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z" -}), 'NotificationsOffOutlined'); \ No newline at end of file +}), 'NotificationsOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsOffRounded.js b/packages/material-ui-icons/lib/NotificationsOffRounded.js index 6b5d001db39605..e4663ba4edbb8b 100644 --- a/packages/material-ui-icons/lib/NotificationsOffRounded.js +++ b/packages/material-ui-icons/lib/NotificationsOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h12.83l1.74 1.74 1.41-1.41L5.41 3.35z" -}), 'NotificationsOffRounded'); \ No newline at end of file +}), 'NotificationsOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsOffSharp.js b/packages/material-ui-icons/lib/NotificationsOffSharp.js index 526780c0b39ed9..ee7fa423ba6fc0 100644 --- a/packages/material-ui-icons/lib/NotificationsOffSharp.js +++ b/packages/material-ui-icons/lib/NotificationsOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35z" -}), 'NotificationsOffSharp'); \ No newline at end of file +}), 'NotificationsOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsOffTwoTone.js b/packages/material-ui-icons/lib/NotificationsOffTwoTone.js index b365b4d06f7d7e..768a5c9b84e593 100644 --- a/packages/material-ui-icons/lib/NotificationsOffTwoTone.js +++ b/packages/material-ui-icons/lib/NotificationsOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 17h8v-.24L8.34 9.1C8.12 9.68 8 10.32 8 11v6zm4-10.5c-.19 0-.37.03-.55.06L16 11.1V11c0-2.48-1.51-4.5-4-4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z" -}, "1")], 'NotificationsOffTwoTone'); \ No newline at end of file +}, "1")], 'NotificationsOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsOutlined.js b/packages/material-ui-icons/lib/NotificationsOutlined.js index c0ca6c974bf090..140a954c1c0374 100644 --- a/packages/material-ui-icons/lib/NotificationsOutlined.js +++ b/packages/material-ui-icons/lib/NotificationsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" -}), 'NotificationsOutlined'); \ No newline at end of file +}), 'NotificationsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsPaused.js b/packages/material-ui-icons/lib/NotificationsPaused.js index 087e005376c63d..d399e42c9e3ad8 100644 --- a/packages/material-ui-icons/lib/NotificationsPaused.js +++ b/packages/material-ui-icons/lib/NotificationsPaused.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z" -}), 'NotificationsPaused'); \ No newline at end of file +}), 'NotificationsPaused'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsPausedOutlined.js b/packages/material-ui-icons/lib/NotificationsPausedOutlined.js index a3291d52023643..1a3fe2a408a155 100644 --- a/packages/material-ui-icons/lib/NotificationsPausedOutlined.js +++ b/packages/material-ui-icons/lib/NotificationsPausedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" -}), 'NotificationsPausedOutlined'); \ No newline at end of file +}), 'NotificationsPausedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsPausedRounded.js b/packages/material-ui-icons/lib/NotificationsPausedRounded.js index fa4277ea22e565..2302be38eb66b6 100644 --- a/packages/material-ui-icons/lib/NotificationsPausedRounded.js +++ b/packages/material-ui-icons/lib/NotificationsPausedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm7.29-4.71L18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.9 0 1.34-1.08.71-1.71zM14.5 9.33c0 .31-.11.6-.3.84l-2.5 3.03h1.9c.5 0 .9.4.9.9s-.4.9-.9.9h-2.78c-.73 0-1.32-.59-1.32-1.32v-.01c0-.31.11-.6.3-.84l2.5-3.03h-1.9c-.5 0-.9-.4-.9-.9s.4-.9.9-.9h2.78c.73 0 1.32.59 1.32 1.33z" -}), 'NotificationsPausedRounded'); \ No newline at end of file +}), 'NotificationsPausedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsPausedSharp.js b/packages/material-ui-icons/lib/NotificationsPausedSharp.js index e70bcf4bae7dc3..4788233420fc1d 100644 --- a/packages/material-ui-icons/lib/NotificationsPausedSharp.js +++ b/packages/material-ui-icons/lib/NotificationsPausedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z" -}), 'NotificationsPausedSharp'); \ No newline at end of file +}), 'NotificationsPausedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsPausedTwoTone.js b/packages/material-ui-icons/lib/NotificationsPausedTwoTone.js index ed24208e19222e..bd4b44a4dc55e2 100644 --- a/packages/material-ui-icons/lib/NotificationsPausedTwoTone.js +++ b/packages/material-ui-icons/lib/NotificationsPausedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5zm2.5 3.3-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" -}, "1")], 'NotificationsPausedTwoTone'); \ No newline at end of file +}, "1")], 'NotificationsPausedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsRounded.js b/packages/material-ui-icons/lib/NotificationsRounded.js index 9c75b94e0fbcc8..6de37a152b8b65 100644 --- a/packages/material-ui-icons/lib/NotificationsRounded.js +++ b/packages/material-ui-icons/lib/NotificationsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.89 0 1.34-1.08.71-1.71L18 16z" -}), 'NotificationsRounded'); \ No newline at end of file +}), 'NotificationsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsSharp.js b/packages/material-ui-icons/lib/NotificationsSharp.js index 9c9dd0626f7253..81f35e62bba7bc 100644 --- a/packages/material-ui-icons/lib/NotificationsSharp.js +++ b/packages/material-ui-icons/lib/NotificationsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z" -}), 'NotificationsSharp'); \ No newline at end of file +}), 'NotificationsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/NotificationsTwoTone.js b/packages/material-ui-icons/lib/NotificationsTwoTone.js index 81ad49c22622dd..7f95a06850dc22 100644 --- a/packages/material-ui-icons/lib/NotificationsTwoTone.js +++ b/packages/material-ui-icons/lib/NotificationsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" -}, "1")], 'NotificationsTwoTone'); \ No newline at end of file +}, "1")], 'NotificationsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineBolt.js b/packages/material-ui-icons/lib/OfflineBolt.js index 7a1eeaf3278bd2..3587d29956ef1d 100644 --- a/packages/material-ui-icons/lib/OfflineBolt.js +++ b/packages/material-ui-icons/lib/OfflineBolt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z" -}), 'OfflineBolt'); \ No newline at end of file +}), 'OfflineBolt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineBoltOutlined.js b/packages/material-ui-icons/lib/OfflineBoltOutlined.js index ca0b8d65602e22..82c43b74b755ff 100644 --- a/packages/material-ui-icons/lib/OfflineBoltOutlined.js +++ b/packages/material-ui-icons/lib/OfflineBoltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3z" -}), 'OfflineBoltOutlined'); \ No newline at end of file +}), 'OfflineBoltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineBoltRounded.js b/packages/material-ui-icons/lib/OfflineBoltRounded.js index 3bf544cc7ea49d..88e2516faa8dd7 100644 --- a/packages/material-ui-icons/lib/OfflineBoltRounded.js +++ b/packages/material-ui-icons/lib/OfflineBoltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm-.52 15.86v-4.14H8.82c-.37 0-.62-.4-.44-.73l3.68-7.17c.23-.47.94-.3.94.23v4.19h2.54c.37 0 .61.39.45.72l-3.56 7.12c-.24.48-.95.31-.95-.22z" -}), 'OfflineBoltRounded'); \ No newline at end of file +}), 'OfflineBoltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineBoltSharp.js b/packages/material-ui-icons/lib/OfflineBoltSharp.js index 98b3f13d98a095..e6d62a1ef38966 100644 --- a/packages/material-ui-icons/lib/OfflineBoltSharp.js +++ b/packages/material-ui-icons/lib/OfflineBoltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z" -}), 'OfflineBoltSharp'); \ No newline at end of file +}), 'OfflineBoltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineBoltTwoTone.js b/packages/material-ui-icons/lib/OfflineBoltTwoTone.js index d2a8b6676ee874..de2d2295c2b25a 100644 --- a/packages/material-ui-icons/lib/OfflineBoltTwoTone.js +++ b/packages/material-ui-icons/lib/OfflineBoltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.02C7.6 4.02 4.02 7.6 4.02 12S7.6 19.98 12 19.98s7.98-3.58 7.98-7.98S16.4 4.02 12 4.02zM11.39 19v-5.5H8.25l4.5-8.5v5.5h3L11.39 19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3V5z" -}, "1")], 'OfflineBoltTwoTone'); \ No newline at end of file +}, "1")], 'OfflineBoltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflinePin.js b/packages/material-ui-icons/lib/OfflinePin.js index 075fa4252fc485..f85d0b9c291513 100644 --- a/packages/material-ui-icons/lib/OfflinePin.js +++ b/packages/material-ui-icons/lib/OfflinePin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z" -}), 'OfflinePin'); \ No newline at end of file +}), 'OfflinePin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflinePinOutlined.js b/packages/material-ui-icons/lib/OfflinePinOutlined.js index 0c6ee6058990a6..b7fd096f93004c 100644 --- a/packages/material-ui-icons/lib/OfflinePinOutlined.js +++ b/packages/material-ui-icons/lib/OfflinePinOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z" -}), 'OfflinePinOutlined'); \ No newline at end of file +}), 'OfflinePinOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflinePinRounded.js b/packages/material-ui-icons/lib/OfflinePinRounded.js index 9e6c9c70e51423..d97b8172e0398d 100644 --- a/packages/material-ui-icons/lib/OfflinePinRounded.js +++ b/packages/material-ui-icons/lib/OfflinePinRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4 16H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-6.41-4.71L7.7 11.4a.9839.9839 0 0 1 0-1.4c.39-.39 1.01-.39 1.4 0l1.2 1.2 4.6-4.6c.39-.39 1.01-.39 1.4 0 .39.39.39 1.01 0 1.4l-5.29 5.29c-.39.39-1.03.39-1.42 0z" -}), 'OfflinePinRounded'); \ No newline at end of file +}), 'OfflinePinRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflinePinSharp.js b/packages/material-ui-icons/lib/OfflinePinSharp.js index e2a899b572e87e..ede7c8c1787c38 100644 --- a/packages/material-ui-icons/lib/OfflinePinSharp.js +++ b/packages/material-ui-icons/lib/OfflinePinSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z" -}), 'OfflinePinSharp'); \ No newline at end of file +}), 'OfflinePinSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflinePinTwoTone.js b/packages/material-ui-icons/lib/OfflinePinTwoTone.js index 7450d5acfcdf37..344a21c3451c32 100644 --- a/packages/material-ui-icons/lib/OfflinePinTwoTone.js +++ b/packages/material-ui-icons/lib/OfflinePinTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 13H7v-2h10v2zm-6.7-3L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z" -}, "1")], 'OfflinePinTwoTone'); \ No newline at end of file +}, "1")], 'OfflinePinTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineShare.js b/packages/material-ui-icons/lib/OfflineShare.js index f59ab88a68807a..ee0e3644dc59c7 100644 --- a/packages/material-ui-icons/lib/OfflineShare.js +++ b/packages/material-ui-icons/lib/OfflineShare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.6 10.26v1.31L17 9.33 14.6 7.1v1.28c-2.33.32-3.26 1.92-3.6 3.52.83-1.13 1.93-1.64 3.6-1.64zM16 23H6c-1.1 0-2-.9-2-2V5h2v16h10v2zm2-22h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 15h-8V4h8v12z" -}), 'OfflineShare'); \ No newline at end of file +}), 'OfflineShare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineShareOutlined.js b/packages/material-ui-icons/lib/OfflineShareOutlined.js index 5b3713d42c29ef..9c57ce8ed0b7c6 100644 --- a/packages/material-ui-icons/lib/OfflineShareOutlined.js +++ b/packages/material-ui-icons/lib/OfflineShareOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 5H4v16c0 1.1.9 2 2 2h10v-2H6V5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16h-8v-1h8v1zm0-3h-8V6h8v8zm0-10h-8V3h8v1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 10.25h1.63l-.69.69L14.5 12 17 9.5 14.5 7l-1.06 1.06.69.69H12c-.55 0-1 .45-1 1V12h1.5v-1.75z" -}, "2")], 'OfflineShareOutlined'); \ No newline at end of file +}, "2")], 'OfflineShareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineShareRounded.js b/packages/material-ui-icons/lib/OfflineShareRounded.js index 12b2500d65f056..ee41004e233d25 100644 --- a/packages/material-ui-icons/lib/OfflineShareRounded.js +++ b/packages/material-ui-icons/lib/OfflineShareRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h9c.55 0 1-.45 1-1s-.45-1-1-1H6V6c0-.55-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 14h-8V5h8v10z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 10.25h2v.54c0 .45.54.67.85.35l1.29-1.29c.2-.2.2-.51 0-.71l-1.29-1.29c-.31-.31-.85-.09-.85.35v.54H12c-.55 0-1 .45-1 1v1.5c0 .41.34.75.75.75s.75-.34.75-.75v-.99z" -}, "2")], 'OfflineShareRounded'); \ No newline at end of file +}, "2")], 'OfflineShareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineShareSharp.js b/packages/material-ui-icons/lib/OfflineShareSharp.js index 06d93774974a98..57c408a909cc15 100644 --- a/packages/material-ui-icons/lib/OfflineShareSharp.js +++ b/packages/material-ui-icons/lib/OfflineShareSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 5H4v18h12v-2H6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 1H8v18h12V1zm-2 14h-8V5h8v10z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 10.25h2V12L17 9.5 14.5 7v1.75H11V12h1.5z" -}, "2")], 'OfflineShareSharp'); \ No newline at end of file +}, "2")], 'OfflineShareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OfflineShareTwoTone.js b/packages/material-ui-icons/lib/OfflineShareTwoTone.js index 6185f393b3a336..c4e09e2c2cc9b2 100644 --- a/packages/material-ui-icons/lib/OfflineShareTwoTone.js +++ b/packages/material-ui-icons/lib/OfflineShareTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 5H4v16c0 1.1.9 2 2 2h10v-2H6V5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16h-8v-1h8v1zm0-3h-8V6h8v8zm0-10h-8V3h8v1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 10.25h2V12L17 9.5 14.5 7v1.75H12c-.55 0-1 .45-1 1V12h1.5v-1.75z" -}, "2")], 'OfflineShareTwoTone'); \ No newline at end of file +}, "2")], 'OfflineShareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OndemandVideo.js b/packages/material-ui-icons/lib/OndemandVideo.js index c6ae418b1240f2..50f925db9caba2 100644 --- a/packages/material-ui-icons/lib/OndemandVideo.js +++ b/packages/material-ui-icons/lib/OndemandVideo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-6-7 4V7z" -}), 'OndemandVideo'); \ No newline at end of file +}), 'OndemandVideo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OndemandVideoOutlined.js b/packages/material-ui-icons/lib/OndemandVideoOutlined.js index ee0b2f007debbe..51af5ecb21cf9d 100644 --- a/packages/material-ui-icons/lib/OndemandVideoOutlined.js +++ b/packages/material-ui-icons/lib/OndemandVideoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" -}), 'OndemandVideoOutlined'); \ No newline at end of file +}), 'OndemandVideoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OndemandVideoRounded.js b/packages/material-ui-icons/lib/OndemandVideoRounded.js index b42965d6aed02e..8c2f3e590f953b 100644 --- a/packages/material-ui-icons/lib/OndemandVideoRounded.js +++ b/packages/material-ui-icons/lib/OndemandVideoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-5.52-5.13-3.98 2.28c-.67.38-1.5-.11-1.5-.87V8.72c0-.77.83-1.25 1.5-.87l3.98 2.28c.67.39.67 1.35 0 1.74z" -}), 'OndemandVideoRounded'); \ No newline at end of file +}), 'OndemandVideoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OndemandVideoSharp.js b/packages/material-ui-icons/lib/OndemandVideoSharp.js index ec022716868f87..13400b58cc9c5d 100644 --- a/packages/material-ui-icons/lib/OndemandVideoSharp.js +++ b/packages/material-ui-icons/lib/OndemandVideoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12zm-5-6-7 4V7l7 4z" -}), 'OndemandVideoSharp'); \ No newline at end of file +}), 'OndemandVideoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OndemandVideoTwoTone.js b/packages/material-ui-icons/lib/OndemandVideoTwoTone.js index 8467d7895e9a0d..c8edd303a5594c 100644 --- a/packages/material-ui-icons/lib/OndemandVideoTwoTone.js +++ b/packages/material-ui-icons/lib/OndemandVideoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18V5H3v12zM9 7l7 4-7 4V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" -}, "1")], 'OndemandVideoTwoTone'); \ No newline at end of file +}, "1")], 'OndemandVideoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneK.js b/packages/material-ui-icons/lib/OneK.js index 4ba20de7e76982..4ac5638aa3c2c7 100644 --- a/packages/material-ui-icons/lib/OneK.js +++ b/packages/material-ui-icons/lib/OneK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 12H9v-4.5H7.5V9h3v6zm7 0h-1.75L14 12.75V15h-1.5V9H14v2.25L15.75 9h1.75l-2.25 3 2.25 3z" -}), 'OneK'); \ No newline at end of file +}), 'OneK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKOutlined.js b/packages/material-ui-icons/lib/OneKOutlined.js index 9232e75733086d..d4acbe7a6a876c 100644 --- a/packages/material-ui-icons/lib/OneKOutlined.js +++ b/packages/material-ui-icons/lib/OneKOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 15H10V9H7v1.5h1.5zm5-2.25L15.25 15H17l-2.25-3L17 9h-1.75l-1.75 2.25V9H12v6h1.5z" -}, "1")], 'OneKOutlined'); \ No newline at end of file +}, "1")], 'OneKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKPlus.js b/packages/material-ui-icons/lib/OneKPlus.js index 8d437325c56daa..2f57d13ba622b4 100644 --- a/packages/material-ui-icons/lib/OneKPlus.js +++ b/packages/material-ui-icons/lib/OneKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zm5.75-2.5H18V14h-1v-1.5h-1.5v-1H17V10h1v1.5h1.5v1z" -}), 'OneKPlus'); \ No newline at end of file +}), 'OneKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKPlusOutlined.js b/packages/material-ui-icons/lib/OneKPlusOutlined.js index a9bdde567004a8..e2f2869e1c0766 100644 --- a/packages/material-ui-icons/lib/OneKPlusOutlined.js +++ b/packages/material-ui-icons/lib/OneKPlusOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 15H9V9H6v1.5h1.5zm4.5-2.25L13.75 15h1.75l-2.25-3 2.25-3h-1.75L12 11.25V9h-1.5v6H12z" -}, "1")], 'OneKPlusOutlined'); \ No newline at end of file +}, "1")], 'OneKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKPlusRounded.js b/packages/material-ui-icons/lib/OneKPlusRounded.js index f5f7a2ab86bc27..3a5a0c07874042 100644 --- a/packages/material-ui-icons/lib/OneKPlusRounded.js +++ b/packages/material-ui-icons/lib/OneKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.25 15c-.41 0-.75-.34-.75-.75V10.5h-.75c-.41 0-.75-.34-.75-.75S6.34 9 6.75 9H8c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zm5.29-.27L12 12.75v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.4 0 .71.31.71.7v1.55l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.25 12l1.41 1.88c.34.46.01 1.12-.57 1.12-.21 0-.42-.1-.55-.27zm4.96-2.23h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'OneKPlusRounded'); \ No newline at end of file +}), 'OneKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKPlusSharp.js b/packages/material-ui-icons/lib/OneKPlusSharp.js index 0cd66af07a8187..409438fd168972 100644 --- a/packages/material-ui-icons/lib/OneKPlusSharp.js +++ b/packages/material-ui-icons/lib/OneKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'OneKPlusSharp'); \ No newline at end of file +}), 'OneKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKPlusTwoTone.js b/packages/material-ui-icons/lib/OneKPlusTwoTone.js index ac0ae54698ea3e..f02fae4fee87aa 100644 --- a/packages/material-ui-icons/lib/OneKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/OneKPlusTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm5.5-10H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75L12 12.75V15h-1.5V9zM6 9h3v6H7.5v-4.5H6V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 15H9V9H6v1.5h1.5zm4.5-2.25L13.75 15h1.75l-2.25-3 2.25-3h-1.75L12 11.25V9h-1.5v6H12z" -}, "2")], 'OneKPlusTwoTone'); \ No newline at end of file +}, "2")], 'OneKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKRounded.js b/packages/material-ui-icons/lib/OneKRounded.js index f3bea9ee431701..059a0de57e7808 100644 --- a/packages/material-ui-icons/lib/OneKRounded.js +++ b/packages/material-ui-icons/lib/OneKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.25 15c-.41 0-.75-.34-.75-.75V10.5h-.75c-.41 0-.75-.34-.75-.75S7.34 9 7.75 9H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zm6.34 0c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L14.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'OneKRounded'); \ No newline at end of file +}), 'OneKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKSharp.js b/packages/material-ui-icons/lib/OneKSharp.js index d539c8f6129eb3..262dd58595cf77 100644 --- a/packages/material-ui-icons/lib/OneKSharp.js +++ b/packages/material-ui-icons/lib/OneKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM10 15H8.5v-4.5H7V9h3v6zm7 0h-1.75l-1.75-2.25V15H12V9h1.5v2.25L15.25 9H17l-2.25 3L17 15z" -}), 'OneKSharp'); \ No newline at end of file +}), 'OneKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKTwoTone.js b/packages/material-ui-icons/lib/OneKTwoTone.js index 814da64b3b90dc..bd674d6c5f7428 100644 --- a/packages/material-ui-icons/lib/OneKTwoTone.js +++ b/packages/material-ui-icons/lib/OneKTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm7-10h1.5v2.25L15.25 9H17l-2.25 3L17 15h-1.75l-1.75-2.25V15H12V9zM7 9h3v6H8.5v-4.5H7V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 15H10V9H7v1.5h1.5zm5-2.25L15.25 15H17l-2.25-3L17 9h-1.75l-1.75 2.25V9H12v6h1.5z" -}, "2")], 'OneKTwoTone'); \ No newline at end of file +}, "2")], 'OneKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKk.js b/packages/material-ui-icons/lib/OneKk.js index d3bf631e5821e3..6c59071fb81747 100644 --- a/packages/material-ui-icons/lib/OneKk.js +++ b/packages/material-ui-icons/lib/OneKk.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10.5h1.5v3H10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 15H6v-4.5H4.5V9h3v6zm5.5-1c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm6.5 1h-1.75L16 12.75V15h-1.5V9H16v2.25L17.75 9h1.75l-2.25 3 2.25 3z" -}), 'OneKk'); \ No newline at end of file +}), 'OneKk'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKkOutlined.js b/packages/material-ui-icons/lib/OneKkOutlined.js index 9fada1bc0a0ec6..2f2c717c4fc0c8 100644 --- a/packages/material-ui-icons/lib/OneKkOutlined.js +++ b/packages/material-ui-icons/lib/OneKkOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6v10H5v-8.5h1V15h1.5V9H5V5h14v4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11.25V9H14v6h1.5v-2.25L17.25 15H19l-2.25-3L19 9h-1.75zM9.5 15H12c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H9.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h1.5v3H10v-3z" -}, "1")], 'OneKkOutlined'); \ No newline at end of file +}, "1")], 'OneKkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKkRounded.js b/packages/material-ui-icons/lib/OneKkRounded.js index cb526a1216f66c..85e5147b658953 100644 --- a/packages/material-ui-icons/lib/OneKkRounded.js +++ b/packages/material-ui-icons/lib/OneKkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10.5h1.5v3H10v-3zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.75 15c-.41 0-.75-.34-.75-.75V10.5h-.75c-.41 0-.75-.34-.75-.75S4.84 9 5.25 9H6.5c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zM13 14c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L16.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'OneKkRounded'); \ No newline at end of file +}), 'OneKkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKkSharp.js b/packages/material-ui-icons/lib/OneKkSharp.js index 7ecc99b57ce7fc..854bcb63c3057b 100644 --- a/packages/material-ui-icons/lib/OneKkSharp.js +++ b/packages/material-ui-icons/lib/OneKkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10.5h1.5v3H10v-3zM21 3H3v18h18V3zM7.5 15H6v-4.5H4.5V9h3v6zM13 9v6H8.5V9H13zm6 6h-1.75l-1.75-2.25V15H14V9h1.5v2.25L17.25 9H19l-2.25 3L19 15z" -}), 'OneKkSharp'); \ No newline at end of file +}), 'OneKkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OneKkTwoTone.js b/packages/material-ui-icons/lib/OneKkTwoTone.js index cf7c9daa1d6677..4e25faa7cb5b50 100644 --- a/packages/material-ui-icons/lib/OneKkTwoTone.js +++ b/packages/material-ui-icons/lib/OneKkTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10.5h1.5v3H10zm9 4.5V9l-2.25 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9h2.5v6H6v-4.5H5V19h14v-4h-1.75l-1.75-2.25V15H14V9h1.5v2.25L17.25 9H19V5H5v4zm3.5 1c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6v10H5v-8.5h1V15h1.5V9H5V5h14v4z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11.25V9H14v6h1.5v-2.25L17.25 15H19l-2.25-3L19 9h-1.75zM9.5 15H12c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H9.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h1.5v3H10v-3z" -}, "3")], 'OneKkTwoTone'); \ No newline at end of file +}, "3")], 'OneKkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OnlinePrediction.js b/packages/material-ui-icons/lib/OnlinePrediction.js index e62d2fece6a6a2..71227a9f09456a 100644 --- a/packages/material-ui-icons/lib/OnlinePrediction.js +++ b/packages/material-ui-icons/lib/OnlinePrediction.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" -}), 'OnlinePrediction'); \ No newline at end of file +}), 'OnlinePrediction'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OnlinePredictionOutlined.js b/packages/material-ui-icons/lib/OnlinePredictionOutlined.js index aa3d9f58b34715..8112f6a6bd164d 100644 --- a/packages/material-ui-icons/lib/OnlinePredictionOutlined.js +++ b/packages/material-ui-icons/lib/OnlinePredictionOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" -}), 'OnlinePredictionOutlined'); \ No newline at end of file +}), 'OnlinePredictionOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OnlinePredictionRounded.js b/packages/material-ui-icons/lib/OnlinePredictionRounded.js index 666d971762e52f..8d2cc40661916d 100644 --- a/packages/material-ui-icons/lib/OnlinePredictionRounded.js +++ b/packages/material-ui-icons/lib/OnlinePredictionRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2v.5c0 .55.45 1 1 1s1-.45 1-1v-.5zm9-5.5c0-2.46-.89-4.71-2.36-6.45-.29-.34-.8-.38-1.12-.06-.27.27-.3.71-.06 1C19.73 7.97 20.5 9.9 20.5 12c0 2.1-.77 4.03-2.04 5.52-.25.29-.21.73.06 1 .32.32.83.28 1.12-.06 1.47-1.75 2.36-4 2.36-6.46zM3.5 12c0-2.1.77-4.03 2.04-5.52.25-.29.21-.73-.06-1-.31-.31-.83-.28-1.12.06C2.89 7.29 2 9.54 2 12s.89 4.71 2.36 6.46c.29.34.8.38 1.12.06.27-.27.3-.71.06-1C4.27 16.03 3.5 14.1 3.5 12zm14 0c0 1.28-.44 2.47-1.18 3.41-.23.29-.2.71.07.98.32.32.85.29 1.13-.07C18.44 15.13 19 13.63 19 12c0-1.63-.56-3.13-1.49-4.31-.28-.36-.81-.39-1.13-.07-.26.26-.3.68-.07.98.75.93 1.19 2.12 1.19 3.4zm-9.88 4.38c.26-.26.3-.68.07-.98-.75-.93-1.19-2.12-1.19-3.4 0-1.28.44-2.47 1.18-3.41.23-.29.2-.71-.07-.98-.31-.31-.84-.28-1.12.07C5.56 8.87 5 10.37 5 12c0 1.63.56 3.13 1.49 4.32.28.35.81.38 1.13.06z" -}), 'OnlinePredictionRounded'); \ No newline at end of file +}), 'OnlinePredictionRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OnlinePredictionSharp.js b/packages/material-ui-icons/lib/OnlinePredictionSharp.js index 1025f38e1ee443..a7f8711d91440d 100644 --- a/packages/material-ui-icons/lib/OnlinePredictionSharp.js +++ b/packages/material-ui-icons/lib/OnlinePredictionSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" -}), 'OnlinePredictionSharp'); \ No newline at end of file +}), 'OnlinePredictionSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OnlinePredictionTwoTone.js b/packages/material-ui-icons/lib/OnlinePredictionTwoTone.js index 4bd6dc383a225c..ad72c4fbacaf72 100644 --- a/packages/material-ui-icons/lib/OnlinePredictionTwoTone.js +++ b/packages/material-ui-icons/lib/OnlinePredictionTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" -}), 'OnlinePredictionTwoTone'); \ No newline at end of file +}), 'OnlinePredictionTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Opacity.js b/packages/material-ui-icons/lib/Opacity.js index 42d267a18965fd..6163ca765e0e95 100644 --- a/packages/material-ui-icons/lib/Opacity.js +++ b/packages/material-ui-icons/lib/Opacity.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" -}), 'Opacity'); \ No newline at end of file +}), 'Opacity'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpacityOutlined.js b/packages/material-ui-icons/lib/OpacityOutlined.js index 420db311e744c4..0fdc9257fbe02a 100644 --- a/packages/material-ui-icons/lib/OpacityOutlined.js +++ b/packages/material-ui-icons/lib/OpacityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" -}), 'OpacityOutlined'); \ No newline at end of file +}), 'OpacityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpacityRounded.js b/packages/material-ui-icons/lib/OpacityRounded.js index a7d514f8b093f6..fcf625f3f39fbe 100644 --- a/packages/material-ui-icons/lib/OpacityRounded.js +++ b/packages/material-ui-icons/lib/OpacityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 7.56 12.7 2.69c-.39-.38-1.01-.38-1.4 0L6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57zm-9.9 1.43L12 4.81l4.25 4.18c.88.87 2.04 2.59 1.67 5.01H6.07c-.37-2.42.8-4.15 1.68-5.01z" -}), 'OpacityRounded'); \ No newline at end of file +}), 'OpacityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpacitySharp.js b/packages/material-ui-icons/lib/OpacitySharp.js index be827aff6de781..4661752222a318 100644 --- a/packages/material-ui-icons/lib/OpacitySharp.js +++ b/packages/material-ui-icons/lib/OpacitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" -}), 'OpacitySharp'); \ No newline at end of file +}), 'OpacitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpacityTwoTone.js b/packages/material-ui-icons/lib/OpacityTwoTone.js index dc530ab96d4e31..b4949dfee43595 100644 --- a/packages/material-ui-icons/lib/OpacityTwoTone.js +++ b/packages/material-ui-icons/lib/OpacityTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.24 9.65 12 5.27 7.76 9.6C6.62 10.73 6.01 12 6 14h12c-.01-2-.62-3.23-1.76-4.35z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" -}, "1")], 'OpacityTwoTone'); \ No newline at end of file +}, "1")], 'OpacityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInBrowser.js b/packages/material-ui-icons/lib/OpenInBrowser.js index 6ffa9a72fb80fd..8b38bbe915b4dd 100644 --- a/packages/material-ui-icons/lib/OpenInBrowser.js +++ b/packages/material-ui-icons/lib/OpenInBrowser.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6-4 4h3v6h2v-6h3l-4-4z" -}), 'OpenInBrowser'); \ No newline at end of file +}), 'OpenInBrowser'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInBrowserOutlined.js b/packages/material-ui-icons/lib/OpenInBrowserOutlined.js index 3608b427422afe..98448cd6b39f71 100644 --- a/packages/material-ui-icons/lib/OpenInBrowserOutlined.js +++ b/packages/material-ui-icons/lib/OpenInBrowserOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6-4 4h3v6h2v-6h3l-4-4z" -}), 'OpenInBrowserOutlined'); \ No newline at end of file +}), 'OpenInBrowserOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInBrowserRounded.js b/packages/material-ui-icons/lib/OpenInBrowserRounded.js index 7b874cf6b7b6eb..ca4dcf215c79a3 100644 --- a/packages/material-ui-icons/lib/OpenInBrowserRounded.js +++ b/packages/material-ui-icons/lib/OpenInBrowserRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H5V8h14v10h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7.35 6.35-2.79 2.79c-.32.32-.1.86.35.86H11v5c0 .55.45 1 1 1s1-.45 1-1v-5h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z" -}), 'OpenInBrowserRounded'); \ No newline at end of file +}), 'OpenInBrowserRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInBrowserSharp.js b/packages/material-ui-icons/lib/OpenInBrowserSharp.js index ee53511a202c94..f037adc353046b 100644 --- a/packages/material-ui-icons/lib/OpenInBrowserSharp.js +++ b/packages/material-ui-icons/lib/OpenInBrowserSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4v16h6v-2H5V8h14v10h-4v2h6V4H3zm9 6-4 4h3v6h2v-6h3l-4-4z" -}), 'OpenInBrowserSharp'); \ No newline at end of file +}), 'OpenInBrowserSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInBrowserTwoTone.js b/packages/material-ui-icons/lib/OpenInBrowserTwoTone.js index e5c98a1c6500ba..0790a43b9bd013 100644 --- a/packages/material-ui-icons/lib/OpenInBrowserTwoTone.js +++ b/packages/material-ui-icons/lib/OpenInBrowserTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6-4 4h3v6h2v-6h3l-4-4z" -}), 'OpenInBrowserTwoTone'); \ No newline at end of file +}), 'OpenInBrowserTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInFull.js b/packages/material-ui-icons/lib/OpenInFull.js index c5078f665ce8a6..e4c5f3c0d39ca1 100644 --- a/packages/material-ui-icons/lib/OpenInFull.js +++ b/packages/material-ui-icons/lib/OpenInFull.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" -}), 'OpenInFull'); \ No newline at end of file +}), 'OpenInFull'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInFullOutlined.js b/packages/material-ui-icons/lib/OpenInFullOutlined.js index 2a1ab4c26fdc27..6f098826db4e2c 100644 --- a/packages/material-ui-icons/lib/OpenInFullOutlined.js +++ b/packages/material-ui-icons/lib/OpenInFullOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" -}), 'OpenInFullOutlined'); \ No newline at end of file +}), 'OpenInFullOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInFullRounded.js b/packages/material-ui-icons/lib/OpenInFullRounded.js index 616e2d69104748..187296bf45210d 100644 --- a/packages/material-ui-icons/lib/OpenInFullRounded.js +++ b/packages/material-ui-icons/lib/OpenInFullRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8.59V4c0-.55-.45-1-1-1h-4.59c-.89 0-1.34 1.08-.71 1.71l1.59 1.59-10 10-1.59-1.59c-.62-.63-1.7-.19-1.7.7V20c0 .55.45 1 1 1h4.59c.89 0 1.34-1.08.71-1.71L7.71 17.7l10-10 1.59 1.59c.62.63 1.7.19 1.7-.7z" -}), 'OpenInFullRounded'); \ No newline at end of file +}), 'OpenInFullRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInFullSharp.js b/packages/material-ui-icons/lib/OpenInFullSharp.js index 8e95593bf6c496..bf19ad5875c8a7 100644 --- a/packages/material-ui-icons/lib/OpenInFullSharp.js +++ b/packages/material-ui-icons/lib/OpenInFullSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" -}), 'OpenInFullSharp'); \ No newline at end of file +}), 'OpenInFullSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInFullTwoTone.js b/packages/material-ui-icons/lib/OpenInFullTwoTone.js index 6c4fbc10ac5d81..b8d51b9798398a 100644 --- a/packages/material-ui-icons/lib/OpenInFullTwoTone.js +++ b/packages/material-ui-icons/lib/OpenInFullTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" -}), 'OpenInFullTwoTone'); \ No newline at end of file +}), 'OpenInFullTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNew.js b/packages/material-ui-icons/lib/OpenInNew.js index d88cbf5f0eac32..accebfa5ada486 100644 --- a/packages/material-ui-icons/lib/OpenInNew.js +++ b/packages/material-ui-icons/lib/OpenInNew.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'OpenInNew'); \ No newline at end of file +}), 'OpenInNew'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewOff.js b/packages/material-ui-icons/lib/OpenInNewOff.js index 2ee4fd68e1adb8..526827ff2dd2df 100644 --- a/packages/material-ui-icons/lib/OpenInNewOff.js +++ b/packages/material-ui-icons/lib/OpenInNewOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H5c-1.11 0-2-.9-2-2V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" -}), 'OpenInNewOff'); \ No newline at end of file +}), 'OpenInNewOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewOffOutlined.js b/packages/material-ui-icons/lib/OpenInNewOffOutlined.js index 23d82b035891c9..d7a99736fd0ab3 100644 --- a/packages/material-ui-icons/lib/OpenInNewOffOutlined.js +++ b/packages/material-ui-icons/lib/OpenInNewOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H5c-1.11 0-2-.9-2-2V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" -}), 'OpenInNewOffOutlined'); \ No newline at end of file +}), 'OpenInNewOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewOffRounded.js b/packages/material-ui-icons/lib/OpenInNewOffRounded.js index 26c8bffa09cf76..03782c1a699037 100644 --- a/packages/material-ui-icons/lib/OpenInNewOffRounded.js +++ b/packages/material-ui-icons/lib/OpenInNewOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.79 5.8-1.94-1.94c-.31-.32-.09-.86.36-.86h5.29c.28 0 .5.22.5.5v5.29c0 .45-.54.67-.85.35L18.21 7.2l-4.09 4.09-1.41-1.41 4.08-4.08zM19 13v3.17l2 2V13c0-.55-.45-1-1-1s-1 .45-1 1zm.07 8.9-.9-.9H5c-1.11 0-2-.9-2-2V5.83l-.9-.9a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0zm-2.9-2.9-4.88-4.88-.88.88c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41l.88-.88L5 7.83V19h11.17zM7.83 5H11c.55 0 1-.45 1-1s-.45-1-1-1H5.83l2 2z" -}), 'OpenInNewOffRounded'); \ No newline at end of file +}), 'OpenInNewOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewOffSharp.js b/packages/material-ui-icons/lib/OpenInNewOffSharp.js index fd85dc31aba1d7..f056f03a090749 100644 --- a/packages/material-ui-icons/lib/OpenInNewOffSharp.js +++ b/packages/material-ui-icons/lib/OpenInNewOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" -}), 'OpenInNewOffSharp'); \ No newline at end of file +}), 'OpenInNewOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewOffTwoTone.js b/packages/material-ui-icons/lib/OpenInNewOffTwoTone.js index a86613213bd9b7..f197244997f91a 100644 --- a/packages/material-ui-icons/lib/OpenInNewOffTwoTone.js +++ b/packages/material-ui-icons/lib/OpenInNewOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H5c-1.11 0-2-.9-2-2V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" -}), 'OpenInNewOffTwoTone'); \ No newline at end of file +}), 'OpenInNewOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewOutlined.js b/packages/material-ui-icons/lib/OpenInNewOutlined.js index 007839a1fc81fb..a6a375a12d6ff2 100644 --- a/packages/material-ui-icons/lib/OpenInNewOutlined.js +++ b/packages/material-ui-icons/lib/OpenInNewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'OpenInNewOutlined'); \ No newline at end of file +}), 'OpenInNewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewRounded.js b/packages/material-ui-icons/lib/OpenInNewRounded.js index 19fb97dfd1ace4..191c3bfc94cc5f 100644 --- a/packages/material-ui-icons/lib/OpenInNewRounded.js +++ b/packages/material-ui-icons/lib/OpenInNewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1h-5c-.55 0-1 .45-1 1z" -}), 'OpenInNewRounded'); \ No newline at end of file +}), 'OpenInNewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewSharp.js b/packages/material-ui-icons/lib/OpenInNewSharp.js index a4325d11cabb06..9720804221a18a 100644 --- a/packages/material-ui-icons/lib/OpenInNewSharp.js +++ b/packages/material-ui-icons/lib/OpenInNewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'OpenInNewSharp'); \ No newline at end of file +}), 'OpenInNewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenInNewTwoTone.js b/packages/material-ui-icons/lib/OpenInNewTwoTone.js index f4daf195647db5..a6124d8f28cd34 100644 --- a/packages/material-ui-icons/lib/OpenInNewTwoTone.js +++ b/packages/material-ui-icons/lib/OpenInNewTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" -}), 'OpenInNewTwoTone'); \ No newline at end of file +}), 'OpenInNewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenWith.js b/packages/material-ui-icons/lib/OpenWith.js index cfa96019706495..de30c921c0af70 100644 --- a/packages/material-ui-icons/lib/OpenWith.js +++ b/packages/material-ui-icons/lib/OpenWith.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" -}), 'OpenWith'); \ No newline at end of file +}), 'OpenWith'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenWithOutlined.js b/packages/material-ui-icons/lib/OpenWithOutlined.js index 055bfd08bc8ab9..6b2fa833a561e5 100644 --- a/packages/material-ui-icons/lib/OpenWithOutlined.js +++ b/packages/material-ui-icons/lib/OpenWithOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" -}), 'OpenWithOutlined'); \ No newline at end of file +}), 'OpenWithOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenWithRounded.js b/packages/material-ui-icons/lib/OpenWithRounded.js index d5c6e5190ec5b0..28d75779a2dd38 100644 --- a/packages/material-ui-icons/lib/OpenWithRounded.js +++ b/packages/material-ui-icons/lib/OpenWithRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.5 9h3c.28 0 .5-.22.5-.5V6h1.79c.45 0 .67-.54.35-.85l-3.79-3.79c-.2-.2-.51-.2-.71 0L7.85 5.15c-.31.31-.09.85.36.85H10v2.5c0 .28.22.5.5.5zm-2 1H6V8.21c0-.45-.54-.67-.85-.35l-3.79 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.31.31.85.09.85-.36V14h2.5c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm14.15 1.65-3.79-3.79c-.32-.32-.86-.1-.86.35V10h-2.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5H18v1.79c0 .45.54.67.85.35l3.79-3.79c.2-.19.2-.51.01-.7zM13.5 15h-3c-.28 0-.5.22-.5.5V18H8.21c-.45 0-.67.54-.35.85l3.79 3.79c.2.2.51.2.71 0l3.79-3.79c.31-.31.09-.85-.35-.85H14v-2.5c0-.28-.22-.5-.5-.5z" -}), 'OpenWithRounded'); \ No newline at end of file +}), 'OpenWithRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenWithSharp.js b/packages/material-ui-icons/lib/OpenWithSharp.js index d6555af13ae345..a64b463a6909c8 100644 --- a/packages/material-ui-icons/lib/OpenWithSharp.js +++ b/packages/material-ui-icons/lib/OpenWithSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" -}), 'OpenWithSharp'); \ No newline at end of file +}), 'OpenWithSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OpenWithTwoTone.js b/packages/material-ui-icons/lib/OpenWithTwoTone.js index 478727fc00a305..d1e6c7b1500027 100644 --- a/packages/material-ui-icons/lib/OpenWithTwoTone.js +++ b/packages/material-ui-icons/lib/OpenWithTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" -}), 'OpenWithTwoTone'); \ No newline at end of file +}), 'OpenWithTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OtherHouses.js b/packages/material-ui-icons/lib/OtherHouses.js index e6c06770f9f2dc..c93295119cffe0 100644 --- a/packages/material-ui-icons/lib/OtherHouses.js +++ b/packages/material-ui-icons/lib/OtherHouses.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'OtherHouses'); \ No newline at end of file +}), 'OtherHouses'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OtherHousesOutlined.js b/packages/material-ui-icons/lib/OtherHousesOutlined.js index 7009bc3c384c83..b95a293f8e17cf 100644 --- a/packages/material-ui-icons/lib/OtherHousesOutlined.js +++ b/packages/material-ui-icons/lib/OtherHousesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16H6v-8.9l6-4.58 6 4.58V19zm-9-5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm3-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm3 1c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" -}), 'OtherHousesOutlined'); \ No newline at end of file +}), 'OtherHousesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OtherHousesRounded.js b/packages/material-ui-icons/lib/OtherHousesRounded.js index 618675a073611b..27a55207b6174e 100644 --- a/packages/material-ui-icons/lib/OtherHousesRounded.js +++ b/packages/material-ui-icons/lib/OtherHousesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.61 12.19c.34.44.96.52 1.4.19l.99-.76V20c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-8.38l.99.76c.44.34 1.07.25 1.4-.19.34-.44.25-1.07-.19-1.4l-9.6-7.33c-.36-.27-.86-.27-1.21 0l-9.6 7.33c-.43.34-.52.97-.18 1.4zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'OtherHousesRounded'); \ No newline at end of file +}), 'OtherHousesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OtherHousesSharp.js b/packages/material-ui-icons/lib/OtherHousesSharp.js index 35b3ca058e510d..5759d056349c7d 100644 --- a/packages/material-ui-icons/lib/OtherHousesSharp.js +++ b/packages/material-ui-icons/lib/OtherHousesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'OtherHousesSharp'); \ No newline at end of file +}), 'OtherHousesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OtherHousesTwoTone.js b/packages/material-ui-icons/lib/OtherHousesTwoTone.js index da487dfa8431e9..4a6153a6a2f1aa 100644 --- a/packages/material-ui-icons/lib/OtherHousesTwoTone.js +++ b/packages/material-ui-icons/lib/OtherHousesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.52 6 10.1V19h12v-8.9l-6-4.58zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16H6v-8.9l6-4.58 6 4.58V19zm-9-5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm3-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm3 1c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" -}, "1")], 'OtherHousesTwoTone'); \ No newline at end of file +}, "1")], 'OtherHousesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Outbound.js b/packages/material-ui-icons/lib/Outbound.js index b84ed7575a5b58..17a5f550ff5c69 100644 --- a/packages/material-ui-icons/lib/Outbound.js +++ b/packages/material-ui-icons/lib/Outbound.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" -}), 'Outbound'); \ No newline at end of file +}), 'Outbound'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboundOutlined.js b/packages/material-ui-icons/lib/OutboundOutlined.js index 77bdc81449498e..c8eef97cad28df 100644 --- a/packages/material-ui-icons/lib/OutboundOutlined.js +++ b/packages/material-ui-icons/lib/OutboundOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" -}), 'OutboundOutlined'); \ No newline at end of file +}), 'OutboundOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboundRounded.js b/packages/material-ui-icons/lib/OutboundRounded.js index e4751cb321e4fa..48e320c4095ece 100644 --- a/packages/material-ui-icons/lib/OutboundRounded.js +++ b/packages/material-ui-icons/lib/OutboundRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54-4.25 4.25c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41l4.25-4.25-1.27-1.27c-.32-.32-.09-.86.35-.86h3.94c.28 0 .5.22.5.5v3.94c0 .45-.54.67-.85.35l-1.26-1.25z" -}), 'OutboundRounded'); \ No newline at end of file +}), 'OutboundRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboundSharp.js b/packages/material-ui-icons/lib/OutboundSharp.js index 7a0e76b7d781b8..d93a30c2d7ee30 100644 --- a/packages/material-ui-icons/lib/OutboundSharp.js +++ b/packages/material-ui-icons/lib/OutboundSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" -}), 'OutboundSharp'); \ No newline at end of file +}), 'OutboundSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboundTwoTone.js b/packages/material-ui-icons/lib/OutboundTwoTone.js index 7ae19578846656..c106400055c32c 100644 --- a/packages/material-ui-icons/lib/OutboundTwoTone.js +++ b/packages/material-ui-icons/lib/OutboundTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1.88 7.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" -}, "1")], 'OutboundTwoTone'); \ No newline at end of file +}, "1")], 'OutboundTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Outbox.js b/packages/material-ui-icons/lib/Outbox.js index f4900a416d4a5b..03d60231a1e44d 100644 --- a/packages/material-ui-icons/lib/Outbox.js +++ b/packages/material-ui-icons/lib/Outbox.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zM8 11h2v3h4v-3h2l-4-4-4 4z" -}), 'Outbox'); \ No newline at end of file +}), 'Outbox'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboxOutlined.js b/packages/material-ui-icons/lib/OutboxOutlined.js index ae4fd8f3256d92..8ea86b202a5035 100644 --- a/packages/material-ui-icons/lib/OutboxOutlined.js +++ b/packages/material-ui-icons/lib/OutboxOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9.83V14h2V9.83l1.59 1.58L16 10l-4-4-4 4 1.41 1.41z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H19v3zm0-5h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z" -}, "1")], 'OutboxOutlined'); \ No newline at end of file +}, "1")], 'OutboxOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboxRounded.js b/packages/material-ui-icons/lib/OutboxRounded.js index 2ac5f3c56b5f9e..aa2d0c13b66069 100644 --- a/packages/material-ui-icons/lib/OutboxRounded.js +++ b/packages/material-ui-icons/lib/OutboxRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.21 11H11v2c0 .55.45 1 1 1s1-.45 1-1v-2h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 11h-3.02c-.63 0-1.22.3-1.6.8-.54.73-1.4 1.2-2.38 1.2s-1.84-.47-2.38-1.2c-.38-.5-.97-.8-1.6-.8H5V5h14v9z" -}, "1")], 'OutboxRounded'); \ No newline at end of file +}, "1")], 'OutboxRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboxSharp.js b/packages/material-ui-icons/lib/OutboxSharp.js index 8011946e204f7f..fb607d8b472afe 100644 --- a/packages/material-ui-icons/lib/OutboxSharp.js +++ b/packages/material-ui-icons/lib/OutboxSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14h2v-3h3l-4-4-4 4h3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm16 11h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z" -}, "1")], 'OutboxSharp'); \ No newline at end of file +}, "1")], 'OutboxSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutboxTwoTone.js b/packages/material-ui-icons/lib/OutboxTwoTone.js index 03e4427ed1779f..e11948e9eadc14 100644 --- a/packages/material-ui-icons/lib/OutboxTwoTone.js +++ b/packages/material-ui-icons/lib/OutboxTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 18c-1.63 0-3.06-.79-3.98-2H5v3h14v-3h-3.02c-.92 1.21-2.35 2-3.98 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14h2v-3h3l-4-4-4 4h3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H19v3zm0-5h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z" -}, "2")], 'OutboxTwoTone'); \ No newline at end of file +}, "2")], 'OutboxTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutdoorGrill.js b/packages/material-ui-icons/lib/OutdoorGrill.js index da80b59ef841dc..a4f76eee1d9522 100644 --- a/packages/material-ui-icons/lib/OutdoorGrill.js +++ b/packages/material-ui-icons/lib/OutdoorGrill.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34C14.6 21.16 15.7 22 17 22zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" -}), 'OutdoorGrill'); \ No newline at end of file +}), 'OutdoorGrill'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutdoorGrillOutlined.js b/packages/material-ui-icons/lib/OutdoorGrillOutlined.js index 087be9c7d06f50..67c3523fb5870b 100644 --- a/packages/material-ui-icons/lib/OutdoorGrillOutlined.js +++ b/packages/material-ui-icons/lib/OutdoorGrillOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34C14.6 21.16 15.7 22 17 22zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-9.58-8h9.16c-.77 1.76-2.54 3-4.58 3s-3.81-1.24-4.58-3zm1.99-3h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" -}), 'OutdoorGrillOutlined'); \ No newline at end of file +}), 'OutdoorGrillOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutdoorGrillRounded.js b/packages/material-ui-icons/lib/OutdoorGrillRounded.js index 2717cd048bf57b..0196ce0916190a 100644 --- a/packages/material-ui-icons/lib/OutdoorGrillRounded.js +++ b/packages/material-ui-icons/lib/OutdoorGrillRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93c2.1-.95 3.64-2.9 4.02-5.24.1-.59-.39-1.13-.99-1.13H6.08c-.6 0-1.09.54-.99 1.14.38 2.34 1.93 4.29 4.02 5.24l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34c.43 1.16 1.53 2 2.83 2zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.5 6.47c-.02.28.18.53.46.53H10c.24 0 .44-.18.46-.42.1-.87.04-1.39-.94-2.54-.36-.43-.6-.69-.53-1.55.03-.26-.19-.49-.46-.49h-.05c-.24 0-.45.19-.47.43-.08.93.2 1.74.95 2.53.19.21.64.56.54 1.51zm2.49 0c-.03.28.18.53.46.53h.03c.24 0 .44-.18.46-.42.1-.87.04-1.39-.94-2.54-.36-.43-.61-.69-.53-1.55.03-.26-.19-.49-.46-.49h-.05c-.24 0-.45.19-.47.43-.08.93.2 1.74.95 2.53.19.21.64.56.55 1.51zm2.51 0c-.02.28.18.53.46.53H15c.24 0 .44-.18.46-.42.1-.87.04-1.39-.94-2.54-.36-.43-.61-.69-.53-1.55.03-.26-.19-.49-.46-.49h-.05c-.24 0-.45.19-.47.43-.08.93.2 1.74.95 2.53.19.21.64.56.54 1.51z" -}), 'OutdoorGrillRounded'); \ No newline at end of file +}), 'OutdoorGrillRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutdoorGrillSharp.js b/packages/material-ui-icons/lib/OutdoorGrillSharp.js index af31b3547fac96..01a8389f5ab24b 100644 --- a/packages/material-ui-icons/lib/OutdoorGrillSharp.js +++ b/packages/material-ui-icons/lib/OutdoorGrillSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06.29 0 .58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-4.5 6.92 1.68 1.09L7.84 20h6.34c.42 1.16 1.52 2 2.82 2zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" -}), 'OutdoorGrillSharp'); \ No newline at end of file +}), 'OutdoorGrillSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutdoorGrillTwoTone.js b/packages/material-ui-icons/lib/OutdoorGrillTwoTone.js index 1c8dc955204372..e88b7f21500870 100644 --- a/packages/material-ui-icons/lib/OutdoorGrillTwoTone.js +++ b/packages/material-ui-icons/lib/OutdoorGrillTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.58 10H7.42c.77 1.76 2.54 3 4.58 3s3.81-1.24 4.58-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34C14.6 21.16 15.7 22 17 22zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-9.58-8h9.16c-.77 1.76-2.54 3-4.58 3s-3.81-1.24-4.58-3z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "19", r: "1", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" -}, "3")], 'OutdoorGrillTwoTone'); \ No newline at end of file +}, "3")], 'OutdoorGrillTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Outlet.js b/packages/material-ui-icons/lib/Outlet.js index 99a8948a696583..9a3bb84fa618cb 100644 --- a/packages/material-ui-icons/lib/Outlet.js +++ b/packages/material-ui-icons/lib/Outlet.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9 12c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm5 6h-4v-2c0-1.1.9-2 2-2s2 .9 2 2v2zm2-7c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3z" -}), 'Outlet'); \ No newline at end of file +}), 'Outlet'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutletOutlined.js b/packages/material-ui-icons/lib/OutletOutlined.js index 25ebcae9c7fbfb..edd09603597b4e 100644 --- a/packages/material-ui-icons/lib/OutletOutlined.js +++ b/packages/material-ui-icons/lib/OutletOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 9V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm6 0V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm-2 5c0-1.1-.9-2-2-2s-2 .9-2 2v2h4v-2z" -}), 'OutletOutlined'); \ No newline at end of file +}), 'OutletOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutletRounded.js b/packages/material-ui-icons/lib/OutletRounded.js index db5e01fc89bb22..47982a49ec3fdb 100644 --- a/packages/material-ui-icons/lib/OutletRounded.js +++ b/packages/material-ui-icons/lib/OutletRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9 12c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 6h-2c-.55 0-1-.45-1-1v-.89c0-1 .68-1.92 1.66-2.08 1.26-.21 2.34.76 2.34 1.97v1c0 .55-.45 1-1 1zm3-7c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3z" -}), 'OutletRounded'); \ No newline at end of file +}), 'OutletRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutletSharp.js b/packages/material-ui-icons/lib/OutletSharp.js index f24a156803a427..1a2cabdd3377a9 100644 --- a/packages/material-ui-icons/lib/OutletSharp.js +++ b/packages/material-ui-icons/lib/OutletSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 12V7h2v5H8zm6 6h-4v-1.89c0-1 .68-1.92 1.66-2.08 1.26-.21 2.34.76 2.34 1.97v2zm2-6h-2V7h2v5z" -}), 'OutletSharp'); \ No newline at end of file +}), 'OutletSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutletTwoTone.js b/packages/material-ui-icons/lib/OutletTwoTone.js index 144f403587ee78..f69d39ebdfc02f 100644 --- a/packages/material-ui-icons/lib/OutletTwoTone.js +++ b/packages/material-ui-icons/lib/OutletTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m-2 7V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm6 0V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm-2 5c0-1.1-.9-2-2-2s-2 .9-2 2v2h4v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 9V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm6 0V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm-2 5c0-1.1-.9-2-2-2s-2 .9-2 2v2h4v-2z" -}, "1")], 'OutletTwoTone'); \ No newline at end of file +}, "1")], 'OutletTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutlinedFlag.js b/packages/material-ui-icons/lib/OutlinedFlag.js index 597587e6f88162..b6c2599a071881 100644 --- a/packages/material-ui-icons/lib/OutlinedFlag.js +++ b/packages/material-ui-icons/lib/OutlinedFlag.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" -}), 'OutlinedFlag'); \ No newline at end of file +}), 'OutlinedFlag'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutlinedFlagOutlined.js b/packages/material-ui-icons/lib/OutlinedFlagOutlined.js index aaa85d00d45733..c5c180f2969417 100644 --- a/packages/material-ui-icons/lib/OutlinedFlagOutlined.js +++ b/packages/material-ui-icons/lib/OutlinedFlagOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" -}), 'OutlinedFlagOutlined'); \ No newline at end of file +}), 'OutlinedFlagOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutlinedFlagRounded.js b/packages/material-ui-icons/lib/OutlinedFlagRounded.js index 67a962d5a11d86..35f15796350b89 100644 --- a/packages/material-ui-icons/lib/OutlinedFlagRounded.js +++ b/packages/material-ui-icons/lib/OutlinedFlagRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-.72-1.45c-.17-.34-.52-.55-.9-.55H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5l.72 1.45c.17.34.52.55.89.55H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-5zm4 8h-4l-1-2H7V6h5l1 2h5v6z" -}), 'OutlinedFlagRounded'); \ No newline at end of file +}), 'OutlinedFlagRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutlinedFlagSharp.js b/packages/material-ui-icons/lib/OutlinedFlagSharp.js index 1f6564fbf81878..767afe6948f653 100644 --- a/packages/material-ui-icons/lib/OutlinedFlagSharp.js +++ b/packages/material-ui-icons/lib/OutlinedFlagSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" -}), 'OutlinedFlagSharp'); \ No newline at end of file +}), 'OutlinedFlagSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/OutlinedFlagTwoTone.js b/packages/material-ui-icons/lib/OutlinedFlagTwoTone.js index f8ed472fea6fad..6c98f1a58f133e 100644 --- a/packages/material-ui-icons/lib/OutlinedFlagTwoTone.js +++ b/packages/material-ui-icons/lib/OutlinedFlagTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" -}), 'OutlinedFlagTwoTone'); \ No newline at end of file +}), 'OutlinedFlagTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Padding.js b/packages/material-ui-icons/lib/Padding.js index 74c2313f666636..464c1d8e71a10e 100644 --- a/packages/material-ui-icons/lib/Padding.js +++ b/packages/material-ui-icons/lib/Padding.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2z" -}), 'Padding'); \ No newline at end of file +}), 'Padding'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaddingOutlined.js b/packages/material-ui-icons/lib/PaddingOutlined.js index 590be953a200bb..e7ed66a499228a 100644 --- a/packages/material-ui-icons/lib/PaddingOutlined.js +++ b/packages/material-ui-icons/lib/PaddingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14zM11 7h2v2h-2V7zM7 7h2v2H7V7zm8 0h2v2h-2V7z" -}), 'PaddingOutlined'); \ No newline at end of file +}), 'PaddingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaddingRounded.js b/packages/material-ui-icons/lib/PaddingRounded.js index 666a4c5c342582..a89a7e4c9698db 100644 --- a/packages/material-ui-icons/lib/PaddingRounded.js +++ b/packages/material-ui-icons/lib/PaddingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm6 3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}), 'PaddingRounded'); \ No newline at end of file +}), 'PaddingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaddingSharp.js b/packages/material-ui-icons/lib/PaddingSharp.js index eed9c5987577ca..56877d35742bce 100644 --- a/packages/material-ui-icons/lib/PaddingSharp.js +++ b/packages/material-ui-icons/lib/PaddingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm6 6H7V7h2v2zm4 0h-2V7h2v2zm4 0h-2V7h2v2z" -}), 'PaddingSharp'); \ No newline at end of file +}), 'PaddingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaddingTwoTone.js b/packages/material-ui-icons/lib/PaddingTwoTone.js index c16ddbc007afa8..6a982dcece6569 100644 --- a/packages/material-ui-icons/lib/PaddingTwoTone.js +++ b/packages/material-ui-icons/lib/PaddingTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zM15 7h2v2h-2V7zm-4 0h2v2h-2V7zM7 7h2v2H7V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7h2v2h-2zM7 7h2v2H7zm4 0h2v2h-2z" -}, "2")], 'PaddingTwoTone'); \ No newline at end of file +}, "2")], 'PaddingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pages.js b/packages/material-ui-icons/lib/Pages.js index 03a19a0dc7e4c0..e84f0935b69871 100644 --- a/packages/material-ui-icons/lib/Pages.js +++ b/packages/material-ui-icons/lib/Pages.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v6h5L7 7l4 1V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-4 1 1-4zm9 4-4-1v5h6c1.1 0 2-.9 2-2v-6h-5l1 4zm2-14h-6v5l4-1-1 4h5V5c0-1.1-.9-2-2-2z" -}), 'Pages'); \ No newline at end of file +}), 'Pages'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PagesOutlined.js b/packages/material-ui-icons/lib/PagesOutlined.js index 86e497f2d37fe9..a069e0fd13f694 100644 --- a/packages/material-ui-icons/lib/PagesOutlined.js +++ b/packages/material-ui-icons/lib/PagesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 2h6v6h-3l1-4-4 1V5zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm8 0h-6v-3l4 1-1-4h3v6zm-4.37-4.37L12 13.72l-2.63.91.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63z" -}), 'PagesOutlined'); \ No newline at end of file +}), 'PagesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PagesRounded.js b/packages/material-ui-icons/lib/PagesRounded.js index e38064afc44ec4..c440d33729d2b9 100644 --- a/packages/material-ui-icons/lib/PagesRounded.js +++ b/packages/material-ui-icons/lib/PagesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v6h5l-.6-2.38c-.18-.74.48-1.4 1.22-1.22L11 8V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-2.38.6c-.73.18-1.4-.48-1.21-1.21L8 13zm7.38 3.6L13 16v5h6c1.1 0 2-.9 2-2v-6h-5l.6 2.38c.18.74-.48 1.4-1.22 1.22zM19 3h-6v5l2.38-.6c.73-.18 1.4.48 1.21 1.21L16 11h5V5c0-1.1-.9-2-2-2z" -}), 'PagesRounded'); \ No newline at end of file +}), 'PagesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PagesSharp.js b/packages/material-ui-icons/lib/PagesSharp.js index e35bb197753384..298e87b2f9566a 100644 --- a/packages/material-ui-icons/lib/PagesSharp.js +++ b/packages/material-ui-icons/lib/PagesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v8h5L7 7l4 1V3H3zm5 10H3v8h8v-5l-4 1 1-4zm9 4-4-1v5h8v-8h-5l1 4zm4-14h-8v5l4-1-1 4h5V3z" -}), 'PagesSharp'); \ No newline at end of file +}), 'PagesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PagesTwoTone.js b/packages/material-ui-icons/lib/PagesTwoTone.js index 8f6559aaf40a6f..15c592c9f4155c 100644 --- a/packages/material-ui-icons/lib/PagesTwoTone.js +++ b/packages/material-ui-icons/lib/PagesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 7 4 1V5H5v6h3zm1 6H5v6h6v-3l-4 1zm9 4-4-1v3h6v-6h-3zm-4-9 4-1-1 4h3V5h-6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm-1.63-4.37.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63-2.63-.91-2.63.91zM19 19h-6v-3l4 1-1-4h3v6zm0-8h-3l1-4-4 1V5h6v6z" -}, "1")], 'PagesTwoTone'); \ No newline at end of file +}, "1")], 'PagesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pageview.js b/packages/material-ui-icons/lib/Pageview.js index add8bc3557d854..d69b04d186ab94 100644 --- a/packages/material-ui-icons/lib/Pageview.js +++ b/packages/material-ui-icons/lib/Pageview.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.21 14.21-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z" -}), 'Pageview'); \ No newline at end of file +}), 'Pageview'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PageviewOutlined.js b/packages/material-ui-icons/lib/PageviewOutlined.js index daa065cdb805d4..72f29c1f743994 100644 --- a/packages/material-ui-icons/lib/PageviewOutlined.js +++ b/packages/material-ui-icons/lib/PageviewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}), 'PageviewOutlined'); \ No newline at end of file +}), 'PageviewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PageviewRounded.js b/packages/material-ui-icons/lib/PageviewRounded.js index 89bb8af1a83a4d..a7208315bbdc38 100644 --- a/packages/material-ui-icons/lib/PageviewRounded.js +++ b/packages/material-ui-icons/lib/PageviewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.92 13.5-2.2-2.2c-.9.58-2.03.84-3.22.62-1.88-.35-3.38-1.93-3.62-3.83-.38-3.01 2.18-5.52 5.21-5.04 1.88.3 3.39 1.84 3.7 3.71.19 1.16-.08 2.23-.64 3.12l2.2 2.19c.39.39.39 1.03 0 1.42-.4.4-1.04.4-1.43.01z" -}), 'PageviewRounded'); \ No newline at end of file +}), 'PageviewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PageviewSharp.js b/packages/material-ui-icons/lib/PageviewSharp.js index 6ea32120ebfebd..c9751200120800 100644 --- a/packages/material-ui-icons/lib/PageviewSharp.js +++ b/packages/material-ui-icons/lib/PageviewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM22 4H2v16h20V4zm-5.21 14.21-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z" -}), 'PageviewSharp'); \ No newline at end of file +}), 'PageviewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PageviewTwoTone.js b/packages/material-ui-icons/lib/PageviewTwoTone.js index 231869b37976bc..2079c702445c52 100644 --- a/packages/material-ui-icons/lib/PageviewTwoTone.js +++ b/packages/material-ui-icons/lib/PageviewTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zm7.5-11c2.49 0 4.5 2.01 4.5 4.5 0 .88-.26 1.69-.7 2.39l2.44 2.43-1.42 1.42-2.44-2.44c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "1")], 'PageviewTwoTone'); \ No newline at end of file +}, "1")], 'PageviewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Paid.js b/packages/material-ui-icons/lib/Paid.js index 4b6d61a066f7f5..10fdd454e45323 100644 --- a/packages/material-ui-icons/lib/Paid.js +++ b/packages/material-ui-icons/lib/Paid.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z" -}), 'Paid'); \ No newline at end of file +}), 'Paid'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaidOutlined.js b/packages/material-ui-icons/lib/PaidOutlined.js index db338646d55feb..3e80c13d4e09b4 100644 --- a/packages/material-ui-icons/lib/PaidOutlined.js +++ b/packages/material-ui-icons/lib/PaidOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.89-8.9c-1.78-.59-2.64-.96-2.64-1.9 0-1.02 1.11-1.39 1.81-1.39 1.31 0 1.79.99 1.9 1.34l1.58-.67c-.15-.44-.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6.56-2.62 2.85-2.62 2.96 0 2.27 2.25 2.91 3.35 3.31 1.58.56 2.28 1.07 2.28 2.03 0 1.13-1.05 1.61-1.98 1.61-1.82 0-2.34-1.87-2.4-2.09l-1.66.67c.63 2.19 2.28 2.78 3.02 2.96V19h1.75v-1.24c.52-.09 3.02-.59 3.02-3.22.01-1.39-.6-2.61-3-3.44z" -}), 'PaidOutlined'); \ No newline at end of file +}), 'PaidOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaidRounded.js b/packages/material-ui-icons/lib/PaidRounded.js index 0cfa6e8098695e..7ab8f0418fd956 100644 --- a/packages/material-ui-icons/lib/PaidRounded.js +++ b/packages/material-ui-icons/lib/PaidRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76v.36c0 .48-.39.88-.88.88-.48 0-.88-.39-.88-.88v-.42c-.63-.15-1.93-.61-2.69-2.1-.23-.44-.01-.99.45-1.18l.07-.03c.41-.17.87 0 1.08.39.32.61.95 1.37 2.12 1.37.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96v-.36c0-.49.4-.88.88-.88s.88.39.88.88v.37c1.07.19 1.75.76 2.16 1.3.34.44.16 1.08-.36 1.3-.36.15-.78.03-1.02-.28-.28-.38-.78-.77-1.6-.77-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z" -}), 'PaidRounded'); \ No newline at end of file +}), 'PaidRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaidSharp.js b/packages/material-ui-icons/lib/PaidSharp.js index bbc14a20447af3..b20aeba654562e 100644 --- a/packages/material-ui-icons/lib/PaidSharp.js +++ b/packages/material-ui-icons/lib/PaidSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z" -}), 'PaidSharp'); \ No newline at end of file +}), 'PaidSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaidTwoTone.js b/packages/material-ui-icons/lib/PaidTwoTone.js index fb1f99bc1064df..9fb5c87c85d55d 100644 --- a/packages/material-ui-icons/lib/PaidTwoTone.js +++ b/packages/material-ui-icons/lib/PaidTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm.88 13.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.89 11.1c-1.78-.59-2.64-.96-2.64-1.9 0-1.02 1.11-1.39 1.81-1.39 1.31 0 1.79.99 1.9 1.34l1.58-.67c-.15-.44-.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6.56-2.62 2.85-2.62 2.96 0 2.27 2.25 2.91 3.35 3.31 1.58.56 2.28 1.07 2.28 2.03 0 1.13-1.05 1.61-1.98 1.61-1.82 0-2.34-1.87-2.4-2.09l-1.66.67c.63 2.19 2.28 2.78 3.02 2.96V19h1.75v-1.24c.52-.09 3.02-.59 3.02-3.22.01-1.39-.6-2.61-3-3.44z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "2")], 'PaidTwoTone'); \ No newline at end of file +}, "2")], 'PaidTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Palette.js b/packages/material-ui-icons/lib/Palette.js index 976c8b90cd44e8..d87828170c75ee 100644 --- a/packages/material-ui-icons/lib/Palette.js +++ b/packages/material-ui-icons/lib/Palette.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.2-.64-1.67-.08-.1-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z" -}), 'Palette'); \ No newline at end of file +}), 'Palette'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaletteOutlined.js b/packages/material-ui-icons/lib/PaletteOutlined.js index b15d247d623d13..9b1102d614c59d 100644 --- a/packages/material-ui-icons/lib/PaletteOutlined.js +++ b/packages/material-ui-icons/lib/PaletteOutlined.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "11.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "7.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "7.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "11.5", r: "1.5" -}, "4")], 'PaletteOutlined'); \ No newline at end of file +}, "4")], 'PaletteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaletteRounded.js b/packages/material-ui-icons/lib/PaletteRounded.js index 938c828077232e..5a021e2f58fcfb 100644 --- a/packages/material-ui-icons/lib/PaletteRounded.js +++ b/packages/material-ui-icons/lib/PaletteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.2-.64-1.67-.08-.1-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z" -}), 'PaletteRounded'); \ No newline at end of file +}), 'PaletteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaletteSharp.js b/packages/material-ui-icons/lib/PaletteSharp.js index cb57c3c0025371..42eeef1289d183 100644 --- a/packages/material-ui-icons/lib/PaletteSharp.js +++ b/packages/material-ui-icons/lib/PaletteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.2-.64-1.67-.08-.1-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z" -}), 'PaletteSharp'); \ No newline at end of file +}), 'PaletteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaletteTwoTone.js b/packages/material-ui-icons/lib/PaletteTwoTone.js index 60aad0e7d9aaf4..3feafc93f10436 100644 --- a/packages/material-ui-icons/lib/PaletteTwoTone.js +++ b/packages/material-ui-icons/lib/PaletteTwoTone.js @@ -1,24 +1,37 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "11.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "7.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "7.5", r: "1.5" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "11.5", r: "1.5" -}, "5")], 'PaletteTwoTone'); \ No newline at end of file +}, "5")], 'PaletteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanTool.js b/packages/material-ui-icons/lib/PanTool.js index bc6c4d4ec94bc5..0b83df59f3c9e8 100644 --- a/packages/material-ui-icons/lib/PanTool.js +++ b/packages/material-ui-icons/lib/PanTool.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 5.5V20c0 2.2-1.8 4-4 4h-7.3c-1.08 0-2.1-.43-2.85-1.19L1 14.83s1.26-1.23 1.3-1.25c.22-.19.49-.29.79-.29.22 0 .42.06.6.16.04.01 4.31 2.46 4.31 2.46V4c0-.83.67-1.5 1.5-1.5S11 3.17 11 4v7h1V1.5c0-.83.67-1.5 1.5-1.5S15 .67 15 1.5V11h1V2.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V11h1V5.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5z" -}), 'PanTool'); \ No newline at end of file +}), 'PanTool'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanToolOutlined.js b/packages/material-ui-icons/lib/PanToolOutlined.js index 1d817314dee5a5..9ecfdb8126f861 100644 --- a/packages/material-ui-icons/lib/PanToolOutlined.js +++ b/packages/material-ui-icons/lib/PanToolOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 24h-6.55c-1.08 0-2.14-.45-2.89-1.23l-7.3-7.61 2.07-1.83c.62-.55 1.53-.66 2.26-.27L8 14.34V4.79c0-1.38 1.12-2.5 2.5-2.5.17 0 .34.02.51.05.09-1.3 1.17-2.33 2.49-2.33.86 0 1.61.43 2.06 1.09.29-.12.61-.18.94-.18 1.38 0 2.5 1.12 2.5 2.5v.28c.16-.03.33-.05.5-.05 1.38 0 2.5 1.12 2.5 2.5V20c0 2.21-1.79 4-4 4zM4.14 15.28l5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45z" -}), 'PanToolOutlined'); \ No newline at end of file +}), 'PanToolOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanToolRounded.js b/packages/material-ui-icons/lib/PanToolRounded.js index 48dbbe745792f7..fd62e18e008fc2 100644 --- a/packages/material-ui-icons/lib/PanToolRounded.js +++ b/packages/material-ui-icons/lib/PanToolRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.5 4c-.83 0-1.5.67-1.5 1.5v5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-8c0-.83-.67-1.5-1.5-1.5S16 1.67 16 2.5v8c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-9c0-.83-.67-1.5-1.5-1.5S12 .67 12 1.5v8.99c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.5c0-.83-.67-1.5-1.5-1.5S8 3.67 8 4.5v11.41l-4.12-2.35c-.58-.33-1.3-.24-1.78.22-.6.58-.62 1.54-.03 2.13l6.78 6.89c.75.77 1.77 1.2 2.85 1.2H19c2.21 0 4-1.79 4-4V5.5c0-.83-.67-1.5-1.5-1.5z" -}), 'PanToolRounded'); \ No newline at end of file +}), 'PanToolRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanToolSharp.js b/packages/material-ui-icons/lib/PanToolSharp.js index 84724867c360ad..547acab98ad2cd 100644 --- a/packages/material-ui-icons/lib/PanToolSharp.js +++ b/packages/material-ui-icons/lib/PanToolSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 4v20H10.02L1 14.83 2.9 13 8 15.91V3h3v8h1V0h3v11h1V1h3v10h1V4h3z" -}), 'PanToolSharp'); \ No newline at end of file +}), 'PanToolSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanToolTwoTone.js b/packages/material-ui-icons/lib/PanToolTwoTone.js index b56e6599b4a6af..83a28f9d4e51ce 100644 --- a/packages/material-ui-icons/lib/PanToolTwoTone.js +++ b/packages/material-ui-icons/lib/PanToolTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 5.65c-.28 0-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45 5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.65c-.17 0-.34.02-.5.05v-.28c0-1.38-1.12-2.5-2.5-2.5-.33 0-.65.06-.94.18C15.11.44 14.35.01 13.5.01c-1.32 0-2.41 1.03-2.49 2.33-.16-.03-.33-.05-.51-.05-1.38 0-2.5 1.12-2.5 2.5v9.55l-2.41-1.28c-.73-.39-1.64-.28-2.26.27l-2.07 1.83 7.3 7.61c.75.78 1.8 1.23 2.89 1.23H18c2.21 0 4-1.79 4-4V6.15c0-1.38-1.12-2.5-2.5-2.5zM20 20c0 1.1-.9 2-2 2h-6.55c-.54 0-1.07-.22-1.44-.62l-5.86-6.11.51-.45L10 17.66V4.79c0-.28.22-.5.5-.5s.5.23.5.5V12h2V2.51c0-.28.22-.5.5-.5s.5.22.5.5V12h2V3.42c0-.28.22-.5.5-.5s.5.22.5.5V12h2V6.15c0-.28.22-.5.5-.5s.5.22.5.5V20z" -}, "1")], 'PanToolTwoTone'); \ No newline at end of file +}, "1")], 'PanToolTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Panorama.js b/packages/material-ui-icons/lib/Panorama.js index 5acdd3bd16a795..e59aaeb2d17cd2 100644 --- a/packages/material-ui-icons/lib/Panorama.js +++ b/packages/material-ui-icons/lib/Panorama.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z" -}), 'Panorama'); \ No newline at end of file +}), 'Panorama'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaFishEye.js b/packages/material-ui-icons/lib/PanoramaFishEye.js index c06df666d286a9..2388c6aec3972c 100644 --- a/packages/material-ui-icons/lib/PanoramaFishEye.js +++ b/packages/material-ui-icons/lib/PanoramaFishEye.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PanoramaFishEye'); \ No newline at end of file +}), 'PanoramaFishEye'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaFishEyeOutlined.js b/packages/material-ui-icons/lib/PanoramaFishEyeOutlined.js index e1bcd21c2fa806..0439d8b7539776 100644 --- a/packages/material-ui-icons/lib/PanoramaFishEyeOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaFishEyeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PanoramaFishEyeOutlined'); \ No newline at end of file +}), 'PanoramaFishEyeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaFishEyeRounded.js b/packages/material-ui-icons/lib/PanoramaFishEyeRounded.js index 1cf397953ae414..039cbadbe94114 100644 --- a/packages/material-ui-icons/lib/PanoramaFishEyeRounded.js +++ b/packages/material-ui-icons/lib/PanoramaFishEyeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PanoramaFishEyeRounded'); \ No newline at end of file +}), 'PanoramaFishEyeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaFishEyeSharp.js b/packages/material-ui-icons/lib/PanoramaFishEyeSharp.js index 3d6519973ff364..95f476d6eb80f5 100644 --- a/packages/material-ui-icons/lib/PanoramaFishEyeSharp.js +++ b/packages/material-ui-icons/lib/PanoramaFishEyeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PanoramaFishEyeSharp'); \ No newline at end of file +}), 'PanoramaFishEyeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaFishEyeTwoTone.js b/packages/material-ui-icons/lib/PanoramaFishEyeTwoTone.js index c2787575a0d854..6000415d88a939 100644 --- a/packages/material-ui-icons/lib/PanoramaFishEyeTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaFishEyeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'PanoramaFishEyeTwoTone'); \ No newline at end of file +}, "1")], 'PanoramaFishEyeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontal.js b/packages/material-ui-icons/lib/PanoramaHorizontal.js index 7edc7b03465f90..0fb901dd53056c 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontal.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontal.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7c-3.09 0-6.18-.55-9.12-1.64-.11-.04-.22-.06-.31-.06-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64 3.09 0 6.18.55 9.12 1.64.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" -}), 'PanoramaHorizontal'); \ No newline at end of file +}), 'PanoramaHorizontal'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalOutlined.js b/packages/material-ui-icons/lib/PanoramaHorizontalOutlined.js index 5b6cbcbbda95bf..22e221ac1e6bcf 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" -}), 'PanoramaHorizontalOutlined'); \ No newline at end of file +}), 'PanoramaHorizontalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalRounded.js b/packages/material-ui-icons/lib/PanoramaHorizontalRounded.js index 8b2f4d2d13744e..9c2a6bd683e3eb 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalRounded.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" -}), 'PanoramaHorizontalRounded'); \ No newline at end of file +}), 'PanoramaHorizontalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalSelect.js b/packages/material-ui-icons/lib/PanoramaHorizontalSelect.js index 221924393c7694..02e0a171119cdc 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalSelect.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" -}), 'PanoramaHorizontalSelect'); \ No newline at end of file +}), 'PanoramaHorizontalSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalSelectOutlined.js b/packages/material-ui-icons/lib/PanoramaHorizontalSelectOutlined.js index 8780ddec9156e9..68d4ec4a169d39 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalSelectOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.17-1.31-.95-2.03.68-4.83 1.45-8.69 1.45z" -}), 'PanoramaHorizontalSelectOutlined'); \ No newline at end of file +}), 'PanoramaHorizontalSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalSelectRounded.js b/packages/material-ui-icons/lib/PanoramaHorizontalSelectRounded.js index f2a38ee3511675..d4c4b5bd124de4 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalSelectRounded.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.17-1.31-.95-2.03.68-4.83 1.45-8.69 1.45z" -}), 'PanoramaHorizontalSelectRounded'); \ No newline at end of file +}), 'PanoramaHorizontalSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalSelectSharp.js b/packages/material-ui-icons/lib/PanoramaHorizontalSelectSharp.js index a02f5494d3991c..31c5651fc9d7e4 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalSelectSharp.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9z" -}), 'PanoramaHorizontalSelectSharp'); \ No newline at end of file +}), 'PanoramaHorizontalSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalSelectTwoTone.js b/packages/material-ui-icons/lib/PanoramaHorizontalSelectTwoTone.js index 766386d0670255..52bfcb8135f359 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalSelectTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalSelectTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6.38v11.25c2.01-.59 4.61-1.13 8-1.13 3.38 0 5.99.54 8 1.13V6.37c-2.01.59-4.62 1.13-8 1.13-2.68 0-5.42-.39-8-1.12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.01 4C20.45 4 17.4 5.5 12 5.5c-5.31 0-8.49-1.49-9.01-1.49-.53 0-.99.44-.99 1.01V19c0 .57.46 1 .99 1 .57 0 3.55-1.5 9.01-1.5 5.42 0 8.44 1.5 9.01 1.5.53 0 .99-.43.99-1V5c0-.57-.46-1-.99-1zM20 17.63c-2.01-.59-4.62-1.13-8-1.13-3.39 0-5.99.54-8 1.13V6.38c2.58.73 5.32 1.12 8 1.12 3.38 0 5.99-.54 8-1.13v11.26z" -}, "1")], 'PanoramaHorizontalSelectTwoTone'); \ No newline at end of file +}, "1")], 'PanoramaHorizontalSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalSharp.js b/packages/material-ui-icons/lib/PanoramaHorizontalSharp.js index 339a47c73b4afd..2a8d3e8c2034f3 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalSharp.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6.55c2.6.77 5.28 1.16 8 1.16 2.72 0 5.41-.39 8-1.16v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.41.39-8 1.16V6.55M2 3.77v16.47s.77-.26.88-.3C5.82 18.85 8.91 18.3 12 18.3c3.09 0 6.18.55 9.12 1.64.11.04.88.3.88.3V3.77s-.77.26-.88.3C18.18 5.15 15.09 5.71 12 5.71s-6.18-.56-9.12-1.64c-.11-.05-.88-.3-.88-.3z" -}), 'PanoramaHorizontalSharp'); \ No newline at end of file +}), 'PanoramaHorizontalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaHorizontalTwoTone.js b/packages/material-ui-icons/lib/PanoramaHorizontalTwoTone.js index c8f099eb9f57b7..4db61301aa63c0 100644 --- a/packages/material-ui-icons/lib/PanoramaHorizontalTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaHorizontalTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6.54v10.91c2.6-.77 5.28-1.16 8-1.16s5.4.39 8 1.16V6.54c-2.6.78-5.28 1.17-8 1.16-2.72 0-5.4-.39-8-1.16z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63zM20 17.45c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16v10.91z" -}, "1")], 'PanoramaHorizontalTwoTone'); \ No newline at end of file +}, "1")], 'PanoramaHorizontalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaOutlined.js b/packages/material-ui-icons/lib/PanoramaOutlined.js index c57959c44e55ba..9a6bb7f71a5a6f 100644 --- a/packages/material-ui-icons/lib/PanoramaOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z" -}), 'PanoramaOutlined'); \ No newline at end of file +}), 'PanoramaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphere.js b/packages/material-ui-icons/lib/PanoramaPhotosphere.js index 2885ec3568e33c..29122534f5b282 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphere.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphere.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.4 11.32v2.93c-.1.05-2.17.85-3.33 1.17-.94.26-3.84.73-6.07.73-3.7 0-7-.7-9.16-1.8-.08-.04-.16-.06-.24-.1V9.76c6.02-2.84 12.6-2.92 18.8 0v1.56zm-9.39 8.88c-2.5 0-4.87-1.15-6.41-3.12 4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zm10.49 4.71c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83z" -}), 'PanoramaPhotosphere'); \ No newline at end of file +}), 'PanoramaPhotosphere'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereOutlined.js b/packages/material-ui-icons/lib/PanoramaPhotosphereOutlined.js index e3101a9349f95a..0ad07a9ac65b3c 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM21 9.91v4.19c-2.19 1.21-5.47 1.9-9 1.9-3.53 0-6.81-.7-9-1.91V9.91C5.2 8.69 8.47 8 12 8c3.53 0 6.81.7 9 1.91zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" -}), 'PanoramaPhotosphereOutlined'); \ No newline at end of file +}), 'PanoramaPhotosphereOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereRounded.js b/packages/material-ui-icons/lib/PanoramaPhotosphereRounded.js index f05803e4048802..5b5d0fbbc49b2c 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereRounded.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" -}), 'PanoramaPhotosphereRounded'); \ No newline at end of file +}), 'PanoramaPhotosphereRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereSelect.js b/packages/material-ui-icons/lib/PanoramaPhotosphereSelect.js index 96b2370c45fa74..6852bbda6f82c9 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereSelect.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.49 8.51c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zM5.6 17.08c4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13-2.5 0-4.87-1.15-6.41-3.12z" -}), 'PanoramaPhotosphereSelect'); \ No newline at end of file +}), 'PanoramaPhotosphereSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectOutlined.js b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectOutlined.js index b84960ff472e74..96839e085fb39c 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" -}), 'PanoramaPhotosphereSelectOutlined'); \ No newline at end of file +}), 'PanoramaPhotosphereSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectRounded.js b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectRounded.js index 5028c05acdf108..8fa2cd9f9e2332 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectRounded.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" -}), 'PanoramaPhotosphereSelectRounded'); \ No newline at end of file +}), 'PanoramaPhotosphereSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectSharp.js b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectSharp.js index 60965e7120e595..e083a401ea6250 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectSharp.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" -}), 'PanoramaPhotosphereSelectSharp'); \ No newline at end of file +}), 'PanoramaPhotosphereSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectTwoTone.js b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectTwoTone.js index f0c83a73a01e69..8528678ed9b6a7 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereSelectTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereSelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" -}), 'PanoramaPhotosphereSelectTwoTone'); \ No newline at end of file +}), 'PanoramaPhotosphereSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereSharp.js b/packages/material-ui-icons/lib/PanoramaPhotosphereSharp.js index 7350b7dbd59824..c999815531384d 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereSharp.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" -}), 'PanoramaPhotosphereSharp'); \ No newline at end of file +}), 'PanoramaPhotosphereSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaPhotosphereTwoTone.js b/packages/material-ui-icons/lib/PanoramaPhotosphereTwoTone.js index 4f64e0ea0cbd49..34aac9a0ddd87e 100644 --- a/packages/material-ui-icons/lib/PanoramaPhotosphereTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaPhotosphereTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9.91v4.18C5.19 15.3 8.47 16 12 16c3.53 0 6.81-.69 9-1.91V9.91C18.81 8.7 15.53 8 12 8c-3.53 0-6.8.69-9 1.91z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20zm9-10.09v4.18C18.81 15.31 15.53 16 12 16c-3.53 0-6.81-.7-9-1.91V9.91C5.2 8.69 8.47 8 12 8c3.53 0 6.81.7 9 1.91z" -}, "1")], 'PanoramaPhotosphereTwoTone'); \ No newline at end of file +}, "1")], 'PanoramaPhotosphereTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaRounded.js b/packages/material-ui-icons/lib/PanoramaRounded.js index dab47043130b52..8cf47721e0c992 100644 --- a/packages/material-ui-icons/lib/PanoramaRounded.js +++ b/packages/material-ui-icons/lib/PanoramaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.9 12.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 13c.19-.26.57-.27.78-.02z" -}), 'PanoramaRounded'); \ No newline at end of file +}), 'PanoramaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaSharp.js b/packages/material-ui-icons/lib/PanoramaSharp.js index cfa35f649ef055..e32a003f1a5db9 100644 --- a/packages/material-ui-icons/lib/PanoramaSharp.js +++ b/packages/material-ui-icons/lib/PanoramaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 20V4H1v16h22zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z" -}), 'PanoramaSharp'); \ No newline at end of file +}), 'PanoramaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaTwoTone.js b/packages/material-ui-icons/lib/PanoramaTwoTone.js index bb540a7fc6e25a..001fbe3bddac9b 100644 --- a/packages/material-ui-icons/lib/PanoramaTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h18V6H3v12zm5.5-5.5 2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z" -}, "1")], 'PanoramaTwoTone'); \ No newline at end of file +}, "1")], 'PanoramaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVertical.js b/packages/material-ui-icons/lib/PanoramaVertical.js index 80deeb2e1054dc..716b23f1cf978b 100644 --- a/packages/material-ui-icons/lib/PanoramaVertical.js +++ b/packages/material-ui-icons/lib/PanoramaVertical.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8H6.54z" -}), 'PanoramaVertical'); \ No newline at end of file +}), 'PanoramaVertical'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalOutlined.js b/packages/material-ui-icons/lib/PanoramaVerticalOutlined.js index 6d1d53b4efce18..0e127234a75914 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z" -}), 'PanoramaVerticalOutlined'); \ No newline at end of file +}), 'PanoramaVerticalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalRounded.js b/packages/material-ui-icons/lib/PanoramaVerticalRounded.js index 5bf576cc517d7d..90de02593a2725 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalRounded.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z" -}), 'PanoramaVerticalRounded'); \ No newline at end of file +}), 'PanoramaVerticalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalSelect.js b/packages/material-ui-icons/lib/PanoramaVerticalSelect.js index dc979aefa49791..f9f15df00b1e0c 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalSelect.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.93 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.05-.11.07-.22.07-.31 0-.34-.24-.57-.64-.57H4.62c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.7 8.91 5.7 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57 0-.1-.02-.2-.07-.31z" -}), 'PanoramaVerticalSelect'); \ No newline at end of file +}), 'PanoramaVerticalSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalSelectOutlined.js b/packages/material-ui-icons/lib/PanoramaVerticalSelectOutlined.js index 60cad5a71a25f6..c24324f1f67978 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalSelectOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 12c0-3.89.84-6.95 1.43-8.69.22-.64-.26-1.31-.95-1.31H5c-.68 0-1.16.66-.95 1.31C4.74 5.36 5.5 8.1 5.5 12c0 3.87-.76 6.66-1.45 8.69-.21.65.27 1.31.95 1.31h14c.68 0 1.17-.66.95-1.31-.68-2.03-1.45-4.83-1.45-8.69z" -}), 'PanoramaVerticalSelectOutlined'); \ No newline at end of file +}), 'PanoramaVerticalSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalSelectRounded.js b/packages/material-ui-icons/lib/PanoramaVerticalSelectRounded.js index 03655f770b17ed..6bdb3456b648ba 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalSelectRounded.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 12c0-3.89.84-6.95 1.43-8.69.22-.64-.26-1.31-.95-1.31H5c-.68 0-1.16.66-.95 1.31C4.74 5.36 5.5 8.1 5.5 12c0 3.87-.76 6.66-1.45 8.69-.21.65.27 1.31.95 1.31h14c.68 0 1.17-.66.95-1.31-.68-2.03-1.45-4.83-1.45-8.69z" -}), 'PanoramaVerticalSelectRounded'); \ No newline at end of file +}), 'PanoramaVerticalSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalSelectSharp.js b/packages/material-ui-icons/lib/PanoramaVerticalSelectSharp.js index 110732c36035b2..909eb9c369b873 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalSelectSharp.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.49 11.99c0-5.25 1.54-9.01 1.92-10H3.59c.76 2.16 1.9 5.21 1.9 10 0 4.78-1.17 7.91-1.9 10H20.4c-.74-2.08-1.91-5.23-1.91-10z" -}), 'PanoramaVerticalSelectSharp'); \ No newline at end of file +}), 'PanoramaVerticalSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalSelectTwoTone.js b/packages/material-ui-icons/lib/PanoramaVerticalSelectTwoTone.js index ea8058cf5ba282..a42afeb2124695 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalSelectTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalSelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 12c0-3.89.84-6.95 1.43-8.69.22-.64-.26-1.31-.95-1.31H5c-.68 0-1.16.66-.95 1.31C4.74 5.36 5.5 8.1 5.5 12c0 3.87-.76 6.66-1.45 8.69-.21.65.27 1.31.95 1.31h14c.68 0 1.17-.66.95-1.31-.68-2.03-1.45-4.83-1.45-8.69z" -}), 'PanoramaVerticalSelectTwoTone'); \ No newline at end of file +}), 'PanoramaVerticalSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalSharp.js b/packages/material-ui-icons/lib/PanoramaVerticalSharp.js index 9fa9ced90d84aa..69c65102f9057c 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalSharp.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.46 4c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.41 1.16 8H6.55c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.41-1.16-8h10.91m2.78-2H3.77s.26.77.3.88C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.04.11-.3.88-.3.88h16.47s-.26-.77-.3-.88c-1.09-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.3-.88.3-.88z" -}), 'PanoramaVerticalSharp'); \ No newline at end of file +}), 'PanoramaVerticalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaVerticalTwoTone.js b/packages/material-ui-icons/lib/PanoramaVerticalTwoTone.js index 6ab3fea9152625..6d8e66e8f9e138 100644 --- a/packages/material-ui-icons/lib/PanoramaVerticalTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaVerticalTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 4c.77 2.6 1.16 5.28 1.16 8 0 2.72-.39 5.4-1.16 8h10.91c-.77-2.6-1.16-5.28-1.16-8 0-2.72.39-5.4 1.16-8H6.54z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM17.45 20H6.54c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8z" -}, "1")], 'PanoramaVerticalTwoTone'); \ No newline at end of file +}, "1")], 'PanoramaVerticalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngle.js b/packages/material-ui-icons/lib/PanoramaWideAngle.js index cdfadf8a6d458d..72e042d9f34969 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngle.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" -}), 'PanoramaWideAngle'); \ No newline at end of file +}), 'PanoramaWideAngle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleOutlined.js b/packages/material-ui-icons/lib/PanoramaWideAngleOutlined.js index 8f6ca21b229dd3..4e49ee294b890a 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" -}), 'PanoramaWideAngleOutlined'); \ No newline at end of file +}), 'PanoramaWideAngleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleRounded.js b/packages/material-ui-icons/lib/PanoramaWideAngleRounded.js index e54e788e0150ac..189ada57b1fc43 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleRounded.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" -}), 'PanoramaWideAngleRounded'); \ No newline at end of file +}), 'PanoramaWideAngleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleSelect.js b/packages/material-ui-icons/lib/PanoramaWideAngleSelect.js index 029bf2c7ccd34f..452e6a4910f5eb 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleSelect.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" -}), 'PanoramaWideAngleSelect'); \ No newline at end of file +}), 'PanoramaWideAngleSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleSelectOutlined.js b/packages/material-ui-icons/lib/PanoramaWideAngleSelectOutlined.js index 3dec0f61285582..98c23aa0cccdf0 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleSelectOutlined.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z" -}), 'PanoramaWideAngleSelectOutlined'); \ No newline at end of file +}), 'PanoramaWideAngleSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleSelectRounded.js b/packages/material-ui-icons/lib/PanoramaWideAngleSelectRounded.js index 77f0e0f19b2c6b..5b883f8dbe5017 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleSelectRounded.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.06 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.06-1-7-2.15-.37-4.98-1-9-1z" -}), 'PanoramaWideAngleSelectRounded'); \ No newline at end of file +}), 'PanoramaWideAngleSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleSelectSharp.js b/packages/material-ui-icons/lib/PanoramaWideAngleSelectSharp.js index bb990e94d7f533..f64856df546ee9 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleSelectSharp.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z" -}), 'PanoramaWideAngleSelectSharp'); \ No newline at end of file +}), 'PanoramaWideAngleSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleSelectTwoTone.js b/packages/material-ui-icons/lib/PanoramaWideAngleSelectTwoTone.js index b24cc8dd6ab276..ddb1a419643b82 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleSelectTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleSelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z" -}), 'PanoramaWideAngleSelectTwoTone'); \ No newline at end of file +}), 'PanoramaWideAngleSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleSharp.js b/packages/material-ui-icons/lib/PanoramaWideAngleSharp.js index 725f1ff2cbf4f7..4ed56acdabb3f2 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleSharp.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" -}), 'PanoramaWideAngleSharp'); \ No newline at end of file +}), 'PanoramaWideAngleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PanoramaWideAngleTwoTone.js b/packages/material-ui-icons/lib/PanoramaWideAngleTwoTone.js index 41283a1c081b5c..b1fc1f303390aa 100644 --- a/packages/material-ui-icons/lib/PanoramaWideAngleTwoTone.js +++ b/packages/material-ui-icons/lib/PanoramaWideAngleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-2.45 0-4.71.2-7.29.64C4.24 8.42 4 10.22 4 12c0 1.78.24 3.58.71 5.36 2.58.44 4.84.64 7.29.64s4.71-.2 7.29-.64c.47-1.78.71-3.58.71-5.36 0-1.78-.24-3.58-.71-5.36C16.71 6.2 14.45 6 12 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.13 5.78-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4s-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22zm-1.84 11.58c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6s4.71.2 7.29.64c.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36z" -}, "1")], 'PanoramaWideAngleTwoTone'); \ No newline at end of file +}, "1")], 'PanoramaWideAngleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Paragliding.js b/packages/material-ui-icons/lib/Paragliding.js index 9d35ee3ea31186..80968b17a7b4bb 100644 --- a/packages/material-ui-icons/lib/Paragliding.js +++ b/packages/material-ui-icons/lib/Paragliding.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-3.48.94C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28c1.1-.14 2.28-.22 3.5-.22s2.4.08 3.5.22L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24 4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z" -}), 'Paragliding'); \ No newline at end of file +}), 'Paragliding'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParaglidingOutlined.js b/packages/material-ui-icons/lib/ParaglidingOutlined.js index a3fb8f0b647dc7..0ab22163114676 100644 --- a/packages/material-ui-icons/lib/ParaglidingOutlined.js +++ b/packages/material-ui-icons/lib/ParaglidingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.48.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94zM23 4.25v3.49c0 .8-.88 1.26-1.56.83-.14-.09-.28-.18-.44-.26L19 13h-2l-1.5-6.28c-1.1-.14-2.28-.22-3.5-.22s-2.4.08-3.5.22L7 13H5L3 8.31c-.16.08-.3.17-.44.26C1.88 9 1 8.55 1 7.74V4.25C1 1.9 5.92 0 12 0s11 1.9 11 4.25zM6.9 6.98c-.93.19-1.78.43-2.53.71l1.51 3.55L6.9 6.98zm12.73.71c-.75-.28-1.6-.52-2.53-.71l1.02 4.25 1.51-3.54zM21 4.31C20.65 3.63 17.57 2 12 2S3.35 3.63 3 4.31v1.77C5.34 5.07 8.56 4.5 12 4.5s6.66.57 9 1.58V4.31z" -}), 'ParaglidingOutlined'); \ No newline at end of file +}), 'ParaglidingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParaglidingRounded.js b/packages/material-ui-icons/lib/ParaglidingRounded.js index e6ac13c1b13c59..3319fc4fbe8b6e 100644 --- a/packages/material-ui-icons/lib/ParaglidingRounded.js +++ b/packages/material-ui-icons/lib/ParaglidingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.95-3c-.52 0-.94.4-.99.92-.2 2.03-1.05 2.68-1.48 3.02C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06c-.43-.34-1.28-.99-1.48-3.02-.05-.52-.47-.92-.99-.92-.59 0-1.06.51-1 1.09.22 2.08 1.07 3.47 2.24 4.41.5.4 1.1.7 1.7.9L9 24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.17-.94 2.03-2.32 2.24-4.41.07-.58-.41-1.09-.99-1.09zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28c1.1-.14 2.28-.22 3.5-.22s2.4.08 3.5.22L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24 4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z" -}), 'ParaglidingRounded'); \ No newline at end of file +}), 'ParaglidingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParaglidingSharp.js b/packages/material-ui-icons/lib/ParaglidingSharp.js index b511fbde7d11e9..2b7cb434db4b51 100644 --- a/packages/material-ui-icons/lib/ParaglidingSharp.js +++ b/packages/material-ui-icons/lib/ParaglidingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-3.48.94C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28c1.1-.14 2.28-.22 3.5-.22s2.4.08 3.5.22L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24 4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z" -}), 'ParaglidingSharp'); \ No newline at end of file +}), 'ParaglidingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParaglidingTwoTone.js b/packages/material-ui-icons/lib/ParaglidingTwoTone.js index 8a62492fc91367..a5b64f1ec3f1c9 100644 --- a/packages/material-ui-icons/lib/ParaglidingTwoTone.js +++ b/packages/material-ui-icons/lib/ParaglidingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4.31C20.65 3.63 17.57 2 12 2S3.35 3.63 3 4.31v1.77C5.34 5.07 8.56 4.5 12 4.5s6.66.57 9 1.58V4.31z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.48.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94zM23 4.25v3.49c0 .8-.88 1.26-1.56.83-.14-.09-.28-.18-.44-.26L19 13h-2l-1.5-6.28c-1.1-.14-2.28-.22-3.5-.22s-2.4.08-3.5.22L7 13H5L3 8.31c-.16.08-.3.17-.44.26C1.88 9 1 8.55 1 7.74V4.25C1 1.9 5.92 0 12 0s11 1.9 11 4.25zM6.9 6.98c-.93.19-1.78.43-2.53.71l1.51 3.55L6.9 6.98zm12.73.71c-.75-.28-1.6-.52-2.53-.71l1.02 4.25 1.51-3.54zM21 4.31C20.65 3.63 17.57 2 12 2S3.35 3.63 3 4.31v1.77C5.34 5.07 8.56 4.5 12 4.5s6.66.57 9 1.58V4.31z" -}, "1")], 'ParaglidingTwoTone'); \ No newline at end of file +}, "1")], 'ParaglidingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Park.js b/packages/material-ui-icons/lib/Park.js index 4367c51766cc41..02271b94080200 100644 --- a/packages/material-ui-icons/lib/Park.js +++ b/packages/material-ui-icons/lib/Park.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.96v-4H21z" -}), 'Park'); \ No newline at end of file +}), 'Park'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParkOutlined.js b/packages/material-ui-icons/lib/ParkOutlined.js index dfb6ceabadd817..f8c870048f22c6 100644 --- a/packages/material-ui-icons/lib/ParkOutlined.js +++ b/packages/material-ui-icons/lib/ParkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.95v-4H21l-4-6zM6.79 16l3.9-6H8.88l3.13-4.5 3.15 4.5h-1.9l4 6H6.79z" -}), 'ParkOutlined'); \ No newline at end of file +}), 'ParkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParkRounded.js b/packages/material-ui-icons/lib/ParkRounded.js index 1af3a88c72ad72..5e957bdbf87199 100644 --- a/packages/material-ui-icons/lib/ParkRounded.js +++ b/packages/material-ui-icons/lib/ParkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.96 12h.08c.81 0 1.28-.91.82-1.57l-5.08-7.25c-.4-.57-1.24-.57-1.64 0L6.1 10.43c-.46.66.02 1.57.83 1.57h.04l-2.9 4.46c-.44.66.04 1.54.84 1.54h5.08v2.02c0 1.09.89 1.98 1.98 1.98 1.09 0 1.98-.89 1.98-1.98V18h5.15c.8 0 1.28-.89.83-1.55L16.96 12z" -}), 'ParkRounded'); \ No newline at end of file +}), 'ParkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParkSharp.js b/packages/material-ui-icons/lib/ParkSharp.js index 0bab5855875567..f3ce5cd73d3ac3 100644 --- a/packages/material-ui-icons/lib/ParkSharp.js +++ b/packages/material-ui-icons/lib/ParkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.96v-4H21z" -}), 'ParkSharp'); \ No newline at end of file +}), 'ParkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ParkTwoTone.js b/packages/material-ui-icons/lib/ParkTwoTone.js index 8121088348f2fa..bc2d9a89300b02 100644 --- a/packages/material-ui-icons/lib/ParkTwoTone.js +++ b/packages/material-ui-icons/lib/ParkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.26 10h1.9l-3.15-4.5L8.88 10h1.81l-3.9 6h10.47z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.95v-4H21l-4-6zM6.79 16l3.9-6H8.88l3.13-4.5 3.15 4.5h-1.9l4 6H6.79z" -}, "1")], 'ParkTwoTone'); \ No newline at end of file +}, "1")], 'ParkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PartyMode.js b/packages/material-ui-icons/lib/PartyMode.js index 875ca4bfe15530..6944c792fc34b0 100644 --- a/packages/material-ui-icons/lib/PartyMode.js +++ b/packages/material-ui-icons/lib/PartyMode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z" -}), 'PartyMode'); \ No newline at end of file +}), 'PartyMode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PartyModeOutlined.js b/packages/material-ui-icons/lib/PartyModeOutlined.js index 7b634b890f315a..9a878782556228 100644 --- a/packages/material-ui-icons/lib/PartyModeOutlined.js +++ b/packages/material-ui-icons/lib/PartyModeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z" -}), 'PartyModeOutlined'); \ No newline at end of file +}), 'PartyModeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PartyModeRounded.js b/packages/material-ui-icons/lib/PartyModeRounded.js index 5f75ecce9e912d..3dce09d78845a8 100644 --- a/packages/material-ui-icons/lib/PartyModeRounded.js +++ b/packages/material-ui-icons/lib/PartyModeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z" -}), 'PartyModeRounded'); \ No newline at end of file +}), 'PartyModeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PartyModeSharp.js b/packages/material-ui-icons/lib/PartyModeSharp.js index da392495b025e1..92d2657ce31943 100644 --- a/packages/material-ui-icons/lib/PartyModeSharp.js +++ b/packages/material-ui-icons/lib/PartyModeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 7c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z" -}), 'PartyModeSharp'); \ No newline at end of file +}), 'PartyModeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PartyModeTwoTone.js b/packages/material-ui-icons/lib/PartyModeTwoTone.js index de55e03a01012b..95525e6864e757 100644 --- a/packages/material-ui-icons/lib/PartyModeTwoTone.js +++ b/packages/material-ui-icons/lib/PartyModeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.95 6-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6h-4.05zM7 12c0-2.76 2.24-5 5-5 1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1zm10 0c0 2.76-2.24 5-5 5-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z" -}, "1")], 'PartyModeTwoTone'); \ No newline at end of file +}, "1")], 'PartyModeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Password.js b/packages/material-ui-icons/lib/Password.js index 4dbc91516f45d4..cc454e4bdd2ab8 100644 --- a/packages/material-ui-icons/lib/Password.js +++ b/packages/material-ui-icons/lib/Password.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" -}), 'Password'); \ No newline at end of file +}), 'Password'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PasswordOutlined.js b/packages/material-ui-icons/lib/PasswordOutlined.js index b6026e41763219..573db64fe3f2d2 100644 --- a/packages/material-ui-icons/lib/PasswordOutlined.js +++ b/packages/material-ui-icons/lib/PasswordOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" -}), 'PasswordOutlined'); \ No newline at end of file +}), 'PasswordOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PasswordRounded.js b/packages/material-ui-icons/lib/PasswordRounded.js index 310a06511b72a2..61ad582ae4fd98 100644 --- a/packages/material-ui-icons/lib/PasswordRounded.js +++ b/packages/material-ui-icons/lib/PasswordRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1zm-.5-4.43c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.49-.84h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H5.3l.47-.82c.21-.36.09-.82-.27-1.03-.36-.2-.82-.08-1.03.28L4 8.47l-.47-.82c-.21-.36-.67-.48-1.03-.28-.36.21-.48.67-.27 1.03l.47.82h-.95c-.41 0-.75.34-.75.75s.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02zm8 0c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.96l.47-.82c.21-.36.08-.82-.27-1.03-.36-.21-.82-.08-1.02.27l-.48.82-.47-.82c-.21-.36-.67-.48-1.02-.27-.36.21-.48.67-.27 1.03l.47.82h-.96c-.41-.01-.75.33-.75.74s.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02zM23 9.97c0-.41-.34-.75-.75-.75h-.95l.47-.82c.21-.36.08-.82-.27-1.03-.36-.21-.82-.08-1.02.27l-.48.83-.47-.82c-.21-.36-.67-.48-1.02-.27-.36.21-.48.67-.27 1.03l.47.82h-.95c-.42-.01-.76.33-.76.74s.34.75.75.75h.95l-.48.83c-.21.36-.08.82.28 1.02.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.4-.01.74-.35.74-.76z" -}), 'PasswordRounded'); \ No newline at end of file +}), 'PasswordRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PasswordSharp.js b/packages/material-ui-icons/lib/PasswordSharp.js index 48c16c4d522d68..9e824ec375b9a3 100644 --- a/packages/material-ui-icons/lib/PasswordSharp.js +++ b/packages/material-ui-icons/lib/PasswordSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" -}), 'PasswordSharp'); \ No newline at end of file +}), 'PasswordSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PasswordTwoTone.js b/packages/material-ui-icons/lib/PasswordTwoTone.js index eda3769e064f67..623b7ed774fd23 100644 --- a/packages/material-ui-icons/lib/PasswordTwoTone.js +++ b/packages/material-ui-icons/lib/PasswordTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" -}), 'PasswordTwoTone'); \ No newline at end of file +}), 'PasswordTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pattern.js b/packages/material-ui-icons/lib/Pattern.js index a4ca012e1828d2..67cced684a96cf 100644 --- a/packages/material-ui-icons/lib/Pattern.js +++ b/packages/material-ui-icons/lib/Pattern.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" -}), 'Pattern'); \ No newline at end of file +}), 'Pattern'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PatternOutlined.js b/packages/material-ui-icons/lib/PatternOutlined.js index 2f53271cd788db..3f9010fd195cc8 100644 --- a/packages/material-ui-icons/lib/PatternOutlined.js +++ b/packages/material-ui-icons/lib/PatternOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" -}), 'PatternOutlined'); \ No newline at end of file +}), 'PatternOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PatternRounded.js b/packages/material-ui-icons/lib/PatternRounded.js index 1dd1b12e09847c..eeb303095fd170 100644 --- a/packages/material-ui-icons/lib/PatternRounded.js +++ b/packages/material-ui-icons/lib/PatternRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" -}), 'PatternRounded'); \ No newline at end of file +}), 'PatternRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PatternSharp.js b/packages/material-ui-icons/lib/PatternSharp.js index 22219dd7f00a51..17c083bfd9ccd8 100644 --- a/packages/material-ui-icons/lib/PatternSharp.js +++ b/packages/material-ui-icons/lib/PatternSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" -}), 'PatternSharp'); \ No newline at end of file +}), 'PatternSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PatternTwoTone.js b/packages/material-ui-icons/lib/PatternTwoTone.js index 98b9c8c6c1a979..db1927fe4a0699 100644 --- a/packages/material-ui-icons/lib/PatternTwoTone.js +++ b/packages/material-ui-icons/lib/PatternTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" -}), 'PatternTwoTone'); \ No newline at end of file +}), 'PatternTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pause.js b/packages/material-ui-icons/lib/Pause.js index 0d6c5ad24844ad..6a1e26205a403f 100644 --- a/packages/material-ui-icons/lib/Pause.js +++ b/packages/material-ui-icons/lib/Pause.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" -}), 'Pause'); \ No newline at end of file +}), 'Pause'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircle.js b/packages/material-ui-icons/lib/PauseCircle.js index d814db3746b236..a901800e016a9c 100644 --- a/packages/material-ui-icons/lib/PauseCircle.js +++ b/packages/material-ui-icons/lib/PauseCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" -}), 'PauseCircle'); \ No newline at end of file +}), 'PauseCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleFilled.js b/packages/material-ui-icons/lib/PauseCircleFilled.js index 2e7258937342e3..d4f30d97301460 100644 --- a/packages/material-ui-icons/lib/PauseCircleFilled.js +++ b/packages/material-ui-icons/lib/PauseCircleFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" -}), 'PauseCircleFilled'); \ No newline at end of file +}), 'PauseCircleFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleFilledOutlined.js b/packages/material-ui-icons/lib/PauseCircleFilledOutlined.js index 3e7a28a257828f..8d8fe24cb746f5 100644 --- a/packages/material-ui-icons/lib/PauseCircleFilledOutlined.js +++ b/packages/material-ui-icons/lib/PauseCircleFilledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" -}), 'PauseCircleFilledOutlined'); \ No newline at end of file +}), 'PauseCircleFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleFilledRounded.js b/packages/material-ui-icons/lib/PauseCircleFilledRounded.js index 6c0dd0d7ee4c9e..62b03a923a78cd 100644 --- a/packages/material-ui-icons/lib/PauseCircleFilledRounded.js +++ b/packages/material-ui-icons/lib/PauseCircleFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1z" -}), 'PauseCircleFilledRounded'); \ No newline at end of file +}), 'PauseCircleFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleFilledSharp.js b/packages/material-ui-icons/lib/PauseCircleFilledSharp.js index 3297695d81af5d..3e7fe685ce25f9 100644 --- a/packages/material-ui-icons/lib/PauseCircleFilledSharp.js +++ b/packages/material-ui-icons/lib/PauseCircleFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" -}), 'PauseCircleFilledSharp'); \ No newline at end of file +}), 'PauseCircleFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleFilledTwoTone.js b/packages/material-ui-icons/lib/PauseCircleFilledTwoTone.js index 41ff8c991bfe25..b7d1ecdd7fc9dc 100644 --- a/packages/material-ui-icons/lib/PauseCircleFilledTwoTone.js +++ b/packages/material-ui-icons/lib/PauseCircleFilledTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 12H9V8h2v8zm4 0h-2V8h2v8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8h2v8h-2zM9 8h2v8H9z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "2")], 'PauseCircleFilledTwoTone'); \ No newline at end of file +}, "2")], 'PauseCircleFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleOutline.js b/packages/material-ui-icons/lib/PauseCircleOutline.js index 3259644097d930..12a953c066b848 100644 --- a/packages/material-ui-icons/lib/PauseCircleOutline.js +++ b/packages/material-ui-icons/lib/PauseCircleOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" -}), 'PauseCircleOutline'); \ No newline at end of file +}), 'PauseCircleOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleOutlineOutlined.js b/packages/material-ui-icons/lib/PauseCircleOutlineOutlined.js index ef88a51c453691..7ce901a7c37cdc 100644 --- a/packages/material-ui-icons/lib/PauseCircleOutlineOutlined.js +++ b/packages/material-ui-icons/lib/PauseCircleOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" -}), 'PauseCircleOutlineOutlined'); \ No newline at end of file +}), 'PauseCircleOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleOutlineRounded.js b/packages/material-ui-icons/lib/PauseCircleOutlineRounded.js index 2ce8d8c2c2e002..c52e4309109117 100644 --- a/packages/material-ui-icons/lib/PauseCircleOutlineRounded.js +++ b/packages/material-ui-icons/lib/PauseCircleOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1zm2-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm2-4c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z" -}), 'PauseCircleOutlineRounded'); \ No newline at end of file +}), 'PauseCircleOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleOutlineSharp.js b/packages/material-ui-icons/lib/PauseCircleOutlineSharp.js index bab35851e47358..e733c22c219e67 100644 --- a/packages/material-ui-icons/lib/PauseCircleOutlineSharp.js +++ b/packages/material-ui-icons/lib/PauseCircleOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" -}), 'PauseCircleOutlineSharp'); \ No newline at end of file +}), 'PauseCircleOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/PauseCircleOutlineTwoTone.js index 48d6ce84d6ab56..dddca1d6f6821f 100644 --- a/packages/material-ui-icons/lib/PauseCircleOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/PauseCircleOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8h2v8h-2zM9 8h2v8H9zm3 14c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" -}), 'PauseCircleOutlineTwoTone'); \ No newline at end of file +}), 'PauseCircleOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleOutlined.js b/packages/material-ui-icons/lib/PauseCircleOutlined.js index 86a90671ca27b0..d8789d42b6fbb8 100644 --- a/packages/material-ui-icons/lib/PauseCircleOutlined.js +++ b/packages/material-ui-icons/lib/PauseCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" -}), 'PauseCircleOutlined'); \ No newline at end of file +}), 'PauseCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleRounded.js b/packages/material-ui-icons/lib/PauseCircleRounded.js index 4771ae8b0c6865..b19cc40387892e 100644 --- a/packages/material-ui-icons/lib/PauseCircleRounded.js +++ b/packages/material-ui-icons/lib/PauseCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1z" -}), 'PauseCircleRounded'); \ No newline at end of file +}), 'PauseCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleSharp.js b/packages/material-ui-icons/lib/PauseCircleSharp.js index e8f89244b55f7f..eab35bc33b7839 100644 --- a/packages/material-ui-icons/lib/PauseCircleSharp.js +++ b/packages/material-ui-icons/lib/PauseCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" -}), 'PauseCircleSharp'); \ No newline at end of file +}), 'PauseCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseCircleTwoTone.js b/packages/material-ui-icons/lib/PauseCircleTwoTone.js index 623682cf337db7..16b313541801d4 100644 --- a/packages/material-ui-icons/lib/PauseCircleTwoTone.js +++ b/packages/material-ui-icons/lib/PauseCircleTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 12H9V8h2v8zm4 0h-2V8h2v8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8h2v8h-2zM9 8h2v8H9z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "2")], 'PauseCircleTwoTone'); \ No newline at end of file +}, "2")], 'PauseCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseOutlined.js b/packages/material-ui-icons/lib/PauseOutlined.js index 47ba9d7eaf7615..56b33be9f0bc65 100644 --- a/packages/material-ui-icons/lib/PauseOutlined.js +++ b/packages/material-ui-icons/lib/PauseOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" -}), 'PauseOutlined'); \ No newline at end of file +}), 'PauseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PausePresentation.js b/packages/material-ui-icons/lib/PausePresentation.js index a05f5098e16326..5dfd1fb8f3bd47 100644 --- a/packages/material-ui-icons/lib/PausePresentation.js +++ b/packages/material-ui-icons/lib/PausePresentation.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8h2v8H9zm4 0h2v8h-2z" -}, "1")], 'PausePresentation'); \ No newline at end of file +}, "1")], 'PausePresentation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PausePresentationOutlined.js b/packages/material-ui-icons/lib/PausePresentationOutlined.js index cc5f86925b3c6a..a0ef092b97c736 100644 --- a/packages/material-ui-icons/lib/PausePresentationOutlined.js +++ b/packages/material-ui-icons/lib/PausePresentationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .85-2 1.95v14c0 1.1.9 2.05 2 2.05h18c1.1 0 2-.95 2-2.05v-14C23 3.85 22.1 3 21 3zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" -}), 'PausePresentationOutlined'); \ No newline at end of file +}), 'PausePresentationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PausePresentationRounded.js b/packages/material-ui-icons/lib/PausePresentationRounded.js index 6d8c0157cf4e4c..3ef0ec54d9bdb4 100644 --- a/packages/material-ui-icons/lib/PausePresentationRounded.js +++ b/packages/material-ui-icons/lib/PausePresentationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12zM10 8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1zm4 0c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1z" -}), 'PausePresentationRounded'); \ No newline at end of file +}), 'PausePresentationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PausePresentationSharp.js b/packages/material-ui-icons/lib/PausePresentationSharp.js index 14d4e2802d6de8..702514cd68abd8 100644 --- a/packages/material-ui-icons/lib/PausePresentationSharp.js +++ b/packages/material-ui-icons/lib/PausePresentationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" -}), 'PausePresentationSharp'); \ No newline at end of file +}), 'PausePresentationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PausePresentationTwoTone.js b/packages/material-ui-icons/lib/PausePresentationTwoTone.js index cc76d054657f0e..5d1926cbfba064 100644 --- a/packages/material-ui-icons/lib/PausePresentationTwoTone.js +++ b/packages/material-ui-icons/lib/PausePresentationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V5H3v14zM13 8h2v8h-2V8zM9 8h2v8H9V8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" -}, "1")], 'PausePresentationTwoTone'); \ No newline at end of file +}, "1")], 'PausePresentationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseRounded.js b/packages/material-ui-icons/lib/PauseRounded.js index 02423e3f553d1f..a680b757d330bc 100644 --- a/packages/material-ui-icons/lib/PauseRounded.js +++ b/packages/material-ui-icons/lib/PauseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 19c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2v10c0 1.1.9 2 2 2zm6-12v10c0 1.1.9 2 2 2s2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2z" -}), 'PauseRounded'); \ No newline at end of file +}), 'PauseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseSharp.js b/packages/material-ui-icons/lib/PauseSharp.js index 9fb82f27007d61..72b022e7f63836 100644 --- a/packages/material-ui-icons/lib/PauseSharp.js +++ b/packages/material-ui-icons/lib/PauseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" -}), 'PauseSharp'); \ No newline at end of file +}), 'PauseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PauseTwoTone.js b/packages/material-ui-icons/lib/PauseTwoTone.js index e311d217565473..3c764db6cacbc5 100644 --- a/packages/material-ui-icons/lib/PauseTwoTone.js +++ b/packages/material-ui-icons/lib/PauseTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 5h4v14H6zm8 0h4v14h-4z" -}), 'PauseTwoTone'); \ No newline at end of file +}), 'PauseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Payment.js b/packages/material-ui-icons/lib/Payment.js index 383c3ff545c466..357c1506541634 100644 --- a/packages/material-ui-icons/lib/Payment.js +++ b/packages/material-ui-icons/lib/Payment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" -}), 'Payment'); \ No newline at end of file +}), 'Payment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentOutlined.js b/packages/material-ui-icons/lib/PaymentOutlined.js index 64af4d2ab88442..31d0aff65dad91 100644 --- a/packages/material-ui-icons/lib/PaymentOutlined.js +++ b/packages/material-ui-icons/lib/PaymentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" -}), 'PaymentOutlined'); \ No newline at end of file +}), 'PaymentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentRounded.js b/packages/material-ui-icons/lib/PaymentRounded.js index 05cf20f96e015a..4c8ececad826be 100644 --- a/packages/material-ui-icons/lib/PaymentRounded.js +++ b/packages/material-ui-icons/lib/PaymentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v1z" -}), 'PaymentRounded'); \ No newline at end of file +}), 'PaymentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentSharp.js b/packages/material-ui-icons/lib/PaymentSharp.js index 4fd010ba9cb3ae..5416187e7e8676 100644 --- a/packages/material-ui-icons/lib/PaymentSharp.js +++ b/packages/material-ui-icons/lib/PaymentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z" -}), 'PaymentSharp'); \ No newline at end of file +}), 'PaymentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentTwoTone.js b/packages/material-ui-icons/lib/PaymentTwoTone.js index 02b7a80badb24a..d887dc30d51d04 100644 --- a/packages/material-ui-icons/lib/PaymentTwoTone.js +++ b/packages/material-ui-icons/lib/PaymentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16v2H4zm0 6h16v6H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" -}, "1")], 'PaymentTwoTone'); \ No newline at end of file +}, "1")], 'PaymentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Payments.js b/packages/material-ui-icons/lib/Payments.js index 4b74413d632ec0..2dcf36ab8ef2da 100644 --- a/packages/material-ui-icons/lib/Payments.js +++ b/packages/material-ui-icons/lib/Payments.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9-1c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-6v11c0 1.1-.9 2-2 2H4v-2h17V7h2z" -}), 'Payments'); \ No newline at end of file +}), 'Payments'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentsOutlined.js b/packages/material-ui-icons/lib/PaymentsOutlined.js index 50ee45c278c1e3..44d1e2eba987da 100644 --- a/packages/material-ui-icons/lib/PaymentsOutlined.js +++ b/packages/material-ui-icons/lib/PaymentsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H3V6h14v8zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm13 0v11c0 1.1-.9 2-2 2H4v-2h17V7h2z" -}), 'PaymentsOutlined'); \ No newline at end of file +}), 'PaymentsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentsRounded.js b/packages/material-ui-icons/lib/PaymentsRounded.js index a153a09fe6fb40..7bce9395806cd0 100644 --- a/packages/material-ui-icons/lib/PaymentsRounded.js +++ b/packages/material-ui-icons/lib/PaymentsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8v10c0 1.1-.9 2-2 2H5c-.55 0-1-.45-1-1s.45-1 1-1h16V8c0-.55.45-1 1-1s1 .45 1 1zM4 16c-1.66 0-3-1.34-3-3V7c0-1.66 1.34-3 3-3h12c1.66 0 3 1.34 3 3v7c0 1.1-.9 2-2 2H4zm3-6c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" -}), 'PaymentsRounded'); \ No newline at end of file +}), 'PaymentsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentsSharp.js b/packages/material-ui-icons/lib/PaymentsSharp.js index cc661604999d5d..2aecd90e3ae692 100644 --- a/packages/material-ui-icons/lib/PaymentsSharp.js +++ b/packages/material-ui-icons/lib/PaymentsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 7v13H4v-2h17V7h2zm-4 9H1V4h18v12zm-6-6c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" -}), 'PaymentsSharp'); \ No newline at end of file +}), 'PaymentsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PaymentsTwoTone.js b/packages/material-ui-icons/lib/PaymentsTwoTone.js index 0b9ebec5bb16c1..e13c66adaa12e9 100644 --- a/packages/material-ui-icons/lib/PaymentsTwoTone.js +++ b/packages/material-ui-icons/lib/PaymentsTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6H3v8h14V6zm-7 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 14V6h14v8H3z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm13 0v11c0 1.1-.9 2-2 2H4v-2h17V7h2z" -}, "2")], 'PaymentsTwoTone'); \ No newline at end of file +}, "2")], 'PaymentsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PedalBike.js b/packages/material-ui-icons/lib/PedalBike.js index ebb62a60f4e75c..ca6c5168027dbf 100644 --- a/packages/material-ui-icons/lib/PedalBike.js +++ b/packages/material-ui-icons/lib/PedalBike.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H12v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}), 'PedalBike'); \ No newline at end of file +}), 'PedalBike'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PedalBikeOutlined.js b/packages/material-ui-icons/lib/PedalBikeOutlined.js index 62030dd3edf796..0ae3bc3d4c1222 100644 --- a/packages/material-ui-icons/lib/PedalBikeOutlined.js +++ b/packages/material-ui-icons/lib/PedalBikeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H12v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}), 'PedalBikeOutlined'); \ No newline at end of file +}), 'PedalBikeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PedalBikeRounded.js b/packages/material-ui-icons/lib/PedalBikeRounded.js index 8861507854338c..fa637d5323c981 100644 --- a/packages/material-ui-icons/lib/PedalBikeRounded.js +++ b/packages/material-ui-icons/lib/PedalBikeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H13c-.55 0-1 .45-1 1s.45 1 1 1h1.6l1.46 4h-4.81l-.36-1h.09c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1h.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.42 1.23-1.6 2.08-3.02 1.99-1.49-.09-2.73-1.35-2.8-2.85C1.93 13.39 3.27 12 5 12c1.33 0 2.42.83 2.82 2H6c-.55 0-1 .45-1 1s.45 1 1 1h1.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.78 4c-1.54-.06-2.84-1.37-2.88-2.92-.02-.96.39-1.8 1.05-2.36l.62 1.7c.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28l-.63-1.73.01-.01c1.72-.04 3.08 1.29 3.08 3-.01 1.72-1.39 3.06-3.13 3z" -}), 'PedalBikeRounded'); \ No newline at end of file +}), 'PedalBikeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PedalBikeSharp.js b/packages/material-ui-icons/lib/PedalBikeSharp.js index b7492dbb44a0d6..aff68ea230a140 100644 --- a/packages/material-ui-icons/lib/PedalBikeSharp.js +++ b/packages/material-ui-icons/lib/PedalBikeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.18 10 16 4h-4v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}), 'PedalBikeSharp'); \ No newline at end of file +}), 'PedalBikeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PedalBikeTwoTone.js b/packages/material-ui-icons/lib/PedalBikeTwoTone.js index 73f6f9cccc3af2..68e1c9f0bb2fa5 100644 --- a/packages/material-ui-icons/lib/PedalBikeTwoTone.js +++ b/packages/material-ui-icons/lib/PedalBikeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H12v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" -}), 'PedalBikeTwoTone'); \ No newline at end of file +}), 'PedalBikeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pending.js b/packages/material-ui-icons/lib/Pending.js index 30b1dfb6b69d33..0238d7025d2699 100644 --- a/packages/material-ui-icons/lib/Pending.js +++ b/packages/material-ui-icons/lib/Pending.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'Pending'); \ No newline at end of file +}), 'Pending'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingActions.js b/packages/material-ui-icons/lib/PendingActions.js index 978631a1414f13..334197388374a6 100644 --- a/packages/material-ui-icons/lib/PendingActions.js +++ b/packages/material-ui-icons/lib/PendingActions.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PendingActions'); \ No newline at end of file +}), 'PendingActions'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingActionsOutlined.js b/packages/material-ui-icons/lib/PendingActionsOutlined.js index 8f1fe7a61f7d1a..3a7bfe7562fab4 100644 --- a/packages/material-ui-icons/lib/PendingActionsOutlined.js +++ b/packages/material-ui-icons/lib/PendingActionsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PendingActionsOutlined'); \ No newline at end of file +}), 'PendingActionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingActionsRounded.js b/packages/material-ui-icons/lib/PendingActionsRounded.js index 1b20d7a064fd4a..ef831dc06a9d74 100644 --- a/packages/material-ui-icons/lib/PendingActionsRounded.js +++ b/packages/material-ui-icons/lib/PendingActionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v1c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.29 7-1.65-1.65c-.09-.09-.15-.22-.15-.35v-2.49c0-.28.22-.5.5-.5s.5.22.5.5v2.29l1.5 1.5c.2.2.2.51 0 .71-.19.19-.5.19-.7-.01z" -}), 'PendingActionsRounded'); \ No newline at end of file +}), 'PendingActionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingActionsSharp.js b/packages/material-ui-icons/lib/PendingActionsSharp.js index 27c78f8dc77684..0804a2091768ec 100644 --- a/packages/material-ui-icons/lib/PendingActionsSharp.js +++ b/packages/material-ui-icons/lib/PendingActionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM20 3h-5.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H4v19h8.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V3zm-8 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PendingActionsSharp'); \ No newline at end of file +}), 'PendingActionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingActionsTwoTone.js b/packages/material-ui-icons/lib/PendingActionsTwoTone.js index 47fa3a0846ddaa..4473e74e23a9e4 100644 --- a/packages/material-ui-icons/lib/PendingActionsTwoTone.js +++ b/packages/material-ui-icons/lib/PendingActionsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.65 19.35 16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM17 10c.34 0 .67.03 1 .08V5h-2v3H8V5H6v15h4.68c-.43-.91-.68-1.92-.68-3 0-3.87 3.13-7 7-7zm-5-5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'PendingActionsTwoTone'); \ No newline at end of file +}, "1")], 'PendingActionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingOutlined.js b/packages/material-ui-icons/lib/PendingOutlined.js index d3825658583d17..4d993c3354d31e 100644 --- a/packages/material-ui-icons/lib/PendingOutlined.js +++ b/packages/material-ui-icons/lib/PendingOutlined.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "12", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "12", r: "1.5" -}, "3")], 'PendingOutlined'); \ No newline at end of file +}, "3")], 'PendingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingRounded.js b/packages/material-ui-icons/lib/PendingRounded.js index 5da37cea253ea8..13cc4bb4bfda8d 100644 --- a/packages/material-ui-icons/lib/PendingRounded.js +++ b/packages/material-ui-icons/lib/PendingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PendingRounded'); \ No newline at end of file +}), 'PendingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingSharp.js b/packages/material-ui-icons/lib/PendingSharp.js index 74f6f95743cdde..e5e2eef54bbc1c 100644 --- a/packages/material-ui-icons/lib/PendingSharp.js +++ b/packages/material-ui-icons/lib/PendingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PendingSharp'); \ No newline at end of file +}), 'PendingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PendingTwoTone.js b/packages/material-ui-icons/lib/PendingTwoTone.js index 3546763829f0b8..54734930330320 100644 --- a/packages/material-ui-icons/lib/PendingTwoTone.js +++ b/packages/material-ui-icons/lib/PendingTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-5 9.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "12", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "12", r: "1.5" -}, "4")], 'PendingTwoTone'); \ No newline at end of file +}, "4")], 'PendingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/People.js b/packages/material-ui-icons/lib/People.js index e2886f2bf24984..6b46065a2b34b7 100644 --- a/packages/material-ui-icons/lib/People.js +++ b/packages/material-ui-icons/lib/People.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" -}), 'People'); \ No newline at end of file +}), 'People'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleAlt.js b/packages/material-ui-icons/lib/PeopleAlt.js index dbcdb117b02c0d..3847ab5f3b31a2 100644 --- a/packages/material-ui-icons/lib/PeopleAlt.js +++ b/packages/material-ui-icons/lib/PeopleAlt.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "4", fillRule: "evenodd" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" -}, "2")], 'PeopleAlt'); \ No newline at end of file +}, "2")], 'PeopleAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleAltOutlined.js b/packages/material-ui-icons/lib/PeopleAltOutlined.js index eb4203f84b1c1b..29b5e94839df0a 100644 --- a/packages/material-ui-icons/lib/PeopleAltOutlined.js +++ b/packages/material-ui-icons/lib/PeopleAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87zM15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 0c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H3v-.99C3.2 16.29 6.3 15 9 15s5.8 1.29 6 2v1z" -}), 'PeopleAltOutlined'); \ No newline at end of file +}), 'PeopleAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleAltRounded.js b/packages/material-ui-icons/lib/PeopleAltRounded.js index 7f8aab9562c329..5cb2f7a4bb359a 100644 --- a/packages/material-ui-icons/lib/PeopleAltRounded.js +++ b/packages/material-ui-icons/lib/PeopleAltRounded.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h3c.55 0 1-.45 1-1v-2c0-2.18-3.57-3.47-6.33-3.87z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "4", fillRule: "evenodd" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4z" -}, "2")], 'PeopleAltRounded'); \ No newline at end of file +}, "2")], 'PeopleAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleAltSharp.js b/packages/material-ui-icons/lib/PeopleAltSharp.js index 19c30f3d041a2d..e4259c88ee65ca 100644 --- a/packages/material-ui-icons/lib/PeopleAltSharp.js +++ b/packages/material-ui-icons/lib/PeopleAltSharp.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "4", fillRule: "evenodd" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" -}, "2")], 'PeopleAltSharp'); \ No newline at end of file +}, "2")], 'PeopleAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleAltTwoTone.js b/packages/material-ui-icons/lib/PeopleAltTwoTone.js index 920921c38597af..f03c636951d0fc 100644 --- a/packages/material-ui-icons/lib/PeopleAltTwoTone.js +++ b/packages/material-ui-icons/lib/PeopleAltTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87zM15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 0c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H3v-.99C3.2 16.29 6.3 15 9 15s5.8 1.29 6 2v1z" -}, "2")], 'PeopleAltTwoTone'); \ No newline at end of file +}, "2")], 'PeopleAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleOutline.js b/packages/material-ui-icons/lib/PeopleOutline.js index 9abbae48769cdf..10e1f3452f8335 100644 --- a/packages/material-ui-icons/lib/PeopleOutline.js +++ b/packages/material-ui-icons/lib/PeopleOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 13c-1.2 0-3.07.34-4.5 1-1.43-.67-3.3-1-4.5-1C5.33 13 1 14.08 1 16.25V19h22v-2.75c0-2.17-4.33-3.25-6.5-3.25zm-4 4.5h-10v-1.25c0-.54 2.56-1.75 5-1.75s5 1.21 5 1.75v1.25zm9 0H14v-1.25c0-.46-.2-.86-.52-1.22.88-.3 1.96-.53 3.02-.53 2.44 0 5 1.21 5 1.75v1.25zM7.5 12c1.93 0 3.5-1.57 3.5-3.5S9.43 5 7.5 5 4 6.57 4 8.5 5.57 12 7.5 12zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 5.5c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" -}), 'PeopleOutline'); \ No newline at end of file +}), 'PeopleOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleOutlineOutlined.js b/packages/material-ui-icons/lib/PeopleOutlineOutlined.js index b529f021acc777..453d12471f9288 100644 --- a/packages/material-ui-icons/lib/PeopleOutlineOutlined.js +++ b/packages/material-ui-icons/lib/PeopleOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}), 'PeopleOutlineOutlined'); \ No newline at end of file +}), 'PeopleOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleOutlineRounded.js b/packages/material-ui-icons/lib/PeopleOutlineRounded.js index 7fa0d6374fea5e..ed3dbfcbefa358 100644 --- a/packages/material-ui-icons/lib/PeopleOutlineRounded.js +++ b/packages/material-ui-icons/lib/PeopleOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h3c.55 0 1-.45 1-1v-.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}), 'PeopleOutlineRounded'); \ No newline at end of file +}), 'PeopleOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleOutlineSharp.js b/packages/material-ui-icons/lib/PeopleOutlineSharp.js index 0045ef36e78a23..2f6a41c2d461ce 100644 --- a/packages/material-ui-icons/lib/PeopleOutlineSharp.js +++ b/packages/material-ui-icons/lib/PeopleOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}), 'PeopleOutlineSharp'); \ No newline at end of file +}), 'PeopleOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleOutlineTwoTone.js b/packages/material-ui-icons/lib/PeopleOutlineTwoTone.js index c861cd4c2ef806..77ab3c8eb9a85f 100644 --- a/packages/material-ui-icons/lib/PeopleOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/PeopleOutlineTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8.5", r: "1.5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}, "2")], 'PeopleOutlineTwoTone'); \ No newline at end of file +}, "2")], 'PeopleOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleOutlined.js b/packages/material-ui-icons/lib/PeopleOutlined.js index 75aacff544782a..eb8635bb010211 100644 --- a/packages/material-ui-icons/lib/PeopleOutlined.js +++ b/packages/material-ui-icons/lib/PeopleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}), 'PeopleOutlined'); \ No newline at end of file +}), 'PeopleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleRounded.js b/packages/material-ui-icons/lib/PeopleRounded.js index 958aa21865d45f..32de4746823cad 100644 --- a/packages/material-ui-icons/lib/PeopleRounded.js +++ b/packages/material-ui-icons/lib/PeopleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z" -}), 'PeopleRounded'); \ No newline at end of file +}), 'PeopleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleSharp.js b/packages/material-ui-icons/lib/PeopleSharp.js index 9c57e3c9ec93a1..2fcef2f45f97ac 100644 --- a/packages/material-ui-icons/lib/PeopleSharp.js +++ b/packages/material-ui-icons/lib/PeopleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" -}), 'PeopleSharp'); \ No newline at end of file +}), 'PeopleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PeopleTwoTone.js b/packages/material-ui-icons/lib/PeopleTwoTone.js index 0c520839ad9d08..1e94ae92b9da20 100644 --- a/packages/material-ui-icons/lib/PeopleTwoTone.js +++ b/packages/material-ui-icons/lib/PeopleTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8.5", r: "1.5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" -}, "2")], 'PeopleTwoTone'); \ No newline at end of file +}, "2")], 'PeopleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermCameraMic.js b/packages/material-ui-icons/lib/PermCameraMic.js index 158a2d3963356f..57313bd94eee46 100644 --- a/packages/material-ui-icons/lib/PermCameraMic.js +++ b/packages/material-ui-icons/lib/PermCameraMic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" -}), 'PermCameraMic'); \ No newline at end of file +}), 'PermCameraMic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermCameraMicOutlined.js b/packages/material-ui-icons/lib/PermCameraMicOutlined.js index b7fe1fc2a3747f..ec9de0a9a9fae4 100644 --- a/packages/material-ui-icons/lib/PermCameraMicOutlined.js +++ b/packages/material-ui-icons/lib/PermCameraMicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z" -}), 'PermCameraMicOutlined'); \ No newline at end of file +}), 'PermCameraMicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermCameraMicRounded.js b/packages/material-ui-icons/lib/PermCameraMicRounded.js index cc5d02d2591340..cf1acbd842406b 100644 --- a/packages/material-ui-icons/lib/PermCameraMicRounded.js +++ b/packages/material-ui-icons/lib/PermCameraMicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.45-.42-4.41-2.32-4.89-4.75-.12-.61.38-1.16.99-1.16.49 0 .88.35.98.83C8.47 15.64 10.07 17 12 17s3.53-1.36 3.91-3.17c.1-.48.5-.83.98-.83.61 0 1.11.55.99 1.16-.48 2.43-2.44 4.34-4.89 4.75V21h7c1.1 0 2-.9 2-2V7C22 5.9 21.1 5 20 5zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" -}), 'PermCameraMicRounded'); \ No newline at end of file +}), 'PermCameraMicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermCameraMicSharp.js b/packages/material-ui-icons/lib/PermCameraMicSharp.js index 24aeb713d4636c..aba0021c09de43 100644 --- a/packages/material-ui-icons/lib/PermCameraMicSharp.js +++ b/packages/material-ui-icons/lib/PermCameraMicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5h-5.17L15 3H9L7.17 5H2v16h9v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h9V5zm-8 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" -}), 'PermCameraMicSharp'); \ No newline at end of file +}), 'PermCameraMicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermCameraMicTwoTone.js b/packages/material-ui-icons/lib/PermCameraMicTwoTone.js index 8d681eebc0e630..bba71434220fd2 100644 --- a/packages/material-ui-icons/lib/PermCameraMicTwoTone.js +++ b/packages/material-ui-icons/lib/PermCameraMicTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.11 7-.59-.65L14.28 5h-4.24L8.81 6.35l-.6.65H4v12h7v-1.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V19h7V7h-3.89zM14 12c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-1.1.9-2 2-2s2 .9 2 2v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z" -}, "1")], 'PermCameraMicTwoTone'); \ No newline at end of file +}, "1")], 'PermCameraMicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermContactCalendar.js b/packages/material-ui-icons/lib/PermContactCalendar.js index fbf3bd074818d3..5f3f5131cf5cc3 100644 --- a/packages/material-ui-icons/lib/PermContactCalendar.js +++ b/packages/material-ui-icons/lib/PermContactCalendar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" -}), 'PermContactCalendar'); \ No newline at end of file +}), 'PermContactCalendar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermContactCalendarOutlined.js b/packages/material-ui-icons/lib/PermContactCalendarOutlined.js index 53dbb17d387c3a..1070d01fa88f24 100644 --- a/packages/material-ui-icons/lib/PermContactCalendarOutlined.js +++ b/packages/material-ui-icons/lib/PermContactCalendarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM5 19V5h14v14H5zm7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'PermContactCalendarOutlined'); \ No newline at end of file +}), 'PermContactCalendarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermContactCalendarRounded.js b/packages/material-ui-icons/lib/PermContactCalendarRounded.js index dc7a12a76317af..17aa258ba39d94 100644 --- a/packages/material-ui-icons/lib/PermContactCalendarRounded.js +++ b/packages/material-ui-icons/lib/PermContactCalendarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" -}), 'PermContactCalendarRounded'); \ No newline at end of file +}), 'PermContactCalendarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermContactCalendarSharp.js b/packages/material-ui-icons/lib/PermContactCalendarSharp.js index 57fde73e80a53a..0b8dcbfe10d6dd 100644 --- a/packages/material-ui-icons/lib/PermContactCalendarSharp.js +++ b/packages/material-ui-icons/lib/PermContactCalendarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-9 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" -}), 'PermContactCalendarSharp'); \ No newline at end of file +}), 'PermContactCalendarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermContactCalendarTwoTone.js b/packages/material-ui-icons/lib/PermContactCalendarTwoTone.js index 7d7962b4085121..e421942fc67176 100644 --- a/packages/material-ui-icons/lib/PermContactCalendarTwoTone.js +++ b/packages/material-ui-icons/lib/PermContactCalendarTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 5H5v14h14V5h-3zm-4 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM19 19H5V5h14v14zm-7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "1")], 'PermContactCalendarTwoTone'); \ No newline at end of file +}, "1")], 'PermContactCalendarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDataSetting.js b/packages/material-ui-icons/lib/PermDataSetting.js index efb011d221b7ec..d58d5fcbf156e0 100644 --- a/packages/material-ui-icons/lib/PermDataSetting.js +++ b/packages/material-ui-icons/lib/PermDataSetting.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PermDataSetting'); \ No newline at end of file +}), 'PermDataSetting'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDataSettingOutlined.js b/packages/material-ui-icons/lib/PermDataSettingOutlined.js index e0d76273741367..d7808781a47364 100644 --- a/packages/material-ui-icons/lib/PermDataSettingOutlined.js +++ b/packages/material-ui-icons/lib/PermDataSettingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PermDataSettingOutlined'); \ No newline at end of file +}), 'PermDataSettingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDataSettingRounded.js b/packages/material-ui-icons/lib/PermDataSettingRounded.js index f4968d20efc56d..66b4eb6bbc8c4b 100644 --- a/packages/material-ui-icons/lib/PermDataSettingRounded.js +++ b/packages/material-ui-icons/lib/PermDataSettingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.99 11.5c.34 0 .68.03 1.01.07V2.42c0-.89-1.08-1.34-1.71-.71L1.71 18.29c-.63.63-.19 1.71.7 1.71h9.15c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49s.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PermDataSettingRounded'); \ No newline at end of file +}), 'PermDataSettingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDataSettingSharp.js b/packages/material-ui-icons/lib/PermDataSettingSharp.js index 4bdda875792ba6..76011b2c76ab15 100644 --- a/packages/material-ui-icons/lib/PermDataSettingSharp.js +++ b/packages/material-ui-icons/lib/PermDataSettingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49s.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PermDataSettingSharp'); \ No newline at end of file +}), 'PermDataSettingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDataSettingTwoTone.js b/packages/material-ui-icons/lib/PermDataSettingTwoTone.js index 1581435e70754f..1d47fcbeef5d1e 100644 --- a/packages/material-ui-icons/lib/PermDataSettingTwoTone.js +++ b/packages/material-ui-icons/lib/PermDataSettingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PermDataSettingTwoTone'); \ No newline at end of file +}), 'PermDataSettingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDeviceInformation.js b/packages/material-ui-icons/lib/PermDeviceInformation.js index eb551119389393..e64f19366991df 100644 --- a/packages/material-ui-icons/lib/PermDeviceInformation.js +++ b/packages/material-ui-icons/lib/PermDeviceInformation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v2h2V7zm0 4h-2v6h2v-6zm4-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'PermDeviceInformation'); \ No newline at end of file +}), 'PermDeviceInformation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDeviceInformationOutlined.js b/packages/material-ui-icons/lib/PermDeviceInformationOutlined.js index 62dececf2e0245..96eae763c78d05 100644 --- a/packages/material-ui-icons/lib/PermDeviceInformationOutlined.js +++ b/packages/material-ui-icons/lib/PermDeviceInformationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7z" -}), 'PermDeviceInformationOutlined'); \ No newline at end of file +}), 'PermDeviceInformationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDeviceInformationRounded.js b/packages/material-ui-icons/lib/PermDeviceInformationRounded.js index d083af0dcea812..18fe98fa9a64e7 100644 --- a/packages/material-ui-icons/lib/PermDeviceInformationRounded.js +++ b/packages/material-ui-icons/lib/PermDeviceInformationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v2h2V7zm-1 4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm5-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'PermDeviceInformationRounded'); \ No newline at end of file +}), 'PermDeviceInformationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDeviceInformationSharp.js b/packages/material-ui-icons/lib/PermDeviceInformationSharp.js index 93be01be5a1181..7458a7ac68c9a0 100644 --- a/packages/material-ui-icons/lib/PermDeviceInformationSharp.js +++ b/packages/material-ui-icons/lib/PermDeviceInformationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v2h2V7zm0 4h-2v6h2v-6zM5 1v22h14V1H5zm12 18H7V5h10v14z" -}), 'PermDeviceInformationSharp'); \ No newline at end of file +}), 'PermDeviceInformationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermDeviceInformationTwoTone.js b/packages/material-ui-icons/lib/PermDeviceInformationTwoTone.js index 0d3f956c86b664..faaa15661908f6 100644 --- a/packages/material-ui-icons/lib/PermDeviceInformationTwoTone.js +++ b/packages/material-ui-icons/lib/PermDeviceInformationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20h10v1H7zM7 3h10v1H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" -}, "1")], 'PermDeviceInformationTwoTone'); \ No newline at end of file +}, "1")], 'PermDeviceInformationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermIdentity.js b/packages/material-ui-icons/lib/PermIdentity.js index d3f2dc88e12e6b..875bc20c96e8ea 100644 --- a/packages/material-ui-icons/lib/PermIdentity.js +++ b/packages/material-ui-icons/lib/PermIdentity.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" -}), 'PermIdentity'); \ No newline at end of file +}), 'PermIdentity'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermIdentityOutlined.js b/packages/material-ui-icons/lib/PermIdentityOutlined.js index f014d508749e79..932228cea65cfb 100644 --- a/packages/material-ui-icons/lib/PermIdentityOutlined.js +++ b/packages/material-ui-icons/lib/PermIdentityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 9c2.7 0 5.8 1.29 6 2v1H6v-.99c.2-.72 3.3-2.01 6-2.01m0-11C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" -}), 'PermIdentityOutlined'); \ No newline at end of file +}), 'PermIdentityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermIdentityRounded.js b/packages/material-ui-icons/lib/PermIdentityRounded.js index 5021cc808eebe4..57bd5e11590043 100644 --- a/packages/material-ui-icons/lib/PermIdentityRounded.js +++ b/packages/material-ui-icons/lib/PermIdentityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" -}), 'PermIdentityRounded'); \ No newline at end of file +}), 'PermIdentityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermIdentitySharp.js b/packages/material-ui-icons/lib/PermIdentitySharp.js index 7bf098bf92624a..758fa4b8218738 100644 --- a/packages/material-ui-icons/lib/PermIdentitySharp.js +++ b/packages/material-ui-icons/lib/PermIdentitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" -}), 'PermIdentitySharp'); \ No newline at end of file +}), 'PermIdentitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermIdentityTwoTone.js b/packages/material-ui-icons/lib/PermIdentityTwoTone.js index e93662fcfbbed1..a20b249814f894 100644 --- a/packages/material-ui-icons/lib/PermIdentityTwoTone.js +++ b/packages/material-ui-icons/lib/PermIdentityTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "8", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" -}, "2")], 'PermIdentityTwoTone'); \ No newline at end of file +}, "2")], 'PermIdentityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermMedia.js b/packages/material-ui-icons/lib/PermMedia.js index 1a3a8267c99fa0..450c652289dbe4 100644 --- a/packages/material-ui-icons/lib/PermMedia.js +++ b/packages/material-ui-icons/lib/PermMedia.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm20-2h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z" -}), 'PermMedia'); \ No newline at end of file +}), 'PermMedia'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermMediaOutlined.js b/packages/material-ui-icons/lib/PermMediaOutlined.js index 65d62acefc2cd8..a1eb1ff8587dbf 100644 --- a/packages/material-ui-icons/lib/PermMediaOutlined.js +++ b/packages/material-ui-icons/lib/PermMediaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z" -}), 'PermMediaOutlined'); \ No newline at end of file +}), 'PermMediaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermMediaRounded.js b/packages/material-ui-icons/lib/PermMediaRounded.js index 9f26c12a61678e..45d4087c1e1058 100644 --- a/packages/material-ui-icons/lib/PermMediaRounded.js +++ b/packages/material-ui-icons/lib/PermMediaRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H3V7c0-.55-.45-1-1-1s-1 .45-1 1v12c0 1.1.9 2 2 2h16c.55 0 1-.45 1-1s-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4h-7l-1.41-1.41c-.38-.38-.89-.59-1.42-.59H7c-1.1 0-1.99.9-1.99 2L5 15c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3 9h-8c-.41 0-.65-.47-.4-.8l1.38-1.83c.2-.27.6-.27.8 0L13 12l2.22-2.97c.2-.27.6-.27.8 0l2.38 3.17c.25.33.01.8-.4.8z" -}, "1")], 'PermMediaRounded'); \ No newline at end of file +}, "1")], 'PermMediaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermMediaSharp.js b/packages/material-ui-icons/lib/PermMediaSharp.js index eebdcefcfff996..2c3d76549f79b9 100644 --- a/packages/material-ui-icons/lib/PermMediaSharp.js +++ b/packages/material-ui-icons/lib/PermMediaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 6H0v16h20v-2H2V6zm22-2H14l-2-2H4v16h20V4zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z" -}), 'PermMediaSharp'); \ No newline at end of file +}), 'PermMediaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermMediaTwoTone.js b/packages/material-ui-icons/lib/PermMediaTwoTone.js index 0c00800f415044..4e6c5ea25d7a0b 100644 --- a/packages/material-ui-icons/lib/PermMediaTwoTone.js +++ b/packages/material-ui-icons/lib/PermMediaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.17 6-.59-.59L11.17 4H6v12h16V6h-8.83zm4.33 4.5L21 15H7l4.5-6 3.5 4.51 2.5-3.01z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z" -}, "1")], 'PermMediaTwoTone'); \ No newline at end of file +}, "1")], 'PermMediaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermPhoneMsg.js b/packages/material-ui-icons/lib/PermPhoneMsg.js index 22efe96f2dd638..1acd9949997940 100644 --- a/packages/material-ui-icons/lib/PermPhoneMsg.js +++ b/packages/material-ui-icons/lib/PermPhoneMsg.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM12 3v10l3-3h6V3h-9z" -}), 'PermPhoneMsg'); \ No newline at end of file +}), 'PermPhoneMsg'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermPhoneMsgOutlined.js b/packages/material-ui-icons/lib/PermPhoneMsgOutlined.js index 46dee359a1ca6b..62660ed9e8fac6 100644 --- a/packages/material-ui-icons/lib/PermPhoneMsgOutlined.js +++ b/packages/material-ui-icons/lib/PermPhoneMsgOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z" -}), 'PermPhoneMsgOutlined'); \ No newline at end of file +}), 'PermPhoneMsgOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermPhoneMsgRounded.js b/packages/material-ui-icons/lib/PermPhoneMsgRounded.js index e2f150a349eb83..29e0ad682eef11 100644 --- a/packages/material-ui-icons/lib/PermPhoneMsgRounded.js +++ b/packages/material-ui-icons/lib/PermPhoneMsgRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3h-7c-.55 0-1 .45-1 1v9l3-3h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-.77 12.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" -}), 'PermPhoneMsgRounded'); \ No newline at end of file +}), 'PermPhoneMsgRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermPhoneMsgSharp.js b/packages/material-ui-icons/lib/PermPhoneMsgSharp.js index b958b9c6f94905..fd880ae0baa5d4 100644 --- a/packages/material-ui-icons/lib/PermPhoneMsgSharp.js +++ b/packages/material-ui-icons/lib/PermPhoneMsgSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3v10l3-3h6V3zm1.21 14.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" -}), 'PermPhoneMsgSharp'); \ No newline at end of file +}), 'PermPhoneMsgSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermPhoneMsgTwoTone.js b/packages/material-ui-icons/lib/PermPhoneMsgTwoTone.js index 1485abdaec7b2c..f11452641c2c13 100644 --- a/packages/material-ui-icons/lib/PermPhoneMsgTwoTone.js +++ b/packages/material-ui-icons/lib/PermPhoneMsgTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zM14 8h5V5h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z" -}, "1")], 'PermPhoneMsgTwoTone'); \ No newline at end of file +}, "1")], 'PermPhoneMsgTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermScanWifi.js b/packages/material-ui-icons/lib/PermScanWifi.js index d603780ad9b963..8aa9a02f886a59 100644 --- a/packages/material-ui-icons/lib/PermScanWifi.js +++ b/packages/material-ui-icons/lib/PermScanWifi.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z" -}), 'PermScanWifi'); \ No newline at end of file +}), 'PermScanWifi'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermScanWifiOutlined.js b/packages/material-ui-icons/lib/PermScanWifiOutlined.js index 038f63d9282fff..71e2764d2b857f 100644 --- a/packages/material-ui-icons/lib/PermScanWifiOutlined.js +++ b/packages/material-ui-icons/lib/PermScanWifiOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z" -}), 'PermScanWifiOutlined'); \ No newline at end of file +}), 'PermScanWifiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermScanWifiRounded.js b/packages/material-ui-icons/lib/PermScanWifiRounded.js index e7d591ff234601..409d8c3b655970 100644 --- a/packages/material-ui-icons/lib/PermScanWifiRounded.js +++ b/packages/material-ui-icons/lib/PermScanWifiRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C7.41 3 3.86 4.53.89 6.59c-.49.33-.59 1-.22 1.46l9.78 12.04c.8.98 2.3.99 3.1 0l9.78-12.02c.37-.46.27-1.13-.22-1.46C20.14 4.54 16.59 3 12 3zm0 13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm-1-8V6h2v2h-2z" -}), 'PermScanWifiRounded'); \ No newline at end of file +}), 'PermScanWifiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermScanWifiSharp.js b/packages/material-ui-icons/lib/PermScanWifiSharp.js index 35d6515dcefd96..5d490da1e33e63 100644 --- a/packages/material-ui-icons/lib/PermScanWifiSharp.js +++ b/packages/material-ui-icons/lib/PermScanWifiSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z" -}), 'PermScanWifiSharp'); \ No newline at end of file +}), 'PermScanWifiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PermScanWifiTwoTone.js b/packages/material-ui-icons/lib/PermScanWifiTwoTone.js index a6971f3380c0b4..328f7b586a6c82 100644 --- a/packages/material-ui-icons/lib/PermScanWifiTwoTone.js +++ b/packages/material-ui-icons/lib/PermScanWifiTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5c-3.26 0-6.2.85-9.08 2.65L12 18.83l9.08-11.16C18.18 5.85 15.25 5 12 5zm1 11h-2v-6h2v6zm-2-8V6h2v2h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z" -}, "1")], 'PermScanWifiTwoTone'); \ No newline at end of file +}, "1")], 'PermScanWifiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Person.js b/packages/material-ui-icons/lib/Person.js index 71d700307dd861..e09e742f67399a 100644 --- a/packages/material-ui-icons/lib/Person.js +++ b/packages/material-ui-icons/lib/Person.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" -}), 'Person'); \ No newline at end of file +}), 'Person'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAdd.js b/packages/material-ui-icons/lib/PersonAdd.js index 5b6cac990d6a64..9c84d328b08eec 100644 --- a/packages/material-ui-icons/lib/PersonAdd.js +++ b/packages/material-ui-icons/lib/PersonAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" -}), 'PersonAdd'); \ No newline at end of file +}), 'PersonAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAlt.js b/packages/material-ui-icons/lib/PersonAddAlt.js index 0214aff03db2c7..0f924c9bd943f2 100644 --- a/packages/material-ui-icons/lib/PersonAddAlt.js +++ b/packages/material-ui-icons/lib/PersonAddAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.78 1.28 6 2H3zm17-3v-3h3v-2h-3V7h-2v3h-3v2h3v3h2z" -}), 'PersonAddAlt'); \ No newline at end of file +}), 'PersonAddAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAlt1.js b/packages/material-ui-icons/lib/PersonAddAlt1.js index 3ad51030b008fe..38ca8da4eeefc9 100644 --- a/packages/material-ui-icons/lib/PersonAddAlt1.js +++ b/packages/material-ui-icons/lib/PersonAddAlt1.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm2 2v2h3v3h2v-3h3v-2h-3V7h-2v3h-3zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" -}), 'PersonAddAlt1'); \ No newline at end of file +}), 'PersonAddAlt1'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAlt1Outlined.js b/packages/material-ui-icons/lib/PersonAddAlt1Outlined.js index 5fd96fa889182e..022c372b895dcc 100644 --- a/packages/material-ui-icons/lib/PersonAddAlt1Outlined.js +++ b/packages/material-ui-icons/lib/PersonAddAlt1Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.78 1.28 6 2H3zm17-3v-3h3v-2h-3V7h-2v3h-3v2h3v3h2z" -}), 'PersonAddAlt1Outlined'); \ No newline at end of file +}), 'PersonAddAlt1Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAlt1Rounded.js b/packages/material-ui-icons/lib/PersonAddAlt1Rounded.js index 8125711e94cde7..9f40649ef4989d 100644 --- a/packages/material-ui-icons/lib/PersonAddAlt1Rounded.js +++ b/packages/material-ui-icons/lib/PersonAddAlt1Rounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 14c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zm11-4V7h-2v3h-3v2h3v3h2v-3h3v-2z" -}, "1")], 'PersonAddAlt1Rounded'); \ No newline at end of file +}, "1")], 'PersonAddAlt1Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAlt1Sharp.js b/packages/material-ui-icons/lib/PersonAddAlt1Sharp.js index 4d46dd8fac5f63..382ca798a018a3 100644 --- a/packages/material-ui-icons/lib/PersonAddAlt1Sharp.js +++ b/packages/material-ui-icons/lib/PersonAddAlt1Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm2 2v2h3v3h2v-3h3v-2h-3V7h-2v3h-3zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" -}), 'PersonAddAlt1Sharp'); \ No newline at end of file +}), 'PersonAddAlt1Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAlt1TwoTone.js b/packages/material-ui-icons/lib/PersonAddAlt1TwoTone.js index 2c1c8dab739d89..5c61d00a7809dd 100644 --- a/packages/material-ui-icons/lib/PersonAddAlt1TwoTone.js +++ b/packages/material-ui-icons/lib/PersonAddAlt1TwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16c-2.7 0-5.8 1.29-6 2h12c-.22-.72-3.31-2-6-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 14c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.2-.71 3.3-2 6-2 2.69 0 5.78 1.28 6 2H3zm17-8V7h-2v3h-3v2h3v3h2v-3h3v-2zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" -}, "2")], 'PersonAddAlt1TwoTone'); \ No newline at end of file +}, "2")], 'PersonAddAlt1TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAltOutlined.js b/packages/material-ui-icons/lib/PersonAddAltOutlined.js index 23abf3acfdc391..6c3a260c28e32b 100644 --- a/packages/material-ui-icons/lib/PersonAddAltOutlined.js +++ b/packages/material-ui-icons/lib/PersonAddAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9V6h-2v3h-3v2h3v3h2v-3h3V9h-3zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm6.39 8.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM15 18H3v-.78c0-.38.2-.72.52-.88C4.71 15.73 6.63 15 9 15c2.37 0 4.29.73 5.48 1.34.32.16.52.5.52.88V18z" -}), 'PersonAddAltOutlined'); \ No newline at end of file +}), 'PersonAddAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAltRounded.js b/packages/material-ui-icons/lib/PersonAddAltRounded.js index bdb56f7495a5a9..279762769a51d8 100644 --- a/packages/material-ui-icons/lib/PersonAddAltRounded.js +++ b/packages/material-ui-icons/lib/PersonAddAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.39 14.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm11-3V7c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2z" -}), 'PersonAddAltRounded'); \ No newline at end of file +}), 'PersonAddAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAltSharp.js b/packages/material-ui-icons/lib/PersonAddAltSharp.js index 13c5b596c410fe..8ffd3b9a47e4d9 100644 --- a/packages/material-ui-icons/lib/PersonAddAltSharp.js +++ b/packages/material-ui-icons/lib/PersonAddAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.39 14.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm11-3V6h-2v3h-3v2h3v3h2v-3h3V9h-3z" -}), 'PersonAddAltSharp'); \ No newline at end of file +}), 'PersonAddAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddAltTwoTone.js b/packages/material-ui-icons/lib/PersonAddAltTwoTone.js index 91f934fb0cf4e2..900dfe0a39f8f1 100644 --- a/packages/material-ui-icons/lib/PersonAddAltTwoTone.js +++ b/packages/material-ui-icons/lib/PersonAddAltTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.48 16.34C13.29 15.73 11.37 15 9 15c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h12v-.78c0-.38-.2-.72-.52-.88z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm11 3V6h-2v3h-3v2h3v3h2v-3h3V9zm-4.61 5.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM15 18H3v-.78c0-.38.2-.72.52-.88C4.71 15.73 6.63 15 9 15c2.37 0 4.29.73 5.48 1.34.32.16.52.5.52.88V18z" -}, "2")], 'PersonAddAltTwoTone'); \ No newline at end of file +}, "2")], 'PersonAddAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddDisabled.js b/packages/material-ui-icons/lib/PersonAddDisabled.js index 21483ee8069aae..4512021c59404a 100644 --- a/packages/material-ui-icons/lib/PersonAddDisabled.js +++ b/packages/material-ui-icons/lib/PersonAddDisabled.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "8", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 20v-2c0-2.3-4.1-3.7-6.9-3.9l6 5.9h.9zm-11.6-5.5C9.2 15.1 7 16.3 7 18v2h9.9l4 4 1.3-1.3-21-20.9L0 3.1l4 4V10H1v2h3v3h2v-3h2.9l2.5 2.5zM6 10v-.9l.9.9H6z" -}, "1")], 'PersonAddDisabled'); \ No newline at end of file +}, "1")], 'PersonAddDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddDisabledOutlined.js b/packages/material-ui-icons/lib/PersonAddDisabledOutlined.js index 4f8d0ae7cfae29..01f6f0cbc51678 100644 --- a/packages/material-ui-icons/lib/PersonAddDisabledOutlined.js +++ b/packages/material-ui-icons/lib/PersonAddDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6m0-2c-2.21 0-4 1.79-4 4 0 .18.03.35.05.52l3.43 3.43c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4zm1.69 10.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zm-3.68 1.97L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3M1.41 1.71 0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71zM6 10v-.88l.88.88H6z" -}), 'PersonAddDisabledOutlined'); \ No newline at end of file +}), 'PersonAddDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddDisabledRounded.js b/packages/material-ui-icons/lib/PersonAddDisabledRounded.js index 5dbe92468bee1d..b77d6f42444268 100644 --- a/packages/material-ui-icons/lib/PersonAddDisabledRounded.js +++ b/packages/material-ui-icons/lib/PersonAddDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21 5.74 5.74c.33-.17.57-.5.57-.9v-1c0-2.14-3.56-3.5-6.31-3.84zM2.12 2.42a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4 7.12V10H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v1c0 .55.45 1 1 1h8.88l3.29 3.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.42zM6 10v-.88l.88.88H6z" -}), 'PersonAddDisabledRounded'); \ No newline at end of file +}), 'PersonAddDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddDisabledSharp.js b/packages/material-ui-icons/lib/PersonAddDisabledSharp.js index b6c2faf99e76e2..3bd6924bfc0c9f 100644 --- a/packages/material-ui-icons/lib/PersonAddDisabledSharp.js +++ b/packages/material-ui-icons/lib/PersonAddDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zM6.88 10H6v-.88l.88.88z" -}), 'PersonAddDisabledSharp'); \ No newline at end of file +}), 'PersonAddDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddDisabledTwoTone.js b/packages/material-ui-icons/lib/PersonAddDisabledTwoTone.js index d400ec99fbfebf..037bddbe6176f7 100644 --- a/packages/material-ui-icons/lib/PersonAddDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/PersonAddDisabledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 18h5.87L13 16.13l-1.1.3C9.89 16.99 9.08 17.76 9 18zm8-10c0-1.1-.9-2-2-2-.99 0-1.81.72-1.97 1.67l2.31 2.31C16.27 9.82 17 8.99 17 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zM15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6zm1.69 8.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zm13.01 13.01L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3zM6 9.12l.88.88H6v-.88z" -}, "1")], 'PersonAddDisabledTwoTone'); \ No newline at end of file +}, "1")], 'PersonAddDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddOutlined.js b/packages/material-ui-icons/lib/PersonAddOutlined.js index d951819f68fd1f..8e6726f2161d63 100644 --- a/packages/material-ui-icons/lib/PersonAddOutlined.js +++ b/packages/material-ui-icons/lib/PersonAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z" -}), 'PersonAddOutlined'); \ No newline at end of file +}), 'PersonAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddRounded.js b/packages/material-ui-icons/lib/PersonAddRounded.js index c2347c3fe64c63..74ad172de22736 100644 --- a/packages/material-ui-icons/lib/PersonAddRounded.js +++ b/packages/material-ui-icons/lib/PersonAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V8c0-.55-.45-1-1-1s-1 .45-1 1v2H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H6zm9 4c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z" -}), 'PersonAddRounded'); \ No newline at end of file +}), 'PersonAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddSharp.js b/packages/material-ui-icons/lib/PersonAddSharp.js index 16a45594e1cba4..ffac626a0fe0a2 100644 --- a/packages/material-ui-icons/lib/PersonAddSharp.js +++ b/packages/material-ui-icons/lib/PersonAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" -}), 'PersonAddSharp'); \ No newline at end of file +}), 'PersonAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonAddTwoTone.js b/packages/material-ui-icons/lib/PersonAddTwoTone.js index 265df2423c2b5b..20f132080ddfe7 100644 --- a/packages/material-ui-icons/lib/PersonAddTwoTone.js +++ b/packages/material-ui-icons/lib/PersonAddTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "8", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z" -}, "2")], 'PersonAddTwoTone'); \ No newline at end of file +}, "2")], 'PersonAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOff.js b/packages/material-ui-icons/lib/PersonOff.js index 8eca31624d8bfd..422ab87f6e5396 100644 --- a/packages/material-ui-icons/lib/PersonOff.js +++ b/packages/material-ui-icons/lib/PersonOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.65 5.82C9.36 4.72 10.6 4 12 4c2.21 0 4 1.79 4 4 0 1.4-.72 2.64-1.82 3.35L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm1.19 4.02L2.81 2.81 1.39 4.22l8.89 8.89c-1.81.23-3.39.79-4.67 1.45-1 .51-1.61 1.54-1.61 2.66V20h13.17l2.61 2.61 1.41-1.42z" -}), 'PersonOff'); \ No newline at end of file +}), 'PersonOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOffOutlined.js b/packages/material-ui-icons/lib/PersonOffOutlined.js index 681f48314c0d64..55e40c765c8a58 100644 --- a/packages/material-ui-icons/lib/PersonOffOutlined.js +++ b/packages/material-ui-icons/lib/PersonOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 17.17-3.37-3.38c.64.22 1.23.48 1.77.76.97.51 1.58 1.52 1.6 2.62zm1.19 4.02-1.41 1.41-2.61-2.6H4v-2.78c0-1.12.61-2.15 1.61-2.66 1.29-.66 2.87-1.22 4.67-1.45L1.39 4.22 2.8 2.81l18.39 18.38zM15.17 18l-3-3H12c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h9.17zM12 6c1.1 0 2 .9 2 2 0 .86-.54 1.59-1.3 1.87l1.48 1.48C15.28 10.64 16 9.4 16 8c0-2.21-1.79-4-4-4-1.4 0-2.64.72-3.35 1.82l1.48 1.48C10.41 6.54 11.14 6 12 6z" -}), 'PersonOffOutlined'); \ No newline at end of file +}), 'PersonOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOffRounded.js b/packages/material-ui-icons/lib/PersonOffRounded.js index d40185d2bff133..13979c3b833333 100644 --- a/packages/material-ui-icons/lib/PersonOffRounded.js +++ b/packages/material-ui-icons/lib/PersonOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.65 5.82C9.36 4.72 10.6 4 12 4c2.21 0 4 1.79 4 4 0 1.4-.72 2.64-1.82 3.35L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm.49 3.32L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l8.18 8.18c-1.82.23-3.41.8-4.7 1.46C4.6 15.08 4 16.11 4 17.22V20h13.17l1.9 1.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" -}), 'PersonOffRounded'); \ No newline at end of file +}), 'PersonOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOffSharp.js b/packages/material-ui-icons/lib/PersonOffSharp.js index 181ba683bc78ea..49732c673ac21c 100644 --- a/packages/material-ui-icons/lib/PersonOffSharp.js +++ b/packages/material-ui-icons/lib/PersonOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.65 5.82C9.36 4.72 10.6 4 12 4c2.21 0 4 1.79 4 4 0 1.4-.72 2.64-1.82 3.35L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm1.19 4.02L2.81 2.81 1.39 4.22l8.89 8.89c-1.81.23-3.39.79-4.67 1.45-1 .51-1.61 1.54-1.61 2.66V20h13.17l2.61 2.61 1.41-1.42z" -}), 'PersonOffSharp'); \ No newline at end of file +}), 'PersonOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOffTwoTone.js b/packages/material-ui-icons/lib/PersonOffTwoTone.js index 9d446710981eef..fe26cc00de3fbb 100644 --- a/packages/material-ui-icons/lib/PersonOffTwoTone.js +++ b/packages/material-ui-icons/lib/PersonOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.17 18-3-3H12c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h9.17zM10.13 7.3C10.41 6.54 11.14 6 12 6c1.1 0 2 .9 2 2 0 .86-.54 1.59-1.3 1.87", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 17.17-3.37-3.38c.64.22 1.23.48 1.77.76.97.51 1.58 1.52 1.6 2.62zm1.19 4.02-1.41 1.41-2.61-2.6H4v-2.78c0-1.12.61-2.15 1.61-2.66 1.29-.66 2.87-1.22 4.67-1.45L1.39 4.22 2.8 2.81l18.39 18.38zM15.17 18l-3-3H12c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h9.17zM12 6c1.1 0 2 .9 2 2 0 .86-.54 1.59-1.3 1.87l1.48 1.48C15.28 10.64 16 9.4 16 8c0-2.21-1.79-4-4-4-1.4 0-2.64.72-3.35 1.82l1.48 1.48C10.41 6.54 11.14 6 12 6z" -}, "1")], 'PersonOffTwoTone'); \ No newline at end of file +}, "1")], 'PersonOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOutline.js b/packages/material-ui-icons/lib/PersonOutline.js index b393da5be91d2c..fb143cd01cc581 100644 --- a/packages/material-ui-icons/lib/PersonOutline.js +++ b/packages/material-ui-icons/lib/PersonOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" -}), 'PersonOutline'); \ No newline at end of file +}), 'PersonOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOutlineOutlined.js b/packages/material-ui-icons/lib/PersonOutlineOutlined.js index aec59b51edb47e..abcb113361f73d 100644 --- a/packages/material-ui-icons/lib/PersonOutlineOutlined.js +++ b/packages/material-ui-icons/lib/PersonOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" -}), 'PersonOutlineOutlined'); \ No newline at end of file +}), 'PersonOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOutlineRounded.js b/packages/material-ui-icons/lib/PersonOutlineRounded.js index 68e437a585e129..fbb0c1a3600ab9 100644 --- a/packages/material-ui-icons/lib/PersonOutlineRounded.js +++ b/packages/material-ui-icons/lib/PersonOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4z" -}), 'PersonOutlineRounded'); \ No newline at end of file +}), 'PersonOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOutlineSharp.js b/packages/material-ui-icons/lib/PersonOutlineSharp.js index 1a3c1b65ec5a47..152b4491705655 100644 --- a/packages/material-ui-icons/lib/PersonOutlineSharp.js +++ b/packages/material-ui-icons/lib/PersonOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" -}), 'PersonOutlineSharp'); \ No newline at end of file +}), 'PersonOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOutlineTwoTone.js b/packages/material-ui-icons/lib/PersonOutlineTwoTone.js index 6f3d64d9b34b5c..08fdc3850043f9 100644 --- a/packages/material-ui-icons/lib/PersonOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/PersonOutlineTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "8", r: "2.1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6.1 5.1H5.9V17c0-.64 3.13-2.1 6.1-2.1s6.1 1.46 6.1 2.1v1.1zM12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6.1c1.16 0 2.1.94 2.1 2.1 0 1.16-.94 2.1-2.1 2.1S9.9 9.16 9.9 8c0-1.16.94-2.1 2.1-2.1z" -}, "2")], 'PersonOutlineTwoTone'); \ No newline at end of file +}, "2")], 'PersonOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonOutlined.js b/packages/material-ui-icons/lib/PersonOutlined.js index 245fac02c5167b..97ee4ba50820c8 100644 --- a/packages/material-ui-icons/lib/PersonOutlined.js +++ b/packages/material-ui-icons/lib/PersonOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" -}), 'PersonOutlined'); \ No newline at end of file +}), 'PersonOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPin.js b/packages/material-ui-icons/lib/PersonPin.js index 988e47e71b7c42..76255ed4d55907 100644 --- a/packages/material-ui-icons/lib/PersonPin.js +++ b/packages/material-ui-icons/lib/PersonPin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.97 0-9 4.03-9 9 0 4.17 2.84 7.67 6.69 8.69L12 22l2.31-2.31C18.16 18.67 21 15.17 21 11c0-4.97-4.03-9-9-9zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.3c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" -}), 'PersonPin'); \ No newline at end of file +}), 'PersonPin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinCircle.js b/packages/material-ui-icons/lib/PersonPinCircle.js index 3bad6bcaa6a0b8..8f5b5e0bc762a7 100644 --- a/packages/material-ui-icons/lib/PersonPinCircle.js +++ b/packages/material-ui-icons/lib/PersonPinCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 2c1.1 0 2 .9 2 2 0 1.11-.9 2-2 2s-2-.89-2-2c0-1.1.9-2 2-2zm0 10c-1.67 0-3.14-.85-4-2.15.02-1.32 2.67-2.05 4-2.05s3.98.73 4 2.05c-.86 1.3-2.33 2.15-4 2.15z" -}), 'PersonPinCircle'); \ No newline at end of file +}), 'PersonPinCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinCircleOutlined.js b/packages/material-ui-icons/lib/PersonPinCircleOutlined.js index 34e59f3e2245e8..5354441e0dede5 100644 --- a/packages/material-ui-icons/lib/PersonPinCircleOutlined.js +++ b/packages/material-ui-icons/lib/PersonPinCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'PersonPinCircleOutlined'); \ No newline at end of file +}), 'PersonPinCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinCircleRounded.js b/packages/material-ui-icons/lib/PersonPinCircleRounded.js index 35ce0f124324a0..42d0d24845e07d 100644 --- a/packages/material-ui-icons/lib/PersonPinCircleRounded.js +++ b/packages/material-ui-icons/lib/PersonPinCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.22.36.32.97.32 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zM7.69 12.49C8.88 11.56 10.37 11 12 11s3.12.56 4.31 1.49C15.45 13.98 13.85 15 12 15s-3.45-1.02-4.31-2.51zM12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" -}), 'PersonPinCircleRounded'); \ No newline at end of file +}), 'PersonPinCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinCircleSharp.js b/packages/material-ui-icons/lib/PersonPinCircleSharp.js index b7c24554d34a20..804ef0ea0261d5 100644 --- a/packages/material-ui-icons/lib/PersonPinCircleSharp.js +++ b/packages/material-ui-icons/lib/PersonPinCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c-1.33 0-4 .67-4 2v.16c.97 1.12 2.4 1.84 4 1.84s3.03-.72 4-1.84V13c0-1.33-2.67-2-4-2zm0-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-8c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'PersonPinCircleSharp'); \ No newline at end of file +}), 'PersonPinCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinCircleTwoTone.js b/packages/material-ui-icons/lib/PersonPinCircleTwoTone.js index f064e748910fb5..a511d07393a1d8 100644 --- a/packages/material-ui-icons/lib/PersonPinCircleTwoTone.js +++ b/packages/material-ui-icons/lib/PersonPinCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}, "1")], 'PersonPinCircleTwoTone'); \ No newline at end of file +}, "1")], 'PersonPinCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinOutlined.js b/packages/material-ui-icons/lib/PersonPinOutlined.js index bbb75c9eca407c..ec6c0ffea99cc6 100644 --- a/packages/material-ui-icons/lib/PersonPinOutlined.js +++ b/packages/material-ui-icons/lib/PersonPinOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z" -}), 'PersonPinOutlined'); \ No newline at end of file +}), 'PersonPinOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinRounded.js b/packages/material-ui-icons/lib/PersonPinRounded.js index 7d508423a1f8ee..8af34c15b880d9 100644 --- a/packages/material-ui-icons/lib/PersonPinRounded.js +++ b/packages/material-ui-icons/lib/PersonPinRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z" -}), 'PersonPinRounded'); \ No newline at end of file +}), 'PersonPinRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinSharp.js b/packages/material-ui-icons/lib/PersonPinSharp.js index a74ce6a659e83a..269e6b9505d2b6 100644 --- a/packages/material-ui-icons/lib/PersonPinSharp.js +++ b/packages/material-ui-icons/lib/PersonPinSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2H3v18h6l3 3 3-3h6V2zm-9 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z" -}), 'PersonPinSharp'); \ No newline at end of file +}), 'PersonPinSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonPinTwoTone.js b/packages/material-ui-icons/lib/PersonPinTwoTone.js index 6659126d0ff8be..f9bd0256611922 100644 --- a/packages/material-ui-icons/lib/PersonPinTwoTone.js +++ b/packages/material-ui-icons/lib/PersonPinTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.83 18 .59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zM12 5c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 15.58C6 13.08 9.97 12 12 12s6 1.08 6 3.58V17H6v-1.42z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 20 3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z" -}, "1")], 'PersonPinTwoTone'); \ No newline at end of file +}, "1")], 'PersonPinTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemove.js b/packages/material-ui-icons/lib/PersonRemove.js index 5253ff25c05497..97fe858516aca0 100644 --- a/packages/material-ui-icons/lib/PersonRemove.js +++ b/packages/material-ui-icons/lib/PersonRemove.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" -}), 'PersonRemove'); \ No newline at end of file +}), 'PersonRemove'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveAlt1.js b/packages/material-ui-icons/lib/PersonRemoveAlt1.js index 082db7e4333850..29881907e9ce32 100644 --- a/packages/material-ui-icons/lib/PersonRemoveAlt1.js +++ b/packages/material-ui-icons/lib/PersonRemoveAlt1.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" -}), 'PersonRemoveAlt1'); \ No newline at end of file +}), 'PersonRemoveAlt1'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveAlt1Outlined.js b/packages/material-ui-icons/lib/PersonRemoveAlt1Outlined.js index b8564037a44611..41f2f4435cc4bc 100644 --- a/packages/material-ui-icons/lib/PersonRemoveAlt1Outlined.js +++ b/packages/material-ui-icons/lib/PersonRemoveAlt1Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" -}), 'PersonRemoveAlt1Outlined'); \ No newline at end of file +}), 'PersonRemoveAlt1Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveAlt1Rounded.js b/packages/material-ui-icons/lib/PersonRemoveAlt1Rounded.js index 75b4a0c0001494..edbecf906e92c8 100644 --- a/packages/material-ui-icons/lib/PersonRemoveAlt1Rounded.js +++ b/packages/material-ui-icons/lib/PersonRemoveAlt1Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zM2 18v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4s-8 1.34-8 4zm16-8h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'PersonRemoveAlt1Rounded'); \ No newline at end of file +}), 'PersonRemoveAlt1Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveAlt1Sharp.js b/packages/material-ui-icons/lib/PersonRemoveAlt1Sharp.js index fd98dd664511b8..3f2dad149ae76b 100644 --- a/packages/material-ui-icons/lib/PersonRemoveAlt1Sharp.js +++ b/packages/material-ui-icons/lib/PersonRemoveAlt1Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" -}), 'PersonRemoveAlt1Sharp'); \ No newline at end of file +}), 'PersonRemoveAlt1Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveAlt1TwoTone.js b/packages/material-ui-icons/lib/PersonRemoveAlt1TwoTone.js index 08107a20f5e454..4422601d6e80d3 100644 --- a/packages/material-ui-icons/lib/PersonRemoveAlt1TwoTone.js +++ b/packages/material-ui-icons/lib/PersonRemoveAlt1TwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16c2.69 0 5.77 1.28 6 2H4c.2-.71 3.3-2 6-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" -}, "2")], 'PersonRemoveAlt1TwoTone'); \ No newline at end of file +}, "2")], 'PersonRemoveAlt1TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveOutlined.js b/packages/material-ui-icons/lib/PersonRemoveOutlined.js index 9bf8a0d087919a..202f5743638cf6 100644 --- a/packages/material-ui-icons/lib/PersonRemoveOutlined.js +++ b/packages/material-ui-icons/lib/PersonRemoveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" -}), 'PersonRemoveOutlined'); \ No newline at end of file +}), 'PersonRemoveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveRounded.js b/packages/material-ui-icons/lib/PersonRemoveRounded.js index f96475f5e3288e..f2af9db4ae4ec0 100644 --- a/packages/material-ui-icons/lib/PersonRemoveRounded.js +++ b/packages/material-ui-icons/lib/PersonRemoveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zM2 18v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4s-8 1.34-8 4zm16-8h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'PersonRemoveRounded'); \ No newline at end of file +}), 'PersonRemoveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveSharp.js b/packages/material-ui-icons/lib/PersonRemoveSharp.js index 26ebf217dc14c7..10cf4a6b931a8f 100644 --- a/packages/material-ui-icons/lib/PersonRemoveSharp.js +++ b/packages/material-ui-icons/lib/PersonRemoveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" -}), 'PersonRemoveSharp'); \ No newline at end of file +}), 'PersonRemoveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRemoveTwoTone.js b/packages/material-ui-icons/lib/PersonRemoveTwoTone.js index cf8f854b64b937..2054d03d58867a 100644 --- a/packages/material-ui-icons/lib/PersonRemoveTwoTone.js +++ b/packages/material-ui-icons/lib/PersonRemoveTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16c2.69 0 5.77 1.28 6 2H4c.2-.71 3.3-2 6-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" -}, "2")], 'PersonRemoveTwoTone'); \ No newline at end of file +}, "2")], 'PersonRemoveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonRounded.js b/packages/material-ui-icons/lib/PersonRounded.js index bdd2a2274545ab..76fc0c077a4f24 100644 --- a/packages/material-ui-icons/lib/PersonRounded.js +++ b/packages/material-ui-icons/lib/PersonRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z" -}), 'PersonRounded'); \ No newline at end of file +}), 'PersonRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonSearch.js b/packages/material-ui-icons/lib/PersonSearch.js index 75861008f8901e..086fbd8c93fdca 100644 --- a/packages/material-ui-icons/lib/PersonSearch.js +++ b/packages/material-ui-icons/lib/PersonSearch.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v2h9.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59l-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'PersonSearch'); \ No newline at end of file +}, "1")], 'PersonSearch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonSearchOutlined.js b/packages/material-ui-icons/lib/PersonSearchOutlined.js index ccee2049540aca..28a7dae21ae149 100644 --- a/packages/material-ui-icons/lib/PersonSearchOutlined.js +++ b/packages/material-ui-icons/lib/PersonSearchOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM4 18c.22-.72 3.31-2 6-2 0-.7.13-1.37.35-1.99C7.62 13.91 2 15.27 2 18v2h9.54c-.52-.58-.93-1.25-1.19-2H4zm15.43.02c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59c-1.5-1.5-.79-.8-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'PersonSearchOutlined'); \ No newline at end of file +}), 'PersonSearchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonSearchRounded.js b/packages/material-ui-icons/lib/PersonSearchRounded.js index 7bc0b3b4c581ea..8575bc0a7404aa 100644 --- a/packages/material-ui-icons/lib/PersonSearchRounded.js +++ b/packages/material-ui-icons/lib/PersonSearchRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v1c0 .55.45 1 1 1h8.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.47-.8.7-1.77.48-2.82-.34-1.64-1.72-2.95-3.38-3.16-2.63-.34-4.85 1.87-4.5 4.5.22 1.66 1.52 3.04 3.16 3.38 1.05.22 2.02-.01 2.82-.48l1.86 1.86c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.85-1.87zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'PersonSearchRounded'); \ No newline at end of file +}, "1")], 'PersonSearchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonSearchSharp.js b/packages/material-ui-icons/lib/PersonSearchSharp.js index 1285aa3287cf0a..921c8c47dd875f 100644 --- a/packages/material-ui-icons/lib/PersonSearchSharp.js +++ b/packages/material-ui-icons/lib/PersonSearchSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v2h9.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59l-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'PersonSearchSharp'); \ No newline at end of file +}, "1")], 'PersonSearchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonSearchTwoTone.js b/packages/material-ui-icons/lib/PersonSearchTwoTone.js index d651225db6776c..5869966fc1e801 100644 --- a/packages/material-ui-icons/lib/PersonSearchTwoTone.js +++ b/packages/material-ui-icons/lib/PersonSearchTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18c.22-.72 3.31-2 6-2 0-.7.13-1.37.35-1.99C7.62 13.91 2 15.27 2 18v2h9.54c-.52-.58-.93-1.25-1.19-2H4zm6-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .89 2 2 0 1.1-.9 2-2 2s-2-.9-2-2c0-1.11.9-2 2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.35 18s-.35-.79-.35-2c-2.69 0-5.77 1.28-6 2h6.35z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.43 18.02c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59c-1.5-1.5-.79-.8-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "9", r: "2", opacity: ".3" -}, "3")], 'PersonSearchTwoTone'); \ No newline at end of file +}, "3")], 'PersonSearchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonSharp.js b/packages/material-ui-icons/lib/PersonSharp.js index 104e7aca483412..33f5397ef64a1e 100644 --- a/packages/material-ui-icons/lib/PersonSharp.js +++ b/packages/material-ui-icons/lib/PersonSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" -}), 'PersonSharp'); \ No newline at end of file +}), 'PersonSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonTwoTone.js b/packages/material-ui-icons/lib/PersonTwoTone.js index 67de64fcdc127c..90a5977953f04e 100644 --- a/packages/material-ui-icons/lib/PersonTwoTone.js +++ b/packages/material-ui-icons/lib/PersonTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "8", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H6zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" -}, "2")], 'PersonTwoTone'); \ No newline at end of file +}, "2")], 'PersonTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonalVideo.js b/packages/material-ui-icons/lib/PersonalVideo.js index 03c7ab9a1c8649..c57a609aabbd4f 100644 --- a/packages/material-ui-icons/lib/PersonalVideo.js +++ b/packages/material-ui-icons/lib/PersonalVideo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" -}), 'PersonalVideo'); \ No newline at end of file +}), 'PersonalVideo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonalVideoOutlined.js b/packages/material-ui-icons/lib/PersonalVideoOutlined.js index e8622c10369816..1200f1fd905216 100644 --- a/packages/material-ui-icons/lib/PersonalVideoOutlined.js +++ b/packages/material-ui-icons/lib/PersonalVideoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" -}), 'PersonalVideoOutlined'); \ No newline at end of file +}), 'PersonalVideoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonalVideoRounded.js b/packages/material-ui-icons/lib/PersonalVideoRounded.js index 5cdc0593cc149a..267343f8a73f1e 100644 --- a/packages/material-ui-icons/lib/PersonalVideoRounded.js +++ b/packages/material-ui-icons/lib/PersonalVideoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'PersonalVideoRounded'); \ No newline at end of file +}), 'PersonalVideoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonalVideoSharp.js b/packages/material-ui-icons/lib/PersonalVideoSharp.js index 476c47e823d66d..cf9786821fc1fb 100644 --- a/packages/material-ui-icons/lib/PersonalVideoSharp.js +++ b/packages/material-ui-icons/lib/PersonalVideoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z" -}), 'PersonalVideoSharp'); \ No newline at end of file +}), 'PersonalVideoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PersonalVideoTwoTone.js b/packages/material-ui-icons/lib/PersonalVideoTwoTone.js index db58d9c8d1ea16..aabfe5bbe53b64 100644 --- a/packages/material-ui-icons/lib/PersonalVideoTwoTone.js +++ b/packages/material-ui-icons/lib/PersonalVideoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h18v12H3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" -}, "1")], 'PersonalVideoTwoTone'); \ No newline at end of file +}, "1")], 'PersonalVideoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControl.js b/packages/material-ui-icons/lib/PestControl.js index c1d84fea7ce200..5123a14dec2ece 100644 --- a/packages/material-ui-icons/lib/PestControl.js +++ b/packages/material-ui-icons/lib/PestControl.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65C8.24 6.45 8 7.2 8 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-8 2h-2v-6h2v6z" -}), 'PestControl'); \ No newline at end of file +}), 'PestControl'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlOutlined.js b/packages/material-ui-icons/lib/PestControlOutlined.js index d74f9477fe6927..b7615f5abd4f94 100644 --- a/packages/material-ui-icons/lib/PestControlOutlined.js +++ b/packages/material-ui-icons/lib/PestControlOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.1-.56.2-1.69-.58-2.89L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65c-.78 1.2-.68 2.34-.58 2.89-.37.39-.71.82-.99 1.29L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-9-9c.88 0 1.62.57 1.88 1.36C13.29 7.13 12.66 7 12 7s-1.29.13-1.88.36C10.38 6.57 11.12 6 12 6zm0 13c-2.21 0-4-2.24-4-5s1.79-5 4-5 4 2.24 4 5-1.79 5-4 5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h2v6h-2z" -}, "1")], 'PestControlOutlined'); \ No newline at end of file +}, "1")], 'PestControlOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlRodent.js b/packages/material-ui-icons/lib/PestControlRodent.js index 30fe38a67d3a6e..25dbf2d4198a9e 100644 --- a/packages/material-ui-icons/lib/PestControlRodent.js +++ b/packages/material-ui-icons/lib/PestControlRodent.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.31 17.38-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .97.39 1.84 1.03 2.47l-.71.71C11.5 16.87 11 15.74 11 14.5c0-1.7.96-3.17 2.35-3.93-.7-.36-1.48-.57-2.28-.57-2.38 0-4.37 1.65-4.91 3.87C4.91 13.5 4 12.36 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H8c-.55 0-1 .45-1 1s.45 1 1 1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.42 1.72 4.44 4 4.9v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PestControlRodent'); \ No newline at end of file +}), 'PestControlRodent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlRodentOutlined.js b/packages/material-ui-icons/lib/PestControlRodentOutlined.js index ac0bdfa09fddc7..5d4facd6c1ea55 100644 --- a/packages/material-ui-icons/lib/PestControlRodentOutlined.js +++ b/packages/material-ui-icons/lib/PestControlRodentOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "17", r: "1" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.86 14.97-.93-.84c.48-3.45-2.87-6.04-6.05-4.82C13.3 9.11 12.66 9 12 9c-4.26 0-5.65 3.58-5.89 4.85C4.89 13.47 4 12.35 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H8c-.55 0-1 .45-1 1s.45 1 1 1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.44 1.76 4.47 4.07 4.91C6.51 18.79 8.99 21 12 21h6.53c3.11 0 4.7-3.89 2.33-6.03zM18.53 19H12c-1.21 0-2.34-.54-3.11-1.48-.78-.95-1.06-2.16-.8-3.41.31-1.48 1.51-2.69 2.99-3.01.22-.05.45-.06.67-.07-.47.71-.75 1.55-.75 2.47 0 1.24.5 2.37 1.32 3.18l1.41-1.41c-.45-.45-.73-1.08-.73-1.77 0-1.42 1.2-2.5 2.5-2.5 1.38 0 2.5 1.12 2.5 2.5 0 .46-.13.88-.35 1.25l1.87 1.7c.31.28.48.67.48 1.09 0 .8-.66 1.46-1.47 1.46z" -}, "1")], 'PestControlRodentOutlined'); \ No newline at end of file +}, "1")], 'PestControlRodentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlRodentRounded.js b/packages/material-ui-icons/lib/PestControlRodentRounded.js index 430cb2aabd3651..07686919c550cd 100644 --- a/packages/material-ui-icons/lib/PestControlRodentRounded.js +++ b/packages/material-ui-icons/lib/PestControlRodentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.31 17.38-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .81.27 1.55.74 2.15.15.2.14.48-.04.66-.21.21-.56.19-.75-.04-.6-.77-.95-1.73-.95-2.77 0-1.7.96-3.17 2.35-3.93-.7-.36-1.48-.57-2.28-.57-2.38 0-4.37 1.65-4.91 3.87-1.33-.39-2.28-1.66-2.15-3.14C4.15 9.16 5.54 8 7.11 8h2c1.58 0 2.75-.95 2.87-2.25C12.13 4.25 10.96 3 9.5 3H8.05c-.5 0-.96.34-1.04.83C6.91 4.46 7.39 5 8 5h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7.16c-2.67 0-4.99 2.03-5.15 4.7-.15 2.55 1.61 4.72 3.99 5.2v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PestControlRodentRounded'); \ No newline at end of file +}), 'PestControlRodentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlRodentSharp.js b/packages/material-ui-icons/lib/PestControlRodentSharp.js index 20f37507d8360e..321069502bf338 100644 --- a/packages/material-ui-icons/lib/PestControlRodentSharp.js +++ b/packages/material-ui-icons/lib/PestControlRodentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.31 17.38-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .97.39 1.84 1.03 2.47l-.71.71C11.5 16.87 11 15.74 11 14.5c0-1.7.96-3.17 2.35-3.93-.7-.36-1.48-.57-2.28-.57-2.38 0-4.37 1.65-4.91 3.87C4.91 13.5 4 12.36 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H7v2h2.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.42 1.72 4.44 4 4.9v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PestControlRodentSharp'); \ No newline at end of file +}), 'PestControlRodentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlRodentTwoTone.js b/packages/material-ui-icons/lib/PestControlRodentTwoTone.js index 54299e3aaa81b8..78f9d94eaab34b 100644 --- a/packages/material-ui-icons/lib/PestControlRodentTwoTone.js +++ b/packages/material-ui-icons/lib/PestControlRodentTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 14.75c.22-.37.35-.79.35-1.25 0-1.38-1.12-2.5-2.5-2.5-1.3 0-2.5 1.08-2.5 2.5 0 .69.28 1.32.73 1.77l-1.41 1.41C11.5 15.87 11 14.74 11 13.5c0-.92.28-1.76.75-2.47-.22.01-.44.02-.67.07-1.48.32-2.68 1.53-2.99 3.01-.26 1.24.02 2.45.8 3.41.77.94 1.9 1.48 3.11 1.48h6.53c.81 0 1.47-.66 1.47-1.47 0-.41-.17-.81-.48-1.09l-1.87-1.69zM17 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "17", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.86 14.97-.93-.84c.48-3.45-2.87-6.04-6.05-4.82C13.3 9.11 12.66 9 12 9c-4.26 0-5.65 3.58-5.89 4.85C4.89 13.47 4 12.35 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H8c-.55 0-1 .45-1 1s.45 1 1 1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.44 1.76 4.47 4.07 4.91C6.51 18.79 8.99 21 12 21h6.53c3.11 0 4.7-3.89 2.33-6.03zM18.53 19H12c-1.21 0-2.34-.54-3.11-1.48-.78-.95-1.06-2.16-.8-3.41.31-1.48 1.51-2.69 2.99-3.01.22-.05.45-.06.67-.07-.47.71-.75 1.55-.75 2.47 0 1.24.5 2.37 1.32 3.18l1.41-1.41c-.45-.45-.73-1.08-.73-1.77 0-1.42 1.2-2.5 2.5-2.5 1.38 0 2.5 1.12 2.5 2.5 0 .46-.13.88-.35 1.25l1.87 1.7c.31.28.48.67.48 1.09 0 .8-.66 1.46-1.47 1.46z" -}, "2")], 'PestControlRodentTwoTone'); \ No newline at end of file +}, "2")], 'PestControlRodentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlRounded.js b/packages/material-ui-icons/lib/PestControlRounded.js index b3d80e82fff1e3..663e867b2840ed 100644 --- a/packages/material-ui-icons/lib/PestControlRounded.js +++ b/packages/material-ui-icons/lib/PestControlRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14c0-.55-.45-1-1-1h-2.07c-.05-.39-.12-.77-.22-1.14l1.72-.99c.48-.28.64-.89.37-1.37-.28-.48-.89-.64-1.37-.37l-1.51.87c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18l.94-.94c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-1.02 1.02c-1.68-.89-3.1-.33-3.73 0L9.12 3.46a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.94.94C8.24 6.45 8 7.2 8 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28l-1.51-.87c-.48-.27-1.09-.11-1.36.37-.28.48-.11 1.09.37 1.37l1.72.99c-.1.37-.17.75-.22 1.14H4c-.55 0-1 .45-1 1s.45 1 1 1h2.07c.05.39.12.77.22 1.14l-1.72.99c-.48.28-.64.89-.37 1.37.28.48.89.64 1.37.37L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l1.51.87c.48.28 1.09.11 1.37-.37s.11-1.09-.37-1.37l-1.72-.99c.1-.37.17-.75.22-1.14H20c.55 0 1-.45 1-1zm-9 3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z" -}), 'PestControlRounded'); \ No newline at end of file +}), 'PestControlRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlSharp.js b/packages/material-ui-icons/lib/PestControlSharp.js index 175758824ae68f..197ae638227f54 100644 --- a/packages/material-ui-icons/lib/PestControlSharp.js +++ b/packages/material-ui-icons/lib/PestControlSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65C8.24 6.45 8 7.2 8 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-8 2h-2v-6h2v6z" -}), 'PestControlSharp'); \ No newline at end of file +}), 'PestControlSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PestControlTwoTone.js b/packages/material-ui-icons/lib/PestControlTwoTone.js index 7f3734d20c9644..0a0400a3e0342d 100644 --- a/packages/material-ui-icons/lib/PestControlTwoTone.js +++ b/packages/material-ui-icons/lib/PestControlTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9c-2.21 0-4 2.24-4 5s1.79 5 4 5 4-2.24 4-5-1.79-5-4-5zm1 8h-2v-6h2v6zm.88-9.64C13.62 6.57 12.88 6 12 6s-1.62.57-1.88 1.36C10.71 7.13 11.34 7 12 7s1.29.13 1.88.36z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.1-.56.2-1.69-.58-2.89L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65c-.78 1.2-.68 2.34-.58 2.89-.37.39-.71.82-.99 1.29L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-9-9c.88 0 1.62.57 1.88 1.36C13.29 7.13 12.66 7 12 7s-1.29.13-1.88.36C10.38 6.57 11.12 6 12 6zm0 13c-2.21 0-4-2.24-4-5s1.79-5 4-5 4 2.24 4 5-1.79 5-4 5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11h2v6h-2z" -}, "2")], 'PestControlTwoTone'); \ No newline at end of file +}, "2")], 'PestControlTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pets.js b/packages/material-ui-icons/lib/Pets.js index 8c5d1f8bb2e08b..1b14248a06977b 100644 --- a/packages/material-ui-icons/lib/Pets.js +++ b/packages/material-ui-icons/lib/Pets.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "2.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "5.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "5.5", r: "2.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "9.5", r: "2.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" -}, "4")], 'Pets'); \ No newline at end of file +}, "4")], 'Pets'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PetsOutlined.js b/packages/material-ui-icons/lib/PetsOutlined.js index 9743ba3c1ea588..7b56ebd8c550f4 100644 --- a/packages/material-ui-icons/lib/PetsOutlined.js +++ b/packages/material-ui-icons/lib/PetsOutlined.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "2.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "5.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "5.5", r: "2.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "9.5", r: "2.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" -}, "4")], 'PetsOutlined'); \ No newline at end of file +}, "4")], 'PetsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PetsRounded.js b/packages/material-ui-icons/lib/PetsRounded.js index 967917923e6cd0..3e2bbf16d7e364 100644 --- a/packages/material-ui-icons/lib/PetsRounded.js +++ b/packages/material-ui-icons/lib/PetsRounded.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "2.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "5.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "5.5", r: "2.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "9.5", r: "2.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" -}, "4")], 'PetsRounded'); \ No newline at end of file +}, "4")], 'PetsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PetsSharp.js b/packages/material-ui-icons/lib/PetsSharp.js index 543a055c4d2d22..d596b6cab585e9 100644 --- a/packages/material-ui-icons/lib/PetsSharp.js +++ b/packages/material-ui-icons/lib/PetsSharp.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "2.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "5.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "5.5", r: "2.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "9.5", r: "2.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" -}, "4")], 'PetsSharp'); \ No newline at end of file +}, "4")], 'PetsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PetsTwoTone.js b/packages/material-ui-icons/lib/PetsTwoTone.js index 827f8b0477541c..78289e98af137d 100644 --- a/packages/material-ui-icons/lib/PetsTwoTone.js +++ b/packages/material-ui-icons/lib/PetsTwoTone.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4.5", cy: "9.5", r: "2.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "5.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "5.5", r: "2.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19.5", cy: "9.5", r: "2.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" -}, "4")], 'PetsTwoTone'); \ No newline at end of file +}, "4")], 'PetsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Phone.js b/packages/material-ui-icons/lib/Phone.js index 609eb2ec5814e4..342dabc78670f4 100644 --- a/packages/material-ui-icons/lib/Phone.js +++ b/packages/material-ui-icons/lib/Phone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z" -}), 'Phone'); \ No newline at end of file +}), 'Phone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneAndroid.js b/packages/material-ui-icons/lib/PhoneAndroid.js index e2657c37e260ec..0b37f37cbea9a9 100644 --- a/packages/material-ui-icons/lib/PhoneAndroid.js +++ b/packages/material-ui-icons/lib/PhoneAndroid.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3.25-3H6.75V4h10.5v14z" -}), 'PhoneAndroid'); \ No newline at end of file +}), 'PhoneAndroid'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneAndroidOutlined.js b/packages/material-ui-icons/lib/PhoneAndroidOutlined.js index d6f08c587f6606..209591de854c89 100644 --- a/packages/material-ui-icons/lib/PhoneAndroidOutlined.js +++ b/packages/material-ui-icons/lib/PhoneAndroidOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm1 17H7V4h10v14zm-3 3h-4v-1h4v1z" -}), 'PhoneAndroidOutlined'); \ No newline at end of file +}), 'PhoneAndroidOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneAndroidRounded.js b/packages/material-ui-icons/lib/PhoneAndroidRounded.js index 93e53cf1ef491f..21be4c628c94bd 100644 --- a/packages/material-ui-icons/lib/PhoneAndroidRounded.js +++ b/packages/material-ui-icons/lib/PhoneAndroidRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2.5 20h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm3.5-3H7V4h10v14z" -}), 'PhoneAndroidRounded'); \ No newline at end of file +}), 'PhoneAndroidRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneAndroidSharp.js b/packages/material-ui-icons/lib/PhoneAndroidSharp.js index 13d08f2c3355ce..aac37353b51c83 100644 --- a/packages/material-ui-icons/lib/PhoneAndroidSharp.js +++ b/packages/material-ui-icons/lib/PhoneAndroidSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5v22h14V1zm-5 20h-4v-1h4v1zm3-3H7V4h10v14z" -}), 'PhoneAndroidSharp'); \ No newline at end of file +}), 'PhoneAndroidSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneAndroidTwoTone.js b/packages/material-ui-icons/lib/PhoneAndroidTwoTone.js index 88174887440f86..cd39239a362d09 100644 --- a/packages/material-ui-icons/lib/PhoneAndroidTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneAndroidTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 4h10v14H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3-3H7V4h10v14z" -}, "1")], 'PhoneAndroidTwoTone'); \ No newline at end of file +}, "1")], 'PhoneAndroidTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneBluetoothSpeaker.js b/packages/material-ui-icons/lib/PhoneBluetoothSpeaker.js index c838c4d1eaf8be..330c5ee601c797 100644 --- a/packages/material-ui-icons/lib/PhoneBluetoothSpeaker.js +++ b/packages/material-ui-icons/lib/PhoneBluetoothSpeaker.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21zm2 8.29c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" -}), 'PhoneBluetoothSpeaker'); \ No newline at end of file +}), 'PhoneBluetoothSpeaker'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerOutlined.js b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerOutlined.js index 0f077a91e7e951..9a78b293fcca6d 100644 --- a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerOutlined.js +++ b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21z" -}), 'PhoneBluetoothSpeakerOutlined'); \ No newline at end of file +}), 'PhoneBluetoothSpeakerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerRounded.js b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerRounded.js index da325873e860ff..0abb9362bbbd3a 100644 --- a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerRounded.js +++ b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98zm-2.44-9.25-2.45 2.45c-.2.2-.2.52 0 .71.2.2.52.2.71 0L17 7.23v3.15c0 .2.12.39.31.47.06.03.13.04.19.04.13 0 .26-.05.36-.15l2.18-2.18c.2-.2.2-.52 0-.71l-1.83-1.83 1.83-1.83c.09-.09.15-.22.15-.36s-.05-.26-.15-.36l-2.18-2.18c-.14-.14-.36-.19-.55-.11-.19.08-.31.26-.31.46v3.15l-1.95-1.95c-.2-.2-.52-.2-.71 0-.2.2-.2.52 0 .71l2.45 2.46zm1.22-3.15.96.96-.96.96V2.86zm0 4.37.96.96-.96.96V7.23z" -}), 'PhoneBluetoothSpeakerRounded'); \ No newline at end of file +}), 'PhoneBluetoothSpeakerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerSharp.js b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerSharp.js index 4a7d91b343700e..f0e839942f1b20 100644 --- a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerSharp.js +++ b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21zm3 8.25-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" -}), 'PhoneBluetoothSpeakerSharp'); \ No newline at end of file +}), 'PhoneBluetoothSpeakerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerTwoTone.js b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerTwoTone.js index c7531801685651..ade3e8a4cb9dcd 100644 --- a/packages/material-ui-icons/lib/PhoneBluetoothSpeakerTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneBluetoothSpeakerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21z" -}, "1")], 'PhoneBluetoothSpeakerTwoTone'); \ No newline at end of file +}, "1")], 'PhoneBluetoothSpeakerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneCallback.js b/packages/material-ui-icons/lib/PhoneCallback.js index 7a312505c5ab06..d2128fcb335583 100644 --- a/packages/material-ui-icons/lib/PhoneCallback.js +++ b/packages/material-ui-icons/lib/PhoneCallback.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2zm13.54-7.1-.71-.7L13 9.29V5h-1v6h6v-1h-4.15z" -}), 'PhoneCallback'); \ No newline at end of file +}), 'PhoneCallback'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneCallbackOutlined.js b/packages/material-ui-icons/lib/PhoneCallbackOutlined.js index 42c2a03cf6e1c1..87e92d8d1776d9 100644 --- a/packages/material-ui-icons/lib/PhoneCallbackOutlined.js +++ b/packages/material-ui-icons/lib/PhoneCallbackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" -}), 'PhoneCallbackOutlined'); \ No newline at end of file +}), 'PhoneCallbackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneCallbackRounded.js b/packages/material-ui-icons/lib/PhoneCallbackRounded.js index 8f0b084bcc1ffb..7a46ba4748a234 100644 --- a/packages/material-ui-icons/lib/PhoneCallbackRounded.js +++ b/packages/material-ui-icons/lib/PhoneCallbackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98zM13 11h4c.55 0 1-.45 1-1s-.45-1-1-1h-1.59l4.31-4.31c.39-.39.39-1.02 0-1.41s-1.02-.39-1.41 0L14 7.59V6c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" -}), 'PhoneCallbackRounded'); \ No newline at end of file +}), 'PhoneCallbackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneCallbackSharp.js b/packages/material-ui-icons/lib/PhoneCallbackSharp.js index e3693c15d91624..2d978ba08ec66d 100644 --- a/packages/material-ui-icons/lib/PhoneCallbackSharp.js +++ b/packages/material-ui-icons/lib/PhoneCallbackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.73 14.85-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" -}), 'PhoneCallbackSharp'); \ No newline at end of file +}), 'PhoneCallbackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneCallbackTwoTone.js b/packages/material-ui-icons/lib/PhoneCallbackTwoTone.js index 852bfdce689586..751c75ed7b6e72 100644 --- a/packages/material-ui-icons/lib/PhoneCallbackTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneCallbackTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6zm8.66 13.21c1.2.41 2.48.67 3.8.75v-1.49c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" -}, "1")], 'PhoneCallbackTwoTone'); \ No newline at end of file +}, "1")], 'PhoneCallbackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneDisabled.js b/packages/material-ui-icons/lib/PhoneDisabled.js index d2b08ecd474b81..a07127ea1fb018 100644 --- a/packages/material-ui-icons/lib/PhoneDisabled.js +++ b/packages/material-ui-icons/lib/PhoneDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 14.54-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26z" -}), 'PhoneDisabled'); \ No newline at end of file +}), 'PhoneDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneDisabledOutlined.js b/packages/material-ui-icons/lib/PhoneDisabledOutlined.js index 1104a0db2baefb..f0946131777f22 100644 --- a/packages/material-ui-icons/lib/PhoneDisabledOutlined.js +++ b/packages/material-ui-icons/lib/PhoneDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 14.54-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zm-6.92-.33c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19zM17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51z" -}), 'PhoneDisabledOutlined'); \ No newline at end of file +}), 'PhoneDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneDisabledRounded.js b/packages/material-ui-icons/lib/PhoneDisabledRounded.js index a121fabeff2cd2..c37eadee95e492 100644 --- a/packages/material-ui-icons/lib/PhoneDisabledRounded.js +++ b/packages/material-ui-icons/lib/PhoneDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.54 17.37c-2.63 2.08-5.89 3.39-9.45 3.61-1.13.07-2.07-.87-2.07-2v-1.73c-.01-1.01.75-1.86 1.76-1.98l2.54-.29c.61-.07 1.21.14 1.64.57l1.84 1.84c.81-.41 1.59-.9 2.31-1.45L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.03-.39 1.42 0L20.49 20.5c.39.39.39 1.02 0 1.41s-1.02.39-1.41 0l-4.54-4.54zm2.85-6.57-1.85-1.85c-.43-.43-.64-1.03-.57-1.64l.29-2.52c.12-1.01.97-1.77 1.99-1.77h1.73c1.13 0 2.07.94 2 2.07-.22 3.57-1.54 6.83-3.62 9.47l-1.43-1.43c.55-.73 1.04-1.51 1.46-2.33z" -}), 'PhoneDisabledRounded'); \ No newline at end of file +}), 'PhoneDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneDisabledSharp.js b/packages/material-ui-icons/lib/PhoneDisabledSharp.js index 93263f63a12c43..ec08c9b52296b5 100644 --- a/packages/material-ui-icons/lib/PhoneDisabledSharp.js +++ b/packages/material-ui-icons/lib/PhoneDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.52 17.35C11.39 19.83 7.36 21.22 3 20.97v-5.51l5.27-.61 2.52 2.52c.81-.41 1.58-.9 2.3-1.45L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zm1.39-4.24c.56-.73 1.05-1.51 1.47-2.33l-2.53-2.53.61-5.25h5.51c.25 4.37-1.15 8.4-3.63 11.54l-1.43-1.43z" -}), 'PhoneDisabledSharp'); \ No newline at end of file +}), 'PhoneDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneDisabledTwoTone.js b/packages/material-ui-icons/lib/PhoneDisabledTwoTone.js index 28febcdc1b549f..86cf59da99f469 100644 --- a/packages/material-ui-icons/lib/PhoneDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneDisabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.34 14.54-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zM17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51zM7.6 17.02c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19z" -}), 'PhoneDisabledTwoTone'); \ No newline at end of file +}), 'PhoneDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneEnabled.js b/packages/material-ui-icons/lib/PhoneEnabled.js index 85901348d75028..b6ecb305d71de6 100644 --- a/packages/material-ui-icons/lib/PhoneEnabled.js +++ b/packages/material-ui-icons/lib/PhoneEnabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.38 10.79-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59z" -}), 'PhoneEnabled'); \ No newline at end of file +}), 'PhoneEnabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneEnabledOutlined.js b/packages/material-ui-icons/lib/PhoneEnabledOutlined.js index a7671299ae2217..12ca5d35277c0f 100644 --- a/packages/material-ui-icons/lib/PhoneEnabledOutlined.js +++ b/packages/material-ui-icons/lib/PhoneEnabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51zM7.6 17.02c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19zM16.5 3H20c.55 0 1 .45 1 1 0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1z" -}), 'PhoneEnabledOutlined'); \ No newline at end of file +}), 'PhoneEnabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneEnabledRounded.js b/packages/material-ui-icons/lib/PhoneEnabledRounded.js index 2904c4bd9f0548..f6bf4efc43986c 100644 --- a/packages/material-ui-icons/lib/PhoneEnabledRounded.js +++ b/packages/material-ui-icons/lib/PhoneEnabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.78 15.27 2.54-.29c.61-.07 1.21.14 1.64.57l1.84 1.84c2.83-1.44 5.15-3.75 6.59-6.59l-1.85-1.85c-.43-.43-.64-1.03-.57-1.64l.29-2.52c.12-1.01.97-1.77 1.99-1.77h1.73c1.13 0 2.07.94 2 2.07-.53 8.54-7.36 15.36-15.89 15.89-1.13.07-2.07-.87-2.07-2v-1.73c-.01-1.01.75-1.86 1.76-1.98z" -}), 'PhoneEnabledRounded'); \ No newline at end of file +}), 'PhoneEnabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneEnabledSharp.js b/packages/material-ui-icons/lib/PhoneEnabledSharp.js index 968427f450ae73..5dc4df4253f9bb 100644 --- a/packages/material-ui-icons/lib/PhoneEnabledSharp.js +++ b/packages/material-ui-icons/lib/PhoneEnabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3 15.46 5.27-.61 2.52 2.52c2.83-1.44 5.15-3.75 6.59-6.59l-2.53-2.53.61-5.25h5.51C21.55 13.18 13.18 21.55 3 20.97v-5.51z" -}), 'PhoneEnabledSharp'); \ No newline at end of file +}), 'PhoneEnabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneEnabledTwoTone.js b/packages/material-ui-icons/lib/PhoneEnabledTwoTone.js index 77f396662c3db6..7fa4bcd9a39f2c 100644 --- a/packages/material-ui-icons/lib/PhoneEnabledTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneEnabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4c0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1zM7.6 17.02c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19zM17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51z" -}), 'PhoneEnabledTwoTone'); \ No newline at end of file +}), 'PhoneEnabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneForwarded.js b/packages/material-ui-icons/lib/PhoneForwarded.js index 04b41b33458012..f773d89069e9da 100644 --- a/packages/material-ui-icons/lib/PhoneForwarded.js +++ b/packages/material-ui-icons/lib/PhoneForwarded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 11 5-5-5-5v3h-4v4h4v3zm2 4.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" -}), 'PhoneForwarded'); \ No newline at end of file +}), 'PhoneForwarded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneForwardedOutlined.js b/packages/material-ui-icons/lib/PhoneForwardedOutlined.js index 8dc291348ab4c5..057da4333f2634 100644 --- a/packages/material-ui-icons/lib/PhoneForwardedOutlined.js +++ b/packages/material-ui-icons/lib/PhoneForwardedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z" -}), 'PhoneForwardedOutlined'); \ No newline at end of file +}), 'PhoneForwardedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneForwardedRounded.js b/packages/material-ui-icons/lib/PhoneForwardedRounded.js index 1e29df1aa08ba1..8943da29429eec 100644 --- a/packages/material-ui-icons/lib/PhoneForwardedRounded.js +++ b/packages/material-ui-icons/lib/PhoneForwardedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.65 5.65-3.79-3.79c-.32-.32-.86-.1-.86.35V4h-3.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5H18v1.79c0 .45.54.67.85.35l3.79-3.79c.2-.19.2-.51.01-.7zm-3.42 9.61-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" -}), 'PhoneForwardedRounded'); \ No newline at end of file +}), 'PhoneForwardedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneForwardedSharp.js b/packages/material-ui-icons/lib/PhoneForwardedSharp.js index 53c83b7ffc480e..3bf0715a1b26f3 100644 --- a/packages/material-ui-icons/lib/PhoneForwardedSharp.js +++ b/packages/material-ui-icons/lib/PhoneForwardedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 11 5-5-5-5v3h-4v4h4zm-4.79 6.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" -}), 'PhoneForwardedSharp'); \ No newline at end of file +}), 'PhoneForwardedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneForwardedTwoTone.js b/packages/material-ui-icons/lib/PhoneForwardedTwoTone.js index 35a9bc22de1276..f230e81ab49f24 100644 --- a/packages/material-ui-icons/lib/PhoneForwardedTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneForwardedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z" -}, "1")], 'PhoneForwardedTwoTone'); \ No newline at end of file +}, "1")], 'PhoneForwardedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneInTalk.js b/packages/material-ui-icons/lib/PhoneInTalk.js index 45a73054bc3a44..8343bdca9e7d12 100644 --- a/packages/material-ui-icons/lib/PhoneInTalk.js +++ b/packages/material-ui-icons/lib/PhoneInTalk.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3z" -}), 'PhoneInTalk'); \ No newline at end of file +}), 'PhoneInTalk'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneInTalkOutlined.js b/packages/material-ui-icons/lib/PhoneInTalkOutlined.js index 57e5534943cf7e..3453aeb9e781f9 100644 --- a/packages/material-ui-icons/lib/PhoneInTalkOutlined.js +++ b/packages/material-ui-icons/lib/PhoneInTalkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z" -}), 'PhoneInTalkOutlined'); \ No newline at end of file +}), 'PhoneInTalkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneInTalkRounded.js b/packages/material-ui-icons/lib/PhoneInTalkRounded.js index 09045a6847e840..21eae9ba6b55ed 100644 --- a/packages/material-ui-icons/lib/PhoneInTalkRounded.js +++ b/packages/material-ui-icons/lib/PhoneInTalkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.88 5.05c3.18.4 5.67 2.89 6.07 6.07.06.51.49.88.99.88.04 0 .08 0 .12-.01.55-.07.94-.57.87-1.12-.51-4.09-3.72-7.3-7.81-7.81-.55-.06-1.05.33-1.11.88-.07.55.32 1.05.87 1.11zm.38 2.11c-.53-.14-1.08.18-1.22.72s.18 1.08.72 1.22c1.05.27 1.87 1.09 2.15 2.15.12.45.52.75.97.75.08 0 .17-.01.25-.03.53-.14.85-.69.72-1.22-.47-1.77-1.84-3.14-3.59-3.59zm5.97 8.1-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" -}), 'PhoneInTalkRounded'); \ No newline at end of file +}), 'PhoneInTalkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneInTalkSharp.js b/packages/material-ui-icons/lib/PhoneInTalkSharp.js index d6e4693abb9236..38e2ec435ade14 100644 --- a/packages/material-ui-icons/lib/PhoneInTalkSharp.js +++ b/packages/material-ui-icons/lib/PhoneInTalkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm-1.79 5.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" -}), 'PhoneInTalkSharp'); \ No newline at end of file +}), 'PhoneInTalkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneInTalkTwoTone.js b/packages/material-ui-icons/lib/PhoneInTalkTwoTone.js index cbdf3752cc6daa..15ce79861d45ab 100644 --- a/packages/material-ui-icons/lib/PhoneInTalkTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneInTalkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z" -}, "1")], 'PhoneInTalkTwoTone'); \ No newline at end of file +}, "1")], 'PhoneInTalkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneIphone.js b/packages/material-ui-icons/lib/PhoneIphone.js index 98e2b28dd2f32f..e8a231baa3b3c2 100644 --- a/packages/material-ui-icons/lib/PhoneIphone.js +++ b/packages/material-ui-icons/lib/PhoneIphone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" -}), 'PhoneIphone'); \ No newline at end of file +}), 'PhoneIphone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneIphoneOutlined.js b/packages/material-ui-icons/lib/PhoneIphoneOutlined.js index 446a69ee7b85c3..76eda618d56cef 100644 --- a/packages/material-ui-icons/lib/PhoneIphoneOutlined.js +++ b/packages/material-ui-icons/lib/PhoneIphoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" -}), 'PhoneIphoneOutlined'); \ No newline at end of file +}), 'PhoneIphoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneIphoneRounded.js b/packages/material-ui-icons/lib/PhoneIphoneRounded.js index 06389c29a5461f..63a8200b7cac13 100644 --- a/packages/material-ui-icons/lib/PhoneIphoneRounded.js +++ b/packages/material-ui-icons/lib/PhoneIphoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" -}), 'PhoneIphoneRounded'); \ No newline at end of file +}), 'PhoneIphoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneIphoneSharp.js b/packages/material-ui-icons/lib/PhoneIphoneSharp.js index f754729fa99eed..bdc512247da3a0 100644 --- a/packages/material-ui-icons/lib/PhoneIphoneSharp.js +++ b/packages/material-ui-icons/lib/PhoneIphoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1H5v22h13V1zm-6.5 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" -}), 'PhoneIphoneSharp'); \ No newline at end of file +}), 'PhoneIphoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneIphoneTwoTone.js b/packages/material-ui-icons/lib/PhoneIphoneTwoTone.js index ac2e003f41d020..bbe3b8237e2c2e 100644 --- a/packages/material-ui-icons/lib/PhoneIphoneTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneIphoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 4h9v14H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" -}, "1")], 'PhoneIphoneTwoTone'); \ No newline at end of file +}, "1")], 'PhoneIphoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneLocked.js b/packages/material-ui-icons/lib/PhoneLocked.js index c8c68dec5765a6..e2c6a6246512a3 100644 --- a/packages/material-ui-icons/lib/PhoneLocked.js +++ b/packages/material-ui-icons/lib/PhoneLocked.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4z" -}), 'PhoneLocked'); \ No newline at end of file +}), 'PhoneLocked'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneLockedOutlined.js b/packages/material-ui-icons/lib/PhoneLockedOutlined.js index 01d25b5e0cdd24..a3d7239655b029 100644 --- a/packages/material-ui-icons/lib/PhoneLockedOutlined.js +++ b/packages/material-ui-icons/lib/PhoneLockedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" -}), 'PhoneLockedOutlined'); \ No newline at end of file +}), 'PhoneLockedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneLockedRounded.js b/packages/material-ui-icons/lib/PhoneLockedRounded.js index c3c18caacdbbe6..08db841a733453 100644 --- a/packages/material-ui-icons/lib/PhoneLockedRounded.js +++ b/packages/material-ui-icons/lib/PhoneLockedRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5v-.89c0-1-.68-1.92-1.66-2.08C17.08 1.82 16 2.79 16 4v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 0h-2V4c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" -}, "1")], 'PhoneLockedRounded'); \ No newline at end of file +}, "1")], 'PhoneLockedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneLockedSharp.js b/packages/material-ui-icons/lib/PhoneLockedSharp.js index 6af04297c78bf4..6550fa3558c85a 100644 --- a/packages/material-ui-icons/lib/PhoneLockedSharp.js +++ b/packages/material-ui-icons/lib/PhoneLockedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.21 17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52zM20 4v-.36c0-1.31-.94-2.5-2.24-2.63C16.26.86 15 2.03 15 3.5V4h-1v6h7V4h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" -}), 'PhoneLockedSharp'); \ No newline at end of file +}), 'PhoneLockedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneLockedTwoTone.js b/packages/material-ui-icons/lib/PhoneLockedTwoTone.js index d27cd458320ea5..3557148eeffbe1 100644 --- a/packages/material-ui-icons/lib/PhoneLockedTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneLockedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" -}, "1")], 'PhoneLockedTwoTone'); \ No newline at end of file +}, "1")], 'PhoneLockedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneMissed.js b/packages/material-ui-icons/lib/PhoneMissed.js index f7188ac58b352f..d2d3ee54f952a0 100644 --- a/packages/material-ui-icons/lib/PhoneMissed.js +++ b/packages/material-ui-icons/lib/PhoneMissed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 5.5 12 11l7-7-1-1-6 6-4.5-4.5H11V3H5v6h1.5V5.5zm17.21 11.17C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z" -}), 'PhoneMissed'); \ No newline at end of file +}), 'PhoneMissed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneMissedOutlined.js b/packages/material-ui-icons/lib/PhoneMissedOutlined.js index e1c6ef78143b7d..49da778e7f6e8e 100644 --- a/packages/material-ui-icons/lib/PhoneMissedOutlined.js +++ b/packages/material-ui-icons/lib/PhoneMissedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" -}), 'PhoneMissedOutlined'); \ No newline at end of file +}), 'PhoneMissedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneMissedRounded.js b/packages/material-ui-icons/lib/PhoneMissedRounded.js index b5ea7774bab326..5bef679f22d1e9 100644 --- a/packages/material-ui-icons/lib/PhoneMissedRounded.js +++ b/packages/material-ui-icons/lib/PhoneMissedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.09 16.2c-6.33-5.59-15.86-5.59-22.18 0-.84.74-.84 2.05-.05 2.84l1.2 1.2c.71.71 1.84.77 2.62.15l1.97-1.57c.47-.37.75-.94.75-1.55V14.7c2.98-.97 6.21-.98 9.2 0v2.58c0 .6.28 1.17.75 1.55l1.96 1.56c.79.62 1.91.56 2.62-.15l1.2-1.2c.8-.79.79-2.1-.04-2.84zM6 9c.55 0 1-.45 1-1V6.43l4.24 4.24c.39.39 1.02.39 1.41 0l5.66-5.66c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-4.95 4.95L8.4 5H10c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" -}), 'PhoneMissedRounded'); \ No newline at end of file +}), 'PhoneMissedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneMissedSharp.js b/packages/material-ui-icons/lib/PhoneMissedSharp.js index 249efdbca1a633..078f2ab3f5d762 100644 --- a/packages/material-ui-icons/lib/PhoneMissedSharp.js +++ b/packages/material-ui-icons/lib/PhoneMissedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.32 16.67c-2.95-2.79-6.93-4.51-11.31-4.51-4.39 0-8.37 1.72-11.31 4.51l-.69.69L3.65 21l3.93-2.72-.01-3.49c1.4-.45 2.9-.7 4.44-.7 1.55 0 3.04.24 4.44.7l-.01 3.49L20.37 21l3.64-3.64c0-.01-.52-.52-.69-.69zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" -}), 'PhoneMissedSharp'); \ No newline at end of file +}), 'PhoneMissedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneMissedTwoTone.js b/packages/material-ui-icons/lib/PhoneMissedTwoTone.js index 7478fda05bfdb5..bcc062e7766ea3 100644 --- a/packages/material-ui-icons/lib/PhoneMissedTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneMissedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.6 17.22c.66.37 1.28.79 1.88 1.27l1.07-1.07c-.91-.75-1.9-1.39-2.95-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" -}, "1")], 'PhoneMissedTwoTone'); \ No newline at end of file +}, "1")], 'PhoneMissedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneOutlined.js b/packages/material-ui-icons/lib/PhoneOutlined.js index c9afa772fb44bb..6f7c56c525109f 100644 --- a/packages/material-ui-icons/lib/PhoneOutlined.js +++ b/packages/material-ui-icons/lib/PhoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" -}), 'PhoneOutlined'); \ No newline at end of file +}), 'PhoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonePaused.js b/packages/material-ui-icons/lib/PhonePaused.js index 4e76c168cdbb07..72782487b8463b 100644 --- a/packages/material-ui-icons/lib/PhonePaused.js +++ b/packages/material-ui-icons/lib/PhonePaused.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3h-2v7h2V3zm3 12.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 3v7h2V3h-2z" -}), 'PhonePaused'); \ No newline at end of file +}), 'PhonePaused'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonePausedOutlined.js b/packages/material-ui-icons/lib/PhonePausedOutlined.js index d550aba0772193..4e2a43bd8c144f 100644 --- a/packages/material-ui-icons/lib/PhonePausedOutlined.js +++ b/packages/material-ui-icons/lib/PhonePausedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5c.06.88.21 1.75.44 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79h1.51m9.86 12.01c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1zM15 3h2v7h-2zm4 0h2v7h-2z" -}), 'PhonePausedOutlined'); \ No newline at end of file +}), 'PhonePausedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonePausedRounded.js b/packages/material-ui-icons/lib/PhonePausedRounded.js index 061a225f51ccaa..b6e184bf1556cb 100644 --- a/packages/material-ui-icons/lib/PhonePausedRounded.js +++ b/packages/material-ui-icons/lib/PhonePausedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 3c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm3 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zm.23 11.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" -}), 'PhonePausedRounded'); \ No newline at end of file +}), 'PhonePausedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonePausedSharp.js b/packages/material-ui-icons/lib/PhonePausedSharp.js index 71fac53f06adea..f5fd1477cbebee 100644 --- a/packages/material-ui-icons/lib/PhonePausedSharp.js +++ b/packages/material-ui-icons/lib/PhonePausedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3h2v7h-2zm4 0h2v7h-2zm-5.79 14.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" -}), 'PhonePausedSharp'); \ No newline at end of file +}), 'PhonePausedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonePausedTwoTone.js b/packages/material-ui-icons/lib/PhonePausedTwoTone.js index 3d91da8d44964c..b40ad3986bbb39 100644 --- a/packages/material-ui-icons/lib/PhonePausedTwoTone.js +++ b/packages/material-ui-icons/lib/PhonePausedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM15 3h2v7h-2zm4 0h2v7h-2z" -}, "1")], 'PhonePausedTwoTone'); \ No newline at end of file +}, "1")], 'PhonePausedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneRounded.js b/packages/material-ui-icons/lib/PhoneRounded.js index d8aa9691aafb15..1ee0c0a1e61cc4 100644 --- a/packages/material-ui-icons/lib/PhoneRounded.js +++ b/packages/material-ui-icons/lib/PhoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" -}), 'PhoneRounded'); \ No newline at end of file +}), 'PhoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneSharp.js b/packages/material-ui-icons/lib/PhoneSharp.js index 33aee288b839cf..edaa3411d38b9a 100644 --- a/packages/material-ui-icons/lib/PhoneSharp.js +++ b/packages/material-ui-icons/lib/PhoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 15.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" -}), 'PhoneSharp'); \ No newline at end of file +}), 'PhoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhoneTwoTone.js b/packages/material-ui-icons/lib/PhoneTwoTone.js index d615f14887c734..7acecf7455971a 100644 --- a/packages/material-ui-icons/lib/PhoneTwoTone.js +++ b/packages/material-ui-icons/lib/PhoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM5.03 5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.23-.84-.38-1.71-.44-2.6H5.03z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.07 7.57C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02zm7.33 9.45c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.79 8.8c-.41-1.21-.67-2.48-.76-3.8h1.5c.07.89.22 1.76.46 2.59L5.79 8.8z" -}, "1")], 'PhoneTwoTone'); \ No newline at end of file +}, "1")], 'PhoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Phonelink.js b/packages/material-ui-icons/lib/Phonelink.js index 16288c7d40d493..1c92839a6f46f1 100644 --- a/packages/material-ui-icons/lib/Phonelink.js +++ b/packages/material-ui-icons/lib/Phonelink.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" -}), 'Phonelink'); \ No newline at end of file +}), 'Phonelink'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkErase.js b/packages/material-ui-icons/lib/PhonelinkErase.js index 8c908f6dbce8a3..588050acb39b1e 100644 --- a/packages/material-ui-icons/lib/PhonelinkErase.js +++ b/packages/material-ui-icons/lib/PhonelinkErase.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 8.2-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" -}), 'PhonelinkErase'); \ No newline at end of file +}), 'PhonelinkErase'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkEraseOutlined.js b/packages/material-ui-icons/lib/PhonelinkEraseOutlined.js index c4f24eb4656d92..b62456ff921b07 100644 --- a/packages/material-ui-icons/lib/PhonelinkEraseOutlined.js +++ b/packages/material-ui-icons/lib/PhonelinkEraseOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 8.2-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" -}), 'PhonelinkEraseOutlined'); \ No newline at end of file +}), 'PhonelinkEraseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkEraseRounded.js b/packages/material-ui-icons/lib/PhonelinkEraseRounded.js index 716ae144eaaff2..d110636dc0eef2 100644 --- a/packages/material-ui-icons/lib/PhonelinkEraseRounded.js +++ b/packages/material-ui-icons/lib/PhonelinkEraseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 7.7c-.28-.28-.72-.28-1 0L8 11.2 4.5 7.7c-.28-.28-.72-.28-1 0s-.28.72 0 1L7 12.2l-3.5 3.5c-.28.28-.28.72 0 1s.72.28 1 0L8 13.2l3.5 3.5c.28.28.72.28 1 0s.28-.72 0-1L9 12.2l3.5-3.5c.28-.28.28-.72 0-1zM19 1H9c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" -}), 'PhonelinkEraseRounded'); \ No newline at end of file +}), 'PhonelinkEraseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkEraseSharp.js b/packages/material-ui-icons/lib/PhonelinkEraseSharp.js index e02a39a1e9a98c..16f42c5fbc8729 100644 --- a/packages/material-ui-icons/lib/PhonelinkEraseSharp.js +++ b/packages/material-ui-icons/lib/PhonelinkEraseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 8.2-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM21 1H7v5h2V4h10v16H9v-2H7v5h14V1z" -}), 'PhonelinkEraseSharp'); \ No newline at end of file +}), 'PhonelinkEraseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkEraseTwoTone.js b/packages/material-ui-icons/lib/PhonelinkEraseTwoTone.js index da134e48c8c256..b3b776960f46a1 100644 --- a/packages/material-ui-icons/lib/PhonelinkEraseTwoTone.js +++ b/packages/material-ui-icons/lib/PhonelinkEraseTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 17.2 4-4 4 4 1-1-4-4 4-4-1-1-4 4-4-4-1 1 4 4-4 4zM9 23h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2z" -}), 'PhonelinkEraseTwoTone'); \ No newline at end of file +}), 'PhonelinkEraseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkLock.js b/packages/material-ui-icons/lib/PhonelinkLock.js index e665ce6c85b329..d83cca624ac00d 100644 --- a/packages/material-ui-icons/lib/PhonelinkLock.js +++ b/packages/material-ui-icons/lib/PhonelinkLock.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" -}), 'PhonelinkLock'); \ No newline at end of file +}), 'PhonelinkLock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkLockOutlined.js b/packages/material-ui-icons/lib/PhonelinkLockOutlined.js index 3c51f7cc185fca..6e946b6f61029e 100644 --- a/packages/material-ui-icons/lib/PhonelinkLockOutlined.js +++ b/packages/material-ui-icons/lib/PhonelinkLockOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" -}), 'PhonelinkLockOutlined'); \ No newline at end of file +}), 'PhonelinkLockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkLockRounded.js b/packages/material-ui-icons/lib/PhonelinkLockRounded.js index 0f3d2f1da9db5f..e34d45cf9d9d40 100644 --- a/packages/material-ui-icons/lib/PhonelinkLockRounded.js +++ b/packages/material-ui-icons/lib/PhonelinkLockRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'PhonelinkLockRounded'); \ No newline at end of file +}, "1")], 'PhonelinkLockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkLockSharp.js b/packages/material-ui-icons/lib/PhonelinkLockSharp.js index 9e98b33a7ef570..24487b38dd3f67 100644 --- a/packages/material-ui-icons/lib/PhonelinkLockSharp.js +++ b/packages/material-ui-icons/lib/PhonelinkLockSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM10.8 11V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11H4v6h8v-6h-1.2zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" -}), 'PhonelinkLockSharp'); \ No newline at end of file +}), 'PhonelinkLockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkLockTwoTone.js b/packages/material-ui-icons/lib/PhonelinkLockTwoTone.js index 407ca2ec3ff7af..965d12ef21e724 100644 --- a/packages/material-ui-icons/lib/PhonelinkLockTwoTone.js +++ b/packages/material-ui-icons/lib/PhonelinkLockTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 7C6.6 7 5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3V9.5C10.8 8.1 9.4 7 8 7zm1.5 4h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11zM21 21V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2z" -}), 'PhonelinkLockTwoTone'); \ No newline at end of file +}), 'PhonelinkLockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkOff.js b/packages/material-ui-icons/lib/PhonelinkOff.js index 54dc3c4e7be602..42ea6dc1449da4 100644 --- a/packages/material-ui-icons/lib/PhonelinkOff.js +++ b/packages/material-ui-icons/lib/PhonelinkOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6V4H6.82l2 2H22zM1.92 1.65.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.27-1.27L3.89 3.62 1.92 1.65zM4 6.27 14.73 17H4V6.27zM23 8h-6c-.55 0-1 .45-1 1v4.18l2 2V10h4v7h-2.18l3 3H23c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z" -}), 'PhonelinkOff'); \ No newline at end of file +}), 'PhonelinkOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkOffOutlined.js b/packages/material-ui-icons/lib/PhonelinkOffOutlined.js index fc0c4a5c77dba2..457c160439b22d 100644 --- a/packages/material-ui-icons/lib/PhonelinkOffOutlined.js +++ b/packages/material-ui-icons/lib/PhonelinkOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6V4H7.39l2 2zm2 13V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM2.06 1.51.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z" -}), 'PhonelinkOffOutlined'); \ No newline at end of file +}), 'PhonelinkOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkOffRounded.js b/packages/material-ui-icons/lib/PhonelinkOffRounded.js index 9f232890c7ac90..a8ecf2880b4a15 100644 --- a/packages/material-ui-icons/lib/PhonelinkOffRounded.js +++ b/packages/material-ui-icons/lib/PhonelinkOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 19V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM21 6c.55 0 1-.45 1-1s-.45-1-1-1H7.39l2 2H21zM1.36 2.21c-.39.39-.39 1.02 0 1.41l1.11 1.11C2.18 5.08 2 5.52 2 6v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20h16.23l1.64 1.64c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.77 2.21a.9959.9959 0 0 0-1.41 0zM4 17V6.27L14.73 17H4z" -}), 'PhonelinkOffRounded'); \ No newline at end of file +}), 'PhonelinkOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkOffSharp.js b/packages/material-ui-icons/lib/PhonelinkOffSharp.js index c49c9665e9cc7b..05e748be88d5c1 100644 --- a/packages/material-ui-icons/lib/PhonelinkOffSharp.js +++ b/packages/material-ui-icons/lib/PhonelinkOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.56 4-2.5-2.49L4.56 4zM24 8h-8v4.61l2 2V10h4v7h-1.61l3 3H24zm-2-2V4H7.39l2 2zM2.06 1.51.65 2.92 2 4.27V17H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z" -}), 'PhonelinkOffSharp'); \ No newline at end of file +}), 'PhonelinkOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkOffTwoTone.js b/packages/material-ui-icons/lib/PhonelinkOffTwoTone.js index 36811a3d0c9a05..a305152621f11b 100644 --- a/packages/material-ui-icons/lib/PhonelinkOffTwoTone.js +++ b/packages/material-ui-icons/lib/PhonelinkOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 17v-7h-4v4.61L20.39 17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93V9c0-.55-.45-1-1-1zm-1-2V4H7.39l2 2zM.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51.65 2.92zM4 6.27 14.73 17H4V6.27z" -}, "1")], 'PhonelinkOffTwoTone'); \ No newline at end of file +}, "1")], 'PhonelinkOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkOutlined.js b/packages/material-ui-icons/lib/PhonelinkOutlined.js index 726e6febe28219..bc81706d97b6a5 100644 --- a/packages/material-ui-icons/lib/PhonelinkOutlined.js +++ b/packages/material-ui-icons/lib/PhonelinkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" -}), 'PhonelinkOutlined'); \ No newline at end of file +}), 'PhonelinkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkRing.js b/packages/material-ui-icons/lib/PhonelinkRing.js index 5334ca00b4a779..5c6cc3e77831e5 100644 --- a/packages/material-ui-icons/lib/PhonelinkRing.js +++ b/packages/material-ui-icons/lib/PhonelinkRing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.1 7.7-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z" -}), 'PhonelinkRing'); \ No newline at end of file +}), 'PhonelinkRing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkRingOutlined.js b/packages/material-ui-icons/lib/PhonelinkRingOutlined.js index d438e869811a6e..7878d4c675f7ae 100644 --- a/packages/material-ui-icons/lib/PhonelinkRingOutlined.js +++ b/packages/material-ui-icons/lib/PhonelinkRingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.1 7.7-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z" -}), 'PhonelinkRingOutlined'); \ No newline at end of file +}), 'PhonelinkRingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkRingRounded.js b/packages/material-ui-icons/lib/PhonelinkRingRounded.js index 1c1fc15ca68c1e..93a7821180d229 100644 --- a/packages/material-ui-icons/lib/PhonelinkRingRounded.js +++ b/packages/material-ui-icons/lib/PhonelinkRingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.63-11.74c-.26-.32-.74-.36-1.04-.06l-.03.03c-.25.25-.26.65-.05.93 1.26 1.64 1.25 3.87-.02 5.57-.21.28-.19.67.05.92l.05.05c.29.29.76.26 1.03-.05 1.8-2.13 1.8-5.19.01-7.39zm-3.21 2.11-.06.06c-.2.2-.26.5-.15.76.21.49.21 1.03 0 1.52-.11.26-.05.56.15.76l.08.08c.32.32.87.25 1.09-.15.49-.89.49-1.94-.01-2.86a.687.687 0 0 0-1.1-.17z" -}), 'PhonelinkRingRounded'); \ No newline at end of file +}), 'PhonelinkRingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkRingSharp.js b/packages/material-ui-icons/lib/PhonelinkRingSharp.js index fbe726d7ae4724..86519cc10d5eea 100644 --- a/packages/material-ui-icons/lib/PhonelinkRingSharp.js +++ b/packages/material-ui-icons/lib/PhonelinkRingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.1 7.7-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM16 1H2v22h14V1zm-2 19H4V4h10v16z" -}), 'PhonelinkRingSharp'); \ No newline at end of file +}), 'PhonelinkRingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkRingTwoTone.js b/packages/material-ui-icons/lib/PhonelinkRingTwoTone.js index 9975e53443288c..8db9a743fe5e6b 100644 --- a/packages/material-ui-icons/lib/PhonelinkRingTwoTone.js +++ b/packages/material-ui-icons/lib/PhonelinkRingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h10v16H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.1-12.3-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM17 10.8c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3l-1 1z" -}, "1")], 'PhonelinkRingTwoTone'); \ No newline at end of file +}, "1")], 'PhonelinkRingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkRounded.js b/packages/material-ui-icons/lib/PhonelinkRounded.js index 3457f133ab7675..158fb22d6b1c34 100644 --- a/packages/material-ui-icons/lib/PhonelinkRounded.js +++ b/packages/material-ui-icons/lib/PhonelinkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20h11c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H4V7zm19 1h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" -}), 'PhonelinkRounded'); \ No newline at end of file +}), 'PhonelinkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkSetup.js b/packages/material-ui-icons/lib/PhonelinkSetup.js index 763ede687f3bb2..098276a66d5883 100644 --- a/packages/material-ui-icons/lib/PhonelinkSetup.js +++ b/packages/material-ui-icons/lib/PhonelinkSetup.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.82 12.49c.02-.16.04-.32.04-.49 0-.17-.02-.33-.04-.49l1.08-.82c.1-.07.12-.21.06-.32l-1.03-1.73c-.06-.11-.2-.15-.31-.11l-1.28.5c-.27-.2-.56-.36-.87-.49l-.2-1.33c0-.12-.11-.21-.24-.21H5.98c-.13 0-.24.09-.26.21l-.2 1.32c-.31.12-.6.3-.87.49l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.73c-.06.12-.03.25.07.33l1.08.82c-.02.16-.03.33-.03.49 0 .17.02.33.04.49l-1.09.83c-.1.07-.12.21-.06.32l1.03 1.73c.06.11.2.15.31.11l1.28-.5c.27.2.56.36.87.49l.2 1.32c.01.12.12.21.25.21h2.06c.13 0 .24-.09.25-.21l.2-1.32c.31-.12.6-.3.87-.49l1.28.5c.12.05.25 0 .31-.11l1.03-1.73c.06-.11.04-.24-.06-.32l-1.1-.83zM7 13.75c-.99 0-1.8-.78-1.8-1.75s.81-1.75 1.8-1.75 1.8.78 1.8 1.75S8 13.75 7 13.75zM18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" -}), 'PhonelinkSetup'); \ No newline at end of file +}), 'PhonelinkSetup'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkSetupOutlined.js b/packages/material-ui-icons/lib/PhonelinkSetupOutlined.js index 10768d82025b37..6a115606ed8eb0 100644 --- a/packages/material-ui-icons/lib/PhonelinkSetupOutlined.js +++ b/packages/material-ui-icons/lib/PhonelinkSetupOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" -}), 'PhonelinkSetupOutlined'); \ No newline at end of file +}), 'PhonelinkSetupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkSetupRounded.js b/packages/material-ui-icons/lib/PhonelinkSetupRounded.js index e48641eb3f2427..55ffc13780fff7 100644 --- a/packages/material-ui-icons/lib/PhonelinkSetupRounded.js +++ b/packages/material-ui-icons/lib/PhonelinkSetupRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" -}), 'PhonelinkSetupRounded'); \ No newline at end of file +}), 'PhonelinkSetupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkSetupSharp.js b/packages/material-ui-icons/lib/PhonelinkSetupSharp.js index 9d41dd7a5c93b6..bea962811584de 100644 --- a/packages/material-ui-icons/lib/PhonelinkSetupSharp.js +++ b/packages/material-ui-icons/lib/PhonelinkSetupSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 1v5h2V4h10v16H9v-2H7v5h14V1zm2.5 14.5c.29-.12.55-.29.8-.48l-.02.03 1.41.55 1.27-2.2-1.18-.95-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03 1.18-.95-1.26-2.2-1.41.55.02.03c-.26-.19-.52-.36-.81-.48L9.27 7H6.73L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03L4.3 8.4l-1.27 2.2 1.18.95.02-.03c-.01.16-.04.32-.04.48s.03.32.05.48l-.02-.03-1.18.95 1.27 2.2 1.41-.55-.02-.03c.25.19.51.36.8.48l.23 1.5h2.54l.23-1.5zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" -}), 'PhonelinkSetupSharp'); \ No newline at end of file +}), 'PhonelinkSetupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkSetupTwoTone.js b/packages/material-ui-icons/lib/PhonelinkSetupTwoTone.js index 1f1c70bba36020..68850835432782 100644 --- a/packages/material-ui-icons/lib/PhonelinkSetupTwoTone.js +++ b/packages/material-ui-icons/lib/PhonelinkSetupTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" -}), 'PhonelinkSetupTwoTone'); \ No newline at end of file +}), 'PhonelinkSetupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkSharp.js b/packages/material-ui-icons/lib/PhonelinkSharp.js index 6056e4c6a3945c..af87b14e7fa3a2 100644 --- a/packages/material-ui-icons/lib/PhonelinkSharp.js +++ b/packages/material-ui-icons/lib/PhonelinkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z" -}), 'PhonelinkSharp'); \ No newline at end of file +}), 'PhonelinkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhonelinkTwoTone.js b/packages/material-ui-icons/lib/PhonelinkTwoTone.js index bd93504d409d5e..c46838f4761ad6 100644 --- a/packages/material-ui-icons/lib/PhonelinkTwoTone.js +++ b/packages/material-ui-icons/lib/PhonelinkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10h4v7h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" -}, "1")], 'PhonelinkTwoTone'); \ No newline at end of file +}, "1")], 'PhonelinkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Photo.js b/packages/material-ui-icons/lib/Photo.js index 3edd872ab015f5..fca43db3489d3c 100644 --- a/packages/material-ui-icons/lib/Photo.js +++ b/packages/material-ui-icons/lib/Photo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" -}), 'Photo'); \ No newline at end of file +}), 'Photo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoAlbum.js b/packages/material-ui-icons/lib/PhotoAlbum.js index f402293a934ef0..88158dcaf1ebca 100644 --- a/packages/material-ui-icons/lib/PhotoAlbum.js +++ b/packages/material-ui-icons/lib/PhotoAlbum.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4zm0 15 3-3.86 2.14 2.58 3-3.86L18 19H6z" -}), 'PhotoAlbum'); \ No newline at end of file +}), 'PhotoAlbum'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoAlbumOutlined.js b/packages/material-ui-icons/lib/PhotoAlbumOutlined.js index 1edd636d2d02f4..f2d09a6bddb28a 100644 --- a/packages/material-ui-icons/lib/PhotoAlbumOutlined.js +++ b/packages/material-ui-icons/lib/PhotoAlbumOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 2v5l-1-.75L9 9V4h2zm7 16H6V4h1v9l3-2.25L13 13V4h5v16zm-6.72-2.04L9.5 15.81 7 19h10l-3.22-4.26z" -}), 'PhotoAlbumOutlined'); \ No newline at end of file +}), 'PhotoAlbumOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoAlbumRounded.js b/packages/material-ui-icons/lib/PhotoAlbumRounded.js index 38bf2ae146dcb5..4ba1f2ec32176f 100644 --- a/packages/material-ui-icons/lib/PhotoAlbumRounded.js +++ b/packages/material-ui-icons/lib/PhotoAlbumRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4zm.63 14.19 1.99-2.56c.2-.25.58-.26.78-.01l1.74 2.1 2.6-3.34c.2-.26.6-.26.79.01l2.87 3.82c.25.33.01.8-.4.8H7.02c-.41-.01-.65-.49-.39-.82z" -}), 'PhotoAlbumRounded'); \ No newline at end of file +}), 'PhotoAlbumRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoAlbumSharp.js b/packages/material-ui-icons/lib/PhotoAlbumSharp.js index 24e7a326d0e390..3b81a3300b86bf 100644 --- a/packages/material-ui-icons/lib/PhotoAlbumSharp.js +++ b/packages/material-ui-icons/lib/PhotoAlbumSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4zm0 15 3-3.86 2.14 2.58 3-3.86L18 19H6z" -}), 'PhotoAlbumSharp'); \ No newline at end of file +}), 'PhotoAlbumSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoAlbumTwoTone.js b/packages/material-ui-icons/lib/PhotoAlbumTwoTone.js index 35838ca79d162e..0bd586ce390ceb 100644 --- a/packages/material-ui-icons/lib/PhotoAlbumTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoAlbumTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 13-3-2.25L7 13V4H6v16h12V4h-5v9zm4 6H7l2.5-3.19 1.78 2.15 2.5-3.22L17 19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16zm-8.5-4.19L7 19h10l-3.22-4.26-2.5 3.22z" -}, "1")], 'PhotoAlbumTwoTone'); \ No newline at end of file +}, "1")], 'PhotoAlbumTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCamera.js b/packages/material-ui-icons/lib/PhotoCamera.js index a8c1ebb10e5911..a0fce700810a32 100644 --- a/packages/material-ui-icons/lib/PhotoCamera.js +++ b/packages/material-ui-icons/lib/PhotoCamera.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3.2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 2 7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'PhotoCamera'); \ No newline at end of file +}, "1")], 'PhotoCamera'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraBack.js b/packages/material-ui-icons/lib/PhotoCameraBack.js index bcf74393c50c63..ae0da483728cd9 100644 --- a/packages/material-ui-icons/lib/PhotoCameraBack.js +++ b/packages/material-ui-icons/lib/PhotoCameraBack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm0 14V7H4v12h16zm-6-7-3 3.72L9 13l-3 4h12l-4-5z" -}), 'PhotoCameraBack'); \ No newline at end of file +}), 'PhotoCameraBack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraBackOutlined.js b/packages/material-ui-icons/lib/PhotoCameraBackOutlined.js index 4f75ff81df2de8..6c577950de02ac 100644 --- a/packages/material-ui-icons/lib/PhotoCameraBackOutlined.js +++ b/packages/material-ui-icons/lib/PhotoCameraBackOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.25 16 9 13l-3 4h12l-3.75-5z" -}, "1")], 'PhotoCameraBackOutlined'); \ No newline at end of file +}, "1")], 'PhotoCameraBackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraBackRounded.js b/packages/material-ui-icons/lib/PhotoCameraBackRounded.js index ddf21e89c671b5..7952a38c391c69 100644 --- a/packages/material-ui-icons/lib/PhotoCameraBackRounded.js +++ b/packages/material-ui-icons/lib/PhotoCameraBackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.47.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 12H7c-.41 0-.65-.47-.4-.8l2-2.67c.2-.27.6-.27.8 0L11.25 16l2.6-3.47c.2-.27.6-.27.8 0l2.75 3.67c.25.33.01.8-.4.8z" -}), 'PhotoCameraBackRounded'); \ No newline at end of file +}), 'PhotoCameraBackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraBackSharp.js b/packages/material-ui-icons/lib/PhotoCameraBackSharp.js index 10f0585733fde8..972127f4ad7a90 100644 --- a/packages/material-ui-icons/lib/PhotoCameraBackSharp.js +++ b/packages/material-ui-icons/lib/PhotoCameraBackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM6 17l3-4 2.25 3 3-4L18 17H6z" -}), 'PhotoCameraBackSharp'); \ No newline at end of file +}), 'PhotoCameraBackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraBackTwoTone.js b/packages/material-ui-icons/lib/PhotoCameraBackTwoTone.js index ac119f06e8ae69..77223002747d5b 100644 --- a/packages/material-ui-icons/lib/PhotoCameraBackTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoCameraBackTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.95 7-1.83-2H9.88L8.05 7H4v12h16V7h-4.05zM6 17l3-4 2.25 3 3-4L18 17H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12zm-8.75-3L9 13l-3 4h12l-3.75-5-3 4z" -}, "1")], 'PhotoCameraBackTwoTone'); \ No newline at end of file +}, "1")], 'PhotoCameraBackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraFront.js b/packages/material-ui-icons/lib/PhotoCameraFront.js index 26be9ed44c94f4..db99b23b60e277 100644 --- a/packages/material-ui-icons/lib/PhotoCameraFront.js +++ b/packages/material-ui-icons/lib/PhotoCameraFront.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 10.48 4-3.98v11l-4-3.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v4.48zm-2-.79V6H4v12h12V9.69zM10 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0 1c1.34 0 4 .67 4 2v1H6v-1c0-1.33 2.66-2 4-2z" -}), 'PhotoCameraFront'); \ No newline at end of file +}), 'PhotoCameraFront'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraFrontOutlined.js b/packages/material-ui-icons/lib/PhotoCameraFrontOutlined.js index 3bcb206a93d118..e23e668ac77b06 100644 --- a/packages/material-ui-icons/lib/PhotoCameraFrontOutlined.js +++ b/packages/material-ui-icons/lib/PhotoCameraFrontOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "11", r: "2" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.78 14.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58C8.48 14.9 8 15.62 8 16.43V17h8v-.57c0-.81-.48-1.53-1.22-1.85z" -}, "2")], 'PhotoCameraFrontOutlined'); \ No newline at end of file +}, "2")], 'PhotoCameraFrontOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraFrontRounded.js b/packages/material-ui-icons/lib/PhotoCameraFrontRounded.js index 25769aa0d70de0..cd772054cf39bc 100644 --- a/packages/material-ui-icons/lib/PhotoCameraFrontRounded.js +++ b/packages/material-ui-icons/lib/PhotoCameraFrontRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.47.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58s1.93.21 2.78.58c.74.32 1.22 1.04 1.22 1.85V17z" -}), 'PhotoCameraFrontRounded'); \ No newline at end of file +}), 'PhotoCameraFrontRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraFrontSharp.js b/packages/material-ui-icons/lib/PhotoCameraFrontSharp.js index d9bb441ed81797..0a38bf72060a56 100644 --- a/packages/material-ui-icons/lib/PhotoCameraFrontSharp.js +++ b/packages/material-ui-icons/lib/PhotoCameraFrontSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM12 9c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58s1.93.21 2.78.58c.74.32 1.22 1.04 1.22 1.85V17z" -}), 'PhotoCameraFrontSharp'); \ No newline at end of file +}), 'PhotoCameraFrontSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraFrontTwoTone.js b/packages/material-ui-icons/lib/PhotoCameraFrontTwoTone.js index 382b365b391981..75a5d7f7b014e0 100644 --- a/packages/material-ui-icons/lib/PhotoCameraFrontTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoCameraFrontTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.95 7-1.83-2H9.88L8.05 7H4v12h16V7h-4.05zM12 9c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58s1.93.21 2.78.58c.74.32 1.22 1.04 1.22 1.85V17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12zm-8-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58C8.48 14.9 8 15.62 8 16.43V17h8v-.57c0-.81-.48-1.53-1.22-1.85z" -}, "1")], 'PhotoCameraFrontTwoTone'); \ No newline at end of file +}, "1")], 'PhotoCameraFrontTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraOutlined.js b/packages/material-ui-icons/lib/PhotoCameraOutlined.js index 74d3d18cedfb7c..a86f9d69fa3751 100644 --- a/packages/material-ui-icons/lib/PhotoCameraOutlined.js +++ b/packages/material-ui-icons/lib/PhotoCameraOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.12 4 1.83 2H20v12H4V6h4.05l1.83-2h4.24M15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm-3 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z" -}), 'PhotoCameraOutlined'); \ No newline at end of file +}), 'PhotoCameraOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraRounded.js b/packages/material-ui-icons/lib/PhotoCameraRounded.js index 2976e0a2cfc383..6663823fdacecd 100644 --- a/packages/material-ui-icons/lib/PhotoCameraRounded.js +++ b/packages/material-ui-icons/lib/PhotoCameraRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'PhotoCameraRounded'); \ No newline at end of file +}, "1")], 'PhotoCameraRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraSharp.js b/packages/material-ui-icons/lib/PhotoCameraSharp.js index 8c170f2e29eb5d..dfb57541126d8d 100644 --- a/packages/material-ui-icons/lib/PhotoCameraSharp.js +++ b/packages/material-ui-icons/lib/PhotoCameraSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 2 7.17 4H2v16h20V4h-5.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" -}, "1")], 'PhotoCameraSharp'); \ No newline at end of file +}, "1")], 'PhotoCameraSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoCameraTwoTone.js b/packages/material-ui-icons/lib/PhotoCameraTwoTone.js index 189468f002c6e3..2c8bec4d2d231d 100644 --- a/packages/material-ui-icons/lib/PhotoCameraTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoCameraTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4.05l-1.83-2H9.88L8.05 6H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l1.83-2h4.24l1.83 2H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}, "1")], 'PhotoCameraTwoTone'); \ No newline at end of file +}, "1")], 'PhotoCameraTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoFilter.js b/packages/material-ui-icons/lib/PhotoFilter.js index 6f6a4c1df13fad..40cf468f495283 100644 --- a/packages/material-ui-icons/lib/PhotoFilter.js +++ b/packages/material-ui-icons/lib/PhotoFilter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.02 10v9H5V5h9V3H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zM17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12z" -}), 'PhotoFilter'); \ No newline at end of file +}), 'PhotoFilter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoFilterOutlined.js b/packages/material-ui-icons/lib/PhotoFilterOutlined.js index 4764606258bc66..4cc05d0b52f988 100644 --- a/packages/material-ui-icons/lib/PhotoFilterOutlined.js +++ b/packages/material-ui-icons/lib/PhotoFilterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" -}), 'PhotoFilterOutlined'); \ No newline at end of file +}), 'PhotoFilterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoFilterRounded.js b/packages/material-ui-icons/lib/PhotoFilterRounded.js index 43a348d21a2d15..db97d17810f411 100644 --- a/packages/material-ui-icons/lib/PhotoFilterRounded.js +++ b/packages/material-ui-icons/lib/PhotoFilterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.02 10.99V18c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h7c.55 0 1-.45 1-1s-.45-1-1-1H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2H19c1.1 0 2-.89 2-2v-8.01c0-.55-.44-.99-.99-.99s-.99.44-.99.99zm-5.77-.24L12.46 9c-.18-.39-.73-.39-.91 0l-.79 1.75-1.76.79c-.39.18-.39.73 0 .91l1.75.79.79 1.76c.18.39.73.39.91 0l.79-1.75 1.76-.79c.39-.18.39-.73 0-.91l-1.75-.8zm4.69-4.69-.6-1.32c-.13-.29-.55-.29-.69 0l-.6 1.32-1.32.6c-.29.13-.29.55 0 .69l1.32.6.6 1.32c.13.29.55.29.69 0l.6-1.32 1.32-.6c.29-.13.29-.55 0-.69l-1.32-.6z" -}), 'PhotoFilterRounded'); \ No newline at end of file +}), 'PhotoFilterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoFilterSharp.js b/packages/material-ui-icons/lib/PhotoFilterSharp.js index 4d3d9287f7635a..cf3f5224197e07 100644 --- a/packages/material-ui-icons/lib/PhotoFilterSharp.js +++ b/packages/material-ui-icons/lib/PhotoFilterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10v9H4.98V5h9V3H3v18h18V10h-2zm-2 0 .94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94L17 10zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" -}), 'PhotoFilterSharp'); \ No newline at end of file +}), 'PhotoFilterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoFilterTwoTone.js b/packages/material-ui-icons/lib/PhotoFilterTwoTone.js index c7e0d3f9bea3c7..75e806f40dc55a 100644 --- a/packages/material-ui-icons/lib/PhotoFilterTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoFilterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" -}), 'PhotoFilterTwoTone'); \ No newline at end of file +}), 'PhotoFilterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoLibrary.js b/packages/material-ui-icons/lib/PhotoLibrary.js index 9d599a50f8ca77..bdc13cba27f12d 100644 --- a/packages/material-ui-icons/lib/PhotoLibrary.js +++ b/packages/material-ui-icons/lib/PhotoLibrary.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4 2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" -}), 'PhotoLibrary'); \ No newline at end of file +}), 'PhotoLibrary'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoLibraryOutlined.js b/packages/material-ui-icons/lib/PhotoLibraryOutlined.js index edd1d9caef9841..5190dcc11d3a6d 100644 --- a/packages/material-ui-icons/lib/PhotoLibraryOutlined.js +++ b/packages/material-ui-icons/lib/PhotoLibraryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67 1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" -}), 'PhotoLibraryOutlined'); \ No newline at end of file +}), 'PhotoLibraryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoLibraryRounded.js b/packages/material-ui-icons/lib/PhotoLibraryRounded.js index 8e0eb00268fed7..44bf0c9161b7bc 100644 --- a/packages/material-ui-icons/lib/PhotoLibraryRounded.js +++ b/packages/material-ui-icons/lib/PhotoLibraryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-10.6-3.47 1.63 2.18 2.58-3.22c.2-.25.58-.25.78 0l2.96 3.7c.26.33.03.81-.39.81H9c-.41 0-.65-.47-.4-.8l2-2.67c.2-.26.6-.26.8 0zM2 7v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'PhotoLibraryRounded'); \ No newline at end of file +}), 'PhotoLibraryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoLibrarySharp.js b/packages/material-ui-icons/lib/PhotoLibrarySharp.js index a538968faf81c3..d8883986be8ce4 100644 --- a/packages/material-ui-icons/lib/PhotoLibrarySharp.js +++ b/packages/material-ui-icons/lib/PhotoLibrarySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18V2H6v16h16zm-11-6 2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z" -}), 'PhotoLibrarySharp'); \ No newline at end of file +}), 'PhotoLibrarySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoLibraryTwoTone.js b/packages/material-ui-icons/lib/PhotoLibraryTwoTone.js index f1753282da24a6..e0ea1d24bef854 100644 --- a/packages/material-ui-icons/lib/PhotoLibraryTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoLibraryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm3.5-4.33 1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-2 0H8V4h12v12zm-4.33-5.17-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z" -}, "1")], 'PhotoLibraryTwoTone'); \ No newline at end of file +}, "1")], 'PhotoLibraryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoOutlined.js b/packages/material-ui-icons/lib/PhotoOutlined.js index 07e032d28de19c..0fb29ce5434746 100644 --- a/packages/material-ui-icons/lib/PhotoOutlined.js +++ b/packages/material-ui-icons/lib/PhotoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86-3 3.87L9 13.14 6 17h12l-3.86-5.14z" -}), 'PhotoOutlined'); \ No newline at end of file +}), 'PhotoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoRounded.js b/packages/material-ui-icons/lib/PhotoRounded.js index 0544320ea19e80..a080cd8f304771 100644 --- a/packages/material-ui-icons/lib/PhotoRounded.js +++ b/packages/material-ui-icons/lib/PhotoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z" -}), 'PhotoRounded'); \ No newline at end of file +}), 'PhotoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSharp.js b/packages/material-ui-icons/lib/PhotoSharp.js index b7d2152ce622c7..7272e82297b1bb 100644 --- a/packages/material-ui-icons/lib/PhotoSharp.js +++ b/packages/material-ui-icons/lib/PhotoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" -}), 'PhotoSharp'); \ No newline at end of file +}), 'PhotoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectActual.js b/packages/material-ui-icons/lib/PhotoSizeSelectActual.js index 5cfa0015570bd5..cbc749ea0bc5cb 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectActual.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectActual.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z" -}), 'PhotoSizeSelectActual'); \ No newline at end of file +}), 'PhotoSizeSelectActual'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectActualOutlined.js b/packages/material-ui-icons/lib/PhotoSizeSelectActualOutlined.js index 7947f891fc87ec..5f728cd17fa8b0 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectActualOutlined.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectActualOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z" -}), 'PhotoSizeSelectActualOutlined'); \ No newline at end of file +}), 'PhotoSizeSelectActualOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectActualRounded.js b/packages/material-ui-icons/lib/PhotoSizeSelectActualRounded.js index 20250592c0506b..8bd08ccabd6528 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectActualRounded.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectActualRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5.63 16.19l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z" -}), 'PhotoSizeSelectActualRounded'); \ No newline at end of file +}), 'PhotoSizeSelectActualRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectActualSharp.js b/packages/material-ui-icons/lib/PhotoSizeSelectActualSharp.js index a749794bd0961c..272a3a8a3c70ed 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectActualSharp.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectActualSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z" -}), 'PhotoSizeSelectActualSharp'); \ No newline at end of file +}), 'PhotoSizeSelectActualSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectActualTwoTone.js b/packages/material-ui-icons/lib/PhotoSizeSelectActualTwoTone.js index 306be0964766a4..3f783459273650 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectActualTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectActualTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.08 5 3 5.08V19h17.92c.03-.02.06-.06.08-.08V5.08L20.92 5H3.08zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z" -}, "1")], 'PhotoSizeSelectActualTwoTone'); \ No newline at end of file +}, "1")], 'PhotoSizeSelectActualTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectLarge.js b/packages/material-ui-icons/lib/PhotoSizeSelectLarge.js index 8cad5951e699a2..3d8b391e5d31e8 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectLarge.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectLarge.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8 2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" -}), 'PhotoSizeSelectLarge'); \ No newline at end of file +}), 'PhotoSizeSelectLarge'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectLargeOutlined.js b/packages/material-ui-icons/lib/PhotoSizeSelectLargeOutlined.js index 691c9a4ba70c2e..f634d8f13ecf9e 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectLargeOutlined.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectLargeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8 2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" -}), 'PhotoSizeSelectLargeOutlined'); \ No newline at end of file +}), 'PhotoSizeSelectLargeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectLargeRounded.js b/packages/material-ui-icons/lib/PhotoSizeSelectLargeRounded.js index f32a6d160dc666..9c351f0643d48f 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectLargeRounded.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectLargeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12v-8c0-1.1-.9-2-2-2H1zm2.63 7.19 1.49-1.91c.2-.25.57-.26.78-.01l1.39 1.67 2.1-2.7c.2-.26.6-.26.79.01l2.22 2.96c.25.33.01.8-.4.8H4.02c-.41-.01-.65-.49-.39-.82z" -}), 'PhotoSizeSelectLargeRounded'); \ No newline at end of file +}), 'PhotoSizeSelectLargeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectLargeSharp.js b/packages/material-ui-icons/lib/PhotoSizeSelectLargeSharp.js index 1473423a17ea37..bde280a37eedf9 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectLargeSharp.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectLargeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 15h2v2h-2v-2zm0 4h2v2h-2v-2zm0-8h2v2h-2v-2zm-8-8h2v2h-2V3zm8 4h2v2h-2V7zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3H1v2h2V3zm20 0h-2v2h2V3zM9 3h2v2H9V3zM5 3h2v2H5V3zm-4 8v10h14V11H1zm2 8 2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" -}), 'PhotoSizeSelectLargeSharp'); \ No newline at end of file +}), 'PhotoSizeSelectLargeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectLargeTwoTone.js b/packages/material-ui-icons/lib/PhotoSizeSelectLargeTwoTone.js index 4f73ea8300bfd9..c45ba6c73d67f3 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectLargeTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectLargeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 19h2v2h-2zM1 19c0 1.1.9 2 2 2h12V11H1v8zm4.5-3.21 1.79 2.15 2.5-3.22L13 19H3l2.5-3.21zM17 3h2v2h-2zm4 8h2v2h-2zm0 4h2v2h-2zM3 3C2 3 1 4 1 5h2V3zm18 4h2v2h-2zm-8-4h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zM1 7h2v2H1zm8-4h2v2H9zM5 3h2v2H5zm16 0v2h2c0-1-1-2-2-2z" -}), 'PhotoSizeSelectLargeTwoTone'); \ No newline at end of file +}), 'PhotoSizeSelectLargeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectSmall.js b/packages/material-ui-icons/lib/PhotoSizeSelectSmall.js index 9029ecb3998c41..42ae5617e059e1 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectSmall.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectSmall.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" -}), 'PhotoSizeSelectSmall'); \ No newline at end of file +}), 'PhotoSizeSelectSmall'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectSmallOutlined.js b/packages/material-ui-icons/lib/PhotoSizeSelectSmallOutlined.js index 62667da940b300..17b46d50816d0a 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectSmallOutlined.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectSmallOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" -}), 'PhotoSizeSelectSmallOutlined'); \ No newline at end of file +}), 'PhotoSizeSelectSmallOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectSmallRounded.js b/packages/material-ui-icons/lib/PhotoSizeSelectSmallRounded.js index 56ba3320a0e637..945a225be60306 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectSmallRounded.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectSmallRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-4c0-1.1-.9-2-2-2H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" -}), 'PhotoSizeSelectSmallRounded'); \ No newline at end of file +}), 'PhotoSizeSelectSmallRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectSmallSharp.js b/packages/material-ui-icons/lib/PhotoSizeSelectSmallSharp.js index 4079a283443531..df7d7240ebf9c8 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectSmallSharp.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectSmallSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 15h-2v2h2v-2zm0 4h-2v2h2v-2zm0-8h-2v2h2v-2zm-8-8h-2v2h2V3zm8 4h-2v2h2V7zM1 21h10v-6H1v6zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm4 0h-2v2h2V3zm-4 16h-2v2h2v-2zM3 11H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3zM3 3H1v2h2V3z" -}), 'PhotoSizeSelectSmallSharp'); \ No newline at end of file +}), 'PhotoSizeSelectSmallSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoSizeSelectSmallTwoTone.js b/packages/material-ui-icons/lib/PhotoSizeSelectSmallTwoTone.js index b309e663e01085..529ee615c32317 100644 --- a/packages/material-ui-icons/lib/PhotoSizeSelectSmallTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoSizeSelectSmallTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 19h2v2h-2zm-4 0h2v2h-2zM1 19c0 1.1.9 2 2 2h8v-6H1v4zM9 3h2v2H9zM5 3h2v2H5zm12 0h2v2h-2zM1 11h2v2H1zm0-4h2v2H1zm2-4C2 3 1 4 1 5h2V3zm10 0h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zm0-10h2v2h-2zm0-8v2h2c0-1-1-2-2-2zm0 12h2v2h-2zm0-8h2v2h-2z" -}), 'PhotoSizeSelectSmallTwoTone'); \ No newline at end of file +}), 'PhotoSizeSelectSmallTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PhotoTwoTone.js b/packages/material-ui-icons/lib/PhotoTwoTone.js index d6775b3461a2aa..5f237ff6677a07 100644 --- a/packages/material-ui-icons/lib/PhotoTwoTone.js +++ b/packages/material-ui-icons/lib/PhotoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5H5v14h14V5zM6 17l3-3.86 2.14 2.58 3-3.87L18 17H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm6.14 10.72L9 13.14 6 17h12l-3.86-5.14z" -}, "1")], 'PhotoTwoTone'); \ No newline at end of file +}, "1")], 'PhotoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Piano.js b/packages/material-ui-icons/lib/Piano.js index 835050769c989e..c49c5e07277f5a 100644 --- a/packages/material-ui-icons/lib/Piano.js +++ b/packages/material-ui-icons/lib/Piano.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" -}), 'Piano'); \ No newline at end of file +}), 'Piano'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoOff.js b/packages/material-ui-icons/lib/PianoOff.js index bbf3a719a3d061..86268f8c93ef8d 100644 --- a/packages/material-ui-icons/lib/PianoOff.js +++ b/packages/material-ui-icons/lib/PianoOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" -}), 'PianoOff'); \ No newline at end of file +}), 'PianoOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoOffOutlined.js b/packages/material-ui-icons/lib/PianoOffOutlined.js index af5bd5076cde4f..4bc800f4e7005b 100644 --- a/packages/material-ui-icons/lib/PianoOffOutlined.js +++ b/packages/material-ui-icons/lib/PianoOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" -}), 'PianoOffOutlined'); \ No newline at end of file +}), 'PianoOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoOffRounded.js b/packages/material-ui-icons/lib/PianoOffRounded.js index 0fd9dc8648caea..4ce3e3d496e9c8 100644 --- a/packages/material-ui-icons/lib/PianoOffRounded.js +++ b/packages/material-ui-icons/lib/PianoOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 21.9c.39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.9.91V19c0 1.1.9 2 2 2h13.17l.9.9c.39.39 1.02.39 1.42 0zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" -}), 'PianoOffRounded'); \ No newline at end of file +}), 'PianoOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoOffSharp.js b/packages/material-ui-icons/lib/PianoOffSharp.js index 1baf47a7e2eab3..901e2287b431d6 100644 --- a/packages/material-ui-icons/lib/PianoOffSharp.js +++ b/packages/material-ui-icons/lib/PianoOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v4.67h1.25V19zm1.5 0v-4.5H11v-.67l3.25 3.25V19h-4.5zM5.83 3H21v15.17l-2-2V5h-2v9.17l-4-4V5h-2v3.17L5.83 3z" -}), 'PianoOffSharp'); \ No newline at end of file +}), 'PianoOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoOffTwoTone.js b/packages/material-ui-icons/lib/PianoOffTwoTone.js index ee212efa142be8..a26ee986b1d24b 100644 --- a/packages/material-ui-icons/lib/PianoOffTwoTone.js +++ b/packages/material-ui-icons/lib/PianoOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM13 10.17V5h-2v3.17l2 2zm6 6V5h-2v8.5c0 .19-.07.36-.16.51L19 16.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" -}, "1")], 'PianoOffTwoTone'); \ No newline at end of file +}, "1")], 'PianoOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoOutlined.js b/packages/material-ui-icons/lib/PianoOutlined.js index 006bb9cb617bc0..98360f970ba397 100644 --- a/packages/material-ui-icons/lib/PianoOutlined.js +++ b/packages/material-ui-icons/lib/PianoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" -}), 'PianoOutlined'); \ No newline at end of file +}), 'PianoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoRounded.js b/packages/material-ui-icons/lib/PianoRounded.js index 2a313037ef348e..e6730cd9863e26 100644 --- a/packages/material-ui-icons/lib/PianoRounded.js +++ b/packages/material-ui-icons/lib/PianoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" -}), 'PianoRounded'); \ No newline at end of file +}), 'PianoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoSharp.js b/packages/material-ui-icons/lib/PianoSharp.js index 293d4005aa28b1..0f0315125ade13 100644 --- a/packages/material-ui-icons/lib/PianoSharp.js +++ b/packages/material-ui-icons/lib/PianoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-8 11.5h1.25V19h-4.5v-4.5H11V5h2v9.5zM5 5h2v9.5h1.25V19H5V5zm14 14h-3.25v-4.5H17V5h2v14z" -}), 'PianoSharp'); \ No newline at end of file +}), 'PianoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PianoTwoTone.js b/packages/material-ui-icons/lib/PianoTwoTone.js index dbe6fe8eca4957..5712797f3cb2b3 100644 --- a/packages/material-ui-icons/lib/PianoTwoTone.js +++ b/packages/material-ui-icons/lib/PianoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 14.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" -}, "1")], 'PianoTwoTone'); \ No newline at end of file +}, "1")], 'PianoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureAsPdf.js b/packages/material-ui-icons/lib/PictureAsPdf.js index ddb0aec53ca5c4..1a844d89f160b4 100644 --- a/packages/material-ui-icons/lib/PictureAsPdf.js +++ b/packages/material-ui-icons/lib/PictureAsPdf.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z" -}), 'PictureAsPdf'); \ No newline at end of file +}), 'PictureAsPdf'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureAsPdfOutlined.js b/packages/material-ui-icons/lib/PictureAsPdfOutlined.js index 349021a128bb15..42aaa2965f7be4 100644 --- a/packages/material-ui-icons/lib/PictureAsPdfOutlined.js +++ b/packages/material-ui-icons/lib/PictureAsPdfOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm12 6V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z" -}), 'PictureAsPdfOutlined'); \ No newline at end of file +}), 'PictureAsPdfOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureAsPdfRounded.js b/packages/material-ui-icons/lib/PictureAsPdfRounded.js index e949aaadf93f8f..c149441e995925 100644 --- a/packages/material-ui-icons/lib/PictureAsPdfRounded.js +++ b/packages/material-ui-icons/lib/PictureAsPdfRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V8c0-.55.45-1 1-1H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h2c.83 0 1.5.67 1.5 1.5v3zm4-3.75c0 .41-.34.75-.75.75H19v1h.75c.41 0 .75.34.75.75s-.34.75-.75.75H19v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V8c0-.55.45-1 1-1h1.25c.41 0 .75.34.75.75zM9 9.5h1v-1H9v1zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm11 5.5h1v-3h-1v3z" -}), 'PictureAsPdfRounded'); \ No newline at end of file +}), 'PictureAsPdfRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureAsPdfSharp.js b/packages/material-ui-icons/lib/PictureAsPdfSharp.js index 26125254b45811..3b8ab0907fbc97 100644 --- a/packages/material-ui-icons/lib/PictureAsPdfSharp.js +++ b/packages/material-ui-icons/lib/PictureAsPdfSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H6v16h16V2zm-10.5 9H9v2H7.5V7h4v4zm5 .5c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v16h16v-2H4V6zm10 5.5h1v-3h-1v3z" -}), 'PictureAsPdfSharp'); \ No newline at end of file +}), 'PictureAsPdfSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureAsPdfTwoTone.js b/packages/material-ui-icons/lib/PictureAsPdfTwoTone.js index 1da24aae451ac3..e23481565e53c2 100644 --- a/packages/material-ui-icons/lib/PictureAsPdfTwoTone.js +++ b/packages/material-ui-icons/lib/PictureAsPdfTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9h1v1h-1zm4 0h1v3h-1zm-6 7h12V4H8v12zm9-8h2v1h-1v1h1v1h-1v2h-1V8zm-4 0h2c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-2V8zM9 8h2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v2H9V8z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-4-4V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z" -}, "2")], 'PictureAsPdfTwoTone'); \ No newline at end of file +}, "2")], 'PictureAsPdfTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPicture.js b/packages/material-ui-icons/lib/PictureInPicture.js index 1c3bbf3dbbb7e7..af84c78999b838 100644 --- a/packages/material-ui-icons/lib/PictureInPicture.js +++ b/packages/material-ui-icons/lib/PictureInPicture.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-8v6h8V7zm2-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" -}), 'PictureInPicture'); \ No newline at end of file +}), 'PictureInPicture'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureAlt.js b/packages/material-ui-icons/lib/PictureInPictureAlt.js index 1d21be4508b05a..3c550ddf117e25 100644 --- a/packages/material-ui-icons/lib/PictureInPictureAlt.js +++ b/packages/material-ui-icons/lib/PictureInPictureAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11h-8v6h8v-6zm4 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 .02H3V4.97h18v14.05z" -}), 'PictureInPictureAlt'); \ No newline at end of file +}), 'PictureInPictureAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureAltOutlined.js b/packages/material-ui-icons/lib/PictureInPictureAltOutlined.js index 3098fa02aef0a7..033b20d6ac4dc1 100644 --- a/packages/material-ui-icons/lib/PictureInPictureAltOutlined.js +++ b/packages/material-ui-icons/lib/PictureInPictureAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z" -}), 'PictureInPictureAltOutlined'); \ No newline at end of file +}), 'PictureInPictureAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureAltRounded.js b/packages/material-ui-icons/lib/PictureInPictureAltRounded.js index cc9d7b8a765334..a76a6a906be2c9 100644 --- a/packages/material-ui-icons/lib/PictureInPictureAltRounded.js +++ b/packages/material-ui-icons/lib/PictureInPictureAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11h-6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm5 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-3 .02H4c-.55 0-1-.45-1-1V5.97c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.05c0 .55-.45 1-1 1z" -}), 'PictureInPictureAltRounded'); \ No newline at end of file +}), 'PictureInPictureAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureAltSharp.js b/packages/material-ui-icons/lib/PictureInPictureAltSharp.js index 6c9b6bf31b069f..3bf25c15edc537 100644 --- a/packages/material-ui-icons/lib/PictureInPictureAltSharp.js +++ b/packages/material-ui-icons/lib/PictureInPictureAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11h-8v6h8v-6zm4 10V3H1v18h22zm-2-1.98H3V4.97h18v14.05z" -}), 'PictureInPictureAltSharp'); \ No newline at end of file +}), 'PictureInPictureAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureAltTwoTone.js b/packages/material-ui-icons/lib/PictureInPictureAltTwoTone.js index 76e940c77d4546..3018b85a2ba8a3 100644 --- a/packages/material-ui-icons/lib/PictureInPictureAltTwoTone.js +++ b/packages/material-ui-icons/lib/PictureInPictureAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 13h4v2h-4z", opacity: ".3" -}, "1")], 'PictureInPictureAltTwoTone'); \ No newline at end of file +}, "1")], 'PictureInPictureAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureOutlined.js b/packages/material-ui-icons/lib/PictureInPictureOutlined.js index 6eca06732b5171..f6c47073e37191 100644 --- a/packages/material-ui-icons/lib/PictureInPictureOutlined.js +++ b/packages/material-ui-icons/lib/PictureInPictureOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-8v6h8V7zm-2 4h-4V9h4v2zm4-8H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" -}), 'PictureInPictureOutlined'); \ No newline at end of file +}), 'PictureInPictureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureRounded.js b/packages/material-ui-icons/lib/PictureInPictureRounded.js index 4f1ccbf94e8f3d..f3580255d1edfa 100644 --- a/packages/material-ui-icons/lib/PictureInPictureRounded.js +++ b/packages/material-ui-icons/lib/PictureInPictureRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7h-6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm3-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.98c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1z" -}), 'PictureInPictureRounded'); \ No newline at end of file +}), 'PictureInPictureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureSharp.js b/packages/material-ui-icons/lib/PictureInPictureSharp.js index af9f77af9d43c3..2c85dd92fc437d 100644 --- a/packages/material-ui-icons/lib/PictureInPictureSharp.js +++ b/packages/material-ui-icons/lib/PictureInPictureSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-8v6h8V7zm4-4H1v17.98h22V3zm-2 16.01H3V4.98h18v14.03z" -}), 'PictureInPictureSharp'); \ No newline at end of file +}), 'PictureInPictureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PictureInPictureTwoTone.js b/packages/material-ui-icons/lib/PictureInPictureTwoTone.js index 5779636c984864..7f718887da4f68 100644 --- a/packages/material-ui-icons/lib/PictureInPictureTwoTone.js +++ b/packages/material-ui-icons/lib/PictureInPictureTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h-8v6h8V7zm-2 4h-4V9h4v2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9h4v2h-4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" -}, "2")], 'PictureInPictureTwoTone'); \ No newline at end of file +}, "2")], 'PictureInPictureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChart.js b/packages/material-ui-icons/lib/PieChart.js index f64da9a4994512..67433ead1d9b9e 100644 --- a/packages/material-ui-icons/lib/PieChart.js +++ b/packages/material-ui-icons/lib/PieChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z" -}), 'PieChart'); \ No newline at end of file +}), 'PieChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartOutline.js b/packages/material-ui-icons/lib/PieChartOutline.js index fdb45f097d4931..966a873b51bd60 100644 --- a/packages/material-ui-icons/lib/PieChartOutline.js +++ b/packages/material-ui-icons/lib/PieChartOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" -}), 'PieChartOutline'); \ No newline at end of file +}), 'PieChartOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartOutlineOutlined.js b/packages/material-ui-icons/lib/PieChartOutlineOutlined.js index 2f035a042bfe6e..116adeac144efb 100644 --- a/packages/material-ui-icons/lib/PieChartOutlineOutlined.js +++ b/packages/material-ui-icons/lib/PieChartOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" -}), 'PieChartOutlineOutlined'); \ No newline at end of file +}), 'PieChartOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartOutlineRounded.js b/packages/material-ui-icons/lib/PieChartOutlineRounded.js index ba6a6cd8138b6b..7c4722ddb05f91 100644 --- a/packages/material-ui-icons/lib/PieChartOutlineRounded.js +++ b/packages/material-ui-icons/lib/PieChartOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H14c-.55 0-1-.45-1-1V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V14c0-.55.45-1 1-1h5.93c-.45 3.61-3.32 6.48-6.93 6.93z" -}), 'PieChartOutlineRounded'); \ No newline at end of file +}), 'PieChartOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartOutlineSharp.js b/packages/material-ui-icons/lib/PieChartOutlineSharp.js index 548a24e7705e9f..15e0d5eb1d1cf2 100644 --- a/packages/material-ui-icons/lib/PieChartOutlineSharp.js +++ b/packages/material-ui-icons/lib/PieChartOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" -}), 'PieChartOutlineSharp'); \ No newline at end of file +}), 'PieChartOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartOutlineTwoTone.js b/packages/material-ui-icons/lib/PieChartOutlineTwoTone.js index 937af593528dec..00fd028cbcdde7 100644 --- a/packages/material-ui-icons/lib/PieChartOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/PieChartOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-1 17.94c-3.93-.5-7-3.88-7-7.94s3.07-7.44 7-7.93v15.87zm2-.01V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.33 6.93 6.93H13z" -}), 'PieChartOutlineTwoTone'); \ No newline at end of file +}), 'PieChartOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartOutlined.js b/packages/material-ui-icons/lib/PieChartOutlined.js index 4c30d84e85c349..c14457787257ad 100644 --- a/packages/material-ui-icons/lib/PieChartOutlined.js +++ b/packages/material-ui-icons/lib/PieChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93zM4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" -}), 'PieChartOutlined'); \ No newline at end of file +}), 'PieChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartRounded.js b/packages/material-ui-icons/lib/PieChartRounded.js index 9b57962c95dbe0..b52c4085b8cb1a 100644 --- a/packages/material-ui-icons/lib/PieChartRounded.js +++ b/packages/material-ui-icons/lib/PieChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3.18v17.64c0 .64-.59 1.12-1.21.98C5.32 20.8 2 16.79 2 12s3.32-8.8 7.79-9.8c.62-.14 1.21.34 1.21.98zm2.03 0v6.81c0 .55.45 1 1 1h6.79c.64 0 1.12-.59.98-1.22-.85-3.76-3.8-6.72-7.55-7.57-.63-.14-1.22.34-1.22.98zm0 10.83v6.81c0 .64.59 1.12 1.22.98 3.76-.85 6.71-3.82 7.56-7.58.14-.62-.35-1.22-.98-1.22h-6.79c-.56.01-1.01.46-1.01 1.01z" -}), 'PieChartRounded'); \ No newline at end of file +}), 'PieChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartSharp.js b/packages/material-ui-icons/lib/PieChartSharp.js index ecee5c985edabc..e237f14fab3617 100644 --- a/packages/material-ui-icons/lib/PieChartSharp.js +++ b/packages/material-ui-icons/lib/PieChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z" -}), 'PieChartSharp'); \ No newline at end of file +}), 'PieChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PieChartTwoTone.js b/packages/material-ui-icons/lib/PieChartTwoTone.js index 7aebf473eaf29b..73e8f46cc87e23 100644 --- a/packages/material-ui-icons/lib/PieChartTwoTone.js +++ b/packages/material-ui-icons/lib/PieChartTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12c0 4.07 3.06 7.44 7 7.93V4.07C7.06 4.56 4 7.93 4 12zm9 7.93c3.61-.45 6.48-3.32 6.93-6.93H13v6.93zm0-15.86V11h6.93c-.45-3.61-3.32-6.48-6.93-6.93z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.86-7-7.93s3.06-7.44 7-7.93v15.86zm2 0V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.32 6.93 6.93H13z" -}, "1")], 'PieChartTwoTone'); \ No newline at end of file +}, "1")], 'PieChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pin.js b/packages/material-ui-icons/lib/Pin.js index c591661ba85551..4c8d2e3684e2e4 100644 --- a/packages/material-ui-icons/lib/Pin.js +++ b/packages/material-ui-icons/lib/Pin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.64 15H6.49v-4.5l-.9.66-.58-.89L6.77 9h.87v6zm5.86 0H9.61v-1.02c1.07-1.07 1.77-1.77 2.13-2.15.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.52 0-.8.39-.9.72l-1.01-.42c.01-.02.18-.76 1-1.15.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h2.37V15zm5.25-.85c-.08.13-.56.85-1.76.85-.04 0-1.6.08-2.05-1.51l1.03-.41c.03.1.19.86 1.02.86.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79h-.5v-1h.46c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.5 0-.74.32-.85.64l-.99-.41C15.2 9.9 15.68 9 16.94 9c1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76z" -}), 'Pin'); \ No newline at end of file +}), 'Pin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinDrop.js b/packages/material-ui-icons/lib/PinDrop.js index 82fc79b2a623a6..a6302ce6c60182 100644 --- a/packages/material-ui-icons/lib/PinDrop.js +++ b/packages/material-ui-icons/lib/PinDrop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 8c0-3.31-2.69-6-6-6S6 4.69 6 8c0 4.5 6 11 6 11s6-6.5 6-11zm-8 0c0-1.1.9-2 2-2s2 .9 2 2-.89 2-2 2c-1.1 0-2-.9-2-2zM5 20v2h14v-2H5z" -}), 'PinDrop'); \ No newline at end of file +}), 'PinDrop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinDropOutlined.js b/packages/material-ui-icons/lib/PinDropOutlined.js index d62d139426b74e..7f9bd5dec9a42d 100644 --- a/packages/material-ui-icons/lib/PinDropOutlined.js +++ b/packages/material-ui-icons/lib/PinDropOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zM5 20h14v2H5v-2z" -}, "1")], 'PinDropOutlined'); \ No newline at end of file +}, "1")], 'PinDropOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinDropRounded.js b/packages/material-ui-icons/lib/PinDropRounded.js index 7971be7e03ddfa..593a0ba81781c7 100644 --- a/packages/material-ui-icons/lib/PinDropRounded.js +++ b/packages/material-ui-icons/lib/PinDropRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm6-13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-5c3.27 0 7 2.46 7 7.15 0 2.98-2.13 6.12-6.39 9.39-.36.28-.86.28-1.22 0C7.13 15.26 5 12.13 5 9.15 5 4.46 8.73 2 12 2z" -}), 'PinDropRounded'); \ No newline at end of file +}), 'PinDropRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinDropSharp.js b/packages/material-ui-icons/lib/PinDropSharp.js index a34f2dc9c8ad26..cd175cf3d37dc5 100644 --- a/packages/material-ui-icons/lib/PinDropSharp.js +++ b/packages/material-ui-icons/lib/PinDropSharp.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M5 20h14v2H5v-2zm7-13c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zm0-5c3.27 0 7 2.46 7 7.15 0 3.12-2.33 6.41-7 9.85-4.67-3.44-7-6.73-7-9.85C5 4.46 8.73 2 12 2z" -}), 'PinDropSharp'); \ No newline at end of file +}), 'PinDropSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinDropTwoTone.js b/packages/material-ui-icons/lib/PinDropTwoTone.js index 6bab491d4f65bb..adc4e78458e53e 100644 --- a/packages/material-ui-icons/lib/PinDropTwoTone.js +++ b/packages/material-ui-icons/lib/PinDropTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12 3C9.19 3 6 5.11 6 9.13c0 2.68 2 5.49 6 8.44 4-2.95 6-5.77 6-8.44C18 5.11 14.81 3 12 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM5 20h14v2H5v-2z" -}, "2")], 'PinDropTwoTone'); \ No newline at end of file +}, "2")], 'PinDropTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinOutlined.js b/packages/material-ui-icons/lib/PinOutlined.js index 334da95be2b0be..25e4fbf1d47776 100644 --- a/packages/material-ui-icons/lib/PinOutlined.js +++ b/packages/material-ui-icons/lib/PinOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.49 10.5V15h1.15V9h-.87l-1.76 1.27.58.89zm4.98-.45c.5 0 .81.32.81.72 0 .37-.14.64-.54 1.06-.36.38-1.06 1.08-2.13 2.15V15h3.89v-.99h-2.37l-.03-.05c.68-.68 1.15-1.14 1.4-1.39.61-.6.92-1.22.92-1.86 0-.24-.05-1.04-.91-1.48-.47-.23-1.26-.36-1.95-.03-.82.39-.99 1.13-1 1.15l1.01.42c.1-.33.38-.72.9-.72zm5.52 3.89c-.83 0-.99-.76-1.02-.86l-1.03.41c.45 1.59 2.01 1.51 2.05 1.51 1.2 0 1.68-.72 1.76-.85.32-.49.36-1.24-.01-1.76-.17-.24-.4-.41-.68-.52v-.07c.2-.1.37-.26.52-.48.26-.41.31-1.07-.02-1.57-.08-.11-.53-.75-1.62-.75-1.26 0-1.74.9-1.85 1.24l.99.41c.11-.32.35-.64.85-.64.44 0 .75.26.75.65 0 .58-.55.72-.88.72h-.46v1h.5c.56 0 1.04.24 1.04.79 0 .49-.48.77-.89.77z" -}, "1")], 'PinOutlined'); \ No newline at end of file +}, "1")], 'PinOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinRounded.js b/packages/material-ui-icons/lib/PinRounded.js index 7a6e670a901b61..2cf77764069e9e 100644 --- a/packages/material-ui-icons/lib/PinRounded.js +++ b/packages/material-ui-icons/lib/PinRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.64 14.47c0 .29-.24.53-.53.53h-.09c-.29 0-.53-.24-.53-.53V10.5l-.45.33c-.24.18-.59.12-.76-.14-.15-.24-.1-.55.13-.72l1.19-.85c.11-.08.24-.12.38-.12.36 0 .66.29.66.66v4.81zm5.37.53h-2.67c-.4 0-.72-.32-.72-.72 0-.19.08-.38.21-.51.95-.95 1.58-1.58 1.92-1.94.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.34 0-.57.16-.72.37-.15.2-.41.26-.64.16-.34-.14-.45-.57-.22-.85.15-.19.37-.38.67-.53.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h1.88c.27 0 .49.22.49.49s-.23.5-.5.5zm5.74-.85c-.08.13-.56.85-1.76.85-.03 0-1.23.06-1.83-.98-.15-.26-.04-.6.24-.71l.12-.05c.22-.09.47-.01.59.19.14.24.39.49.88.49.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79-.27 0-.49-.23-.49-.5 0-.26.2-.47.45-.49v-.01c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.32 0-.53.13-.67.3-.14.18-.37.26-.58.17l-.08-.03c-.3-.12-.4-.5-.2-.75.27-.35.76-.7 1.54-.7 1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76z" -}), 'PinRounded'); \ No newline at end of file +}), 'PinRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinSharp.js b/packages/material-ui-icons/lib/PinSharp.js index 772816aaad8f27..9f84716cf6f191 100644 --- a/packages/material-ui-icons/lib/PinSharp.js +++ b/packages/material-ui-icons/lib/PinSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zM7.64 15H6.49v-4.5l-.9.66-.58-.89L6.77 9h.87v6zm5.86 0H9.61v-1.02c1.07-1.07 1.77-1.77 2.13-2.15.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.52 0-.8.39-.9.72l-1.01-.42c.01-.02.18-.76 1-1.15.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h2.37V15zm5.25-.85c-.08.13-.56.85-1.76.85-.04 0-1.6.08-2.05-1.51l1.03-.41c.03.1.19.86 1.02.86.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79h-.5v-1h.46c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.5 0-.74.32-.85.64l-.99-.41C15.2 9.9 15.68 9 16.94 9c1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76z" -}), 'PinSharp'); \ No newline at end of file +}), 'PinSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PinTwoTone.js b/packages/material-ui-icons/lib/PinTwoTone.js index ec0d70ba3701b2..87a588b6fa4899 100644 --- a/packages/material-ui-icons/lib/PinTwoTone.js +++ b/packages/material-ui-icons/lib/PinTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zm12.84-5.62h-.5v-1h.46c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.5 0-.74.32-.85.64l-.99-.41C15.2 9.9 15.68 9 16.94 9c1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76-.08.13-.56.85-1.76.85-.04 0-1.6.08-2.05-1.51l1.03-.41c.02.1.19.86 1.02.86.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79zM10.56 9.2c.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h2.37V15H9.61v-1.02c1.07-1.07 1.77-1.77 2.13-2.15.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.52 0-.8.39-.9.72l-1.01-.42c.01-.02.18-.76 1-1.15zM6.77 9h.87v6H6.49v-4.5l-.9.66-.58-.89L6.77 9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.49 10.5V15h1.15V9h-.87l-1.76 1.27.58.89zm4.98-.45c.5 0 .81.32.81.72 0 .37-.14.64-.54 1.06-.36.38-1.06 1.08-2.13 2.15V15h3.89v-.99h-2.37l-.03-.05c.68-.68 1.15-1.14 1.4-1.39.61-.6.92-1.22.92-1.86 0-.24-.05-1.04-.91-1.48-.47-.23-1.26-.36-1.95-.03-.82.39-.99 1.13-1 1.15l1.01.42c.1-.33.38-.72.9-.72zm5.52 3.89c-.83 0-.99-.76-1.02-.86l-1.03.41c.45 1.59 2.01 1.51 2.05 1.51 1.2 0 1.68-.72 1.76-.85.32-.49.36-1.24-.01-1.76-.17-.24-.4-.41-.68-.52v-.07c.2-.1.37-.26.52-.48.26-.41.31-1.07-.02-1.57-.08-.11-.53-.75-1.62-.75-1.26 0-1.74.9-1.85 1.24l.99.41c.11-.32.35-.64.85-.64.44 0 .75.26.75.65 0 .58-.55.72-.88.72h-.46v1h.5c.56 0 1.04.24 1.04.79 0 .49-.48.77-.89.77z" -}, "2")], 'PinTwoTone'); \ No newline at end of file +}, "2")], 'PinTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pinterest.js b/packages/material-ui-icons/lib/Pinterest.js index 9de2343ac16c40..ee1a4eeee1b407 100644 --- a/packages/material-ui-icons/lib/Pinterest.js +++ b/packages/material-ui-icons/lib/Pinterest.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.04 21.54c.96.29 1.93.46 2.96.46a10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12c0 4.25 2.67 7.9 6.44 9.34-.09-.78-.18-2.07 0-2.96l1.15-4.94s-.29-.58-.29-1.5c0-1.38.86-2.41 1.84-2.41.86 0 1.26.63 1.26 1.44 0 .86-.57 2.09-.86 3.27-.17.98.52 1.84 1.52 1.84 1.78 0 3.16-1.9 3.16-4.58 0-2.4-1.72-4.04-4.19-4.04-2.82 0-4.48 2.1-4.48 4.31 0 .86.28 1.73.74 2.3.09.06.09.14.06.29l-.29 1.09c0 .17-.11.23-.28.11-1.28-.56-2.02-2.38-2.02-3.85 0-3.16 2.24-6.03 6.56-6.03 3.44 0 6.12 2.47 6.12 5.75 0 3.44-2.13 6.2-5.18 6.2-.97 0-1.92-.52-2.26-1.13l-.67 2.37c-.23.86-.86 2.01-1.29 2.7v-.03z" -}), 'Pinterest'); \ No newline at end of file +}), 'Pinterest'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PivotTableChart.js b/packages/material-ui-icons/lib/PivotTableChart.js index 532dd6d4dd7b6a..0b979226c1ca72 100644 --- a/packages/material-ui-icons/lib/PivotTableChart.js +++ b/packages/material-ui-icons/lib/PivotTableChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8h11V5c0-1.1-.9-2-2-2h-9v5zM3 8h5V3H5c-1.1 0-2 .9-2 2v3zm2 13h3V10H3v9c0 1.1.9 2 2 2zm8 1-4-4 4-4zm1-9 4-4 4 4zm.58 6H13v-2h1.58c1.33 0 2.42-1.08 2.42-2.42V13h2v1.58c0 2.44-1.98 4.42-4.42 4.42z" -}), 'PivotTableChart'); \ No newline at end of file +}), 'PivotTableChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PivotTableChartOutlined.js b/packages/material-ui-icons/lib/PivotTableChartOutlined.js index 6cb68a6b8fb167..136bd51c1d6fbd 100644 --- a/packages/material-ui-icons/lib/PivotTableChartOutlined.js +++ b/packages/material-ui-icons/lib/PivotTableChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c0-1.1-.9-2-2-2h-9v5h11V5zM3 19c0 1.1.9 2 2 2h3V10H3v9zM3 5v3h5V3H5c-1.1 0-2 .9-2 2zm15 3.99L14 13l1.41 1.41 1.59-1.6V15c0 1.1-.9 2-2 2h-2.17l1.59-1.59L13 14l-4 4 4 4 1.41-1.41L12.83 19H15c2.21 0 4-1.79 4-4v-2.18l1.59 1.6L22 13l-4-4.01z" -}), 'PivotTableChartOutlined'); \ No newline at end of file +}), 'PivotTableChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PivotTableChartRounded.js b/packages/material-ui-icons/lib/PivotTableChartRounded.js index 6aa4956a0b2e3b..b03f0c2e3a2472 100644 --- a/packages/material-ui-icons/lib/PivotTableChartRounded.js +++ b/packages/material-ui-icons/lib/PivotTableChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c0-1.1-.9-2-2-2h-9v5h11V5zM3 19c0 1.1.9 2 2 2h3V10H3v9zM3 5v3h5V3H5c-1.1 0-2 .9-2 2zm14.65 4.35-2.79 2.79c-.32.32-.1.86.35.86H17v2c0 1.1-.9 2-2 2h-2v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.35V19h2c2.21 0 4-1.79 4-4v-2h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z" -}), 'PivotTableChartRounded'); \ No newline at end of file +}), 'PivotTableChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PivotTableChartSharp.js b/packages/material-ui-icons/lib/PivotTableChartSharp.js index 6f5ca82ca33e20..fb6d76bccff448 100644 --- a/packages/material-ui-icons/lib/PivotTableChartSharp.js +++ b/packages/material-ui-icons/lib/PivotTableChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3h11v5H10zm-7 7h5v11H3zm0-7h5v5H3zm15 6-4 4h3v4h-4v-3l-4 4 4 4v-3h6v-6h3z" -}), 'PivotTableChartSharp'); \ No newline at end of file +}), 'PivotTableChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PivotTableChartTwoTone.js b/packages/material-ui-icons/lib/PivotTableChartTwoTone.js index be75f182a55f53..8f91f3e9887e0a 100644 --- a/packages/material-ui-icons/lib/PivotTableChartTwoTone.js +++ b/packages/material-ui-icons/lib/PivotTableChartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5c0-1.1-.9-2-2-2h-9v5h11V5zM3 19c0 1.1.9 2 2 2h3V10H3v9zM3 5v3h5V3H5c-1.1 0-2 .9-2 2zm15 4-4 4h3v2c0 1.1-.9 2-2 2h-2v-3l-4 4 4 4v-3h2c2.21 0 4-1.79 4-4v-2h3l-4-4z" -}), 'PivotTableChartTwoTone'); \ No newline at end of file +}), 'PivotTableChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Place.js b/packages/material-ui-icons/lib/Place.js index 16ea91323b9392..3ac5292962f3b2 100644 --- a/packages/material-ui-icons/lib/Place.js +++ b/packages/material-ui-icons/lib/Place.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'Place'); \ No newline at end of file +}), 'Place'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaceOutlined.js b/packages/material-ui-icons/lib/PlaceOutlined.js index 1803d1ba365d8e..a5845838974db3 100644 --- a/packages/material-ui-icons/lib/PlaceOutlined.js +++ b/packages/material-ui-icons/lib/PlaceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" -}), 'PlaceOutlined'); \ No newline at end of file +}), 'PlaceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaceRounded.js b/packages/material-ui-icons/lib/PlaceRounded.js index 7fda4fbfa21ee7..350563f392bd0d 100644 --- a/packages/material-ui-icons/lib/PlaceRounded.js +++ b/packages/material-ui-icons/lib/PlaceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'PlaceRounded'); \ No newline at end of file +}), 'PlaceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaceSharp.js b/packages/material-ui-icons/lib/PlaceSharp.js index 28d324423bc994..1f139fcc15259d 100644 --- a/packages/material-ui-icons/lib/PlaceSharp.js +++ b/packages/material-ui-icons/lib/PlaceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0-10c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2z" -}), 'PlaceSharp'); \ No newline at end of file +}), 'PlaceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaceTwoTone.js b/packages/material-ui-icons/lib/PlaceTwoTone.js index cd3ea5833b4a45..45e21db5c5e142 100644 --- a/packages/material-ui-icons/lib/PlaceTwoTone.js +++ b/packages/material-ui-icons/lib/PlaceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2zm6 8.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'PlaceTwoTone'); \ No newline at end of file +}, "1")], 'PlaceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Plagiarism.js b/packages/material-ui-icons/lib/Plagiarism.js index e7a2a5055bee64..98c75471b5d854 100644 --- a/packages/material-ui-icons/lib/Plagiarism.js +++ b/packages/material-ui-icons/lib/Plagiarism.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm1.04 17.45-1.88-1.88c-1.33.71-3.01.53-4.13-.59-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.12 1.12 1.31 2.8.59 4.13l1.88 1.88-1.41 1.41zM13 9V3.5L18.5 9H13z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11.5", cy: "14.5", r: "1.5" -}, "1")], 'Plagiarism'); \ No newline at end of file +}, "1")], 'Plagiarism'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlagiarismOutlined.js b/packages/material-ui-icons/lib/PlagiarismOutlined.js index 81fdc3445cba21..82d411274b9aec 100644 --- a/packages/material-ui-icons/lib/PlagiarismOutlined.js +++ b/packages/material-ui-icons/lib/PlagiarismOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.03 11.03c-1.37 1.37-1.37 3.58 0 4.95 1.12 1.12 2.8 1.31 4.13.59l1.88 1.88 1.41-1.41-1.88-1.88c.71-1.33.53-3.01-.59-4.13-1.37-1.37-3.59-1.37-4.95 0zm3.53 3.53c-.59.59-1.54.59-2.12 0-.59-.59-.59-1.54 0-2.12.59-.59 1.54-.59 2.12 0 .59.59.59 1.53 0 2.12z" -}, "1")], 'PlagiarismOutlined'); \ No newline at end of file +}, "1")], 'PlagiarismOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlagiarismRounded.js b/packages/material-ui-icons/lib/PlagiarismRounded.js index 7444ad35ea448f..02b4ce8babaaaa 100644 --- a/packages/material-ui-icons/lib/PlagiarismRounded.js +++ b/packages/material-ui-icons/lib/PlagiarismRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zm-3.67 11.33c-.39.39-1.02.39-1.41 0l-1.18-1.18c-1.33.71-3.01.53-4.13-.59-1.52-1.52-1.35-4.08.5-5.37 1.16-.81 2.78-.81 3.95 0 1.55 1.08 1.9 3.04 1.09 4.55l1.18 1.18c.39.39.39 1.02 0 1.41zM14 9c-.55 0-1-.45-1-1V3.5L18.5 9H14z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11.5", cy: "14.5", r: "1.5" -}, "1")], 'PlagiarismRounded'); \ No newline at end of file +}, "1")], 'PlagiarismRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlagiarismSharp.js b/packages/material-ui-icons/lib/PlagiarismSharp.js index cfe0387390cade..849827cfed4530 100644 --- a/packages/material-ui-icons/lib/PlagiarismSharp.js +++ b/packages/material-ui-icons/lib/PlagiarismSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11.5", cy: "14.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm1.04 17.45-1.88-1.88c-1.33.71-3.01.53-4.13-.59-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.12 1.12 1.31 2.8.59 4.13l1.88 1.88-1.41 1.41zM13 9V3.5L18.5 9H13z" -}, "1")], 'PlagiarismSharp'); \ No newline at end of file +}, "1")], 'PlagiarismSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlagiarismTwoTone.js b/packages/material-ui-icons/lib/PlagiarismTwoTone.js index 248cc95a7a8cf8..a33d157907d6ac 100644 --- a/packages/material-ui-icons/lib/PlagiarismTwoTone.js +++ b/packages/material-ui-icons/lib/PlagiarismTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 4H6v16h12V9h-5V4zm.97 7.03c1.12 1.12 1.31 2.8.59 4.13l1.88 1.88-1.41 1.41-1.88-1.88c-1.33.71-3.01.53-4.13-.59-1.37-1.37-1.37-3.58 0-4.95s3.59-1.37 4.95 0z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11.5", cy: "13.5", r: "1.5", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.03 11.03c-1.37 1.37-1.37 3.58 0 4.95 1.12 1.12 2.8 1.31 4.13.59l1.88 1.88 1.41-1.41-1.88-1.88c.71-1.33.53-3.01-.59-4.13-1.37-1.37-3.59-1.37-4.95 0zm3.53 3.53c-.59.59-1.54.59-2.12 0-.59-.59-.59-1.54 0-2.12.59-.59 1.54-.59 2.12 0 .59.59.59 1.53 0 2.12z" -}, "3")], 'PlagiarismTwoTone'); \ No newline at end of file +}, "3")], 'PlagiarismTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayArrow.js b/packages/material-ui-icons/lib/PlayArrow.js index da1e5bc2ab49ae..e18ff748fafdd7 100644 --- a/packages/material-ui-icons/lib/PlayArrow.js +++ b/packages/material-ui-icons/lib/PlayArrow.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5v14l11-7z" -}), 'PlayArrow'); \ No newline at end of file +}), 'PlayArrow'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayArrowOutlined.js b/packages/material-ui-icons/lib/PlayArrowOutlined.js index 7669f55ac704ea..8b3de5b2476c4d 100644 --- a/packages/material-ui-icons/lib/PlayArrowOutlined.js +++ b/packages/material-ui-icons/lib/PlayArrowOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8.64 15.27 12 10 15.36V8.64M8 5v14l11-7L8 5z" -}), 'PlayArrowOutlined'); \ No newline at end of file +}), 'PlayArrowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayArrowRounded.js b/packages/material-ui-icons/lib/PlayArrowRounded.js index f3f2c60cdc253b..caf4ec9cae50da 100644 --- a/packages/material-ui-icons/lib/PlayArrowRounded.js +++ b/packages/material-ui-icons/lib/PlayArrowRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 6.82v10.36c0 .79.87 1.27 1.54.84l8.14-5.18c.62-.39.62-1.29 0-1.69L9.54 5.98C8.87 5.55 8 6.03 8 6.82z" -}), 'PlayArrowRounded'); \ No newline at end of file +}), 'PlayArrowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayArrowSharp.js b/packages/material-ui-icons/lib/PlayArrowSharp.js index 49f10feef51f92..2ed8da9877f55e 100644 --- a/packages/material-ui-icons/lib/PlayArrowSharp.js +++ b/packages/material-ui-icons/lib/PlayArrowSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5v14l11-7L8 5z" -}), 'PlayArrowSharp'); \ No newline at end of file +}), 'PlayArrowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayArrowTwoTone.js b/packages/material-ui-icons/lib/PlayArrowTwoTone.js index 4f98027cba68db..4d5206b3143f8a 100644 --- a/packages/material-ui-icons/lib/PlayArrowTwoTone.js +++ b/packages/material-ui-icons/lib/PlayArrowTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8.64v6.72L15.27 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 19 11-7L8 5v14zm2-10.36L15.27 12 10 15.36V8.64z" -}, "1")], 'PlayArrowTwoTone'); \ No newline at end of file +}, "1")], 'PlayArrowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircle.js b/packages/material-ui-icons/lib/PlayCircle.js index 305693c167f4b7..a94591af0da656 100644 --- a/packages/material-ui-icons/lib/PlayCircle.js +++ b/packages/material-ui-icons/lib/PlayCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 16.5v-9l7 4.5-7 4.5z" -}), 'PlayCircle'); \ No newline at end of file +}), 'PlayCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilled.js b/packages/material-ui-icons/lib/PlayCircleFilled.js index 6deca49cb9a800..e7ecd5ac20d036 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilled.js +++ b/packages/material-ui-icons/lib/PlayCircleFilled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" -}), 'PlayCircleFilled'); \ No newline at end of file +}), 'PlayCircleFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledOutlined.js b/packages/material-ui-icons/lib/PlayCircleFilledOutlined.js index ec285261c27f0e..f18e6207976772 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledOutlined.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" -}), 'PlayCircleFilledOutlined'); \ No newline at end of file +}), 'PlayCircleFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledRounded.js b/packages/material-ui-icons/lib/PlayCircleFilledRounded.js index 7f0595d9e88b3d..ace7f7c8ed581b 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledRounded.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 13.5v-7c0-.41.47-.65.8-.4l4.67 3.5c.27.2.27.6 0 .8l-4.67 3.5c-.33.25-.8.01-.8-.4z" -}), 'PlayCircleFilledRounded'); \ No newline at end of file +}), 'PlayCircleFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledSharp.js b/packages/material-ui-icons/lib/PlayCircleFilledSharp.js index cf5e70de8f9212..130d8e0b0ed2bd 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledSharp.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" -}), 'PlayCircleFilledSharp'); \ No newline at end of file +}), 'PlayCircleFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledTwoTone.js b/packages/material-ui-icons/lib/PlayCircleFilledTwoTone.js index 70c58ac47f2d23..5597b947dae133 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledTwoTone.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zM10 7.5l6 4.5-6 4.5v-9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8zm-2 3.5v9l6-4.5z" -}, "1")], 'PlayCircleFilledTwoTone'); \ No newline at end of file +}, "1")], 'PlayCircleFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledWhite.js b/packages/material-ui-icons/lib/PlayCircleFilledWhite.js index 637acce63c51a8..404f8d0fbbdd13 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledWhite.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledWhite.js @@ -1,7 +1,23 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { transform: "scale(0.5, 0.5)", d: "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm-4 29V15l12 9-12 9z" -}), 'PlayCircleFilledWhite'); \ No newline at end of file +}), 'PlayCircleFilledWhite'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledWhiteOutlined.js b/packages/material-ui-icons/lib/PlayCircleFilledWhiteOutlined.js index 73ab8773b764e5..c1125275c89518 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledWhiteOutlined.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledWhiteOutlined.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-2-3.5l6-4.5-6-4.5z" -}), 'PlayCircleFilledWhiteOutlined'); \ No newline at end of file +}), 'PlayCircleFilledWhiteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledWhiteRounded.js b/packages/material-ui-icons/lib/PlayCircleFilledWhiteRounded.js index 46bf4c93de7d42..37d3f1bf46af34 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledWhiteRounded.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledWhiteRounded.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 13.5v-7c0-.41.47-.65.8-.4l4.67 3.5c.27.2.27.6 0 .8l-4.67 3.5c-.33.25-.8.01-.8-.4z" -}), 'PlayCircleFilledWhiteRounded'); \ No newline at end of file +}), 'PlayCircleFilledWhiteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledWhiteSharp.js b/packages/material-ui-icons/lib/PlayCircleFilledWhiteSharp.js index 3c0a1a7fc69038..a5d3baef61b54f 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledWhiteSharp.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledWhiteSharp.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" -}), 'PlayCircleFilledWhiteSharp'); \ No newline at end of file +}), 'PlayCircleFilledWhiteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleFilledWhiteTwoTone.js b/packages/material-ui-icons/lib/PlayCircleFilledWhiteTwoTone.js index 37023f3a9b3ed1..ccd2c4c8732313 100644 --- a/packages/material-ui-icons/lib/PlayCircleFilledWhiteTwoTone.js +++ b/packages/material-ui-icons/lib/PlayCircleFilledWhiteTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zM10 7.5l6 4.5-6 4.5v-9z", opacity: ".3" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8zm-2 3.5v9l6-4.5z" })] -}), 'PlayCircleFilledWhiteTwoTone'); \ No newline at end of file +}), 'PlayCircleFilledWhiteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleOutline.js b/packages/material-ui-icons/lib/PlayCircleOutline.js index 4d92f008a6ca54..d21bacd624c655 100644 --- a/packages/material-ui-icons/lib/PlayCircleOutline.js +++ b/packages/material-ui-icons/lib/PlayCircleOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 16.5 6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PlayCircleOutline'); \ No newline at end of file +}), 'PlayCircleOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleOutlineOutlined.js b/packages/material-ui-icons/lib/PlayCircleOutlineOutlined.js index 462df93dcebb76..577491e331ad70 100644 --- a/packages/material-ui-icons/lib/PlayCircleOutlineOutlined.js +++ b/packages/material-ui-icons/lib/PlayCircleOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 16.5 6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PlayCircleOutlineOutlined'); \ No newline at end of file +}), 'PlayCircleOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleOutlineRounded.js b/packages/material-ui-icons/lib/PlayCircleOutlineRounded.js index 8134c5104b7899..ed3673552fe237 100644 --- a/packages/material-ui-icons/lib/PlayCircleOutlineRounded.js +++ b/packages/material-ui-icons/lib/PlayCircleOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.8 15.9 4.67-3.5c.27-.2.27-.6 0-.8L10.8 8.1c-.33-.25-.8-.01-.8.4v7c0 .41.47.65.8.4zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PlayCircleOutlineRounded'); \ No newline at end of file +}), 'PlayCircleOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleOutlineSharp.js b/packages/material-ui-icons/lib/PlayCircleOutlineSharp.js index 8b5c1cbec94912..8b045410456ae2 100644 --- a/packages/material-ui-icons/lib/PlayCircleOutlineSharp.js +++ b/packages/material-ui-icons/lib/PlayCircleOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 16.5 6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PlayCircleOutlineSharp'); \ No newline at end of file +}), 'PlayCircleOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/PlayCircleOutlineTwoTone.js index a81ac92e451e2d..51950072eaf217 100644 --- a/packages/material-ui-icons/lib/PlayCircleOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/PlayCircleOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 16.5 6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'PlayCircleOutlineTwoTone'); \ No newline at end of file +}), 'PlayCircleOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleOutlined.js b/packages/material-ui-icons/lib/PlayCircleOutlined.js index 45af89d7f683f9..8666b1a82c86d7 100644 --- a/packages/material-ui-icons/lib/PlayCircleOutlined.js +++ b/packages/material-ui-icons/lib/PlayCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-2.5-3.5 7-4.5-7-4.5v9z" -}), 'PlayCircleOutlined'); \ No newline at end of file +}), 'PlayCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleRounded.js b/packages/material-ui-icons/lib/PlayCircleRounded.js index 525d49f8e0c752..4fa606844529de 100644 --- a/packages/material-ui-icons/lib/PlayCircleRounded.js +++ b/packages/material-ui-icons/lib/PlayCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 14.67V9.33c0-.79.88-1.27 1.54-.84l4.15 2.67c.61.39.61 1.29 0 1.68l-4.15 2.67c-.66.43-1.54-.05-1.54-.84z" -}), 'PlayCircleRounded'); \ No newline at end of file +}), 'PlayCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleSharp.js b/packages/material-ui-icons/lib/PlayCircleSharp.js index 0de4ec0d41a3e0..6e3e23e187b9f3 100644 --- a/packages/material-ui-icons/lib/PlayCircleSharp.js +++ b/packages/material-ui-icons/lib/PlayCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 16.5v-9l7 4.5-7 4.5z" -}), 'PlayCircleSharp'); \ No newline at end of file +}), 'PlayCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayCircleTwoTone.js b/packages/material-ui-icons/lib/PlayCircleTwoTone.js index df620cfe6369be..f159da41efb853 100644 --- a/packages/material-ui-icons/lib/PlayCircleTwoTone.js +++ b/packages/material-ui-icons/lib/PlayCircleTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM9.5 16.5v-9l7 4.5-7 4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.5 16.5 7-4.5-7-4.5z" -}, "2")], 'PlayCircleTwoTone'); \ No newline at end of file +}, "2")], 'PlayCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayDisabled.js b/packages/material-ui-icons/lib/PlayDisabled.js index 833f576841ca38..402a468b9e5d7c 100644 --- a/packages/material-ui-icons/lib/PlayDisabled.js +++ b/packages/material-ui-icons/lib/PlayDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5.19V5l11 7-2.55 1.63L8 5.19zm12 14.54-5.11-5.11L8 7.73 4.27 4 3 5.27l5 5V19l5.33-3.4 5.4 5.4L20 19.73z" -}), 'PlayDisabled'); \ No newline at end of file +}), 'PlayDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayDisabledOutlined.js b/packages/material-ui-icons/lib/PlayDisabledOutlined.js index f7acef7986d52f..093e2c03909f6a 100644 --- a/packages/material-ui-icons/lib/PlayDisabledOutlined.js +++ b/packages/material-ui-icons/lib/PlayDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.45 13.62 19 12 8 5v.17zM2.81 2.81 1.39 4.22 8 10.83V19l4.99-3.18 6.78 6.78 1.41-1.41L2.81 2.81zM10 15.36v-2.53l1.55 1.55-1.55.98z" -}), 'PlayDisabledOutlined'); \ No newline at end of file +}), 'PlayDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayDisabledRounded.js b/packages/material-ui-icons/lib/PlayDisabledRounded.js index 7e305f3df1cdea..d463bc63a2aeca 100644 --- a/packages/material-ui-icons/lib/PlayDisabledRounded.js +++ b/packages/material-ui-icons/lib/PlayDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9v6.35c0 .79.87 1.27 1.54.84l3.45-2.2 6.08 6.08c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0zm15.58 9.33c.62-.39.62-1.29 0-1.69L9.54 5.98c-.27-.17-.57-.19-.84-.11l7.75 7.75 1.23-.78z" -}), 'PlayDisabledRounded'); \ No newline at end of file +}), 'PlayDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayDisabledSharp.js b/packages/material-ui-icons/lib/PlayDisabledSharp.js index 84add772560b84..f0eafe29d701c2 100644 --- a/packages/material-ui-icons/lib/PlayDisabledSharp.js +++ b/packages/material-ui-icons/lib/PlayDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.45 13.62 19 12 8 5v.17zM2.81 2.81 1.39 4.22 8 10.83V19l4.99-3.18 6.79 6.79 1.41-1.42z" -}), 'PlayDisabledSharp'); \ No newline at end of file +}), 'PlayDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayDisabledTwoTone.js b/packages/material-ui-icons/lib/PlayDisabledTwoTone.js index 5aea0b8fc9ff1d..b2bcec6858bc1c 100644 --- a/packages/material-ui-icons/lib/PlayDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/PlayDisabledTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 12.83v2.53l1.55-.99z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22 8 10.83V19l4.99-3.18 6.78 6.78 1.41-1.41L2.81 2.81zM10 15.36v-2.53l1.55 1.55-1.55.98zM19 12 8 5v.17l8.45 8.45L19 12z" -}, "1")], 'PlayDisabledTwoTone'); \ No newline at end of file +}, "1")], 'PlayDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayForWork.js b/packages/material-ui-icons/lib/PlayForWork.js index f81f7420d681a0..fce0ab8caf1827 100644 --- a/packages/material-ui-icons/lib/PlayForWork.js +++ b/packages/material-ui-icons/lib/PlayForWork.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" -}), 'PlayForWork'); \ No newline at end of file +}), 'PlayForWork'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayForWorkOutlined.js b/packages/material-ui-icons/lib/PlayForWorkOutlined.js index 23475f906b2100..f2f65370652e1b 100644 --- a/packages/material-ui-icons/lib/PlayForWorkOutlined.js +++ b/packages/material-ui-icons/lib/PlayForWorkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" -}), 'PlayForWorkOutlined'); \ No newline at end of file +}), 'PlayForWorkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayForWorkRounded.js b/packages/material-ui-icons/lib/PlayForWorkRounded.js index 8d904a0132a332..5166f0fca4c186 100644 --- a/packages/material-ui-icons/lib/PlayForWorkRounded.js +++ b/packages/material-ui-icons/lib/PlayForWorkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6v4.59H8.71c-.45 0-.67.54-.35.85l3.29 3.29c.2.2.51.2.71 0l3.29-3.29c.31-.31.09-.85-.35-.85H13V6c0-.55-.45-1-1-1s-1 .45-1 1zm-3.9 8c-.61 0-1.11.55-.99 1.15C6.65 17.91 9.08 20 12 20s5.35-2.09 5.89-4.85c.12-.6-.38-1.15-.99-1.15-.49 0-.88.35-.98.83C15.53 16.64 13.93 18 12 18s-3.53-1.36-3.91-3.17c-.1-.48-.5-.83-.99-.83z" -}), 'PlayForWorkRounded'); \ No newline at end of file +}), 'PlayForWorkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayForWorkSharp.js b/packages/material-ui-icons/lib/PlayForWorkSharp.js index fb7feba4f53f23..255c7eff56ea95 100644 --- a/packages/material-ui-icons/lib/PlayForWorkSharp.js +++ b/packages/material-ui-icons/lib/PlayForWorkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" -}), 'PlayForWorkSharp'); \ No newline at end of file +}), 'PlayForWorkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayForWorkTwoTone.js b/packages/material-ui-icons/lib/PlayForWorkTwoTone.js index e55ee1c9f13cf4..d0bf89b25c3201 100644 --- a/packages/material-ui-icons/lib/PlayForWorkTwoTone.js +++ b/packages/material-ui-icons/lib/PlayForWorkTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" -}), 'PlayForWorkTwoTone'); \ No newline at end of file +}), 'PlayForWorkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayLesson.js b/packages/material-ui-icons/lib/PlayLesson.js index e389170255c850..e16348c97c4e34 100644 --- a/packages/material-ui-icons/lib/PlayLesson.js +++ b/packages/material-ui-icons/lib/PlayLesson.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11c.34 0 .67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM7 11V4h5v7L9.5 9.5 7 11z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" -}, "1")], 'PlayLesson'); \ No newline at end of file +}, "1")], 'PlayLesson'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayLessonOutlined.js b/packages/material-ui-icons/lib/PlayLessonOutlined.js index 244061d5f9b627..b47d7cfff6a72d 100644 --- a/packages/material-ui-icons/lib/PlayLessonOutlined.js +++ b/packages/material-ui-icons/lib/PlayLessonOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20V4h2v7l2.5-1.5L12 11V4h5v7.08c.33-.05.66-.08 1-.08s.67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.42-.6-.75-1.28-.97-2H5zm13-7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" -}), 'PlayLessonOutlined'); \ No newline at end of file +}), 'PlayLessonOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayLessonRounded.js b/packages/material-ui-icons/lib/PlayLessonRounded.js index fb00d962ef6477..a935adf3209ec2 100644 --- a/packages/material-ui-icons/lib/PlayLessonRounded.js +++ b/packages/material-ui-icons/lib/PlayLessonRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11c.34 0 .67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zm-10.24-.45c-.34.2-.76-.04-.76-.43V4h5v6.12c0 .39-.42.63-.76.43L9.5 9.5l-1.74 1.05z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 6.6v-3.2c0-.39.43-.63.76-.42l2.56 1.6c.31.2.31.65 0 .85l-2.56 1.6c-.33.2-.76-.04-.76-.43z" -}, "1")], 'PlayLessonRounded'); \ No newline at end of file +}, "1")], 'PlayLessonRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayLessonSharp.js b/packages/material-ui-icons/lib/PlayLessonSharp.js index 416cad565c8475..32093f452fac46 100644 --- a/packages/material-ui-icons/lib/PlayLessonSharp.js +++ b/packages/material-ui-icons/lib/PlayLessonSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11c.34 0 .67.03 1 .08V2H3v20h9.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM7 11V4h5v7L9.5 9.5 7 11z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" -}, "1")], 'PlayLessonSharp'); \ No newline at end of file +}, "1")], 'PlayLessonSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlayLessonTwoTone.js b/packages/material-ui-icons/lib/PlayLessonTwoTone.js index 32c9af6ba61af7..5f5368694ee555 100644 --- a/packages/material-ui-icons/lib/PlayLessonTwoTone.js +++ b/packages/material-ui-icons/lib/PlayLessonTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4v7L9.5 9.5 7 11V4H5v16h6.29c-.19-.63-.29-1.3-.29-2 0-3.53 2.61-6.43 6-6.92V4h-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20V4h2v7l2.5-1.5L12 11V4h5v7.08c.33-.05.66-.08 1-.08s.67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.42-.6-.75-1.28-.97-2H5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" -}, "2")], 'PlayLessonTwoTone'); \ No newline at end of file +}, "2")], 'PlayLessonTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAdd.js b/packages/material-ui-icons/lib/PlaylistAdd.js index 71ad894af06ff6..87bd3318ea12e8 100644 --- a/packages/material-ui-icons/lib/PlaylistAdd.js +++ b/packages/material-ui-icons/lib/PlaylistAdd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" -}), 'PlaylistAdd'); \ No newline at end of file +}), 'PlaylistAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddCheck.js b/packages/material-ui-icons/lib/PlaylistAddCheck.js index 24d5ced1778f42..decea8c9bcc4fe 100644 --- a/packages/material-ui-icons/lib/PlaylistAddCheck.js +++ b/packages/material-ui-icons/lib/PlaylistAddCheck.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" -}), 'PlaylistAddCheck'); \ No newline at end of file +}), 'PlaylistAddCheck'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddCheckOutlined.js b/packages/material-ui-icons/lib/PlaylistAddCheckOutlined.js index d119f872aec472..726bf889525d39 100644 --- a/packages/material-ui-icons/lib/PlaylistAddCheckOutlined.js +++ b/packages/material-ui-icons/lib/PlaylistAddCheckOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" -}), 'PlaylistAddCheckOutlined'); \ No newline at end of file +}), 'PlaylistAddCheckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddCheckRounded.js b/packages/material-ui-icons/lib/PlaylistAddCheckRounded.js index 2ea1a99a2c6b6e..14488129518ef9 100644 --- a/packages/material-ui-icons/lib/PlaylistAddCheckRounded.js +++ b/packages/material-ui-icons/lib/PlaylistAddCheckRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM3 16h6c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm19.21-3.79.09.09c.39.39.39 1.02 0 1.41l-5.58 5.59c-.39.39-1.02.39-1.41 0l-3.09-3.09a.9959.9959 0 0 1 0-1.41l.09-.09c.39-.39 1.02-.39 1.41 0l2.3 2.3 4.78-4.79c.38-.4 1.02-.4 1.41-.01z" -}), 'PlaylistAddCheckRounded'); \ No newline at end of file +}), 'PlaylistAddCheckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddCheckSharp.js b/packages/material-ui-icons/lib/PlaylistAddCheckSharp.js index 754a0dba6c9cf1..4a02fea6e6091b 100644 --- a/packages/material-ui-icons/lib/PlaylistAddCheckSharp.js +++ b/packages/material-ui-icons/lib/PlaylistAddCheckSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" -}), 'PlaylistAddCheckSharp'); \ No newline at end of file +}), 'PlaylistAddCheckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddCheckTwoTone.js b/packages/material-ui-icons/lib/PlaylistAddCheckTwoTone.js index 998d68ce5bac73..e965e4e22f4f90 100644 --- a/packages/material-ui-icons/lib/PlaylistAddCheckTwoTone.js +++ b/packages/material-ui-icons/lib/PlaylistAddCheckTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" -}), 'PlaylistAddCheckTwoTone'); \ No newline at end of file +}), 'PlaylistAddCheckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddOutlined.js b/packages/material-ui-icons/lib/PlaylistAddOutlined.js index 03cf709a76e4aa..7be74536d8a67e 100644 --- a/packages/material-ui-icons/lib/PlaylistAddOutlined.js +++ b/packages/material-ui-icons/lib/PlaylistAddOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" -}), 'PlaylistAddOutlined'); \ No newline at end of file +}), 'PlaylistAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddRounded.js b/packages/material-ui-icons/lib/PlaylistAddRounded.js index 223117bb0ced21..c605f4a3a175c9 100644 --- a/packages/material-ui-icons/lib/PlaylistAddRounded.js +++ b/packages/material-ui-icons/lib/PlaylistAddRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm5 8v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3zM3 16h6c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'PlaylistAddRounded'); \ No newline at end of file +}), 'PlaylistAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddSharp.js b/packages/material-ui-icons/lib/PlaylistAddSharp.js index 916fe2c6e526ea..a4ef1c33ace756 100644 --- a/packages/material-ui-icons/lib/PlaylistAddSharp.js +++ b/packages/material-ui-icons/lib/PlaylistAddSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" -}), 'PlaylistAddSharp'); \ No newline at end of file +}), 'PlaylistAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistAddTwoTone.js b/packages/material-ui-icons/lib/PlaylistAddTwoTone.js index 146bc198cf5a50..3bbf0271c0340f 100644 --- a/packages/material-ui-icons/lib/PlaylistAddTwoTone.js +++ b/packages/material-ui-icons/lib/PlaylistAddTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" -}), 'PlaylistAddTwoTone'); \ No newline at end of file +}), 'PlaylistAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistPlay.js b/packages/material-ui-icons/lib/PlaylistPlay.js index fee11eb0d464ee..0edae7d3ba34c3 100644 --- a/packages/material-ui-icons/lib/PlaylistPlay.js +++ b/packages/material-ui-icons/lib/PlaylistPlay.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" -}), 'PlaylistPlay'); \ No newline at end of file +}), 'PlaylistPlay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistPlayOutlined.js b/packages/material-ui-icons/lib/PlaylistPlayOutlined.js index 9ad9084ef561c1..1b3415f3bcd25f 100644 --- a/packages/material-ui-icons/lib/PlaylistPlayOutlined.js +++ b/packages/material-ui-icons/lib/PlaylistPlayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" -}), 'PlaylistPlayOutlined'); \ No newline at end of file +}), 'PlaylistPlayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistPlayRounded.js b/packages/material-ui-icons/lib/PlaylistPlayRounded.js index f7e0ee6d4aa803..9b234397a63d0e 100644 --- a/packages/material-ui-icons/lib/PlaylistPlayRounded.js +++ b/packages/material-ui-icons/lib/PlaylistPlayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 10h10c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0-4h10c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 8h6c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm9 .88v4.23c0 .39.42.63.76.43l3.53-2.12c.32-.19.32-.66 0-.86l-3.53-2.12c-.34-.19-.76.05-.76.44z" -}), 'PlaylistPlayRounded'); \ No newline at end of file +}), 'PlaylistPlayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistPlaySharp.js b/packages/material-ui-icons/lib/PlaylistPlaySharp.js index 4d0bb365ed3288..be22babe418f61 100644 --- a/packages/material-ui-icons/lib/PlaylistPlaySharp.js +++ b/packages/material-ui-icons/lib/PlaylistPlaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" -}), 'PlaylistPlaySharp'); \ No newline at end of file +}), 'PlaylistPlaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlaylistPlayTwoTone.js b/packages/material-ui-icons/lib/PlaylistPlayTwoTone.js index 7095af73ea099a..34407040675753 100644 --- a/packages/material-ui-icons/lib/PlaylistPlayTwoTone.js +++ b/packages/material-ui-icons/lib/PlaylistPlayTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" -}), 'PlaylistPlayTwoTone'); \ No newline at end of file +}), 'PlaylistPlayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Plumbing.js b/packages/material-ui-icons/lib/Plumbing.js index 19e92f4c7696e9..e929cdb8b2196b 100644 --- a/packages/material-ui-icons/lib/Plumbing.js +++ b/packages/material-ui-icons/lib/Plumbing.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.04 7.76-.71.71-.71.71L10.44 6c-.59-.6-1.54-.6-2.12-.01-.59.59-.59 1.54 0 2.12l3.18 3.18-.71.71-6.36 6.36c-.78.78-.78 2.05 0 2.83.78.78 2.05.78 2.83 0L16.45 12c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.82-2.83z" -}, "1")], 'Plumbing'); \ No newline at end of file +}, "1")], 'Plumbing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlumbingOutlined.js b/packages/material-ui-icons/lib/PlumbingOutlined.js index df9b12b209aa4c..6e0fe3e6b9b34c 100644 --- a/packages/material-ui-icons/lib/PlumbingOutlined.js +++ b/packages/material-ui-icons/lib/PlumbingOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.04 7.76-.71.71-.71.71L10.44 6c-.59-.6-1.54-.6-2.12-.01-.59.59-.59 1.54 0 2.12l3.18 3.18-.71.71-6.36 6.36c-.78.78-.78 2.05 0 2.83.78.78 2.05.78 2.83 0L16.45 12c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.82-2.83z" -}, "1")], 'PlumbingOutlined'); \ No newline at end of file +}, "1")], 'PlumbingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlumbingRounded.js b/packages/material-ui-icons/lib/PlumbingRounded.js index 4e510e692041d5..cc2b7701c5199d 100644 --- a/packages/material-ui-icons/lib/PlumbingRounded.js +++ b/packages/material-ui-icons/lib/PlumbingRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.33 8.46-.71.71-3.18-3.18c-.59-.59-1.54-.59-2.12 0-.59.59-.59 1.54 0 2.12l3.18 3.18-7 7c-.7.7-.88 1.84-.29 2.65.74 1.03 2.19 1.12 3.05.26l9.19-9.2c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.12-2.12a.987.987 0 0 0-1.41-.01z" -}, "1")], 'PlumbingRounded'); \ No newline at end of file +}, "1")], 'PlumbingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlumbingSharp.js b/packages/material-ui-icons/lib/PlumbingSharp.js index ee5263b1d0cc26..c1a168a9a0c347 100644 --- a/packages/material-ui-icons/lib/PlumbingSharp.js +++ b/packages/material-ui-icons/lib/PlumbingSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.16 5.64 3.54 3.54c1.17-1.17 1.17-3.07 0-4.24L16.16 1.4l-4.24 4.24 2.12 2.12 2.12-2.12zM4.842 12.7081l3.5355-3.5355 2.1213 2.1213-3.5355 3.5355z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.45 7.76-1.41 1.41-4.25-4.24-2.12 2.12 4.24 4.24-8.49 8.49 2.83 2.83L16.86 12l.71.71 1.41-1.41-3.53-3.54z" -}, "1")], 'PlumbingSharp'); \ No newline at end of file +}, "1")], 'PlumbingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlumbingTwoTone.js b/packages/material-ui-icons/lib/PlumbingTwoTone.js index d1e6fbaa15b675..db2d70c837edcd 100644 --- a/packages/material-ui-icons/lib/PlumbingTwoTone.js +++ b/packages/material-ui-icons/lib/PlumbingTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.04 7.76-.71.71-.71.71L10.44 6c-.59-.6-1.54-.6-2.12-.01-.59.59-.59 1.54 0 2.12l3.18 3.18-.71.71-6.36 6.36c-.78.78-.78 2.05 0 2.83.78.78 2.05.78 2.83 0L16.45 12c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.82-2.83z" -}, "1")], 'PlumbingTwoTone'); \ No newline at end of file +}, "1")], 'PlumbingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlusOne.js b/packages/material-ui-icons/lib/PlusOne.js index ebf9f9b05adf0a..366335069042c4 100644 --- a/packages/material-ui-icons/lib/PlusOne.js +++ b/packages/material-ui-icons/lib/PlusOne.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4zm4.5-1.92V7.9l2.5-.5V18h2V5z" -}), 'PlusOne'); \ No newline at end of file +}), 'PlusOne'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlusOneOutlined.js b/packages/material-ui-icons/lib/PlusOneOutlined.js index ddb2f27d7091c5..abcec5a45e52f3 100644 --- a/packages/material-ui-icons/lib/PlusOneOutlined.js +++ b/packages/material-ui-icons/lib/PlusOneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" -}), 'PlusOneOutlined'); \ No newline at end of file +}), 'PlusOneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlusOneRounded.js b/packages/material-ui-icons/lib/PlusOneRounded.js index 077808cc78a100..851cc75892882d 100644 --- a/packages/material-ui-icons/lib/PlusOneRounded.js +++ b/packages/material-ui-icons/lib/PlusOneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8c-.55 0-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V9c0-.55-.45-1-1-1zm5.5-1.21c0 .57.52 1 1.08.89L17 7.4V17c0 .55.45 1 1 1s1-.45 1-1V6.27c0-.65-.6-1.12-1.23-.97l-2.57.62c-.41.09-.7.46-.7.87z" -}), 'PlusOneRounded'); \ No newline at end of file +}), 'PlusOneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlusOneSharp.js b/packages/material-ui-icons/lib/PlusOneSharp.js index a1f58b7976e78f..290f5d3c4b9d9f 100644 --- a/packages/material-ui-icons/lib/PlusOneSharp.js +++ b/packages/material-ui-icons/lib/PlusOneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" -}), 'PlusOneSharp'); \ No newline at end of file +}), 'PlusOneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PlusOneTwoTone.js b/packages/material-ui-icons/lib/PlusOneTwoTone.js index 78577c5d2e6575..46e2966cb3caf6 100644 --- a/packages/material-ui-icons/lib/PlusOneTwoTone.js +++ b/packages/material-ui-icons/lib/PlusOneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" -}), 'PlusOneTwoTone'); \ No newline at end of file +}), 'PlusOneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Podcasts.js b/packages/material-ui-icons/lib/Podcasts.js index bdfda3e3e87d6f..6062ca515337a3 100644 --- a/packages/material-ui-icons/lib/Podcasts.js +++ b/packages/material-ui-icons/lib/Podcasts.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" -}), 'Podcasts'); \ No newline at end of file +}), 'Podcasts'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PodcastsOutlined.js b/packages/material-ui-icons/lib/PodcastsOutlined.js index 1fd112eed6301c..e2ac3ba21f9aca 100644 --- a/packages/material-ui-icons/lib/PodcastsOutlined.js +++ b/packages/material-ui-icons/lib/PodcastsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" -}), 'PodcastsOutlined'); \ No newline at end of file +}), 'PodcastsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PodcastsRounded.js b/packages/material-ui-icons/lib/PodcastsRounded.js index ad8ffa955ddb11..c1216f7e5620d1 100644 --- a/packages/material-ui-icons/lib/PodcastsRounded.js +++ b/packages/material-ui-icons/lib/PodcastsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0 .74-.4 1.38-1 1.72V21c0 .55-.45 1-1 1s-1-.45-1-1v-7.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-3.25-5.87c-2.27.46-4.12 2.28-4.61 4.55-.4 1.86.07 3.62 1.08 4.94.35.45 1.03.47 1.43.07l.07-.07c.34-.34.34-.87.06-1.25-.68-.9-.98-2.1-.66-3.37.35-1.42 1.52-2.57 2.95-2.88C13.69 7.52 16 9.49 16 12c0 .87-.28 1.67-.76 2.32-.3.41-.29.97.07 1.33.44.44 1.17.37 1.54-.14.72-.98 1.15-2.2 1.15-3.51 0-3.72-3.39-6.65-7.25-5.87zm.08-4.06c-4.53.51-8.22 4.18-8.76 8.71-.35 2.95.59 5.67 2.32 7.7.37.43 1.03.46 1.43.06l.05-.05c.35-.35.38-.92.05-1.3-1.56-1.83-2.33-4.37-1.7-7.06.7-3.01 3.18-5.39 6.22-5.97C15.53 3.18 20 7.08 20 12c0 1.96-.72 3.76-1.9 5.16-.34.4-.31.98.05 1.35.42.42 1.11.39 1.49-.07C21.11 16.7 22 14.46 22 12c0-5.91-5.13-10.62-11.17-9.93z" -}), 'PodcastsRounded'); \ No newline at end of file +}), 'PodcastsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PodcastsSharp.js b/packages/material-ui-icons/lib/PodcastsSharp.js index 0f5973cdf5c582..63da76c0bbdbfe 100644 --- a/packages/material-ui-icons/lib/PodcastsSharp.js +++ b/packages/material-ui-icons/lib/PodcastsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" -}), 'PodcastsSharp'); \ No newline at end of file +}), 'PodcastsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PodcastsTwoTone.js b/packages/material-ui-icons/lib/PodcastsTwoTone.js index 5b28a1a66c6cb2..5a55b3f9a9df42 100644 --- a/packages/material-ui-icons/lib/PodcastsTwoTone.js +++ b/packages/material-ui-icons/lib/PodcastsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" -}), 'PodcastsTwoTone'); \ No newline at end of file +}), 'PodcastsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PointOfSale.js b/packages/material-ui-icons/lib/PointOfSale.js index 3f23577495fc21..b600330e91a4aa 100644 --- a/packages/material-ui-icons/lib/PointOfSale.js +++ b/packages/material-ui-icons/lib/PointOfSale.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 4H7V4h10v2zm3 16H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'PointOfSale'); \ No newline at end of file +}), 'PointOfSale'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PointOfSaleOutlined.js b/packages/material-ui-icons/lib/PointOfSaleOutlined.js index 1fe805f6fba426..99c27adcbc3db9 100644 --- a/packages/material-ui-icons/lib/PointOfSaleOutlined.js +++ b/packages/material-ui-icons/lib/PointOfSaleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 4H7V4h10v2zm3 16H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'PointOfSaleOutlined'); \ No newline at end of file +}), 'PointOfSaleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PointOfSaleRounded.js b/packages/material-ui-icons/lib/PointOfSaleRounded.js index 8dc7a31a09f062..f4dcddc07ab436 100644 --- a/packages/material-ui-icons/lib/PointOfSaleRounded.js +++ b/packages/material-ui-icons/lib/PointOfSaleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-.5 4h-9c-.28 0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5h9c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5zM20 22H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'PointOfSaleRounded'); \ No newline at end of file +}), 'PointOfSaleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PointOfSaleSharp.js b/packages/material-ui-icons/lib/PointOfSaleSharp.js index bc4021d9aa2490..6525fce1564a62 100644 --- a/packages/material-ui-icons/lib/PointOfSaleSharp.js +++ b/packages/material-ui-icons/lib/PointOfSaleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5v6h14V2zm-2 4H7V4h10v2zm5 16H2v-3h20v3zM18 9H6l-4 9h20l-4-9zm-8 7H8v-1h2v1zm0-2H8v-1h2v1zm0-2H8v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1z" -}), 'PointOfSaleSharp'); \ No newline at end of file +}), 'PointOfSaleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PointOfSaleTwoTone.js b/packages/material-ui-icons/lib/PointOfSaleTwoTone.js index 4e03c20d26d487..9385254fe93841 100644 --- a/packages/material-ui-icons/lib/PointOfSaleTwoTone.js +++ b/packages/material-ui-icons/lib/PointOfSaleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm.5-2.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm3 4c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm3 4c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zM17 4H7v2h10V4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 4H7V4h10v2zm3 16H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}, "1")], 'PointOfSaleTwoTone'); \ No newline at end of file +}, "1")], 'PointOfSaleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Policy.js b/packages/material-ui-icons/lib/Policy.js index 3332c9d965e252..aaef10605b79cb 100644 --- a/packages/material-ui-icons/lib/Policy.js +++ b/packages/material-ui-icons/lib/Policy.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 5-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'Policy'); \ No newline at end of file +}, "1")], 'Policy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PolicyOutlined.js b/packages/material-ui-icons/lib/PolicyOutlined.js index 1fc6df045df1fe..1e6c86781c0c2b 100644 --- a/packages/material-ui-icons/lib/PolicyOutlined.js +++ b/packages/material-ui-icons/lib/PolicyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 1.85-.51 3.65-1.38 5.21l-1.45-1.45c1.29-1.94 1.07-4.58-.64-6.29-1.95-1.95-5.12-1.95-7.07 0-1.95 1.95-1.95 5.12 0 7.07 1.71 1.71 4.35 1.92 6.29.64l1.72 1.72c-1.19 1.42-2.73 2.51-4.47 3.04-4.02-1.25-7-5.42-7-9.94V6.3l7-3.11 7 3.11V11zm-7 4c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'PolicyOutlined'); \ No newline at end of file +}), 'PolicyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PolicyRounded.js b/packages/material-ui-icons/lib/PolicyRounded.js index a37bc3280c7067..3429c0ecd0bf4b 100644 --- a/packages/material-ui-icons/lib/PolicyRounded.js +++ b/packages/material-ui-icons/lib/PolicyRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.52-.23-1.11-.23-1.62 0l-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V6.3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'PolicyRounded'); \ No newline at end of file +}, "1")], 'PolicyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PolicySharp.js b/packages/material-ui-icons/lib/PolicySharp.js index 90aea262ce683e..4a5febd95bdec4 100644 --- a/packages/material-ui-icons/lib/PolicySharp.js +++ b/packages/material-ui-icons/lib/PolicySharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 5-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "3" -}, "1")], 'PolicySharp'); \ No newline at end of file +}, "1")], 'PolicySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PolicyTwoTone.js b/packages/material-ui-icons/lib/PolicyTwoTone.js index 7486104595f634..133db188fb63d9 100644 --- a/packages/material-ui-icons/lib/PolicyTwoTone.js +++ b/packages/material-ui-icons/lib/PolicyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6.3V11c0 4.52 2.98 8.69 7 9.93 1.74-.53 3.28-1.62 4.47-3.04l-1.72-1.72c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l1.45 1.45C18.49 14.65 19 12.85 19 11V6.3l-7-3.11L5 6.3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 .65-.16 1.27-.38 1.87-.65 1.8-.82 3.36-2.13 4.57-3.74C20.04 16.46 21 13.77 21 11V5l-9-4zm7 10c0 1.85-.51 3.65-1.38 5.21l-1.45-1.45c1.29-1.94 1.07-4.58-.64-6.29-1.95-1.95-5.12-1.95-7.07 0-1.95 1.95-1.95 5.12 0 7.07 1.71 1.71 4.35 1.92 6.29.64l1.72 1.72c-1.19 1.42-2.73 2.51-4.47 3.04-4.02-1.25-7-5.42-7-9.94V6.3l7-3.11 7 3.11V11zm-4 1c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" -}, "1")], 'PolicyTwoTone'); \ No newline at end of file +}, "1")], 'PolicyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Poll.js b/packages/material-ui-icons/lib/Poll.js index 362fee7a878da7..3a04fa6c816551 100644 --- a/packages/material-ui-icons/lib/Poll.js +++ b/packages/material-ui-icons/lib/Poll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" -}), 'Poll'); \ No newline at end of file +}), 'Poll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PollOutlined.js b/packages/material-ui-icons/lib/PollOutlined.js index c0fc2fe56e6132..31e7f1737b8257 100644 --- a/packages/material-ui-icons/lib/PollOutlined.js +++ b/packages/material-ui-icons/lib/PollOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" -}), 'PollOutlined'); \ No newline at end of file +}), 'PollOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PollRounded.js b/packages/material-ui-icons/lib/PollRounded.js index 3ab341ab13739e..d04204c3980afd 100644 --- a/packages/material-ui-icons/lib/PollRounded.js +++ b/packages/material-ui-icons/lib/PollRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'PollRounded'); \ No newline at end of file +}), 'PollRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PollSharp.js b/packages/material-ui-icons/lib/PollSharp.js index f9da1c86e524d6..d2d8d9e9178d7b 100644 --- a/packages/material-ui-icons/lib/PollSharp.js +++ b/packages/material-ui-icons/lib/PollSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm6 14H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" -}), 'PollSharp'); \ No newline at end of file +}), 'PollSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PollTwoTone.js b/packages/material-ui-icons/lib/PollTwoTone.js index 3015eef22e6620..81455dfd7749b7 100644 --- a/packages/material-ui-icons/lib/PollTwoTone.js +++ b/packages/material-ui-icons/lib/PollTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm10-6h2v4h-2v-4zm-4-6h2v10h-2V7zm-4 3h2v7H7v-7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" -}, "1")], 'PollTwoTone'); \ No newline at end of file +}, "1")], 'PollTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Pool.js b/packages/material-ui-icons/lib/Pool.js index c1b3e7b15f7e5d..06f90983104c79 100644 --- a/packages/material-ui-icons/lib/Pool.js +++ b/packages/material-ui-icons/lib/Pool.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64-1.11 0-1.73-.37-2.18-.64-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "5.5", r: "2.5" -}, "1")], 'Pool'); \ No newline at end of file +}, "1")], 'Pool'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PoolOutlined.js b/packages/material-ui-icons/lib/PoolOutlined.js index e858155bf59515..8541f635d8442f 100644 --- a/packages/material-ui-icons/lib/PoolOutlined.js +++ b/packages/material-ui-icons/lib/PoolOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 8-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "5.5", r: "2.5" -}, "1")], 'PoolOutlined'); \ No newline at end of file +}, "1")], 'PoolOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PoolRounded.js b/packages/material-ui-icons/lib/PoolRounded.js index 74acfadaed4fef..09923fd0c2de86 100644 --- a/packages/material-ui-icons/lib/PoolRounded.js +++ b/packages/material-ui-icons/lib/PoolRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.11 5.56C7.3 5.7 8.14 6.14 9 7l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C9.22 3.74 8.04 3.2 6.3 3.05 5.6 2.99 5 3.56 5 4.26v.09c0 .63.49 1.13 1.11 1.21zm15.24 13.35c-.17-.06-.32-.15-.5-.27-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.18.11-.33.2-.5.27-.38.13-.65.45-.65.85v.12c0 .67.66 1.13 1.3.91.37-.13.65-.3.89-.44.37-.22.6-.35 1.15-.35.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.23.14.51.31.88.44.63.22 1.3-.24 1.3-.91v-.12c0-.41-.27-.73-.65-.86zM3.11 16.35c.47-.13.81-.33 1.09-.49.37-.23.6-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.23.14.5.3.85.43.63.23 1.31-.24 1.31-.91v-.12c0-.4-.27-.72-.64-.86-.17-.06-.32-.15-.51-.26-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.18.11-.33.2-.5.27-.38.13-.65.45-.65.85v.23c0 .58.55 1.02 1.11.86z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "5.5", r: "2.5" -}, "1")], 'PoolRounded'); \ No newline at end of file +}, "1")], 'PoolRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PoolSharp.js b/packages/material-ui-icons/lib/PoolSharp.js index bc484758a5282a..6fc7505daad4bf 100644 --- a/packages/material-ui-icons/lib/PoolSharp.js +++ b/packages/material-ui-icons/lib/PoolSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 8-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5 5 3v2.5L9 7l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "5.5", r: "2.5" -}, "1")], 'PoolSharp'); \ No newline at end of file +}, "1")], 'PoolSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PoolTwoTone.js b/packages/material-ui-icons/lib/PoolTwoTone.js index 4531d65f87e28c..77e79c8601cd43 100644 --- a/packages/material-ui-icons/lib/PoolTwoTone.js +++ b/packages/material-ui-icons/lib/PoolTwoTone.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64s-1.73-.37-2.18-.64c-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2H22zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "5.5", r: "2.5", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16.5h-.02.02zM10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm-4.65 7.5c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "5.5", r: "2.5" -}, "3")], 'PoolTwoTone'); \ No newline at end of file +}, "3")], 'PoolTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortableWifiOff.js b/packages/material-ui-icons/lib/PortableWifiOff.js index f8d52f72d08ae6..0cb6228b816b57 100644 --- a/packages/material-ui-icons/lib/PortableWifiOff.js +++ b/packages/material-ui-icons/lib/PortableWifiOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.56 14.24c.28-.69.44-1.45.44-2.24 0-3.31-2.69-6-6-6-.79 0-1.55.16-2.24.44l1.62 1.62c.2-.03.41-.06.62-.06 2.21 0 4 1.79 4 4 0 .21-.02.42-.05.63l1.61 1.61zM12 4c4.42 0 8 3.58 8 8 0 1.35-.35 2.62-.95 3.74l1.47 1.47C21.46 15.69 22 13.91 22 12c0-5.52-4.48-10-10-10-1.91 0-3.69.55-5.21 1.47l1.46 1.46C9.37 4.34 10.65 4 12 4zM3.27 2.5 2 3.77l2.1 2.1C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02.01.01 7.51 7.51L21 20.23 4.27 3.5l-1-1z" -}), 'PortableWifiOff'); \ No newline at end of file +}), 'PortableWifiOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortableWifiOffOutlined.js b/packages/material-ui-icons/lib/PortableWifiOffOutlined.js index 04e84a8fc1bdf6..f4dd9baeefa8f6 100644 --- a/packages/material-ui-icons/lib/PortableWifiOffOutlined.js +++ b/packages/material-ui-icons/lib/PortableWifiOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.42 2.36 2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" -}), 'PortableWifiOffOutlined'); \ No newline at end of file +}), 'PortableWifiOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortableWifiOffRounded.js b/packages/material-ui-icons/lib/PortableWifiOffRounded.js index ccbd717e637f05..23d5c2d71285d4 100644 --- a/packages/material-ui-icons/lib/PortableWifiOffRounded.js +++ b/packages/material-ui-icons/lib/PortableWifiOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.71 3.07c-.39.39-.39 1.02 0 1.41L4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.3 1.6 6.22 4.06 8.04.48.35 1.16.21 1.46-.31.25-.43.14-.99-.26-1.29C5.29 16.98 4 14.65 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 1.8.8 3.41 2.06 4.51.46.4 1.19.25 1.5-.28l.01-.01c.24-.42.13-.94-.23-1.26C8.52 14.23 8 13.18 8 12c0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 6.81 6.81c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.07c-.39-.39-1.03-.39-1.42 0zm15 10.75c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" -}), 'PortableWifiOffRounded'); \ No newline at end of file +}), 'PortableWifiOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortableWifiOffSharp.js b/packages/material-ui-icons/lib/PortableWifiOffSharp.js index 7ba290ad388cf6..bc84e6393c9bc9 100644 --- a/packages/material-ui-icons/lib/PortableWifiOffSharp.js +++ b/packages/material-ui-icons/lib/PortableWifiOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.42 2.36 2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" -}), 'PortableWifiOffSharp'); \ No newline at end of file +}), 'PortableWifiOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortableWifiOffTwoTone.js b/packages/material-ui-icons/lib/PortableWifiOffTwoTone.js index 232421cf88f95b..4d45eec29dc8f8 100644 --- a/packages/material-ui-icons/lib/PortableWifiOffTwoTone.js +++ b/packages/material-ui-icons/lib/PortableWifiOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.42 2.36 2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" -}), 'PortableWifiOffTwoTone'); \ No newline at end of file +}), 'PortableWifiOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Portrait.js b/packages/material-ui-icons/lib/Portrait.js index a2a6a3b65d0121..87ebd2a7aac63a 100644 --- a/packages/material-ui-icons/lib/Portrait.js +++ b/packages/material-ui-icons/lib/Portrait.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'Portrait'); \ No newline at end of file +}), 'Portrait'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortraitOutlined.js b/packages/material-ui-icons/lib/PortraitOutlined.js index 5a326705230b52..3ed7b646f67e14 100644 --- a/packages/material-ui-icons/lib/PortraitOutlined.js +++ b/packages/material-ui-icons/lib/PortraitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'PortraitOutlined'); \ No newline at end of file +}), 'PortraitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortraitRounded.js b/packages/material-ui-icons/lib/PortraitRounded.js index 71c0c87d61a943..f955f4ac1b51b4 100644 --- a/packages/material-ui-icons/lib/PortraitRounded.js +++ b/packages/material-ui-icons/lib/PortraitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'PortraitRounded'); \ No newline at end of file +}), 'PortraitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortraitSharp.js b/packages/material-ui-icons/lib/PortraitSharp.js index 38910a2163956f..408470ad303d84 100644 --- a/packages/material-ui-icons/lib/PortraitSharp.js +++ b/packages/material-ui-icons/lib/PortraitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM21 3H3v18h18V3zm-2 16H5V5h14v14z" -}), 'PortraitSharp'); \ No newline at end of file +}), 'PortraitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PortraitTwoTone.js b/packages/material-ui-icons/lib/PortraitTwoTone.js index 2929b2b7c6bdeb..f9f73f764770cd 100644 --- a/packages/material-ui-icons/lib/PortraitTwoTone.js +++ b/packages/material-ui-icons/lib/PortraitTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.58C6 14.08 9.97 13 12 13s6 1.08 6 3.58V18H6v-1.42z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1")], 'PortraitTwoTone'); \ No newline at end of file +}, "1")], 'PortraitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PostAdd.js b/packages/material-ui-icons/lib/PostAdd.js index f6290f8597546e..0917bd7e4c9c77 100644 --- a/packages/material-ui-icons/lib/PostAdd.js +++ b/packages/material-ui-icons/lib/PostAdd.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 19.22H5V7h7V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h-2v7.22z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" -}, "1")], 'PostAdd'); \ No newline at end of file +}, "1")], 'PostAdd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PostAddOutlined.js b/packages/material-ui-icons/lib/PostAddOutlined.js index a7d6173686b654..cd81ed9dc2def3 100644 --- a/packages/material-ui-icons/lib/PostAddOutlined.js +++ b/packages/material-ui-icons/lib/PostAddOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 19.22H5V7h7V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h-2v7.22z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" -}, "1")], 'PostAddOutlined'); \ No newline at end of file +}, "1")], 'PostAddOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PostAddRounded.js b/packages/material-ui-icons/lib/PostAddRounded.js index 2585a77cf85987..1de39f86b98b6e 100644 --- a/packages/material-ui-icons/lib/PostAddRounded.js +++ b/packages/material-ui-icons/lib/PostAddRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 12c-.55 0-1 .45-1 1v5.22c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1zm3.02-7H19V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V5h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V7h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z" -}, "1")], 'PostAddRounded'); \ No newline at end of file +}, "1")], 'PostAddRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PostAddSharp.js b/packages/material-ui-icons/lib/PostAddSharp.js index 4d9022242dc403..1f8461dac0c80b 100644 --- a/packages/material-ui-icons/lib/PostAddSharp.js +++ b/packages/material-ui-icons/lib/PostAddSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 19.22H5V7h7V5H3v16h16v-9h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" -}, "1")], 'PostAddSharp'); \ No newline at end of file +}, "1")], 'PostAddSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PostAddTwoTone.js b/packages/material-ui-icons/lib/PostAddTwoTone.js index d676fc9d1c3fde..63a7bd6c3777b3 100644 --- a/packages/material-ui-icons/lib/PostAddTwoTone.js +++ b/packages/material-ui-icons/lib/PostAddTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 19.22H5V7h7V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h-2v7.22z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" -}, "1")], 'PostAddTwoTone'); \ No newline at end of file +}, "1")], 'PostAddTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Power.js b/packages/material-ui-icons/lib/Power.js index 590999b21eefbe..61837ace49f776 100644 --- a/packages/material-ui-icons/lib/Power.js +++ b/packages/material-ui-icons/lib/Power.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.01 7 16 3h-2v4h-4V3H8v4h-.01C7 6.99 6 7.99 6 8.99v5.49L9.5 18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z" -}), 'Power'); \ No newline at end of file +}), 'Power'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerInput.js b/packages/material-ui-icons/lib/PowerInput.js index 2a24c3e371a7e7..38b213b7919620 100644 --- a/packages/material-ui-icons/lib/PowerInput.js +++ b/packages/material-ui-icons/lib/PowerInput.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" -}), 'PowerInput'); \ No newline at end of file +}), 'PowerInput'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerInputOutlined.js b/packages/material-ui-icons/lib/PowerInputOutlined.js index 8b4b7b3ec53c72..2aad92cd21c023 100644 --- a/packages/material-ui-icons/lib/PowerInputOutlined.js +++ b/packages/material-ui-icons/lib/PowerInputOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" -}), 'PowerInputOutlined'); \ No newline at end of file +}), 'PowerInputOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerInputRounded.js b/packages/material-ui-icons/lib/PowerInputRounded.js index e6a723f22cd840..6763bdebb4cfe3 100644 --- a/packages/material-ui-icons/lib/PowerInputRounded.js +++ b/packages/material-ui-icons/lib/PowerInputRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 10c0 .55.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm1 5h3c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm7 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm7 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'PowerInputRounded'); \ No newline at end of file +}), 'PowerInputRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerInputSharp.js b/packages/material-ui-icons/lib/PowerInputSharp.js index dbda10aeeccf90..e55f5548211c89 100644 --- a/packages/material-ui-icons/lib/PowerInputSharp.js +++ b/packages/material-ui-icons/lib/PowerInputSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" -}), 'PowerInputSharp'); \ No newline at end of file +}), 'PowerInputSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerInputTwoTone.js b/packages/material-ui-icons/lib/PowerInputTwoTone.js index 3f45cd1980cb01..5e2004ee5ef82a 100644 --- a/packages/material-ui-icons/lib/PowerInputTwoTone.js +++ b/packages/material-ui-icons/lib/PowerInputTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" -}), 'PowerInputTwoTone'); \ No newline at end of file +}), 'PowerInputTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerOff.js b/packages/material-ui-icons/lib/PowerOff.js index a86c7ef029f425..289ab9e8a77d3e 100644 --- a/packages/material-ui-icons/lib/PowerOff.js +++ b/packages/material-ui-icons/lib/PowerOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14.49V9c0-1-1.01-2.01-2-2V3h-2v4h-4V3H8v2.48l9.51 9.5.49-.49zm-1.76 1.77L7.2 7.2l-.01.01L3.98 4 2.71 5.25l3.36 3.36C6.04 8.74 6 8.87 6 9v5.48L9.5 18v3h5v-3l.48-.48L19.45 22l1.26-1.28-4.47-4.46z" -}), 'PowerOff'); \ No newline at end of file +}), 'PowerOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerOffOutlined.js b/packages/material-ui-icons/lib/PowerOffOutlined.js index 17ff772fef97ac..8143b6090b30ca 100644 --- a/packages/material-ui-icons/lib/PowerOffOutlined.js +++ b/packages/material-ui-icons/lib/PowerOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84 2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z" -}), 'PowerOffOutlined'); \ No newline at end of file +}), 'PowerOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerOffRounded.js b/packages/material-ui-icons/lib/PowerOffRounded.js index 19b722bb06bea2..e2dcc2cfa657d1 100644 --- a/packages/material-ui-icons/lib/PowerOffRounded.js +++ b/packages/material-ui-icons/lib/PowerOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13.66V8.99c0-1-1.01-2-2-1.99V4c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.88l7.63 7.63c.15-.3.25-.63.25-.97zM10 4c0-.55-.45-1-1-1s-1 .45-1 1v.88l2 2V4zm10.15 15.86-7.66-7.66-5.1-5.1-2.56-2.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.63 2.63c-.03.13-.05.27-.05.41v4.66c0 .53.21 1.04.58 1.41L9.5 18v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2l.48-.48 3.76 3.76c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42z" -}), 'PowerOffRounded'); \ No newline at end of file +}), 'PowerOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerOffSharp.js b/packages/material-ui-icons/lib/PowerOffSharp.js index 49d9e4107bf9b2..565f538d093dbb 100644 --- a/packages/material-ui-icons/lib/PowerOffSharp.js +++ b/packages/material-ui-icons/lib/PowerOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 14.49V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l7.69 7.69.19-.2zM10 3H8v1.88l2 2zm-5.88.84L2.71 5.25l3.34 3.34c-.03.13-.05.27-.05.4v5.51L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84z" -}), 'PowerOffSharp'); \ No newline at end of file +}), 'PowerOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerOffTwoTone.js b/packages/material-ui-icons/lib/PowerOffTwoTone.js index cae57c9054b23c..d1b405236aca77 100644 --- a/packages/material-ui-icons/lib/PowerOffTwoTone.js +++ b/packages/material-ui-icons/lib/PowerOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.12 9 16 12.88V9zm-.62 8.17V19h1v-1.83l1.07-1.06L8 10.54v3.11z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84 2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z" -}, "1")], 'PowerOffTwoTone'); \ No newline at end of file +}, "1")], 'PowerOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerOutlined.js b/packages/material-ui-icons/lib/PowerOutlined.js index 40f76a67c2832f..a0008cc205e15c 100644 --- a/packages/material-ui-icons/lib/PowerOutlined.js +++ b/packages/material-ui-icons/lib/PowerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z" -}), 'PowerOutlined'); \ No newline at end of file +}), 'PowerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerRounded.js b/packages/material-ui-icons/lib/PowerRounded.js index eb36df5d730329..68dad64ddf2402 100644 --- a/packages/material-ui-icons/lib/PowerRounded.js +++ b/packages/material-ui-icons/lib/PowerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.01 7 16 4c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V4c0-.55-.45-1-1-1s-1 .45-1 1v3h-.01C6.9 7 6 7.9 6 8.99v4.66c0 .53.21 1.04.58 1.41L9.5 18v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2l2.92-2.92c.37-.38.58-.89.58-1.42V8.99C18 7.89 17.11 7 16.01 7z" -}), 'PowerRounded'); \ No newline at end of file +}), 'PowerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerSettingsNew.js b/packages/material-ui-icons/lib/PowerSettingsNew.js index 043af3e6029eb0..59a06e97c0314a 100644 --- a/packages/material-ui-icons/lib/PowerSettingsNew.js +++ b/packages/material-ui-icons/lib/PowerSettingsNew.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" -}), 'PowerSettingsNew'); \ No newline at end of file +}), 'PowerSettingsNew'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerSettingsNewOutlined.js b/packages/material-ui-icons/lib/PowerSettingsNewOutlined.js index 32d54f2043eb01..da4c0c6e05e6e8 100644 --- a/packages/material-ui-icons/lib/PowerSettingsNewOutlined.js +++ b/packages/material-ui-icons/lib/PowerSettingsNewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" -}), 'PowerSettingsNewOutlined'); \ No newline at end of file +}), 'PowerSettingsNewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerSettingsNewRounded.js b/packages/material-ui-icons/lib/PowerSettingsNewRounded.js index 28371de64c83f0..3fcc2ea9586de5 100644 --- a/packages/material-ui-icons/lib/PowerSettingsNewRounded.js +++ b/packages/material-ui-icons/lib/PowerSettingsNewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm5.14 2.86c-.39.39-.38 1-.01 1.39 1.13 1.2 1.83 2.8 1.87 4.57.09 3.83-3.08 7.13-6.91 7.17C8.18 19.05 5 15.9 5 12c0-1.84.71-3.51 1.87-4.76.37-.39.37-1-.01-1.38-.4-.4-1.05-.39-1.43.02C3.98 7.42 3.07 9.47 3 11.74c-.14 4.88 3.83 9.1 8.71 9.25 5.1.16 9.29-3.93 9.29-9 0-2.37-.92-4.51-2.42-6.11-.38-.41-1.04-.42-1.44-.02z" -}), 'PowerSettingsNewRounded'); \ No newline at end of file +}), 'PowerSettingsNewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerSettingsNewSharp.js b/packages/material-ui-icons/lib/PowerSettingsNewSharp.js index e17fe97666035a..4c9000fea21818 100644 --- a/packages/material-ui-icons/lib/PowerSettingsNewSharp.js +++ b/packages/material-ui-icons/lib/PowerSettingsNewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" -}), 'PowerSettingsNewSharp'); \ No newline at end of file +}), 'PowerSettingsNewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerSettingsNewTwoTone.js b/packages/material-ui-icons/lib/PowerSettingsNewTwoTone.js index 44337341ad4f04..0c9397819b7deb 100644 --- a/packages/material-ui-icons/lib/PowerSettingsNewTwoTone.js +++ b/packages/material-ui-icons/lib/PowerSettingsNewTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" -}), 'PowerSettingsNewTwoTone'); \ No newline at end of file +}), 'PowerSettingsNewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerSharp.js b/packages/material-ui-icons/lib/PowerSharp.js index 0498a9b5826f55..dfed711311009d 100644 --- a/packages/material-ui-icons/lib/PowerSharp.js +++ b/packages/material-ui-icons/lib/PowerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7V3h-2v4h-4V3H8v4H6v7.5L9.5 18v3h5v-3l3.5-3.51V7h-2z" -}), 'PowerSharp'); \ No newline at end of file +}), 'PowerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PowerTwoTone.js b/packages/material-ui-icons/lib/PowerTwoTone.js index b5476a9097e37d..630ac660019511 100644 --- a/packages/material-ui-icons/lib/PowerTwoTone.js +++ b/packages/material-ui-icons/lib/PowerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8 13.65 3.5 3.52V19h1v-1.83l3.5-3.51V9H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7V3h-2v4h-4V3H8v4h-.01C6.89 7 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.5V9c0-1.1-.9-2-2-2zm0 6.66-3.5 3.51V19h-1v-1.83L8 13.65V9h8v4.66z" -}, "1")], 'PowerTwoTone'); \ No newline at end of file +}, "1")], 'PowerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrecisionManufacturing.js b/packages/material-ui-icons/lib/PrecisionManufacturing.js index e1c3534708af14..8d447bfad65903 100644 --- a/packages/material-ui-icons/lib/PrecisionManufacturing.js +++ b/packages/material-ui-icons/lib/PrecisionManufacturing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.93 8.21-3.6 1.68L14 7.7V6.3l2.33-2.19 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1L16.65 2.6c-.38-.18-.83-.1-1.13.2l-1.74 1.6c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.34 4.65 6.98 3.73 5.4 4.07c-1.16.25-2.15 1.25-2.36 2.43-.22 1.32.46 2.47 1.48 3.08L7.08 18H4v3h13v-3h-3.62L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.6c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PrecisionManufacturing'); \ No newline at end of file +}), 'PrecisionManufacturing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrecisionManufacturingOutlined.js b/packages/material-ui-icons/lib/PrecisionManufacturingOutlined.js index 33a6c696dde6d4..eb93e782a81da8 100644 --- a/packages/material-ui-icons/lib/PrecisionManufacturingOutlined.js +++ b/packages/material-ui-icons/lib/PrecisionManufacturingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.93 8.35-3.6 1.68L14 7.7V6.3l2.33-2.33 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1l-3.92-1.83c-.38-.18-.83-.1-1.13.2L13.78 4.4c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H6c-1.1 0-2 .9-2 2v1h13v-1c0-1.1-.9-2-2-2h-1.62L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.74c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5.11 10H9.17l-2.46-8h.1l4.3 8z" -}), 'PrecisionManufacturingOutlined'); \ No newline at end of file +}), 'PrecisionManufacturingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrecisionManufacturingRounded.js b/packages/material-ui-icons/lib/PrecisionManufacturingRounded.js index 7ca67e099e859e..278f4e703cc9fa 100644 --- a/packages/material-ui-icons/lib/PrecisionManufacturingRounded.js +++ b/packages/material-ui-icons/lib/PrecisionManufacturingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.93 8.35-3.6 1.68L14 7.7V6.3l2.33-2.33 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1l-3.92-1.83c-.38-.18-.83-.1-1.13.2L13.78 4.4c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.34 4.66 6.96 3.75 5.4 4.06c-1.17.23-2.13 1.19-2.35 2.36-.25 1.34.4 2.54 1.43 3.16L7.08 18H5.5c-.83 0-1.5.67-1.5 1.5S4.67 21 5.5 21h10c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-2.12L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.74c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PrecisionManufacturingRounded'); \ No newline at end of file +}), 'PrecisionManufacturingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrecisionManufacturingSharp.js b/packages/material-ui-icons/lib/PrecisionManufacturingSharp.js index 72b0f9ee3784b9..a3ae3c4bfdca08 100644 --- a/packages/material-ui-icons/lib/PrecisionManufacturingSharp.js +++ b/packages/material-ui-icons/lib/PrecisionManufacturingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10v-.18l2.01 2.01 5.23-2.44-.63-1.36-4.28 2L14 7.7V6.3l2.33-2.33 4.28 2 .63-1.36-5.23-2.44L14 4.18V4h-2v2H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H4v3h13v-3h-3.62L8.41 8.76c.17-.23.31-.48.41-.76H12v2h2zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'PrecisionManufacturingSharp'); \ No newline at end of file +}), 'PrecisionManufacturingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrecisionManufacturingTwoTone.js b/packages/material-ui-icons/lib/PrecisionManufacturingTwoTone.js index 57a7923e1b2508..0134c7f90580d7 100644 --- a/packages/material-ui-icons/lib/PrecisionManufacturingTwoTone.js +++ b/packages/material-ui-icons/lib/PrecisionManufacturingTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.71 10 2.46 8h1.94l-4.3-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "7", r: "1", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.93 8.35-3.6 1.68L14 7.7V6.3l2.33-2.33 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1l-3.92-1.83c-.38-.18-.83-.1-1.13.2L13.78 4.4c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H6c-1.1 0-2 .9-2 2v1h13v-1c0-1.1-.9-2-2-2h-1.62L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.74c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5.11 10H9.17l-2.46-8h.1l4.3 8z" -}, "2")], 'PrecisionManufacturingTwoTone'); \ No newline at end of file +}, "2")], 'PrecisionManufacturingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PregnantWoman.js b/packages/material-ui-icons/lib/PregnantWoman.js index 11c10a2ac1077d..58070a6661e95d 100644 --- a/packages/material-ui-icons/lib/PregnantWoman.js +++ b/packages/material-ui-icons/lib/PregnantWoman.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" -}), 'PregnantWoman'); \ No newline at end of file +}), 'PregnantWoman'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PregnantWomanOutlined.js b/packages/material-ui-icons/lib/PregnantWomanOutlined.js index 2abd8d6d82ab2e..8094a63895e5f6 100644 --- a/packages/material-ui-icons/lib/PregnantWomanOutlined.js +++ b/packages/material-ui-icons/lib/PregnantWomanOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" -}), 'PregnantWomanOutlined'); \ No newline at end of file +}), 'PregnantWomanOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PregnantWomanRounded.js b/packages/material-ui-icons/lib/PregnantWomanRounded.js index c949ef4f6ba4bf..983229a703467a 100644 --- a/packages/material-ui-icons/lib/PregnantWomanRounded.js +++ b/packages/material-ui-icons/lib/PregnantWomanRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.71-1.42-3.08-3.16-3C9.22 7.09 8 8.54 8 10.16V16c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V17h2c.55 0 1-.45 1-1v-3z" -}), 'PregnantWomanRounded'); \ No newline at end of file +}), 'PregnantWomanRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PregnantWomanSharp.js b/packages/material-ui-icons/lib/PregnantWomanSharp.js index 0628e6995503a0..0483ad39a7c6a5 100644 --- a/packages/material-ui-icons/lib/PregnantWomanSharp.js +++ b/packages/material-ui-icons/lib/PregnantWomanSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" -}), 'PregnantWomanSharp'); \ No newline at end of file +}), 'PregnantWomanSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PregnantWomanTwoTone.js b/packages/material-ui-icons/lib/PregnantWomanTwoTone.js index d259604dc662bd..d38e6ec7e3e000 100644 --- a/packages/material-ui-icons/lib/PregnantWomanTwoTone.js +++ b/packages/material-ui-icons/lib/PregnantWomanTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" -}), 'PregnantWomanTwoTone'); \ No newline at end of file +}), 'PregnantWomanTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PresentToAll.js b/packages/material-ui-icons/lib/PresentToAll.js index f6f3d0b3c592aa..577cd803efa7bd 100644 --- a/packages/material-ui-icons/lib/PresentToAll.js +++ b/packages/material-ui-icons/lib/PresentToAll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" -}), 'PresentToAll'); \ No newline at end of file +}), 'PresentToAll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PresentToAllOutlined.js b/packages/material-ui-icons/lib/PresentToAllOutlined.js index 43e113aed1f610..3beee1c654c330 100644 --- a/packages/material-ui-icons/lib/PresentToAllOutlined.js +++ b/packages/material-ui-icons/lib/PresentToAllOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" -}), 'PresentToAllOutlined'); \ No newline at end of file +}), 'PresentToAllOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PresentToAllRounded.js b/packages/material-ui-icons/lib/PresentToAllRounded.js index 76604850b1dfbd..3e439b1fa5106a 100644 --- a/packages/material-ui-icons/lib/PresentToAllRounded.js +++ b/packages/material-ui-icons/lib/PresentToAllRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-1 16.02H4c-.55 0-1-.45-1-1V5.98c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.04c0 .55-.45 1-1 1zM10 12H8l3.65-3.65c.2-.2.51-.2.71 0L16 12h-2v4h-4v-4z" -}), 'PresentToAllRounded'); \ No newline at end of file +}), 'PresentToAllRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PresentToAllSharp.js b/packages/material-ui-icons/lib/PresentToAllSharp.js index bfae74ee25aaa3..1a12eaa3a2a0b5 100644 --- a/packages/material-ui-icons/lib/PresentToAllSharp.js +++ b/packages/material-ui-icons/lib/PresentToAllSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-2 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" -}), 'PresentToAllSharp'); \ No newline at end of file +}), 'PresentToAllSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PresentToAllTwoTone.js b/packages/material-ui-icons/lib/PresentToAllTwoTone.js index 51f0d134bedcec..dc8e95f6472356 100644 --- a/packages/material-ui-icons/lib/PresentToAllTwoTone.js +++ b/packages/material-ui-icons/lib/PresentToAllTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19.02h18V4.98H3v14.04zM12 8l4 4h-2v4h-4v-4H8l4-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16h4v-4h2l-4-4-4 4h2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04z" -}, "1")], 'PresentToAllTwoTone'); \ No newline at end of file +}, "1")], 'PresentToAllTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Preview.js b/packages/material-ui-icons/lib/Preview.js index 77b46554b28eae..3b457eb78c3308 100644 --- a/packages/material-ui-icons/lib/Preview.js +++ b/packages/material-ui-icons/lib/Preview.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'Preview'); \ No newline at end of file +}), 'Preview'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PreviewOutlined.js b/packages/material-ui-icons/lib/PreviewOutlined.js index bd58442f111f86..4b8b1f04b68a66 100644 --- a/packages/material-ui-icons/lib/PreviewOutlined.js +++ b/packages/material-ui-icons/lib/PreviewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-7-8.5c1.84 0 3.48.96 4.34 2.5-.86 1.54-2.5 2.5-4.34 2.5s-3.48-.96-4.34-2.5c.86-1.54 2.5-2.5 4.34-2.5M12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'PreviewOutlined'); \ No newline at end of file +}), 'PreviewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PreviewRounded.js b/packages/material-ui-icons/lib/PreviewRounded.js index bc02151fa4b0b6..ab4cede5904d54 100644 --- a/packages/material-ui-icons/lib/PreviewRounded.js +++ b/packages/material-ui-icons/lib/PreviewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'PreviewRounded'); \ No newline at end of file +}), 'PreviewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PreviewSharp.js b/packages/material-ui-icons/lib/PreviewSharp.js index 1ba98d6ad34a5e..f055d9435bc906 100644 --- a/packages/material-ui-icons/lib/PreviewSharp.js +++ b/packages/material-ui-icons/lib/PreviewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm16 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'PreviewSharp'); \ No newline at end of file +}), 'PreviewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PreviewTwoTone.js b/packages/material-ui-icons/lib/PreviewTwoTone.js index 9563460a359fd7..281a10dd5446f8 100644 --- a/packages/material-ui-icons/lib/PreviewTwoTone.js +++ b/packages/material-ui-icons/lib/PreviewTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V7h14v12zm-7-8.5c1.84 0 3.48.96 4.34 2.5-.86 1.54-2.5 2.5-4.34 2.5s-3.48-.96-4.34-2.5c.86-1.54 2.5-2.5 4.34-2.5M12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-7-8.5c1.84 0 3.48.96 4.34 2.5-.86 1.54-2.5 2.5-4.34 2.5s-3.48-.96-4.34-2.5c.86-1.54 2.5-2.5 4.34-2.5M12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'PreviewTwoTone'); \ No newline at end of file +}, "1")], 'PreviewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceChange.js b/packages/material-ui-icons/lib/PriceChange.js index f3048947af3147..90e907a60b35e2 100644 --- a/packages/material-ui-icons/lib/PriceChange.js +++ b/packages/material-ui-icons/lib/PriceChange.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-8 6H8v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1H8v-1H6v-2h4v-1H7c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2zm4 6.25-2-2h4l-2 2zM14 10l2-2 2 2h-4z" -}), 'PriceChange'); \ No newline at end of file +}), 'PriceChange'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceChangeOutlined.js b/packages/material-ui-icons/lib/PriceChangeOutlined.js index b6fcd984ec471b..c640adc10109d6 100644 --- a/packages/material-ui-icons/lib/PriceChangeOutlined.js +++ b/packages/material-ui-icons/lib/PriceChangeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H8v-1h4V8h-2V7H8v1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H6v2h2v1zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12zm-6-8 2-2 2 2m0 4.25-2 2-2-2" -}), 'PriceChangeOutlined'); \ No newline at end of file +}), 'PriceChangeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceChangeRounded.js b/packages/material-ui-icons/lib/PriceChangeRounded.js index f9aea9c32616cd..64e1a36de1919d 100644 --- a/packages/material-ui-icons/lib/PriceChangeRounded.js +++ b/packages/material-ui-icons/lib/PriceChangeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-9 6H8v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1c0 .55-.45 1-1 1s-1-.45-1-1H7c-.55 0-1-.45-1-1s.45-1 1-1h3v-1H7c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1c0-.55.45-1 1-1s1 .45 1 1h1c.55 0 1 .45 1 1s-.45 1-1 1zm4.65 5.9L14 14.25h4l-1.65 1.65c-.19.19-.51.19-.7 0zM14 10l1.65-1.65c.2-.2.51-.2.71 0L18 10h-4z" -}), 'PriceChangeRounded'); \ No newline at end of file +}), 'PriceChangeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceChangeSharp.js b/packages/material-ui-icons/lib/PriceChangeSharp.js index 575866b3f78da3..5bb5375a6d8c6e 100644 --- a/packages/material-ui-icons/lib/PriceChangeSharp.js +++ b/packages/material-ui-icons/lib/PriceChangeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4v16h20V4H2zm10 6H8v1h4v5h-2v1H8v-1H6v-2h4v-1H6V8h2V7h2v1h2v2zm4 6.25-2-2h4l-2 2zM14 10l2-2 2 2h-4z" -}), 'PriceChangeSharp'); \ No newline at end of file +}), 'PriceChangeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceChangeTwoTone.js b/packages/material-ui-icons/lib/PriceChangeTwoTone.js index 55acd043f43e2c..5e167d11a6bacc 100644 --- a/packages/material-ui-icons/lib/PriceChangeTwoTone.js +++ b/packages/material-ui-icons/lib/PriceChangeTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zM16 8l2 2h-4l2-2zm2 6.25-2 2-2-2h4zM6 14h4v-1H7c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2H8v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1H8v-1H6v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H8v-1h4V8h-2V7H8v1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H6v2h2v1zm8-9-2 2h4zm2 6.25h-4l2 2z" -}, "2")], 'PriceChangeTwoTone'); \ No newline at end of file +}, "2")], 'PriceChangeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceCheck.js b/packages/material-ui-icons/lib/PriceCheck.js index a932cafe13860b..3c7a1e7392cf81 100644 --- a/packages/material-ui-icons/lib/PriceCheck.js +++ b/packages/material-ui-icons/lib/PriceCheck.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13V9c0-.55-.45-1-1-1H7V6h5V4H9.5V3h-2v1H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H5v2h2.5v1h2v-1H11c.55 0 1-.45 1-1zm7.59-.48-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" -}), 'PriceCheck'); \ No newline at end of file +}), 'PriceCheck'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceCheckOutlined.js b/packages/material-ui-icons/lib/PriceCheckOutlined.js index 261dcb94cef6e3..30a162218372f4 100644 --- a/packages/material-ui-icons/lib/PriceCheckOutlined.js +++ b/packages/material-ui-icons/lib/PriceCheckOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13V9c0-.55-.45-1-1-1H6V6h5V4H8.5V3h-2v1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H4v2h2.5v1h2v-1H10c.55 0 1-.45 1-1zm8.59-.48-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" -}), 'PriceCheckOutlined'); \ No newline at end of file +}), 'PriceCheckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceCheckRounded.js b/packages/material-ui-icons/lib/PriceCheckRounded.js index 5a977933e059f7..f86e44e6b5ae46 100644 --- a/packages/material-ui-icons/lib/PriceCheckRounded.js +++ b/packages/material-ui-icons/lib/PriceCheckRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13V9c0-.55-.45-1-1-1H6V6h4c.55 0 1-.45 1-1s-.45-1-1-1H8.5c0-.55-.45-1-1-1s-1 .45-1 1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H5c-.55 0-1 .45-1 1s.45 1 1 1h1.5c0 .55.45 1 1 1s1-.45 1-1H10c.55 0 1-.45 1-1zm7.88.22-4.95 4.95-2.12-2.12a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0l5.66-5.66c.39-.39.39-1.02 0-1.41-.4-.39-1.03-.39-1.42 0z" -}), 'PriceCheckRounded'); \ No newline at end of file +}), 'PriceCheckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceCheckSharp.js b/packages/material-ui-icons/lib/PriceCheckSharp.js index eb136700dba581..c0f4493f255e12 100644 --- a/packages/material-ui-icons/lib/PriceCheckSharp.js +++ b/packages/material-ui-icons/lib/PriceCheckSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8H6V6h5V4H8.5V3h-2v1H4v6h5v2H4v2h2.5v1h2v-1H11zm8.59 4.52-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" -}), 'PriceCheckSharp'); \ No newline at end of file +}), 'PriceCheckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriceCheckTwoTone.js b/packages/material-ui-icons/lib/PriceCheckTwoTone.js index 7cbedb6a1dc565..3ede5753399268 100644 --- a/packages/material-ui-icons/lib/PriceCheckTwoTone.js +++ b/packages/material-ui-icons/lib/PriceCheckTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13V9c0-.55-.45-1-1-1H6V6h5V4H8.5V3h-2v1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H4v2h2.5v1h2v-1H10c.55 0 1-.45 1-1zm8.59-.48-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" -}), 'PriceCheckTwoTone'); \ No newline at end of file +}), 'PriceCheckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Print.js b/packages/material-ui-icons/lib/Print.js index 2cceeaadd947a6..06020323d6fd0f 100644 --- a/packages/material-ui-icons/lib/Print.js +++ b/packages/material-ui-icons/lib/Print.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" -}), 'Print'); \ No newline at end of file +}), 'Print'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintDisabled.js b/packages/material-ui-icons/lib/PrintDisabled.js index a0d6e10579e7e6..ee3fa68bd54e54 100644 --- a/packages/material-ui-icons/lib/PrintDisabled.js +++ b/packages/material-ui-icons/lib/PrintDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.1 17H22v-6c0-1.7-1.3-3-3-3h-9l9.1 9zm-.1-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1-3V3H6v1.1L9 7zM1.2 1.8 0 3l4.9 5C3.3 8.1 2 9.4 2 11v6h4v4h11.9l3 3 1.3-1.3-21-20.9zM8 19v-5h2.9l5 5H8z" -}), 'PrintDisabled'); \ No newline at end of file +}), 'PrintDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintDisabledOutlined.js b/packages/material-ui-icons/lib/PrintDisabledOutlined.js index 70cc023543d1b6..7ec937d14eae3f 100644 --- a/packages/material-ui-icons/lib/PrintDisabledOutlined.js +++ b/packages/material-ui-icons/lib/PrintDisabledOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.6 0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8zM8 5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3h-1V3H6v.36l2 2V5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "11.51", r: "1" -}, "1")], 'PrintDisabledOutlined'); \ No newline at end of file +}, "1")], 'PrintDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintDisabledRounded.js b/packages/material-ui-icons/lib/PrintDisabledRounded.js index dc0c50235fe048..612ab3dc951534 100644 --- a/packages/material-ui-icons/lib/PrintDisabledRounded.js +++ b/packages/material-ui-icons/lib/PrintDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.12 2.32a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4.98 8C3.33 8.01 2 9.35 2 11v4c0 1.1.9 2 2 2h2v2c0 1.1.9 2 2 2h8c.55 0 1.04-.22 1.4-.58l2.83 2.83c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.32zM15 19H9c-.55 0-1-.45-1-1v-4h2.98l4.72 4.72c-.19.17-.43.28-.7.28zm4-11h-8.37l9 9H20c1.1 0 2-.9 2-2v-4c0-1.66-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2-5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H7c-.37 0-.68.21-.85.51L9.63 7H17z" -}), 'PrintDisabledRounded'); \ No newline at end of file +}), 'PrintDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintDisabledSharp.js b/packages/material-ui-icons/lib/PrintDisabledSharp.js index 356a99ae2df418..3ba1625a7747e2 100644 --- a/packages/material-ui-icons/lib/PrintDisabledSharp.js +++ b/packages/material-ui-icons/lib/PrintDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.65 7H18V3.01H6v.35zm1.01 1.01 9 8.99H22v-5.99c0-1.66-1.34-3-3-3h-8.34zM19 10c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM1.41 1.6 0 3.01l5 5c-1.66 0-3 1.33-3 2.99v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM8 19.01V15h4l4 4-8 .01z" -}), 'PrintDisabledSharp'); \ No newline at end of file +}), 'PrintDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintDisabledTwoTone.js b/packages/material-ui-icons/lib/PrintDisabledTwoTone.js index dcb697d7759fc0..3f0b56c3e4157e 100644 --- a/packages/material-ui-icons/lib/PrintDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/PrintDisabledTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 10H5c-.55 0-1 .45-1 1v4h2v-2h4l-3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.6 0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 15.01 2-.01v-4c0-.55-.45-1-1-1h-6.34l3 3H18v2.01zm-1-3.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "11.51", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 5H8v.35L10.66 8H16z", opacity: ".3" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8h-1V3H6v.36l2 2V5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3z" -}, "5")], 'PrintDisabledTwoTone'); \ No newline at end of file +}, "5")], 'PrintDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintOutlined.js b/packages/material-ui-icons/lib/PrintOutlined.js index a6572f1baf8ebf..0ad92cb143e645 100644 --- a/packages/material-ui-icons/lib/PrintOutlined.js +++ b/packages/material-ui-icons/lib/PrintOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12v2H8v-4h8v2zm2-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "11.5", r: "1" -}, "1")], 'PrintOutlined'); \ No newline at end of file +}, "1")], 'PrintOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintRounded.js b/packages/material-ui-icons/lib/PrintRounded.js index a6cc865ed72970..68541b216fad99 100644 --- a/packages/material-ui-icons/lib/PrintRounded.js +++ b/packages/material-ui-icons/lib/PrintRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8H5c-1.66 0-3 1.34-3 3v4c0 1.1.9 2 2 2h2v2c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h2c1.1 0 2-.9 2-2v-4c0-1.66-1.34-3-3-3zm-4 11H9c-.55 0-1-.45-1-1v-4h8v4c0 .55-.45 1-1 1zm4-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2-9H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z" -}), 'PrintRounded'); \ No newline at end of file +}), 'PrintRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintSharp.js b/packages/material-ui-icons/lib/PrintSharp.js index 7b4572ff9d1277..7419b860702fcf 100644 --- a/packages/material-ui-icons/lib/PrintSharp.js +++ b/packages/material-ui-icons/lib/PrintSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 8H2v9h4v4h12v-4h4V8zm-6 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" -}), 'PrintSharp'); \ No newline at end of file +}), 'PrintSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrintTwoTone.js b/packages/material-ui-icons/lib/PrintTwoTone.js index 6c7947378fb23d..a5c74c1dcd6a18 100644 --- a/packages/material-ui-icons/lib/PrintTwoTone.js +++ b/packages/material-ui-icons/lib/PrintTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5h8v3H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "11.5", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13h12v2h2v-4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4h2v-2zm12-2.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", opacity: ".3" -}, "3")], 'PrintTwoTone'); \ No newline at end of file +}, "3")], 'PrintTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriorityHigh.js b/packages/material-ui-icons/lib/PriorityHigh.js index 8dc4d218b171f9..54cbb73fa1b612 100644 --- a/packages/material-ui-icons/lib/PriorityHigh.js +++ b/packages/material-ui-icons/lib/PriorityHigh.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "19", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3h4v12h-4z" -}, "1")], 'PriorityHigh'); \ No newline at end of file +}, "1")], 'PriorityHigh'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriorityHighOutlined.js b/packages/material-ui-icons/lib/PriorityHighOutlined.js index 549e01de9bd0cf..9ca5697de4e9e1 100644 --- a/packages/material-ui-icons/lib/PriorityHighOutlined.js +++ b/packages/material-ui-icons/lib/PriorityHighOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "19", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3h4v12h-4z" -}, "1")], 'PriorityHighOutlined'); \ No newline at end of file +}, "1")], 'PriorityHighOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriorityHighRounded.js b/packages/material-ui-icons/lib/PriorityHighRounded.js index 258aab6896a0a3..602df5ca945fc3 100644 --- a/packages/material-ui-icons/lib/PriorityHighRounded.js +++ b/packages/material-ui-icons/lib/PriorityHighRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "19", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" -}, "1")], 'PriorityHighRounded'); \ No newline at end of file +}, "1")], 'PriorityHighRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriorityHighSharp.js b/packages/material-ui-icons/lib/PriorityHighSharp.js index 0807982f612c96..4cfd355b5ecdb7 100644 --- a/packages/material-ui-icons/lib/PriorityHighSharp.js +++ b/packages/material-ui-icons/lib/PriorityHighSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "19", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3h4v12h-4z" -}, "1")], 'PriorityHighSharp'); \ No newline at end of file +}, "1")], 'PriorityHighSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PriorityHighTwoTone.js b/packages/material-ui-icons/lib/PriorityHighTwoTone.js index b65d8cd20d74fd..b57f8fa4a1a5d7 100644 --- a/packages/material-ui-icons/lib/PriorityHighTwoTone.js +++ b/packages/material-ui-icons/lib/PriorityHighTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "19", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3h4v12h-4z" -}, "1")], 'PriorityHighTwoTone'); \ No newline at end of file +}, "1")], 'PriorityHighTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrivacyTip.js b/packages/material-ui-icons/lib/PrivacyTip.js index 78f77e62d027e0..a5d7421c67cb17 100644 --- a/packages/material-ui-icons/lib/PrivacyTip.js +++ b/packages/material-ui-icons/lib/PrivacyTip.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" -}), 'PrivacyTip'); \ No newline at end of file +}), 'PrivacyTip'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrivacyTipOutlined.js b/packages/material-ui-icons/lib/PrivacyTipOutlined.js index f6eedf89a165f2..451bf2d0dd4b89 100644 --- a/packages/material-ui-icons/lib/PrivacyTipOutlined.js +++ b/packages/material-ui-icons/lib/PrivacyTipOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 3.19 7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" -}), 'PrivacyTipOutlined'); \ No newline at end of file +}), 'PrivacyTipOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrivacyTipRounded.js b/packages/material-ui-icons/lib/PrivacyTipRounded.js index d16c9997c58327..78a2044bd26fe3 100644 --- a/packages/material-ui-icons/lib/PrivacyTipRounded.js +++ b/packages/material-ui-icons/lib/PrivacyTipRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.19 4.47C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.52-.23-1.11-.23-1.62 0l-7 3.11zM12 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1z" -}), 'PrivacyTipRounded'); \ No newline at end of file +}), 'PrivacyTipRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrivacyTipSharp.js b/packages/material-ui-icons/lib/PrivacyTipSharp.js index fa91da77b09420..13c56873adc17d 100644 --- a/packages/material-ui-icons/lib/PrivacyTipSharp.js +++ b/packages/material-ui-icons/lib/PrivacyTipSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" -}), 'PrivacyTipSharp'); \ No newline at end of file +}), 'PrivacyTipSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PrivacyTipTwoTone.js b/packages/material-ui-icons/lib/PrivacyTipTwoTone.js index 55ebe1795667fb..b13082ddf9873e 100644 --- a/packages/material-ui-icons/lib/PrivacyTipTwoTone.js +++ b/packages/material-ui-icons/lib/PrivacyTipTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3.19 5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11zM13 17h-2v-6h2v6zm0-8h-2V7h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 3.19 7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" -}, "1")], 'PrivacyTipTwoTone'); \ No newline at end of file +}, "1")], 'PrivacyTipTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ProductionQuantityLimits.js b/packages/material-ui-icons/lib/ProductionQuantityLimits.js index 86d1196a9a978a..8c07a87c23008d 100644 --- a/packages/material-ui-icons/lib/ProductionQuantityLimits.js +++ b/packages/material-ui-icons/lib/ProductionQuantityLimits.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" -}), 'ProductionQuantityLimits'); \ No newline at end of file +}), 'ProductionQuantityLimits'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ProductionQuantityLimitsOutlined.js b/packages/material-ui-icons/lib/ProductionQuantityLimitsOutlined.js index 89c3df7edebe01..b95f36b0ed972a 100644 --- a/packages/material-ui-icons/lib/ProductionQuantityLimitsOutlined.js +++ b/packages/material-ui-icons/lib/ProductionQuantityLimitsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" -}), 'ProductionQuantityLimitsOutlined'); \ No newline at end of file +}), 'ProductionQuantityLimitsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ProductionQuantityLimitsRounded.js b/packages/material-ui-icons/lib/ProductionQuantityLimitsRounded.js index 2684a7898c81cc..26af2765f6df66 100644 --- a/packages/material-ui-icons/lib/ProductionQuantityLimitsRounded.js +++ b/packages/material-ui-icons/lib/ProductionQuantityLimitsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.24-6.14c.25-.48.08-1.08-.4-1.34-.49-.27-1.1-.08-1.36.41L15.55 11H8.53L4.27 2H2c-.55 0-1 .45-1 1s.45 1 1 1h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2z" -}), 'ProductionQuantityLimitsRounded'); \ No newline at end of file +}), 'ProductionQuantityLimitsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ProductionQuantityLimitsSharp.js b/packages/material-ui-icons/lib/ProductionQuantityLimitsSharp.js index 650f4910a77e56..8023f65051a0d1 100644 --- a/packages/material-ui-icons/lib/ProductionQuantityLimitsSharp.js +++ b/packages/material-ui-icons/lib/ProductionQuantityLimitsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" -}), 'ProductionQuantityLimitsSharp'); \ No newline at end of file +}), 'ProductionQuantityLimitsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ProductionQuantityLimitsTwoTone.js b/packages/material-ui-icons/lib/ProductionQuantityLimitsTwoTone.js index 976db1a9d97c69..b18c324d1cdbd7 100644 --- a/packages/material-ui-icons/lib/ProductionQuantityLimitsTwoTone.js +++ b/packages/material-ui-icons/lib/ProductionQuantityLimitsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" -}), 'ProductionQuantityLimitsTwoTone'); \ No newline at end of file +}), 'ProductionQuantityLimitsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Psychology.js b/packages/material-ui-icons/lib/Psychology.js index 6e3da614b0b28e..7bf93942088327 100644 --- a/packages/material-ui-icons/lib/Psychology.js +++ b/packages/material-ui-icons/lib/Psychology.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8.57c-.79 0-1.43.64-1.43 1.43s.64 1.43 1.43 1.43 1.43-.64 1.43-1.43-.64-1.43-1.43-1.43z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3C9.25 3 6.2 5.94 6.02 9.64L4.1 12.2c-.25.33-.01.8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.68c2.36-1.12 4-3.53 4-6.32 0-3.87-3.13-7-7-7zm3 7c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.05.26l-.85.66c.03.12.04.25.04.39z" -}, "1")], 'Psychology'); \ No newline at end of file +}, "1")], 'Psychology'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PsychologyOutlined.js b/packages/material-ui-icons/lib/PsychologyOutlined.js index 487e56eb4562f5..2dc9e6ba7f34cb 100644 --- a/packages/material-ui-icons/lib/PsychologyOutlined.js +++ b/packages/material-ui-icons/lib/PsychologyOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.82 7.22-1 .4c-.21-.16-.43-.29-.67-.39L14 6.17c-.02-.1-.1-.17-.2-.17h-1.6c-.1 0-.18.07-.19.17l-.15 1.06c-.24.1-.47.23-.67.39l-1-.4c-.09-.03-.2 0-.24.09l-.8 1.38c-.05.09-.03.2.05.26l.85.66c-.03.12-.05.26-.05.39s.01.26.03.39l-.84.66c-.08.06-.1.17-.05.25l.8 1.39c.05.09.15.12.25.09l.99-.4c.21.16.43.29.68.39l.14 1.06c.02.1.1.17.2.17h1.6c.1 0 .18-.07.2-.17l.15-1.06c.24-.1.47-.23.67-.39l.99.4c.09.04.2 0 .24-.09l.8-1.39c.05-.09.03-.19-.05-.25l-.83-.66c.02-.13.03-.26.03-.39 0-.14-.01-.27-.03-.39l.85-.66c.08-.06.1-.17.05-.26l-.8-1.38c-.05-.09-.16-.12-.25-.09zM13 11.43c-.79 0-1.43-.64-1.43-1.43s.64-1.43 1.43-1.43 1.43.64 1.43 1.43-.64 1.43-1.43 1.43z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.94 9.06c-.43-3.27-3.23-5.86-6.53-6.05C13.27 3 13.14 3 13 3 9.47 3 6.57 5.61 6.08 9l-1.93 3.48c-.41.66.07 1.52.85 1.52h1v2c0 1.1.9 2 2 2h1v3h7v-4.68c2.62-1.25 4.35-4.08 3.94-7.26zm-5.05 5.57-.89.42V19h-3v-3H8v-4H6.7l1.33-2.33C8.21 7.06 10.35 5 13 5c2.76 0 5 2.24 5 5 0 2.09-1.29 3.88-3.11 4.63z" -}, "1")], 'PsychologyOutlined'); \ No newline at end of file +}, "1")], 'PsychologyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PsychologyRounded.js b/packages/material-ui-icons/lib/PsychologyRounded.js index 0567e96d252bf5..8e0e8ff6054609 100644 --- a/packages/material-ui-icons/lib/PsychologyRounded.js +++ b/packages/material-ui-icons/lib/PsychologyRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8.57c-.79 0-1.43.64-1.43 1.43s.64 1.43 1.43 1.43 1.43-.64 1.43-1.43-.64-1.43-1.43-1.43z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.21 3c-3.84-.11-7 2.87-7.19 6.64L4.1 12.2c-.25.33-.01.8.4.8H6v3c0 1.1.9 2 2 2h1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3.68c2.44-1.16 4.1-3.68 4-6.58-.14-3.62-3.18-6.63-6.79-6.74zM16 10c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.05.26l-.85.66c.03.12.04.25.04.39z" -}, "1")], 'PsychologyRounded'); \ No newline at end of file +}, "1")], 'PsychologyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PsychologySharp.js b/packages/material-ui-icons/lib/PsychologySharp.js index 93d364d20dbc9f..f1b6a53a495752 100644 --- a/packages/material-ui-icons/lib/PsychologySharp.js +++ b/packages/material-ui-icons/lib/PsychologySharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8.57c-.79 0-1.43.64-1.43 1.43s.64 1.43 1.43 1.43 1.43-.64 1.43-1.43-.64-1.43-1.43-1.43z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3C9.25 3 6.2 5.94 6.02 9.64L4.1 12.2c-.25.33-.01.8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.68c2.36-1.12 4-3.53 4-6.32 0-3.87-3.13-7-7-7zm3 7c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.05.26l-.85.66c.03.12.04.25.04.39z" -}, "1")], 'PsychologySharp'); \ No newline at end of file +}, "1")], 'PsychologySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PsychologyTwoTone.js b/packages/material-ui-icons/lib/PsychologyTwoTone.js index 752a8673ffd199..1d607ed351b499 100644 --- a/packages/material-ui-icons/lib/PsychologyTwoTone.js +++ b/packages/material-ui-icons/lib/PsychologyTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5c-2.65 0-4.79 2.06-4.97 4.67L6.7 12H8v4h3v3h3v-3.95l.89-.43C16.71 13.88 18 12.09 18 10c0-2.76-2.24-5-5-5zm3.82 3.95-.85.66c.02.12.03.25.03.39 0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.04.26z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.82 7.22-1 .4c-.21-.16-.43-.29-.67-.39L14 6.17c-.02-.1-.1-.17-.2-.17h-1.6c-.1 0-.18.07-.19.17l-.15 1.06c-.24.1-.47.23-.67.39l-1-.4c-.09-.03-.2 0-.24.09l-.8 1.38c-.05.09-.03.2.05.26l.85.66c-.03.12-.05.26-.05.39s.01.26.03.39l-.84.66c-.08.06-.1.17-.05.25l.8 1.39c.05.09.15.12.25.09l.99-.4c.21.16.43.29.68.39l.14 1.06c.02.1.1.17.2.17h1.6c.1 0 .18-.07.2-.17l.15-1.06c.24-.1.47-.23.67-.39l.99.4c.09.04.2 0 .24-.09l.8-1.39c.05-.09.03-.19-.05-.25l-.83-.66c.02-.13.03-.26.03-.39 0-.14-.01-.27-.03-.39l.85-.66c.08-.06.1-.17.05-.26l-.8-1.38c-.05-.09-.16-.12-.25-.09zM13 11.43c-.79 0-1.43-.64-1.43-1.43s.64-1.43 1.43-1.43 1.43.64 1.43 1.43-.64 1.43-1.43 1.43z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.94 9.06c-.43-3.27-3.23-5.86-6.53-6.05C13.27 3 13.14 3 13 3 9.47 3 6.57 5.61 6.08 9l-1.93 3.48c-.41.66.07 1.52.85 1.52h1v2c0 1.1.9 2 2 2h1v3h7v-4.68c2.62-1.25 4.35-4.08 3.94-7.26zm-5.05 5.57-.89.42V19h-3v-3H8v-4H6.7l1.33-2.33C8.21 7.06 10.35 5 13 5c2.76 0 5 2.24 5 5 0 2.09-1.29 3.88-3.11 4.63z" -}, "2")], 'PsychologyTwoTone'); \ No newline at end of file +}, "2")], 'PsychologyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Public.js b/packages/material-ui-icons/lib/Public.js index a4e86eb8ba8426..a28f4fe9718b2d 100644 --- a/packages/material-ui-icons/lib/Public.js +++ b/packages/material-ui-icons/lib/Public.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" -}), 'Public'); \ No newline at end of file +}), 'Public'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicOff.js b/packages/material-ui-icons/lib/PublicOff.js index 1f344912e4e431..d554ec814456e2 100644 --- a/packages/material-ui-icons/lib/PublicOff.js +++ b/packages/material-ui-icons/lib/PublicOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" -}), 'PublicOff'); \ No newline at end of file +}), 'PublicOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicOffOutlined.js b/packages/material-ui-icons/lib/PublicOffOutlined.js index 431decf67b32a1..388c97083501ff 100644 --- a/packages/material-ui-icons/lib/PublicOffOutlined.js +++ b/packages/material-ui-icons/lib/PublicOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" -}), 'PublicOffOutlined'); \ No newline at end of file +}), 'PublicOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicOffRounded.js b/packages/material-ui-icons/lib/PublicOffRounded.js index 9f15c2dbb731cb..9943a2a1e9bfed 100644 --- a/packages/material-ui-icons/lib/PublicOffRounded.js +++ b/packages/material-ui-icons/lib/PublicOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm9.49 13.73c-.39.39-1.02.39-1.41 0l-1.56-1.56c-2.07 1.37-4.68 2-7.45 1.48-3.95-.75-7.13-3.92-7.88-7.88-.52-2.77.1-5.38 1.48-7.45L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" -}), 'PublicOffRounded'); \ No newline at end of file +}), 'PublicOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicOffSharp.js b/packages/material-ui-icons/lib/PublicOffSharp.js index 066bfedd45b138..fc8f7acb7d9b60 100644 --- a/packages/material-ui-icons/lib/PublicOffSharp.js +++ b/packages/material-ui-icons/lib/PublicOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" -}), 'PublicOffSharp'); \ No newline at end of file +}), 'PublicOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicOffTwoTone.js b/packages/material-ui-icons/lib/PublicOffTwoTone.js index 453642fceb1c86..e758bd2749712f 100644 --- a/packages/material-ui-icons/lib/PublicOffTwoTone.js +++ b/packages/material-ui-icons/lib/PublicOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 8.17 7.88 7.88C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" -}, "1")], 'PublicOffTwoTone'); \ No newline at end of file +}, "1")], 'PublicOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicOutlined.js b/packages/material-ui-icons/lib/PublicOutlined.js index e02882379ffada..83d22dc7af80e6 100644 --- a/packages/material-ui-icons/lib/PublicOutlined.js +++ b/packages/material-ui-icons/lib/PublicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93C7.06 19.43 4 16.07 4 12zm13.89 5.4c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z" -}), 'PublicOutlined'); \ No newline at end of file +}), 'PublicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicRounded.js b/packages/material-ui-icons/lib/PublicRounded.js index ce2763c27f5445..16d5a491a3bcc0 100644 --- a/packages/material-ui-icons/lib/PublicRounded.js +++ b/packages/material-ui-icons/lib/PublicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" -}), 'PublicRounded'); \ No newline at end of file +}), 'PublicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicSharp.js b/packages/material-ui-icons/lib/PublicSharp.js index ce932423cae008..fa7c5f49115df7 100644 --- a/packages/material-ui-icons/lib/PublicSharp.js +++ b/packages/material-ui-icons/lib/PublicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" -}), 'PublicSharp'); \ No newline at end of file +}), 'PublicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublicTwoTone.js b/packages/material-ui-icons/lib/PublicTwoTone.js index da7683652ca7d5..51afb2f9349c03 100644 --- a/packages/material-ui-icons/lib/PublicTwoTone.js +++ b/packages/material-ui-icons/lib/PublicTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.99 4.59V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1h-2v2h6c.55 0 1 .45 1 1v3h1c.89 0 1.64.59 1.9 1.4C19.19 15.98 20 14.08 20 12c0-3.35-2.08-6.23-5.01-7.41zM8.99 16v-1l-4.78-4.78C4.08 10.79 4 11.39 4 12c0 4.07 3.06 7.43 6.99 7.93V18c-1.1 0-2-.9-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1.01 17.93C7.06 19.43 4 16.07 4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.53c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z" -}, "1")], 'PublicTwoTone'); \ No newline at end of file +}, "1")], 'PublicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Publish.js b/packages/material-ui-icons/lib/Publish.js index 27928292a18900..bf6b2373a9bbe2 100644 --- a/packages/material-ui-icons/lib/Publish.js +++ b/packages/material-ui-icons/lib/Publish.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z" -}), 'Publish'); \ No newline at end of file +}), 'Publish'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishOutlined.js b/packages/material-ui-icons/lib/PublishOutlined.js index 1851ceebc6ae90..6b63ab27d4e47b 100644 --- a/packages/material-ui-icons/lib/PublishOutlined.js +++ b/packages/material-ui-icons/lib/PublishOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4h14v2H5zm0 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2v-6H9.83L12 9.83 14.17 12H13z" -}), 'PublishOutlined'); \ No newline at end of file +}), 'PublishOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishRounded.js b/packages/material-ui-icons/lib/PublishRounded.js index dd6b62c6f80e40..69adf7397a1937 100644 --- a/packages/material-ui-icons/lib/PublishRounded.js +++ b/packages/material-ui-icons/lib/PublishRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1zm2.41 9H9v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.71 7.7a.9959.9959 0 0 0-1.41 0l-4.59 4.59c-.63.63-.19 1.71.7 1.71z" -}), 'PublishRounded'); \ No newline at end of file +}), 'PublishRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishSharp.js b/packages/material-ui-icons/lib/PublishSharp.js index 43b4369bd8ea61..a2ae2b6ee98a13 100644 --- a/packages/material-ui-icons/lib/PublishSharp.js +++ b/packages/material-ui-icons/lib/PublishSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z" -}), 'PublishSharp'); \ No newline at end of file +}), 'PublishSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishTwoTone.js b/packages/material-ui-icons/lib/PublishTwoTone.js index f0054ec6bd7016..1fd8d6868bf087 100644 --- a/packages/material-ui-icons/lib/PublishTwoTone.js +++ b/packages/material-ui-icons/lib/PublishTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.83 12H11v6h2v-6h1.17L12 9.83z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4h14v2H5zm7 3-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2v-6H9.83L12 9.83 14.17 12H13z" -}, "1")], 'PublishTwoTone'); \ No newline at end of file +}, "1")], 'PublishTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishedWithChanges.js b/packages/material-ui-icons/lib/PublishedWithChanges.js index 6d36d00143bb08..6c1bb70562f425 100644 --- a/packages/material-ui-icons/lib/PublishedWithChanges.js +++ b/packages/material-ui-icons/lib/PublishedWithChanges.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 9.53-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z" -}), 'PublishedWithChanges'); \ No newline at end of file +}), 'PublishedWithChanges'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishedWithChangesOutlined.js b/packages/material-ui-icons/lib/PublishedWithChangesOutlined.js index 0589917f37426c..b24a1d32e80754 100644 --- a/packages/material-ui-icons/lib/PublishedWithChangesOutlined.js +++ b/packages/material-ui-icons/lib/PublishedWithChangesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.6 19.5H21v2h-6v-6h2v2.73c1.83-1.47 3-3.71 3-6.23 0-4.07-3.06-7.44-7-7.93V2.05c5.05.5 9 4.76 9 9.95 0 2.99-1.32 5.67-3.4 7.5zM4 12c0-2.52 1.17-4.77 3-6.23V8.5h2v-6H3v2h2.4C3.32 6.33 2 9.01 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm12.24-3.89-5.66 5.66-2.83-2.83-1.41 1.41 4.24 4.24 7.07-7.07-1.41-1.41z" -}), 'PublishedWithChangesOutlined'); \ No newline at end of file +}), 'PublishedWithChangesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishedWithChangesRounded.js b/packages/material-ui-icons/lib/PublishedWithChangesRounded.js index b370b6440f4efd..74f3784354ef1d 100644 --- a/packages/material-ui-icons/lib/PublishedWithChangesRounded.js +++ b/packages/material-ui-icons/lib/PublishedWithChangesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.95 10.23-5.66 5.66c-.39.39-1.02.39-1.41 0l-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12 4.95-4.95c.39-.39 1.02-.39 1.41 0 .4.39.4 1.02.01 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88l1.53 1.53c.31.31.85.09.85-.36V3c0-.28-.22-.5-.5-.5H4.21c-.45 0-.67.54-.35.85L5.2 4.7C3.24 6.52 2 9.11 2 12c0 4.75 3.32 8.73 7.76 9.75.63.14 1.24-.33 1.24-.98 0-.47-.33-.87-.79-.98C6.66 18.98 4 15.8 4 12zm18 0c0-4.75-3.32-8.73-7.76-9.75-.63-.14-1.24.33-1.24.98 0 .47.33.87.79.98C17.34 5.02 20 8.2 20 12c0 2.33-1.02 4.42-2.62 5.88l-1.53-1.53c-.31-.31-.85-.09-.85.36V21c0 .28.22.5.5.5h4.29c.45 0 .67-.54.35-.85L18.8 19.3c1.96-1.82 3.2-4.41 3.2-7.3z" -}), 'PublishedWithChangesRounded'); \ No newline at end of file +}), 'PublishedWithChangesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishedWithChangesSharp.js b/packages/material-ui-icons/lib/PublishedWithChangesSharp.js index 83cd5085c27d4a..36db2d52c2b98c 100644 --- a/packages/material-ui-icons/lib/PublishedWithChangesSharp.js +++ b/packages/material-ui-icons/lib/PublishedWithChangesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 9.53-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z" -}), 'PublishedWithChangesSharp'); \ No newline at end of file +}), 'PublishedWithChangesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PublishedWithChangesTwoTone.js b/packages/material-ui-icons/lib/PublishedWithChangesTwoTone.js index f56ed26717fa65..60bcad60f7d5ea 100644 --- a/packages/material-ui-icons/lib/PublishedWithChangesTwoTone.js +++ b/packages/material-ui-icons/lib/PublishedWithChangesTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 9.53-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z" -}), 'PublishedWithChangesTwoTone'); \ No newline at end of file +}), 'PublishedWithChangesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PushPin.js b/packages/material-ui-icons/lib/PushPin.js index 1d76cb93867e96..7a1f11364038a5 100644 --- a/packages/material-ui-icons/lib/PushPin.js +++ b/packages/material-ui-icons/lib/PushPin.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M16 9V4h1c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3z" -}), 'PushPin'); \ No newline at end of file +}), 'PushPin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PushPinOutlined.js b/packages/material-ui-icons/lib/PushPinOutlined.js index bf18cc13a86472..74b25ed06acc98 100644 --- a/packages/material-ui-icons/lib/PushPinOutlined.js +++ b/packages/material-ui-icons/lib/PushPinOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4v5c0 1.12.37 2.16 1 3H9c.65-.86 1-1.9 1-3V4h4m3-2H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3V4h1c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'PushPinOutlined'); \ No newline at end of file +}), 'PushPinOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PushPinRounded.js b/packages/material-ui-icons/lib/PushPinRounded.js index d2b5e78143e548..0c491cefdfc2b5 100644 --- a/packages/material-ui-icons/lib/PushPinRounded.js +++ b/packages/material-ui-icons/lib/PushPinRounded.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M19 12.87c0-.47-.34-.85-.8-.98C16.93 11.54 16 10.38 16 9V4h1c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.38-.93 2.54-2.2 2.89-.46.13-.8.51-.8.98V13c0 .55.45 1 1 1h4.98l.02 7c0 .55.45 1 1 1s1-.45 1-1l-.02-7H18c.55 0 1-.45 1-1v-.13z" -}), 'PushPinRounded'); \ No newline at end of file +}), 'PushPinRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PushPinSharp.js b/packages/material-ui-icons/lib/PushPinSharp.js index 118f219c51cc52..8356a6bf2a7643 100644 --- a/packages/material-ui-icons/lib/PushPinSharp.js +++ b/packages/material-ui-icons/lib/PushPinSharp.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M16 9V4h2V2H6v2h2v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3z" -}), 'PushPinSharp'); \ No newline at end of file +}), 'PushPinSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/PushPinTwoTone.js b/packages/material-ui-icons/lib/PushPinTwoTone.js index 769973deef6c4f..eecb788698da6e 100644 --- a/packages/material-ui-icons/lib/PushPinTwoTone.js +++ b/packages/material-ui-icons/lib/PushPinTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4h-4v5c0 1.1-.35 2.14-1 3h6c-.63-.84-1-1.88-1-3V4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12c-1.66 0-3-1.34-3-3V4h1c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2zM9 12c.65-.86 1-1.9 1-3V4h4v5c0 1.12.37 2.16 1 3H9z" -}, "1")], 'PushPinTwoTone'); \ No newline at end of file +}, "1")], 'PushPinTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCode.js b/packages/material-ui-icons/lib/QrCode.js index 59a2a9446adcfb..b5013d7c2d6860 100644 --- a/packages/material-ui-icons/lib/QrCode.js +++ b/packages/material-ui-icons/lib/QrCode.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" -}), 'QrCode'); \ No newline at end of file +}), 'QrCode'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCode2.js b/packages/material-ui-icons/lib/QrCode2.js index 9bae950b1e133a..15390c93a6ee90 100644 --- a/packages/material-ui-icons/lib/QrCode2.js +++ b/packages/material-ui-icons/lib/QrCode2.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" -}), 'QrCode2'); \ No newline at end of file +}), 'QrCode2'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCode2Outlined.js b/packages/material-ui-icons/lib/QrCode2Outlined.js index 05dd146d6c21cd..82af27662bd3f5 100644 --- a/packages/material-ui-icons/lib/QrCode2Outlined.js +++ b/packages/material-ui-icons/lib/QrCode2Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" -}), 'QrCode2Outlined'); \ No newline at end of file +}), 'QrCode2Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCode2Rounded.js b/packages/material-ui-icons/lib/QrCode2Rounded.js index 3106ad4e4db779..23ba9d51bb1da2 100644 --- a/packages/material-ui-icons/lib/QrCode2Rounded.js +++ b/packages/material-ui-icons/lib/QrCode2Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM8 9H4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1zm-3.5 7.5v3h3v-3h-3zM8 21H4c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1zm8.5-16.5v3h3v-3h-3zM20 9h-4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1zm-1 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" -}), 'QrCode2Rounded'); \ No newline at end of file +}), 'QrCode2Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCode2Sharp.js b/packages/material-ui-icons/lib/QrCode2Sharp.js index 2e6055f30e165b..7556482962bdd2 100644 --- a/packages/material-ui-icons/lib/QrCode2Sharp.js +++ b/packages/material-ui-icons/lib/QrCode2Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" -}), 'QrCode2Sharp'); \ No newline at end of file +}), 'QrCode2Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCode2TwoTone.js b/packages/material-ui-icons/lib/QrCode2TwoTone.js index f7425c5000008e..e9560126804a39 100644 --- a/packages/material-ui-icons/lib/QrCode2TwoTone.js +++ b/packages/material-ui-icons/lib/QrCode2TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" -}), 'QrCode2TwoTone'); \ No newline at end of file +}), 'QrCode2TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeOutlined.js b/packages/material-ui-icons/lib/QrCodeOutlined.js index 48372c83d420da..8f1e725a3deed0 100644 --- a/packages/material-ui-icons/lib/QrCodeOutlined.js +++ b/packages/material-ui-icons/lib/QrCodeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" -}), 'QrCodeOutlined'); \ No newline at end of file +}), 'QrCodeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeRounded.js b/packages/material-ui-icons/lib/QrCodeRounded.js index 68ff912cb46bcb..ef18fd5a175c5f 100644 --- a/packages/material-ui-icons/lib/QrCodeRounded.js +++ b/packages/material-ui-icons/lib/QrCodeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 11h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm0-6h4v4H5V5zm0 16h4c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm0-6h4v4H5v-4zm8-10v4c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2zm6 4h-4V5h4v4zm2 11.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5zm-8-7v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5zm3.5 1.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5zM13 17.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5zm2.5 3.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm2-2h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm1-6h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5zm1 4h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5z" -}), 'QrCodeRounded'); \ No newline at end of file +}), 'QrCodeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeScanner.js b/packages/material-ui-icons/lib/QrCodeScanner.js index 666fc10dab853a..aaacba513e002d 100644 --- a/packages/material-ui-icons/lib/QrCodeScanner.js +++ b/packages/material-ui-icons/lib/QrCodeScanner.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" -}), 'QrCodeScanner'); \ No newline at end of file +}), 'QrCodeScanner'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeScannerOutlined.js b/packages/material-ui-icons/lib/QrCodeScannerOutlined.js index b9e33d57a414a0..b32b26e6f25308 100644 --- a/packages/material-ui-icons/lib/QrCodeScannerOutlined.js +++ b/packages/material-ui-icons/lib/QrCodeScannerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" -}), 'QrCodeScannerOutlined'); \ No newline at end of file +}), 'QrCodeScannerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeScannerRounded.js b/packages/material-ui-icons/lib/QrCodeScannerRounded.js index 264189e9d0276d..7ce4f50eb959fe 100644 --- a/packages/material-ui-icons/lib/QrCodeScannerRounded.js +++ b/packages/material-ui-icons/lib/QrCodeScannerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM21 7c-.55 0-1-.45-1-1V4h-2c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zm1 14v-3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1zM3 22h3c.55 0 1-.45 1-1s-.45-1-1-1H4v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zM2 3v3c0 .55.45 1 1 1s1-.45 1-1V4h2c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z" -}), 'QrCodeScannerRounded'); \ No newline at end of file +}), 'QrCodeScannerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeScannerSharp.js b/packages/material-ui-icons/lib/QrCodeScannerSharp.js index 6f14b880a426eb..ba96a3892225d5 100644 --- a/packages/material-ui-icons/lib/QrCodeScannerSharp.js +++ b/packages/material-ui-icons/lib/QrCodeScannerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" -}), 'QrCodeScannerSharp'); \ No newline at end of file +}), 'QrCodeScannerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeScannerTwoTone.js b/packages/material-ui-icons/lib/QrCodeScannerTwoTone.js index 8757b35bfba633..c052643e7113e0 100644 --- a/packages/material-ui-icons/lib/QrCodeScannerTwoTone.js +++ b/packages/material-ui-icons/lib/QrCodeScannerTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" -}), 'QrCodeScannerTwoTone'); \ No newline at end of file +}), 'QrCodeScannerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeSharp.js b/packages/material-ui-icons/lib/QrCodeSharp.js index 01ece2d2a87503..f4d2e8d30980d0 100644 --- a/packages/material-ui-icons/lib/QrCodeSharp.js +++ b/packages/material-ui-icons/lib/QrCodeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" -}), 'QrCodeSharp'); \ No newline at end of file +}), 'QrCodeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QrCodeTwoTone.js b/packages/material-ui-icons/lib/QrCodeTwoTone.js index 5edd9c51043840..4dc34d89f0aba5 100644 --- a/packages/material-ui-icons/lib/QrCodeTwoTone.js +++ b/packages/material-ui-icons/lib/QrCodeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h4v4H5zM5 5h4v4H5zm10 0h4v4h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" -}, "1")], 'QrCodeTwoTone'); \ No newline at end of file +}, "1")], 'QrCodeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryBuilder.js b/packages/material-ui-icons/lib/QueryBuilder.js index cabec6ed55fc4c..5e225368f754bd 100644 --- a/packages/material-ui-icons/lib/QueryBuilder.js +++ b/packages/material-ui-icons/lib/QueryBuilder.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}, "1")], 'QueryBuilder'); \ No newline at end of file +}, "1")], 'QueryBuilder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryBuilderOutlined.js b/packages/material-ui-icons/lib/QueryBuilderOutlined.js index c13989f922c724..17d8689dee25fb 100644 --- a/packages/material-ui-icons/lib/QueryBuilderOutlined.js +++ b/packages/material-ui-icons/lib/QueryBuilderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}), 'QueryBuilderOutlined'); \ No newline at end of file +}), 'QueryBuilderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryBuilderRounded.js b/packages/material-ui-icons/lib/QueryBuilderRounded.js index b3d2ea9d25967e..5246e27af5137d 100644 --- a/packages/material-ui-icons/lib/QueryBuilderRounded.js +++ b/packages/material-ui-icons/lib/QueryBuilderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z" -}), 'QueryBuilderRounded'); \ No newline at end of file +}), 'QueryBuilderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryBuilderSharp.js b/packages/material-ui-icons/lib/QueryBuilderSharp.js index 1038459ea485e7..8e16fb372cd3fb 100644 --- a/packages/material-ui-icons/lib/QueryBuilderSharp.js +++ b/packages/material-ui-icons/lib/QueryBuilderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}), 'QueryBuilderSharp'); \ No newline at end of file +}), 'QueryBuilderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryBuilderTwoTone.js b/packages/material-ui-icons/lib/QueryBuilderTwoTone.js index c1ebe4f6c1dcd3..de2a1afda7935b 100644 --- a/packages/material-ui-icons/lib/QueryBuilderTwoTone.js +++ b/packages/material-ui-icons/lib/QueryBuilderTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}, "1")], 'QueryBuilderTwoTone'); \ No newline at end of file +}, "1")], 'QueryBuilderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryStats.js b/packages/material-ui-icons/lib/QueryStats.js index fa80d899a0cee0..dd918ca2586c1d 100644 --- a/packages/material-ui-icons/lib/QueryStats.js +++ b/packages/material-ui-icons/lib/QueryStats.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" -}), 'QueryStats'); \ No newline at end of file +}), 'QueryStats'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryStatsOutlined.js b/packages/material-ui-icons/lib/QueryStatsOutlined.js index 8f8077bbf192c8..d6ad3ebd585bde 100644 --- a/packages/material-ui-icons/lib/QueryStatsOutlined.js +++ b/packages/material-ui-icons/lib/QueryStatsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" -}), 'QueryStatsOutlined'); \ No newline at end of file +}), 'QueryStatsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryStatsRounded.js b/packages/material-ui-icons/lib/QueryStatsRounded.js index b13d4606f7aaa8..2b0a36d3c23da8 100644 --- a/packages/material-ui-icons/lib/QueryStatsRounded.js +++ b/packages/material-ui-icons/lib/QueryStatsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.88 18.47c.48-.77.75-1.67.69-2.66-.13-2.15-1.84-3.97-3.97-4.2-2.72-.3-5.02 1.81-5.02 4.47 0 2.49 2.01 4.5 4.49 4.5.88 0 1.7-.26 2.39-.7l2.41 2.41c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-2.41-2.4zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.08 5.01c-.36.58-1.17.64-1.61.13l-2.12-2.47-3.06 4.9c-.31.49-.97.62-1.44.28-.42-.31-.54-.89-.26-1.34l3.78-6.05c.36-.57 1.17-.63 1.61-.12L9 12.5l3.18-5.17c.38-.62 1.28-.64 1.68-.03l1.86 2.78zm2.59.5c-.64-.28-1.33-.45-2.05-.49L20.8 2.9c.31-.49.97-.61 1.43-.27.43.31.54.9.26 1.34l-4.18 6.61z" -}), 'QueryStatsRounded'); \ No newline at end of file +}), 'QueryStatsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryStatsSharp.js b/packages/material-ui-icons/lib/QueryStatsSharp.js index 360f18440e2365..094f1a0966293a 100644 --- a/packages/material-ui-icons/lib/QueryStatsSharp.js +++ b/packages/material-ui-icons/lib/QueryStatsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" -}), 'QueryStatsSharp'); \ No newline at end of file +}), 'QueryStatsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueryStatsTwoTone.js b/packages/material-ui-icons/lib/QueryStatsTwoTone.js index ccc3dd48d6e400..14d38907025234 100644 --- a/packages/material-ui-icons/lib/QueryStatsTwoTone.js +++ b/packages/material-ui-icons/lib/QueryStatsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" -}), 'QueryStatsTwoTone'); \ No newline at end of file +}), 'QueryStatsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuestionAnswer.js b/packages/material-ui-icons/lib/QuestionAnswer.js index 75b730371a9f23..54f9fd2f454ad0 100644 --- a/packages/material-ui-icons/lib/QuestionAnswer.js +++ b/packages/material-ui-icons/lib/QuestionAnswer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z" -}), 'QuestionAnswer'); \ No newline at end of file +}), 'QuestionAnswer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuestionAnswerOutlined.js b/packages/material-ui-icons/lib/QuestionAnswerOutlined.js index 66be16a4ca9917..def9a77b379a7f 100644 --- a/packages/material-ui-icons/lib/QuestionAnswerOutlined.js +++ b/packages/material-ui-icons/lib/QuestionAnswerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z" -}), 'QuestionAnswerOutlined'); \ No newline at end of file +}), 'QuestionAnswerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuestionAnswerRounded.js b/packages/material-ui-icons/lib/QuestionAnswerRounded.js index 5cbc7373bfbd6e..05a1630f68a53b 100644 --- a/packages/material-ui-icons/lib/QuestionAnswerRounded.js +++ b/packages/material-ui-icons/lib/QuestionAnswerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2zm-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2z" -}), 'QuestionAnswerRounded'); \ No newline at end of file +}), 'QuestionAnswerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuestionAnswerSharp.js b/packages/material-ui-icons/lib/QuestionAnswerSharp.js index f03553bf3dcf7f..f86c93b66552cf 100644 --- a/packages/material-ui-icons/lib/QuestionAnswerSharp.js +++ b/packages/material-ui-icons/lib/QuestionAnswerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z" -}), 'QuestionAnswerSharp'); \ No newline at end of file +}), 'QuestionAnswerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuestionAnswerTwoTone.js b/packages/material-ui-icons/lib/QuestionAnswerTwoTone.js index 9ba8ee89a16bf3..8b8f1cf42e020b 100644 --- a/packages/material-ui-icons/lib/QuestionAnswerTwoTone.js +++ b/packages/material-ui-icons/lib/QuestionAnswerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11V4H4v8.17l.59-.58.58-.59H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-5 7c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zM4.59 11.59l-.59.58V4h11v7H5.17l-.58.59z" -}, "1")], 'QuestionAnswerTwoTone'); \ No newline at end of file +}, "1")], 'QuestionAnswerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Queue.js b/packages/material-ui-icons/lib/Queue.js index 1a8afabed3f89e..442ad4504d2c97 100644 --- a/packages/material-ui-icons/lib/Queue.js +++ b/packages/material-ui-icons/lib/Queue.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" -}), 'Queue'); \ No newline at end of file +}), 'Queue'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueMusic.js b/packages/material-ui-icons/lib/QueueMusic.js index 60924c0d0ada01..f7bec50041ac93 100644 --- a/packages/material-ui-icons/lib/QueueMusic.js +++ b/packages/material-ui-icons/lib/QueueMusic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z" -}), 'QueueMusic'); \ No newline at end of file +}), 'QueueMusic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueMusicOutlined.js b/packages/material-ui-icons/lib/QueueMusicOutlined.js index 3f71098387a278..14b6c72e819c2c 100644 --- a/packages/material-ui-icons/lib/QueueMusicOutlined.js +++ b/packages/material-ui-icons/lib/QueueMusicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6h-5v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6zm-7 0H3v2h12V6zm0 4H3v2h12v-2zm-4 4H3v2h8v-2z" -}), 'QueueMusicOutlined'); \ No newline at end of file +}), 'QueueMusicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueMusicRounded.js b/packages/material-ui-icons/lib/QueueMusicRounded.js index 51d45629b86251..7918a1885d191f 100644 --- a/packages/material-ui-icons/lib/QueueMusicRounded.js +++ b/packages/material-ui-icons/lib/QueueMusicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM4 16h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 6c-1.1 0-2 .9-2 2v6.18c-.31-.11-.65-.18-1-.18-1.84 0-3.28 1.64-2.95 3.54.21 1.21 1.2 2.2 2.41 2.41 1.9.33 3.54-1.11 3.54-2.95V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2z" -}), 'QueueMusicRounded'); \ No newline at end of file +}), 'QueueMusicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueMusicSharp.js b/packages/material-ui-icons/lib/QueueMusicSharp.js index 29fba10c94dffe..c83e1431157ffa 100644 --- a/packages/material-ui-icons/lib/QueueMusicSharp.js +++ b/packages/material-ui-icons/lib/QueueMusicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z" -}), 'QueueMusicSharp'); \ No newline at end of file +}), 'QueueMusicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueMusicTwoTone.js b/packages/material-ui-icons/lib/QueueMusicTwoTone.js index 0587225983bdb8..70341bbc1d4a39 100644 --- a/packages/material-ui-icons/lib/QueueMusicTwoTone.js +++ b/packages/material-ui-icons/lib/QueueMusicTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "17", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10h12v2H3v-2zm0 4h8v2H3v-2zm0-8h12v2H3V6zm14 8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5v8.18z" -}, "1")], 'QueueMusicTwoTone'); \ No newline at end of file +}, "1")], 'QueueMusicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueOutlined.js b/packages/material-ui-icons/lib/QueueOutlined.js index 1eb182bd1fe436..9d7fbbae1d67c3 100644 --- a/packages/material-ui-icons/lib/QueueOutlined.js +++ b/packages/material-ui-icons/lib/QueueOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" -}), 'QueueOutlined'); \ No newline at end of file +}), 'QueueOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueuePlayNext.js b/packages/material-ui-icons/lib/QueuePlayNext.js index 1526a836390e1c..2f95a3ed16bcd6 100644 --- a/packages/material-ui-icons/lib/QueuePlayNext.js +++ b/packages/material-ui-icons/lib/QueuePlayNext.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" -}), 'QueuePlayNext'); \ No newline at end of file +}), 'QueuePlayNext'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueuePlayNextOutlined.js b/packages/material-ui-icons/lib/QueuePlayNextOutlined.js index 513a1d82355112..cab6d4ae73ddc8 100644 --- a/packages/material-ui-icons/lib/QueuePlayNextOutlined.js +++ b/packages/material-ui-icons/lib/QueuePlayNextOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" -}), 'QueuePlayNextOutlined'); \ No newline at end of file +}), 'QueuePlayNextOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueuePlayNextRounded.js b/packages/material-ui-icons/lib/QueuePlayNextRounded.js index 0708f3383bb7fa..c1051768580bac 100644 --- a/packages/material-ui-icons/lib/QueuePlayNextRounded.js +++ b/packages/material-ui-icons/lib/QueuePlayNextRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v6c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm-8 7V8c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zm10.29 8.71-3.04 3.04c-.41.41-1.09.41-1.5 0-.41-.41-.41-1.09 0-1.5L21 18l-2.25-2.25c-.41-.41-.41-1.09 0-1.5.41-.41 1.09-.41 1.5 0l3.04 3.04c.39.39.39 1.03 0 1.42z" -}), 'QueuePlayNextRounded'); \ No newline at end of file +}), 'QueuePlayNextRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueuePlayNextSharp.js b/packages/material-ui-icons/lib/QueuePlayNextSharp.js index 3198b866e3b84e..6b44ef5bf1c21a 100644 --- a/packages/material-ui-icons/lib/QueuePlayNextSharp.js +++ b/packages/material-ui-icons/lib/QueuePlayNextSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v16h7v2h8v-2h2v-2H3V5h18v8h2V3zm-10 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" -}), 'QueuePlayNextSharp'); \ No newline at end of file +}), 'QueuePlayNextSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueuePlayNextTwoTone.js b/packages/material-ui-icons/lib/QueuePlayNextTwoTone.js index cdfe8a68d2b5f0..f07afa5069ca42 100644 --- a/packages/material-ui-icons/lib/QueuePlayNextTwoTone.js +++ b/packages/material-ui-icons/lib/QueuePlayNextTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 15v-3h3v-2h-3V7h-2v3H8v2h3v3zm5 0 3 3-3 3 1.5 1.5L24 18l-4.5-4.5zM8 19v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5z" -}), 'QueuePlayNextTwoTone'); \ No newline at end of file +}), 'QueuePlayNextTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueRounded.js b/packages/material-ui-icons/lib/QueueRounded.js index 93c94272c4c49c..a7667d6abba4f8 100644 --- a/packages/material-ui-icons/lib/QueueRounded.js +++ b/packages/material-ui-icons/lib/QueueRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'QueueRounded'); \ No newline at end of file +}), 'QueueRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueSharp.js b/packages/material-ui-icons/lib/QueueSharp.js index da7b1726303e02..bdaa7622f408d8 100644 --- a/packages/material-ui-icons/lib/QueueSharp.js +++ b/packages/material-ui-icons/lib/QueueSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" -}), 'QueueSharp'); \ No newline at end of file +}), 'QueueSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QueueTwoTone.js b/packages/material-ui-icons/lib/QueueTwoTone.js index 1f0b7d4c98d9d6..8f6bcf4ac02ab2 100644 --- a/packages/material-ui-icons/lib/QueueTwoTone.js +++ b/packages/material-ui-icons/lib/QueueTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm1-7h4V5h2v4h4v2h-4v4h-2v-4H9V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20c0 1.1.9 2 2 2h14v-2H4V6H2v14zM20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" -}, "1")], 'QueueTwoTone'); \ No newline at end of file +}, "1")], 'QueueTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Quickreply.js b/packages/material-ui-icons/lib/Quickreply.js index 9e3ce9ff6f3b93..1b957067a3e45b 100644 --- a/packages/material-ui-icons/lib/Quickreply.js +++ b/packages/material-ui-icons/lib/Quickreply.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-8h7V4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z" -}, "1")], 'Quickreply'); \ No newline at end of file +}, "1")], 'Quickreply'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuickreplyOutlined.js b/packages/material-ui-icons/lib/QuickreplyOutlined.js index 7cfaae28326322..ee0a24fb165871 100644 --- a/packages/material-ui-icons/lib/QuickreplyOutlined.js +++ b/packages/material-ui-icons/lib/QuickreplyOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17V4h16v6h2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-2H5.17L4 17.17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z" -}, "1")], 'QuickreplyOutlined'); \ No newline at end of file +}, "1")], 'QuickreplyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuickreplyRounded.js b/packages/material-ui-icons/lib/QuickreplyRounded.js index 49d768d3039d5b..444c1ff1c5a527 100644 --- a/packages/material-ui-icons/lib/QuickreplyRounded.js +++ b/packages/material-ui-icons/lib/QuickreplyRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-7c0-.55.45-1 1-1h6V4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.69 16H20.3l1.4-3.3c.14-.33-.1-.7-.46-.7H17.5c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5H19v3.94c0 .26.36.35.47.11l2.66-5.33c.17-.33-.07-.72-.44-.72z" -}, "1")], 'QuickreplyRounded'); \ No newline at end of file +}, "1")], 'QuickreplyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuickreplySharp.js b/packages/material-ui-icons/lib/QuickreplySharp.js index 89273f54bd9656..620b9c1c6e9684 100644 --- a/packages/material-ui-icons/lib/QuickreplySharp.js +++ b/packages/material-ui-icons/lib/QuickreplySharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h9v-8h7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z" -}, "1")], 'QuickreplySharp'); \ No newline at end of file +}, "1")], 'QuickreplySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuickreplyTwoTone.js b/packages/material-ui-icons/lib/QuickreplyTwoTone.js index f32680965e6ccc..2e8a6a19d17956 100644 --- a/packages/material-ui-icons/lib/QuickreplyTwoTone.js +++ b/packages/material-ui-icons/lib/QuickreplyTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v13.17L5.17 16H15v-6h5V4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.17 16 4 17.17V4h16v6h2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-2H5.17z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 23 3.5-7h-2.2l1.7-4h-5v6h2z" -}, "2")], 'QuickreplyTwoTone'); \ No newline at end of file +}, "2")], 'QuickreplyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Quiz.js b/packages/material-ui-icons/lib/Quiz.js index f665044b8ec5bb..fc971e13130206 100644 --- a/packages/material-ui-icons/lib/Quiz.js +++ b/packages/material-ui-icons/lib/Quiz.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.99 13c-.59 0-1.05-.47-1.05-1.05 0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04-.01.58-.45 1.05-1.04 1.05zm2.5-6.17c-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c0-.41-.06-1.08.26-1.65.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.61.58 1.73.01 2.57z" -}, "1")], 'Quiz'); \ No newline at end of file +}, "1")], 'Quiz'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuizOutlined.js b/packages/material-ui-icons/lib/QuizOutlined.js index 17f4403c5ba007..2bd2d838f3b003 100644 --- a/packages/material-ui-icons/lib/QuizOutlined.js +++ b/packages/material-ui-icons/lib/QuizOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-6.49-5.84c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z" -}), 'QuizOutlined'); \ No newline at end of file +}), 'QuizOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuizRounded.js b/packages/material-ui-icons/lib/QuizRounded.js index f35fc2cfb6da62..6b9e37a4c69d28 100644 --- a/packages/material-ui-icons/lib/QuizRounded.js +++ b/packages/material-ui-icons/lib/QuizRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20H4V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.99 13c-.59 0-1.05-.47-1.05-1.05 0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04-.01.58-.45 1.05-1.04 1.05zm2.5-6.17c-.63.93-1.23 1.21-1.56 1.81-.08.14-.13.26-.16.49-.05.39-.36.68-.75.68h-.03c-.44 0-.79-.38-.75-.82.03-.28.09-.57.25-.84.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.61 0-1.01.32-1.26.7-.19.29-.57.39-.89.25-.42-.18-.6-.7-.34-1.07.51-.74 1.36-1.29 2.48-1.29 1.23 0 2.08.56 2.51 1.26.37.61.58 1.73.01 2.57z" -}, "1")], 'QuizRounded'); \ No newline at end of file +}, "1")], 'QuizRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuizSharp.js b/packages/material-ui-icons/lib/QuizSharp.js index ef7e2e70e28e41..95737ccabb8a85 100644 --- a/packages/material-ui-icons/lib/QuizSharp.js +++ b/packages/material-ui-icons/lib/QuizSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 2v16h16V2H6zm7.51 8.16c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z" -}, "1")], 'QuizSharp'); \ No newline at end of file +}, "1")], 'QuizSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/QuizTwoTone.js b/packages/material-ui-icons/lib/QuizTwoTone.js index b5dda372f538f3..5d677385776db8 100644 --- a/packages/material-ui-icons/lib/QuizTwoTone.js +++ b/packages/material-ui-icons/lib/QuizTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4v12h12V4H8zm6.74 10.69c-.2.21-.44.31-.73.31s-.54-.1-.74-.31c-.21-.21-.31-.45-.31-.74s.1-.54.31-.74c.21-.2.45-.3.74-.3s.54.1.74.3c.2.2.3.45.3.74s-.11.54-.31.74zm1.77-5.86c-.23.34-.54.69-.92 1.06-.3.27-.51.52-.64.75-.12.23-.18.49-.18.78v.4h-1.52v-.56c0-.42.09-.78.26-1.09.18-.32.49-.67.95-1.07.32-.29.55-.54.69-.74.14-.2.21-.44.21-.72 0-.36-.12-.65-.36-.87-.24-.23-.57-.34-.99-.34-.4 0-.72.12-.97.36s-.42.53-.53.87l-1.37-.57c.18-.55.52-1.03 1-1.45.49-.43 1.11-.64 1.85-.64.56 0 1.05.11 1.49.33.44.22.78.53 1.02.93s.36.84.36 1.33c0 .49-.11.9-.35 1.24z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-6.49-5.84c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z" -}, "1")], 'QuizTwoTone'); \ No newline at end of file +}, "1")], 'QuizTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RMobiledata.js b/packages/material-ui-icons/lib/RMobiledata.js index 1b41b04dda2574..42045e46e59344 100644 --- a/packages/material-ui-icons/lib/RMobiledata.js +++ b/packages/material-ui-icons/lib/RMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h5c1.13 0 2 .87 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" -}), 'RMobiledata'); \ No newline at end of file +}), 'RMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RMobiledataOutlined.js b/packages/material-ui-icons/lib/RMobiledataOutlined.js index 9f67be91f7e7a5..9c09032cd5a6b1 100644 --- a/packages/material-ui-icons/lib/RMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/RMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h5c1.13 0 2 .87 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" -}), 'RMobiledataOutlined'); \ No newline at end of file +}), 'RMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RMobiledataRounded.js b/packages/material-ui-icons/lib/RMobiledataRounded.js index 6a82aae6a4c525..65b06d52ff9836 100644 --- a/packages/material-ui-icons/lib/RMobiledataRounded.js +++ b/packages/material-ui-icons/lib/RMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.8 7.2.65 1.52c.26.61-.18 1.28-.84 1.28-.37 0-.7-.22-.85-.56l-.89-2.11H4v1.75c0 .51-.41.92-.92.92h-.16C2.41 10 2 9.59 2 9.08V3c0-.55.45-1 1-1h4c1.1 0 2 .9 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" -}), 'RMobiledataRounded'); \ No newline at end of file +}), 'RMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RMobiledataSharp.js b/packages/material-ui-icons/lib/RMobiledataSharp.js index 76b90090ae3244..41d7af347489ba 100644 --- a/packages/material-ui-icons/lib/RMobiledataSharp.js +++ b/packages/material-ui-icons/lib/RMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h7v5.2H7.8zM7 4H4v1.33h3V4z" -}), 'RMobiledataSharp'); \ No newline at end of file +}), 'RMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RMobiledataTwoTone.js b/packages/material-ui-icons/lib/RMobiledataTwoTone.js index 0695f00a0ebe68..3fcbf614ddcb37 100644 --- a/packages/material-ui-icons/lib/RMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/RMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h5c1.13 0 2 .87 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" -}), 'RMobiledataTwoTone'); \ No newline at end of file +}), 'RMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Radar.js b/packages/material-ui-icons/lib/Radar.js index 860c115af1f020..44c1098690935c 100644 --- a/packages/material-ui-icons/lib/Radar.js +++ b/packages/material-ui-icons/lib/Radar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" -}), 'Radar'); \ No newline at end of file +}), 'Radar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadarOutlined.js b/packages/material-ui-icons/lib/RadarOutlined.js index 70209d799d08bf..2d5ed3d233e1b3 100644 --- a/packages/material-ui-icons/lib/RadarOutlined.js +++ b/packages/material-ui-icons/lib/RadarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" -}), 'RadarOutlined'); \ No newline at end of file +}), 'RadarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadarRounded.js b/packages/material-ui-icons/lib/RadarRounded.js index 1a09f3ece27e58..1f16da618a36ba 100644 --- a/packages/material-ui-icons/lib/RadarRounded.js +++ b/packages/material-ui-icons/lib/RadarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" -}), 'RadarRounded'); \ No newline at end of file +}), 'RadarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadarSharp.js b/packages/material-ui-icons/lib/RadarSharp.js index 35bef7bf4eeaf0..4caa5c5553cc49 100644 --- a/packages/material-ui-icons/lib/RadarSharp.js +++ b/packages/material-ui-icons/lib/RadarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" -}), 'RadarSharp'); \ No newline at end of file +}), 'RadarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadarTwoTone.js b/packages/material-ui-icons/lib/RadarTwoTone.js index 8b054b66465222..8e82a6b63dd2fb 100644 --- a/packages/material-ui-icons/lib/RadarTwoTone.js +++ b/packages/material-ui-icons/lib/RadarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" -}), 'RadarTwoTone'); \ No newline at end of file +}), 'RadarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Radio.js b/packages/material-ui-icons/lib/Radio.js index 1c7db395839ece..cf172974435274 100644 --- a/packages/material-ui-icons/lib/Radio.js +++ b/packages/material-ui-icons/lib/Radio.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z" -}), 'Radio'); \ No newline at end of file +}), 'Radio'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonChecked.js b/packages/material-ui-icons/lib/RadioButtonChecked.js index e43f0d2c350394..e2af28ebd455ad 100644 --- a/packages/material-ui-icons/lib/RadioButtonChecked.js +++ b/packages/material-ui-icons/lib/RadioButtonChecked.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'RadioButtonChecked'); \ No newline at end of file +}), 'RadioButtonChecked'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonCheckedOutlined.js b/packages/material-ui-icons/lib/RadioButtonCheckedOutlined.js index 82f90b1101ace1..7905fd4e3cfaed 100644 --- a/packages/material-ui-icons/lib/RadioButtonCheckedOutlined.js +++ b/packages/material-ui-icons/lib/RadioButtonCheckedOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "5" -}, "1")], 'RadioButtonCheckedOutlined'); \ No newline at end of file +}, "1")], 'RadioButtonCheckedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonCheckedRounded.js b/packages/material-ui-icons/lib/RadioButtonCheckedRounded.js index def4bd8ab4ff29..2bfd58a86a71fe 100644 --- a/packages/material-ui-icons/lib/RadioButtonCheckedRounded.js +++ b/packages/material-ui-icons/lib/RadioButtonCheckedRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "5" -}, "1")], 'RadioButtonCheckedRounded'); \ No newline at end of file +}, "1")], 'RadioButtonCheckedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonCheckedSharp.js b/packages/material-ui-icons/lib/RadioButtonCheckedSharp.js index 82efaeb2836984..7a16d2407e754b 100644 --- a/packages/material-ui-icons/lib/RadioButtonCheckedSharp.js +++ b/packages/material-ui-icons/lib/RadioButtonCheckedSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "5" -}, "1")], 'RadioButtonCheckedSharp'); \ No newline at end of file +}, "1")], 'RadioButtonCheckedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonCheckedTwoTone.js b/packages/material-ui-icons/lib/RadioButtonCheckedTwoTone.js index 4734f4a6937cf8..028c958854121f 100644 --- a/packages/material-ui-icons/lib/RadioButtonCheckedTwoTone.js +++ b/packages/material-ui-icons/lib/RadioButtonCheckedTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "5" -}, "1")], 'RadioButtonCheckedTwoTone'); \ No newline at end of file +}, "1")], 'RadioButtonCheckedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonUnchecked.js b/packages/material-ui-icons/lib/RadioButtonUnchecked.js index eaada573896ed6..fda3cdafd10819 100644 --- a/packages/material-ui-icons/lib/RadioButtonUnchecked.js +++ b/packages/material-ui-icons/lib/RadioButtonUnchecked.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'RadioButtonUnchecked'); \ No newline at end of file +}), 'RadioButtonUnchecked'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonUncheckedOutlined.js b/packages/material-ui-icons/lib/RadioButtonUncheckedOutlined.js index 86b84f342811f2..5f7e4e710c7124 100644 --- a/packages/material-ui-icons/lib/RadioButtonUncheckedOutlined.js +++ b/packages/material-ui-icons/lib/RadioButtonUncheckedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'RadioButtonUncheckedOutlined'); \ No newline at end of file +}), 'RadioButtonUncheckedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonUncheckedRounded.js b/packages/material-ui-icons/lib/RadioButtonUncheckedRounded.js index 8e90c7c01991d3..6acc901e6c4df8 100644 --- a/packages/material-ui-icons/lib/RadioButtonUncheckedRounded.js +++ b/packages/material-ui-icons/lib/RadioButtonUncheckedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'RadioButtonUncheckedRounded'); \ No newline at end of file +}), 'RadioButtonUncheckedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonUncheckedSharp.js b/packages/material-ui-icons/lib/RadioButtonUncheckedSharp.js index 8ce1072d0645bc..97bad82bb878bf 100644 --- a/packages/material-ui-icons/lib/RadioButtonUncheckedSharp.js +++ b/packages/material-ui-icons/lib/RadioButtonUncheckedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'RadioButtonUncheckedSharp'); \ No newline at end of file +}), 'RadioButtonUncheckedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioButtonUncheckedTwoTone.js b/packages/material-ui-icons/lib/RadioButtonUncheckedTwoTone.js index a4ab01c76f1a3a..fa9692411902cb 100644 --- a/packages/material-ui-icons/lib/RadioButtonUncheckedTwoTone.js +++ b/packages/material-ui-icons/lib/RadioButtonUncheckedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'RadioButtonUncheckedTwoTone'); \ No newline at end of file +}), 'RadioButtonUncheckedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioOutlined.js b/packages/material-ui-icons/lib/RadioOutlined.js index 5cbeaef5e1cd73..8a1829d3b963fa 100644 --- a/packages/material-ui-icons/lib/RadioOutlined.js +++ b/packages/material-ui-icons/lib/RadioOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2zm0 2v3h-2V9h-2v2H4V8h16zM4 20v-7h16v7H4z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "16.48", r: "2.5" -}, "1")], 'RadioOutlined'); \ No newline at end of file +}, "1")], 'RadioOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioRounded.js b/packages/material-ui-icons/lib/RadioRounded.js index d134be4c1855c9..7d2ef6730c846e 100644 --- a/packages/material-ui-icons/lib/RadioRounded.js +++ b/packages/material-ui-icons/lib/RadioRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.9 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.1-.9-2-2-2H8.3l7.43-3c.46-.19.68-.71.49-1.17-.19-.46-.71-.68-1.17-.49L3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-1c0-.55-.45-1-1-1s-1 .45-1 1v1H4V9c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v3z" -}), 'RadioRounded'); \ No newline at end of file +}), 'RadioRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioSharp.js b/packages/material-ui-icons/lib/RadioSharp.js index fb81f8a93ab01b..ff1f257f007cf1 100644 --- a/packages/material-ui-icons/lib/RadioSharp.js +++ b/packages/material-ui-icons/lib/RadioSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 6.67V22h20V6H8.3l8.26-3.34L15.88 1 2 6.67zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z" -}), 'RadioSharp'); \ No newline at end of file +}), 'RadioSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RadioTwoTone.js b/packages/material-ui-icons/lib/RadioTwoTone.js index 8abe4cfee89d96..c79578ead89923 100644 --- a/packages/material-ui-icons/lib/RadioTwoTone.js +++ b/packages/material-ui-icons/lib/RadioTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13H4v7h16v-7zM8 18.98c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12zM4 8h16v3h-2V9h-2v2H4V8zm0 5h16v7H4v-7z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "16.48", r: "2.5" -}, "2")], 'RadioTwoTone'); \ No newline at end of file +}, "2")], 'RadioTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RailwayAlert.js b/packages/material-ui-icons/lib/RailwayAlert.js index e296e75fae2d19..edadafa7ca387d 100644 --- a/packages/material-ui-icons/lib/RailwayAlert.js +++ b/packages/material-ui-icons/lib/RailwayAlert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8a7 7 0 0 0-11.95-4.95A33.8 33.8 0 0 0 9 3c-4.42 0-8 .5-8 4v10.5A3.5 3.5 0 0 0 4.5 21L3 22.5v.5h12v-.5L13.5 21a3.5 3.5 0 0 0 3.5-3.5v-2.58A7 7 0 0 0 23 8zM3 12V7h6.08a6.96 6.96 0 0 0 1.18 5H3zm6 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7.71-6.06-.2.03L16 13l-.47-.02-.16-.02-.29-.04-.2-.04-.22-.06a1.55 1.55 0 0 1-.23-.07l-.13-.05A4.99 4.99 0 0 1 11.1 7c.04-.19.09-.37.15-.54l.05-.14.15-.38.07-.15.2-.36.07-.12.3-.42.02-.02c.24-.3.52-.57.82-.81l.01-.01.46-.32.03-.02A5.25 5.25 0 0 1 16 3a5 5 0 0 1 .71 9.94zM15 4h2v5h-2zm0 6h2v2h-2z" -}), 'RailwayAlert'); \ No newline at end of file +}), 'RailwayAlert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RailwayAlertOutlined.js b/packages/material-ui-icons/lib/RailwayAlertOutlined.js index be52bc779bfb22..8402b5815b8f1a 100644 --- a/packages/material-ui-icons/lib/RailwayAlertOutlined.js +++ b/packages/material-ui-icons/lib/RailwayAlertOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "15.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.9-.77 3.28-1.08 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm12 5.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V13h12v3.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "2")], 'RailwayAlertOutlined'); \ No newline at end of file +}, "2")], 'RailwayAlertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RailwayAlertRounded.js b/packages/material-ui-icons/lib/RailwayAlertRounded.js index eb221731bf73ae..4d9fdb0569338a 100644 --- a/packages/material-ui-icons/lib/RailwayAlertRounded.js +++ b/packages/material-ui-icons/lib/RailwayAlertRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L14.5 20c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm6 6c-.83 0-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5S10.83 17 10 17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm.5-2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5s.5.22.5.5v3z" -}, "1")], 'RailwayAlertRounded'); \ No newline at end of file +}, "1")], 'RailwayAlertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RailwayAlertSharp.js b/packages/material-ui-icons/lib/RailwayAlertSharp.js index b464960add6627..c954f89b45db84 100644 --- a/packages/material-ui-icons/lib/RailwayAlertSharp.js +++ b/packages/material-ui-icons/lib/RailwayAlertSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm6 6c-.83 0-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5S10.83 17 10 17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "1")], 'RailwayAlertSharp'); \ No newline at end of file +}, "1")], 'RailwayAlertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RailwayAlertTwoTone.js b/packages/material-ui-icons/lib/RailwayAlertTwoTone.js index e4759fc1766075..95cd3a5e8b1a3c 100644 --- a/packages/material-ui-icons/lib/RailwayAlertTwoTone.js +++ b/packages/material-ui-icons/lib/RailwayAlertTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 16.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V13H4v3.5zm6-2.5c.83 0 1.5.67 1.5 1.5S10.83 17 10 17s-1.5-.67-1.5-1.5S9.17 14 10 14zM4.43 6H11c0-.33.03-.66.08-.98-3.37-.1-5.75.21-6.65.98z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.9-.77 3.28-1.08 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm12 5.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V13h12v3.5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "15.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "3")], 'RailwayAlertTwoTone'); \ No newline at end of file +}, "3")], 'RailwayAlertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RamenDining.js b/packages/material-ui-icons/lib/RamenDining.js index 8731ab1bc3dddc..a69c23d4c06c31 100644 --- a/packages/material-ui-icons/lib/RamenDining.js +++ b/packages/material-ui-icons/lib/RamenDining.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 6H8V4.65l1-.12V6zm0 6H8V7h1v5zM6 7h1v5H6V7zm0-2.12 1-.12V6H6V4.88zM22 3V2L5 4v8H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10V7h12V6H10V4.41L22 3z" -}), 'RamenDining'); \ No newline at end of file +}), 'RamenDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RamenDiningOutlined.js b/packages/material-ui-icons/lib/RamenDiningOutlined.js index 810835f5dacbd3..35e93ccd33482f 100644 --- a/packages/material-ui-icons/lib/RamenDiningOutlined.js +++ b/packages/material-ui-icons/lib/RamenDiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.5V20h-4v-1.11l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33M22 2 4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51V2zM8 6.5V5.06l1-.11V6.5H8zm-2.5 0V5.34l1-.11V6.5h-1zM8 12V8h1v4H8zm-2.5 0V8h1v4h-1z" -}), 'RamenDiningOutlined'); \ No newline at end of file +}), 'RamenDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RamenDiningRounded.js b/packages/material-ui-icons/lib/RamenDiningRounded.js index 77762ccfa0e114..12da2766fde942 100644 --- a/packages/material-ui-icons/lib/RamenDiningRounded.js +++ b/packages/material-ui-icons/lib/RamenDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2.84c0-.45-.39-.79-.83-.75L4.89 3.9c-.51.05-.89.48-.89.99V12h-.92c-.6 0-1.08.53-1 1.13.44 3.2 2.75 5.87 5.92 7.12V21c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-.75c3.17-1.25 5.48-3.92 5.92-7.12.08-.6-.4-1.13-1-1.13H10.5V8h10.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H10.5V4.78l10.83-1.19c.38-.05.67-.37.67-.75zM6.5 5.22V6.5h-1V5.34l1-.12zM5.5 8h1v4h-1V8zM9 12H8V8h1v4zm0-5.5H8V5.06l1-.11V6.5z" -}), 'RamenDiningRounded'); \ No newline at end of file +}), 'RamenDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RamenDiningSharp.js b/packages/material-ui-icons/lib/RamenDiningSharp.js index 679240408d8440..51d151f98bfecc 100644 --- a/packages/material-ui-icons/lib/RamenDiningSharp.js +++ b/packages/material-ui-icons/lib/RamenDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.51V2L4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51zM6.5 5.22V6.5h-1V5.34l1-.12zM5.5 8h1v4h-1V8zM9 12H8V8h1v4zm0-5.5H8V5.06l1-.11V6.5z" -}), 'RamenDiningSharp'); \ No newline at end of file +}), 'RamenDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RamenDiningTwoTone.js b/packages/material-ui-icons/lib/RamenDiningTwoTone.js index 0329f35df1250e..dba8e13a68bd9e 100644 --- a/packages/material-ui-icons/lib/RamenDiningTwoTone.js +++ b/packages/material-ui-icons/lib/RamenDiningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.73 18.39 1.27.5V20h4v-1.11l1.27-.5c2.16-.85 3.74-2.47 4.4-4.39H4.34c.65 1.92 2.24 3.54 4.39 4.39z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 3.51V2L4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51zM8 5.06l1-.11V6.5H8V5.06zM8 8h1v4H8V8zM5.5 5.34l1-.11V6.5h-1V5.34zM5.5 8h1v4h-1V8zm14.16 6c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.5V20h-4v-1.11l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33z" -}, "1")], 'RamenDiningTwoTone'); \ No newline at end of file +}, "1")], 'RamenDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RateReview.js b/packages/material-ui-icons/lib/RateReview.js index d12f0083e8f1d5..4133d34aa3af1a 100644 --- a/packages/material-ui-icons/lib/RateReview.js +++ b/packages/material-ui-icons/lib/RateReview.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z" -}), 'RateReview'); \ No newline at end of file +}), 'RateReview'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RateReviewOutlined.js b/packages/material-ui-icons/lib/RateReviewOutlined.js index 0db38ae8844739..94dbbb4c432446 100644 --- a/packages/material-ui-icons/lib/RateReviewOutlined.js +++ b/packages/material-ui-icons/lib/RateReviewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z" -}), 'RateReviewOutlined'); \ No newline at end of file +}), 'RateReviewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RateReviewRounded.js b/packages/material-ui-icons/lib/RateReviewRounded.js index 5e20e177c136ac..00d7f25b01655c 100644 --- a/packages/material-ui-icons/lib/RateReviewRounded.js +++ b/packages/material-ui-icons/lib/RateReviewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm11 0h-6.5l2-2H17c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'RateReviewRounded'); \ No newline at end of file +}), 'RateReviewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RateReviewSharp.js b/packages/material-ui-icons/lib/RateReviewSharp.js index c35e2f4a1f7bbc..6843f3cdb3ae80 100644 --- a/packages/material-ui-icons/lib/RateReviewSharp.js +++ b/packages/material-ui-icons/lib/RateReviewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z" -}), 'RateReviewSharp'); \ No newline at end of file +}), 'RateReviewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RateReviewTwoTone.js b/packages/material-ui-icons/lib/RateReviewTwoTone.js index 63ec888fec62b2..c889f527baa538 100644 --- a/packages/material-ui-icons/lib/RateReviewTwoTone.js +++ b/packages/material-ui-icons/lib/RateReviewTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 17.17.59-.59.58-.58H20V4H4v13.17zM18 14h-7.5l2-2H18v2zM6 11.53l5.88-5.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6v-2.47z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z" -}, "1")], 'RateReviewTwoTone'); \ No newline at end of file +}, "1")], 'RateReviewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOff.js b/packages/material-ui-icons/lib/RawOff.js index 697f49b9e46c9b..542ca65c5fe008 100644 --- a/packages/material-ui-icons/lib/RawOff.js +++ b/packages/material-ui-icons/lib/RawOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" -}), 'RawOff'); \ No newline at end of file +}), 'RawOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOffOutlined.js b/packages/material-ui-icons/lib/RawOffOutlined.js index 86edd8ebb24fee..606972ff69f7b4 100644 --- a/packages/material-ui-icons/lib/RawOffOutlined.js +++ b/packages/material-ui-icons/lib/RawOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" -}), 'RawOffOutlined'); \ No newline at end of file +}), 'RawOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOffRounded.js b/packages/material-ui-icons/lib/RawOffRounded.js index 6a25ef2beab011..bf34369203dfb0 100644 --- a/packages/material-ui-icons/lib/RawOffRounded.js +++ b/packages/material-ui-icons/lib/RawOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.55 9c-.33 0-.63.23-.71.55l-.6 2.45-.56-2.26c-.1-.44-.49-.74-.94-.74s-.84.3-.94.74L16.24 12l-.6-2.45c-.08-.32-.37-.55-.71-.55-.47 0-.82.44-.71.9l.5 1.99 2.42 2.42c0-.01.01-.02.01-.03l.58-2.32.58 2.32c.12.42.5.72.93.72s.81-.3.92-.72l1.09-4.38c.12-.46-.23-.9-.7-.9zM3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L6.17 9H4c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V13h1.1l.72 1.59c.12.25.37.41.64.41.5 0 .83-.51.64-.97L7.1 12.9c.5-.3.9-.8.9-1.4v-.67l1.43 1.43-.45 1.84c-.12.46.23.9.7.9.33 0 .62-.23.7-.55l.24-.95h.04l8.4 8.4c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51zM6.5 11.5h-2v-1h2v1z" -}), 'RawOffRounded'); \ No newline at end of file +}), 'RawOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOffSharp.js b/packages/material-ui-icons/lib/RawOffSharp.js index cdcb7e2eec3368..ca732db064af54 100644 --- a/packages/material-ui-icons/lib/RawOffSharp.js +++ b/packages/material-ui-icons/lib/RawOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" -}), 'RawOffSharp'); \ No newline at end of file +}), 'RawOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOffTwoTone.js b/packages/material-ui-icons/lib/RawOffTwoTone.js index cbb5e53deec3d3..9341d1a75b2b97 100644 --- a/packages/material-ui-icons/lib/RawOffTwoTone.js +++ b/packages/material-ui-icons/lib/RawOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" -}), 'RawOffTwoTone'); \ No newline at end of file +}), 'RawOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOn.js b/packages/material-ui-icons/lib/RawOn.js index 6d21a4e98c06be..56b0e96dddede5 100644 --- a/packages/material-ui-icons/lib/RawOn.js +++ b/packages/material-ui-icons/lib/RawOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" -}), 'RawOn'); \ No newline at end of file +}), 'RawOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOnOutlined.js b/packages/material-ui-icons/lib/RawOnOutlined.js index d0b2eeea25c547..0557156804ccc2 100644 --- a/packages/material-ui-icons/lib/RawOnOutlined.js +++ b/packages/material-ui-icons/lib/RawOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" -}), 'RawOnOutlined'); \ No newline at end of file +}), 'RawOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOnRounded.js b/packages/material-ui-icons/lib/RawOnRounded.js index d9f5f6864b2dc4..9939ca67a698ff 100644 --- a/packages/material-ui-icons/lib/RawOnRounded.js +++ b/packages/material-ui-icons/lib/RawOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 9H4c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V13h1.1l.72 1.59c.12.25.37.41.64.41.5 0 .83-.51.64-.97L7.1 12.9c.5-.3.9-.8.9-1.4v-1C8 9.68 7.32 9 6.5 9zm0 2.5h-2v-1h2v1zm5-2.5c-.73 0-1.37.5-1.55 1.21l-.97 3.89c-.12.46.23.9.7.9.33 0 .62-.23.7-.55l.24-.95h1.75l.23.95c.08.32.37.55.71.55.47 0 .82-.44.71-.9l-.97-3.88C12.87 9.5 12.23 9 11.5 9zm-.5 3 .25-1h.5l.25 1h-1zm8.84-2.45-.6 2.45-.56-2.26c-.1-.44-.49-.74-.94-.74-.45 0-.84.3-.94.74L16.24 12l-.6-2.45c-.08-.32-.37-.55-.71-.55-.47 0-.82.44-.71.9l1.09 4.38c.12.42.5.72.93.72.43 0 .81-.3.92-.72l.58-2.32.58 2.32c.11.42.49.72.92.72.43 0 .81-.3.92-.72l1.09-4.38c.12-.46-.23-.9-.7-.9-.34 0-.63.23-.71.55z" -}), 'RawOnRounded'); \ No newline at end of file +}), 'RawOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOnSharp.js b/packages/material-ui-icons/lib/RawOnSharp.js index 7e63006d5aa71c..6615283d26bca5 100644 --- a/packages/material-ui-icons/lib/RawOnSharp.js +++ b/packages/material-ui-icons/lib/RawOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" -}), 'RawOnSharp'); \ No newline at end of file +}), 'RawOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RawOnTwoTone.js b/packages/material-ui-icons/lib/RawOnTwoTone.js index 7f177a49382f61..32e071f1ca53a0 100644 --- a/packages/material-ui-icons/lib/RawOnTwoTone.js +++ b/packages/material-ui-icons/lib/RawOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" -}), 'RawOnTwoTone'); \ No newline at end of file +}), 'RawOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReadMore.js b/packages/material-ui-icons/lib/ReadMore.js index c847de7f9b3947..5b42537c62f1d3 100644 --- a/packages/material-ui-icons/lib/ReadMore.js +++ b/packages/material-ui-icons/lib/ReadMore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" -}), 'ReadMore'); \ No newline at end of file +}), 'ReadMore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReadMoreOutlined.js b/packages/material-ui-icons/lib/ReadMoreOutlined.js index c5e7447030b51e..6816ffe1bf1caa 100644 --- a/packages/material-ui-icons/lib/ReadMoreOutlined.js +++ b/packages/material-ui-icons/lib/ReadMoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" -}), 'ReadMoreOutlined'); \ No newline at end of file +}), 'ReadMoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReadMoreRounded.js b/packages/material-ui-icons/lib/ReadMoreRounded.js index 35daed4d6f9c33..4a186a682258c5 100644 --- a/packages/material-ui-icons/lib/ReadMoreRounded.js +++ b/packages/material-ui-icons/lib/ReadMoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h7c.55 0 1-.45 1-1s-.45-1-1-1h-7c-.55 0-1 .45-1 1s.45 1 1 1zm7 6h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0-4h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zM8.85 7.85c-.31-.31-.85-.09-.85.36V11H3c-.55 0-1 .45-1 1s.45 1 1 1h5v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71L8.85 7.85z" -}), 'ReadMoreRounded'); \ No newline at end of file +}), 'ReadMoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReadMoreSharp.js b/packages/material-ui-icons/lib/ReadMoreSharp.js index d8d56e20c59e79..3b3e1f48e57274 100644 --- a/packages/material-ui-icons/lib/ReadMoreSharp.js +++ b/packages/material-ui-icons/lib/ReadMoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" -}), 'ReadMoreSharp'); \ No newline at end of file +}), 'ReadMoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReadMoreTwoTone.js b/packages/material-ui-icons/lib/ReadMoreTwoTone.js index 5d5dd70986d1a7..c66c8622bd75c0 100644 --- a/packages/material-ui-icons/lib/ReadMoreTwoTone.js +++ b/packages/material-ui-icons/lib/ReadMoreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" -}), 'ReadMoreTwoTone'); \ No newline at end of file +}), 'ReadMoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Receipt.js b/packages/material-ui-icons/lib/Receipt.js index 0731574d8f9a5b..641224e65bed8f 100644 --- a/packages/material-ui-icons/lib/Receipt.js +++ b/packages/material-ui-icons/lib/Receipt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z" -}), 'Receipt'); \ No newline at end of file +}), 'Receipt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptLong.js b/packages/material-ui-icons/lib/ReceiptLong.js index 340794ce9019d4..e2bd870545e7ab 100644 --- a/packages/material-ui-icons/lib/ReceiptLong.js +++ b/packages/material-ui-icons/lib/ReceiptLong.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM19 19c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7h6v2H9zm7 0h2v2h-2zm-7 3h6v2H9zm7 0h2v2h-2z" -}, "1")], 'ReceiptLong'); \ No newline at end of file +}, "1")], 'ReceiptLong'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptLongOutlined.js b/packages/material-ui-icons/lib/ReceiptLongOutlined.js index 7edc3ee92621f0..4b60e718c3729e 100644 --- a/packages/material-ui-icons/lib/ReceiptLongOutlined.js +++ b/packages/material-ui-icons/lib/ReceiptLongOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7h6v2H9zm7 0h2v2h-2zm-7 3h6v2H9zm7 0h2v2h-2z" -}, "1")], 'ReceiptLongOutlined'); \ No newline at end of file +}, "1")], 'ReceiptLongOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptLongRounded.js b/packages/material-ui-icons/lib/ReceiptLongRounded.js index 77fa466af4de21..74e67d929802fe 100644 --- a/packages/material-ui-icons/lib/ReceiptLongRounded.js +++ b/packages/material-ui-icons/lib/ReceiptLongRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm0 3h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H4c-.55 0-1 .45-1 1v2c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-2c0-.55-.45-1-1-1H8V5h11v14z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "8", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "11", r: "1" -}, "3")], 'ReceiptLongRounded'); \ No newline at end of file +}, "3")], 'ReceiptLongRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptLongSharp.js b/packages/material-ui-icons/lib/ReceiptLongSharp.js index f7882e2a2417d1..c58b62921370e7 100644 --- a/packages/material-ui-icons/lib/ReceiptLongSharp.js +++ b/packages/material-ui-icons/lib/ReceiptLongSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7h6v2H9zm0 3h6v2H9zm7-3h2v2h-2zm0 3h2v2h-2z" -}, "1")], 'ReceiptLongSharp'); \ No newline at end of file +}, "1")], 'ReceiptLongSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptLongTwoTone.js b/packages/material-ui-icons/lib/ReceiptLongTwoTone.js index 88848519dd4ee9..ae3138f014934c 100644 --- a/packages/material-ui-icons/lib/ReceiptLongTwoTone.js +++ b/packages/material-ui-icons/lib/ReceiptLongTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM19 19c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7h6v2H9zm7 0h2v2h-2zm-7 3h6v2H9zm7 0h2v2h-2z" -}, "2")], 'ReceiptLongTwoTone'); \ No newline at end of file +}, "2")], 'ReceiptLongTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptOutlined.js b/packages/material-ui-icons/lib/ReceiptOutlined.js index 13afc2781be261..82d36c42d0df37 100644 --- a/packages/material-ui-icons/lib/ReceiptOutlined.js +++ b/packages/material-ui-icons/lib/ReceiptOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z" -}), 'ReceiptOutlined'); \ No newline at end of file +}), 'ReceiptOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptRounded.js b/packages/material-ui-icons/lib/ReceiptRounded.js index 2ea41176e45b6c..86e7ff06907452 100644 --- a/packages/material-ui-icons/lib/ReceiptRounded.js +++ b/packages/material-ui-icons/lib/ReceiptRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2.21c-.13 0-.26.05-.35.15l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.8-.8c-.2-.2-.51-.2-.71 0l-.79.8c-.2.2-.51.2-.71 0l-.79-.8c-.2-.2-.51-.2-.71 0l-.79.8c-.2.2-.51.2-.71 0l-.79-.8c-.09-.09-.22-.14-.35-.14V21.8c.13 0 .26-.05.35-.15l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.1.1.23.15.35.15V2.21zM17 17H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'ReceiptRounded'); \ No newline at end of file +}), 'ReceiptRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptSharp.js b/packages/material-ui-icons/lib/ReceiptSharp.js index c75ef605a715c8..e9847314733154 100644 --- a/packages/material-ui-icons/lib/ReceiptSharp.js +++ b/packages/material-ui-icons/lib/ReceiptSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z" -}), 'ReceiptSharp'); \ No newline at end of file +}), 'ReceiptSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReceiptTwoTone.js b/packages/material-ui-icons/lib/ReceiptTwoTone.js index b8839a3536eac1..86d512a7e9a76d 100644 --- a/packages/material-ui-icons/lib/ReceiptTwoTone.js +++ b/packages/material-ui-icons/lib/ReceiptTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19.09h14V4.91H5v14.18zM6 7h12v2H6V7zm0 4h12v2H6v-2zm0 4h12v2H6v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z" -}, "1")], 'ReceiptTwoTone'); \ No newline at end of file +}, "1")], 'ReceiptTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecentActors.js b/packages/material-ui-icons/lib/RecentActors.js index 0a9d854a58eb26..f2cbe9556b95f8 100644 --- a/packages/material-ui-icons/lib/RecentActors.js +++ b/packages/material-ui-icons/lib/RecentActors.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" -}), 'RecentActors'); \ No newline at end of file +}), 'RecentActors'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecentActorsOutlined.js b/packages/material-ui-icons/lib/RecentActorsOutlined.js index 2c0dca08ce72f0..77af9ed4ff5d99 100644 --- a/packages/material-ui-icons/lib/RecentActorsOutlined.js +++ b/packages/material-ui-icons/lib/RecentActorsOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5h2v14h-2zm-4 0h2v14h-2zm-3 0H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H3V7h10v10z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "9.94", r: "1.95" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.89 15.35c0-1.3-2.59-1.95-3.89-1.95s-3.89.65-3.89 1.95V16h7.78v-.65z" -}, "2")], 'RecentActorsOutlined'); \ No newline at end of file +}, "2")], 'RecentActorsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecentActorsRounded.js b/packages/material-ui-icons/lib/RecentActorsRounded.js index ea10a2493ac93b..b5accecf6fabd0 100644 --- a/packages/material-ui-icons/lib/RecentActorsRounded.js +++ b/packages/material-ui-icons/lib/RecentActorsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6v12c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1zm-3 13c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55.45 1 1 1zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" -}), 'RecentActorsRounded'); \ No newline at end of file +}), 'RecentActorsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecentActorsSharp.js b/packages/material-ui-icons/lib/RecentActorsSharp.js index 99ef8cd8073da4..9c7c4bfe9d6666 100644 --- a/packages/material-ui-icons/lib/RecentActorsSharp.js +++ b/packages/material-ui-icons/lib/RecentActorsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM15 5H1v14h14V5zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" -}), 'RecentActorsSharp'); \ No newline at end of file +}), 'RecentActorsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecentActorsTwoTone.js b/packages/material-ui-icons/lib/RecentActorsTwoTone.js index f01e6324499cb3..86b84082396b2a 100644 --- a/packages/material-ui-icons/lib/RecentActorsTwoTone.js +++ b/packages/material-ui-icons/lib/RecentActorsTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7H3v10h10V7zM8 8c1.07 0 1.95.87 1.95 1.95 0 1.07-.87 1.95-1.95 1.95s-1.95-.87-1.95-1.95S6.93 8 8 8zm3.89 8H4.11v-.65c0-1.3 2.59-1.95 3.89-1.95s3.89.65 3.89 1.95V16z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5h2v14h-2zm-4 0h2v14h-2zm-3 14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12zM3 7h10v10H3V7z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "9.94", r: "1.95" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 13.4c-1.3 0-3.89.65-3.89 1.95V16h7.78v-.65c0-1.3-2.59-1.95-3.89-1.95z" -}, "3")], 'RecentActorsTwoTone'); \ No newline at end of file +}, "3")], 'RecentActorsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Recommend.js b/packages/material-ui-icons/lib/Recommend.js index 3c335a34d1163c..17f15a1d92c2f1 100644 --- a/packages/material-ui-icons/lib/Recommend.js +++ b/packages/material-ui-icons/lib/Recommend.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z" -}), 'Recommend'); \ No newline at end of file +}), 'Recommend'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecommendOutlined.js b/packages/material-ui-icons/lib/RecommendOutlined.js index 7202cb6401f5c1..d6be7f3326edbb 100644 --- a/packages/material-ui-icons/lib/RecommendOutlined.js +++ b/packages/material-ui-icons/lib/RecommendOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10h-4.59l.58-3.41v-.2c-.01-.26-.12-.51-.3-.7L12 5l-4.6 5c-.27.26-.42.62-.4 1v5c0 1.1.9 2 2 2h5.5c.56.03 1.08-.29 1.3-.8l2.1-4.9c.08-.15.12-.33.1-.5V11c0-.55-.45-1-1-1z" -}, "1")], 'RecommendOutlined'); \ No newline at end of file +}, "1")], 'RecommendOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecommendRounded.js b/packages/material-ui-icons/lib/RecommendRounded.js index 7bffc80ca7ac01..efa87076f1e7c8 100644 --- a/packages/material-ui-icons/lib/RecommendRounded.js +++ b/packages/material-ui-icons/lib/RecommendRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 9.8c.02.17-.02.35-.1.5l-2.1 4.9c-.22.51-.74.83-1.3.8H9c-1.1 0-2-.9-2-2v-5c-.02-.38.13-.74.4-1L12 5l.69.69c.18.19.29.44.3.7v.2L12.41 10H17c.55 0 1 .45 1 1v.8z" -}), 'RecommendRounded'); \ No newline at end of file +}), 'RecommendRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecommendSharp.js b/packages/material-ui-icons/lib/RecommendSharp.js index 4da3fd949d2796..e2cbcd1a349891 100644 --- a/packages/material-ui-icons/lib/RecommendSharp.js +++ b/packages/material-ui-icons/lib/RecommendSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.05L15.46 18H7v-7.56L12 5l1 1v.53L12.41 10H18v2.05z" -}), 'RecommendSharp'); \ No newline at end of file +}), 'RecommendSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecommendTwoTone.js b/packages/material-ui-icons/lib/RecommendTwoTone.js index a0ccf2d1ab9d12..4d74c556f5f956 100644 --- a/packages/material-ui-icons/lib/RecommendTwoTone.js +++ b/packages/material-ui-icons/lib/RecommendTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5.9 8.3-2.1 4.9c-.22.51-.74.83-1.3.8H9c-1.1 0-2-.9-2-2v-5c-.02-.38.13-.74.4-1L12 5l.69.69c.18.19.29.44.3.7v.2L12.41 10H17c.55 0 1 .45 1 1v.8c.02.17-.02.35-.1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10h-4.59l.58-3.41v-.2c-.01-.26-.12-.51-.3-.7L12 5l-4.6 5c-.27.26-.42.62-.4 1v5c0 1.1.9 2 2 2h5.5c.56.03 1.08-.29 1.3-.8l2.1-4.9c.08-.15.12-.33.1-.5V11c0-.55-.45-1-1-1z" -}, "2")], 'RecommendTwoTone'); \ No newline at end of file +}, "2")], 'RecommendTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecordVoiceOver.js b/packages/material-ui-icons/lib/RecordVoiceOver.js index 3a28fd61bbbbf6..f96e77138f7090 100644 --- a/packages/material-ui-icons/lib/RecordVoiceOver.js +++ b/packages/material-ui-icons/lib/RecordVoiceOver.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "9", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" -}, "1")], 'RecordVoiceOver'); \ No newline at end of file +}, "1")], 'RecordVoiceOver'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecordVoiceOverOutlined.js b/packages/material-ui-icons/lib/RecordVoiceOverOutlined.js index f42985951e5551..c8154e4413bbb1 100644 --- a/packages/material-ui-icons/lib/RecordVoiceOverOutlined.js +++ b/packages/material-ui-icons/lib/RecordVoiceOverOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM15.08 7.05c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" -}), 'RecordVoiceOverOutlined'); \ No newline at end of file +}), 'RecordVoiceOverOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecordVoiceOverRounded.js b/packages/material-ui-icons/lib/RecordVoiceOverRounded.js index 6096a30d190ff0..1a8a701ede3ce2 100644 --- a/packages/material-ui-icons/lib/RecordVoiceOverRounded.js +++ b/packages/material-ui-icons/lib/RecordVoiceOverRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "9", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zm6.47-7.23c.32.79.32 1.67 0 2.46-.19.47-.11 1 .25 1.36l.03.03c.58.58 1.57.46 1.95-.27.76-1.45.76-3.15-.02-4.66-.38-.74-1.38-.88-1.97-.29l-.01.01c-.34.35-.42.89-.23 1.36zm3.71-4.88c-.4.4-.46 1.02-.13 1.48 1.97 2.74 1.96 6.41-.03 9.25-.32.45-.25 1.07.14 1.46l.03.03c.49.49 1.32.45 1.74-.1 2.75-3.54 2.76-8.37 0-12.02-.42-.55-1.26-.59-1.75-.1z" -}, "1")], 'RecordVoiceOverRounded'); \ No newline at end of file +}, "1")], 'RecordVoiceOverRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecordVoiceOverSharp.js b/packages/material-ui-icons/lib/RecordVoiceOverSharp.js index a1dbb2433b1826..72e343e1731979 100644 --- a/packages/material-ui-icons/lib/RecordVoiceOverSharp.js +++ b/packages/material-ui-icons/lib/RecordVoiceOverSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "9", r: "4" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm6.08-7.95c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" -}, "1")], 'RecordVoiceOverSharp'); \ No newline at end of file +}, "1")], 'RecordVoiceOverSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RecordVoiceOverTwoTone.js b/packages/material-ui-icons/lib/RecordVoiceOverTwoTone.js index 134b529536dda0..ef78775ff5e779 100644 --- a/packages/material-ui-icons/lib/RecordVoiceOverTwoTone.js +++ b/packages/material-ui-icons/lib/RecordVoiceOverTwoTone.js @@ -1,15 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsxs("g", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsxs)("g", { opacity: ".3", - children: [/*#__PURE__*/_jsx("circle", { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "9", r: "2" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z" })] -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM16.76 5.36l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" -}, "1")], 'RecordVoiceOverTwoTone'); \ No newline at end of file +}, "1")], 'RecordVoiceOverTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Reddit.js b/packages/material-ui-icons/lib/Reddit.js index b8cd2c36565f19..fcd48ca975f019 100644 --- a/packages/material-ui-icons/lib/Reddit.js +++ b/packages/material-ui-icons/lib/Reddit.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12.14a2.19 2.19 0 0 0-3.71-1.57 10.93 10.93 0 0 0-5.86-1.87l1-4.7 3.27.71a1.56 1.56 0 1 0 .16-.76l-3.64-.77c-.11-.02-.22 0-.29.06-.09.05-.14.14-.16.26l-1.11 5.22c-2.33.07-4.43.78-5.95 1.86A2.2 2.2 0 0 0 4.19 10a2.16 2.16 0 0 0-.9 4.15 3.6 3.6 0 0 0-.05.66c0 3.37 3.92 6.12 8.76 6.12s8.76-2.73 8.76-6.12c0-.21-.01-.44-.05-.66A2.21 2.21 0 0 0 22 12.14M7 13.7c0-.86.68-1.56 1.54-1.56s1.56.7 1.56 1.56a1.56 1.56 0 0 1-1.56 1.56c-.86.02-1.54-.7-1.54-1.56m8.71 4.14C14.63 18.92 12.59 19 12 19c-.61 0-2.65-.1-3.71-1.16a.4.4 0 0 1 0-.57.4.4 0 0 1 .57 0c.68.68 2.14.91 3.14.91s2.47-.23 3.14-.91a.4.4 0 0 1 .57 0c.14.16.14.41 0 .57m-.29-2.56c-.86 0-1.56-.7-1.56-1.56a1.56 1.56 0 0 1 1.56-1.56c.86 0 1.58.7 1.58 1.56a1.6 1.6 0 0 1-1.58 1.56z" -}), 'Reddit'); \ No newline at end of file +}), 'Reddit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Redeem.js b/packages/material-ui-icons/lib/Redeem.js index 3d8b6302806c8d..1ca10fba9b9c79 100644 --- a/packages/material-ui-icons/lib/Redeem.js +++ b/packages/material-ui-icons/lib/Redeem.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" -}), 'Redeem'); \ No newline at end of file +}), 'Redeem'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedeemOutlined.js b/packages/material-ui-icons/lib/RedeemOutlined.js index 8b901433b4f342..822f59be1e1a02 100644 --- a/packages/material-ui-icons/lib/RedeemOutlined.js +++ b/packages/material-ui-icons/lib/RedeemOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" -}), 'RedeemOutlined'); \ No newline at end of file +}), 'RedeemOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedeemRounded.js b/packages/material-ui-icons/lib/RedeemRounded.js index 85a0d9243be5ab..48a358939b4656 100644 --- a/packages/material-ui-icons/lib/RedeemRounded.js +++ b/packages/material-ui-icons/lib/RedeemRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm10 15H5c-.55 0-1-.45-1-1v-1h16v1c0 .55-.45 1-1 1zm1-5H4V9c0-.55.45-1 1-1h4.08L7.6 10.02c-.33.45-.23 1.08.22 1.4.44.32 1.07.22 1.39-.22L12 7.4l2.79 3.8c.32.44.95.54 1.39.22.45-.32.55-.95.22-1.4L14.92 8H19c.55 0 1 .45 1 1v5z" -}), 'RedeemRounded'); \ No newline at end of file +}), 'RedeemRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedeemSharp.js b/packages/material-ui-icons/lib/RedeemSharp.js index 25d10f3895e1e6..60c6b328c6ce60 100644 --- a/packages/material-ui-icons/lib/RedeemSharp.js +++ b/packages/material-ui-icons/lib/RedeemSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6h-4.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2v15h20V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" -}), 'RedeemSharp'); \ No newline at end of file +}), 'RedeemSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedeemTwoTone.js b/packages/material-ui-icons/lib/RedeemTwoTone.js index 76475fa4aded0d..9cfcba2d2ea9d2 100644 --- a/packages/material-ui-icons/lib/RedeemTwoTone.js +++ b/packages/material-ui-icons/lib/RedeemTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h16v2H4zm13-6.17L15.38 12 13 8.76 12 7.4l-1 1.36L8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" -}, "1")], 'RedeemTwoTone'); \ No newline at end of file +}, "1")], 'RedeemTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Redo.js b/packages/material-ui-icons/lib/Redo.js index 115dbfe2b34d50..336541569d41d9 100644 --- a/packages/material-ui-icons/lib/Redo.js +++ b/packages/material-ui-icons/lib/Redo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" -}), 'Redo'); \ No newline at end of file +}), 'Redo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedoOutlined.js b/packages/material-ui-icons/lib/RedoOutlined.js index 5ea884fc4f0117..b8e7f14414fa60 100644 --- a/packages/material-ui-icons/lib/RedoOutlined.js +++ b/packages/material-ui-icons/lib/RedoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" -}), 'RedoOutlined'); \ No newline at end of file +}), 'RedoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedoRounded.js b/packages/material-ui-icons/lib/RedoRounded.js index cae06d29dd2443..a0f88360f33936 100644 --- a/packages/material-ui-icons/lib/RedoRounded.js +++ b/packages/material-ui-icons/lib/RedoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.16 0-7.74 2.42-9.44 5.93-.32.67.04 1.47.75 1.71.59.2 1.23-.08 1.5-.64 1.3-2.66 4.03-4.5 7.19-4.5 1.95 0 3.73.72 5.12 1.88l-1.91 1.91c-.63.63-.19 1.71.7 1.71H21c.55 0 1-.45 1-1V9.41c0-.89-1.08-1.34-1.71-.71l-1.89 1.9z" -}), 'RedoRounded'); \ No newline at end of file +}), 'RedoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedoSharp.js b/packages/material-ui-icons/lib/RedoSharp.js index ca1f2ebedc7d44..731b0fa2f16962 100644 --- a/packages/material-ui-icons/lib/RedoSharp.js +++ b/packages/material-ui-icons/lib/RedoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" -}), 'RedoSharp'); \ No newline at end of file +}), 'RedoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RedoTwoTone.js b/packages/material-ui-icons/lib/RedoTwoTone.js index fa782f90c32ea6..5f62c78473412b 100644 --- a/packages/material-ui-icons/lib/RedoTwoTone.js +++ b/packages/material-ui-icons/lib/RedoTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" -}), 'RedoTwoTone'); \ No newline at end of file +}), 'RedoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReduceCapacity.js b/packages/material-ui-icons/lib/ReduceCapacity.js index 7ea939aea8b308..5eaaad8f1f01e4 100644 --- a/packages/material-ui-icons/lib/ReduceCapacity.js +++ b/packages/material-ui-icons/lib/ReduceCapacity.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" -}), 'ReduceCapacity'); \ No newline at end of file +}), 'ReduceCapacity'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReduceCapacityOutlined.js b/packages/material-ui-icons/lib/ReduceCapacityOutlined.js index 2461062c04d206..ac510b0ce2b854 100644 --- a/packages/material-ui-icons/lib/ReduceCapacityOutlined.js +++ b/packages/material-ui-icons/lib/ReduceCapacityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" -}), 'ReduceCapacityOutlined'); \ No newline at end of file +}), 'ReduceCapacityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReduceCapacityRounded.js b/packages/material-ui-icons/lib/ReduceCapacityRounded.js index 7fbb028633bae2..566550c3accb7c 100644 --- a/packages/material-ui-icons/lib/ReduceCapacityRounded.js +++ b/packages/material-ui-icons/lib/ReduceCapacityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm2.79-9h-1.04v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75V13h-1.04c-.45 0-.67.54-.35.85l1.79 1.79c.2.2.51.2.71 0l1.79-1.79c.31-.31.09-.85-.36-.85z" -}), 'ReduceCapacityRounded'); \ No newline at end of file +}), 'ReduceCapacityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReduceCapacitySharp.js b/packages/material-ui-icons/lib/ReduceCapacitySharp.js index cee4036a459e3b..73a0ecd9eda98a 100644 --- a/packages/material-ui-icons/lib/ReduceCapacitySharp.js +++ b/packages/material-ui-icons/lib/ReduceCapacitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" -}), 'ReduceCapacitySharp'); \ No newline at end of file +}), 'ReduceCapacitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReduceCapacityTwoTone.js b/packages/material-ui-icons/lib/ReduceCapacityTwoTone.js index 41e2a9e32a2c6e..dbad1a3431211d 100644 --- a/packages/material-ui-icons/lib/ReduceCapacityTwoTone.js +++ b/packages/material-ui-icons/lib/ReduceCapacityTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" -}), 'ReduceCapacityTwoTone'); \ No newline at end of file +}), 'ReduceCapacityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Refresh.js b/packages/material-ui-icons/lib/Refresh.js index e2a5f90c20064b..172f180e0cb4cf 100644 --- a/packages/material-ui-icons/lib/Refresh.js +++ b/packages/material-ui-icons/lib/Refresh.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" -}), 'Refresh'); \ No newline at end of file +}), 'Refresh'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RefreshOutlined.js b/packages/material-ui-icons/lib/RefreshOutlined.js index 7a0a5b51b381f0..244bff7dccb1b0 100644 --- a/packages/material-ui-icons/lib/RefreshOutlined.js +++ b/packages/material-ui-icons/lib/RefreshOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" -}), 'RefreshOutlined'); \ No newline at end of file +}), 'RefreshOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RefreshRounded.js b/packages/material-ui-icons/lib/RefreshRounded.js index ad760bcb7a8a05..3979e47f9adc5a 100644 --- a/packages/material-ui-icons/lib/RefreshRounded.js +++ b/packages/material-ui-icons/lib/RefreshRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 6.35c-1.63-1.63-3.94-2.57-6.48-2.31-3.67.37-6.69 3.35-7.1 7.02C3.52 15.91 7.27 20 12 20c3.19 0 5.93-1.87 7.21-4.56.32-.67-.16-1.44-.9-1.44-.37 0-.72.2-.88.53-1.13 2.43-3.84 3.97-6.8 3.31-2.22-.49-4.01-2.3-4.48-4.52C5.31 9.44 8.26 6 12 6c1.66 0 3.14.69 4.22 1.78l-1.51 1.51c-.63.63-.19 1.71.7 1.71H19c.55 0 1-.45 1-1V6.41c0-.89-1.08-1.34-1.71-.71l-.64.65z" -}), 'RefreshRounded'); \ No newline at end of file +}), 'RefreshRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RefreshSharp.js b/packages/material-ui-icons/lib/RefreshSharp.js index ab746b58bdb0dc..4e4de9ff7df6a1 100644 --- a/packages/material-ui-icons/lib/RefreshSharp.js +++ b/packages/material-ui-icons/lib/RefreshSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" -}), 'RefreshSharp'); \ No newline at end of file +}), 'RefreshSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RefreshTwoTone.js b/packages/material-ui-icons/lib/RefreshTwoTone.js index 2e8f2c852d58e1..38525f67f42efe 100644 --- a/packages/material-ui-icons/lib/RefreshTwoTone.js +++ b/packages/material-ui-icons/lib/RefreshTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" -}), 'RefreshTwoTone'); \ No newline at end of file +}), 'RefreshTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RememberMe.js b/packages/material-ui-icons/lib/RememberMe.js index 4136756ef2df35..aaf757617086d7 100644 --- a/packages/material-ui-icons/lib/RememberMe.js +++ b/packages/material-ui-icons/lib/RememberMe.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "10", r: "3" -}, "1")], 'RememberMe'); \ No newline at end of file +}, "1")], 'RememberMe'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RememberMeOutlined.js b/packages/material-ui-icons/lib/RememberMeOutlined.js index 0d8d0944a3936b..fc2a1befc1fd15 100644 --- a/packages/material-ui-icons/lib/RememberMeOutlined.js +++ b/packages/material-ui-icons/lib/RememberMeOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 20H7v-1h10v1zm0-3H7v-.48c1.47-.99 3.22-1.52 5-1.52s3.53.53 5 1.52V18zm0-2.79c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21zM17 4H7V3h10v1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "1")], 'RememberMeOutlined'); \ No newline at end of file +}, "1")], 'RememberMeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RememberMeRounded.js b/packages/material-ui-icons/lib/RememberMeRounded.js index 6706404a901028..ef1111211e8fae 100644 --- a/packages/material-ui-icons/lib/RememberMeRounded.js +++ b/packages/material-ui-icons/lib/RememberMeRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "10", r: "3" -}, "1")], 'RememberMeRounded'); \ No newline at end of file +}, "1")], 'RememberMeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RememberMeSharp.js b/packages/material-ui-icons/lib/RememberMeSharp.js index f451d28cb9b6d5..415d090b304f9e 100644 --- a/packages/material-ui-icons/lib/RememberMeSharp.js +++ b/packages/material-ui-icons/lib/RememberMeSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1H5v22h14V1zm-2 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "10", r: "3" -}, "1")], 'RememberMeSharp'); \ No newline at end of file +}, "1")], 'RememberMeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RememberMeTwoTone.js b/packages/material-ui-icons/lib/RememberMeTwoTone.js index f2eb14b3a08046..844a51278c8bcf 100644 --- a/packages/material-ui-icons/lib/RememberMeTwoTone.js +++ b/packages/material-ui-icons/lib/RememberMeTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20h10v1H7zm0-2.48V18h10v-.48c-1.47-.99-3.22-1.52-5-1.52s-3.53.53-5 1.52z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "10", r: "1", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h10v1H7z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 20H7v-1h10v1zm0-3H7v-.48c1.47-.99 3.22-1.52 5-1.52s3.53.53 5 1.52V18zm0-2.79c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21zM17 4H7V3h10v1z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "4")], 'RememberMeTwoTone'); \ No newline at end of file +}, "4")], 'RememberMeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Remove.js b/packages/material-ui-icons/lib/Remove.js index 1b97d631017a7c..653dc20730db27 100644 --- a/packages/material-ui-icons/lib/Remove.js +++ b/packages/material-ui-icons/lib/Remove.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13H5v-2h14v2z" -}), 'Remove'); \ No newline at end of file +}), 'Remove'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircle.js b/packages/material-ui-icons/lib/RemoveCircle.js index 7f76b72ff27585..a6f8f83ff3f299 100644 --- a/packages/material-ui-icons/lib/RemoveCircle.js +++ b/packages/material-ui-icons/lib/RemoveCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" -}), 'RemoveCircle'); \ No newline at end of file +}), 'RemoveCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleOutline.js b/packages/material-ui-icons/lib/RemoveCircleOutline.js index ed00f5c762c268..a84ac4f7c8a61d 100644 --- a/packages/material-ui-icons/lib/RemoveCircleOutline.js +++ b/packages/material-ui-icons/lib/RemoveCircleOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'RemoveCircleOutline'); \ No newline at end of file +}), 'RemoveCircleOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleOutlineOutlined.js b/packages/material-ui-icons/lib/RemoveCircleOutlineOutlined.js index bf6967a064c05b..85e0d27de05e9d 100644 --- a/packages/material-ui-icons/lib/RemoveCircleOutlineOutlined.js +++ b/packages/material-ui-icons/lib/RemoveCircleOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'RemoveCircleOutlineOutlined'); \ No newline at end of file +}), 'RemoveCircleOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleOutlineRounded.js b/packages/material-ui-icons/lib/RemoveCircleOutlineRounded.js index d1a4762da7771a..83ee0013bcd632 100644 --- a/packages/material-ui-icons/lib/RemoveCircleOutlineRounded.js +++ b/packages/material-ui-icons/lib/RemoveCircleOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 12c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm5-10C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'RemoveCircleOutlineRounded'); \ No newline at end of file +}), 'RemoveCircleOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleOutlineSharp.js b/packages/material-ui-icons/lib/RemoveCircleOutlineSharp.js index 0eead85f012b56..849327ae2724ae 100644 --- a/packages/material-ui-icons/lib/RemoveCircleOutlineSharp.js +++ b/packages/material-ui-icons/lib/RemoveCircleOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'RemoveCircleOutlineSharp'); \ No newline at end of file +}), 'RemoveCircleOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/RemoveCircleOutlineTwoTone.js index 17c2ca7ffa08c2..6cc5f5ccea3424 100644 --- a/packages/material-ui-icons/lib/RemoveCircleOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveCircleOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}), 'RemoveCircleOutlineTwoTone'); \ No newline at end of file +}), 'RemoveCircleOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleOutlined.js b/packages/material-ui-icons/lib/RemoveCircleOutlined.js index 856451ba2f2f01..2de4b15e697a16 100644 --- a/packages/material-ui-icons/lib/RemoveCircleOutlined.js +++ b/packages/material-ui-icons/lib/RemoveCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" -}), 'RemoveCircleOutlined'); \ No newline at end of file +}), 'RemoveCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleRounded.js b/packages/material-ui-icons/lib/RemoveCircleRounded.js index c8376850a7c3e5..281155f088145e 100644 --- a/packages/material-ui-icons/lib/RemoveCircleRounded.js +++ b/packages/material-ui-icons/lib/RemoveCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'RemoveCircleRounded'); \ No newline at end of file +}), 'RemoveCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleSharp.js b/packages/material-ui-icons/lib/RemoveCircleSharp.js index f34375d8694a0c..567ede5b595717 100644 --- a/packages/material-ui-icons/lib/RemoveCircleSharp.js +++ b/packages/material-ui-icons/lib/RemoveCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" -}), 'RemoveCircleSharp'); \ No newline at end of file +}), 'RemoveCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveCircleTwoTone.js b/packages/material-ui-icons/lib/RemoveCircleTwoTone.js index f27069fa506ffb..dd4fa972779847 100644 --- a/packages/material-ui-icons/lib/RemoveCircleTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'RemoveCircleTwoTone'); \ No newline at end of file +}, "1")], 'RemoveCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveDone.js b/packages/material-ui-icons/lib/RemoveDone.js index 28a6232a8aa1ee..11a0d9d5013a3b 100644 --- a/packages/material-ui-icons/lib/RemoveDone.js +++ b/packages/material-ui-icons/lib/RemoveDone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1.79 12 5.58 5.59L5.96 19 .37 13.41 1.79 12zm.45-7.78L12.9 14.89l-1.28 1.28L7.44 12l-1.41 1.41L11.62 19l2.69-2.69 4.89 4.89 1.41-1.41L3.65 2.81 2.24 4.22zm14.9 9.27L23.62 7 22.2 5.59l-6.48 6.48 1.42 1.42zM17.96 7l-1.41-1.41-3.65 3.66 1.41 1.41L17.96 7z" -}), 'RemoveDone'); \ No newline at end of file +}), 'RemoveDone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveDoneOutlined.js b/packages/material-ui-icons/lib/RemoveDoneOutlined.js index 3c90183de298e3..127f895ca9017b 100644 --- a/packages/material-ui-icons/lib/RemoveDoneOutlined.js +++ b/packages/material-ui-icons/lib/RemoveDoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.84 1.98 3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z" -}), 'RemoveDoneOutlined'); \ No newline at end of file +}), 'RemoveDoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveDoneRounded.js b/packages/material-ui-icons/lib/RemoveDoneRounded.js index 566c7917275fb6..6ef51a9e12a1a1 100644 --- a/packages/material-ui-icons/lib/RemoveDoneRounded.js +++ b/packages/material-ui-icons/lib/RemoveDoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.14 2.69c-.39.39-.39 1.02 0 1.41l9.67 9.67-1.41 1.41-3.54-3.53a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.24 4.24c.39.39 1.02.39 1.41 0l2.12-2.12 5.89 5.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.55 2.69a.9959.9959 0 0 0-1.41 0zm13.91 9.67 4.24-4.24c.39-.39.39-1.03-.01-1.42-.39-.38-1.02-.38-1.41.01l-4.24 4.24 1.42 1.41zM16.64 6.7a.9959.9959 0 0 0-1.41 0l-1.42 1.42 1.41 1.41 1.42-1.42c.39-.39.39-1.02 0-1.41zM1.79 13.06l4.95 4.95 1.41-1.41-4.95-4.95a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41z" -}), 'RemoveDoneRounded'); \ No newline at end of file +}), 'RemoveDoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveDoneSharp.js b/packages/material-ui-icons/lib/RemoveDoneSharp.js index 1463137929afd3..240e4c7651126b 100644 --- a/packages/material-ui-icons/lib/RemoveDoneSharp.js +++ b/packages/material-ui-icons/lib/RemoveDoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.84 1.98 3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z" -}), 'RemoveDoneSharp'); \ No newline at end of file +}), 'RemoveDoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveDoneTwoTone.js b/packages/material-ui-icons/lib/RemoveDoneTwoTone.js index fe3b2e5f82e4a2..74f7f31f6e5dc8 100644 --- a/packages/material-ui-icons/lib/RemoveDoneTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveDoneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.84 1.98 3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z" -}), 'RemoveDoneTwoTone'); \ No newline at end of file +}), 'RemoveDoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveFromQueue.js b/packages/material-ui-icons/lib/RemoveFromQueue.js index 6fba560435d72e..3f7e4f0b3c010f 100644 --- a/packages/material-ui-icons/lib/RemoveFromQueue.js +++ b/packages/material-ui-icons/lib/RemoveFromQueue.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z" -}), 'RemoveFromQueue'); \ No newline at end of file +}), 'RemoveFromQueue'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveFromQueueOutlined.js b/packages/material-ui-icons/lib/RemoveFromQueueOutlined.js index c9b254343e10b2..55b7124611aa2b 100644 --- a/packages/material-ui-icons/lib/RemoveFromQueueOutlined.js +++ b/packages/material-ui-icons/lib/RemoveFromQueueOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z" -}), 'RemoveFromQueueOutlined'); \ No newline at end of file +}), 'RemoveFromQueueOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveFromQueueRounded.js b/packages/material-ui-icons/lib/RemoveFromQueueRounded.js index e04c2695eb0584..ae7abe73232897 100644 --- a/packages/material-ui-icons/lib/RemoveFromQueueRounded.js +++ b/packages/material-ui-icons/lib/RemoveFromQueueRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-4-6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1z" -}), 'RemoveFromQueueRounded'); \ No newline at end of file +}), 'RemoveFromQueueRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveFromQueueSharp.js b/packages/material-ui-icons/lib/RemoveFromQueueSharp.js index 26a512fcaf3f3d..c5a2a2a6982a8a 100644 --- a/packages/material-ui-icons/lib/RemoveFromQueueSharp.js +++ b/packages/material-ui-icons/lib/RemoveFromQueueSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2H8v-2h8z" -}), 'RemoveFromQueueSharp'); \ No newline at end of file +}), 'RemoveFromQueueSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveFromQueueTwoTone.js b/packages/material-ui-icons/lib/RemoveFromQueueTwoTone.js index efbf6fa2eabd4f..9983f4e71f228f 100644 --- a/packages/material-ui-icons/lib/RemoveFromQueueTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveFromQueueTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18V5H3v12zm5-7h8v2H8v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zM8 10h8v2H8z" -}, "1")], 'RemoveFromQueueTwoTone'); \ No newline at end of file +}, "1")], 'RemoveFromQueueTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveModerator.js b/packages/material-ui-icons/lib/RemoveModerator.js index a8dbe470f3f016..fd7d4cd9d45c05 100644 --- a/packages/material-ui-icons/lib/RemoveModerator.js +++ b/packages/material-ui-icons/lib/RemoveModerator.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.27 21.73-3.54-3.55L5.78 5.23 2.27 1.72 1 2.99 3.01 5H3v6c0 5.55 3.84 10.74 9 12 2.16-.53 4.08-1.76 5.6-3.41L21 23l1.27-1.27zM13 9.92l6.67 6.67C20.51 14.87 21 12.96 21 11V5l-9-4-5.48 2.44L11 7.92l2 2z" -}), 'RemoveModerator'); \ No newline at end of file +}), 'RemoveModerator'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveModeratorOutlined.js b/packages/material-ui-icons/lib/RemoveModeratorOutlined.js index a7a76c8bb63dd5..341404a34bde32 100644 --- a/packages/material-ui-icons/lib/RemoveModeratorOutlined.js +++ b/packages/material-ui-icons/lib/RemoveModeratorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 4.14 6 2.25v4.7c0 1.19-.23 2.36-.64 3.44l1.51 1.51c.72-1.53 1.13-3.22 1.13-4.95V5l-8-3-5.22 1.96 1.55 1.55L12 4.14zM2.81 2.81 1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81zM12 19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14 9.14c-.9.88-1.97 1.57-3.14 1.95z" -}), 'RemoveModeratorOutlined'); \ No newline at end of file +}), 'RemoveModeratorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveModeratorRounded.js b/packages/material-ui-icons/lib/RemoveModeratorRounded.js index c58b2614231aa1..bdc9d3e3ad2b6b 100644 --- a/packages/material-ui-icons/lib/RemoveModeratorRounded.js +++ b/packages/material-ui-icons/lib/RemoveModeratorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11.09v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.17-.95-.17-1.4 0L6.78 3.96l12.09 12.09c.72-1.53 1.13-3.22 1.13-4.96zm.49 9.4L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4 6.83v4.26c0 4.83 3.13 9.37 7.43 10.75.37.12.77.12 1.14 0 1.49-.48 2.84-1.35 3.97-2.47l2.53 2.53c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" -}), 'RemoveModeratorRounded'); \ No newline at end of file +}), 'RemoveModeratorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveModeratorSharp.js b/packages/material-ui-icons/lib/RemoveModeratorSharp.js index 16b11f9b9f474a..48274c52d6ceb7 100644 --- a/packages/material-ui-icons/lib/RemoveModeratorSharp.js +++ b/packages/material-ui-icons/lib/RemoveModeratorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11.09V5l-8-3-5.22 1.96 12.09 12.09c.72-1.53 1.13-3.22 1.13-4.96zM2.81 2.81 1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81z" -}), 'RemoveModeratorSharp'); \ No newline at end of file +}), 'RemoveModeratorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveModeratorTwoTone.js b/packages/material-ui-icons/lib/RemoveModeratorTwoTone.js index 8ef3180976e8d2..b9b109dec225ce 100644 --- a/packages/material-ui-icons/lib/RemoveModeratorTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveModeratorTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 11.09c0 4 2.55 7.7 6 8.83 1.17-.38 2.24-1.07 3.14-1.95L6 8.83v2.26zm6-6.95L8.34 5.51l9.02 9.02c.41-1.08.64-2.25.64-3.44v-4.7l-6-2.25z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 4.14 6 2.25v4.7c0 1.19-.23 2.36-.64 3.44l1.51 1.51c.72-1.53 1.13-3.22 1.13-4.95V5l-8-3-5.22 1.96 1.55 1.55L12 4.14zM2.81 2.81 1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81zM12 19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14 9.14c-.9.88-1.97 1.57-3.14 1.95z" -}, "1")], 'RemoveModeratorTwoTone'); \ No newline at end of file +}, "1")], 'RemoveModeratorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveOutlined.js b/packages/material-ui-icons/lib/RemoveOutlined.js index 941a3e8a2cacc4..a5616f916b0ea8 100644 --- a/packages/material-ui-icons/lib/RemoveOutlined.js +++ b/packages/material-ui-icons/lib/RemoveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13H5v-2h14v2z" -}), 'RemoveOutlined'); \ No newline at end of file +}), 'RemoveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveRedEye.js b/packages/material-ui-icons/lib/RemoveRedEye.js index 0b09f004790d58..f9f47265509b74 100644 --- a/packages/material-ui-icons/lib/RemoveRedEye.js +++ b/packages/material-ui-icons/lib/RemoveRedEye.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'RemoveRedEye'); \ No newline at end of file +}), 'RemoveRedEye'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveRedEyeOutlined.js b/packages/material-ui-icons/lib/RemoveRedEyeOutlined.js index 23014b504ee071..51ee152baf68e1 100644 --- a/packages/material-ui-icons/lib/RemoveRedEyeOutlined.js +++ b/packages/material-ui-icons/lib/RemoveRedEyeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c3.79 0 7.17 2.13 8.82 5.5-1.65 3.37-5.02 5.5-8.82 5.5S4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5m0-2C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5m0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z" -}), 'RemoveRedEyeOutlined'); \ No newline at end of file +}), 'RemoveRedEyeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveRedEyeRounded.js b/packages/material-ui-icons/lib/RemoveRedEyeRounded.js index 377cb045b312fd..318e7291722880 100644 --- a/packages/material-ui-icons/lib/RemoveRedEyeRounded.js +++ b/packages/material-ui-icons/lib/RemoveRedEyeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'RemoveRedEyeRounded'); \ No newline at end of file +}), 'RemoveRedEyeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveRedEyeSharp.js b/packages/material-ui-icons/lib/RemoveRedEyeSharp.js index 73abd8ff7db2d7..f5373ddf753788 100644 --- a/packages/material-ui-icons/lib/RemoveRedEyeSharp.js +++ b/packages/material-ui-icons/lib/RemoveRedEyeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'RemoveRedEyeSharp'); \ No newline at end of file +}), 'RemoveRedEyeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveRedEyeTwoTone.js b/packages/material-ui-icons/lib/RemoveRedEyeTwoTone.js index 07976f102263ca..d8be93e8431367 100644 --- a/packages/material-ui-icons/lib/RemoveRedEyeTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveRedEyeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c-3.79 0-7.17 2.13-8.82 5.5 1.65 3.37 5.02 5.5 8.82 5.5s7.17-2.13 8.82-5.5C19.17 8.63 15.79 6.5 12 6.5zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7.5 12 7.5s4.5 2.02 4.5 4.5-2.02 4.5-4.5 4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.63 8.21 6.5 12 6.5s7.17 2.13 8.82 5.5c-1.65 3.37-5.03 5.5-8.82 5.5zm0-10c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}, "1")], 'RemoveRedEyeTwoTone'); \ No newline at end of file +}, "1")], 'RemoveRedEyeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveRounded.js b/packages/material-ui-icons/lib/RemoveRounded.js index 5a8b6e0f81ed3c..6453aa5a7bb8de 100644 --- a/packages/material-ui-icons/lib/RemoveRounded.js +++ b/packages/material-ui-icons/lib/RemoveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13H6c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'RemoveRounded'); \ No newline at end of file +}), 'RemoveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveSharp.js b/packages/material-ui-icons/lib/RemoveSharp.js index 467136e2baa99c..6cdd973224b42a 100644 --- a/packages/material-ui-icons/lib/RemoveSharp.js +++ b/packages/material-ui-icons/lib/RemoveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13H5v-2h14v2z" -}), 'RemoveSharp'); \ No newline at end of file +}), 'RemoveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveShoppingCart.js b/packages/material-ui-icons/lib/RemoveShoppingCart.js index cc6493270fcc11..3d022634f3a0e7 100644 --- a/packages/material-ui-icons/lib/RemoveShoppingCart.js +++ b/packages/material-ui-icons/lib/RemoveShoppingCart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.73 22.73 2.77 2.77 2 2l-.73-.73L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.27-1.27zM7.42 15c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h2.36l2 2H7.42zm8.13-2c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H6.54l9.01 9zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" -}), 'RemoveShoppingCart'); \ No newline at end of file +}), 'RemoveShoppingCart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveShoppingCartOutlined.js b/packages/material-ui-icons/lib/RemoveShoppingCartOutlined.js index 4c82d44031f624..1ea692d82b0be2 100644 --- a/packages/material-ui-icons/lib/RemoveShoppingCartOutlined.js +++ b/packages/material-ui-icons/lib/RemoveShoppingCartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.13 0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zM20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" -}), 'RemoveShoppingCartOutlined'); \ No newline at end of file +}), 'RemoveShoppingCartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveShoppingCartRounded.js b/packages/material-ui-icons/lib/RemoveShoppingCartRounded.js index 085df40c0a46ba..ab48c963881d77 100644 --- a/packages/material-ui-icons/lib/RemoveShoppingCartRounded.js +++ b/packages/material-ui-icons/lib/RemoveShoppingCartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M.71 1.83c-.39.39-.39 1.02 0 1.41l3.68 3.68 2.21 4.66-1.35 2.45c-.19.33-.28.73-.24 1.15.1 1.06 1.06 1.82 2.12 1.82h7.33l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84l2.13 2.13c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 1.83a.9959.9959 0 0 0-1.41 0zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" -}), 'RemoveShoppingCartRounded'); \ No newline at end of file +}), 'RemoveShoppingCartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveShoppingCartSharp.js b/packages/material-ui-icons/lib/RemoveShoppingCartSharp.js index 3aef5b959ff96a..44fcc498fa977c 100644 --- a/packages/material-ui-icons/lib/RemoveShoppingCartSharp.js +++ b/packages/material-ui-icons/lib/RemoveShoppingCartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.13 0 2.54l4.39 4.39 2.21 4.66L3.62 17h10.84l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06h.73L21.7 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" -}), 'RemoveShoppingCartSharp'); \ No newline at end of file +}), 'RemoveShoppingCartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveShoppingCartTwoTone.js b/packages/material-ui-icons/lib/RemoveShoppingCartTwoTone.js index d6d3cebeb1964f..1d88fee70985e7 100644 --- a/packages/material-ui-icons/lib/RemoveShoppingCartTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveShoppingCartTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.41 1.13 0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.31 6H9.12l4.99 5h1.44z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" -}, "2")], 'RemoveShoppingCartTwoTone'); \ No newline at end of file +}, "2")], 'RemoveShoppingCartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RemoveTwoTone.js b/packages/material-ui-icons/lib/RemoveTwoTone.js index 4da2d481d8284c..864412ba8805dc 100644 --- a/packages/material-ui-icons/lib/RemoveTwoTone.js +++ b/packages/material-ui-icons/lib/RemoveTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13H5v-2h14v2z" -}), 'RemoveTwoTone'); \ No newline at end of file +}), 'RemoveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Reorder.js b/packages/material-ui-icons/lib/Reorder.js index 8453ea9c652a84..913956ded610cd 100644 --- a/packages/material-ui-icons/lib/Reorder.js +++ b/packages/material-ui-icons/lib/Reorder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" -}), 'Reorder'); \ No newline at end of file +}), 'Reorder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReorderOutlined.js b/packages/material-ui-icons/lib/ReorderOutlined.js index afe3a2269fdae1..274703c808cd85 100644 --- a/packages/material-ui-icons/lib/ReorderOutlined.js +++ b/packages/material-ui-icons/lib/ReorderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" -}), 'ReorderOutlined'); \ No newline at end of file +}), 'ReorderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReorderRounded.js b/packages/material-ui-icons/lib/ReorderRounded.js index 5e8422d8802b16..0d9df83f557fad 100644 --- a/packages/material-ui-icons/lib/ReorderRounded.js +++ b/packages/material-ui-icons/lib/ReorderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" -}), 'ReorderRounded'); \ No newline at end of file +}), 'ReorderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReorderSharp.js b/packages/material-ui-icons/lib/ReorderSharp.js index 7a75db56351133..69f483ef32f68e 100644 --- a/packages/material-ui-icons/lib/ReorderSharp.js +++ b/packages/material-ui-icons/lib/ReorderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" -}), 'ReorderSharp'); \ No newline at end of file +}), 'ReorderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReorderTwoTone.js b/packages/material-ui-icons/lib/ReorderTwoTone.js index 120cdba914b4be..1cab5a4b8ad9c9 100644 --- a/packages/material-ui-icons/lib/ReorderTwoTone.js +++ b/packages/material-ui-icons/lib/ReorderTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" -}), 'ReorderTwoTone'); \ No newline at end of file +}), 'ReorderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Repeat.js b/packages/material-ui-icons/lib/Repeat.js index 503c55e1c1123f..54c8d1466ae771 100644 --- a/packages/material-ui-icons/lib/Repeat.js +++ b/packages/material-ui-icons/lib/Repeat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" -}), 'Repeat'); \ No newline at end of file +}), 'Repeat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOn.js b/packages/material-ui-icons/lib/RepeatOn.js index 6eac9521c2c7ba..244dccc2d082c5 100644 --- a/packages/material-ui-icons/lib/RepeatOn.js +++ b/packages/material-ui-icons/lib/RepeatOn.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" -}), 'RepeatOn'); \ No newline at end of file +}), 'RepeatOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOnOutlined.js b/packages/material-ui-icons/lib/RepeatOnOutlined.js index f3a5a14dcf67a8..be9c550b0fff99 100644 --- a/packages/material-ui-icons/lib/RepeatOnOutlined.js +++ b/packages/material-ui-icons/lib/RepeatOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H6.83l1.58 1.58L7 22l-4-4 4-4 1.41 1.42L6.83 17H17v-4h2v6zm-2-9-1.41-1.42L17.17 7H7v4H5V5h12.17l-1.58-1.58L17 2l4 4-4 4z" -}), 'RepeatOnOutlined'); \ No newline at end of file +}), 'RepeatOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOnRounded.js b/packages/material-ui-icons/lib/RepeatOnRounded.js index ff32690f0dacaa..1dcf8b74ceeb1d 100644 --- a/packages/material-ui-icons/lib/RepeatOnRounded.js +++ b/packages/material-ui-icons/lib/RepeatOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 17c0 .55-.45 1-1 1H7v1.79c0 .45-.54.67-.85.36l-2.79-2.79c-.2-.2-.2-.51 0-.71l2.79-2.79c.31-.32.85-.1.85.35V17h10v-3c0-.55.45-1 1-1s1 .45 1 1v4zm1.64-11.65-2.79 2.79c-.31.32-.85.1-.85-.35V7H7v3c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1h11V3.21c0-.45.54-.67.85-.36l2.79 2.79c.2.2.2.51 0 .71z" -}), 'RepeatOnRounded'); \ No newline at end of file +}), 'RepeatOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOnSharp.js b/packages/material-ui-icons/lib/RepeatOnSharp.js index 41b76fdc74e71c..2e65a92e4eab47 100644 --- a/packages/material-ui-icons/lib/RepeatOnSharp.js +++ b/packages/material-ui-icons/lib/RepeatOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-2-9V7H7v4H5V5h12V2l4 4-4 4z" -}), 'RepeatOnSharp'); \ No newline at end of file +}), 'RepeatOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOnTwoTone.js b/packages/material-ui-icons/lib/RepeatOnTwoTone.js index b0d87f81a082f4..e7589106567175 100644 --- a/packages/material-ui-icons/lib/RepeatOnTwoTone.js +++ b/packages/material-ui-icons/lib/RepeatOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-2-9V7H7v4H5V5h12V2l4 4-4 4z" -}), 'RepeatOnTwoTone'); \ No newline at end of file +}), 'RepeatOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOne.js b/packages/material-ui-icons/lib/RepeatOne.js index 54cbe281ffe6d9..ab5255a909520c 100644 --- a/packages/material-ui-icons/lib/RepeatOne.js +++ b/packages/material-ui-icons/lib/RepeatOne.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" -}), 'RepeatOne'); \ No newline at end of file +}), 'RepeatOne'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneOn.js b/packages/material-ui-icons/lib/RepeatOneOn.js index a544d00658a2fa..6a5af13d78a672 100644 --- a/packages/material-ui-icons/lib/RepeatOneOn.js +++ b/packages/material-ui-icons/lib/RepeatOneOn.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" -}), 'RepeatOneOn'); \ No newline at end of file +}), 'RepeatOneOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneOnOutlined.js b/packages/material-ui-icons/lib/RepeatOneOnOutlined.js index 1228513d6f6372..b020904cc528d3 100644 --- a/packages/material-ui-icons/lib/RepeatOneOnOutlined.js +++ b/packages/material-ui-icons/lib/RepeatOneOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H6.83l1.58 1.58L7 22l-4-4 4-4 1.41 1.42L6.83 17H17v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5-1.41-1.42L17.17 7H7v4H5V5h12.17l-1.58-1.58L17 2l4 4-4 4z" -}), 'RepeatOneOnOutlined'); \ No newline at end of file +}), 'RepeatOneOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneOnRounded.js b/packages/material-ui-icons/lib/RepeatOneOnRounded.js index cb8860b2eea348..473622fb29ca79 100644 --- a/packages/material-ui-icons/lib/RepeatOneOnRounded.js +++ b/packages/material-ui-icons/lib/RepeatOneOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 17c0 .55-.45 1-1 1H7v1.79c0 .45-.54.67-.85.36l-2.79-2.79c-.2-.2-.2-.51 0-.71l2.79-2.79c.31-.32.85-.1.85.35V17h10v-3c0-.55.45-1 1-1s1 .45 1 1v4zm-8.25-7.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.5c.41 0 .75.34.75.75v4.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10.5h-.75zm9.89-4.15-2.79 2.79c-.31.32-.85.1-.85-.35V7H7v3c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1h11V3.21c0-.45.54-.67.85-.36l2.79 2.79c.2.2.2.51 0 .71z" -}), 'RepeatOneOnRounded'); \ No newline at end of file +}), 'RepeatOneOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneOnSharp.js b/packages/material-ui-icons/lib/RepeatOneOnSharp.js index 8c2d363f00aa96..710db1093d352c 100644 --- a/packages/material-ui-icons/lib/RepeatOneOnSharp.js +++ b/packages/material-ui-icons/lib/RepeatOneOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5V7H7v4H5V5h12V2l4 4-4 4z" -}), 'RepeatOneOnSharp'); \ No newline at end of file +}), 'RepeatOneOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneOnTwoTone.js b/packages/material-ui-icons/lib/RepeatOneOnTwoTone.js index 6cd2d38f8d1bab..eb2bbcff72d548 100644 --- a/packages/material-ui-icons/lib/RepeatOneOnTwoTone.js +++ b/packages/material-ui-icons/lib/RepeatOneOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5V7H7v4H5V5h12V2l4 4-4 4z" -}), 'RepeatOneOnTwoTone'); \ No newline at end of file +}), 'RepeatOneOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneOutlined.js b/packages/material-ui-icons/lib/RepeatOneOutlined.js index 47467a60b0a0c6..3e6d5b2b610257 100644 --- a/packages/material-ui-icons/lib/RepeatOneOutlined.js +++ b/packages/material-ui-icons/lib/RepeatOneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" -}), 'RepeatOneOutlined'); \ No newline at end of file +}), 'RepeatOneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneRounded.js b/packages/material-ui-icons/lib/RepeatOneRounded.js index 6dc64ad89465af..95179481507685 100644 --- a/packages/material-ui-icons/lib/RepeatOneRounded.js +++ b/packages/material-ui-icons/lib/RepeatOneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V5H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V7zm10 10H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v3zm-4-2.75V9.81c0-.45-.36-.81-.81-.81-.13 0-.25.03-.36.09l-1.49.74c-.21.1-.34.32-.34.55 0 .34.28.62.62.62h.88v3.25c0 .41.34.75.75.75s.75-.34.75-.75z" -}), 'RepeatOneRounded'); \ No newline at end of file +}), 'RepeatOneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneSharp.js b/packages/material-ui-icons/lib/RepeatOneSharp.js index ed404d5add545d..b47de004d1ca35 100644 --- a/packages/material-ui-icons/lib/RepeatOneSharp.js +++ b/packages/material-ui-icons/lib/RepeatOneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" -}), 'RepeatOneSharp'); \ No newline at end of file +}), 'RepeatOneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOneTwoTone.js b/packages/material-ui-icons/lib/RepeatOneTwoTone.js index 142126e477d062..c286cddca2ebf9 100644 --- a/packages/material-ui-icons/lib/RepeatOneTwoTone.js +++ b/packages/material-ui-icons/lib/RepeatOneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 15V9h-1l-2 1v1h1.5v4zm6-2h-2v4H7v-3l-4 4 4 4v-3h12zM17 2v3H5v6h2V7h10v3l4-4z" -}), 'RepeatOneTwoTone'); \ No newline at end of file +}), 'RepeatOneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatOutlined.js b/packages/material-ui-icons/lib/RepeatOutlined.js index cbbd0fcc0748ca..edffde2cb92e72 100644 --- a/packages/material-ui-icons/lib/RepeatOutlined.js +++ b/packages/material-ui-icons/lib/RepeatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" -}), 'RepeatOutlined'); \ No newline at end of file +}), 'RepeatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatRounded.js b/packages/material-ui-icons/lib/RepeatRounded.js index fac6bc522c81de..a0f799e9160ddf 100644 --- a/packages/material-ui-icons/lib/RepeatRounded.js +++ b/packages/material-ui-icons/lib/RepeatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V5H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V7zm10 10H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v3z" -}), 'RepeatRounded'); \ No newline at end of file +}), 'RepeatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatSharp.js b/packages/material-ui-icons/lib/RepeatSharp.js index 272029ec037470..62012650047197 100644 --- a/packages/material-ui-icons/lib/RepeatSharp.js +++ b/packages/material-ui-icons/lib/RepeatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" -}), 'RepeatSharp'); \ No newline at end of file +}), 'RepeatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RepeatTwoTone.js b/packages/material-ui-icons/lib/RepeatTwoTone.js index 2afd0f92569235..ac9b8186ee6db8 100644 --- a/packages/material-ui-icons/lib/RepeatTwoTone.js +++ b/packages/material-ui-icons/lib/RepeatTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 22v-3h12v-6h-2v4H7v-3l-4 4zM21 6l-4-4v3H5v6h2V7h10v3z" -}), 'RepeatTwoTone'); \ No newline at end of file +}), 'RepeatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay.js b/packages/material-ui-icons/lib/Replay.js index 5c30dc80d286b6..ad9348e5d07f95 100644 --- a/packages/material-ui-icons/lib/Replay.js +++ b/packages/material-ui-icons/lib/Replay.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" -}), 'Replay'); \ No newline at end of file +}), 'Replay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay10.js b/packages/material-ui-icons/lib/Replay10.js index 9615493a5cfefc..1229a8b38600d1 100644 --- a/packages/material-ui-icons/lib/Replay10.js +++ b/packages/material-ui-icons/lib/Replay10.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.89 16h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" -}, "1")], 'Replay10'); \ No newline at end of file +}, "1")], 'Replay10'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay10Outlined.js b/packages/material-ui-icons/lib/Replay10Outlined.js index d9672aa245eb6e..c544e7cd6efe17 100644 --- a/packages/material-ui-icons/lib/Replay10Outlined.js +++ b/packages/material-ui-icons/lib/Replay10Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" -}), 'Replay10Outlined'); \ No newline at end of file +}), 'Replay10Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay10Rounded.js b/packages/material-ui-icons/lib/Replay10Rounded.js index 3fae833a5e1d1e..98246165b4662d 100644 --- a/packages/material-ui-icons/lib/Replay10Rounded.js +++ b/packages/material-ui-icons/lib/Replay10Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 5V2.21c0-.45-.54-.67-.85-.35L7.35 5.65c-.2.2-.2.51 0 .71l3.79 3.79c.31.31.85.09.85-.35V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.06-.48-.48-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24.99-5.13-2.9-9.61-7.85-9.61zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" -}), 'Replay10Rounded'); \ No newline at end of file +}), 'Replay10Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay10Sharp.js b/packages/material-ui-icons/lib/Replay10Sharp.js index afbf55a498b2c1..54bd153e502fb8 100644 --- a/packages/material-ui-icons/lib/Replay10Sharp.js +++ b/packages/material-ui-icons/lib/Replay10Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" -}), 'Replay10Sharp'); \ No newline at end of file +}), 'Replay10Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay10TwoTone.js b/packages/material-ui-icons/lib/Replay10TwoTone.js index b6dc4463fa952e..0a832ca8bc8400 100644 --- a/packages/material-ui-icons/lib/Replay10TwoTone.js +++ b/packages/material-ui-icons/lib/Replay10TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" -}), 'Replay10TwoTone'); \ No newline at end of file +}), 'Replay10TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay30.js b/packages/material-ui-icons/lib/Replay30.js index 5f3fc3f986ac1f..a30614ff6bf67b 100644 --- a/packages/material-ui-icons/lib/Replay30.js +++ b/packages/material-ui-icons/lib/Replay30.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.56 13.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" -}, "1")], 'Replay30'); \ No newline at end of file +}, "1")], 'Replay30'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay30Outlined.js b/packages/material-ui-icons/lib/Replay30Outlined.js index 450f85089ecabb..702646b084feed 100644 --- a/packages/material-ui-icons/lib/Replay30Outlined.js +++ b/packages/material-ui-icons/lib/Replay30Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" -}), 'Replay30Outlined'); \ No newline at end of file +}), 'Replay30Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay30Rounded.js b/packages/material-ui-icons/lib/Replay30Rounded.js index 8799a8d8f3eaeb..c5c7fa42786e1f 100644 --- a/packages/material-ui-icons/lib/Replay30Rounded.js +++ b/packages/material-ui-icons/lib/Replay30Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.07-.48-.49-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24C20.84 9.48 16.94 5 12 5zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" -}), 'Replay30Rounded'); \ No newline at end of file +}), 'Replay30Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay30Sharp.js b/packages/material-ui-icons/lib/Replay30Sharp.js index 466a60b89e4a95..aa23e11615fd56 100644 --- a/packages/material-ui-icons/lib/Replay30Sharp.js +++ b/packages/material-ui-icons/lib/Replay30Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" -}), 'Replay30Sharp'); \ No newline at end of file +}), 'Replay30Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay30TwoTone.js b/packages/material-ui-icons/lib/Replay30TwoTone.js index 04e4cdea4de0f9..e3484536691001 100644 --- a/packages/material-ui-icons/lib/Replay30TwoTone.js +++ b/packages/material-ui-icons/lib/Replay30TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" -}), 'Replay30TwoTone'); \ No newline at end of file +}), 'Replay30TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay5.js b/packages/material-ui-icons/lib/Replay5.js index e583eebd5d7f7a..0f9286f4115de4 100644 --- a/packages/material-ui-icons/lib/Replay5.js +++ b/packages/material-ui-icons/lib/Replay5.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.69 13.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" -}, "1")], 'Replay5'); \ No newline at end of file +}, "1")], 'Replay5'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay5Outlined.js b/packages/material-ui-icons/lib/Replay5Outlined.js index dc93cffe472534..ddd53ce456d281 100644 --- a/packages/material-ui-icons/lib/Replay5Outlined.js +++ b/packages/material-ui-icons/lib/Replay5Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" -}), 'Replay5Outlined'); \ No newline at end of file +}), 'Replay5Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay5Rounded.js b/packages/material-ui-icons/lib/Replay5Rounded.js index 0aa0007a9edc06..ce36b6d29a492b 100644 --- a/packages/material-ui-icons/lib/Replay5Rounded.js +++ b/packages/material-ui-icons/lib/Replay5Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.26-2.14 3.99-4.39 4.53-3.64.88-6.93-1.6-7.42-4.96-.06-.49-.48-.86-.97-.86-.6 0-1.08.53-1 1.13.63 4.47 4.94 7.75 9.77 6.67 3.09-.69 5.39-3.08 5.99-6.19C20.84 9.48 16.94 5 12 5zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" -}), 'Replay5Rounded'); \ No newline at end of file +}), 'Replay5Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay5Sharp.js b/packages/material-ui-icons/lib/Replay5Sharp.js index 9825074ac89ca8..54afc542cad70a 100644 --- a/packages/material-ui-icons/lib/Replay5Sharp.js +++ b/packages/material-ui-icons/lib/Replay5Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" -}), 'Replay5Sharp'); \ No newline at end of file +}), 'Replay5Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Replay5TwoTone.js b/packages/material-ui-icons/lib/Replay5TwoTone.js index 970f2dcd8f0cec..403401704d8ccb 100644 --- a/packages/material-ui-icons/lib/Replay5TwoTone.js +++ b/packages/material-ui-icons/lib/Replay5TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" -}), 'Replay5TwoTone'); \ No newline at end of file +}), 'Replay5TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayCircleFilled.js b/packages/material-ui-icons/lib/ReplayCircleFilled.js index 9d10ae49fbcc4d..23b5469ab37708 100644 --- a/packages/material-ui-icons/lib/ReplayCircleFilled.js +++ b/packages/material-ui-icons/lib/ReplayCircleFilled.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3L8 7l4-4v3c3.31 0 6 2.69 6 6z" -}), 'ReplayCircleFilled'); \ No newline at end of file +}), 'ReplayCircleFilled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayCircleFilledOutlined.js b/packages/material-ui-icons/lib/ReplayCircleFilledOutlined.js index f16851c96a67e0..97ea457829b2ee 100644 --- a/packages/material-ui-icons/lib/ReplayCircleFilledOutlined.js +++ b/packages/material-ui-icons/lib/ReplayCircleFilledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-3.31 0-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4c0-2.24-1.85-4.09-4.16-3.99l1.57 1.57L12 11.5l-4-4 4-4 1.41 1.41-1.6 1.6C15.28 6.4 18 9.18 18 12.5c0 3.31-2.69 6-6 6z" -}), 'ReplayCircleFilledOutlined'); \ No newline at end of file +}), 'ReplayCircleFilledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayCircleFilledRounded.js b/packages/material-ui-icons/lib/ReplayCircleFilledRounded.js index b8d7adfe22e015..1e1569376d485a 100644 --- a/packages/material-ui-icons/lib/ReplayCircleFilledRounded.js +++ b/packages/material-ui-icons/lib/ReplayCircleFilledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.74c-.12 3.09-2.67 5.64-5.76 5.76-3.01.12-5.56-1.99-6.12-4.82-.13-.61.36-1.18.98-1.18.47 0 .88.33.98.8.42 2.07 2.44 3.57 4.72 3.12 1.56-.3 2.82-1.56 3.12-3.12.5-2.56-1.45-4.8-3.92-4.8v1.79c0 .45-.54.67-.85.35l-2.8-2.79c-.2-.2-.2-.51 0-.71l2.79-2.79c.32-.31.86-.09.86.36V6.5c3.39 0 6.13 2.82 6 6.24z" -}), 'ReplayCircleFilledRounded'); \ No newline at end of file +}), 'ReplayCircleFilledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayCircleFilledSharp.js b/packages/material-ui-icons/lib/ReplayCircleFilledSharp.js index 81e359a603ef9e..3a443f77ee3330 100644 --- a/packages/material-ui-icons/lib/ReplayCircleFilledSharp.js +++ b/packages/material-ui-icons/lib/ReplayCircleFilledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.5c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3l-4-4 4-4v3c3.31 0 6 2.69 6 6z" -}), 'ReplayCircleFilledSharp'); \ No newline at end of file +}), 'ReplayCircleFilledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayCircleFilledTwoTone.js b/packages/material-ui-icons/lib/ReplayCircleFilledTwoTone.js index f88d8e04b0ebe0..2800ce3ca46d52 100644 --- a/packages/material-ui-icons/lib/ReplayCircleFilledTwoTone.js +++ b/packages/material-ui-icons/lib/ReplayCircleFilledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.5c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3l-4-4 4-4v3c3.31 0 6 2.69 6 6z" -}), 'ReplayCircleFilledTwoTone'); \ No newline at end of file +}), 'ReplayCircleFilledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayOutlined.js b/packages/material-ui-icons/lib/ReplayOutlined.js index e66f9e84e98989..bbef6e0c60878e 100644 --- a/packages/material-ui-icons/lib/ReplayOutlined.js +++ b/packages/material-ui-icons/lib/ReplayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" -}), 'ReplayOutlined'); \ No newline at end of file +}), 'ReplayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayRounded.js b/packages/material-ui-icons/lib/ReplayRounded.js index 76efe990a20f46..1775701d4cffde 100644 --- a/packages/material-ui-icons/lib/ReplayRounded.js +++ b/packages/material-ui-icons/lib/ReplayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.07-.48-.49-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24C20.84 9.48 16.94 5 12 5z" -}), 'ReplayRounded'); \ No newline at end of file +}), 'ReplayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplaySharp.js b/packages/material-ui-icons/lib/ReplaySharp.js index e4df8ee52d62c8..afcc2a44d2e87d 100644 --- a/packages/material-ui-icons/lib/ReplaySharp.js +++ b/packages/material-ui-icons/lib/ReplaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" -}), 'ReplaySharp'); \ No newline at end of file +}), 'ReplaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplayTwoTone.js b/packages/material-ui-icons/lib/ReplayTwoTone.js index 7488a1114ddc38..02bdf79db81eb4 100644 --- a/packages/material-ui-icons/lib/ReplayTwoTone.js +++ b/packages/material-ui-icons/lib/ReplayTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 6 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8V1L7 6z" -}), 'ReplayTwoTone'); \ No newline at end of file +}), 'ReplayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Reply.js b/packages/material-ui-icons/lib/Reply.js index 4ffef79b09df23..97583c0f8443c9 100644 --- a/packages/material-ui-icons/lib/Reply.js +++ b/packages/material-ui-icons/lib/Reply.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'Reply'); \ No newline at end of file +}), 'Reply'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyAll.js b/packages/material-ui-icons/lib/ReplyAll.js index e4f83f0f5c451d..03759dcde4403e 100644 --- a/packages/material-ui-icons/lib/ReplyAll.js +++ b/packages/material-ui-icons/lib/ReplyAll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyAll'); \ No newline at end of file +}), 'ReplyAll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyAllOutlined.js b/packages/material-ui-icons/lib/ReplyAllOutlined.js index b28c7fb2d85ed9..d4a9e03fb17aca 100644 --- a/packages/material-ui-icons/lib/ReplyAllOutlined.js +++ b/packages/material-ui-icons/lib/ReplyAllOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyAllOutlined'); \ No newline at end of file +}), 'ReplyAllOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyAllRounded.js b/packages/material-ui-icons/lib/ReplyAllRounded.js index 4689c560b129d1..218dba7c053004 100644 --- a/packages/material-ui-icons/lib/ReplyAllRounded.js +++ b/packages/material-ui-icons/lib/ReplyAllRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7.56c0-.94-1.14-1.42-1.81-.75L.71 11.29c-.39.39-.39 1.02 0 1.41l4.48 4.48c.67.68 1.81.2 1.81-.74 0-.28-.11-.55-.31-.75L3 12l3.69-3.69c.2-.2.31-.47.31-.75zM13 9V7.41c0-.89-1.08-1.34-1.71-.71L6.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.18 1.71-.71V14.9c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyAllRounded'); \ No newline at end of file +}), 'ReplyAllRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyAllSharp.js b/packages/material-ui-icons/lib/ReplyAllSharp.js index ed743f87298cda..82f3b0919ef0ed 100644 --- a/packages/material-ui-icons/lib/ReplyAllSharp.js +++ b/packages/material-ui-icons/lib/ReplyAllSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyAllSharp'); \ No newline at end of file +}), 'ReplyAllSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyAllTwoTone.js b/packages/material-ui-icons/lib/ReplyAllTwoTone.js index 119dfd698f1fcc..e7d11cd10bda3d 100644 --- a/packages/material-ui-icons/lib/ReplyAllTwoTone.js +++ b/packages/material-ui-icons/lib/ReplyAllTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyAllTwoTone'); \ No newline at end of file +}), 'ReplyAllTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyOutlined.js b/packages/material-ui-icons/lib/ReplyOutlined.js index 1e77ea2772167c..0dce639fbe22eb 100644 --- a/packages/material-ui-icons/lib/ReplyOutlined.js +++ b/packages/material-ui-icons/lib/ReplyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyOutlined'); \ No newline at end of file +}), 'ReplyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyRounded.js b/packages/material-ui-icons/lib/ReplyRounded.js index 350dbca63abee3..e6bcd18d326b46 100644 --- a/packages/material-ui-icons/lib/ReplyRounded.js +++ b/packages/material-ui-icons/lib/ReplyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7V14.9c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyRounded'); \ No newline at end of file +}), 'ReplyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplySharp.js b/packages/material-ui-icons/lib/ReplySharp.js index 5cad9ebf8bd978..814f4fd131f183 100644 --- a/packages/material-ui-icons/lib/ReplySharp.js +++ b/packages/material-ui-icons/lib/ReplySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplySharp'); \ No newline at end of file +}), 'ReplySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReplyTwoTone.js b/packages/material-ui-icons/lib/ReplyTwoTone.js index db410220026f64..c523916f0d66e6 100644 --- a/packages/material-ui-icons/lib/ReplyTwoTone.js +++ b/packages/material-ui-icons/lib/ReplyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" -}), 'ReplyTwoTone'); \ No newline at end of file +}), 'ReplyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Report.js b/packages/material-ui-icons/lib/Report.js index 3af682880b8704..f42405eb099b19 100644 --- a/packages/material-ui-icons/lib/Report.js +++ b/packages/material-ui-icons/lib/Report.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z" -}), 'Report'); \ No newline at end of file +}), 'Report'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportGmailerrorred.js b/packages/material-ui-icons/lib/ReportGmailerrorred.js index 1b7032cd4f73ba..cb03150d266953 100644 --- a/packages/material-ui-icons/lib/ReportGmailerrorred.js +++ b/packages/material-ui-icons/lib/ReportGmailerrorred.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v6h-2zm0 8h2v2h-2z" -}, "1")], 'ReportGmailerrorred'); \ No newline at end of file +}, "1")], 'ReportGmailerrorred'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportGmailerrorredOutlined.js b/packages/material-ui-icons/lib/ReportGmailerrorredOutlined.js index ea7be02e6f2756..0df9756b045d46 100644 --- a/packages/material-ui-icons/lib/ReportGmailerrorredOutlined.js +++ b/packages/material-ui-icons/lib/ReportGmailerrorredOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v7h-2z" -}, "2")], 'ReportGmailerrorredOutlined'); \ No newline at end of file +}, "2")], 'ReportGmailerrorredOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportGmailerrorredRounded.js b/packages/material-ui-icons/lib/ReportGmailerrorredRounded.js index e3bf596b641f71..b3ff3ae371bb79 100644 --- a/packages/material-ui-icons/lib/ReportGmailerrorredRounded.js +++ b/packages/material-ui-icons/lib/ReportGmailerrorredRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.71 7.98 16.03 3.3c-.19-.19-.45-.3-.71-.3H8.68c-.26 0-.52.11-.7.29L3.29 7.98c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l4.68-4.68c.19-.19.29-.44.29-.71V8.68c.01-.26-.1-.52-.28-.7zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1z" -}, "2")], 'ReportGmailerrorredRounded'); \ No newline at end of file +}, "2")], 'ReportGmailerrorredRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportGmailerrorredSharp.js b/packages/material-ui-icons/lib/ReportGmailerrorredSharp.js index 824d32a09cd346..d4306e491549ec 100644 --- a/packages/material-ui-icons/lib/ReportGmailerrorredSharp.js +++ b/packages/material-ui-icons/lib/ReportGmailerrorredSharp.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v7h-2z" -}, "2")], 'ReportGmailerrorredSharp'); \ No newline at end of file +}, "2")], 'ReportGmailerrorredSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportGmailerrorredTwoTone.js b/packages/material-ui-icons/lib/ReportGmailerrorredTwoTone.js index 755c199b44df38..7c925f6615e5af 100644 --- a/packages/material-ui-icons/lib/ReportGmailerrorredTwoTone.js +++ b/packages/material-ui-icons/lib/ReportGmailerrorredTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v7h-2z" -}, "2")], 'ReportGmailerrorredTwoTone'); \ No newline at end of file +}, "2")], 'ReportGmailerrorredTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportOff.js b/packages/material-ui-icons/lib/ReportOff.js index 8c9a157ae116e0..b4bda10cd30491 100644 --- a/packages/material-ui-icons/lib/ReportOff.js +++ b/packages/material-ui-icons/lib/ReportOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v2.92l6.91 6.91 1.09-1.1V8.27L15.73 3H8.27L7.18 4.1 11 7.92zm11.27 14.73-20-20.01L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.63L21 23l1.27-1.27zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3z" -}), 'ReportOff'); \ No newline at end of file +}), 'ReportOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportOffOutlined.js b/packages/material-ui-icons/lib/ReportOffOutlined.js index 2ff7e4fa0e8992..8d1ce72eee374a 100644 --- a/packages/material-ui-icons/lib/ReportOffOutlined.js +++ b/packages/material-ui-icons/lib/ReportOffOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9.33V7h-2v.33zM2.41 1.58 1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z" -}, "2")], 'ReportOffOutlined'); \ No newline at end of file +}, "2")], 'ReportOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportOffRounded.js b/packages/material-ui-icons/lib/ReportOffRounded.js index bcec6a93e7d12b..72d903001be4cf 100644 --- a/packages/material-ui-icons/lib/ReportOffRounded.js +++ b/packages/material-ui-icons/lib/ReportOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c.55 0 1 .45 1 1v1.33l7.2 7.2.51-.51c.19-.19.29-.44.29-.71V8.68c0-.27-.11-.52-.29-.71l-4.68-4.68c-.19-.18-.45-.29-.71-.29H8.68c-.26 0-.52.11-.7.29l-.51.51 3.69 3.69c.17-.29.48-.49.84-.49zM2.41 1.58 1 2.99l3.64 3.64-1.35 1.35c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l1.35-1.35L21.01 23l1.41-1.41L2.41 1.58zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z" -}), 'ReportOffRounded'); \ No newline at end of file +}), 'ReportOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportOffSharp.js b/packages/material-ui-icons/lib/ReportOffSharp.js index 5bd78fe2b9721a..ead91d7c76148b 100644 --- a/packages/material-ui-icons/lib/ReportOffSharp.js +++ b/packages/material-ui-icons/lib/ReportOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v2.33l7.2 7.2.8-.8V8.27L15.73 3H8.27l-.8.8L11 7.33zM2.41 1.58 1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM11 12.99l.01.01H11v-.01zm1 4.31c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z" -}), 'ReportOffSharp'); \ No newline at end of file +}), 'ReportOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportOffTwoTone.js b/packages/material-ui-icons/lib/ReportOffTwoTone.js index fa543151aa3714..b59e61db1fb251 100644 --- a/packages/material-ui-icons/lib/ReportOffTwoTone.js +++ b/packages/material-ui-icons/lib/ReportOffTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9.1 14.9 5H9.1l-.22.22L11 7.33V7h2v2.33l5.78 5.79.22-.22zM6.05 8.04 5 9.1v5.8L9.1 19h5.8l1.05-1.05-9.9-9.91zM13 16c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7h-2v.33l2 2zM2.41 1.58 1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z" -}, "3")], 'ReportOffTwoTone'); \ No newline at end of file +}, "3")], 'ReportOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportOutlined.js b/packages/material-ui-icons/lib/ReportOutlined.js index 5f4a6f2c7f69c8..c92adf7af5fefa 100644 --- a/packages/material-ui-icons/lib/ReportOutlined.js +++ b/packages/material-ui-icons/lib/ReportOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v7h-2z" -}, "2")], 'ReportOutlined'); \ No newline at end of file +}, "2")], 'ReportOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportProblem.js b/packages/material-ui-icons/lib/ReportProblem.js index 04d14fb247e31d..84ef196190a6c7 100644 --- a/packages/material-ui-icons/lib/ReportProblem.js +++ b/packages/material-ui-icons/lib/ReportProblem.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" -}), 'ReportProblem'); \ No newline at end of file +}), 'ReportProblem'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportProblemOutlined.js b/packages/material-ui-icons/lib/ReportProblemOutlined.js index 270298045f263f..f6f43e1ab65a1e 100644 --- a/packages/material-ui-icons/lib/ReportProblemOutlined.js +++ b/packages/material-ui-icons/lib/ReportProblemOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" -}), 'ReportProblemOutlined'); \ No newline at end of file +}), 'ReportProblemOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportProblemRounded.js b/packages/material-ui-icons/lib/ReportProblemRounded.js index ef25b0d967338e..2e2f5b873bbd17 100644 --- a/packages/material-ui-icons/lib/ReportProblemRounded.js +++ b/packages/material-ui-icons/lib/ReportProblemRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.73 21h18.53c.77 0 1.25-.83.87-1.5l-9.27-16c-.39-.67-1.35-.67-1.73 0l-9.27 16c-.38.67.1 1.5.87 1.5zM13 18h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'ReportProblemRounded'); \ No newline at end of file +}), 'ReportProblemRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportProblemSharp.js b/packages/material-ui-icons/lib/ReportProblemSharp.js index 038faa8cca9c0f..6b948079b02cf9 100644 --- a/packages/material-ui-icons/lib/ReportProblemSharp.js +++ b/packages/material-ui-icons/lib/ReportProblemSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" -}), 'ReportProblemSharp'); \ No newline at end of file +}), 'ReportProblemSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportProblemTwoTone.js b/packages/material-ui-icons/lib/ReportProblemTwoTone.js index 9b4f2c0d6a92f5..879a68505f1e45 100644 --- a/packages/material-ui-icons/lib/ReportProblemTwoTone.js +++ b/packages/material-ui-icons/lib/ReportProblemTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.99 4.47 19h15.06L12 5.99zM13 18h-2v-2h2v2zm-2-4v-4h2v4h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM11 16h2v2h-2zm0-6h2v4h-2z" -}, "1")], 'ReportProblemTwoTone'); \ No newline at end of file +}, "1")], 'ReportProblemTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportRounded.js b/packages/material-ui-icons/lib/ReportRounded.js index a733c9f37945e1..8560f138fccc1b 100644 --- a/packages/material-ui-icons/lib/ReportRounded.js +++ b/packages/material-ui-icons/lib/ReportRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.32 3H8.68c-.26 0-.52.11-.7.29L3.29 7.98c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l4.68-4.68c.19-.19.29-.44.29-.71V8.68c0-.27-.11-.52-.29-.71l-4.68-4.68c-.18-.18-.44-.29-.7-.29zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3zm0-4.3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z" -}), 'ReportRounded'); \ No newline at end of file +}), 'ReportRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportSharp.js b/packages/material-ui-icons/lib/ReportSharp.js index 7b7f53a089652c..5e324e83feee86 100644 --- a/packages/material-ui-icons/lib/ReportSharp.js +++ b/packages/material-ui-icons/lib/ReportSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z" -}), 'ReportSharp'); \ No newline at end of file +}), 'ReportSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReportTwoTone.js b/packages/material-ui-icons/lib/ReportTwoTone.js index d7c5c23ba23565..5646a0778375dc 100644 --- a/packages/material-ui-icons/lib/ReportTwoTone.js +++ b/packages/material-ui-icons/lib/ReportTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.1 5 5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5H9.1zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3h-2V7h2v7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v7h-2z" -}, "3")], 'ReportTwoTone'); \ No newline at end of file +}, "3")], 'ReportTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestPage.js b/packages/material-ui-icons/lib/RequestPage.js index 6a8d34ee536fd2..5b07efbe33bea5 100644 --- a/packages/material-ui-icons/lib/RequestPage.js +++ b/packages/material-ui-icons/lib/RequestPage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm1 9h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z" -}), 'RequestPage'); \ No newline at end of file +}), 'RequestPage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestPageOutlined.js b/packages/material-ui-icons/lib/RequestPageOutlined.js index cf024f196917dd..f88e11df979727 100644 --- a/packages/material-ui-icons/lib/RequestPageOutlined.js +++ b/packages/material-ui-icons/lib/RequestPageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm1 9h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z" -}), 'RequestPageOutlined'); \ No newline at end of file +}), 'RequestPageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestPageRounded.js b/packages/material-ui-icons/lib/RequestPageRounded.js index 08dfffcd41f11a..fdf1f1dfd27ed0 100644 --- a/packages/material-ui-icons/lib/RequestPageRounded.js +++ b/packages/material-ui-icons/lib/RequestPageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM14 12c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1c0 .55-.45 1-1 1s-1-.45-1-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h3v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-.55.45-1 1-1s1 .45 1 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-3v1h3z" -}), 'RequestPageRounded'); \ No newline at end of file +}), 'RequestPageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestPageSharp.js b/packages/material-ui-icons/lib/RequestPageSharp.js index 7ea7595f2d3fcb..6ac3f5b7fa0342 100644 --- a/packages/material-ui-icons/lib/RequestPageSharp.js +++ b/packages/material-ui-icons/lib/RequestPageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4.01L4 22h16V8l-6-6zm1 9h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9V9h2V8h2v1h2v2z" -}), 'RequestPageSharp'); \ No newline at end of file +}), 'RequestPageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestPageTwoTone.js b/packages/material-ui-icons/lib/RequestPageTwoTone.js index 69f9333800d279..e9824648d6f127 100644 --- a/packages/material-ui-icons/lib/RequestPageTwoTone.js +++ b/packages/material-ui-icons/lib/RequestPageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 4H6v16h12V8.83L13.17 4zM15 11h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm1 9h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z" -}, "1")], 'RequestPageTwoTone'); \ No newline at end of file +}, "1")], 'RequestPageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestQuote.js b/packages/material-ui-icons/lib/RequestQuote.js index 4abf6006817ad5..4b03bd50bf4179 100644 --- a/packages/material-ui-icons/lib/RequestQuote.js +++ b/packages/material-ui-icons/lib/RequestQuote.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm1 10h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V9h2v1h2v2zm-2-4V3.5L17.5 8H13z" -}), 'RequestQuote'); \ No newline at end of file +}), 'RequestQuote'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestQuoteOutlined.js b/packages/material-ui-icons/lib/RequestQuoteOutlined.js index 324ca7c6c2c02b..2b9bb97ad6e00c 100644 --- a/packages/material-ui-icons/lib/RequestQuoteOutlined.js +++ b/packages/material-ui-icons/lib/RequestQuoteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v4h5v12H6zm5-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z" -}), 'RequestQuoteOutlined'); \ No newline at end of file +}), 'RequestQuoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestQuoteRounded.js b/packages/material-ui-icons/lib/RequestQuoteRounded.js index 09935e262ddf44..63cdcf62cee38e 100644 --- a/packages/material-ui-icons/lib/RequestQuoteRounded.js +++ b/packages/material-ui-icons/lib/RequestQuoteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM14 13c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1c0 .55-.45 1-1 1s-1-.45-1-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h3v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-.55.45-1 1-1s1 .45 1 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-3v1h3zm0-5c-.55 0-1-.45-1-1V3.5L17.5 8H14z" -}), 'RequestQuoteRounded'); \ No newline at end of file +}), 'RequestQuoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestQuoteSharp.js b/packages/material-ui-icons/lib/RequestQuoteSharp.js index 6f039547d5f8d2..15200664099784 100644 --- a/packages/material-ui-icons/lib/RequestQuoteSharp.js +++ b/packages/material-ui-icons/lib/RequestQuoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm1 10h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9v-5h2V9h2v1h2v2zm-2-4V3.5L17.5 8H13z" -}), 'RequestQuoteSharp'); \ No newline at end of file +}), 'RequestQuoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RequestQuoteTwoTone.js b/packages/material-ui-icons/lib/RequestQuoteTwoTone.js index baa4eea03c485b..1345002b12e890 100644 --- a/packages/material-ui-icons/lib/RequestQuoteTwoTone.js +++ b/packages/material-ui-icons/lib/RequestQuoteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 20V4h7v4h5v12H6zm5-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v4h5v12H6zm5-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z" -}, "1")], 'RequestQuoteTwoTone'); \ No newline at end of file +}, "1")], 'RequestQuoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ResetTv.js b/packages/material-ui-icons/lib/ResetTv.js index 91b594e0dfa6b9..c1a41d30b8ba46 100644 --- a/packages/material-ui-icons/lib/ResetTv.js +++ b/packages/material-ui-icons/lib/ResetTv.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10h-8.01V7L9 11l3.99 4v-3H21v5H3V5h18v3h2V5c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2v-5H23c0-1.1-.9-2-2-2z" -}), 'ResetTv'); \ No newline at end of file +}), 'ResetTv'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ResetTvOutlined.js b/packages/material-ui-icons/lib/ResetTvOutlined.js index e3a2c7a88d56ad..232ee858815079 100644 --- a/packages/material-ui-icons/lib/ResetTvOutlined.js +++ b/packages/material-ui-icons/lib/ResetTvOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 8V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2v-5H22c0-1.1-.9-2-2-2h-7.17l1.83-1.83-1.41-1.41C9.69 10.31 10.88 9.12 9 11l4.24 4.24 1.41-1.41L12.83 12H20v5H4V5h16v3h2z" -}), 'ResetTvOutlined'); \ No newline at end of file +}), 'ResetTvOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ResetTvRounded.js b/packages/material-ui-icons/lib/ResetTvRounded.js index 0b6693ee05af1f..bf938448db8561 100644 --- a/packages/material-ui-icons/lib/ResetTvRounded.js +++ b/packages/material-ui-icons/lib/ResetTvRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10h-7.01V8.21c0-.45-.54-.67-.85-.35l-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.32.85.09.85-.35V12H20v5H4V5h16v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h4c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" -}), 'ResetTvRounded'); \ No newline at end of file +}), 'ResetTvRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ResetTvSharp.js b/packages/material-ui-icons/lib/ResetTvSharp.js index 21f7d3c78c3a89..1c6a0c91429f20 100644 --- a/packages/material-ui-icons/lib/ResetTvSharp.js +++ b/packages/material-ui-icons/lib/ResetTvSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10h-9.01V7L9 11l3.99 4v-3H20v5H4V5h16v3h2V3H2v16h6v2h8v-2h6z" -}), 'ResetTvSharp'); \ No newline at end of file +}), 'ResetTvSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ResetTvTwoTone.js b/packages/material-ui-icons/lib/ResetTvTwoTone.js index 0d04ea84943637..b6328faf77ac99 100644 --- a/packages/material-ui-icons/lib/ResetTvTwoTone.js +++ b/packages/material-ui-icons/lib/ResetTvTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10h-7.01V7L9 11l3.99 4v-3H20v5H4V5h16v3h2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2v-5H22c0-1.1-.9-2-2-2z" -}), 'ResetTvTwoTone'); \ No newline at end of file +}), 'ResetTvTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestartAlt.js b/packages/material-ui-icons/lib/RestartAlt.js index 4dbfd1b62bfc8a..28d705057559f1 100644 --- a/packages/material-ui-icons/lib/RestartAlt.js +++ b/packages/material-ui-icons/lib/RestartAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z" -}), 'RestartAlt'); \ No newline at end of file +}), 'RestartAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestartAltOutlined.js b/packages/material-ui-icons/lib/RestartAltOutlined.js index c88c0f0029dccb..946200414067d5 100644 --- a/packages/material-ui-icons/lib/RestartAltOutlined.js +++ b/packages/material-ui-icons/lib/RestartAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91zm14 0c0-4.42-3.58-8-8-8-.06 0-.12.01-.18.01l1.09-1.09L11.5 2.5 8 6l3.5 3.5 1.41-1.41-1.08-1.08c.06 0 .12-.01.17-.01 3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93z" -}), 'RestartAltOutlined'); \ No newline at end of file +}), 'RestartAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestartAltRounded.js b/packages/material-ui-icons/lib/RestartAltRounded.js index 28dc7bea35c875..a0d8cc4499def2 100644 --- a/packages/material-ui-icons/lib/RestartAltRounded.js +++ b/packages/material-ui-icons/lib/RestartAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V3.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V7c3.31 0 6 2.69 6 6 0 2.72-1.83 5.02-4.31 5.75-.42.12-.69.52-.69.95 0 .65.62 1.16 1.25.97C17.57 19.7 20 16.64 20 13c0-4.42-3.58-8-8-8zm-6 8c0-1.34.44-2.58 1.19-3.59.3-.4.26-.95-.09-1.31-.42-.42-1.14-.38-1.5.1-1 1.34-1.6 3-1.6 4.8 0 3.64 2.43 6.7 5.75 7.67.63.19 1.25-.32 1.25-.97 0-.43-.27-.83-.69-.95C7.83 18.02 6 15.72 6 13z" -}), 'RestartAltRounded'); \ No newline at end of file +}), 'RestartAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestartAltSharp.js b/packages/material-ui-icons/lib/RestartAltSharp.js index 09a5bacb79e1ed..a36d4128f0389d 100644 --- a/packages/material-ui-icons/lib/RestartAltSharp.js +++ b/packages/material-ui-icons/lib/RestartAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z" -}), 'RestartAltSharp'); \ No newline at end of file +}), 'RestartAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestartAltTwoTone.js b/packages/material-ui-icons/lib/RestartAltTwoTone.js index e54072cc496935..1c06fa9e576e31 100644 --- a/packages/material-ui-icons/lib/RestartAltTwoTone.js +++ b/packages/material-ui-icons/lib/RestartAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z" -}), 'RestartAltTwoTone'); \ No newline at end of file +}), 'RestartAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Restaurant.js b/packages/material-ui-icons/lib/Restaurant.js index eff64a24e1dc91..179957390ade50 100644 --- a/packages/material-ui-icons/lib/Restaurant.js +++ b/packages/material-ui-icons/lib/Restaurant.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z" -}), 'Restaurant'); \ No newline at end of file +}), 'Restaurant'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantMenu.js b/packages/material-ui-icons/lib/RestaurantMenu.js index 430c4cb9d7a1a8..d9113093e1223f 100644 --- a/packages/material-ui-icons/lib/RestaurantMenu.js +++ b/packages/material-ui-icons/lib/RestaurantMenu.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" -}), 'RestaurantMenu'); \ No newline at end of file +}), 'RestaurantMenu'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantMenuOutlined.js b/packages/material-ui-icons/lib/RestaurantMenuOutlined.js index b0f41704949769..9d44f112286b61 100644 --- a/packages/material-ui-icons/lib/RestaurantMenuOutlined.js +++ b/packages/material-ui-icons/lib/RestaurantMenuOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" -}), 'RestaurantMenuOutlined'); \ No newline at end of file +}), 'RestaurantMenuOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantMenuRounded.js b/packages/material-ui-icons/lib/RestaurantMenuRounded.js index 15e6f36181e3e2..ea19cbc1dd87b7 100644 --- a/packages/material-ui-icons/lib/RestaurantMenuRounded.js +++ b/packages/material-ui-icons/lib/RestaurantMenuRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83-6.19-6.18c-.48-.48-1.31-.35-1.61.27-.71 1.49-.45 3.32.78 4.56l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L4.4 19.17c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 14.41l6.18 6.18c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 13l1.47-1.47z" -}), 'RestaurantMenuRounded'); \ No newline at end of file +}), 'RestaurantMenuRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantMenuSharp.js b/packages/material-ui-icons/lib/RestaurantMenuSharp.js index b408f18c9e1054..21319638299f5e 100644 --- a/packages/material-ui-icons/lib/RestaurantMenuSharp.js +++ b/packages/material-ui-icons/lib/RestaurantMenuSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" -}), 'RestaurantMenuSharp'); \ No newline at end of file +}), 'RestaurantMenuSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantMenuTwoTone.js b/packages/material-ui-icons/lib/RestaurantMenuTwoTone.js index 593e9ba69efbed..f4871045f6917e 100644 --- a/packages/material-ui-icons/lib/RestaurantMenuTwoTone.js +++ b/packages/material-ui-icons/lib/RestaurantMenuTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm12.05-3.19c1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38z" -}), 'RestaurantMenuTwoTone'); \ No newline at end of file +}), 'RestaurantMenuTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantOutlined.js b/packages/material-ui-icons/lib/RestaurantOutlined.js index 88c1c7c0b28b73..7ee0cc6d0b1551 100644 --- a/packages/material-ui-icons/lib/RestaurantOutlined.js +++ b/packages/material-ui-icons/lib/RestaurantOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" -}), 'RestaurantOutlined'); \ No newline at end of file +}), 'RestaurantOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantRounded.js b/packages/material-ui-icons/lib/RestaurantRounded.js index e7f42661a36644..10b49d7d1eac2a 100644 --- a/packages/material-ui-icons/lib/RestaurantRounded.js +++ b/packages/material-ui-icons/lib/RestaurantRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6v6c0 1.1.9 2 2 2h1v7c0 .55.45 1 1 1s1-.45 1-1V3.13c0-.65-.61-1.13-1.24-.98C17.6 2.68 16 4.51 16 6zm-5 3H9V3c0-.55-.45-1-1-1s-1 .45-1 1v6H5V3c0-.55-.45-1-1-1s-1 .45-1 1v6c0 2.21 1.79 4 4 4v8c0 .55.45 1 1 1s1-.45 1-1v-8c2.21 0 4-1.79 4-4V3c0-.55-.45-1-1-1s-1 .45-1 1v6z" -}), 'RestaurantRounded'); \ No newline at end of file +}), 'RestaurantRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantSharp.js b/packages/material-ui-icons/lib/RestaurantSharp.js index d1a62500037f1c..3c6b16b8aaa343 100644 --- a/packages/material-ui-icons/lib/RestaurantSharp.js +++ b/packages/material-ui-icons/lib/RestaurantSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" -}), 'RestaurantSharp'); \ No newline at end of file +}), 'RestaurantSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestaurantTwoTone.js b/packages/material-ui-icons/lib/RestaurantTwoTone.js index 8409d3b4548248..d5dc5aa7b7e1ca 100644 --- a/packages/material-ui-icons/lib/RestaurantTwoTone.js +++ b/packages/material-ui-icons/lib/RestaurantTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" -}), 'RestaurantTwoTone'); \ No newline at end of file +}), 'RestaurantTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Restore.js b/packages/material-ui-icons/lib/Restore.js index 8c86b7e1bc11ad..ed63a01c2f625a 100644 --- a/packages/material-ui-icons/lib/Restore.js +++ b/packages/material-ui-icons/lib/Restore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z" -}), 'Restore'); \ No newline at end of file +}), 'Restore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreFromTrash.js b/packages/material-ui-icons/lib/RestoreFromTrash.js index b7d6c355edfcff..1d1b9123700851 100644 --- a/packages/material-ui-icons/lib/RestoreFromTrash.js +++ b/packages/material-ui-icons/lib/RestoreFromTrash.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4h-3.5l-1-1h-5l-1 1H5v2h14zM6 7v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6zm8 7v4h-4v-4H8l4-4 4 4h-2z" -}), 'RestoreFromTrash'); \ No newline at end of file +}), 'RestoreFromTrash'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreFromTrashOutlined.js b/packages/material-ui-icons/lib/RestoreFromTrashOutlined.js index 412ebd8bfbad34..0e015758746be8 100644 --- a/packages/material-ui-icons/lib/RestoreFromTrashOutlined.js +++ b/packages/material-ui-icons/lib/RestoreFromTrashOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.5 4-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm2 4h4v-4h2l-4-4-4 4h2z" -}), 'RestoreFromTrashOutlined'); \ No newline at end of file +}), 'RestoreFromTrashOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreFromTrashRounded.js b/packages/material-ui-icons/lib/RestoreFromTrashRounded.js index f4ed6f249a1b37..9149f038472949 100644 --- a/packages/material-ui-icons/lib/RestoreFromTrashRounded.js +++ b/packages/material-ui-icons/lib/RestoreFromTrashRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zm5.65-8.65c.2-.2.51-.2.71 0L16 14h-2v4h-4v-4H8l3.65-3.65zM15.5 4l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z" -}), 'RestoreFromTrashRounded'); \ No newline at end of file +}), 'RestoreFromTrashRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreFromTrashSharp.js b/packages/material-ui-icons/lib/RestoreFromTrashSharp.js index b6735d68863fef..6382edfc8c7803 100644 --- a/packages/material-ui-icons/lib/RestoreFromTrashSharp.js +++ b/packages/material-ui-icons/lib/RestoreFromTrashSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 21h12V7H6v14zm6-11 4 4h-2v4h-4v-4H8l4-4zm3.5-6-1-1h-5l-1 1H5v2h14V4z" -}), 'RestoreFromTrashSharp'); \ No newline at end of file +}), 'RestoreFromTrashSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreFromTrashTwoTone.js b/packages/material-ui-icons/lib/RestoreFromTrashTwoTone.js index 16ccdb6dd13cda..a00cf11f6c20bb 100644 --- a/packages/material-ui-icons/lib/RestoreFromTrashTwoTone.js +++ b/packages/material-ui-icons/lib/RestoreFromTrashTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14h-2v4h-4v-4H8v5h8zm0 0V9H8v5l4-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm7.5-10-1-1h-5l-1 1H5v2h14V4zM10 18h4v-4h2l-4-4-4 4h2z" -}, "1")], 'RestoreFromTrashTwoTone'); \ No newline at end of file +}, "1")], 'RestoreFromTrashTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreOutlined.js b/packages/material-ui-icons/lib/RestoreOutlined.js index 5b41342b735e91..ac5869826b2ec7 100644 --- a/packages/material-ui-icons/lib/RestoreOutlined.js +++ b/packages/material-ui-icons/lib/RestoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" -}), 'RestoreOutlined'); \ No newline at end of file +}), 'RestoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestorePage.js b/packages/material-ui-icons/lib/RestorePage.js index 0f17d8a8b254bd..b5efc39f282996 100644 --- a/packages/material-ui-icons/lib/RestorePage.js +++ b/packages/material-ui-icons/lib/RestorePage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" -}), 'RestorePage'); \ No newline at end of file +}), 'RestorePage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestorePageOutlined.js b/packages/material-ui-icons/lib/RestorePageOutlined.js index c33733f6592596..fce04e4b5f5182 100644 --- a/packages/material-ui-icons/lib/RestorePageOutlined.js +++ b/packages/material-ui-icons/lib/RestorePageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z" -}), 'RestorePageOutlined'); \ No newline at end of file +}), 'RestorePageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestorePageRounded.js b/packages/material-ui-icons/lib/RestorePageRounded.js index f302a45ec918b4..ed2b6a6cda2be7 100644 --- a/packages/material-ui-icons/lib/RestorePageRounded.js +++ b/packages/material-ui-icons/lib/RestorePageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM12 18c-1.65 0-3.19-.81-4.12-2.17-.23-.34-.15-.81.19-1.04.34-.24.81-.15 1.04.19.65.95 1.73 1.52 2.88 1.52 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.33 0-2.52.74-3.11 1.89L10.5 13H7c-.28 0-.5-.22-.5-.5V9l1.3 1.3C8.71 8.89 10.26 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" -}), 'RestorePageRounded'); \ No newline at end of file +}), 'RestorePageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestorePageSharp.js b/packages/material-ui-icons/lib/RestorePageSharp.js index c4d4e5a4c00817..013e334cbe734b 100644 --- a/packages/material-ui-icons/lib/RestorePageSharp.js +++ b/packages/material-ui-icons/lib/RestorePageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" -}), 'RestorePageSharp'); \ No newline at end of file +}), 'RestorePageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestorePageTwoTone.js b/packages/material-ui-icons/lib/RestorePageTwoTone.js index 1897cc7bef8598..bacbd22e3fb181 100644 --- a/packages/material-ui-icons/lib/RestorePageTwoTone.js +++ b/packages/material-ui-icons/lib/RestorePageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4v16h12V8.83L13.17 4H6zm10.72 9c0 2.48-2.02 4.5-4.5 4.5-1.84 0-3.43-1.12-4.12-2.7h1.54c.57.81 1.51 1.35 2.58 1.35 1.74 0 3.15-1.41 3.15-3.15s-1.41-3.15-3.15-3.15c-1.21 0-2.27.7-2.79 1.71L10.88 13h-3.6V9.4l1.17 1.17c.8-1.24 2.19-2.07 3.78-2.07 2.48 0 4.49 2.02 4.49 4.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z" -}, "1")], 'RestorePageTwoTone'); \ No newline at end of file +}, "1")], 'RestorePageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreRounded.js b/packages/material-ui-icons/lib/RestoreRounded.js index 993836a2b1f713..689027f0c901fb 100644 --- a/packages/material-ui-icons/lib/RestoreRounded.js +++ b/packages/material-ui-icons/lib/RestoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.25 3c-5.09-.14-9.26 3.94-9.26 9H2.2c-.45 0-.67.54-.35.85l2.79 2.8c.2.2.51.2.71 0l2.79-2.8c.32-.31.09-.85-.35-.85h-1.8c0-3.9 3.18-7.05 7.1-7 3.72.05 6.85 3.18 6.9 6.9.05 3.91-3.1 7.1-7 7.1-1.61 0-3.1-.55-4.28-1.48-.4-.31-.96-.28-1.32.08-.42.43-.39 1.13.08 1.5 1.52 1.19 3.44 1.9 5.52 1.9 5.05 0 9.14-4.17 9-9.26-.13-4.69-4.05-8.61-8.74-8.74zm-.51 5c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.09-.82-.26-1.03l-2.88-1.71v-3.4c0-.4-.33-.74-.75-.74z" -}), 'RestoreRounded'); \ No newline at end of file +}), 'RestoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreSharp.js b/packages/material-ui-icons/lib/RestoreSharp.js index cb0049807dd45f..357968d5475d5e 100644 --- a/packages/material-ui-icons/lib/RestoreSharp.js +++ b/packages/material-ui-icons/lib/RestoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" -}), 'RestoreSharp'); \ No newline at end of file +}), 'RestoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RestoreTwoTone.js b/packages/material-ui-icons/lib/RestoreTwoTone.js index feb9bb81760dd3..a5dab7dd86f888 100644 --- a/packages/material-ui-icons/lib/RestoreTwoTone.js +++ b/packages/material-ui-icons/lib/RestoreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" -}), 'RestoreTwoTone'); \ No newline at end of file +}), 'RestoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Reviews.js b/packages/material-ui-icons/lib/Reviews.js index 8df1312b297c7e..9e92450838a3f1 100644 --- a/packages/material-ui-icons/lib/Reviews.js +++ b/packages/material-ui-icons/lib/Reviews.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" -}), 'Reviews'); \ No newline at end of file +}), 'Reviews'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReviewsOutlined.js b/packages/material-ui-icons/lib/ReviewsOutlined.js index 7049415337a752..a5eaa6c830a21d 100644 --- a/packages/material-ui-icons/lib/ReviewsOutlined.js +++ b/packages/material-ui-icons/lib/ReviewsOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" -}, "1")], 'ReviewsOutlined'); \ No newline at end of file +}, "1")], 'ReviewsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReviewsRounded.js b/packages/material-ui-icons/lib/ReviewsRounded.js index 68a7a8d7f82bcf..fe12c411ee0a61 100644 --- a/packages/material-ui-icons/lib/ReviewsRounded.js +++ b/packages/material-ui-icons/lib/ReviewsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57-1.12 2.44c-.18.39-.73.39-.91 0l-1.12-2.44-2.44-1.12c-.39-.18-.39-.73 0-.91l2.44-1.12 1.12-2.44c.18-.39.73-.39.91 0l1.12 2.44 2.44 1.12c.39.18.39.73 0 .91l-2.44 1.12z" -}), 'ReviewsRounded'); \ No newline at end of file +}), 'ReviewsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReviewsSharp.js b/packages/material-ui-icons/lib/ReviewsSharp.js index d3f9bc592284e5..a82a727fc4bbe2 100644 --- a/packages/material-ui-icons/lib/ReviewsSharp.js +++ b/packages/material-ui-icons/lib/ReviewsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" -}), 'ReviewsSharp'); \ No newline at end of file +}), 'ReviewsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ReviewsTwoTone.js b/packages/material-ui-icons/lib/ReviewsTwoTone.js index 962cb91ab23e53..712cb6cb2f358f 100644 --- a/packages/material-ui-icons/lib/ReviewsTwoTone.js +++ b/packages/material-ui-icons/lib/ReviewsTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17 5.17 16H20V4H4v13.17zm6.43-8.74L12 5l1.57 3.43L17 10l-3.43 1.57L12 15l-1.57-3.43L7 10l3.43-1.57z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" -}, "2")], 'ReviewsTwoTone'); \ No newline at end of file +}, "2")], 'ReviewsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RiceBowl.js b/packages/material-ui-icons/lib/RiceBowl.js index d2bd1c915427d0..d1718b8e480e37 100644 --- a/packages/material-ui-icons/lib/RiceBowl.js +++ b/packages/material-ui-icons/lib/RiceBowl.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" -}), 'RiceBowl'); \ No newline at end of file +}), 'RiceBowl'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RiceBowlOutlined.js b/packages/material-ui-icons/lib/RiceBowlOutlined.js index 0798379d3fd0db..82b9fd7fdd6792 100644 --- a/packages/material-ui-icons/lib/RiceBowlOutlined.js +++ b/packages/material-ui-icons/lib/RiceBowlOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.49V20h-4v-1.12l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33M12 2C6.48 2 2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25 0-5.52-4.48-10-10-10zm-2 10V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26V12h-4zm6 0V5.08c2.39 1.39 4 3.96 4 6.92h-4zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" -}), 'RiceBowlOutlined'); \ No newline at end of file +}), 'RiceBowlOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RiceBowlRounded.js b/packages/material-ui-icons/lib/RiceBowlRounded.js index d421dc346532a6..95ad21ffd327ef 100644 --- a/packages/material-ui-icons/lib/RiceBowlRounded.js +++ b/packages/material-ui-icons/lib/RiceBowlRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.48-4.4-9.93-9.86-10-3.62-.05-6.85 2.03-8.71 5.14C.1 12.69 2.98 18.27 8 20.25v.25c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-.25c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" -}), 'RiceBowlRounded'); \ No newline at end of file +}), 'RiceBowlRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RiceBowlSharp.js b/packages/material-ui-icons/lib/RiceBowlSharp.js index 88b72ee3893574..e1ebd994195c07 100644 --- a/packages/material-ui-icons/lib/RiceBowlSharp.js +++ b/packages/material-ui-icons/lib/RiceBowlSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" -}), 'RiceBowlSharp'); \ No newline at end of file +}), 'RiceBowlSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RiceBowlTwoTone.js b/packages/material-ui-icons/lib/RiceBowlTwoTone.js index 573772ffe6dce5..1a9777c247f451 100644 --- a/packages/material-ui-icons/lib/RiceBowlTwoTone.js +++ b/packages/material-ui-icons/lib/RiceBowlTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.49V20h-4v-1.12l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.49V20h-4v-1.12l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33M12 2C6.48 2 2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25 0-5.52-4.48-10-10-10zm-2 10V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26V12h-4zm6 0V5.08c2.39 1.39 4 3.96 4 6.92h-4zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" -}, "1")], 'RiceBowlTwoTone'); \ No newline at end of file +}, "1")], 'RiceBowlTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RingVolume.js b/packages/material-ui-icons/lib/RingVolume.js index 04c173a9a43322..cba7aecc4336a8 100644 --- a/packages/material-ui-icons/lib/RingVolume.js +++ b/packages/material-ui-icons/lib/RingVolume.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zM21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM13 2h-2v5h2V2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" -}), 'RingVolume'); \ No newline at end of file +}), 'RingVolume'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RingVolumeOutlined.js b/packages/material-ui-icons/lib/RingVolumeOutlined.js index e918f72623ab21..d2235d35aacc8a 100644 --- a/packages/material-ui-icons/lib/RingVolumeOutlined.js +++ b/packages/material-ui-icons/lib/RingVolumeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zm.69-12.23-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" -}), 'RingVolumeOutlined'); \ No newline at end of file +}), 'RingVolumeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RingVolumeRounded.js b/packages/material-ui-icons/lib/RingVolumeRounded.js index 8e0b6c4f71b3ac..cf552abda77d4c 100644 --- a/packages/material-ui-icons/lib/RingVolumeRounded.js +++ b/packages/material-ui-icons/lib/RingVolumeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.98 7h.03c.55 0 .99-.44.99-.98V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98v3.03c0 .55.44.99.98.99zm4.92 2.11c.39.39 1.01.39 1.4 0 .62-.63 1.52-1.54 2.15-2.17.39-.38.39-1.01 0-1.39-.38-.38-1.01-.38-1.39 0L16.89 7.7c-.39.38-.39 1.01 0 1.39l.01.02zM5.71 9.1c.38.39 1.01.39 1.4 0 .38-.38.38-1.01 0-1.39L4.96 5.54c-.38-.39-1.01-.39-1.39 0l-.02.01c-.39.39-.39 1.01 0 1.39.63.62 1.54 1.53 2.16 2.16zm17.58 7.13c-6.41-5.66-16.07-5.66-22.48 0-.85.75-.85 2.08-.05 2.88l1.22 1.22c.72.72 1.86.78 2.66.15l2-1.59c.48-.38.76-.96.76-1.57v-2.6c3.02-.98 6.29-.99 9.32 0v2.61c0 .61.28 1.19.76 1.57l1.99 1.58c.8.63 1.94.57 2.66-.15l1.22-1.22c.79-.8.79-2.13-.06-2.88z" -}), 'RingVolumeRounded'); \ No newline at end of file +}), 'RingVolumeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RingVolumeSharp.js b/packages/material-ui-icons/lib/RingVolumeSharp.js index 6e44911365fe97..9e20e9b6f53af9 100644 --- a/packages/material-ui-icons/lib/RingVolumeSharp.js +++ b/packages/material-ui-icons/lib/RingVolumeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.16 6.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55zM0 17.39l3.68 3.68 3.92-3.11v-3.37c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 17.39c-6.41-7.19-17.59-7.19-24 0z" -}), 'RingVolumeSharp'); \ No newline at end of file +}), 'RingVolumeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RingVolumeTwoTone.js b/packages/material-ui-icons/lib/RingVolumeTwoTone.js index 86417620cc10eb..01c0b866e80a8b 100644 --- a/packages/material-ui-icons/lib/RingVolumeTwoTone.js +++ b/packages/material-ui-icons/lib/RingVolumeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.6 17.22c.66.37 1.28.79 1.87 1.27l1.07-1.07c-.91-.75-1.9-1.38-2.94-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12C7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7C20.66 13.78 16.54 12 12 12zm-6.6 5.23c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zM16.19 8.4l1.41 1.41s3.45-3.52 3.56-3.55l-1.41-1.41-3.56 3.55zM11 2h2v5h-2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" -}, "1")], 'RingVolumeTwoTone'); \ No newline at end of file +}, "1")], 'RingVolumeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Roofing.js b/packages/material-ui-icons/lib/Roofing.js index e544b434de00fb..bb21049524be84 100644 --- a/packages/material-ui-icons/lib/Roofing.js +++ b/packages/material-ui-icons/lib/Roofing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" -}), 'Roofing'); \ No newline at end of file +}), 'Roofing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoofingOutlined.js b/packages/material-ui-icons/lib/RoofingOutlined.js index bcf26b225889eb..7d64f223b73edd 100644 --- a/packages/material-ui-icons/lib/RoofingOutlined.js +++ b/packages/material-ui-icons/lib/RoofingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" -}), 'RoofingOutlined'); \ No newline at end of file +}), 'RoofingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoofingRounded.js b/packages/material-ui-icons/lib/RoofingRounded.js index 8b1ed1c6c831a6..713cb082703a75 100644 --- a/packages/material-ui-icons/lib/RoofingRounded.js +++ b/packages/material-ui-icons/lib/RoofingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 18h-2v-2h2v2zm-4-3v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1zm10-5.7V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1.6l-3.33-3c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87h1.31c.25 0 .49-.09.67-.26L12 5.69l6.71 6.05c.19.17.43.26.67.26h1.31c.46 0 .68-.57.33-.87L19 9.3z" -}), 'RoofingRounded'); \ No newline at end of file +}), 'RoofingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoofingSharp.js b/packages/material-ui-icons/lib/RoofingSharp.js index c4063bf2a4aaa1..034df274498909 100644 --- a/packages/material-ui-icons/lib/RoofingSharp.js +++ b/packages/material-ui-icons/lib/RoofingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" -}), 'RoofingSharp'); \ No newline at end of file +}), 'RoofingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoofingTwoTone.js b/packages/material-ui-icons/lib/RoofingTwoTone.js index 39757988922985..f219d31e6f50bc 100644 --- a/packages/material-ui-icons/lib/RoofingTwoTone.js +++ b/packages/material-ui-icons/lib/RoofingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16h2v2h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" -}, "1")], 'RoofingTwoTone'); \ No newline at end of file +}, "1")], 'RoofingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Room.js b/packages/material-ui-icons/lib/Room.js index f6e800f2dc62a7..8564dd7a9da90c 100644 --- a/packages/material-ui-icons/lib/Room.js +++ b/packages/material-ui-icons/lib/Room.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'Room'); \ No newline at end of file +}), 'Room'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomOutlined.js b/packages/material-ui-icons/lib/RoomOutlined.js index 9c32d358bc0dda..16efc406a957e5 100644 --- a/packages/material-ui-icons/lib/RoomOutlined.js +++ b/packages/material-ui-icons/lib/RoomOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9", r: "2.5" -}, "1")], 'RoomOutlined'); \ No newline at end of file +}, "1")], 'RoomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomPreferences.js b/packages/material-ui-icons/lib/RoomPreferences.js index ce965f543f4ff8..a61526cdcc3a97 100644 --- a/packages/material-ui-icons/lib/RoomPreferences.js +++ b/packages/material-ui-icons/lib/RoomPreferences.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26c-.79-1.13-1.26-2.51-1.26-4 0-2.38 1.19-4.47 3-5.74zM10 11h2v2h-2v-2zm11.69 5.37 1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'RoomPreferences'); \ No newline at end of file +}), 'RoomPreferences'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomPreferencesOutlined.js b/packages/material-ui-icons/lib/RoomPreferencesOutlined.js index 2574682df33626..3ca418d11b7117 100644 --- a/packages/material-ui-icons/lib/RoomPreferencesOutlined.js +++ b/packages/material-ui-icons/lib/RoomPreferencesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.69 16.37 1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-15v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1h4zm-7 9h-2v-2h2v2z" -}), 'RoomPreferencesOutlined'); \ No newline at end of file +}), 'RoomPreferencesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomPreferencesRounded.js b/packages/material-ui-icons/lib/RoomPreferencesRounded.js index 6b750387a58ece..f0984d86d6fe1d 100644 --- a/packages/material-ui-icons/lib/RoomPreferencesRounded.js +++ b/packages/material-ui-icons/lib/RoomPreferencesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.75 17c0-.22-.03-.42-.06-.63l.84-.73c.18-.16.22-.42.1-.63l-.59-1.02c-.12-.21-.37-.3-.59-.22l-1.06.36c-.32-.27-.68-.48-1.08-.63l-.22-1.09c-.05-.23-.25-.4-.49-.4h-1.18c-.24 0-.44.17-.49.4l-.22 1.09c-.4.15-.76.36-1.08.63l-1.06-.36c-.23-.08-.47.02-.59.22l-.59 1.02c-.12.21-.08.47.1.63l.84.73c-.03.21-.06.41-.06.63s.03.42.06.63l-.84.73c-.18.16-.22.42-.1.63l.59 1.02c.12.21.37.3.59.22l1.06-.36c.32.27.68.48 1.08.63l.22 1.09c.05.23.25.4.49.4h1.18c.24 0 .44-.17.49-.4l.22-1.09c.4-.15.76-.36 1.08-.63l1.06.36c.23.08.47-.02.59-.22l.59-1.02c.12-.21.08-.47-.1-.63l-.84-.73c.03-.21.06-.41.06-.63zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-4-7.74V6h3v4h2V5c0-.55-.45-1-1-1h-4c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v15H4c-.55 0-1 .45-1 1s.45 1 1 1h8.26c-.79-1.13-1.26-2.51-1.26-4 0-2.38 1.19-4.47 3-5.74zM10 12c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" -}), 'RoomPreferencesRounded'); \ No newline at end of file +}), 'RoomPreferencesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomPreferencesSharp.js b/packages/material-ui-icons/lib/RoomPreferencesSharp.js index 3a5b6e27cc42bb..bb90c710ffd565 100644 --- a/packages/material-ui-icons/lib/RoomPreferencesSharp.js +++ b/packages/material-ui-icons/lib/RoomPreferencesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26c-.79-1.13-1.26-2.51-1.26-4 0-2.38 1.19-4.47 3-5.74zM10 11h2v2h-2v-2zm11.69 5.37 1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'RoomPreferencesSharp'); \ No newline at end of file +}), 'RoomPreferencesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomPreferencesTwoTone.js b/packages/material-ui-icons/lib/RoomPreferencesTwoTone.js index 4254aaffd0163c..08822cb2f4f7ab 100644 --- a/packages/material-ui-icons/lib/RoomPreferencesTwoTone.js +++ b/packages/material-ui-icons/lib/RoomPreferencesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.11V5H7v14h4.29c-.19-.63-.29-1.3-.29-2 0-1.91.76-3.63 2-4.89zM10 11h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13h-2v-2h2v2zm-5 6V5h6v7.11c.57-.59 1.25-1.07 2-1.42V6h2v4h2V4h-4V3H5v16H3v2h9.26c-.42-.6-.75-1.28-.97-2H7zm14.69-1.37 1.14 1-1 1.73-1.45-.49c-.32.27-.68.48-1.08.63L19 22h-2l-.3-1.49c-.4-.15-.76-.36-1.08-.63l-1.45.49-1-1.73 1.14-1c-.08-.5-.08-.76 0-1.26l-1.14-1 1-1.73 1.45.49c.32-.27.68-.48 1.08-.63L17 12h2l.3 1.49c.4.15.76.36 1.08.63l1.45-.49 1 1.73-1.14 1c.08.51.08.77 0 1.27zM20 17c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z" -}, "1")], 'RoomPreferencesTwoTone'); \ No newline at end of file +}, "1")], 'RoomPreferencesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomRounded.js b/packages/material-ui-icons/lib/RoomRounded.js index 8ab7905822ab37..291578fb9c4b27 100644 --- a/packages/material-ui-icons/lib/RoomRounded.js +++ b/packages/material-ui-icons/lib/RoomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'RoomRounded'); \ No newline at end of file +}), 'RoomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomService.js b/packages/material-ui-icons/lib/RoomService.js index 94669515fbed76..57e888940dbb84 100644 --- a/packages/material-ui-icons/lib/RoomService.js +++ b/packages/material-ui-icons/lib/RoomService.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" -}), 'RoomService'); \ No newline at end of file +}), 'RoomService'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomServiceOutlined.js b/packages/material-ui-icons/lib/RoomServiceOutlined.js index 980fde79b2a608..780d7d4d3279f6 100644 --- a/packages/material-ui-icons/lib/RoomServiceOutlined.js +++ b/packages/material-ui-icons/lib/RoomServiceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.98 17H2v2h20v-2zM21 16c-.27-4.07-3.25-7.4-7.16-8.21.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18zm-9-6.42c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z" -}), 'RoomServiceOutlined'); \ No newline at end of file +}), 'RoomServiceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomServiceRounded.js b/packages/material-ui-icons/lib/RoomServiceRounded.js index 7e5a4c0fa95423..d87d0e4d56a416 100644 --- a/packages/material-ui-icons/lib/RoomServiceRounded.js +++ b/packages/material-ui-icons/lib/RoomServiceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1zm10.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" -}), 'RoomServiceRounded'); \ No newline at end of file +}), 'RoomServiceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomServiceSharp.js b/packages/material-ui-icons/lib/RoomServiceSharp.js index a2f0bad310ec7b..3de23de49db296 100644 --- a/packages/material-ui-icons/lib/RoomServiceSharp.js +++ b/packages/material-ui-icons/lib/RoomServiceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h20v2H2v-2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" -}), 'RoomServiceSharp'); \ No newline at end of file +}), 'RoomServiceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomServiceTwoTone.js b/packages/material-ui-icons/lib/RoomServiceTwoTone.js index 43a5cc53c5aa95..ac853d798b4f89 100644 --- a/packages/material-ui-icons/lib/RoomServiceTwoTone.js +++ b/packages/material-ui-icons/lib/RoomServiceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 9.58c-2.95 0-5.47 1.83-6.5 4.41h13c-1.03-2.58-3.55-4.41-6.5-4.41z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21zM12 9.58c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z" -}, "1")], 'RoomServiceTwoTone'); \ No newline at end of file +}, "1")], 'RoomServiceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomSharp.js b/packages/material-ui-icons/lib/RoomSharp.js index 2d8a8e2f577c45..aa9e1ef59e4174 100644 --- a/packages/material-ui-icons/lib/RoomSharp.js +++ b/packages/material-ui-icons/lib/RoomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" -}), 'RoomSharp'); \ No newline at end of file +}), 'RoomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoomTwoTone.js b/packages/material-ui-icons/lib/RoomTwoTone.js index 7f539e88342a72..57915ec568d93e 100644 --- a/packages/material-ui-icons/lib/RoomTwoTone.js +++ b/packages/material-ui-icons/lib/RoomTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9", r: "2.5" -}, "2")], 'RoomTwoTone'); \ No newline at end of file +}, "2")], 'RoomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rotate90DegreesCcw.js b/packages/material-ui-icons/lib/Rotate90DegreesCcw.js index 334f1ab5a793cc..5fb2b13b03e71c 100644 --- a/packages/material-ui-icons/lib/Rotate90DegreesCcw.js +++ b/packages/material-ui-icons/lib/Rotate90DegreesCcw.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" -}), 'Rotate90DegreesCcw'); \ No newline at end of file +}), 'Rotate90DegreesCcw'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rotate90DegreesCcwOutlined.js b/packages/material-ui-icons/lib/Rotate90DegreesCcwOutlined.js index d03dffdcb358cb..fe49224c6ca7e7 100644 --- a/packages/material-ui-icons/lib/Rotate90DegreesCcwOutlined.js +++ b/packages/material-ui-icons/lib/Rotate90DegreesCcwOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" -}), 'Rotate90DegreesCcwOutlined'); \ No newline at end of file +}), 'Rotate90DegreesCcwOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rotate90DegreesCcwRounded.js b/packages/material-ui-icons/lib/Rotate90DegreesCcwRounded.js index ab3df4797b8121..023bd73fc8a92b 100644 --- a/packages/material-ui-icons/lib/Rotate90DegreesCcwRounded.js +++ b/packages/material-ui-icons/lib/Rotate90DegreesCcwRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.93 7.83-3.65 3.66c-.78.78-.78 2.05 0 2.83l3.66 3.66c.78.78 2.05.78 2.83 0l3.66-3.65c.78-.78.78-2.05 0-2.83L8.76 7.82c-.79-.78-2.05-.78-2.83.01zM4.4 12.19l2.25-2.25c.39-.39 1.02-.39 1.42 0l2.24 2.24c.39.39.39 1.02 0 1.41l-2.25 2.25c-.39.39-1.02.39-1.42 0L4.4 13.61c-.39-.39-.39-1.03 0-1.42zm14.96-5.55C17.61 4.88 15.3 4 13 4v-.83c0-.89-1.08-1.34-1.71-.71L9.47 4.29c-.39.39-.39 1.02 0 1.41l1.83 1.83c.62.63 1.7.19 1.7-.7V6c2.02 0 4.03.86 5.45 2.61 2.05 2.52 2.05 6.27 0 8.79C17.03 19.14 15.02 20 13 20c-.78 0-1.55-.13-2.29-.39-.36-.12-.75-.01-1.02.26-.5.5-.34 1.39.34 1.62.96.34 1.96.51 2.97.51 2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" -}), 'Rotate90DegreesCcwRounded'); \ No newline at end of file +}), 'Rotate90DegreesCcwRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rotate90DegreesCcwSharp.js b/packages/material-ui-icons/lib/Rotate90DegreesCcwSharp.js index ff9830a1dfea9d..5739ba1cc6be6b 100644 --- a/packages/material-ui-icons/lib/Rotate90DegreesCcwSharp.js +++ b/packages/material-ui-icons/lib/Rotate90DegreesCcwSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" -}), 'Rotate90DegreesCcwSharp'); \ No newline at end of file +}), 'Rotate90DegreesCcwSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rotate90DegreesCcwTwoTone.js b/packages/material-ui-icons/lib/Rotate90DegreesCcwTwoTone.js index b0706d302d5eaa..b4b3661452f8d4 100644 --- a/packages/material-ui-icons/lib/Rotate90DegreesCcwTwoTone.js +++ b/packages/material-ui-icons/lib/Rotate90DegreesCcwTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.35 9.24 3.69 12.9l3.65 3.66L11 12.9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zm0 10.15L3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66zm12.02-9.92C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" -}, "1")], 'Rotate90DegreesCcwTwoTone'); \ No newline at end of file +}, "1")], 'Rotate90DegreesCcwTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateLeft.js b/packages/material-ui-icons/lib/RotateLeft.js index 9e17fddc558e0e..27a3af03678aaa 100644 --- a/packages/material-ui-icons/lib/RotateLeft.js +++ b/packages/material-ui-icons/lib/RotateLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.11 8.53 5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" -}), 'RotateLeft'); \ No newline at end of file +}), 'RotateLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateLeftOutlined.js b/packages/material-ui-icons/lib/RotateLeftOutlined.js index 4efa263032afbd..81046e7c5625b4 100644 --- a/packages/material-ui-icons/lib/RotateLeftOutlined.js +++ b/packages/material-ui-icons/lib/RotateLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.11 8.53 5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" -}), 'RotateLeftOutlined'); \ No newline at end of file +}), 'RotateLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateLeftRounded.js b/packages/material-ui-icons/lib/RotateLeftRounded.js index 104b5ab18a93d8..b71045cdd63367 100644 --- a/packages/material-ui-icons/lib/RotateLeftRounded.js +++ b/packages/material-ui-icons/lib/RotateLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.56 7.98C6.1 7.52 5.31 7.6 5 8.17c-.28.51-.5 1.03-.67 1.58-.19.63.31 1.25.96 1.25h.01c.43 0 .82-.28.94-.7.12-.4.28-.79.48-1.17.22-.37.15-.84-.16-1.15zM5.31 13h-.02c-.65 0-1.15.62-.96 1.25.16.54.38 1.07.66 1.58.31.57 1.11.66 1.57.2.3-.31.38-.77.17-1.15-.2-.37-.36-.76-.48-1.16-.12-.44-.51-.72-.94-.72zm2.85 6.02c.51.28 1.04.5 1.59.66.62.18 1.24-.32 1.24-.96v-.03c0-.43-.28-.82-.7-.94-.4-.12-.78-.28-1.15-.48-.38-.21-.86-.14-1.16.17l-.03.03c-.45.45-.36 1.24.21 1.55zM13 4.07v-.66c0-.89-1.08-1.34-1.71-.71L9.17 4.83c-.4.4-.4 1.04 0 1.43l2.13 2.08c.63.62 1.7.17 1.7-.72V6.09c2.84.48 5 2.94 5 5.91 0 2.73-1.82 5.02-4.32 5.75-.41.12-.68.51-.68.94v.02c0 .65.61 1.14 1.23.96C17.57 18.71 20 15.64 20 12c0-4.08-3.05-7.44-7-7.93z" -}), 'RotateLeftRounded'); \ No newline at end of file +}), 'RotateLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateLeftSharp.js b/packages/material-ui-icons/lib/RotateLeftSharp.js index 3f750108cecae0..eb4a26d8d91328 100644 --- a/packages/material-ui-icons/lib/RotateLeftSharp.js +++ b/packages/material-ui-icons/lib/RotateLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.11 8.53 5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" -}), 'RotateLeftSharp'); \ No newline at end of file +}), 'RotateLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateLeftTwoTone.js b/packages/material-ui-icons/lib/RotateLeftTwoTone.js index a95337d16c55a3..da02475596c523 100644 --- a/packages/material-ui-icons/lib/RotateLeftTwoTone.js +++ b/packages/material-ui-icons/lib/RotateLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 17.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91zm-7.31-1.02 1.41-1.42c-.52-.75-.87-1.59-1.01-2.47H4.07c.17 1.39.72 2.73 1.62 3.89zm1.42-8.36L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM11 17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32c1.16.9 2.51 1.44 3.9 1.61V17.9z" -}), 'RotateLeftTwoTone'); \ No newline at end of file +}), 'RotateLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateRight.js b/packages/material-ui-icons/lib/RotateRight.js index 1f748f25b994ab..6209b4f314336e 100644 --- a/packages/material-ui-icons/lib/RotateRight.js +++ b/packages/material-ui-icons/lib/RotateRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.55 5.55 11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42 1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" -}), 'RotateRight'); \ No newline at end of file +}), 'RotateRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateRightOutlined.js b/packages/material-ui-icons/lib/RotateRightOutlined.js index 4b5fcf35db398c..7cdaee1304502c 100644 --- a/packages/material-ui-icons/lib/RotateRightOutlined.js +++ b/packages/material-ui-icons/lib/RotateRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.55 5.55 11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42 1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" -}), 'RotateRightOutlined'); \ No newline at end of file +}), 'RotateRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateRightRounded.js b/packages/material-ui-icons/lib/RotateRightRounded.js index 3b4f3afec4537d..2cd578f291b662 100644 --- a/packages/material-ui-icons/lib/RotateRightRounded.js +++ b/packages/material-ui-icons/lib/RotateRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.83 4.83 12.7 2.7c-.62-.62-1.7-.18-1.7.71v.66C7.06 4.56 4 7.92 4 12c0 3.64 2.43 6.71 5.77 7.68.62.18 1.23-.32 1.23-.96v-.03c0-.43-.27-.82-.68-.94C7.82 17.03 6 14.73 6 12c0-2.97 2.16-5.43 5-5.91v1.53c0 .89 1.07 1.33 1.7.71l2.13-2.08c.4-.38.4-1.02 0-1.42zm4.84 4.93c-.16-.55-.38-1.08-.66-1.59-.31-.57-1.1-.66-1.56-.2l-.01.01c-.31.31-.38.78-.17 1.16.2.37.36.76.48 1.16.12.42.51.7.94.7h.02c.65 0 1.15-.62.96-1.24zM13 18.68v.02c0 .65.62 1.14 1.24.96.55-.16 1.08-.38 1.59-.66.57-.31.66-1.1.2-1.56l-.02-.02c-.31-.31-.78-.38-1.16-.17-.37.21-.76.37-1.16.49-.41.12-.69.51-.69.94zm4.44-2.65c.46.46 1.25.37 1.56-.2.28-.51.5-1.04.67-1.59.18-.62-.31-1.24-.96-1.24h-.02c-.44 0-.82.28-.94.7-.12.4-.28.79-.48 1.17-.21.38-.13.86.17 1.16z" -}), 'RotateRightRounded'); \ No newline at end of file +}), 'RotateRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateRightSharp.js b/packages/material-ui-icons/lib/RotateRightSharp.js index cc426350a16dab..7df87b935de656 100644 --- a/packages/material-ui-icons/lib/RotateRightSharp.js +++ b/packages/material-ui-icons/lib/RotateRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.55 5.55 11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42 1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" -}), 'RotateRightSharp'); \ No newline at end of file +}), 'RotateRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RotateRightTwoTone.js b/packages/material-ui-icons/lib/RotateRightTwoTone.js index 7b4bcdee1e50b5..f483629815abea 100644 --- a/packages/material-ui-icons/lib/RotateRightTwoTone.js +++ b/packages/material-ui-icons/lib/RotateRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45L11 1zm4.46 15.87c-.75.54-1.59.89-2.46 1.03v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44zm2.85.02c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48l1.42 1.41z" -}), 'RotateRightTwoTone'); \ No newline at end of file +}), 'RotateRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoundedCorner.js b/packages/material-ui-icons/lib/RoundedCorner.js index 38900907f6733b..33db1adeae98dd 100644 --- a/packages/material-ui-icons/lib/RoundedCorner.js +++ b/packages/material-ui-icons/lib/RoundedCorner.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" -}), 'RoundedCorner'); \ No newline at end of file +}), 'RoundedCorner'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoundedCornerOutlined.js b/packages/material-ui-icons/lib/RoundedCornerOutlined.js index 0b15e97df6f2dc..f1004c5823bd79 100644 --- a/packages/material-ui-icons/lib/RoundedCornerOutlined.js +++ b/packages/material-ui-icons/lib/RoundedCornerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" -}), 'RoundedCornerOutlined'); \ No newline at end of file +}), 'RoundedCornerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoundedCornerRounded.js b/packages/material-ui-icons/lib/RoundedCornerRounded.js index 8a80dc59ba2af5..ea8812f72c35dc 100644 --- a/packages/material-ui-icons/lib/RoundedCornerRounded.js +++ b/packages/material-ui-icons/lib/RoundedCornerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" -}), 'RoundedCornerRounded'); \ No newline at end of file +}), 'RoundedCornerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoundedCornerSharp.js b/packages/material-ui-icons/lib/RoundedCornerSharp.js index ce282267527237..f245825046732e 100644 --- a/packages/material-ui-icons/lib/RoundedCornerSharp.js +++ b/packages/material-ui-icons/lib/RoundedCornerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 3H11v2h8v8h2V3z" -}), 'RoundedCornerSharp'); \ No newline at end of file +}), 'RoundedCornerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RoundedCornerTwoTone.js b/packages/material-ui-icons/lib/RoundedCornerTwoTone.js index 990013ae919d3e..b412f8cb78b9ff 100644 --- a/packages/material-ui-icons/lib/RoundedCornerTwoTone.js +++ b/packages/material-ui-icons/lib/RoundedCornerTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" -}), 'RoundedCornerTwoTone'); \ No newline at end of file +}), 'RoundedCornerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Router.js b/packages/material-ui-icons/lib/Router.js index 83c6f411127848..ff285c6828e4fc 100644 --- a/packages/material-ui-icons/lib/Router.js +++ b/packages/material-ui-icons/lib/Router.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.2 5.9.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1 .9 0 1.8.3 2.5 1l.8-.8zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" -}), 'Router'); \ No newline at end of file +}), 'Router'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RouterOutlined.js b/packages/material-ui-icons/lib/RouterOutlined.js index 19ecedd8415e4b..0fef063ad56d97 100644 --- a/packages/material-ui-icons/lib/RouterOutlined.js +++ b/packages/material-ui-icons/lib/RouterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z" -}), 'RouterOutlined'); \ No newline at end of file +}), 'RouterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RouterRounded.js b/packages/material-ui-icons/lib/RouterRounded.js index 2cb7f00d46a2c1..ae3819a028420a 100644 --- a/packages/material-ui-icons/lib/RouterRounded.js +++ b/packages/material-ui-icons/lib/RouterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.45 5.55c.19.19.5.21.72.04C13.3 4.69 14.65 4.2 16 4.2s2.7.49 3.84 1.39c.21.17.52.15.72-.04l.04-.05c.22-.22.21-.59-.03-.8C19.24 3.57 17.62 3 16 3s-3.24.57-4.57 1.7c-.24.21-.26.57-.03.8l.05.05zm1.7.76c-.25.2-.26.58-.04.8l.04.04c.2.2.5.2.72.04.63-.48 1.38-.69 2.13-.69s1.5.21 2.13.68c.22.17.53.16.72-.04l.04-.04c.23-.23.21-.6-.04-.8-.83-.64-1.84-1-2.85-1s-2.02.36-2.85 1.01zM19 13h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" -}), 'RouterRounded'); \ No newline at end of file +}), 'RouterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RouterSharp.js b/packages/material-ui-icons/lib/RouterSharp.js index c78bb46a17fd88..bfa575b8a8986e 100644 --- a/packages/material-ui-icons/lib/RouterSharp.js +++ b/packages/material-ui-icons/lib/RouterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.2 5.9.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8zM21 13h-4V9h-2v4H3v8h18v-8zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" -}), 'RouterSharp'); \ No newline at end of file +}), 'RouterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RouterTwoTone.js b/packages/material-ui-icons/lib/RouterTwoTone.js index 9093285e29d491..227d5d8ef4cef7 100644 --- a/packages/material-ui-icons/lib/RouterTwoTone.js +++ b/packages/material-ui-icons/lib/RouterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 15H5v4h14v-4h-4zm-7 3H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z" -}, "1")], 'RouterTwoTone'); \ No newline at end of file +}, "1")], 'RouterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rowing.js b/packages/material-ui-icons/lib/Rowing.js index 99bd3478f3ecb7..b4068e333e34ad 100644 --- a/packages/material-ui-icons/lib/Rowing.js +++ b/packages/material-ui-icons/lib/Rowing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.35-.39.99-.73 1.65-.73h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" -}), 'Rowing'); \ No newline at end of file +}), 'Rowing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RowingOutlined.js b/packages/material-ui-icons/lib/RowingOutlined.js index 1acb73e65ee5e3..e677fe9bbc8534 100644 --- a/packages/material-ui-icons/lib/RowingOutlined.js +++ b/packages/material-ui-icons/lib/RowingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" -}), 'RowingOutlined'); \ No newline at end of file +}), 'RowingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RowingRounded.js b/packages/material-ui-icons/lib/RowingRounded.js index a5784280e45936..df765a70ea780f 100644 --- a/packages/material-ui-icons/lib/RowingRounded.js +++ b/packages/material-ui-icons/lib/RowingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.75 18.25c-.41.41-.41 1.09 0 1.5.41.41 1.09.41 1.5 0L9 17h2l-2.5-2.5-3.75 3.75zM15 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm5.29 15.3-2-2.01c-.18-.18-.44-.29-.71-.29H16.5l-6.29-6.29c.79-.33 1.66-.87 2.29-1.39v2.27l3.58 3.58c.57-.55.92-1.32.92-2.16V8.26C17 7.02 15.98 6 14.74 6h-.02c-.34 0-.67.09-.96.23-.26.12-.5.29-.69.5l-1.4 1.55C10.61 9.45 8.66 10.35 7 10.32c-.6 0-1.08.48-1.08 1.08 0 .6.48 1.08 1.08 1.08.31 0 .61-.03.9-.07l7.11 7.09v1.08c0 .26.1.52.29.7l1.99 2.01c.39.39 1.02.39 1.42 0l1.58-1.58c.39-.38.39-1.02 0-1.41z" -}), 'RowingRounded'); \ No newline at end of file +}), 'RowingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RowingSharp.js b/packages/material-ui-icons/lib/RowingSharp.js index 463f125f05eaf5..b048070bf3e6f6 100644 --- a/packages/material-ui-icons/lib/RowingSharp.js +++ b/packages/material-ui-icons/lib/RowingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6 17 7.01 17 8.25V17l-.92-.83-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" -}), 'RowingSharp'); \ No newline at end of file +}), 'RowingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RowingTwoTone.js b/packages/material-ui-icons/lib/RowingTwoTone.js index 3e4686c18e468e..3aa8aed5bc44ab 100644 --- a/packages/material-ui-icons/lib/RowingTwoTone.js +++ b/packages/material-ui-icons/lib/RowingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" -}), 'RowingTwoTone'); \ No newline at end of file +}), 'RowingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RssFeed.js b/packages/material-ui-icons/lib/RssFeed.js index b285f11f85be7f..3bcaa9381dae21 100644 --- a/packages/material-ui-icons/lib/RssFeed.js +++ b/packages/material-ui-icons/lib/RssFeed.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.18", cy: "17.82", r: "2.18" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" -}, "1")], 'RssFeed'); \ No newline at end of file +}, "1")], 'RssFeed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RssFeedOutlined.js b/packages/material-ui-icons/lib/RssFeedOutlined.js index 6f5a580b12b42a..6304ea32dd7efd 100644 --- a/packages/material-ui-icons/lib/RssFeedOutlined.js +++ b/packages/material-ui-icons/lib/RssFeedOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.18", cy: "17.82", r: "2.18" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" -}, "1")], 'RssFeedOutlined'); \ No newline at end of file +}, "1")], 'RssFeedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RssFeedRounded.js b/packages/material-ui-icons/lib/RssFeedRounded.js index dba542468fac90..87e5672c68f51e 100644 --- a/packages/material-ui-icons/lib/RssFeedRounded.js +++ b/packages/material-ui-icons/lib/RssFeedRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.18", cy: "17.82", r: "2.18" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.59 10.23c-.84-.14-1.59.55-1.59 1.4 0 .71.53 1.28 1.23 1.4 2.92.51 5.22 2.82 5.74 5.74.12.7.69 1.23 1.4 1.23.85 0 1.54-.75 1.41-1.59-.68-4.2-3.99-7.51-8.19-8.18zm-.03-5.71C4.73 4.43 4 5.1 4 5.93c0 .73.55 1.33 1.27 1.4 6.01.6 10.79 5.38 11.39 11.39.07.73.67 1.28 1.4 1.28.84 0 1.5-.73 1.42-1.56-.73-7.34-6.57-13.19-13.92-13.92z" -}, "1")], 'RssFeedRounded'); \ No newline at end of file +}, "1")], 'RssFeedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RssFeedSharp.js b/packages/material-ui-icons/lib/RssFeedSharp.js index 4d97013ab885b0..e90aaaa9c000ea 100644 --- a/packages/material-ui-icons/lib/RssFeedSharp.js +++ b/packages/material-ui-icons/lib/RssFeedSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.18", cy: "17.82", r: "2.18" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10.1v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9zm0-5.66v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56z" -}, "1")], 'RssFeedSharp'); \ No newline at end of file +}, "1")], 'RssFeedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RssFeedTwoTone.js b/packages/material-ui-icons/lib/RssFeedTwoTone.js index cdc85b390d177d..35ea469a875b07 100644 --- a/packages/material-ui-icons/lib/RssFeedTwoTone.js +++ b/packages/material-ui-icons/lib/RssFeedTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.18", cy: "17.82", r: "2.18" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" -}, "1")], 'RssFeedTwoTone'); \ No newline at end of file +}, "1")], 'RssFeedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rsvp.js b/packages/material-ui-icons/lib/Rsvp.js index 9ce5b2dfbaa2cc..38fe5550769eab 100644 --- a/packages/material-ui-icons/lib/Rsvp.js +++ b/packages/material-ui-icons/lib/Rsvp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.1 12.9 6 15H4.5l-.85-2H2.5v2H1V9h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v2H18V9h3.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7v-1.5h3v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h3.5z" -}), 'Rsvp'); \ No newline at end of file +}), 'Rsvp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RsvpOutlined.js b/packages/material-ui-icons/lib/RsvpOutlined.js index 168d9dca0bd477..eadb2403eb50fb 100644 --- a/packages/material-ui-icons/lib/RsvpOutlined.js +++ b/packages/material-ui-icons/lib/RsvpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.1 12.9 6 15H4.5l-.85-2H2.5v2H1V9h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v2H18V9h3.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7v-1.5h3v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h3.5z" -}), 'RsvpOutlined'); \ No newline at end of file +}), 'RsvpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RsvpRounded.js b/packages/material-ui-icons/lib/RsvpRounded.js index 8afec76d2988c4..ba42aec0a9b4fd 100644 --- a/packages/material-ui-icons/lib/RsvpRounded.js +++ b/packages/material-ui-icons/lib/RsvpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.54 9c.48 0 .83.46.69.92l-1.27 4.36c-.12.43-.52.72-.96.72-.44 0-.84-.29-.96-.72l-1.27-4.36c-.14-.46.21-.92.69-.92.32 0 .6.21.69.52l.85 2.91.85-2.91c.09-.31.37-.52.69-.52zM5.1 12.9l.49 1.14c.19.45-.14.96-.63.96-.28 0-.53-.17-.63-.42L3.65 13H2.5v1.31c0 .38-.31.69-.69.69h-.12c-.38 0-.69-.31-.69-.69V10c0-.55.45-1 1-1h2.5c.83 0 1.5.67 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10c0-.55.45-1 1-1h2.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zm-10-.75c0 .41-.34.75-.75.75H8.5v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75z" -}), 'RsvpRounded'); \ No newline at end of file +}), 'RsvpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RsvpSharp.js b/packages/material-ui-icons/lib/RsvpSharp.js index aea1b1cd063848..8888db74b7b9c7 100644 --- a/packages/material-ui-icons/lib/RsvpSharp.js +++ b/packages/material-ui-icons/lib/RsvpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.14 13 6 15H4.5l-.85-2H2.5v2H1V9h5v4h-.86zm-.64-2.5h-2v1h2v-1zM23 13h-3.5v2H18V9h5v4zm-1.5-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h3V15H7v-1.5h3v-.75H7V9h4.5z" -}), 'RsvpSharp'); \ No newline at end of file +}), 'RsvpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RsvpTwoTone.js b/packages/material-ui-icons/lib/RsvpTwoTone.js index 4f1cb8af91f3f1..bd8903c05e26ea 100644 --- a/packages/material-ui-icons/lib/RsvpTwoTone.js +++ b/packages/material-ui-icons/lib/RsvpTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.1 12.9 6 15H4.5l-.85-2H2.5v2H1V9h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v2H18V9h3.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7v-1.5h3v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h3.5z" -}), 'RsvpTwoTone'); \ No newline at end of file +}), 'RsvpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rtt.js b/packages/material-ui-icons/lib/Rtt.js index d291439bf0d293..66e7e8a9c080d8 100644 --- a/packages/material-ui-icons/lib/Rtt.js +++ b/packages/material-ui-icons/lib/Rtt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" -}), 'Rtt'); \ No newline at end of file +}), 'Rtt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RttOutlined.js b/packages/material-ui-icons/lib/RttOutlined.js index ad06a02542136c..543f66e12f31e4 100644 --- a/packages/material-ui-icons/lib/RttOutlined.js +++ b/packages/material-ui-icons/lib/RttOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" -}), 'RttOutlined'); \ No newline at end of file +}), 'RttOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RttRounded.js b/packages/material-ui-icons/lib/RttRounded.js index 35b6718de6b39d..0352a628dd6fef 100644 --- a/packages/material-ui-icons/lib/RttRounded.js +++ b/packages/material-ui-icons/lib/RttRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.76 4.69-.61 3.89c-.12.78.48 1.49 1.28 1.49.64 0 1.18-.46 1.28-1.09l.53-3.41h2.58L11.8 18.43h-1.24c-.63 0-1.16.46-1.26 1.08v.01c-.13.78.47 1.48 1.26 1.48h4.67c.63 0 1.17-.46 1.26-1.08v-.01c.12-.78-.48-1.48-1.26-1.48h-.86l2-12.86h2.58l-.47 3.01c-.12.78.48 1.49 1.28 1.49h.03c.64 0 1.18-.46 1.28-1.09l.57-3.67C21.83 4.09 20.89 3 19.66 3h-8.92c-.98 0-1.82.72-1.98 1.69zM8 5H4.86c-.5 0-.92.36-.99.85-.1.6.37 1.15.99 1.15h2.83L8 5zm-.61 4H4.25c-.5 0-.92.36-.99.85-.1.6.37 1.15.99 1.15h2.83l.31-2zm.92 8H3.17c-.49 0-.91.36-.99.85-.1.6.37 1.15.99 1.15H8l.31-2zm.62-4H3.79c-.49 0-.91.36-.99.85-.1.6.37 1.15.99 1.15h4.84l.3-2z" -}), 'RttRounded'); \ No newline at end of file +}), 'RttRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RttSharp.js b/packages/material-ui-icons/lib/RttSharp.js index e76dc60e53de50..4d81e83dba4f5c 100644 --- a/packages/material-ui-icons/lib/RttSharp.js +++ b/packages/material-ui-icons/lib/RttSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" -}), 'RttSharp'); \ No newline at end of file +}), 'RttSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RttTwoTone.js b/packages/material-ui-icons/lib/RttTwoTone.js index 233e28361c4282..a8307ee46545a2 100644 --- a/packages/material-ui-icons/lib/RttTwoTone.js +++ b/packages/material-ui-icons/lib/RttTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" -}), 'RttTwoTone'); \ No newline at end of file +}), 'RttTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Rule.js b/packages/material-ui-icons/lib/Rule.js index c391960a5304ea..c380448953811d 100644 --- a/packages/material-ui-icons/lib/Rule.js +++ b/packages/material-ui-icons/lib/Rule.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" -}), 'Rule'); \ No newline at end of file +}), 'Rule'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleFolder.js b/packages/material-ui-icons/lib/RuleFolder.js index ef9e9a201f8d41..60a375de1e2222 100644 --- a/packages/material-ui-icons/lib/RuleFolder.js +++ b/packages/material-ui-icons/lib/RuleFolder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13z" -}), 'RuleFolder'); \ No newline at end of file +}), 'RuleFolder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleFolderOutlined.js b/packages/material-ui-icons/lib/RuleFolderOutlined.js index 043933c8b12069..eebabdf71c5591 100644 --- a/packages/material-ui-icons/lib/RuleFolderOutlined.js +++ b/packages/material-ui-icons/lib/RuleFolderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13zM20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10z" -}), 'RuleFolderOutlined'); \ No newline at end of file +}), 'RuleFolderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleFolderRounded.js b/packages/material-ui-icons/lib/RuleFolderRounded.js index 1f00d0402183e2..92bf5a001b22a5 100644 --- a/packages/material-ui-icons/lib/RuleFolderRounded.js +++ b/packages/material-ui-icons/lib/RuleFolderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM7.12 15.29l-1.41-1.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.83-2.83c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L8.53 15.3c-.39.38-1.02.38-1.41-.01zM17.41 13l.88.88c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-.88-.88-.88.88c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41l.88-.88-.88-.88a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.88.88.88-.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-.88.88z" -}), 'RuleFolderRounded'); \ No newline at end of file +}), 'RuleFolderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleFolderSharp.js b/packages/material-ui-icons/lib/RuleFolderSharp.js index eacdd8cfd500c3..14fe0d8b2f1ecb 100644 --- a/packages/material-ui-icons/lib/RuleFolderSharp.js +++ b/packages/material-ui-icons/lib/RuleFolderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6H12l-2-2H2v16h20V6zM7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13z" -}), 'RuleFolderSharp'); \ No newline at end of file +}), 'RuleFolderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleFolderTwoTone.js b/packages/material-ui-icons/lib/RuleFolderTwoTone.js index d0eed50f18d597..bb3ae031bc05af 100644 --- a/packages/material-ui-icons/lib/RuleFolderTwoTone.js +++ b/packages/material-ui-icons/lib/RuleFolderTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.17 8-2-2H4v12h16V8h-8.83zm-3.34 8L5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zM19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13 19 14.59z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13zM20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10z" -}, "1")], 'RuleFolderTwoTone'); \ No newline at end of file +}, "1")], 'RuleFolderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleOutlined.js b/packages/material-ui-icons/lib/RuleOutlined.js index ec777bcff9bbfe..50f1ba3764ece8 100644 --- a/packages/material-ui-icons/lib/RuleOutlined.js +++ b/packages/material-ui-icons/lib/RuleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" -}), 'RuleOutlined'); \ No newline at end of file +}), 'RuleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleRounded.js b/packages/material-ui-icons/lib/RuleRounded.js index 25e79af6a29c2b..67664cc2d2d5e1 100644 --- a/packages/material-ui-icons/lib/RuleRounded.js +++ b/packages/material-ui-icons/lib/RuleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.83 10.29-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.24c-.39.4-1.02.4-1.41.01zM10 7H3c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm10.29 5.71a.9959.9959 0 0 0-1.41 0L17 14.59l-1.88-1.88a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L15.59 16l-1.88 1.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17 17.41l1.88 1.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L18.41 16l1.88-1.88c.39-.39.39-1.02 0-1.41zM10 15H3c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'RuleRounded'); \ No newline at end of file +}), 'RuleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleSharp.js b/packages/material-ui-icons/lib/RuleSharp.js index d9540cd272f740..14515fa21fb401 100644 --- a/packages/material-ui-icons/lib/RuleSharp.js +++ b/packages/material-ui-icons/lib/RuleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" -}), 'RuleSharp'); \ No newline at end of file +}), 'RuleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RuleTwoTone.js b/packages/material-ui-icons/lib/RuleTwoTone.js index 22a0638c9c4438..6f48c8dee69ee4 100644 --- a/packages/material-ui-icons/lib/RuleTwoTone.js +++ b/packages/material-ui-icons/lib/RuleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" -}), 'RuleTwoTone'); \ No newline at end of file +}), 'RuleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunCircle.js b/packages/material-ui-icons/lib/RunCircle.js index 0816683cd9da31..e646967e0e75fd 100644 --- a/packages/material-ui-icons/lib/RunCircle.js +++ b/packages/material-ui-icons/lib/RunCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z" -}), 'RunCircle'); \ No newline at end of file +}), 'RunCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunCircleOutlined.js b/packages/material-ui-icons/lib/RunCircleOutlined.js index 10acb91223fa58..6b383e33ece0ec 100644 --- a/packages/material-ui-icons/lib/RunCircleOutlined.js +++ b/packages/material-ui-icons/lib/RunCircleOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.54 8.97c-.23-.47-.76-.71-1.26-.53L9 9.65V12h1v-1.65l1.54-.57-.96 4.89-2.78-.57-.2.98 3.76.77.52-2.64L13 14.42V18h1v-3.97l-1.32-1.44.41-2.35C13.99 11.46 15.3 12 16 12v-1c-.41 0-1.63-.33-2.46-2.03z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13.5", cy: "7", r: "1" -}, "2")], 'RunCircleOutlined'); \ No newline at end of file +}, "2")], 'RunCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunCircleRounded.js b/packages/material-ui-icons/lib/RunCircleRounded.js index 2ffdef83a1cf4d..934e5faf862692 100644 --- a/packages/material-ui-icons/lib/RunCircleRounded.js +++ b/packages/material-ui-icons/lib/RunCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm1.91 5.91c-.71-.2-1.63-.74-2.32-1.66l-.41 2.35 1.19 1.3c.08.08.13.2.13.32v3.28c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.08l-1.11-1.21-.43 2.15c-.05.27-.32.45-.59.39l-2.78-.57c-.27-.06-.45-.32-.39-.59.06-.27.32-.44.59-.39l2.29.47.96-4.89-1.54.57v1.15c0 .28-.22.5-.5.5s-.5-.22-.5-.5V10c0-.21.13-.4.33-.47l2.95-1.09c.49-.18 1.02.04 1.25.51.65 1.35 1.55 1.85 2.1 2 .22.05.37.23.37.45v.04c0 .31-.29.55-.59.47z" -}), 'RunCircleRounded'); \ No newline at end of file +}), 'RunCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunCircleSharp.js b/packages/material-ui-icons/lib/RunCircleSharp.js index d4930d96ac00e8..a730e3853cd837 100644 --- a/packages/material-ui-icons/lib/RunCircleSharp.js +++ b/packages/material-ui-icons/lib/RunCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z" -}), 'RunCircleSharp'); \ No newline at end of file +}), 'RunCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunCircleTwoTone.js b/packages/material-ui-icons/lib/RunCircleTwoTone.js index f8224a5808b25d..70cbd833a74f0f 100644 --- a/packages/material-ui-icons/lib/RunCircleTwoTone.js +++ b/packages/material-ui-icons/lib/RunCircleTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1.5 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.54 8.97c-.23-.47-.76-.71-1.26-.53L9 9.65V12h1v-1.65l1.54-.57-.96 4.89-2.78-.57-.2.98 3.76.77.52-2.64L13 14.42V18h1v-3.97l-1.32-1.44.41-2.35C13.99 11.46 15.3 12 16 12v-1c-.41 0-1.63-.33-2.46-2.03z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "13.5", cy: "7", r: "1" -}, "3")], 'RunCircleTwoTone'); \ No newline at end of file +}, "3")], 'RunCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunningWithErrors.js b/packages/material-ui-icons/lib/RunningWithErrors.js index 8bf995dabbd502..b3e60c87f26038 100644 --- a/packages/material-ui-icons/lib/RunningWithErrors.js +++ b/packages/material-ui-icons/lib/RunningWithErrors.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" -}), 'RunningWithErrors'); \ No newline at end of file +}), 'RunningWithErrors'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunningWithErrorsOutlined.js b/packages/material-ui-icons/lib/RunningWithErrorsOutlined.js index fa1eb329d03777..cc52015f2513ff 100644 --- a/packages/material-ui-icons/lib/RunningWithErrorsOutlined.js +++ b/packages/material-ui-icons/lib/RunningWithErrorsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" -}), 'RunningWithErrorsOutlined'); \ No newline at end of file +}), 'RunningWithErrorsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunningWithErrorsRounded.js b/packages/material-ui-icons/lib/RunningWithErrorsRounded.js index db7868c16ddc2c..83f368bf93ffb9 100644 --- a/packages/material-ui-icons/lib/RunningWithErrorsRounded.js +++ b/packages/material-ui-icons/lib/RunningWithErrorsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 18c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" -}), 'RunningWithErrorsRounded'); \ No newline at end of file +}), 'RunningWithErrorsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunningWithErrorsSharp.js b/packages/material-ui-icons/lib/RunningWithErrorsSharp.js index 11473e7a883b72..f232f381d6660a 100644 --- a/packages/material-ui-icons/lib/RunningWithErrorsSharp.js +++ b/packages/material-ui-icons/lib/RunningWithErrorsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" -}), 'RunningWithErrorsSharp'); \ No newline at end of file +}), 'RunningWithErrorsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RunningWithErrorsTwoTone.js b/packages/material-ui-icons/lib/RunningWithErrorsTwoTone.js index 581ff7df4f1521..475d4d80d5512c 100644 --- a/packages/material-ui-icons/lib/RunningWithErrorsTwoTone.js +++ b/packages/material-ui-icons/lib/RunningWithErrorsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" -}), 'RunningWithErrorsTwoTone'); \ No newline at end of file +}), 'RunningWithErrorsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RvHookup.js b/packages/material-ui-icons/lib/RvHookup.js index 210985af9242e2..f21bcbb1c0c5f5 100644 --- a/packages/material-ui-icons/lib/RvHookup.js +++ b/packages/material-ui-icons/lib/RvHookup.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3z" -}), 'RvHookup'); \ No newline at end of file +}), 'RvHookup'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RvHookupOutlined.js b/packages/material-ui-icons/lib/RvHookupOutlined.js index 9f41574704c2ac..036ba7055a445c 100644 --- a/packages/material-ui-icons/lib/RvHookupOutlined.js +++ b/packages/material-ui-icons/lib/RvHookupOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" -}), 'RvHookupOutlined'); \ No newline at end of file +}), 'RvHookupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RvHookupRounded.js b/packages/material-ui-icons/lib/RvHookupRounded.js index a875bb6be726a8..ac347cfcd65c0d 100644 --- a/packages/material-ui-icons/lib/RvHookupRounded.js +++ b/packages/material-ui-icons/lib/RvHookupRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 17h-1v-6c0-1.1-.9-2-2-2H7v-.74c0-.46-.56-.7-.89-.37L4.37 9.63c-.2.2-.2.53 0 .74l1.74 1.74c.33.33.89.1.89-.37V11h4v3H5c-.55 0-1 .45-1 1v2c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h7c.55 0 1-.45 1-1s-.45-1-1-1zm-10 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h3c.55 0 1 .45 1 1v2zm-8-8h7v.74c0 .46.56.7.89.37l1.74-1.74c.2-.2.2-.53 0-.74l-1.74-1.74c-.33-.33-.89-.1-.89.37V4h-7c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'RvHookupRounded'); \ No newline at end of file +}), 'RvHookupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RvHookupSharp.js b/packages/material-ui-icons/lib/RvHookupSharp.js index f932db816cb870..97f08811422606 100644 --- a/packages/material-ui-icons/lib/RvHookupSharp.js +++ b/packages/material-ui-icons/lib/RvHookupSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17V9H7V7l-3 3 3 3v-2h4v3H4v5h4c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" -}), 'RvHookupSharp'); \ No newline at end of file +}), 'RvHookupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/RvHookupTwoTone.js b/packages/material-ui-icons/lib/RvHookupTwoTone.js index 0a4c86cb51bbcd..c35885d30c644a 100644 --- a/packages/material-ui-icons/lib/RvHookupTwoTone.js +++ b/packages/material-ui-icons/lib/RvHookupTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" -}, "1")], 'RvHookupTwoTone'); \ No newline at end of file +}, "1")], 'RvHookupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SafetyDivider.js b/packages/material-ui-icons/lib/SafetyDivider.js index be45b7d35b0f38..acc65f17e8dc55 100644 --- a/packages/material-ui-icons/lib/SafetyDivider.js +++ b/packages/material-ui-icons/lib/SafetyDivider.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" -}), 'SafetyDivider'); \ No newline at end of file +}), 'SafetyDivider'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SafetyDividerOutlined.js b/packages/material-ui-icons/lib/SafetyDividerOutlined.js index d296a7b2be72ad..e89b87afc4cd4f 100644 --- a/packages/material-ui-icons/lib/SafetyDividerOutlined.js +++ b/packages/material-ui-icons/lib/SafetyDividerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" -}), 'SafetyDividerOutlined'); \ No newline at end of file +}), 'SafetyDividerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SafetyDividerRounded.js b/packages/material-ui-icons/lib/SafetyDividerRounded.js index 42b85471f72bc6..43d19046b06124 100644 --- a/packages/material-ui-icons/lib/SafetyDividerRounded.js +++ b/packages/material-ui-icons/lib/SafetyDividerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" -}), 'SafetyDividerRounded'); \ No newline at end of file +}), 'SafetyDividerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SafetyDividerSharp.js b/packages/material-ui-icons/lib/SafetyDividerSharp.js index 29ec99c9045080..4571464f445fb7 100644 --- a/packages/material-ui-icons/lib/SafetyDividerSharp.js +++ b/packages/material-ui-icons/lib/SafetyDividerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" -}), 'SafetyDividerSharp'); \ No newline at end of file +}), 'SafetyDividerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SafetyDividerTwoTone.js b/packages/material-ui-icons/lib/SafetyDividerTwoTone.js index 7d3dd609f68ba7..6f145ebda28e22 100644 --- a/packages/material-ui-icons/lib/SafetyDividerTwoTone.js +++ b/packages/material-ui-icons/lib/SafetyDividerTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" -}), 'SafetyDividerTwoTone'); \ No newline at end of file +}), 'SafetyDividerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sailing.js b/packages/material-ui-icons/lib/Sailing.js index ed3e2c29f1cbc2..6276562b580182 100644 --- a/packages/material-ui-icons/lib/Sailing.js +++ b/packages/material-ui-icons/lib/Sailing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13.5V2L3 13.5h8zm10 0C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm1 1.5H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" -}), 'Sailing'); \ No newline at end of file +}), 'Sailing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SailingOutlined.js b/packages/material-ui-icons/lib/SailingOutlined.js index 1a2691c9b18f7c..f4254fdf49d3bd 100644 --- a/packages/material-ui-icons/lib/SailingOutlined.js +++ b/packages/material-ui-icons/lib/SailingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13.5V2L3 13.5h8zm-2-2H6.83L9 8.38v3.12zm12 2C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm-5.62-8.26c1.42 1.52 2.88 3.72 3.41 6.26h-3.68c.21-1.1.39-2.46.39-4 0-.79-.05-1.55-.12-2.26zM22 15H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" -}), 'SailingOutlined'); \ No newline at end of file +}), 'SailingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SailingRounded.js b/packages/material-ui-icons/lib/SailingRounded.js index ac636039bbf68d..f5a608eab357e0 100644 --- a/packages/material-ui-icons/lib/SailingRounded.js +++ b/packages/material-ui-icons/lib/SailingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13V3.59c0-.49-.63-.69-.91-.29l-6.54 9.41c-.23.33.01.79.41.79h6.54c.28 0 .5-.22.5-.5zm9.99-.02C20.72 7.07 15.9 2.32 13.4 1.23c-.37-.16-.77.2-.67.59.3 1.13.76 3.28.76 5.68 0 2.44-.49 4.39-.78 5.35-.1.32.14.65.48.65h7.28c.29 0 .53-.24.52-.52zM20.62 15H3.38c-.73 0-1.22.76-.92 1.42.43.92 1.07 1.71 1.86 2.31.38-.16.74-.38 1.06-.63.35-.29.87-.29 1.23 0 .67.53 1.49.9 2.39.9.9 0 1.72-.37 2.39-.91.35-.28.87-.28 1.22 0 .67.54 1.49.91 2.39.91.9 0 1.72-.37 2.39-.91.35-.29.87-.28 1.23 0 .32.26.67.48 1.06.63.79-.6 1.43-1.39 1.86-2.31.3-.65-.19-1.41-.92-1.41zM22 22c0-.55-.45-1-1-1-.87 0-1.73-.24-2.53-.7-.29-.16-.65-.17-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-.8.46-1.66.7-2.53.7-.55 0-1 .45-1 1s.45 1 1 1c1.15 0 2.3-.31 3.33-.94 1.66 1.11 3.78 1.01 5.58.14 1.91 1.05 4.17 1.07 6.09.05.95.5 1.97.75 3 .75.55 0 1-.45 1-1z" -}), 'SailingRounded'); \ No newline at end of file +}), 'SailingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SailingSharp.js b/packages/material-ui-icons/lib/SailingSharp.js index 2474468ea442aa..04600274075cc9 100644 --- a/packages/material-ui-icons/lib/SailingSharp.js +++ b/packages/material-ui-icons/lib/SailingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13.5V2L3 13.5h8zm10 0C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm1 1.5H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" -}), 'SailingSharp'); \ No newline at end of file +}), 'SailingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SailingTwoTone.js b/packages/material-ui-icons/lib/SailingTwoTone.js index 9d762a74c972d0..c1b8986d4f244b 100644 --- a/packages/material-ui-icons/lib/SailingTwoTone.js +++ b/packages/material-ui-icons/lib/SailingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11.5H6.83L9 8.38v3.12zm6.38-6.26c1.42 1.52 2.88 3.72 3.41 6.26h-3.68c.21-1.1.39-2.46.39-4 0-.79-.05-1.55-.12-2.26z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13.5V2L3 13.5h8zm-2-2H6.83L9 8.38v3.12zm12 2C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm-5.62-8.26c1.42 1.52 2.88 3.72 3.41 6.26h-3.68c.21-1.1.39-2.46.39-4 0-.79-.05-1.55-.12-2.26zM22 15H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" -}, "1")], 'SailingTwoTone'); \ No newline at end of file +}, "1")], 'SailingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sanitizer.js b/packages/material-ui-icons/lib/Sanitizer.js index 5864a53ffe3455..5b8e05e9b32103 100644 --- a/packages/material-ui-icons/lib/Sanitizer.js +++ b/packages/material-ui-icons/lib/Sanitizer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91z" -}), 'Sanitizer'); \ No newline at end of file +}), 'Sanitizer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SanitizerOutlined.js b/packages/material-ui-icons/lib/SanitizerOutlined.js index b79823251a4043..88bc8434f1f97e 100644 --- a/packages/material-ui-icons/lib/SanitizerOutlined.js +++ b/packages/material-ui-icons/lib/SanitizerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91zm-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4v8h8v-8z" -}), 'SanitizerOutlined'); \ No newline at end of file +}), 'SanitizerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SanitizerRounded.js b/packages/material-ui-icons/lib/SanitizerRounded.js index 866324e3afeca4..8714bb45777b42 100644 --- a/packages/material-ui-icons/lib/SanitizerRounded.js +++ b/packages/material-ui-icons/lib/SanitizerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 6.5c0-.56.67-1.49 1.11-2.04.2-.25.58-.25.77 0 .44.55 1.11 1.48 1.11 2.04.01.83-.66 1.5-1.49 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.25-1.41-3.16-2.11-4.04a.489.489 0 0 0-.77 0c-.71.88-2.12 2.79-2.12 4.04 0 1.38 1.12 2.5 2.5 2.5zM12 14h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1H8c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zm4-2v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H8c-.55 0-1-.45-1-1s.45-1 1-1h5c.61 0 1.19.11 1.72.31.67.25.83 1.13.33 1.64-.28.28-.69.36-1.05.23-.32-.12-.65-.18-1-.18h-2v2.09c2.84.48 5 2.94 5 5.91z" -}), 'SanitizerRounded'); \ No newline at end of file +}), 'SanitizerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SanitizerSharp.js b/packages/material-ui-icons/lib/SanitizerSharp.js index 5c200f48deca85..c3836eb2153206 100644 --- a/packages/material-ui-icons/lib/SanitizerSharp.js +++ b/packages/material-ui-icons/lib/SanitizerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91z" -}), 'SanitizerSharp'); \ No newline at end of file +}), 'SanitizerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SanitizerTwoTone.js b/packages/material-ui-icons/lib/SanitizerTwoTone.js index a5b101c7e5c750..8e2e963694204d 100644 --- a/packages/material-ui-icons/lib/SanitizerTwoTone.js +++ b/packages/material-ui-icons/lib/SanitizerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8c-2.21 0-4 1.79-4 4v8h8v-8c0-2.21-1.79-4-4-4zm3 8h-2v2H9v-2H7v-2h2v-2h2v2h2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91zm-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4v8h8v-8z" -}, "1")], 'SanitizerTwoTone'); \ No newline at end of file +}, "1")], 'SanitizerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Satellite.js b/packages/material-ui-icons/lib/Satellite.js index d40d2ea3eb9da7..eca99c94bb670c 100644 --- a/packages/material-ui-icons/lib/Satellite.js +++ b/packages/material-ui-icons/lib/Satellite.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6 3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z" -}), 'Satellite'); \ No newline at end of file +}), 'Satellite'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SatelliteOutlined.js b/packages/material-ui-icons/lib/SatelliteOutlined.js index 6842c83ec9cb48..3121d6b0a019d7 100644 --- a/packages/material-ui-icons/lib/SatelliteOutlined.js +++ b/packages/material-ui-icons/lib/SatelliteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.71c0 2.36-1.92 4.29-4.29 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86-3 3.87L9 13.15 6 17h12z" -}), 'SatelliteOutlined'); \ No newline at end of file +}), 'SatelliteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SatelliteRounded.js b/packages/material-ui-icons/lib/SatelliteRounded.js index 5600b1400abba5..ade36b8aa16a46 100644 --- a/packages/material-ui-icons/lib/SatelliteRounded.js +++ b/packages/material-ui-icons/lib/SatelliteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h3c0 1.66-1.34 3-3 3V5zm0 5.91c0-.49.36-.9.85-.98 2.08-.36 3.72-2 4.08-4.08.08-.49.49-.85.98-.85.61 0 1.09.53 1 1.13-.48 2.96-2.81 5.3-5.77 5.78-.6.1-1.14-.39-1.14-1zm.63 6.28 2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z" -}), 'SatelliteRounded'); \ No newline at end of file +}), 'SatelliteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SatelliteSharp.js b/packages/material-ui-icons/lib/SatelliteSharp.js index 8b7eda65af1095..66902e569a74bb 100644 --- a/packages/material-ui-icons/lib/SatelliteSharp.js +++ b/packages/material-ui-icons/lib/SatelliteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6 3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z" -}), 'SatelliteSharp'); \ No newline at end of file +}), 'SatelliteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SatelliteTwoTone.js b/packages/material-ui-icons/lib/SatelliteTwoTone.js index 7ad0046f0c90d1..18fa11f7f3015d 100644 --- a/packages/material-ui-icons/lib/SatelliteTwoTone.js +++ b/packages/material-ui-icons/lib/SatelliteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zM6 6h2.57c0 1.42-1.15 2.58-2.57 2.58V6zm0 4.29c2.37 0 4.28-1.93 4.28-4.29H12c0 3.31-2.68 6-6 6v-1.71zm3 2.86 2.14 2.58 3-3.86L18 17H6l3-3.85z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.72c0 2.36-1.91 4.29-4.28 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86-3 3.87L9 13.15 6 17h12z" -}, "1")], 'SatelliteTwoTone'); \ No newline at end of file +}, "1")], 'SatelliteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Save.js b/packages/material-ui-icons/lib/Save.js index e03d6221bbd31f..7e9e97932170c0 100644 --- a/packages/material-ui-icons/lib/Save.js +++ b/packages/material-ui-icons/lib/Save.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z" -}), 'Save'); \ No newline at end of file +}), 'Save'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveAlt.js b/packages/material-ui-icons/lib/SaveAlt.js index 8628e4081141bd..f9f017b4a9a181 100644 --- a/packages/material-ui-icons/lib/SaveAlt.js +++ b/packages/material-ui-icons/lib/SaveAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z" -}), 'SaveAlt'); \ No newline at end of file +}), 'SaveAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveAltOutlined.js b/packages/material-ui-icons/lib/SaveAltOutlined.js index 097be07cba6706..ffc37ab47865c8 100644 --- a/packages/material-ui-icons/lib/SaveAltOutlined.js +++ b/packages/material-ui-icons/lib/SaveAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" -}), 'SaveAltOutlined'); \ No newline at end of file +}), 'SaveAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveAltRounded.js b/packages/material-ui-icons/lib/SaveAltRounded.js index 2d2e111dc183c6..484d8ea6b7802f 100644 --- a/packages/material-ui-icons/lib/SaveAltRounded.js +++ b/packages/material-ui-icons/lib/SaveAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13v5c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1zm-6-.33 1.88-1.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-3.59 3.59c-.39.39-1.02.39-1.41 0L7.7 12.2a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L11 12.67V4c0-.55.45-1 1-1s1 .45 1 1v8.67z" -}), 'SaveAltRounded'); \ No newline at end of file +}), 'SaveAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveAltSharp.js b/packages/material-ui-icons/lib/SaveAltSharp.js index 8a5764bfabae25..de4e77e86d9089 100644 --- a/packages/material-ui-icons/lib/SaveAltSharp.js +++ b/packages/material-ui-icons/lib/SaveAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12v7H5v-7H3v9h18v-9h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" -}), 'SaveAltSharp'); \ No newline at end of file +}), 'SaveAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveAltTwoTone.js b/packages/material-ui-icons/lib/SaveAltTwoTone.js index 888b643ec0f382..05526299ac8c1f 100644 --- a/packages/material-ui-icons/lib/SaveAltTwoTone.js +++ b/packages/material-ui-icons/lib/SaveAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" -}), 'SaveAltTwoTone'); \ No newline at end of file +}), 'SaveAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveOutlined.js b/packages/material-ui-icons/lib/SaveOutlined.js index 93352d975887f4..0db1a7eb5f63a0 100644 --- a/packages/material-ui-icons/lib/SaveOutlined.js +++ b/packages/material-ui-icons/lib/SaveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z" -}), 'SaveOutlined'); \ No newline at end of file +}), 'SaveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveRounded.js b/packages/material-ui-icons/lib/SaveRounded.js index 8fd26a912eafc8..0fd0717a8a2fdb 100644 --- a/packages/material-ui-icons/lib/SaveRounded.js +++ b/packages/material-ui-icons/lib/SaveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.59 3.59c-.38-.38-.89-.59-1.42-.59H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7.83c0-.53-.21-1.04-.59-1.41l-2.82-2.83zM12 19c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm1-10H7c-1.1 0-2-.9-2-2s.9-2 2-2h6c1.1 0 2 .9 2 2s-.9 2-2 2z" -}), 'SaveRounded'); \ No newline at end of file +}), 'SaveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveSharp.js b/packages/material-ui-icons/lib/SaveSharp.js index 7d92e994f803df..2cc84b5c024997 100644 --- a/packages/material-ui-icons/lib/SaveSharp.js +++ b/packages/material-ui-icons/lib/SaveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H3v18h18V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z" -}), 'SaveSharp'); \ No newline at end of file +}), 'SaveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SaveTwoTone.js b/packages/material-ui-icons/lib/SaveTwoTone.js index 28d26d48801062..24e076435495ca 100644 --- a/packages/material-ui-icons/lib/SaveTwoTone.js +++ b/packages/material-ui-icons/lib/SaveTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h14V7.83L16.17 5H5zm7 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-8H6V6h9v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z" -}, "1")], 'SaveTwoTone'); \ No newline at end of file +}, "1")], 'SaveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavedSearch.js b/packages/material-ui-icons/lib/SavedSearch.js index d43366cd90c04f..72281a2c6fa83c 100644 --- a/packages/material-ui-icons/lib/SavedSearch.js +++ b/packages/material-ui-icons/lib/SavedSearch.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2.17-1.5 2.14-1.53 2.14 1.53-.83-2.46 2.15-1.5h-2.62L9.47 6l-.84 2.54H6l2.14 1.49z" -}), 'SavedSearch'); \ No newline at end of file +}), 'SavedSearch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavedSearchOutlined.js b/packages/material-ui-icons/lib/SavedSearchOutlined.js index 2ea754ec582f14..256df10edfd5a7 100644 --- a/packages/material-ui-icons/lib/SavedSearchOutlined.js +++ b/packages/material-ui-icons/lib/SavedSearchOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.73 13.31C15.52 12.24 16 10.93 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.29 8.44 9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z" -}, "1")], 'SavedSearchOutlined'); \ No newline at end of file +}, "1")], 'SavedSearchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavedSearchRounded.js b/packages/material-ui-icons/lib/SavedSearchRounded.js index 7f1f4e72204038..9250a0b985dfe0 100644 --- a/packages/material-ui-icons/lib/SavedSearchRounded.js +++ b/packages/material-ui-icons/lib/SavedSearchRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.73 13.31c1.13-1.55 1.63-3.58.98-5.74-.68-2.23-2.57-3.98-4.85-4.44-4.65-.93-8.66 3.09-7.72 7.73.46 2.29 2.21 4.18 4.44 4.85 2.16.65 4.19.15 5.74-.98l5.56 5.56c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-5.56-5.57zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.29 8.44 9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z" -}, "1")], 'SavedSearchRounded'); \ No newline at end of file +}, "1")], 'SavedSearchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavedSearchSharp.js b/packages/material-ui-icons/lib/SavedSearchSharp.js index deb04893266c5e..5e121741a00c74 100644 --- a/packages/material-ui-icons/lib/SavedSearchSharp.js +++ b/packages/material-ui-icons/lib/SavedSearchSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.73 13.31C15.52 12.24 16 10.93 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.29 8.44 9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z" -}, "1")], 'SavedSearchSharp'); \ No newline at end of file +}, "1")], 'SavedSearchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavedSearchTwoTone.js b/packages/material-ui-icons/lib/SavedSearchTwoTone.js index 0581571ec3ebcb..39a9d73e70a969 100644 --- a/packages/material-ui-icons/lib/SavedSearchTwoTone.js +++ b/packages/material-ui-icons/lib/SavedSearchTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.73 13.31C15.52 12.24 16 10.93 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.5 6-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59h-2.46z" -}, "1")], 'SavedSearchTwoTone'); \ No newline at end of file +}, "1")], 'SavedSearchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Savings.js b/packages/material-ui-icons/lib/Savings.js index 152872fcb6c130..64ec5a93686bb7 100644 --- a/packages/material-ui-icons/lib/Savings.js +++ b/packages/material-ui-icons/lib/Savings.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15.08-.18.12-.37.12-.58 0-.83-.67-1.5-1.5-1.5-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5h-2.17zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'Savings'); \ No newline at end of file +}), 'Savings'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavingsOutlined.js b/packages/material-ui-icons/lib/SavingsOutlined.js index fc7f997aaa7edc..cea80a61d0326c 100644 --- a/packages/material-ui-icons/lib/SavingsOutlined.js +++ b/packages/material-ui-icons/lib/SavingsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zM8 9h5V7H8v2zm14-1.5v6.97l-2.82.94L17.5 21H12v-2h-2v2H4.5S2 12.54 2 9.5 4.46 4 7.5 4h5c.91-1.21 2.36-2 4-2 .83 0 1.5.67 1.5 1.5 0 .21-.04.4-.12.58-.14.34-.26.73-.32 1.15l2.27 2.27H22zm-2 2h-1L15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2.01 9.5H8v-2h6v2h2.01l1.55-5.15 2.44-.82V9.5z" -}), 'SavingsOutlined'); \ No newline at end of file +}), 'SavingsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavingsRounded.js b/packages/material-ui-icons/lib/SavingsRounded.js index f3a51a25b788b7..90bb8568af41e1 100644 --- a/packages/material-ui-icons/lib/SavingsRounded.js +++ b/packages/material-ui-icons/lib/SavingsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15.11-.26.15-.56.09-.87-.13-.72-.83-1.22-1.57-1.21-1.59.03-3 .81-3.9 2h-5C4.46 4 2 6.46 2 9.5c0 2.25 1.37 7.48 2.08 10.04.24.86 1.03 1.46 1.93 1.46H8c1.1 0 2-.9 2-2h2c0 1.1.9 2 2 2h2.01c.88 0 1.66-.58 1.92-1.43l1.25-4.16 2.14-.72c.41-.14.68-.52.68-.95V8.5c0-.55-.45-1-1-1h-1.17zM12 9H9c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm4 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'SavingsRounded'); \ No newline at end of file +}), 'SavingsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavingsSharp.js b/packages/material-ui-icons/lib/SavingsSharp.js index b37769dc49edcf..d6fd6f859486f9 100644 --- a/packages/material-ui-icons/lib/SavingsSharp.js +++ b/packages/material-ui-icons/lib/SavingsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15.23-.56.56-1.06.97-1.5-.7-.37-1.5-.58-2.35-.58-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5h-2.17zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'SavingsSharp'); \ No newline at end of file +}), 'SavingsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SavingsTwoTone.js b/packages/material-ui-icons/lib/SavingsTwoTone.js index 89fb2387a25abb..19731c6866b7b2 100644 --- a/packages/material-ui-icons/lib/SavingsTwoTone.js +++ b/packages/material-ui-icons/lib/SavingsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9.5 15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2.01 9.5H8v-2h6v2h2.01l1.55-5.15 2.44-.82V9.5h-1zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 10c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zM8 9h5V7H8v2zm14-1.5v6.97l-2.82.94L17.5 21H12v-2h-2v2H4.5S2 12.54 2 9.5 4.46 4 7.5 4h5c.91-1.21 2.36-2 4-2 .83 0 1.5.67 1.5 1.5 0 .21-.04.4-.12.58-.14.34-.26.73-.32 1.15l2.27 2.27H22zm-2 2h-1L15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2.01 9.5H8v-2h6v2h2.01l1.55-5.15 2.44-.82V9.5z" -}, "1")], 'SavingsTwoTone'); \ No newline at end of file +}, "1")], 'SavingsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Scanner.js b/packages/material-ui-icons/lib/Scanner.js index 6dad8b646a565b..4bf4c25127cbf1 100644 --- a/packages/material-ui-icons/lib/Scanner.js +++ b/packages/material-ui-icons/lib/Scanner.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.8 10.7 4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm12 0H9v-2h10v2z" -}), 'Scanner'); \ No newline at end of file +}), 'Scanner'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScannerOutlined.js b/packages/material-ui-icons/lib/ScannerOutlined.js index 0164d3c58dd747..2c0f683a9ce330 100644 --- a/packages/material-ui-icons/lib/ScannerOutlined.js +++ b/packages/material-ui-icons/lib/ScannerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.8 10.7 4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z" -}), 'ScannerOutlined'); \ No newline at end of file +}), 'ScannerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScannerRounded.js b/packages/material-ui-icons/lib/ScannerRounded.js index a705382ebd0deb..e7e30d43614729 100644 --- a/packages/material-ui-icons/lib/ScannerRounded.js +++ b/packages/material-ui-icons/lib/ScannerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.8 10.7 5.15 5.35c-.52-.19-1.1.08-1.3.6-.19.53.08 1.11.6 1.3L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm11 0h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'ScannerRounded'); \ No newline at end of file +}), 'ScannerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScannerSharp.js b/packages/material-ui-icons/lib/ScannerSharp.js index 71f2e68bea60c3..a85d23f3f18bf5 100644 --- a/packages/material-ui-icons/lib/ScannerSharp.js +++ b/packages/material-ui-icons/lib/ScannerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.2 5-.7 1.9L17.6 12H3v8h18v-8.86L4.2 5zM7 17H5v-2h2v2zm12 0H9v-2h10v2z" -}), 'ScannerSharp'); \ No newline at end of file +}), 'ScannerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScannerTwoTone.js b/packages/material-ui-icons/lib/ScannerTwoTone.js index 6699f255d407b8..aa898ab9750e5e 100644 --- a/packages/material-ui-icons/lib/ScannerTwoTone.js +++ b/packages/material-ui-icons/lib/ScannerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 14v4h14v-4H5zm3 3H6v-2h2v2zm10 0h-8v-2h8v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.8 10.7 4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z" -}, "1")], 'ScannerTwoTone'); \ No newline at end of file +}, "1")], 'ScannerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScatterPlot.js b/packages/material-ui-icons/lib/ScatterPlot.js index 040fcbc6e9fe53..dd71c413b6cbf4 100644 --- a/packages/material-ui-icons/lib/ScatterPlot.js +++ b/packages/material-ui-icons/lib/ScatterPlot.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "14", r: "3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "6", r: "3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.6", cy: "17.6", r: "3" -}, "2")], 'ScatterPlot'); \ No newline at end of file +}, "2")], 'ScatterPlot'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScatterPlotOutlined.js b/packages/material-ui-icons/lib/ScatterPlotOutlined.js index 0d861502e59da6..d4a5478a3fb9cb 100644 --- a/packages/material-ui-icons/lib/ScatterPlotOutlined.js +++ b/packages/material-ui-icons/lib/ScatterPlotOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-2c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5.6 17.6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'ScatterPlotOutlined'); \ No newline at end of file +}), 'ScatterPlotOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScatterPlotRounded.js b/packages/material-ui-icons/lib/ScatterPlotRounded.js index db9537eae7b8fc..373c94ac06eef2 100644 --- a/packages/material-ui-icons/lib/ScatterPlotRounded.js +++ b/packages/material-ui-icons/lib/ScatterPlotRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "14", r: "3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "6", r: "3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.6", cy: "17.6", r: "3" -}, "2")], 'ScatterPlotRounded'); \ No newline at end of file +}, "2")], 'ScatterPlotRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScatterPlotSharp.js b/packages/material-ui-icons/lib/ScatterPlotSharp.js index b17f7691aa40d6..db30e4e7ede483 100644 --- a/packages/material-ui-icons/lib/ScatterPlotSharp.js +++ b/packages/material-ui-icons/lib/ScatterPlotSharp.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "14", r: "3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "6", r: "3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.6", cy: "17.6", r: "3" -}, "2")], 'ScatterPlotSharp'); \ No newline at end of file +}, "2")], 'ScatterPlotSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScatterPlotTwoTone.js b/packages/material-ui-icons/lib/ScatterPlotTwoTone.js index 56e29b2554af43..6f65fab8b4501a 100644 --- a/packages/material-ui-icons/lib/ScatterPlotTwoTone.js +++ b/packages/material-ui-icons/lib/ScatterPlotTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "6", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.6", cy: "17.6", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7", cy: "14", r: "2", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8-10c0-2.21-1.79-4-4-4S7 3.79 7 6s1.79 4 4 4 4-1.79 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.6 5.6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "3")], 'ScatterPlotTwoTone'); \ No newline at end of file +}, "3")], 'ScatterPlotTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Schedule.js b/packages/material-ui-icons/lib/Schedule.js index e22015f8bd17e2..2035c9e78b25a7 100644 --- a/packages/material-ui-icons/lib/Schedule.js +++ b/packages/material-ui-icons/lib/Schedule.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}, "1")], 'Schedule'); \ No newline at end of file +}, "1")], 'Schedule'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleOutlined.js b/packages/material-ui-icons/lib/ScheduleOutlined.js index dd5414b186eb92..9eff22b7119ca2 100644 --- a/packages/material-ui-icons/lib/ScheduleOutlined.js +++ b/packages/material-ui-icons/lib/ScheduleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}), 'ScheduleOutlined'); \ No newline at end of file +}), 'ScheduleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleRounded.js b/packages/material-ui-icons/lib/ScheduleRounded.js index 18e8067335afd4..d97819e445bf32 100644 --- a/packages/material-ui-icons/lib/ScheduleRounded.js +++ b/packages/material-ui-icons/lib/ScheduleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z" -}), 'ScheduleRounded'); \ No newline at end of file +}), 'ScheduleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleSend.js b/packages/material-ui-icons/lib/ScheduleSend.js index 5c0d1fd41b641a..6c86df42aa1b8b 100644 --- a/packages/material-ui-icons/lib/ScheduleSend.js +++ b/packages/material-ui-icons/lib/ScheduleSend.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12.5H15v4l3 2 .75-1.23-2.25-1.52V12.5zM16 9 2 3v7l9 2-9 2v7l7.27-3.11C10.09 20.83 12.79 23 16 23c3.86 0 7-3.14 7-7s-3.14-7-7-7zm0 12c-2.75 0-4.98-2.22-5-4.97v-.07c.02-2.74 2.25-4.97 5-4.97 2.76 0 5 2.24 5 5S18.76 21 16 21z" -}), 'ScheduleSend'); \ No newline at end of file +}), 'ScheduleSend'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleSendOutlined.js b/packages/material-ui-icons/lib/ScheduleSendOutlined.js index 5bd926c6ddfb25..c1b4c4c7d32104 100644 --- a/packages/material-ui-icons/lib/ScheduleSendOutlined.js +++ b/packages/material-ui-icons/lib/ScheduleSendOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 12-6-1.5V7.01l8.87 3.74c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" -}, "1")], 'ScheduleSendOutlined'); \ No newline at end of file +}, "1")], 'ScheduleSendOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleSendRounded.js b/packages/material-ui-icons/lib/ScheduleSendRounded.js index 5ef456a6a423d9..9b3fc4087d85ac 100644 --- a/packages/material-ui-icons/lib/ScheduleSendRounded.js +++ b/packages/material-ui-icons/lib/ScheduleSendRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c.1 0 .19.01.28.01L4.39 4.58C3.73 4.31 3 4.79 3 5.51v3.71c0 .46.31.86.76.97L11 12l-7.24 1.81c-.45.11-.76.51-.76.97v3.71c0 .72.73 1.2 1.39.92L10 17.05V17c0-3.86 3.14-7 7-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.29 7-1.65-1.65c-.09-.09-.15-.22-.15-.35v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v2.29l1.5 1.5c.2.2.2.51 0 .71-.19.2-.5.2-.7 0z" -}, "1")], 'ScheduleSendRounded'); \ No newline at end of file +}, "1")], 'ScheduleSendRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleSendSharp.js b/packages/material-ui-icons/lib/ScheduleSendSharp.js index 939c9c615f3d9d..d4f61c66dffc64 100644 --- a/packages/material-ui-icons/lib/ScheduleSendSharp.js +++ b/packages/material-ui-icons/lib/ScheduleSendSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.86 3.14-7 7-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z" -}, "1")], 'ScheduleSendSharp'); \ No newline at end of file +}, "1")], 'ScheduleSendSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleSendTwoTone.js b/packages/material-ui-icons/lib/ScheduleSendTwoTone.js index 4c1bc61b41cab4..96dde82f33a8f8 100644 --- a/packages/material-ui-icons/lib/ScheduleSendTwoTone.js +++ b/packages/material-ui-icons/lib/ScheduleSendTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 10.5 6 1.5-6 1.5v3.49l5.39-2.27c.6-1.73 1.86-3.16 3.48-3.97L5 7.01v3.49z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 12-6-1.5V7.01l8.87 3.74c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z" -}, "2")], 'ScheduleSendTwoTone'); \ No newline at end of file +}, "2")], 'ScheduleSendTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleSharp.js b/packages/material-ui-icons/lib/ScheduleSharp.js index c7ff5e4fadf099..53cde9f761f30f 100644 --- a/packages/material-ui-icons/lib/ScheduleSharp.js +++ b/packages/material-ui-icons/lib/ScheduleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}), 'ScheduleSharp'); \ No newline at end of file +}), 'ScheduleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScheduleTwoTone.js b/packages/material-ui-icons/lib/ScheduleTwoTone.js index 6ce8f7b0365886..92e37e1727b05f 100644 --- a/packages/material-ui-icons/lib/ScheduleTwoTone.js +++ b/packages/material-ui-icons/lib/ScheduleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" -}, "1")], 'ScheduleTwoTone'); \ No newline at end of file +}, "1")], 'ScheduleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Schema.js b/packages/material-ui-icons/lib/Schema.js index de739547d3a2b3..7e957bc3155a1a 100644 --- a/packages/material-ui-icons/lib/Schema.js +++ b/packages/material-ui-icons/lib/Schema.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7z" -}), 'Schema'); \ No newline at end of file +}), 'Schema'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchemaOutlined.js b/packages/material-ui-icons/lib/SchemaOutlined.js index 32b3110306ffca..bffd8d20ddfd5a 100644 --- a/packages/material-ui-icons/lib/SchemaOutlined.js +++ b/packages/material-ui-icons/lib/SchemaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7zM6 3h3v2H6V3zm3 18H6v-2h3v2zm0-8H6v-2h3v2zm10 0h-3v-2h3v2z" -}), 'SchemaOutlined'); \ No newline at end of file +}), 'SchemaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchemaRounded.js b/packages/material-ui-icons/lib/SchemaRounded.js index df8add9674896a..b87a9579df25ea 100644 --- a/packages/material-ui-icons/lib/SchemaRounded.js +++ b/packages/material-ui-icons/lib/SchemaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10.5v.5h-3v-.5c0-.83-.67-1.5-1.5-1.5h-1V7h1c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-4C4.67 1 4 1.67 4 2.5v3C4 6.33 4.67 7 5.5 7h1v2h-1C4.67 9 4 9.67 4 10.5v3c0 .83.67 1.5 1.5 1.5h1v2h-1c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h4c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-1v-2h1c.83 0 1.5-.67 1.5-1.5V13h3v.5c0 .83.67 1.5 1.5 1.5h4c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5z" -}), 'SchemaRounded'); \ No newline at end of file +}), 'SchemaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchemaSharp.js b/packages/material-ui-icons/lib/SchemaSharp.js index 6bd72df9c7485c..0d270e7106e8cb 100644 --- a/packages/material-ui-icons/lib/SchemaSharp.js +++ b/packages/material-ui-icons/lib/SchemaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7z" -}), 'SchemaSharp'); \ No newline at end of file +}), 'SchemaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchemaTwoTone.js b/packages/material-ui-icons/lib/SchemaTwoTone.js index d9ca682fa9dd4f..13524011e08282 100644 --- a/packages/material-ui-icons/lib/SchemaTwoTone.js +++ b/packages/material-ui-icons/lib/SchemaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3h3v2H6V3zm3 18H6v-2h3v2zm0-8H6v-2h3v2zm10 0h-3v-2h3v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7zM6 3h3v2H6V3zm3 18H6v-2h3v2zm0-8H6v-2h3v2zm10 0h-3v-2h3v2z" -}, "1")], 'SchemaTwoTone'); \ No newline at end of file +}, "1")], 'SchemaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/School.js b/packages/material-ui-icons/lib/School.js index 77f5f5478d8e9f..d4838058a3d04f 100644 --- a/packages/material-ui-icons/lib/School.js +++ b/packages/material-ui-icons/lib/School.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3 1 9l11 6 9-4.91V17h2V9L12 3z" -}), 'School'); \ No newline at end of file +}), 'School'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchoolOutlined.js b/packages/material-ui-icons/lib/SchoolOutlined.js index d22285e642869e..d481071b0e5d05 100644 --- a/packages/material-ui-icons/lib/SchoolOutlined.js +++ b/packages/material-ui-icons/lib/SchoolOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z" -}), 'SchoolOutlined'); \ No newline at end of file +}), 'SchoolOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchoolRounded.js b/packages/material-ui-icons/lib/SchoolRounded.js index bdfff1750bee28..94147f07fa8ab3 100644 --- a/packages/material-ui-icons/lib/SchoolRounded.js +++ b/packages/material-ui-icons/lib/SchoolRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13.18v2.81c0 .73.4 1.41 1.04 1.76l5 2.73c.6.33 1.32.33 1.92 0l5-2.73c.64-.35 1.04-1.03 1.04-1.76v-2.81l-6.04 3.3c-.6.33-1.32.33-1.92 0L5 13.18zm6.04-9.66-8.43 4.6c-.69.38-.69 1.38 0 1.76l8.43 4.6c.6.33 1.32.33 1.92 0L21 10.09V16c0 .55.45 1 1 1s1-.45 1-1V9.59c0-.37-.2-.7-.52-.88l-9.52-5.19a2.04 2.04 0 0 0-1.92 0z" -}), 'SchoolRounded'); \ No newline at end of file +}), 'SchoolRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchoolSharp.js b/packages/material-ui-icons/lib/SchoolSharp.js index b8ae17a94c6b87..86b9d9b2bbd53e 100644 --- a/packages/material-ui-icons/lib/SchoolSharp.js +++ b/packages/material-ui-icons/lib/SchoolSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3 1 9l11 6 9-4.91V17h2V9L12 3z" -}), 'SchoolSharp'); \ No newline at end of file +}), 'SchoolSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SchoolTwoTone.js b/packages/material-ui-icons/lib/SchoolTwoTone.js index fdedb92cf2a6fb..9bd3981216e7e2 100644 --- a/packages/material-ui-icons/lib/SchoolTwoTone.js +++ b/packages/material-ui-icons/lib/SchoolTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 12.27v3.72l5 2.73 5-2.73v-3.72L12 15zM5.18 9 12 12.72 18.82 9 12 5.28z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm5 12.99-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72zm-5-3.27L5.18 9 12 5.28 18.82 9 12 12.72z" -}, "1")], 'SchoolTwoTone'); \ No newline at end of file +}, "1")], 'SchoolTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Science.js b/packages/material-ui-icons/lib/Science.js index aec83ab92c8f83..079e79f62c3ea2 100644 --- a/packages/material-ui-icons/lib/Science.js +++ b/packages/material-ui-icons/lib/Science.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.8 18.4 14 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H9.04c-.42 0-.65.48-.39.81L10 6.5v4.17L4.2 18.4c-.49.66-.02 1.6.8 1.6h14c.82 0 1.29-.94.8-1.6z" -}), 'Science'); \ No newline at end of file +}), 'Science'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScienceOutlined.js b/packages/material-ui-icons/lib/ScienceOutlined.js index 4328be3c316aba..0cee6bf326279d 100644 --- a/packages/material-ui-icons/lib/ScienceOutlined.js +++ b/packages/material-ui-icons/lib/ScienceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11.33 18 18H6l5-6.67V6h2m2.96-2H8.04c-.42 0-.65.48-.39.81L9 6.5v4.17L3.2 18.4c-.49.66-.02 1.6.8 1.6h16c.82 0 1.29-.94.8-1.6L15 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81z" -}), 'ScienceOutlined'); \ No newline at end of file +}), 'ScienceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScienceRounded.js b/packages/material-ui-icons/lib/ScienceRounded.js index 1081f62b5d5bb6..ebe8e6b1dd7e54 100644 --- a/packages/material-ui-icons/lib/ScienceRounded.js +++ b/packages/material-ui-icons/lib/ScienceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.54 17.73 15 11V5h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1h1v6l-5.54 6.73c-.32.39-.46.83-.46 1.27.01 1.03.82 2 2 2h14c1.19 0 2-.97 2-2 0-.44-.14-.88-.46-1.27z" -}), 'ScienceRounded'); \ No newline at end of file +}), 'ScienceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScienceSharp.js b/packages/material-ui-icons/lib/ScienceSharp.js index b01eb8de0c376f..0c11e803e02517 100644 --- a/packages/material-ui-icons/lib/ScienceSharp.js +++ b/packages/material-ui-icons/lib/ScienceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.8 18.4 14 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H9.04c-.42 0-.65.48-.39.81L10 6.5v4.17L4.2 18.4c-.49.66-.02 1.6.8 1.6h14c.82 0 1.29-.94.8-1.6z" -}), 'ScienceSharp'); \ No newline at end of file +}), 'ScienceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScienceTwoTone.js b/packages/material-ui-icons/lib/ScienceTwoTone.js index a11492412df4d1..57c85b141aa167 100644 --- a/packages/material-ui-icons/lib/ScienceTwoTone.js +++ b/packages/material-ui-icons/lib/ScienceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 6h-2v5.33L6 18h12l-5-6.67z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.8 18.4 15 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H8.04c-.42 0-.65.48-.39.81L9 6.5v4.17L3.2 18.4c-.49.66-.02 1.6.8 1.6h16c.82 0 1.29-.94.8-1.6zM6 18l5-6.67V6h2v5.33L18 18H6z" -}, "1")], 'ScienceTwoTone'); \ No newline at end of file +}, "1")], 'ScienceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Score.js b/packages/material-ui-icons/lib/Score.js index 2c37fbebaf2275..7dcfe4321ce284 100644 --- a/packages/material-ui-icons/lib/Score.js +++ b/packages/material-ui-icons/lib/Score.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z" -}), 'Score'); \ No newline at end of file +}), 'Score'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScoreOutlined.js b/packages/material-ui-icons/lib/ScoreOutlined.js index 36cfe8bec11d87..44fa6730dbb854 100644 --- a/packages/material-ui-icons/lib/ScoreOutlined.js +++ b/packages/material-ui-icons/lib/ScoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z" -}), 'ScoreOutlined'); \ No newline at end of file +}), 'ScoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScoreRounded.js b/packages/material-ui-icons/lib/ScoreRounded.js index 1b6e01f2a74cce..e5006a2235a923 100644 --- a/packages/material-ui-icons/lib/ScoreRounded.js +++ b/packages/material-ui-icons/lib/ScoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2.75c0-.41.34-.75.75-.75s.75.34.75.75V8l1.79-2.69c.13-.19.35-.31.59-.31.56 0 .9.63.59 1.1L15.2 8l1.27 1.9c.31.47-.02 1.1-.59 1.1-.24 0-.46-.12-.59-.31L13.5 8v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5zm-5 2.5c0-.55.45-1 1-1h1.5V6.5H7.75c-.41 0-.75-.34-.75-.75S7.34 5 7.75 5H10c.55 0 1 .45 1 1v1.75c0 .55-.45 1-1 1H8.5v.75h1.75c.41 0 .75.34.75.75s-.34.75-.75.75H8c-.55 0-1-.45-1-1V8.25zm11.74 5.01-5.03 5.03c-.39.39-1.02.39-1.41 0L9 15l-2.49 2.49c-.56.56-1.51.16-1.51-.62 0-.23.09-.46.26-.62l3.03-3.03c.39-.39 1.02-.39 1.41 0L13 16.5l4.49-4.49c.56-.56 1.51-.16 1.51.62 0 .24-.09.46-.26.63z" -}), 'ScoreRounded'); \ No newline at end of file +}), 'ScoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScoreSharp.js b/packages/material-ui-icons/lib/ScoreSharp.js index f4fcd5babb389e..2a8c8e8889eeea 100644 --- a/packages/material-ui-icons/lib/ScoreSharp.js +++ b/packages/material-ui-icons/lib/ScoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-9 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z" -}), 'ScoreSharp'); \ No newline at end of file +}), 'ScoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScoreTwoTone.js b/packages/material-ui-icons/lib/ScoreTwoTone.js index 01e4b8b25494e7..33c7841e08aca4 100644 --- a/packages/material-ui-icons/lib/ScoreTwoTone.js +++ b/packages/material-ui-icons/lib/ScoreTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h8l-4-4zm0-2.5 4-4 4 4 6-6V5H5v11.5zM12 6h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V6zM7 8.25h2.5V7.5H7V6h4v3.75H8.5v.75H11V12H7V8.25zM19 19v-6l-6 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z" -}, "1")], 'ScoreTwoTone'); \ No newline at end of file +}, "1")], 'ScoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockLandscape.js b/packages/material-ui-icons/lib/ScreenLockLandscape.js index 3fde287a199715..82839fbf1d7715 100644 --- a/packages/material-ui-icons/lib/ScreenLockLandscape.js +++ b/packages/material-ui-icons/lib/ScreenLockLandscape.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1z" -}), 'ScreenLockLandscape'); \ No newline at end of file +}), 'ScreenLockLandscape'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockLandscapeOutlined.js b/packages/material-ui-icons/lib/ScreenLockLandscapeOutlined.js index 2bbc8608007593..0b5044ce41172b 100644 --- a/packages/material-ui-icons/lib/ScreenLockLandscapeOutlined.js +++ b/packages/material-ui-icons/lib/ScreenLockLandscapeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z" -}), 'ScreenLockLandscapeOutlined'); \ No newline at end of file +}), 'ScreenLockLandscapeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockLandscapeRounded.js b/packages/material-ui-icons/lib/ScreenLockLandscapeRounded.js index cd52359d281644..2a7e3c82e5dd9a 100644 --- a/packages/material-ui-icons/lib/ScreenLockLandscapeRounded.js +++ b/packages/material-ui-icons/lib/ScreenLockLandscapeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 12H6V7h12v10zm-4-6v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}), 'ScreenLockLandscapeRounded'); \ No newline at end of file +}), 'ScreenLockLandscapeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockLandscapeSharp.js b/packages/material-ui-icons/lib/ScreenLockLandscapeSharp.js index c8bab38e27db37..b91123c4e06742 100644 --- a/packages/material-ui-icons/lib/ScreenLockLandscapeSharp.js +++ b/packages/material-ui-icons/lib/ScreenLockLandscapeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 5H1v14h22V5zm-4 12H5V7h14v10zM9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z" -}), 'ScreenLockLandscapeSharp'); \ No newline at end of file +}), 'ScreenLockLandscapeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockLandscapeTwoTone.js b/packages/material-ui-icons/lib/ScreenLockLandscapeTwoTone.js index 846f1478a70bab..85435360e2055d 100644 --- a/packages/material-ui-icons/lib/ScreenLockLandscapeTwoTone.js +++ b/packages/material-ui-icons/lib/ScreenLockLandscapeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM5 17h14V7H5v10zm4-5c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" -}, "1")], 'ScreenLockLandscapeTwoTone'); \ No newline at end of file +}, "1")], 'ScreenLockLandscapeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockPortrait.js b/packages/material-ui-icons/lib/ScreenLockPortrait.js index cfd5817ad7af83..1b0442e500d6d2 100644 --- a/packages/material-ui-icons/lib/ScreenLockPortrait.js +++ b/packages/material-ui-icons/lib/ScreenLockPortrait.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" -}), 'ScreenLockPortrait'); \ No newline at end of file +}), 'ScreenLockPortrait'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockPortraitOutlined.js b/packages/material-ui-icons/lib/ScreenLockPortraitOutlined.js index ffaaa14e2dc8cf..7ccfd7cbb38974 100644 --- a/packages/material-ui-icons/lib/ScreenLockPortraitOutlined.js +++ b/packages/material-ui-icons/lib/ScreenLockPortraitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" -}), 'ScreenLockPortraitOutlined'); \ No newline at end of file +}), 'ScreenLockPortraitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockPortraitRounded.js b/packages/material-ui-icons/lib/ScreenLockPortraitRounded.js index b7affa4c6dfb98..ac298de357c8a5 100644 --- a/packages/material-ui-icons/lib/ScreenLockPortraitRounded.js +++ b/packages/material-ui-icons/lib/ScreenLockPortraitRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 1.99 2 1.99L17 23c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 11v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'ScreenLockPortraitRounded'); \ No newline at end of file +}, "1")], 'ScreenLockPortraitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockPortraitSharp.js b/packages/material-ui-icons/lib/ScreenLockPortraitSharp.js index df7a5e1303a92b..245609e8aaa4e9 100644 --- a/packages/material-ui-icons/lib/ScreenLockPortraitSharp.js +++ b/packages/material-ui-icons/lib/ScreenLockPortraitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM19 1H5v22h14V1zm-2 18H7V5h10v14z" -}), 'ScreenLockPortraitSharp'); \ No newline at end of file +}), 'ScreenLockPortraitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockPortraitTwoTone.js b/packages/material-ui-icons/lib/ScreenLockPortraitTwoTone.js index c8ffcc03d9b6f0..01f35e9a0ded68 100644 --- a/packages/material-ui-icons/lib/ScreenLockPortraitTwoTone.js +++ b/packages/material-ui-icons/lib/ScreenLockPortraitTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM7 19h10V5H7v14zm2-7c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" -}, "1")], 'ScreenLockPortraitTwoTone'); \ No newline at end of file +}, "1")], 'ScreenLockPortraitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockRotation.js b/packages/material-ui-icons/lib/ScreenLockRotation.js index 3c31e2ae6ca47e..6a71c52274da0e 100644 --- a/packages/material-ui-icons/lib/ScreenLockRotation.js +++ b/packages/material-ui-icons/lib/ScreenLockRotation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23.25 12.77-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L4.51 8.17l5.66-5.66 2.1 2.1 1.41-1.41L11.23.75c-.59-.59-1.54-.59-2.12 0L2.75 7.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM8.47 20.48C5.2 18.94 2.86 15.76 2.5 12H1c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.82-1.33 1.33zM16 9h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1v-.5C21 1.12 19.88 0 18.5 0S16 1.12 16 2.5V3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V3h-3.4v-.5z" -}), 'ScreenLockRotation'); \ No newline at end of file +}), 'ScreenLockRotation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockRotationOutlined.js b/packages/material-ui-icons/lib/ScreenLockRotationOutlined.js index bf6eb97d6cc75f..2ae8dc627e7a1f 100644 --- a/packages/material-ui-icons/lib/ScreenLockRotationOutlined.js +++ b/packages/material-ui-icons/lib/ScreenLockRotationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.3 13.77-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z" -}), 'ScreenLockRotationOutlined'); \ No newline at end of file +}), 'ScreenLockRotationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockRotationRounded.js b/packages/material-ui-icons/lib/ScreenLockRotationRounded.js index c319ce769f6b25..55b6b670a71c13 100644 --- a/packages/material-ui-icons/lib/ScreenLockRotationRounded.js +++ b/packages/material-ui-icons/lib/ScreenLockRotationRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.41 11.36-.35-.35a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.35.35-4.24 4.24-7.78-7.78 4.24-4.24.35.35c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.35-.36c-.79-.79-2.03-.79-2.82 0L5.57 7.82c-.78.78-.78 2.05 0 2.83l7.78 7.78c.79.79 2.03.79 2.82 0l4.24-4.24c.79-.78.79-2.05 0-2.83zm-9.56 6.49c-.31-.31-.85-.09-.85.36v1.53c-3.17-.82-5.59-3.54-5.95-6.86-.06-.51-.49-.88-.99-.88-.6 0-1.07.53-1 1.12C2.62 18.11 6.87 22 12 22c.59 0 1.17-.06 1.73-.16.4-.07.55-.56.27-.85l-3.15-3.14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.89c0-1-.68-1.92-1.66-2.08C17.08.82 16 1.79 16 3v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm1-6c0-.55.45-1 1-1s1 .45 1 1v1h-2V3z" -}, "1")], 'ScreenLockRotationRounded'); \ No newline at end of file +}, "1")], 'ScreenLockRotationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockRotationSharp.js b/packages/material-ui-icons/lib/ScreenLockRotationSharp.js index 526fba54361029..6b14da6f566580 100644 --- a/packages/material-ui-icons/lib/ScreenLockRotationSharp.js +++ b/packages/material-ui-icons/lib/ScreenLockRotationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM20.05 4v-.36c0-1.31-.94-2.5-2.24-2.63-1.5-.15-2.76 1.02-2.76 2.49V4h-1v6h7V4h-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm.48 7.2-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41L9.22.69.74 9.17l14.14 14.14 8.48-8.48z" -}), 'ScreenLockRotationSharp'); \ No newline at end of file +}), 'ScreenLockRotationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenLockRotationTwoTone.js b/packages/material-ui-icons/lib/ScreenLockRotationTwoTone.js index 2784a048e38531..864030aef73280 100644 --- a/packages/material-ui-icons/lib/ScreenLockRotationTwoTone.js +++ b/packages/material-ui-icons/lib/ScreenLockRotationTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.3 13.77-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z" -}), 'ScreenLockRotationTwoTone'); \ No newline at end of file +}), 'ScreenLockRotationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenRotation.js b/packages/material-ui-icons/lib/ScreenRotation.js index 58d076a08e8f2b..4fbd8d5e0db9f3 100644 --- a/packages/material-ui-icons/lib/ScreenRotation.js +++ b/packages/material-ui-icons/lib/ScreenRotation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" -}), 'ScreenRotation'); \ No newline at end of file +}), 'ScreenRotation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenRotationOutlined.js b/packages/material-ui-icons/lib/ScreenRotationOutlined.js index 77469e1738c5f1..3d7d2633602bf3 100644 --- a/packages/material-ui-icons/lib/ScreenRotationOutlined.js +++ b/packages/material-ui-icons/lib/ScreenRotationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" -}), 'ScreenRotationOutlined'); \ No newline at end of file +}), 'ScreenRotationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenRotationRounded.js b/packages/material-ui-icons/lib/ScreenRotationRounded.js index 78bceeed382be5..945b8dcd265af5 100644 --- a/packages/material-ui-icons/lib/ScreenRotationRounded.js +++ b/packages/material-ui-icons/lib/ScreenRotationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.23 1.75c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm3.89 18.73L3.52 9.88a.9959.9959 0 0 1 0-1.41l4.95-4.95c.39-.39 1.02-.39 1.41 0l10.61 10.61c.39.39.39 1.02 0 1.41l-4.95 4.95c-.39.38-1.03.38-1.42-.01zM17.61 1.4C16.04.57 14.06-.03 11.81.02c-.18 0-.26.22-.14.35l3.48 3.48 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.8-2.96-7-6.24-8.74zM8.85 20.16l-1.33 1.33c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.57.83 3.55 1.43 5.8 1.38.18 0 .26-.22.14-.35l-3.48-3.49z" -}), 'ScreenRotationRounded'); \ No newline at end of file +}), 'ScreenRotationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenRotationSharp.js b/packages/material-ui-icons/lib/ScreenRotationSharp.js index ab84f14e43a4e8..1a57329c1c0d9b 100644 --- a/packages/material-ui-icons/lib/ScreenRotationSharp.js +++ b/packages/material-ui-icons/lib/ScreenRotationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zM9.17.69.69 9.17l14.14 14.14 8.48-8.48L9.17.69zm5.66 20.5L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36z" -}), 'ScreenRotationSharp'); \ No newline at end of file +}), 'ScreenRotationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenRotationTwoTone.js b/packages/material-ui-icons/lib/ScreenRotationTwoTone.js index 3c51438ca02bd1..b9f992e3452e0a 100644 --- a/packages/material-ui-icons/lib/ScreenRotationTwoTone.js +++ b/packages/material-ui-icons/lib/ScreenRotationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.828 21.192 2.808 9.172l6.357-6.357 12.02 12.02z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" -}, "1")], 'ScreenRotationTwoTone'); \ No newline at end of file +}, "1")], 'ScreenRotationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenSearchDesktop.js b/packages/material-ui-icons/lib/ScreenSearchDesktop.js index 7989969551ded1..b78cb1d74d62eb 100644 --- a/packages/material-ui-icons/lib/ScreenSearchDesktop.js +++ b/packages/material-ui-icons/lib/ScreenSearchDesktop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm5.0967-6.0469c0-1.027.836-1.864 1.864-1.864 1.027 0 1.864.837 1.864 1.864 0 1.027-.837 1.864-1.864 1.864-1.028 0-1.864-.837-1.864-1.864zm7.032 4.236-2.482-2.482c.331-.505.527-1.107.527-1.754 0-1.772-1.441-3.213-3.213-3.213s-3.214 1.441-3.214 3.213 1.442 3.214 3.214 3.214c.636 0 1.225-.192 1.724-.511l2.489 2.488.955-.955z" -}), 'ScreenSearchDesktop'); \ No newline at end of file +}), 'ScreenSearchDesktop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenSearchDesktopOutlined.js b/packages/material-ui-icons/lib/ScreenSearchDesktopOutlined.js index 059fcb32a1c6fc..b8d83bb5305c9d 100644 --- a/packages/material-ui-icons/lib/ScreenSearchDesktopOutlined.js +++ b/packages/material-ui-icons/lib/ScreenSearchDesktopOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2zM4 5h16v11H4V5zM1 19h22v2H1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.97 7.53c-1.37-1.37-3.58-1.37-4.95 0s-1.37 3.58 0 4.95c1.18 1.18 3 1.34 4.36.47l2.09 2.09 1.06-1.06-2.09-2.09c.87-1.36.72-3.18-.47-4.36zm-1.06 3.88c-.78.78-2.05.78-2.83 0-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0c.78.79.78 2.05 0 2.83z" -}, "1")], 'ScreenSearchDesktopOutlined'); \ No newline at end of file +}, "1")], 'ScreenSearchDesktopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenSearchDesktopRounded.js b/packages/material-ui-icons/lib/ScreenSearchDesktopRounded.js index 97f631d935cf2a..e22716675dc721 100644 --- a/packages/material-ui-icons/lib/ScreenSearchDesktopRounded.js +++ b/packages/material-ui-icons/lib/ScreenSearchDesktopRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 19H2c-.55 0-1 .45-1 1s.45 1 1 1h20c.55 0 1-.45 1-1s-.45-1-1-1zM4 18h16c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2zm4.59-9.95c1.28-1.87 3.86-2.05 5.38-.52 1.18 1.18 1.34 3 .47 4.36L16 13.44c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0l-1.55-1.55c-1.57 1-3.76.64-4.87-1.11-.73-1.14-.69-2.67.07-3.79z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11.5", cy: "10", r: "2" -}, "1")], 'ScreenSearchDesktopRounded'); \ No newline at end of file +}, "1")], 'ScreenSearchDesktopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenSearchDesktopSharp.js b/packages/material-ui-icons/lib/ScreenSearchDesktopSharp.js index 523d8f9ff3d884..18a324165f37e4 100644 --- a/packages/material-ui-icons/lib/ScreenSearchDesktopSharp.js +++ b/packages/material-ui-icons/lib/ScreenSearchDesktopSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 19h22v2H1zM22 3H2v15h19.99L22 3zm-6.53 12.03-2.09-2.09c-1.35.87-3.17.71-4.36-.47-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.18 1.18 1.34 3 .47 4.36l2.09 2.09-1.06 1.06z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11.5", cy: "10", r: "2" -}, "1")], 'ScreenSearchDesktopSharp'); \ No newline at end of file +}, "1")], 'ScreenSearchDesktopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenSearchDesktopTwoTone.js b/packages/material-ui-icons/lib/ScreenSearchDesktopTwoTone.js index f09336771cdd4d..ae5d586df122cb 100644 --- a/packages/material-ui-icons/lib/ScreenSearchDesktopTwoTone.js +++ b/packages/material-ui-icons/lib/ScreenSearchDesktopTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5H4v11h16V5zm-4.53 10.03-2.09-2.09c-1.35.87-3.17.71-4.36-.47-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.18 1.18 1.34 3 .47 4.36l2.09 2.09-1.06 1.06z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2zM4 5h16v11H4V5zM1 19h22v2H1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.97 7.53c-1.37-1.37-3.58-1.37-4.95 0s-1.37 3.58 0 4.95c1.18 1.18 3 1.34 4.36.47l2.09 2.09 1.06-1.06-2.09-2.09c.87-1.36.72-3.18-.47-4.36zm-1.06 3.88c-.78.78-2.05.78-2.83 0-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0c.78.79.78 2.05 0 2.83z" -}, "2")], 'ScreenSearchDesktopTwoTone'); \ No newline at end of file +}, "2")], 'ScreenSearchDesktopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenShare.js b/packages/material-ui-icons/lib/ScreenShare.js index 71ae4a3596ea28..a926168adb1b76 100644 --- a/packages/material-ui-icons/lib/ScreenShare.js +++ b/packages/material-ui-icons/lib/ScreenShare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z" -}), 'ScreenShare'); \ No newline at end of file +}), 'ScreenShare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenShareOutlined.js b/packages/material-ui-icons/lib/ScreenShareOutlined.js index 5411eb4adbb823..6a339a1e9e2e1d 100644 --- a/packages/material-ui-icons/lib/ScreenShareOutlined.js +++ b/packages/material-ui-icons/lib/ScreenShareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z" -}), 'ScreenShareOutlined'); \ No newline at end of file +}), 'ScreenShareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenShareRounded.js b/packages/material-ui-icons/lib/ScreenShareRounded.js index 53e06541a27391..8e649f7dcd8513 100644 --- a/packages/material-ui-icons/lib/ScreenShareRounded.js +++ b/packages/material-ui-icons/lib/ScreenShareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.89 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l3.61 3.36c.21.2.21.53 0 .73L13 14.47z" -}), 'ScreenShareRounded'); \ No newline at end of file +}), 'ScreenShareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenShareSharp.js b/packages/material-ui-icons/lib/ScreenShareSharp.js index dd964672a18ef2..6d87dd2f432b94 100644 --- a/packages/material-ui-icons/lib/ScreenShareSharp.js +++ b/packages/material-ui-icons/lib/ScreenShareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20 18 2-2V4H2v12l2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z" -}), 'ScreenShareSharp'); \ No newline at end of file +}), 'ScreenShareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenShareTwoTone.js b/packages/material-ui-icons/lib/ScreenShareTwoTone.js index 06f02bd023abf8..771fe24465cf29 100644 --- a/packages/material-ui-icons/lib/ScreenShareTwoTone.js +++ b/packages/material-ui-icons/lib/ScreenShareTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 16V6H4v10.01L20 16zm-7-1.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z" -}, "1")], 'ScreenShareTwoTone'); \ No newline at end of file +}, "1")], 'ScreenShareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Screenshot.js b/packages/material-ui-icons/lib/Screenshot.js index 58129fb8b394b6..735ea4182014cc 100644 --- a/packages/material-ui-icons/lib/Screenshot.js +++ b/packages/material-ui-icons/lib/Screenshot.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" -}), 'Screenshot'); \ No newline at end of file +}), 'Screenshot'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenshotOutlined.js b/packages/material-ui-icons/lib/ScreenshotOutlined.js index cfb8c99cda7258..5dd9c7b2d467e5 100644 --- a/packages/material-ui-icons/lib/ScreenshotOutlined.js +++ b/packages/material-ui-icons/lib/ScreenshotOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" -}), 'ScreenshotOutlined'); \ No newline at end of file +}), 'ScreenshotOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenshotRounded.js b/packages/material-ui-icons/lib/ScreenshotRounded.js index ed7f4ac164ee21..46ff2b926d7f31 100644 --- a/packages/material-ui-icons/lib/ScreenshotRounded.js +++ b/packages/material-ui-icons/lib/ScreenshotRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zM9.5 8.5h1.75c.41 0 .75-.34.75-.75S11.66 7 11.25 7h-2.5c-.41 0-.75.34-.75.75v2.5c0 .41.34.75.75.75s.75-.34.75-.75V8.5zm3.25 8.5h2.5c.41 0 .75-.34.75-.75v-2.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.75h-1.75c-.41 0-.75.34-.75.75s.34.75.75.75z" -}), 'ScreenshotRounded'); \ No newline at end of file +}), 'ScreenshotRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenshotSharp.js b/packages/material-ui-icons/lib/ScreenshotSharp.js index 10284b92c749b8..a050a67b0dda32 100644 --- a/packages/material-ui-icons/lib/ScreenshotSharp.js +++ b/packages/material-ui-icons/lib/ScreenshotSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 1v22h14V1H5zm12 17H7V6h10v12zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" -}), 'ScreenshotSharp'); \ No newline at end of file +}), 'ScreenshotSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ScreenshotTwoTone.js b/packages/material-ui-icons/lib/ScreenshotTwoTone.js index af1c035d774f25..3471bde3a754dd 100644 --- a/packages/material-ui-icons/lib/ScreenshotTwoTone.js +++ b/packages/material-ui-icons/lib/ScreenshotTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h10v1H7zm0 17h10v1H7z", opacity: ".3" -}, "1")], 'ScreenshotTwoTone'); \ No newline at end of file +}, "1")], 'ScreenshotTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sd.js b/packages/material-ui-icons/lib/Sd.js index f9c16aa43210bb..1099b298907f36 100644 --- a/packages/material-ui-icons/lib/Sd.js +++ b/packages/material-ui-icons/lib/Sd.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1h1.5v.5h2zm5 0h2v-3h-2v3z" -}), 'Sd'); \ No newline at end of file +}), 'Sd'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCard.js b/packages/material-ui-icons/lib/SdCard.js index 48f424a77c27f2..346a5758311ef6 100644 --- a/packages/material-ui-icons/lib/SdCard.js +++ b/packages/material-ui-icons/lib/SdCard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" -}), 'SdCard'); \ No newline at end of file +}), 'SdCard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardAlert.js b/packages/material-ui-icons/lib/SdCardAlert.js index 34fabec4e2fb35..242a0250c45437 100644 --- a/packages/material-ui-icons/lib/SdCardAlert.js +++ b/packages/material-ui-icons/lib/SdCardAlert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z" -}), 'SdCardAlert'); \ No newline at end of file +}), 'SdCardAlert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardAlertOutlined.js b/packages/material-ui-icons/lib/SdCardAlertOutlined.js index 9799d95fbb1020..21bde391652c03 100644 --- a/packages/material-ui-icons/lib/SdCardAlertOutlined.js +++ b/packages/material-ui-icons/lib/SdCardAlertOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z" -}), 'SdCardAlertOutlined'); \ No newline at end of file +}), 'SdCardAlertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardAlertRounded.js b/packages/material-ui-icons/lib/SdCardAlertRounded.js index e8f4e9bd72e636..33b3d2e113842d 100644 --- a/packages/material-ui-icons/lib/SdCardAlertRounded.js +++ b/packages/material-ui-icons/lib/SdCardAlertRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.58.88-.58 1.4L4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" -}), 'SdCardAlertRounded'); \ No newline at end of file +}), 'SdCardAlertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardAlertSharp.js b/packages/material-ui-icons/lib/SdCardAlertSharp.js index 6831c2544cc06d..01d31e5dc8f562 100644 --- a/packages/material-ui-icons/lib/SdCardAlertSharp.js +++ b/packages/material-ui-icons/lib/SdCardAlertSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z" -}), 'SdCardAlertSharp'); \ No newline at end of file +}), 'SdCardAlertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardAlertTwoTone.js b/packages/material-ui-icons/lib/SdCardAlertTwoTone.js index 0bd3e559d8f17b..1eeebc1013057f 100644 --- a/packages/material-ui-icons/lib/SdCardAlertTwoTone.js +++ b/packages/material-ui-icons/lib/SdCardAlertTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 8.83V20h12V4h-7.17L6 8.83zM11 8h2v5h-2V8zm0 7h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z" -}, "1")], 'SdCardAlertTwoTone'); \ No newline at end of file +}, "1")], 'SdCardAlertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardOutlined.js b/packages/material-ui-icons/lib/SdCardOutlined.js index 4f6840743b58ca..ab3ee628b1e239 100644 --- a/packages/material-ui-icons/lib/SdCardOutlined.js +++ b/packages/material-ui-icons/lib/SdCardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" -}), 'SdCardOutlined'); \ No newline at end of file +}), 'SdCardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardRounded.js b/packages/material-ui-icons/lib/SdCardRounded.js index 4d1658843a1157..1c934dc0bbebcf 100644 --- a/packages/material-ui-icons/lib/SdCardRounded.js +++ b/packages/material-ui-icons/lib/SdCardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.6.88-.6 1.4V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'SdCardRounded'); \ No newline at end of file +}), 'SdCardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardSharp.js b/packages/material-ui-icons/lib/SdCardSharp.js index 026fa1cb2216f7..15e8b916e44291 100644 --- a/packages/material-ui-icons/lib/SdCardSharp.js +++ b/packages/material-ui-icons/lib/SdCardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" -}), 'SdCardSharp'); \ No newline at end of file +}), 'SdCardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdCardTwoTone.js b/packages/material-ui-icons/lib/SdCardTwoTone.js index f3d5b69a094647..d5228832c0381b 100644 --- a/packages/material-ui-icons/lib/SdCardTwoTone.js +++ b/packages/material-ui-icons/lib/SdCardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" -}, "1")], 'SdCardTwoTone'); \ No newline at end of file +}, "1")], 'SdCardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdOutlined.js b/packages/material-ui-icons/lib/SdOutlined.js index 1baadcc4728baa..a837a25eb835e3 100644 --- a/packages/material-ui-icons/lib/SdOutlined.js +++ b/packages/material-ui-icons/lib/SdOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h3c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2.5v1h-2V13H6v1c0 .55.45 1 1 1zm11-1v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "1")], 'SdOutlined'); \ No newline at end of file +}, "1")], 'SdOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdRounded.js b/packages/material-ui-icons/lib/SdRounded.js index 4b0a33c53cf3f1..4a5c76c59f6997 100644 --- a/packages/material-ui-icons/lib/SdRounded.js +++ b/packages/material-ui-icons/lib/SdRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 5h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1h1.5v.5h2zm5 0h2v-3h-2v3z" -}), 'SdRounded'); \ No newline at end of file +}), 'SdRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdSharp.js b/packages/material-ui-icons/lib/SdSharp.js index e88a4a989aff51..cdfe63282e3d97 100644 --- a/packages/material-ui-icons/lib/SdSharp.js +++ b/packages/material-ui-icons/lib/SdSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4v16h20V4H2zm11 5h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H6V9h5v2H9.5v-.5h-2v1H11V15H6v-2h1.5v.5h2zm5 0h2v-3h-2v3z" -}), 'SdSharp'); \ No newline at end of file +}), 'SdSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdStorage.js b/packages/material-ui-icons/lib/SdStorage.js index 81bb3205fd6145..83c0541bf6821f 100644 --- a/packages/material-ui-icons/lib/SdStorage.js +++ b/packages/material-ui-icons/lib/SdStorage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" -}), 'SdStorage'); \ No newline at end of file +}), 'SdStorage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdStorageOutlined.js b/packages/material-ui-icons/lib/SdStorageOutlined.js index 8098d80040c916..d521479891fd39 100644 --- a/packages/material-ui-icons/lib/SdStorageOutlined.js +++ b/packages/material-ui-icons/lib/SdStorageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v16H6V8.83L10.83 4H18m0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" -}), 'SdStorageOutlined'); \ No newline at end of file +}), 'SdStorageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdStorageRounded.js b/packages/material-ui-icons/lib/SdStorageRounded.js index 52867cb0c08409..c5983480a6067a 100644 --- a/packages/material-ui-icons/lib/SdStorageRounded.js +++ b/packages/material-ui-icons/lib/SdStorageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.6.88-.6 1.4V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'SdStorageRounded'); \ No newline at end of file +}), 'SdStorageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdStorageSharp.js b/packages/material-ui-icons/lib/SdStorageSharp.js index e9413b8d820377..5327e75b41603e 100644 --- a/packages/material-ui-icons/lib/SdStorageSharp.js +++ b/packages/material-ui-icons/lib/SdStorageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" -}), 'SdStorageSharp'); \ No newline at end of file +}), 'SdStorageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdStorageTwoTone.js b/packages/material-ui-icons/lib/SdStorageTwoTone.js index e7a6c5672d61ba..0396530a39223a 100644 --- a/packages/material-ui-icons/lib/SdStorageTwoTone.js +++ b/packages/material-ui-icons/lib/SdStorageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" -}, "1")], 'SdStorageTwoTone'); \ No newline at end of file +}, "1")], 'SdStorageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SdTwoTone.js b/packages/material-ui-icons/lib/SdTwoTone.js index aacec53318c927..c28b504fcc7088 100644 --- a/packages/material-ui-icons/lib/SdTwoTone.js +++ b/packages/material-ui-icons/lib/SdTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zm9-9h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-7 4h1.5v.5h2v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5h2v3h-2z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 15h3c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2.5v1h-2V13H6v1c0 .55.45 1 1 1zm11-1v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "3")], 'SdTwoTone'); \ No newline at end of file +}, "3")], 'SdTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Search.js b/packages/material-ui-icons/lib/Search.js index 27a078f2ade234..78250f625349d7 100644 --- a/packages/material-ui-icons/lib/Search.js +++ b/packages/material-ui-icons/lib/Search.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}), 'Search'); \ No newline at end of file +}), 'Search'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchOff.js b/packages/material-ui-icons/lib/SearchOff.js index 1446b628df5e3f..b242252994b199 100644 --- a/packages/material-ui-icons/lib/SearchOff.js +++ b/packages/material-ui-icons/lib/SearchOff.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" -}, "1")], 'SearchOff'); \ No newline at end of file +}, "1")], 'SearchOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchOffOutlined.js b/packages/material-ui-icons/lib/SearchOffOutlined.js index 8a38beae310f1a..c450dc9601f8ec 100644 --- a/packages/material-ui-icons/lib/SearchOffOutlined.js +++ b/packages/material-ui-icons/lib/SearchOffOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" -}, "1")], 'SearchOffOutlined'); \ No newline at end of file +}, "1")], 'SearchOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchOffRounded.js b/packages/material-ui-icons/lib/SearchOffRounded.js index e98b5c38aa9c32..84f8267a119364 100644 --- a/packages/material-ui-icons/lib/SearchOffRounded.js +++ b/packages/material-ui-icons/lib/SearchOffRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-4.99-5.58-5.34C6.54 2.58 3.3 5.38 3.03 9h2.02c.24-2.12 1.92-3.8 4.06-3.98C11.65 4.8 14 6.95 14 9.5c0 2.49-2.01 4.5-4.5 4.5-.17 0-.33-.03-.5-.05v2.02l.01.01c1.8.13 3.47-.47 4.72-1.55l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.12 11.17 4 13.29l-2.12-2.12c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71L3.29 14l-2.12 2.12c-.2.2-.2.51 0 .71.2.2.51.2.71 0L4 14.71l2.12 2.12c.2.2.51.2.71 0 .2-.2.2-.51 0-.71L4.71 14l2.12-2.12c.2-.2.2-.51 0-.71-.2-.19-.51-.19-.71 0z" -}, "1")], 'SearchOffRounded'); \ No newline at end of file +}, "1")], 'SearchOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchOffSharp.js b/packages/material-ui-icons/lib/SearchOffSharp.js index f613488c489d16..b82ec44c9acfca 100644 --- a/packages/material-ui-icons/lib/SearchOffSharp.js +++ b/packages/material-ui-icons/lib/SearchOffSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" -}, "1")], 'SearchOffSharp'); \ No newline at end of file +}, "1")], 'SearchOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchOffTwoTone.js b/packages/material-ui-icons/lib/SearchOffTwoTone.js index abdfa6bd859a50..a0d7bf227b5a3b 100644 --- a/packages/material-ui-icons/lib/SearchOffTwoTone.js +++ b/packages/material-ui-icons/lib/SearchOffTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" -}, "1")], 'SearchOffTwoTone'); \ No newline at end of file +}, "1")], 'SearchOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchOutlined.js b/packages/material-ui-icons/lib/SearchOutlined.js index 6ced5ef41570db..17b173160902ba 100644 --- a/packages/material-ui-icons/lib/SearchOutlined.js +++ b/packages/material-ui-icons/lib/SearchOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}), 'SearchOutlined'); \ No newline at end of file +}), 'SearchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchRounded.js b/packages/material-ui-icons/lib/SearchRounded.js index ee2fdceb28b791..0f53d814b764fa 100644 --- a/packages/material-ui-icons/lib/SearchRounded.js +++ b/packages/material-ui-icons/lib/SearchRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}), 'SearchRounded'); \ No newline at end of file +}), 'SearchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchSharp.js b/packages/material-ui-icons/lib/SearchSharp.js index de074b3407dda4..2be930a1ee4fdc 100644 --- a/packages/material-ui-icons/lib/SearchSharp.js +++ b/packages/material-ui-icons/lib/SearchSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}), 'SearchSharp'); \ No newline at end of file +}), 'SearchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SearchTwoTone.js b/packages/material-ui-icons/lib/SearchTwoTone.js index 12df883c676173..18669f1fc95ed5 100644 --- a/packages/material-ui-icons/lib/SearchTwoTone.js +++ b/packages/material-ui-icons/lib/SearchTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}), 'SearchTwoTone'); \ No newline at end of file +}), 'SearchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Security.js b/packages/material-ui-icons/lib/Security.js index 39c93b2aa1fdf2..8d55998ad755f0 100644 --- a/packages/material-ui-icons/lib/Security.js +++ b/packages/material-ui-icons/lib/Security.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" -}), 'Security'); \ No newline at end of file +}), 'Security'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityOutlined.js b/packages/material-ui-icons/lib/SecurityOutlined.js index fe9a0290855630..e37e35280bdf81 100644 --- a/packages/material-ui-icons/lib/SecurityOutlined.js +++ b/packages/material-ui-icons/lib/SecurityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" -}), 'SecurityOutlined'); \ No newline at end of file +}), 'SecurityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityRounded.js b/packages/material-ui-icons/lib/SecurityRounded.js index 65e14244274414..5988b5a0e30b48 100644 --- a/packages/material-ui-icons/lib/SecurityRounded.js +++ b/packages/material-ui-icons/lib/SecurityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.19 1.36-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62 0zM12 11.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" -}), 'SecurityRounded'); \ No newline at end of file +}), 'SecurityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecuritySharp.js b/packages/material-ui-icons/lib/SecuritySharp.js index d85f0a28d355ad..2a659c41ed3ece 100644 --- a/packages/material-ui-icons/lib/SecuritySharp.js +++ b/packages/material-ui-icons/lib/SecuritySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" -}), 'SecuritySharp'); \ No newline at end of file +}), 'SecuritySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityTwoTone.js b/packages/material-ui-icons/lib/SecurityTwoTone.js index ac33ff965dbab0..dd9701fbab92a6 100644 --- a/packages/material-ui-icons/lib/SecurityTwoTone.js +++ b/packages/material-ui-icons/lib/SecurityTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3.19 5 6.3V12h7v8.93c3.72-1.15 6.47-4.82 7-8.94h-7v-8.8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 19.93V12H5V6.3l7-3.11v8.8h7c-.53 4.12-3.28 7.79-7 8.94z" -}, "1")], 'SecurityTwoTone'); \ No newline at end of file +}, "1")], 'SecurityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdate.js b/packages/material-ui-icons/lib/SecurityUpdate.js index 5beb947e41c8b2..c4092f4badcc81 100644 --- a/packages/material-ui-icons/lib/SecurityUpdate.js +++ b/packages/material-ui-icons/lib/SecurityUpdate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2zm12 15H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" -}), 'SecurityUpdate'); \ No newline at end of file +}), 'SecurityUpdate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateGood.js b/packages/material-ui-icons/lib/SecurityUpdateGood.js index fe2031c6df8a69..41f6fdc83caec5 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateGood.js +++ b/packages/material-ui-icons/lib/SecurityUpdateGood.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}), 'SecurityUpdateGood'); \ No newline at end of file +}), 'SecurityUpdateGood'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateGoodOutlined.js b/packages/material-ui-icons/lib/SecurityUpdateGoodOutlined.js index 5f37674ed05011..3dc9e4fcfa43d8 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateGoodOutlined.js +++ b/packages/material-ui-icons/lib/SecurityUpdateGoodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}), 'SecurityUpdateGoodOutlined'); \ No newline at end of file +}), 'SecurityUpdateGoodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateGoodRounded.js b/packages/material-ui-icons/lib/SecurityUpdateGoodRounded.js index 5e71d29a6e6dbd..37ca90ca4dde04 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateGoodRounded.js +++ b/packages/material-ui-icons/lib/SecurityUpdateGoodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-6.66-3.71c.39.39 1.02.39 1.41 0l3.54-3.54c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2.83 2.83-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.41 1.42z" -}), 'SecurityUpdateGoodRounded'); \ No newline at end of file +}), 'SecurityUpdateGoodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateGoodSharp.js b/packages/material-ui-icons/lib/SecurityUpdateGoodSharp.js index 8e070069ef2e01..c7c74277831e09 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateGoodSharp.js +++ b/packages/material-ui-icons/lib/SecurityUpdateGoodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}), 'SecurityUpdateGoodSharp'); \ No newline at end of file +}), 'SecurityUpdateGoodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateGoodTwoTone.js b/packages/material-ui-icons/lib/SecurityUpdateGoodTwoTone.js index 066b9498813721..05268bf7f2191d 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateGoodTwoTone.js +++ b/packages/material-ui-icons/lib/SecurityUpdateGoodTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}, "1")], 'SecurityUpdateGoodTwoTone'); \ No newline at end of file +}, "1")], 'SecurityUpdateGoodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateOutlined.js b/packages/material-ui-icons/lib/SecurityUpdateOutlined.js index cecaec5e862807..22ed51e53713d4 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateOutlined.js +++ b/packages/material-ui-icons/lib/SecurityUpdateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7zm9 8-4 4-4-4 1.41-1.41L11 12.17V8h2v4.17l1.59-1.59L16 12z" -}), 'SecurityUpdateOutlined'); \ No newline at end of file +}), 'SecurityUpdateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateRounded.js b/packages/material-ui-icons/lib/SecurityUpdateRounded.js index f12ad78582523d..e21ed454c871b2 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateRounded.js +++ b/packages/material-ui-icons/lib/SecurityUpdateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-2.21-5.79H13V9c0-.55-.45-1-1-1s-1 .45-1 1v3.21H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" -}), 'SecurityUpdateRounded'); \ No newline at end of file +}), 'SecurityUpdateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateSharp.js b/packages/material-ui-icons/lib/SecurityUpdateSharp.js index f0316e3f1742a6..0aa40be797b403 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateSharp.js +++ b/packages/material-ui-icons/lib/SecurityUpdateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" -}), 'SecurityUpdateSharp'); \ No newline at end of file +}), 'SecurityUpdateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateTwoTone.js b/packages/material-ui-icons/lib/SecurityUpdateTwoTone.js index 8bad0a8ac20b07..637ed3e1c33be0 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateTwoTone.js +++ b/packages/material-ui-icons/lib/SecurityUpdateTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20h10v1H7zM7 3h10v1H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 8h-3V8h-2v4H8l4 4 4-4z" -}, "1")], 'SecurityUpdateTwoTone'); \ No newline at end of file +}, "1")], 'SecurityUpdateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateWarning.js b/packages/material-ui-icons/lib/SecurityUpdateWarning.js index bb8de072216f9d..e50c00029a97b2 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateWarning.js +++ b/packages/material-ui-icons/lib/SecurityUpdateWarning.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" -}, "1")], 'SecurityUpdateWarning'); \ No newline at end of file +}, "1")], 'SecurityUpdateWarning'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateWarningOutlined.js b/packages/material-ui-icons/lib/SecurityUpdateWarningOutlined.js index c662c73c837a73..44355727af1e96 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateWarningOutlined.js +++ b/packages/material-ui-icons/lib/SecurityUpdateWarningOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" -}, "1")], 'SecurityUpdateWarningOutlined'); \ No newline at end of file +}, "1")], 'SecurityUpdateWarningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateWarningRounded.js b/packages/material-ui-icons/lib/SecurityUpdateWarningRounded.js index 5dead2a1595c89..c893a30e91ef62 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateWarningRounded.js +++ b/packages/material-ui-icons/lib/SecurityUpdateWarningRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" -}, "2")], 'SecurityUpdateWarningRounded'); \ No newline at end of file +}, "2")], 'SecurityUpdateWarningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateWarningSharp.js b/packages/material-ui-icons/lib/SecurityUpdateWarningSharp.js index f5fb5c16e811da..2b8e4b6f9ecd0c 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateWarningSharp.js +++ b/packages/material-ui-icons/lib/SecurityUpdateWarningSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z" -}, "1")], 'SecurityUpdateWarningSharp'); \ No newline at end of file +}, "1")], 'SecurityUpdateWarningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SecurityUpdateWarningTwoTone.js b/packages/material-ui-icons/lib/SecurityUpdateWarningTwoTone.js index 0bbaa6f72cd758..90bf1353129627 100644 --- a/packages/material-ui-icons/lib/SecurityUpdateWarningTwoTone.js +++ b/packages/material-ui-icons/lib/SecurityUpdateWarningTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v6h-2V7zm0 8h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", opacity: ".3" -}, "3")], 'SecurityUpdateWarningTwoTone'); \ No newline at end of file +}, "3")], 'SecurityUpdateWarningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Segment.js b/packages/material-ui-icons/lib/Segment.js index 9302a32f2ae1af..6661b66656e373 100644 --- a/packages/material-ui-icons/lib/Segment.js +++ b/packages/material-ui-icons/lib/Segment.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" -}), 'Segment'); \ No newline at end of file +}), 'Segment'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SegmentOutlined.js b/packages/material-ui-icons/lib/SegmentOutlined.js index 4d849eaca7c060..b329e893d3a9e1 100644 --- a/packages/material-ui-icons/lib/SegmentOutlined.js +++ b/packages/material-ui-icons/lib/SegmentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" -}), 'SegmentOutlined'); \ No newline at end of file +}), 'SegmentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SegmentRounded.js b/packages/material-ui-icons/lib/SegmentRounded.js index d43390a636e825..60e192a263725d 100644 --- a/packages/material-ui-icons/lib/SegmentRounded.js +++ b/packages/material-ui-icons/lib/SegmentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 18h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm7 6h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'SegmentRounded'); \ No newline at end of file +}), 'SegmentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SegmentSharp.js b/packages/material-ui-icons/lib/SegmentSharp.js index e7bdf3064d5b06..dd6e8c6251580c 100644 --- a/packages/material-ui-icons/lib/SegmentSharp.js +++ b/packages/material-ui-icons/lib/SegmentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" -}), 'SegmentSharp'); \ No newline at end of file +}), 'SegmentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SegmentTwoTone.js b/packages/material-ui-icons/lib/SegmentTwoTone.js index 46aa325bc1ee7e..80540633edaca9 100644 --- a/packages/material-ui-icons/lib/SegmentTwoTone.js +++ b/packages/material-ui-icons/lib/SegmentTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" -}), 'SegmentTwoTone'); \ No newline at end of file +}), 'SegmentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelectAll.js b/packages/material-ui-icons/lib/SelectAll.js index a44a5ca10d625f..49d23e15d9fa14 100644 --- a/packages/material-ui-icons/lib/SelectAll.js +++ b/packages/material-ui-icons/lib/SelectAll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" -}), 'SelectAll'); \ No newline at end of file +}), 'SelectAll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelectAllOutlined.js b/packages/material-ui-icons/lib/SelectAllOutlined.js index 024c05ea121edd..6081d244e658e9 100644 --- a/packages/material-ui-icons/lib/SelectAllOutlined.js +++ b/packages/material-ui-icons/lib/SelectAllOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" -}), 'SelectAllOutlined'); \ No newline at end of file +}), 'SelectAllOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelectAllRounded.js b/packages/material-ui-icons/lib/SelectAllRounded.js index 7eb068452e55be..1636a6cecfa9b7 100644 --- a/packages/material-ui-icons/lib/SelectAllRounded.js +++ b/packages/material-ui-icons/lib/SelectAllRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM8 17h8c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zm1-8h6v6H9V9z" -}), 'SelectAllRounded'); \ No newline at end of file +}), 'SelectAllRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelectAllSharp.js b/packages/material-ui-icons/lib/SelectAllSharp.js index e622c250a65ab9..82613b3f5f7fe5 100644 --- a/packages/material-ui-icons/lib/SelectAllSharp.js +++ b/packages/material-ui-icons/lib/SelectAllSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm6 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0-4h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zm4 0h2V3h-2v2zm0 16h2v-2h-2v2zM3 21h2v-2H3v2zm4-4h10V7H7v10zm2-8h6v6H9V9z" -}), 'SelectAllSharp'); \ No newline at end of file +}), 'SelectAllSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelectAllTwoTone.js b/packages/material-ui-icons/lib/SelectAllTwoTone.js index e342fb6fd4978f..8b95cf1bb5189c 100644 --- a/packages/material-ui-icons/lib/SelectAllTwoTone.js +++ b/packages/material-ui-icons/lib/SelectAllTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" -}), 'SelectAllTwoTone'); \ No newline at end of file +}), 'SelectAllTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelfImprovement.js b/packages/material-ui-icons/lib/SelfImprovement.js index 8f78f6e3bb710e..49a378c2253409 100644 --- a/packages/material-ui-icons/lib/SelfImprovement.js +++ b/packages/material-ui-icons/lib/SelfImprovement.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" -}, "1")], 'SelfImprovement'); \ No newline at end of file +}, "1")], 'SelfImprovement'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelfImprovementOutlined.js b/packages/material-ui-icons/lib/SelfImprovementOutlined.js index f5f57ebcd297a6..a2972cfdd8a85e 100644 --- a/packages/material-ui-icons/lib/SelfImprovementOutlined.js +++ b/packages/material-ui-icons/lib/SelfImprovementOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" -}, "1")], 'SelfImprovementOutlined'); \ No newline at end of file +}, "1")], 'SelfImprovementOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelfImprovementRounded.js b/packages/material-ui-icons/lib/SelfImprovementRounded.js index 59f25331c3efaf..d74249e4c9a105 100644 --- a/packages/material-ui-icons/lib/SelfImprovementRounded.js +++ b/packages/material-ui-icons/lib/SelfImprovementRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14.94c0-.5-.36-.93-.85-.98-1.88-.21-3.49-1.13-4.75-2.63l-1.34-1.6c-.38-.47-.94-.73-1.53-.73h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6c-1.25 1.5-2.87 2.42-4.75 2.63-.5.06-.86.49-.86.99 0 .6.53 1.07 1.13 1 2.3-.27 4.32-1.39 5.87-3.19V15l-3.76 1.5c-.65.26-1.16.83-1.23 1.53-.1 1.07.73 1.97 1.78 1.97H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.1c.85 0 1.65-.54 1.85-1.37.21-.89-.27-1.76-1.08-2.08L14 15v-2.25c1.56 1.8 3.57 2.91 5.87 3.19.6.06 1.13-.4 1.13-1z" -}, "1")], 'SelfImprovementRounded'); \ No newline at end of file +}, "1")], 'SelfImprovementRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelfImprovementSharp.js b/packages/material-ui-icons/lib/SelfImprovementSharp.js index 17ee100196d4d8..ae1c5c4c4c2f92 100644 --- a/packages/material-ui-icons/lib/SelfImprovementSharp.js +++ b/packages/material-ui-icons/lib/SelfImprovementSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" -}, "1")], 'SelfImprovementSharp'); \ No newline at end of file +}, "1")], 'SelfImprovementSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SelfImprovementTwoTone.js b/packages/material-ui-icons/lib/SelfImprovementTwoTone.js index 25392420bb1579..74790253581a7b 100644 --- a/packages/material-ui-icons/lib/SelfImprovementTwoTone.js +++ b/packages/material-ui-icons/lib/SelfImprovementTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" -}, "1")], 'SelfImprovementTwoTone'); \ No newline at end of file +}, "1")], 'SelfImprovementTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sell.js b/packages/material-ui-icons/lib/Sell.js index 447fe1dcc35366..d4b68ffc11a4bf 100644 --- a/packages/material-ui-icons/lib/Sell.js +++ b/packages/material-ui-icons/lib/Sell.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z" -}), 'Sell'); \ No newline at end of file +}), 'Sell'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SellOutlined.js b/packages/material-ui-icons/lib/SellOutlined.js index f7b2d4d22d27e3..607ad42466e8fd 100644 --- a/packages/material-ui-icons/lib/SellOutlined.js +++ b/packages/material-ui-icons/lib/SellOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM12.83 20 4 11.17V4h7.17L20 12.83 12.83 20z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "6.5", r: "1.5" -}, "1")], 'SellOutlined'); \ No newline at end of file +}, "1")], 'SellOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SellRounded.js b/packages/material-ui-icons/lib/SellRounded.js index 3ed143e00718c0..64681f3536660f 100644 --- a/packages/material-ui-icons/lib/SellRounded.js +++ b/packages/material-ui-icons/lib/SellRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z" -}), 'SellRounded'); \ No newline at end of file +}), 'SellRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SellSharp.js b/packages/material-ui-icons/lib/SellSharp.js index beb92a38c109a9..d82e1aacb8287a 100644 --- a/packages/material-ui-icons/lib/SellSharp.js +++ b/packages/material-ui-icons/lib/SellSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.83 12.83 12 2H2v10l10.83 10.83 10-10zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z" -}), 'SellSharp'); \ No newline at end of file +}), 'SellSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SellTwoTone.js b/packages/material-ui-icons/lib/SellTwoTone.js index c7ec8e3f577b38..57091d8e6cee07 100644 --- a/packages/material-ui-icons/lib/SellTwoTone.js +++ b/packages/material-ui-icons/lib/SellTwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v7.17L12.83 20 20 12.83 11.17 4H4zm2.5 4C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM12.83 20 4 11.17V4h7.17L20 12.83 12.83 20z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "6.5", r: "1.5" -}, "2")], 'SellTwoTone'); \ No newline at end of file +}, "2")], 'SellTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Send.js b/packages/material-ui-icons/lib/Send.js index 8f9b46f83e2ca5..016b85c1a3656a 100644 --- a/packages/material-ui-icons/lib/Send.js +++ b/packages/material-ui-icons/lib/Send.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.01 21 23 12 2.01 3 2 10l15 2-15 2z" -}), 'Send'); \ No newline at end of file +}), 'Send'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendAndArchive.js b/packages/material-ui-icons/lib/SendAndArchive.js index a1bc65e76a7d73..b642e3c4158318 100644 --- a/packages/material-ui-icons/lib/SendAndArchive.js +++ b/packages/material-ui-icons/lib/SendAndArchive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10h-3L2 3v7l9 2-9 2v7l8-3.5V21c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11h-9v-9h9v9zm-4.5-1L13 16h2v-3h3v3h2l-3.5 4z" -}), 'SendAndArchive'); \ No newline at end of file +}), 'SendAndArchive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendAndArchiveOutlined.js b/packages/material-ui-icons/lib/SendAndArchiveOutlined.js index e97f40ba8f8bff..93ad1cc0b53645 100644 --- a/packages/material-ui-icons/lib/SendAndArchiveOutlined.js +++ b/packages/material-ui-icons/lib/SendAndArchiveOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 12-6-1.5V7.01l8.87 3.73c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3 .71-.71 1.79 1.79V14h1v4.09l1.79-1.79.71.7-3 3z" -}, "1")], 'SendAndArchiveOutlined'); \ No newline at end of file +}, "1")], 'SendAndArchiveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendAndArchiveRounded.js b/packages/material-ui-icons/lib/SendAndArchiveRounded.js index 53d56deb5fd85b..f835ab5bd19557 100644 --- a/packages/material-ui-icons/lib/SendAndArchiveRounded.js +++ b/packages/material-ui-icons/lib/SendAndArchiveRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm2.15 5.85-1.79 1.79c-.2.2-.51.2-.71 0l-1.79-1.79c-.32-.31-.1-.85.35-.85h1.29v-2.5c0-.28.22-.5.5-.5s.5.22.5.5V17h1.29c.45 0 .67.54.36.85z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.87 3.13-7 7-7z" -}, "1")], 'SendAndArchiveRounded'); \ No newline at end of file +}, "1")], 'SendAndArchiveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendAndArchiveSharp.js b/packages/material-ui-icons/lib/SendAndArchiveSharp.js index 7d56a3e2364763..20294d7f446223 100644 --- a/packages/material-ui-icons/lib/SendAndArchiveSharp.js +++ b/packages/material-ui-icons/lib/SendAndArchiveSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.87 3.13-7 7-7z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3h2.5v-3h1v3H20l-3 3z" -}, "1")], 'SendAndArchiveSharp'); \ No newline at end of file +}, "1")], 'SendAndArchiveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendAndArchiveTwoTone.js b/packages/material-ui-icons/lib/SendAndArchiveTwoTone.js index eed7133b8dc079..8343b48660da3f 100644 --- a/packages/material-ui-icons/lib/SendAndArchiveTwoTone.js +++ b/packages/material-ui-icons/lib/SendAndArchiveTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7.01v3.49l6 1.5-6 1.5v3.49l5.39-2.27c.6-1.74 1.86-3.16 3.48-3.97L5 7.01z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 12-6-1.5V7.01l8.87 3.73c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3h2.5v-3h1v3H20l-3 3z" -}, "2")], 'SendAndArchiveTwoTone'); \ No newline at end of file +}, "2")], 'SendAndArchiveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendOutlined.js b/packages/material-ui-icons/lib/SendOutlined.js index 8decebdab64082..74fcdfa87d2e77 100644 --- a/packages/material-ui-icons/lib/SendOutlined.js +++ b/packages/material-ui-icons/lib/SendOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.01 6.03 7.51 3.22-7.52-1 .01-2.22m7.5 8.72L4 17.97v-2.22l7.51-1M2.01 3 2 10l15 2-15 2 .01 7L23 12 2.01 3z" -}), 'SendOutlined'); \ No newline at end of file +}), 'SendOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendRounded.js b/packages/material-ui-icons/lib/SendRounded.js index b248cf13002463..1ad25a577386ea 100644 --- a/packages/material-ui-icons/lib/SendRounded.js +++ b/packages/material-ui-icons/lib/SendRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.4 20.4 17.45-7.48c.81-.35.81-1.49 0-1.84L3.4 3.6c-.66-.29-1.39.2-1.39.91L2 9.12c0 .5.37.93.87.99L17 12 2.87 13.88c-.5.07-.87.5-.87 1l.01 4.61c0 .71.73 1.2 1.39.91z" -}), 'SendRounded'); \ No newline at end of file +}), 'SendRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendSharp.js b/packages/material-ui-icons/lib/SendSharp.js index e4f3cfc11dd528..2ab6c9bcf52084 100644 --- a/packages/material-ui-icons/lib/SendSharp.js +++ b/packages/material-ui-icons/lib/SendSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.01 21 23 12 2.01 3 2 10l15 2-15 2 .01 7z" -}), 'SendSharp'); \ No newline at end of file +}), 'SendSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendToMobile.js b/packages/material-ui-icons/lib/SendToMobile.js index 1c21bc072fa406..0c2a67996f22d2 100644 --- a/packages/material-ui-icons/lib/SendToMobile.js +++ b/packages/material-ui-icons/lib/SendToMobile.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-1.99 2-1.99L17 1c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1zm5-5-4-4v3h-5v2h5v3l4-4z" -}), 'SendToMobile'); \ No newline at end of file +}), 'SendToMobile'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendToMobileOutlined.js b/packages/material-ui-icons/lib/SendToMobileOutlined.js index e31941e6f93ade..feb7ba269e0527 100644 --- a/packages/material-ui-icons/lib/SendToMobileOutlined.js +++ b/packages/material-ui-icons/lib/SendToMobileOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 8 4 4-4 4-1.41-1.41L18.17 13H13v-2h5.17l-1.59-1.59L18 8zM7 1.01 17 1c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-1.99 2-1.99zM7 21h10v-1H7v1zM7 4h10V3H7v1z" -}), 'SendToMobileOutlined'); \ No newline at end of file +}), 'SendToMobileOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendToMobileRounded.js b/packages/material-ui-icons/lib/SendToMobileRounded.js index 2ad0fcfa8f63fe..ca4052b279fbf4 100644 --- a/packages/material-ui-icons/lib/SendToMobileRounded.js +++ b/packages/material-ui-icons/lib/SendToMobileRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18H7V6h10c0 .55.45 1 1 1s1-.45 1-1V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.65 11.65-2.79-2.79c-.32-.32-.86-.1-.86.35V11h-4c-.55 0-1 .45-1 1s.45 1 1 1h4v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" -}, "1")], 'SendToMobileRounded'); \ No newline at end of file +}, "1")], 'SendToMobileRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendToMobileSharp.js b/packages/material-ui-icons/lib/SendToMobileSharp.js index b2ba73e99d7435..ad09c022a9b6ab 100644 --- a/packages/material-ui-icons/lib/SendToMobileSharp.js +++ b/packages/material-ui-icons/lib/SendToMobileSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18H7V6h10v1h2V1H5v22h14v-6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4-4v3h-5v2h5v3z" -}, "1")], 'SendToMobileSharp'); \ No newline at end of file +}, "1")], 'SendToMobileSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendToMobileTwoTone.js b/packages/material-ui-icons/lib/SendToMobileTwoTone.js index e3516e71a76349..db3157896d5de4 100644 --- a/packages/material-ui-icons/lib/SendToMobileTwoTone.js +++ b/packages/material-ui-icons/lib/SendToMobileTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3h10v1H7zm0 17h10v1H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4-4v3h-5v2h5v3l4-4zm-5 6H7V6h10v1h2V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" -}, "1")], 'SendToMobileTwoTone'); \ No newline at end of file +}, "1")], 'SendToMobileTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SendTwoTone.js b/packages/material-ui-icons/lib/SendTwoTone.js index 7f657fb109558c..bca17b66871c55 100644 --- a/packages/material-ui-icons/lib/SendTwoTone.js +++ b/packages/material-ui-icons/lib/SendTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 8.25 7.51 1-7.5-3.22zm.01 9.72 7.5-3.22-7.51 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.01 3 2 10l15 2-15 2 .01 7L23 12 2.01 3zM4 8.25V6.03l7.51 3.22-7.51-1zm.01 9.72v-2.22l7.51-1-7.51 3.22z" -}, "1")], 'SendTwoTone'); \ No newline at end of file +}, "1")], 'SendTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorDoor.js b/packages/material-ui-icons/lib/SensorDoor.js index 3a56ce2ffe9b0f..c67835d1b37626 100644 --- a/packages/material-ui-icons/lib/SensorDoor.js +++ b/packages/material-ui-icons/lib/SensorDoor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v18h16V4c0-1.1-.9-2-2-2zm-2.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'SensorDoor'); \ No newline at end of file +}), 'SensorDoor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorDoorOutlined.js b/packages/material-ui-icons/lib/SensorDoorOutlined.js index b8fe6a374a6823..864251594ac596 100644 --- a/packages/material-ui-icons/lib/SensorDoorOutlined.js +++ b/packages/material-ui-icons/lib/SensorDoorOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v18h16V4c0-1.1-.9-2-2-2zm-2.5 8.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S17 12.83 17 12s-.67-1.5-1.5-1.5z" -}), 'SensorDoorOutlined'); \ No newline at end of file +}), 'SensorDoorOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorDoorRounded.js b/packages/material-ui-icons/lib/SensorDoorRounded.js index c40e36684b132b..b4bd58032de817 100644 --- a/packages/material-ui-icons/lib/SensorDoorRounded.js +++ b/packages/material-ui-icons/lib/SensorDoorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'SensorDoorRounded'); \ No newline at end of file +}), 'SensorDoorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorDoorSharp.js b/packages/material-ui-icons/lib/SensorDoorSharp.js index 5c83c33bd3f60a..9662a9cac94eac 100644 --- a/packages/material-ui-icons/lib/SensorDoorSharp.js +++ b/packages/material-ui-icons/lib/SensorDoorSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4v20h16V2zm-4.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'SensorDoorSharp'); \ No newline at end of file +}), 'SensorDoorSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorDoorTwoTone.js b/packages/material-ui-icons/lib/SensorDoorTwoTone.js index 00f6fa98a04087..86224b54bf6eda 100644 --- a/packages/material-ui-icons/lib/SensorDoorTwoTone.js +++ b/packages/material-ui-icons/lib/SensorDoorTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v16H6V4h12m-2.5 6.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S17 12.83 17 12s-.67-1.5-1.5-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v18h16V4c0-1.1-.9-2-2-2zm-2.5 8.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S17 12.83 17 12s-.67-1.5-1.5-1.5z" -}, "1")], 'SensorDoorTwoTone'); \ No newline at end of file +}, "1")], 'SensorDoorTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorWindow.js b/packages/material-ui-icons/lib/SensorWindow.js index 5809c1de1b6023..2caeddc39259d8 100644 --- a/packages/material-ui-icons/lib/SensorWindow.js +++ b/packages/material-ui-icons/lib/SensorWindow.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 19h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z" -}), 'SensorWindow'); \ No newline at end of file +}), 'SensorWindow'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorWindowOutlined.js b/packages/material-ui-icons/lib/SensorWindowOutlined.js index 51153f0e352038..3fcf5dd754cd5d 100644 --- a/packages/material-ui-icons/lib/SensorWindowOutlined.js +++ b/packages/material-ui-icons/lib/SensorWindowOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v7h-4v-1h-4v1H6V4h12zM6 20v-7h12v7H6z" -}), 'SensorWindowOutlined'); \ No newline at end of file +}), 'SensorWindowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorWindowRounded.js b/packages/material-ui-icons/lib/SensorWindowRounded.js index 4fbfd3b3d2dc6b..898e51e83c5a56 100644 --- a/packages/material-ui-icons/lib/SensorWindowRounded.js +++ b/packages/material-ui-icons/lib/SensorWindowRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 19h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z" -}), 'SensorWindowRounded'); \ No newline at end of file +}), 'SensorWindowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorWindowSharp.js b/packages/material-ui-icons/lib/SensorWindowSharp.js index 4de8a8e60416d8..f220e35d47dee6 100644 --- a/packages/material-ui-icons/lib/SensorWindowSharp.js +++ b/packages/material-ui-icons/lib/SensorWindowSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v16H6V4h12M4 2v20h16V2H4zm3 17h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z" -}), 'SensorWindowSharp'); \ No newline at end of file +}), 'SensorWindowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorWindowTwoTone.js b/packages/material-ui-icons/lib/SensorWindowTwoTone.js index f31193e59703e5..b5e3df68fde50f 100644 --- a/packages/material-ui-icons/lib/SensorWindowTwoTone.js +++ b/packages/material-ui-icons/lib/SensorWindowTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v7h-4v-1h-4v1H6V4h12zM6 20v-7h12v7H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v7h-4v-1h-4v1H6V4h12zM6 20v-7h12v7H6z" -}, "1")], 'SensorWindowTwoTone'); \ No newline at end of file +}, "1")], 'SensorWindowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sensors.js b/packages/material-ui-icons/lib/Sensors.js index 22426b7e22a8f0..abc65970baecf9 100644 --- a/packages/material-ui-icons/lib/Sensors.js +++ b/packages/material-ui-icons/lib/Sensors.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" -}), 'Sensors'); \ No newline at end of file +}), 'Sensors'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsOff.js b/packages/material-ui-icons/lib/SensorsOff.js index c834ff23a411a0..e8cfc3c749297f 100644 --- a/packages/material-ui-icons/lib/SensorsOff.js +++ b/packages/material-ui-icons/lib/SensorsOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" -}), 'SensorsOff'); \ No newline at end of file +}), 'SensorsOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsOffOutlined.js b/packages/material-ui-icons/lib/SensorsOffOutlined.js index f1a5766f09cec9..1e88108d43bf5b 100644 --- a/packages/material-ui-icons/lib/SensorsOffOutlined.js +++ b/packages/material-ui-icons/lib/SensorsOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" -}), 'SensorsOffOutlined'); \ No newline at end of file +}), 'SensorsOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsOffRounded.js b/packages/material-ui-icons/lib/SensorsOffRounded.js index bb1c4252b15bad..995930510dba97 100644 --- a/packages/material-ui-icons/lib/SensorsOffRounded.js +++ b/packages/material-ui-icons/lib/SensorsOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.68 18.32c-.42.42-1.12.39-1.5-.08C2.82 16.53 2 14.36 2 12c0-2.04.61-3.93 1.66-5.51L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.39.39.39 1.02 0 1.41s-1.02.39-1.41 0L8.14 10.96c-.09.33-.14.68-.14 1.04 0 .8.24 1.55.64 2.17.27.41.24.94-.1 1.29-.43.43-1.17.4-1.51-.11C6.38 14.4 6 13.24 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 1.89.66 3.63 1.76 5 .32.39.28.96-.08 1.32zm9.78-9.78c-.35.35-.37.88-.11 1.29.41.62.65 1.37.65 2.17 0 .36-.05.71-.14 1.04l1.55 1.55c.38-.79.59-1.66.59-2.59 0-1.24-.38-2.4-1.03-3.36-.34-.5-1.07-.54-1.51-.1zm2.86-2.86c-.36.36-.4.92-.08 1.32 1.1 1.37 1.76 3.11 1.76 5 0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.36-.82-4.53-2.18-6.24-.38-.47-1.08-.5-1.5-.08z" -}), 'SensorsOffRounded'); \ No newline at end of file +}), 'SensorsOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsOffSharp.js b/packages/material-ui-icons/lib/SensorsOffSharp.js index 46562560ac5f2c..62684ece5b13c8 100644 --- a/packages/material-ui-icons/lib/SensorsOffSharp.js +++ b/packages/material-ui-icons/lib/SensorsOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" -}), 'SensorsOffSharp'); \ No newline at end of file +}), 'SensorsOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsOffTwoTone.js b/packages/material-ui-icons/lib/SensorsOffTwoTone.js index 90393f23fc1c6f..b3ae4a41bcd58d 100644 --- a/packages/material-ui-icons/lib/SensorsOffTwoTone.js +++ b/packages/material-ui-icons/lib/SensorsOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" -}), 'SensorsOffTwoTone'); \ No newline at end of file +}), 'SensorsOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsOutlined.js b/packages/material-ui-icons/lib/SensorsOutlined.js index 808d115e80fa6e..e82d27ecabe034 100644 --- a/packages/material-ui-icons/lib/SensorsOutlined.js +++ b/packages/material-ui-icons/lib/SensorsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" -}), 'SensorsOutlined'); \ No newline at end of file +}), 'SensorsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsRounded.js b/packages/material-ui-icons/lib/SensorsRounded.js index b65d2a3b6a73be..011558a6335b7e 100644 --- a/packages/material-ui-icons/lib/SensorsRounded.js +++ b/packages/material-ui-icons/lib/SensorsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.54 8.54c.35.35.37.88.1 1.29C8.24 10.45 8 11.2 8 12c0 .8.24 1.55.64 2.17.27.41.24.95-.11 1.29-.43.43-1.17.4-1.51-.11C6.38 14.4 6 13.24 6 12c0-1.21.36-2.33.97-3.28.36-.54 1.11-.64 1.57-.18zm6.92 6.92c.43.43 1.17.4 1.51-.11C17.62 14.4 18 13.24 18 12c0-1.24-.38-2.4-1.03-3.36-.34-.5-1.08-.54-1.51-.11-.35.35-.37.88-.11 1.29.41.63.65 1.38.65 2.18 0 .8-.24 1.55-.64 2.17-.27.41-.24.95.1 1.29zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6.32 8.32c.42.42 1.12.39 1.5-.08C21.18 16.53 22 14.36 22 12s-.82-4.53-2.18-6.24c-.37-.47-1.07-.5-1.5-.08-.36.36-.4.92-.08 1.32 1.1 1.37 1.76 3.11 1.76 5s-.66 3.63-1.76 5c-.32.39-.28.96.08 1.32zM5.68 5.68c-.42-.42-1.12-.39-1.5.08C2.82 7.47 2 9.64 2 12s.82 4.53 2.18 6.24c.37.47 1.07.5 1.5.08.36-.36.4-.92.08-1.32C4.66 15.63 4 13.89 4 12s.66-3.63 1.76-5c.32-.39.28-.96-.08-1.32z" -}), 'SensorsRounded'); \ No newline at end of file +}), 'SensorsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsSharp.js b/packages/material-ui-icons/lib/SensorsSharp.js index c9870bf70e9599..a26327a2474570 100644 --- a/packages/material-ui-icons/lib/SensorsSharp.js +++ b/packages/material-ui-icons/lib/SensorsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" -}), 'SensorsSharp'); \ No newline at end of file +}), 'SensorsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SensorsTwoTone.js b/packages/material-ui-icons/lib/SensorsTwoTone.js index 3f34de57997e39..3fad0c1dc5b4de 100644 --- a/packages/material-ui-icons/lib/SensorsTwoTone.js +++ b/packages/material-ui-icons/lib/SensorsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" -}), 'SensorsTwoTone'); \ No newline at end of file +}), 'SensorsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentDissatisfied.js b/packages/material-ui-icons/lib/SentimentDissatisfied.js index cdf18652d06190..796b4358e1514d 100644 --- a/packages/material-ui-icons/lib/SentimentDissatisfied.js +++ b/packages/material-ui-icons/lib/SentimentDissatisfied.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-3.5c.73 0 1.39.19 1.97.53.12-.14.86-.98 1.01-1.14-.85-.56-1.87-.89-2.98-.89-1.11 0-2.13.33-2.99.88.97 1.09.01.02 1.01 1.14.59-.33 1.25-.52 1.98-.52z" -}, "2")], 'SentimentDissatisfied'); \ No newline at end of file +}, "2")], 'SentimentDissatisfied'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentDissatisfiedOutlined.js b/packages/material-ui-icons/lib/SentimentDissatisfiedOutlined.js index 214969c2acf0b0..7a706a8a1654ca 100644 --- a/packages/material-ui-icons/lib/SentimentDissatisfiedOutlined.js +++ b/packages/material-ui-icons/lib/SentimentDissatisfiedOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "2")], 'SentimentDissatisfiedOutlined'); \ No newline at end of file +}, "2")], 'SentimentDissatisfiedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentDissatisfiedRounded.js b/packages/material-ui-icons/lib/SentimentDissatisfiedRounded.js index 2f9fcda6508299..1506d4692fee2b 100644 --- a/packages/material-ui-icons/lib/SentimentDissatisfiedRounded.js +++ b/packages/material-ui-icons/lib/SentimentDissatisfiedRounded.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-1.9 0-3.63.97-4.65 2.58-.22.35-.11.81.24 1.03.35.22.81.11 1.03-.24.74-1.18 2-1.88 3.38-1.88s2.64.7 3.38 1.88c.14.23.39.35.64.35.14 0 .27-.04.4-.11.35-.22.46-.68.24-1.03C15.63 14.96 13.9 14 12 14z" -}, "2")], 'SentimentDissatisfiedRounded'); \ No newline at end of file +}, "2")], 'SentimentDissatisfiedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentDissatisfiedSharp.js b/packages/material-ui-icons/lib/SentimentDissatisfiedSharp.js index d2a5bf9447bb91..18dfe023208762 100644 --- a/packages/material-ui-icons/lib/SentimentDissatisfiedSharp.js +++ b/packages/material-ui-icons/lib/SentimentDissatisfiedSharp.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "2")], 'SentimentDissatisfiedSharp'); \ No newline at end of file +}, "2")], 'SentimentDissatisfiedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentDissatisfiedTwoTone.js b/packages/material-ui-icons/lib/SentimentDissatisfiedTwoTone.js index bb0061c0f93209..02c7fa767c7778 100644 --- a/packages/material-ui-icons/lib/SentimentDissatisfiedTwoTone.js +++ b/packages/material-ui-icons/lib/SentimentDissatisfiedTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm6.95 9.5c-.7-1.19-1.97-2-3.45-2s-2.76.81-3.45 2H6.88C7.68 15.45 9.67 14 12 14s4.32 1.45 5.12 3.5h-1.67z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z" -}, "3")], 'SentimentDissatisfiedTwoTone'); \ No newline at end of file +}, "3")], 'SentimentDissatisfiedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentNeutral.js b/packages/material-ui-icons/lib/SentimentNeutral.js index f817a90a054e6e..b815372828ac65 100644 --- a/packages/material-ui-icons/lib/SentimentNeutral.js +++ b/packages/material-ui-icons/lib/SentimentNeutral.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15.5h6v1H9v-1z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "3")], 'SentimentNeutral'); \ No newline at end of file +}, "3")], 'SentimentNeutral'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentNeutralOutlined.js b/packages/material-ui-icons/lib/SentimentNeutralOutlined.js index e459f2d29df192..94d5697f1da279 100644 --- a/packages/material-ui-icons/lib/SentimentNeutralOutlined.js +++ b/packages/material-ui-icons/lib/SentimentNeutralOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 14h6v1.5H9z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "3")], 'SentimentNeutralOutlined'); \ No newline at end of file +}, "3")], 'SentimentNeutralOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentNeutralRounded.js b/packages/material-ui-icons/lib/SentimentNeutralRounded.js index 590f1332512300..2c24ff28a1bf04 100644 --- a/packages/material-ui-icons/lib/SentimentNeutralRounded.js +++ b/packages/material-ui-icons/lib/SentimentNeutralRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.75 15.5h4.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-4.5c-.41 0-.75.34-.75.75s.34.75.75.75z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "3")], 'SentimentNeutralRounded'); \ No newline at end of file +}, "3")], 'SentimentNeutralRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentNeutralSharp.js b/packages/material-ui-icons/lib/SentimentNeutralSharp.js index e6756bedae7c07..363082175427b0 100644 --- a/packages/material-ui-icons/lib/SentimentNeutralSharp.js +++ b/packages/material-ui-icons/lib/SentimentNeutralSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'SentimentNeutralSharp'); \ No newline at end of file +}), 'SentimentNeutralSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentNeutralTwoTone.js b/packages/material-ui-icons/lib/SentimentNeutralTwoTone.js index c5e1c3f3a6d14b..3f08a40e36de2e 100644 --- a/packages/material-ui-icons/lib/SentimentNeutralTwoTone.js +++ b/packages/material-ui-icons/lib/SentimentNeutralTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 14h6v1.5H9z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "4")], 'SentimentNeutralTwoTone'); \ No newline at end of file +}, "4")], 'SentimentNeutralTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfied.js b/packages/material-ui-icons/lib/SentimentSatisfied.js index b21a13ea66d579..07a48184df98f5 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfied.js +++ b/packages/material-ui-icons/lib/SentimentSatisfied.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-.73 0-1.38-.18-1.96-.52-.12.14-.86.98-1.01 1.15.86.55 1.87.87 2.97.87 1.11 0 2.12-.33 2.98-.88-.97-1.09-.01-.02-1.01-1.15-.59.35-1.24.53-1.97.53z" -}, "2")], 'SentimentSatisfied'); \ No newline at end of file +}, "2")], 'SentimentSatisfied'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedAlt.js b/packages/material-ui-icons/lib/SentimentSatisfiedAlt.js index 16301e17d6c643..96b3af450fb7d3 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedAlt.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedAlt.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2s-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5z" -}, "4")], 'SentimentSatisfiedAlt'); \ No newline at end of file +}, "4")], 'SentimentSatisfiedAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedAltOutlined.js b/packages/material-ui-icons/lib/SentimentSatisfiedAltOutlined.js index d9d9517302dc8f..8d2804116155a6 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedAltOutlined.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedAltOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "2")], 'SentimentSatisfiedAltOutlined'); \ No newline at end of file +}, "2")], 'SentimentSatisfiedAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedAltRounded.js b/packages/material-ui-icons/lib/SentimentSatisfiedAltRounded.js index 20c97330433087..0b39d4b0ecd9a0 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedAltRounded.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedAltRounded.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.41-6.11c-.35-.22-.82-.11-1.03.24-.74 1.17-2 1.87-3.38 1.87s-2.64-.7-3.38-1.88c-.22-.35-.68-.46-1.03-.24-.35.22-.46.68-.24 1.03C8.37 16.54 10.1 17.5 12 17.5s3.63-.97 4.65-2.58c.22-.35.11-.81-.24-1.03z" -}, "2")], 'SentimentSatisfiedAltRounded'); \ No newline at end of file +}, "2")], 'SentimentSatisfiedAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedAltSharp.js b/packages/material-ui-icons/lib/SentimentSatisfiedAltSharp.js index 965b729a3ade00..66a222a9314811 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedAltSharp.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedAltSharp.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2z" -}, "2")], 'SentimentSatisfiedAltSharp'); \ No newline at end of file +}, "2")], 'SentimentSatisfiedAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedAltTwoTone.js b/packages/material-ui-icons/lib/SentimentSatisfiedAltTwoTone.js index a2bed01cd6b164..afe484a2246424 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedAltTwoTone.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedAltTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.76-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "3")], 'SentimentSatisfiedAltTwoTone'); \ No newline at end of file +}, "3")], 'SentimentSatisfiedAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedOutlined.js b/packages/material-ui-icons/lib/SentimentSatisfiedOutlined.js index cf8e6abd3d0448..7d58f959ea0629 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedOutlined.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "2")], 'SentimentSatisfiedOutlined'); \ No newline at end of file +}, "2")], 'SentimentSatisfiedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedRounded.js b/packages/material-ui-icons/lib/SentimentSatisfiedRounded.js index 1dd4568650a4e9..9391b48e459e61 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedRounded.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedRounded.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.41-6.11c-.35-.22-.82-.11-1.03.24-.74 1.17-2 1.87-3.38 1.87s-2.64-.7-3.38-1.88c-.22-.35-.68-.46-1.03-.24-.35.22-.46.68-.24 1.03C8.37 16.54 10.1 17.5 12 17.5s3.63-.97 4.65-2.58c.22-.35.11-.81-.24-1.03z" -}, "2")], 'SentimentSatisfiedRounded'); \ No newline at end of file +}, "2")], 'SentimentSatisfiedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedSharp.js b/packages/material-ui-icons/lib/SentimentSatisfiedSharp.js index 5ed71475a259cb..145d0b80457b0e 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedSharp.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedSharp.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2z" -}, "2")], 'SentimentSatisfiedSharp'); \ No newline at end of file +}, "2")], 'SentimentSatisfiedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentSatisfiedTwoTone.js b/packages/material-ui-icons/lib/SentimentSatisfiedTwoTone.js index b878cd280d6579..ff9e6ca4f2894e 100644 --- a/packages/material-ui-icons/lib/SentimentSatisfiedTwoTone.js +++ b/packages/material-ui-icons/lib/SentimentSatisfiedTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.75-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "3")], 'SentimentSatisfiedTwoTone'); \ No newline at end of file +}, "3")], 'SentimentSatisfiedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVeryDissatisfied.js b/packages/material-ui-icons/lib/SentimentVeryDissatisfied.js index c18cb74e5737e2..a2a293bb402b18 100644 --- a/packages/material-ui-icons/lib/SentimentVeryDissatisfied.js +++ b/packages/material-ui-icons/lib/SentimentVeryDissatisfied.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z" -}, "2")], 'SentimentVeryDissatisfied'); \ No newline at end of file +}, "2")], 'SentimentVeryDissatisfied'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedOutlined.js b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedOutlined.js index 4486f9f5a38a6b..68fd757a672aee 100644 --- a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedOutlined.js +++ b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" -}), 'SentimentVeryDissatisfiedOutlined'); \ No newline at end of file +}), 'SentimentVeryDissatisfiedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedRounded.js b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedRounded.js index 771162e8e2e8b5..ec3e0c411975b4 100644 --- a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedRounded.js +++ b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13.5c-2.03 0-3.8 1.11-4.75 2.75-.19.33.06.75.44.75h8.62c.38 0 .63-.42.44-.75-.95-1.64-2.72-2.75-4.75-2.75zm-3.65-2.03.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-.53.53-.53-.53c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l.53.53-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.65-11.71-.53.53-.53-.53c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l.53.53-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0z" -}), 'SentimentVeryDissatisfiedRounded'); \ No newline at end of file +}), 'SentimentVeryDissatisfiedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedSharp.js b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedSharp.js index 9d1fb8d5d4cfa1..7cf9c8ae29c700 100644 --- a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedSharp.js +++ b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" -}), 'SentimentVeryDissatisfiedSharp'); \ No newline at end of file +}), 'SentimentVeryDissatisfiedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedTwoTone.js b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedTwoTone.js index e677949a27aab0..1f6e5164ab02c6 100644 --- a/packages/material-ui-icons/lib/SentimentVeryDissatisfiedTwoTone.js +++ b/packages/material-ui-icons/lib/SentimentVeryDissatisfiedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM6.76 8.82l1.06-1.06 1.06 1.06 1.06-1.06L11 8.82 9.94 9.88 11 10.94 9.94 12l-1.06-1.06L7.82 12l-1.06-1.06 1.06-1.06-1.06-1.06zM6.89 17c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89zm10.35-6.06L16.18 12l-1.06-1.06L14.06 12 13 10.94l1.06-1.06L13 8.82l1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06-1.06 1.06 1.06 1.06z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" -}, "1")], 'SentimentVeryDissatisfiedTwoTone'); \ No newline at end of file +}, "1")], 'SentimentVeryDissatisfiedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVerySatisfied.js b/packages/material-ui-icons/lib/SentimentVerySatisfied.js index 09293b18f8115f..2ec5ab061df58c 100644 --- a/packages/material-ui-icons/lib/SentimentVerySatisfied.js +++ b/packages/material-ui-icons/lib/SentimentVerySatisfied.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-5-6c.78 2.34 2.72 4 5 4s4.22-1.66 5-4H7z" -}, "2")], 'SentimentVerySatisfied'); \ No newline at end of file +}, "2")], 'SentimentVerySatisfied'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVerySatisfiedOutlined.js b/packages/material-ui-icons/lib/SentimentVerySatisfiedOutlined.js index 7caf9facb28fbd..3adaf7c37e0aaf 100644 --- a/packages/material-ui-icons/lib/SentimentVerySatisfiedOutlined.js +++ b/packages/material-ui-icons/lib/SentimentVerySatisfiedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12L13 9.94zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11l1.06-1.06zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'SentimentVerySatisfiedOutlined'); \ No newline at end of file +}), 'SentimentVerySatisfiedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVerySatisfiedRounded.js b/packages/material-ui-icons/lib/SentimentVerySatisfiedRounded.js index b54509e4f4f30e..2d98b90dfbcf66 100644 --- a/packages/material-ui-icons/lib/SentimentVerySatisfiedRounded.js +++ b/packages/material-ui-icons/lib/SentimentVerySatisfiedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.88 9.94.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.88-.88a.9959.9959 0 0 0-1.41 0l-.89.88c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.53-.53zM12 17.5c2.03 0 3.8-1.11 4.75-2.75.19-.33-.05-.75-.44-.75H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75zm1.53-7.03c.29.29.77.29 1.06 0l.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.88-.88a.9959.9959 0 0 0-1.41 0l-.88.88c-.3.29-.3.77-.01 1.06zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'SentimentVerySatisfiedRounded'); \ No newline at end of file +}), 'SentimentVerySatisfiedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVerySatisfiedSharp.js b/packages/material-ui-icons/lib/SentimentVerySatisfiedSharp.js index 973107ff6e117a..6e58c000841b1c 100644 --- a/packages/material-ui-icons/lib/SentimentVerySatisfiedSharp.js +++ b/packages/material-ui-icons/lib/SentimentVerySatisfiedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.88 9.94 9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm1-7.56L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'SentimentVerySatisfiedSharp'); \ No newline at end of file +}), 'SentimentVerySatisfiedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SentimentVerySatisfiedTwoTone.js b/packages/material-ui-icons/lib/SentimentVerySatisfiedTwoTone.js index b0f67823ca043f..60ffeac9410222 100644 --- a/packages/material-ui-icons/lib/SentimentVerySatisfiedTwoTone.js +++ b/packages/material-ui-icons/lib/SentimentVerySatisfiedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM8.88 7.82 11 9.94 9.94 11 8.88 9.94 7.82 11 6.76 9.94l2.12-2.12zM12 17.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zm4.18-6.5-1.06-1.06L14.06 11 13 9.94l2.12-2.12 2.12 2.12L16.18 11z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.88 9.94 9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zm4.12 0L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}, "1")], 'SentimentVerySatisfiedTwoTone'); \ No newline at end of file +}, "1")], 'SentimentVerySatisfiedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SetMeal.js b/packages/material-ui-icons/lib/SetMeal.js index ba40395ce38504..221856f77b3faa 100644 --- a/packages/material-ui-icons/lib/SetMeal.js +++ b/packages/material-ui-icons/lib/SetMeal.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM22 5v7c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-2 1c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" -}), 'SetMeal'); \ No newline at end of file +}), 'SetMeal'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SetMealOutlined.js b/packages/material-ui-icons/lib/SetMealOutlined.js index 2193426e0a1dc6..7f025018c11889 100644 --- a/packages/material-ui-icons/lib/SetMealOutlined.js +++ b/packages/material-ui-icons/lib/SetMealOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM23 13V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 0H3V4h18v9zm-1-7c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" -}), 'SetMealOutlined'); \ No newline at end of file +}), 'SetMealOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SetMealRounded.js b/packages/material-ui-icons/lib/SetMealRounded.js index 33b5c03f9fa827..808554a389e275 100644 --- a/packages/material-ui-icons/lib/SetMealRounded.js +++ b/packages/material-ui-icons/lib/SetMealRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.3 17.6-16.47.86c-.41.02-.77-.3-.79-.71-.02-.41.3-.77.71-.79l16.48-.86c.41-.02.77.3.79.71.02.41-.3.77-.72.79zm-.05 1.88H3.75c-.41 0-.75.34-.75.75s.34.75.75.75h16.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zM22 5v7c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-2.88 1.09c-1.25.27-2.19 1.11-2.33 2.14-.64-.73-2.73-2.73-6.54-2.73-3.44 0-5.48 1.63-6.31 2.49-.28.29-.28.74 0 1.03.83.86 2.87 2.49 6.31 2.49 3.81 0 5.9-2 6.54-2.73.14 1.02 1.08 1.86 2.33 2.14.46.1.88-.28.88-.74V6.84c0-.47-.43-.85-.88-.75z" -}), 'SetMealRounded'); \ No newline at end of file +}), 'SetMealRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SetMealSharp.js b/packages/material-ui-icons/lib/SetMealSharp.js index 6e9c6f318f38a4..3cc942e6d76174 100644 --- a/packages/material-ui-icons/lib/SetMealSharp.js +++ b/packages/material-ui-icons/lib/SetMealSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM22 3v11H2V3h20zm-2 3c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" -}), 'SetMealSharp'); \ No newline at end of file +}), 'SetMealSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SetMealTwoTone.js b/packages/material-ui-icons/lib/SetMealTwoTone.js index bf748fa684fc14..41a5a84a3ee7f4 100644 --- a/packages/material-ui-icons/lib/SetMealTwoTone.js +++ b/packages/material-ui-icons/lib/SetMealTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 13H3V4h18v9zm-1-7c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM23 13V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 0H3V4h18v9zm-1-7c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" -}, "1")], 'SetMealTwoTone'); \ No newline at end of file +}, "1")], 'SetMealTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Settings.js b/packages/material-ui-icons/lib/Settings.js index c29b78e438c7c2..57936a0215c5b0 100644 --- a/packages/material-ui-icons/lib/Settings.js +++ b/packages/material-ui-icons/lib/Settings.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94s.02.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z" -}), 'Settings'); \ No newline at end of file +}), 'Settings'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsAccessibility.js b/packages/material-ui-icons/lib/SettingsAccessibility.js index 76e688a8fca1a2..9774b22a8840c8 100644 --- a/packages/material-ui-icons/lib/SettingsAccessibility.js +++ b/packages/material-ui-icons/lib/SettingsAccessibility.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'SettingsAccessibility'); \ No newline at end of file +}), 'SettingsAccessibility'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsAccessibilityOutlined.js b/packages/material-ui-icons/lib/SettingsAccessibilityOutlined.js index 6d8f8d84b1f9d0..a216fbe23f531f 100644 --- a/packages/material-ui-icons/lib/SettingsAccessibilityOutlined.js +++ b/packages/material-ui-icons/lib/SettingsAccessibilityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'SettingsAccessibilityOutlined'); \ No newline at end of file +}), 'SettingsAccessibilityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsAccessibilityRounded.js b/packages/material-ui-icons/lib/SettingsAccessibilityRounded.js index 623056bd02eeca..2ab2dd2787a8e1 100644 --- a/packages/material-ui-icons/lib/SettingsAccessibilityRounded.js +++ b/packages/material-ui-icons/lib/SettingsAccessibilityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.74 4.96c-.13-.53-.67-.85-1.2-.73-2.38.54-5.05.77-7.54.77s-5.16-.23-7.54-.76c-.54-.12-1.07.19-1.2.73l-.02.05c-.13.54.19 1.1.73 1.22 1.62.37 3.37.62 5.03.76v11c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V7c1.66-.14 3.41-.39 5.03-.76.54-.12.86-.68.73-1.22l-.02-.06zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'SettingsAccessibilityRounded'); \ No newline at end of file +}), 'SettingsAccessibilityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsAccessibilitySharp.js b/packages/material-ui-icons/lib/SettingsAccessibilitySharp.js index b2bf0266a99389..546f5da48a8373 100644 --- a/packages/material-ui-icons/lib/SettingsAccessibilitySharp.js +++ b/packages/material-ui-icons/lib/SettingsAccessibilitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'SettingsAccessibilitySharp'); \ No newline at end of file +}), 'SettingsAccessibilitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsAccessibilityTwoTone.js b/packages/material-ui-icons/lib/SettingsAccessibilityTwoTone.js index 655c73c72eb5fd..15a04f5d5ccbfa 100644 --- a/packages/material-ui-icons/lib/SettingsAccessibilityTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsAccessibilityTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'SettingsAccessibilityTwoTone'); \ No newline at end of file +}), 'SettingsAccessibilityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsApplications.js b/packages/material-ui-icons/lib/SettingsApplications.js index 133b7ea47d5c9b..ce78714ee2dd7d 100644 --- a/packages/material-ui-icons/lib/SettingsApplications.js +++ b/packages/material-ui-icons/lib/SettingsApplications.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .23-.02.46-.05.68l1.48 1.16c.13.11.17.3.08.45l-1.4 2.42c-.09.15-.27.21-.43.15l-1.74-.7c-.36.28-.76.51-1.18.69l-.26 1.85c-.03.17-.18.3-.35.3h-2.8c-.17 0-.32-.13-.35-.29l-.26-1.85c-.43-.18-.82-.41-1.18-.69l-1.74.7c-.16.06-.34 0-.43-.15l-1.4-2.42c-.09-.15-.05-.34.08-.45l1.48-1.16c-.03-.23-.05-.46-.05-.69 0-.23.02-.46.05-.68l-1.48-1.16c-.13-.11-.17-.3-.08-.45l1.4-2.42c.09-.15.27-.21.43-.15l1.74.7c.36-.28.76-.51 1.18-.69l.26-1.85c.03-.17.18-.3.35-.3h2.8c.17 0 .32.13.35.29l.26 1.85c.43.18.82.41 1.18.69l1.74-.7c.16-.06.34 0 .43.15l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.16c.03.23.05.46.05.69z" -}), 'SettingsApplications'); \ No newline at end of file +}), 'SettingsApplications'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsApplicationsOutlined.js b/packages/material-ui-icons/lib/SettingsApplicationsOutlined.js index f20d47b7863846..01bdeb4b2cb927 100644 --- a/packages/material-ui-icons/lib/SettingsApplicationsOutlined.js +++ b/packages/material-ui-icons/lib/SettingsApplicationsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.21 13.97 1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z" -}), 'SettingsApplicationsOutlined'); \ No newline at end of file +}), 'SettingsApplicationsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsApplicationsRounded.js b/packages/material-ui-icons/lib/SettingsApplicationsRounded.js index 2792e55768677e..ee099e6f47bbd4 100644 --- a/packages/material-ui-icons/lib/SettingsApplicationsRounded.js +++ b/packages/material-ui-icons/lib/SettingsApplicationsRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-3.25 9c0 .22-.03.42-.06.63l.84.73c.18.16.22.42.1.63l-.59 1.02c-.12.21-.37.3-.59.22l-1.06-.36c-.32.27-.68.48-1.08.63l-.22 1.09c-.05.23-.25.4-.49.4h-1.18c-.24 0-.44-.17-.49-.4l-.22-1.09c-.4-.15-.76-.36-1.08-.63l-1.06.36c-.23.08-.47-.02-.59-.22l-.59-1.02c-.12-.21-.08-.47.1-.63l.84-.73c-.05-.21-.08-.41-.08-.63s.03-.42.06-.63l-.84-.73c-.18-.16-.22-.42-.1-.63l.59-1.02c.12-.21.37-.3.59-.22l1.06.36c.32-.27.68-.48 1.08-.63l.22-1.09c.06-.24.26-.41.5-.41h1.18c.24 0 .44.17.49.4l.22 1.09c.4.15.76.36 1.08.63l1.06-.36c.23-.08.47.02.59.22l.59 1.02c.12.21.08.47-.1.63l-.84.73c.04.22.07.42.07.64z" -}, "1")], 'SettingsApplicationsRounded'); \ No newline at end of file +}, "1")], 'SettingsApplicationsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsApplicationsSharp.js b/packages/material-ui-icons/lib/SettingsApplicationsSharp.js index b47f659a56d8aa..b94675befc7989 100644 --- a/packages/material-ui-icons/lib/SettingsApplicationsSharp.js +++ b/packages/material-ui-icons/lib/SettingsApplicationsSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .24-.02.47-.05.71l.01-.02 1.47 1.16c.14.1.23.18.23.18l-1.7 2.94-2.02-.8.02-.03c-.37.29-.77.53-1.21.71h.01l-.27 1.85c-.02.17-.04.3-.04.3h-3.4l-.31-2.15H10c-.44-.18-.84-.42-1.21-.71l.02.03-2.02.8-1.7-2.94s.1-.08.23-.18l1.47-1.16.01.02c-.03-.24-.05-.47-.05-.71s.02-.47.05-.69l-.01.01-1.7-1.34 1.7-2.95 2.01.81v.01c.37-.28.77-.52 1.2-.7h-.01L10.3 5h3.41l.3 2.15H14c.43.18.83.42 1.2.7v-.01l2.01-.81 1.7 2.95-1.71 1.34-.01-.01c.04.22.06.45.06.69z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2.45" -}, "1")], 'SettingsApplicationsSharp'); \ No newline at end of file +}, "1")], 'SettingsApplicationsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsApplicationsTwoTone.js b/packages/material-ui-icons/lib/SettingsApplicationsTwoTone.js index 2678810ec3ba26..2f988640417788 100644 --- a/packages/material-ui-icons/lib/SettingsApplicationsTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsApplicationsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm2.5-7c0-.2.02-.39.04-.58l-1.27-.99c-.11-.09-.15-.26-.07-.39l1.2-2.07c.08-.13.23-.18.37-.13l1.49.6c.31-.25.66-.44 1.02-.6l.22-1.59c.03-.14.15-.25.3-.25h2.4c.15 0 .27.11.3.25l.22 1.59c.37.15.7.35 1.01.59l1.49-.6c.14-.05.29 0 .37.13l1.2 2.07c.08.13.04.29-.07.39l-1.27.99c.03.2.04.39.04.59 0 .2-.02.39-.04.58l1.27.99c.11.09.15.26.07.39l-1.2 2.07c-.08.13-.23.18-.37.13l-1.49-.6c-.31.24-.65.44-1.01.59l-.22 1.59c-.03.15-.15.26-.3.26h-2.4c-.15 0-.27-.11-.3-.25l-.22-1.59c-.37-.15-.7-.35-1.01-.59l-1.49.6c-.14.05-.29 0-.37-.13l-1.2-2.07c-.08-.13-.04-.29.07-.39l1.27-.99c-.03-.2-.05-.39-.05-.59z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.21 13.97 1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z" -}, "1")], 'SettingsApplicationsTwoTone'); \ No newline at end of file +}, "1")], 'SettingsApplicationsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBackupRestore.js b/packages/material-ui-icons/lib/SettingsBackupRestore.js index 50e0ecb85517e3..4685e8e82abd3e 100644 --- a/packages/material-ui-icons/lib/SettingsBackupRestore.js +++ b/packages/material-ui-icons/lib/SettingsBackupRestore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" -}), 'SettingsBackupRestore'); \ No newline at end of file +}), 'SettingsBackupRestore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBackupRestoreOutlined.js b/packages/material-ui-icons/lib/SettingsBackupRestoreOutlined.js index 8f3e99bd95933c..35708fe481cf9d 100644 --- a/packages/material-ui-icons/lib/SettingsBackupRestoreOutlined.js +++ b/packages/material-ui-icons/lib/SettingsBackupRestoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" -}), 'SettingsBackupRestoreOutlined'); \ No newline at end of file +}), 'SettingsBackupRestoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBackupRestoreRounded.js b/packages/material-ui-icons/lib/SettingsBackupRestoreRounded.js index b6f90b9ce703e3..d5bf09590842e8 100644 --- a/packages/material-ui-icons/lib/SettingsBackupRestoreRounded.js +++ b/packages/material-ui-icons/lib/SettingsBackupRestoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.77 3c-2.65.07-5 1.28-6.6 3.16L3.85 4.85c-.31-.31-.85-.09-.85.36V9.5c0 .28.22.5.5.5h4.29c.45 0 .67-.54.35-.85L6.59 7.59C7.88 6.02 9.82 5 12 5c4.32 0 7.74 3.94 6.86 8.41-.54 2.77-2.81 4.98-5.58 5.47-3.8.68-7.18-1.74-8.05-5.16-.12-.42-.52-.72-.96-.72-.65 0-1.14.61-.98 1.23C4.28 18.12 7.8 21 12 21c5.06 0 9.14-4.17 9-9.26-.14-4.88-4.35-8.86-9.23-8.74zM14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z" -}), 'SettingsBackupRestoreRounded'); \ No newline at end of file +}), 'SettingsBackupRestoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBackupRestoreSharp.js b/packages/material-ui-icons/lib/SettingsBackupRestoreSharp.js index 6995dddcb3a7bf..0a688a3cd7b226 100644 --- a/packages/material-ui-icons/lib/SettingsBackupRestoreSharp.js +++ b/packages/material-ui-icons/lib/SettingsBackupRestoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" -}), 'SettingsBackupRestoreSharp'); \ No newline at end of file +}), 'SettingsBackupRestoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBackupRestoreTwoTone.js b/packages/material-ui-icons/lib/SettingsBackupRestoreTwoTone.js index c97a0bb964c583..30dab5d93e867f 100644 --- a/packages/material-ui-icons/lib/SettingsBackupRestoreTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsBackupRestoreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" -}), 'SettingsBackupRestoreTwoTone'); \ No newline at end of file +}), 'SettingsBackupRestoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBluetooth.js b/packages/material-ui-icons/lib/SettingsBluetooth.js index cf37ed5cf85ee6..f56d60c9d697ff 100644 --- a/packages/material-ui-icons/lib/SettingsBluetooth.js +++ b/packages/material-ui-icons/lib/SettingsBluetooth.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" -}), 'SettingsBluetooth'); \ No newline at end of file +}), 'SettingsBluetooth'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBluetoothOutlined.js b/packages/material-ui-icons/lib/SettingsBluetoothOutlined.js index 3d5a12411c0513..822256dc6fc0f6 100644 --- a/packages/material-ui-icons/lib/SettingsBluetoothOutlined.js +++ b/packages/material-ui-icons/lib/SettingsBluetoothOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" -}), 'SettingsBluetoothOutlined'); \ No newline at end of file +}), 'SettingsBluetoothOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBluetoothRounded.js b/packages/material-ui-icons/lib/SettingsBluetoothRounded.js index 40e04eeb0ed700..75fe82c278ae80 100644 --- a/packages/material-ui-icons/lib/SettingsBluetoothRounded.js +++ b/packages/material-ui-icons/lib/SettingsBluetoothRounded.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "23", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "23", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "23", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.41 10 17 6.42c.39-.39.39-1.02 0-1.42L12.21.21c-.14-.14-.32-.21-.5-.21-.39 0-.71.32-.71.71v6.88L7.11 3.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 10 5.7 14.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 12.41v6.88c0 .39.32.71.71.71.19 0 .37-.07.5-.21L17 15c.39-.39.39-1.02 0-1.42L13.41 10zM13 3.83l1.88 1.88L13 7.59V3.83zm0 12.34v-3.76l1.88 1.88L13 16.17z" -}, "3")], 'SettingsBluetoothRounded'); \ No newline at end of file +}, "3")], 'SettingsBluetoothRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBluetoothSharp.js b/packages/material-ui-icons/lib/SettingsBluetoothSharp.js index 13e905df838b13..921a79214ac864 100644 --- a/packages/material-ui-icons/lib/SettingsBluetoothSharp.js +++ b/packages/material-ui-icons/lib/SettingsBluetoothSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" -}), 'SettingsBluetoothSharp'); \ No newline at end of file +}), 'SettingsBluetoothSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBluetoothTwoTone.js b/packages/material-ui-icons/lib/SettingsBluetoothTwoTone.js index 424a43849320b1..0e7dad0391f14a 100644 --- a/packages/material-ui-icons/lib/SettingsBluetoothTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsBluetoothTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" -}), 'SettingsBluetoothTwoTone'); \ No newline at end of file +}), 'SettingsBluetoothTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBrightness.js b/packages/material-ui-icons/lib/SettingsBrightness.js index 98f14f184c3e0b..c2df50334326d5 100644 --- a/packages/material-ui-icons/lib/SettingsBrightness.js +++ b/packages/material-ui-icons/lib/SettingsBrightness.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" -}), 'SettingsBrightness'); \ No newline at end of file +}), 'SettingsBrightness'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBrightnessOutlined.js b/packages/material-ui-icons/lib/SettingsBrightnessOutlined.js index 83c70ee4eb5563..559c3c0840e83d 100644 --- a/packages/material-ui-icons/lib/SettingsBrightnessOutlined.js +++ b/packages/material-ui-icons/lib/SettingsBrightnessOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" -}), 'SettingsBrightnessOutlined'); \ No newline at end of file +}), 'SettingsBrightnessOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBrightnessRounded.js b/packages/material-ui-icons/lib/SettingsBrightnessRounded.js index 459a2ba43f7140..c29333acf9a615 100644 --- a/packages/material-ui-icons/lib/SettingsBrightnessRounded.js +++ b/packages/material-ui-icons/lib/SettingsBrightnessRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-2.85 8.35L16 13.5v2c0 .28-.22.5-.5.5h-2l-1.15 1.15c-.2.2-.51.2-.71 0L10.5 16h-2c-.28 0-.5-.22-.5-.5v-2l-1.15-1.15c-.2-.2-.2-.51 0-.71L8 10.5v-2c0-.28.22-.5.5-.5h2l1.15-1.15c.2-.2.51-.2.71 0L13.5 8h2c.28 0 .5.22.5.5v2l1.15 1.15c.19.19.19.51 0 .7zM12 9v6c1.66 0 3-1.34 3-3s-1.34-3-3-3z" -}), 'SettingsBrightnessRounded'); \ No newline at end of file +}), 'SettingsBrightnessRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBrightnessSharp.js b/packages/material-ui-icons/lib/SettingsBrightnessSharp.js index 9d592b716d8ca2..8590c12632c6ae 100644 --- a/packages/material-ui-icons/lib/SettingsBrightnessSharp.js +++ b/packages/material-ui-icons/lib/SettingsBrightnessSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" -}), 'SettingsBrightnessSharp'); \ No newline at end of file +}), 'SettingsBrightnessSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsBrightnessTwoTone.js b/packages/material-ui-icons/lib/SettingsBrightnessTwoTone.js index 70007a8a8aacd1..3ecfbda87a011e 100644 --- a/packages/material-ui-icons/lib/SettingsBrightnessTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsBrightnessTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19.01h18V4.99H3v14.02zm5-8.51V8h2.5L12 6.5 13.5 8H16v2.5l1.5 1.5-1.5 1.5V16h-2.5L12 17.5 10.5 16H8v-2.5L6.5 12 8 10.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9zm9-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}, "1")], 'SettingsBrightnessTwoTone'); \ No newline at end of file +}, "1")], 'SettingsBrightnessTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsCell.js b/packages/material-ui-icons/lib/SettingsCell.js index 0688c3ecf34fbe..cf463f8e6f12c2 100644 --- a/packages/material-ui-icons/lib/SettingsCell.js +++ b/packages/material-ui-icons/lib/SettingsCell.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z" -}), 'SettingsCell'); \ No newline at end of file +}), 'SettingsCell'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsCellOutlined.js b/packages/material-ui-icons/lib/SettingsCellOutlined.js index be147c634fd0d9..2adc3665b7b02e 100644 --- a/packages/material-ui-icons/lib/SettingsCellOutlined.js +++ b/packages/material-ui-icons/lib/SettingsCellOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z" -}), 'SettingsCellOutlined'); \ No newline at end of file +}), 'SettingsCellOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsCellRounded.js b/packages/material-ui-icons/lib/SettingsCellRounded.js index 84970117361506..9b621673505606 100644 --- a/packages/material-ui-icons/lib/SettingsCellRounded.js +++ b/packages/material-ui-icons/lib/SettingsCellRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z" -}), 'SettingsCellRounded'); \ No newline at end of file +}), 'SettingsCellRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsCellSharp.js b/packages/material-ui-icons/lib/SettingsCellSharp.js index 2aeff7eba31470..917232da659bcc 100644 --- a/packages/material-ui-icons/lib/SettingsCellSharp.js +++ b/packages/material-ui-icons/lib/SettingsCellSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM6 0v20h12V0H6zm10 16H8V4h8v12z" -}), 'SettingsCellSharp'); \ No newline at end of file +}), 'SettingsCellSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsCellTwoTone.js b/packages/material-ui-icons/lib/SettingsCellTwoTone.js index 5004c73df07a2c..55947f7e46165a 100644 --- a/packages/material-ui-icons/lib/SettingsCellTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsCellTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 17h8v1H8zM8 2h8v1H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z" -}, "1")], 'SettingsCellTwoTone'); \ No newline at end of file +}, "1")], 'SettingsCellTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsEthernet.js b/packages/material-ui-icons/lib/SettingsEthernet.js index 9773c01250ace3..07e74fbe0d4af6 100644 --- a/packages/material-ui-icons/lib/SettingsEthernet.js +++ b/packages/material-ui-icons/lib/SettingsEthernet.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" -}), 'SettingsEthernet'); \ No newline at end of file +}), 'SettingsEthernet'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsEthernetOutlined.js b/packages/material-ui-icons/lib/SettingsEthernetOutlined.js index 055b5ed603061f..4fe411302b8b0f 100644 --- a/packages/material-ui-icons/lib/SettingsEthernetOutlined.js +++ b/packages/material-ui-icons/lib/SettingsEthernetOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" -}), 'SettingsEthernetOutlined'); \ No newline at end of file +}), 'SettingsEthernetOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsEthernetRounded.js b/packages/material-ui-icons/lib/SettingsEthernetRounded.js index 2c2a767e94998c..118db7fcd848af 100644 --- a/packages/material-ui-icons/lib/SettingsEthernetRounded.js +++ b/packages/material-ui-icons/lib/SettingsEthernetRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.71 6.71a.9959.9959 0 0 0-1.41 0L1.71 11.3c-.39.39-.39 1.02 0 1.41L6.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.83 12l3.88-3.88c.38-.39.38-1.03 0-1.41zm8.58 0c-.39.39-.39 1.02 0 1.41L20.17 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L17.7 6.7c-.38-.38-1.02-.38-1.41.01zM8 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4-2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'SettingsEthernetRounded'); \ No newline at end of file +}), 'SettingsEthernetRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsEthernetSharp.js b/packages/material-ui-icons/lib/SettingsEthernetSharp.js index 9fbfe74450e572..1f223f2d226370 100644 --- a/packages/material-ui-icons/lib/SettingsEthernetSharp.js +++ b/packages/material-ui-icons/lib/SettingsEthernetSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" -}), 'SettingsEthernetSharp'); \ No newline at end of file +}), 'SettingsEthernetSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsEthernetTwoTone.js b/packages/material-ui-icons/lib/SettingsEthernetTwoTone.js index 095fa2e049d114..6387a7fa81ed79 100644 --- a/packages/material-ui-icons/lib/SettingsEthernetTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsEthernetTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" -}), 'SettingsEthernetTwoTone'); \ No newline at end of file +}), 'SettingsEthernetTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputAntenna.js b/packages/material-ui-icons/lib/SettingsInputAntenna.js index 9a666898da7aaf..05c1ecb063e67a 100644 --- a/packages/material-ui-icons/lib/SettingsInputAntenna.js +++ b/packages/material-ui-icons/lib/SettingsInputAntenna.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" -}), 'SettingsInputAntenna'); \ No newline at end of file +}), 'SettingsInputAntenna'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputAntennaOutlined.js b/packages/material-ui-icons/lib/SettingsInputAntennaOutlined.js index fc78b622a7892c..d367182c6ce565 100644 --- a/packages/material-ui-icons/lib/SettingsInputAntennaOutlined.js +++ b/packages/material-ui-icons/lib/SettingsInputAntennaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" -}), 'SettingsInputAntennaOutlined'); \ No newline at end of file +}), 'SettingsInputAntennaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputAntennaRounded.js b/packages/material-ui-icons/lib/SettingsInputAntennaRounded.js index e4cee026f1aacc..3f4a0d80e60ca0 100644 --- a/packages/material-ui-icons/lib/SettingsInputAntennaRounded.js +++ b/packages/material-ui-icons/lib/SettingsInputAntennaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5c-3.48 0-6.37 2.54-6.91 5.87-.1.59.39 1.13 1 1.13.49 0 .9-.36.98-.85C7.48 8.79 9.53 7 12 7s4.52 1.79 4.93 4.15c.08.49.49.85.98.85.61 0 1.09-.54.99-1.13C18.37 7.54 15.48 5 12 5zm1 9.29c1.07-.48 1.76-1.66 1.41-2.99-.22-.81-.87-1.47-1.68-1.7-1.69-.48-3.23.78-3.23 2.4 0 1.02.62 1.9 1.5 2.29v3.3l-2.71 2.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l2.3-2.3 2.3 2.3c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L13 17.59v-3.3zM12 1C6.3 1 1.61 5.34 1.05 10.9c-.05.59.41 1.1 1 1.1.51 0 .94-.38.99-.88C3.48 6.56 7.33 3 12 3s8.52 3.56 8.96 8.12c.05.5.48.88.99.88.59 0 1.06-.51 1-1.1C22.39 5.34 17.7 1 12 1z" -}), 'SettingsInputAntennaRounded'); \ No newline at end of file +}), 'SettingsInputAntennaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputAntennaSharp.js b/packages/material-ui-icons/lib/SettingsInputAntennaSharp.js index c1da355d897e5b..5c9bc49b82df37 100644 --- a/packages/material-ui-icons/lib/SettingsInputAntennaSharp.js +++ b/packages/material-ui-icons/lib/SettingsInputAntennaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" -}), 'SettingsInputAntennaSharp'); \ No newline at end of file +}), 'SettingsInputAntennaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputAntennaTwoTone.js b/packages/material-ui-icons/lib/SettingsInputAntennaTwoTone.js index 88eedaa0fad3d6..b1652e7d5a8faa 100644 --- a/packages/material-ui-icons/lib/SettingsInputAntennaTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsInputAntennaTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" -}), 'SettingsInputAntennaTwoTone'); \ No newline at end of file +}), 'SettingsInputAntennaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputComponent.js b/packages/material-ui-icons/lib/SettingsInputComponent.js index 3b85ecc00f32d5..06a8d2c238d02c 100644 --- a/packages/material-ui-icons/lib/SettingsInputComponent.js +++ b/packages/material-ui-icons/lib/SettingsInputComponent.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" -}), 'SettingsInputComponent'); \ No newline at end of file +}), 'SettingsInputComponent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputComponentOutlined.js b/packages/material-ui-icons/lib/SettingsInputComponentOutlined.js index 6e6cc9f4bc725d..44a222f5ec79b9 100644 --- a/packages/material-ui-icons/lib/SettingsInputComponentOutlined.js +++ b/packages/material-ui-icons/lib/SettingsInputComponentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z" -}), 'SettingsInputComponentOutlined'); \ No newline at end of file +}), 'SettingsInputComponentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputComponentRounded.js b/packages/material-ui-icons/lib/SettingsInputComponentRounded.js index b8e3d833d378c2..9bdbc9041b843d 100644 --- a/packages/material-ui-icons/lib/SettingsInputComponentRounded.js +++ b/packages/material-ui-icons/lib/SettingsInputComponentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H2c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1H5V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" -}), 'SettingsInputComponentRounded'); \ No newline at end of file +}), 'SettingsInputComponentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputComponentSharp.js b/packages/material-ui-icons/lib/SettingsInputComponentSharp.js index 8ad5036d12b0c9..fe2ef9564b31f5 100644 --- a/packages/material-ui-icons/lib/SettingsInputComponentSharp.js +++ b/packages/material-ui-icons/lib/SettingsInputComponentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z" -}), 'SettingsInputComponentSharp'); \ No newline at end of file +}), 'SettingsInputComponentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputComponentTwoTone.js b/packages/material-ui-icons/lib/SettingsInputComponentTwoTone.js index 3482d4791139f6..4f12383fc50765 100644 --- a/packages/material-ui-icons/lib/SettingsInputComponentTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsInputComponentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 16c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm-8 0c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm16 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z" -}, "1")], 'SettingsInputComponentTwoTone'); \ No newline at end of file +}, "1")], 'SettingsInputComponentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputComposite.js b/packages/material-ui-icons/lib/SettingsInputComposite.js index 4cd9b6744d75f2..db338119a222b2 100644 --- a/packages/material-ui-icons/lib/SettingsInputComposite.js +++ b/packages/material-ui-icons/lib/SettingsInputComposite.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" -}), 'SettingsInputComposite'); \ No newline at end of file +}), 'SettingsInputComposite'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputCompositeOutlined.js b/packages/material-ui-icons/lib/SettingsInputCompositeOutlined.js index 6e6f803f0144df..889a5def380928 100644 --- a/packages/material-ui-icons/lib/SettingsInputCompositeOutlined.js +++ b/packages/material-ui-icons/lib/SettingsInputCompositeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z" -}), 'SettingsInputCompositeOutlined'); \ No newline at end of file +}), 'SettingsInputCompositeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputCompositeRounded.js b/packages/material-ui-icons/lib/SettingsInputCompositeRounded.js index c879a561760d8f..244d6251565596 100644 --- a/packages/material-ui-icons/lib/SettingsInputCompositeRounded.js +++ b/packages/material-ui-icons/lib/SettingsInputCompositeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H2c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1H5V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" -}), 'SettingsInputCompositeRounded'); \ No newline at end of file +}), 'SettingsInputCompositeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputCompositeSharp.js b/packages/material-ui-icons/lib/SettingsInputCompositeSharp.js index 9f2fb5aa55d242..7731117ff00fd7 100644 --- a/packages/material-ui-icons/lib/SettingsInputCompositeSharp.js +++ b/packages/material-ui-icons/lib/SettingsInputCompositeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z" -}), 'SettingsInputCompositeSharp'); \ No newline at end of file +}), 'SettingsInputCompositeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputCompositeTwoTone.js b/packages/material-ui-icons/lib/SettingsInputCompositeTwoTone.js index 5ad37d36d17c31..5b066f0275d19c 100644 --- a/packages/material-ui-icons/lib/SettingsInputCompositeTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsInputCompositeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 16c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z" -}, "1")], 'SettingsInputCompositeTwoTone'); \ No newline at end of file +}, "1")], 'SettingsInputCompositeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputHdmi.js b/packages/material-ui-icons/lib/SettingsInputHdmi.js index 7de610579a3ce1..07b221eb8bb529 100644 --- a/packages/material-ui-icons/lib/SettingsInputHdmi.js +++ b/packages/material-ui-icons/lib/SettingsInputHdmi.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z" -}), 'SettingsInputHdmi'); \ No newline at end of file +}), 'SettingsInputHdmi'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputHdmiOutlined.js b/packages/material-ui-icons/lib/SettingsInputHdmiOutlined.js index c96406811882b2..7533baffd7bc55 100644 --- a/packages/material-ui-icons/lib/SettingsInputHdmiOutlined.js +++ b/packages/material-ui-icons/lib/SettingsInputHdmiOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53-3 6V20h-4v-1.47l-3-6V9h10v3.53z" -}), 'SettingsInputHdmiOutlined'); \ No newline at end of file +}), 'SettingsInputHdmiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputHdmiRounded.js b/packages/material-ui-icons/lib/SettingsInputHdmiRounded.js index acbff82a91b314..7925c3b77d4e88 100644 --- a/packages/material-ui-icons/lib/SettingsInputHdmiRounded.js +++ b/packages/material-ui-icons/lib/SettingsInputHdmiRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-.55 0-1 .45-1 1v4.7c0 .2.06.39.17.55L8 19v2c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2l2.83-5.75c.11-.16.17-.36.17-.55V8c0-.55-.45-1-1-1zm-2 0h-2V5.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V7h-2V5.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V7H8V4h8v3z" -}), 'SettingsInputHdmiRounded'); \ No newline at end of file +}), 'SettingsInputHdmiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputHdmiSharp.js b/packages/material-ui-icons/lib/SettingsInputHdmiSharp.js index 5ca233f938dcfd..d3e0c10ab745fd 100644 --- a/packages/material-ui-icons/lib/SettingsInputHdmiSharp.js +++ b/packages/material-ui-icons/lib/SettingsInputHdmiSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7V2H6v5H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z" -}), 'SettingsInputHdmiSharp'); \ No newline at end of file +}), 'SettingsInputHdmiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputHdmiTwoTone.js b/packages/material-ui-icons/lib/SettingsInputHdmiTwoTone.js index 87c4b49090dc3a..d9511c1ff10285 100644 --- a/packages/material-ui-icons/lib/SettingsInputHdmiTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsInputHdmiTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9H7v3.53l2.79 5.58.21.42V20h4v-1.47l.21-.42L17 12.53V9h-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53-3 6V20h-4v-1.47l-3-6V9h10v3.53z" -}, "1")], 'SettingsInputHdmiTwoTone'); \ No newline at end of file +}, "1")], 'SettingsInputHdmiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputSvideo.js b/packages/material-ui-icons/lib/SettingsInputSvideo.js index f6af1b954fcc9d..f64d6767847776 100644 --- a/packages/material-ui-icons/lib/SettingsInputSvideo.js +++ b/packages/material-ui-icons/lib/SettingsInputSvideo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'SettingsInputSvideo'); \ No newline at end of file +}), 'SettingsInputSvideo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputSvideoOutlined.js b/packages/material-ui-icons/lib/SettingsInputSvideoOutlined.js index 9246583ae96516..9c76fea8338485 100644 --- a/packages/material-ui-icons/lib/SettingsInputSvideoOutlined.js +++ b/packages/material-ui-icons/lib/SettingsInputSvideoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'SettingsInputSvideoOutlined'); \ No newline at end of file +}), 'SettingsInputSvideoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputSvideoRounded.js b/packages/material-ui-icons/lib/SettingsInputSvideoRounded.js index b522b51fdbd9f1..650b6b220fb497 100644 --- a/packages/material-ui-icons/lib/SettingsInputSvideoRounded.js +++ b/packages/material-ui-icons/lib/SettingsInputSvideoRounded.js @@ -1,23 +1,36 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "11.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "11.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "16", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "16", r: "1.5" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7.5c0-.83-.67-1.5-1.5-1.5h-3C9.67 6 9 6.67 9 7.5S9.67 9 10.5 9h3c.83 0 1.5-.67 1.5-1.5z" -}, "5")], 'SettingsInputSvideoRounded'); \ No newline at end of file +}, "5")], 'SettingsInputSvideoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputSvideoSharp.js b/packages/material-ui-icons/lib/SettingsInputSvideoSharp.js index 234ae0273ed8c6..df20399a7ee4aa 100644 --- a/packages/material-ui-icons/lib/SettingsInputSvideoSharp.js +++ b/packages/material-ui-icons/lib/SettingsInputSvideoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" -}), 'SettingsInputSvideoSharp'); \ No newline at end of file +}), 'SettingsInputSvideoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsInputSvideoTwoTone.js b/packages/material-ui-icons/lib/SettingsInputSvideoTwoTone.js index b573eaef3186f4..000a07b5e74e8a 100644 --- a/packages/material-ui-icons/lib/SettingsInputSvideoTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsInputSvideoTwoTone.js @@ -1,26 +1,39 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm-7 8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zM8.5 18c-.83 0-1.5-.67-1.5-1.5S7.67 15 8.5 15s1.5.67 1.5 1.5S9.33 18 8.5 18zm2-10C9.67 8 9 7.33 9 6.5S9.67 5 10.5 5h3c.83 0 1.5.67 1.5 1.5S14.33 8 13.5 8h-3zm5 10c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 6.5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "16.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17.5", cy: "11.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9z" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "11.5", r: "1.5" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "16.5", r: "1.5" -}, "6")], 'SettingsInputSvideoTwoTone'); \ No newline at end of file +}, "6")], 'SettingsInputSvideoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsOutlined.js b/packages/material-ui-icons/lib/SettingsOutlined.js index 968e77905dd5d5..7ecba49c5465b4 100644 --- a/packages/material-ui-icons/lib/SettingsOutlined.js +++ b/packages/material-ui-icons/lib/SettingsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'SettingsOutlined'); \ No newline at end of file +}), 'SettingsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsOverscan.js b/packages/material-ui-icons/lib/SettingsOverscan.js index 3fa4dc4eed1aca..31ca879d4e27f9 100644 --- a/packages/material-ui-icons/lib/SettingsOverscan.js +++ b/packages/material-ui-icons/lib/SettingsOverscan.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 5.5 10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}), 'SettingsOverscan'); \ No newline at end of file +}), 'SettingsOverscan'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsOverscanOutlined.js b/packages/material-ui-icons/lib/SettingsOverscanOutlined.js index 29490a9fe9fa34..2200abe3a9be70 100644 --- a/packages/material-ui-icons/lib/SettingsOverscanOutlined.js +++ b/packages/material-ui-icons/lib/SettingsOverscanOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 5.5 10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}), 'SettingsOverscanOutlined'); \ No newline at end of file +}), 'SettingsOverscanOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsOverscanRounded.js b/packages/material-ui-icons/lib/SettingsOverscanRounded.js index 47c5626e61267a..e09e06a8c3d9ac 100644 --- a/packages/material-ui-icons/lib/SettingsOverscanRounded.js +++ b/packages/material-ui-icons/lib/SettingsOverscanRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 7 10 9h4l-1.99-2zM17 10v4l2-1.99L17 10zM7 10l-2 2.01L7 14v-4zm7 5h-4l2.01 2L14 15zm6-11H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14.01H4V5.99h16v12.02z" -}), 'SettingsOverscanRounded'); \ No newline at end of file +}), 'SettingsOverscanRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsOverscanSharp.js b/packages/material-ui-icons/lib/SettingsOverscanSharp.js index 8bed2baa86c819..526e609a6a3131 100644 --- a/packages/material-ui-icons/lib/SettingsOverscanSharp.js +++ b/packages/material-ui-icons/lib/SettingsOverscanSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 5.5 10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm9-13H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" -}), 'SettingsOverscanSharp'); \ No newline at end of file +}), 'SettingsOverscanSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsOverscanTwoTone.js b/packages/material-ui-icons/lib/SettingsOverscanTwoTone.js index 48d5e5f3f0006c..91399b6f8d489b 100644 --- a/packages/material-ui-icons/lib/SettingsOverscanTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsOverscanTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19.01h18V4.99H3v14.02zM18 10l2.5 2.01L18 14v-4zm-5.99-4.5L14 8h-4l2.01-2.5zM14 16l-1.99 2.5L10 16h4zm-8-6v4l-2.5-1.99L6 10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 16h-4l2.01 2.5zm4-6v4l2.5-1.99zm3-7H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM6 10l-2.5 2.01L6 14zm6.01-4.5L10 8h4z" -}, "1")], 'SettingsOverscanTwoTone'); \ No newline at end of file +}, "1")], 'SettingsOverscanTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPhone.js b/packages/material-ui-icons/lib/SettingsPhone.js index e7a3f26a525112..870c809b32ec26 100644 --- a/packages/material-ui-icons/lib/SettingsPhone.js +++ b/packages/material-ui-icons/lib/SettingsPhone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9h-2v2h2V9zm4 0h-2v2h2V9zm3 6.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 9v2h2V9h-2z" -}), 'SettingsPhone'); \ No newline at end of file +}), 'SettingsPhone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPhoneOutlined.js b/packages/material-ui-icons/lib/SettingsPhoneOutlined.js index 9429d5625da3c4..ccf0e54c806aef 100644 --- a/packages/material-ui-icons/lib/SettingsPhoneOutlined.js +++ b/packages/material-ui-icons/lib/SettingsPhoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z" -}), 'SettingsPhoneOutlined'); \ No newline at end of file +}), 'SettingsPhoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPhoneRounded.js b/packages/material-ui-icons/lib/SettingsPhoneRounded.js index 2e167a79ed6f70..c31681a04d6f9c 100644 --- a/packages/material-ui-icons/lib/SettingsPhoneRounded.js +++ b/packages/material-ui-icons/lib/SettingsPhoneRounded.js @@ -1,17 +1,30 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "10", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "10", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "20", cy: "10", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" -}, "3")], 'SettingsPhoneRounded'); \ No newline at end of file +}, "3")], 'SettingsPhoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPhoneSharp.js b/packages/material-ui-icons/lib/SettingsPhoneSharp.js index 5e9daeb3391f66..b60f6656924683 100644 --- a/packages/material-ui-icons/lib/SettingsPhoneSharp.js +++ b/packages/material-ui-icons/lib/SettingsPhoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.21 17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52zM11 9h2v2h-2zm4 0h2v2h-2zm4 0h2v2h-2z" -}), 'SettingsPhoneSharp'); \ No newline at end of file +}), 'SettingsPhoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPhoneTwoTone.js b/packages/material-ui-icons/lib/SettingsPhoneTwoTone.js index 4345561899d44a..d582a44f849ced 100644 --- a/packages/material-ui-icons/lib/SettingsPhoneTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsPhoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z" -}, "1")], 'SettingsPhoneTwoTone'); \ No newline at end of file +}, "1")], 'SettingsPhoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPower.js b/packages/material-ui-icons/lib/SettingsPower.js index eb5400afad9a53..56804849d332b8 100644 --- a/packages/material-ui-icons/lib/SettingsPower.js +++ b/packages/material-ui-icons/lib/SettingsPower.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" -}), 'SettingsPower'); \ No newline at end of file +}), 'SettingsPower'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPowerOutlined.js b/packages/material-ui-icons/lib/SettingsPowerOutlined.js index 9ab5ef0d0eb4f8..48b73dcfb7487c 100644 --- a/packages/material-ui-icons/lib/SettingsPowerOutlined.js +++ b/packages/material-ui-icons/lib/SettingsPowerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" -}), 'SettingsPowerOutlined'); \ No newline at end of file +}), 'SettingsPowerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPowerRounded.js b/packages/material-ui-icons/lib/SettingsPowerRounded.js index dfba5a0b587ab0..db993d2d0a41e1 100644 --- a/packages/material-ui-icons/lib/SettingsPowerRounded.js +++ b/packages/material-ui-icons/lib/SettingsPowerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-22c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1zm3.94 3.06-.02.02c-.41.41-.36 1.08.08 1.46 1.51 1.34 2.33 3.43 1.88 5.7-.46 2.28-2.29 4.14-4.56 4.62C9.43 17.69 6 14.74 6 11c0-1.78.78-3.37 2.01-4.47.43-.39.47-1.04.07-1.45l-.02-.02c-.37-.37-.96-.39-1.36-.04-2.01 1.77-3.12 4.53-2.56 7.52.59 3.15 3.11 5.7 6.26 6.31 5.12.99 9.6-2.9 9.6-7.85 0-2.38-1.05-4.52-2.71-5.99-.39-.34-.98-.32-1.35.05zM16 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" -}), 'SettingsPowerRounded'); \ No newline at end of file +}), 'SettingsPowerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPowerSharp.js b/packages/material-ui-icons/lib/SettingsPowerSharp.js index a1f75e3901f3e7..55117bddc38573 100644 --- a/packages/material-ui-icons/lib/SettingsPowerSharp.js +++ b/packages/material-ui-icons/lib/SettingsPowerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" -}), 'SettingsPowerSharp'); \ No newline at end of file +}), 'SettingsPowerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsPowerTwoTone.js b/packages/material-ui-icons/lib/SettingsPowerTwoTone.js index 831caf19bc50da..cb889a64c388ba 100644 --- a/packages/material-ui-icons/lib/SettingsPowerTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsPowerTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" -}), 'SettingsPowerTwoTone'); \ No newline at end of file +}), 'SettingsPowerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsRemote.js b/packages/material-ui-icons/lib/SettingsRemote.js index 90f3ec66e11830..532712b6880fad 100644 --- a/packages/material-ui-icons/lib/SettingsRemote.js +++ b/packages/material-ui-icons/lib/SettingsRemote.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" -}), 'SettingsRemote'); \ No newline at end of file +}), 'SettingsRemote'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsRemoteOutlined.js b/packages/material-ui-icons/lib/SettingsRemoteOutlined.js index 9681e93edc0940..ebfa6c82ec6c50 100644 --- a/packages/material-ui-icons/lib/SettingsRemoteOutlined.js +++ b/packages/material-ui-icons/lib/SettingsRemoteOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.05 6.05 1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" -}, "2")], 'SettingsRemoteOutlined'); \ No newline at end of file +}, "2")], 'SettingsRemoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsRemoteRounded.js b/packages/material-ui-icons/lib/SettingsRemoteRounded.js index 9890d5fb50e2e4..ba413a1f1733be 100644 --- a/packages/material-ui-icons/lib/SettingsRemoteRounded.js +++ b/packages/material-ui-icons/lib/SettingsRemoteRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 5.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM7.82 6.82c.35.35.9.38 1.3.1C9.93 6.34 10.93 6 12 6c1.07 0 2.07.34 2.88.91.4.28.95.26 1.3-.09.43-.43.39-1.15-.09-1.5C14.94 4.49 13.53 4 12 4c-1.53 0-2.94.49-4.09 1.32-.49.35-.52 1.07-.09 1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 0C9.36 0 6.94.93 5.05 2.47c-.46.38-.5 1.07-.08 1.49.36.36.93.39 1.32.07C7.84 2.77 9.83 2 12 2s4.16.77 5.7 2.04c.39.32.96.29 1.32-.07.42-.42.38-1.11-.08-1.49C17.06.93 14.64 0 12 0z" -}, "1")], 'SettingsRemoteRounded'); \ No newline at end of file +}, "1")], 'SettingsRemoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsRemoteSharp.js b/packages/material-ui-icons/lib/SettingsRemoteSharp.js index 4d8ab939cf506d..0144c1c1eb6f9e 100644 --- a/packages/material-ui-icons/lib/SettingsRemoteSharp.js +++ b/packages/material-ui-icons/lib/SettingsRemoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 9H8v14h8V9zm-4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" -}), 'SettingsRemoteSharp'); \ No newline at end of file +}), 'SettingsRemoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsRemoteTwoTone.js b/packages/material-ui-icons/lib/SettingsRemoteTwoTone.js index 16b5d595a5e1e6..9592cfef61f80d 100644 --- a/packages/material-ui-icons/lib/SettingsRemoteTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsRemoteTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 21h4V11h-4v10zm2-9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "13", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.05 6.05 1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" -}, "3")], 'SettingsRemoteTwoTone'); \ No newline at end of file +}, "3")], 'SettingsRemoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsRounded.js b/packages/material-ui-icons/lib/SettingsRounded.js index 7008f8e9ea0916..8124caeb88c2e5 100644 --- a/packages/material-ui-icons/lib/SettingsRounded.js +++ b/packages/material-ui-icons/lib/SettingsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 12c0-.23-.01-.45-.03-.68l1.86-1.41c.4-.3.51-.86.26-1.3l-1.87-3.23c-.25-.44-.79-.62-1.25-.42l-2.15.91c-.37-.26-.76-.49-1.17-.68l-.29-2.31c-.06-.5-.49-.88-.99-.88h-3.73c-.51 0-.94.38-1 .88l-.29 2.31c-.41.19-.8.42-1.17.68l-2.15-.91c-.46-.2-1-.02-1.25.42L2.41 8.62c-.25.44-.14.99.26 1.3l1.86 1.41c-.02.22-.03.44-.03.67s.01.45.03.68l-1.86 1.41c-.4.3-.51.86-.26 1.3l1.87 3.23c.25.44.79.62 1.25.42l2.15-.91c.37.26.76.49 1.17.68l.29 2.31c.06.5.49.88.99.88h3.73c.5 0 .93-.38.99-.88l.29-2.31c.41-.19.8-.42 1.17-.68l2.15.91c.46.2 1 .02 1.25-.42l1.87-3.23c.25-.44.14-.99-.26-1.3l-1.86-1.41c.03-.23.04-.45.04-.68zm-7.46 3.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" -}), 'SettingsRounded'); \ No newline at end of file +}), 'SettingsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSharp.js b/packages/material-ui-icons/lib/SettingsSharp.js index 89f668e3171c94..7e8f28565404d7 100644 --- a/packages/material-ui-icons/lib/SettingsSharp.js +++ b/packages/material-ui-icons/lib/SettingsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.44 12.99-.01.02c.04-.33.08-.67.08-1.01 0-.34-.03-.66-.07-.99l.01.02 2.44-1.92-2.43-4.22-2.87 1.16.01.01c-.52-.4-1.09-.74-1.71-1h.01L14.44 2H9.57l-.44 3.07h.01c-.62.26-1.19.6-1.71 1l.01-.01-2.88-1.17-2.44 4.22 2.44 1.92.01-.02c-.04.33-.07.65-.07.99 0 .34.03.68.08 1.01l-.01-.02-2.1 1.65-.33.26 2.43 4.2 2.88-1.15-.02-.04c.53.41 1.1.75 1.73 1.01h-.03L9.58 22h4.85s.03-.18.06-.42l.38-2.65h-.01c.62-.26 1.2-.6 1.73-1.01l-.02.04 2.88 1.15 2.43-4.2s-.14-.12-.33-.26l-2.11-1.66zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" -}), 'SettingsSharp'); \ No newline at end of file +}), 'SettingsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSuggest.js b/packages/material-ui-icons/lib/SettingsSuggest.js index d75c4542254bf4..1a0068b9bd1a5e 100644 --- a/packages/material-ui-icons/lib/SettingsSuggest.js +++ b/packages/material-ui-icons/lib/SettingsSuggest.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.41 6.59 15 5.5l2.41-1.09L18.5 2l1.09 2.41L22 5.5l-2.41 1.09L18.5 9l-1.09-2.41zm3.87 6.13L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zm-5.04 1.65 1.94 1.47-2.5 4.33-2.24-.94c-.2.13-.42.26-.64.37l-.3 2.4h-5l-.3-2.41c-.22-.11-.43-.23-.64-.37l-2.24.94-2.5-4.33 1.94-1.47c-.01-.11-.01-.24-.01-.36s0-.25.01-.37l-1.94-1.47 2.5-4.33 2.24.94c.2-.13.42-.26.64-.37L7.5 6h5l.3 2.41c.22.11.43.23.64.37l2.24-.94 2.5 4.33-1.94 1.47c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" -}), 'SettingsSuggest'); \ No newline at end of file +}), 'SettingsSuggest'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSuggestOutlined.js b/packages/material-ui-icons/lib/SettingsSuggestOutlined.js index 7574b53f19ca12..fcd09917b1caec 100644 --- a/packages/material-ui-icons/lib/SettingsSuggestOutlined.js +++ b/packages/material-ui-icons/lib/SettingsSuggestOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 13c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm8.5-2 1.09-2.41L22 5.5l-2.41-1.09L18.5 2l-1.09 2.41L15 5.5l2.41 1.09L18.5 9zm2.78 3.72L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zM16.25 14c0-.12 0-.25-.01-.37l1.94-1.47-2.5-4.33-2.24.94c-.2-.13-.42-.26-.64-.37L12.5 6h-5l-.3 2.41c-.22.11-.43.24-.64.37l-2.24-.95-2.5 4.33 1.94 1.47c-.01.12-.01.25-.01.37s0 .25.01.37l-1.94 1.47 2.5 4.33 2.24-.94c.2.13.42.26.64.37l.3 2.4h5l.3-2.41c.22-.11.43-.23.64-.37l2.24.94 2.5-4.33-1.94-1.47c.01-.11.01-.24.01-.36zm-1.42 3.64-1.73-.73c-.56.6-1.3 1.04-2.13 1.23L10.73 20H9.27l-.23-1.86c-.83-.19-1.57-.63-2.13-1.23l-1.73.73-.73-1.27 1.49-1.13c-.12-.39-.18-.8-.18-1.23 0-.43.06-.84.18-1.23l-1.49-1.13.73-1.27 1.73.73c.56-.6 1.3-1.04 2.13-1.23L9.27 8h1.47l.23 1.86c.83.19 1.57.63 2.13 1.23l1.73-.73.73 1.27-1.49 1.13c.12.39.18.8.18 1.23 0 .43-.06.84-.18 1.23l1.49 1.13-.73 1.29z" -}), 'SettingsSuggestOutlined'); \ No newline at end of file +}), 'SettingsSuggestOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSuggestRounded.js b/packages/material-ui-icons/lib/SettingsSuggestRounded.js index 7736ff025d1f2b..9906427e30e279 100644 --- a/packages/material-ui-icons/lib/SettingsSuggestRounded.js +++ b/packages/material-ui-icons/lib/SettingsSuggestRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.04 7.99-.63-1.4-1.4-.63c-.39-.18-.39-.73 0-.91l1.4-.63.63-1.4c.18-.39.73-.39.91 0l.63 1.4 1.4.63c.39.18.39.73 0 .91l-1.4.63-.63 1.4c-.17.39-.73.39-.91 0zm3.24 4.73-.32-.72c-.18-.39-.73-.39-.91 0l-.32.72-.73.32c-.39.18-.39.73 0 .91l.72.32.32.73c.18.39.73.39.91 0l.32-.72.73-.32c.39-.18.39-.73 0-.91l-.72-.33zm-5.04 1.65 1.23.93c.4.3.51.86.26 1.3l-1.62 2.8c-.25.44-.79.62-1.25.42l-1.43-.6c-.2.13-.42.26-.64.37l-.19 1.54c-.06.5-.49.88-.99.88H8.38c-.5 0-.93-.38-.99-.88l-.19-1.54c-.22-.11-.43-.23-.64-.37l-1.43.6c-.46.2-1 .02-1.25-.42l-1.62-2.8c-.25-.44-.14-.99.26-1.3l1.23-.93V14c0-.12 0-.25.01-.37l-1.23-.93c-.4-.3-.51-.86-.26-1.3l1.62-2.8c.25-.44.79-.62 1.25-.42l1.43.6c.2-.13.42-.26.64-.37l.19-1.54c.05-.49.48-.87.98-.87h3.23c.5 0 .93.38.99.88l.19 1.54c.22.11.43.23.64.37l1.43-.6c.46-.2 1-.02 1.25.42l1.62 2.8c.25.44.14.99-.26 1.3l-1.23.93c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" -}), 'SettingsSuggestRounded'); \ No newline at end of file +}), 'SettingsSuggestRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSuggestSharp.js b/packages/material-ui-icons/lib/SettingsSuggestSharp.js index 4692d31f0d6eb9..1e78e09900ae83 100644 --- a/packages/material-ui-icons/lib/SettingsSuggestSharp.js +++ b/packages/material-ui-icons/lib/SettingsSuggestSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.41 6.59 15 5.5l2.41-1.09L18.5 2l1.09 2.41L22 5.5l-2.41 1.09L18.5 9l-1.09-2.41zm3.87 6.13L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zm-5.04 1.65 1.94 1.47-2.5 4.33-2.24-.94c-.2.13-.42.26-.64.37l-.3 2.4h-5l-.3-2.41c-.22-.11-.43-.23-.64-.37l-2.24.94-2.5-4.33 1.94-1.47c-.01-.11-.01-.24-.01-.36s0-.25.01-.37l-1.94-1.47 2.5-4.33 2.24.94c.2-.13.42-.26.64-.37L7.5 6h5l.3 2.41c.22.11.43.23.64.37l2.24-.94 2.5 4.33-1.94 1.47c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" -}), 'SettingsSuggestSharp'); \ No newline at end of file +}), 'SettingsSuggestSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSuggestTwoTone.js b/packages/material-ui-icons/lib/SettingsSuggestTwoTone.js index 374b634f521541..1d2a19c458253d 100644 --- a/packages/material-ui-icons/lib/SettingsSuggestTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsSuggestTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.07 15.23c.12-.39.18-.8.18-1.23 0-.43-.06-.84-.18-1.23l1.49-1.13-.73-1.27-1.73.73c-.56-.6-1.3-1.04-2.13-1.23L10.73 8H9.27l-.24 1.86c-.83.19-1.57.63-2.13 1.23l-1.73-.73-.73 1.27 1.49 1.13c-.12.39-.18.8-.18 1.23 0 .43.06.84.18 1.23l-1.49 1.13.73 1.27 1.73-.73c.56.6 1.3 1.04 2.13 1.23L9.27 20h1.47l.23-1.86c.83-.19 1.57-.63 2.13-1.23l1.73.73.73-1.27-1.49-1.14zM10 17c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 13c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm8.5-2 1.09-2.41L22 5.5l-2.41-1.09L18.5 2l-1.09 2.41L15 5.5l2.41 1.09L18.5 9zm2.78 3.72L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zM16.25 14c0-.12 0-.25-.01-.37l1.94-1.47-2.5-4.33-2.24.94c-.2-.13-.42-.26-.64-.37L12.5 6h-5l-.3 2.41c-.22.11-.43.24-.64.37l-2.24-.95-2.5 4.33 1.94 1.47c-.01.12-.01.25-.01.37s0 .25.01.37l-1.94 1.47 2.5 4.33 2.24-.94c.2.13.42.26.64.37l.3 2.4h5l.3-2.41c.22-.11.43-.23.64-.37l2.24.94 2.5-4.33-1.94-1.47c.01-.11.01-.24.01-.36zm-1.42 3.64-1.73-.73c-.56.6-1.3 1.04-2.13 1.23L10.73 20H9.27l-.23-1.86c-.83-.19-1.57-.63-2.13-1.23l-1.73.73-.73-1.27 1.49-1.13c-.12-.39-.18-.8-.18-1.23 0-.43.06-.84.18-1.23l-1.49-1.13.73-1.27 1.73.73c.56-.6 1.3-1.04 2.13-1.23L9.27 8h1.47l.23 1.86c.83.19 1.57.63 2.13 1.23l1.73-.73.73 1.27-1.49 1.13c.12.39.18.8.18 1.23 0 .43-.06.84-.18 1.23l1.49 1.13-.73 1.29z" -}, "1")], 'SettingsSuggestTwoTone'); \ No newline at end of file +}, "1")], 'SettingsSuggestTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSystemDaydream.js b/packages/material-ui-icons/lib/SettingsSystemDaydream.js index 98b97097daade5..35df627cd6215c 100644 --- a/packages/material-ui-icons/lib/SettingsSystemDaydream.js +++ b/packages/material-ui-icons/lib/SettingsSystemDaydream.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}), 'SettingsSystemDaydream'); \ No newline at end of file +}), 'SettingsSystemDaydream'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSystemDaydreamOutlined.js b/packages/material-ui-icons/lib/SettingsSystemDaydreamOutlined.js index c6d5427e4dbac9..68c165e3ec03fe 100644 --- a/packages/material-ui-icons/lib/SettingsSystemDaydreamOutlined.js +++ b/packages/material-ui-icons/lib/SettingsSystemDaydreamOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 17H9c-2.21 0-4-1.79-4-4 0-1.93 1.36-3.56 3.22-3.92C9.04 7.8 10.47 7 12 7c1.95 0 3.66 1.28 4.26 3.09 1.58.36 2.74 1.75 2.74 3.41 0 1.93-1.57 3.5-3.5 3.5zm-6.76-5.98C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}), 'SettingsSystemDaydreamOutlined'); \ No newline at end of file +}), 'SettingsSystemDaydreamOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSystemDaydreamRounded.js b/packages/material-ui-icons/lib/SettingsSystemDaydreamRounded.js index cc336b6055f9ec..54967c1a946066 100644 --- a/packages/material-ui-icons/lib/SettingsSystemDaydreamRounded.js +++ b/packages/material-ui-icons/lib/SettingsSystemDaydreamRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.02c0 .55-.45 1-1 1z" -}), 'SettingsSystemDaydreamRounded'); \ No newline at end of file +}), 'SettingsSystemDaydreamRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSystemDaydreamSharp.js b/packages/material-ui-icons/lib/SettingsSystemDaydreamSharp.js index 5250fa8dd23ec9..876fc5668eb8e1 100644 --- a/packages/material-ui-icons/lib/SettingsSystemDaydreamSharp.js +++ b/packages/material-ui-icons/lib/SettingsSystemDaydreamSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" -}), 'SettingsSystemDaydreamSharp'); \ No newline at end of file +}), 'SettingsSystemDaydreamSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsSystemDaydreamTwoTone.js b/packages/material-ui-icons/lib/SettingsSystemDaydreamTwoTone.js index 5cdf333a4c77b3..269d3d30a0bbf4 100644 --- a/packages/material-ui-icons/lib/SettingsSystemDaydreamTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsSystemDaydreamTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 15h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17h6.5c1.93 0 3.5-1.57 3.5-3.5 0-1.66-1.16-3.05-2.74-3.41C15.66 8.28 13.95 7 12 7c-1.53 0-2.96.8-3.78 2.08C6.36 9.44 5 11.07 5 13c0 2.21 1.79 4 4 4zm-.26-5.98h.74l.27-.57C10.16 9.57 11.04 9 12 9c1.23 0 2.29.92 2.46 2.14l.17.86h.87c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H9c-1.1 0-2-.9-2-2 0-1.01.74-1.85 1.74-1.98zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" -}, "1")], 'SettingsSystemDaydreamTwoTone'); \ No newline at end of file +}, "1")], 'SettingsSystemDaydreamTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsTwoTone.js b/packages/material-ui-icons/lib/SettingsTwoTone.js index 699e68d6f3d1a2..9d1d35b667b63f 100644 --- a/packages/material-ui-icons/lib/SettingsTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.28 8.6-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'SettingsTwoTone'); \ No newline at end of file +}, "1")], 'SettingsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsVoice.js b/packages/material-ui-icons/lib/SettingsVoice.js index 9966b7cf01d7f7..a4f245adbcbbf2 100644 --- a/packages/material-ui-icons/lib/SettingsVoice.js +++ b/packages/material-ui-icons/lib/SettingsVoice.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" -}), 'SettingsVoice'); \ No newline at end of file +}), 'SettingsVoice'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsVoiceOutlined.js b/packages/material-ui-icons/lib/SettingsVoiceOutlined.js index 2539cd11942a8d..0d2c5e2424ee00 100644 --- a/packages/material-ui-icons/lib/SettingsVoiceOutlined.js +++ b/packages/material-ui-icons/lib/SettingsVoiceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 22h2v2H7zm5-9c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" -}), 'SettingsVoiceOutlined'); \ No newline at end of file +}), 'SettingsVoiceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsVoiceRounded.js b/packages/material-ui-icons/lib/SettingsVoiceRounded.js index 97f1602b4dcefb..ad0cbb8a076054 100644 --- a/packages/material-ui-icons/lib/SettingsVoiceRounded.js +++ b/packages/material-ui-icons/lib/SettingsVoiceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM9 10V4c0-1.66 1.34-3 3-3s3 1.34 3 3v6c0 1.66-1.34 3-3 3s-3-1.34-3-3zm8.91 0c.61 0 1.09.54 1 1.14-.49 3-2.89 5.34-5.91 5.78V19c0 .55-.45 1-1 1s-1-.45-1-1v-2.08c-3.02-.44-5.42-2.78-5.91-5.78-.1-.6.39-1.14 1-1.14.49 0 .9.36.98.85C7.48 13.21 9.53 15 12 15s4.52-1.79 4.93-4.15c.08-.49.49-.85.98-.85z" -}), 'SettingsVoiceRounded'); \ No newline at end of file +}), 'SettingsVoiceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsVoiceSharp.js b/packages/material-ui-icons/lib/SettingsVoiceSharp.js index 6c69a9626b055c..4edad543e2f7b7 100644 --- a/packages/material-ui-icons/lib/SettingsVoiceSharp.js +++ b/packages/material-ui-icons/lib/SettingsVoiceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" -}), 'SettingsVoiceSharp'); \ No newline at end of file +}), 'SettingsVoiceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SettingsVoiceTwoTone.js b/packages/material-ui-icons/lib/SettingsVoiceTwoTone.js index f09f638aa8f8ee..49c463603fa43b 100644 --- a/packages/material-ui-icons/lib/SettingsVoiceTwoTone.js +++ b/packages/material-ui-icons/lib/SettingsVoiceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c.56 0 .99-.44.99-1L13 4c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 22h2v2H7zm5-9c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" -}, "1")], 'SettingsVoiceTwoTone'); \ No newline at end of file +}, "1")], 'SettingsVoiceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenK.js b/packages/material-ui-icons/lib/SevenK.js index 801b425fa6ada2..90f902fd43fea5 100644 --- a/packages/material-ui-icons/lib/SevenK.js +++ b/packages/material-ui-icons/lib/SevenK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 15H7.75l1.38-4.5H6.5V9H10c.67 0 1.15.65.96 1.29L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'SevenK'); \ No newline at end of file +}), 'SevenK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKOutlined.js b/packages/material-ui-icons/lib/SevenKOutlined.js index 0d3a614532ad50..13595fd8e189c6 100644 --- a/packages/material-ui-icons/lib/SevenKOutlined.js +++ b/packages/material-ui-icons/lib/SevenKOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.75 15H9.5l1.46-4.71C11.15 9.65 10.67 9 10 9H6.5v1.5h2.63L7.75 15zm6.75-2.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "1")], 'SevenKOutlined'); \ No newline at end of file +}, "1")], 'SevenKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKPlus.js b/packages/material-ui-icons/lib/SevenKPlus.js index 4cec05528a562e..88d3e461d70989 100644 --- a/packages/material-ui-icons/lib/SevenKPlus.js +++ b/packages/material-ui-icons/lib/SevenKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 15H6.25l1.38-4.5H5V9h3.5c.67 0 1.15.65.96 1.29L8 15zm8 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'SevenKPlus'); \ No newline at end of file +}), 'SevenKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKPlusOutlined.js b/packages/material-ui-icons/lib/SevenKPlusOutlined.js index 2618ebbfd21a68..f80ca3e6bb6cbe 100644 --- a/packages/material-ui-icons/lib/SevenKPlusOutlined.js +++ b/packages/material-ui-icons/lib/SevenKPlusOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.75 15H8.5l1.46-4.71C10.15 9.65 9.67 9 9 9H5.5v1.5h2.63L6.75 15zm5.75-2.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "1")], 'SevenKPlusOutlined'); \ No newline at end of file +}, "1")], 'SevenKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKPlusRounded.js b/packages/material-ui-icons/lib/SevenKPlusRounded.js index 8a61a6896a023b..ff655c9ebf3576 100644 --- a/packages/material-ui-icons/lib/SevenKPlusRounded.js +++ b/packages/material-ui-icons/lib/SevenKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.95 15h-.19c-.5 0-.86-.49-.72-.97l1.08-3.53H6.25c-.41 0-.75-.34-.75-.75S5.83 9 6.25 9H9c.67 0 1.15.65.96 1.29l-1.3 4.18c-.1.32-.39.53-.71.53zm6.64 0c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'SevenKPlusRounded'); \ No newline at end of file +}), 'SevenKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKPlusSharp.js b/packages/material-ui-icons/lib/SevenKPlusSharp.js index 7a7c1eca7035a2..b8aaba3fa97906 100644 --- a/packages/material-ui-icons/lib/SevenKPlusSharp.js +++ b/packages/material-ui-icons/lib/SevenKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM8.5 15H6.75l1.38-4.5H5.5V9h4.86L8.5 15zm7.5 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'SevenKPlusSharp'); \ No newline at end of file +}), 'SevenKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKPlusTwoTone.js b/packages/material-ui-icons/lib/SevenKPlusTwoTone.js index cbbaed695ccc42..67042263b68969 100644 --- a/packages/material-ui-icons/lib/SevenKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/SevenKPlusTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zM5.5 9H9c.67 0 1.15.65.96 1.29L8.5 15H6.75l1.38-4.5H5.5V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.75 15H8.5l1.46-4.71C10.15 9.65 9.67 9 9 9H5.5v1.5h2.63L6.75 15zm5.75-2.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "2")], 'SevenKPlusTwoTone'); \ No newline at end of file +}, "2")], 'SevenKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKRounded.js b/packages/material-ui-icons/lib/SevenKRounded.js index 02678802c5a3f9..58a7ab706a1ad7 100644 --- a/packages/material-ui-icons/lib/SevenKRounded.js +++ b/packages/material-ui-icons/lib/SevenKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.95 15h-.19c-.5 0-.86-.49-.72-.97l1.08-3.53H7.25c-.41 0-.75-.34-.75-.75S6.84 9 7.25 9H10c.67 0 1.15.65.96 1.29l-1.3 4.18c-.09.32-.38.53-.71.53zm7.64 0c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'SevenKRounded'); \ No newline at end of file +}), 'SevenKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKSharp.js b/packages/material-ui-icons/lib/SevenKSharp.js index 1a5e992a97542d..f2f8b9266e09ed 100644 --- a/packages/material-ui-icons/lib/SevenKSharp.js +++ b/packages/material-ui-icons/lib/SevenKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM9.5 15H7.75l1.38-4.5H6.5V9h4.86L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'SevenKSharp'); \ No newline at end of file +}), 'SevenKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenKTwoTone.js b/packages/material-ui-icons/lib/SevenKTwoTone.js index b25b3053d53ec5..2c2f431a2ef490 100644 --- a/packages/material-ui-icons/lib/SevenKTwoTone.js +++ b/packages/material-ui-icons/lib/SevenKTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zM6.5 9H10c.67 0 1.15.65.96 1.29L9.5 15H7.75l1.38-4.5H6.5V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.75 15H9.5l1.46-4.71C11.15 9.65 10.67 9 10 9H6.5v1.5h2.63L7.75 15zm6.75-2.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "2")], 'SevenKTwoTone'); \ No newline at end of file +}, "2")], 'SevenKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenMp.js b/packages/material-ui-icons/lib/SevenMp.js index 30bdd6a95e552c..a4ca103e25d141 100644 --- a/packages/material-ui-icons/lib/SevenMp.js +++ b/packages/material-ui-icons/lib/SevenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2.5-7h-1.75L12.62 7H10V5.5h3.5c.67 0 1.15.65.96 1.29L13 11.5zm2.5 2.5H17v1.5h-1.5z" -}), 'SevenMp'); \ No newline at end of file +}), 'SevenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenMpOutlined.js b/packages/material-ui-icons/lib/SevenMpOutlined.js index 6b3c2ba002c3e9..57e32a3818cb67 100644 --- a/packages/material-ui-icons/lib/SevenMpOutlined.js +++ b/packages/material-ui-icons/lib/SevenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.25 11.5H13l1.46-4.71c.19-.64-.29-1.29-.96-1.29H10V7h2.62l-1.37 4.5z" -}, "2")], 'SevenMpOutlined'); \ No newline at end of file +}, "2")], 'SevenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenMpRounded.js b/packages/material-ui-icons/lib/SevenMpRounded.js index 438857630b1533..2088e5608ba5a8 100644 --- a/packages/material-ui-icons/lib/SevenMpRounded.js +++ b/packages/material-ui-icons/lib/SevenMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.5 14.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.12-6.25c-.56 0-.97-.54-.8-1.08L12.62 7h-1.87c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.67 0 1.15.65.96 1.29l-1.28 4.12c-.11.35-.43.59-.8.59zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'SevenMpRounded'); \ No newline at end of file +}, "1")], 'SevenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenMpSharp.js b/packages/material-ui-icons/lib/SevenMpSharp.js index 4427ea5ae59944..3051175a6a76ad 100644 --- a/packages/material-ui-icons/lib/SevenMpSharp.js +++ b/packages/material-ui-icons/lib/SevenMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-1.25-7L12.62 7H10V5.5h4.87l-1.87 6h-1.75zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'SevenMpSharp'); \ No newline at end of file +}, "1")], 'SevenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SevenMpTwoTone.js b/packages/material-ui-icons/lib/SevenMpTwoTone.js index 30ed0dac0ce94a..67f57a92bb3125 100644 --- a/packages/material-ui-icons/lib/SevenMpTwoTone.js +++ b/packages/material-ui-icons/lib/SevenMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8-8h3.5c.67 0 1.15.65.96 1.29L13 11.5h-1.75L12.62 7H10V5.5zm-4 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.25 11.5H13l1.46-4.71c.19-.64-.29-1.29-.96-1.29H10V7h2.62l-1.37 4.5z" -}, "4")], 'SevenMpTwoTone'); \ No newline at end of file +}, "4")], 'SevenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SeventeenMp.js b/packages/material-ui-icons/lib/SeventeenMp.js index 8e58c64991e18d..1876b238e09eec 100644 --- a/packages/material-ui-icons/lib/SeventeenMp.js +++ b/packages/material-ui-icons/lib/SeventeenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm5 6h-1.75L14.62 7H12V5.5h3.5c.67 0 1.15.65.96 1.29L15 11.5zm.5 2.5H17v1.5h-1.5z" -}), 'SeventeenMp'); \ No newline at end of file +}), 'SeventeenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SeventeenMpOutlined.js b/packages/material-ui-icons/lib/SeventeenMpOutlined.js index b3102d4eb0486a..a356cb605fad38 100644 --- a/packages/material-ui-icons/lib/SeventeenMpOutlined.js +++ b/packages/material-ui-icons/lib/SeventeenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm4.75 0H15l1.46-4.71c.19-.64-.29-1.29-.96-1.29H12V7h2.62l-1.37 4.5z" -}, "2")], 'SeventeenMpOutlined'); \ No newline at end of file +}, "2")], 'SeventeenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SeventeenMpRounded.js b/packages/material-ui-icons/lib/SeventeenMpRounded.js index e5d640153521b3..1cf7dd4f8fbcbb 100644 --- a/packages/material-ui-icons/lib/SeventeenMpRounded.js +++ b/packages/material-ui-icons/lib/SeventeenMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 6.25c0-.41.34-.75.75-.75h2.75c.67 0 1.15.65.96 1.29l-1.28 4.12c-.11.35-.43.59-.8.59-.56 0-.97-.54-.8-1.08L14.62 7h-1.87c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'SeventeenMpRounded'); \ No newline at end of file +}, "1")], 'SeventeenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SeventeenMpSharp.js b/packages/material-ui-icons/lib/SeventeenMpSharp.js index c90cb3d0cb6266..1dc8b6747bb226 100644 --- a/packages/material-ui-icons/lib/SeventeenMpSharp.js +++ b/packages/material-ui-icons/lib/SeventeenMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm4 2.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM12 7V5.5h4.87l-1.87 6h-1.75L14.62 7H12zm6 10h-3v1.5h-1.5v-6H18V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'SeventeenMpSharp'); \ No newline at end of file +}, "1")], 'SeventeenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SeventeenMpTwoTone.js b/packages/material-ui-icons/lib/SeventeenMpTwoTone.js index 086e9e0644935d..9e72c1ff0afc87 100644 --- a/packages/material-ui-icons/lib/SeventeenMpTwoTone.js +++ b/packages/material-ui-icons/lib/SeventeenMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-8h3.5c.67 0 1.15.65.96 1.29L15 11.5h-1.75L14.62 7H12V5.5zm-5 0h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm4.75 0H15l1.46-4.71c.19-.64-.29-1.29-.96-1.29H12V7h2.62l-1.37 4.5z" -}, "4")], 'SeventeenMpTwoTone'); \ No newline at end of file +}, "4")], 'SeventeenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Share.js b/packages/material-ui-icons/lib/Share.js index 2c06e134af294b..b2b96ae090603d 100644 --- a/packages/material-ui-icons/lib/Share.js +++ b/packages/material-ui-icons/lib/Share.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z" -}), 'Share'); \ No newline at end of file +}), 'Share'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareLocation.js b/packages/material-ui-icons/lib/ShareLocation.js index e9239864fc0b5a..5c6ef228c3d50c 100644 --- a/packages/material-ui-icons/lib/ShareLocation.js +++ b/packages/material-ui-icons/lib/ShareLocation.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" -}, "1")], 'ShareLocation'); \ No newline at end of file +}, "1")], 'ShareLocation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareLocationOutlined.js b/packages/material-ui-icons/lib/ShareLocationOutlined.js index 1300e3fd253c71..57c48af9a0845e 100644 --- a/packages/material-ui-icons/lib/ShareLocationOutlined.js +++ b/packages/material-ui-icons/lib/ShareLocationOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" -}, "1")], 'ShareLocationOutlined'); \ No newline at end of file +}, "1")], 'ShareLocationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareLocationRounded.js b/packages/material-ui-icons/lib/ShareLocationRounded.js index b53970496eb5c1..15b03629e45c4b 100644 --- a/packages/material-ui-icons/lib/ShareLocationRounded.js +++ b/packages/material-ui-icons/lib/ShareLocationRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.02 20.77c0 .64.59 1.13 1.21.99 1.12-.26 2.18-.7 3.12-1.3.53-.34.61-1.1.16-1.55-.32-.32-.83-.4-1.21-.16-.77.49-1.62.85-2.53 1.05-.45.1-.75.51-.75.97zM4.03 12c0-3.79 2.65-6.97 6.2-7.79.44-.1.75-.51.75-.96 0-.64-.6-1.13-1.22-.98C5.33 3.29 2.03 7.26 2.03 12s3.3 8.71 7.73 9.74c.62.15 1.22-.34 1.22-.98 0-.46-.31-.86-.75-.96-3.55-.83-6.2-4.01-6.2-7.8zm16.76-1c.64 0 1.13-.59.99-1.21-.26-1.12-.7-2.17-1.3-3.12-.34-.54-1.1-.61-1.55-.16-.32.32-.4.83-.15 1.21.49.76.85 1.61 1.05 2.53.09.45.5.75.96.75zm-3.44-7.45c-.95-.6-2-1.04-3.12-1.3-.62-.14-1.21.35-1.21.98 0 .45.3.87.74.96.91.2 1.77.57 2.53 1.05.39.24.89.17 1.21-.16.46-.44.39-1.19-.15-1.53zm1.57 13.94c.45.45 1.21.38 1.55-.16.6-.94 1.04-2 1.3-3.12.14-.62-.35-1.21-.98-1.21-.45 0-.87.3-.96.74-.2.91-.57 1.77-1.05 2.53-.26.39-.18.9.14 1.22z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.51 1.1 3.28 3.31 5.3.39.36.98.36 1.38 0C14.9 14.37 16 12.61 16 11.1zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" -}, "1")], 'ShareLocationRounded'); \ No newline at end of file +}, "1")], 'ShareLocationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareLocationSharp.js b/packages/material-ui-icons/lib/ShareLocationSharp.js index d1345cc04338fc..dd2e31e9437b0d 100644 --- a/packages/material-ui-icons/lib/ShareLocationSharp.js +++ b/packages/material-ui-icons/lib/ShareLocationSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" -}, "1")], 'ShareLocationSharp'); \ No newline at end of file +}, "1")], 'ShareLocationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareLocationTwoTone.js b/packages/material-ui-icons/lib/ShareLocationTwoTone.js index 2200a09b8e39d0..6d9c479b38201d 100644 --- a/packages/material-ui-icons/lib/ShareLocationTwoTone.js +++ b/packages/material-ui-icons/lib/ShareLocationTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" -}, "1")], 'ShareLocationTwoTone'); \ No newline at end of file +}, "1")], 'ShareLocationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareOutlined.js b/packages/material-ui-icons/lib/ShareOutlined.js index fd405f28ecb51d..5de9c3e9c4252b 100644 --- a/packages/material-ui-icons/lib/ShareOutlined.js +++ b/packages/material-ui-icons/lib/ShareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'ShareOutlined'); \ No newline at end of file +}), 'ShareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareRounded.js b/packages/material-ui-icons/lib/ShareRounded.js index 2c906f7fc882b6..fdc66e0d6ba74b 100644 --- a/packages/material-ui-icons/lib/ShareRounded.js +++ b/packages/material-ui-icons/lib/ShareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z" -}), 'ShareRounded'); \ No newline at end of file +}), 'ShareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareSharp.js b/packages/material-ui-icons/lib/ShareSharp.js index 0225b3f226f871..140ab81e56dfb7 100644 --- a/packages/material-ui-icons/lib/ShareSharp.js +++ b/packages/material-ui-icons/lib/ShareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z" -}), 'ShareSharp'); \ No newline at end of file +}), 'ShareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShareTwoTone.js b/packages/material-ui-icons/lib/ShareTwoTone.js index cf034e6b9842c4..de694ec3c3dabc 100644 --- a/packages/material-ui-icons/lib/ShareTwoTone.js +++ b/packages/material-ui-icons/lib/ShareTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "5", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "12", r: "1", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "19.02", r: "1", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "3")], 'ShareTwoTone'); \ No newline at end of file +}, "3")], 'ShareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shield.js b/packages/material-ui-icons/lib/Shield.js index b86c01b82247cc..d2dbc004db80b2 100644 --- a/packages/material-ui-icons/lib/Shield.js +++ b/packages/material-ui-icons/lib/Shield.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" -}), 'Shield'); \ No newline at end of file +}), 'Shield'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShieldOutlined.js b/packages/material-ui-icons/lib/ShieldOutlined.js index bf853e0b3325e2..f4aba94d5a0220 100644 --- a/packages/material-ui-icons/lib/ShieldOutlined.js +++ b/packages/material-ui-icons/lib/ShieldOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" -}), 'ShieldOutlined'); \ No newline at end of file +}), 'ShieldOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShieldRounded.js b/packages/material-ui-icons/lib/ShieldRounded.js index e5c0cc61baba53..bfb03aab830448 100644 --- a/packages/material-ui-icons/lib/ShieldRounded.js +++ b/packages/material-ui-icons/lib/ShieldRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.3 2.26-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 4.83 3.13 9.37 7.43 10.75.37.12.77.12 1.14 0 4.3-1.38 7.43-5.91 7.43-10.75v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01z" -}), 'ShieldRounded'); \ No newline at end of file +}), 'ShieldRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShieldSharp.js b/packages/material-ui-icons/lib/ShieldSharp.js index 285ef63f499b82..2235deb0762baa 100644 --- a/packages/material-ui-icons/lib/ShieldSharp.js +++ b/packages/material-ui-icons/lib/ShieldSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" -}), 'ShieldSharp'); \ No newline at end of file +}), 'ShieldSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShieldTwoTone.js b/packages/material-ui-icons/lib/ShieldTwoTone.js index 04b0ee57eacfa9..80d80877b4b648 100644 --- a/packages/material-ui-icons/lib/ShieldTwoTone.js +++ b/packages/material-ui-icons/lib/ShieldTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25-6 2.25z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" -}, "1")], 'ShieldTwoTone'); \ No newline at end of file +}, "1")], 'ShieldTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shop.js b/packages/material-ui-icons/lib/Shop.js index 5aa6c8db00b36c..7f4e81815d4846 100644 --- a/packages/material-ui-icons/lib/Shop.js +++ b/packages/material-ui-icons/lib/Shop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z" -}), 'Shop'); \ No newline at end of file +}), 'Shop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shop2.js b/packages/material-ui-icons/lib/Shop2.js index af0995d841e7cd..10f0dbfc215258 100644 --- a/packages/material-ui-icons/lib/Shop2.js +++ b/packages/material-ui-icons/lib/Shop2.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z" -}, "1")], 'Shop2'); \ No newline at end of file +}, "1")], 'Shop2'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shop2Outlined.js b/packages/material-ui-icons/lib/Shop2Outlined.js index fcf7af3d745198..86d1539dad7866 100644 --- a/packages/material-ui-icons/lib/Shop2Outlined.js +++ b/packages/material-ui-icons/lib/Shop2Outlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8v7l5.5-3.5z" -}, "2")], 'Shop2Outlined'); \ No newline at end of file +}, "2")], 'Shop2Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shop2Rounded.js b/packages/material-ui-icons/lib/Shop2Rounded.js index 456fdfc7598b2f..190f7bbb89ed9a 100644 --- a/packages/material-ui-icons/lib/Shop2Rounded.js +++ b/packages/material-ui-icons/lib/Shop2Rounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H3V10c0-.55-.45-1-1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 11.09V8.91c0-.39.44-.63.77-.42l4.07 2.59c.31.2.31.65 0 .84l-4.07 2.59c-.33.21-.77-.03-.77-.42z" -}, "1")], 'Shop2Rounded'); \ No newline at end of file +}, "1")], 'Shop2Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shop2Sharp.js b/packages/material-ui-icons/lib/Shop2Sharp.js index 8d608d33200082..85159326e25d2e 100644 --- a/packages/material-ui-icons/lib/Shop2Sharp.js +++ b/packages/material-ui-icons/lib/Shop2Sharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v13h18v-2H3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V1h-8v4H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z" -}, "1")], 'Shop2Sharp'); \ No newline at end of file +}, "1")], 'Shop2Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shop2TwoTone.js b/packages/material-ui-icons/lib/Shop2TwoTone.js index a145459c2edb40..66f893bd644c43 100644 --- a/packages/material-ui-icons/lib/Shop2TwoTone.js +++ b/packages/material-ui-icons/lib/Shop2TwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 16h14V7H7v9zm5-8 5.5 3.5L12 15V8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8v7l5.5-3.5z" -}, "3")], 'Shop2TwoTone'); \ No newline at end of file +}, "3")], 'Shop2TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopOutlined.js b/packages/material-ui-icons/lib/ShopOutlined.js index 7f797b947fc778..31d7c5a20eaf7c 100644 --- a/packages/material-ui-icons/lib/ShopOutlined.js +++ b/packages/material-ui-icons/lib/ShopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z" -}), 'ShopOutlined'); \ No newline at end of file +}), 'ShopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopRounded.js b/packages/material-ui-icons/lib/ShopRounded.js index f526cc2c712dad..50a97c59cdb1c3 100644 --- a/packages/material-ui-icons/lib/ShopRounded.js +++ b/packages/material-ui-icons/lib/ShopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-4zm-6-2h4v2h-4V4zM9 17.07V9.83c0-.38.4-.62.74-.44l6.03 3.21c.33.18.36.65.04.86l-6.03 4.02c-.33.22-.78-.01-.78-.41z" -}), 'ShopRounded'); \ No newline at end of file +}), 'ShopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopSharp.js b/packages/material-ui-icons/lib/ShopSharp.js index 4dffd8638fdf36..bbce06232296eb 100644 --- a/packages/material-ui-icons/lib/ShopSharp.js +++ b/packages/material-ui-icons/lib/ShopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z" -}), 'ShopSharp'); \ No newline at end of file +}), 'ShopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopTwo.js b/packages/material-ui-icons/lib/ShopTwo.js index 5ad598fa1e754b..b4d6cd69901bb7 100644 --- a/packages/material-ui-icons/lib/ShopTwo.js +++ b/packages/material-ui-icons/lib/ShopTwo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z" -}), 'ShopTwo'); \ No newline at end of file +}), 'ShopTwo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopTwoOutlined.js b/packages/material-ui-icons/lib/ShopTwoOutlined.js index 749698a1e1fbd7..c01bf4be75890c 100644 --- a/packages/material-ui-icons/lib/ShopTwoOutlined.js +++ b/packages/material-ui-icons/lib/ShopTwoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1 5.5-4L12 8z" -}), 'ShopTwoOutlined'); \ No newline at end of file +}), 'ShopTwoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopTwoRounded.js b/packages/material-ui-icons/lib/ShopTwoRounded.js index 8f06abd4cee5e3..0db3729c92f347 100644 --- a/packages/material-ui-icons/lib/ShopTwoRounded.js +++ b/packages/material-ui-icons/lib/ShopTwoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h14c1.11 0 2-.89 2-2H4c-.55 0-1-.45-1-1v-9c0-.55-.45-1-1-1zm16-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3zm-6-2h4v2h-4V3zm0 11.02V8.84c0-.38.41-.62.74-.44l4.07 2.22c.32.18.35.63.05.84l-4.07 2.96c-.33.24-.79.01-.79-.4z" -}), 'ShopTwoRounded'); \ No newline at end of file +}), 'ShopTwoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopTwoSharp.js b/packages/material-ui-icons/lib/ShopTwoSharp.js index 3135ccb0a88c8e..787abca1d02ee4 100644 --- a/packages/material-ui-icons/lib/ShopTwoSharp.js +++ b/packages/material-ui-icons/lib/ShopTwoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v13h18v-2H3V9zm15-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z" -}), 'ShopTwoSharp'); \ No newline at end of file +}), 'ShopTwoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopTwoTone.js b/packages/material-ui-icons/lib/ShopTwoTone.js index 2ed29c6ac50f16..7fdad7d2a56eca 100644 --- a/packages/material-ui-icons/lib/ShopTwoTone.js +++ b/packages/material-ui-icons/lib/ShopTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h16V8H4v11zM9 9l7.5 4L9 18V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 9v9l7.5-5z" -}, "1")], 'ShopTwoTone'); \ No newline at end of file +}, "1")], 'ShopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShopTwoTwoTone.js b/packages/material-ui-icons/lib/ShopTwoTwoTone.js index 62e3911c2618dd..eaa0cf83999a4f 100644 --- a/packages/material-ui-icons/lib/ShopTwoTwoTone.js +++ b/packages/material-ui-icons/lib/ShopTwoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7v9h14V7H7zm5 8V8l5.5 3-5.5 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1 5.5-4L12 8z" -}, "1")], 'ShopTwoTwoTone'); \ No newline at end of file +}, "1")], 'ShopTwoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBag.js b/packages/material-ui-icons/lib/ShoppingBag.js index c978472cf75db0..8bef98d3896114 100644 --- a/packages/material-ui-icons/lib/ShoppingBag.js +++ b/packages/material-ui-icons/lib/ShoppingBag.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 4c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2zm2-6c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 6c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2z" -}), 'ShoppingBag'); \ No newline at end of file +}), 'ShoppingBag'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBagOutlined.js b/packages/material-ui-icons/lib/ShoppingBagOutlined.js index 40e3c7733426d6..17c353147f0473 100644 --- a/packages/material-ui-icons/lib/ShoppingBagOutlined.js +++ b/packages/material-ui-icons/lib/ShoppingBagOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6-2c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm6 16H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z" -}), 'ShoppingBagOutlined'); \ No newline at end of file +}), 'ShoppingBagOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBagRounded.js b/packages/material-ui-icons/lib/ShoppingBagRounded.js index d2fe0ac875b507..686ede83212908 100644 --- a/packages/material-ui-icons/lib/ShoppingBagRounded.js +++ b/packages/material-ui-icons/lib/ShoppingBagRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 4c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2zm2-6c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 6c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2z" -}), 'ShoppingBagRounded'); \ No newline at end of file +}), 'ShoppingBagRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBagSharp.js b/packages/material-ui-icons/lib/ShoppingBagSharp.js index 4b96640b72ae35..0a6c84de3523e7 100644 --- a/packages/material-ui-icons/lib/ShoppingBagSharp.js +++ b/packages/material-ui-icons/lib/ShoppingBagSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4c0-2.21-1.79-4-4-4S8 3.79 8 6H4v16h16V6zm-10 5H8V8h2v3zm2-7c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 7h-2V8h2v3z" -}), 'ShoppingBagSharp'); \ No newline at end of file +}), 'ShoppingBagSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBagTwoTone.js b/packages/material-ui-icons/lib/ShoppingBagTwoTone.js index 708c767c0a60c4..c85304d2c16a23 100644 --- a/packages/material-ui-icons/lib/ShoppingBagTwoTone.js +++ b/packages/material-ui-icons/lib/ShoppingBagTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6-2c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm6 16H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z" -}, "1")], 'ShoppingBagTwoTone'); \ No newline at end of file +}, "1")], 'ShoppingBagTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBasket.js b/packages/material-ui-icons/lib/ShoppingBasket.js index 9d8629c5475b15..191696b2550752 100644 --- a/packages/material-ui-icons/lib/ShoppingBasket.js +++ b/packages/material-ui-icons/lib/ShoppingBasket.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.21 9-4.38-6.56c-.19-.28-.51-.42-.83-.42-.32 0-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1h-4.79zM9 9l3-4.4L15 9H9zm3 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'ShoppingBasket'); \ No newline at end of file +}), 'ShoppingBasket'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBasketOutlined.js b/packages/material-ui-icons/lib/ShoppingBasketOutlined.js index aebfe3c1934267..beca96a4ff85d4 100644 --- a/packages/material-ui-icons/lib/ShoppingBasketOutlined.js +++ b/packages/material-ui-icons/lib/ShoppingBasketOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8 14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'ShoppingBasketOutlined'); \ No newline at end of file +}), 'ShoppingBasketOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBasketRounded.js b/packages/material-ui-icons/lib/ShoppingBasketRounded.js index 546bf761039901..273106add3e322 100644 --- a/packages/material-ui-icons/lib/ShoppingBasketRounded.js +++ b/packages/material-ui-icons/lib/ShoppingBasketRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9h-4.79l-4.39-6.57c-.4-.59-1.27-.59-1.66 0L6.77 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM11.99 4.79 14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'ShoppingBasketRounded'); \ No newline at end of file +}), 'ShoppingBasketRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBasketSharp.js b/packages/material-ui-icons/lib/ShoppingBasketSharp.js index 29b5ccf3165145..a1e501c18e5728 100644 --- a/packages/material-ui-icons/lib/ShoppingBasketSharp.js +++ b/packages/material-ui-icons/lib/ShoppingBasketSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.21 9-4.39-6.57c-.4-.59-1.27-.59-1.66 0L6.77 9H.69L4 21h16.02l3.29-12h-6.1zm-5.22-4.21L14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'ShoppingBasketSharp'); \ No newline at end of file +}), 'ShoppingBasketSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingBasketTwoTone.js b/packages/material-ui-icons/lib/ShoppingBasketTwoTone.js index b70a8320c61cb3..8b383ba53189ce 100644 --- a/packages/material-ui-icons/lib/ShoppingBasketTwoTone.js +++ b/packages/material-ui-icons/lib/ShoppingBasketTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.31 11 2.2 8.01L18.5 19l2.2-8H3.31zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8 14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}, "1")], 'ShoppingBasketTwoTone'); \ No newline at end of file +}, "1")], 'ShoppingBasketTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingCart.js b/packages/material-ui-icons/lib/ShoppingCart.js index 647ce50954b2d2..dfc0d025a9f7f1 100644 --- a/packages/material-ui-icons/lib/ShoppingCart.js +++ b/packages/material-ui-icons/lib/ShoppingCart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" -}), 'ShoppingCart'); \ No newline at end of file +}), 'ShoppingCart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingCartOutlined.js b/packages/material-ui-icons/lib/ShoppingCartOutlined.js index be0720343bf854..28080459e95bda 100644 --- a/packages/material-ui-icons/lib/ShoppingCartOutlined.js +++ b/packages/material-ui-icons/lib/ShoppingCartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" -}), 'ShoppingCartOutlined'); \ No newline at end of file +}), 'ShoppingCartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingCartRounded.js b/packages/material-ui-icons/lib/ShoppingCartRounded.js index 34f89a09ab48a4..e90f4540982cc1 100644 --- a/packages/material-ui-icons/lib/ShoppingCartRounded.js +++ b/packages/material-ui-icons/lib/ShoppingCartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 3c0 .55.45 1 1 1h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.67-1.43c-.16-.35-.52-.57-.9-.57H2c-.55 0-1 .45-1 1zm16 15c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" -}), 'ShoppingCartRounded'); \ No newline at end of file +}), 'ShoppingCartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingCartSharp.js b/packages/material-ui-icons/lib/ShoppingCartSharp.js index 88d720042c81b9..357998c872add0 100644 --- a/packages/material-ui-icons/lib/ShoppingCartSharp.js +++ b/packages/material-ui-icons/lib/ShoppingCartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 18c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm0-3 1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21.7 4H5.21l-.94-2H1v2h2l3.6 7.59L3.62 17H19v-2H7z" -}), 'ShoppingCartSharp'); \ No newline at end of file +}), 'ShoppingCartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShoppingCartTwoTone.js b/packages/material-ui-icons/lib/ShoppingCartTwoTone.js index dacea4b47a07dd..f095a7f154e677 100644 --- a/packages/material-ui-icons/lib/ShoppingCartTwoTone.js +++ b/packages/material-ui-icons/lib/ShoppingCartTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.55 11 2.76-5H6.16l2.37 5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" -}, "1")], 'ShoppingCartTwoTone'); \ No newline at end of file +}, "1")], 'ShoppingCartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortText.js b/packages/material-ui-icons/lib/ShortText.js index d8cff37bb60472..d0fe5765d08e3a 100644 --- a/packages/material-ui-icons/lib/ShortText.js +++ b/packages/material-ui-icons/lib/ShortText.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z" -}), 'ShortText'); \ No newline at end of file +}), 'ShortText'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortTextOutlined.js b/packages/material-ui-icons/lib/ShortTextOutlined.js index 844e8fa737793f..bfc3680025a169 100644 --- a/packages/material-ui-icons/lib/ShortTextOutlined.js +++ b/packages/material-ui-icons/lib/ShortTextOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z" -}), 'ShortTextOutlined'); \ No newline at end of file +}), 'ShortTextOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortTextRounded.js b/packages/material-ui-icons/lib/ShortTextRounded.js index 0431928ce7cc19..5dfb42412c4146 100644 --- a/packages/material-ui-icons/lib/ShortTextRounded.js +++ b/packages/material-ui-icons/lib/ShortTextRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 9h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 4h8c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'ShortTextRounded'); \ No newline at end of file +}), 'ShortTextRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortTextSharp.js b/packages/material-ui-icons/lib/ShortTextSharp.js index cfcead30f66241..35a636f853af52 100644 --- a/packages/material-ui-icons/lib/ShortTextSharp.js +++ b/packages/material-ui-icons/lib/ShortTextSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z" -}), 'ShortTextSharp'); \ No newline at end of file +}), 'ShortTextSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortTextTwoTone.js b/packages/material-ui-icons/lib/ShortTextTwoTone.js index 40eb2058d37091..554b4ba6dbd621 100644 --- a/packages/material-ui-icons/lib/ShortTextTwoTone.js +++ b/packages/material-ui-icons/lib/ShortTextTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h16v2H4zm0 4h10v2H4z" -}), 'ShortTextTwoTone'); \ No newline at end of file +}), 'ShortTextTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shortcut.js b/packages/material-ui-icons/lib/Shortcut.js index 101a8988f32e18..93e932cede92c6 100644 --- a/packages/material-ui-icons/lib/Shortcut.js +++ b/packages/material-ui-icons/lib/Shortcut.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 11-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z" -}), 'Shortcut'); \ No newline at end of file +}), 'Shortcut'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortcutOutlined.js b/packages/material-ui-icons/lib/ShortcutOutlined.js index 40dcfdb1607f67..d1f58566ff54f8 100644 --- a/packages/material-ui-icons/lib/ShortcutOutlined.js +++ b/packages/material-ui-icons/lib/ShortcutOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 5-1.41 1.41L15 7.83 17.17 10H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h9.17L15 14.17l-1.41 1.41L15 17l6-6-6-6z" -}), 'ShortcutOutlined'); \ No newline at end of file +}), 'ShortcutOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortcutRounded.js b/packages/material-ui-icons/lib/ShortcutRounded.js index d3f686e8fd2127..f2d6075e805332 100644 --- a/packages/material-ui-icons/lib/ShortcutRounded.js +++ b/packages/material-ui-icons/lib/ShortcutRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.29 10.29 16.7 6.7c-.62-.62-1.7-.18-1.7.71V10H8c-2.76 0-5 2.24-5 5v3c0 .55.45 1 1 1s1-.45 1-1v-3c0-1.65 1.35-3 3-3h7v2.59c0 .89 1.08 1.34 1.71.71l3.59-3.59c.38-.39.38-1.03-.01-1.42z" -}), 'ShortcutRounded'); \ No newline at end of file +}), 'ShortcutRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortcutSharp.js b/packages/material-ui-icons/lib/ShortcutSharp.js index 999defa7fcfd7d..f2a7420ecfcb26 100644 --- a/packages/material-ui-icons/lib/ShortcutSharp.js +++ b/packages/material-ui-icons/lib/ShortcutSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 11-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z" -}), 'ShortcutSharp'); \ No newline at end of file +}), 'ShortcutSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShortcutTwoTone.js b/packages/material-ui-icons/lib/ShortcutTwoTone.js index 77160f925767f8..35dae022c1261e 100644 --- a/packages/material-ui-icons/lib/ShortcutTwoTone.js +++ b/packages/material-ui-icons/lib/ShortcutTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 11-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z" -}), 'ShortcutTwoTone'); \ No newline at end of file +}), 'ShortcutTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowChart.js b/packages/material-ui-icons/lib/ShowChart.js index 83a95cc8b8afc8..3688fcedf75113 100644 --- a/packages/material-ui-icons/lib/ShowChart.js +++ b/packages/material-ui-icons/lib/ShowChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z" -}), 'ShowChart'); \ No newline at end of file +}), 'ShowChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowChartOutlined.js b/packages/material-ui-icons/lib/ShowChartOutlined.js index 89aabf2f65f448..0e170c1fbcab4d 100644 --- a/packages/material-ui-icons/lib/ShowChartOutlined.js +++ b/packages/material-ui-icons/lib/ShowChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z" -}), 'ShowChartOutlined'); \ No newline at end of file +}), 'ShowChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowChartRounded.js b/packages/material-ui-icons/lib/ShowChartRounded.js index 9c6c0cde09cfb8..9730e6abda4d33 100644 --- a/packages/material-ui-icons/lib/ShowChartRounded.js +++ b/packages/material-ui-icons/lib/ShowChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.2 17.78 5.3-5.3 3.25 3.25c.41.41 1.07.39 1.45-.04l7.17-8.07c.35-.39.33-.99-.04-1.37-.4-.4-1.07-.39-1.45.04l-6.39 7.18-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.09 6.1c-.39.39-.39 1.02 0 1.41l.09.09c.39.39 1.03.39 1.41 0z" -}), 'ShowChartRounded'); \ No newline at end of file +}), 'ShowChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowChartSharp.js b/packages/material-ui-icons/lib/ShowChartSharp.js index 344096132cfa4d..79219e2e7a272e 100644 --- a/packages/material-ui-icons/lib/ShowChartSharp.js +++ b/packages/material-ui-icons/lib/ShowChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z" -}), 'ShowChartSharp'); \ No newline at end of file +}), 'ShowChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowChartTwoTone.js b/packages/material-ui-icons/lib/ShowChartTwoTone.js index de2c95b4d1378f..d3ec14f5551946 100644 --- a/packages/material-ui-icons/lib/ShowChartTwoTone.js +++ b/packages/material-ui-icons/lib/ShowChartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.5 13.48-4-4L2 16.99l1.5 1.5 6-6.01 4 4L22 6.92l-1.41-1.41z" -}), 'ShowChartTwoTone'); \ No newline at end of file +}), 'ShowChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shower.js b/packages/material-ui-icons/lib/Shower.js index 0f52fcb4da4776..b1f77e0633517b 100644 --- a/packages/material-ui-icons/lib/Shower.js +++ b/packages/material-ui-icons/lib/Shower.js @@ -1,29 +1,42 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "17", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "17", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "20", r: "1" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "20", r: "1" -}, "6")], 'Shower'); \ No newline at end of file +}, "6")], 'Shower'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowerOutlined.js b/packages/material-ui-icons/lib/ShowerOutlined.js index f93dda95cf60e3..de8981e47bba65 100644 --- a/packages/material-ui-icons/lib/ShowerOutlined.js +++ b/packages/material-ui-icons/lib/ShowerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-4v2H5v-2c0-3.53 2.61-6.43 6-6.92V3h2v2.08c3.39.49 6 3.39 6 6.92zm-2 0c0-2.76-2.24-5-5-5s-5 2.24-5 5h10zm-9 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'ShowerOutlined'); \ No newline at end of file +}), 'ShowerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowerRounded.js b/packages/material-ui-icons/lib/ShowerRounded.js index 67fb1ef2d97d04..5e7bb1266ae0e0 100644 --- a/packages/material-ui-icons/lib/ShowerRounded.js +++ b/packages/material-ui-icons/lib/ShowerRounded.js @@ -1,29 +1,42 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "17", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "17", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.08V4c0-.55-.45-1-1-1s-1 .45-1 1v1.08C7.61 5.57 5 8.47 5 12v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1c0-3.53-2.61-6.43-6-6.92z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "20", r: "1" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "20", r: "1" -}, "6")], 'ShowerRounded'); \ No newline at end of file +}, "6")], 'ShowerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowerSharp.js b/packages/material-ui-icons/lib/ShowerSharp.js index 9add7e66b4941a..acc0442f8fb378 100644 --- a/packages/material-ui-icons/lib/ShowerSharp.js +++ b/packages/material-ui-icons/lib/ShowerSharp.js @@ -1,29 +1,42 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "17", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "17", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "20", r: "1" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "20", r: "1" -}, "6")], 'ShowerSharp'); \ No newline at end of file +}, "6")], 'ShowerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShowerTwoTone.js b/packages/material-ui-icons/lib/ShowerTwoTone.js index a76a3287f4298b..84244ab666269d 100644 --- a/packages/material-ui-icons/lib/ShowerTwoTone.js +++ b/packages/material-ui-icons/lib/ShowerTwoTone.js @@ -1,32 +1,45 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-2.76 0-5 2.24-5 5h10c0-2.76-2.24-5-5-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "20", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "17", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92zM7 12c0-2.76 2.24-5 5-5s5 2.24 5 5H7z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "20", r: "1" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "17", r: "1" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "17", r: "1" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "1" -}, "7")], 'ShowerTwoTone'); \ No newline at end of file +}, "7")], 'ShowerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Shuffle.js b/packages/material-ui-icons/lib/Shuffle.js index a3484d51297a09..034ffee8c09a6f 100644 --- a/packages/material-ui-icons/lib/Shuffle.js +++ b/packages/material-ui-icons/lib/Shuffle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" -}), 'Shuffle'); \ No newline at end of file +}), 'Shuffle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleOn.js b/packages/material-ui-icons/lib/ShuffleOn.js index 452fc2f380de2a..1bd354fad304e9 100644 --- a/packages/material-ui-icons/lib/ShuffleOn.js +++ b/packages/material-ui-icons/lib/ShuffleOn.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" -}), 'ShuffleOn'); \ No newline at end of file +}), 'ShuffleOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleOnOutlined.js b/packages/material-ui-icons/lib/ShuffleOnOutlined.js index 5e4eab2b621741..749ce17cf6a1fc 100644 --- a/packages/material-ui-icons/lib/ShuffleOnOutlined.js +++ b/packages/material-ui-icons/lib/ShuffleOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM5.41 4l5.18 5.17-1.41 1.42L4 5.42 5.41 4zM20 20h-6v-2h2.61l-3.2-3.2 1.42-1.42 3.13 3.13.04.04V14h2v6zm0-10h-2V7.42L5.41 20 4 18.59 16.58 6H14V4h6v6z" -}), 'ShuffleOnOutlined'); \ No newline at end of file +}), 'ShuffleOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleOnRounded.js b/packages/material-ui-icons/lib/ShuffleOnRounded.js index a37700dd04c08d..1ba8fcf1ee33da 100644 --- a/packages/material-ui-icons/lib/ShuffleOnRounded.js +++ b/packages/material-ui-icons/lib/ShuffleOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM4.3 4.7c.39-.39 1.02-.39 1.41 0l4.47 4.47-1.42 1.4L4.3 6.11a.9959.9959 0 0 1 0-1.41zm15.29 14.8c0 .28-.22.5-.5.5H15.3c-.45 0-.67-.54-.36-.85l1.2-1.2-3.13-3.13 1.41-1.41 3.13 3.14 1.19-1.19c.31-.32.85-.1.85.35v3.79zm0-11.21c0 .45-.54.67-.85.36l-1.19-1.19L5.7 19.29c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L16.13 6.04l-1.19-1.19c-.31-.31-.09-.85.36-.85h3.79c.28 0 .5.22.5.5v3.79z" -}), 'ShuffleOnRounded'); \ No newline at end of file +}), 'ShuffleOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleOnSharp.js b/packages/material-ui-icons/lib/ShuffleOnSharp.js index bdfbb41b746bee..56f5ab9e8e7494 100644 --- a/packages/material-ui-icons/lib/ShuffleOnSharp.js +++ b/packages/material-ui-icons/lib/ShuffleOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 1v22h22V1H1zm4.41 3 5.18 5.17-1.42 1.41L4 5.41 5.41 4zM20 20h-5.5l2.05-2.05-3.13-3.13 1.41-1.41 3.13 3.13L20 14.5V20zm0-10.5-2.04-2.04L5.41 20 4 18.59 16.54 6.04 14.5 4H20v5.5z" -}), 'ShuffleOnSharp'); \ No newline at end of file +}), 'ShuffleOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleOnTwoTone.js b/packages/material-ui-icons/lib/ShuffleOnTwoTone.js index 638d9d1ade8dea..5f14d7f40cdbf3 100644 --- a/packages/material-ui-icons/lib/ShuffleOnTwoTone.js +++ b/packages/material-ui-icons/lib/ShuffleOnTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM5.41 4l5.18 5.17-1.42 1.41L4 5.41 5.41 4zM20 20h-5.5l2.05-2.05-3.13-3.13 1.41-1.41 3.13 3.13L20 14.5V20zm0-10.5-2.04-2.04L5.41 20 4 18.59 16.54 6.04 14.5 4H20v5.5z" -}), 'ShuffleOnTwoTone'); \ No newline at end of file +}), 'ShuffleOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleOutlined.js b/packages/material-ui-icons/lib/ShuffleOutlined.js index 6fe163fc384191..60009a968694ee 100644 --- a/packages/material-ui-icons/lib/ShuffleOutlined.js +++ b/packages/material-ui-icons/lib/ShuffleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" -}), 'ShuffleOutlined'); \ No newline at end of file +}), 'ShuffleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleRounded.js b/packages/material-ui-icons/lib/ShuffleRounded.js index 6c278db3a70a48..3fc8d7e40c794d 100644 --- a/packages/material-ui-icons/lib/ShuffleRounded.js +++ b/packages/material-ui-icons/lib/ShuffleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 9.17 6.12 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.46 4.46 1.42-1.4zm4.76-4.32 1.19 1.19L4.7 17.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17.96 7.46l1.19 1.19c.31.31.85.09.85-.36V4.5c0-.28-.22-.5-.5-.5h-3.79c-.45 0-.67.54-.36.85zm-.52 8.56-1.41 1.41 3.13 3.13-1.2 1.2c-.31.31-.09.85.36.85h3.79c.28 0 .5-.22.5-.5v-3.79c0-.45-.54-.67-.85-.35l-1.19 1.19-3.13-3.14z" -}), 'ShuffleRounded'); \ No newline at end of file +}), 'ShuffleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleSharp.js b/packages/material-ui-icons/lib/ShuffleSharp.js index 91dd74079c2ad1..734ba355a5b628 100644 --- a/packages/material-ui-icons/lib/ShuffleSharp.js +++ b/packages/material-ui-icons/lib/ShuffleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" -}), 'ShuffleSharp'); \ No newline at end of file +}), 'ShuffleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShuffleTwoTone.js b/packages/material-ui-icons/lib/ShuffleTwoTone.js index f661567fa27a43..2e4911d7adefad 100644 --- a/packages/material-ui-icons/lib/ShuffleTwoTone.js +++ b/packages/material-ui-icons/lib/ShuffleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-5.5l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5zM5.41 4 4 5.41l5.17 5.17 1.42-1.41zM20 20v-5.5l-2.04 2.04-3.13-3.13-1.41 1.41 3.13 3.13L14.5 20z" -}), 'ShuffleTwoTone'); \ No newline at end of file +}), 'ShuffleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShutterSpeed.js b/packages/material-ui-icons/lib/ShutterSpeed.js index 956b610d70ba38..11d0b2ee347be5 100644 --- a/packages/material-ui-icons/lib/ShutterSpeed.js +++ b/packages/material-ui-icons/lib/ShutterSpeed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 1H9v2h6V1zm4.03 6.39 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" -}), 'ShutterSpeed'); \ No newline at end of file +}), 'ShutterSpeed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShutterSpeedOutlined.js b/packages/material-ui-icons/lib/ShutterSpeedOutlined.js index abff6c16799b72..6642bab799606f 100644 --- a/packages/material-ui-icons/lib/ShutterSpeedOutlined.js +++ b/packages/material-ui-icons/lib/ShutterSpeedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 1H9v2h6V1zm4.03 6.39 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" -}), 'ShutterSpeedOutlined'); \ No newline at end of file +}), 'ShutterSpeedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShutterSpeedRounded.js b/packages/material-ui-icons/lib/ShutterSpeedRounded.js index 7a127953f7952c..5be819996b2ccd 100644 --- a/packages/material-ui-icons/lib/ShutterSpeedRounded.js +++ b/packages/material-ui-icons/lib/ShutterSpeedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm9.03 4.39.75-.75c.38-.38.39-1.01 0-1.4l-.01-.01c-.39-.39-1.01-.38-1.4 0l-.75.75C16.07 4.74 14.12 4 12 4c-4.8 0-8.88 3.96-9 8.76C2.87 17.84 6.94 22 12 22c4.98 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.19-5h-3.7c-.38 0-.62.4-.45.74.56 1.12 1.44 2.01 2.57 2.57.23.11.52.02.65-.21l1.37-2.35c.19-.33-.05-.75-.44-.75zm3.92-7.35c-.23-.12-.52-.02-.65.2l-1.38 2.39c-.2.34.04.76.43.76h3.76c.38 0 .62-.4.45-.73-.58-1.13-1.49-2.04-2.61-2.62zm-.85 7.05c-.19-.34-.68-.35-.87-.01l-2.04 3.52c-.18.32.02.72.39.75 1.34.14 2.69-.18 3.83-.89.22-.14.28-.43.16-.66l-1.47-2.71zm-3.57-1.47L7.93 9.57c-.2-.3-.64-.3-.84 0-.81 1.16-1.17 2.57-1.05 3.98.02.26.24.45.5.45h3.35c.39 0 .63-.44.42-.77zm3.66-.49 2.02 3.74c.18.33.64.35.86.05.86-1.18 1.24-2.62 1.12-4.08-.02-.26-.25-.45-.5-.45h-3.05c-.39 0-.63.4-.45.74zm-3.8-1.57c.2.31.66.3.85-.02l1.94-3.35c.19-.32-.03-.72-.4-.76-1.36-.12-2.73.21-3.88.97-.22.15-.27.46-.13.68l1.62 2.48z" -}), 'ShutterSpeedRounded'); \ No newline at end of file +}), 'ShutterSpeedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShutterSpeedSharp.js b/packages/material-ui-icons/lib/ShutterSpeedSharp.js index bbff93e8ee26d6..f38a0f4d183560 100644 --- a/packages/material-ui-icons/lib/ShutterSpeedSharp.js +++ b/packages/material-ui-icons/lib/ShutterSpeedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 1H9v2h6V1zm4.03 6.39 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" -}), 'ShutterSpeedSharp'); \ No newline at end of file +}), 'ShutterSpeedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ShutterSpeedTwoTone.js b/packages/material-ui-icons/lib/ShutterSpeedTwoTone.js index 1b67422f35f58f..6a444bad229023 100644 --- a/packages/material-ui-icons/lib/ShutterSpeedTwoTone.js +++ b/packages/material-ui-icons/lib/ShutterSpeedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm0 1c.46 0 .9.06 1.33.15l-2.72 4.7-2.32-3.56C9.31 7.49 10.6 7 12 7zm-6 6c0-1.54.59-2.95 1.55-4.01L10.81 14H6.09c-.05-.33-.09-.66-.09-1zm.35 2h5.33l-2.03 3.5.11.06c-1.59-.64-2.84-1.94-3.41-3.56zM12 19c-.48 0-.94-.06-1.39-.17l2.85-4.92 2.11 3.9c-1 .74-2.23 1.19-3.57 1.19zm6-6c0 1.6-.63 3.06-1.66 4.13L13.57 12h4.34c.05.33.09.66.09 1zm-5.74-2 2.05-3.54c1.56.65 2.77 1.94 3.34 3.54h-5.39z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm6.76-1.53L12.26 11h5.39c-.57-1.6-1.78-2.89-3.34-3.54zm-.98-.31C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7zM11.68 15H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm7.35-7.61 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zM9 1h6v2H9zm7.34 16.13C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-5.73 1.7c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92z" -}, "1")], 'ShutterSpeedTwoTone'); \ No newline at end of file +}, "1")], 'ShutterSpeedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sick.js b/packages/material-ui-icons/lib/Sick.js index 7a15c339165761..effc5aeb38743e 100644 --- a/packages/material-ui-icons/lib/Sick.js +++ b/packages/material-ui-icons/lib/Sick.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 9c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2zm-3.5-2c0-.73.41-1.71.92-2.66C16.68 2.88 14.44 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12-1.93 0-3.5-1.57-3.5-3.5zm-1.88.38 1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06L13.5 9.5l2.12-2.12zm-8.3 1.06 1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06L8.38 9.5 7.32 8.44zM15.44 17c-.69-1.19-1.97-2-3.44-2s-2.75.81-3.44 2H6.88c.3-.76.76-1.43 1.34-1.99L5.24 13.3c-.45.26-1.01.28-1.49 0-.72-.41-.96-1.33-.55-2.05.41-.72 1.33-.96 2.05-.55.48.28.74.78.74 1.29l3.58 2.07c.73-.36 1.55-.56 2.43-.56 2.33 0 4.32 1.45 5.12 3.5h-1.68z" -}), 'Sick'); \ No newline at end of file +}), 'Sick'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SickOutlined.js b/packages/material-ui-icons/lib/SickOutlined.js index e35751144dd496..9a0dd8d71978f0 100644 --- a/packages/material-ui-icons/lib/SickOutlined.js +++ b/packages/material-ui-icons/lib/SickOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.32 10.56 8.38 9.5 7.32 8.44l1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06zM4.5 9c.03 0 .05.01.08.01C5.77 6.07 8.64 4 12 4c2.19 0 4.16.88 5.61 2.3.15-.6.45-1.29.81-1.96C16.68 2.88 14.44 2 11.99 2c-4.88 0-8.94 3.51-9.81 8.14C2.74 9.44 3.59 9 4.5 9zM21 10.5c-.42 0-.82-.09-1.19-.22.12.55.19 1.13.19 1.72 0 4.42-3.58 8-8 8-3.36 0-6.23-2.07-7.42-5.01-.03 0-.05.01-.08.01-.52 0-1.04-.14-1.5-.4-.32-.18-.59-.42-.82-.7.89 4.61 4.93 8.1 9.8 8.1C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12zM21 3s-2 2.9-2 4 .9 2 2 2 2-.9 2-2-2-4-2-4zm-5.38 4.38L13.5 9.5l2.12 2.12 1.06-1.06-1.06-1.06 1.06-1.06-1.06-1.06zM8.56 17c.69-1.19 1.97-2 3.44-2s2.75.81 3.44 2h1.68c-.8-2.05-2.79-3.5-5.12-3.5-.87 0-1.7.2-2.43.57L5.99 12c0-.52-.26-1.02-.74-1.29-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.63.55 2.05.48.28 1.05.25 1.49 0l2.97 1.72c-.57.53-1.03 1.21-1.33 1.97h1.68z" -}), 'SickOutlined'); \ No newline at end of file +}), 'SickOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SickRounded.js b/packages/material-ui-icons/lib/SickRounded.js index 24e915cfe70cb3..5e16e7afdd7567 100644 --- a/packages/material-ui-icons/lib/SickRounded.js +++ b/packages/material-ui-icons/lib/SickRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 7c0 1.1-.9 2-2 2s-2-.9-2-2c0-.78.99-2.44 1.58-3.36.2-.31.64-.31.84 0C22.01 4.56 23 6.22 23 7zm-1.14 3.38c.08.53.14 1.07.14 1.62 0 5.52-4.48 10-10.01 10C6.47 22 2 17.52 2 12S6.47 2 11.99 2c2.45 0 4.69.88 6.43 2.34-.51.95-.92 1.93-.92 2.66 0 1.93 1.57 3.5 3.5 3.5.3 0 .58-.05.86-.12zm-7.83-.35 1.06 1.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06s-.77-.29-1.06 0l-1.06 1.06c-.29.29-.29.77 0 1.06zM8.38 9.5l-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l1.06-1.06c.29-.29.29-.77 0-1.06L8.91 7.91c-.29-.29-.77-.29-1.06 0s-.29.77 0 1.06l.53.53zm8.09 6.3c-1-1.39-2.62-2.3-4.47-2.3-.87 0-1.69.2-2.43.56L5.99 12c0-.52-.26-1.02-.74-1.29-.8-.46-1.84-.11-2.17.8-.21.57-.03 1.25.44 1.64.52.44 1.2.45 1.72.16l2.97 1.72c-.25.24-.48.5-.68.78-.36.49 0 1.19.62 1.19.23 0 .46-.1.6-.3.72-1.02 1.9-1.7 3.25-1.7s2.53.68 3.25 1.7c.14.19.36.3.6.3.62 0 .98-.7.62-1.2z" -}), 'SickRounded'); \ No newline at end of file +}), 'SickRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SickSharp.js b/packages/material-ui-icons/lib/SickSharp.js index 6c4d682a13a805..cf0a7aa543da34 100644 --- a/packages/material-ui-icons/lib/SickSharp.js +++ b/packages/material-ui-icons/lib/SickSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 9c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2zm-3.5-2c0-.73.41-1.71.92-2.66C16.68 2.88 14.44 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12-1.93 0-3.5-1.57-3.5-3.5zm-1.88.38 1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06L13.5 9.5l2.12-2.12zm-8.3 1.06 1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06L8.38 9.5 7.32 8.44zM15.44 17c-.69-1.19-1.97-2-3.44-2s-2.75.81-3.44 2H6.88c.3-.76.76-1.43 1.34-1.99L5.24 13.3c-.45.26-1.01.28-1.49 0-.72-.41-.96-1.33-.55-2.05.41-.72 1.33-.96 2.05-.55.48.28.74.78.74 1.29l3.58 2.07c.73-.36 1.55-.56 2.43-.56 2.33 0 4.32 1.45 5.12 3.5h-1.68z" -}), 'SickSharp'); \ No newline at end of file +}), 'SickSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SickTwoTone.js b/packages/material-ui-icons/lib/SickTwoTone.js index 62df3b24d583b9..a3f34f9a8cce7d 100644 --- a/packages/material-ui-icons/lib/SickTwoTone.js +++ b/packages/material-ui-icons/lib/SickTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.32 10.56 8.38 9.5 7.32 8.44l1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06zM4.5 9c.03 0 .05.01.08.01C5.77 6.07 8.64 4 12 4c2.19 0 4.16.88 5.61 2.3.15-.6.45-1.29.81-1.96C16.68 2.88 14.44 2 11.99 2c-4.88 0-8.94 3.51-9.81 8.14C2.74 9.44 3.59 9 4.5 9zM21 10.5c-.42 0-.82-.09-1.19-.22.12.55.19 1.13.19 1.72 0 4.42-3.58 8-8 8-3.36 0-6.23-2.07-7.42-5.01-.03 0-.05.01-.08.01-.52 0-1.04-.14-1.5-.4-.32-.18-.59-.42-.82-.7.89 4.61 4.93 8.1 9.8 8.1C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12zM21 3s-2 2.9-2 4 .9 2 2 2 2-.9 2-2-2-4-2-4zm-5.38 4.38L13.5 9.5l2.12 2.12 1.06-1.06-1.06-1.06 1.06-1.06-1.06-1.06zM8.56 17c.69-1.19 1.97-2 3.44-2s2.75.81 3.44 2h1.68c-.8-2.05-2.79-3.5-5.12-3.5-.87 0-1.7.2-2.43.57L5.99 12c0-.52-.26-1.02-.74-1.29-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.63.55 2.05.48.28 1.05.25 1.49 0l2.97 1.72c-.57.53-1.03 1.21-1.33 1.97h1.68z" -}), 'SickTwoTone'); \ No newline at end of file +}), 'SickTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular0Bar.js b/packages/material-ui-icons/lib/SignalCellular0Bar.js index 952d7ac51a85ac..b5d0d43935c201 100644 --- a/packages/material-ui-icons/lib/SignalCellular0Bar.js +++ b/packages/material-ui-icons/lib/SignalCellular0Bar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" -}), 'SignalCellular0Bar'); \ No newline at end of file +}), 'SignalCellular0Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular0BarOutlined.js b/packages/material-ui-icons/lib/SignalCellular0BarOutlined.js index 9943fa9f67b037..56c65277a37184 100644 --- a/packages/material-ui-icons/lib/SignalCellular0BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellular0BarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z" -}), 'SignalCellular0BarOutlined'); \ No newline at end of file +}), 'SignalCellular0BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular0BarRounded.js b/packages/material-ui-icons/lib/SignalCellular0BarRounded.js index 0a294e4a4a2106..a829a39018860b 100644 --- a/packages/material-ui-icons/lib/SignalCellular0BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellular0BarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.41 22H21c.55 0 1-.45 1-1V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71zM20 20H6.83L20 6.83V20z" -}), 'SignalCellular0BarRounded'); \ No newline at end of file +}), 'SignalCellular0BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular0BarSharp.js b/packages/material-ui-icons/lib/SignalCellular0BarSharp.js index 694c63703b7ae5..fd2838e916a4c1 100644 --- a/packages/material-ui-icons/lib/SignalCellular0BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellular0BarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z" -}), 'SignalCellular0BarSharp'); \ No newline at end of file +}), 'SignalCellular0BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular0BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellular0BarTwoTone.js index 2651122c46a65f..75c4e89e0ce7af 100644 --- a/packages/material-ui-icons/lib/SignalCellular0BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellular0BarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z" -}), 'SignalCellular0BarTwoTone'); \ No newline at end of file +}), 'SignalCellular0BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular1Bar.js b/packages/material-ui-icons/lib/SignalCellular1Bar.js index 9d119330bcfa02..6c0d187144684e 100644 --- a/packages/material-ui-icons/lib/SignalCellular1Bar.js +++ b/packages/material-ui-icons/lib/SignalCellular1Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12L2 22h10z" })] -}), 'SignalCellular1Bar'); \ No newline at end of file +}), 'SignalCellular1Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular1BarOutlined.js b/packages/material-ui-icons/lib/SignalCellular1BarOutlined.js index 0ff2b781e5e3e2..a5acde88cb524e 100644 --- a/packages/material-ui-icons/lib/SignalCellular1BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellular1BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12L2 22h10V12z" })] -}), 'SignalCellular1BarOutlined'); \ No newline at end of file +}), 'SignalCellular1BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular1BarRounded.js b/packages/material-ui-icons/lib/SignalCellular1BarRounded.js index e34d46204938bf..4d5c57d4afea79 100644 --- a/packages/material-ui-icons/lib/SignalCellular1BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellular1BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12l-8.29 8.29c-.63.63-.19 1.71.7 1.71H12V12z" })] -}), 'SignalCellular1BarRounded'); \ No newline at end of file +}), 'SignalCellular1BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular1BarSharp.js b/packages/material-ui-icons/lib/SignalCellular1BarSharp.js index 84e4c74c66ccc6..726eb5a4f4b447 100644 --- a/packages/material-ui-icons/lib/SignalCellular1BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellular1BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12L2 22h10V12z" })] -}), 'SignalCellular1BarSharp'); \ No newline at end of file +}), 'SignalCellular1BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular1BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellular1BarTwoTone.js index c9f28381a91c54..0183307fd65aff 100644 --- a/packages/material-ui-icons/lib/SignalCellular1BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellular1BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 12L2 22h10V12z" })] -}), 'SignalCellular1BarTwoTone'); \ No newline at end of file +}), 'SignalCellular1BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular2Bar.js b/packages/material-ui-icons/lib/SignalCellular2Bar.js index 730b2b25ef9090..3e897027ee0770 100644 --- a/packages/material-ui-icons/lib/SignalCellular2Bar.js +++ b/packages/material-ui-icons/lib/SignalCellular2Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10L2 22h12z" })] -}), 'SignalCellular2Bar'); \ No newline at end of file +}), 'SignalCellular2Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular2BarOutlined.js b/packages/material-ui-icons/lib/SignalCellular2BarOutlined.js index 02cd0bfd982291..9bf26cbf4d843b 100644 --- a/packages/material-ui-icons/lib/SignalCellular2BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellular2BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10L2 22h12V10z" })] -}), 'SignalCellular2BarOutlined'); \ No newline at end of file +}), 'SignalCellular2BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular2BarRounded.js b/packages/material-ui-icons/lib/SignalCellular2BarRounded.js index 3e1b5a107eae94..35e9e243d6fd2b 100644 --- a/packages/material-ui-icons/lib/SignalCellular2BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellular2BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10L3.71 20.29c-.63.63-.19 1.71.7 1.71H14V10z" })] -}), 'SignalCellular2BarRounded'); \ No newline at end of file +}), 'SignalCellular2BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular2BarSharp.js b/packages/material-ui-icons/lib/SignalCellular2BarSharp.js index a3d39091e91416..f7d0e3297d856e 100644 --- a/packages/material-ui-icons/lib/SignalCellular2BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellular2BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10L2 22h12V10z" })] -}), 'SignalCellular2BarSharp'); \ No newline at end of file +}), 'SignalCellular2BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular2BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellular2BarTwoTone.js index ef7299ba1b7db6..3151fb3ba6c3c3 100644 --- a/packages/material-ui-icons/lib/SignalCellular2BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellular2BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10L2 22h12V10z" })] -}), 'SignalCellular2BarTwoTone'); \ No newline at end of file +}), 'SignalCellular2BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular3Bar.js b/packages/material-ui-icons/lib/SignalCellular3Bar.js index 26204011aa0d08..c43338db2a7dd8 100644 --- a/packages/material-ui-icons/lib/SignalCellular3Bar.js +++ b/packages/material-ui-icons/lib/SignalCellular3Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7L2 22h15z" })] -}), 'SignalCellular3Bar'); \ No newline at end of file +}), 'SignalCellular3Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular3BarOutlined.js b/packages/material-ui-icons/lib/SignalCellular3BarOutlined.js index 48b046fe7c4635..f27262c0fb62bc 100644 --- a/packages/material-ui-icons/lib/SignalCellular3BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellular3BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7L2 22h15V7z" })] -}), 'SignalCellular3BarOutlined'); \ No newline at end of file +}), 'SignalCellular3BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular3BarRounded.js b/packages/material-ui-icons/lib/SignalCellular3BarRounded.js index 3f6911d7e85b58..2c16ac13c89cdc 100644 --- a/packages/material-ui-icons/lib/SignalCellular3BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellular3BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7L3.71 20.29c-.63.63-.19 1.71.7 1.71H17V7z" })] -}), 'SignalCellular3BarRounded'); \ No newline at end of file +}), 'SignalCellular3BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular3BarSharp.js b/packages/material-ui-icons/lib/SignalCellular3BarSharp.js index 236a0d24f61a6f..5b8a9d69f03427 100644 --- a/packages/material-ui-icons/lib/SignalCellular3BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellular3BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7L2 22h15V7z" })] -}), 'SignalCellular3BarSharp'); \ No newline at end of file +}), 'SignalCellular3BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular3BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellular3BarTwoTone.js index 757af809213eba..dbe7ad2c86a257 100644 --- a/packages/material-ui-icons/lib/SignalCellular3BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellular3BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M2 22h20V2L2 22z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7L2 22h15V7z" })] -}), 'SignalCellular3BarTwoTone'); \ No newline at end of file +}), 'SignalCellular3BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular4Bar.js b/packages/material-ui-icons/lib/SignalCellular4Bar.js index 7056dfd5794439..7ca0f41edb8d30 100644 --- a/packages/material-ui-icons/lib/SignalCellular4Bar.js +++ b/packages/material-ui-icons/lib/SignalCellular4Bar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2z" -}), 'SignalCellular4Bar'); \ No newline at end of file +}), 'SignalCellular4Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular4BarOutlined.js b/packages/material-ui-icons/lib/SignalCellular4BarOutlined.js index 67d97237c5f662..cfc7c5a0a9031e 100644 --- a/packages/material-ui-icons/lib/SignalCellular4BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellular4BarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22z" -}), 'SignalCellular4BarOutlined'); \ No newline at end of file +}), 'SignalCellular4BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular4BarRounded.js b/packages/material-ui-icons/lib/SignalCellular4BarRounded.js index 88c3d1d2eee45a..12b516701160c4 100644 --- a/packages/material-ui-icons/lib/SignalCellular4BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellular4BarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" -}), 'SignalCellular4BarRounded'); \ No newline at end of file +}), 'SignalCellular4BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular4BarSharp.js b/packages/material-ui-icons/lib/SignalCellular4BarSharp.js index 277109c84d41b9..bf22c18bb7fb51 100644 --- a/packages/material-ui-icons/lib/SignalCellular4BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellular4BarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22z" -}), 'SignalCellular4BarSharp'); \ No newline at end of file +}), 'SignalCellular4BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellular4BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellular4BarTwoTone.js index 42dd52f2c942e9..26d426915a8ea4 100644 --- a/packages/material-ui-icons/lib/SignalCellular4BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellular4BarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 22h20V2L2 22z" -}), 'SignalCellular4BarTwoTone'); \ No newline at end of file +}), 'SignalCellular4BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularAlt.js b/packages/material-ui-icons/lib/SignalCellularAlt.js index 97dcdfc84f0851..2ea59ef0e09539 100644 --- a/packages/material-ui-icons/lib/SignalCellularAlt.js +++ b/packages/material-ui-icons/lib/SignalCellularAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h3v16h-3zM5 14h3v6H5zm6-5h3v11h-3z" -}), 'SignalCellularAlt'); \ No newline at end of file +}), 'SignalCellularAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularAltOutlined.js b/packages/material-ui-icons/lib/SignalCellularAltOutlined.js index 91a634295f4bda..b411d02fb6f9ac 100644 --- a/packages/material-ui-icons/lib/SignalCellularAltOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" -}), 'SignalCellularAltOutlined'); \ No newline at end of file +}), 'SignalCellularAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularAltRounded.js b/packages/material-ui-icons/lib/SignalCellularAltRounded.js index 39dd5f28f07711..8280a7da8f8ad4 100644 --- a/packages/material-ui-icons/lib/SignalCellularAltRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 4c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-13c0-.83.67-1.5 1.5-1.5zm-12 10c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5S5 19.33 5 18.5v-3c0-.83.67-1.5 1.5-1.5zm6-5c.83 0 1.5.67 1.5 1.5v8c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-8c0-.83.67-1.5 1.5-1.5z" -}), 'SignalCellularAltRounded'); \ No newline at end of file +}), 'SignalCellularAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularAltSharp.js b/packages/material-ui-icons/lib/SignalCellularAltSharp.js index 2346e29bcc99c1..62ce62c8fb28f8 100644 --- a/packages/material-ui-icons/lib/SignalCellularAltSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" -}), 'SignalCellularAltSharp'); \ No newline at end of file +}), 'SignalCellularAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularAltTwoTone.js b/packages/material-ui-icons/lib/SignalCellularAltTwoTone.js index 2522d052d5708b..8d538e3f342198 100644 --- a/packages/material-ui-icons/lib/SignalCellularAltTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" -}), 'SignalCellularAltTwoTone'); \ No newline at end of file +}), 'SignalCellularAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0Bar.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0Bar.js index 7388f6ba3bd7ba..47eb43739be574 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0Bar.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0Bar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" -}), 'SignalCellularConnectedNoInternet0Bar'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet0Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarOutlined.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarOutlined.js index a5942a516d3657..3b7dd15dbbbd65 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" -}), 'SignalCellularConnectedNoInternet0BarOutlined'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet0BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarRounded.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarRounded.js index fa422d06e5444b..9f430c29e0b7fd 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 18c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3-2v2H2L22 2v6h-2V6.83L6.83 20H18z" -}), 'SignalCellularConnectedNoInternet0BarRounded'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet0BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarSharp.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarSharp.js index c658b5bbff2297..ccb65c695eaaf9 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" -}), 'SignalCellularConnectedNoInternet0BarSharp'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet0BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarTwoTone.js index 94f2d1da9beec4..c75837f3ddb990 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet0BarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" -}), 'SignalCellularConnectedNoInternet0BarTwoTone'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet0BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1Bar.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1Bar.js index e2e9a38883ffde..84a0980ecbb85d 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1Bar.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet1Bar'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet1Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarOutlined.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarOutlined.js index 2cd96bbbec1d7b..e090f19686a6f6 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet1BarOutlined'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet1BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarRounded.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarRounded.js index 6367cec6efd34c..f96b2a53e8280e 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H18V11c0-1.66 1.34-3 3-3h1z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1zm-8 11V12l-8.29 8.29c-.63.63-.19 1.71.7 1.71H12zm8 0h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet1BarRounded'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet1BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarSharp.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarSharp.js index a62c3b6a569b7f..b15a8c20029eab 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet1BarSharp'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet1BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarTwoTone.js index 26a786bd5b329e..cd3f6b66f863b4 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet1BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet1BarTwoTone'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet1BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2Bar.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2Bar.js index cfae170f67ae3a..f36ae623d0bc19 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2Bar.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet2Bar'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet2Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarOutlined.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarOutlined.js index efb461e153af57..f8d8c6719a0ee1 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet2BarOutlined'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet2BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarRounded.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarRounded.js index 7bf27fb73a40cd..2aa7e84b5d0922 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H18V11c0-1.66 1.34-3 3-3h1z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 22V10L3.71 20.29c-.63.63-.19 1.71.7 1.71H14zm6-11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1zm0 11h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet2BarRounded'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet2BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarSharp.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarSharp.js index 635d17193850f5..2434af928b4ce3 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet2BarSharp'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet2BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarTwoTone.js index 647d929cee9558..54393ec031aced 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet2BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet2BarTwoTone'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet2BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3Bar.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3Bar.js index c72e5f7ece5157..5e9da417a1d7f1 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3Bar.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 22V7L2 22h15zm3-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet3Bar'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet3Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarOutlined.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarOutlined.js index c9469ce86611a5..471dd11c110f17 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet3BarOutlined'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet3BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarRounded.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarRounded.js index 46b1065ee532a7..005e7b8c92c04f 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H18V11c0-1.66 1.34-3 3-3h1z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 22V6L3.71 20.29c-.63.63-.19 1.71.7 1.71H18zm2-11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1zm0 11h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet3BarRounded'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet3BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarSharp.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarSharp.js index 6ee9d832b78632..d1d9d04baabea1 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet3BarSharp'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet3BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarTwoTone.js index 5746bd193d597f..3d8f2ecdaf6bdf 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet3BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M22 8V2L2 22h16V8h4z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" })] -}), 'SignalCellularConnectedNoInternet3BarTwoTone'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet3BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4Bar.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4Bar.js index 987100c14b8a17..4ec1471914cd86 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4Bar.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4Bar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" -}), 'SignalCellularConnectedNoInternet4Bar'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet4Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarOutlined.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarOutlined.js index e4f83850fb61bb..bf7918aa33d963 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" -}), 'SignalCellularConnectedNoInternet4BarOutlined'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet4BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarRounded.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarRounded.js index 28dfe3b446140b..00790be09367da 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 18c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4.41 22H18V11c0-1.66 1.34-3 3-3h1V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" -}), 'SignalCellularConnectedNoInternet4BarRounded'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet4BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarSharp.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarSharp.js index 163af5eb4cccf5..ab8c54d7c385ef 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" -}), 'SignalCellularConnectedNoInternet4BarSharp'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet4BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarTwoTone.js b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarTwoTone.js index 3d0b27bf3d430e..6a27da3ba8afa4 100644 --- a/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularConnectedNoInternet4BarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" -}), 'SignalCellularConnectedNoInternet4BarTwoTone'); \ No newline at end of file +}), 'SignalCellularConnectedNoInternet4BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNoSim.js b/packages/material-ui-icons/lib/SignalCellularNoSim.js index 0df78c3c20202a..72465c7e007619 100644 --- a/packages/material-ui-icons/lib/SignalCellularNoSim.js +++ b/packages/material-ui-icons/lib/SignalCellularNoSim.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88 2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z" -}), 'SignalCellularNoSim'); \ No newline at end of file +}), 'SignalCellularNoSim'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNoSimOutlined.js b/packages/material-ui-icons/lib/SignalCellularNoSimOutlined.js index 1ca91be73e5035..ac6d452336cb12 100644 --- a/packages/material-ui-icons/lib/SignalCellularNoSimOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularNoSimOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z" -}), 'SignalCellularNoSimOutlined'); \ No newline at end of file +}), 'SignalCellularNoSimOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNoSimRounded.js b/packages/material-ui-icons/lib/SignalCellularNoSimRounded.js index ec8db661ed1d4e..c75c1cee021280 100644 --- a/packages/material-ui-icons/lib/SignalCellularNoSimRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularNoSimRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5c0-1.1-.9-2-2-2h-6.17c-.53 0-1.04.21-1.42.59L7.95 5.06 19 16.11V5zM3.09 4.44c-.39.39-.39 1.02 0 1.41L5 7.78V19c0 1.11.9 2 2 2h11.23l.91.91c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.5 4.44a.9959.9959 0 0 0-1.41 0z" -}), 'SignalCellularNoSimRounded'); \ No newline at end of file +}), 'SignalCellularNoSimRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNoSimSharp.js b/packages/material-ui-icons/lib/SignalCellularNoSimSharp.js index 94d0201bc1807d..19acac4e32823c 100644 --- a/packages/material-ui-icons/lib/SignalCellularNoSimSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularNoSimSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-9L7.95 5.06 19 16.11zm-15.21.74L2.38 5.15 5 7.77V21h13.23l1.62 1.62 1.41-1.41z" -}), 'SignalCellularNoSimSharp'); \ No newline at end of file +}), 'SignalCellularNoSimSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNoSimTwoTone.js b/packages/material-ui-icons/lib/SignalCellularNoSimTwoTone.js index 58def058e13800..782dd667bf1588 100644 --- a/packages/material-ui-icons/lib/SignalCellularNoSimTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularNoSimTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.83 5 9.36 6.47 17 14.11V5zM7 9.79V19h9.23z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z" -}, "1")], 'SignalCellularNoSimTwoTone'); \ No newline at end of file +}, "1")], 'SignalCellularNoSimTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNodata.js b/packages/material-ui-icons/lib/SignalCellularNodata.js index 9bf37d4b26c79b..d45c580b14f657 100644 --- a/packages/material-ui-icons/lib/SignalCellularNodata.js +++ b/packages/material-ui-icons/lib/SignalCellularNodata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" -}), 'SignalCellularNodata'); \ No newline at end of file +}), 'SignalCellularNodata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNodataOutlined.js b/packages/material-ui-icons/lib/SignalCellularNodataOutlined.js index 4bcd584bfa8174..6a2c95bb4c9b9b 100644 --- a/packages/material-ui-icons/lib/SignalCellularNodataOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularNodataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" -}), 'SignalCellularNodataOutlined'); \ No newline at end of file +}), 'SignalCellularNodataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNodataRounded.js b/packages/material-ui-icons/lib/SignalCellularNodataRounded.js index e1b603391a8c4e..9dde8b9fc94a8c 100644 --- a/packages/material-ui-icons/lib/SignalCellularNodataRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularNodataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-7c-1.1 0-2 .9-2 2v7H4.41c-.89 0-1.34-1.08-.71-1.71L20.29 3.71c.63-.63 1.71-.19 1.71.7V13zm-1.7 1.71a.9959.9959 0 0 0-1.41 0L17.5 16.1l-1.39-1.39a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.39 1.39-1.39 1.39c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.39-1.38 1.39 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.38-1.39 1.38-1.39c.39-.39.39-1.02 0-1.41z" -}), 'SignalCellularNodataRounded'); \ No newline at end of file +}), 'SignalCellularNodataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNodataSharp.js b/packages/material-ui-icons/lib/SignalCellularNodataSharp.js index a34264bf342ec1..f786f427c8a777 100644 --- a/packages/material-ui-icons/lib/SignalCellularNodataSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularNodataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" -}), 'SignalCellularNodataSharp'); \ No newline at end of file +}), 'SignalCellularNodataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNodataTwoTone.js b/packages/material-ui-icons/lib/SignalCellularNodataTwoTone.js index 2ae21c54322bc0..a83786f630cc26 100644 --- a/packages/material-ui-icons/lib/SignalCellularNodataTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularNodataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" -}), 'SignalCellularNodataTwoTone'); \ No newline at end of file +}), 'SignalCellularNodataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNull.js b/packages/material-ui-icons/lib/SignalCellularNull.js index beca250c0c2e46..1edda64426920e 100644 --- a/packages/material-ui-icons/lib/SignalCellularNull.js +++ b/packages/material-ui-icons/lib/SignalCellularNull.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" -}), 'SignalCellularNull'); \ No newline at end of file +}), 'SignalCellularNull'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNullOutlined.js b/packages/material-ui-icons/lib/SignalCellularNullOutlined.js index 1a15f5b446a74a..d82bcc42fa318a 100644 --- a/packages/material-ui-icons/lib/SignalCellularNullOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularNullOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" -}), 'SignalCellularNullOutlined'); \ No newline at end of file +}), 'SignalCellularNullOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNullRounded.js b/packages/material-ui-icons/lib/SignalCellularNullRounded.js index 835bebdd646682..e8157ce6ab7c2f 100644 --- a/packages/material-ui-icons/lib/SignalCellularNullRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularNullRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.83V19c0 .55-.45 1-1 1H6.83L20 6.83m.29-3.12L3.71 20.29c-.63.63-.19 1.71.7 1.71H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.33-1.71-.7z" -}), 'SignalCellularNullRounded'); \ No newline at end of file +}), 'SignalCellularNullRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNullSharp.js b/packages/material-ui-icons/lib/SignalCellularNullSharp.js index dbbaf4d9928d9f..7f8c6c14b7bb5b 100644 --- a/packages/material-ui-icons/lib/SignalCellularNullSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularNullSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" -}), 'SignalCellularNullSharp'); \ No newline at end of file +}), 'SignalCellularNullSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularNullTwoTone.js b/packages/material-ui-icons/lib/SignalCellularNullTwoTone.js index 1aae162a046560..d9afeee2064873 100644 --- a/packages/material-ui-icons/lib/SignalCellularNullTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularNullTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" -}), 'SignalCellularNullTwoTone'); \ No newline at end of file +}), 'SignalCellularNullTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularOff.js b/packages/material-ui-icons/lib/SignalCellularOff.js index 67971bdb1bb386..3dbb5530854b9e 100644 --- a/packages/material-ui-icons/lib/SignalCellularOff.js +++ b/packages/material-ui-icons/lib/SignalCellularOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 1-8.59 8.59L21 18.18V1zM4.77 4.5 3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73 4.77 4.5z" -}), 'SignalCellularOff'); \ No newline at end of file +}), 'SignalCellularOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularOffOutlined.js b/packages/material-ui-icons/lib/SignalCellularOffOutlined.js index 5feec7d94a1d94..3e6a01ef36c91a 100644 --- a/packages/material-ui-icons/lib/SignalCellularOffOutlined.js +++ b/packages/material-ui-icons/lib/SignalCellularOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 1-8.31 8.31 8.31 8.3zM4.91 4.36 3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" -}), 'SignalCellularOffOutlined'); \ No newline at end of file +}), 'SignalCellularOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularOffRounded.js b/packages/material-ui-icons/lib/SignalCellularOffRounded.js index 6eb1b33a00bd19..1bfd7f1008d6bd 100644 --- a/packages/material-ui-icons/lib/SignalCellularOffRounded.js +++ b/packages/material-ui-icons/lib/SignalCellularOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3.41c0-.89-1.08-1.34-1.71-.71l-6.6 6.6L21 17.61V3.41zm.44 17.47L5.62 5.06a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l5.66 5.66-7.16 7.16c-.63.63-.19 1.71.7 1.71h15.32l1.29 1.29c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" -}), 'SignalCellularOffRounded'); \ No newline at end of file +}), 'SignalCellularOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularOffSharp.js b/packages/material-ui-icons/lib/SignalCellularOffSharp.js index 1bbf84547e14b5..c8b5c3bb43a2fd 100644 --- a/packages/material-ui-icons/lib/SignalCellularOffSharp.js +++ b/packages/material-ui-icons/lib/SignalCellularOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 1-8.31 8.31 8.31 8.3zM4.91 4.36 3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" -}), 'SignalCellularOffSharp'); \ No newline at end of file +}), 'SignalCellularOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalCellularOffTwoTone.js b/packages/material-ui-icons/lib/SignalCellularOffTwoTone.js index 8e8a385e5b8ecb..9be0849de75d84 100644 --- a/packages/material-ui-icons/lib/SignalCellularOffTwoTone.js +++ b/packages/material-ui-icons/lib/SignalCellularOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 1-8.31 8.31 8.31 8.3zM4.91 4.36 3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" -}), 'SignalCellularOffTwoTone'); \ No newline at end of file +}), 'SignalCellularOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi0Bar.js b/packages/material-ui-icons/lib/SignalWifi0Bar.js index 5d6d58fa2e37ce..08acdc677dcc66 100644 --- a/packages/material-ui-icons/lib/SignalWifi0Bar.js +++ b/packages/material-ui-icons/lib/SignalWifi0Bar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.33 0 6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1C5.51 7.08 8.67 6 12 6m0-2C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" -}), 'SignalWifi0Bar'); \ No newline at end of file +}), 'SignalWifi0Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi0BarOutlined.js b/packages/material-ui-icons/lib/SignalWifi0BarOutlined.js index 8a64f239abfdad..dc7162d93500f2 100644 --- a/packages/material-ui-icons/lib/SignalWifi0BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi0BarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifi0BarOutlined'); \ No newline at end of file +}), 'SignalWifi0BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi0BarRounded.js b/packages/material-ui-icons/lib/SignalWifi0BarRounded.js index e5c4586846aebb..2d9403aa3e93b2 100644 --- a/packages/material-ui-icons/lib/SignalWifi0BarRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi0BarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifi0BarRounded'); \ No newline at end of file +}), 'SignalWifi0BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi0BarSharp.js b/packages/material-ui-icons/lib/SignalWifi0BarSharp.js index 5eaca8e3ba262e..b2145da0d89bca 100644 --- a/packages/material-ui-icons/lib/SignalWifi0BarSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi0BarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifi0BarSharp'); \ No newline at end of file +}), 'SignalWifi0BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi0BarTwoTone.js b/packages/material-ui-icons/lib/SignalWifi0BarTwoTone.js index dd2fdf751dd62a..1d8e968ce692f0 100644 --- a/packages/material-ui-icons/lib/SignalWifi0BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi0BarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifi0BarTwoTone'); \ No newline at end of file +}), 'SignalWifi0BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1Bar.js b/packages/material-ui-icons/lib/SignalWifi1Bar.js index f9c10add16b74f..2078326a7ab88d 100644 --- a/packages/material-ui-icons/lib/SignalWifi1Bar.js +++ b/packages/material-ui-icons/lib/SignalWifi1Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" })] -}), 'SignalWifi1Bar'); \ No newline at end of file +}), 'SignalWifi1Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarLock.js b/packages/material-ui-icons/lib/SignalWifi1BarLock.js index ce5b77fbac6a15..a1d156623b7a84 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarLock.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarLock.js @@ -1,14 +1,29 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z", opacity: ".3" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.7 14.9l5.3 6.6 3.5-4.3v-2.6c0-.2 0-.5.1-.7-.9-.5-2.2-.9-3.6-.9-3 0-5.1 1.7-5.3 1.9z" })] -}), 'SignalWifi1BarLock'); \ No newline at end of file +}), 'SignalWifi1BarLock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarLockOutlined.js b/packages/material-ui-icons/lib/SignalWifi1BarLockOutlined.js index de0579e2a1a295..3c74bc7f78c90b 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarLockOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarLockOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" })] -}), 'SignalWifi1BarLockOutlined'); \ No newline at end of file +}), 'SignalWifi1BarLockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarLockRounded.js b/packages/material-ui-icons/lib/SignalWifi1BarLockRounded.js index 4c2770e49a5e54..dbef2bed95c355 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarLockRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarLockRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l1.94-2.42V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l3.74 4.66c.8 1 2.32 1 3.12 0l1.94-2.42V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" })] -}), 'SignalWifi1BarLockRounded'); \ No newline at end of file +}), 'SignalWifi1BarLockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarLockSharp.js b/packages/material-ui-icons/lib/SignalWifi1BarLockSharp.js index 417f7793d855cb..300cacd415b7df 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarLockSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarLockSharp.js @@ -1,14 +1,29 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66-1.33.09-2.34 1.16-2.34 2.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5z" })] -}), 'SignalWifi1BarLockSharp'); \ No newline at end of file +}), 'SignalWifi1BarLockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarLockTwoTone.js b/packages/material-ui-icons/lib/SignalWifi1BarLockTwoTone.js index f5cd2b955033bb..8eb1b940193c2d 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarLockTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarLockTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" })] -}), 'SignalWifi1BarLockTwoTone'); \ No newline at end of file +}), 'SignalWifi1BarLockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarOutlined.js b/packages/material-ui-icons/lib/SignalWifi1BarOutlined.js index a96b22e8fe0cc3..5b99e626f6e8d8 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" })] -}), 'SignalWifi1BarOutlined'); \ No newline at end of file +}), 'SignalWifi1BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarRounded.js b/packages/material-ui-icons/lib/SignalWifi1BarRounded.js index ca442d506f7ace..90f34b7dd36f8e 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.67 14.86l3.77 4.7c.8 1 2.32 1 3.12 0l3.78-4.7C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" })] -}), 'SignalWifi1BarRounded'); \ No newline at end of file +}), 'SignalWifi1BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarSharp.js b/packages/material-ui-icons/lib/SignalWifi1BarSharp.js index 8dbba7a72b2359..81ab09538cfede 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" })] -}), 'SignalWifi1BarSharp'); \ No newline at end of file +}), 'SignalWifi1BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi1BarTwoTone.js b/packages/material-ui-icons/lib/SignalWifi1BarTwoTone.js index 6f7ce1c7dc85aa..125ed0dd930e52 100644 --- a/packages/material-ui-icons/lib/SignalWifi1BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi1BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" })] -}), 'SignalWifi1BarTwoTone'); \ No newline at end of file +}), 'SignalWifi1BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2Bar.js b/packages/material-ui-icons/lib/SignalWifi2Bar.js index 749420ea8853c9..af77f9153ce308 100644 --- a/packages/material-ui-icons/lib/SignalWifi2Bar.js +++ b/packages/material-ui-icons/lib/SignalWifi2Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.79 12.52l7.2 8.98H12l.01-.01 7.2-8.98C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" })] -}), 'SignalWifi2Bar'); \ No newline at end of file +}), 'SignalWifi2Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarLock.js b/packages/material-ui-icons/lib/SignalWifi2BarLock.js index f957fbd4e2c452..bbe47c6c6d5c8c 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarLock.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarLock.js @@ -1,14 +1,29 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z", opacity: ".3" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.8 12.5l7.2 9 3.5-4.4v-2.6c0-1.3.5-2.5 1.4-3.4C15.6 10.5 14 10 12 10c-4.1 0-6.8 2.2-7.2 2.5z" })] -}), 'SignalWifi2BarLock'); \ No newline at end of file +}), 'SignalWifi2BarLock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarLockOutlined.js b/packages/material-ui-icons/lib/SignalWifi2BarLockOutlined.js index d49c0ee94caf54..8e5f27c0cdb1ee 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarLockOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarLockOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" })] -}), 'SignalWifi2BarLockOutlined'); \ No newline at end of file +}), 'SignalWifi2BarLockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarLockRounded.js b/packages/material-ui-icons/lib/SignalWifi2BarLockRounded.js index edbe6b3702c933..7a1c5d056515a9 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarLockRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarLockRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l1.94-2.42V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l5.64 7.05c.8 1 2.32 1 3.12 0l1.94-2.42V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" })] -}), 'SignalWifi2BarLockRounded'); \ No newline at end of file +}), 'SignalWifi2BarLockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarLockSharp.js b/packages/material-ui-icons/lib/SignalWifi2BarLockSharp.js index 53cac9011b2d61..83a34decac8431 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarLockSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarLockSharp.js @@ -1,14 +1,29 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5z" })] -}), 'SignalWifi2BarLockSharp'); \ No newline at end of file +}), 'SignalWifi2BarLockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarLockTwoTone.js b/packages/material-ui-icons/lib/SignalWifi2BarLockTwoTone.js index aa9d5c385d1bc2..1689e381a7bc3e 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarLockTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarLockTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" })] -}), 'SignalWifi2BarLockTwoTone'); \ No newline at end of file +}), 'SignalWifi2BarLockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarOutlined.js b/packages/material-ui-icons/lib/SignalWifi2BarOutlined.js index 6ed91b4036c4d0..8057653b5f55ff 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" })] -}), 'SignalWifi2BarOutlined'); \ No newline at end of file +}), 'SignalWifi2BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarRounded.js b/packages/material-ui-icons/lib/SignalWifi2BarRounded.js index ffbf82997e297a..bb25e462a75963 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.79 12.52l5.65 7.04c.8 1 2.32 1 3.12 0l5.65-7.05C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" })] -}), 'SignalWifi2BarRounded'); \ No newline at end of file +}), 'SignalWifi2BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarSharp.js b/packages/material-ui-icons/lib/SignalWifi2BarSharp.js index 77e043712dbb78..eef0b333049983 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" })] -}), 'SignalWifi2BarSharp'); \ No newline at end of file +}), 'SignalWifi2BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi2BarTwoTone.js b/packages/material-ui-icons/lib/SignalWifi2BarTwoTone.js index a2c99730a1d0dc..42a7b0ef97be6c 100644 --- a/packages/material-ui-icons/lib/SignalWifi2BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi2BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" })] -}), 'SignalWifi2BarTwoTone'); \ No newline at end of file +}), 'SignalWifi2BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3Bar.js b/packages/material-ui-icons/lib/SignalWifi3Bar.js index 506f0bb9dc1a01..705d1ea56caa42 100644 --- a/packages/material-ui-icons/lib/SignalWifi3Bar.js +++ b/packages/material-ui-icons/lib/SignalWifi3Bar.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.53 10.95l8.46 10.54.01.01.01-.01 8.46-10.54C20.04 10.62 16.81 8 12 8c-4.81 0-8.04 2.62-8.47 2.95z" })] -}), 'SignalWifi3Bar'); \ No newline at end of file +}), 'SignalWifi3Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarLock.js b/packages/material-ui-icons/lib/SignalWifi3BarLock.js index fa0ccb7c0de11c..6364690e5c6d1e 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarLock.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarLock.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C5.3 3 .8 6.7.4 7l3.2 3.9L12 21.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7.3-.1.5-.2.8-.2.3-.1.6-.1.9-.1.4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4z", opacity: ".3" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-10 5.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7C17.3 9 14.9 8 12 8c-4.8 0-8 2.6-8.5 2.9" })] -}), 'SignalWifi3BarLock'); \ No newline at end of file +}), 'SignalWifi3BarLock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarLockOutlined.js b/packages/material-ui-icons/lib/SignalWifi3BarLockOutlined.js index 3eb05dcb9602fa..7d0ae7f3406441 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarLockOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarLockOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" })] -}), 'SignalWifi3BarLockOutlined'); \ No newline at end of file +}), 'SignalWifi3BarLockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarLockRounded.js b/packages/material-ui-icons/lib/SignalWifi3BarLockRounded.js index 7baf26b010b257..5c9598be700724 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarLockRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarLockRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l1.94-2.42V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95l6.91 8.61c.8 1 2.32 1 3.12 0l1.94-2.42V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" })] -}), 'SignalWifi3BarLockRounded'); \ No newline at end of file +}), 'SignalWifi3BarLockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarLockSharp.js b/packages/material-ui-icons/lib/SignalWifi3BarLockSharp.js index 0ac9d1d831bf8b..90e58349ea1ae9 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarLockSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarLockSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66-1.33.09-2.34 1.16-2.34 2.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" })] -}), 'SignalWifi3BarLockSharp'); \ No newline at end of file +}), 'SignalWifi3BarLockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarLockTwoTone.js b/packages/material-ui-icons/lib/SignalWifi3BarLockTwoTone.js index 67b82ccfda9c78..57d298f777a279 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarLockTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarLockTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" })] -}), 'SignalWifi3BarLockTwoTone'); \ No newline at end of file +}), 'SignalWifi3BarLockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarOutlined.js b/packages/material-ui-icons/lib/SignalWifi3BarOutlined.js index 7068cecf5add24..7ad8d476da997a 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarOutlined.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" })] -}), 'SignalWifi3BarOutlined'); \ No newline at end of file +}), 'SignalWifi3BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarRounded.js b/packages/material-ui-icons/lib/SignalWifi3BarRounded.js index 44bf995fc32e4b..8195f2909c8355 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarRounded.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.53 10.95l6.91 8.61c.8 1 2.32 1 3.12 0l6.91-8.61C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" })] -}), 'SignalWifi3BarRounded'); \ No newline at end of file +}), 'SignalWifi3BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarSharp.js b/packages/material-ui-icons/lib/SignalWifi3BarSharp.js index d986c2ad306091..eb15fae6c1cdd0 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarSharp.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" })] -}), 'SignalWifi3BarSharp'); \ No newline at end of file +}), 'SignalWifi3BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi3BarTwoTone.js b/packages/material-ui-icons/lib/SignalWifi3BarTwoTone.js index e9b004201a89da..584e2dca80d5a9 100644 --- a/packages/material-ui-icons/lib/SignalWifi3BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi3BarTwoTone.js @@ -1,12 +1,27 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -import { jsxs as _jsxs } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { - children: [/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, { + children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillOpacity: ".3", d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" - }), /*#__PURE__*/_jsx("path", { + }), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" })] -}), 'SignalWifi3BarTwoTone'); \ No newline at end of file +}), 'SignalWifi3BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4Bar.js b/packages/material-ui-icons/lib/SignalWifi4Bar.js index d95a772e52475b..4b8e3b13cd3e1b 100644 --- a/packages/material-ui-icons/lib/SignalWifi4Bar.js +++ b/packages/material-ui-icons/lib/SignalWifi4Bar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" -}), 'SignalWifi4Bar'); \ No newline at end of file +}), 'SignalWifi4Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarLock.js b/packages/material-ui-icons/lib/SignalWifi4BarLock.js index ae351b76af197d..526622950513b2 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarLock.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarLock.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'SignalWifi4BarLock'); \ No newline at end of file +}, "1")], 'SignalWifi4BarLock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarLockOutlined.js b/packages/material-ui-icons/lib/SignalWifi4BarLockOutlined.js index 66fece3cfccd44..c565cd34a4fbf0 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarLockOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarLockOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'SignalWifi4BarLockOutlined'); \ No newline at end of file +}, "1")], 'SignalWifi4BarLockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarLockRounded.js b/packages/material-ui-icons/lib/SignalWifi4BarLockRounded.js index a1728f4c1db49b..1b5291afad73af 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarLockRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarLockRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.21 8.24C20.22 5.6 16.3 4 12 4S3.78 5.6.79 8.24C.35 8.63.32 9.3.73 9.71l5.62 5.63 4.94 4.95c.39.39 1.02.39 1.42 0l2.34-2.34V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.94l1.29-1.29c.4-.41.37-1.08-.07-1.47z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'SignalWifi4BarLockRounded'); \ No newline at end of file +}, "1")], 'SignalWifi4BarLockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarLockSharp.js b/packages/material-ui-icons/lib/SignalWifi4BarLockSharp.js index d0079ff4e7417c..6dcee69abc5e59 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarLockSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarLockSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'SignalWifi4BarLockSharp'); \ No newline at end of file +}, "1")], 'SignalWifi4BarLockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarLockTwoTone.js b/packages/material-ui-icons/lib/SignalWifi4BarLockTwoTone.js index adce80596887ff..5f34fe98436301 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarLockTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarLockTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'SignalWifi4BarLockTwoTone'); \ No newline at end of file +}, "1")], 'SignalWifi4BarLockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarOutlined.js b/packages/material-ui-icons/lib/SignalWifi4BarOutlined.js index a4fdee6be0850f..0ea878ee325807 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" -}), 'SignalWifi4BarOutlined'); \ No newline at end of file +}), 'SignalWifi4BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarRounded.js b/packages/material-ui-icons/lib/SignalWifi4BarRounded.js index c1b40175109ef3..4ead0e91d904d9 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarRounded.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" -}), 'SignalWifi4BarRounded'); \ No newline at end of file +}), 'SignalWifi4BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarSharp.js b/packages/material-ui-icons/lib/SignalWifi4BarSharp.js index acf7b74ac71bd8..261f21ebea1912 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarSharp.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" -}), 'SignalWifi4BarSharp'); \ No newline at end of file +}), 'SignalWifi4BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifi4BarTwoTone.js b/packages/material-ui-icons/lib/SignalWifi4BarTwoTone.js index 8735ba606946b0..8473bca5ead9d8 100644 --- a/packages/material-ui-icons/lib/SignalWifi4BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifi4BarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" -}), 'SignalWifi4BarTwoTone'); \ No newline at end of file +}), 'SignalWifi4BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiBad.js b/packages/material-ui-icons/lib/SignalWifiBad.js index b4569f356e79be..bda99a3dcca298 100644 --- a/packages/material-ui-icons/lib/SignalWifiBad.js +++ b/packages/material-ui-icons/lib/SignalWifiBad.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiBad'); \ No newline at end of file +}), 'SignalWifiBad'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiBadOutlined.js b/packages/material-ui-icons/lib/SignalWifiBadOutlined.js index 0862e67f139115..c08bd6e6f1ba9e 100644 --- a/packages/material-ui-icons/lib/SignalWifiBadOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifiBadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiBadOutlined'); \ No newline at end of file +}), 'SignalWifiBadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiBadRounded.js b/packages/material-ui-icons/lib/SignalWifiBadRounded.js index c6d02054046d2c..52b54b5e98472e 100644 --- a/packages/material-ui-icons/lib/SignalWifiBadRounded.js +++ b/packages/material-ui-icons/lib/SignalWifiBadRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.21 8.24C20.22 5.6 16.3 4 12 4 7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.19.19.45.29.7.29V14c0-1.1.9-2 2-2h6.99l2.29-2.29c.41-.41.38-1.08-.06-1.47z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.3 14.71a.9959.9959 0 0 0-1.41 0l-1.39 1.38-1.39-1.38a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.39 1.39-1.39 1.39c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.39-1.38 1.39 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.38-1.39 1.38-1.39c.39-.39.39-1.02 0-1.41z" -}, "1")], 'SignalWifiBadRounded'); \ No newline at end of file +}, "1")], 'SignalWifiBadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiBadSharp.js b/packages/material-ui-icons/lib/SignalWifiBadSharp.js index a705fb2a3cec1c..a07e6ecc5b0926 100644 --- a/packages/material-ui-icons/lib/SignalWifiBadSharp.js +++ b/packages/material-ui-icons/lib/SignalWifiBadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiBadSharp'); \ No newline at end of file +}), 'SignalWifiBadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiBadTwoTone.js b/packages/material-ui-icons/lib/SignalWifiBadTwoTone.js index 86bf02c9e1931e..a31f38f0dc3203 100644 --- a/packages/material-ui-icons/lib/SignalWifiBadTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifiBadTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiBadTwoTone'); \ No newline at end of file +}), 'SignalWifiBadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4.js b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4.js index 700d1a830e673e..633d5f3d0af784 100644 --- a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4.js +++ b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiConnectedNoInternet4'); \ No newline at end of file +}), 'SignalWifiConnectedNoInternet4'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Outlined.js b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Outlined.js index cb3b1d7cdc9f52..68e60657fdf768 100644 --- a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Outlined.js +++ b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiConnectedNoInternet4Outlined'); \ No newline at end of file +}), 'SignalWifiConnectedNoInternet4Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Rounded.js b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Rounded.js index 8f3ac3cbd4c027..5cc389336233fa 100644 --- a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Rounded.js +++ b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Rounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.21 8.24C20.22 5.6 16.3 4 12 4 7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.19.19.45.29.7.29V14c0-1.1.9-2 2-2h6.99l2.29-2.29c.41-.41.38-1.08-.06-1.47z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.3 14.71a.9959.9959 0 0 0-1.41 0l-1.39 1.38-1.39-1.38a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.39 1.39-1.39 1.39c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.39-1.38 1.39 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.38-1.39 1.38-1.39c.39-.39.39-1.02 0-1.41z" -}, "1")], 'SignalWifiConnectedNoInternet4Rounded'); \ No newline at end of file +}, "1")], 'SignalWifiConnectedNoInternet4Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Sharp.js b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Sharp.js index bf9b7841ee9e2e..627aa044406ac4 100644 --- a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Sharp.js +++ b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiConnectedNoInternet4Sharp'); \ No newline at end of file +}), 'SignalWifiConnectedNoInternet4Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4TwoTone.js b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4TwoTone.js index 0c23ec4a41e065..d4d350b1ac1bf3 100644 --- a/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4TwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifiConnectedNoInternet4TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" -}), 'SignalWifiConnectedNoInternet4TwoTone'); \ No newline at end of file +}), 'SignalWifiConnectedNoInternet4TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiOff.js b/packages/material-ui-icons/lib/SignalWifiOff.js index 4d34bc8bf2d037..006bb712057d00 100644 --- a/packages/material-ui-icons/lib/SignalWifiOff.js +++ b/packages/material-ui-icons/lib/SignalWifiOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.5 0-2.89.19-4.15.48L18.18 13.8 23.64 7zm-6.6 8.22L3.27 1.44 2 2.72l2.05 2.06C1.91 5.76.59 6.82.36 7l11.63 14.49.01.01.01-.01 3.9-4.86 3.32 3.32 1.27-1.27-3.46-3.46z" -}), 'SignalWifiOff'); \ No newline at end of file +}), 'SignalWifiOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiOffOutlined.js b/packages/material-ui-icons/lib/SignalWifiOffOutlined.js index 418634d7996562..95da4f04723c09 100644 --- a/packages/material-ui-icons/lib/SignalWifiOffOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifiOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31 2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" -}), 'SignalWifiOffOutlined'); \ No newline at end of file +}), 'SignalWifiOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiOffRounded.js b/packages/material-ui-icons/lib/SignalWifiOffRounded.js index 0c7f2f02389ac9..24ca6fdfed93f7 100644 --- a/packages/material-ui-icons/lib/SignalWifiOffRounded.js +++ b/packages/material-ui-icons/lib/SignalWifiOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM4.12 2.01a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.35 1.35C1.91 5.76.59 6.82.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l2.35-2.93 2.61 2.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 2.01z" -}), 'SignalWifiOffRounded'); \ No newline at end of file +}), 'SignalWifiOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiOffSharp.js b/packages/material-ui-icons/lib/SignalWifiOffSharp.js index 3f20893cc16f41..7c1904da2e8fb7 100644 --- a/packages/material-ui-icons/lib/SignalWifiOffSharp.js +++ b/packages/material-ui-icons/lib/SignalWifiOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31 2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" -}), 'SignalWifiOffSharp'); \ No newline at end of file +}), 'SignalWifiOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiOffTwoTone.js b/packages/material-ui-icons/lib/SignalWifiOffTwoTone.js index 47d122987715ce..23690fa83b8e77 100644 --- a/packages/material-ui-icons/lib/SignalWifiOffTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifiOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31 2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" -}), 'SignalWifiOffTwoTone'); \ No newline at end of file +}), 'SignalWifiOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbar4Bar.js b/packages/material-ui-icons/lib/SignalWifiStatusbar4Bar.js index 01f527215f48e8..584adcfb840d19 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbar4Bar.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbar4Bar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" -}), 'SignalWifiStatusbar4Bar'); \ No newline at end of file +}), 'SignalWifiStatusbar4Bar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarOutlined.js b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarOutlined.js index e6a953bbbc7d51..7e81609cb765e9 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" -}), 'SignalWifiStatusbar4BarOutlined'); \ No newline at end of file +}), 'SignalWifiStatusbar4BarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarRounded.js b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarRounded.js index 908aae19052d13..7bac334b0830f1 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarRounded.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4z" -}), 'SignalWifiStatusbar4BarRounded'); \ No newline at end of file +}), 'SignalWifiStatusbar4BarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarSharp.js b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarSharp.js index f4dc13ab1c9bcf..b2329af8d3c169 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarSharp.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" -}), 'SignalWifiStatusbar4BarSharp'); \ No newline at end of file +}), 'SignalWifiStatusbar4BarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarTwoTone.js b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarTwoTone.js index 414db24df092ad..4caf6b9a2fdfce 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbar4BarTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbar4BarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" -}), 'SignalWifiStatusbar4BarTwoTone'); \ No newline at end of file +}), 'SignalWifiStatusbar4BarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4.js b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4.js index 63aa882975607c..7fb58be94c1cff 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4zm7 14h2v2h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10h2v6h-2z" -}, "1")], 'SignalWifiStatusbarConnectedNoInternet4'); \ No newline at end of file +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Outlined.js b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Outlined.js index 712fdd9375ca78..5dbaf5a495dc4b 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Outlined.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Outlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4zm7 14h2v2h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10h2v6h-2z" -}, "1")], 'SignalWifiStatusbarConnectedNoInternet4Outlined'); \ No newline at end of file +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Rounded.js b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Rounded.js index c1c5c8f20f584e..124a87a5751f90 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Rounded.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.92 8H17v7.99l-4.29 4.3c-.39.39-1.02.39-1.42 0L.73 9.71C.32 9.3.35 8.63.79 8.24 3.78 5.6 7.7 4 12 4c4.16 0 7.97 1.51 10.92 4zM20 18c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1z" -}), 'SignalWifiStatusbarConnectedNoInternet4Rounded'); \ No newline at end of file +}), 'SignalWifiStatusbarConnectedNoInternet4Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Sharp.js b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Sharp.js index e385a6789b23e5..1194e5724c1c12 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Sharp.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4Sharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 18h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4z" -}, "1")], 'SignalWifiStatusbarConnectedNoInternet4Sharp'); \ No newline at end of file +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4TwoTone.js b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4TwoTone.js index 88d347de071f07..189900eb3f67ee 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4TwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarConnectedNoInternet4TwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 18h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4z" -}, "1")], 'SignalWifiStatusbarConnectedNoInternet4TwoTone'); \ No newline at end of file +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarNull.js b/packages/material-ui-icons/lib/SignalWifiStatusbarNull.js index 5b884b077d5f46..dd1c2a5b8d853d 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarNull.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarNull.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifiStatusbarNull'); \ No newline at end of file +}), 'SignalWifiStatusbarNull'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarNullOutlined.js b/packages/material-ui-icons/lib/SignalWifiStatusbarNullOutlined.js index 1c96cffaae7f4d..c5a0f9d74661c9 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarNullOutlined.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarNullOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifiStatusbarNullOutlined'); \ No newline at end of file +}), 'SignalWifiStatusbarNullOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarNullRounded.js b/packages/material-ui-icons/lib/SignalWifiStatusbarNullRounded.js index a66dec942c7558..13a5fe70cac78f 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarNullRounded.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarNullRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifiStatusbarNullRounded'); \ No newline at end of file +}), 'SignalWifiStatusbarNullRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarNullSharp.js b/packages/material-ui-icons/lib/SignalWifiStatusbarNullSharp.js index 76ba8799e98952..55e45148b61584 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarNullSharp.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarNullSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifiStatusbarNullSharp'); \ No newline at end of file +}), 'SignalWifiStatusbarNullSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SignalWifiStatusbarNullTwoTone.js b/packages/material-ui-icons/lib/SignalWifiStatusbarNullTwoTone.js index 83640b1a3fa0e0..af93f0a9946f29 100644 --- a/packages/material-ui-icons/lib/SignalWifiStatusbarNullTwoTone.js +++ b/packages/material-ui-icons/lib/SignalWifiStatusbarNullTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" -}), 'SignalWifiStatusbarNullTwoTone'); \ No newline at end of file +}), 'SignalWifiStatusbarNullTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCard.js b/packages/material-ui-icons/lib/SimCard.js index 6d74f90bb3e264..5fe419e24d8133 100644 --- a/packages/material-ui-icons/lib/SimCard.js +++ b/packages/material-ui-icons/lib/SimCard.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.99 4c0-1.1-.89-2-1.99-2h-8L4 8v12c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z" -}), 'SimCard'); \ No newline at end of file +}), 'SimCard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardAlert.js b/packages/material-ui-icons/lib/SimCardAlert.js index 7f0a604c8411d0..02ef8a30708fe5 100644 --- a/packages/material-ui-icons/lib/SimCardAlert.js +++ b/packages/material-ui-icons/lib/SimCardAlert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z" -}), 'SimCardAlert'); \ No newline at end of file +}), 'SimCardAlert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardAlertOutlined.js b/packages/material-ui-icons/lib/SimCardAlertOutlined.js index eddc9a0cfb9a53..7efa859b59d87f 100644 --- a/packages/material-ui-icons/lib/SimCardAlertOutlined.js +++ b/packages/material-ui-icons/lib/SimCardAlertOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-7h2v5h-2z" -}, "1")], 'SimCardAlertOutlined'); \ No newline at end of file +}, "1")], 'SimCardAlertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardAlertRounded.js b/packages/material-ui-icons/lib/SimCardAlertRounded.js index 6bdb4182026f34..c1b1eca253f05e 100644 --- a/packages/material-ui-icons/lib/SimCardAlertRounded.js +++ b/packages/material-ui-icons/lib/SimCardAlertRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.58.88-.58 1.4L4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" -}), 'SimCardAlertRounded'); \ No newline at end of file +}), 'SimCardAlertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardAlertSharp.js b/packages/material-ui-icons/lib/SimCardAlertSharp.js index 971988d2d8bd32..10d893804bec4d 100644 --- a/packages/material-ui-icons/lib/SimCardAlertSharp.js +++ b/packages/material-ui-icons/lib/SimCardAlertSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z" -}), 'SimCardAlertSharp'); \ No newline at end of file +}), 'SimCardAlertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardAlertTwoTone.js b/packages/material-ui-icons/lib/SimCardAlertTwoTone.js index 6bb393ea141b1c..21288dd3ece795 100644 --- a/packages/material-ui-icons/lib/SimCardAlertTwoTone.js +++ b/packages/material-ui-icons/lib/SimCardAlertTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 8.83V20h12V4h-7.17L6 8.83zM11 8h2v5h-2V8zm0 7h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-7h2v5h-2z" -}, "2")], 'SimCardAlertTwoTone'); \ No newline at end of file +}, "2")], 'SimCardAlertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardDownload.js b/packages/material-ui-icons/lib/SimCardDownload.js index 67a32a65299d34..1546d66947a225 100644 --- a/packages/material-ui-icons/lib/SimCardDownload.js +++ b/packages/material-ui-icons/lib/SimCardDownload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 15-4-4h3V9.02L13 9v4h3l-4 4z" -}), 'SimCardDownload'); \ No newline at end of file +}), 'SimCardDownload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardDownloadOutlined.js b/packages/material-ui-icons/lib/SimCardDownloadOutlined.js index 1c2683d79c5f4b..efbc5be76331bc 100644 --- a/packages/material-ui-icons/lib/SimCardDownloadOutlined.js +++ b/packages/material-ui-icons/lib/SimCardDownloadOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 13-4 4-4-4 1.41-1.41L11 13.17V9.02L13 9v4.17l1.59-1.59L16 13z" -}, "1")], 'SimCardDownloadOutlined'); \ No newline at end of file +}, "1")], 'SimCardDownloadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardDownloadRounded.js b/packages/material-ui-icons/lib/SimCardDownloadRounded.js index 27ac45c05ffda9..31651dc1548dc1 100644 --- a/packages/material-ui-icons/lib/SimCardDownloadRounded.js +++ b/packages/material-ui-icons/lib/SimCardDownloadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.59 7.41C4.21 7.79 4 8.3 4 8.83V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.35 14.65-2.79-2.79c-.32-.32-.1-.86.35-.86H11v-2.99c0-.55.44-.99.99-1 .56-.01 1.01.44 1.01 1V13h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.19.2-.51.2-.7.01z" -}), 'SimCardDownloadRounded'); \ No newline at end of file +}), 'SimCardDownloadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardDownloadSharp.js b/packages/material-ui-icons/lib/SimCardDownloadSharp.js index e8f103933b0431..e1d178b7764374 100644 --- a/packages/material-ui-icons/lib/SimCardDownloadSharp.js +++ b/packages/material-ui-icons/lib/SimCardDownloadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H10L4 8v14h16V2zm-8 15-4-4h3V9.02L13 9v4h3l-4 4z" -}), 'SimCardDownloadSharp'); \ No newline at end of file +}), 'SimCardDownloadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardDownloadTwoTone.js b/packages/material-ui-icons/lib/SimCardDownloadTwoTone.js index 52f972f390479b..030ddf533f0607 100644 --- a/packages/material-ui-icons/lib/SimCardDownloadTwoTone.js +++ b/packages/material-ui-icons/lib/SimCardDownloadTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 8.83V20h12V4h-7.17L6 8.83zm5 .19L13 9v4h3l-4 4-4-4h3V9.02z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 17 4-4h-3V9l-2 .02V13H8z" -}, "2")], 'SimCardDownloadTwoTone'); \ No newline at end of file +}, "2")], 'SimCardDownloadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardOutlined.js b/packages/material-ui-icons/lib/SimCardOutlined.js index a02901f485d1c4..42253a54039b5d 100644 --- a/packages/material-ui-icons/lib/SimCardOutlined.js +++ b/packages/material-ui-icons/lib/SimCardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z" -}), 'SimCardOutlined'); \ No newline at end of file +}), 'SimCardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardRounded.js b/packages/material-ui-icons/lib/SimCardRounded.js index 5ff98ed1a81050..bc4fb17aa2b585 100644 --- a/packages/material-ui-icons/lib/SimCardRounded.js +++ b/packages/material-ui-icons/lib/SimCardRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.99 4c0-1.1-.89-2-1.99-2h-7.17c-.53 0-1.04.21-1.42.59L4.59 7.41C4.21 7.79 4 8.3 4 8.83V20c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM8 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm4 4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm0-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 2c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'SimCardRounded'); \ No newline at end of file +}), 'SimCardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardSharp.js b/packages/material-ui-icons/lib/SimCardSharp.js index 10c505e228350e..f3cf97b050d583 100644 --- a/packages/material-ui-icons/lib/SimCardSharp.js +++ b/packages/material-ui-icons/lib/SimCardSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.99 2H10L4 8v14h16l-.01-20zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z" -}), 'SimCardSharp'); \ No newline at end of file +}), 'SimCardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SimCardTwoTone.js b/packages/material-ui-icons/lib/SimCardTwoTone.js index 04d636109a12cd..ca741806d2d14f 100644 --- a/packages/material-ui-icons/lib/SimCardTwoTone.js +++ b/packages/material-ui-icons/lib/SimCardTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 8.83V20h12V4h-7.17L6 8.83zM9 19H7v-2h2v2zm0-4H7v-4h2v4zm6-4h2v4h-2v-4zm0 6h2v2h-2v-2zm-4-6h2v2h-2v-2zm0 4h2v4h-2v-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z" -}, "1")], 'SimCardTwoTone'); \ No newline at end of file +}, "1")], 'SimCardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SingleBed.js b/packages/material-ui-icons/lib/SingleBed.js index ec2208ac209039..71402688893e1d 100644 --- a/packages/material-ui-icons/lib/SingleBed.js +++ b/packages/material-ui-icons/lib/SingleBed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-1.1-.9-2-2-2V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-5zm-4-2h-3V7h3v3zM8 7h3v3H8V7zm-2 5h12v3H6v-3z" -}), 'SingleBed'); \ No newline at end of file +}), 'SingleBed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SingleBedOutlined.js b/packages/material-ui-icons/lib/SingleBedOutlined.js index 0096c38d0057fd..31ee83d9dc47c3 100644 --- a/packages/material-ui-icons/lib/SingleBedOutlined.js +++ b/packages/material-ui-icons/lib/SingleBedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-1.1-.9-2-2-2V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-5zm-4-2h-3V7h3v3zM8 7h3v3H8V7zm-2 5h12v3H6v-3z" -}), 'SingleBedOutlined'); \ No newline at end of file +}), 'SingleBedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SingleBedRounded.js b/packages/material-ui-icons/lib/SingleBedRounded.js index 1b5db428aeb9ad..21746300db332d 100644 --- a/packages/material-ui-icons/lib/SingleBedRounded.js +++ b/packages/material-ui-icons/lib/SingleBedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33l.51 1.53c.1.28.36.47.66.47.3 0 .56-.19.66-.47L7.67 17h8.67l.51 1.53c.09.28.35.47.65.47.3 0 .56-.19.66-.47l.51-1.53H20v-5c0-1.1-.9-2-2-2zm-7 0H8V8c0-.55.45-1 1-1h2v3zm5 0h-3V7h2c.55 0 1 .45 1 1v2z" -}), 'SingleBedRounded'); \ No newline at end of file +}), 'SingleBedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SingleBedSharp.js b/packages/material-ui-icons/lib/SingleBedSharp.js index a547141c465ef8..d996342f20c763 100644 --- a/packages/material-ui-icons/lib/SingleBedSharp.js +++ b/packages/material-ui-icons/lib/SingleBedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10V5H6v5H4v7h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-7h-2zm-7 0H8V7h3v3zm5 0h-3V7h3v3z" -}), 'SingleBedSharp'); \ No newline at end of file +}), 'SingleBedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SingleBedTwoTone.js b/packages/material-ui-icons/lib/SingleBedTwoTone.js index 7eea7cda34d3a6..38f89b68be7039 100644 --- a/packages/material-ui-icons/lib/SingleBedTwoTone.js +++ b/packages/material-ui-icons/lib/SingleBedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 12h12v3H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-5c0-1.1-.9-2-2-2zm-5-3h3v3h-3V7zM8 7h3v3H8V7zm10 8H6v-3h12v3z" -}, "1")], 'SingleBedTwoTone'); \ No newline at end of file +}, "1")], 'SingleBedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sip.js b/packages/material-ui-icons/lib/Sip.js index 0b57c4d49db8fe..7472ebb5037834 100644 --- a/packages/material-ui-icons/lib/Sip.js +++ b/packages/material-ui-icons/lib/Sip.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 10.5h2v1h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-10 6.5H6.5v.75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h4v1.5zm3 4.5h-2V9h2v6zm6-3c0 .55-.45 1-1 1h-2.5v2H14V9h4c.55 0 1 .45 1 1v2z" -}, "1")], 'Sip'); \ No newline at end of file +}, "1")], 'Sip'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SipOutlined.js b/packages/material-ui-icons/lib/SipOutlined.js index 5d0039a8bc5ab4..e3210f3fb91977 100644 --- a/packages/material-ui-icons/lib/SipOutlined.js +++ b/packages/material-ui-icons/lib/SipOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm0 2v12h16V6H4zm7 3h2v6h-2V9zm3 0h4c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1h-2.5v2H14V9zm3.5 1.5h-2v1h2v-1zm-11 .75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h4v1.5H6.5v.75z" -}), 'SipOutlined'); \ No newline at end of file +}), 'SipOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SipRounded.js b/packages/material-ui-icons/lib/SipRounded.js index 19053bef4578e8..3368ca8cce89fa 100644 --- a/packages/material-ui-icons/lib/SipRounded.js +++ b/packages/material-ui-icons/lib/SipRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 10.5h2v1h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM10 9.75c0 .41-.34.75-.75.75H6.5v.75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3.25c.41 0 .75.34.75.75zM12 15c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm7-3c0 .55-.45 1-1 1h-2.5v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v2z" -}, "1")], 'SipRounded'); \ No newline at end of file +}, "1")], 'SipRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SipSharp.js b/packages/material-ui-icons/lib/SipSharp.js index 04bdcfb5b05345..1e16615d140c7e 100644 --- a/packages/material-ui-icons/lib/SipSharp.js +++ b/packages/material-ui-icons/lib/SipSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 10.5h2v1h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-10 6.5H6.5v.75H10V15H5v-1.5h3.5v-.75H5V9h5v1.5zm3 4.5h-2V9h2v6zm6-6v4h-3.5v2H14V9h5z" -}, "1")], 'SipSharp'); \ No newline at end of file +}, "1")], 'SipSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SipTwoTone.js b/packages/material-ui-icons/lib/SipTwoTone.js index ae352bcff58957..431e41c7f88080 100644 --- a/packages/material-ui-icons/lib/SipTwoTone.js +++ b/packages/material-ui-icons/lib/SipTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 10.5h2v1h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zm10-9h4c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1h-2.5v2H14V9zm-3 0h2v6h-2V9zm-6 4.5h3.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h4v1.5H6.5v.75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14v-1.75c0-.55-.45-1-1-1H6.5v-.75H10V9H6c-.55 0-1 .45-1 1v1.75c0 .55.45 1 1 1h2.5v.75H5V15h4c.55 0 1-.45 1-1z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9h2v6h-2zm4.5 4H18c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1h-4v6h1.5v-2zm0-2.5h2v1h-2v-1z" -}, "4")], 'SipTwoTone'); \ No newline at end of file +}, "4")], 'SipTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixK.js b/packages/material-ui-icons/lib/SixK.js index b003f7cd0b3db4..cc875ccb7747f4 100644 --- a/packages/material-ui-icons/lib/SixK.js +++ b/packages/material-ui-icons/lib/SixK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.5h1.5V14H8zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'SixK'); \ No newline at end of file +}), 'SixK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKOutlined.js b/packages/material-ui-icons/lib/SixKOutlined.js index 7ecaadf2b17cc8..771b3ae858c108 100644 --- a/packages/material-ui-icons/lib/SixKOutlined.js +++ b/packages/material-ui-icons/lib/SixKOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5zM7.5 15H10c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H8v-1h3V9H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1.5V14H8v-1.5z" -}, "1")], 'SixKOutlined'); \ No newline at end of file +}, "1")], 'SixKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKPlus.js b/packages/material-ui-icons/lib/SixKPlus.js index d6d301db5f95d7..478bc9d6d5e5b3 100644 --- a/packages/material-ui-icons/lib/SixKPlus.js +++ b/packages/material-ui-icons/lib/SixKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.5 12.5H8V14H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'SixKPlus'); \ No newline at end of file +}), 'SixKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKPlusOutlined.js b/packages/material-ui-icons/lib/SixKPlusOutlined.js index a6ffdf77f44e40..23c8945b852674 100644 --- a/packages/material-ui-icons/lib/SixKPlusOutlined.js +++ b/packages/material-ui-icons/lib/SixKPlusOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5zM7 15h2c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1V14h-1v-1.5z" -}, "1")], 'SixKPlusOutlined'); \ No newline at end of file +}, "1")], 'SixKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKPlusRounded.js b/packages/material-ui-icons/lib/SixKPlusRounded.js index 65b64b7dc16f6b..5d182b7e28e3de 100644 --- a/packages/material-ui-icons/lib/SixKPlusRounded.js +++ b/packages/material-ui-icons/lib/SixKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 12.5h1V14h-1v-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.75 7.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75zm5.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'SixKPlusRounded'); \ No newline at end of file +}), 'SixKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKPlusSharp.js b/packages/material-ui-icons/lib/SixKPlusSharp.js index 84926db0d5642a..eafae4dd348bc8 100644 --- a/packages/material-ui-icons/lib/SixKPlusSharp.js +++ b/packages/material-ui-icons/lib/SixKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 12.5h1V14h-1v-1.5zM21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'SixKPlusSharp'); \ No newline at end of file +}), 'SixKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKPlusTwoTone.js b/packages/material-ui-icons/lib/SixKPlusTwoTone.js index 9f378377062c80..b7b6c9387079a6 100644 --- a/packages/material-ui-icons/lib/SixKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/SixKPlusTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 12.5h1V14h-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 1c0-.55.45-1 1-1h3v1.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5zM7 15h2c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1V14h-1v-1.5z" -}, "3")], 'SixKPlusTwoTone'); \ No newline at end of file +}, "3")], 'SixKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKRounded.js b/packages/material-ui-icons/lib/SixKRounded.js index fb8de7cbbe836b..42f0a07f7ee766 100644 --- a/packages/material-ui-icons/lib/SixKRounded.js +++ b/packages/material-ui-icons/lib/SixKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.5h1.5V14H8v-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75zm6.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'SixKRounded'); \ No newline at end of file +}), 'SixKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKSharp.js b/packages/material-ui-icons/lib/SixKSharp.js index 254cef843d8776..b41ac27cbfa448 100644 --- a/packages/material-ui-icons/lib/SixKSharp.js +++ b/packages/material-ui-icons/lib/SixKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.5h1.5V14H8v-1.5zM21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'SixKSharp'); \ No newline at end of file +}), 'SixKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixKTwoTone.js b/packages/material-ui-icons/lib/SixKTwoTone.js index db5db5a20ebe83..b10407229f6507 100644 --- a/packages/material-ui-icons/lib/SixKTwoTone.js +++ b/packages/material-ui-icons/lib/SixKTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 12.5h1.5V14H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 1c0-.55.45-1 1-1H11v1.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5zM7.5 15H10c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H8v-1h3V9H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1.5V14H8v-1.5z" -}, "3")], 'SixKTwoTone'); \ No newline at end of file +}, "3")], 'SixKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixMp.js b/packages/material-ui-icons/lib/SixMp.js index 9f8a4a1bd20d79..fe5ef787d9988e 100644 --- a/packages/material-ui-icons/lib/SixMp.js +++ b/packages/material-ui-icons/lib/SixMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm-1-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11zm4.5 7H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z" -}), 'SixMp'); \ No newline at end of file +}), 'SixMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixMpOutlined.js b/packages/material-ui-icons/lib/SixMpOutlined.js index d9b2afb1ff0f95..279991149fb9e6 100644 --- a/packages/material-ui-icons/lib/SixMpOutlined.js +++ b/packages/material-ui-icons/lib/SixMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H13v1.5h-1.5V9z" -}, "2")], 'SixMpOutlined'); \ No newline at end of file +}, "2")], 'SixMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixMpRounded.js b/packages/material-ui-icons/lib/SixMpRounded.js index 13c2f767ebf734..5176cffa031dd3 100644 --- a/packages/material-ui-icons/lib/SixMpRounded.js +++ b/packages/material-ui-icons/lib/SixMpRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3.5c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H11.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm2.5 11.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v1.5h-1.5z" -}, "2")], 'SixMpRounded'); \ No newline at end of file +}, "2")], 'SixMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixMpSharp.js b/packages/material-ui-icons/lib/SixMpSharp.js index 5791d7a451fc81..28b645ea2281fb 100644 --- a/packages/material-ui-icons/lib/SixMpSharp.js +++ b/packages/material-ui-icons/lib/SixMpSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm7 2.5h4.5V7h-3v1h3v3.5H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 9H13v1.5h-1.5z" -}, "2")], 'SixMpSharp'); \ No newline at end of file +}, "2")], 'SixMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixMpTwoTone.js b/packages/material-ui-icons/lib/SixMpTwoTone.js index f56fb63d7d9823..b89e9a632bf78c 100644 --- a/packages/material-ui-icons/lib/SixMpTwoTone.js +++ b/packages/material-ui-icons/lib/SixMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15zm-3.5-5H13v1.5h-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8-7c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm-4 7c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H13v1.5h-1.5V9z" -}, "4")], 'SixMpTwoTone'); \ No newline at end of file +}, "4")], 'SixMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixteenMp.js b/packages/material-ui-icons/lib/SixteenMp.js index e18fb05e833479..57c46623c54901 100644 --- a/packages/material-ui-icons/lib/SixteenMp.js +++ b/packages/material-ui-icons/lib/SixteenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 9H15v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm3 6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13zm2.5 2.5H17v1.5h-1.5z" -}), 'SixteenMp'); \ No newline at end of file +}), 'SixteenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixteenMpOutlined.js b/packages/material-ui-icons/lib/SixteenMpOutlined.js index c179d10ddd987e..7d2774fd82e81b 100644 --- a/packages/material-ui-icons/lib/SixteenMpOutlined.js +++ b/packages/material-ui-icons/lib/SixteenMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H15v1.5h-1.5V9zm-5 2.5H10v-6H7V7h1.5z" -}, "2")], 'SixteenMpOutlined'); \ No newline at end of file +}, "2")], 'SixteenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixteenMpRounded.js b/packages/material-ui-icons/lib/SixteenMpRounded.js index fa75f337138a73..cf38d32c0d96db 100644 --- a/packages/material-ui-icons/lib/SixteenMpRounded.js +++ b/packages/material-ui-icons/lib/SixteenMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 9H15v1.5h-1.5zm1.5 5h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 10.5v-4c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H13.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1zm6 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'SixteenMpRounded'); \ No newline at end of file +}, "1")], 'SixteenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixteenMpSharp.js b/packages/material-ui-icons/lib/SixteenMpSharp.js index ae35d803dcbfbf..9e5f8b07ef4ef9 100644 --- a/packages/material-ui-icons/lib/SixteenMpSharp.js +++ b/packages/material-ui-icons/lib/SixteenMpSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 2.5h4.5V7h-3v1h3v3.5H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 9H15v1.5h-1.5z" -}, "2")], 'SixteenMpSharp'); \ No newline at end of file +}, "2")], 'SixteenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixteenMpTwoTone.js b/packages/material-ui-icons/lib/SixteenMpTwoTone.js index ed25d6e4f02ac8..215500056fc9d5 100644 --- a/packages/material-ui-icons/lib/SixteenMpTwoTone.js +++ b/packages/material-ui-icons/lib/SixteenMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-7c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4zm-5-1h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 9H15v1.5h-1.5zm1.5 5h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H15v1.5h-1.5V9zm-5 2.5H10v-6H7V7h1.5z" -}, "4")], 'SixteenMpTwoTone'); \ No newline at end of file +}, "4")], 'SixteenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFps.js b/packages/material-ui-icons/lib/SixtyFps.js index c0b67a59cd4f37..3923c9d6a049fc 100644 --- a/packages/material-ui-icons/lib/SixtyFps.js +++ b/packages/material-ui-icons/lib/SixtyFps.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 3V5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h5zm-2 5v3H5v-3h3z" -}), 'SixtyFps'); \ No newline at end of file +}), 'SixtyFps'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsOutlined.js b/packages/material-ui-icons/lib/SixtyFpsOutlined.js index 5f731ac5de9513..74db73b3b0f58a 100644 --- a/packages/material-ui-icons/lib/SixtyFpsOutlined.js +++ b/packages/material-ui-icons/lib/SixtyFpsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 3V5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h5zm-2 5v3H5v-3h3z" -}), 'SixtyFpsOutlined'); \ No newline at end of file +}), 'SixtyFpsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsRounded.js b/packages/material-ui-icons/lib/SixtyFpsRounded.js index c76363072bd390..0882773918a72a 100644 --- a/packages/material-ui-icons/lib/SixtyFpsRounded.js +++ b/packages/material-ui-icons/lib/SixtyFpsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 1.5C10 5.67 9.33 5 8.5 5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h3.5c.83 0 1.5-.67 1.5-1.5zM8 13v3H5v-3h3z" -}), 'SixtyFpsRounded'); \ No newline at end of file +}), 'SixtyFpsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsSelect.js b/packages/material-ui-icons/lib/SixtyFpsSelect.js index 1b01e44ad08861..b0c2d954837ce6 100644 --- a/packages/material-ui-icons/lib/SixtyFpsSelect.js +++ b/packages/material-ui-icons/lib/SixtyFpsSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2V4H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'SixtyFpsSelect'); \ No newline at end of file +}), 'SixtyFpsSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsSelectOutlined.js b/packages/material-ui-icons/lib/SixtyFpsSelectOutlined.js index 71d9976e22691b..30f8d5c903f9b0 100644 --- a/packages/material-ui-icons/lib/SixtyFpsSelectOutlined.js +++ b/packages/material-ui-icons/lib/SixtyFpsSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2V4H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'SixtyFpsSelectOutlined'); \ No newline at end of file +}), 'SixtyFpsSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsSelectRounded.js b/packages/material-ui-icons/lib/SixtyFpsSelectRounded.js index 887ed34691b621..239a2e4bfb5f02 100644 --- a/packages/material-ui-icons/lib/SixtyFpsSelectRounded.js +++ b/packages/material-ui-icons/lib/SixtyFpsSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 1c0-.55-.45-1-1-1H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h4c.55 0 1-.45 1-1zm-2 5v2H6v-2h3zM4 22c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm8 0h-4c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1z" -}), 'SixtyFpsSelectRounded'); \ No newline at end of file +}), 'SixtyFpsSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsSelectSharp.js b/packages/material-ui-icons/lib/SixtyFpsSelectSharp.js index 9719162300e8b1..b5c57a1ed1bed8 100644 --- a/packages/material-ui-icons/lib/SixtyFpsSelectSharp.js +++ b/packages/material-ui-icons/lib/SixtyFpsSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6v6h-3V6h3zm2-2h-7v10h7V4zm-9 2V4H4v10h7V8H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'SixtyFpsSelectSharp'); \ No newline at end of file +}), 'SixtyFpsSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsSelectTwoTone.js b/packages/material-ui-icons/lib/SixtyFpsSelectTwoTone.js index 9c38fa89a2bbaa..b9540910f1a202 100644 --- a/packages/material-ui-icons/lib/SixtyFpsSelectTwoTone.js +++ b/packages/material-ui-icons/lib/SixtyFpsSelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2V4H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'SixtyFpsSelectTwoTone'); \ No newline at end of file +}), 'SixtyFpsSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsSharp.js b/packages/material-ui-icons/lib/SixtyFpsSharp.js index 0856a37699c103..d2b45e271c2211 100644 --- a/packages/material-ui-icons/lib/SixtyFpsSharp.js +++ b/packages/material-ui-icons/lib/SixtyFpsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8v8h-4V8h4m3-3H12v14h10V5zM10 8V5H2v14h9v-9H5V8h5zm-2 5v3H5v-3h3z" -}), 'SixtyFpsSharp'); \ No newline at end of file +}), 'SixtyFpsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SixtyFpsTwoTone.js b/packages/material-ui-icons/lib/SixtyFpsTwoTone.js index 8692d02a8007db..095ee78619c7f7 100644 --- a/packages/material-ui-icons/lib/SixtyFpsTwoTone.js +++ b/packages/material-ui-icons/lib/SixtyFpsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 3V5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h5zm-2 5v3H5v-3h3z" -}), 'SixtyFpsTwoTone'); \ No newline at end of file +}), 'SixtyFpsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Skateboarding.js b/packages/material-ui-icons/lib/Skateboarding.js index f64a5dfa4b7d6e..613be1e7674ce2 100644 --- a/packages/material-ui-icons/lib/Skateboarding.js +++ b/packages/material-ui-icons/lib/Skateboarding.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.15-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" -}), 'Skateboarding'); \ No newline at end of file +}), 'Skateboarding'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkateboardingOutlined.js b/packages/material-ui-icons/lib/SkateboardingOutlined.js index 1b2d8105a5fe68..2174ab09617836 100644 --- a/packages/material-ui-icons/lib/SkateboardingOutlined.js +++ b/packages/material-ui-icons/lib/SkateboardingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.15-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" -}), 'SkateboardingOutlined'); \ No newline at end of file +}), 'SkateboardingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkateboardingRounded.js b/packages/material-ui-icons/lib/SkateboardingRounded.js index 5c257126fc5a9b..f8b9f46958be14 100644 --- a/packages/material-ui-icons/lib/SkateboardingRounded.js +++ b/packages/material-ui-icons/lib/SkateboardingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-4.88c0-.69-.36-1.34-.95-1.7l-3.37-2.08 1.8-2.89c.96 1.53 2.54 2.64 4.39 2.96.6.11 1.13-.39 1.13-.99 0-.48-.35-.89-.83-.98-1.49-.28-2.72-1.29-3.3-2.64l-.52-1.21C14.16 5.64 13.61 5 12.7 5H8.11c-.69 0-1.33.36-1.7.94L5.03 8.15c-.29.47-.15 1.09.32 1.38.47.29 1.09.15 1.38-.32L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.15-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.21-2.67c.43-.52.57-1.21.37-1.86l-.68-2.27 3.5 2.2v4.6z" -}), 'SkateboardingRounded'); \ No newline at end of file +}), 'SkateboardingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkateboardingSharp.js b/packages/material-ui-icons/lib/SkateboardingSharp.js index 09f26badc81681..61c9db7af547af 100644 --- a/packages/material-ui-icons/lib/SkateboardingSharp.js +++ b/packages/material-ui-icons/lib/SkateboardingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.89 4.63 1.62 5.03-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" -}), 'SkateboardingSharp'); \ No newline at end of file +}), 'SkateboardingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkateboardingTwoTone.js b/packages/material-ui-icons/lib/SkateboardingTwoTone.js index 506bbaa5c7774b..527111c258606f 100644 --- a/packages/material-ui-icons/lib/SkateboardingTwoTone.js +++ b/packages/material-ui-icons/lib/SkateboardingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.14-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.18-.36-.29-.6-.29-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" -}), 'SkateboardingTwoTone'); \ No newline at end of file +}), 'SkateboardingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipNext.js b/packages/material-ui-icons/lib/SkipNext.js index b1923740e8204c..08027adfdf4b3e 100644 --- a/packages/material-ui-icons/lib/SkipNext.js +++ b/packages/material-ui-icons/lib/SkipNext.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 18 8.5-6L6 6v12zM16 6v12h2V6h-2z" -}), 'SkipNext'); \ No newline at end of file +}), 'SkipNext'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipNextOutlined.js b/packages/material-ui-icons/lib/SkipNextOutlined.js index 3db14337c13375..9555952318b5a8 100644 --- a/packages/material-ui-icons/lib/SkipNextOutlined.js +++ b/packages/material-ui-icons/lib/SkipNextOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 18 8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z" -}), 'SkipNextOutlined'); \ No newline at end of file +}), 'SkipNextOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipNextRounded.js b/packages/material-ui-icons/lib/SkipNextRounded.js index 1d8e4cc0c420a3..40395cbc419878 100644 --- a/packages/material-ui-icons/lib/SkipNextRounded.js +++ b/packages/material-ui-icons/lib/SkipNextRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.58 16.89 5.77-4.07c.56-.4.56-1.24 0-1.63L7.58 7.11C6.91 6.65 6 7.12 6 7.93v8.14c0 .81.91 1.28 1.58.82zM16 7v10c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'SkipNextRounded'); \ No newline at end of file +}), 'SkipNextRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipNextSharp.js b/packages/material-ui-icons/lib/SkipNextSharp.js index e7163a3c7415f3..02c228346c2437 100644 --- a/packages/material-ui-icons/lib/SkipNextSharp.js +++ b/packages/material-ui-icons/lib/SkipNextSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 18 8.5-6L6 6v12zM16 6v12h2V6h-2z" -}), 'SkipNextSharp'); \ No newline at end of file +}), 'SkipNextSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipNextTwoTone.js b/packages/material-ui-icons/lib/SkipNextTwoTone.js index 995bfa89f45fed..6aef68ba2676e2 100644 --- a/packages/material-ui-icons/lib/SkipNextTwoTone.js +++ b/packages/material-ui-icons/lib/SkipNextTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 9.86v4.28L11.03 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12 6 6v12l8.5-6zM8 9.86 11.03 12 8 14.14V9.86zM16 6h2v12h-2z" -}, "1")], 'SkipNextTwoTone'); \ No newline at end of file +}, "1")], 'SkipNextTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipPrevious.js b/packages/material-ui-icons/lib/SkipPrevious.js index a407c2a00c695c..d5b0d3c4f46269 100644 --- a/packages/material-ui-icons/lib/SkipPrevious.js +++ b/packages/material-ui-icons/lib/SkipPrevious.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h2v12H6zm3.5 6 8.5 6V6z" -}), 'SkipPrevious'); \ No newline at end of file +}), 'SkipPrevious'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipPreviousOutlined.js b/packages/material-ui-icons/lib/SkipPreviousOutlined.js index ff60befd84933b..f3457878917574 100644 --- a/packages/material-ui-icons/lib/SkipPreviousOutlined.js +++ b/packages/material-ui-icons/lib/SkipPreviousOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h2v12H6zm3.5 6 8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z" -}), 'SkipPreviousOutlined'); \ No newline at end of file +}), 'SkipPreviousOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipPreviousRounded.js b/packages/material-ui-icons/lib/SkipPreviousRounded.js index 02bc234f9aaa78..616462dafc5d85 100644 --- a/packages/material-ui-icons/lib/SkipPreviousRounded.js +++ b/packages/material-ui-icons/lib/SkipPreviousRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1zm3.66 6.82 5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.57.4-.57 1.24 0 1.64z" -}), 'SkipPreviousRounded'); \ No newline at end of file +}), 'SkipPreviousRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipPreviousSharp.js b/packages/material-ui-icons/lib/SkipPreviousSharp.js index 607fcee08c8cac..edb1e667a47120 100644 --- a/packages/material-ui-icons/lib/SkipPreviousSharp.js +++ b/packages/material-ui-icons/lib/SkipPreviousSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h2v12H6V6zm3.5 6 8.5 6V6l-8.5 6z" -}), 'SkipPreviousSharp'); \ No newline at end of file +}), 'SkipPreviousSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SkipPreviousTwoTone.js b/packages/material-ui-icons/lib/SkipPreviousTwoTone.js index 6c98c6cb65bace..05070cdc0abbb2 100644 --- a/packages/material-ui-icons/lib/SkipPreviousTwoTone.js +++ b/packages/material-ui-icons/lib/SkipPreviousTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 14.14V9.86L12.97 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h2v12H6zm12 12V6l-8.5 6 8.5 6zm-2-3.86L12.97 12 16 9.86v4.28z" -}, "1")], 'SkipPreviousTwoTone'); \ No newline at end of file +}, "1")], 'SkipPreviousTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sledding.js b/packages/material-ui-icons/lib/Sledding.js index 847a5400516d15..dcf8e01b7821a8 100644 --- a/packages/material-ui-icons/lib/Sledding.js +++ b/packages/material-ui-icons/lib/Sledding.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm8.8 15.74c-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24 2.14-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.11.69 3.27 2.95 2.58 5.05zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" -}), 'Sledding'); \ No newline at end of file +}), 'Sledding'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SleddingOutlined.js b/packages/material-ui-icons/lib/SleddingOutlined.js index bc2fa60b16f056..98dbe03f7d6b22 100644 --- a/packages/material-ui-icons/lib/SleddingOutlined.js +++ b/packages/material-ui-icons/lib/SleddingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm8.8 15.74c-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24 2.14-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.11.69 3.27 2.95 2.58 5.05zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" -}), 'SleddingOutlined'); \ No newline at end of file +}), 'SleddingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SleddingRounded.js b/packages/material-ui-icons/lib/SleddingRounded.js index b6ab518f9318de..c5c8e7222fe0fb 100644 --- a/packages/material-ui-icons/lib/SleddingRounded.js +++ b/packages/material-ui-icons/lib/SleddingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm4.92 14.74c-.13.39-.55.61-.95.48l-2.61-.85-.46 1.43 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.36-1.12-.11-2.32-1.07-2.91-.32-.2-.45-.6-.3-.95.2-.44.71-.57 1.12-.31 1.52.95 2.25 2.85 1.68 4.62-.68 2.1-2.94 3.25-5.04 2.57L1.74 17.6c-.39-.13-.63-.54-.52-.93.12-.41.55-.63.95-.5l3.22 1.05.46-1.43-3.19-1.04c-.39-.13-.63-.54-.52-.93.12-.41.55-.63.95-.5l.91.28v-2.78c0-.8.48-1.52 1.21-1.84.75-.32 4.11-1.76 4.26-1.83.41-.18.89-.21 1.35-.04.91.34 1.37 1.36 1.07 2.28l-1.04 3.2 2.15-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.22.4c.4.12.61.54.48.94zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" -}), 'SleddingRounded'); \ No newline at end of file +}), 'SleddingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SleddingSharp.js b/packages/material-ui-icons/lib/SleddingSharp.js index c8a867b9ceffef..9980114a2951ba 100644 --- a/packages/material-ui-icons/lib/SleddingSharp.js +++ b/packages/material-ui-icons/lib/SleddingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm3.22 13.4 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.1.68 3.25 2.94 2.57 5.04-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24L14.5 12l2.72 5.9zM6 14.25l.48.16.75-2.31.69-2.1-1.92.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" -}), 'SleddingSharp'); \ No newline at end of file +}), 'SleddingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SleddingTwoTone.js b/packages/material-ui-icons/lib/SleddingTwoTone.js index 3856b5fbe3d215..5ef41e1477b6c1 100644 --- a/packages/material-ui-icons/lib/SleddingTwoTone.js +++ b/packages/material-ui-icons/lib/SleddingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm8.8 15.74c-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24 2.14-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.11.69 3.27 2.95 2.58 5.05zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" -}), 'SleddingTwoTone'); \ No newline at end of file +}), 'SleddingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Slideshow.js b/packages/material-ui-icons/lib/Slideshow.js index c216de917ad0ee..e5f550e1dd7d53 100644 --- a/packages/material-ui-icons/lib/Slideshow.js +++ b/packages/material-ui-icons/lib/Slideshow.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'Slideshow'); \ No newline at end of file +}), 'Slideshow'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlideshowOutlined.js b/packages/material-ui-icons/lib/SlideshowOutlined.js index bf697c69408640..bc235c8f7c63d9 100644 --- a/packages/material-ui-icons/lib/SlideshowOutlined.js +++ b/packages/material-ui-icons/lib/SlideshowOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}), 'SlideshowOutlined'); \ No newline at end of file +}), 'SlideshowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlideshowRounded.js b/packages/material-ui-icons/lib/SlideshowRounded.js index 3e27842ab42649..0c6b67d9f4190f 100644 --- a/packages/material-ui-icons/lib/SlideshowRounded.js +++ b/packages/material-ui-icons/lib/SlideshowRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 9.04v5.92c0 .42.48.65.81.39l3.7-2.96c.25-.2.25-.58 0-.78l-3.7-2.96c-.33-.26-.81-.03-.81.39zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" -}), 'SlideshowRounded'); \ No newline at end of file +}), 'SlideshowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlideshowSharp.js b/packages/material-ui-icons/lib/SlideshowSharp.js index 5166a421dadb2d..13edf62521e3bb 100644 --- a/packages/material-ui-icons/lib/SlideshowSharp.js +++ b/packages/material-ui-icons/lib/SlideshowSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8v8l5-4-5-4zm11-5H3v18h18V3zm-2 16H5V5h14v14z" -}), 'SlideshowSharp'); \ No newline at end of file +}), 'SlideshowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlideshowTwoTone.js b/packages/material-ui-icons/lib/SlideshowTwoTone.js index 434db42a828752..8acf5c14dee76a 100644 --- a/packages/material-ui-icons/lib/SlideshowTwoTone.js +++ b/packages/material-ui-icons/lib/SlideshowTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm5-11 5 4-5 4V8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM10 8v8l5-4z" -}, "1")], 'SlideshowTwoTone'); \ No newline at end of file +}, "1")], 'SlideshowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlowMotionVideo.js b/packages/material-ui-icons/lib/SlowMotionVideo.js index 112c4f81c25ccb..e8d491b1b47e52 100644 --- a/packages/material-ui-icons/lib/SlowMotionVideo.js +++ b/packages/material-ui-icons/lib/SlowMotionVideo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.05 9.79 10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" -}), 'SlowMotionVideo'); \ No newline at end of file +}), 'SlowMotionVideo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlowMotionVideoOutlined.js b/packages/material-ui-icons/lib/SlowMotionVideoOutlined.js index 7dc6fe7cec3677..8955be3b22e2ed 100644 --- a/packages/material-ui-icons/lib/SlowMotionVideoOutlined.js +++ b/packages/material-ui-icons/lib/SlowMotionVideoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.05 9.79 10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" -}), 'SlowMotionVideoOutlined'); \ No newline at end of file +}), 'SlowMotionVideoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlowMotionVideoRounded.js b/packages/material-ui-icons/lib/SlowMotionVideoRounded.js index fd29ec2f4032ea..70b70a88b172a1 100644 --- a/packages/material-ui-icons/lib/SlowMotionVideoRounded.js +++ b/packages/material-ui-icons/lib/SlowMotionVideoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 8.5v7c0 .41.47.65.8.4l4.67-3.5c.27-.2.27-.6 0-.8L10.8 8.1c-.33-.25-.8-.01-.8.4zm1-5.27c0-.64-.59-1.13-1.21-.99-1.12.26-2.18.7-3.12 1.3-.53.34-.61 1.1-.16 1.55.32.32.83.4 1.21.16.77-.49 1.62-.85 2.54-1.05.44-.1.74-.51.74-.97zM5.1 6.51c-.46-.45-1.21-.38-1.55.16-.6.94-1.04 2-1.3 3.12-.14.62.34 1.21.98 1.21.45 0 .87-.3.96-.74.2-.91.57-1.77 1.05-2.53.26-.39.18-.9-.14-1.22zM3.23 13c-.64 0-1.13.59-.99 1.21.26 1.12.7 2.17 1.3 3.12.34.54 1.1.61 1.55.16.32-.32.4-.83.15-1.21-.49-.76-.85-1.61-1.05-2.53-.09-.45-.5-.75-.96-.75zm3.44 7.45c.95.6 2 1.04 3.12 1.3.62.14 1.21-.35 1.21-.98 0-.45-.3-.87-.74-.96-.91-.2-1.77-.57-2.53-1.05-.39-.24-.89-.17-1.21.16-.46.44-.39 1.19.15 1.53zM22 12c0 4.73-3.3 8.71-7.73 9.74-.62.15-1.22-.34-1.22-.98 0-.46.31-.86.75-.97 3.55-.82 6.2-4 6.2-7.79s-2.65-6.97-6.2-7.79c-.44-.1-.75-.51-.75-.97 0-.64.6-1.13 1.22-.98C18.7 3.29 22 7.27 22 12z" -}), 'SlowMotionVideoRounded'); \ No newline at end of file +}), 'SlowMotionVideoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlowMotionVideoSharp.js b/packages/material-ui-icons/lib/SlowMotionVideoSharp.js index 562d9a58d1ce00..c265c36481a76b 100644 --- a/packages/material-ui-icons/lib/SlowMotionVideoSharp.js +++ b/packages/material-ui-icons/lib/SlowMotionVideoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.05 9.79 10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" -}), 'SlowMotionVideoSharp'); \ No newline at end of file +}), 'SlowMotionVideoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SlowMotionVideoTwoTone.js b/packages/material-ui-icons/lib/SlowMotionVideoTwoTone.js index d4ebdfa47fa5ac..41f3ed94b42563 100644 --- a/packages/material-ui-icons/lib/SlowMotionVideoTwoTone.js +++ b/packages/material-ui-icons/lib/SlowMotionVideoTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.26 18.32 1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm11-8.95v2.02C16.97 4.59 20 7.95 20 12s-3.03 7.41-6.95 7.93v2.02C18.08 21.42 22 17.16 22 12c0-5.16-3.92-9.42-8.95-9.95zM16 12l-2.95-2.21L10 7.5v9l3.05-2.29zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" -}), 'SlowMotionVideoTwoTone'); \ No newline at end of file +}), 'SlowMotionVideoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartButton.js b/packages/material-ui-icons/lib/SmartButton.js index 4133743b027ae5..565256a4fac32d 100644 --- a/packages/material-ui-icons/lib/SmartButton.js +++ b/packages/material-ui-icons/lib/SmartButton.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.5 10 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14zm-2.5 5 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" -}), 'SmartButton'); \ No newline at end of file +}), 'SmartButton'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartButtonOutlined.js b/packages/material-ui-icons/lib/SmartButtonOutlined.js index 62a50088c509d4..f7630132889515 100644 --- a/packages/material-ui-icons/lib/SmartButtonOutlined.js +++ b/packages/material-ui-icons/lib/SmartButtonOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.5 10 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14zm-2.5 5 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" -}), 'SmartButtonOutlined'); \ No newline at end of file +}), 'SmartButtonOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartButtonRounded.js b/packages/material-ui-icons/lib/SmartButtonRounded.js index 82f1561fd5d3fa..f2192ebf3eb589 100644 --- a/packages/material-ui-icons/lib/SmartButtonRounded.js +++ b/packages/material-ui-icons/lib/SmartButtonRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.96 8.99c.18.39.73.39.91 0l.63-1.4 1.4-.63c.39-.18.39-.73 0-.91l-1.4-.63-.63-1.4c-.18-.39-.73-.39-.91 0l-.63 1.4-1.4.63c-.39.18-.39.73 0 .91l1.4.63.63 1.4zm2.7-4.56c.1.22.42.22.52 0l.36-.8.8-.36c.22-.1.22-.42 0-.52l-.8-.36-.36-.8c-.1-.22-.42-.22-.52 0l-.36.8-.8.36c-.22.1-.22.42 0 .52l.8.36.36.8z" -}), 'SmartButtonRounded'); \ No newline at end of file +}), 'SmartButtonRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartButtonSharp.js b/packages/material-ui-icons/lib/SmartButtonSharp.js index cdc0f1e65c078b..1cdf95c63beb21 100644 --- a/packages/material-ui-icons/lib/SmartButtonSharp.js +++ b/packages/material-ui-icons/lib/SmartButtonSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 17h-3v-2h1V9H4v6h6v2H2V7h20v10zm-7.5 2 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" -}), 'SmartButtonSharp'); \ No newline at end of file +}), 'SmartButtonSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartButtonTwoTone.js b/packages/material-ui-icons/lib/SmartButtonTwoTone.js index 785304909e7eef..b723e7480fe741 100644 --- a/packages/material-ui-icons/lib/SmartButtonTwoTone.js +++ b/packages/material-ui-icons/lib/SmartButtonTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.5 10 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14zm-2.5 5 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" -}), 'SmartButtonTwoTone'); \ No newline at end of file +}), 'SmartButtonTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartDisplay.js b/packages/material-ui-icons/lib/SmartDisplay.js index 066c9f07988f99..d0641c5a113236 100644 --- a/packages/material-ui-icons/lib/SmartDisplay.js +++ b/packages/material-ui-icons/lib/SmartDisplay.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.5 16.5v-9l7 4.5-7 4.5z" -}), 'SmartDisplay'); \ No newline at end of file +}), 'SmartDisplay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartDisplayOutlined.js b/packages/material-ui-icons/lib/SmartDisplayOutlined.js index a0c08e14961fb0..6246b6313f3302 100644 --- a/packages/material-ui-icons/lib/SmartDisplayOutlined.js +++ b/packages/material-ui-icons/lib/SmartDisplayOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 7.5v9l7-4.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14.01H4V5.99h16v12.02z" -}, "1")], 'SmartDisplayOutlined'); \ No newline at end of file +}, "1")], 'SmartDisplayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartDisplayRounded.js b/packages/material-ui-icons/lib/SmartDisplayRounded.js index 587c406ad2ceea..0d897ec9b9f595 100644 --- a/packages/material-ui-icons/lib/SmartDisplayRounded.js +++ b/packages/material-ui-icons/lib/SmartDisplayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.5 14.67V9.33c0-.79.88-1.27 1.54-.84l4.15 2.67c.61.39.61 1.29 0 1.68l-4.15 2.67c-.66.43-1.54-.05-1.54-.84z" -}), 'SmartDisplayRounded'); \ No newline at end of file +}), 'SmartDisplayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartDisplaySharp.js b/packages/material-ui-icons/lib/SmartDisplaySharp.js index d77ab622cf3b12..edb64dab59f150 100644 --- a/packages/material-ui-icons/lib/SmartDisplaySharp.js +++ b/packages/material-ui-icons/lib/SmartDisplaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zM9.5 16.5v-9l7 4.5-7 4.5z" -}), 'SmartDisplaySharp'); \ No newline at end of file +}), 'SmartDisplaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartDisplayTwoTone.js b/packages/material-ui-icons/lib/SmartDisplayTwoTone.js index b2e31c35868b04..ab83c7387bab09 100644 --- a/packages/material-ui-icons/lib/SmartDisplayTwoTone.js +++ b/packages/material-ui-icons/lib/SmartDisplayTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18.01h16V5.99H4v12.02zM9.5 7.5l7 4.5-7 4.5v-9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.5 7.5v9l7-4.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14.01H4V5.99h16v12.02z" -}, "2")], 'SmartDisplayTwoTone'); \ No newline at end of file +}, "2")], 'SmartDisplayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartScreen.js b/packages/material-ui-icons/lib/SmartScreen.js index 61a6436530ff81..133438152b2df9 100644 --- a/packages/material-ui-icons/lib/SmartScreen.js +++ b/packages/material-ui-icons/lib/SmartScreen.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 12H6V7h12v10z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11.25h1.5v1.5H15zm-2.5 0H14v1.5h-1.5zm-2.5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z" -}, "1")], 'SmartScreen'); \ No newline at end of file +}, "1")], 'SmartScreen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartScreenOutlined.js b/packages/material-ui-icons/lib/SmartScreenOutlined.js index 0d9006713c47f5..1b1a66b4e2f288 100644 --- a/packages/material-ui-icons/lib/SmartScreenOutlined.js +++ b/packages/material-ui-icons/lib/SmartScreenOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 11.25H14v1.5h-1.5zm2.5 0h1.5v1.5H15zm-5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM4 17H3V7h1v10zm14 0H6V7h12v10zm3 0h-1V7h1v10z" -}, "1")], 'SmartScreenOutlined'); \ No newline at end of file +}, "1")], 'SmartScreenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartScreenRounded.js b/packages/material-ui-icons/lib/SmartScreenRounded.js index 654559b8eb8971..911465a03bcb5d 100644 --- a/packages/material-ui-icons/lib/SmartScreenRounded.js +++ b/packages/material-ui-icons/lib/SmartScreenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 2v10H6V7h12zm-4 5c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75zm-5 0c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75S9 12.41 9 12zm7.5 0c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75zm-5 0c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75z" -}), 'SmartScreenRounded'); \ No newline at end of file +}), 'SmartScreenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartScreenSharp.js b/packages/material-ui-icons/lib/SmartScreenSharp.js index dc07fc8c565c1a..d80d3c955b5585 100644 --- a/packages/material-ui-icons/lib/SmartScreenSharp.js +++ b/packages/material-ui-icons/lib/SmartScreenSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 5v14h22V5H1zm17 12H6V7h12v10z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 11.25H14v1.5h-1.5zm2.5 0h1.5v1.5H15zm-5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z" -}, "1")], 'SmartScreenSharp'); \ No newline at end of file +}, "1")], 'SmartScreenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartScreenTwoTone.js b/packages/material-ui-icons/lib/SmartScreenTwoTone.js index 50cc0c173aa239..4ee5c05b2522da 100644 --- a/packages/material-ui-icons/lib/SmartScreenTwoTone.js +++ b/packages/material-ui-icons/lib/SmartScreenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17h1V7H3v10zM20 7v10h1V7h-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 11.25h-1.5v1.5H14v-1.5zm2.5 0H15v1.5h1.5v-1.5zm-5 0H10v1.5h1.5v-1.5zm-2.5 0H7.5v1.5H9v-1.5zM21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM4 17H3V7h1v10zm14 0H6V7h12v10zm3 0h-1V7h1v10z" -}, "1")], 'SmartScreenTwoTone'); \ No newline at end of file +}, "1")], 'SmartScreenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartToy.js b/packages/material-ui-icons/lib/SmartToy.js index 1a82910246fc96..e0112113b43a54 100644 --- a/packages/material-ui-icons/lib/SmartToy.js +++ b/packages/material-ui-icons/lib/SmartToy.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z" -}), 'SmartToy'); \ No newline at end of file +}), 'SmartToy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartToyOutlined.js b/packages/material-ui-icons/lib/SmartToyOutlined.js index 67a781e34c0266..55f78f7e4e1437 100644 --- a/packages/material-ui-icons/lib/SmartToyOutlined.js +++ b/packages/material-ui-icons/lib/SmartToyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zm-2 10H6V7h12v12zm-9-6c-.83 0-1.5-.67-1.5-1.5S8.17 10 9 10s1.5.67 1.5 1.5S9.83 13 9 13zm7.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM8 15h8v2H8v-2z" -}), 'SmartToyOutlined'); \ No newline at end of file +}), 'SmartToyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartToyRounded.js b/packages/material-ui-icons/lib/SmartToyRounded.js index c78ac34c974ea2..349bafe59155b2 100644 --- a/packages/material-ui-icons/lib/SmartToyRounded.js +++ b/packages/material-ui-icons/lib/SmartToyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM15 17H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z" -}), 'SmartToyRounded'); \ No newline at end of file +}), 'SmartToyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartToySharp.js b/packages/material-ui-icons/lib/SmartToySharp.js index 92bd792c93d5ce..5d2ace597c5e72 100644 --- a/packages/material-ui-icons/lib/SmartToySharp.js +++ b/packages/material-ui-icons/lib/SmartToySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9V5h-5V2H9v3H4v4H1v6h3v6h16v-6h3V9h-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z" -}), 'SmartToySharp'); \ No newline at end of file +}), 'SmartToySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartToyTwoTone.js b/packages/material-ui-icons/lib/SmartToyTwoTone.js index 7a08576704e817..3703fe1634046e 100644 --- a/packages/material-ui-icons/lib/SmartToyTwoTone.js +++ b/packages/material-ui-icons/lib/SmartToyTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7H6v12h12V7zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 15h8v2H8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zm-2 10H6V7h12v12z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "11.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "11.5", r: "1.5" -}, "4")], 'SmartToyTwoTone'); \ No newline at end of file +}, "4")], 'SmartToyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Smartphone.js b/packages/material-ui-icons/lib/Smartphone.js index 1fdaf4baf7d628..f07fc4815f1077 100644 --- a/packages/material-ui-icons/lib/Smartphone.js +++ b/packages/material-ui-icons/lib/Smartphone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'Smartphone'); \ No newline at end of file +}), 'Smartphone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartphoneOutlined.js b/packages/material-ui-icons/lib/SmartphoneOutlined.js index c0c9794ec7fa2d..0c8896d97a1abd 100644 --- a/packages/material-ui-icons/lib/SmartphoneOutlined.js +++ b/packages/material-ui-icons/lib/SmartphoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'SmartphoneOutlined'); \ No newline at end of file +}), 'SmartphoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartphoneRounded.js b/packages/material-ui-icons/lib/SmartphoneRounded.js index 0a2238abd07871..6e25d46084c266 100644 --- a/packages/material-ui-icons/lib/SmartphoneRounded.js +++ b/packages/material-ui-icons/lib/SmartphoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'SmartphoneRounded'); \ No newline at end of file +}), 'SmartphoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartphoneSharp.js b/packages/material-ui-icons/lib/SmartphoneSharp.js index bf817f32b7db15..0b463151517f1e 100644 --- a/packages/material-ui-icons/lib/SmartphoneSharp.js +++ b/packages/material-ui-icons/lib/SmartphoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 1v22h14V1H5zm12 18H7V5h10v14z" -}), 'SmartphoneSharp'); \ No newline at end of file +}), 'SmartphoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmartphoneTwoTone.js b/packages/material-ui-icons/lib/SmartphoneTwoTone.js index 43e5aa4b7cfbb0..880c4b4ffee174 100644 --- a/packages/material-ui-icons/lib/SmartphoneTwoTone.js +++ b/packages/material-ui-icons/lib/SmartphoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v14H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}, "1")], 'SmartphoneTwoTone'); \ No newline at end of file +}, "1")], 'SmartphoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokeFree.js b/packages/material-ui-icons/lib/SmokeFree.js index fdd102bfc467eb..fdb4b7f7242ae9 100644 --- a/packages/material-ui-icons/lib/SmokeFree.js +++ b/packages/material-ui-icons/lib/SmokeFree.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 6 6.99 7H2v3h9.99l7 7 1.26-1.25-17-17zm18.5 7H22v3h-1.5zM18 13h1.5v3H18zm.85-8.12c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.92c0-2.23-1.28-4.15-3.15-5.04zM14.5 8.7h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.59c0-1.8-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75V2c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm2.5 7.23V13h-2.93z" -}), 'SmokeFree'); \ No newline at end of file +}), 'SmokeFree'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokeFreeOutlined.js b/packages/material-ui-icons/lib/SmokeFreeOutlined.js index b626fb26a30501..b8925566416707 100644 --- a/packages/material-ui-icons/lib/SmokeFreeOutlined.js +++ b/packages/material-ui-icons/lib/SmokeFreeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 0h-2.34L17 15.34zm-2.5-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm4.35-3.92c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM3.41 4.59 2 6l7 7H2v3h10l7 7 1.41-1.41z" -}), 'SmokeFreeOutlined'); \ No newline at end of file +}), 'SmokeFreeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokeFreeRounded.js b/packages/material-ui-icons/lib/SmokeFreeRounded.js index d588aa444ab255..3b6ba749db4072 100644 --- a/packages/material-ui-icons/lib/SmokeFreeRounded.js +++ b/packages/material-ui-icons/lib/SmokeFreeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 1.5c0-.83-.67-1.5-1.5-1.5h-.84l2.18 2.18c.1-.21.16-.44.16-.68zm1.96-12.15H19h-.04zm-.11 2.38c.38-.38.67-.84.84-1.35.16-.5-.19-1.01-.71-1.02-.34.01-.61.25-.72.58-.18.55-.62.99-1.17 1.17-.34.11-.59.39-.59.74V5c0 .37.27.69.64.75 1.93.31 3.36 2 3.36 4.02v1.48c0 .41.34.75.75.75s.75-.34.75-.75V9.76c0-2.22-1.28-4.14-3.15-5.03zm-4.24 3.92h1.42c1.05 0 1.97.74 1.97 2.05v.55c0 .41.33.75.75.75h.01c.41 0 .75-.33.75-.75v-.89c0-1.81-1.6-3.16-3.47-3.16h-1.3c-1.02 0-1.94-.73-2.07-1.75-.12-.95.46-1.7 1.3-1.93.32-.09.54-.38.54-.72 0-.49-.46-.86-.93-.72-1.42.41-2.45 1.73-2.42 3.28.02 1.85 1.61 3.29 3.45 3.29zM4.12 5.29a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L9 13H3.5c-.83 0-1.5.67-1.5 1.5S2.67 16 3.5 16H12l6.29 6.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 5.29z" -}), 'SmokeFreeRounded'); \ No newline at end of file +}), 'SmokeFreeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokeFreeSharp.js b/packages/material-ui-icons/lib/SmokeFreeSharp.js index e5898c3daabb77..c928655e4a1c96 100644 --- a/packages/material-ui-icons/lib/SmokeFreeSharp.js +++ b/packages/material-ui-icons/lib/SmokeFreeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 13H22v3h-1.5zm-6-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zm1.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM18 13h1.5v3H18zM3.41 4.59 2 6l7 7H2v3h10l7 7 1.41-1.41z" -}), 'SmokeFreeSharp'); \ No newline at end of file +}), 'SmokeFreeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokeFreeTwoTone.js b/packages/material-ui-icons/lib/SmokeFreeTwoTone.js index 5de5e023723cb5..a739b9cc0e9701 100644 --- a/packages/material-ui-icons/lib/SmokeFreeTwoTone.js +++ b/packages/material-ui-icons/lib/SmokeFreeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM14.5 8.65h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zM3.41 4.59 2 6l7 7H2v3h10l7 7 1.41-1.41z" -}), 'SmokeFreeTwoTone'); \ No newline at end of file +}), 'SmokeFreeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokingRooms.js b/packages/material-ui-icons/lib/SmokingRooms.js index f4e00ea71fec65..66743197a043ca 100644 --- a/packages/material-ui-icons/lib/SmokingRooms.js +++ b/packages/material-ui-icons/lib/SmokingRooms.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16h15v3H2zm18.5 0H22v3h-1.5zM18 16h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" -}), 'SmokingRooms'); \ No newline at end of file +}), 'SmokingRooms'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokingRoomsOutlined.js b/packages/material-ui-icons/lib/SmokingRoomsOutlined.js index 1bb5dac5891eb7..8f6a377e34076b 100644 --- a/packages/material-ui-icons/lib/SmokingRoomsOutlined.js +++ b/packages/material-ui-icons/lib/SmokingRoomsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 16h1.5v3H18zM2 16h15v3H2zm14.03-5.8H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16zM20.5 16H22v3h-1.5zm-1.65-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03z" -}), 'SmokingRoomsOutlined'); \ No newline at end of file +}), 'SmokingRoomsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokingRoomsRounded.js b/packages/material-ui-icons/lib/SmokingRoomsRounded.js index ce65ea52fe9f36..e2776346242b0f 100644 --- a/packages/material-ui-icons/lib/SmokingRoomsRounded.js +++ b/packages/material-ui-icons/lib/SmokingRoomsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 16h-12c-.83 0-1.5.67-1.5 1.5S2.67 19 3.5 19h12c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zm3.35-8.27c.62-.61 1-1.45 1-2.38 0-1.51-1-2.79-2.38-3.21-.48-.14-.97.22-.97.72 0 .33.21.62.52.71.77.23 1.33.94 1.33 1.78 0 .82-.53 1.51-1.27 1.76-.33.11-.58.39-.58.74V8c0 .37.27.69.64.75 1.93.31 3.36 2 3.36 4.02v1.48c0 .41.34.75.75.75s.75-.34.75-.75v-1.49c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47h-1.3c-1.02 0-1.94-.73-2.07-1.75-.12-.95.46-1.7 1.3-1.93.32-.09.54-.38.54-.72 0-.49-.46-.86-.93-.72-1.42.41-2.45 1.73-2.42 3.28.03 1.84 1.62 3.29 3.46 3.29h1.42c1.05 0 1.97.74 1.97 2.05v.55c0 .41.33.75.75.75h.01c.41 0 .75-.33.75-.75v-.89c-.01-1.81-1.61-3.16-3.48-3.16zM18 16h1.5v3H18zm2.5 0H22v3h-1.5z" -}), 'SmokingRoomsRounded'); \ No newline at end of file +}), 'SmokingRoomsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokingRoomsSharp.js b/packages/material-ui-icons/lib/SmokingRoomsSharp.js index a3e0849992203c..d7ad995367c44e 100644 --- a/packages/material-ui-icons/lib/SmokingRoomsSharp.js +++ b/packages/material-ui-icons/lib/SmokingRoomsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" -}), 'SmokingRoomsSharp'); \ No newline at end of file +}), 'SmokingRoomsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmokingRoomsTwoTone.js b/packages/material-ui-icons/lib/SmokingRoomsTwoTone.js index d5c6c01128e4b1..b3d4e95f312d73 100644 --- a/packages/material-ui-icons/lib/SmokingRoomsTwoTone.js +++ b/packages/material-ui-icons/lib/SmokingRoomsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" -}, "1")], 'SmokingRoomsTwoTone'); \ No newline at end of file +}, "1")], 'SmokingRoomsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sms.js b/packages/material-ui-icons/lib/Sms.js index 282305596db2a3..d19612999e6bd3 100644 --- a/packages/material-ui-icons/lib/Sms.js +++ b/packages/material-ui-icons/lib/Sms.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" -}), 'Sms'); \ No newline at end of file +}), 'Sms'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsFailed.js b/packages/material-ui-icons/lib/SmsFailed.js index 55e5c6b8fc8dc9..ea9f48b787844e 100644 --- a/packages/material-ui-icons/lib/SmsFailed.js +++ b/packages/material-ui-icons/lib/SmsFailed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z" -}), 'SmsFailed'); \ No newline at end of file +}), 'SmsFailed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsFailedOutlined.js b/packages/material-ui-icons/lib/SmsFailedOutlined.js index 1f9f0569fdfcb8..e99b108c630b8d 100644 --- a/packages/material-ui-icons/lib/SmsFailedOutlined.js +++ b/packages/material-ui-icons/lib/SmsFailedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" -}), 'SmsFailedOutlined'); \ No newline at end of file +}), 'SmsFailedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsFailedRounded.js b/packages/material-ui-icons/lib/SmsFailedRounded.js index ea8da59eac80ab..9cc35ea26e93da 100644 --- a/packages/material-ui-icons/lib/SmsFailedRounded.js +++ b/packages/material-ui-icons/lib/SmsFailedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" -}), 'SmsFailedRounded'); \ No newline at end of file +}), 'SmsFailedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsFailedSharp.js b/packages/material-ui-icons/lib/SmsFailedSharp.js index b407779ef569d3..ea96b13e76233f 100644 --- a/packages/material-ui-icons/lib/SmsFailedSharp.js +++ b/packages/material-ui-icons/lib/SmsFailedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z" -}), 'SmsFailedSharp'); \ No newline at end of file +}), 'SmsFailedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsFailedTwoTone.js b/packages/material-ui-icons/lib/SmsFailedTwoTone.js index 8cf4a5ec86881b..d24797282cabdf 100644 --- a/packages/material-ui-icons/lib/SmsFailedTwoTone.js +++ b/packages/material-ui-icons/lib/SmsFailedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17 5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" -}, "1")], 'SmsFailedTwoTone'); \ No newline at end of file +}, "1")], 'SmsFailedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsOutlined.js b/packages/material-ui-icons/lib/SmsOutlined.js index 28a5b3ddc11dd5..45a484a046b56a 100644 --- a/packages/material-ui-icons/lib/SmsOutlined.js +++ b/packages/material-ui-icons/lib/SmsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z" -}), 'SmsOutlined'); \ No newline at end of file +}), 'SmsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsRounded.js b/packages/material-ui-icons/lib/SmsRounded.js index 754c5c7ee253ef..f173efda7f3bc7 100644 --- a/packages/material-ui-icons/lib/SmsRounded.js +++ b/packages/material-ui-icons/lib/SmsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" -}), 'SmsRounded'); \ No newline at end of file +}), 'SmsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsSharp.js b/packages/material-ui-icons/lib/SmsSharp.js index ed900a6e19861b..9bdecefb4c0026 100644 --- a/packages/material-ui-icons/lib/SmsSharp.js +++ b/packages/material-ui-icons/lib/SmsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" -}), 'SmsSharp'); \ No newline at end of file +}), 'SmsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SmsTwoTone.js b/packages/material-ui-icons/lib/SmsTwoTone.js index 1064ff9f658caa..3a9debc01e95b9 100644 --- a/packages/material-ui-icons/lib/SmsTwoTone.js +++ b/packages/material-ui-icons/lib/SmsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17 5.17 16H20V4H4v13.17zM15 9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z" -}, "1")], 'SmsTwoTone'); \ No newline at end of file +}, "1")], 'SmsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnippetFolder.js b/packages/material-ui-icons/lib/SnippetFolder.js index 6e5e6fd9422966..548e5509ab67c7 100644 --- a/packages/material-ui-icons/lib/SnippetFolder.js +++ b/packages/material-ui-icons/lib/SnippetFolder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.88 10.5 1.62 1.62v3.38h-3v-5h1.38zM22 8v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h6l2 2h8c1.1 0 2 .9 2 2zm-3 3.5L16.5 9H13v8h6v-5.5z" -}), 'SnippetFolder'); \ No newline at end of file +}), 'SnippetFolder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnippetFolderOutlined.js b/packages/material-ui-icons/lib/SnippetFolderOutlined.js index e9fdbf8470758d..3310d9aaf15870 100644 --- a/packages/material-ui-icons/lib/SnippetFolderOutlined.js +++ b/packages/material-ui-icons/lib/SnippetFolderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2.5-5.88v3.38h-3v-5h1.38l1.62 1.62zM13 9v8h6v-5.5L16.5 9H13z" -}), 'SnippetFolderOutlined'); \ No newline at end of file +}), 'SnippetFolderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnippetFolderRounded.js b/packages/material-ui-icons/lib/SnippetFolderRounded.js index 5fe181977765ce..d5e6f5457fc0f0 100644 --- a/packages/material-ui-icons/lib/SnippetFolderRounded.js +++ b/packages/material-ui-icons/lib/SnippetFolderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.88 10.5 1.62 1.62v3.38h-3v-5h1.38zM22 8v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h5.17c.53 0 1.04.21 1.41.59L12 6h8c1.1 0 2 .9 2 2zm-3 3.91c0-.27-.11-.52-.29-.71L16.8 9.29c-.19-.18-.45-.29-.71-.29H14c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.09z" -}), 'SnippetFolderRounded'); \ No newline at end of file +}), 'SnippetFolderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnippetFolderSharp.js b/packages/material-ui-icons/lib/SnippetFolderSharp.js index 577d9d4ead5c4c..8e34144e657090 100644 --- a/packages/material-ui-icons/lib/SnippetFolderSharp.js +++ b/packages/material-ui-icons/lib/SnippetFolderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 6-2-2H2v16h20V6H12zm7 11h-6V9h3.5l2.5 2.5V17zm-3.12-6.5 1.62 1.62v3.38h-3v-5h1.38z" -}), 'SnippetFolderSharp'); \ No newline at end of file +}), 'SnippetFolderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnippetFolderTwoTone.js b/packages/material-ui-icons/lib/SnippetFolderTwoTone.js index 274546a69ad886..c0dac2d0a0c0cf 100644 --- a/packages/material-ui-icons/lib/SnippetFolderTwoTone.js +++ b/packages/material-ui-icons/lib/SnippetFolderTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.17 6H4v12h16V8h-8.83l-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2.5-5.88v3.38h-3v-5h1.38l1.62 1.62zM16.5 9H13v8h6v-5.5L16.5 9z" -}, "1")], 'SnippetFolderTwoTone'); \ No newline at end of file +}, "1")], 'SnippetFolderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Snooze.js b/packages/material-ui-icons/lib/Snooze.js index 182c3efb2441a6..017b0df60ab2e5 100644 --- a/packages/material-ui-icons/lib/Snooze.js +++ b/packages/material-ui-icons/lib/Snooze.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-3-9h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2z" -}), 'Snooze'); \ No newline at end of file +}), 'Snooze'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnoozeOutlined.js b/packages/material-ui-icons/lib/SnoozeOutlined.js index ccc056acbca40a..0a3a0fd0f363e1 100644 --- a/packages/material-ui-icons/lib/SnoozeOutlined.js +++ b/packages/material-ui-icons/lib/SnoozeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654 1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z" -}), 'SnoozeOutlined'); \ No newline at end of file +}), 'SnoozeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnoozeRounded.js b/packages/material-ui-icons/lib/SnoozeRounded.js index 27e0d1fae1eca4..9061cbe37ca47a 100644 --- a/packages/material-ui-icons/lib/SnoozeRounded.js +++ b/packages/material-ui-icons/lib/SnoozeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 11h2.63l-3.72 4.35C8.36 16 8.82 17 9.67 17H14c.55 0 1-.45 1-1s-.45-1-1-1h-2.63l3.72-4.35c.55-.65.09-1.65-.76-1.65H10c-.55 0-1 .45-1 1s.45 1 1 1zm11.3-4.58c-.35.42-.98.48-1.41.13l-3.07-2.56c-.42-.36-.48-.99-.12-1.41.35-.42.98-.48 1.41-.13l3.07 2.56c.42.36.48.99.12 1.41zm-18.6 0c.35.43.98.48 1.4.13l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z" -}), 'SnoozeRounded'); \ No newline at end of file +}), 'SnoozeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnoozeSharp.js b/packages/material-ui-icons/lib/SnoozeSharp.js index 00d44f8bea3ba1..95952394ce0a93 100644 --- a/packages/material-ui-icons/lib/SnoozeSharp.js +++ b/packages/material-ui-icons/lib/SnoozeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654 1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z" -}), 'SnoozeSharp'); \ No newline at end of file +}), 'SnoozeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnoozeTwoTone.js b/packages/material-ui-icons/lib/SnoozeTwoTone.js index c92e0c21491536..1a5c3ea3bf511b 100644 --- a/packages/material-ui-icons/lib/SnoozeTwoTone.js +++ b/packages/material-ui-icons/lib/SnoozeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9zm8.337-9.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" -}), 'SnoozeTwoTone'); \ No newline at end of file +}), 'SnoozeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Snowboarding.js b/packages/material-ui-icons/lib/Snowboarding.js index a9c483315e1f86..e3dfab9ab3a203 100644 --- a/packages/material-ui-icons/lib/Snowboarding.js +++ b/packages/material-ui-icons/lib/Snowboarding.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" -}), 'Snowboarding'); \ No newline at end of file +}), 'Snowboarding'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowboardingOutlined.js b/packages/material-ui-icons/lib/SnowboardingOutlined.js index 0ea982df4c3fd1..812703c3da49b4 100644 --- a/packages/material-ui-icons/lib/SnowboardingOutlined.js +++ b/packages/material-ui-icons/lib/SnowboardingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" -}), 'SnowboardingOutlined'); \ No newline at end of file +}), 'SnowboardingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowboardingRounded.js b/packages/material-ui-icons/lib/SnowboardingRounded.js index 96f37d3032e494..4ccf5c09c28096 100644 --- a/packages/material-ui-icons/lib/SnowboardingRounded.js +++ b/packages/material-ui-icons/lib/SnowboardingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.35 9.53c.47.29 1.09.15 1.38-.32L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.08-.38-.16-.8-.59-.89-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-.88-5.43c-.08-.49-.34-.93-.72-1.24l-2.72-2.19 1.8-2.89c.96 1.53 2.54 2.64 4.39 2.96.6.11 1.13-.39 1.13-1 0-.48-.35-.89-.83-.98-1.49-.28-2.72-1.29-3.3-2.64l-.52-1.21C15.16 5.64 14.61 5 13.7 5H9.11c-.69 0-1.33.36-1.7.94L6.03 8.15c-.29.47-.15 1.09.32 1.38zm2.38 9.4 2.25-1.51c.47-.32.73-.88.65-1.44l-.32-2.4 2.84 2.02.75 4.64-6.17-1.31z" -}), 'SnowboardingRounded'); \ No newline at end of file +}), 'SnowboardingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowboardingSharp.js b/packages/material-ui-icons/lib/SnowboardingSharp.js index 60850bb1a03f34..ac98a2b664de97 100644 --- a/packages/material-ui-icons/lib/SnowboardingSharp.js +++ b/packages/material-ui-icons/lib/SnowboardingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35L8.5 11.7l1 4.3L6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" -}), 'SnowboardingSharp'); \ No newline at end of file +}), 'SnowboardingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowboardingTwoTone.js b/packages/material-ui-icons/lib/SnowboardingTwoTone.js index 5de81bca2e1881..97e7eb34d1febd 100644 --- a/packages/material-ui-icons/lib/SnowboardingTwoTone.js +++ b/packages/material-ui-icons/lib/SnowboardingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" -}), 'SnowboardingTwoTone'); \ No newline at end of file +}), 'SnowboardingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Snowmobile.js b/packages/material-ui-icons/lib/Snowmobile.js index 2afb673a59c6ad..36ca4bf959e1a2 100644 --- a/packages/material-ui-icons/lib/Snowmobile.js +++ b/packages/material-ui-icons/lib/Snowmobile.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-1-8-8-8-8h-3v2h2.25l1.45 1.3L11 11l-9.5-1L0 13l4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2z" -}), 'Snowmobile'); \ No newline at end of file +}), 'Snowmobile'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowmobileOutlined.js b/packages/material-ui-icons/lib/SnowmobileOutlined.js index f7862d58a3e9bf..e721d73fa03203 100644 --- a/packages/material-ui-icons/lib/SnowmobileOutlined.js +++ b/packages/material-ui-icons/lib/SnowmobileOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-1-8-8-8-8h-3v2h2.25l.8.72L11 10 2 9l-2 4 4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2zm9-4h-6.7l-7.45-2.23.31-.62 8.44.85 3.93-2.94s3.77 3.44 4.27 4.14c0 0-1.1.8-2.8.8z" -}), 'SnowmobileOutlined'); \ No newline at end of file +}), 'SnowmobileOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowmobileRounded.js b/packages/material-ui-icons/lib/SnowmobileRounded.js index 57df92521dbb6c..93404d79b953cc 100644 --- a/packages/material-ui-icons/lib/SnowmobileRounded.js +++ b/packages/material-ui-icons/lib/SnowmobileRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6c0 .55.45 1 1 1h1.25l1.45 1.3L11 11l-9.12-.96c-1-.11-1.88.68-1.88 1.69 0 .75.49 1.41 1.21 1.63l3.33 1-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-2c-.55 0-1 .45-1 1s.45 1 1 1h5c1.13 0 2.11-.62 2.63-1.55.36-.65-.15-1.45-.9-1.45-.34 0-.68.16-.84.47-.17.31-.51.53-.89.53h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-.89-7.72-7.75-7.72-7.75-.18-.16-.41-.25-.66-.25H12c-.55 0-1 .45-1 1zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2z" -}), 'SnowmobileRounded'); \ No newline at end of file +}), 'SnowmobileRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowmobileSharp.js b/packages/material-ui-icons/lib/SnowmobileSharp.js index c036ff1f0c1be8..02a1d07568f137 100644 --- a/packages/material-ui-icons/lib/SnowmobileSharp.js +++ b/packages/material-ui-icons/lib/SnowmobileSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C21.6 15.18 23 13 23 13l-9-8h-3v2h2.25l1.45 1.3L11 11l-9.5-1L0 13l4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2z" -}), 'SnowmobileSharp'); \ No newline at end of file +}), 'SnowmobileSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowmobileTwoTone.js b/packages/material-ui-icons/lib/SnowmobileTwoTone.js index 5988712bbdf22f..4c8255d34939f7 100644 --- a/packages/material-ui-icons/lib/SnowmobileTwoTone.js +++ b/packages/material-ui-icons/lib/SnowmobileTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 14h-6.7l-7.45-2.23.31-.62 8.44.85 3.93-2.94s3.77 3.44 4.27 4.14c0 0-1.1.8-2.8.8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-1-8-8-8-8h-3v2h2.25l.8.72L11 10 2 9l-2 4 4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2zm9-4h-6.7l-7.45-2.23.31-.62 8.44.85 3.93-2.94s3.77 3.44 4.27 4.14c0 0-1.1.8-2.8.8z" -}, "1")], 'SnowmobileTwoTone'); \ No newline at end of file +}, "1")], 'SnowmobileTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Snowshoeing.js b/packages/material-ui-icons/lib/Snowshoeing.js index a971303576947e..2aaaa2d17073bb 100644 --- a/packages/material-ui-icons/lib/Snowshoeing.js +++ b/packages/material-ui-icons/lib/Snowshoeing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" -}), 'Snowshoeing'); \ No newline at end of file +}), 'Snowshoeing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowshoeingOutlined.js b/packages/material-ui-icons/lib/SnowshoeingOutlined.js index 76f8ae14ded5cc..3cabc1d651893c 100644 --- a/packages/material-ui-icons/lib/SnowshoeingOutlined.js +++ b/packages/material-ui-icons/lib/SnowshoeingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" -}), 'SnowshoeingOutlined'); \ No newline at end of file +}), 'SnowshoeingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowshoeingRounded.js b/packages/material-ui-icons/lib/SnowshoeingRounded.js index 7b8dea91e52572..396b8423764c67 100644 --- a/packages/material-ui-icons/lib/SnowshoeingRounded.js +++ b/packages/material-ui-icons/lib/SnowshoeingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.5 8.41c0-.49-.36-.9-.84-.98-1.53-.25-2.79-1.16-3.47-2.35l-1-1.58c-.4-.6-1-1-1.7-1-.68 0-1.28.28-4.77 1.76C7.49 8.07 7 8.8 7 9.6V12c0 .55.45 1 1 1s1-.45 1-1V9.58l1.79-.7L9.2 17l-2.88 2.03-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1 2.85-2.01c.38-.27.65-.66.77-1.1l.7-2.53 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-5.16c0-.55-.23-1.07-.62-1.45l-1.49-1.41.6-3c1.07 1.24 2.63 2.15 4.37 2.43.6.1 1.14-.39 1.14-1z" -}), 'SnowshoeingRounded'); \ No newline at end of file +}), 'SnowshoeingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowshoeingSharp.js b/packages/material-ui-icons/lib/SnowshoeingSharp.js index 97748a9db0ad9c..36922d0c2ece8d 100644 --- a/packages/material-ui-icons/lib/SnowshoeingSharp.js +++ b/packages/material-ui-icons/lib/SnowshoeingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" -}), 'SnowshoeingSharp'); \ No newline at end of file +}), 'SnowshoeingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SnowshoeingTwoTone.js b/packages/material-ui-icons/lib/SnowshoeingTwoTone.js index aa6fc9890bdee4..0ffcb6d25613d1 100644 --- a/packages/material-ui-icons/lib/SnowshoeingTwoTone.js +++ b/packages/material-ui-icons/lib/SnowshoeingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" -}), 'SnowshoeingTwoTone'); \ No newline at end of file +}), 'SnowshoeingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Soap.js b/packages/material-ui-icons/lib/Soap.js index e43547011e5ed7..b97afb9abe97f1 100644 --- a/packages/material-ui-icons/lib/Soap.js +++ b/packages/material-ui-icons/lib/Soap.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.12 5-7.18 6.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25S19.44 10 18.75 10H8.86c.64-1.11 1.48-2.58 1.49-2.61.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7C10.22 6.12 9.12 5 9.12 5zM14 6.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5c-1.24 0-2.25 1.01-2.25 2.25S12.76 9.25 14 9.25 16.25 8.24 16.25 7 15.24 4.75 14 4.75zm5.75.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5m0-1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM16.5 1c-.83 0-1.5.67-1.5 1.5S15.67 4 16.5 4 18 3.33 18 2.5 17.33 1 16.5 1z" -}), 'Soap'); \ No newline at end of file +}), 'Soap'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SoapOutlined.js b/packages/material-ui-icons/lib/SoapOutlined.js index 56b592a150fe68..2a91efc3f66585 100644 --- a/packages/material-ui-icons/lib/SoapOutlined.js +++ b/packages/material-ui-icons/lib/SoapOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5-3c-.83 0-1.5.67-1.5 1.5S15.67 4 16.5 4 18 3.33 18 2.5 17.33 1 16.5 1zm4.25 15c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z" -}), 'SoapOutlined'); \ No newline at end of file +}), 'SoapOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SoapRounded.js b/packages/material-ui-icons/lib/SoapRounded.js index 28b1a27a58acd8..ddd40c5dee97aa 100644 --- a/packages/material-ui-icons/lib/SoapRounded.js +++ b/packages/material-ui-icons/lib/SoapRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2-1.5c0 .83-.67 1.5-1.5 1.5S15 3.33 15 2.5 15.67 1 16.5 1s1.5.67 1.5 1.5zM1.94 11.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.68c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h8.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38h-9.9l1.49-2.61c.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7l-.42-.45c-.38-.39-1.01-.41-1.41-.03l-6.46 6.11z" -}), 'SoapRounded'); \ No newline at end of file +}), 'SoapRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SoapSharp.js b/packages/material-ui-icons/lib/SoapSharp.js index 654ba0af999106..ef6fd3f65c9395 100644 --- a/packages/material-ui-icons/lib/SoapSharp.js +++ b/packages/material-ui-icons/lib/SoapSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2-1.5c0 .83-.67 1.5-1.5 1.5S15 3.33 15 2.5 15.67 1 16.5 1s1.5.67 1.5 1.5zM1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68z" -}), 'SoapSharp'); \ No newline at end of file +}), 'SoapSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SoapTwoTone.js b/packages/material-ui-icons/lib/SoapTwoTone.js index d9834b1378be84..4a23e5d043fc2c 100644 --- a/packages/material-ui-icons/lib/SoapTwoTone.js +++ b/packages/material-ui-icons/lib/SoapTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75M20 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5-3c-.83 0-1.5.67-1.5 1.5S15.67 4 16.5 4 18 3.33 18 2.5 17.33 1 16.5 1zm4.25 15c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z" -}, "1")], 'SoapTwoTone'); \ No newline at end of file +}, "1")], 'SoapTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SocialDistance.js b/packages/material-ui-icons/lib/SocialDistance.js index f3982d8d125883..e3af4487015079 100644 --- a/packages/material-ui-icons/lib/SocialDistance.js +++ b/packages/material-ui-icons/lib/SocialDistance.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z" -}), 'SocialDistance'); \ No newline at end of file +}), 'SocialDistance'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SocialDistanceOutlined.js b/packages/material-ui-icons/lib/SocialDistanceOutlined.js index 21340f030c5f9a..e6a8acf2da3df9 100644 --- a/packages/material-ui-icons/lib/SocialDistanceOutlined.js +++ b/packages/material-ui-icons/lib/SocialDistanceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zm-2.77 4.43-1.41 1.41L18.17 16H5.83l1.58-1.59L6 13l-4 4 3.99 3.99 1.41-1.41L5.83 18h12.34l-1.58 1.58L18 20.99 22 17l-3.99-3.99z" -}), 'SocialDistanceOutlined'); \ No newline at end of file +}), 'SocialDistanceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SocialDistanceRounded.js b/packages/material-ui-icons/lib/SocialDistanceRounded.js index 5c0f270258dd61..bfdcec0d64ea6f 100644 --- a/packages/material-ui-icons/lib/SocialDistanceRounded.js +++ b/packages/material-ui-icons/lib/SocialDistanceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zm.87 8.07-2.79-2.79c-.32-.32-.86-.1-.86.35V16H6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V18h12v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" -}), 'SocialDistanceRounded'); \ No newline at end of file +}), 'SocialDistanceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SocialDistanceSharp.js b/packages/material-ui-icons/lib/SocialDistanceSharp.js index 1ea468d4d98401..cac5edf365ba6f 100644 --- a/packages/material-ui-icons/lib/SocialDistanceSharp.js +++ b/packages/material-ui-icons/lib/SocialDistanceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z" -}), 'SocialDistanceSharp'); \ No newline at end of file +}), 'SocialDistanceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SocialDistanceTwoTone.js b/packages/material-ui-icons/lib/SocialDistanceTwoTone.js index 58e7897a24c5c2..268977b658b7f4 100644 --- a/packages/material-ui-icons/lib/SocialDistanceTwoTone.js +++ b/packages/material-ui-icons/lib/SocialDistanceTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z" -}), 'SocialDistanceTwoTone'); \ No newline at end of file +}), 'SocialDistanceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sort.js b/packages/material-ui-icons/lib/Sort.js index cc52b9c2eee7f7..ce1a99460886a5 100644 --- a/packages/material-ui-icons/lib/Sort.js +++ b/packages/material-ui-icons/lib/Sort.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" -}), 'Sort'); \ No newline at end of file +}), 'Sort'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortByAlpha.js b/packages/material-ui-icons/lib/SortByAlpha.js index 50f1c1c4b94cca..a840a56a0a4721 100644 --- a/packages/material-ui-icons/lib/SortByAlpha.js +++ b/packages/material-ui-icons/lib/SortByAlpha.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.94 4.66h-4.72l2.36-2.36zm-4.69 14.71h4.66l-2.33 2.33zM6.1 6.27 1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37 1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" -}), 'SortByAlpha'); \ No newline at end of file +}), 'SortByAlpha'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortByAlphaOutlined.js b/packages/material-ui-icons/lib/SortByAlphaOutlined.js index a7d54a8951b201..55a3af8964095c 100644 --- a/packages/material-ui-icons/lib/SortByAlphaOutlined.js +++ b/packages/material-ui-icons/lib/SortByAlphaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27 1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37 1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" -}), 'SortByAlphaOutlined'); \ No newline at end of file +}), 'SortByAlphaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortByAlphaRounded.js b/packages/material-ui-icons/lib/SortByAlphaRounded.js index b8d1d04749b10c..7e802a035783bd 100644 --- a/packages/material-ui-icons/lib/SortByAlphaRounded.js +++ b/packages/material-ui-icons/lib/SortByAlphaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.93 2.65c-.2-.2-.51-.2-.71 0l-2.01 2.01h4.72l-2-2.01zm-.7 18.7c.2.2.51.2.71 0l1.98-1.98h-4.66l1.97 1.98zm-1.25-3.62c.6 0 1.01-.6.79-1.16L8.04 7.03c-.18-.46-.63-.76-1.12-.76-.49 0-.94.3-1.12.76l-3.74 9.53c-.22.56.19 1.16.79 1.16.35 0 .67-.22.8-.55l.71-1.9h5.11l.71 1.9c.13.34.45.56.8.56zm-6.01-4.09 1.94-5.18 1.94 5.18H4.97zm16.08 2.5h-5.33l5.72-8.29c.46-.66-.02-1.57-.82-1.57h-6.48c-.44 0-.79.36-.79.8v.01c0 .44.36.8.79.8h5.09l-5.73 8.28c-.46.66.02 1.57.82 1.57h6.72c.44 0 .79-.36.79-.79.02-.45-.34-.81-.78-.81z" -}), 'SortByAlphaRounded'); \ No newline at end of file +}), 'SortByAlphaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortByAlphaSharp.js b/packages/material-ui-icons/lib/SortByAlphaSharp.js index efde5dcc9f2639..77440302de7af9 100644 --- a/packages/material-ui-icons/lib/SortByAlphaSharp.js +++ b/packages/material-ui-icons/lib/SortByAlphaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27 1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37 1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" -}), 'SortByAlphaSharp'); \ No newline at end of file +}), 'SortByAlphaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortByAlphaTwoTone.js b/packages/material-ui-icons/lib/SortByAlphaTwoTone.js index 4a4f6b398b6f26..6c382ca38f58f9 100644 --- a/packages/material-ui-icons/lib/SortByAlphaTwoTone.js +++ b/packages/material-ui-icons/lib/SortByAlphaTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.94 4.66 12.58 2.3l-2.36 2.36zm-4.55 13.07h1.84L7.74 6.27H6.1L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45zm-5.42-4.09 1.94-5.18 1.94 5.18H4.97zm7.61 8.06 2.33-2.33h-4.66zm9.08-14.16V6.28h-8.3v1.6h5.88l-5.92 8.56v1.29h8.53v-1.59h-6.12z" -}), 'SortByAlphaTwoTone'); \ No newline at end of file +}), 'SortByAlphaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortOutlined.js b/packages/material-ui-icons/lib/SortOutlined.js index 7c0d635019fe18..39d67a252d36fb 100644 --- a/packages/material-ui-icons/lib/SortOutlined.js +++ b/packages/material-ui-icons/lib/SortOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" -}), 'SortOutlined'); \ No newline at end of file +}), 'SortOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortRounded.js b/packages/material-ui-icons/lib/SortRounded.js index c6b4ddca3edd59..e031a84fbf4db4 100644 --- a/packages/material-ui-icons/lib/SortRounded.js +++ b/packages/material-ui-icons/lib/SortRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm1 6h10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'SortRounded'); \ No newline at end of file +}), 'SortRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortSharp.js b/packages/material-ui-icons/lib/SortSharp.js index 63dc74e9bebbce..0f0c1d9ad626df 100644 --- a/packages/material-ui-icons/lib/SortSharp.js +++ b/packages/material-ui-icons/lib/SortSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" -}), 'SortSharp'); \ No newline at end of file +}), 'SortSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SortTwoTone.js b/packages/material-ui-icons/lib/SortTwoTone.js index 528a05e3123209..b08af70f70cda5 100644 --- a/packages/material-ui-icons/lib/SortTwoTone.js +++ b/packages/material-ui-icons/lib/SortTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" -}), 'SortTwoTone'); \ No newline at end of file +}), 'SortTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Source.js b/packages/material-ui-icons/lib/Source.js index 2a2a1eba8edcc7..3bb639482542d2 100644 --- a/packages/material-ui-icons/lib/Source.js +++ b/packages/material-ui-icons/lib/Source.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 10H6v-2h8v2zm4-4H6v-2h12v2z" -}), 'Source'); \ No newline at end of file +}), 'Source'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SourceOutlined.js b/packages/material-ui-icons/lib/SourceOutlined.js index a6167f97e6c578..afe8625b838a5a 100644 --- a/packages/material-ui-icons/lib/SourceOutlined.js +++ b/packages/material-ui-icons/lib/SourceOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" -}), 'SourceOutlined'); \ No newline at end of file +}), 'SourceOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SourceRounded.js b/packages/material-ui-icons/lib/SourceRounded.js index 0d7e9093bdc9ed..c8d9d2a10cecb4 100644 --- a/packages/material-ui-icons/lib/SourceRounded.js +++ b/packages/material-ui-icons/lib/SourceRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 10H6v-2h8v2zm4-4H6v-2h12v2z" -}), 'SourceRounded'); \ No newline at end of file +}), 'SourceRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SourceSharp.js b/packages/material-ui-icons/lib/SourceSharp.js index 7aa06267084859..b6f71d8b573f08 100644 --- a/packages/material-ui-icons/lib/SourceSharp.js +++ b/packages/material-ui-icons/lib/SourceSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 6-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z" -}), 'SourceSharp'); \ No newline at end of file +}), 'SourceSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SourceTwoTone.js b/packages/material-ui-icons/lib/SourceTwoTone.js index 7bb7a7b47ac83f..5a9bcec602152f 100644 --- a/packages/material-ui-icons/lib/SourceTwoTone.js +++ b/packages/material-ui-icons/lib/SourceTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.17 6H4v12h16V8h-8.83l-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" -}, "1")], 'SourceTwoTone'); \ No newline at end of file +}, "1")], 'SourceTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/South.js b/packages/material-ui-icons/lib/South.js index 5eb8d43801adea..741f92c1d87187 100644 --- a/packages/material-ui-icons/lib/South.js +++ b/packages/material-ui-icons/lib/South.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" -}), 'South'); \ No newline at end of file +}), 'South'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthEast.js b/packages/material-ui-icons/lib/SouthEast.js index e4b2d1e5a1a143..21794d140f7705 100644 --- a/packages/material-ui-icons/lib/SouthEast.js +++ b/packages/material-ui-icons/lib/SouthEast.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" -}), 'SouthEast'); \ No newline at end of file +}), 'SouthEast'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthEastOutlined.js b/packages/material-ui-icons/lib/SouthEastOutlined.js index d2cf3bff7a20ad..cbbe2bbe17e76f 100644 --- a/packages/material-ui-icons/lib/SouthEastOutlined.js +++ b/packages/material-ui-icons/lib/SouthEastOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" -}), 'SouthEastOutlined'); \ No newline at end of file +}), 'SouthEastOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthEastRounded.js b/packages/material-ui-icons/lib/SouthEastRounded.js index e2fdfba35f9cd1..277e3076457a8f 100644 --- a/packages/material-ui-icons/lib/SouthEastRounded.js +++ b/packages/material-ui-icons/lib/SouthEastRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9c-.56 0-1 .45-1 1v5.59L6.12 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L15.59 17H10c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1z" -}), 'SouthEastRounded'); \ No newline at end of file +}), 'SouthEastRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthEastSharp.js b/packages/material-ui-icons/lib/SouthEastSharp.js index 71d447f5a86bb6..ecf149ff256915 100644 --- a/packages/material-ui-icons/lib/SouthEastSharp.js +++ b/packages/material-ui-icons/lib/SouthEastSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" -}), 'SouthEastSharp'); \ No newline at end of file +}), 'SouthEastSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthEastTwoTone.js b/packages/material-ui-icons/lib/SouthEastTwoTone.js index 92a66b1587e4cc..ce6b825eb65a4f 100644 --- a/packages/material-ui-icons/lib/SouthEastTwoTone.js +++ b/packages/material-ui-icons/lib/SouthEastTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" -}), 'SouthEastTwoTone'); \ No newline at end of file +}), 'SouthEastTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthOutlined.js b/packages/material-ui-icons/lib/SouthOutlined.js index 35ad62c41fe329..a68f626ff428fe 100644 --- a/packages/material-ui-icons/lib/SouthOutlined.js +++ b/packages/material-ui-icons/lib/SouthOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" -}), 'SouthOutlined'); \ No newline at end of file +}), 'SouthOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthRounded.js b/packages/material-ui-icons/lib/SouthRounded.js index edebeef25f32ff..03987b7510e429 100644 --- a/packages/material-ui-icons/lib/SouthRounded.js +++ b/packages/material-ui-icons/lib/SouthRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.3 14.29a.9959.9959 0 0 0-1.41 0L13 18.17V3c0-.55-.45-1-1-1s-1 .45-1 1v15.18L7.12 14.3a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l5.59 5.59c.39.39 1.02.39 1.41 0l5.59-5.59c.38-.39.38-1.03 0-1.42z" -}), 'SouthRounded'); \ No newline at end of file +}), 'SouthRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthSharp.js b/packages/material-ui-icons/lib/SouthSharp.js index b474a2b1a94f15..0606d5ef5f5bf0 100644 --- a/packages/material-ui-icons/lib/SouthSharp.js +++ b/packages/material-ui-icons/lib/SouthSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" -}), 'SouthSharp'); \ No newline at end of file +}), 'SouthSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthTwoTone.js b/packages/material-ui-icons/lib/SouthTwoTone.js index 0b0063fca82943..904656fa9d494c 100644 --- a/packages/material-ui-icons/lib/SouthTwoTone.js +++ b/packages/material-ui-icons/lib/SouthTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" -}), 'SouthTwoTone'); \ No newline at end of file +}), 'SouthTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthWest.js b/packages/material-ui-icons/lib/SouthWest.js index d687448207f535..07e4cf0cd61232 100644 --- a/packages/material-ui-icons/lib/SouthWest.js +++ b/packages/material-ui-icons/lib/SouthWest.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" -}), 'SouthWest'); \ No newline at end of file +}), 'SouthWest'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthWestOutlined.js b/packages/material-ui-icons/lib/SouthWestOutlined.js index 8e71ad6cd872b8..4b7bfac4581ec7 100644 --- a/packages/material-ui-icons/lib/SouthWestOutlined.js +++ b/packages/material-ui-icons/lib/SouthWestOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" -}), 'SouthWestOutlined'); \ No newline at end of file +}), 'SouthWestOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthWestRounded.js b/packages/material-ui-icons/lib/SouthWestRounded.js index ea3d797b877f64..0eab4a1dc06783 100644 --- a/packages/material-ui-icons/lib/SouthWestRounded.js +++ b/packages/material-ui-icons/lib/SouthWestRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 18c0-.56-.45-1-1-1H8.41L19.3 6.11c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L7 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1z" -}), 'SouthWestRounded'); \ No newline at end of file +}), 'SouthWestRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthWestSharp.js b/packages/material-ui-icons/lib/SouthWestSharp.js index 382cffecec2e3d..4f8291f6662dc6 100644 --- a/packages/material-ui-icons/lib/SouthWestSharp.js +++ b/packages/material-ui-icons/lib/SouthWestSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" -}), 'SouthWestSharp'); \ No newline at end of file +}), 'SouthWestSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SouthWestTwoTone.js b/packages/material-ui-icons/lib/SouthWestTwoTone.js index f758bee3837a65..816fbad92c24f3 100644 --- a/packages/material-ui-icons/lib/SouthWestTwoTone.js +++ b/packages/material-ui-icons/lib/SouthWestTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" -}), 'SouthWestTwoTone'); \ No newline at end of file +}), 'SouthWestTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Spa.js b/packages/material-ui-icons/lib/Spa.js index 0700b46ede6f40..b301edccc8ce45 100644 --- a/packages/material-ui-icons/lib/Spa.js +++ b/packages/material-ui-icons/lib/Spa.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z" -}, "1")], 'Spa'); \ No newline at end of file +}, "1")], 'Spa'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaOutlined.js b/packages/material-ui-icons/lib/SpaOutlined.js index 25bb15b675ca77..cee429d25da501 100644 --- a/packages/material-ui-icons/lib/SpaOutlined.js +++ b/packages/material-ui-icons/lib/SpaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z" -}), 'SpaOutlined'); \ No newline at end of file +}), 'SpaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaRounded.js b/packages/material-ui-icons/lib/SpaRounded.js index 896b3c8b02cf00..b1ed23fec18061 100644 --- a/packages/material-ui-icons/lib/SpaRounded.js +++ b/packages/material-ui-icons/lib/SpaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.49 9.63c-.16-2.42-1.03-4.79-2.64-6.76-.41-.5-1.16-.5-1.57 0-1.65 1.98-2.57 4.35-2.77 6.76 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45c-1.95-2.97-5.14-5.03-8.83-5.39-.64-.06-1.17.47-1.11 1.11.45 4.8 3.65 8.78 7.98 10.33.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51 4.33-1.55 7.53-5.52 7.98-10.33.06-.64-.48-1.17-1.11-1.11-3.71.36-6.9 2.42-8.85 5.39z" -}), 'SpaRounded'); \ No newline at end of file +}), 'SpaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaSharp.js b/packages/material-ui-icons/lib/SpaSharp.js index 1fa1a3c46f71ba..b38a691359789f 100644 --- a/packages/material-ui-icons/lib/SpaSharp.js +++ b/packages/material-ui-icons/lib/SpaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64zm-3.49-.76c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z" -}), 'SpaSharp'); \ No newline at end of file +}), 'SpaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaTwoTone.js b/packages/material-ui-icons/lib/SpaTwoTone.js index 316a37801ba785..5898b05f967688 100644 --- a/packages/material-ui-icons/lib/SpaTwoTone.js +++ b/packages/material-ui-icons/lib/SpaTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.94 12.25c0-.01 0-.01 0 0-.13-.09-.27-.17-.4-.26.13.1.27.17.4.26zm4.41-3.67c-.22-1.21-.66-2.35-1.3-3.38-.66 1.04-1.12 2.19-1.37 3.39.46.3.9.62 1.33.97.42-.35.87-.68 1.34-.98zm3.19 5.08.01.02c-.09.06-.18.12-.27.17l-.07.05c-.98.71-1.84 1.61-2.53 2.66L12 19.1l-1.67-2.55c-.68-1.03-1.52-1.92-2.51-2.65l-.07-.04c-.13-.08-.26-.16-.39-.25l.01-.01c-.96-.63-2.01-1.07-3.12-1.33.75 3.36 3.16 6.17 6.45 7.35.42.15.84.27 1.28.36.45-.09.89-.21 1.33-.37 3.27-1.17 5.67-3.98 6.43-7.34-1.14.26-2.23.73-3.2 1.39zm-7.55-1.38", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm2.17-9.97c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.99 12.28c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z", opacity: ".3" -}, "3")], 'SpaTwoTone'); \ No newline at end of file +}, "3")], 'SpaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaceBar.js b/packages/material-ui-icons/lib/SpaceBar.js index 2a8ec21370446b..898a38eb2a8882 100644 --- a/packages/material-ui-icons/lib/SpaceBar.js +++ b/packages/material-ui-icons/lib/SpaceBar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9v4H6V9H4v6h16V9z" -}), 'SpaceBar'); \ No newline at end of file +}), 'SpaceBar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaceBarOutlined.js b/packages/material-ui-icons/lib/SpaceBarOutlined.js index f34582830d3838..f6ae1fa7f957be 100644 --- a/packages/material-ui-icons/lib/SpaceBarOutlined.js +++ b/packages/material-ui-icons/lib/SpaceBarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9v4H6V9H4v6h16V9h-2z" -}), 'SpaceBarOutlined'); \ No newline at end of file +}), 'SpaceBarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaceBarRounded.js b/packages/material-ui-icons/lib/SpaceBarRounded.js index 3ff7724abbbb47..28c7543adce9b0 100644 --- a/packages/material-ui-icons/lib/SpaceBarRounded.js +++ b/packages/material-ui-icons/lib/SpaceBarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10v3H6v-3c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1z" -}), 'SpaceBarRounded'); \ No newline at end of file +}), 'SpaceBarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaceBarSharp.js b/packages/material-ui-icons/lib/SpaceBarSharp.js index f5df0b6cc11a21..c536226fc12174 100644 --- a/packages/material-ui-icons/lib/SpaceBarSharp.js +++ b/packages/material-ui-icons/lib/SpaceBarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9v4H6V9H4v6h16V9h-2z" -}), 'SpaceBarSharp'); \ No newline at end of file +}), 'SpaceBarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpaceBarTwoTone.js b/packages/material-ui-icons/lib/SpaceBarTwoTone.js index bd10bea6dae142..d43acca569da1f 100644 --- a/packages/material-ui-icons/lib/SpaceBarTwoTone.js +++ b/packages/material-ui-icons/lib/SpaceBarTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13H6V9H4v6h16V9h-2z" -}), 'SpaceBarTwoTone'); \ No newline at end of file +}), 'SpaceBarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Speaker.js b/packages/material-ui-icons/lib/Speaker.js index 04ef89629a0177..5ea2805cff330f 100644 --- a/packages/material-ui-icons/lib/Speaker.js +++ b/packages/material-ui-icons/lib/Speaker.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'Speaker'); \ No newline at end of file +}), 'Speaker'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerGroup.js b/packages/material-ui-icons/lib/SpeakerGroup.js index 4c7f1f70e14556..b48c8aa37dae51 100644 --- a/packages/material-ui-icons/lib/SpeakerGroup.js +++ b/packages/material-ui-icons/lib/SpeakerGroup.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "12.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" -}, "2")], 'SpeakerGroup'); \ No newline at end of file +}, "2")], 'SpeakerGroup'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerGroupOutlined.js b/packages/material-ui-icons/lib/SpeakerGroupOutlined.js index 0ac196f67d607d..94f1ce1d87ad25 100644 --- a/packages/material-ui-icons/lib/SpeakerGroupOutlined.js +++ b/packages/material-ui-icons/lib/SpeakerGroupOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" -}), 'SpeakerGroupOutlined'); \ No newline at end of file +}), 'SpeakerGroupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerGroupRounded.js b/packages/material-ui-icons/lib/SpeakerGroupRounded.js index f93dee779957b8..5f53659c318c59 100644 --- a/packages/material-ui-icons/lib/SpeakerGroupRounded.js +++ b/packages/material-ui-icons/lib/SpeakerGroupRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "12.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5c-.55 0-1 .45-1 1v15c0 1.1.89 2 2 2h9c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1z" -}, "2")], 'SpeakerGroupRounded'); \ No newline at end of file +}, "2")], 'SpeakerGroupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerGroupSharp.js b/packages/material-ui-icons/lib/SpeakerGroupSharp.js index 5157535e759f61..c6d5d3832ffe10 100644 --- a/packages/material-ui-icons/lib/SpeakerGroupSharp.js +++ b/packages/material-ui-icons/lib/SpeakerGroupSharp.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 1H8v17.99h12V1zm-6 2c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "12.5", r: "2.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 5H4v18h12v-2H6z" -}, "2")], 'SpeakerGroupSharp'); \ No newline at end of file +}, "2")], 'SpeakerGroupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerGroupTwoTone.js b/packages/material-ui-icons/lib/SpeakerGroupTwoTone.js index c136cc7b87f972..fe39527e58142f 100644 --- a/packages/material-ui-icons/lib/SpeakerGroupTwoTone.js +++ b/packages/material-ui-icons/lib/SpeakerGroupTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10 16.99 8 .01V3h-8v13.99zM14 4c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 5c1.93 0 3.5 1.57 3.5 3.5S15.93 16 14 16s-3.5-1.57-3.5-3.5S12.07 9 14 9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" -}, "1")], 'SpeakerGroupTwoTone'); \ No newline at end of file +}, "1")], 'SpeakerGroupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotes.js b/packages/material-ui-icons/lib/SpeakerNotes.js index 5b072f2f4b3339..456182a5d1ac71 100644 --- a/packages/material-ui-icons/lib/SpeakerNotes.js +++ b/packages/material-ui-icons/lib/SpeakerNotes.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z" -}), 'SpeakerNotes'); \ No newline at end of file +}), 'SpeakerNotes'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesOff.js b/packages/material-ui-icons/lib/SpeakerNotesOff.js index 3882b99f472b68..3f6f0dba969296 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesOff.js +++ b/packages/material-ui-icons/lib/SpeakerNotesOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.54 11-.54-.54L7.54 8 6 6.46 2.38 2.84 1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 17.54 18l-7-7zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm14-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2z" -}), 'SpeakerNotesOff'); \ No newline at end of file +}), 'SpeakerNotesOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesOffOutlined.js b/packages/material-ui-icons/lib/SpeakerNotesOffOutlined.js index 10dc1bcdfb8024..fdc38e1baa52e2 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesOffOutlined.js +++ b/packages/material-ui-icons/lib/SpeakerNotesOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-3h-6.34l2 2H18zm0-3h-8v1.34l.66.66H18zM1.41 1.59 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16 4 17.17V7l2 2v2h2l5 5H5.17z" -}), 'SpeakerNotesOffOutlined'); \ No newline at end of file +}), 'SpeakerNotesOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesOffRounded.js b/packages/material-ui-icons/lib/SpeakerNotesOffRounded.js index 04e5c686abdfc0..49a22dee907d86 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesOffRounded.js +++ b/packages/material-ui-icons/lib/SpeakerNotesOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.91 2.36c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l1.38 1.38L2 22l4-4h9l5.09 5.09c.35.35.92.35 1.27 0s.35-.92 0-1.27L1.91 2.36zM7 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13-9H4.08l7 7H17c.55 0 1 .45 1 1s-.45 1-1 1h-3.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2zm-3 6h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'SpeakerNotesOffRounded'); \ No newline at end of file +}), 'SpeakerNotesOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesOffSharp.js b/packages/material-ui-icons/lib/SpeakerNotesOffSharp.js index 60534569be6cdb..9e77a3e032be33 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesOffSharp.js +++ b/packages/material-ui-icons/lib/SpeakerNotesOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 1.27 1.73zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm16-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99H22V2z" -}), 'SpeakerNotesOffSharp'); \ No newline at end of file +}), 'SpeakerNotesOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesOffTwoTone.js b/packages/material-ui-icons/lib/SpeakerNotesOffTwoTone.js index 67a494598faeca..d39a05bd94f01e 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesOffTwoTone.js +++ b/packages/material-ui-icons/lib/SpeakerNotesOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 11V9L4 7v10.17L5.17 16H13l-5-5H6zm2 3H6v-2h2v2zM20 4H6.66L10 7.34V6h8v2h-7.34l1 1H18v2h-4.34l5 5H20z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-1V9h-6.34l2 2zm0-3V6h-8v1.34l.66.66zM1.41 1.59 0 3l2 2.01V22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16 4 17.17V7l2 2v2h2l5 5H5.17z" -}, "1")], 'SpeakerNotesOffTwoTone'); \ No newline at end of file +}, "1")], 'SpeakerNotesOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesOutlined.js b/packages/material-ui-icons/lib/SpeakerNotesOutlined.js index 74b8fe8c807168..fb0e152c09a007 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesOutlined.js +++ b/packages/material-ui-icons/lib/SpeakerNotesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z" -}), 'SpeakerNotesOutlined'); \ No newline at end of file +}), 'SpeakerNotesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesRounded.js b/packages/material-ui-icons/lib/SpeakerNotesRounded.js index 92d571d7fbe0cb..30b85a17c0538f 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesRounded.js +++ b/packages/material-ui-icons/lib/SpeakerNotesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm6 6h-3c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm3-3h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-3h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'SpeakerNotesRounded'); \ No newline at end of file +}), 'SpeakerNotesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesSharp.js b/packages/material-ui-icons/lib/SpeakerNotesSharp.js index f2550c8779aba2..f92bbd3aa2c093 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesSharp.js +++ b/packages/material-ui-icons/lib/SpeakerNotesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2.01L2 22l4-4h16V2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z" -}), 'SpeakerNotesSharp'); \ No newline at end of file +}), 'SpeakerNotesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerNotesTwoTone.js b/packages/material-ui-icons/lib/SpeakerNotesTwoTone.js index 694a9e236e494c..0c8bc8053ca63b 100644 --- a/packages/material-ui-icons/lib/SpeakerNotesTwoTone.js +++ b/packages/material-ui-icons/lib/SpeakerNotesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 17.17.59-.59.58-.58H20V4H4v13.17zM10 6h8v2h-8V6zm0 3h8v2h-8V9zm0 3h5v2h-5v-2zM6 6h2v2H6V6zm0 3h2v2H6V9zm0 3h2v2H6v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z" -}, "1")], 'SpeakerNotesTwoTone'); \ No newline at end of file +}, "1")], 'SpeakerNotesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerOutlined.js b/packages/material-ui-icons/lib/SpeakerOutlined.js index 1a9784cc939474..48d163d053b67e 100644 --- a/packages/material-ui-icons/lib/SpeakerOutlined.js +++ b/packages/material-ui-icons/lib/SpeakerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'SpeakerOutlined'); \ No newline at end of file +}), 'SpeakerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerPhone.js b/packages/material-ui-icons/lib/SpeakerPhone.js index 7d68cbafd958d1..0455f351e6af07 100644 --- a/packages/material-ui-icons/lib/SpeakerPhone.js +++ b/packages/material-ui-icons/lib/SpeakerPhone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" -}), 'SpeakerPhone'); \ No newline at end of file +}), 'SpeakerPhone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerPhoneOutlined.js b/packages/material-ui-icons/lib/SpeakerPhoneOutlined.js index a5fb04532cc497..d1e7b5c120a460 100644 --- a/packages/material-ui-icons/lib/SpeakerPhoneOutlined.js +++ b/packages/material-ui-icons/lib/SpeakerPhoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" -}), 'SpeakerPhoneOutlined'); \ No newline at end of file +}), 'SpeakerPhoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerPhoneRounded.js b/packages/material-ui-icons/lib/SpeakerPhoneRounded.js index 1840c65ed36f51..4ced6ec8c5aca1 100644 --- a/packages/material-ui-icons/lib/SpeakerPhoneRounded.js +++ b/packages/material-ui-icons/lib/SpeakerPhoneRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.76 7.83.02.02c.35.35.89.38 1.3.09.83-.57 1.84-.92 2.92-.92s2.09.35 2.92.93c.4.29.95.26 1.3-.09l.02-.02c.42-.42.39-1.14-.09-1.49C14.98 5.5 13.55 5 12 5s-2.98.5-4.14 1.34c-.49.35-.52 1.07-.1 1.49z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1c-2.62 0-5.03.93-6.92 2.47-.46.37-.51 1.06-.08 1.49.36.36.93.39 1.32.07C7.86 3.76 9.85 3 12 3s4.14.76 5.69 2.03c.39.32.96.29 1.32-.07.42-.42.38-1.11-.08-1.49C17.03 1.93 14.62 1 12 1zm3 9H9c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h5.99c.55 0 1-.45 1-1L16 11c0-.55-.45-1-1-1zm0 10H9v-8h6v8z" -}, "1")], 'SpeakerPhoneRounded'); \ No newline at end of file +}, "1")], 'SpeakerPhoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerPhoneSharp.js b/packages/material-ui-icons/lib/SpeakerPhoneSharp.js index ed7baf625cd1d0..ac3e30fdeb01b4 100644 --- a/packages/material-ui-icons/lib/SpeakerPhoneSharp.js +++ b/packages/material-ui-icons/lib/SpeakerPhoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm3.99 9.01L8 10v11.99h7.99V10.01zM15 20H9v-8h6v8z" -}), 'SpeakerPhoneSharp'); \ No newline at end of file +}), 'SpeakerPhoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerPhoneTwoTone.js b/packages/material-ui-icons/lib/SpeakerPhoneTwoTone.js index 19266dc7b859af..40aafb12c38e3f 100644 --- a/packages/material-ui-icons/lib/SpeakerPhoneTwoTone.js +++ b/packages/material-ui-icons/lib/SpeakerPhoneTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12h6v8H9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zM7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zm7.86 2.94L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" -}, "1")], 'SpeakerPhoneTwoTone'); \ No newline at end of file +}, "1")], 'SpeakerPhoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerRounded.js b/packages/material-ui-icons/lib/SpeakerRounded.js index d12e912e635f99..dcfe849b4a4843 100644 --- a/packages/material-ui-icons/lib/SpeakerRounded.js +++ b/packages/material-ui-icons/lib/SpeakerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'SpeakerRounded'); \ No newline at end of file +}), 'SpeakerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerSharp.js b/packages/material-ui-icons/lib/SpeakerSharp.js index 173f2e4ab83b8a..e2fc39a5763272 100644 --- a/packages/material-ui-icons/lib/SpeakerSharp.js +++ b/packages/material-ui-icons/lib/SpeakerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 2H5v19.99h14V2zm-7 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'SpeakerSharp'); \ No newline at end of file +}), 'SpeakerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeakerTwoTone.js b/packages/material-ui-icons/lib/SpeakerTwoTone.js index 6aabcff356fcea..29de4b6b69a2be 100644 --- a/packages/material-ui-icons/lib/SpeakerTwoTone.js +++ b/packages/material-ui-icons/lib/SpeakerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 4v16h10V4H7zm5 1c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 14c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'SpeakerTwoTone'); \ No newline at end of file +}, "1")], 'SpeakerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Speed.js b/packages/material-ui-icons/lib/Speed.js index 8e77e5d21b8ec9..6f01b4e95f5059 100644 --- a/packages/material-ui-icons/lib/Speed.js +++ b/packages/material-ui-icons/lib/Speed.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.38 8.57-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44zm-9.79 6.84a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" -}), 'Speed'); \ No newline at end of file +}), 'Speed'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeedOutlined.js b/packages/material-ui-icons/lib/SpeedOutlined.js index 354093d61c6543..01c901edb12425 100644 --- a/packages/material-ui-icons/lib/SpeedOutlined.js +++ b/packages/material-ui-icons/lib/SpeedOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.38 8.57-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" -}, "1")], 'SpeedOutlined'); \ No newline at end of file +}, "1")], 'SpeedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeedRounded.js b/packages/material-ui-icons/lib/SpeedRounded.js index 7d1ba61676d474..d87f0426bf8bbf 100644 --- a/packages/material-ui-icons/lib/SpeedRounded.js +++ b/packages/material-ui-icons/lib/SpeedRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.46 10a1 1 0 0 0-.07 1 7.55 7.55 0 0 1 .52 1.81 8 8 0 0 1-.69 4.73 1 1 0 0 1-.89.53H5.68a1 1 0 0 1-.89-.54A8 8 0 0 1 13 6.06a7.69 7.69 0 0 1 2.11.56 1 1 0 0 0 1-.07 1 1 0 0 0-.17-1.76A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0 .55-8.89 1 1 0 0 0-1.75-.11z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 12.59a2 2 0 0 0 2.83 2.83l5.66-8.49z" -}, "1")], 'SpeedRounded'); \ No newline at end of file +}, "1")], 'SpeedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeedSharp.js b/packages/material-ui-icons/lib/SpeedSharp.js index 3fc70c9efa5cc2..1b05e4a37208f0 100644 --- a/packages/material-ui-icons/lib/SpeedSharp.js +++ b/packages/material-ui-icons/lib/SpeedSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.39 8.56-1.24 1.86a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.86-1.24A10 10 0 0 0 4 20h16a10 10 0 0 0 .38-11.44z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" -}, "1")], 'SpeedSharp'); \ No newline at end of file +}, "1")], 'SpeedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpeedTwoTone.js b/packages/material-ui-icons/lib/SpeedTwoTone.js index f4785809479a05..958a18ae852647 100644 --- a/packages/material-ui-icons/lib/SpeedTwoTone.js +++ b/packages/material-ui-icons/lib/SpeedTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.38 8.57-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" -}, "1")], 'SpeedTwoTone'); \ No newline at end of file +}, "1")], 'SpeedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Spellcheck.js b/packages/material-ui-icons/lib/Spellcheck.js index 5d12d9c69fab1f..d19ca6a51633cb 100644 --- a/packages/material-ui-icons/lib/Spellcheck.js +++ b/packages/material-ui-icons/lib/Spellcheck.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" -}), 'Spellcheck'); \ No newline at end of file +}), 'Spellcheck'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpellcheckOutlined.js b/packages/material-ui-icons/lib/SpellcheckOutlined.js index 3f36c1b89f0a23..e5e7568680a164 100644 --- a/packages/material-ui-icons/lib/SpellcheckOutlined.js +++ b/packages/material-ui-icons/lib/SpellcheckOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" -}), 'SpellcheckOutlined'); \ No newline at end of file +}), 'SpellcheckOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpellcheckRounded.js b/packages/material-ui-icons/lib/SpellcheckRounded.js index f28b074157aab7..b43588afa298c0 100644 --- a/packages/material-ui-icons/lib/SpellcheckRounded.js +++ b/packages/material-ui-icons/lib/SpellcheckRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.12 16c.69 0 1.15-.69.9-1.32L9.77 3.87C9.56 3.34 9.06 3 8.5 3s-1.06.34-1.27.87L2.98 14.68c-.25.63.22 1.32.9 1.32.4 0 .76-.25.91-.63L5.67 13h5.64l.9 2.38c.15.37.51.62.91.62zm-6.69-5L8.5 5.48 10.57 11H6.43zm14.46 1.29-7.39 7.39-2.97-2.97a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.68 3.68c.39.39 1.02.39 1.41 0l8.08-8.09c.39-.39.39-1.02 0-1.41-.38-.39-1.02-.39-1.4-.01z" -}), 'SpellcheckRounded'); \ No newline at end of file +}), 'SpellcheckRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpellcheckSharp.js b/packages/material-ui-icons/lib/SpellcheckSharp.js index fc54a758d35171..313d7e3c80cd12 100644 --- a/packages/material-ui-icons/lib/SpellcheckSharp.js +++ b/packages/material-ui-icons/lib/SpellcheckSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" -}), 'SpellcheckSharp'); \ No newline at end of file +}), 'SpellcheckSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SpellcheckTwoTone.js b/packages/material-ui-icons/lib/SpellcheckTwoTone.js index 5b241de9475314..fb4ec384b55b5a 100644 --- a/packages/material-ui-icons/lib/SpellcheckTwoTone.js +++ b/packages/material-ui-icons/lib/SpellcheckTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" -}), 'SpellcheckTwoTone'); \ No newline at end of file +}), 'SpellcheckTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Splitscreen.js b/packages/material-ui-icons/lib/Splitscreen.js index 109580e40bf57f..ede395d8c3edb4 100644 --- a/packages/material-ui-icons/lib/Splitscreen.js +++ b/packages/material-ui-icons/lib/Splitscreen.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v5H6V4h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 13v5H6v-5h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" -}), 'Splitscreen'); \ No newline at end of file +}), 'Splitscreen'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SplitscreenOutlined.js b/packages/material-ui-icons/lib/SplitscreenOutlined.js index a9c22ab6040397..03d61e104bffe9 100644 --- a/packages/material-ui-icons/lib/SplitscreenOutlined.js +++ b/packages/material-ui-icons/lib/SplitscreenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v5H6V4h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 13v5H6v-5h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" -}), 'SplitscreenOutlined'); \ No newline at end of file +}), 'SplitscreenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SplitscreenRounded.js b/packages/material-ui-icons/lib/SplitscreenRounded.js index 1e697cb57b16b7..5d8be674a8ebf7 100644 --- a/packages/material-ui-icons/lib/SplitscreenRounded.js +++ b/packages/material-ui-icons/lib/SplitscreenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v5H6V4h12zm0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 13v5H6v-5h12zm0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" -}), 'SplitscreenRounded'); \ No newline at end of file +}), 'SplitscreenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SplitscreenSharp.js b/packages/material-ui-icons/lib/SplitscreenSharp.js index 7cc85df79624b8..b50475c3756dd6 100644 --- a/packages/material-ui-icons/lib/SplitscreenSharp.js +++ b/packages/material-ui-icons/lib/SplitscreenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v5H6V4h12m2-2H4v9h16V2zm-2 13v5H6v-5h12m2-2H4v9h16v-9z" -}), 'SplitscreenSharp'); \ No newline at end of file +}), 'SplitscreenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SplitscreenTwoTone.js b/packages/material-ui-icons/lib/SplitscreenTwoTone.js index a242bc5c475937..79c6105d2cf0de 100644 --- a/packages/material-ui-icons/lib/SplitscreenTwoTone.js +++ b/packages/material-ui-icons/lib/SplitscreenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4h12v5H6zm0 11h12v5H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 7H6V4h12v5zm0 4H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm0 7H6v-5h12v5z" -}, "1")], 'SplitscreenTwoTone'); \ No newline at end of file +}, "1")], 'SplitscreenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sports.js b/packages/material-ui-icons/lib/Sports.js index a0966ad7d6ec21..f69d9b7f7ecefb 100644 --- a/packages/material-ui-icons/lib/Sports.js +++ b/packages/material-ui-icons/lib/Sports.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "12", r: "2" -}, "1")], 'Sports'); \ No newline at end of file +}, "1")], 'Sports'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBar.js b/packages/material-ui-icons/lib/SportsBar.js index 541a5f20158977..71d5f1c62f50c9 100644 --- a/packages/material-ui-icons/lib/SportsBar.js +++ b/packages/material-ui-icons/lib/SportsBar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-1.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z" -}), 'SportsBar'); \ No newline at end of file +}), 'SportsBar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBarOutlined.js b/packages/material-ui-icons/lib/SportsBarOutlined.js index e1ecff21494cab..5b49134f1b80df 100644 --- a/packages/material-ui-icons/lib/SportsBarOutlined.js +++ b/packages/material-ui-icons/lib/SportsBarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 19H8v-6.63c1.26-.34 2.11-1.27 2.77-1.99C11.6 9.47 12.08 9 13 9h2v10zM10 2.02c-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-1.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM17 17v-6h2v6h-2z" -}), 'SportsBarOutlined'); \ No newline at end of file +}), 'SportsBarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBarRounded.js b/packages/material-ui-icons/lib/SportsBarRounded.js index b4eb017b9ea702..6e8395514d8437 100644 --- a/packages/material-ui-icons/lib/SportsBarRounded.js +++ b/packages/material-ui-icons/lib/SportsBarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9h-1.56c.33-.55.53-1.18.55-1.86.04-1.03-.43-1.99-1.16-2.71-1.54-1.54-2.74-1.56-3.82-1.29-.81-.69-1.85-1.12-3.01-1.12-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V19c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z" -}), 'SportsBarRounded'); \ No newline at end of file +}), 'SportsBarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBarSharp.js b/packages/material-ui-icons/lib/SportsBarSharp.js index 5a5b2f56fc9217..d38a6928a42e64 100644 --- a/packages/material-ui-icons/lib/SportsBarSharp.js +++ b/packages/material-ui-icons/lib/SportsBarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 9h-3.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h4V9zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z" -}), 'SportsBarSharp'); \ No newline at end of file +}), 'SportsBarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBarTwoTone.js b/packages/material-ui-icons/lib/SportsBarTwoTone.js index 6c717c11653369..669c96ea348a1b 100644 --- a/packages/material-ui-icons/lib/SportsBarTwoTone.js +++ b/packages/material-ui-icons/lib/SportsBarTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 19H8v-6.63c1.26-.34 2.11-1.27 2.77-1.99C11.6 9.47 12.08 9 13 9h2v10zm-8-8.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 19H8v-6.63c1.26-.34 2.11-1.27 2.77-1.99C11.6 9.47 12.08 9 13 9h2v10zM10 2.02c-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-1.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM17 17v-6h2v6h-2z" -}, "1")], 'SportsBarTwoTone'); \ No newline at end of file +}, "1")], 'SportsBarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBaseball.js b/packages/material-ui-icons/lib/SportsBaseball.js index 6f07bd7476b271..5af25cd0f80d8b 100644 --- a/packages/material-ui-icons/lib/SportsBaseball.js +++ b/packages/material-ui-icons/lib/SportsBaseball.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67C15.97 18.09 14 15.28 14 12z" -}, "1")], 'SportsBaseball'); \ No newline at end of file +}, "1")], 'SportsBaseball'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBaseballOutlined.js b/packages/material-ui-icons/lib/SportsBaseballOutlined.js index 684e17e00d36ff..326ca6ee89a222 100644 --- a/packages/material-ui-icons/lib/SportsBaseballOutlined.js +++ b/packages/material-ui-icons/lib/SportsBaseballOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.61 16.78C4.6 15.45 4 13.8 4 12s.6-3.45 1.61-4.78C7.06 8.31 8 10.05 8 12s-.94 3.69-2.39 4.78zM12 20c-1.89 0-3.63-.66-5-1.76 1.83-1.47 3-3.71 3-6.24S8.83 7.23 7 5.76C8.37 4.66 10.11 4 12 4s3.63.66 5 1.76c-1.83 1.47-3 3.71-3 6.24s1.17 4.77 3 6.24c-1.37 1.1-3.11 1.76-5 1.76zm6.39-3.22C16.94 15.69 16 13.95 16 12s.94-3.69 2.39-4.78C19.4 8.55 20 10.2 20 12s-.6 3.45-1.61 4.78z" -}), 'SportsBaseballOutlined'); \ No newline at end of file +}), 'SportsBaseballOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBaseballRounded.js b/packages/material-ui-icons/lib/SportsBaseballRounded.js index 62b52dff219c84..efc00f1884266e 100644 --- a/packages/material-ui-icons/lib/SportsBaseballRounded.js +++ b/packages/material-ui-icons/lib/SportsBaseballRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67C15.97 18.09 14 15.28 14 12z" -}, "1")], 'SportsBaseballRounded'); \ No newline at end of file +}, "1")], 'SportsBaseballRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBaseballSharp.js b/packages/material-ui-icons/lib/SportsBaseballSharp.js index 15b6382b84c961..73532bd3d82343 100644 --- a/packages/material-ui-icons/lib/SportsBaseballSharp.js +++ b/packages/material-ui-icons/lib/SportsBaseballSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67C15.97 18.09 14 15.28 14 12z" -}, "1")], 'SportsBaseballSharp'); \ No newline at end of file +}, "1")], 'SportsBaseballSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBaseballTwoTone.js b/packages/material-ui-icons/lib/SportsBaseballTwoTone.js index 5cd5e0037b3cc3..9540bdce419f4c 100644 --- a/packages/material-ui-icons/lib/SportsBaseballTwoTone.js +++ b/packages/material-ui-icons/lib/SportsBaseballTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.61 7.22C4.6 8.55 4 10.2 4 12s.6 3.45 1.61 4.78C7.06 15.69 8 13.95 8 12s-.94-3.69-2.39-4.78z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12c0-2.52 1.17-4.77 3-6.24C15.63 4.66 13.89 4 12 4s-3.63.66-5 1.76c1.83 1.47 3 3.71 3 6.24s-1.17 4.77-3 6.24c1.37 1.1 3.11 1.76 5 1.76s3.63-.66 5-1.76c-1.83-1.47-3-3.72-3-6.24z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.39 7.22C16.94 8.31 16 10.05 16 12s.94 3.69 2.39 4.78C19.4 15.45 20 13.8 20 12s-.6-3.45-1.61-4.78z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.61 16.78C4.6 15.45 4 13.8 4 12s.6-3.45 1.61-4.78C7.06 8.31 8 10.05 8 12s-.94 3.69-2.39 4.78zM12 20c-1.89 0-3.63-.66-5-1.76 1.83-1.47 3-3.71 3-6.24S8.83 7.23 7 5.76C8.37 4.66 10.11 4 12 4s3.63.66 5 1.76c-1.83 1.47-3 3.71-3 6.24s1.17 4.77 3 6.24c-1.37 1.1-3.11 1.76-5 1.76zm6.39-3.22C16.94 15.69 16 13.95 16 12s.94-3.69 2.39-4.78C19.4 8.55 20 10.2 20 12s-.6 3.45-1.61 4.78z" -}, "3")], 'SportsBaseballTwoTone'); \ No newline at end of file +}, "3")], 'SportsBaseballTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBasketball.js b/packages/material-ui-icons/lib/SportsBasketball.js index 3d075f21ceba58..56fc42d4271bfe 100644 --- a/packages/material-ui-icons/lib/SportsBasketball.js +++ b/packages/material-ui-icons/lib/SportsBasketball.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.09 11h4.86c-.16-1.61-.71-3.11-1.54-4.4-1.73.83-2.99 2.45-3.32 4.4zM6.91 11c-.33-1.95-1.59-3.57-3.32-4.4-.83 1.29-1.38 2.79-1.54 4.4h4.86zm8.16 0c.32-2.59 1.88-4.79 4.06-6-1.6-1.63-3.74-2.71-6.13-2.95V11h2.07zm-6.14 0H11V2.05C8.61 2.29 6.46 3.37 4.87 5c2.18 1.21 3.74 3.41 4.06 6zm6.14 2H13v8.95c2.39-.24 4.54-1.32 6.13-2.95-2.18-1.21-3.74-3.41-4.06-6zM3.59 17.4c1.72-.83 2.99-2.46 3.32-4.4H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4c.33 1.95 1.59 3.57 3.32 4.4.83-1.29 1.38-2.79 1.54-4.4h-4.86zm-8.16 0c-.32 2.59-1.88 4.79-4.06 6 1.6 1.63 3.74 2.71 6.13 2.95V13H8.93z" -}), 'SportsBasketball'); \ No newline at end of file +}), 'SportsBasketball'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBasketballOutlined.js b/packages/material-ui-icons/lib/SportsBasketballOutlined.js index 694ea0f0db453b..93cff811bfed5c 100644 --- a/packages/material-ui-icons/lib/SportsBasketballOutlined.js +++ b/packages/material-ui-icons/lib/SportsBasketballOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.23 7.75C6.1 8.62 6.7 9.74 6.91 11H4.07c.15-1.18.56-2.28 1.16-3.25zM4.07 13h2.84c-.21 1.26-.81 2.38-1.68 3.25-.6-.97-1.01-2.07-1.16-3.25zM11 19.93c-1.73-.22-3.29-1-4.49-2.14 1.3-1.24 2.19-2.91 2.42-4.79H11v6.93zM11 11H8.93C8.69 9.12 7.81 7.44 6.5 6.2 7.71 5.06 9.27 4.29 11 4.07V11zm8.93 0h-2.84c.21-1.26.81-2.38 1.68-3.25.6.97 1.01 2.07 1.16 3.25zM13 4.07c1.73.22 3.29.99 4.5 2.13-1.31 1.24-2.19 2.92-2.43 4.8H13V4.07zm0 15.86V13h2.07c.24 1.88 1.12 3.55 2.42 4.79-1.2 1.14-2.76 1.92-4.49 2.14zm5.77-3.68c-.87-.86-1.46-1.99-1.68-3.25h2.84c-.15 1.18-.56 2.28-1.16 3.25z" -}), 'SportsBasketballOutlined'); \ No newline at end of file +}), 'SportsBasketballOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBasketballRounded.js b/packages/material-ui-icons/lib/SportsBasketballRounded.js index 87b401ba3889ca..a3a67d9f41e00b 100644 --- a/packages/material-ui-icons/lib/SportsBasketballRounded.js +++ b/packages/material-ui-icons/lib/SportsBasketballRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.09 11h4.86c-.16-1.61-.71-3.11-1.54-4.4-1.73.83-2.99 2.45-3.32 4.4zM6.91 11c-.33-1.95-1.59-3.57-3.32-4.4-.83 1.29-1.38 2.79-1.54 4.4h4.86zm8.16 0c.32-2.59 1.88-4.79 4.06-6-1.6-1.63-3.74-2.71-6.13-2.95V11h2.07zm-6.14 0H11V2.05C8.61 2.29 6.46 3.37 4.87 5c2.18 1.21 3.74 3.41 4.06 6zm6.14 2H13v8.95c2.39-.24 4.54-1.32 6.13-2.95-2.18-1.21-3.74-3.41-4.06-6zM3.59 17.4c1.72-.83 2.99-2.46 3.32-4.4H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4c.33 1.95 1.59 3.57 3.32 4.4.83-1.29 1.38-2.79 1.54-4.4h-4.86zm-8.16 0c-.32 2.59-1.88 4.79-4.06 6 1.6 1.63 3.74 2.71 6.13 2.95V13H8.93z" -}), 'SportsBasketballRounded'); \ No newline at end of file +}), 'SportsBasketballRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBasketballSharp.js b/packages/material-ui-icons/lib/SportsBasketballSharp.js index e8e1d7595ca9d0..558c824d3a66ea 100644 --- a/packages/material-ui-icons/lib/SportsBasketballSharp.js +++ b/packages/material-ui-icons/lib/SportsBasketballSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.09 11h4.86c-.16-1.61-.71-3.11-1.54-4.4-1.73.83-2.99 2.45-3.32 4.4zM6.91 11c-.33-1.95-1.59-3.57-3.32-4.4-.83 1.29-1.38 2.79-1.54 4.4h4.86zm8.16 0c.32-2.59 1.88-4.79 4.06-6-1.6-1.63-3.74-2.71-6.13-2.95V11h2.07zm-6.14 0H11V2.05C8.61 2.29 6.46 3.37 4.87 5c2.18 1.21 3.74 3.41 4.06 6zm6.14 2H13v8.95c2.39-.24 4.54-1.32 6.13-2.95-2.18-1.21-3.74-3.41-4.06-6zM3.59 17.4c1.72-.83 2.99-2.46 3.32-4.4H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4c.33 1.95 1.59 3.57 3.32 4.4.83-1.29 1.38-2.79 1.54-4.4h-4.86zm-8.16 0c-.32 2.59-1.88 4.79-4.06 6 1.6 1.63 3.74 2.71 6.13 2.95V13H8.93z" -}), 'SportsBasketballSharp'); \ No newline at end of file +}), 'SportsBasketballSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsBasketballTwoTone.js b/packages/material-ui-icons/lib/SportsBasketballTwoTone.js index 1df9619d9d635c..69ed1147225449 100644 --- a/packages/material-ui-icons/lib/SportsBasketballTwoTone.js +++ b/packages/material-ui-icons/lib/SportsBasketballTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.93 11H11V4.07c-1.73.22-3.29.99-4.5 2.13C7.81 7.44 8.69 9.12 8.93 11zm11 0c-.15-1.18-.56-2.28-1.16-3.25-.87.87-1.47 1.99-1.68 3.25h2.84zM5.23 7.75c-.6.97-1.01 2.07-1.16 3.25h2.84C6.7 9.74 6.1 8.62 5.23 7.75zM4.07 13c.15 1.18.56 2.28 1.16 3.25.87-.87 1.47-1.99 1.68-3.25H4.07zm2.44 4.79c1.2 1.14 2.76 1.92 4.49 2.14V13H8.93c-.23 1.88-1.12 3.55-2.42 4.79zM17.5 6.2c-1.21-1.14-2.77-1.92-4.5-2.13V11h2.07c.24-1.88 1.12-3.56 2.43-4.8zm1.27 10.05c.61-.96 1.02-2.07 1.16-3.25h-2.84c.21 1.26.81 2.38 1.68 3.25zM13 13v6.93c1.73-.22 3.29-1 4.49-2.14-1.3-1.24-2.19-2.91-2.42-4.79H13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.23 7.75C6.1 8.62 6.7 9.74 6.91 11H4.07c.15-1.18.56-2.28 1.16-3.25zM4.07 13h2.84c-.21 1.26-.81 2.38-1.68 3.25-.6-.97-1.01-2.07-1.16-3.25zM11 19.93c-1.73-.22-3.29-1-4.49-2.14 1.3-1.24 2.19-2.91 2.42-4.79H11v6.93zM11 11H8.93C8.69 9.12 7.81 7.44 6.5 6.2 7.71 5.06 9.27 4.29 11 4.07V11zm8.93 0h-2.84c.21-1.26.81-2.38 1.68-3.25.6.97 1.01 2.07 1.16 3.25zM13 4.07c1.73.22 3.29.99 4.5 2.13-1.31 1.24-2.19 2.92-2.43 4.8H13V4.07zm0 15.86V13h2.07c.24 1.88 1.12 3.55 2.42 4.79-1.2 1.14-2.76 1.92-4.49 2.14zm5.77-3.68c-.87-.86-1.46-1.99-1.68-3.25h2.84c-.15 1.18-.56 2.28-1.16 3.25z" -}, "1")], 'SportsBasketballTwoTone'); \ No newline at end of file +}, "1")], 'SportsBasketballTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsCricket.js b/packages/material-ui-icons/lib/SportsCricket.js index 26ea7a9c8ff069..36bcbf25504cc9 100644 --- a/packages/material-ui-icons/lib/SportsCricket.js +++ b/packages/material-ui-icons/lib/SportsCricket.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.05 12.81 6.56 4.32a.9959.9959 0 0 0-1.41 0L2.32 7.15c-.39.39-.39 1.02 0 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83c.39-.39.39-1.02 0-1.41zm-.7088 4.9462 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18.5", cy: "5.5", r: "3.5" -}, "1")], 'SportsCricket'); \ No newline at end of file +}, "1")], 'SportsCricket'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsCricketOutlined.js b/packages/material-ui-icons/lib/SportsCricketOutlined.js index bb48945c0106ae..8753607bfda364 100644 --- a/packages/material-ui-icons/lib/SportsCricketOutlined.js +++ b/packages/material-ui-icons/lib/SportsCricketOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.04 12.79-8.5-8.5C6.35 4.1 6.09 4 5.83 4s-.51.1-.7.29L2.29 7.13c-.39.39-.39 1.03 0 1.42l8.5 8.5c.2.2.45.29.71.29.26 0 .51-.1.71-.29l2.83-2.83c.39-.4.39-1.04 0-1.43zm-3.54 2.13L4.41 7.83l1.42-1.42 7.09 7.09-1.42 1.42zm2.8412 2.8362 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142zM18.5 2C16.57 2 15 3.57 15 5.5S16.57 9 18.5 9 22 7.43 22 5.5 20.43 2 18.5 2zm0 5c-.83 0-1.5-.67-1.5-1.5S17.67 4 18.5 4s1.5.67 1.5 1.5S19.33 7 18.5 7z" -}), 'SportsCricketOutlined'); \ No newline at end of file +}), 'SportsCricketOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsCricketRounded.js b/packages/material-ui-icons/lib/SportsCricketRounded.js index 4c2e0be0bb54f6..b14cbb69bd5e61 100644 --- a/packages/material-ui-icons/lib/SportsCricketRounded.js +++ b/packages/material-ui-icons/lib/SportsCricketRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.05 12.81 6.56 4.32a.9959.9959 0 0 0-1.41 0L2.32 7.15c-.39.39-.39 1.02 0 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83c.39-.39.39-1.02 0-1.41zm-.71 4.95 3.53 3.53c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-3.53-3.53-1.42 1.42z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18.5", cy: "5.5", r: "3.5" -}, "1")], 'SportsCricketRounded'); \ No newline at end of file +}, "1")], 'SportsCricketRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsCricketSharp.js b/packages/material-ui-icons/lib/SportsCricketSharp.js index 2729112881ddd5..f77ba5adabb6ec 100644 --- a/packages/material-ui-icons/lib/SportsCricketSharp.js +++ b/packages/material-ui-icons/lib/SportsCricketSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.05 12.81 6.56 4.32a.9959.9959 0 0 0-1.41 0L2.32 7.15c-.39.39-.39 1.02 0 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83c.39-.39.39-1.02 0-1.41zm-.7088 4.9462 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18.5", cy: "5.5", r: "3.5" -}, "1")], 'SportsCricketSharp'); \ No newline at end of file +}, "1")], 'SportsCricketSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsCricketTwoTone.js b/packages/material-ui-icons/lib/SportsCricketTwoTone.js index aa8fa63c701006..6f4e1b55020853 100644 --- a/packages/material-ui-icons/lib/SportsCricketTwoTone.js +++ b/packages/material-ui-icons/lib/SportsCricketTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4.414 7.8394 1.4213-1.4213 7.0852 7.0853-1.4213 1.4212z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18.5", cy: "5.5", r: "1.5", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.04 12.79-8.5-8.5C6.35 4.1 6.09 4 5.83 4s-.51.1-.7.29L2.29 7.13c-.39.39-.39 1.03 0 1.42l8.5 8.5c.2.2.45.29.71.29.26 0 .51-.1.71-.29l2.83-2.83c.39-.4.39-1.04 0-1.43zm-3.54 2.13L4.41 7.83l1.42-1.42 7.09 7.09-1.42 1.42zm2.8412 2.8362 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142zM18.5 2C16.57 2 15 3.57 15 5.5S16.57 9 18.5 9 22 7.43 22 5.5 20.43 2 18.5 2zm0 5c-.83 0-1.5-.67-1.5-1.5S17.67 4 18.5 4s1.5.67 1.5 1.5S19.33 7 18.5 7z" -}, "2")], 'SportsCricketTwoTone'); \ No newline at end of file +}, "2")], 'SportsCricketTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsEsports.js b/packages/material-ui-icons/lib/SportsEsports.js index 6a477bc30f17b7..9f9c43dc3ce9bb 100644 --- a/packages/material-ui-icons/lib/SportsEsports.js +++ b/packages/material-ui-icons/lib/SportsEsports.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zM11 11H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'SportsEsports'); \ No newline at end of file +}), 'SportsEsports'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsEsportsOutlined.js b/packages/material-ui-icons/lib/SportsEsportsOutlined.js index 47d1405d52e279..95e58f9dafc674 100644 --- a/packages/material-ui-icons/lib/SportsEsportsOutlined.js +++ b/packages/material-ui-icons/lib/SportsEsportsOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zm-2.1.72c-.08.09-.21.19-.42.19-.15 0-.29-.06-.39-.16L15.83 14H8.17l-2.84 2.84c-.1.1-.24.16-.39.16-.21 0-.34-.1-.42-.19-.08-.09-.16-.23-.13-.44l1.09-7.66C5.63 7.74 6.48 7 7.47 7h9.06c.99 0 1.84.74 1.98 1.72l1.09 7.66c.03.2-.05.34-.12.43z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8H8v2H6v1h2v2h1v-2h2v-1H9z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "12", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "9", r: "1" -}, "3")], 'SportsEsportsOutlined'); \ No newline at end of file +}, "3")], 'SportsEsportsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsEsportsRounded.js b/packages/material-ui-icons/lib/SportsEsportsRounded.js index 2ac27eb267fa5d..3abc6e97784020 100644 --- a/packages/material-ui-icons/lib/SportsEsportsRounded.js +++ b/packages/material-ui-icons/lib/SportsEsportsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zM11 11H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'SportsEsportsRounded'); \ No newline at end of file +}), 'SportsEsportsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsEsportsSharp.js b/packages/material-ui-icons/lib/SportsEsportsSharp.js index 6437c8510a157c..1ea711d391f7e6 100644 --- a/packages/material-ui-icons/lib/SportsEsportsSharp.js +++ b/packages/material-ui-icons/lib/SportsEsportsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5H4L2 19h4l3-3h6l3 3h4L20 5zm-9 6H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'SportsEsportsSharp'); \ No newline at end of file +}), 'SportsEsportsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsEsportsTwoTone.js b/packages/material-ui-icons/lib/SportsEsportsTwoTone.js index 52689328c42303..bb23fb1a00e99d 100644 --- a/packages/material-ui-icons/lib/SportsEsportsTwoTone.js +++ b/packages/material-ui-icons/lib/SportsEsportsTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.53 7H7.47c-.99 0-1.84.74-1.98 1.72L4.4 16.37c-.03.21.05.35.13.44.07.09.2.19.41.19.15 0 .29-.06.39-.16L8.17 14h7.66l2.84 2.84c.1.1.24.16.39.16.21 0 .34-.1.42-.19.08-.09.16-.23.13-.44l-1.09-7.66c-.15-.97-1-1.71-1.99-1.71zM11 11H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zm-2.1.72c-.08.09-.21.19-.42.19-.15 0-.29-.06-.39-.16L15.83 14H8.17l-2.84 2.84c-.1.1-.24.16-.39.16-.21 0-.34-.1-.42-.19-.08-.09-.16-.23-.13-.44l1.09-7.66C5.63 7.74 6.48 7 7.47 7h9.06c.99 0 1.84.74 1.98 1.72l1.09 7.66c.03.2-.05.34-.12.43z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 8H8v2H6v1h2v2h1v-2h2v-1H9z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "17", cy: "12", r: "1" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "9", r: "1" -}, "4")], 'SportsEsportsTwoTone'); \ No newline at end of file +}, "4")], 'SportsEsportsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsFootball.js b/packages/material-ui-icons/lib/SportsFootball.js index 871edcd74bfa4a..96dc52ab9f6fe9 100644 --- a/packages/material-ui-icons/lib/SportsFootball.js +++ b/packages/material-ui-icons/lib/SportsFootball.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zM9.9 15.5l-1.4-1.4 5.6-5.6 1.4 1.4-5.6 5.6zm11.08-7.12c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z" -}), 'SportsFootball'); \ No newline at end of file +}), 'SportsFootball'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsFootballOutlined.js b/packages/material-ui-icons/lib/SportsFootballOutlined.js index bd399d9dd158ce..f0e0882ae79f79 100644 --- a/packages/material-ui-icons/lib/SportsFootballOutlined.js +++ b/packages/material-ui-icons/lib/SportsFootballOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.31 3.69c-.32-.33-1.94-.69-4.05-.69-3.03 0-7.09.75-9.8 3.46-4.59 4.59-3.56 13.06-2.77 13.85.32.33 1.94.69 4.05.69 3.03 0 7.09-.75 9.8-3.46 4.59-4.59 3.56-13.06 2.77-13.85zM7.74 19c-1.14 0-2.02-.12-2.53-.23-.18-.79-.3-2.21-.17-3.83l4.01 4.01c-.52.04-.97.05-1.31.05zm8.39-2.87c-1.33 1.33-3.06 2.05-4.66 2.44l-6.04-6.04c.42-1.68 1.16-3.37 2.45-4.65 1.32-1.32 3.05-2.04 4.64-2.43l6.05 6.05c-.42 1.67-1.17 3.35-2.44 4.63zm2.83-7.04-4.03-4.03c.52-.05.98-.06 1.33-.06 1.14 0 2.02.12 2.53.23.18.79.3 2.22.17 3.86z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.4996 14.1002 14.1 8.4999l1.4 1.4-5.6002 5.6004z" -}, "1")], 'SportsFootballOutlined'); \ No newline at end of file +}, "1")], 'SportsFootballOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsFootballRounded.js b/packages/material-ui-icons/lib/SportsFootballRounded.js index d73a8eec56cce5..1d8caf75f70b7a 100644 --- a/packages/material-ui-icons/lib/SportsFootballRounded.js +++ b/packages/material-ui-icons/lib/SportsFootballRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zm1.72 7.32-4.2 4.2c-.39.39-1.01.39-1.4 0s-.39-1.01 0-1.4l4.2-4.2c.39-.39 1.01-.39 1.4 0s.39 1.01 0 1.4zm6.18-2.22c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z" -}), 'SportsFootballRounded'); \ No newline at end of file +}), 'SportsFootballRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsFootballSharp.js b/packages/material-ui-icons/lib/SportsFootballSharp.js index ad6f713d1480d0..862a3db3f6a32c 100644 --- a/packages/material-ui-icons/lib/SportsFootballSharp.js +++ b/packages/material-ui-icons/lib/SportsFootballSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zM9.9 15.5l-1.4-1.4 5.6-5.6 1.4 1.4-5.6 5.6zm11.08-7.12c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z" -}), 'SportsFootballSharp'); \ No newline at end of file +}), 'SportsFootballSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsFootballTwoTone.js b/packages/material-ui-icons/lib/SportsFootballTwoTone.js index 7d2b7bbddd9bfa..0869665fdc7a25 100644 --- a/packages/material-ui-icons/lib/SportsFootballTwoTone.js +++ b/packages/material-ui-icons/lib/SportsFootballTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.26 5c-.35 0-.8.01-1.33.06l4.03 4.03c.14-1.63.01-3.07-.17-3.86-.51-.11-1.39-.23-2.53-.23zM5.21 18.77c.51.11 1.39.23 2.53.23.34 0 .79-.01 1.3-.05l-4.01-4.01c-.12 1.62 0 3.04.18 3.83zm2.66-10.9c-1.28 1.28-2.03 2.97-2.45 4.65l6.04 6.04c1.6-.39 3.33-1.11 4.66-2.44 1.28-1.28 2.03-2.95 2.44-4.63l-6.05-6.05c-1.59.39-3.31 1.11-4.64 2.43zM15.5 9.9l-5.6 5.6-1.4-1.4 5.6-5.6 1.4 1.4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.31 3.69c-.32-.33-1.94-.69-4.05-.69-3.03 0-7.09.75-9.8 3.46-4.59 4.59-3.56 13.06-2.77 13.85.32.33 1.94.69 4.05.69 3.03 0 7.09-.75 9.8-3.46 4.59-4.59 3.56-13.06 2.77-13.85zM7.74 19c-1.14 0-2.02-.12-2.53-.23-.18-.79-.3-2.21-.17-3.83l4.01 4.01c-.52.04-.97.05-1.31.05zm8.39-2.87c-1.33 1.33-3.06 2.05-4.66 2.44l-6.04-6.04c.42-1.68 1.16-3.37 2.45-4.65 1.32-1.32 3.05-2.04 4.64-2.43l6.05 6.05c-.42 1.67-1.17 3.35-2.44 4.63zm2.83-7.04-4.03-4.03c.52-.05.98-.06 1.33-.06 1.14 0 2.02.12 2.53.23.18.79.3 2.22.17 3.86z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.4996 14.1002 14.1 8.4999l1.4 1.4-5.6002 5.6004z" -}, "2")], 'SportsFootballTwoTone'); \ No newline at end of file +}, "2")], 'SportsFootballTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsGolf.js b/packages/material-ui-icons/lib/SportsGolf.js index 54341808bf63e2..df9e7696aac81f 100644 --- a/packages/material-ui-icons/lib/SportsGolf.js +++ b/packages/material-ui-icons/lib/SportsGolf.js @@ -1,19 +1,32 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "8", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" -}, "4")], 'SportsGolf'); \ No newline at end of file +}, "4")], 'SportsGolf'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsGolfOutlined.js b/packages/material-ui-icons/lib/SportsGolfOutlined.js index 72181daea4f6ae..c4bb533c995cc5 100644 --- a/packages/material-ui-icons/lib/SportsGolfOutlined.js +++ b/packages/material-ui-icons/lib/SportsGolfOutlined.js @@ -1,19 +1,32 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "8", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" -}, "4")], 'SportsGolfOutlined'); \ No newline at end of file +}, "4")], 'SportsGolfOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsGolfRounded.js b/packages/material-ui-icons/lib/SportsGolfRounded.js index b56d2ba7dc0032..1fb20cc5965976 100644 --- a/packages/material-ui-icons/lib/SportsGolfRounded.js +++ b/packages/material-ui-icons/lib/SportsGolfRounded.js @@ -1,19 +1,32 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "8", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 17H8c-.55 0-1 .45-1 1s.45 1 1 1h1c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h1c.55 0 1-.45 1-1s-.45-1-1-1z" -}, "4")], 'SportsGolfRounded'); \ No newline at end of file +}, "4")], 'SportsGolfRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsGolfSharp.js b/packages/material-ui-icons/lib/SportsGolfSharp.js index fbdd4d27c8d418..706937f0394193 100644 --- a/packages/material-ui-icons/lib/SportsGolfSharp.js +++ b/packages/material-ui-icons/lib/SportsGolfSharp.js @@ -1,19 +1,32 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "8", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" -}, "4")], 'SportsGolfSharp'); \ No newline at end of file +}, "4")], 'SportsGolfSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsGolfTwoTone.js b/packages/material-ui-icons/lib/SportsGolfTwoTone.js index cf7218d5e7f36c..755f1ba81564b3 100644 --- a/packages/material-ui-icons/lib/SportsGolfTwoTone.js +++ b/packages/material-ui-icons/lib/SportsGolfTwoTone.js @@ -1,22 +1,35 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "8", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14", cy: "8", r: "1" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "6", r: "1" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" -}, "5")], 'SportsGolfTwoTone'); \ No newline at end of file +}, "5")], 'SportsGolfTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHandball.js b/packages/material-ui-icons/lib/SportsHandball.js index 08bff7126b417b..7f9a7c6a76201d 100644 --- a/packages/material-ui-icons/lib/SportsHandball.js +++ b/packages/material-ui-icons/lib/SportsHandball.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" -}, "2")], 'SportsHandball'); \ No newline at end of file +}, "2")], 'SportsHandball'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHandballOutlined.js b/packages/material-ui-icons/lib/SportsHandballOutlined.js index d2f9d95a94e006..d7f73a139c3767 100644 --- a/packages/material-ui-icons/lib/SportsHandballOutlined.js +++ b/packages/material-ui-icons/lib/SportsHandballOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" -}, "2")], 'SportsHandballOutlined'); \ No newline at end of file +}, "2")], 'SportsHandballOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHandballRounded.js b/packages/material-ui-icons/lib/SportsHandballRounded.js index 08d47e6a04586f..10960d82cdbb7a 100644 --- a/packages/material-ui-icons/lib/SportsHandballRounded.js +++ b/packages/material-ui-icons/lib/SportsHandballRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.13-1.24-3.01-3.83-2.18-6.07.17-.46-.01-.97-.43-1.21-.53-.3-1.22-.07-1.43.5-.95 2.51-.35 5.35 1.46 7.27l-4.65 8.05c-.28.48-.11 1.09.37 1.37s1.09.11 1.37-.37l1-1.73 1.73 1-2.5 4.33c-.28.48-.11 1.09.37 1.37s1.09.11 1.37-.37l5.79-10.02c.98 1.34 1.26 3.12.66 4.72-.17.45.02.96.43 1.2.53.31 1.22.08 1.44-.5.97-2.62.41-5.84-2.2-8.04zM12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" -}, "1")], 'SportsHandballRounded'); \ No newline at end of file +}, "1")], 'SportsHandballRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHandballSharp.js b/packages/material-ui-icons/lib/SportsHandballSharp.js index 9b8d364aedc77e..78151686d8c0f2 100644 --- a/packages/material-ui-icons/lib/SportsHandballSharp.js +++ b/packages/material-ui-icons/lib/SportsHandballSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" -}, "2")], 'SportsHandballSharp'); \ No newline at end of file +}, "2")], 'SportsHandballSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHandballTwoTone.js b/packages/material-ui-icons/lib/SportsHandballTwoTone.js index 9a65a0ca360101..d00459debc3dd3 100644 --- a/packages/material-ui-icons/lib/SportsHandballTwoTone.js +++ b/packages/material-ui-icons/lib/SportsHandballTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" -}, "2")], 'SportsHandballTwoTone'); \ No newline at end of file +}, "2")], 'SportsHandballTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHockey.js b/packages/material-ui-icons/lib/SportsHockey.js index 39c3107b3f584c..4c81f3e82d5f4c 100644 --- a/packages/material-ui-icons/lib/SportsHockey.js +++ b/packages/material-ui-icons/lib/SportsHockey.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" -}), 'SportsHockey'); \ No newline at end of file +}), 'SportsHockey'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHockeyOutlined.js b/packages/material-ui-icons/lib/SportsHockeyOutlined.js index 39a4c90e607552..2de2cff9b391bb 100644 --- a/packages/material-ui-icons/lib/SportsHockeyOutlined.js +++ b/packages/material-ui-icons/lib/SportsHockeyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" -}), 'SportsHockeyOutlined'); \ No newline at end of file +}), 'SportsHockeyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHockeyRounded.js b/packages/material-ui-icons/lib/SportsHockeyRounded.js index 613fe59678015e..66926d2a631760 100644 --- a/packages/material-ui-icons/lib/SportsHockeyRounded.js +++ b/packages/material-ui-icons/lib/SportsHockeyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" -}), 'SportsHockeyRounded'); \ No newline at end of file +}), 'SportsHockeyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHockeySharp.js b/packages/material-ui-icons/lib/SportsHockeySharp.js index e441d2d22970e0..39ddf9fb3198b0 100644 --- a/packages/material-ui-icons/lib/SportsHockeySharp.js +++ b/packages/material-ui-icons/lib/SportsHockeySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" -}), 'SportsHockeySharp'); \ No newline at end of file +}), 'SportsHockeySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsHockeyTwoTone.js b/packages/material-ui-icons/lib/SportsHockeyTwoTone.js index 04cb7f452c895d..502943ee7cd89c 100644 --- a/packages/material-ui-icons/lib/SportsHockeyTwoTone.js +++ b/packages/material-ui-icons/lib/SportsHockeyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" -}), 'SportsHockeyTwoTone'); \ No newline at end of file +}), 'SportsHockeyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsKabaddi.js b/packages/material-ui-icons/lib/SportsKabaddi.js index 4744bfd83e8896..a3261d6958db43 100644 --- a/packages/material-ui-icons/lib/SportsKabaddi.js +++ b/packages/material-ui-icons/lib/SportsKabaddi.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "2.38", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" -}, "2")], 'SportsKabaddi'); \ No newline at end of file +}, "2")], 'SportsKabaddi'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsKabaddiOutlined.js b/packages/material-ui-icons/lib/SportsKabaddiOutlined.js index 0dfdd842aa4ffb..e3c54345505408 100644 --- a/packages/material-ui-icons/lib/SportsKabaddiOutlined.js +++ b/packages/material-ui-icons/lib/SportsKabaddiOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "2.38", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" -}, "2")], 'SportsKabaddiOutlined'); \ No newline at end of file +}, "2")], 'SportsKabaddiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsKabaddiRounded.js b/packages/material-ui-icons/lib/SportsKabaddiRounded.js index d15a4d789a0747..02f006111fbed3 100644 --- a/packages/material-ui-icons/lib/SportsKabaddiRounded.js +++ b/packages/material-ui-icons/lib/SportsKabaddiRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "2.38", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 10.88v-3.7l-4.99-2.11c-.98-.41-2.12-.07-2.71.81l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v6.5c0 .55.45 1 1 1s1-.45 1-1v-5l2.1-2 1.62 7.19c.11.47.53.81 1.02.81.66 0 1.15-.6 1.02-1.24l-1.94-9.76-.62-3.1 1.8.7v2.4c0 .55.45 1 1 1s1-.45 1-1zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-2.92 2.92c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l3.54-3.54v-2.22L7 16.75v4.13c0 .55.45 1 1 1s1-.45 1-1v-5l-2.12-2.12 2.36-2.36.71.71c1.02 1 2.28 1.69 3.79 1.94.64.11 1.21-.45 1.16-1.1-.03-.48-.4-.87-.87-.94-1.13-.18-2.06-.72-2.79-1.45z" -}, "2")], 'SportsKabaddiRounded'); \ No newline at end of file +}, "2")], 'SportsKabaddiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsKabaddiSharp.js b/packages/material-ui-icons/lib/SportsKabaddiSharp.js index a634d50cb7bcbe..e216b9f55e015a 100644 --- a/packages/material-ui-icons/lib/SportsKabaddiSharp.js +++ b/packages/material-ui-icons/lib/SportsKabaddiSharp.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "2.38", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" -}, "2")], 'SportsKabaddiSharp'); \ No newline at end of file +}, "2")], 'SportsKabaddiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsKabaddiTwoTone.js b/packages/material-ui-icons/lib/SportsKabaddiTwoTone.js index 08ed749129efd2..a4bb5c9260db4a 100644 --- a/packages/material-ui-icons/lib/SportsKabaddiTwoTone.js +++ b/packages/material-ui-icons/lib/SportsKabaddiTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "2.38", r: "2" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" -}, "2")], 'SportsKabaddiTwoTone'); \ No newline at end of file +}, "2")], 'SportsKabaddiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMma.js b/packages/material-ui-icons/lib/SportsMma.js index 30e15f1cec3f21..c4702810031e4f 100644 --- a/packages/material-ui-icons/lib/SportsMma.js +++ b/packages/material-ui-icons/lib/SportsMma.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-3 3H7V7h8v3z" -}), 'SportsMma'); \ No newline at end of file +}), 'SportsMma'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMmaOutlined.js b/packages/material-ui-icons/lib/SportsMmaOutlined.js index 094f81857e14dd..a5350e12c1dff6 100644 --- a/packages/material-ui-icons/lib/SportsMmaOutlined.js +++ b/packages/material-ui-icons/lib/SportsMmaOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8H17c.55 0 1.09-.44 1.2-.98l.77-3.83c.02-.12.03-.25.03-.38V8c0-.55-.45-1-1-1zm-1 3.6c0 .13-.64 3.4-.64 3.4H7.64S7 10.74 7 10.6V5h8v5h2v.6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 7h6v3H8z" -}, "1")], 'SportsMmaOutlined'); \ No newline at end of file +}, "1")], 'SportsMmaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMmaRounded.js b/packages/material-ui-icons/lib/SportsMmaRounded.js index 1895e5850168b6..e1ebcb16d79db7 100644 --- a/packages/material-ui-icons/lib/SportsMmaRounded.js +++ b/packages/material-ui-icons/lib/SportsMmaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-4 3H8c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1z" -}), 'SportsMmaRounded'); \ No newline at end of file +}), 'SportsMmaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMmaSharp.js b/packages/material-ui-icons/lib/SportsMmaSharp.js index eefc8521ff1194..a3f93689d4f019 100644 --- a/packages/material-ui-icons/lib/SportsMmaSharp.js +++ b/packages/material-ui-icons/lib/SportsMmaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h10v4H7zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-3 3H7V7h8v3z" -}), 'SportsMmaSharp'); \ No newline at end of file +}), 'SportsMmaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMmaTwoTone.js b/packages/material-ui-icons/lib/SportsMmaTwoTone.js index b9a757511cd54b..a335541b6fdd97 100644 --- a/packages/material-ui-icons/lib/SportsMmaTwoTone.js +++ b/packages/material-ui-icons/lib/SportsMmaTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 5H7v5.6c0 .14.64 3.4.64 3.4h8.72s.64-3.26.64-3.4V10h-2V5zm-1 5H8V7h6v3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8H17c.55 0 1.09-.44 1.2-.98l.77-3.83c.02-.12.03-.25.03-.38V8c0-.55-.45-1-1-1zm-1 3.6c0 .13-.64 3.4-.64 3.4H7.64S7 10.74 7 10.6V5h8v5h2v.6z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 7h6v3H8z" -}, "2")], 'SportsMmaTwoTone'); \ No newline at end of file +}, "2")], 'SportsMmaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMotorsports.js b/packages/material-ui-icons/lib/SportsMotorsports.js index a3964908bb5070..491dcc210efb9e 100644 --- a/packages/material-ui-icons/lib/SportsMotorsports.js +++ b/packages/material-ui-icons/lib/SportsMotorsports.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78z" -}, "1")], 'SportsMotorsports'); \ No newline at end of file +}, "1")], 'SportsMotorsports'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMotorsportsOutlined.js b/packages/material-ui-icons/lib/SportsMotorsportsOutlined.js index ac36b06d33be3d..a6642c67f2be3b 100644 --- a/packages/material-ui-icons/lib/SportsMotorsportsOutlined.js +++ b/packages/material-ui-icons/lib/SportsMotorsportsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.96 11.22C21.57 7.01 17.76 4 13.56 4c-.19 0-.38.01-.57.02C2 4.74 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78zm-16.7.34c.57-1.29 1.28-2.35 2.14-3.19l3.62 1.53c.6.25.98.83.98 1.48 0 .89-.72 1.61-1.61 1.61H4.72c.15-.46.32-.94.54-1.43zm13.18 4.48C17.3 17.29 15.68 18 14 18H4v-.8c0-.02.01-.92.24-2.2h6.15c1.99 0 3.61-1.62 3.61-3.61 0-1.45-.87-2.76-2.2-3.32L9.3 7.01c1.1-.57 2.37-.9 3.82-.99.15-.02.3-.02.44-.02 3.31 0 6.13 2.37 6.41 5.41.16 1.72-.38 3.36-1.53 4.63z" -}), 'SportsMotorsportsOutlined'); \ No newline at end of file +}), 'SportsMotorsportsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMotorsportsRounded.js b/packages/material-ui-icons/lib/SportsMotorsportsRounded.js index fb7ab514ce3ba8..f80cce3152c98d 100644 --- a/packages/material-ui-icons/lib/SportsMotorsportsRounded.js +++ b/packages/material-ui-icons/lib/SportsMotorsportsRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78z" -}, "1")], 'SportsMotorsportsRounded'); \ No newline at end of file +}, "1")], 'SportsMotorsportsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMotorsportsSharp.js b/packages/material-ui-icons/lib/SportsMotorsportsSharp.js index 4d3ebe074b7e5a..c717826ec0e710 100644 --- a/packages/material-ui-icons/lib/SportsMotorsportsSharp.js +++ b/packages/material-ui-icons/lib/SportsMotorsportsSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2V20h12c4.67 0 8.41-4.01 7.96-8.78z" -}, "1")], 'SportsMotorsportsSharp'); \ No newline at end of file +}, "1")], 'SportsMotorsportsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsMotorsportsTwoTone.js b/packages/material-ui-icons/lib/SportsMotorsportsTwoTone.js index 8a3ee18f4fcc06..e5cdde81e72283 100644 --- a/packages/material-ui-icons/lib/SportsMotorsportsTwoTone.js +++ b/packages/material-ui-icons/lib/SportsMotorsportsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.56 6c-.15 0-.29 0-.44.01-1.45.1-2.72.43-3.82.99l2.5 1.06c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H4.24C4.01 16.28 4 17.19 4 17.2v.8h10c1.68 0 3.3-.71 4.44-1.96 1.15-1.27 1.7-2.91 1.54-4.63C19.69 8.37 16.87 6 13.56 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.96 11.22C21.57 7.01 17.76 4 13.56 4c-.19 0-.38.01-.57.02C2 4.74 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78zm-16.7.34c.57-1.29 1.28-2.35 2.14-3.19l3.62 1.53c.6.25.98.83.98 1.48 0 .89-.72 1.61-1.61 1.61H4.72c.15-.46.32-.94.54-1.43zm13.18 4.48C17.3 17.29 15.68 18 14 18H4v-.8c0-.02.01-.92.24-2.2h6.15c1.99 0 3.61-1.62 3.61-3.61 0-1.45-.87-2.76-2.2-3.32L9.3 7.01c1.1-.57 2.37-.9 3.82-.99.15-.02.3-.02.44-.02 3.31 0 6.13 2.37 6.41 5.41.16 1.72-.38 3.36-1.53 4.63z" -}, "1")], 'SportsMotorsportsTwoTone'); \ No newline at end of file +}, "1")], 'SportsMotorsportsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsOutlined.js b/packages/material-ui-icons/lib/SportsOutlined.js index 3eaa2d104e1ad6..7b72c605797f4d 100644 --- a/packages/material-ui-icons/lib/SportsOutlined.js +++ b/packages/material-ui-icons/lib/SportsOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "12", r: "2" -}, "1")], 'SportsOutlined'); \ No newline at end of file +}, "1")], 'SportsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsRounded.js b/packages/material-ui-icons/lib/SportsRounded.js index e3e0a489333864..41d562cebda412 100644 --- a/packages/material-ui-icons/lib/SportsRounded.js +++ b/packages/material-ui-icons/lib/SportsRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6h-9.77c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13h2.76C21.56 10 22 9.55 22 9V7c0-.55-.45-1-1-1zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "12", r: "2" -}, "1")], 'SportsRounded'); \ No newline at end of file +}, "1")], 'SportsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsRugby.js b/packages/material-ui-icons/lib/SportsRugby.js index d6d78a5b69ebac..6515ce58f81160 100644 --- a/packages/material-ui-icons/lib/SportsRugby.js +++ b/packages/material-ui-icons/lib/SportsRugby.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61-2.16 2.16-3.67 4.58-4.62 6.63.1-2.48.88-5.74 3.2-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" -}), 'SportsRugby'); \ No newline at end of file +}), 'SportsRugby'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsRugbyOutlined.js b/packages/material-ui-icons/lib/SportsRugbyOutlined.js index 1610d9643d3444..6ef3bcc38cef2c 100644 --- a/packages/material-ui-icons/lib/SportsRugbyOutlined.js +++ b/packages/material-ui-icons/lib/SportsRugbyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM5.71 18.29c.63-1.89 2.16-4.99 4.87-7.7 2.68-2.68 5.78-4.23 7.7-4.88-.63 1.89-2.16 4.99-4.88 7.7-2.66 2.68-5.76 4.23-7.69 4.88zM7.76 7.76c2.64-2.64 6.34-3.12 8.03-3.19-2.05.94-4.46 2.46-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.34 3.12-8.03 3.19 2.05-.94 4.46-2.46 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" -}), 'SportsRugbyOutlined'); \ No newline at end of file +}), 'SportsRugbyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsRugbyRounded.js b/packages/material-ui-icons/lib/SportsRugbyRounded.js index 2ff7caac3794b6..759389e71838fa 100644 --- a/packages/material-ui-icons/lib/SportsRugbyRounded.js +++ b/packages/material-ui-icons/lib/SportsRugbyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" -}), 'SportsRugbyRounded'); \ No newline at end of file +}), 'SportsRugbyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsRugbySharp.js b/packages/material-ui-icons/lib/SportsRugbySharp.js index 477f567d883ae4..9728f2eeff1d1f 100644 --- a/packages/material-ui-icons/lib/SportsRugbySharp.js +++ b/packages/material-ui-icons/lib/SportsRugbySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" -}), 'SportsRugbySharp'); \ No newline at end of file +}), 'SportsRugbySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsRugbyTwoTone.js b/packages/material-ui-icons/lib/SportsRugbyTwoTone.js index 411d63aee4df08..6d7f418477cb19 100644 --- a/packages/material-ui-icons/lib/SportsRugbyTwoTone.js +++ b/packages/material-ui-icons/lib/SportsRugbyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.29 5.71c-1.93.64-5.02 2.19-7.7 4.88-2.71 2.71-4.24 5.81-4.87 7.7 1.93-.64 5.03-2.2 7.7-4.87 2.71-2.72 4.24-5.82 4.87-7.71zM9.17 9.17c2.15-2.15 4.56-3.67 6.61-4.61-1.68.08-5.38.56-8.02 3.2-2.32 2.32-3.1 5.58-3.2 8.04.94-2.05 2.45-4.47 4.61-6.63zm5.66 5.66c-2.15 2.15-4.56 3.67-6.61 4.61 1.68-.08 5.39-.55 8.03-3.19 2.32-2.32 3.1-5.58 3.2-8.04-.95 2.04-2.46 4.46-4.62 6.62z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM5.71 18.29c.63-1.89 2.16-4.99 4.87-7.7 2.68-2.68 5.78-4.23 7.7-4.88-.63 1.89-2.16 4.99-4.88 7.7-2.66 2.68-5.76 4.23-7.69 4.88zM7.76 7.76c2.64-2.64 6.34-3.12 8.03-3.19-2.05.94-4.46 2.46-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.34 3.12-8.03 3.19 2.05-.94 4.46-2.46 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" -}, "1")], 'SportsRugbyTwoTone'); \ No newline at end of file +}, "1")], 'SportsRugbyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsScore.js b/packages/material-ui-icons/lib/SportsScore.js index dc8000c75942c9..c864672da71d22 100644 --- a/packages/material-ui-icons/lib/SportsScore.js +++ b/packages/material-ui-icons/lib/SportsScore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" -}), 'SportsScore'); \ No newline at end of file +}), 'SportsScore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsScoreOutlined.js b/packages/material-ui-icons/lib/SportsScoreOutlined.js index ddcf67c4dd1ec7..b10c352fa92ca8 100644 --- a/packages/material-ui-icons/lib/SportsScoreOutlined.js +++ b/packages/material-ui-icons/lib/SportsScoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" -}), 'SportsScoreOutlined'); \ No newline at end of file +}), 'SportsScoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsScoreRounded.js b/packages/material-ui-icons/lib/SportsScoreRounded.js index 7e1e57b04a17ad..bbc560e48378b4 100644 --- a/packages/material-ui-icons/lib/SportsScoreRounded.js +++ b/packages/material-ui-icons/lib/SportsScoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V5c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-7h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" -}), 'SportsScoreRounded'); \ No newline at end of file +}), 'SportsScoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsScoreSharp.js b/packages/material-ui-icons/lib/SportsScoreSharp.js index 4b39e485dd74dd..ccc1f74d639aa1 100644 --- a/packages/material-ui-icons/lib/SportsScoreSharp.js +++ b/packages/material-ui-icons/lib/SportsScoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" -}), 'SportsScoreSharp'); \ No newline at end of file +}), 'SportsScoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsScoreTwoTone.js b/packages/material-ui-icons/lib/SportsScoreTwoTone.js index 66ce617f8dfa5f..9b7218584642e0 100644 --- a/packages/material-ui-icons/lib/SportsScoreTwoTone.js +++ b/packages/material-ui-icons/lib/SportsScoreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" -}), 'SportsScoreTwoTone'); \ No newline at end of file +}), 'SportsScoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsSharp.js b/packages/material-ui-icons/lib/SportsSharp.js index 52219c7ee4feb7..6e24c59305360e 100644 --- a/packages/material-ui-icons/lib/SportsSharp.js +++ b/packages/material-ui-icons/lib/SportsSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "12", r: "2" -}, "1")], 'SportsSharp'); \ No newline at end of file +}, "1")], 'SportsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsSoccer.js b/packages/material-ui-icons/lib/SportsSoccer.js index 8f54c95562277d..208b4f356874af 100644 --- a/packages/material-ui-icons/lib/SportsSoccer.js +++ b/packages/material-ui-icons/lib/SportsSoccer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" -}), 'SportsSoccer'); \ No newline at end of file +}), 'SportsSoccer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsSoccerOutlined.js b/packages/material-ui-icons/lib/SportsSoccerOutlined.js index 8946d2bc5190e6..cb8a96217f302e 100644 --- a/packages/material-ui-icons/lib/SportsSoccerOutlined.js +++ b/packages/material-ui-icons/lib/SportsSoccerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" -}), 'SportsSoccerOutlined'); \ No newline at end of file +}), 'SportsSoccerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsSoccerRounded.js b/packages/material-ui-icons/lib/SportsSoccerRounded.js index abc8a7e8338c93..57ab9e6e31b82d 100644 --- a/packages/material-ui-icons/lib/SportsSoccerRounded.js +++ b/packages/material-ui-icons/lib/SportsSoccerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" -}), 'SportsSoccerRounded'); \ No newline at end of file +}), 'SportsSoccerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsSoccerSharp.js b/packages/material-ui-icons/lib/SportsSoccerSharp.js index 318fd734470d18..220bb133d91196 100644 --- a/packages/material-ui-icons/lib/SportsSoccerSharp.js +++ b/packages/material-ui-icons/lib/SportsSoccerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" -}), 'SportsSoccerSharp'); \ No newline at end of file +}), 'SportsSoccerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsSoccerTwoTone.js b/packages/material-ui-icons/lib/SportsSoccerTwoTone.js index ee05fe5688a1ae..4aa9084c0d278c 100644 --- a/packages/material-ui-icons/lib/SportsSoccerTwoTone.js +++ b/packages/material-ui-icons/lib/SportsSoccerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.01 9.49 11 6.7V5.3l-1.35-.95c-1.82.57-3.37 1.77-4.38 3.34l.39 1.34 1.35.46zm-2 1.43-1 .73c0 .12-.01.23-.01.35 0 1.99.73 3.81 1.94 5.21l1.14-.1.79-1.37L6.4 11.4l-1.39-.48zm13.33-1.89.39-1.34c-1.01-1.57-2.55-2.77-4.38-3.34L13 5.3v1.4l3.99 2.79 1.35-.46zm-9.97 1.95L9.73 15h4.54l1.36-4.02L12 8.44zM9.45 17l-.64 1.11.69 1.49c.79.25 1.63.4 2.5.4s1.71-.15 2.5-.41l.69-1.49-.64-1.1h-5.1zm10.53-5.35-1-.73-1.38.48-1.46 4.34.79 1.37 1.14.1C19.27 15.81 20 13.99 20 12c0-.12-.01-.23-.02-.35z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" -}, "1")], 'SportsSoccerTwoTone'); \ No newline at end of file +}, "1")], 'SportsSoccerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsTennis.js b/packages/material-ui-icons/lib/SportsTennis.js index cf407f3f356ac1..2dcedaf8b327f0 100644 --- a/packages/material-ui-icons/lib/SportsTennis.js +++ b/packages/material-ui-icons/lib/SportsTennis.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" -}), 'SportsTennis'); \ No newline at end of file +}), 'SportsTennis'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsTennisOutlined.js b/packages/material-ui-icons/lib/SportsTennisOutlined.js index 6516c99291f7f1..ca0df5134607dd 100644 --- a/packages/material-ui-icons/lib/SportsTennisOutlined.js +++ b/packages/material-ui-icons/lib/SportsTennisOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" -}), 'SportsTennisOutlined'); \ No newline at end of file +}), 'SportsTennisOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsTennisRounded.js b/packages/material-ui-icons/lib/SportsTennisRounded.js index 0e8949009c802d..949687d78cf0f8 100644 --- a/packages/material-ui-icons/lib/SportsTennisRounded.js +++ b/packages/material-ui-icons/lib/SportsTennisRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-3.54 3.53c-.39.39-.39 1.02 0 1.42.39.39 1.02.39 1.42 0l3.53-3.54c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.93-2.92 3.41-7.2 1.07-9.54zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" -}), 'SportsTennisRounded'); \ No newline at end of file +}), 'SportsTennisRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsTennisSharp.js b/packages/material-ui-icons/lib/SportsTennisSharp.js index 12562ad1836e8c..4ec4df54d9acfe 100644 --- a/packages/material-ui-icons/lib/SportsTennisSharp.js +++ b/packages/material-ui-icons/lib/SportsTennisSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" -}), 'SportsTennisSharp'); \ No newline at end of file +}), 'SportsTennisSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsTennisTwoTone.js b/packages/material-ui-icons/lib/SportsTennisTwoTone.js index f45750f73c389f..199d90cf98c901 100644 --- a/packages/material-ui-icons/lib/SportsTennisTwoTone.js +++ b/packages/material-ui-icons/lib/SportsTennisTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" -}), 'SportsTennisTwoTone'); \ No newline at end of file +}), 'SportsTennisTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsTwoTone.js b/packages/material-ui-icons/lib/SportsTwoTone.js index f07778f43c72a2..61799d7fffae9b 100644 --- a/packages/material-ui-icons/lib/SportsTwoTone.js +++ b/packages/material-ui-icons/lib/SportsTwoTone.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "12", r: "2" -}, "1")], 'SportsTwoTone'); \ No newline at end of file +}, "1")], 'SportsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsVolleyball.js b/packages/material-ui-icons/lib/SportsVolleyball.js index b7b0e615d51098..552a9eb8946eb8 100644 --- a/packages/material-ui-icons/lib/SportsVolleyball.js +++ b/packages/material-ui-icons/lib/SportsVolleyball.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z" -}), 'SportsVolleyball'); \ No newline at end of file +}), 'SportsVolleyball'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsVolleyballOutlined.js b/packages/material-ui-icons/lib/SportsVolleyballOutlined.js index a77f725dbdc5d9..d53c69637e0549 100644 --- a/packages/material-ui-icons/lib/SportsVolleyballOutlined.js +++ b/packages/material-ui-icons/lib/SportsVolleyballOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 2.07c3.07.38 5.57 2.52 6.54 5.36L13 5.65V4.07zM8 5.08c1.18-.69 3.33-1.06 3-1.02v7.35l-3 1.73V5.08zM4.63 15.1c-.4-.96-.63-2-.63-3.1 0-2.02.76-3.86 2-5.27v7.58l-1.37.79zm1.01 1.73L12 13.15l3 1.73-6.98 4.03c-.93-.53-1.74-1.23-2.38-2.08zM12 20c-.54 0-1.07-.06-1.58-.16l6.58-3.8 1.36.78C16.9 18.75 14.6 20 12 20zm1-8.58V7.96l7 4.05c0 1.1-.23 2.14-.63 3.09L13 11.42z" -}), 'SportsVolleyballOutlined'); \ No newline at end of file +}), 'SportsVolleyballOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsVolleyballRounded.js b/packages/material-ui-icons/lib/SportsVolleyballRounded.js index cb796dc4da3b05..f2a542db446b73 100644 --- a/packages/material-ui-icons/lib/SportsVolleyballRounded.js +++ b/packages/material-ui-icons/lib/SportsVolleyballRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z" -}), 'SportsVolleyballRounded'); \ No newline at end of file +}), 'SportsVolleyballRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsVolleyballSharp.js b/packages/material-ui-icons/lib/SportsVolleyballSharp.js index 317f016991cab9..7db1d1e7999d40 100644 --- a/packages/material-ui-icons/lib/SportsVolleyballSharp.js +++ b/packages/material-ui-icons/lib/SportsVolleyballSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z" -}), 'SportsVolleyballSharp'); \ No newline at end of file +}), 'SportsVolleyballSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SportsVolleyballTwoTone.js b/packages/material-ui-icons/lib/SportsVolleyballTwoTone.js index 33d4b2c49a11d8..7e0afbfc7f2a74 100644 --- a/packages/material-ui-icons/lib/SportsVolleyballTwoTone.js +++ b/packages/material-ui-icons/lib/SportsVolleyballTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6.73C4.76 8.14 4 9.98 4 12c0 1.1.23 2.14.63 3.1L6 14.31V6.73zm5-2.65c-.25.06-1.98.42-3 1.01v8.07l3-1.73V4.08zm2-.01v1.58l6.54 3.79c-.97-2.85-3.47-4.99-6.54-5.37zm-1 9.08-6.36 3.67c.64.85 1.46 1.55 2.38 2.09L15 14.89l-3-1.74zm1-5.19v3.46l6.37 3.68c.4-.95.63-1.99.63-3.09l-7-4.05zm-2.58 11.88c.51.1 1.04.16 1.58.16 2.6 0 4.9-1.25 6.36-3.17L17 16.04l-6.58 3.8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 2.07c3.07.38 5.57 2.52 6.54 5.36L13 5.65V4.07zM8 5.08c1.02-.59 2.75-.95 3-1.01v7.35l-3 1.73V5.08zM4.63 15.1c-.4-.96-.63-2-.63-3.1 0-2.02.76-3.86 2-5.27v7.58l-1.37.79zm1.01 1.73L12 13.15l3 1.73-6.98 4.03c-.93-.53-1.74-1.23-2.38-2.08zM12 20c-.54 0-1.07-.06-1.58-.16l6.58-3.8 1.36.78C16.9 18.75 14.6 20 12 20zm1-8.58V7.96l7 4.05c0 1.1-.23 2.14-.63 3.09L13 11.42z" -}, "1")], 'SportsVolleyballTwoTone'); \ No newline at end of file +}, "1")], 'SportsVolleyballTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SquareFoot.js b/packages/material-ui-icons/lib/SquareFoot.js index 484f8ecbc0f5ab..40620802c54387 100644 --- a/packages/material-ui-icons/lib/SquareFoot.js +++ b/packages/material-ui-icons/lib/SquareFoot.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v14c0 1.1.9 2 2 2h14l-2.34-2.34zM7 17v-5.76L12.76 17H7z" -}), 'SquareFoot'); \ No newline at end of file +}), 'SquareFoot'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SquareFootOutlined.js b/packages/material-ui-icons/lib/SquareFootOutlined.js index b9391389453b4d..5645f7c4e07151 100644 --- a/packages/material-ui-icons/lib/SquareFootOutlined.js +++ b/packages/material-ui-icons/lib/SquareFootOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v14c0 1.1.9 2 2 2h14l-2.34-2.34zM7 17v-5.76L12.76 17H7z" -}), 'SquareFootOutlined'); \ No newline at end of file +}), 'SquareFootOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SquareFootRounded.js b/packages/material-ui-icons/lib/SquareFootRounded.js index 022f9466155156..3dcaf21fef1574 100644 --- a/packages/material-ui-icons/lib/SquareFootRounded.js +++ b/packages/material-ui-icons/lib/SquareFootRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 17.66-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.94-1.94-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.94-1.94-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71L9.7 9.7l-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.94-1.94-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.49-1.49c-.31-.31-.85-.09-.85.36V18c0 1.1.9 2 2 2h12.79c.45 0 .67-.54.35-.85l-1.48-1.49zM7 16v-4.76L12.76 17H8c-.55 0-1-.45-1-1z" -}), 'SquareFootRounded'); \ No newline at end of file +}), 'SquareFootRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SquareFootSharp.js b/packages/material-ui-icons/lib/SquareFootSharp.js index 9a4199244e3733..c329732426861c 100644 --- a/packages/material-ui-icons/lib/SquareFootSharp.js +++ b/packages/material-ui-icons/lib/SquareFootSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v16h16l-2.34-2.34zM7 17v-5.76L12.76 17H7z" -}), 'SquareFootSharp'); \ No newline at end of file +}), 'SquareFootSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SquareFootTwoTone.js b/packages/material-ui-icons/lib/SquareFootTwoTone.js index c34d2f9e595cb4..f06bc763fefff0 100644 --- a/packages/material-ui-icons/lib/SquareFootTwoTone.js +++ b/packages/material-ui-icons/lib/SquareFootTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17h5.76L7 11.24z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v14c0 1.1.9 2 2 2h14l-2.34-2.34zM7 17v-5.76L12.76 17H7z" -}, "1")], 'SquareFootTwoTone'); \ No newline at end of file +}, "1")], 'SquareFootTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedBarChart.js b/packages/material-ui-icons/lib/StackedBarChart.js index 5c388c89186c2b..287e6217c0897b 100644 --- a/packages/material-ui-icons/lib/StackedBarChart.js +++ b/packages/material-ui-icons/lib/StackedBarChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10h3v10H6zm0-5h3v4H6zm10 11h3v4h-3zm0-3h3v2h-3zm-5 0h3v7h-3zm0-4h3v3h-3z" -}), 'StackedBarChart'); \ No newline at end of file +}), 'StackedBarChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedBarChartOutlined.js b/packages/material-ui-icons/lib/StackedBarChartOutlined.js index f788194eb32844..c6b00a52f4dacc 100644 --- a/packages/material-ui-icons/lib/StackedBarChartOutlined.js +++ b/packages/material-ui-icons/lib/StackedBarChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z" -}), 'StackedBarChartOutlined'); \ No newline at end of file +}), 'StackedBarChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedBarChartRounded.js b/packages/material-ui-icons/lib/StackedBarChartRounded.js index 5939e6367d2a01..c420bf6a8e23e1 100644 --- a/packages/material-ui-icons/lib/StackedBarChartRounded.js +++ b/packages/material-ui-icons/lib/StackedBarChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10h3v8.5c0 .83-.67 1.5-1.5 1.5S6 19.33 6 18.5V10zm1.5-5C8.33 5 9 5.67 9 6.5V9H6V6.5C6 5.67 6.67 5 7.5 5zM16 16h3v2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5V16zm-5-3h3v5.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5V13zm1.5-4c.83 0 1.5.67 1.5 1.5V12h-3v-1.5c0-.83.67-1.5 1.5-1.5zm6.5 6h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5z" -}), 'StackedBarChartRounded'); \ No newline at end of file +}), 'StackedBarChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedBarChartSharp.js b/packages/material-ui-icons/lib/StackedBarChartSharp.js index 5fbc266c4f9fd8..add90bda3f26fc 100644 --- a/packages/material-ui-icons/lib/StackedBarChartSharp.js +++ b/packages/material-ui-icons/lib/StackedBarChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z" -}), 'StackedBarChartSharp'); \ No newline at end of file +}), 'StackedBarChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedBarChartTwoTone.js b/packages/material-ui-icons/lib/StackedBarChartTwoTone.js index 414bc789a1f4f7..6df6c1723a7ad4 100644 --- a/packages/material-ui-icons/lib/StackedBarChartTwoTone.js +++ b/packages/material-ui-icons/lib/StackedBarChartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z" -}), 'StackedBarChartTwoTone'); \ No newline at end of file +}), 'StackedBarChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedLineChart.js b/packages/material-ui-icons/lib/StackedLineChart.js index ae23b9d5a9e9ac..e9d103f0936448 100644 --- a/packages/material-ui-icons/lib/StackedLineChart.js +++ b/packages/material-ui-icons/lib/StackedLineChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" -}), 'StackedLineChart'); \ No newline at end of file +}), 'StackedLineChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedLineChartOutlined.js b/packages/material-ui-icons/lib/StackedLineChartOutlined.js index d2adfbdf076c66..7d6f410452d690 100644 --- a/packages/material-ui-icons/lib/StackedLineChartOutlined.js +++ b/packages/material-ui-icons/lib/StackedLineChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" -}), 'StackedLineChartOutlined'); \ No newline at end of file +}), 'StackedLineChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedLineChartRounded.js b/packages/material-ui-icons/lib/StackedLineChartRounded.js index c2f416181e22ea..9f00e35bccd11a 100644 --- a/packages/material-ui-icons/lib/StackedLineChartRounded.js +++ b/packages/material-ui-icons/lib/StackedLineChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.79 14.78-.09-.09a.9959.9959 0 0 1 0-1.41l6.09-6.1c.39-.39 1.02-.39 1.41 0l3.29 3.29 6.39-7.18c.38-.43 1.05-.44 1.45-.04.37.38.39.98.04 1.37l-7.17 8.07c-.38.43-1.04.45-1.45.04L9.5 9.48l-5.3 5.3c-.38.39-1.02.39-1.41 0zm1.41 6 5.3-5.3 3.25 3.25c.41.41 1.07.39 1.45-.04l7.17-8.07c.35-.39.33-.99-.04-1.37-.4-.4-1.07-.39-1.45.04l-6.39 7.18-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.09 6.1c-.39.39-.39 1.02 0 1.41l.09.09c.39.39 1.03.39 1.41 0z" -}), 'StackedLineChartRounded'); \ No newline at end of file +}), 'StackedLineChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedLineChartSharp.js b/packages/material-ui-icons/lib/StackedLineChartSharp.js index 676a0287ad3675..57e48a22d830a1 100644 --- a/packages/material-ui-icons/lib/StackedLineChartSharp.js +++ b/packages/material-ui-icons/lib/StackedLineChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" -}), 'StackedLineChartSharp'); \ No newline at end of file +}), 'StackedLineChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StackedLineChartTwoTone.js b/packages/material-ui-icons/lib/StackedLineChartTwoTone.js index 27522e78f65731..43952fa1e1696d 100644 --- a/packages/material-ui-icons/lib/StackedLineChartTwoTone.js +++ b/packages/material-ui-icons/lib/StackedLineChartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" -}), 'StackedLineChartTwoTone'); \ No newline at end of file +}), 'StackedLineChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Stairs.js b/packages/material-ui-icons/lib/Stairs.js index f446ecbac1d1f4..69fc1129dfe6b9 100644 --- a/packages/material-ui-icons/lib/Stairs.js +++ b/packages/material-ui-icons/lib/Stairs.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 5h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18v2z" -}), 'Stairs'); \ No newline at end of file +}), 'Stairs'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StairsOutlined.js b/packages/material-ui-icons/lib/StairsOutlined.js index ae0b471a3306bf..7eb2876f8195b0 100644 --- a/packages/material-ui-icons/lib/StairsOutlined.js +++ b/packages/material-ui-icons/lib/StairsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 3h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" -}), 'StairsOutlined'); \ No newline at end of file +}), 'StairsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StairsRounded.js b/packages/material-ui-icons/lib/StairsRounded.js index 020e95c505c4ea..90ab0b3a653cb7 100644 --- a/packages/material-ui-icons/lib/StairsRounded.js +++ b/packages/material-ui-icons/lib/StairsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 5h-1.42v3.33H13v3.33h-2.58l.03 3.34H7c-.55 0-1-.45-1-1s.45-1 1-1h1.42v-3.33H11V9.33h2.58V6H17c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'StairsRounded'); \ No newline at end of file +}), 'StairsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StairsSharp.js b/packages/material-ui-icons/lib/StairsSharp.js index f30650b1a05b19..94ac47a715d7a6 100644 --- a/packages/material-ui-icons/lib/StairsSharp.js +++ b/packages/material-ui-icons/lib/StairsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm15 5h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18v2z" -}), 'StairsSharp'); \ No newline at end of file +}), 'StairsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StairsTwoTone.js b/packages/material-ui-icons/lib/StairsTwoTone.js index dedb091391690e..bdfea7b083d098 100644 --- a/packages/material-ui-icons/lib/StairsTwoTone.js +++ b/packages/material-ui-icons/lib/StairsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m-1 1h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 3h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" -}, "1")], 'StairsTwoTone'); \ No newline at end of file +}, "1")], 'StairsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Star.js b/packages/material-ui-icons/lib/Star.js index 5b0e4183bef3e4..b81ee5d890f564 100644 --- a/packages/material-ui-icons/lib/Star.js +++ b/packages/material-ui-icons/lib/Star.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" -}), 'Star'); \ No newline at end of file +}), 'Star'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorder.js b/packages/material-ui-icons/lib/StarBorder.js index ad536c428b0de2..7b3187a7d7c87b 100644 --- a/packages/material-ui-icons/lib/StarBorder.js +++ b/packages/material-ui-icons/lib/StarBorder.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarBorder'); \ No newline at end of file +}), 'StarBorder'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderOutlined.js b/packages/material-ui-icons/lib/StarBorderOutlined.js index 63be42802c2d63..95fd1a55d56fd9 100644 --- a/packages/material-ui-icons/lib/StarBorderOutlined.js +++ b/packages/material-ui-icons/lib/StarBorderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarBorderOutlined'); \ No newline at end of file +}), 'StarBorderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderPurple500.js b/packages/material-ui-icons/lib/StarBorderPurple500.js index 679ee55ff38087..389a2d5e2d39f3 100644 --- a/packages/material-ui-icons/lib/StarBorderPurple500.js +++ b/packages/material-ui-icons/lib/StarBorderPurple500.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" -}), 'StarBorderPurple500'); \ No newline at end of file +}), 'StarBorderPurple500'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderPurple500Outlined.js b/packages/material-ui-icons/lib/StarBorderPurple500Outlined.js index 5979f0d19dc605..6155d7a4021641 100644 --- a/packages/material-ui-icons/lib/StarBorderPurple500Outlined.js +++ b/packages/material-ui-icons/lib/StarBorderPurple500Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarBorderPurple500Outlined'); \ No newline at end of file +}), 'StarBorderPurple500Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderPurple500Rounded.js b/packages/material-ui-icons/lib/StarBorderPurple500Rounded.js index 6d18740020e6cd..8dd9aec3b4353d 100644 --- a/packages/material-ui-icons/lib/StarBorderPurple500Rounded.js +++ b/packages/material-ui-icons/lib/StarBorderPurple500Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M9.58 10H5.12c-.97 0-1.37 1.25-.58 1.81l3.64 2.6-1.43 4.61c-.29.93.79 1.68 1.56 1.09l3.69-2.8 3.69 2.81c.77.59 1.85-.16 1.56-1.09l-1.43-4.61 3.64-2.6c.79-.57.39-1.81-.58-1.81h-4.46l-1.47-4.84c-.29-.95-1.63-.95-1.91 0L9.58 10z" -}), 'StarBorderPurple500Rounded'); \ No newline at end of file +}), 'StarBorderPurple500Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderPurple500Sharp.js b/packages/material-ui-icons/lib/StarBorderPurple500Sharp.js index c9d4b02d79591d..3d89a58797bad9 100644 --- a/packages/material-ui-icons/lib/StarBorderPurple500Sharp.js +++ b/packages/material-ui-icons/lib/StarBorderPurple500Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarBorderPurple500Sharp'); \ No newline at end of file +}), 'StarBorderPurple500Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderPurple500TwoTone.js b/packages/material-ui-icons/lib/StarBorderPurple500TwoTone.js index 1bcc5426a1cedc..73766b5c8cea05 100644 --- a/packages/material-ui-icons/lib/StarBorderPurple500TwoTone.js +++ b/packages/material-ui-icons/lib/StarBorderPurple500TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" -}), 'StarBorderPurple500TwoTone'); \ No newline at end of file +}), 'StarBorderPurple500TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderRounded.js b/packages/material-ui-icons/lib/StarBorderRounded.js index 65e494c5b8decc..3fe13fcb878a40 100644 --- a/packages/material-ui-icons/lib/StarBorderRounded.js +++ b/packages/material-ui-icons/lib/StarBorderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.65 9.04-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarBorderRounded'); \ No newline at end of file +}), 'StarBorderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderSharp.js b/packages/material-ui-icons/lib/StarBorderSharp.js index 8c2b2d7f1657c3..1aeb70955b5056 100644 --- a/packages/material-ui-icons/lib/StarBorderSharp.js +++ b/packages/material-ui-icons/lib/StarBorderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarBorderSharp'); \ No newline at end of file +}), 'StarBorderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarBorderTwoTone.js b/packages/material-ui-icons/lib/StarBorderTwoTone.js index 0b94bae2401a8c..f9533de2e1bc48 100644 --- a/packages/material-ui-icons/lib/StarBorderTwoTone.js +++ b/packages/material-ui-icons/lib/StarBorderTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarBorderTwoTone'); \ No newline at end of file +}), 'StarBorderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarHalf.js b/packages/material-ui-icons/lib/StarHalf.js index 686104805162d8..c26e01f117e2a9 100644 --- a/packages/material-ui-icons/lib/StarHalf.js +++ b/packages/material-ui-icons/lib/StarHalf.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarHalf'); \ No newline at end of file +}), 'StarHalf'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarHalfOutlined.js b/packages/material-ui-icons/lib/StarHalfOutlined.js index 7e4040d4f8a22a..c79f2f5f516bdc 100644 --- a/packages/material-ui-icons/lib/StarHalfOutlined.js +++ b/packages/material-ui-icons/lib/StarHalfOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarHalfOutlined'); \ No newline at end of file +}), 'StarHalfOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarHalfRounded.js b/packages/material-ui-icons/lib/StarHalfRounded.js index f5c481df2452b6..c72badc7bb7d33 100644 --- a/packages/material-ui-icons/lib/StarHalfRounded.js +++ b/packages/material-ui-icons/lib/StarHalfRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.65 9.04-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarHalfRounded'); \ No newline at end of file +}), 'StarHalfRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarHalfSharp.js b/packages/material-ui-icons/lib/StarHalfSharp.js index bc3c6d125551aa..dec2b05dcb0dc1 100644 --- a/packages/material-ui-icons/lib/StarHalfSharp.js +++ b/packages/material-ui-icons/lib/StarHalfSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarHalfSharp'); \ No newline at end of file +}), 'StarHalfSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarHalfTwoTone.js b/packages/material-ui-icons/lib/StarHalfTwoTone.js index 7bf38b94efa135..ad5562eedd99f8 100644 --- a/packages/material-ui-icons/lib/StarHalfTwoTone.js +++ b/packages/material-ui-icons/lib/StarHalfTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarHalfTwoTone'); \ No newline at end of file +}), 'StarHalfTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarOutline.js b/packages/material-ui-icons/lib/StarOutline.js index 393b51828391df..da567b41993234 100644 --- a/packages/material-ui-icons/lib/StarOutline.js +++ b/packages/material-ui-icons/lib/StarOutline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarOutline'); \ No newline at end of file +}), 'StarOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarOutlineOutlined.js b/packages/material-ui-icons/lib/StarOutlineOutlined.js index 2193c5479ab14f..fdb69b31dd17d1 100644 --- a/packages/material-ui-icons/lib/StarOutlineOutlined.js +++ b/packages/material-ui-icons/lib/StarOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarOutlineOutlined'); \ No newline at end of file +}), 'StarOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarOutlineRounded.js b/packages/material-ui-icons/lib/StarOutlineRounded.js index 2c5a837140ee8d..defb3e8b2726fe 100644 --- a/packages/material-ui-icons/lib/StarOutlineRounded.js +++ b/packages/material-ui-icons/lib/StarOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.65 9.04-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarOutlineRounded'); \ No newline at end of file +}), 'StarOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarOutlineSharp.js b/packages/material-ui-icons/lib/StarOutlineSharp.js index 90408cff9a14ea..aaaa6cc3a23493 100644 --- a/packages/material-ui-icons/lib/StarOutlineSharp.js +++ b/packages/material-ui-icons/lib/StarOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarOutlineSharp'); \ No newline at end of file +}), 'StarOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarOutlineTwoTone.js b/packages/material-ui-icons/lib/StarOutlineTwoTone.js index 20d911849db902..a18157169a6f57 100644 --- a/packages/material-ui-icons/lib/StarOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/StarOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}), 'StarOutlineTwoTone'); \ No newline at end of file +}), 'StarOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarOutlined.js b/packages/material-ui-icons/lib/StarOutlined.js index 3a786225a685b1..912bad4172a8e6 100644 --- a/packages/material-ui-icons/lib/StarOutlined.js +++ b/packages/material-ui-icons/lib/StarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" -}), 'StarOutlined'); \ No newline at end of file +}), 'StarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarPurple500.js b/packages/material-ui-icons/lib/StarPurple500.js index 472c49687381f0..4be46a90368962 100644 --- a/packages/material-ui-icons/lib/StarPurple500.js +++ b/packages/material-ui-icons/lib/StarPurple500.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" -}), 'StarPurple500'); \ No newline at end of file +}), 'StarPurple500'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarPurple500Outlined.js b/packages/material-ui-icons/lib/StarPurple500Outlined.js index 8e75ea1ae9c2ce..557263c2acc405 100644 --- a/packages/material-ui-icons/lib/StarPurple500Outlined.js +++ b/packages/material-ui-icons/lib/StarPurple500Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" -}), 'StarPurple500Outlined'); \ No newline at end of file +}), 'StarPurple500Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarPurple500Rounded.js b/packages/material-ui-icons/lib/StarPurple500Rounded.js index 6b7fcba11ea5b0..94088fffc59fb7 100644 --- a/packages/material-ui-icons/lib/StarPurple500Rounded.js +++ b/packages/material-ui-icons/lib/StarPurple500Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M9.58 10H5.12c-.97 0-1.37 1.25-.58 1.81l3.64 2.6-1.43 4.61c-.29.93.79 1.68 1.56 1.09l3.69-2.8 3.69 2.81c.77.59 1.85-.16 1.56-1.09l-1.43-4.61 3.64-2.6c.79-.57.39-1.81-.58-1.81h-4.46l-1.47-4.84c-.29-.95-1.63-.95-1.91 0L9.58 10z" -}), 'StarPurple500Rounded'); \ No newline at end of file +}), 'StarPurple500Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarPurple500Sharp.js b/packages/material-ui-icons/lib/StarPurple500Sharp.js index 2e429d99b257f3..ade4a9f8c0488f 100644 --- a/packages/material-ui-icons/lib/StarPurple500Sharp.js +++ b/packages/material-ui-icons/lib/StarPurple500Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" -}), 'StarPurple500Sharp'); \ No newline at end of file +}), 'StarPurple500Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarPurple500TwoTone.js b/packages/material-ui-icons/lib/StarPurple500TwoTone.js index ed74be822fda36..1d8a56f27ff3c7 100644 --- a/packages/material-ui-icons/lib/StarPurple500TwoTone.js +++ b/packages/material-ui-icons/lib/StarPurple500TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" -}), 'StarPurple500TwoTone'); \ No newline at end of file +}), 'StarPurple500TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarRate.js b/packages/material-ui-icons/lib/StarRate.js index 4081e28447f8f0..3f0abc31bdf4a9 100644 --- a/packages/material-ui-icons/lib/StarRate.js +++ b/packages/material-ui-icons/lib/StarRate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.43 10 12 2l-2.43 8H2l6.18 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10z" -}), 'StarRate'); \ No newline at end of file +}), 'StarRate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarRateOutlined.js b/packages/material-ui-icons/lib/StarRateOutlined.js index 8b4939167958d5..4fb2464d38ebf1 100644 --- a/packages/material-ui-icons/lib/StarRateOutlined.js +++ b/packages/material-ui-icons/lib/StarRateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" -}), 'StarRateOutlined'); \ No newline at end of file +}), 'StarRateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarRateRounded.js b/packages/material-ui-icons/lib/StarRateRounded.js index 2a1b078316903a..4cbefc366eaa69 100644 --- a/packages/material-ui-icons/lib/StarRateRounded.js +++ b/packages/material-ui-icons/lib/StarRateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.43 10-1.47-4.84c-.29-.95-1.63-.95-1.91 0L9.57 10H5.12c-.97 0-1.37 1.25-.58 1.81l3.64 2.6-1.43 4.61c-.29.93.79 1.68 1.56 1.09l3.69-2.8 3.69 2.81c.77.59 1.85-.16 1.56-1.09l-1.43-4.61 3.64-2.6c.79-.57.39-1.81-.58-1.81h-4.45z" -}), 'StarRateRounded'); \ No newline at end of file +}), 'StarRateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarRateSharp.js b/packages/material-ui-icons/lib/StarRateSharp.js index 67ec95aae57425..a56040886ab412 100644 --- a/packages/material-ui-icons/lib/StarRateSharp.js +++ b/packages/material-ui-icons/lib/StarRateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.43 10 12 2l-2.43 8H2l6.18 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10z" -}), 'StarRateSharp'); \ No newline at end of file +}), 'StarRateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarRateTwoTone.js b/packages/material-ui-icons/lib/StarRateTwoTone.js index 04e9892563d7a1..4a5dd509d617fd 100644 --- a/packages/material-ui-icons/lib/StarRateTwoTone.js +++ b/packages/material-ui-icons/lib/StarRateTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.94 12 12 8.89 11.06 12H8.24l2.27 1.62-.93 3.01L12 14.79l2.42 1.84-.93-3.01L15.76 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10h-7.58L12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.17 22l-2.35-7.59L22 10zm-7.58 6.63L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89l.94 3.11h2.82l-2.27 1.62.93 3.01z" -}, "1")], 'StarRateTwoTone'); \ No newline at end of file +}, "1")], 'StarRateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarRounded.js b/packages/material-ui-icons/lib/StarRounded.js index 3e79a6d6d3214f..de6ee831dff263 100644 --- a/packages/material-ui-icons/lib/StarRounded.js +++ b/packages/material-ui-icons/lib/StarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 17.27 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.72 3.67-3.18c.67-.58.31-1.68-.57-1.75l-4.83-.41-1.89-4.46c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5z" -}), 'StarRounded'); \ No newline at end of file +}), 'StarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarSharp.js b/packages/material-ui-icons/lib/StarSharp.js index 7e9e589c7076c8..3b9948184ffa00 100644 --- a/packages/material-ui-icons/lib/StarSharp.js +++ b/packages/material-ui-icons/lib/StarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" -}), 'StarSharp'); \ No newline at end of file +}), 'StarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarTwoTone.js b/packages/material-ui-icons/lib/StarTwoTone.js index a526882109dc7f..6db5d51500afb2 100644 --- a/packages/material-ui-icons/lib/StarTwoTone.js +++ b/packages/material-ui-icons/lib/StarTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 15.4-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" -}, "1")], 'StarTwoTone'); \ No newline at end of file +}, "1")], 'StarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Stars.js b/packages/material-ui-icons/lib/Stars.js index dbadf9b9d5bb99..0b874f2fa06ce0 100644 --- a/packages/material-ui-icons/lib/Stars.js +++ b/packages/material-ui-icons/lib/Stars.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z" -}), 'Stars'); \ No newline at end of file +}), 'Stars'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarsOutlined.js b/packages/material-ui-icons/lib/StarsOutlined.js index 6684675565bb31..e9f7f464940567 100644 --- a/packages/material-ui-icons/lib/StarsOutlined.js +++ b/packages/material-ui-icons/lib/StarsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zm-5.07 6.26L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06l1.09 2.56 2.78.24-2.11 1.83.64 2.73zm-2.86-11.4-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.13 16.7 4 14.48 4 12zm3.84 6.82L12 16.31l4.16 2.5c-1.22.75-2.64 1.19-4.17 1.19-1.52 0-2.94-.44-4.15-1.18zm9.25-.65-1.11-4.75 3.79-3.28c.14.59.23 1.22.23 1.86 0 2.48-1.14 4.7-2.91 6.17z" -}), 'StarsOutlined'); \ No newline at end of file +}), 'StarsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarsRounded.js b/packages/material-ui-icons/lib/StarsRounded.js index 2b4c1c5f819719..f6388411aec430 100644 --- a/packages/material-ui-icons/lib/StarsRounded.js +++ b/packages/material-ui-icons/lib/StarsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.23 15.39L12 15.45l-3.22 1.94c-.38.23-.85-.11-.75-.54l.85-3.66-2.83-2.45c-.33-.29-.15-.84.29-.88l3.74-.32 1.46-3.45c.17-.41.75-.41.92 0l1.46 3.44 3.74.32c.44.04.62.59.28.88l-2.83 2.45.85 3.67c.1.43-.36.77-.74.54z" -}), 'StarsRounded'); \ No newline at end of file +}), 'StarsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarsSharp.js b/packages/material-ui-icons/lib/StarsSharp.js index ae744c3ba12716..659a9e01cd9c0d 100644 --- a/packages/material-ui-icons/lib/StarsSharp.js +++ b/packages/material-ui-icons/lib/StarsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z" -}), 'StarsSharp'); \ No newline at end of file +}), 'StarsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StarsTwoTone.js b/packages/material-ui-icons/lib/StarsTwoTone.js index d17f98d14365f0..058f79885bc728 100644 --- a/packages/material-ui-icons/lib/StarsTwoTone.js +++ b/packages/material-ui-icons/lib/StarsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.47 9.16c-1.1-2.87-3.8-4.95-7.01-5.14l2 4.71 5.01.43zm-7.93-5.14c-3.22.18-5.92 2.27-7.02 5.15l5.02-.43 2-4.72zm-7.31 6.12C4.08 10.74 4 11.36 4 12c0 2.48 1.14 4.7 2.91 6.17l1.11-4.75-3.79-3.28zm15.54-.01-3.79 3.28 1.1 4.76C18.86 16.7 20 14.48 20 12c0-.64-.09-1.27-.23-1.87zM7.84 18.82c1.21.74 2.63 1.18 4.15 1.18 1.53 0 2.95-.44 4.17-1.18L12 16.31l-4.16 2.51z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zM12 8.06l1.09 2.56 2.78.24-2.11 1.83.63 2.73L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06zm-.46-4.04-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.14 16.7 4 14.48 4 12zm7.99 8c-1.52 0-2.94-.44-4.15-1.18L12 16.31l4.16 2.51c-1.22.74-2.64 1.18-4.17 1.18zm5.1-1.83-1.1-4.76 3.79-3.28c.13.6.22 1.23.22 1.87 0 2.48-1.14 4.7-2.91 6.17z" -}, "1")], 'StarsTwoTone'); \ No newline at end of file +}, "1")], 'StarsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentLandscape.js b/packages/material-ui-icons/lib/StayCurrentLandscape.js index 830b30c4bc6a38..b55e48bea2948b 100644 --- a/packages/material-ui-icons/lib/StayCurrentLandscape.js +++ b/packages/material-ui-icons/lib/StayCurrentLandscape.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" -}), 'StayCurrentLandscape'); \ No newline at end of file +}), 'StayCurrentLandscape'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentLandscapeOutlined.js b/packages/material-ui-icons/lib/StayCurrentLandscapeOutlined.js index 417bde3ce488ab..12800310402dc3 100644 --- a/packages/material-ui-icons/lib/StayCurrentLandscapeOutlined.js +++ b/packages/material-ui-icons/lib/StayCurrentLandscapeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" -}), 'StayCurrentLandscapeOutlined'); \ No newline at end of file +}), 'StayCurrentLandscapeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentLandscapeRounded.js b/packages/material-ui-icons/lib/StayCurrentLandscapeRounded.js index 0383a056bcd923..d2038afeb1175e 100644 --- a/packages/material-ui-icons/lib/StayCurrentLandscapeRounded.js +++ b/packages/material-ui-icons/lib/StayCurrentLandscapeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" -}), 'StayCurrentLandscapeRounded'); \ No newline at end of file +}), 'StayCurrentLandscapeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentLandscapeSharp.js b/packages/material-ui-icons/lib/StayCurrentLandscapeSharp.js index ff88e2dc74e78c..e7dc2ef446d32c 100644 --- a/packages/material-ui-icons/lib/StayCurrentLandscapeSharp.js +++ b/packages/material-ui-icons/lib/StayCurrentLandscapeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 19h22V5H1v14zM19 7v10H5V7h14z" -}), 'StayCurrentLandscapeSharp'); \ No newline at end of file +}), 'StayCurrentLandscapeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentLandscapeTwoTone.js b/packages/material-ui-icons/lib/StayCurrentLandscapeTwoTone.js index 4e97f1c28cc398..9d435e43b84552 100644 --- a/packages/material-ui-icons/lib/StayCurrentLandscapeTwoTone.js +++ b/packages/material-ui-icons/lib/StayCurrentLandscapeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7h14v10H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" -}, "1")], 'StayCurrentLandscapeTwoTone'); \ No newline at end of file +}, "1")], 'StayCurrentLandscapeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentPortrait.js b/packages/material-ui-icons/lib/StayCurrentPortrait.js index d9547a8ab0b507..6e0a50e0dadae4 100644 --- a/packages/material-ui-icons/lib/StayCurrentPortrait.js +++ b/packages/material-ui-icons/lib/StayCurrentPortrait.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'StayCurrentPortrait'); \ No newline at end of file +}), 'StayCurrentPortrait'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentPortraitOutlined.js b/packages/material-ui-icons/lib/StayCurrentPortraitOutlined.js index 170d85abdc89b6..92f9943644b936 100644 --- a/packages/material-ui-icons/lib/StayCurrentPortraitOutlined.js +++ b/packages/material-ui-icons/lib/StayCurrentPortraitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'StayCurrentPortraitOutlined'); \ No newline at end of file +}), 'StayCurrentPortraitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentPortraitRounded.js b/packages/material-ui-icons/lib/StayCurrentPortraitRounded.js index 4592d0dd5cfe11..93256db42ed0ed 100644 --- a/packages/material-ui-icons/lib/StayCurrentPortraitRounded.js +++ b/packages/material-ui-icons/lib/StayCurrentPortraitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'StayCurrentPortraitRounded'); \ No newline at end of file +}), 'StayCurrentPortraitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentPortraitSharp.js b/packages/material-ui-icons/lib/StayCurrentPortraitSharp.js index e37479a3a0c117..e1d64548148173 100644 --- a/packages/material-ui-icons/lib/StayCurrentPortraitSharp.js +++ b/packages/material-ui-icons/lib/StayCurrentPortraitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 1.01 5.01 1v22H19V1.01zM17 19H7V5h10v14z" -}), 'StayCurrentPortraitSharp'); \ No newline at end of file +}), 'StayCurrentPortraitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayCurrentPortraitTwoTone.js b/packages/material-ui-icons/lib/StayCurrentPortraitTwoTone.js index 00fbd973d53760..23a3e9d2b81d7b 100644 --- a/packages/material-ui-icons/lib/StayCurrentPortraitTwoTone.js +++ b/packages/material-ui-icons/lib/StayCurrentPortraitTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v14H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}, "1")], 'StayCurrentPortraitTwoTone'); \ No newline at end of file +}, "1")], 'StayCurrentPortraitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryLandscape.js b/packages/material-ui-icons/lib/StayPrimaryLandscape.js index 13d99e5163b770..0a8e44a675818e 100644 --- a/packages/material-ui-icons/lib/StayPrimaryLandscape.js +++ b/packages/material-ui-icons/lib/StayPrimaryLandscape.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" -}), 'StayPrimaryLandscape'); \ No newline at end of file +}), 'StayPrimaryLandscape'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryLandscapeOutlined.js b/packages/material-ui-icons/lib/StayPrimaryLandscapeOutlined.js index b7bfc507c8eaac..8b4ce9a1f372ed 100644 --- a/packages/material-ui-icons/lib/StayPrimaryLandscapeOutlined.js +++ b/packages/material-ui-icons/lib/StayPrimaryLandscapeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" -}), 'StayPrimaryLandscapeOutlined'); \ No newline at end of file +}), 'StayPrimaryLandscapeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryLandscapeRounded.js b/packages/material-ui-icons/lib/StayPrimaryLandscapeRounded.js index 5007e926797603..7d57c49b41c194 100644 --- a/packages/material-ui-icons/lib/StayPrimaryLandscapeRounded.js +++ b/packages/material-ui-icons/lib/StayPrimaryLandscapeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" -}), 'StayPrimaryLandscapeRounded'); \ No newline at end of file +}), 'StayPrimaryLandscapeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryLandscapeSharp.js b/packages/material-ui-icons/lib/StayPrimaryLandscapeSharp.js index b847f2ba38cb07..f1dbf6990e48cf 100644 --- a/packages/material-ui-icons/lib/StayPrimaryLandscapeSharp.js +++ b/packages/material-ui-icons/lib/StayPrimaryLandscapeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 19h22V5H1v14zM19 7v10H5V7h14z" -}), 'StayPrimaryLandscapeSharp'); \ No newline at end of file +}), 'StayPrimaryLandscapeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryLandscapeTwoTone.js b/packages/material-ui-icons/lib/StayPrimaryLandscapeTwoTone.js index 149cdfa867c282..804c86df9604ce 100644 --- a/packages/material-ui-icons/lib/StayPrimaryLandscapeTwoTone.js +++ b/packages/material-ui-icons/lib/StayPrimaryLandscapeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7h14v10H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" -}, "1")], 'StayPrimaryLandscapeTwoTone'); \ No newline at end of file +}, "1")], 'StayPrimaryLandscapeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryPortrait.js b/packages/material-ui-icons/lib/StayPrimaryPortrait.js index 6c5b0a0fd0dd21..7a3f0ffba6da89 100644 --- a/packages/material-ui-icons/lib/StayPrimaryPortrait.js +++ b/packages/material-ui-icons/lib/StayPrimaryPortrait.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'StayPrimaryPortrait'); \ No newline at end of file +}), 'StayPrimaryPortrait'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryPortraitOutlined.js b/packages/material-ui-icons/lib/StayPrimaryPortraitOutlined.js index 08bb536c5aee8e..4cfa55fce035d8 100644 --- a/packages/material-ui-icons/lib/StayPrimaryPortraitOutlined.js +++ b/packages/material-ui-icons/lib/StayPrimaryPortraitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'StayPrimaryPortraitOutlined'); \ No newline at end of file +}), 'StayPrimaryPortraitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryPortraitRounded.js b/packages/material-ui-icons/lib/StayPrimaryPortraitRounded.js index a414f840091cf0..b1977e2f080680 100644 --- a/packages/material-ui-icons/lib/StayPrimaryPortraitRounded.js +++ b/packages/material-ui-icons/lib/StayPrimaryPortraitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}), 'StayPrimaryPortraitRounded'); \ No newline at end of file +}), 'StayPrimaryPortraitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryPortraitSharp.js b/packages/material-ui-icons/lib/StayPrimaryPortraitSharp.js index 8d433499b4d8c4..cfcd30a1da3a9e 100644 --- a/packages/material-ui-icons/lib/StayPrimaryPortraitSharp.js +++ b/packages/material-ui-icons/lib/StayPrimaryPortraitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14z" -}), 'StayPrimaryPortraitSharp'); \ No newline at end of file +}), 'StayPrimaryPortraitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StayPrimaryPortraitTwoTone.js b/packages/material-ui-icons/lib/StayPrimaryPortraitTwoTone.js index 38e61f8eb2e343..e792adf933d377 100644 --- a/packages/material-ui-icons/lib/StayPrimaryPortraitTwoTone.js +++ b/packages/material-ui-icons/lib/StayPrimaryPortraitTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5h10v14H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}, "1")], 'StayPrimaryPortraitTwoTone'); \ No newline at end of file +}, "1")], 'StayPrimaryPortraitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StickyNote2.js b/packages/material-ui-icons/lib/StickyNote2.js index 1684939ef14026..b55d4a33bda168 100644 --- a/packages/material-ui-icons/lib/StickyNote2.js +++ b/packages/material-ui-icons/lib/StickyNote2.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H4.99C3.89 3 3 3.9 3 5l.01 14c0 1.1.89 2 1.99 2h10l6-6V5c0-1.1-.9-2-2-2zM7 8h10v2H7V8zm5 6H7v-2h5v2zm2 5.5V14h5.5L14 19.5z" -}), 'StickyNote2'); \ No newline at end of file +}), 'StickyNote2'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StickyNote2Outlined.js b/packages/material-ui-icons/lib/StickyNote2Outlined.js index a707cc3a8cb600..2f42df113b843e 100644 --- a/packages/material-ui-icons/lib/StickyNote2Outlined.js +++ b/packages/material-ui-icons/lib/StickyNote2Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v9h-5v5H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10l6-6V5c0-1.1-.9-2-2-2zm-7 11H7v-2h5v2zm5-4H7V8h10v2z" -}), 'StickyNote2Outlined'); \ No newline at end of file +}), 'StickyNote2Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StickyNote2Rounded.js b/packages/material-ui-icons/lib/StickyNote2Rounded.js index d48b44fc7663bb..106a18bf261bae 100644 --- a/packages/material-ui-icons/lib/StickyNote2Rounded.js +++ b/packages/material-ui-icons/lib/StickyNote2Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H4.99C3.89 3 3 3.9 3 5l.01 14c0 1.1.89 2 1.99 2h10l6-6V5c0-1.1-.9-2-2-2zM8 8h8c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm3 6H8c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm3 5.5V15c0-.55.45-1 1-1h4.5L14 19.5z" -}), 'StickyNote2Rounded'); \ No newline at end of file +}), 'StickyNote2Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StickyNote2Sharp.js b/packages/material-ui-icons/lib/StickyNote2Sharp.js index b5dd1b4914fd9f..06daa24ec756c2 100644 --- a/packages/material-ui-icons/lib/StickyNote2Sharp.js +++ b/packages/material-ui-icons/lib/StickyNote2Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.99 3 3 21h12l6-6V3H2.99zM7 8h10v2H7V8zm5 6H7v-2h5v2zm2 5.5V14h5.5L14 19.5z" -}), 'StickyNote2Sharp'); \ No newline at end of file +}), 'StickyNote2Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StickyNote2TwoTone.js b/packages/material-ui-icons/lib/StickyNote2TwoTone.js index e5dd2ac0537a2a..53559b2f558e41 100644 --- a/packages/material-ui-icons/lib/StickyNote2TwoTone.js +++ b/packages/material-ui-icons/lib/StickyNote2TwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5v14h9v-5h5V5H5zm7 9H7v-2h5v2zm5-4H7V8h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v9h-5v5H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10l6-6V5c0-1.1-.9-2-2-2zm-7 11H7v-2h5v2zm5-4H7V8h10v2z" -}, "1")], 'StickyNote2TwoTone'); \ No newline at end of file +}, "1")], 'StickyNote2TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Stop.js b/packages/material-ui-icons/lib/Stop.js index beb4209755e477..c0084e21bb2178 100644 --- a/packages/material-ui-icons/lib/Stop.js +++ b/packages/material-ui-icons/lib/Stop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h12v12H6z" -}), 'Stop'); \ No newline at end of file +}), 'Stop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopCircle.js b/packages/material-ui-icons/lib/StopCircle.js index 9f4ef2af72f2f7..4f00209a27061c 100644 --- a/packages/material-ui-icons/lib/StopCircle.js +++ b/packages/material-ui-icons/lib/StopCircle.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M8 16h8V8H8v8zm4-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'StopCircle'); \ No newline at end of file +}), 'StopCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopCircleOutlined.js b/packages/material-ui-icons/lib/StopCircleOutlined.js index a3d51b0d324227..2aaf8564a1d57e 100644 --- a/packages/material-ui-icons/lib/StopCircleOutlined.js +++ b/packages/material-ui-icons/lib/StopCircleOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8h8v8H8z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "1")], 'StopCircleOutlined'); \ No newline at end of file +}, "1")], 'StopCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopCircleRounded.js b/packages/material-ui-icons/lib/StopCircleRounded.js index 6eac69e9ea5086..eace198b59c857 100644 --- a/packages/material-ui-icons/lib/StopCircleRounded.js +++ b/packages/material-ui-icons/lib/StopCircleRounded.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M9 16h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'StopCircleRounded'); \ No newline at end of file +}), 'StopCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopCircleSharp.js b/packages/material-ui-icons/lib/StopCircleSharp.js index ee6c8428f751de..7e59515b5c2cbb 100644 --- a/packages/material-ui-icons/lib/StopCircleSharp.js +++ b/packages/material-ui-icons/lib/StopCircleSharp.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M8 16h8V8H8v8zm4-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" -}), 'StopCircleSharp'); \ No newline at end of file +}), 'StopCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopCircleTwoTone.js b/packages/material-ui-icons/lib/StopCircleTwoTone.js index eca3dedb74ed28..aa8d9c42c79749 100644 --- a/packages/material-ui-icons/lib/StopCircleTwoTone.js +++ b/packages/material-ui-icons/lib/StopCircleTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4 12H8V8h8v8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8h8v8H8z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" -}, "2")], 'StopCircleTwoTone'); \ No newline at end of file +}, "2")], 'StopCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopOutlined.js b/packages/material-ui-icons/lib/StopOutlined.js index c0643515ffe8b3..c56f9f642ff46f 100644 --- a/packages/material-ui-icons/lib/StopOutlined.js +++ b/packages/material-ui-icons/lib/StopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 8v8H8V8h8m2-2H6v12h12V6z" -}), 'StopOutlined'); \ No newline at end of file +}), 'StopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopRounded.js b/packages/material-ui-icons/lib/StopRounded.js index 8742feef6bad35..1b516705dc78f6 100644 --- a/packages/material-ui-icons/lib/StopRounded.js +++ b/packages/material-ui-icons/lib/StopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 6h8c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2z" -}), 'StopRounded'); \ No newline at end of file +}), 'StopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopScreenShare.js b/packages/material-ui-icons/lib/StopScreenShare.js index 9d3ee61068d778..7c8fd737e6d36d 100644 --- a/packages/material-ui-icons/lib/StopScreenShare.js +++ b/packages/material-ui-icons/lib/StopScreenShare.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.22 18.02 2 2H24v-2h-2.78zm.77-2 .01-10c0-1.11-.9-2-2-2H7.22l5.23 5.23c.18-.04.36-.07.55-.1V7.02l4 3.73-1.58 1.47 5.54 5.54c.61-.33 1.03-.99 1.03-1.74zM2.39 1.73 1.11 3l1.54 1.54c-.4.36-.65.89-.65 1.48v10c0 1.1.89 2 2 2H0v2h18.13l2.71 2.71 1.27-1.27L2.39 1.73zM7 15.02c.31-1.48.92-2.95 2.07-4.06l1.59 1.59c-1.54.38-2.7 1.18-3.66 2.47z" -}), 'StopScreenShare'); \ No newline at end of file +}), 'StopScreenShare'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopScreenShareOutlined.js b/packages/material-ui-icons/lib/StopScreenShareOutlined.js index 4e251b3c8f77f6..3f2ff04f514ebf 100644 --- a/packages/material-ui-icons/lib/StopScreenShareOutlined.js +++ b/packages/material-ui-icons/lib/StopScreenShareOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.79 18 2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13 2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z" -}), 'StopScreenShareOutlined'); \ No newline at end of file +}), 'StopScreenShareOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopScreenShareRounded.js b/packages/material-ui-icons/lib/StopScreenShareRounded.js index 05179f3bd3289e..2c4866dfc71325 100644 --- a/packages/material-ui-icons/lib/StopScreenShareRounded.js +++ b/packages/material-ui-icons/lib/StopScreenShareRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 18h-1.2l1.79 1.79c.24-.18.41-.46.41-.79 0-.55-.45-1-1-1zM3.23 2.28c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41l.84.86s-.66.57-.66 1.47C2 6.92 2 16 2 16l.01.01c0 1.09.88 1.98 1.97 1.99H1c-.55 0-1 .45-1 1s.45 1 1 1h17.13l2 2c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L3.23 2.28zM7 15c.31-1.48.94-2.93 2.08-4.05l1.59 1.59C9.13 12.92 7.96 13.71 7 15zm6-5.87v-.98c0-.44.52-.66.84-.37L15 8.87l1.61 1.5c.21.2.21.53 0 .73l-.89.83 5.58 5.58c.43-.37.7-.9.7-1.51V6c0-1.09-.89-1.98-1.98-1.98H7.8l5.14 5.13c.02-.01.04-.02.06-.02z" -}), 'StopScreenShareRounded'); \ No newline at end of file +}), 'StopScreenShareRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopScreenShareSharp.js b/packages/material-ui-icons/lib/StopScreenShareSharp.js index b61907bfe680f8..def20443c6c56d 100644 --- a/packages/material-ui-icons/lib/StopScreenShareSharp.js +++ b/packages/material-ui-icons/lib/StopScreenShareSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.79 18 2 2H24v-2zM13 9.13V7l4 3.74-1.28 1.19 5.18 5.18L22 16V4.02H7.8l5.13 5.13c.03-.01.05-.02.07-.02zM1.11 2.98l.89.9v12.14l2 1.99L0 18v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zm7.97 7.97 1.59 1.59C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05z" -}), 'StopScreenShareSharp'); \ No newline at end of file +}), 'StopScreenShareSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopScreenShareTwoTone.js b/packages/material-ui-icons/lib/StopScreenShareTwoTone.js index b7b858982f5f28..7b20c6c0b7ca83 100644 --- a/packages/material-ui-icons/lib/StopScreenShareTwoTone.js +++ b/packages/material-ui-icons/lib/StopScreenShareTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.67 12.54C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05L4.13 6.02H4v10.01h10.14l-3.47-3.49z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.79 18 2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13 2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6.02H9.8l3.13 3.13c.02 0 .04-.01.07-.02V7l4 3.73-1.28 1.2L20 16.21V6.02z", opacity: ".3" -}, "2")], 'StopScreenShareTwoTone'); \ No newline at end of file +}, "2")], 'StopScreenShareTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopSharp.js b/packages/material-ui-icons/lib/StopSharp.js index 85b8c35d11879d..cb3dded97d7c20 100644 --- a/packages/material-ui-icons/lib/StopSharp.js +++ b/packages/material-ui-icons/lib/StopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 6h12v12H6V6z" -}), 'StopSharp'); \ No newline at end of file +}), 'StopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StopTwoTone.js b/packages/material-ui-icons/lib/StopTwoTone.js index 830bc684ede0f4..87a2c0b6f1baf6 100644 --- a/packages/material-ui-icons/lib/StopTwoTone.js +++ b/packages/material-ui-icons/lib/StopTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 8h8v8H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 18h12V6H6v12zM8 8h8v8H8V8z" -}, "1")], 'StopTwoTone'); \ No newline at end of file +}, "1")], 'StopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Storage.js b/packages/material-ui-icons/lib/Storage.js index 5ba6c1332413d6..e91730651b6e64 100644 --- a/packages/material-ui-icons/lib/Storage.js +++ b/packages/material-ui-icons/lib/Storage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" -}), 'Storage'); \ No newline at end of file +}), 'Storage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorageOutlined.js b/packages/material-ui-icons/lib/StorageOutlined.js index 898e39296c270a..baecef20923ecc 100644 --- a/packages/material-ui-icons/lib/StorageOutlined.js +++ b/packages/material-ui-icons/lib/StorageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" -}), 'StorageOutlined'); \ No newline at end of file +}), 'StorageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorageRounded.js b/packages/material-ui-icons/lib/StorageRounded.js index 95e7baa9bd0b09..23cf9dd2ae4484 100644 --- a/packages/material-ui-icons/lib/StorageRounded.js +++ b/packages/material-ui-icons/lib/StorageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm0-3h2v2H4v-2zM2 6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2zm4 1H4V5h2v2zm-2 7h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm0-3h2v2H4v-2z" -}), 'StorageRounded'); \ No newline at end of file +}), 'StorageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorageSharp.js b/packages/material-ui-icons/lib/StorageSharp.js index 54bbb53becf6c0..b3575cd506b761 100644 --- a/packages/material-ui-icons/lib/StorageSharp.js +++ b/packages/material-ui-icons/lib/StorageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" -}), 'StorageSharp'); \ No newline at end of file +}), 'StorageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorageTwoTone.js b/packages/material-ui-icons/lib/StorageTwoTone.js index 783c902cb5fb59..92a05429720268 100644 --- a/packages/material-ui-icons/lib/StorageTwoTone.js +++ b/packages/material-ui-icons/lib/StorageTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" -}), 'StorageTwoTone'); \ No newline at end of file +}), 'StorageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Store.js b/packages/material-ui-icons/lib/Store.js index fa4f208fd10ef5..a4c2028e095b65 100644 --- a/packages/material-ui-icons/lib/Store.js +++ b/packages/material-ui-icons/lib/Store.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" -}), 'Store'); \ No newline at end of file +}), 'Store'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreMallDirectory.js b/packages/material-ui-icons/lib/StoreMallDirectory.js index ab0e3215eff750..09a8bb8ec0436d 100644 --- a/packages/material-ui-icons/lib/StoreMallDirectory.js +++ b/packages/material-ui-icons/lib/StoreMallDirectory.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" -}), 'StoreMallDirectory'); \ No newline at end of file +}), 'StoreMallDirectory'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreMallDirectoryOutlined.js b/packages/material-ui-icons/lib/StoreMallDirectoryOutlined.js index c1f0ad302b35d3..ed93e90e9db1ee 100644 --- a/packages/material-ui-icons/lib/StoreMallDirectoryOutlined.js +++ b/packages/material-ui-icons/lib/StoreMallDirectoryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.36 9 .6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z" -}), 'StoreMallDirectoryOutlined'); \ No newline at end of file +}), 'StoreMallDirectoryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreMallDirectoryRounded.js b/packages/material-ui-icons/lib/StoreMallDirectoryRounded.js index 2263044abe8384..86f729165ae7c5 100644 --- a/packages/material-ui-icons/lib/StoreMallDirectoryRounded.js +++ b/packages/material-ui-icons/lib/StoreMallDirectoryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.16 7.8c-.09-.46-.5-.8-.98-.8H4.82c-.48 0-.89.34-.98.8L3 12v1c0 .55.45 1 1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1s1-.45 1-1v-5c.55 0 1-.45 1-1v-1l-.84-4.2zM12 18H6v-4h6v4zM5 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z" -}), 'StoreMallDirectoryRounded'); \ No newline at end of file +}), 'StoreMallDirectoryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreMallDirectorySharp.js b/packages/material-ui-icons/lib/StoreMallDirectorySharp.js index 5ef7b8eb30583f..7fcff19ebd424e 100644 --- a/packages/material-ui-icons/lib/StoreMallDirectorySharp.js +++ b/packages/material-ui-icons/lib/StoreMallDirectorySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" -}), 'StoreMallDirectorySharp'); \ No newline at end of file +}), 'StoreMallDirectorySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreMallDirectoryTwoTone.js b/packages/material-ui-icons/lib/StoreMallDirectoryTwoTone.js index 26e7f0a8b0f69d..7d041739cc2b19 100644 --- a/packages/material-ui-icons/lib/StoreMallDirectoryTwoTone.js +++ b/packages/material-ui-icons/lib/StoreMallDirectoryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.64 9-.6 3h13.92l-.6-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 7-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5H4zm8 11H6v-4h6v4zm-6.96-6 .6-3h12.72l.6 3H5.04zM4 4h16v2H4z" -}, "1")], 'StoreMallDirectoryTwoTone'); \ No newline at end of file +}, "1")], 'StoreMallDirectoryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreOutlined.js b/packages/material-ui-icons/lib/StoreOutlined.js index 5fe68c578e1838..c820acb6ed9f57 100644 --- a/packages/material-ui-icons/lib/StoreOutlined.js +++ b/packages/material-ui-icons/lib/StoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.36 9 .6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z" -}), 'StoreOutlined'); \ No newline at end of file +}), 'StoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreRounded.js b/packages/material-ui-icons/lib/StoreRounded.js index abb13f8af21846..ec2ad0dcd3b300 100644 --- a/packages/material-ui-icons/lib/StoreRounded.js +++ b/packages/material-ui-icons/lib/StoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm15.16 1.8c-.09-.46-.5-.8-.98-.8H4.82c-.48 0-.89.34-.98.8l-1 5c-.12.62.35 1.2.98 1.2H4v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1s1-.45 1-1v-5h.18c.63 0 1.1-.58.98-1.2l-1-5zM12 18H6v-4h6v4z" -}), 'StoreRounded'); \ No newline at end of file +}), 'StoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreSharp.js b/packages/material-ui-icons/lib/StoreSharp.js index 1f37de945a85d8..a4c2e3ca83b57e 100644 --- a/packages/material-ui-icons/lib/StoreSharp.js +++ b/packages/material-ui-icons/lib/StoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" -}), 'StoreSharp'); \ No newline at end of file +}), 'StoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StoreTwoTone.js b/packages/material-ui-icons/lib/StoreTwoTone.js index 90cb012165a89a..5619f2ae9c1938 100644 --- a/packages/material-ui-icons/lib/StoreTwoTone.js +++ b/packages/material-ui-icons/lib/StoreTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.64 9-.6 3h13.92l-.6-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h16v2H4zm16 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm-8 11H6v-4h6v4zm-6.96-6 .6-3h12.72l.6 3H5.04z" -}, "1")], 'StoreTwoTone'); \ No newline at end of file +}, "1")], 'StoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Storefront.js b/packages/material-ui-icons/lib/Storefront.js index e39ce690435e05..754780d1a48479 100644 --- a/packages/material-ui-icons/lib/Storefront.js +++ b/packages/material-ui-icons/lib/Storefront.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 8.89-1.05-4.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zm-2.99-3.9 1.05 4.37c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01zM13 5h1.96l.54 4.52c.05.39-.07.78-.33 1.07-.22.26-.54.41-.95.41-.67 0-1.22-.59-1.22-1.31V5zM8.49 9.52 9.04 5H11v4.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07zm-4.45-.16L5.05 5h1.97l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.27-.32-.36-.75-.26-1.17zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z" -}), 'Storefront'); \ No newline at end of file +}), 'Storefront'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorefrontOutlined.js b/packages/material-ui-icons/lib/StorefrontOutlined.js index 2bd33fe33a9fcb..33afaa739f44c5 100644 --- a/packages/material-ui-icons/lib/StorefrontOutlined.js +++ b/packages/material-ui-icons/lib/StorefrontOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 8.89-1.05-4.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zm-2.99-3.9 1.05 4.37c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01zM13 5h1.96l.54 4.52c.05.39-.07.78-.33 1.07-.22.26-.54.41-.95.41-.67 0-1.22-.59-1.22-1.31V5zM8.49 9.52 9.04 5H11v4.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07zm-4.45-.16L5.05 5h1.97l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.27-.32-.36-.75-.26-1.17zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z" -}), 'StorefrontOutlined'); \ No newline at end of file +}), 'StorefrontOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorefrontRounded.js b/packages/material-ui-icons/lib/StorefrontRounded.js index f4e58299536f2b..8f870fe36a35a2 100644 --- a/packages/material-ui-icons/lib/StorefrontRounded.js +++ b/packages/material-ui-icons/lib/StorefrontRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 7.89-1.05-3.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 7.89c-.46 1.97.85 3.11.9 3.17V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7.94c1.12-1.12 1.09-2.41.9-3.17zM13 5h1.96l.54 3.52c.09.71-.39 1.48-1.28 1.48-.67 0-1.22-.59-1.22-1.31V5zM6.44 8.86c-.08.65-.6 1.14-1.21 1.14-.93 0-1.35-.97-1.19-1.64L5.05 5h1.97l-.58 3.86zM11 8.69c0 .72-.55 1.31-1.29 1.31-.75 0-1.3-.7-1.22-1.48L9.04 5H11v3.69zM18.77 10c-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01 1.05 3.37c.16.67-.25 1.64-1.19 1.64z" -}), 'StorefrontRounded'); \ No newline at end of file +}), 'StorefrontRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorefrontSharp.js b/packages/material-ui-icons/lib/StorefrontSharp.js index 62ffc9f5d00bf9..73f938b8beff27 100644 --- a/packages/material-ui-icons/lib/StorefrontSharp.js +++ b/packages/material-ui-icons/lib/StorefrontSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.9 8.89 20.49 3H3.51L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V21h18v-8.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zM7.02 5l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.26-.33-.35-.76-.25-1.17L5.09 5h1.93zm11.89 0 1.05 4.36c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5h1.93zm-3.4 4.52c.05.39-.07.78-.33 1.07-.23.26-.55.41-.96.41-.67 0-1.22-.59-1.22-1.31V5h1.96l.55 4.52zM11 9.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07L9.04 5H11v4.69zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z" -}), 'StorefrontSharp'); \ No newline at end of file +}), 'StorefrontSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StorefrontTwoTone.js b/packages/material-ui-icons/lib/StorefrontTwoTone.js index d6a6c4deea84f7..5cd5dc2f3d8267 100644 --- a/packages/material-ui-icons/lib/StorefrontTwoTone.js +++ b/packages/material-ui-icons/lib/StorefrontTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.44 9.86 7.02 5H5.05L4.04 9.36c-.1.42-.01.84.25 1.17.14.18.44.47.94.47.61 0 1.13-.49 1.21-1.14zM9.71 11c.74 0 1.29-.59 1.29-1.31V5H9.04l-.55 4.52c-.05.39.07.78.33 1.07.23.26.55.41.89.41zm4.51 0c.41 0 .72-.15.96-.41.25-.29.37-.68.33-1.07L14.96 5H13v4.69c0 .72.55 1.31 1.22 1.31zm4.69-6.01L16.98 5l.58 4.86c.08.65.6 1.14 1.21 1.14.49 0 .8-.29.93-.47.26-.33.35-.76.25-1.17l-1.04-4.37z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.9 8.89-1.05-4.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zM13 5h1.96l.54 4.52c.05.39-.07.78-.33 1.07-.22.26-.54.41-.95.41-.67 0-1.22-.59-1.22-1.31V5zM8.49 9.52 9.04 5H11v4.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07zm-4.2 1.01c-.26-.33-.35-.76-.25-1.17L5.05 5h1.97l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.5 0-.8-.29-.94-.47zM19 19H5v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19zm.71-8.47c-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01 1.05 4.37c.1.42.01.85-.25 1.17z" -}, "1")], 'StorefrontTwoTone'); \ No newline at end of file +}, "1")], 'StorefrontTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Storm.js b/packages/material-ui-icons/lib/Storm.js index 710e61e2979f27..b044b2ca5f8e72 100644 --- a/packages/material-ui-icons/lib/Storm.js +++ b/packages/material-ui-icons/lib/Storm.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'Storm'); \ No newline at end of file +}), 'Storm'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StormOutlined.js b/packages/material-ui-icons/lib/StormOutlined.js index c44fe463b9ab8b..d831c167cb412c 100644 --- a/packages/material-ui-icons/lib/StormOutlined.js +++ b/packages/material-ui-icons/lib/StormOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'StormOutlined'); \ No newline at end of file +}), 'StormOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StormRounded.js b/packages/material-ui-icons/lib/StormRounded.js index 031c8e7b95373b..2d2a90ad479e1c 100644 --- a/packages/material-ui-icons/lib/StormRounded.js +++ b/packages/material-ui-icons/lib/StormRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.1-1.75.1-3.5.59-5.17C5.61 2.63 5.14 2 4.48 2h-.01c-.43 0-.83.28-.95.7-1.28 4.31-.87 9.11 1.55 13.3 1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.1 1.75-.09 3.5-.58 5.18-.18.63.29 1.26.95 1.26.44 0 .83-.28.95-.7 1.27-4.31.87-9.11-1.55-13.3zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'StormRounded'); \ No newline at end of file +}), 'StormRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StormSharp.js b/packages/material-ui-icons/lib/StormSharp.js index f38b8055f949a0..8ee094b62d862f 100644 --- a/packages/material-ui-icons/lib/StormSharp.js +++ b/packages/material-ui-icons/lib/StormSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" -}), 'StormSharp'); \ No newline at end of file +}), 'StormSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StormTwoTone.js b/packages/material-ui-icons/lib/StormTwoTone.js index ed56d8291099d1..a5e2adc119bc94 100644 --- a/packages/material-ui-icons/lib/StormTwoTone.js +++ b/packages/material-ui-icons/lib/StormTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "12", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.2 9C15.54 6.13 11.86 5.15 9 6.8c-2.67 1.54-3.7 4.84-2.5 7.6.09.2.19.4.3.6 1.66 2.87 5.33 3.85 8.2 2.2 2.67-1.54 3.7-4.84 2.5-7.6-.09-.2-.19-.4-.3-.6zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6z" -}, "3")], 'StormTwoTone'); \ No newline at end of file +}, "3")], 'StormTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Straighten.js b/packages/material-ui-icons/lib/Straighten.js index 1e9e287f468cae..30f12a2f65686c 100644 --- a/packages/material-ui-icons/lib/Straighten.js +++ b/packages/material-ui-icons/lib/Straighten.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" -}), 'Straighten'); \ No newline at end of file +}), 'Straighten'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StraightenOutlined.js b/packages/material-ui-icons/lib/StraightenOutlined.js index 82fa90fb152c0a..1c817367261cfb 100644 --- a/packages/material-ui-icons/lib/StraightenOutlined.js +++ b/packages/material-ui-icons/lib/StraightenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" -}), 'StraightenOutlined'); \ No newline at end of file +}), 'StraightenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StraightenRounded.js b/packages/material-ui-icons/lib/StraightenRounded.js index 894b1aa0d137f6..d0a58fd961b847 100644 --- a/packages/material-ui-icons/lib/StraightenRounded.js +++ b/packages/material-ui-icons/lib/StraightenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 10H4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h1c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1z" -}), 'StraightenRounded'); \ No newline at end of file +}), 'StraightenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StraightenSharp.js b/packages/material-ui-icons/lib/StraightenSharp.js index 8959d020d3425b..9500cdecf5b79c 100644 --- a/packages/material-ui-icons/lib/StraightenSharp.js +++ b/packages/material-ui-icons/lib/StraightenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 6H1v12h22V6zm-2 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" -}), 'StraightenSharp'); \ No newline at end of file +}), 'StraightenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StraightenTwoTone.js b/packages/material-ui-icons/lib/StraightenTwoTone.js index ac40ab6f0af809..fda9c884e35cfe 100644 --- a/packages/material-ui-icons/lib/StraightenTwoTone.js +++ b/packages/material-ui-icons/lib/StraightenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 12h-2V8h-2v4h-2V8h-2v4H9V8H7v4H5V8H3v8h18V8h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" -}, "1")], 'StraightenTwoTone'); \ No newline at end of file +}, "1")], 'StraightenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Stream.js b/packages/material-ui-icons/lib/Stream.js index fd2fae2fb57dba..95088750edbbaf 100644 --- a/packages/material-ui-icons/lib/Stream.js +++ b/packages/material-ui-icons/lib/Stream.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "20", cy: "12", r: "2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "12", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "2" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.05 8.59 6.03 4.55h-.01l-.31-.32-1.42 1.41 4.02 4.05.01-.01.31.32zm3.893.027 4.405-4.392L19.76 5.64l-4.405 4.393zM10.01 15.36l-1.42-1.41-4.03 4.01-.32.33 1.41 1.41 4.03-4.02zm9.75 2.94-3.99-4.01-.36-.35L14 15.35l3.99 4.01.35.35z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "4")], 'Stream'); \ No newline at end of file +}, "4")], 'Stream'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreamOutlined.js b/packages/material-ui-icons/lib/StreamOutlined.js index dcf549f54f6e86..0e42abc445dfb7 100644 --- a/packages/material-ui-icons/lib/StreamOutlined.js +++ b/packages/material-ui-icons/lib/StreamOutlined.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "20", cy: "12", r: "2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "12", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "2" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.943 8.6191 4.4044-4.392 1.4122 1.4162-4.4043 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "4")], 'StreamOutlined'); \ No newline at end of file +}, "4")], 'StreamOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreamRounded.js b/packages/material-ui-icons/lib/StreamRounded.js index e11cee74f40acf..934c3ee6ea2e28 100644 --- a/packages/material-ui-icons/lib/StreamRounded.js +++ b/packages/material-ui-icons/lib/StreamRounded.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "20", cy: "12", r: "2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "12", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "2" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.89 14.65-2.94 2.93c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0l2.94-2.93c.39-.38.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0zM6.41 4.94a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.93 2.94c.39.39 1.02.39 1.42 0 .38-.39.38-1.02-.01-1.41L6.41 4.94zm9.71 9.71c-.39-.39-1.02-.39-1.42 0-.39.39-.39 1.02 0 1.41L17.64 19c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41l-2.93-2.94zm-.06-5.32 2.99-2.98c.39-.4.39-1.03 0-1.42a.9959.9959 0 0 0-1.41 0l-2.99 2.98c-.39.39-.39 1.02 0 1.42.39.39 1.02.39 1.41 0z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "4")], 'StreamRounded'); \ No newline at end of file +}, "4")], 'StreamRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreamSharp.js b/packages/material-ui-icons/lib/StreamSharp.js index 88368e7260fd15..589ed7108ce8c6 100644 --- a/packages/material-ui-icons/lib/StreamSharp.js +++ b/packages/material-ui-icons/lib/StreamSharp.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "20", cy: "12", r: "2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "12", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "2" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.943 8.6191 4.4044-4.392 1.4122 1.4162-4.4043 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "4")], 'StreamSharp'); \ No newline at end of file +}, "4")], 'StreamSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreamTwoTone.js b/packages/material-ui-icons/lib/StreamTwoTone.js index 8637bdad211a3e..0d10f1f2ecf426 100644 --- a/packages/material-ui-icons/lib/StreamTwoTone.js +++ b/packages/material-ui-icons/lib/StreamTwoTone.js @@ -1,21 +1,34 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "20", cy: "12", r: "2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "4", cy: "12", r: "2" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "20", r: "2" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.943 8.6191 4.4044-4.392 1.4122 1.4162-4.4043 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "4", r: "2" -}, "4")], 'StreamTwoTone'); \ No newline at end of file +}, "4")], 'StreamTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Streetview.js b/packages/material-ui-icons/lib/Streetview.js index e85cf37a44f48c..2d5f2e8454e2df 100644 --- a/packages/material-ui-icons/lib/Streetview.js +++ b/packages/material-ui-icons/lib/Streetview.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" -}, "2")], 'Streetview'); \ No newline at end of file +}, "2")], 'Streetview'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreetviewOutlined.js b/packages/material-ui-icons/lib/StreetviewOutlined.js index f90c8a429fd161..cd397eba9d0a45 100644 --- a/packages/material-ui-icons/lib/StreetviewOutlined.js +++ b/packages/material-ui-icons/lib/StreetviewOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" -}, "2")], 'StreetviewOutlined'); \ No newline at end of file +}, "2")], 'StreetviewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreetviewRounded.js b/packages/material-ui-icons/lib/StreetviewRounded.js index aa3e0bcc2eabad..5fed001866bed4 100644 --- a/packages/material-ui-icons/lib/StreetviewRounded.js +++ b/packages/material-ui-icons/lib/StreetviewRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" -}, "2")], 'StreetviewRounded'); \ No newline at end of file +}, "2")], 'StreetviewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreetviewSharp.js b/packages/material-ui-icons/lib/StreetviewSharp.js index 84379b88f68293..2d7c296ad5deef 100644 --- a/packages/material-ui-icons/lib/StreetviewSharp.js +++ b/packages/material-ui-icons/lib/StreetviewSharp.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" -}, "2")], 'StreetviewSharp'); \ No newline at end of file +}, "2")], 'StreetviewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StreetviewTwoTone.js b/packages/material-ui-icons/lib/StreetviewTwoTone.js index d704f53f1a6fa9..87dc2e706b362e 100644 --- a/packages/material-ui-icons/lib/StreetviewTwoTone.js +++ b/packages/material-ui-icons/lib/StreetviewTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "6", r: "5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" -}, "2")], 'StreetviewTwoTone'); \ No newline at end of file +}, "2")], 'StreetviewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrikethroughS.js b/packages/material-ui-icons/lib/StrikethroughS.js index 9be40a5a0bd859..312596650227af 100644 --- a/packages/material-ui-icons/lib/StrikethroughS.js +++ b/packages/material-ui-icons/lib/StrikethroughS.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.85 7.08C6.85 4.37 9.45 3 12.24 3c1.64 0 3 .49 3.9 1.28.77.65 1.46 1.73 1.46 3.24h-3.01c0-.31-.05-.59-.15-.85-.29-.86-1.2-1.28-2.25-1.28-1.86 0-2.34 1.02-2.34 1.7 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.21-.34-.54-.89-.54-1.92zM21 12v-2H3v2h9.62c1.15.45 1.96.75 1.96 1.97 0 1-.81 1.67-2.28 1.67-1.54 0-2.93-.54-2.93-2.51H6.4c0 .55.08 1.13.24 1.58.81 2.29 3.29 3.3 5.67 3.3 2.27 0 5.3-.89 5.3-4.05 0-.3-.01-1.16-.48-1.94H21V12z" -}), 'StrikethroughS'); \ No newline at end of file +}), 'StrikethroughS'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrikethroughSOutlined.js b/packages/material-ui-icons/lib/StrikethroughSOutlined.js index fdf7d2101d755e..2d957e7352ef2a 100644 --- a/packages/material-ui-icons/lib/StrikethroughSOutlined.js +++ b/packages/material-ui-icons/lib/StrikethroughSOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z" -}), 'StrikethroughSOutlined'); \ No newline at end of file +}), 'StrikethroughSOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrikethroughSRounded.js b/packages/material-ui-icons/lib/StrikethroughSRounded.js index 2781272e928fa8..ca0b8ab264c1ee 100644 --- a/packages/material-ui-icons/lib/StrikethroughSRounded.js +++ b/packages/material-ui-icons/lib/StrikethroughSRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.59 7.52c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01M20 10H4c-.55 0-1 .45-1 1s.45 1 1 1h8.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H20c.55 0 1-.45 1-1V11c0-.55-.45-1-1-1z" -}), 'StrikethroughSRounded'); \ No newline at end of file +}), 'StrikethroughSRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrikethroughSSharp.js b/packages/material-ui-icons/lib/StrikethroughSSharp.js index c3f398539e8cb4..ce6727a2d9b3d2 100644 --- a/packages/material-ui-icons/lib/StrikethroughSSharp.js +++ b/packages/material-ui-icons/lib/StrikethroughSSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z" -}), 'StrikethroughSSharp'); \ No newline at end of file +}), 'StrikethroughSSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrikethroughSTwoTone.js b/packages/material-ui-icons/lib/StrikethroughSTwoTone.js index efa5f89c4bf1a7..4e9c3f0e49c4d6 100644 --- a/packages/material-ui-icons/lib/StrikethroughSTwoTone.js +++ b/packages/material-ui-icons/lib/StrikethroughSTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.44 5.88c.19-.15.43-.27.72-.36.29-.09.64-.13 1.03-.13.4 0 .76.06 1.06.16.3.11.55.25.75.44s.35.41.44.68c.1.26.15.54.15.85h3.01c0-.66-.13-1.26-.38-1.81s-.61-1.03-1.08-1.43c-.46-.4-1.03-.72-1.69-.94-.67-.23-1.4-.34-2.21-.34-.79 0-1.52.1-2.18.29-.65.2-1.22.48-1.7.83-.48.36-.85.79-1.11 1.29-.27.51-.4 1.06-.4 1.67 0 .64.13 1.19.39 1.67.04.08.1.17.15.25H12c-.64-.22-1.03-.45-1.41-.7-.49-.33-.74-.73-.74-1.21 0-.23.05-.45.15-.66s.25-.39.44-.55zM3 12h9.62c.18.07.4.14.55.2.37.17.66.34.87.51.21.17.35.36.43.57.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42-.45-.44-.59-.75-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58.16.45.37.85.65 1.21.28.35.6.66.98.92.37.26.78.48 1.22.65s.9.3 1.38.39c.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28.65-.19 1.21-.45 1.67-.79.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V10H3v2z" -}), 'StrikethroughSTwoTone'); \ No newline at end of file +}), 'StrikethroughSTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Stroller.js b/packages/material-ui-icons/lib/Stroller.js index 3111faae90c75d..5f1b28ca9b71bc 100644 --- a/packages/material-ui-icons/lib/Stroller.js +++ b/packages/material-ui-icons/lib/Stroller.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16", cy: "20", r: "2" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "20", r: "2" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-8.8 10.32C6.12 16 6.58 17 7.43 17H15c1.1 0 2-.9 2-2V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2zm-7.7-2.9C13.03 3.4 11.56 3 10 3c-1.97 0-3.79.64-5.28 1.72l4.89 4.89L14.3 4.1z" -}, "2")], 'Stroller'); \ No newline at end of file +}, "2")], 'Stroller'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrollerOutlined.js b/packages/material-ui-icons/lib/StrollerOutlined.js index 809c36d196ab3a..065c28ee426b61 100644 --- a/packages/material-ui-icons/lib/StrollerOutlined.js +++ b/packages/material-ui-icons/lib/StrollerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9-9.34L9.6 15H15V8.66M18.65 3C20.52 3 22 4.56 22 6.48V7h-2v-.52C20 5.66 19.42 5 18.65 5c-.68 0-1.07.59-1.65 1.27V15c0 1.1-.9 2-2 2H7.43c-.85 0-1.31-1-.76-1.65l8.8-10.32C16.11 4.27 16.99 3 18.65 3zM10 5c-.65 0-1.29.09-1.91.27l1.4 1.4 1.37-1.61C10.58 5.02 10.29 5 10 5m0-2c1.56 0 3.03.4 4.3 1.1L9.6 9.61 4.72 4.72C6.21 3.64 8.03 3 10 3z" -}), 'StrollerOutlined'); \ No newline at end of file +}), 'StrollerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrollerRounded.js b/packages/material-ui-icons/lib/StrollerRounded.js index bd90ec755fc098..016ce629784015 100644 --- a/packages/material-ui-icons/lib/StrollerRounded.js +++ b/packages/material-ui-icons/lib/StrollerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8.3-13.9C13.03 3.4 11.56 3 10 3c-1.51 0-2.93.38-4.17 1.03-.59.31-.68 1.12-.22 1.58L9.6 9.6l4.7-5.5zm7.64 1.73C21.65 4.22 20.3 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03L6.71 15.31c-.55.65-.09 1.65.76 1.65H15c1.1 0 2-.9 2-2V6.27c.58-.68.97-1.27 1.65-1.27.68 0 1.22.52 1.33 1.21.1.45.5.79.98.79.55 0 1-.45 1-1 0-.06-.01-.11-.02-.17z" -}), 'StrollerRounded'); \ No newline at end of file +}), 'StrollerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrollerSharp.js b/packages/material-ui-icons/lib/StrollerSharp.js index 8444670c939fc2..dabf2737739b47 100644 --- a/packages/material-ui-icons/lib/StrollerSharp.js +++ b/packages/material-ui-icons/lib/StrollerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM22 7v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03L5.27 17H17V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2zm-7.7-2.9C13.03 3.4 11.56 3 10 3c-1.97 0-3.79.64-5.28 1.72l4.89 4.89L14.3 4.1z" -}), 'StrollerSharp'); \ No newline at end of file +}), 'StrollerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StrollerTwoTone.js b/packages/material-ui-icons/lib/StrollerTwoTone.js index fbee815a8ab729..08fc3549a5b95c 100644 --- a/packages/material-ui-icons/lib/StrollerTwoTone.js +++ b/packages/material-ui-icons/lib/StrollerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5c.29 0 .58.02.86.05L9.49 6.66l-1.4-1.4C8.71 5.09 9.35 5 10 5m5 3.66V15H9.6L15 8.66", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5c.29 0 .58.02.86.05L9.49 6.66l-1.4-1.4C8.71 5.09 9.35 5 10 5m5 3.66V15H9.6L15 8.66M18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-8.8 10.32C6.12 16 6.58 17 7.43 17H15c1.1 0 2-.9 2-2V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3zM10 3c-1.97 0-3.79.64-5.28 1.72l4.89 4.89 4.7-5.51C13.03 3.4 11.56 3 10 3zm6 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}, "1")], 'StrollerTwoTone'); \ No newline at end of file +}, "1")], 'StrollerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Style.js b/packages/material-ui-icons/lib/Style.js index ef93bec219fdd9..e948fd46fdaddf 100644 --- a/packages/material-ui-icons/lib/Style.js +++ b/packages/material-ui-icons/lib/Style.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.53 19.65 1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" -}), 'Style'); \ No newline at end of file +}), 'Style'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StyleOutlined.js b/packages/material-ui-icons/lib/StyleOutlined.js index f14e8066781bd4..82b2c2691837ac 100644 --- a/packages/material-ui-icons/lib/StyleOutlined.js +++ b/packages/material-ui-icons/lib/StyleOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.53 19.65 1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "9", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.88 19.75c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" -}, "2")], 'StyleOutlined'); \ No newline at end of file +}, "2")], 'StyleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StyleRounded.js b/packages/material-ui-icons/lib/StyleRounded.js index 2434890fc4cf9a..03651d43b439c4 100644 --- a/packages/material-ui-icons/lib/StyleRounded.js +++ b/packages/material-ui-icons/lib/StyleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m2.53 19.65 1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" -}), 'StyleRounded'); \ No newline at end of file +}), 'StyleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StyleSharp.js b/packages/material-ui-icons/lib/StyleSharp.js index c41e3d7766420e..bffa028d41be04 100644 --- a/packages/material-ui-icons/lib/StyleSharp.js +++ b/packages/material-ui-icons/lib/StyleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.87 20.21v-9.03l-3.19 7.7 3.19 1.33zm18.92-2.43L16.31 2.14 5.26 6.71l6.48 15.64 11.05-4.57zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 13h3.45l-3.45-8.34v8.34z" -}), 'StyleSharp'); \ No newline at end of file +}), 'StyleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/StyleTwoTone.js b/packages/material-ui-icons/lib/StyleTwoTone.js index f39b2d9ad4ec19..173ba1faed2c95 100644 --- a/packages/material-ui-icons/lib/StyleTwoTone.js +++ b/packages/material-ui-icons/lib/StyleTwoTone.js @@ -1,14 +1,27 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.22 4.75 7.87 7.79l4.96 11.96 7.35-3.05-4.96-11.95zM11 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.87 11.18-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61l1.34.56v-9.03zm18.16 4.77L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "11", cy: "9", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.33 21.75-3.45-8.34v6.34c0 1.1.9 2 2 2h1.45z" -}, "3")], 'StyleTwoTone'); \ No newline at end of file +}, "3")], 'StyleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowLeft.js b/packages/material-ui-icons/lib/SubdirectoryArrowLeft.js index 1f6e24c9595104..6df9c313f8aeb0 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowLeft.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" -}), 'SubdirectoryArrowLeft'); \ No newline at end of file +}), 'SubdirectoryArrowLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowLeftOutlined.js b/packages/material-ui-icons/lib/SubdirectoryArrowLeftOutlined.js index 29d76adaa85a93..d813ac42ffaa7e 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowLeftOutlined.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" -}), 'SubdirectoryArrowLeftOutlined'); \ No newline at end of file +}), 'SubdirectoryArrowLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowLeftRounded.js b/packages/material-ui-icons/lib/SubdirectoryArrowLeftRounded.js index 1faab54edf3b7d..9ee86e5224e425 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowLeftRounded.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.71 15.71 4.58 4.58c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42L8.83 16H19c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v9H8.83l2.88-2.87c.39-.39.39-1.03 0-1.42-.39-.39-1.03-.39-1.42 0l-4.58 4.58c-.39.39-.39 1.03 0 1.42z" -}), 'SubdirectoryArrowLeftRounded'); \ No newline at end of file +}), 'SubdirectoryArrowLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowLeftSharp.js b/packages/material-ui-icons/lib/SubdirectoryArrowLeftSharp.js index 2bed8a4a1361a3..b8f5674d596b33 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowLeftSharp.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" -}), 'SubdirectoryArrowLeftSharp'); \ No newline at end of file +}), 'SubdirectoryArrowLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowLeftTwoTone.js b/packages/material-ui-icons/lib/SubdirectoryArrowLeftTwoTone.js index 9a2b27e3d03c20..336c1b90505d04 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowLeftTwoTone.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowLeftTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" -}), 'SubdirectoryArrowLeftTwoTone'); \ No newline at end of file +}), 'SubdirectoryArrowLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowRight.js b/packages/material-ui-icons/lib/SubdirectoryArrowRight.js index 65d01eddcea76c..e4151cfd971f54 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowRight.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" -}), 'SubdirectoryArrowRight'); \ No newline at end of file +}), 'SubdirectoryArrowRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowRightOutlined.js b/packages/material-ui-icons/lib/SubdirectoryArrowRightOutlined.js index 3d43b4be819e82..1b433a90c5e000 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowRightOutlined.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" -}), 'SubdirectoryArrowRightOutlined'); \ No newline at end of file +}), 'SubdirectoryArrowRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowRightRounded.js b/packages/material-ui-icons/lib/SubdirectoryArrowRightRounded.js index b8357aab753ea3..323552e3d93495 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowRightRounded.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.29 15.71-4.58 4.58c-.39.39-1.03.39-1.42 0-.39-.39-.39-1.03 0-1.42L15.17 16H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v9h9.17l-2.88-2.87c-.39-.39-.39-1.03 0-1.42.39-.39 1.03-.39 1.42 0l4.58 4.58c.39.39.39 1.03 0 1.42z" -}), 'SubdirectoryArrowRightRounded'); \ No newline at end of file +}), 'SubdirectoryArrowRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowRightSharp.js b/packages/material-ui-icons/lib/SubdirectoryArrowRightSharp.js index 351b63fd44fcd7..ccde3f8139be20 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowRightSharp.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" -}), 'SubdirectoryArrowRightSharp'); \ No newline at end of file +}), 'SubdirectoryArrowRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubdirectoryArrowRightTwoTone.js b/packages/material-ui-icons/lib/SubdirectoryArrowRightTwoTone.js index 71a390b40aa293..5da83a793558c9 100644 --- a/packages/material-ui-icons/lib/SubdirectoryArrowRightTwoTone.js +++ b/packages/material-ui-icons/lib/SubdirectoryArrowRightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" -}), 'SubdirectoryArrowRightTwoTone'); \ No newline at end of file +}), 'SubdirectoryArrowRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Subject.js b/packages/material-ui-icons/lib/Subject.js index 1b0bf5a123072b..9244970853f901 100644 --- a/packages/material-ui-icons/lib/Subject.js +++ b/packages/material-ui-icons/lib/Subject.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" -}), 'Subject'); \ No newline at end of file +}), 'Subject'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubjectOutlined.js b/packages/material-ui-icons/lib/SubjectOutlined.js index 70ddc0824d8659..5b0cd53957f279 100644 --- a/packages/material-ui-icons/lib/SubjectOutlined.js +++ b/packages/material-ui-icons/lib/SubjectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" -}), 'SubjectOutlined'); \ No newline at end of file +}), 'SubjectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubjectRounded.js b/packages/material-ui-icons/lib/SubjectRounded.js index 768999f70437ca..61c86dde49aef6 100644 --- a/packages/material-ui-icons/lib/SubjectRounded.js +++ b/packages/material-ui-icons/lib/SubjectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 17H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm6-8H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" -}), 'SubjectRounded'); \ No newline at end of file +}), 'SubjectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubjectSharp.js b/packages/material-ui-icons/lib/SubjectSharp.js index 8a1dc453740fdc..1c19b5ea34a010 100644 --- a/packages/material-ui-icons/lib/SubjectSharp.js +++ b/packages/material-ui-icons/lib/SubjectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" -}), 'SubjectSharp'); \ No newline at end of file +}), 'SubjectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubjectTwoTone.js b/packages/material-ui-icons/lib/SubjectTwoTone.js index f6c4b2d768340d..2579f2b01120e6 100644 --- a/packages/material-ui-icons/lib/SubjectTwoTone.js +++ b/packages/material-ui-icons/lib/SubjectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" -}), 'SubjectTwoTone'); \ No newline at end of file +}), 'SubjectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Subscript.js b/packages/material-ui-icons/lib/Subscript.js index 8503b4bde33c0b..8df35781e18f6a 100644 --- a/packages/material-ui-icons/lib/Subscript.js +++ b/packages/material-ui-icons/lib/Subscript.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18h-2v1h3v1h-4v-2c0-.55.45-1 1-1h2v-1h-3v-1h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" -}), 'Subscript'); \ No newline at end of file +}), 'Subscript'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptOutlined.js b/packages/material-ui-icons/lib/SubscriptOutlined.js index 94f327caf8e439..f1c91f6fd8eb10 100644 --- a/packages/material-ui-icons/lib/SubscriptOutlined.js +++ b/packages/material-ui-icons/lib/SubscriptOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18h-2v1h3v1h-4v-2c0-.55.45-1 1-1h2v-1h-3v-1h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" -}), 'SubscriptOutlined'); \ No newline at end of file +}), 'SubscriptOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptRounded.js b/packages/material-ui-icons/lib/SubscriptRounded.js index 3dfb722a7ee262..967e0820fbfda9 100644 --- a/packages/material-ui-icons/lib/SubscriptRounded.js +++ b/packages/material-ui-icons/lib/SubscriptRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.52 10.73 7.3 5.72C6.82 4.97 7.35 4 8.23 4c.39 0 .74.2.95.53l2.76 4.46h.12l2.74-4.45c.21-.34.57-.54.96-.54.88 0 1.42.98.94 1.72l-3.23 5 3.55 5.55c.48.75-.06 1.73-.94 1.73-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.2.32-.56.52-.95.52-.88 0-1.42-.97-.94-1.72l3.54-5.55zM23 19.5c0-.28-.22-.5-.5-.5H20v-1h2c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5z" -}), 'SubscriptRounded'); \ No newline at end of file +}), 'SubscriptRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptSharp.js b/packages/material-ui-icons/lib/SubscriptSharp.js index 706ad5882a2e59..aa62e18775658b 100644 --- a/packages/material-ui-icons/lib/SubscriptSharp.js +++ b/packages/material-ui-icons/lib/SubscriptSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18v1h3v1h-4v-3h3v-1h-3v-1h4v3h-3zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" -}), 'SubscriptSharp'); \ No newline at end of file +}), 'SubscriptSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptTwoTone.js b/packages/material-ui-icons/lib/SubscriptTwoTone.js index 9c764b2c5208f1..6e5c0c3000041a 100644 --- a/packages/material-ui-icons/lib/SubscriptTwoTone.js +++ b/packages/material-ui-icons/lib/SubscriptTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18h-2v1h3v1h-4v-2c0-.55.45-1 1-1h2v-1h-3v-1h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" -}), 'SubscriptTwoTone'); \ No newline at end of file +}), 'SubscriptTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Subscriptions.js b/packages/material-ui-icons/lib/Subscriptions.js index 2bd536be4b2f4a..eae33ae5961566 100644 --- a/packages/material-ui-icons/lib/Subscriptions.js +++ b/packages/material-ui-icons/lib/Subscriptions.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6 4-6-3.27v6.53L16 16z" -}), 'Subscriptions'); \ No newline at end of file +}), 'Subscriptions'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptionsOutlined.js b/packages/material-ui-icons/lib/SubscriptionsOutlined.js index dc6acc5a25f032..8a99af8ee9d01f 100644 --- a/packages/material-ui-icons/lib/SubscriptionsOutlined.js +++ b/packages/material-ui-icons/lib/SubscriptionsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z" -}), 'SubscriptionsOutlined'); \ No newline at end of file +}), 'SubscriptionsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptionsRounded.js b/packages/material-ui-icons/lib/SubscriptionsRounded.js index 1bcb5934e9f518..95c68248a9c692 100644 --- a/packages/material-ui-icons/lib/SubscriptionsRounded.js +++ b/packages/material-ui-icons/lib/SubscriptionsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1zm-2-6H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm5 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6.81 3.56L10 12.73v6.53l5.19-2.82c.35-.19.35-.69 0-.88z" -}), 'SubscriptionsRounded'); \ No newline at end of file +}), 'SubscriptionsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptionsSharp.js b/packages/material-ui-icons/lib/SubscriptionsSharp.js index e076534cc8c199..16e76a58422c70 100644 --- a/packages/material-ui-icons/lib/SubscriptionsSharp.js +++ b/packages/material-ui-icons/lib/SubscriptionsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 8v12H2V10h20zm-6 6-6-3.27v6.53L16 16z" -}), 'SubscriptionsSharp'); \ No newline at end of file +}), 'SubscriptionsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubscriptionsTwoTone.js b/packages/material-ui-icons/lib/SubscriptionsTwoTone.js index 145311ba0362c2..b420ed4de940b5 100644 --- a/packages/material-ui-icons/lib/SubscriptionsTwoTone.js +++ b/packages/material-ui-icons/lib/SubscriptionsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16v-8H4v8zm6-7.27L16 16l-6 3.26v-6.53z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z" -}, "1")], 'SubscriptionsTwoTone'); \ No newline at end of file +}, "1")], 'SubscriptionsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Subtitles.js b/packages/material-ui-icons/lib/Subtitles.js index c344296f83a556..6ca5c481bf7c3e 100644 --- a/packages/material-ui-icons/lib/Subtitles.js +++ b/packages/material-ui-icons/lib/Subtitles.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z" -}), 'Subtitles'); \ No newline at end of file +}), 'Subtitles'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesOff.js b/packages/material-ui-icons/lib/SubtitlesOff.js index 934753c7668e16..be84bc5e7a6234 100644 --- a/packages/material-ui-icons/lib/SubtitlesOff.js +++ b/packages/material-ui-icons/lib/SubtitlesOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H6.83l8 8H20v2h-3.17l4.93 4.93c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2zM1.04 3.87l1.2 1.2C2.09 5.35 2 5.66 2 6v12c0 1.1.9 2 2 2h13.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM8 12v2H4v-2h4zm6 4.83V18H4v-2h9.17l.83.83z" -}), 'SubtitlesOff'); \ No newline at end of file +}), 'SubtitlesOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesOffOutlined.js b/packages/material-ui-icons/lib/SubtitlesOffOutlined.js index ac28769a5c636c..04ede7ee51c79e 100644 --- a/packages/material-ui-icons/lib/SubtitlesOffOutlined.js +++ b/packages/material-ui-icons/lib/SubtitlesOffOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H6.83l2 2H20v11.17l1.76 1.76c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10h-5.17l2 2H18zM1.04 3.87l1.2 1.2C2.09 5.35 2 5.66 2 6v12c0 1.1.9 2 2 2h13.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 6.83 7.17 10H6v2h2v-1.17L11.17 14H6v2h7.17l2 2H4V6.83z" -}, "1")], 'SubtitlesOffOutlined'); \ No newline at end of file +}, "1")], 'SubtitlesOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesOffRounded.js b/packages/material-ui-icons/lib/SubtitlesOffRounded.js index 31f68ef4bdde3c..5291bb24836005 100644 --- a/packages/material-ui-icons/lib/SubtitlesOffRounded.js +++ b/packages/material-ui-icons/lib/SubtitlesOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H6.83l8 8H19c.55 0 1 .45 1 1s-.45 1-1 1h-2.17l4.93 4.93c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2zm0 16-6-6-1.71-1.71L12 12 3.16 3.16a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.49.49c-.15.29-.24.6-.24.94v12c0 1.1.9 2 2 2h13.17l2.25 2.25c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L20 20zM8 13c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1zm6 4c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h8c.08 0 .14.03.21.04l.74.74c.02.08.05.14.05.22z" -}), 'SubtitlesOffRounded'); \ No newline at end of file +}), 'SubtitlesOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesOffSharp.js b/packages/material-ui-icons/lib/SubtitlesOffSharp.js index 782236618e766e..973dddf9b934a9 100644 --- a/packages/material-ui-icons/lib/SubtitlesOffSharp.js +++ b/packages/material-ui-icons/lib/SubtitlesOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.83 4 8 8H20v2h-3.17L22 19.17V4zm-5.79-.13.96.96V20h15.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 12h4v2H4v-2zm0 4h9.17l.83.83V18H4v-2z" -}), 'SubtitlesOffSharp'); \ No newline at end of file +}), 'SubtitlesOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesOffTwoTone.js b/packages/material-ui-icons/lib/SubtitlesOffTwoTone.js index fe38416c168ead..a3d083d25ee32e 100644 --- a/packages/material-ui-icons/lib/SubtitlesOffTwoTone.js +++ b/packages/material-ui-icons/lib/SubtitlesOffTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m8.83 6 4 4H18v2h-3.17L20 17.17V6zm6.34 12-2-2H6v-2h5.17L8 10.83V12H6v-2h1.17L4 6.83V18z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10h-5.17l2 2H18z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H6.83l2 2H20v11.17l1.76 1.76c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2zM1.04 3.87l1.2 1.2C2.09 5.35 2 5.66 2 6v12c0 1.1.9 2 2 2h13.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 6.83 7.17 10H6v2h2v-1.17L11.17 14H6v2h7.17l2 2H4V6.83z" -}, "2")], 'SubtitlesOffTwoTone'); \ No newline at end of file +}, "2")], 'SubtitlesOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesOutlined.js b/packages/material-ui-icons/lib/SubtitlesOutlined.js index ee1067777f58ed..d71956e2969d32 100644 --- a/packages/material-ui-icons/lib/SubtitlesOutlined.js +++ b/packages/material-ui-icons/lib/SubtitlesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z" -}), 'SubtitlesOutlined'); \ No newline at end of file +}), 'SubtitlesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesRounded.js b/packages/material-ui-icons/lib/SubtitlesRounded.js index 625e6de895dbfb..2835e2278e03cf 100644 --- a/packages/material-ui-icons/lib/SubtitlesRounded.js +++ b/packages/material-ui-icons/lib/SubtitlesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM5 12h2c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm8 6H5c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm6 0h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zm0-4h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'SubtitlesRounded'); \ No newline at end of file +}), 'SubtitlesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesSharp.js b/packages/material-ui-icons/lib/SubtitlesSharp.js index ff9cf429fa5efe..3b7100a768f08f 100644 --- a/packages/material-ui-icons/lib/SubtitlesSharp.js +++ b/packages/material-ui-icons/lib/SubtitlesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z" -}), 'SubtitlesSharp'); \ No newline at end of file +}), 'SubtitlesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubtitlesTwoTone.js b/packages/material-ui-icons/lib/SubtitlesTwoTone.js index fe693e9d8f602f..1a42a2b6f1769e 100644 --- a/packages/material-ui-icons/lib/SubtitlesTwoTone.js +++ b/packages/material-ui-icons/lib/SubtitlesTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zm14-2h-2v-2h2v2zm-8-6h8v2h-8v-2zm-4 0h2v2H6v-2zm0 4h8v2H6v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z" -}, "1")], 'SubtitlesTwoTone'); \ No newline at end of file +}, "1")], 'SubtitlesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Subway.js b/packages/material-ui-icons/lib/Subway.js index b9ac4ce1dae037..b5d90418830a1c 100644 --- a/packages/material-ui-icons/lib/Subway.js +++ b/packages/material-ui-icons/lib/Subway.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "16", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2c-1.86 0-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 13.08c0 1.45-1.18 2.62-2.63 2.62l1.13 1.12V20H15l-1.5-1.5h-2.83L9.17 20H7.5v-.38l1.12-1.12C7.18 18.5 6 17.32 6 15.88V9c0-2.63 3-3 6-3 3.32 0 6 .38 6 3v6.88z" -}, "2")], 'Subway'); \ No newline at end of file +}, "2")], 'Subway'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubwayOutlined.js b/packages/material-ui-icons/lib/SubwayOutlined.js index 0b8fe104b91470..826d05b0132ffa 100644 --- a/packages/material-ui-icons/lib/SubwayOutlined.js +++ b/packages/material-ui-icons/lib/SubwayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z" -}), 'SubwayOutlined'); \ No newline at end of file +}), 'SubwayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubwayRounded.js b/packages/material-ui-icons/lib/SubwayRounded.js index 44ec7ef935071b..8ae225c5748da0 100644 --- a/packages/material-ui-icons/lib/SubwayRounded.js +++ b/packages/material-ui-icons/lib/SubwayRounded.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "16", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z" -}, "2")], 'SubwayRounded'); \ No newline at end of file +}, "2")], 'SubwayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubwaySharp.js b/packages/material-ui-icons/lib/SubwaySharp.js index 63d277dae3d566..d14e3ecf1db8e2 100644 --- a/packages/material-ui-icons/lib/SubwaySharp.js +++ b/packages/material-ui-icons/lib/SubwaySharp.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "16", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "16", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z" -}, "2")], 'SubwaySharp'); \ No newline at end of file +}, "2")], 'SubwaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SubwayTwoTone.js b/packages/material-ui-icons/lib/SubwayTwoTone.js index 9732d6af51018e..410d1a6df3df9e 100644 --- a/packages/material-ui-icons/lib/SubwayTwoTone.js +++ b/packages/material-ui-icons/lib/SubwayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.67 18.5 9.17 20h5.66l-1.5-1.5zm6.4-13.84C15.59 4.08 13.68 4 12 4s-3.59.08-5.07.66C5.01 5.41 4 6.86 4 8.86V20h3.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20H20V8.86c0-2-1.01-3.45-2.93-4.2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z" -}, "1")], 'SubwayTwoTone'); \ No newline at end of file +}, "1")], 'SubwayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Summarize.js b/packages/material-ui-icons/lib/Summarize.js index 5d8d6cd07d8b59..eecfdb14e7782d 100644 --- a/packages/material-ui-icons/lib/Summarize.js +++ b/packages/material-ui-icons/lib/Summarize.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9l-6-6zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 1V4.5l5.5 5.5H14z" -}), 'Summarize'); \ No newline at end of file +}), 'Summarize'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SummarizeOutlined.js b/packages/material-ui-icons/lib/SummarizeOutlined.js index f56dc2e466281d..d5c28ae16ab62d 100644 --- a/packages/material-ui-icons/lib/SummarizeOutlined.js +++ b/packages/material-ui-icons/lib/SummarizeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9l-6-6zM5 19V5h9v5h5v9H5zM9 8c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm0 4c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm0 4c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" -}), 'SummarizeOutlined'); \ No newline at end of file +}), 'SummarizeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SummarizeRounded.js b/packages/material-ui-icons/lib/SummarizeRounded.js index 1b01743ac38c46..2e04d12428500b 100644 --- a/packages/material-ui-icons/lib/SummarizeRounded.js +++ b/packages/material-ui-icons/lib/SummarizeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.59 3.59c-.38-.38-.89-.59-1.42-.59H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0V4.5l5.5 5.5H15c-.55 0-1-.45-1-1z" -}), 'SummarizeRounded'); \ No newline at end of file +}), 'SummarizeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SummarizeSharp.js b/packages/material-ui-icons/lib/SummarizeSharp.js index 884ebc33db5fbf..62401735a94d08 100644 --- a/packages/material-ui-icons/lib/SummarizeSharp.js +++ b/packages/material-ui-icons/lib/SummarizeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H3v18h18V9l-6-6zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 1V4.5l5.5 5.5H14z" -}), 'SummarizeSharp'); \ No newline at end of file +}), 'SummarizeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SummarizeTwoTone.js b/packages/material-ui-icons/lib/SummarizeTwoTone.js index 7d04dd77128aa1..82d8740cda672e 100644 --- a/packages/material-ui-icons/lib/SummarizeTwoTone.js +++ b/packages/material-ui-icons/lib/SummarizeTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 5H5v14h14v-9h-5V5zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "8", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9l-6-6zm4 16H5V5h9v5h5v9z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "12", r: "1" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8", cy: "16", r: "1" -}, "4")], 'SummarizeTwoTone'); \ No newline at end of file +}, "4")], 'SummarizeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Superscript.js b/packages/material-ui-icons/lib/Superscript.js index d9412e85f73e49..69f3c137c6311e 100644 --- a/packages/material-ui-icons/lib/Superscript.js +++ b/packages/material-ui-icons/lib/Superscript.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7h-2v1h3v1h-4V7c0-.55.45-1 1-1h2V5h-3V4h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" -}), 'Superscript'); \ No newline at end of file +}), 'Superscript'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SuperscriptOutlined.js b/packages/material-ui-icons/lib/SuperscriptOutlined.js index 6679614baff32c..fa2bc365693093 100644 --- a/packages/material-ui-icons/lib/SuperscriptOutlined.js +++ b/packages/material-ui-icons/lib/SuperscriptOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7h-2v1h3v1h-4V7c0-.55.45-1 1-1h2V5h-3V4h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" -}), 'SuperscriptOutlined'); \ No newline at end of file +}), 'SuperscriptOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SuperscriptRounded.js b/packages/material-ui-icons/lib/SuperscriptRounded.js index f7c3fecb93c64f..4728b7eb635a67 100644 --- a/packages/material-ui-icons/lib/SuperscriptRounded.js +++ b/packages/material-ui-icons/lib/SuperscriptRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.51 12.73 7.3 7.72C6.82 6.97 7.35 6 8.23 6c.39 0 .74.2.95.53l2.76 4.46h.12l2.74-4.45c.2-.34.56-.54.95-.54.88 0 1.42.98.94 1.72l-3.23 5 3.55 5.55c.49.75-.05 1.73-.93 1.73-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.21.32-.56.52-.95.52-.88 0-1.42-.97-.94-1.72l3.53-5.55zM23 8.5c0-.28-.22-.5-.5-.5H20V7h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5z" -}), 'SuperscriptRounded'); \ No newline at end of file +}), 'SuperscriptRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SuperscriptSharp.js b/packages/material-ui-icons/lib/SuperscriptSharp.js index bea7bc61353b25..4fa462bd18111f 100644 --- a/packages/material-ui-icons/lib/SuperscriptSharp.js +++ b/packages/material-ui-icons/lib/SuperscriptSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 7v1h3v1h-4V6h3V5h-3V4h4v3h-3zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" -}), 'SuperscriptSharp'); \ No newline at end of file +}), 'SuperscriptSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SuperscriptTwoTone.js b/packages/material-ui-icons/lib/SuperscriptTwoTone.js index b13b9d1da71bbd..c196be054a278d 100644 --- a/packages/material-ui-icons/lib/SuperscriptTwoTone.js +++ b/packages/material-ui-icons/lib/SuperscriptTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 7h-2v1h3v1h-4V7c0-.55.45-1 1-1h2V5h-3V4h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" -}), 'SuperscriptTwoTone'); \ No newline at end of file +}), 'SuperscriptTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisedUserCircle.js b/packages/material-ui-icons/lib/SupervisedUserCircle.js index e5dbd8e03d4845..7ec6d701f82c09 100644 --- a/packages/material-ui-icons/lib/SupervisedUserCircle.js +++ b/packages/material-ui-icons/lib/SupervisedUserCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm3.61 6.34c1.07 0 1.93.86 1.93 1.93 0 1.07-.86 1.93-1.93 1.93-1.07 0-1.93-.86-1.93-1.93-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36 0 1.3-1.06 2.36-2.36 2.36s-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM11.99 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15-1.17 2.97-4.06 5.09-7.45 5.09z" -}), 'SupervisedUserCircle'); \ No newline at end of file +}), 'SupervisedUserCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisedUserCircleOutlined.js b/packages/material-ui-icons/lib/SupervisedUserCircleOutlined.js index 88a32c91d73aed..e5a3e029a3ef66 100644 --- a/packages/material-ui-icons/lib/SupervisedUserCircleOutlined.js +++ b/packages/material-ui-icons/lib/SupervisedUserCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z" -}), 'SupervisedUserCircleOutlined'); \ No newline at end of file +}), 'SupervisedUserCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisedUserCircleRounded.js b/packages/material-ui-icons/lib/SupervisedUserCircleRounded.js index 82104091e5ee24..e5de65a63ce074 100644 --- a/packages/material-ui-icons/lib/SupervisedUserCircleRounded.js +++ b/packages/material-ui-icons/lib/SupervisedUserCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z" -}), 'SupervisedUserCircleRounded'); \ No newline at end of file +}), 'SupervisedUserCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisedUserCircleSharp.js b/packages/material-ui-icons/lib/SupervisedUserCircleSharp.js index bab8f780d27ff4..4939ae02ff6333 100644 --- a/packages/material-ui-icons/lib/SupervisedUserCircleSharp.js +++ b/packages/material-ui-icons/lib/SupervisedUserCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z" -}), 'SupervisedUserCircleSharp'); \ No newline at end of file +}), 'SupervisedUserCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisedUserCircleTwoTone.js b/packages/material-ui-icons/lib/SupervisedUserCircleTwoTone.js index ebd50c1732dba8..96a6eeefdaef5e 100644 --- a/packages/material-ui-icons/lib/SupervisedUserCircleTwoTone.js +++ b/packages/material-ui-icons/lib/SupervisedUserCircleTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9.5", cy: "10", r: "1", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.5 17.21c0-1.88 2.98-2.7 4.5-2.7.88 0 2.24.27 3.24.87.48-1.02.75-2.16.75-3.37 0-4.41-3.59-8-8-8s-8 3.59-8 8c0 1.23.29 2.39.78 3.43 1.34-.98 3.43-1.43 4.73-1.43.44 0 .97.05 1.53.16-.63.57-1.06 1.22-1.3 1.86-.08 0-.15-.01-.23-.01-1.38 0-2.98.57-3.66 1.11 1.37 1.65 3.39 2.73 5.66 2.86v-2.78zM16 9c1.11 0 2 .89 2 2 0 1.11-.89 2-2 2-1.11 0-2-.89-2-2-.01-1.11.89-2 2-2zm-6.5 4c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z" -}, "2")], 'SupervisedUserCircleTwoTone'); \ No newline at end of file +}, "2")], 'SupervisedUserCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisorAccount.js b/packages/material-ui-icons/lib/SupervisorAccount.js index 52e0a6647ce9ff..93fd0b7c423ae6 100644 --- a/packages/material-ui-icons/lib/SupervisorAccount.js +++ b/packages/material-ui-icons/lib/SupervisorAccount.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7C15.12 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5C7.34 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" -}), 'SupervisorAccount'); \ No newline at end of file +}), 'SupervisorAccount'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisorAccountOutlined.js b/packages/material-ui-icons/lib/SupervisorAccountOutlined.js index 560df3e294576b..a3556c6b03bafd 100644 --- a/packages/material-ui-icons/lib/SupervisorAccountOutlined.js +++ b/packages/material-ui-icons/lib/SupervisorAccountOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z" -}), 'SupervisorAccountOutlined'); \ No newline at end of file +}), 'SupervisorAccountOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisorAccountRounded.js b/packages/material-ui-icons/lib/SupervisorAccountRounded.js index 88f67d124c6f58..79807d10a0d03f 100644 --- a/packages/material-ui-icons/lib/SupervisorAccountRounded.js +++ b/packages/material-ui-icons/lib/SupervisorAccountRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V18c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h6v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" -}), 'SupervisorAccountRounded'); \ No newline at end of file +}), 'SupervisorAccountRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisorAccountSharp.js b/packages/material-ui-icons/lib/SupervisorAccountSharp.js index ffb7b58ba95e0b..4ff87230af454a 100644 --- a/packages/material-ui-icons/lib/SupervisorAccountSharp.js +++ b/packages/material-ui-icons/lib/SupervisorAccountSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" -}), 'SupervisorAccountSharp'); \ No newline at end of file +}), 'SupervisorAccountSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupervisorAccountTwoTone.js b/packages/material-ui-icons/lib/SupervisorAccountTwoTone.js index f5932c2ef02245..e3f78fdbf3da13 100644 --- a/packages/material-ui-icons/lib/SupervisorAccountTwoTone.js +++ b/packages/material-ui-icons/lib/SupervisorAccountTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "8.5", r: "1.5", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.77 17h4.28c.01-.06.12-.58.29-.99-.11 0-.23-.01-.34-.01-1.53 0-3.25.5-4.23 1z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z" -}, "2")], 'SupervisorAccountTwoTone'); \ No newline at end of file +}, "2")], 'SupervisorAccountTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Support.js b/packages/material-ui-icons/lib/Support.js index 061f6ed3e3d39a..95f5b3209aaedf 100644 --- a/packages/material-ui-icons/lib/Support.js +++ b/packages/material-ui-icons/lib/Support.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" -}), 'Support'); \ No newline at end of file +}), 'Support'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportAgent.js b/packages/material-ui-icons/lib/SupportAgent.js index 1fe1ec6d3d92c6..ddcaf8a678b899 100644 --- a/packages/material-ui-icons/lib/SupportAgent.js +++ b/packages/material-ui-icons/lib/SupportAgent.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" -}, "3")], 'SupportAgent'); \ No newline at end of file +}, "3")], 'SupportAgent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportAgentOutlined.js b/packages/material-ui-icons/lib/SupportAgentOutlined.js index 1bfca29f3fb37e..b2f3de0b5b678c 100644 --- a/packages/material-ui-icons/lib/SupportAgentOutlined.js +++ b/packages/material-ui-icons/lib/SupportAgentOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" -}, "3")], 'SupportAgentOutlined'); \ No newline at end of file +}, "3")], 'SupportAgentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportAgentRounded.js b/packages/material-ui-icons/lib/SupportAgentRounded.js index e6ada2db8bca80..ddf8d0cd616d2e 100644 --- a/packages/material-ui-icons/lib/SupportAgentRounded.js +++ b/packages/material-ui-icons/lib/SupportAgentRounded.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2 .55 0 1-.45 1-1v-4.81c0-3.83 2.95-7.18 6.78-7.29 3.96-.12 7.22 3.06 7.22 7V19h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" -}, "3")], 'SupportAgentRounded'); \ No newline at end of file +}, "3")], 'SupportAgentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportAgentSharp.js b/packages/material-ui-icons/lib/SupportAgentSharp.js index 14d31e5049789a..10acf3b76696b3 100644 --- a/packages/material-ui-icons/lib/SupportAgentSharp.js +++ b/packages/material-ui-icons/lib/SupportAgentSharp.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.99 12c-.11-5.37-4.31-9-8.99-9-4.61 0-8.85 3.53-8.99 9H2v6h3v-5.81c0-3.83 2.95-7.18 6.78-7.29 3.96-.12 7.22 3.06 7.22 7V19h-8v2h10v-3h1v-6h-1.01z" -}, "3")], 'SupportAgentSharp'); \ No newline at end of file +}, "3")], 'SupportAgentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportAgentTwoTone.js b/packages/material-ui-icons/lib/SupportAgentTwoTone.js index 0761a21d4d538e..4d4991ee50bad5 100644 --- a/packages/material-ui-icons/lib/SupportAgentTwoTone.js +++ b/packages/material-ui-icons/lib/SupportAgentTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13", r: "1" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "13", r: "1" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" -}, "3")], 'SupportAgentTwoTone'); \ No newline at end of file +}, "3")], 'SupportAgentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportOutlined.js b/packages/material-ui-icons/lib/SupportOutlined.js index 653110bffff30e..feb24b4195e726 100644 --- a/packages/material-ui-icons/lib/SupportOutlined.js +++ b/packages/material-ui-icons/lib/SupportOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" -}), 'SupportOutlined'); \ No newline at end of file +}), 'SupportOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportRounded.js b/packages/material-ui-icons/lib/SupportRounded.js index e7cef9d0a17716..601c55168a2c6f 100644 --- a/packages/material-ui-icons/lib/SupportRounded.js +++ b/packages/material-ui-icons/lib/SupportRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" -}), 'SupportRounded'); \ No newline at end of file +}), 'SupportRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportSharp.js b/packages/material-ui-icons/lib/SupportSharp.js index 262e7c46631702..d95adfb7bd3368 100644 --- a/packages/material-ui-icons/lib/SupportSharp.js +++ b/packages/material-ui-icons/lib/SupportSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" -}), 'SupportSharp'); \ No newline at end of file +}), 'SupportSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SupportTwoTone.js b/packages/material-ui-icons/lib/SupportTwoTone.js index 7012b8fa735612..9e671c2afc077e 100644 --- a/packages/material-ui-icons/lib/SupportTwoTone.js +++ b/packages/material-ui-icons/lib/SupportTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.3 7.32 9.13 4.54c-2.11.81-3.78 2.48-4.59 4.59l2.78 1.15c.51-1.38 1.6-2.46 2.98-2.96zm-2.98 6.4-2.78 1.15c.81 2.1 2.48 3.78 4.59 4.59l1.17-2.78c-1.39-.5-2.47-1.59-2.98-2.96zm9.35-3.45 2.78-1.15c-.81-2.1-2.48-3.77-4.58-4.58l-1.15 2.78c1.37.51 2.45 1.58 2.95 2.95zm.01 3.44c-.5 1.37-1.58 2.46-2.95 2.97l1.15 2.78c2.1-.81 3.77-2.48 4.58-4.58l-2.78-1.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.87 2.54c2.1.81 3.77 2.48 4.58 4.58l-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.79zm-5.74 0 1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zm0 14.92c-2.1-.81-3.78-2.48-4.59-4.59l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.16 2.78zM9 12c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3zm5.88 7.46-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" -}, "1")], 'SupportTwoTone'); \ No newline at end of file +}, "1")], 'SupportTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Surfing.js b/packages/material-ui-icons/lib/Surfing.js index f66741af0bfb75..a3c7d4559258b6 100644 --- a/packages/material-ui-icons/lib/Surfing.js +++ b/packages/material-ui-icons/lib/Surfing.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.53-3.1c-.11-.67.18-1.38.78-1.79l2.15-1.45-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" -}), 'Surfing'); \ No newline at end of file +}), 'Surfing'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurfingOutlined.js b/packages/material-ui-icons/lib/SurfingOutlined.js index 2dccdb6fc9354f..64af4590f09a3f 100644 --- a/packages/material-ui-icons/lib/SurfingOutlined.js +++ b/packages/material-ui-icons/lib/SurfingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.53-3.1c-.11-.67.18-1.38.78-1.79l2.15-1.45-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" -}), 'SurfingOutlined'); \ No newline at end of file +}), 'SurfingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurfingRounded.js b/packages/material-ui-icons/lib/SurfingRounded.js index adf89f986b082a..58e755d8f98b09 100644 --- a/packages/material-ui-icons/lib/SurfingRounded.js +++ b/packages/material-ui-icons/lib/SurfingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM22 22c0 .55-.45 1-1 1-1.03 0-2.05-.25-3-.75-1.92 1.02-4.18 1-6.09-.05-1.79.87-3.92.98-5.58-.14C5.3 22.69 4.15 23 3 23c-.55 0-1-.45-1-1s.45-1 1-1c.87 0 1.73-.24 2.53-.7.29-.16.65-.17.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 .8.46 1.66.7 2.53.7.55 0 1 .45 1 1zM8.04 18.86c.31.09.63.14.96.14.9 0 1.72-.37 2.39-.91.35-.28.87-.28 1.22 0 .67.54 1.49.91 2.39.91s1.72-.37 2.39-.91c.03-.03.07-.05.11-.07-.46-.39-.97-.79-1.5-1.17v-2.87c0-.61-.28-1.19-.77-1.57L12.17 10l2.25-1.52c1.03 1.79 2.82 3.08 4.93 3.43.6.1 1.14-.39 1.14-1 0-.49-.36-.9-.84-.98-1.5-.25-2.78-1.18-3.51-2.46l-.88-1.55c-.29-.52-.77-.8-1.22-.89l-4.73-.88c-.52-.1-1.06.02-1.5.32L5.82 5.83c-.45.32-.57.94-.26 1.39.32.46.94.58 1.4.27l1.99-1.37 2 .37L8.8 7.94c-.6.41-.89 1.12-.77 1.79l.52 3.1c-1.42-.52-2.72-.83-3.7-.83-.84 0-1.85.25-1.85 1.28 0 1.44 2.19 3.62 5.04 5.58zM14 14v1.5c-.78-.48-2.34-1.33-3.26-1.75l-.44-2.65L14 14z" -}), 'SurfingRounded'); \ No newline at end of file +}), 'SurfingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurfingSharp.js b/packages/material-ui-icons/lib/SurfingSharp.js index f2a74128beb41f..935ae0b8008c82 100644 --- a/packages/material-ui-icons/lib/SurfingSharp.js +++ b/packages/material-ui-icons/lib/SurfingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.72-4.24 3.12-2.1-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" -}), 'SurfingSharp'); \ No newline at end of file +}), 'SurfingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurfingTwoTone.js b/packages/material-ui-icons/lib/SurfingTwoTone.js index 258d8bda533453..f998bf5d0068bf 100644 --- a/packages/material-ui-icons/lib/SurfingTwoTone.js +++ b/packages/material-ui-icons/lib/SurfingTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.53-3.1c-.11-.67.18-1.38.78-1.79l2.15-1.45-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" -}), 'SurfingTwoTone'); \ No newline at end of file +}), 'SurfingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurroundSound.js b/packages/material-ui-icons/lib/SurroundSound.js index 1a2a0e7961d99a..706bb5e96148a8 100644 --- a/packages/material-ui-icons/lib/SurroundSound.js +++ b/packages/material-ui-icons/lib/SurroundSound.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12c0-2.05.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12c0 2.05-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'SurroundSound'); \ No newline at end of file +}), 'SurroundSound'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurroundSoundOutlined.js b/packages/material-ui-icons/lib/SurroundSoundOutlined.js index 2fd931d3afef85..aea67708ee2e08 100644 --- a/packages/material-ui-icons/lib/SurroundSoundOutlined.js +++ b/packages/material-ui-icons/lib/SurroundSoundOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.29 15.71C7.27 14.69 6.75 13.35 6.75 12s.52-2.69 1.53-3.72L7.05 7.05C5.68 8.41 5 10.21 5 12s.68 3.59 2.06 4.94l1.23-1.23zM12 15.5c1.93 0 3.5-1.57 3.5-3.5S13.93 8.5 12 8.5 8.5 10.07 8.5 12s1.57 3.5 3.5 3.5zm0-5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.72 5.22 1.23 1.23C18.32 15.59 19 13.79 19 12s-.68-3.59-2.06-4.94l-1.23 1.23c1.02 1.02 1.54 2.36 1.54 3.71s-.52 2.69-1.53 3.72z" -}, "1")], 'SurroundSoundOutlined'); \ No newline at end of file +}, "1")], 'SurroundSoundOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurroundSoundRounded.js b/packages/material-ui-icons/lib/SurroundSoundRounded.js index e979e366006588..8532e56bc6e586 100644 --- a/packages/material-ui-icons/lib/SurroundSoundRounded.js +++ b/packages/material-ui-icons/lib/SurroundSoundRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.11 16.89c-.43.43-1.14.39-1.51-.09C4.53 15.39 4 13.69 4 12s.53-3.38 1.59-4.8c.37-.48 1.08-.53 1.51-.1.35.35.39.9.1 1.29C6.4 9.46 6 10.73 6 12s.4 2.53 1.2 3.6c.3.39.26.94-.09 1.29zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm4.9.9c-.35-.35-.39-.9-.09-1.29C17.6 14.54 18 13.27 18 12s-.4-2.53-1.2-3.6c-.3-.39-.26-.95.09-1.3.43-.43 1.14-.39 1.51.09 1.07 1.41 1.6 3.1 1.6 4.8 0 1.69-.53 3.38-1.59 4.8-.37.49-1.08.54-1.51.11zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'SurroundSoundRounded'); \ No newline at end of file +}), 'SurroundSoundRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurroundSoundSharp.js b/packages/material-ui-icons/lib/SurroundSoundSharp.js index 47f2596d5f638f..3e8e535ba05bd7 100644 --- a/packages/material-ui-icons/lib/SurroundSoundSharp.js +++ b/packages/material-ui-icons/lib/SurroundSoundSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12s.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12s-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" -}), 'SurroundSoundSharp'); \ No newline at end of file +}), 'SurroundSoundSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SurroundSoundTwoTone.js b/packages/material-ui-icons/lib/SurroundSoundTwoTone.js index e4c60db7d79178..ffb4ffccea57bb 100644 --- a/packages/material-ui-icons/lib/SurroundSoundTwoTone.js +++ b/packages/material-ui-icons/lib/SurroundSoundTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h16V6H4v12zM16.94 7.06C18.32 8.41 19 10.21 19 12s-.68 3.59-2.05 4.95l-1.23-1.23c1.02-1.03 1.53-2.37 1.53-3.72s-.52-2.69-1.54-3.71l1.23-1.23zM12 8.5c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5zM7.05 7.05l1.23 1.23C7.27 9.31 6.75 10.65 6.75 12s.52 2.69 1.54 3.71l-1.23 1.23C5.68 15.59 5 13.79 5 12s.68-3.59 2.05-4.95z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.29 15.71C7.27 14.69 6.75 13.35 6.75 12s.52-2.69 1.53-3.72L7.05 7.05C5.68 8.41 5 10.21 5 12s.68 3.59 2.06 4.94l1.23-1.23zM12 15.5c1.93 0 3.5-1.57 3.5-3.5S13.93 8.5 12 8.5 8.5 10.07 8.5 12s1.57 3.5 3.5 3.5zm0-5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.72 5.22 1.23 1.23C18.32 15.59 19 13.79 19 12s-.68-3.59-2.06-4.94l-1.23 1.23c1.02 1.02 1.54 2.36 1.54 3.71s-.52 2.69-1.53 3.72z" -}, "2")], 'SurroundSoundTwoTone'); \ No newline at end of file +}, "2")], 'SurroundSoundTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapCalls.js b/packages/material-ui-icons/lib/SwapCalls.js index 30a560625d5605..59d50ec2db32fc 100644 --- a/packages/material-ui-icons/lib/SwapCalls.js +++ b/packages/material-ui-icons/lib/SwapCalls.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" -}), 'SwapCalls'); \ No newline at end of file +}), 'SwapCalls'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapCallsOutlined.js b/packages/material-ui-icons/lib/SwapCallsOutlined.js index e8f8029dfece42..29b2463fe7f141 100644 --- a/packages/material-ui-icons/lib/SwapCallsOutlined.js +++ b/packages/material-ui-icons/lib/SwapCallsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" -}), 'SwapCallsOutlined'); \ No newline at end of file +}), 'SwapCallsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapCallsRounded.js b/packages/material-ui-icons/lib/SwapCallsRounded.js index 36e96dc6833f17..9d62b29beb019f 100644 --- a/packages/material-ui-icons/lib/SwapCallsRounded.js +++ b/packages/material-ui-icons/lib/SwapCallsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.65 4.35-2.79 2.79c-.32.32-.1.86.35.86H17v6.88c0 1-.67 1.93-1.66 2.09-1.25.21-2.34-.76-2.34-1.97V8.17c0-2.09-1.53-3.95-3.61-4.15C7.01 3.79 5 5.66 5 8v7H3.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85H7V8.12c0-1 .67-1.93 1.66-2.09C9.91 5.82 11 6.79 11 8v6.83c0 2.09 1.53 3.95 3.61 4.15C16.99 19.21 19 17.34 19 15V8h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z" -}), 'SwapCallsRounded'); \ No newline at end of file +}), 'SwapCallsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapCallsSharp.js b/packages/material-ui-icons/lib/SwapCallsSharp.js index 7639449174893d..a0a1a314333275 100644 --- a/packages/material-ui-icons/lib/SwapCallsSharp.js +++ b/packages/material-ui-icons/lib/SwapCallsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" -}), 'SwapCallsSharp'); \ No newline at end of file +}), 'SwapCallsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapCallsTwoTone.js b/packages/material-ui-icons/lib/SwapCallsTwoTone.js index a1a135d762a21b..42ed1231988691 100644 --- a/packages/material-ui-icons/lib/SwapCallsTwoTone.js +++ b/packages/material-ui-icons/lib/SwapCallsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4-4 4z" -}), 'SwapCallsTwoTone'); \ No newline at end of file +}), 'SwapCallsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHoriz.js b/packages/material-ui-icons/lib/SwapHoriz.js index 2fb49cae757096..49cdc232ed2841 100644 --- a/packages/material-ui-icons/lib/SwapHoriz.js +++ b/packages/material-ui-icons/lib/SwapHoriz.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" -}), 'SwapHoriz'); \ No newline at end of file +}), 'SwapHoriz'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizOutlined.js b/packages/material-ui-icons/lib/SwapHorizOutlined.js index 198f954ccc34cd..c73658b6a70a5a 100644 --- a/packages/material-ui-icons/lib/SwapHorizOutlined.js +++ b/packages/material-ui-icons/lib/SwapHorizOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" -}), 'SwapHorizOutlined'); \ No newline at end of file +}), 'SwapHorizOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizRounded.js b/packages/material-ui-icons/lib/SwapHorizRounded.js index 63c5b09edf003a..9eb9a1fe4c9857 100644 --- a/packages/material-ui-icons/lib/SwapHorizRounded.js +++ b/packages/material-ui-icons/lib/SwapHorizRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.14 11.86-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.32.85.09.85-.35V16H13c.55 0 1-.45 1-1s-.45-1-1-1H6.99v-1.79c0-.45-.54-.67-.85-.35zm14.51-3.21-2.78-2.79c-.31-.32-.85-.09-.85.35V8H11c-.55 0-1 .45-1 1s.45 1 1 1h6.01v1.79c0 .45.54.67.85.35l2.78-2.79c.2-.19.2-.51.01-.7z" -}), 'SwapHorizRounded'); \ No newline at end of file +}), 'SwapHorizRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizSharp.js b/packages/material-ui-icons/lib/SwapHorizSharp.js index d677f409667b6d..7d1b86cf9244b5 100644 --- a/packages/material-ui-icons/lib/SwapHorizSharp.js +++ b/packages/material-ui-icons/lib/SwapHorizSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" -}), 'SwapHorizSharp'); \ No newline at end of file +}), 'SwapHorizSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizTwoTone.js b/packages/material-ui-icons/lib/SwapHorizTwoTone.js index 646b212352fa4a..bbbd565c990574 100644 --- a/packages/material-ui-icons/lib/SwapHorizTwoTone.js +++ b/packages/material-ui-icons/lib/SwapHorizTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" -}), 'SwapHorizTwoTone'); \ No newline at end of file +}), 'SwapHorizTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizontalCircle.js b/packages/material-ui-icons/lib/SwapHorizontalCircle.js index 4c1095abc90f61..41934801ec3a3e 100644 --- a/packages/material-ui-icons/lib/SwapHorizontalCircle.js +++ b/packages/material-ui-icons/lib/SwapHorizontalCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5 3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z" -}), 'SwapHorizontalCircle'); \ No newline at end of file +}), 'SwapHorizontalCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizontalCircleOutlined.js b/packages/material-ui-icons/lib/SwapHorizontalCircleOutlined.js index 834227b42056e2..67c02e0281762c 100644 --- a/packages/material-ui-icons/lib/SwapHorizontalCircleOutlined.js +++ b/packages/material-ui-icons/lib/SwapHorizontalCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z" -}), 'SwapHorizontalCircleOutlined'); \ No newline at end of file +}), 'SwapHorizontalCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizontalCircleRounded.js b/packages/material-ui-icons/lib/SwapHorizontalCircleRounded.js index 3954a45d2b682f..2aac271a1d7e4f 100644 --- a/packages/material-ui-icons/lib/SwapHorizontalCircleRounded.js +++ b/packages/material-ui-icons/lib/SwapHorizontalCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5 3.15 3.15c.2.2.2.51 0 .71L15 13.5V11h-4V9h4V6.5zm-6 11-3.15-3.15c-.2-.2-.2-.51 0-.71L9 10.5V13h4v2H9v2.5z" -}), 'SwapHorizontalCircleRounded'); \ No newline at end of file +}), 'SwapHorizontalCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizontalCircleSharp.js b/packages/material-ui-icons/lib/SwapHorizontalCircleSharp.js index 6906c164e48540..dc109334715ed4 100644 --- a/packages/material-ui-icons/lib/SwapHorizontalCircleSharp.js +++ b/packages/material-ui-icons/lib/SwapHorizontalCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5 3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z" -}), 'SwapHorizontalCircleSharp'); \ No newline at end of file +}), 'SwapHorizontalCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapHorizontalCircleTwoTone.js b/packages/material-ui-icons/lib/SwapHorizontalCircleTwoTone.js index 41529263aad213..3b93182823b56d 100644 --- a/packages/material-ui-icons/lib/SwapHorizontalCircleTwoTone.js +++ b/packages/material-ui-icons/lib/SwapHorizontalCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 11H9v2.5L5.5 14 9 10.5V13h4v2zm2-1.5V11h-4V9h4V6.5l3.5 3.5-3.5 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z" -}, "1")], 'SwapHorizontalCircleTwoTone'); \ No newline at end of file +}, "1")], 'SwapHorizontalCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVert.js b/packages/material-ui-icons/lib/SwapVert.js index 953f863eb622c4..6a7849e4320df4 100644 --- a/packages/material-ui-icons/lib/SwapVert.js +++ b/packages/material-ui-icons/lib/SwapVert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" -}), 'SwapVert'); \ No newline at end of file +}), 'SwapVert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVertOutlined.js b/packages/material-ui-icons/lib/SwapVertOutlined.js index d3f09ae21c8113..06631e18ef1b11 100644 --- a/packages/material-ui-icons/lib/SwapVertOutlined.js +++ b/packages/material-ui-icons/lib/SwapVertOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" -}), 'SwapVertOutlined'); \ No newline at end of file +}), 'SwapVertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVertRounded.js b/packages/material-ui-icons/lib/SwapVertRounded.js index 5762621048ed75..ad7ae330df1565 100644 --- a/packages/material-ui-icons/lib/SwapVertRounded.js +++ b/packages/material-ui-icons/lib/SwapVertRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 17.01V11c0-.55-.45-1-1-1s-1 .45-1 1v6.01h-1.79c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H16zM8.65 3.35 5.86 6.14c-.32.31-.1.85.35.85H8V13c0 .55.45 1 1 1s1-.45 1-1V6.99h1.79c.45 0 .67-.54.35-.85L9.35 3.35c-.19-.19-.51-.19-.7 0z" -}), 'SwapVertRounded'); \ No newline at end of file +}), 'SwapVertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVertSharp.js b/packages/material-ui-icons/lib/SwapVertSharp.js index 2d92dfc61fb474..adf290558e249c 100644 --- a/packages/material-ui-icons/lib/SwapVertSharp.js +++ b/packages/material-ui-icons/lib/SwapVertSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" -}), 'SwapVertSharp'); \ No newline at end of file +}), 'SwapVertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVertTwoTone.js b/packages/material-ui-icons/lib/SwapVertTwoTone.js index a066cf0111bedd..5182697f61a2da 100644 --- a/packages/material-ui-icons/lib/SwapVertTwoTone.js +++ b/packages/material-ui-icons/lib/SwapVertTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" -}), 'SwapVertTwoTone'); \ No newline at end of file +}), 'SwapVertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVerticalCircle.js b/packages/material-ui-icons/lib/SwapVerticalCircle.js index 1933b6cbe3d567..e8d78a007e46e1 100644 --- a/packages/material-ui-icons/lib/SwapVerticalCircle.js +++ b/packages/material-ui-icons/lib/SwapVerticalCircle.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9 10 5.5 13.5 9H11v4H9V9H6.5zm11 6L14 18.5 10.5 15H13v-4h2v4h2.5z" -}), 'SwapVerticalCircle'); \ No newline at end of file +}), 'SwapVerticalCircle'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVerticalCircleOutlined.js b/packages/material-ui-icons/lib/SwapVerticalCircleOutlined.js index 2eb72991054c78..e7c445ed065209 100644 --- a/packages/material-ui-icons/lib/SwapVerticalCircleOutlined.js +++ b/packages/material-ui-icons/lib/SwapVerticalCircleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM6.5 9 10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z" -}), 'SwapVerticalCircleOutlined'); \ No newline at end of file +}), 'SwapVerticalCircleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVerticalCircleRounded.js b/packages/material-ui-icons/lib/SwapVerticalCircleRounded.js index 273010c4a57221..245ceb5baf513a 100644 --- a/packages/material-ui-icons/lib/SwapVerticalCircleRounded.js +++ b/packages/material-ui-icons/lib/SwapVerticalCircleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9l3.15-3.15c.2-.2.51-.2.71 0L13.5 9H11v4H9V9H6.5zm7.85 9.15c-.2.2-.51.2-.71 0L10.5 15H13v-4h2v4h2.5l-3.15 3.15z" -}), 'SwapVerticalCircleRounded'); \ No newline at end of file +}), 'SwapVerticalCircleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVerticalCircleSharp.js b/packages/material-ui-icons/lib/SwapVerticalCircleSharp.js index c180a6e40bad4e..ea15aa6f34a4a3 100644 --- a/packages/material-ui-icons/lib/SwapVerticalCircleSharp.js +++ b/packages/material-ui-icons/lib/SwapVerticalCircleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9 10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z" -}), 'SwapVerticalCircleSharp'); \ No newline at end of file +}), 'SwapVerticalCircleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwapVerticalCircleTwoTone.js b/packages/material-ui-icons/lib/SwapVerticalCircleTwoTone.js index 5e9da6046417bf..c82f29ac8fdef8 100644 --- a/packages/material-ui-icons/lib/SwapVerticalCircleTwoTone.js +++ b/packages/material-ui-icons/lib/SwapVerticalCircleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM6.5 9 10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-7V9h2.5L10 5.5 6.5 9H9v4zm4-2h-2v4h-2.5l3.5 3.5 3.5-3.5H15z" -}, "1")], 'SwapVerticalCircleTwoTone'); \ No newline at end of file +}, "1")], 'SwapVerticalCircleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Swipe.js b/packages/material-ui-icons/lib/Swipe.js index 3a9d975065dba8..a88c6a1f81f1f1 100644 --- a/packages/material-ui-icons/lib/Swipe.js +++ b/packages/material-ui-icons/lib/Swipe.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.89 14.75-4.09-2.04c-.28-.14-.58-.21-.89-.21H13v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-3.25-.74c-.33-.07-.68.03-.92.28l-.83.84 4.54 4.79c.38.38 1.14.59 1.67.59h6.16c1 0 1.84-.73 1.98-1.72l.63-4.46c.12-.85-.32-1.68-1.09-2.07z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" -}, "1")], 'Swipe'); \ No newline at end of file +}, "1")], 'Swipe'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwipeOutlined.js b/packages/material-ui-icons/lib/SwipeOutlined.js index 4e2901875e7d46..e3e14c0e84d7d7 100644 --- a/packages/material-ui-icons/lib/SwipeOutlined.js +++ b/packages/material-ui-icons/lib/SwipeOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.5 2v2.02C18.18 2.13 15.22 1 12 1S5.82 2.13 3.5 4.02V2H2v5h5V5.5H4.09c2.11-1.86 4.88-3 7.91-3s5.79 1.14 7.91 3H17V7h5V2h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.89 13.77-3.8-1.67c-.13-.06-.28-.1-.44-.1H14V7.63c0-1.32-.96-2.5-2.27-2.62C10.25 4.88 9 6.05 9 7.5v8.15l-1.87-.4c-.19-.03-1.02-.15-1.73.56L4 17.22l5.12 5.19c.37.38.88.59 1.41.59h6.55c.98 0 1.81-.7 1.97-1.67l.92-5.44c.15-.86-.29-1.72-1.08-2.12zM18 15.56 17.08 21h-6.55l-3.7-3.78 4.17.89V7.5c0-.28.22-.5.5-.5s.5.22.5.5v6.18h1.76L18 15.56z" -}, "1")], 'SwipeOutlined'); \ No newline at end of file +}, "1")], 'SwipeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwipeRounded.js b/packages/material-ui-icons/lib/SwipeRounded.js index 359b1786c88fd4..bff63db2ca91fd 100644 --- a/packages/material-ui-icons/lib/SwipeRounded.js +++ b/packages/material-ui-icons/lib/SwipeRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.15 2.85-1.02 1.02C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2.85 2.85c-.31-.31-.85-.09-.85.36V6.5c0 .28.22.5.5.5h3.29c.45 0 .67-.54.35-.85L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43l-1.22 1.22c-.31.31-.09.85.36.85h3.29c.28 0 .5-.22.5-.5V3.21c0-.45-.54-.67-.85-.36z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 12.71c-.28-.14-.58-.21-.89-.21H13v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-3.44-.72c-.37-.08-.76.04-1.03.31-.43.44-.43 1.14.01 1.58l4.01 4.01c.37.37.88.58 1.41.58h6.41c1 0 1.84-.73 1.98-1.72l.63-4.46c.12-.85-.32-1.69-1.09-2.07l-4.39-2.04z" -}, "1")], 'SwipeRounded'); \ No newline at end of file +}, "1")], 'SwipeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwipeSharp.js b/packages/material-ui-icons/lib/SwipeSharp.js index e04798c4dfd15d..eb94a4c1eac8bf 100644 --- a/packages/material-ui-icons/lib/SwipeSharp.js +++ b/packages/material-ui-icons/lib/SwipeSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 12.5v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-4.04-.85-1.21 1.23L10.13 23h8.97l1.09-7.64-6.11-2.86H13z" -}, "1")], 'SwipeSharp'); \ No newline at end of file +}, "1")], 'SwipeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwipeTwoTone.js b/packages/material-ui-icons/lib/SwipeTwoTone.js index 4b848103576716..ee4ab0fb08f57c 100644 --- a/packages/material-ui-icons/lib/SwipeTwoTone.js +++ b/packages/material-ui-icons/lib/SwipeTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13.68V7.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v10.61l-4.17-.89 3.7 3.78h6.55l.92-5.44-4.24-1.89H12z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.89 13.77-3.8-1.67c-.13-.06-.28-.1-.44-.1H14V7.63c0-1.32-.96-2.5-2.27-2.62C10.25 4.88 9 6.05 9 7.5v8.15l-1.87-.4c-.19-.03-1.02-.15-1.73.56L4 17.22l5.12 5.19c.37.38.88.59 1.41.59h6.55c.98 0 1.81-.7 1.97-1.67l.92-5.44c.15-.86-.29-1.72-1.08-2.12zM17.08 21h-6.55l-3.7-3.78 4.17.89V7.5c0-.28.22-.5.5-.5s.5.22.5.5v6.18h1.76L18 15.56 17.08 21z" -}, "2")], 'SwipeTwoTone'); \ No newline at end of file +}, "2")], 'SwipeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchAccount.js b/packages/material-ui-icons/lib/SwitchAccount.js index d0e9376ead1d51..5f959ce4314264 100644 --- a/packages/material-ui-icons/lib/SwitchAccount.js +++ b/packages/material-ui-icons/lib/SwitchAccount.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H8v-1.5c0-1.99 4-3 6-3s6 1.01 6 3V16z" -}), 'SwitchAccount'); \ No newline at end of file +}), 'SwitchAccount'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchAccountOutlined.js b/packages/material-ui-icons/lib/SwitchAccountOutlined.js index e5b0b127a240e8..9061dfdd6e4c9a 100644 --- a/packages/material-ui-icons/lib/SwitchAccountOutlined.js +++ b/packages/material-ui-icons/lib/SwitchAccountOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6-5H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9.31 14c.95-.63 2.09-1 3.31-1s2.36.37 3.31 1h-6.62zm9.31-.27C18.53 14.06 16.4 13 14 13s-4.53 1.06-6 2.73V4h12v11.73z" -}), 'SwitchAccountOutlined'); \ No newline at end of file +}), 'SwitchAccountOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchAccountRounded.js b/packages/material-ui-icons/lib/SwitchAccountRounded.js index 4d9ddbfc95a8cf..b2c302f7e033c1 100644 --- a/packages/material-ui-icons/lib/SwitchAccountRounded.js +++ b/packages/material-ui-icons/lib/SwitchAccountRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 20H4V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1zm3-18H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zM7.76 16c1.47-1.83 3.71-3 6.24-3s4.77 1.17 6.24 3H7.76z" -}), 'SwitchAccountRounded'); \ No newline at end of file +}), 'SwitchAccountRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchAccountSharp.js b/packages/material-ui-icons/lib/SwitchAccountSharp.js index 520109175d57fa..445ea2079bb898 100644 --- a/packages/material-ui-icons/lib/SwitchAccountSharp.js +++ b/packages/material-ui-icons/lib/SwitchAccountSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4V6zm2-4v16h16V2H6zm8 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zM7.76 16c1.47-1.83 3.71-3 6.24-3s4.77 1.17 6.24 3H7.76z" -}), 'SwitchAccountSharp'); \ No newline at end of file +}), 'SwitchAccountSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchAccountTwoTone.js b/packages/material-ui-icons/lib/SwitchAccountTwoTone.js index 3d13359759cdf7..35571626e7c363 100644 --- a/packages/material-ui-icons/lib/SwitchAccountTwoTone.js +++ b/packages/material-ui-icons/lib/SwitchAccountTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 15.73C9.47 14.06 11.6 13 14 13s4.53 1.06 6 2.73V4H8v11.73zM14 5c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6-5H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9.31 14c.95-.63 2.09-1 3.31-1s2.36.37 3.31 1h-6.62zm9.31-.27C18.53 14.06 16.4 13 14 13s-4.53 1.06-6 2.73V4h12v11.73z" -}, "1")], 'SwitchAccountTwoTone'); \ No newline at end of file +}, "1")], 'SwitchAccountTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchCamera.js b/packages/material-ui-icons/lib/SwitchCamera.js index 34650cf9b3f49b..f5b24d629a0712 100644 --- a/packages/material-ui-icons/lib/SwitchCamera.js +++ b/packages/material-ui-icons/lib/SwitchCamera.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" -}), 'SwitchCamera'); \ No newline at end of file +}), 'SwitchCamera'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchCameraOutlined.js b/packages/material-ui-icons/lib/SwitchCameraOutlined.js index 1a252f98547eea..6790e83e728a74 100644 --- a/packages/material-ui-icons/lib/SwitchCameraOutlined.js +++ b/packages/material-ui-icons/lib/SwitchCameraOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.88 4h4.24l1.83 2H20v12H4V6h4.05" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 11H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z" -}, "1")], 'SwitchCameraOutlined'); \ No newline at end of file +}, "1")], 'SwitchCameraOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchCameraRounded.js b/packages/material-ui-icons/lib/SwitchCameraRounded.js index 8ad1dcc4973013..5df21178515fcf 100644 --- a/packages/material-ui-icons/lib/SwitchCameraRounded.js +++ b/packages/material-ui-icons/lib/SwitchCameraRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5l-3.15-3.15c-.2-.2-.2-.51 0-.71L9 8.5V11h6V8.5l3.15 3.15c.2.2.2.51 0 .71L15 15.5z" -}), 'SwitchCameraRounded'); \ No newline at end of file +}), 'SwitchCameraRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchCameraSharp.js b/packages/material-ui-icons/lib/SwitchCameraSharp.js index 62d80e43ee7a7c..2da18bc274a459 100644 --- a/packages/material-ui-icons/lib/SwitchCameraSharp.js +++ b/packages/material-ui-icons/lib/SwitchCameraSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zm-7 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" -}), 'SwitchCameraSharp'); \ No newline at end of file +}), 'SwitchCameraSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchCameraTwoTone.js b/packages/material-ui-icons/lib/SwitchCameraTwoTone.js index 5cf51c60b7e718..047f9c098bfc9f 100644 --- a/packages/material-ui-icons/lib/SwitchCameraTwoTone.js +++ b/packages/material-ui-icons/lib/SwitchCameraTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM15 15.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zm-5-7H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z" -}, "1")], 'SwitchCameraTwoTone'); \ No newline at end of file +}, "1")], 'SwitchCameraTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchLeft.js b/packages/material-ui-icons/lib/SwitchLeft.js index 45b8157a3de498..6ccb5fa5b123f6 100644 --- a/packages/material-ui-icons/lib/SwitchLeft.js +++ b/packages/material-ui-icons/lib/SwitchLeft.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" -}), 'SwitchLeft'); \ No newline at end of file +}), 'SwitchLeft'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchLeftOutlined.js b/packages/material-ui-icons/lib/SwitchLeftOutlined.js index 63d06d0ad5c449..aa1c042d8cc029 100644 --- a/packages/material-ui-icons/lib/SwitchLeftOutlined.js +++ b/packages/material-ui-icons/lib/SwitchLeftOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" -}), 'SwitchLeftOutlined'); \ No newline at end of file +}), 'SwitchLeftOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchLeftRounded.js b/packages/material-ui-icons/lib/SwitchLeftRounded.js index 57f5f56bb9f1b6..1aa553c118db8f 100644 --- a/packages/material-ui-icons/lib/SwitchLeftRounded.js +++ b/packages/material-ui-icons/lib/SwitchLeftRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 8.62v6.76L5.12 12 8.5 8.62m-4.79 2.67c-.39.39-.39 1.02 0 1.41l4.59 4.59c.62.63 1.7.19 1.7-.7V7.41c0-.89-1.08-1.34-1.71-.71l-4.58 4.59zM14 7.41v9.17c0 .89 1.08 1.34 1.71.71l4.59-4.59c.39-.39.39-1.02 0-1.41L15.71 6.7c-.63-.62-1.71-.18-1.71.71z" -}), 'SwitchLeftRounded'); \ No newline at end of file +}), 'SwitchLeftRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchLeftSharp.js b/packages/material-ui-icons/lib/SwitchLeftSharp.js index 1d6e65c8809f71..c90fd7abd7cd61 100644 --- a/packages/material-ui-icons/lib/SwitchLeftSharp.js +++ b/packages/material-ui-icons/lib/SwitchLeftSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" -}), 'SwitchLeftSharp'); \ No newline at end of file +}), 'SwitchLeftSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchLeftTwoTone.js b/packages/material-ui-icons/lib/SwitchLeftTwoTone.js index 6aa1511d2c2452..8885358d58715a 100644 --- a/packages/material-ui-icons/lib/SwitchLeftTwoTone.js +++ b/packages/material-ui-icons/lib/SwitchLeftTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 8.62v6.76L5.12 12 8.5 8.62", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" -}, "1")], 'SwitchLeftTwoTone'); \ No newline at end of file +}, "1")], 'SwitchLeftTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchRight.js b/packages/material-ui-icons/lib/SwitchRight.js index 81db79a1a5f75a..1352e2146a4682 100644 --- a/packages/material-ui-icons/lib/SwitchRight.js +++ b/packages/material-ui-icons/lib/SwitchRight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" -}), 'SwitchRight'); \ No newline at end of file +}), 'SwitchRight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchRightOutlined.js b/packages/material-ui-icons/lib/SwitchRightOutlined.js index 211e572a477fb5..11451d5f41021b 100644 --- a/packages/material-ui-icons/lib/SwitchRightOutlined.js +++ b/packages/material-ui-icons/lib/SwitchRightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" -}), 'SwitchRightOutlined'); \ No newline at end of file +}), 'SwitchRightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchRightRounded.js b/packages/material-ui-icons/lib/SwitchRightRounded.js index 2d8a91c2152c19..59923143c29f53 100644 --- a/packages/material-ui-icons/lib/SwitchRightRounded.js +++ b/packages/material-ui-icons/lib/SwitchRightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38m4.79-2.67c.39-.39.39-1.02 0-1.41L15.7 6.71c-.62-.63-1.7-.19-1.7.7v9.17c0 .89 1.08 1.34 1.71.71l4.58-4.58zM10 16.59V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7z" -}), 'SwitchRightRounded'); \ No newline at end of file +}), 'SwitchRightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchRightSharp.js b/packages/material-ui-icons/lib/SwitchRightSharp.js index 57174c074d7efb..a866f74e657db1 100644 --- a/packages/material-ui-icons/lib/SwitchRightSharp.js +++ b/packages/material-ui-icons/lib/SwitchRightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" -}), 'SwitchRightSharp'); \ No newline at end of file +}), 'SwitchRightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchRightTwoTone.js b/packages/material-ui-icons/lib/SwitchRightTwoTone.js index 3c7f1caf861fc0..9bd583efd31d86 100644 --- a/packages/material-ui-icons/lib/SwitchRightTwoTone.js +++ b/packages/material-ui-icons/lib/SwitchRightTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" -}, "1")], 'SwitchRightTwoTone'); \ No newline at end of file +}, "1")], 'SwitchRightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchVideo.js b/packages/material-ui-icons/lib/SwitchVideo.js index e02113cd095601..a771a727f0c3e6 100644 --- a/packages/material-ui-icons/lib/SwitchVideo.js +++ b/packages/material-ui-icons/lib/SwitchVideo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" -}), 'SwitchVideo'); \ No newline at end of file +}), 'SwitchVideo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchVideoOutlined.js b/packages/material-ui-icons/lib/SwitchVideoOutlined.js index 0af2edf2fa2a1e..08a2b0fa185189 100644 --- a/packages/material-ui-icons/lib/SwitchVideoOutlined.js +++ b/packages/material-ui-icons/lib/SwitchVideoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z" -}), 'SwitchVideoOutlined'); \ No newline at end of file +}), 'SwitchVideoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchVideoRounded.js b/packages/material-ui-icons/lib/SwitchVideoRounded.js index 71a932a627b156..30e5d2ab015fec 100644 --- a/packages/material-ui-icons/lib/SwitchVideoRounded.js +++ b/packages/material-ui-icons/lib/SwitchVideoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V7.91c0-.89-1.08-1.34-1.71-.71L18 9.5zm-5 6V13H7v2.5l-3.15-3.15c-.2-.2-.2-.51 0-.71L7 8.5V11h6V8.5l3.15 3.15c.2.2.2.51 0 .71L13 15.5z" -}), 'SwitchVideoRounded'); \ No newline at end of file +}), 'SwitchVideoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchVideoSharp.js b/packages/material-ui-icons/lib/SwitchVideoSharp.js index 61624ad5426859..bf6dc7b97fdf88 100644 --- a/packages/material-ui-icons/lib/SwitchVideoSharp.js +++ b/packages/material-ui-icons/lib/SwitchVideoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 9.5V5H2v14h16v-4.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" -}), 'SwitchVideoSharp'); \ No newline at end of file +}), 'SwitchVideoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SwitchVideoTwoTone.js b/packages/material-ui-icons/lib/SwitchVideoTwoTone.js index 84c0e4dbee17ff..9e2f030db79ed1 100644 --- a/packages/material-ui-icons/lib/SwitchVideoTwoTone.js +++ b/packages/material-ui-icons/lib/SwitchVideoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h12V7H4v10zm4-8v2h4V9l3 3-3 3v-2H8v2l-3-3 3-3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z" -}, "1")], 'SwitchVideoTwoTone'); \ No newline at end of file +}, "1")], 'SwitchVideoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Sync.js b/packages/material-ui-icons/lib/Sync.js index e15a87af668ef5..2ad7fbd025752a 100644 --- a/packages/material-ui-icons/lib/Sync.js +++ b/packages/material-ui-icons/lib/Sync.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" -}), 'Sync'); \ No newline at end of file +}), 'Sync'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncAlt.js b/packages/material-ui-icons/lib/SyncAlt.js index 86b42e4686b462..29a21aecc278d4 100644 --- a/packages/material-ui-icons/lib/SyncAlt.js +++ b/packages/material-ui-icons/lib/SyncAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" -}), 'SyncAlt'); \ No newline at end of file +}), 'SyncAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncAltOutlined.js b/packages/material-ui-icons/lib/SyncAltOutlined.js index 13ee4664f1b91b..ee7c2f17e86bc6 100644 --- a/packages/material-ui-icons/lib/SyncAltOutlined.js +++ b/packages/material-ui-icons/lib/SyncAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" -}), 'SyncAltOutlined'); \ No newline at end of file +}), 'SyncAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncAltRounded.js b/packages/material-ui-icons/lib/SyncAltRounded.js index 5176c9196d37f9..a65ff92fe1551c 100644 --- a/packages/material-ui-icons/lib/SyncAltRounded.js +++ b/packages/material-ui-icons/lib/SyncAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.65 7.65-2.79-2.79c-.32-.32-.86-.1-.86.35V7H4c-.55 0-1 .45-1 1s.45 1 1 1h14v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7zm-19.3 8.7 2.79 2.79c.32.32.86.1.86-.35V17h14c.55 0 1-.45 1-1s-.45-1-1-1H6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.19-.2.51-.01.7z" -}), 'SyncAltRounded'); \ No newline at end of file +}), 'SyncAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncAltSharp.js b/packages/material-ui-icons/lib/SyncAltSharp.js index a86d55d0befaa8..d221adfdb15668 100644 --- a/packages/material-ui-icons/lib/SyncAltSharp.js +++ b/packages/material-ui-icons/lib/SyncAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" -}), 'SyncAltSharp'); \ No newline at end of file +}), 'SyncAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncAltTwoTone.js b/packages/material-ui-icons/lib/SyncAltTwoTone.js index 6423464e97381c..108175a725d45b 100644 --- a/packages/material-ui-icons/lib/SyncAltTwoTone.js +++ b/packages/material-ui-icons/lib/SyncAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" -}), 'SyncAltTwoTone'); \ No newline at end of file +}), 'SyncAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncDisabled.js b/packages/material-ui-icons/lib/SyncDisabled.js index 69987117f3d8c6..02cb2bba4ae904 100644 --- a/packages/material-ui-icons/lib/SyncDisabled.js +++ b/packages/material-ui-icons/lib/SyncDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6.35V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.25-.12.5-.24.77-.33zm-7.14-.94 2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.25-.77.34v2.09c.8-.21 1.55-.54 2.23-.96l2.36 2.36 1.27-1.27L4.14 4.14 2.86 5.41zM20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46C19.55 15.01 20 13.56 20 12c0-2.21-.91-4.2-2.36-5.64L20 4z" -}), 'SyncDisabled'); \ No newline at end of file +}), 'SyncDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncDisabledOutlined.js b/packages/material-ui-icons/lib/SyncDisabledOutlined.js index fd264d61e990c1..17e6c49edc3526 100644 --- a/packages/material-ui-icons/lib/SyncDisabledOutlined.js +++ b/packages/material-ui-icons/lib/SyncDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4 2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" -}), 'SyncDisabledOutlined'); \ No newline at end of file +}), 'SyncDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncDisabledRounded.js b/packages/material-ui-icons/lib/SyncDisabledRounded.js index 08c0024911eef2..98ba83b7e34e52 100644 --- a/packages/material-ui-icons/lib/SyncDisabledRounded.js +++ b/packages/material-ui-icons/lib/SyncDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5.74v-.19c0-.68-.71-1.11-1.32-.82-.19.09-.36.2-.54.3L9.6 6.49c.24-.18.4-.45.4-.75zM20 12c0-2.21-.91-4.2-2.36-5.64l1.51-1.51c.31-.31.09-.85-.36-.85H14v4.79c0 .45.54.67.85.35l1.39-1.39C17.32 8.85 18 10.34 18 12c0 .85-.18 1.66-.5 2.39l1.48 1.48C19.62 14.72 20 13.41 20 12zM3.57 4.7c-.39.39-.39 1.02 0 1.41l1.65 1.65C4.45 9 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64l-1.51 1.51c-.31.31-.09.85.36.85H9.5c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.35l-1.39 1.39C6.68 15.15 6 13.66 6 12c0-1 .26-1.93.69-2.76l8.07 8.07c-.01.02-.01.02-.01.04-.43.12-.75.48-.75.91v.18c0 .68.71 1.11 1.32.82.31-.14.61-.31.9-.49l1.87 1.87c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.98 4.7a.9959.9959 0 0 0-1.41 0z" -}), 'SyncDisabledRounded'); \ No newline at end of file +}), 'SyncDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncDisabledSharp.js b/packages/material-ui-icons/lib/SyncDisabledSharp.js index 4af37336281b7e..f880685994c500 100644 --- a/packages/material-ui-icons/lib/SyncDisabledSharp.js +++ b/packages/material-ui-icons/lib/SyncDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4 2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" -}), 'SyncDisabledSharp'); \ No newline at end of file +}), 'SyncDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncDisabledTwoTone.js b/packages/material-ui-icons/lib/SyncDisabledTwoTone.js index 43dc0f796ef01d..a23263fec83592 100644 --- a/packages/material-ui-icons/lib/SyncDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/SyncDisabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4 2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" -}), 'SyncDisabledTwoTone'); \ No newline at end of file +}), 'SyncDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncOutlined.js b/packages/material-ui-icons/lib/SyncOutlined.js index 5c99a7cefea7ba..2500d6b1438cca 100644 --- a/packages/material-ui-icons/lib/SyncOutlined.js +++ b/packages/material-ui-icons/lib/SyncOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" -}), 'SyncOutlined'); \ No newline at end of file +}), 'SyncOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncProblem.js b/packages/material-ui-icons/lib/SyncProblem.js index 046167f3083164..30c1fdc6485c94 100644 --- a/packages/material-ui-icons/lib/SyncProblem.js +++ b/packages/material-ui-icons/lib/SyncProblem.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" -}), 'SyncProblem'); \ No newline at end of file +}), 'SyncProblem'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncProblemOutlined.js b/packages/material-ui-icons/lib/SyncProblemOutlined.js index 26d6fa37ff0f8c..caa5e36e8966f4 100644 --- a/packages/material-ui-icons/lib/SyncProblemOutlined.js +++ b/packages/material-ui-icons/lib/SyncProblemOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" -}), 'SyncProblemOutlined'); \ No newline at end of file +}), 'SyncProblemOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncProblemRounded.js b/packages/material-ui-icons/lib/SyncProblemRounded.js index 569142568061aa..8a2c3913796246 100644 --- a/packages/material-ui-icons/lib/SyncProblemRounded.js +++ b/packages/material-ui-icons/lib/SyncProblemRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12c0 2.21.91 4.2 2.36 5.64l-1.51 1.51c-.31.31-.09.85.36.85H8.5c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.35l-1.39 1.39C5.68 15.15 5 13.66 5 12c0-2.39 1.4-4.46 3.43-5.42.34-.16.57-.47.57-.84v-.19c0-.68-.71-1.11-1.32-.82C4.92 5.99 3 8.77 3 12zm8 5h2v-2h-2v2zm8.79-13H15.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35l1.39-1.39C18.32 8.85 19 10.34 19 12c0 2.39-1.4 4.46-3.43 5.42-.34.16-.57.47-.57.84v.18c0 .68.71 1.11 1.32.82C19.08 18.01 21 15.23 21 12c0-2.21-.91-4.2-2.36-5.64l1.51-1.51c.31-.31.09-.85-.36-.85zM12 13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" -}), 'SyncProblemRounded'); \ No newline at end of file +}), 'SyncProblemRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncProblemSharp.js b/packages/material-ui-icons/lib/SyncProblemSharp.js index 7eb07fe056db3d..becdf10d21a675 100644 --- a/packages/material-ui-icons/lib/SyncProblemSharp.js +++ b/packages/material-ui-icons/lib/SyncProblemSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" -}), 'SyncProblemSharp'); \ No newline at end of file +}), 'SyncProblemSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncProblemTwoTone.js b/packages/material-ui-icons/lib/SyncProblemTwoTone.js index 1f71a4b884bc95..92c0235bc1e711 100644 --- a/packages/material-ui-icons/lib/SyncProblemTwoTone.js +++ b/packages/material-ui-icons/lib/SyncProblemTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" -}), 'SyncProblemTwoTone'); \ No newline at end of file +}), 'SyncProblemTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncRounded.js b/packages/material-ui-icons/lib/SyncRounded.js index 2d53c05d14b0a4..f5da1b9f2341b0 100644 --- a/packages/material-ui-icons/lib/SyncRounded.js +++ b/packages/material-ui-icons/lib/SyncRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z" -}), 'SyncRounded'); \ No newline at end of file +}), 'SyncRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncSharp.js b/packages/material-ui-icons/lib/SyncSharp.js index 5da583b40f98f5..650fa97ae60ab6 100644 --- a/packages/material-ui-icons/lib/SyncSharp.js +++ b/packages/material-ui-icons/lib/SyncSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" -}), 'SyncSharp'); \ No newline at end of file +}), 'SyncSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SyncTwoTone.js b/packages/material-ui-icons/lib/SyncTwoTone.js index 1e56388b120f1d..b4b2165c445caa 100644 --- a/packages/material-ui-icons/lib/SyncTwoTone.js +++ b/packages/material-ui-icons/lib/SyncTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 4V1l-4 4 4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46c.78-1.23 1.24-2.69 1.24-4.26 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.25 7.74C4.47 8.97 4.01 10.43 4.01 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" -}), 'SyncTwoTone'); \ No newline at end of file +}), 'SyncTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdate.js b/packages/material-ui-icons/lib/SystemSecurityUpdate.js index 9362714326fdf1..d3de8f01b4f20f 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdate.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2zm12 15H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" -}), 'SystemSecurityUpdate'); \ No newline at end of file +}), 'SystemSecurityUpdate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateGood.js b/packages/material-ui-icons/lib/SystemSecurityUpdateGood.js index 18367f9746ce0b..754265b7cbce26 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateGood.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateGood.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}), 'SystemSecurityUpdateGood'); \ No newline at end of file +}), 'SystemSecurityUpdateGood'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodOutlined.js b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodOutlined.js index e4b55d52c9d60d..3ed3dae9beba6f 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodOutlined.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}), 'SystemSecurityUpdateGoodOutlined'); \ No newline at end of file +}), 'SystemSecurityUpdateGoodOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodRounded.js b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodRounded.js index 07839dd2377efb..dc05fb05444a43 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodRounded.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-6.66-3.71c.39.39 1.02.39 1.41 0l3.54-3.54c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2.83 2.83-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.41 1.42z" -}), 'SystemSecurityUpdateGoodRounded'); \ No newline at end of file +}), 'SystemSecurityUpdateGoodRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodSharp.js b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodSharp.js index bacf8f89615378..d23dd49128ca14 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodSharp.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}), 'SystemSecurityUpdateGoodSharp'); \ No newline at end of file +}), 'SystemSecurityUpdateGoodSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodTwoTone.js b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodTwoTone.js index 8bfa7f4b8d58e8..40f99e12f47e49 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateGoodTwoTone.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateGoodTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" -}, "1")], 'SystemSecurityUpdateGoodTwoTone'); \ No newline at end of file +}, "1")], 'SystemSecurityUpdateGoodTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateOutlined.js b/packages/material-ui-icons/lib/SystemSecurityUpdateOutlined.js index d1c1c4aea1dacd..e738c5e67af8ab 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateOutlined.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7zm9 8-4 4-4-4 1.41-1.41L11 12.17V8h2v4.17l1.59-1.59L16 12z" -}), 'SystemSecurityUpdateOutlined'); \ No newline at end of file +}), 'SystemSecurityUpdateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateRounded.js b/packages/material-ui-icons/lib/SystemSecurityUpdateRounded.js index 92ad4ae43b92bf..8dc46530c7e4e0 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateRounded.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-2.21-5.79H13V9c0-.55-.45-1-1-1s-1 .45-1 1v3.21H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" -}), 'SystemSecurityUpdateRounded'); \ No newline at end of file +}), 'SystemSecurityUpdateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateSharp.js b/packages/material-ui-icons/lib/SystemSecurityUpdateSharp.js index 5ebf7c38e85622..e58ae34c23c1b0 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateSharp.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" -}), 'SystemSecurityUpdateSharp'); \ No newline at end of file +}), 'SystemSecurityUpdateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateTwoTone.js b/packages/material-ui-icons/lib/SystemSecurityUpdateTwoTone.js index c94ee2f18a14a0..8ba2c01e58f1e7 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateTwoTone.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20h10v1H7zM7 3h10v1H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 8h-3V8h-2v4H8l4 4 4-4z" -}, "1")], 'SystemSecurityUpdateTwoTone'); \ No newline at end of file +}, "1")], 'SystemSecurityUpdateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateWarning.js b/packages/material-ui-icons/lib/SystemSecurityUpdateWarning.js index 76c63a22473e28..9bcdc6433d7d53 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateWarning.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateWarning.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" -}, "1")], 'SystemSecurityUpdateWarning'); \ No newline at end of file +}, "1")], 'SystemSecurityUpdateWarning'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningOutlined.js b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningOutlined.js index b3f1ada637185c..3afdd893059a8e 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningOutlined.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" -}, "1")], 'SystemSecurityUpdateWarningOutlined'); \ No newline at end of file +}, "1")], 'SystemSecurityUpdateWarningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningRounded.js b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningRounded.js index 802c34f15a2ff0..4d915a380cc981 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningRounded.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningRounded.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "16", r: "1" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" -}, "2")], 'SystemSecurityUpdateWarningRounded'); \ No newline at end of file +}, "2")], 'SystemSecurityUpdateWarningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningSharp.js b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningSharp.js index 44a36ded724cdd..5a4c1ce69f9598 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningSharp.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z" -}, "1")], 'SystemSecurityUpdateWarningSharp'); \ No newline at end of file +}, "1")], 'SystemSecurityUpdateWarningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningTwoTone.js b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningTwoTone.js index bcc4def01089ef..fe74c85c6cbc4c 100644 --- a/packages/material-ui-icons/lib/SystemSecurityUpdateWarningTwoTone.js +++ b/packages/material-ui-icons/lib/SystemSecurityUpdateWarningTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 7h2v6h-2V7zm0 8h2v2h-2v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 15h2v2h-2zm0-8h2v6h-2z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", opacity: ".3" -}, "3")], 'SystemSecurityUpdateWarningTwoTone'); \ No newline at end of file +}, "3")], 'SystemSecurityUpdateWarningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdate.js b/packages/material-ui-icons/lib/SystemUpdate.js index 3a0492a9d4bed5..cbb8dd943aba4a 100644 --- a/packages/material-ui-icons/lib/SystemUpdate.js +++ b/packages/material-ui-icons/lib/SystemUpdate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" -}), 'SystemUpdate'); \ No newline at end of file +}), 'SystemUpdate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateAlt.js b/packages/material-ui-icons/lib/SystemUpdateAlt.js index 2a94582a1b3c8d..f6031bc0c5f6ea 100644 --- a/packages/material-ui-icons/lib/SystemUpdateAlt.js +++ b/packages/material-ui-icons/lib/SystemUpdateAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 16.5 4-4h-3v-9h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V5.49h6V3.5H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2z" -}), 'SystemUpdateAlt'); \ No newline at end of file +}), 'SystemUpdateAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateAltOutlined.js b/packages/material-ui-icons/lib/SystemUpdateAltOutlined.js index 6b0e997df865ce..b810441352ef8e 100644 --- a/packages/material-ui-icons/lib/SystemUpdateAltOutlined.js +++ b/packages/material-ui-icons/lib/SystemUpdateAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 16 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'SystemUpdateAltOutlined'); \ No newline at end of file +}), 'SystemUpdateAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateAltRounded.js b/packages/material-ui-icons/lib/SystemUpdateAltRounded.js index d0153dd52757eb..34d57f7ee20d0f 100644 --- a/packages/material-ui-icons/lib/SystemUpdateAltRounded.js +++ b/packages/material-ui-icons/lib/SystemUpdateAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.35 15.65 2.79-2.79c.31-.31.09-.85-.35-.85H13V4c0-.55-.45-1-1-1s-1 .45-1 1v8H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.19.2.51.2.7.01zM21 3h-5.01c-.54 0-.99.45-.99.99 0 .55.45.99.99.99H20c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h4.01c.54 0 .99-.45.99-.99 0-.55-.45-1-.99-1H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'SystemUpdateAltRounded'); \ No newline at end of file +}), 'SystemUpdateAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateAltSharp.js b/packages/material-ui-icons/lib/SystemUpdateAltSharp.js index 06cb689645647f..fef93f0f8e5c3e 100644 --- a/packages/material-ui-icons/lib/SystemUpdateAltSharp.js +++ b/packages/material-ui-icons/lib/SystemUpdateAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 16 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13 4-4h-3V3h-2v9H8l4 4zM23 3h-8v1.99h6v14.03H3V4.99h6V3H1v18h22V3z" -}), 'SystemUpdateAltSharp'); \ No newline at end of file +}), 'SystemUpdateAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateAltTwoTone.js b/packages/material-ui-icons/lib/SystemUpdateAltTwoTone.js index 3a711a12efc97f..c29b2e1f7fa335 100644 --- a/packages/material-ui-icons/lib/SystemUpdateAltTwoTone.js +++ b/packages/material-ui-icons/lib/SystemUpdateAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 16 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'SystemUpdateAltTwoTone'); \ No newline at end of file +}), 'SystemUpdateAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateOutlined.js b/packages/material-ui-icons/lib/SystemUpdateOutlined.js index 5fd1fc73ca75b9..41173e94df6c80 100644 --- a/packages/material-ui-icons/lib/SystemUpdateOutlined.js +++ b/packages/material-ui-icons/lib/SystemUpdateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" -}), 'SystemUpdateOutlined'); \ No newline at end of file +}), 'SystemUpdateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateRounded.js b/packages/material-ui-icons/lib/SystemUpdateRounded.js index 630a4856aee125..2d65216e241402 100644 --- a/packages/material-ui-icons/lib/SystemUpdateRounded.js +++ b/packages/material-ui-icons/lib/SystemUpdateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-2.21-6H13V9c0-.55-.45-1-1-1s-1 .45-1 1v4H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" -}), 'SystemUpdateRounded'); \ No newline at end of file +}), 'SystemUpdateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateSharp.js b/packages/material-ui-icons/lib/SystemUpdateSharp.js index f5fa88ba1bc486..ee5038332e59da 100644 --- a/packages/material-ui-icons/lib/SystemUpdateSharp.js +++ b/packages/material-ui-icons/lib/SystemUpdateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 1v22h14V1H5zm12 18H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" -}), 'SystemUpdateSharp'); \ No newline at end of file +}), 'SystemUpdateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/SystemUpdateTwoTone.js b/packages/material-ui-icons/lib/SystemUpdateTwoTone.js index 44cd16ba99c66d..f1fc9abfa5bff5 100644 --- a/packages/material-ui-icons/lib/SystemUpdateTwoTone.js +++ b/packages/material-ui-icons/lib/SystemUpdateTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 19h10V5H7v14zm4-6V8h2v5h3l-4 4-4-4h3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13h-3V8h-2v5H8l4 4zm1-11.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" -}, "1")], 'SystemUpdateTwoTone'); \ No newline at end of file +}, "1")], 'SystemUpdateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tab.js b/packages/material-ui-icons/lib/Tab.js index 21afc835b3f833..72645f80de3357 100644 --- a/packages/material-ui-icons/lib/Tab.js +++ b/packages/material-ui-icons/lib/Tab.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" -}), 'Tab'); \ No newline at end of file +}), 'Tab'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabOutlined.js b/packages/material-ui-icons/lib/TabOutlined.js index aad0cb589e7533..d84d108c11d33e 100644 --- a/packages/material-ui-icons/lib/TabOutlined.js +++ b/packages/material-ui-icons/lib/TabOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" -}), 'TabOutlined'); \ No newline at end of file +}), 'TabOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabRounded.js b/packages/material-ui-icons/lib/TabRounded.js index 0f6e33bbecd6f0..16b12dbb3057f9 100644 --- a/packages/material-ui-icons/lib/TabRounded.js +++ b/packages/material-ui-icons/lib/TabRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h9v3c0 .55.45 1 1 1h7v9c0 .55-.45 1-1 1z" -}), 'TabRounded'); \ No newline at end of file +}), 'TabRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabSharp.js b/packages/material-ui-icons/lib/TabSharp.js index 1442ef01a2258c..f678cb805ea402 100644 --- a/packages/material-ui-icons/lib/TabSharp.js +++ b/packages/material-ui-icons/lib/TabSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10zm2-16H1v18h22V3zm-2 16H3V5h10v4h8v10z" -}), 'TabSharp'); \ No newline at end of file +}), 'TabSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabTwoTone.js b/packages/material-ui-icons/lib/TabTwoTone.js index 350516ce14854c..a2a55504f02246 100644 --- a/packages/material-ui-icons/lib/TabTwoTone.js +++ b/packages/material-ui-icons/lib/TabTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" -}), 'TabTwoTone'); \ No newline at end of file +}), 'TabTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabUnselected.js b/packages/material-ui-icons/lib/TabUnselected.js index 0de98034d0c9ff..ecc3937c041437 100644 --- a/packages/material-ui-icons/lib/TabUnselected.js +++ b/packages/material-ui-icons/lib/TabUnselected.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'TabUnselected'); \ No newline at end of file +}), 'TabUnselected'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabUnselectedOutlined.js b/packages/material-ui-icons/lib/TabUnselectedOutlined.js index 9d22b06f096cc9..33bd37ad52fed2 100644 --- a/packages/material-ui-icons/lib/TabUnselectedOutlined.js +++ b/packages/material-ui-icons/lib/TabUnselectedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'TabUnselectedOutlined'); \ No newline at end of file +}), 'TabUnselectedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabUnselectedRounded.js b/packages/material-ui-icons/lib/TabUnselectedRounded.js index 563a1d8d3a95a0..c625a156d28cc4 100644 --- a/packages/material-ui-icons/lib/TabUnselectedRounded.js +++ b/packages/material-ui-icons/lib/TabUnselectedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v5c0 .55.45 1 1 1h9V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'TabUnselectedRounded'); \ No newline at end of file +}), 'TabUnselectedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabUnselectedSharp.js b/packages/material-ui-icons/lib/TabUnselectedSharp.js index 5c35683d17ffec..05e81ffdea5aa7 100644 --- a/packages/material-ui-icons/lib/TabUnselectedSharp.js +++ b/packages/material-ui-icons/lib/TabUnselectedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm8 8h2v-2H9v2zm-8-4h2v-2H1v2zm0 4h2v-2H1v2zM23 3H13v6h10V3zm-2 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zM1 5h2V3H1v2zm20 8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'TabUnselectedSharp'); \ No newline at end of file +}), 'TabUnselectedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabUnselectedTwoTone.js b/packages/material-ui-icons/lib/TabUnselectedTwoTone.js index db25dbaec5b6ce..3c220a68cfb079 100644 --- a/packages/material-ui-icons/lib/TabUnselectedTwoTone.js +++ b/packages/material-ui-icons/lib/TabUnselectedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" -}), 'TabUnselectedTwoTone'); \ No newline at end of file +}), 'TabUnselectedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableChart.js b/packages/material-ui-icons/lib/TableChart.js index c7af9c0a475006..2cc95370e9446e 100644 --- a/packages/material-ui-icons/lib/TableChart.js +++ b/packages/material-ui-icons/lib/TableChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10.02h5V21h-5zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z" -}), 'TableChart'); \ No newline at end of file +}), 'TableChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableChartOutlined.js b/packages/material-ui-icons/lib/TableChartOutlined.js index 5f47ae5fcb164d..289559b4eacddd 100644 --- a/packages/material-ui-icons/lib/TableChartOutlined.js +++ b/packages/material-ui-icons/lib/TableChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h15zm-5 14h-5v-9h5v9zM5 10h3v9H5v-9zm12 9v-9h3v9h-3z" -}), 'TableChartOutlined'); \ No newline at end of file +}), 'TableChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableChartRounded.js b/packages/material-ui-icons/lib/TableChartRounded.js index 8f95cc62528c55..3b3f66ea823bae 100644 --- a/packages/material-ui-icons/lib/TableChartRounded.js +++ b/packages/material-ui-icons/lib/TableChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10.02h5V21h-5V10.02zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z" -}), 'TableChartRounded'); \ No newline at end of file +}), 'TableChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableChartSharp.js b/packages/material-ui-icons/lib/TableChartSharp.js index 0e717146bd4e7a..656ce242822fc0 100644 --- a/packages/material-ui-icons/lib/TableChartSharp.js +++ b/packages/material-ui-icons/lib/TableChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 10.02h5V21h-5V10.02zM17 21h5V10h-5v11zm5-18H3v5h19V3zM3 21h5V10H3v11z" -}), 'TableChartSharp'); \ No newline at end of file +}), 'TableChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableChartTwoTone.js b/packages/material-ui-icons/lib/TableChartTwoTone.js index 1917c1442923a1..1cf30bd55f1111 100644 --- a/packages/material-ui-icons/lib/TableChartTwoTone.js +++ b/packages/material-ui-icons/lib/TableChartTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h15v3H5zm12 5h3v9h-3zm-7 0h5v9h-5zm-5 0h3v9H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 19H5v-9h3v9zm7 0h-5v-9h5v9zm5 0h-3v-9h3v9zm0-11H5V5h15v3z" -}, "1")], 'TableChartTwoTone'); \ No newline at end of file +}, "1")], 'TableChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableRows.js b/packages/material-ui-icons/lib/TableRows.js index 105c8b899c79f1..ab3887a8a28de6 100644 --- a/packages/material-ui-icons/lib/TableRows.js +++ b/packages/material-ui-icons/lib/TableRows.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8H3V4h18v4zm0 2H3v4h18v-4zm0 6H3v4h18v-4z" -}), 'TableRows'); \ No newline at end of file +}), 'TableRows'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableRowsOutlined.js b/packages/material-ui-icons/lib/TableRowsOutlined.js index 171b8396a54d4c..0e0eb030a38d05 100644 --- a/packages/material-ui-icons/lib/TableRowsOutlined.js +++ b/packages/material-ui-icons/lib/TableRowsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h14zm0 5v4H5v-4h14zM5 19v-3h14v3H5z" -}), 'TableRowsOutlined'); \ No newline at end of file +}), 'TableRowsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableRowsRounded.js b/packages/material-ui-icons/lib/TableRowsRounded.js index a7630a310e2998..3f109d0d35d35c 100644 --- a/packages/material-ui-icons/lib/TableRowsRounded.js +++ b/packages/material-ui-icons/lib/TableRowsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8H5c-1.1 0-2-.9-2-2s.9-2 2-2h14c1.1 0 2 .9 2 2s-.9 2-2 2zm0 2H5c-1.1 0-2 .9-2 2s.9 2 2 2h14c1.1 0 2-.9 2-2s-.9-2-2-2zm0 6H5c-1.1 0-2 .9-2 2s.9 2 2 2h14c1.1 0 2-.9 2-2s-.9-2-2-2z" -}), 'TableRowsRounded'); \ No newline at end of file +}), 'TableRowsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableRowsSharp.js b/packages/material-ui-icons/lib/TableRowsSharp.js index a9d862ba45de39..5e471ad76d3053 100644 --- a/packages/material-ui-icons/lib/TableRowsSharp.js +++ b/packages/material-ui-icons/lib/TableRowsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8H3V4h18v4zm0 2H3v4h18v-4zm0 6H3v4h18v-4z" -}), 'TableRowsSharp'); \ No newline at end of file +}), 'TableRowsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableRowsTwoTone.js b/packages/material-ui-icons/lib/TableRowsTwoTone.js index e847212b02c7e5..736a995a86490c 100644 --- a/packages/material-ui-icons/lib/TableRowsTwoTone.js +++ b/packages/material-ui-icons/lib/TableRowsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v3H5V5h14zm0 5v4H5v-4h14zM5 19v-3h14v3H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h14zm0 5v4H5v-4h14zM5 19v-3h14v3H5z" -}, "1")], 'TableRowsTwoTone'); \ No newline at end of file +}, "1")], 'TableRowsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableView.js b/packages/material-ui-icons/lib/TableView.js index b0275721de9f42..fc79a51b8dcbc7 100644 --- a/packages/material-ui-icons/lib/TableView.js +++ b/packages/material-ui-icons/lib/TableView.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" -}), 'TableView'); \ No newline at end of file +}), 'TableView'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableViewOutlined.js b/packages/material-ui-icons/lib/TableViewOutlined.js index 4cb0ff2f63066c..a6415e5590c0f2 100644 --- a/packages/material-ui-icons/lib/TableViewOutlined.js +++ b/packages/material-ui-icons/lib/TableViewOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" -}), 'TableViewOutlined'); \ No newline at end of file +}), 'TableViewOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableViewRounded.js b/packages/material-ui-icons/lib/TableViewRounded.js index 0db746a4e416c9..d2dc0dd9dfeefd 100644 --- a/packages/material-ui-icons/lib/TableViewRounded.js +++ b/packages/material-ui-icons/lib/TableViewRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 3c0 .55-.45 1-1 1h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1zm-6 5v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" -}), 'TableViewRounded'); \ No newline at end of file +}), 'TableViewRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableViewSharp.js b/packages/material-ui-icons/lib/TableViewSharp.js index 8aea9ce3f571a9..24ca83a24220b9 100644 --- a/packages/material-ui-icons/lib/TableViewSharp.js +++ b/packages/material-ui-icons/lib/TableViewSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7H7v14h14V7zm-2 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H3V3h14v3h-2V5H5v10h1v2z" -}), 'TableViewSharp'); \ No newline at end of file +}), 'TableViewSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TableViewTwoTone.js b/packages/material-ui-icons/lib/TableViewTwoTone.js index 37efff8c1f1faf..ab0d396a1765dd 100644 --- a/packages/material-ui-icons/lib/TableViewTwoTone.js +++ b/packages/material-ui-icons/lib/TableViewTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 9v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" -}, "1")], 'TableViewTwoTone'); \ No newline at end of file +}, "1")], 'TableViewTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tablet.js b/packages/material-ui-icons/lib/Tablet.js index 367134fbe20cc4..9e3ab1b8391f66 100644 --- a/packages/material-ui-icons/lib/Tablet.js +++ b/packages/material-ui-icons/lib/Tablet.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" -}), 'Tablet'); \ No newline at end of file +}), 'Tablet'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletAndroid.js b/packages/material-ui-icons/lib/TabletAndroid.js index cfe764916bc867..07e65f3d840248 100644 --- a/packages/material-ui-icons/lib/TabletAndroid.js +++ b/packages/material-ui-icons/lib/TabletAndroid.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" -}), 'TabletAndroid'); \ No newline at end of file +}), 'TabletAndroid'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletAndroidOutlined.js b/packages/material-ui-icons/lib/TabletAndroidOutlined.js index ceab6fb967afff..81085603f72256 100644 --- a/packages/material-ui-icons/lib/TabletAndroidOutlined.js +++ b/packages/material-ui-icons/lib/TabletAndroidOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" -}), 'TabletAndroidOutlined'); \ No newline at end of file +}), 'TabletAndroidOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletAndroidRounded.js b/packages/material-ui-icons/lib/TabletAndroidRounded.js index f335dd6e2c131b..35eb16f0b9ab18 100644 --- a/packages/material-ui-icons/lib/TabletAndroidRounded.js +++ b/packages/material-ui-icons/lib/TabletAndroidRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4.5 22h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm5.75-3H4.75V3h14.5v16z" -}), 'TabletAndroidRounded'); \ No newline at end of file +}), 'TabletAndroidRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletAndroidSharp.js b/packages/material-ui-icons/lib/TabletAndroidSharp.js index 2e9d80a0eda912..5b94408ef35a42 100644 --- a/packages/material-ui-icons/lib/TabletAndroidSharp.js +++ b/packages/material-ui-icons/lib/TabletAndroidSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 0H3v24h18V0zm-7 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" -}), 'TabletAndroidSharp'); \ No newline at end of file +}), 'TabletAndroidSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletAndroidTwoTone.js b/packages/material-ui-icons/lib/TabletAndroidTwoTone.js index c2fecec314a539..bed0c6522d5550 100644 --- a/packages/material-ui-icons/lib/TabletAndroidTwoTone.js +++ b/packages/material-ui-icons/lib/TabletAndroidTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.75 3h14.5v16H4.75z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" -}, "1")], 'TabletAndroidTwoTone'); \ No newline at end of file +}, "1")], 'TabletAndroidTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletMac.js b/packages/material-ui-icons/lib/TabletMac.js index 0a75ce11aabd75..29ecb115853521 100644 --- a/packages/material-ui-icons/lib/TabletMac.js +++ b/packages/material-ui-icons/lib/TabletMac.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" -}), 'TabletMac'); \ No newline at end of file +}), 'TabletMac'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletMacOutlined.js b/packages/material-ui-icons/lib/TabletMacOutlined.js index 6521abcfbab1a6..6f5ea166b97054 100644 --- a/packages/material-ui-icons/lib/TabletMacOutlined.js +++ b/packages/material-ui-icons/lib/TabletMacOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" -}), 'TabletMacOutlined'); \ No newline at end of file +}), 'TabletMacOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletMacRounded.js b/packages/material-ui-icons/lib/TabletMacRounded.js index 43f67a8c01b66e..f01280a7fe1731 100644 --- a/packages/material-ui-icons/lib/TabletMacRounded.js +++ b/packages/material-ui-icons/lib/TabletMacRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" -}), 'TabletMacRounded'); \ No newline at end of file +}), 'TabletMacRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletMacSharp.js b/packages/material-ui-icons/lib/TabletMacSharp.js index 31590075448508..7154dbe9805471 100644 --- a/packages/material-ui-icons/lib/TabletMacSharp.js +++ b/packages/material-ui-icons/lib/TabletMacSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 0H2v24h19V0zm-9.5 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" -}), 'TabletMacSharp'); \ No newline at end of file +}), 'TabletMacSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletMacTwoTone.js b/packages/material-ui-icons/lib/TabletMacTwoTone.js index a52141be1b4dcb..b03ebefb4642a7 100644 --- a/packages/material-ui-icons/lib/TabletMacTwoTone.js +++ b/packages/material-ui-icons/lib/TabletMacTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 3h15v16H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" -}, "1")], 'TabletMacTwoTone'); \ No newline at end of file +}, "1")], 'TabletMacTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletOutlined.js b/packages/material-ui-icons/lib/TabletOutlined.js index 18ebf792f75069..1df51aad4ed0c0 100644 --- a/packages/material-ui-icons/lib/TabletOutlined.js +++ b/packages/material-ui-icons/lib/TabletOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" -}), 'TabletOutlined'); \ No newline at end of file +}), 'TabletOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletRounded.js b/packages/material-ui-icons/lib/TabletRounded.js index 200ee4b8438656..a4f12819fda269 100644 --- a/packages/material-ui-icons/lib/TabletRounded.js +++ b/packages/material-ui-icons/lib/TabletRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" -}), 'TabletRounded'); \ No newline at end of file +}), 'TabletRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletSharp.js b/packages/material-ui-icons/lib/TabletSharp.js index 4c740572d6cb28..796e4f04b9878a 100644 --- a/packages/material-ui-icons/lib/TabletSharp.js +++ b/packages/material-ui-icons/lib/TabletSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 4H1v16h21.99L23 4zm-4 14H5V6h14v12z" -}), 'TabletSharp'); \ No newline at end of file +}), 'TabletSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TabletTwoTone.js b/packages/material-ui-icons/lib/TabletTwoTone.js index 1999df57a76033..c72a22ce0b7a52 100644 --- a/packages/material-ui-icons/lib/TabletTwoTone.js +++ b/packages/material-ui-icons/lib/TabletTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6h14v12H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" -}, "1")], 'TabletTwoTone'); \ No newline at end of file +}, "1")], 'TabletTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tag.js b/packages/material-ui-icons/lib/Tag.js index 98c44c351ffcf1..c37d3c3c5159ab 100644 --- a/packages/material-ui-icons/lib/Tag.js +++ b/packages/material-ui-icons/lib/Tag.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'Tag'); \ No newline at end of file +}), 'Tag'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagFaces.js b/packages/material-ui-icons/lib/TagFaces.js index 59c41929c92e85..8ec13005e38108 100644 --- a/packages/material-ui-icons/lib/TagFaces.js +++ b/packages/material-ui-icons/lib/TagFaces.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'TagFaces'); \ No newline at end of file +}), 'TagFaces'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagFacesOutlined.js b/packages/material-ui-icons/lib/TagFacesOutlined.js index 2217572a3028ba..a4493660eb2b19 100644 --- a/packages/material-ui-icons/lib/TagFacesOutlined.js +++ b/packages/material-ui-icons/lib/TagFacesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'TagFacesOutlined'); \ No newline at end of file +}), 'TagFacesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagFacesRounded.js b/packages/material-ui-icons/lib/TagFacesRounded.js index 60dc3a2d1b11c1..c9e540ad8d020d 100644 --- a/packages/material-ui-icons/lib/TagFacesRounded.js +++ b/packages/material-ui-icons/lib/TagFacesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm8.25 6.75c-.95 1.64-2.72 2.75-4.75 2.75s-3.8-1.11-4.75-2.75c-.19-.33.06-.75.44-.75h8.62c.39 0 .63.42.44.75zM15.5 11c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'TagFacesRounded'); \ No newline at end of file +}), 'TagFacesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagFacesSharp.js b/packages/material-ui-icons/lib/TagFacesSharp.js index 2ea5478648de04..1cc87e698e5cc7 100644 --- a/packages/material-ui-icons/lib/TagFacesSharp.js +++ b/packages/material-ui-icons/lib/TagFacesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 2C6.49 2 2.02 6.48 2.02 12s4.47 10 9.99 10c5.53 0 10.01-4.48 10.01-10S17.54 2 12.01 2zm.01 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.35 8 15.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.35 8 8.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.91c.8 2.04 2.78 3.5 5.11 3.5z" -}), 'TagFacesSharp'); \ No newline at end of file +}), 'TagFacesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagFacesTwoTone.js b/packages/material-ui-icons/lib/TagFacesTwoTone.js index 135ca94a36099d..746e8a4458ccd5 100644 --- a/packages/material-ui-icons/lib/TagFacesTwoTone.js +++ b/packages/material-ui-icons/lib/TagFacesTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "9.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "9.5", r: "1.5" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "4")], 'TagFacesTwoTone'); \ No newline at end of file +}, "4")], 'TagFacesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagOutlined.js b/packages/material-ui-icons/lib/TagOutlined.js index faee17996f889e..7584ad334c808f 100644 --- a/packages/material-ui-icons/lib/TagOutlined.js +++ b/packages/material-ui-icons/lib/TagOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'TagOutlined'); \ No newline at end of file +}), 'TagOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagRounded.js b/packages/material-ui-icons/lib/TagRounded.js index f1a41448c3d8cb..b49ba16098ebba 100644 --- a/packages/material-ui-icons/lib/TagRounded.js +++ b/packages/material-ui-icons/lib/TagRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 9c0-.55-.45-1-1-1h-3V5c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V5c0-.55-.45-1-1-1s-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v4H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h4v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3v-4h3c.55 0 1-.45 1-1zm-6 5h-4v-4h4v4z" -}), 'TagRounded'); \ No newline at end of file +}), 'TagRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagSharp.js b/packages/material-ui-icons/lib/TagSharp.js index 7450b8f2a183ed..183182a03ab8de 100644 --- a/packages/material-ui-icons/lib/TagSharp.js +++ b/packages/material-ui-icons/lib/TagSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'TagSharp'); \ No newline at end of file +}), 'TagSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TagTwoTone.js b/packages/material-ui-icons/lib/TagTwoTone.js index 7b7160dd2550cc..028f2f5842357c 100644 --- a/packages/material-ui-icons/lib/TagTwoTone.js +++ b/packages/material-ui-icons/lib/TagTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" -}), 'TagTwoTone'); \ No newline at end of file +}), 'TagTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TakeoutDining.js b/packages/material-ui-icons/lib/TakeoutDining.js index b2e868adebbdab..cf50e9dc5e6067 100644 --- a/packages/material-ui-icons/lib/TakeoutDining.js +++ b/packages/material-ui-icons/lib/TakeoutDining.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M5.26 11h13.48l-.67 9H5.93l-.67-9zm3.76-7h5.95L19 7.38l1.59-1.59L22 7.21 19.21 10H4.79L2 7.21 3.41 5.8 5 7.38 9.02 4z" -}), 'TakeoutDining'); \ No newline at end of file +}), 'TakeoutDining'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TakeoutDiningOutlined.js b/packages/material-ui-icons/lib/TakeoutDiningOutlined.js index 65b6b652530a51..efdbace1dfec40 100644 --- a/packages/material-ui-icons/lib/TakeoutDiningOutlined.js +++ b/packages/material-ui-icons/lib/TakeoutDiningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.79 18-.51-7h9.46l-.51 7H7.79zM9.83 5h4.33l2.8 2.73L16.87 9H7.12l-.09-1.27L9.83 5zM22 7.46l-1.41-1.41L19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44l3.23 3.11.7 9.45h12.14l.7-9.44L22 7.46z" -}), 'TakeoutDiningOutlined'); \ No newline at end of file +}), 'TakeoutDiningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TakeoutDiningRounded.js b/packages/material-ui-icons/lib/TakeoutDiningRounded.js index cadebc73ce3718..738c07e0c51603 100644 --- a/packages/material-ui-icons/lib/TakeoutDiningRounded.js +++ b/packages/material-ui-icons/lib/TakeoutDiningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.29 6.75a.9839.9839 0 0 0-1.4 0l-.89.88.03-.56-3.46-3.48c-.38-.38-.89-.59-1.42-.59h-4.3c-.53 0-1.04.21-1.42.59L4.97 7.07l.03.5-.89-.87c-.39-.38-1.01-.38-1.39.01l-.02.02c-.38.39-.38 1.02.02 1.4L4.66 10h14.69l1.92-1.84c.4-.38.41-1.02.02-1.41zm-15.5 11.4c.08 1.04.95 1.85 2 1.85h8.43c1.05 0 1.92-.81 1.99-1.85l.49-6.6H5.3l.49 6.6z" -}), 'TakeoutDiningRounded'); \ No newline at end of file +}), 'TakeoutDiningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TakeoutDiningSharp.js b/packages/material-ui-icons/lib/TakeoutDiningSharp.js index e7b95be2ef8015..196cf3e2b307f2 100644 --- a/packages/material-ui-icons/lib/TakeoutDiningSharp.js +++ b/packages/material-ui-icons/lib/TakeoutDiningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 7.46-1.41-1.41L19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44 4.66 10h14.69zM5.93 20h12.14l.63-8.45H5.3z" -}), 'TakeoutDiningSharp'); \ No newline at end of file +}), 'TakeoutDiningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TakeoutDiningTwoTone.js b/packages/material-ui-icons/lib/TakeoutDiningTwoTone.js index c7f3bfe7afe045..4f319a2deda5c9 100644 --- a/packages/material-ui-icons/lib/TakeoutDiningTwoTone.js +++ b/packages/material-ui-icons/lib/TakeoutDiningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.83 5-2.8 2.73L7.12 9h9.75l.09-1.27L14.16 5zM7.79 18h8.44l.51-7H7.28z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.59 6.05 19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44l3.23 3.11.7 9.45h12.14l.7-9.44L22 7.46l-1.41-1.41zM16.23 18H7.79l-.51-7h9.46l-.51 7zm.64-9H7.12l-.09-1.27L9.83 5h4.33l2.8 2.73L16.87 9z" -}, "1")], 'TakeoutDiningTwoTone'); \ No newline at end of file +}, "1")], 'TakeoutDiningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapAndPlay.js b/packages/material-ui-icons/lib/TapAndPlay.js index a53446595a793c..3ede1e73ab0ef6 100644 --- a/packages/material-ui-icons/lib/TapAndPlay.js +++ b/packages/material-ui-icons/lib/TapAndPlay.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" -}), 'TapAndPlay'); \ No newline at end of file +}), 'TapAndPlay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapAndPlayOutlined.js b/packages/material-ui-icons/lib/TapAndPlayOutlined.js index f4da47133334d6..8a6359c4fe7926 100644 --- a/packages/material-ui-icons/lib/TapAndPlayOutlined.js +++ b/packages/material-ui-icons/lib/TapAndPlayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" -}), 'TapAndPlayOutlined'); \ No newline at end of file +}), 'TapAndPlayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapAndPlayRounded.js b/packages/material-ui-icons/lib/TapAndPlayRounded.js index 3ab5fd2198bd7a..a9397badb5d46d 100644 --- a/packages/material-ui-icons/lib/TapAndPlayRounded.js +++ b/packages/material-ui-icons/lib/TapAndPlayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.14 16.09c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.95-2.81-5.29-5.77-5.77zM2 20v3h3c0-1.66-1.34-3-3-3zm1.11-7.94c-.59-.06-1.11.4-1.11.99 0 .5.37.94.87.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.88.99.88.59 0 1.06-.51 1-1.1-.51-5.2-4.63-9.32-9.83-9.84zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" -}), 'TapAndPlayRounded'); \ No newline at end of file +}), 'TapAndPlayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapAndPlaySharp.js b/packages/material-ui-icons/lib/TapAndPlaySharp.js index 850b315233d30a..803194261eb23d 100644 --- a/packages/material-ui-icons/lib/TapAndPlaySharp.js +++ b/packages/material-ui-icons/lib/TapAndPlaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM5 1v9.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H19V1H5z" -}), 'TapAndPlaySharp'); \ No newline at end of file +}), 'TapAndPlaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapAndPlayTwoTone.js b/packages/material-ui-icons/lib/TapAndPlayTwoTone.js index 522f494e3ae4e8..4e2b2d29c73836 100644 --- a/packages/material-ui-icons/lib/TapAndPlayTwoTone.js +++ b/packages/material-ui-icons/lib/TapAndPlayTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" -}), 'TapAndPlayTwoTone'); \ No newline at end of file +}), 'TapAndPlayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tapas.js b/packages/material-ui-icons/lib/Tapas.js index f7080d248587d3..8cc1249982738d 100644 --- a/packages/material-ui-icons/lib/Tapas.js +++ b/packages/material-ui-icons/lib/Tapas.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zm-7.5 8.5c0 1.38-1.12 2.5-2.5 2.5H8v9H6v-9H4c-1.38 0-2.5-1.12-2.5-2.5S2.62 9 4 9h2V8H4C2.62 8 1.5 6.88 1.5 5.5S2.62 3 4 3h2V1h2v2h2c1.38 0 2.5 1.12 2.5 2.5S11.38 8 10 8H8v1h2c1.38 0 2.5 1.12 2.5 2.5z" -}), 'Tapas'); \ No newline at end of file +}), 'Tapas'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapasOutlined.js b/packages/material-ui-icons/lib/TapasOutlined.js index b2ac01b0ebb610..e4a857314d93e0 100644 --- a/packages/material-ui-icons/lib/TapasOutlined.js +++ b/packages/material-ui-icons/lib/TapasOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zm-4 7V8h4v2c0 1.1-.9 2-2 2s-2-.9-2-2zm-6-1H8V8h2c1.38 0 2.5-1.12 2.5-2.5S11.38 3 10 3H8V1H6v2H4C2.62 3 1.5 4.12 1.5 5.5S2.62 8 4 8h2v1H4c-1.38 0-2.5 1.12-2.5 2.5S2.62 14 4 14h2v9h2v-9h2c1.38 0 2.5-1.12 2.5-2.5S11.38 9 10 9zM4 6c-.28 0-.5-.22-.5-.5S3.72 5 4 5h6c.28 0 .5.22.5.5s-.22.5-.5.5H4zm6 6H4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'TapasOutlined'); \ No newline at end of file +}), 'TapasOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapasRounded.js b/packages/material-ui-icons/lib/TapasRounded.js index 15105442e2b877..a5fc6079317985 100644 --- a/packages/material-ui-icons/lib/TapasRounded.js +++ b/packages/material-ui-icons/lib/TapasRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V2c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v8c0 1.86 1.28 3.41 3 3.86V21h-1c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-1v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zM9.86 9H8V8h1.86c1.31 0 2.5-.94 2.63-2.24C12.64 4.26 11.47 3 10 3H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H4.14c-1.31 0-2.5.94-2.63 2.24C1.36 6.74 2.53 8 4 8h2v1H4.14c-1.31 0-2.5.94-2.63 2.24C1.36 12.74 2.53 14 4 14h2v8c0 .55.45 1 1 1s1-.45 1-1v-8h2c1.47 0 2.64-1.26 2.49-2.76C12.36 9.94 11.17 9 9.86 9z" -}), 'TapasRounded'); \ No newline at end of file +}), 'TapasRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapasSharp.js b/packages/material-ui-icons/lib/TapasSharp.js index e6dba738ad186c..61ca80082ee795 100644 --- a/packages/material-ui-icons/lib/TapasSharp.js +++ b/packages/material-ui-icons/lib/TapasSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zM10 9H8V8h2c1.38 0 2.5-1.12 2.5-2.5S11.38 3 10 3H8V1H6v2H4C2.62 3 1.5 4.12 1.5 5.5S2.62 8 4 8h2v1H4c-1.38 0-2.5 1.12-2.5 2.5S2.62 14 4 14h2v9h2v-9h2c1.38 0 2.5-1.12 2.5-2.5S11.38 9 10 9z" -}), 'TapasSharp'); \ No newline at end of file +}), 'TapasSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TapasTwoTone.js b/packages/material-ui-icons/lib/TapasTwoTone.js index d3312a116f9b9b..267bbd16e205c0 100644 --- a/packages/material-ui-icons/lib/TapasTwoTone.js +++ b/packages/material-ui-icons/lib/TapasTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 10V8h4v2c0 1.1-.9 2-2 2s-2-.9-2-2zM4 6c-.28 0-.5-.22-.5-.5S3.72 5 4 5h6c.28 0 .5.22.5.5s-.22.5-.5.5H4zm6 6H4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6c.28 0 .5.22.5.5s-.22.5-.5.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zm-4 7V8h4v2c0 1.1-.9 2-2 2s-2-.9-2-2zm-6-1H8V8h2c1.38 0 2.5-1.12 2.5-2.5S11.38 3 10 3H8V1H6v2H4C2.62 3 1.5 4.12 1.5 5.5S2.62 8 4 8h2v1H4c-1.38 0-2.5 1.12-2.5 2.5S2.62 14 4 14h2v9h2v-9h2c1.38 0 2.5-1.12 2.5-2.5S11.38 9 10 9zM4 6c-.28 0-.5-.22-.5-.5S3.72 5 4 5h6c.28 0 .5.22.5.5s-.22.5-.5.5H4zm6 6H4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6c.28 0 .5.22.5.5s-.22.5-.5.5z" -}, "1")], 'TapasTwoTone'); \ No newline at end of file +}, "1")], 'TapasTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Task.js b/packages/material-ui-icons/lib/Task.js index 7d69e33e15d459..23d8889b090925 100644 --- a/packages/material-ui-icons/lib/Task.js +++ b/packages/material-ui-icons/lib/Task.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-3.06 16L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18zM13 9V3.5L18.5 9H13z" -}), 'Task'); \ No newline at end of file +}), 'Task'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskAlt.js b/packages/material-ui-icons/lib/TaskAlt.js index 74b22cb6650b15..9cace84a4e26d7 100644 --- a/packages/material-ui-icons/lib/TaskAlt.js +++ b/packages/material-ui-icons/lib/TaskAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" -}), 'TaskAlt'); \ No newline at end of file +}), 'TaskAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskAltOutlined.js b/packages/material-ui-icons/lib/TaskAltOutlined.js index 10322252c88dad..582de34f0be146 100644 --- a/packages/material-ui-icons/lib/TaskAltOutlined.js +++ b/packages/material-ui-icons/lib/TaskAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" -}), 'TaskAltOutlined'); \ No newline at end of file +}), 'TaskAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskAltRounded.js b/packages/material-ui-icons/lib/TaskAltRounded.js index 54ecbfcc0dd537..2bad1c33f60063 100644 --- a/packages/material-ui-icons/lib/TaskAltRounded.js +++ b/packages/material-ui-icons/lib/TaskAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.29 5.89-10 10c-.39.39-1.02.39-1.41 0l-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12 9.29-9.29c.39-.39 1.02-.39 1.41 0 .4.39.4 1.02.01 1.41zm-5.52-3.15c-1.69-.69-3.61-.93-5.61-.57-4.07.73-7.32 4.01-8.01 8.08C1.01 17 6.63 22.78 13.34 21.91c3.96-.51 7.28-3.46 8.32-7.31.4-1.47.44-2.89.21-4.22-.13-.8-1.12-1.11-1.7-.54-.23.23-.33.57-.27.89.22 1.33.12 2.75-.52 4.26-1.16 2.71-3.68 4.7-6.61 4.97-5.1.47-9.33-3.85-8.7-8.98.43-3.54 3.28-6.42 6.81-6.91 1.73-.24 3.37.09 4.77.81.39.2.86.13 1.17-.18.48-.48.36-1.29-.24-1.6-.27-.12-.54-.25-.81-.36z" -}), 'TaskAltRounded'); \ No newline at end of file +}), 'TaskAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskAltSharp.js b/packages/material-ui-icons/lib/TaskAltSharp.js index 6108196bdc0d0b..d09a69119cae51 100644 --- a/packages/material-ui-icons/lib/TaskAltSharp.js +++ b/packages/material-ui-icons/lib/TaskAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" -}), 'TaskAltSharp'); \ No newline at end of file +}), 'TaskAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskAltTwoTone.js b/packages/material-ui-icons/lib/TaskAltTwoTone.js index b4f4fc7f8708d2..52f1d98448e0b6 100644 --- a/packages/material-ui-icons/lib/TaskAltTwoTone.js +++ b/packages/material-ui-icons/lib/TaskAltTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" -}), 'TaskAltTwoTone'); \ No newline at end of file +}), 'TaskAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskOutlined.js b/packages/material-ui-icons/lib/TaskOutlined.js index 3df7c974575d45..127bc6cb00ce25 100644 --- a/packages/material-ui-icons/lib/TaskOutlined.js +++ b/packages/material-ui-icons/lib/TaskOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zm-9.18-6.95L7.4 14.46 10.94 18l5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" -}), 'TaskOutlined'); \ No newline at end of file +}), 'TaskOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskRounded.js b/packages/material-ui-icons/lib/TaskRounded.js index d96e09cfcbd1ca..c81b3f4021ffa5 100644 --- a/packages/material-ui-icons/lib/TaskRounded.js +++ b/packages/material-ui-icons/lib/TaskRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zm-9.18 9.88-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.24c-.38.4-1.02.4-1.41.01zM14 9c-.55 0-1-.45-1-1V3.5L18.5 9H14z" -}), 'TaskRounded'); \ No newline at end of file +}), 'TaskRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskSharp.js b/packages/material-ui-icons/lib/TaskSharp.js index b56af7acb44a93..52ac428f20f56c 100644 --- a/packages/material-ui-icons/lib/TaskSharp.js +++ b/packages/material-ui-icons/lib/TaskSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm-3.06 16L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18zM13 9V3.5L18.5 9H13z" -}), 'TaskSharp'); \ No newline at end of file +}), 'TaskSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaskTwoTone.js b/packages/material-ui-icons/lib/TaskTwoTone.js index 32c7ec02b74f77..1de85492b83041 100644 --- a/packages/material-ui-icons/lib/TaskTwoTone.js +++ b/packages/material-ui-icons/lib/TaskTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 9V4H6v16h12V9h-5zm-2.06 9L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zm-9.18-6.95L7.4 14.46 10.94 18l5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" -}, "1")], 'TaskTwoTone'); \ No newline at end of file +}, "1")], 'TaskTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaxiAlert.js b/packages/material-ui-icons/lib/TaxiAlert.js index 1a7bf8b9c1439b..13b07e4fac887b 100644 --- a/packages/material-ui-icons/lib/TaxiAlert.js +++ b/packages/material-ui-icons/lib/TaxiAlert.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8A7 7 0 0 0 9.68 5H7v2H4.5a1.5 1.5 0 0 0-1.42 1.01L1 14v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-7.68A7.01 7.01 0 0 0 23 8zm-18.5.5h4.53a6.93 6.93 0 0 0 2.08 4.5H3l1.5-4.5zm0 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm11 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.93-5.63-.21.11-.18.09a4.97 4.97 0 0 1-.42.16l-.22.07-.23.06-.2.05a5 5 0 0 1-5.94-4.41A4.07 4.07 0 0 1 11 8l.02-.47.02-.17.04-.28.04-.21.05-.21.07-.24.05-.13a4.99 4.99 0 0 1 9.69 1.7 4.96 4.96 0 0 1-2.55 4.38zM15 4h2v5h-2zm0 6h2v2h-2z" -}), 'TaxiAlert'); \ No newline at end of file +}), 'TaxiAlert'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaxiAlertOutlined.js b/packages/material-ui-icons/lib/TaxiAlertOutlined.js index d437c0bc41bbc4..36ca755a5bc0cb 100644 --- a/packages/material-ui-icons/lib/TaxiAlertOutlined.js +++ b/packages/material-ui-icons/lib/TaxiAlertOutlined.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "15.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "15.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13v5H4v-5h14c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H5.5c-.66 0-1.21.42-1.42 1.01L2 13v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-.09-.27c-.61.17-1.25.27-1.91.27z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "3")], 'TaxiAlertOutlined'); \ No newline at end of file +}, "3")], 'TaxiAlertOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaxiAlertRounded.js b/packages/material-ui-icons/lib/TaxiAlertRounded.js index 5f72d37c272790..2c40a30370844d 100644 --- a/packages/material-ui-icons/lib/TaxiAlertRounded.js +++ b/packages/material-ui-icons/lib/TaxiAlertRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H9c-.55 0-1 .45-1 1v1H5.5c-.66 0-1.21.42-1.42 1.01L2 13v7.5c0 .82.67 1.5 1.5 1.5S5 21.32 5 20.5V20h12v.5c0 .82.67 1.5 1.5 1.5s1.5-.68 1.5-1.5V13l-.09-.27c-.61.17-1.25.27-1.91.27zM6.5 17c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm.5-2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5s.5.22.5.5v3z" -}, "1")], 'TaxiAlertRounded'); \ No newline at end of file +}, "1")], 'TaxiAlertRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaxiAlertSharp.js b/packages/material-ui-icons/lib/TaxiAlertSharp.js index ae15fffacae2a0..5e738557e056dd 100644 --- a/packages/material-ui-icons/lib/TaxiAlertSharp.js +++ b/packages/material-ui-icons/lib/TaxiAlertSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H4.43L2 13v9h3v-2h12v2h3v-9l-.09-.27c-.61.17-1.25.27-1.91.27zM6.5 17c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" -}, "1")], 'TaxiAlertSharp'); \ No newline at end of file +}, "1")], 'TaxiAlertSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TaxiAlertTwoTone.js b/packages/material-ui-icons/lib/TaxiAlertTwoTone.js index 78efa8485b3eac..fc82072c61bfb8 100644 --- a/packages/material-ui-icons/lib/TaxiAlertTwoTone.js +++ b/packages/material-ui-icons/lib/TaxiAlertTwoTone.js @@ -1,18 +1,31 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h14v-5H4v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S7.33 17 6.5 17 5 16.33 5 15.5 5.67 14 6.5 14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6.5", cy: "15.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "15.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 18H4v-5h14c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H5.5c-.66 0-1.21.42-1.42 1.01L2 13v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-.09-.27c-.61.17-1.25.27-1.91.27v5z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 2v4h-1V3h1zm0 6h-1V8h1v1z" -}, "4")], 'TaxiAlertTwoTone'); \ No newline at end of file +}, "4")], 'TaxiAlertTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Telegram.js b/packages/material-ui-icons/lib/Telegram.js index db0993c011eca0..26056311c57c59 100644 --- a/packages/material-ui-icons/lib/Telegram.js +++ b/packages/material-ui-icons/lib/Telegram.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z" -}), 'Telegram'); \ No newline at end of file +}), 'Telegram'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TenMp.js b/packages/material-ui-icons/lib/TenMp.js index 96e606d26feff5..63aa923142c144 100644 --- a/packages/material-ui-icons/lib/TenMp.js +++ b/packages/material-ui-icons/lib/TenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 7H15v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z" -}), 'TenMp'); \ No newline at end of file +}), 'TenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TenMpOutlined.js b/packages/material-ui-icons/lib/TenMpOutlined.js index 5f11a2e77ca0b6..ed71d4e372983b 100644 --- a/packages/material-ui-icons/lib/TenMpOutlined.js +++ b/packages/material-ui-icons/lib/TenMpOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H15v3h-1.5V7zm-6 7h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm1-2.5H10v-6H7V7h1.5zm5 7H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1")], 'TenMpOutlined'); \ No newline at end of file +}, "1")], 'TenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TenMpRounded.js b/packages/material-ui-icons/lib/TenMpRounded.js index 480f87c1eb9719..d03f4e613cb2e5 100644 --- a/packages/material-ui-icons/lib/TenMpRounded.js +++ b/packages/material-ui-icons/lib/TenMpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 7H15v3h-1.5V7zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7.25 15.5c-.41 0-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zm2.5 0c-.41 0-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75zM10 6.5v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75H9c.55 0 1 .45 1 1zm6.5 4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM15 14h1.5v1.5H15V14z" -}), 'TenMpRounded'); \ No newline at end of file +}), 'TenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TenMpSharp.js b/packages/material-ui-icons/lib/TenMpSharp.js index d97a56ce982941..947e161d22649a 100644 --- a/packages/material-ui-icons/lib/TenMpSharp.js +++ b/packages/material-ui-icons/lib/TenMpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 7H15v3h-1.5V7zM21 3H3v18h18V3zm-8.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm2.5 0h-1.5v-6H18V17h-3v1.5zm-5-13v6H8.5V7H7V5.5h3zm6.5 0v6H12v-6h4.5zM15 14h1.5v1.5H15V14z" -}), 'TenMpSharp'); \ No newline at end of file +}), 'TenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TenMpTwoTone.js b/packages/material-ui-icons/lib/TenMpTwoTone.js index fa38cb4a8b7c9f..89db4af0c6ba60 100644 --- a/packages/material-ui-icons/lib/TenMpTwoTone.js +++ b/packages/material-ui-icons/lib/TenMpTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5 7H15v3h-1.5zm1.5 7h1.5v1.5H15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4zm-5-1h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H15v3h-1.5V7zm-6 7h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm1-2.5H10v-6H7V7h1.5zm5 7H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3")], 'TenMpTwoTone'); \ No newline at end of file +}, "3")], 'TenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Terrain.js b/packages/material-ui-icons/lib/Terrain.js index 2af2ded311a97c..02a9a5875a187a 100644 --- a/packages/material-ui-icons/lib/Terrain.js +++ b/packages/material-ui-icons/lib/Terrain.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" -}), 'Terrain'); \ No newline at end of file +}), 'Terrain'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TerrainOutlined.js b/packages/material-ui-icons/lib/TerrainOutlined.js index 66cc5dd8088d72..fa3171a03ab194 100644 --- a/packages/material-ui-icons/lib/TerrainOutlined.js +++ b/packages/material-ui-icons/lib/TerrainOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" -}), 'TerrainOutlined'); \ No newline at end of file +}), 'TerrainOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TerrainRounded.js b/packages/material-ui-icons/lib/TerrainRounded.js index 360efa11138e4b..1480f5aa97c4f3 100644 --- a/packages/material-ui-icons/lib/TerrainRounded.js +++ b/packages/material-ui-icons/lib/TerrainRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.2 7.07 10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z" -}), 'TerrainRounded'); \ No newline at end of file +}), 'TerrainRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TerrainSharp.js b/packages/material-ui-icons/lib/TerrainSharp.js index b91a5484693471..3fe5f503bc3da4 100644 --- a/packages/material-ui-icons/lib/TerrainSharp.js +++ b/packages/material-ui-icons/lib/TerrainSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" -}), 'TerrainSharp'); \ No newline at end of file +}), 'TerrainSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TerrainTwoTone.js b/packages/material-ui-icons/lib/TerrainTwoTone.js index df7529a0061620..aa643984cd9f63 100644 --- a/packages/material-ui-icons/lib/TerrainTwoTone.js +++ b/packages/material-ui-icons/lib/TerrainTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h3.04l-1.52-2.03z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.78 11.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" -}, "1")], 'TerrainTwoTone'); \ No newline at end of file +}, "1")], 'TerrainTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFields.js b/packages/material-ui-icons/lib/TextFields.js index f47ed33900b3ed..9d2ae2986ff27f 100644 --- a/packages/material-ui-icons/lib/TextFields.js +++ b/packages/material-ui-icons/lib/TextFields.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" -}), 'TextFields'); \ No newline at end of file +}), 'TextFields'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFieldsOutlined.js b/packages/material-ui-icons/lib/TextFieldsOutlined.js index 932dde0911d8d4..68e89ba0898d0d 100644 --- a/packages/material-ui-icons/lib/TextFieldsOutlined.js +++ b/packages/material-ui-icons/lib/TextFieldsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" -}), 'TextFieldsOutlined'); \ No newline at end of file +}), 'TextFieldsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFieldsRounded.js b/packages/material-ui-icons/lib/TextFieldsRounded.js index 77d61da3fdb9cd..71d7e9b8d13602 100644 --- a/packages/material-ui-icons/lib/TextFieldsRounded.js +++ b/packages/material-ui-icons/lib/TextFieldsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 5.5C2.5 6.33 3.17 7 4 7h3.5v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7H14c.83 0 1.5-.67 1.5-1.5S14.83 4 14 4H4c-.83 0-1.5.67-1.5 1.5zM20 9h-6c-.83 0-1.5.67-1.5 1.5S13.17 12 14 12h1.5v5.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V12H20c.83 0 1.5-.67 1.5-1.5S20.83 9 20 9z" -}), 'TextFieldsRounded'); \ No newline at end of file +}), 'TextFieldsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFieldsSharp.js b/packages/material-ui-icons/lib/TextFieldsSharp.js index 5d566bf7d0eb56..1d20b623f0b3ca 100644 --- a/packages/material-ui-icons/lib/TextFieldsSharp.js +++ b/packages/material-ui-icons/lib/TextFieldsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" -}), 'TextFieldsSharp'); \ No newline at end of file +}), 'TextFieldsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFieldsTwoTone.js b/packages/material-ui-icons/lib/TextFieldsTwoTone.js index b32db17fceb563..fec6086109b969 100644 --- a/packages/material-ui-icons/lib/TextFieldsTwoTone.js +++ b/packages/material-ui-icons/lib/TextFieldsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 12h3v7h3v-7h3V9h-9zm3-8h-13v3h5v12h3V7h5z" -}), 'TextFieldsTwoTone'); \ No newline at end of file +}), 'TextFieldsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFormat.js b/packages/material-ui-icons/lib/TextFormat.js index 7906f03dae75ac..e48cd0c31e5dab 100644 --- a/packages/material-ui-icons/lib/TextFormat.js +++ b/packages/material-ui-icons/lib/TextFormat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" -}), 'TextFormat'); \ No newline at end of file +}), 'TextFormat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFormatOutlined.js b/packages/material-ui-icons/lib/TextFormatOutlined.js index c095ca6fcfbc54..4b55ebb070818d 100644 --- a/packages/material-ui-icons/lib/TextFormatOutlined.js +++ b/packages/material-ui-icons/lib/TextFormatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" -}), 'TextFormatOutlined'); \ No newline at end of file +}), 'TextFormatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFormatRounded.js b/packages/material-ui-icons/lib/TextFormatRounded.js index 7e6247692e7716..370cfe10497f24 100644 --- a/packages/material-ui-icons/lib/TextFormatRounded.js +++ b/packages/material-ui-icons/lib/TextFormatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1zm4.5-5.2h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C12.87 4.27 12.46 4 12 4c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.65-1.6zM12 5.98 13.87 11h-3.74L12 5.98z" -}), 'TextFormatRounded'); \ No newline at end of file +}), 'TextFormatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFormatSharp.js b/packages/material-ui-icons/lib/TextFormatSharp.js index fbb2b677d1a5b9..1fb21adf2dbd5d 100644 --- a/packages/material-ui-icons/lib/TextFormatSharp.js +++ b/packages/material-ui-icons/lib/TextFormatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" -}), 'TextFormatSharp'); \ No newline at end of file +}), 'TextFormatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextFormatTwoTone.js b/packages/material-ui-icons/lib/TextFormatTwoTone.js index 63cc2372a5b9c0..ad6bd285d3438d 100644 --- a/packages/material-ui-icons/lib/TextFormatTwoTone.js +++ b/packages/material-ui-icons/lib/TextFormatTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" -}), 'TextFormatTwoTone'); \ No newline at end of file +}), 'TextFormatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateUp.js b/packages/material-ui-icons/lib/TextRotateUp.js index 1581c71f876d82..94cf9a10550956 100644 --- a/packages/material-ui-icons/lib/TextRotateUp.js +++ b/packages/material-ui-icons/lib/TextRotateUp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12v1.5l11 4.75v-2.1l-2.2-.9v-5l2.2-.9v-2.1L3 12zm7 2.62-5.02-1.87L10 10.88v3.74zm8-10.37-3 3h2v12.5h2V7.25h2l-3-3z" -}), 'TextRotateUp'); \ No newline at end of file +}), 'TextRotateUp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateUpOutlined.js b/packages/material-ui-icons/lib/TextRotateUpOutlined.js index a17295cc022a77..6ee0f099da835e 100644 --- a/packages/material-ui-icons/lib/TextRotateUpOutlined.js +++ b/packages/material-ui-icons/lib/TextRotateUpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13 10 11.13v3.74L4.98 13z" -}), 'TextRotateUpOutlined'); \ No newline at end of file +}), 'TextRotateUpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateUpRounded.js b/packages/material-ui-icons/lib/TextRotateUpRounded.js index 3eeacd6af6c232..99643d60897c0c 100644 --- a/packages/material-ui-icons/lib/TextRotateUpRounded.js +++ b/packages/material-ui-icons/lib/TextRotateUpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.35 4.35c-.2-.2-.51-.2-.71 0l-1.79 1.79c-.31.32-.09.86.36.86H17v12c0 .55.45 1 1 1s1-.45 1-1V7h.79c.45 0 .67-.54.35-.85l-1.79-1.8zM11.8 15.5v-5l1.6-.66c.36-.14.6-.49.6-.88 0-.69-.71-1.15-1.34-.88l-8.97 3.88c-.42.17-.69.58-.69 1.04 0 .46.27.87.69 1.05l8.97 3.88c.63.27 1.34-.2 1.34-.89 0-.39-.24-.74-.6-.89l-1.6-.65zM4.98 13 10 11.13v3.74L4.98 13z" -}), 'TextRotateUpRounded'); \ No newline at end of file +}), 'TextRotateUpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateUpSharp.js b/packages/material-ui-icons/lib/TextRotateUpSharp.js index 778a360f31d8f9..f00344d8fa855d 100644 --- a/packages/material-ui-icons/lib/TextRotateUpSharp.js +++ b/packages/material-ui-icons/lib/TextRotateUpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13 10 11.13v3.74L4.98 13z" -}), 'TextRotateUpSharp'); \ No newline at end of file +}), 'TextRotateUpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateUpTwoTone.js b/packages/material-ui-icons/lib/TextRotateUpTwoTone.js index cdf2b45136cda1..125f79839908f4 100644 --- a/packages/material-ui-icons/lib/TextRotateUpTwoTone.js +++ b/packages/material-ui-icons/lib/TextRotateUpTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18 4-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13 10 11.13v3.74L4.98 13z" -}), 'TextRotateUpTwoTone'); \ No newline at end of file +}), 'TextRotateUpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateVertical.js b/packages/material-ui-icons/lib/TextRotateVertical.js index d1ba2b2c38f001..6de1d6c3eadba5 100644 --- a/packages/material-ui-icons/lib/TextRotateVertical.js +++ b/packages/material-ui-icons/lib/TextRotateVertical.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z" -}), 'TextRotateVertical'); \ No newline at end of file +}), 'TextRotateVertical'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateVerticalOutlined.js b/packages/material-ui-icons/lib/TextRotateVerticalOutlined.js index 9e9f1b6c4334ef..e457a37c5724f2 100644 --- a/packages/material-ui-icons/lib/TextRotateVerticalOutlined.js +++ b/packages/material-ui-icons/lib/TextRotateVerticalOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" -}), 'TextRotateVerticalOutlined'); \ No newline at end of file +}), 'TextRotateVerticalOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateVerticalRounded.js b/packages/material-ui-icons/lib/TextRotateVerticalRounded.js index d677e3f805ea07..aaba9541bff922 100644 --- a/packages/material-ui-icons/lib/TextRotateVerticalRounded.js +++ b/packages/material-ui-icons/lib/TextRotateVerticalRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 5c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.66-1.6h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C15.87 5.27 15.46 5 15 5zm-1.87 7L15 6.98 16.87 12h-3.74zm-6.78 7.64 1.79-1.79c.32-.31.1-.85-.35-.85H7V5c0-.55-.45-1-1-1s-1 .44-1 1v12h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.19.2.51.2.7 0z" -}), 'TextRotateVerticalRounded'); \ No newline at end of file +}), 'TextRotateVerticalRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateVerticalSharp.js b/packages/material-ui-icons/lib/TextRotateVerticalSharp.js index 8fa7ac580e99c9..4a2208629bbcb0 100644 --- a/packages/material-ui-icons/lib/TextRotateVerticalSharp.js +++ b/packages/material-ui-icons/lib/TextRotateVerticalSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" -}), 'TextRotateVerticalSharp'); \ No newline at end of file +}), 'TextRotateVerticalSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotateVerticalTwoTone.js b/packages/material-ui-icons/lib/TextRotateVerticalTwoTone.js index c33eb503d6f67a..7d8d9eb11e1d1f 100644 --- a/packages/material-ui-icons/lib/TextRotateVerticalTwoTone.js +++ b/packages/material-ui-icons/lib/TextRotateVerticalTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" -}), 'TextRotateVerticalTwoTone'); \ No newline at end of file +}), 'TextRotateVerticalTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngledown.js b/packages/material-ui-icons/lib/TextRotationAngledown.js index 0e01edca099495..828d357b061072 100644 --- a/packages/material-ui-icons/lib/TextRotationAngledown.js +++ b/packages/material-ui-icons/lib/TextRotationAngledown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.4 4.91-1.06-1.06L7.2 8.27l1.48 1.48 2.19-.92 3.54 3.54-.92 2.19 1.48 1.48L19.4 4.91zm-6.81 3.1 4.87-2.23-2.23 4.87-2.64-2.64zM14.27 21v-4.24l-1.41 1.41-8.84-8.84-1.42 1.42 8.84 8.84L10.03 21h4.24z" -}), 'TextRotationAngledown'); \ No newline at end of file +}), 'TextRotationAngledown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngledownOutlined.js b/packages/material-ui-icons/lib/TextRotationAngledownOutlined.js index 8c66dda5c2b41a..d9f5b9e874fef1 100644 --- a/packages/material-ui-icons/lib/TextRotationAngledownOutlined.js +++ b/packages/material-ui-icons/lib/TextRotationAngledownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" -}), 'TextRotationAngledownOutlined'); \ No newline at end of file +}), 'TextRotationAngledownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngledownRounded.js b/packages/material-ui-icons/lib/TextRotationAngledownRounded.js index a105e27cfbfac3..8fc27e15d41835 100644 --- a/packages/material-ui-icons/lib/TextRotationAngledownRounded.js +++ b/packages/material-ui-icons/lib/TextRotationAngledownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 20.5v-2.54c0-.45-.54-.67-.85-.35l-.56.56L5.1 9.68a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l8.49 8.49-.56.56c-.32.32-.1.86.34.86h2.54c.28 0 .5-.23.5-.5zM11.25 8.48l3.54 3.54-.67 1.6c-.15.36-.07.77.21 1.05.49.49 1.31.32 1.57-.32l3.61-9.09c.17-.42.07-.91-.25-1.23-.32-.32-.8-.42-1.23-.25l-9.1 3.6c-.64.25-.81 1.08-.32 1.57.27.27.68.35 1.04.2l1.6-.67zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" -}), 'TextRotationAngledownRounded'); \ No newline at end of file +}), 'TextRotationAngledownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngledownSharp.js b/packages/material-ui-icons/lib/TextRotationAngledownSharp.js index 25c446a3f0d62c..05d55da3ab6fa6 100644 --- a/packages/material-ui-icons/lib/TextRotationAngledownSharp.js +++ b/packages/material-ui-icons/lib/TextRotationAngledownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" -}), 'TextRotationAngledownSharp'); \ No newline at end of file +}), 'TextRotationAngledownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngledownTwoTone.js b/packages/material-ui-icons/lib/TextRotationAngledownTwoTone.js index 9a2ab7796f0345..43512579839193 100644 --- a/packages/material-ui-icons/lib/TextRotationAngledownTwoTone.js +++ b/packages/material-ui-icons/lib/TextRotationAngledownTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" -}), 'TextRotationAngledownTwoTone'); \ No newline at end of file +}), 'TextRotationAngledownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngleup.js b/packages/material-ui-icons/lib/TextRotationAngleup.js index 275e2e4d19dc4e..e1fa44846de5cf 100644 --- a/packages/material-ui-icons/lib/TextRotationAngleup.js +++ b/packages/material-ui-icons/lib/TextRotationAngleup.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.49 4.21 3.43 5.27 7.85 16.4l1.48-1.48-.92-2.19 3.54-3.54 2.19.92 1.48-1.48L4.49 4.21zm3.09 6.8L5.36 6.14l4.87 2.23-2.65 2.64zm12.99-1.68h-4.24l1.41 1.41-8.84 8.84L10.32 21l8.84-8.84 1.41 1.41V9.33z" -}), 'TextRotationAngleup'); \ No newline at end of file +}), 'TextRotationAngleup'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngleupOutlined.js b/packages/material-ui-icons/lib/TextRotationAngleupOutlined.js index f168d18e76318d..15dce96f7ada76 100644 --- a/packages/material-ui-icons/lib/TextRotationAngleupOutlined.js +++ b/packages/material-ui-icons/lib/TextRotationAngleupOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.76 9 1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75 3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" -}), 'TextRotationAngleupOutlined'); \ No newline at end of file +}), 'TextRotationAngleupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngleupRounded.js b/packages/material-ui-icons/lib/TextRotationAngleupRounded.js index c201df7bd7cdc5..128d8facbfadbf 100644 --- a/packages/material-ui-icons/lib/TextRotationAngleupRounded.js +++ b/packages/material-ui-icons/lib/TextRotationAngleupRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.61 9.85.56.56-8.48 8.49c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l8.49-8.49.56.56c.31.32.85.1.85-.34V9.5c0-.28-.22-.5-.5-.5h-2.54c-.44 0-.66.54-.35.85zm-9.13 2.9 3.54-3.54 1.6.67c.36.15.77.07 1.05-.21.49-.49.32-1.31-.32-1.57L5.26 4.5c-.43-.16-.91-.06-1.23.26-.32.32-.42.8-.25 1.23l3.61 9.09c.25.64 1.08.81 1.57.32.28-.28.36-.69.21-1.05l-.69-1.6zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" -}), 'TextRotationAngleupRounded'); \ No newline at end of file +}), 'TextRotationAngleupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngleupSharp.js b/packages/material-ui-icons/lib/TextRotationAngleupSharp.js index d5840f963ee368..d3265b97cfd561 100644 --- a/packages/material-ui-icons/lib/TextRotationAngleupSharp.js +++ b/packages/material-ui-icons/lib/TextRotationAngleupSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.76 9 1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75 3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" -}), 'TextRotationAngleupSharp'); \ No newline at end of file +}), 'TextRotationAngleupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationAngleupTwoTone.js b/packages/material-ui-icons/lib/TextRotationAngleupTwoTone.js index e7ebfb8206ff02..2ff97f2d946675 100644 --- a/packages/material-ui-icons/lib/TextRotationAngleupTwoTone.js +++ b/packages/material-ui-icons/lib/TextRotationAngleupTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.76 9 1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75 3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" -}), 'TextRotationAngleupTwoTone'); \ No newline at end of file +}), 'TextRotationAngleupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationDown.js b/packages/material-ui-icons/lib/TextRotationDown.js index b53eb33da6d4fc..15713c78f2008f 100644 --- a/packages/material-ui-icons/lib/TextRotationDown.js +++ b/packages/material-ui-icons/lib/TextRotationDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12v-1.5L10 5.75v2.1l2.2.9v5l-2.2.9v2.1L21 12zm-7-2.62 5.02 1.87L14 13.12V9.38zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z" -}), 'TextRotationDown'); \ No newline at end of file +}), 'TextRotationDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationDownOutlined.js b/packages/material-ui-icons/lib/TextRotationDownOutlined.js index dd52a6c570eea3..eccf637e9fa50f 100644 --- a/packages/material-ui-icons/lib/TextRotationDownOutlined.js +++ b/packages/material-ui-icons/lib/TextRotationDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 20 3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" -}), 'TextRotationDownOutlined'); \ No newline at end of file +}), 'TextRotationDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationDownRounded.js b/packages/material-ui-icons/lib/TextRotationDownRounded.js index 98c4a7458d667b..722d32c7e4fa04 100644 --- a/packages/material-ui-icons/lib/TextRotationDownRounded.js +++ b/packages/material-ui-icons/lib/TextRotationDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.35 19.65 1.79-1.79c.32-.32.1-.86-.35-.86H7V5c0-.55-.45-1-1-1s-1 .45-1 1v12h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.19.2.51.2.7.01zM12.2 8.5v5l-1.6.66c-.36.15-.6.5-.6.89 0 .69.71 1.15 1.34.88l8.97-3.88c.42-.18.69-.59.69-1.05 0-.46-.27-.87-.69-1.05l-8.97-3.88c-.63-.27-1.34.2-1.34.89 0 .39.24.74.6.89l1.6.65zm6.82 2.5L14 12.87V9.13L19.02 11z" -}), 'TextRotationDownRounded'); \ No newline at end of file +}), 'TextRotationDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationDownSharp.js b/packages/material-ui-icons/lib/TextRotationDownSharp.js index 0900c4a992c74b..a47ba92825cde0 100644 --- a/packages/material-ui-icons/lib/TextRotationDownSharp.js +++ b/packages/material-ui-icons/lib/TextRotationDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 20 3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" -}), 'TextRotationDownSharp'); \ No newline at end of file +}), 'TextRotationDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationDownTwoTone.js b/packages/material-ui-icons/lib/TextRotationDownTwoTone.js index bbf6091244181a..c42792fef9f835 100644 --- a/packages/material-ui-icons/lib/TextRotationDownTwoTone.js +++ b/packages/material-ui-icons/lib/TextRotationDownTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6 20 3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" -}), 'TextRotationDownTwoTone'); \ No newline at end of file +}), 'TextRotationDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationNone.js b/packages/material-ui-icons/lib/TextRotationNone.js index 5e530c1825ea89..a5e83730e2472d 100644 --- a/packages/material-ui-icons/lib/TextRotationNone.js +++ b/packages/material-ui-icons/lib/TextRotationNone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.75 3h-1.5L6.5 14h2.1l.9-2.2h5l.9 2.2h2.1L12.75 3zm-2.62 7L12 4.98 13.87 10h-3.74zm10.37 8-3-3v2H5v2h12.5v2l3-3z" -}), 'TextRotationNone'); \ No newline at end of file +}), 'TextRotationNone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationNoneOutlined.js b/packages/material-ui-icons/lib/TextRotationNoneOutlined.js index 5d418ea26ae47e..96a9be14d6f701 100644 --- a/packages/material-ui-icons/lib/TextRotationNoneOutlined.js +++ b/packages/material-ui-icons/lib/TextRotationNoneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 18-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98 13.87 10h-3.74L12 4.98z" -}), 'TextRotationNoneOutlined'); \ No newline at end of file +}), 'TextRotationNoneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationNoneRounded.js b/packages/material-ui-icons/lib/TextRotationNoneRounded.js index 6874721df31017..9e33a8a512be2c 100644 --- a/packages/material-ui-icons/lib/TextRotationNoneRounded.js +++ b/packages/material-ui-icons/lib/TextRotationNoneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.65 17.65-1.79-1.79c-.32-.32-.86-.1-.86.35V17H6c-.55 0-1 .45-1 1s.45 1 1 1h12v.79c0 .45.54.67.85.35l1.79-1.79c.2-.19.2-.51.01-.7zM9.5 11.8h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C12.87 3.27 12.46 3 12 3c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.65-1.6zM12 4.98 13.87 10h-3.74L12 4.98z" -}), 'TextRotationNoneRounded'); \ No newline at end of file +}), 'TextRotationNoneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationNoneSharp.js b/packages/material-ui-icons/lib/TextRotationNoneSharp.js index 7e6af703b802d8..0cba1802b81f2f 100644 --- a/packages/material-ui-icons/lib/TextRotationNoneSharp.js +++ b/packages/material-ui-icons/lib/TextRotationNoneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 18-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98 13.87 10h-3.74L12 4.98z" -}), 'TextRotationNoneSharp'); \ No newline at end of file +}), 'TextRotationNoneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextRotationNoneTwoTone.js b/packages/material-ui-icons/lib/TextRotationNoneTwoTone.js index 11993cca9d3e62..3db963cd698532 100644 --- a/packages/material-ui-icons/lib/TextRotationNoneTwoTone.js +++ b/packages/material-ui-icons/lib/TextRotationNoneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 18-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98 13.87 10h-3.74L12 4.98z" -}), 'TextRotationNoneTwoTone'); \ No newline at end of file +}), 'TextRotationNoneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextSnippet.js b/packages/material-ui-icons/lib/TextSnippet.js index 3c6cecb61ad3c5..c01e796f9b72cd 100644 --- a/packages/material-ui-icons/lib/TextSnippet.js +++ b/packages/material-ui-icons/lib/TextSnippet.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.41 8.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.42zM7 7h7v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2z" -}), 'TextSnippet'); \ No newline at end of file +}), 'TextSnippet'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextSnippetOutlined.js b/packages/material-ui-icons/lib/TextSnippetOutlined.js index 220bf7d1f801f5..a98cb3521de53e 100644 --- a/packages/material-ui-icons/lib/TextSnippetOutlined.js +++ b/packages/material-ui-icons/lib/TextSnippetOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 5 19 9.83V19H5V5h9.17m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM7 15h10v2H7v-2zm0-4h10v2H7v-2zm0-4h7v2H7V7z" -}), 'TextSnippetOutlined'); \ No newline at end of file +}), 'TextSnippetOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextSnippetRounded.js b/packages/material-ui-icons/lib/TextSnippetRounded.js index e73a596093ea14..da8a38d2fb6fdf 100644 --- a/packages/material-ui-icons/lib/TextSnippetRounded.js +++ b/packages/material-ui-icons/lib/TextSnippetRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM8 15h8c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm0-4h8c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm0-4h5c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'TextSnippetRounded'); \ No newline at end of file +}), 'TextSnippetRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextSnippetSharp.js b/packages/material-ui-icons/lib/TextSnippetSharp.js index bb4db4a5be0bf1..04e5bfbeb85b6b 100644 --- a/packages/material-ui-icons/lib/TextSnippetSharp.js +++ b/packages/material-ui-icons/lib/TextSnippetSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 9-6-6H3v18h18V9zM7 7h7v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2z" -}), 'TextSnippetSharp'); \ No newline at end of file +}), 'TextSnippetSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextSnippetTwoTone.js b/packages/material-ui-icons/lib/TextSnippetTwoTone.js index 8cdbcdfe186547..0ce37153a5ebb5 100644 --- a/packages/material-ui-icons/lib/TextSnippetTwoTone.js +++ b/packages/material-ui-icons/lib/TextSnippetTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 5 19 9.83V19H5V5h9.17M7 15h10v2H7v-2zm0-4h10v2H7v-2zm0-4h7v2H7V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 5 19 9.83V19H5V5h9.17m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM7 15h10v2H7v-2zm0-4h10v2H7v-2zm0-4h7v2H7V7z" -}, "1")], 'TextSnippetTwoTone'); \ No newline at end of file +}, "1")], 'TextSnippetTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Textsms.js b/packages/material-ui-icons/lib/Textsms.js index 707497519204c2..04e4808a5090ae 100644 --- a/packages/material-ui-icons/lib/Textsms.js +++ b/packages/material-ui-icons/lib/Textsms.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" -}), 'Textsms'); \ No newline at end of file +}), 'Textsms'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextsmsOutlined.js b/packages/material-ui-icons/lib/TextsmsOutlined.js index bcf33fda265c8f..76d98da65d2ff5 100644 --- a/packages/material-ui-icons/lib/TextsmsOutlined.js +++ b/packages/material-ui-icons/lib/TextsmsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" -}), 'TextsmsOutlined'); \ No newline at end of file +}), 'TextsmsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextsmsRounded.js b/packages/material-ui-icons/lib/TextsmsRounded.js index 73d100ebdb4960..17371dd874d0b8 100644 --- a/packages/material-ui-icons/lib/TextsmsRounded.js +++ b/packages/material-ui-icons/lib/TextsmsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" -}), 'TextsmsRounded'); \ No newline at end of file +}), 'TextsmsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextsmsSharp.js b/packages/material-ui-icons/lib/TextsmsSharp.js index 2ca6a59f47d83e..83a3d379d660b7 100644 --- a/packages/material-ui-icons/lib/TextsmsSharp.js +++ b/packages/material-ui-icons/lib/TextsmsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2.01L2 22l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" -}), 'TextsmsSharp'); \ No newline at end of file +}), 'TextsmsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextsmsTwoTone.js b/packages/material-ui-icons/lib/TextsmsTwoTone.js index 1869304109ec99..2a4a06671b02ce 100644 --- a/packages/material-ui-icons/lib/TextsmsTwoTone.js +++ b/packages/material-ui-icons/lib/TextsmsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m4 18 2-2h14V4H4v14zm11-9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" -}, "1")], 'TextsmsTwoTone'); \ No newline at end of file +}, "1")], 'TextsmsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Texture.js b/packages/material-ui-icons/lib/Texture.js index 6b7fc63c618b16..afa992df55d028 100644 --- a/packages/material-ui-icons/lib/Texture.js +++ b/packages/material-ui-icons/lib/Texture.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.51 3.08 3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3 3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z" -}), 'Texture'); \ No newline at end of file +}), 'Texture'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextureOutlined.js b/packages/material-ui-icons/lib/TextureOutlined.js index 54783e972ea13f..e2249d97cf6bc8 100644 --- a/packages/material-ui-icons/lib/TextureOutlined.js +++ b/packages/material-ui-icons/lib/TextureOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.51 3.08 3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3 3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z" -}), 'TextureOutlined'); \ No newline at end of file +}), 'TextureOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextureRounded.js b/packages/material-ui-icons/lib/TextureRounded.js index 23ddf6efd8fbfe..d1989c3ed9b3c3 100644 --- a/packages/material-ui-icons/lib/TextureRounded.js +++ b/packages/material-ui-icons/lib/TextureRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.58 3.08 3.15 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L21 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.95 3l-8.88 8.88v2.83L14.78 3h-2.83zM5.07 3c-1.1 0-2 .9-2 2v2l4-4h-2zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83l8.88-8.88V9.29L9.36 21z" -}), 'TextureRounded'); \ No newline at end of file +}), 'TextureRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextureSharp.js b/packages/material-ui-icons/lib/TextureSharp.js index 087aabda953d78..0960d27cafc8dd 100644 --- a/packages/material-ui-icons/lib/TextureSharp.js +++ b/packages/material-ui-icons/lib/TextureSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.66 3 3.07 19.59V21h1.41L21.07 4.42V3zm-7.71 0-8.88 8.88v2.83L14.78 3zM3.07 3v4l4-4zm18 18v-4l-4 4zm-8.88 0 8.88-8.88V9.29L9.36 21z" -}), 'TextureSharp'); \ No newline at end of file +}), 'TextureSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TextureTwoTone.js b/packages/material-ui-icons/lib/TextureTwoTone.js index 669ab9caba1105..5618a7dea24c94 100644 --- a/packages/material-ui-icons/lib/TextureTwoTone.js +++ b/packages/material-ui-icons/lib/TextureTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.88 3 3 11.88v2.83L14.71 3zM3 5v2l4-4H5c-1.1 0-2 .9-2 2zm16.51-1.92L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM21 9.29 9.29 21h2.83L21 12.12zm-.59 11.12c.37-.36.59-.86.59-1.41v-2l-4 4h2c.55 0 1.05-.22 1.41-.59z" -}), 'TextureTwoTone'); \ No newline at end of file +}), 'TextureTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheaterComedy.js b/packages/material-ui-icons/lib/TheaterComedy.js index 4c7f4f74260ed4..1ddf898b6145ae 100644 --- a/packages/material-ui-icons/lib/TheaterComedy.js +++ b/packages/material-ui-icons/lib/TheaterComedy.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 16.5C2 19.54 4.46 22 7.5 22s5.5-2.46 5.5-5.5V10H2v6.5zm5.5 2C6.12 18.5 5 17.83 5 17h5c0 .83-1.12 1.5-2.5 1.5zM10 13c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3v6h3v2.5c0-.83 1.12-1.5 2.5-1.5s2.5.67 2.5 1.5h-5v2.89c.75.38 1.6.61 2.5.61 3.04 0 5.5-2.46 5.5-5.5V3H11zm3 5.08c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1c0 .56-.45 1-1 1zm5 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1c0 .56-.45 1-1 1z" -}, "1")], 'TheaterComedy'); \ No newline at end of file +}, "1")], 'TheaterComedy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheaterComedyOutlined.js b/packages/material-ui-icons/lib/TheaterComedyOutlined.js index 76879fb97b075d..6fbd63a0c4be44 100644 --- a/packages/material-ui-icons/lib/TheaterComedyOutlined.js +++ b/packages/material-ui-icons/lib/TheaterComedyOutlined.js @@ -1,25 +1,38 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19", cy: "6.5", r: "1" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "6.5", r: "1" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.99 9c-1.38 0-2.5.84-2.5 1.88h5c0-1.04-1.12-1.88-2.5-1.88zM1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm2-5h8v5c0 2.21-1.79 4-4 4s-4-1.79-4-4v-5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2v5.5h2V4h8v5c0 2.21-1.79 4-4 4-.95 0-1.81-.35-2.5-.9v2.35c.76.35 1.61.55 2.5.55 3.31 0 6-2.69 6-6V2H11z" -}, "3"), /*#__PURE__*/_jsx("circle", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5", cy: "13.5", r: "1" -}, "4"), /*#__PURE__*/_jsx("circle", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13.5", r: "1" -}, "5"), /*#__PURE__*/_jsx("path", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17.88c1.38 0 2.5-.84 2.5-1.88h-5c0 1.04 1.12 1.88 2.5 1.88z" -}, "6")], 'TheaterComedyOutlined'); \ No newline at end of file +}, "6")], 'TheaterComedyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheaterComedyRounded.js b/packages/material-ui-icons/lib/TheaterComedyRounded.js index b922b86f9691d6..afad741a80ef61 100644 --- a/packages/material-ui-icons/lib/TheaterComedyRounded.js +++ b/packages/material-ui-icons/lib/TheaterComedyRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 2h-8c-1.1 0-2 .9-2 2v3.5h1.5c1.1 0 2 .9 2 2v4.95c1.04.48 2.24.68 3.5.47 2.93-.49 5-3.17 5-6.14V4c0-1.1-.9-2-2-2zm-7 4.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm4.85 4.38h-3.72c-.38 0-.63-.41-.44-.75.39-.66 1.27-1.13 2.3-1.13s1.91.47 2.3 1.14c.19.33-.06.74-.44.74zM19 7.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 9H3c-1.1 0-2 .9-2 2v4.79c0 3.05 2.19 5.77 5.21 6.16C9.87 22.42 13 19.57 13 16v-5c0-1.1-.9-2-2-2zm-7 4.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm5.3 3.25c-.38.67-1.27 1.14-2.3 1.14s-1.91-.47-2.3-1.14c-.19-.34.06-.75.44-.75h3.72c.38 0 .63.41.44.75zM9 14.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'TheaterComedyRounded'); \ No newline at end of file +}, "1")], 'TheaterComedyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheaterComedySharp.js b/packages/material-ui-icons/lib/TheaterComedySharp.js index fd15002cf4a694..65ddac1d8171e0 100644 --- a/packages/material-ui-icons/lib/TheaterComedySharp.js +++ b/packages/material-ui-icons/lib/TheaterComedySharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2v5.5h3.5v3.31C14.55 9.8 15.64 9 16.99 9c1.38 0 2.5.84 2.5 1.88H14.5v3.56c.76.36 1.61.56 2.5.56 3.31 0 6-2.69 6-6V2H11zm4 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm6 1.88c-1.38 0-2.5-.84-2.5-1.88h5c0 1.04-1.12 1.88-2.5 1.88zm2-5.38c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}, "1")], 'TheaterComedySharp'); \ No newline at end of file +}, "1")], 'TheaterComedySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheaterComedyTwoTone.js b/packages/material-ui-icons/lib/TheaterComedyTwoTone.js index 7e0831fba07032..72e7e73be58f44 100644 --- a/packages/material-ui-icons/lib/TheaterComedyTwoTone.js +++ b/packages/material-ui-icons/lib/TheaterComedyTwoTone.js @@ -1,31 +1,44 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.81C14.55 9.8 15.64 9 16.99 9c1.38 0 2.5.84 2.5 1.88H14.5v1.22c.69.55 1.55.9 2.5.9 2.21 0 4-1.79 4-4V4h-8v3.5h1.5v3.31zM19 5.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-5 1c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 2v5.5h2V4h8v5c0 2.21-1.79 4-4 4-.95 0-1.81-.35-2.5-.9v2.35c.76.35 1.61.55 2.5.55 3.31 0 6-2.69 6-6V2H11z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "19", cy: "6.5", r: "1" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15", cy: "6.5", r: "1" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.99 9c-1.35 0-2.44.8-2.49 1.81v.07h4.99c0-1.04-1.12-1.88-2.5-1.88zM1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm2-5h8v5c0 2.21-1.79 4-4 4s-4-1.79-4-4v-5z" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 20c2.21 0 4-1.79 4-4v-5H3v5c0 2.21 1.79 4 4 4zm0-2.12c-1.38 0-2.5-.84-2.5-1.88h5c0 1.04-1.12 1.88-2.5 1.88zm2-5.38c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", opacity: ".3" -}, "5"), /*#__PURE__*/_jsx("circle", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "5", cy: "13.5", r: "1" -}, "6"), /*#__PURE__*/_jsx("circle", { +}, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "9", cy: "13.5", r: "1" -}, "7"), /*#__PURE__*/_jsx("path", { +}, "7"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 17.88c1.38 0 2.5-.84 2.5-1.88h-5c0 1.04 1.12 1.88 2.5 1.88z" -}, "8")], 'TheaterComedyTwoTone'); \ No newline at end of file +}, "8")], 'TheaterComedyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Theaters.js b/packages/material-ui-icons/lib/Theaters.js index ec9de97d0af002..502c92a9139c9d 100644 --- a/packages/material-ui-icons/lib/Theaters.js +++ b/packages/material-ui-icons/lib/Theaters.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'Theaters'); \ No newline at end of file +}), 'Theaters'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheatersOutlined.js b/packages/material-ui-icons/lib/TheatersOutlined.js index a2cbff076f6abb..3ef3dd1261d40b 100644 --- a/packages/material-ui-icons/lib/TheatersOutlined.js +++ b/packages/material-ui-icons/lib/TheatersOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'TheatersOutlined'); \ No newline at end of file +}), 'TheatersOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheatersRounded.js b/packages/material-ui-icons/lib/TheatersRounded.js index 98c9f35a93696e..429c4b53f36751 100644 --- a/packages/material-ui-icons/lib/TheatersRounded.js +++ b/packages/material-ui-icons/lib/TheatersRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'TheatersRounded'); \ No newline at end of file +}), 'TheatersRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheatersSharp.js b/packages/material-ui-icons/lib/TheatersSharp.js index ad2c19c365c262..21a2ff7ac64bae 100644 --- a/packages/material-ui-icons/lib/TheatersSharp.js +++ b/packages/material-ui-icons/lib/TheatersSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}), 'TheatersSharp'); \ No newline at end of file +}), 'TheatersSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TheatersTwoTone.js b/packages/material-ui-icons/lib/TheatersTwoTone.js index 4eb218acf63344..959e8e14060c8a 100644 --- a/packages/material-ui-icons/lib/TheatersTwoTone.js +++ b/packages/material-ui-icons/lib/TheatersTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 5h4v14h-4z", opacity: ".3" -}, "1")], 'TheatersTwoTone'); \ No newline at end of file +}, "1")], 'TheatersTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Thermostat.js b/packages/material-ui-icons/lib/Thermostat.js index b7ba7f4e799871..7f20f4876805d8 100644 --- a/packages/material-ui-icons/lib/Thermostat.js +++ b/packages/material-ui-icons/lib/Thermostat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" -}), 'Thermostat'); \ No newline at end of file +}), 'Thermostat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatAuto.js b/packages/material-ui-icons/lib/ThermostatAuto.js index 91d357b3e05a68..e67f54eb1bca53 100644 --- a/packages/material-ui-icons/lib/ThermostatAuto.js +++ b/packages/material-ui-icons/lib/ThermostatAuto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" -}), 'ThermostatAuto'); \ No newline at end of file +}), 'ThermostatAuto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatAutoOutlined.js b/packages/material-ui-icons/lib/ThermostatAutoOutlined.js index 99bea79c4affe5..d8d07dab2eaa0e 100644 --- a/packages/material-ui-icons/lib/ThermostatAutoOutlined.js +++ b/packages/material-ui-icons/lib/ThermostatAutoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" -}), 'ThermostatAutoOutlined'); \ No newline at end of file +}), 'ThermostatAutoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatAutoRounded.js b/packages/material-ui-icons/lib/ThermostatAutoRounded.js index 59f70db809c100..5fea991a2e4fff 100644 --- a/packages/material-ui-icons/lib/ThermostatAutoRounded.js +++ b/packages/material-ui-icons/lib/ThermostatAutoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM17.81 4c-.48 0-.92.3-1.09.75L14 12.02c-.18.47.17.98.67.98.31 0 .58-.19.68-.48L16 10.7h3.63l.64 1.82c.1.29.38.48.68.48.51 0 .86-.51.68-.98L18.9 4.75c-.17-.45-.6-.75-1.09-.75zm-1.34 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" -}), 'ThermostatAutoRounded'); \ No newline at end of file +}), 'ThermostatAutoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatAutoSharp.js b/packages/material-ui-icons/lib/ThermostatAutoSharp.js index fe318ebe8baeaa..cdb5175f70e10a 100644 --- a/packages/material-ui-icons/lib/ThermostatAutoSharp.js +++ b/packages/material-ui-icons/lib/ThermostatAutoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" -}), 'ThermostatAutoSharp'); \ No newline at end of file +}), 'ThermostatAutoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatAutoTwoTone.js b/packages/material-ui-icons/lib/ThermostatAutoTwoTone.js index b96b60b4d19526..8880ba36d7f5de 100644 --- a/packages/material-ui-icons/lib/ThermostatAutoTwoTone.js +++ b/packages/material-ui-icons/lib/ThermostatAutoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.8 13.6 9 13V6c0-.55-.45-1-1-1s-1 .45-1 1v7l-.8.6C5.45 14.16 5 15.06 5 16h6c0-.94-.45-1.83-1.2-2.4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" -}, "1")], 'ThermostatAutoTwoTone'); \ No newline at end of file +}, "1")], 'ThermostatAutoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatOutlined.js b/packages/material-ui-icons/lib/ThermostatOutlined.js index fa6d94c833a022..cfa029f0f737cd 100644 --- a/packages/material-ui-icons/lib/ThermostatOutlined.js +++ b/packages/material-ui-icons/lib/ThermostatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" -}), 'ThermostatOutlined'); \ No newline at end of file +}), 'ThermostatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatRounded.js b/packages/material-ui-icons/lib/ThermostatRounded.js index 024aeb4f3bb97f..2b61ff86626971 100644 --- a/packages/material-ui-icons/lib/ThermostatRounded.js +++ b/packages/material-ui-icons/lib/ThermostatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-2-2h-2V5c0-.55.45-1 1-1s1 .45 1 1h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v2h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v2z" -}), 'ThermostatRounded'); \ No newline at end of file +}), 'ThermostatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatSharp.js b/packages/material-ui-icons/lib/ThermostatSharp.js index 9e41a6f9f3e371..9be3584d4bf419 100644 --- a/packages/material-ui-icons/lib/ThermostatSharp.js +++ b/packages/material-ui-icons/lib/ThermostatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" -}), 'ThermostatSharp'); \ No newline at end of file +}), 'ThermostatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThermostatTwoTone.js b/packages/material-ui-icons/lib/ThermostatTwoTone.js index aa324d3e2e6082..24f8d5a3d4fb00 100644 --- a/packages/material-ui-icons/lib/ThermostatTwoTone.js +++ b/packages/material-ui-icons/lib/ThermostatTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" -}), 'ThermostatTwoTone'); \ No newline at end of file +}), 'ThermostatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirteenMp.js b/packages/material-ui-icons/lib/ThirteenMp.js index 1c8a6a234896cc..56192b74b51d75 100644 --- a/packages/material-ui-icons/lib/ThirteenMp.js +++ b/packages/material-ui-icons/lib/ThirteenMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H12V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z" -}), 'ThirteenMp'); \ No newline at end of file +}), 'ThirteenMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirteenMpOutlined.js b/packages/material-ui-icons/lib/ThirteenMpOutlined.js index d07c96a5606079..f1c2f80b74826c 100644 --- a/packages/material-ui-icons/lib/ThirteenMpOutlined.js +++ b/packages/material-ui-icons/lib/ThirteenMpOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm8-1v-4c0-.55-.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zm-9 3.5h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1")], 'ThirteenMpOutlined'); \ No newline at end of file +}, "1")], 'ThirteenMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirteenMpRounded.js b/packages/material-ui-icons/lib/ThirteenMpRounded.js index 37153778fef98a..ba2be4434f9073 100644 --- a/packages/material-ui-icons/lib/ThirteenMpRounded.js +++ b/packages/material-ui-icons/lib/ThirteenMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.5-7c0-.41.34-.75.75-.75H15V9h-1.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H15V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'ThirteenMpRounded'); \ No newline at end of file +}, "1")], 'ThirteenMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirteenMpSharp.js b/packages/material-ui-icons/lib/ThirteenMpSharp.js index 076982bfed2aa9..1da8d8d7ef5513 100644 --- a/packages/material-ui-icons/lib/ThirteenMpSharp.js +++ b/packages/material-ui-icons/lib/ThirteenMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 7h3V9h-2V8h2V7h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'ThirteenMpSharp'); \ No newline at end of file +}, "1")], 'ThirteenMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirteenMpTwoTone.js b/packages/material-ui-icons/lib/ThirteenMpTwoTone.js index e76c415b08653e..7689e3141da2ed 100644 --- a/packages/material-ui-icons/lib/ThirteenMpTwoTone.js +++ b/packages/material-ui-icons/lib/ThirteenMpTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 10.5v-4c0-.55-.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 10.5v-4c0-.55-.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM15 14h1.5v1.5H15z", opacity: ".3" -}, "4"), /*#__PURE__*/_jsx("path", { +}, "4"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "5"), /*#__PURE__*/_jsx("path", { +}, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "6")], 'ThirteenMpTwoTone'); \ No newline at end of file +}, "6")], 'ThirteenMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFps.js b/packages/material-ui-icons/lib/ThirtyFps.js index 731157bbda9a0b..66970c3602d16d 100644 --- a/packages/material-ui-icons/lib/ThirtyFps.js +++ b/packages/material-ui-icons/lib/ThirtyFps.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5v3h6v2.5H3v3h5V16H2v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H2zm17 3v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" -}), 'ThirtyFps'); \ No newline at end of file +}), 'ThirtyFps'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsOutlined.js b/packages/material-ui-icons/lib/ThirtyFpsOutlined.js index b6cfb8bb7bf41a..23ba9ad489db7e 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsOutlined.js +++ b/packages/material-ui-icons/lib/ThirtyFpsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5v3h6v2.5H3v3h5V16H2v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H2zm17 3v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" -}), 'ThirtyFpsOutlined'); \ No newline at end of file +}), 'ThirtyFpsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsRounded.js b/packages/material-ui-icons/lib/ThirtyFpsRounded.js index e724338e249cc9..2a676f4e0711f8 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsRounded.js +++ b/packages/material-ui-icons/lib/ThirtyFpsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 6.5C2 7.33 2.67 8 3.5 8H8v2.5H4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5H8V16H3.5c-.83 0-1.5.67-1.5 1.5S2.67 19 3.5 19H8c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H3.5C2.67 5 2 5.67 2 6.5zM19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" -}), 'ThirtyFpsRounded'); \ No newline at end of file +}), 'ThirtyFpsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsSelect.js b/packages/material-ui-icons/lib/ThirtyFpsSelect.js index fd477f22a222cd..5fe29adbb21226 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsSelect.js +++ b/packages/material-ui-icons/lib/ThirtyFpsSelect.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v2h5v2H5v2h4v2H4v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H4zm14 0c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'ThirtyFpsSelect'); \ No newline at end of file +}), 'ThirtyFpsSelect'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsSelectOutlined.js b/packages/material-ui-icons/lib/ThirtyFpsSelectOutlined.js index b21bcf552c1dfa..35ea73eab251c0 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsSelectOutlined.js +++ b/packages/material-ui-icons/lib/ThirtyFpsSelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v2h5v2H5v2h4v2H4v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H4zm14 0c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'ThirtyFpsSelectOutlined'); \ No newline at end of file +}), 'ThirtyFpsSelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsSelectRounded.js b/packages/material-ui-icons/lib/ThirtyFpsSelectRounded.js index 58a1a226595bbd..0211daba9d1ff6 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsSelectRounded.js +++ b/packages/material-ui-icons/lib/ThirtyFpsSelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0 .55.45 1 1 1h4v2H6c-.55 0-1 .45-1 1s.45 1 1 1h3v2H5c-.55 0-1 .45-1 1s.45 1 1 1h4c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H5c-.55 0-1 .45-1 1zm14-1c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM4 22c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm8 0h-4c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1z" -}), 'ThirtyFpsSelectRounded'); \ No newline at end of file +}), 'ThirtyFpsSelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsSelectSharp.js b/packages/material-ui-icons/lib/ThirtyFpsSelectSharp.js index 6c7d7c7f6288f5..4314a39bcd0ffd 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsSelectSharp.js +++ b/packages/material-ui-icons/lib/ThirtyFpsSelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v2h5v2H5v2h4v2H4v2h7V4H4zm9 0h7v10h-7V4zm5 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'ThirtyFpsSelectSharp'); \ No newline at end of file +}), 'ThirtyFpsSelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsSelectTwoTone.js b/packages/material-ui-icons/lib/ThirtyFpsSelectTwoTone.js index cf522891e1eb9a..d421ef3afeb9d1 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsSelectTwoTone.js +++ b/packages/material-ui-icons/lib/ThirtyFpsSelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v2h5v2H5v2h4v2H4v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H4zm14 0c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" -}), 'ThirtyFpsSelectTwoTone'); \ No newline at end of file +}), 'ThirtyFpsSelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsSharp.js b/packages/material-ui-icons/lib/ThirtyFpsSharp.js index c50e24f7b5b5b8..b1232fc6fa1314 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsSharp.js +++ b/packages/material-ui-icons/lib/ThirtyFpsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5v3h6v2.5H3v3h5V16H2v3h9V5H2zm17 3v8h-4V8h4m3-3H12v14h10V5z" -}), 'ThirtyFpsSharp'); \ No newline at end of file +}), 'ThirtyFpsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThirtyFpsTwoTone.js b/packages/material-ui-icons/lib/ThirtyFpsTwoTone.js index 0109db1d2db70f..59de96c97e249f 100644 --- a/packages/material-ui-icons/lib/ThirtyFpsTwoTone.js +++ b/packages/material-ui-icons/lib/ThirtyFpsTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 5v3h6v2.5H3v3h5V16H2v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H2zm17 3v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" -}), 'ThirtyFpsTwoTone'); \ No newline at end of file +}), 'ThirtyFpsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeDRotation.js b/packages/material-ui-icons/lib/ThreeDRotation.js index b4d7c0e44c6262..ea97f84af0bc96 100644 --- a/packages/material-ui-icons/lib/ThreeDRotation.js +++ b/packages/material-ui-icons/lib/ThreeDRotation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96-.12-.28-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49-.05.15-.14.27-.25.37-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z" -}), 'ThreeDRotation'); \ No newline at end of file +}), 'ThreeDRotation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeDRotationOutlined.js b/packages/material-ui-icons/lib/ThreeDRotationOutlined.js index 7ae8cf9752106f..e613e4f06dae05 100644 --- a/packages/material-ui-icons/lib/ThreeDRotationOutlined.js +++ b/packages/material-ui-icons/lib/ThreeDRotationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" -}), 'ThreeDRotationOutlined'); \ No newline at end of file +}), 'ThreeDRotationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeDRotationRounded.js b/packages/material-ui-icons/lib/ThreeDRotationRounded.js index 04b00dac1fc42c..7c0e7c57edf77a 100644 --- a/packages/material-ui-icons/lib/ThreeDRotationRounded.js +++ b/packages/material-ui-icons/lib/ThreeDRotationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.41 14.96c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm9.3-4.72c-.18-.47-.43-.87-.75-1.2-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57zm-1.13 1.96c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85s-.43.41-.71.53c-.29.12-.62.18-.99.18h-.91V9.11h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.41zm-1.43-8.36 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.81-2.96-7.01-6.24-8.75C15.94.49 13.78-.13 11.34.02l3.81 3.82zm-6.3 16.31-1.33 1.33c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.67.89 3.83 1.51 6.27 1.36l-3.81-3.82z" -}), 'ThreeDRotationRounded'); \ No newline at end of file +}), 'ThreeDRotationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeDRotationSharp.js b/packages/material-ui-icons/lib/ThreeDRotationSharp.js index 045c8538057188..a99b8edb94824d 100644 --- a/packages/material-ui-icons/lib/ThreeDRotationSharp.js +++ b/packages/material-ui-icons/lib/ThreeDRotationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" -}), 'ThreeDRotationSharp'); \ No newline at end of file +}), 'ThreeDRotationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeDRotationTwoTone.js b/packages/material-ui-icons/lib/ThreeDRotationTwoTone.js index 2b2ad734349177..cb768c82c8ab74 100644 --- a/packages/material-ui-icons/lib/ThreeDRotationTwoTone.js +++ b/packages/material-ui-icons/lib/ThreeDRotationTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" -}), 'ThreeDRotationTwoTone'); \ No newline at end of file +}), 'ThreeDRotationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeGMobiledata.js b/packages/material-ui-icons/lib/ThreeGMobiledata.js index f51dc48900db0d..5cfc80a0493f78 100644 --- a/packages/material-ui-icons/lib/ThreeGMobiledata.js +++ b/packages/material-ui-icons/lib/ThreeGMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7v2h5v2H4v2h4v2H3v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H3zm18 4v4c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2h-7v6h5v-2h-2.5v-2H21z" -}), 'ThreeGMobiledata'); \ No newline at end of file +}), 'ThreeGMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeGMobiledataOutlined.js b/packages/material-ui-icons/lib/ThreeGMobiledataOutlined.js index 9d2f0a2a4133d4..514235d38128a3 100644 --- a/packages/material-ui-icons/lib/ThreeGMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/ThreeGMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7v2h5v2H4v2h4v2H3v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H3zm18 4v4c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2h-7v6h5v-2h-2.5v-2H21z" -}), 'ThreeGMobiledataOutlined'); \ No newline at end of file +}), 'ThreeGMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeGMobiledataRounded.js b/packages/material-ui-icons/lib/ThreeGMobiledataRounded.js index 427c04aceee536..3f58aaeb046edb 100644 --- a/packages/material-ui-icons/lib/ThreeGMobiledataRounded.js +++ b/packages/material-ui-icons/lib/ThreeGMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 8c0 .55.45 1 1 1h4v2H5c-.55 0-1 .45-1 1s.45 1 1 1h3v2H4c-.55 0-1 .45-1 1s.45 1 1 1h4c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1zm18 4v3c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c.55 0 1 .45 1 1s-.45 1-1 1h-6v6h5v-2h-1.5c-.55 0-1-.45-1-1s.45-1 1-1H20c.55 0 1 .45 1 1z" -}), 'ThreeGMobiledataRounded'); \ No newline at end of file +}), 'ThreeGMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeGMobiledataSharp.js b/packages/material-ui-icons/lib/ThreeGMobiledataSharp.js index 3d8104494ef7ed..ce1eda06455719 100644 --- a/packages/material-ui-icons/lib/ThreeGMobiledataSharp.js +++ b/packages/material-ui-icons/lib/ThreeGMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7v2h5v2H4v2h4v2H3v2h7V7H3zm18 4v6h-9V7h9v2h-7v6h5v-2h-2.5v-2H21z" -}), 'ThreeGMobiledataSharp'); \ No newline at end of file +}), 'ThreeGMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeGMobiledataTwoTone.js b/packages/material-ui-icons/lib/ThreeGMobiledataTwoTone.js index e7ce78a1b9c909..5deceacee53bb8 100644 --- a/packages/material-ui-icons/lib/ThreeGMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/ThreeGMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7v2h5v2H4v2h4v2H3v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H3zm18 4v4c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2h-7v6h5v-2h-2.5v-2H21z" -}), 'ThreeGMobiledataTwoTone'); \ No newline at end of file +}), 'ThreeGMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeK.js b/packages/material-ui-icons/lib/ThreeK.js index fe8fbc649ab52e..b579d268d6d2c1 100644 --- a/packages/material-ui-icons/lib/ThreeK.js +++ b/packages/material-ui-icons/lib/ThreeK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'ThreeK'); \ No newline at end of file +}), 'ThreeK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKOutlined.js b/packages/material-ui-icons/lib/ThreeKOutlined.js index 1a343b613fdc1a..9e24a5b78701bb 100644 --- a/packages/material-ui-icons/lib/ThreeKOutlined.js +++ b/packages/material-ui-icons/lib/ThreeKOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14v-4c0-.55-.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "1")], 'ThreeKOutlined'); \ No newline at end of file +}, "1")], 'ThreeKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKPlus.js b/packages/material-ui-icons/lib/ThreeKPlus.js index a0ebe04a068907..4f71b5ce0b5377 100644 --- a/packages/material-ui-icons/lib/ThreeKPlus.js +++ b/packages/material-ui-icons/lib/ThreeKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6v-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'ThreeKPlus'); \ No newline at end of file +}), 'ThreeKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKPlusOutlined.js b/packages/material-ui-icons/lib/ThreeKPlusOutlined.js index ddfe8e26f50a9f..c5267543fbf1ce 100644 --- a/packages/material-ui-icons/lib/ThreeKPlusOutlined.js +++ b/packages/material-ui-icons/lib/ThreeKPlusOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14v-4c0-.55-.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "1")], 'ThreeKPlusOutlined'); \ No newline at end of file +}, "1")], 'ThreeKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKPlusRounded.js b/packages/material-ui-icons/lib/ThreeKPlusRounded.js index 9eb06c3f8cb05a..1814751e4ed3f3 100644 --- a/packages/material-ui-icons/lib/ThreeKPlusRounded.js +++ b/packages/material-ui-icons/lib/ThreeKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 11c0 .55-.45 1-1 1H6.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-1H7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1.5v-1H6.25c-.41 0-.75-.34-.75-.75S5.84 9 6.25 9H9c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75l-.03-4.49c-.01-.42.33-.76.75-.76.41 0 .75.33.75.74l.03 1.51 1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'ThreeKPlusRounded'); \ No newline at end of file +}), 'ThreeKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKPlusSharp.js b/packages/material-ui-icons/lib/ThreeKPlusSharp.js index cc475e5c3c4165..e442a11784c2f0 100644 --- a/packages/material-ui-icons/lib/ThreeKPlusSharp.js +++ b/packages/material-ui-icons/lib/ThreeKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM10 9v6H5.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'ThreeKPlusSharp'); \ No newline at end of file +}), 'ThreeKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKPlusTwoTone.js b/packages/material-ui-icons/lib/ThreeKPlusTwoTone.js index fc015a8fb78019..6b638706772fa7 100644 --- a/packages/material-ui-icons/lib/ThreeKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/ThreeKPlusTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5.5 4.5h3v-1h-2v-1h2v-1h-3V9H9c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H5.5v-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 14v-4c0-.55-.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "2")], 'ThreeKPlusTwoTone'); \ No newline at end of file +}, "2")], 'ThreeKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKRounded.js b/packages/material-ui-icons/lib/ThreeKRounded.js index 1375bd4625bbab..481f8bb0161e36 100644 --- a/packages/material-ui-icons/lib/ThreeKRounded.js +++ b/packages/material-ui-icons/lib/ThreeKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H9.5v-1H8c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1.5v-1H7.25c-.41 0-.75-.34-.75-.75S6.84 9 7.25 9H10c.55 0 1 .45 1 1v4zm5.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'ThreeKRounded'); \ No newline at end of file +}), 'ThreeKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKSharp.js b/packages/material-ui-icons/lib/ThreeKSharp.js index 908cf4dc18944a..cc2a9b2ed69691 100644 --- a/packages/material-ui-icons/lib/ThreeKSharp.js +++ b/packages/material-ui-icons/lib/ThreeKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'ThreeKSharp'); \ No newline at end of file +}), 'ThreeKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeKTwoTone.js b/packages/material-ui-icons/lib/ThreeKTwoTone.js index ec27546038cd6c..fa2dcdd3f611f4 100644 --- a/packages/material-ui-icons/lib/ThreeKTwoTone.js +++ b/packages/material-ui-icons/lib/ThreeKTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 4.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H6.5v-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 14v-4c0-.55-.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "2")], 'ThreeKTwoTone'); \ No newline at end of file +}, "2")], 'ThreeKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeMp.js b/packages/material-ui-icons/lib/ThreeMp.js index e91408a1a6f76e..653d9c45e85a55 100644 --- a/packages/material-ui-icons/lib/ThreeMp.js +++ b/packages/material-ui-icons/lib/ThreeMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" -}), 'ThreeMp'); \ No newline at end of file +}), 'ThreeMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeMpOutlined.js b/packages/material-ui-icons/lib/ThreeMpOutlined.js index e784a9661cde5c..500674ec071775 100644 --- a/packages/material-ui-icons/lib/ThreeMpOutlined.js +++ b/packages/material-ui-icons/lib/ThreeMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5v-4c0-.55-.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "2")], 'ThreeMpOutlined'); \ No newline at end of file +}, "2")], 'ThreeMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeMpRounded.js b/packages/material-ui-icons/lib/ThreeMpRounded.js index 1c50a2425426d2..9417b89fe216f0 100644 --- a/packages/material-ui-icons/lib/ThreeMpRounded.js +++ b/packages/material-ui-icons/lib/ThreeMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.5 14.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM10.75 10H13V9h-1.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H13V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'ThreeMpRounded'); \ No newline at end of file +}, "1")], 'ThreeMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeMpSharp.js b/packages/material-ui-icons/lib/ThreeMpSharp.js index ef98e6c49aa1a4..b8751ee1f18a47 100644 --- a/packages/material-ui-icons/lib/ThreeMpSharp.js +++ b/packages/material-ui-icons/lib/ThreeMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM10 10h3V9h-2V8h2V7h-3V5.5h4.5v6H10V10zm8 7h-3v1.5h-1.5v-6H18V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'ThreeMpSharp'); \ No newline at end of file +}, "1")], 'ThreeMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeMpTwoTone.js b/packages/material-ui-icons/lib/ThreeMpTwoTone.js index a3b9675b7fb1ed..861b278fe022bd 100644 --- a/packages/material-ui-icons/lib/ThreeMpTwoTone.js +++ b/packages/material-ui-icons/lib/ThreeMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H10V10zm-4 3.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10.5v-4c0-.55-.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "4")], 'ThreeMpTwoTone'); \ No newline at end of file +}, "4")], 'ThreeMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeP.js b/packages/material-ui-icons/lib/ThreeP.js index 44921992427b70..8e969be77baa6e 100644 --- a/packages/material-ui-icons/lib/ThreeP.js +++ b/packages/material-ui-icons/lib/ThreeP.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z" -}), 'ThreeP'); \ No newline at end of file +}), 'ThreeP'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreePOutlined.js b/packages/material-ui-icons/lib/ThreePOutlined.js index 7a2c96dacf4e42..54723230b51842 100644 --- a/packages/material-ui-icons/lib/ThreePOutlined.js +++ b/packages/material-ui-icons/lib/ThreePOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-8-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 11.9 8 12.62 8 13.43V14h8v-.57z" -}), 'ThreePOutlined'); \ No newline at end of file +}), 'ThreePOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreePRounded.js b/packages/material-ui-icons/lib/ThreePRounded.js index 5b100a578da977..d34f55fec5a335 100644 --- a/packages/material-ui-icons/lib/ThreePRounded.js +++ b/packages/material-ui-icons/lib/ThreePRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 19.58c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z" -}), 'ThreePRounded'); \ No newline at end of file +}), 'ThreePRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreePSharp.js b/packages/material-ui-icons/lib/ThreePSharp.js index bea222929c2b58..47668ab277a6b1 100644 --- a/packages/material-ui-icons/lib/ThreePSharp.js +++ b/packages/material-ui-icons/lib/ThreePSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 2v20l4-4h16V2H2zm10 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z" -}), 'ThreePSharp'); \ No newline at end of file +}), 'ThreePSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreePTwoTone.js b/packages/material-ui-icons/lib/ThreePTwoTone.js index b06b33d7c7381d..8ca8c8761e2411 100644 --- a/packages/material-ui-icons/lib/ThreePTwoTone.js +++ b/packages/material-ui-icons/lib/ThreePTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4v13.17L5.17 16H20V4H4zm8 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-8-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 11.9 8 12.62 8 13.43V14h8v-.57z" -}, "1")], 'ThreePTwoTone'); \ No newline at end of file +}, "1")], 'ThreePTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeSixty.js b/packages/material-ui-icons/lib/ThreeSixty.js index d6b75e6052af35..74a6f66aaf9a6c 100644 --- a/packages/material-ui-icons/lib/ThreeSixty.js +++ b/packages/material-ui-icons/lib/ThreeSixty.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" -}), 'ThreeSixty'); \ No newline at end of file +}), 'ThreeSixty'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeSixtyOutlined.js b/packages/material-ui-icons/lib/ThreeSixtyOutlined.js index a191c3aada4677..410a3ae9f7eda4 100644 --- a/packages/material-ui-icons/lib/ThreeSixtyOutlined.js +++ b/packages/material-ui-icons/lib/ThreeSixtyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" -}), 'ThreeSixtyOutlined'); \ No newline at end of file +}), 'ThreeSixtyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeSixtyRounded.js b/packages/material-ui-icons/lib/ThreeSixtyRounded.js index a98433ec1859b1..02a5b6cd4b7b99 100644 --- a/packages/material-ui-icons/lib/ThreeSixtyRounded.js +++ b/packages/material-ui-icons/lib/ThreeSixtyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77v2.02c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36v1.52c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .66-1.2 1.68-3.32 2.34-.41.13-.68.51-.68.94 0 .67.65 1.16 1.28.96C20.11 15.36 22 13.79 22 12c0-2.76-4.48-5-10-5z" -}), 'ThreeSixtyRounded'); \ No newline at end of file +}), 'ThreeSixtyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeSixtySharp.js b/packages/material-ui-icons/lib/ThreeSixtySharp.js index 3dcf1d77ad5abe..e14009d62dceb8 100644 --- a/packages/material-ui-icons/lib/ThreeSixtySharp.js +++ b/packages/material-ui-icons/lib/ThreeSixtySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" -}), 'ThreeSixtySharp'); \ No newline at end of file +}), 'ThreeSixtySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThreeSixtyTwoTone.js b/packages/material-ui-icons/lib/ThreeSixtyTwoTone.js index 97e6f432f73f34..7ddaebf2386311 100644 --- a/packages/material-ui-icons/lib/ThreeSixtyTwoTone.js +++ b/packages/material-ui-icons/lib/ThreeSixtyTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5S2 9.24 2 12c0 2.24 2.94 4.13 7 4.77z" -}), 'ThreeSixtyTwoTone'); \ No newline at end of file +}), 'ThreeSixtyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDown.js b/packages/material-ui-icons/lib/ThumbDown.js index b3351f889530ae..2efaef27e9dc91 100644 --- a/packages/material-ui-icons/lib/ThumbDown.js +++ b/packages/material-ui-icons/lib/ThumbDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z" -}), 'ThumbDown'); \ No newline at end of file +}), 'ThumbDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownAlt.js b/packages/material-ui-icons/lib/ThumbDownAlt.js index 561c1476bf34f7..fec242f665b15a 100644 --- a/packages/material-ui-icons/lib/ThumbDownAlt.js +++ b/packages/material-ui-icons/lib/ThumbDownAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2V4zM2.17 11.12c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15z" -}), 'ThumbDownAlt'); \ No newline at end of file +}), 'ThumbDownAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownAltOutlined.js b/packages/material-ui-icons/lib/ThumbDownAltOutlined.js index 14f538ee3481eb..7aa98803a0a5f1 100644 --- a/packages/material-ui-icons/lib/ThumbDownAltOutlined.js +++ b/packages/material-ui-icons/lib/ThumbDownAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z" -}), 'ThumbDownAltOutlined'); \ No newline at end of file +}), 'ThumbDownAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownAltRounded.js b/packages/material-ui-icons/lib/ThumbDownAltRounded.js index 8c048bfce03bea..3f65d88a7658b6 100644 --- a/packages/material-ui-icons/lib/ThumbDownAltRounded.js +++ b/packages/material-ui-icons/lib/ThumbDownAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.88 21.94 5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.59.58 1.53.58 2.11-.01zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'ThumbDownAltRounded'); \ No newline at end of file +}), 'ThumbDownAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownAltSharp.js b/packages/material-ui-icons/lib/ThumbDownAltSharp.js index 0ac6f56887d4b4..47a96d4f8686bc 100644 --- a/packages/material-ui-icons/lib/ThumbDownAltSharp.js +++ b/packages/material-ui-icons/lib/ThumbDownAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69zM19 3h4v12h-4z" -}), 'ThumbDownAltSharp'); \ No newline at end of file +}), 'ThumbDownAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownAltTwoTone.js b/packages/material-ui-icons/lib/ThumbDownAltTwoTone.js index 9e476b6b5a8d2b..1b5149ff7a8cdb 100644 --- a/packages/material-ui-icons/lib/ThumbDownAltTwoTone.js +++ b/packages/material-ui-icons/lib/ThumbDownAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12v2h8.77l-1.11 5.34L15 15V5H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z" -}, "1")], 'ThumbDownAltTwoTone'); \ No newline at end of file +}, "1")], 'ThumbDownAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownOffAlt.js b/packages/material-ui-icons/lib/ThumbDownOffAlt.js index 288dc94defc387..53d6c544d1df45 100644 --- a/packages/material-ui-icons/lib/ThumbDownOffAlt.js +++ b/packages/material-ui-icons/lib/ThumbDownOffAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.89 18.28.57-2.89c.12-.59-.04-1.2-.42-1.66-.38-.46-.94-.73-1.54-.73H4v-1.08L6.57 6h8.09c.18 0 .34.16.34.34v7.84l-4.11 4.1M10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22zm10-7h2V4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z" -}), 'ThumbDownOffAlt'); \ No newline at end of file +}), 'ThumbDownOffAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownOffAltOutlined.js b/packages/material-ui-icons/lib/ThumbDownOffAltOutlined.js index b54d6076c9bddd..9a51298a13422a 100644 --- a/packages/material-ui-icons/lib/ThumbDownOffAltOutlined.js +++ b/packages/material-ui-icons/lib/ThumbDownOffAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4V3z" -}), 'ThumbDownOffAltOutlined'); \ No newline at end of file +}), 'ThumbDownOffAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownOffAltRounded.js b/packages/material-ui-icons/lib/ThumbDownOffAltRounded.js index ed0cac1c70ef08..464371349a4c39 100644 --- a/packages/material-ui-icons/lib/ThumbDownOffAltRounded.js +++ b/packages/material-ui-icons/lib/ThumbDownOffAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.99 3H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.29.29.67.43 1.05.43s.77-.15 1.06-.44l5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2zm-4.33 16.33.61-2.92.5-2.41H3.66c-.47 0-.72-.28-.83-.45-.11-.17-.27-.51-.08-.95L6 5h8.99v9.99l-4.33 4.34zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'ThumbDownOffAltRounded'); \ No newline at end of file +}), 'ThumbDownOffAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownOffAltSharp.js b/packages/material-ui-icons/lib/ThumbDownOffAltSharp.js index c9696492fe31e4..7ecd5bef809e88 100644 --- a/packages/material-ui-icons/lib/ThumbDownOffAltSharp.js +++ b/packages/material-ui-icons/lib/ThumbDownOffAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h4v12h-4zM1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69L1 11.6zM15 5v9.99l-4.34 4.35.61-2.93.5-2.41H3v-1.99L6.01 5H15z" -}), 'ThumbDownOffAltSharp'); \ No newline at end of file +}), 'ThumbDownOffAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownOffAltTwoTone.js b/packages/material-ui-icons/lib/ThumbDownOffAltTwoTone.js index ee0fd72580543c..abd11949395a3c 100644 --- a/packages/material-ui-icons/lib/ThumbDownOffAltTwoTone.js +++ b/packages/material-ui-icons/lib/ThumbDownOffAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12v2h9l-1.34 5.34L15 15V5H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h4v12h-4zm-4 0H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10z" -}, "1")], 'ThumbDownOffAltTwoTone'); \ No newline at end of file +}, "1")], 'ThumbDownOffAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownOutlined.js b/packages/material-ui-icons/lib/ThumbDownOutlined.js index ec22a437c3f9cf..ec1e330bf20977 100644 --- a/packages/material-ui-icons/lib/ThumbDownOutlined.js +++ b/packages/material-ui-icons/lib/ThumbDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z" -}), 'ThumbDownOutlined'); \ No newline at end of file +}), 'ThumbDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownRounded.js b/packages/material-ui-icons/lib/ThumbDownRounded.js index 39532d5e4e2dcd..6d2e63ba8aeb06 100644 --- a/packages/material-ui-icons/lib/ThumbDownRounded.js +++ b/packages/material-ui-icons/lib/ThumbDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.88 21.94 5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.59.58 1.53.58 2.11-.01zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" -}), 'ThumbDownRounded'); \ No newline at end of file +}), 'ThumbDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownSharp.js b/packages/material-ui-icons/lib/ThumbDownSharp.js index f0ce0f27ff9282..176d09875b4d1f 100644 --- a/packages/material-ui-icons/lib/ThumbDownSharp.js +++ b/packages/material-ui-icons/lib/ThumbDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.83 23 17 15.82V3H4.69L1 11.6V16h8.31l-1.12 5.38zM19 3h4v12h-4z" -}), 'ThumbDownSharp'); \ No newline at end of file +}), 'ThumbDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbDownTwoTone.js b/packages/material-ui-icons/lib/ThumbDownTwoTone.js index 993d4742078755..16bc0671f110e4 100644 --- a/packages/material-ui-icons/lib/ThumbDownTwoTone.js +++ b/packages/material-ui-icons/lib/ThumbDownTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 12v2h9l-1.34 5.34L15 15V5H6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z" -}, "1")], 'ThumbDownTwoTone'); \ No newline at end of file +}, "1")], 'ThumbDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUp.js b/packages/material-ui-icons/lib/ThumbUp.js index 15eab19a502951..0b55f03f8fcf38 100644 --- a/packages/material-ui-icons/lib/ThumbUp.js +++ b/packages/material-ui-icons/lib/ThumbUp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z" -}), 'ThumbUp'); \ No newline at end of file +}), 'ThumbUp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpAlt.js b/packages/material-ui-icons/lib/ThumbUpAlt.js index 2f5c36663cb4c1..5861552fff202a 100644 --- a/packages/material-ui-icons/lib/ThumbUpAlt.js +++ b/packages/material-ui-icons/lib/ThumbUpAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 20h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1H2v11zm19.83-7.12c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.84C7 18.95 8.05 20 9.34 20h8.11c.7 0 1.36-.37 1.72-.97l2.66-6.15z" -}), 'ThumbUpAlt'); \ No newline at end of file +}), 'ThumbUpAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpAltOutlined.js b/packages/material-ui-icons/lib/ThumbUpAltOutlined.js index 6f91433d7c0e6a..2f2cb04767ce18 100644 --- a/packages/material-ui-icons/lib/ThumbUpAltOutlined.js +++ b/packages/material-ui-icons/lib/ThumbUpAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" -}), 'ThumbUpAltOutlined'); \ No newline at end of file +}), 'ThumbUpAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpAltRounded.js b/packages/material-ui-icons/lib/ThumbUpAltRounded.js index d723ba9461fdb1..452ef6e5e48313 100644 --- a/packages/material-ui-icons/lib/ThumbUpAltRounded.js +++ b/packages/material-ui-icons/lib/ThumbUpAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.12 2.06 7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z" -}), 'ThumbUpAltRounded'); \ No newline at end of file +}), 'ThumbUpAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpAltSharp.js b/packages/material-ui-icons/lib/ThumbUpAltSharp.js index 1512e2c547b508..1477aa352ec17c 100644 --- a/packages/material-ui-icons/lib/ThumbUpAltSharp.js +++ b/packages/material-ui-icons/lib/ThumbUpAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 1 7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z" -}), 'ThumbUpAltSharp'); \ No newline at end of file +}), 'ThumbUpAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpAltTwoTone.js b/packages/material-ui-icons/lib/ThumbUpAltTwoTone.js index 28d2efa9aa4bab..692fc9a8764495 100644 --- a/packages/material-ui-icons/lib/ThumbUpAltTwoTone.js +++ b/packages/material-ui-icons/lib/ThumbUpAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.34 4.66 9 9v10h9l3-7v-2h-8.77z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" -}, "1")], 'ThumbUpAltTwoTone'); \ No newline at end of file +}, "1")], 'ThumbUpAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpOffAlt.js b/packages/material-ui-icons/lib/ThumbUpOffAlt.js index 7060af8e3fe075..23cd80cebf004b 100644 --- a/packages/material-ui-icons/lib/ThumbUpOffAlt.js +++ b/packages/material-ui-icons/lib/ThumbUpOffAlt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.11 5.72-.57 2.89c-.12.59.04 1.2.42 1.66.38.46.94.73 1.54.73H20v1.08L17.43 18H9.34c-.18 0-.34-.16-.34-.34V9.82l4.11-4.1M14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.83C7 18.95 8.05 20 9.34 20h8.1c.71 0 1.36-.37 1.72-.97l2.67-6.15c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2zM4 9H2v11h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z" -}), 'ThumbUpOffAlt'); \ No newline at end of file +}), 'ThumbUpOffAlt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpOffAltOutlined.js b/packages/material-ui-icons/lib/ThumbUpOffAltOutlined.js index 6267986423c2c8..7f0c8e46b99af5 100644 --- a/packages/material-ui-icons/lib/ThumbUpOffAltOutlined.js +++ b/packages/material-ui-icons/lib/ThumbUpOffAltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1V9z" -}), 'ThumbUpOffAltOutlined'); \ No newline at end of file +}), 'ThumbUpOffAltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpOffAltRounded.js b/packages/material-ui-icons/lib/ThumbUpOffAltRounded.js index a7dacfc6eab24a..7863b144bd0a0a 100644 --- a/packages/material-ui-icons/lib/ThumbUpOffAltRounded.js +++ b/packages/material-ui-icons/lib/ThumbUpOffAltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.12 2.06 7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z" -}), 'ThumbUpOffAltRounded'); \ No newline at end of file +}), 'ThumbUpOffAltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpOffAltSharp.js b/packages/material-ui-icons/lib/ThumbUpOffAltSharp.js index 104def90cedc52..c16fec14361ec3 100644 --- a/packages/material-ui-icons/lib/ThumbUpOffAltSharp.js +++ b/packages/material-ui-icons/lib/ThumbUpOffAltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 1 7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38L14.17 1zM1 9h4v12H1V9z" -}), 'ThumbUpOffAltSharp'); \ No newline at end of file +}), 'ThumbUpOffAltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpOffAltTwoTone.js b/packages/material-ui-icons/lib/ThumbUpOffAltTwoTone.js index 6f0818d5ffd2a8..1e54eeea605cf5 100644 --- a/packages/material-ui-icons/lib/ThumbUpOffAltTwoTone.js +++ b/packages/material-ui-icons/lib/ThumbUpOffAltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.34 4.66 9 9v10h9l3-7v-2h-8.77z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" -}, "1")], 'ThumbUpOffAltTwoTone'); \ No newline at end of file +}, "1")], 'ThumbUpOffAltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpOutlined.js b/packages/material-ui-icons/lib/ThumbUpOutlined.js index 21bdba9185405c..7f1558da006ea4 100644 --- a/packages/material-ui-icons/lib/ThumbUpOutlined.js +++ b/packages/material-ui-icons/lib/ThumbUpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z" -}), 'ThumbUpOutlined'); \ No newline at end of file +}), 'ThumbUpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpRounded.js b/packages/material-ui-icons/lib/ThumbUpRounded.js index 1facee710e85f2..ac20b03412ec38 100644 --- a/packages/material-ui-icons/lib/ThumbUpRounded.js +++ b/packages/material-ui-icons/lib/ThumbUpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.12 2.06 7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z" -}), 'ThumbUpRounded'); \ No newline at end of file +}), 'ThumbUpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpSharp.js b/packages/material-ui-icons/lib/ThumbUpSharp.js index 18de5578c7e0be..317b1f58378911 100644 --- a/packages/material-ui-icons/lib/ThumbUpSharp.js +++ b/packages/material-ui-icons/lib/ThumbUpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.17 1 7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z" -}), 'ThumbUpSharp'); \ No newline at end of file +}), 'ThumbUpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbUpTwoTone.js b/packages/material-ui-icons/lib/ThumbUpTwoTone.js index d2e3718f6741e1..560d67ee290765 100644 --- a/packages/material-ui-icons/lib/ThumbUpTwoTone.js +++ b/packages/material-ui-icons/lib/ThumbUpTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12v-2h-9l1.34-5.34L9 9v10h9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z" -}, "1")], 'ThumbUpTwoTone'); \ No newline at end of file +}, "1")], 'ThumbUpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbsUpDown.js b/packages/material-ui-icons/lib/ThumbsUpDown.js index 4086a55dcec056..f7ace353c9f25e 100644 --- a/packages/material-ui-icons/lib/ThumbsUpDown.js +++ b/packages/material-ui-icons/lib/ThumbsUpDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z" -}), 'ThumbsUpDown'); \ No newline at end of file +}), 'ThumbsUpDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbsUpDownOutlined.js b/packages/material-ui-icons/lib/ThumbsUpDownOutlined.js index 2b4248803a3c83..3c8940856cf8d7 100644 --- a/packages/material-ui-icons/lib/ThumbsUpDownOutlined.js +++ b/packages/material-ui-icons/lib/ThumbsUpDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z" -}), 'ThumbsUpDownOutlined'); \ No newline at end of file +}), 'ThumbsUpDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbsUpDownRounded.js b/packages/material-ui-icons/lib/ThumbsUpDownRounded.js index 23886f6f9a8b62..34418b28c44f4d 100644 --- a/packages/material-ui-icons/lib/ThumbsUpDownRounded.js +++ b/packages/material-ui-icons/lib/ThumbsUpDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.06 5H5.82l.66-3.18c.08-.37-.04-.75-.3-1.02C5.74.36 5.03.36 4.6.8l-4 4c-.39.37-.6.88-.6 1.41V12c0 1.1.9 2 2 2h5.92c.8 0 1.52-.48 1.84-1.21l2.14-5C12.46 6.47 11.49 5 10.06 5zM22 10h-5.92c-.8 0-1.52.48-1.84 1.21l-2.14 5c-.56 1.32.4 2.79 1.84 2.79h4.24l-.66 3.18c-.08.37.04.75.3 1.02.44.44 1.15.44 1.58 0l4-4c.38-.38.59-.88.59-1.41V12c.01-1.1-.89-2-1.99-2z" -}), 'ThumbsUpDownRounded'); \ No newline at end of file +}), 'ThumbsUpDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbsUpDownSharp.js b/packages/material-ui-icons/lib/ThumbsUpDownSharp.js index f5ce14a51aa2ca..0ac89768105b96 100644 --- a/packages/material-ui-icons/lib/ThumbsUpDownSharp.js +++ b/packages/material-ui-icons/lib/ThumbsUpDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5H5.82l.78-3.78L5.38 0 0 5.38V14h9.24L12 7.54zm2.76 5L12 16.46V19h6.18l-.78 3.78L18.62 24 24 18.62V10z" -}), 'ThumbsUpDownSharp'); \ No newline at end of file +}), 'ThumbsUpDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ThumbsUpDownTwoTone.js b/packages/material-ui-icons/lib/ThumbsUpDownTwoTone.js index 7d4e368bc4e0b7..882724d3eab8c9 100644 --- a/packages/material-ui-icons/lib/ThumbsUpDownTwoTone.js +++ b/packages/material-ui-icons/lib/ThumbsUpDownTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.93 4.28 2 6.21V12h5.92L10 7.13V7H3.36zM14 16.87V17h6.64l-.57 2.72L22 17.79V12h-5.92z", opacity: ".3" -}, "1")], 'ThumbsUpDownTwoTone'); \ No newline at end of file +}, "1")], 'ThumbsUpDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimeToLeave.js b/packages/material-ui-icons/lib/TimeToLeave.js index bbeb04b5de8491..b376cc109779b6 100644 --- a/packages/material-ui-icons/lib/TimeToLeave.js +++ b/packages/material-ui-icons/lib/TimeToLeave.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" -}), 'TimeToLeave'); \ No newline at end of file +}), 'TimeToLeave'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimeToLeaveOutlined.js b/packages/material-ui-icons/lib/TimeToLeaveOutlined.js index 89faf8171deede..8cc71c2ed970ad 100644 --- a/packages/material-ui-icons/lib/TimeToLeaveOutlined.js +++ b/packages/material-ui-icons/lib/TimeToLeaveOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "13.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "13.5", r: "1.5" -}, "2")], 'TimeToLeaveOutlined'); \ No newline at end of file +}, "2")], 'TimeToLeaveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimeToLeaveRounded.js b/packages/material-ui-icons/lib/TimeToLeaveRounded.js index 37e92f827dc8c5..b5d271b4594dc8 100644 --- a/packages/material-ui-icons/lib/TimeToLeaveRounded.js +++ b/packages/material-ui-icons/lib/TimeToLeaveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 19.33 6 18.5V18h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 10H5z" -}), 'TimeToLeaveRounded'); \ No newline at end of file +}), 'TimeToLeaveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimeToLeaveSharp.js b/packages/material-ui-icons/lib/TimeToLeaveSharp.js index d8b5fcef2392dd..300a8ddc15fc7f 100644 --- a/packages/material-ui-icons/lib/TimeToLeaveSharp.js +++ b/packages/material-ui-icons/lib/TimeToLeaveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.43-7zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" -}), 'TimeToLeaveSharp'); \ No newline at end of file +}), 'TimeToLeaveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimeToLeaveTwoTone.js b/packages/material-ui-icons/lib/TimeToLeaveTwoTone.js index 373c5bdcc12136..91fe5cced8450e 100644 --- a/packages/material-ui-icons/lib/TimeToLeaveTwoTone.js +++ b/packages/material-ui-icons/lib/TimeToLeaveTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.12 11-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "7.5", cy: "13.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "16.5", cy: "13.5", r: "1.5" -}, "3")], 'TimeToLeaveTwoTone'); \ No newline at end of file +}, "3")], 'TimeToLeaveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timelapse.js b/packages/material-ui-icons/lib/Timelapse.js index 6ab70fb7a29077..b40fb2495a6416 100644 --- a/packages/material-ui-icons/lib/Timelapse.js +++ b/packages/material-ui-icons/lib/Timelapse.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'Timelapse'); \ No newline at end of file +}), 'Timelapse'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelapseOutlined.js b/packages/material-ui-icons/lib/TimelapseOutlined.js index aa672e4db0d755..dccf593b1d53ed 100644 --- a/packages/material-ui-icons/lib/TimelapseOutlined.js +++ b/packages/material-ui-icons/lib/TimelapseOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'TimelapseOutlined'); \ No newline at end of file +}), 'TimelapseOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelapseRounded.js b/packages/material-ui-icons/lib/TimelapseRounded.js index a56cc826ff3d88..ddca824c875540 100644 --- a/packages/material-ui-icons/lib/TimelapseRounded.js +++ b/packages/material-ui-icons/lib/TimelapseRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'TimelapseRounded'); \ No newline at end of file +}), 'TimelapseRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelapseSharp.js b/packages/material-ui-icons/lib/TimelapseSharp.js index 463c4e25472bec..2756521aba8535 100644 --- a/packages/material-ui-icons/lib/TimelapseSharp.js +++ b/packages/material-ui-icons/lib/TimelapseSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}), 'TimelapseSharp'); \ No newline at end of file +}), 'TimelapseSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelapseTwoTone.js b/packages/material-ui-icons/lib/TimelapseTwoTone.js index e8e949cd9dd035..6ebaebe2a513c0 100644 --- a/packages/material-ui-icons/lib/TimelapseTwoTone.js +++ b/packages/material-ui-icons/lib/TimelapseTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3.99c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.24c-2.35 2.34-6.15 2.34-8.49 0L12 11.99v-6c1.54 0 3.07.59 4.24 1.76 2.35 2.34 2.35 6.14.01 8.48z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" -}, "1")], 'TimelapseTwoTone'); \ No newline at end of file +}, "1")], 'TimelapseTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timeline.js b/packages/material-ui-icons/lib/Timeline.js index bcc25ccf1a92d0..18827ca957cf4f 100644 --- a/packages/material-ui-icons/lib/Timeline.js +++ b/packages/material-ui-icons/lib/Timeline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" -}), 'Timeline'); \ No newline at end of file +}), 'Timeline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelineOutlined.js b/packages/material-ui-icons/lib/TimelineOutlined.js index ac1acc81b7b461..6aedd98ca055f4 100644 --- a/packages/material-ui-icons/lib/TimelineOutlined.js +++ b/packages/material-ui-icons/lib/TimelineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" -}), 'TimelineOutlined'); \ No newline at end of file +}), 'TimelineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelineRounded.js b/packages/material-ui-icons/lib/TimelineRounded.js index d43ce3ad1f52d6..dd12eab629cb3e 100644 --- a/packages/material-ui-icons/lib/TimelineRounded.js +++ b/packages/material-ui-icons/lib/TimelineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2zm0 0c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" -}), 'TimelineRounded'); \ No newline at end of file +}), 'TimelineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelineSharp.js b/packages/material-ui-icons/lib/TimelineSharp.js index 22a53f268f8b77..0d8088c7a65a73 100644 --- a/packages/material-ui-icons/lib/TimelineSharp.js +++ b/packages/material-ui-icons/lib/TimelineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2zm0 0c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" -}), 'TimelineSharp'); \ No newline at end of file +}), 'TimelineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimelineTwoTone.js b/packages/material-ui-icons/lib/TimelineTwoTone.js index 716b536be0db30..17528e4c11bc34 100644 --- a/packages/material-ui-icons/lib/TimelineTwoTone.js +++ b/packages/material-ui-icons/lib/TimelineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" -}), 'TimelineTwoTone'); \ No newline at end of file +}), 'TimelineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer.js b/packages/material-ui-icons/lib/Timer.js index d090b37a5005cc..e20c6fb2c8e99a 100644 --- a/packages/material-ui-icons/lib/Timer.js +++ b/packages/material-ui-icons/lib/Timer.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'Timer'); \ No newline at end of file +}), 'Timer'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10.js b/packages/material-ui-icons/lib/Timer10.js index a16dd4d49301f5..e5143520d33809 100644 --- a/packages/material-ui-icons/lib/Timer10.js +++ b/packages/material-ui-icons/lib/Timer10.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M0 7.72V9.4l3-1V18h2V6h-.25L0 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59C21.49 9.07 21 9 20.46 9c-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27-.58 0-1.11.09-1.59.27-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51z" -}), 'Timer10'); \ No newline at end of file +}), 'Timer10'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10Outlined.js b/packages/material-ui-icons/lib/Timer10Outlined.js index 1b3f8db7671a4a..7a3f4ddfd60445 100644 --- a/packages/material-ui-icons/lib/Timer10Outlined.js +++ b/packages/material-ui-icons/lib/Timer10Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" -}), 'Timer10Outlined'); \ No newline at end of file +}), 'Timer10Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10Rounded.js b/packages/material-ui-icons/lib/Timer10Rounded.js index 70a2d3917b73aa..8ed1c3ae53122d 100644 --- a/packages/material-ui-icons/lib/Timer10Rounded.js +++ b/packages/material-ui-icons/lib/Timer10Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" -}), 'Timer10Rounded'); \ No newline at end of file +}), 'Timer10Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10Select.js b/packages/material-ui-icons/lib/Timer10Select.js index 8fcb069c85761f..40f3f64e4b0ac9 100644 --- a/packages/material-ui-icons/lib/Timer10Select.js +++ b/packages/material-ui-icons/lib/Timer10Select.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM1 8h2v11h3V5H1v3zm17.5 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-4v2h4.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h4v-2h-4.5z" -}), 'Timer10Select'); \ No newline at end of file +}), 'Timer10Select'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10SelectOutlined.js b/packages/material-ui-icons/lib/Timer10SelectOutlined.js index a5427f6d564812..3cc91297f624b9 100644 --- a/packages/material-ui-icons/lib/Timer10SelectOutlined.js +++ b/packages/material-ui-icons/lib/Timer10SelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM1 8h2v11h3V5H1v3zm17.5 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-4v2h4.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h4v-2h-4.5z" -}), 'Timer10SelectOutlined'); \ No newline at end of file +}), 'Timer10SelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10SelectRounded.js b/packages/material-ui-icons/lib/Timer10SelectRounded.js index 611a3d794306d9..51bc2231845372 100644 --- a/packages/material-ui-icons/lib/Timer10SelectRounded.js +++ b/packages/material-ui-icons/lib/Timer10SelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM2.5 8H3v9.5c0 .83.67 1.5 1.5 1.5S6 18.33 6 17.5V7c0-1.1-.9-2-2-2H2.5C1.67 5 1 5.67 1 6.5S1.67 8 2.5 8zm16 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-3c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h3c.55 0 1-.45 1-1s-.45-1-1-1h-3.5z" -}), 'Timer10SelectRounded'); \ No newline at end of file +}), 'Timer10SelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10SelectSharp.js b/packages/material-ui-icons/lib/Timer10SelectSharp.js index 33d84995eb9a25..1d988acc972db0 100644 --- a/packages/material-ui-icons/lib/Timer10SelectSharp.js +++ b/packages/material-ui-icons/lib/Timer10SelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8v8h-3V8h3m3-3H7v14h9V5zM1 8h2v11h3V5H1v3zm22 3h-6v5h4v1h-4v2h6v-5h-4v-1h4v-2z" -}), 'Timer10SelectSharp'); \ No newline at end of file +}), 'Timer10SelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10SelectTwoTone.js b/packages/material-ui-icons/lib/Timer10SelectTwoTone.js index 04e55b1bc8957f..730731e7714cbf 100644 --- a/packages/material-ui-icons/lib/Timer10SelectTwoTone.js +++ b/packages/material-ui-icons/lib/Timer10SelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM1 8h2v11h3V5H1v3zm17.5 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-4v2h4.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h4v-2h-4.5z" -}), 'Timer10SelectTwoTone'); \ No newline at end of file +}), 'Timer10SelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10Sharp.js b/packages/material-ui-icons/lib/Timer10Sharp.js index 24b1ad5fb18a73..f133ceef00d33f 100644 --- a/packages/material-ui-icons/lib/Timer10Sharp.js +++ b/packages/material-ui-icons/lib/Timer10Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" -}), 'Timer10Sharp'); \ No newline at end of file +}), 'Timer10Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer10TwoTone.js b/packages/material-ui-icons/lib/Timer10TwoTone.js index 0c2415c1c551c2..8c5bae0ce1faeb 100644 --- a/packages/material-ui-icons/lib/Timer10TwoTone.js +++ b/packages/material-ui-icons/lib/Timer10TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.99 18h2V6h-.25L-.01 7.72V9.4l3-1zm9.59-11.83c-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59s-.75-.7-1.23-.88zm.32 7.05h-.01c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57s-.51.18-.82.18c-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51zm10.24.41c-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88s-.66-.44-1.09-.59c-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57s-.51.52-.67.84c-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19s.8-.31 1.11-.54c.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74z" -}), 'Timer10TwoTone'); \ No newline at end of file +}), 'Timer10TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3.js b/packages/material-ui-icons/lib/Timer3.js index 3a5a9d4544db3a..94446b37f49284 100644 --- a/packages/material-ui-icons/lib/Timer3.js +++ b/packages/material-ui-icons/lib/Timer3.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" -}), 'Timer3'); \ No newline at end of file +}), 'Timer3'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3Outlined.js b/packages/material-ui-icons/lib/Timer3Outlined.js index b5703cd7a5a48f..1fe97b697a8108 100644 --- a/packages/material-ui-icons/lib/Timer3Outlined.js +++ b/packages/material-ui-icons/lib/Timer3Outlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" -}), 'Timer3Outlined'); \ No newline at end of file +}), 'Timer3Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3Rounded.js b/packages/material-ui-icons/lib/Timer3Rounded.js index 0b52bf54fba619..c2920c3e3b011c 100644 --- a/packages/material-ui-icons/lib/Timer3Rounded.js +++ b/packages/material-ui-icons/lib/Timer3Rounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" -}), 'Timer3Rounded'); \ No newline at end of file +}), 'Timer3Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3Select.js b/packages/material-ui-icons/lib/Timer3Select.js index 223ed66e35d55f..50c36e670eede6 100644 --- a/packages/material-ui-icons/lib/Timer3Select.js +++ b/packages/material-ui-icons/lib/Timer3Select.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11v2h-4v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H15v-2h4v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H21zM4 5v3h6v2.5H4v3h6V16H4v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H4z" -}), 'Timer3Select'); \ No newline at end of file +}), 'Timer3Select'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3SelectOutlined.js b/packages/material-ui-icons/lib/Timer3SelectOutlined.js index 6d8a967e796c7d..cc5ac50e5c6c82 100644 --- a/packages/material-ui-icons/lib/Timer3SelectOutlined.js +++ b/packages/material-ui-icons/lib/Timer3SelectOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11v2h-4v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H15v-2h4v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H21zM4 5v3h6v2.5H4v3h6V16H4v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H4z" -}), 'Timer3SelectOutlined'); \ No newline at end of file +}), 'Timer3SelectOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3SelectRounded.js b/packages/material-ui-icons/lib/Timer3SelectRounded.js index 90dac54a69486c..3f2005fefe82ee 100644 --- a/packages/material-ui-icons/lib/Timer3SelectRounded.js +++ b/packages/material-ui-icons/lib/Timer3SelectRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 12c0 .55-.45 1-1 1h-3v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H16c-.55 0-1-.45-1-1s.45-1 1-1h3v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H20c.55 0 1 .45 1 1zM4 6.5C4 7.33 4.67 8 5.5 8H10v2.5H5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5H10V16H5.5c-.83 0-1.5.67-1.5 1.5S4.67 19 5.5 19H10c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H5.5C4.67 5 4 5.67 4 6.5z" -}), 'Timer3SelectRounded'); \ No newline at end of file +}), 'Timer3SelectRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3SelectSharp.js b/packages/material-ui-icons/lib/Timer3SelectSharp.js index 082c70a96adbf0..572443d6dce93b 100644 --- a/packages/material-ui-icons/lib/Timer3SelectSharp.js +++ b/packages/material-ui-icons/lib/Timer3SelectSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11v2h-4v1h4v5h-6v-2h4v-1h-4v-5h6zM4 5v3h6v2.5H4v3h6V16H4v3h9V5H4z" -}), 'Timer3SelectSharp'); \ No newline at end of file +}), 'Timer3SelectSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3SelectTwoTone.js b/packages/material-ui-icons/lib/Timer3SelectTwoTone.js index 7a345c33f40c6c..18786d556168ff 100644 --- a/packages/material-ui-icons/lib/Timer3SelectTwoTone.js +++ b/packages/material-ui-icons/lib/Timer3SelectTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11v2h-4v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H15v-2h4v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H21zM4 5v3h6v2.5H4v3h6V16H4v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H4z" -}), 'Timer3SelectTwoTone'); \ No newline at end of file +}), 'Timer3SelectTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3Sharp.js b/packages/material-ui-icons/lib/Timer3Sharp.js index 1f4530ce1ee5dc..14608bc19ba845 100644 --- a/packages/material-ui-icons/lib/Timer3Sharp.js +++ b/packages/material-ui-icons/lib/Timer3Sharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" -}), 'Timer3Sharp'); \ No newline at end of file +}), 'Timer3Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Timer3TwoTone.js b/packages/material-ui-icons/lib/Timer3TwoTone.js index bfcbf58c021418..e1566757609de4 100644 --- a/packages/material-ui-icons/lib/Timer3TwoTone.js +++ b/packages/material-ui-icons/lib/Timer3TwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.46 10.8c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29s.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44s-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23s-.41-.16-.55-.25c-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34zm-8.34 5.71c-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49z" -}), 'Timer3TwoTone'); \ No newline at end of file +}), 'Timer3TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerOff.js b/packages/material-ui-icons/lib/TimerOff.js index e56b14cf2dc721..633f087e5a53f0 100644 --- a/packages/material-ui-icons/lib/TimerOff.js +++ b/packages/material-ui-icons/lib/TimerOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.04 4.55-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.83 0-3.53.55-4.95 1.48l1.46 1.46C9.53 6.35 10.73 6 12 6c3.87 0 7 3.13 7 7 0 1.27-.35 2.47-.94 3.49l1.45 1.45C20.45 16.53 21 14.83 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42-1.41-1.42zM15 1H9v2h6V1zm-4 8.44 2 2V8h-2v1.44zM3.02 4 1.75 5.27 4.5 8.03C3.55 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.27-1.27-7.71-7.71L3.02 4zM12 20c-3.87 0-7-3.13-7-7 0-1.28.35-2.48.95-3.52l9.56 9.56c-1.03.61-2.23.96-3.51.96z" -}), 'TimerOff'); \ No newline at end of file +}), 'TimerOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerOffOutlined.js b/packages/material-ui-icons/lib/TimerOffOutlined.js index 974a483e9e599b..a990b3b5c466f7 100644 --- a/packages/material-ui-icons/lib/TimerOffOutlined.js +++ b/packages/material-ui-icons/lib/TimerOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v.86l2 2V8zM9 1h6v2H9zm3 5c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zM3.16 3.86 1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" -}), 'TimerOffOutlined'); \ No newline at end of file +}), 'TimerOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerOffRounded.js b/packages/material-ui-icons/lib/TimerOffRounded.js index 4009f4efea1f1a..f9c021dc739477 100644 --- a/packages/material-ui-icons/lib/TimerOffRounded.js +++ b/packages/material-ui-icons/lib/TimerOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 3h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm2 5c-.51 0-.92.39-.98.89L13 10.86V9c0-.55-.45-1-1-1zm0-2c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l.75-.75c.38-.38.39-1.01 0-1.4l-.01-.01c-.39-.39-1.01-.38-1.4 0l-.75.75C16.07 4.74 14.12 4 12 4c-1.66 0-3.22.48-4.57 1.29l1.45 1.45c.94-.47 2-.74 3.12-.74zm8.19 14.88L3.87 4.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.07 2.07C3.61 9.42 3.05 11.03 3 12.76 2.87 17.84 6.94 22 12 22c1.84 0 3.55-.55 4.98-1.5l1.79 1.79c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" -}), 'TimerOffRounded'); \ No newline at end of file +}), 'TimerOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerOffSharp.js b/packages/material-ui-icons/lib/TimerOffSharp.js index eee19ba97015e0..0e9f6de05c9ea9 100644 --- a/packages/material-ui-icons/lib/TimerOffSharp.js +++ b/packages/material-ui-icons/lib/TimerOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zm-1 2v.86l2 2V8zM9 1h6v2H9zM3.16 3.86 1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" -}), 'TimerOffSharp'); \ No newline at end of file +}), 'TimerOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerOffTwoTone.js b/packages/material-ui-icons/lib/TimerOffTwoTone.js index 2b94c1e70c4e0a..7822fd1843c69e 100644 --- a/packages/material-ui-icons/lib/TimerOffTwoTone.js +++ b/packages/material-ui-icons/lib/TimerOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-1.12 0-2.18.27-3.12.74L11 8.86V8h2v2.86l5.26 5.26c.47-.94.74-2 .74-3.12 0-3.87-3.13-7-7-7zm0 14c1.29 0 2.49-.35 3.52-.96L5.96 9.48C5.35 10.51 5 11.71 5 13c0 3.87 3.13 7 7 7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zm-1 2v.86l2 2V8zM9 1h6v2H9zM3.16 3.86 1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" -}, "1")], 'TimerOffTwoTone'); \ No newline at end of file +}, "1")], 'TimerOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerOutlined.js b/packages/material-ui-icons/lib/TimerOutlined.js index 0340a0c96e9783..3371baa0f64971 100644 --- a/packages/material-ui-icons/lib/TimerOutlined.js +++ b/packages/material-ui-icons/lib/TimerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.07 1.01h-6v2h6v-2zm-4 13h2v-6h-2v6zm8.03-6.62 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.06-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'TimerOutlined'); \ No newline at end of file +}), 'TimerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerRounded.js b/packages/material-ui-icons/lib/TimerRounded.js index 5deae52817c8a4..8d7070ec0ebfad 100644 --- a/packages/material-ui-icons/lib/TimerRounded.js +++ b/packages/material-ui-icons/lib/TimerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 1h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zm-2 13c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1zm7.03-6.61.75-.75c.38-.38.39-1.01 0-1.4l-.01-.01c-.39-.39-1.01-.38-1.4 0l-.75.75C16.07 4.74 14.12 4 12 4c-4.8 0-8.88 3.96-9 8.76C2.87 17.84 6.94 22 12 22c4.98 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'TimerRounded'); \ No newline at end of file +}), 'TimerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerSharp.js b/packages/material-ui-icons/lib/TimerSharp.js index 66c1d23a0ef3b5..83347f20b534b4 100644 --- a/packages/material-ui-icons/lib/TimerSharp.js +++ b/packages/material-ui-icons/lib/TimerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}), 'TimerSharp'); \ No newline at end of file +}), 'TimerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimerTwoTone.js b/packages/material-ui-icons/lib/TimerTwoTone.js index c121ffbf17d1b0..de1e51caf3dc79 100644 --- a/packages/material-ui-icons/lib/TimerTwoTone.js +++ b/packages/material-ui-icons/lib/TimerTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.07 6.01c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm1 8h-2v-6h2v6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.07 1.01h6v2h-6zm2 7h2v6h-2zm8.03-.62 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.07-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" -}, "1")], 'TimerTwoTone'); \ No newline at end of file +}, "1")], 'TimerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimesOneMobiledata.js b/packages/material-ui-icons/lib/TimesOneMobiledata.js index 467479152debb2..71130dee599edb 100644 --- a/packages/material-ui-icons/lib/TimesOneMobiledata.js +++ b/packages/material-ui-icons/lib/TimesOneMobiledata.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" -}), 'TimesOneMobiledata'); \ No newline at end of file +}), 'TimesOneMobiledata'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimesOneMobiledataOutlined.js b/packages/material-ui-icons/lib/TimesOneMobiledataOutlined.js index b6d618812bc7b8..ae321258f13876 100644 --- a/packages/material-ui-icons/lib/TimesOneMobiledataOutlined.js +++ b/packages/material-ui-icons/lib/TimesOneMobiledataOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" -}), 'TimesOneMobiledataOutlined'); \ No newline at end of file +}), 'TimesOneMobiledataOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimesOneMobiledataRounded.js b/packages/material-ui-icons/lib/TimesOneMobiledataRounded.js index 44bd0455f8e2de..18cf3e81f85ea3 100644 --- a/packages/material-ui-icons/lib/TimesOneMobiledataRounded.js +++ b/packages/material-ui-icons/lib/TimesOneMobiledataRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1s-1-.45-1-1V9H5c-.55 0-1-.45-1-1s.45-1 1-1zm10.83 4.72 1.92-3.21c.4-.66-.08-1.51-.85-1.51-.35 0-.68.18-.86.49l-1.37 2.28-1.38-2.29c-.18-.3-.5-.48-.85-.48-.78 0-1.26.85-.86 1.51l1.92 3.21-2.26 3.77c-.4.67.08 1.51.86 1.51.35 0 .68-.18.86-.49l1.71-2.85 1.71 2.85c.18.3.51.49.86.49h.01c.78 0 1.26-.85.86-1.51l-2.28-3.77z" -}), 'TimesOneMobiledataRounded'); \ No newline at end of file +}), 'TimesOneMobiledataRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimesOneMobiledataSharp.js b/packages/material-ui-icons/lib/TimesOneMobiledataSharp.js index 0ba71039d4a272..57f0da74bbbc70 100644 --- a/packages/material-ui-icons/lib/TimesOneMobiledataSharp.js +++ b/packages/material-ui-icons/lib/TimesOneMobiledataSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" -}), 'TimesOneMobiledataSharp'); \ No newline at end of file +}), 'TimesOneMobiledataSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TimesOneMobiledataTwoTone.js b/packages/material-ui-icons/lib/TimesOneMobiledataTwoTone.js index dd01583ec7f798..f80a67f9413d6e 100644 --- a/packages/material-ui-icons/lib/TimesOneMobiledataTwoTone.js +++ b/packages/material-ui-icons/lib/TimesOneMobiledataTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" -}), 'TimesOneMobiledataTwoTone'); \ No newline at end of file +}), 'TimesOneMobiledataTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Title.js b/packages/material-ui-icons/lib/Title.js index 65f2829672060d..08563d08362cb2 100644 --- a/packages/material-ui-icons/lib/Title.js +++ b/packages/material-ui-icons/lib/Title.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4v3h5.5v12h3V7H19V4z" -}), 'Title'); \ No newline at end of file +}), 'Title'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TitleOutlined.js b/packages/material-ui-icons/lib/TitleOutlined.js index 598bae0927fe81..17969947f936ec 100644 --- a/packages/material-ui-icons/lib/TitleOutlined.js +++ b/packages/material-ui-icons/lib/TitleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4v3h5.5v12h3V7H19V4H5z" -}), 'TitleOutlined'); \ No newline at end of file +}), 'TitleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TitleRounded.js b/packages/material-ui-icons/lib/TitleRounded.js index 42bb5d00bf008c..0e95d55a33fc65 100644 --- a/packages/material-ui-icons/lib/TitleRounded.js +++ b/packages/material-ui-icons/lib/TitleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5z" -}), 'TitleRounded'); \ No newline at end of file +}), 'TitleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TitleSharp.js b/packages/material-ui-icons/lib/TitleSharp.js index f2eb825f7c1d62..4d83569a610561 100644 --- a/packages/material-ui-icons/lib/TitleSharp.js +++ b/packages/material-ui-icons/lib/TitleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 4v3h5.5v12h3V7H19V4H5z" -}), 'TitleSharp'); \ No newline at end of file +}), 'TitleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TitleTwoTone.js b/packages/material-ui-icons/lib/TitleTwoTone.js index 48826253ffd67c..c144d0e135435f 100644 --- a/packages/material-ui-icons/lib/TitleTwoTone.js +++ b/packages/material-ui-icons/lib/TitleTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7h5.5v12h3V7H19V4H5z" -}), 'TitleTwoTone'); \ No newline at end of file +}), 'TitleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Toc.js b/packages/material-ui-icons/lib/Toc.js index f096b5b948ab5a..6c0b62f59e389c 100644 --- a/packages/material-ui-icons/lib/Toc.js +++ b/packages/material-ui-icons/lib/Toc.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" -}), 'Toc'); \ No newline at end of file +}), 'Toc'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TocOutlined.js b/packages/material-ui-icons/lib/TocOutlined.js index b5431001218f49..aa42ce72a345cc 100644 --- a/packages/material-ui-icons/lib/TocOutlined.js +++ b/packages/material-ui-icons/lib/TocOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" -}), 'TocOutlined'); \ No newline at end of file +}), 'TocOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TocRounded.js b/packages/material-ui-icons/lib/TocRounded.js index 70421eb213a544..bb912356f33e81 100644 --- a/packages/material-ui-icons/lib/TocRounded.js +++ b/packages/material-ui-icons/lib/TocRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm15 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" -}), 'TocRounded'); \ No newline at end of file +}), 'TocRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TocSharp.js b/packages/material-ui-icons/lib/TocSharp.js index ab19fb6ff6ee3a..ba34544a4ea701 100644 --- a/packages/material-ui-icons/lib/TocSharp.js +++ b/packages/material-ui-icons/lib/TocSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2zM3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" -}), 'TocSharp'); \ No newline at end of file +}), 'TocSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TocTwoTone.js b/packages/material-ui-icons/lib/TocTwoTone.js index ebe7caaccaeb53..26b76a4bdcbc04 100644 --- a/packages/material-ui-icons/lib/TocTwoTone.js +++ b/packages/material-ui-icons/lib/TocTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" -}), 'TocTwoTone'); \ No newline at end of file +}), 'TocTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Today.js b/packages/material-ui-icons/lib/Today.js index 89bd091a09174f..afa0aaa44bf336 100644 --- a/packages/material-ui-icons/lib/Today.js +++ b/packages/material-ui-icons/lib/Today.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z" -}), 'Today'); \ No newline at end of file +}), 'Today'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TodayOutlined.js b/packages/material-ui-icons/lib/TodayOutlined.js index ab157fa96e3b42..60140d5f1741aa 100644 --- a/packages/material-ui-icons/lib/TodayOutlined.js +++ b/packages/material-ui-icons/lib/TodayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h5v5H7z" -}), 'TodayOutlined'); \ No newline at end of file +}), 'TodayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TodayRounded.js b/packages/material-ui-icons/lib/TodayRounded.js index 9e5d28febb8097..1223192ea00423 100644 --- a/packages/material-ui-icons/lib/TodayRounded.js +++ b/packages/material-ui-icons/lib/TodayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1zM8 10h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1z" -}), 'TodayRounded'); \ No newline at end of file +}), 'TodayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TodaySharp.js b/packages/material-ui-icons/lib/TodaySharp.js index 1a585a5e7d414b..0d0e58c43f6ccc 100644 --- a/packages/material-ui-icons/lib/TodaySharp.js +++ b/packages/material-ui-icons/lib/TodaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zM7 10h5v5H7v-5z" -}), 'TodaySharp'); \ No newline at end of file +}), 'TodaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TodayTwoTone.js b/packages/material-ui-icons/lib/TodayTwoTone.js index d3746bad0be0b8..987129537ecd84 100644 --- a/packages/material-ui-icons/lib/TodayTwoTone.js +++ b/packages/material-ui-icons/lib/TodayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-7 4H7v5h5v-5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h14v2H5z", opacity: ".3" -}, "1")], 'TodayTwoTone'); \ No newline at end of file +}, "1")], 'TodayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOff.js b/packages/material-ui-icons/lib/ToggleOff.js index d1646c0984a994..fa46e6169a9797 100644 --- a/packages/material-ui-icons/lib/ToggleOff.js +++ b/packages/material-ui-icons/lib/ToggleOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'ToggleOff'); \ No newline at end of file +}), 'ToggleOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOffOutlined.js b/packages/material-ui-icons/lib/ToggleOffOutlined.js index 9b618bb7d87c98..6bb982031cea80 100644 --- a/packages/material-ui-icons/lib/ToggleOffOutlined.js +++ b/packages/material-ui-icons/lib/ToggleOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'ToggleOffOutlined'); \ No newline at end of file +}), 'ToggleOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOffRounded.js b/packages/material-ui-icons/lib/ToggleOffRounded.js index 7a672ed301e6df..90bdd17451bdf2 100644 --- a/packages/material-ui-icons/lib/ToggleOffRounded.js +++ b/packages/material-ui-icons/lib/ToggleOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'ToggleOffRounded'); \ No newline at end of file +}), 'ToggleOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOffSharp.js b/packages/material-ui-icons/lib/ToggleOffSharp.js index 242990f6f710b8..c3fc44369627b7 100644 --- a/packages/material-ui-icons/lib/ToggleOffSharp.js +++ b/packages/material-ui-icons/lib/ToggleOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'ToggleOffSharp'); \ No newline at end of file +}), 'ToggleOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOffTwoTone.js b/packages/material-ui-icons/lib/ToggleOffTwoTone.js index 9212d3094f8be6..14e1f9145e7afa 100644 --- a/packages/material-ui-icons/lib/ToggleOffTwoTone.js +++ b/packages/material-ui-icons/lib/ToggleOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}, "1")], 'ToggleOffTwoTone'); \ No newline at end of file +}, "1")], 'ToggleOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOn.js b/packages/material-ui-icons/lib/ToggleOn.js index 5370b649900e29..3ae5024b0c3c35 100644 --- a/packages/material-ui-icons/lib/ToggleOn.js +++ b/packages/material-ui-icons/lib/ToggleOn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'ToggleOn'); \ No newline at end of file +}), 'ToggleOn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOnOutlined.js b/packages/material-ui-icons/lib/ToggleOnOutlined.js index a1a765ffe7d58b..14d8d8f5803c07 100644 --- a/packages/material-ui-icons/lib/ToggleOnOutlined.js +++ b/packages/material-ui-icons/lib/ToggleOnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'ToggleOnOutlined'); \ No newline at end of file +}), 'ToggleOnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOnRounded.js b/packages/material-ui-icons/lib/ToggleOnRounded.js index 88a634df3684a5..2f76d74e3cc589 100644 --- a/packages/material-ui-icons/lib/ToggleOnRounded.js +++ b/packages/material-ui-icons/lib/ToggleOnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'ToggleOnRounded'); \ No newline at end of file +}), 'ToggleOnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOnSharp.js b/packages/material-ui-icons/lib/ToggleOnSharp.js index 944d398e887581..ab157e83039e4a 100644 --- a/packages/material-ui-icons/lib/ToggleOnSharp.js +++ b/packages/material-ui-icons/lib/ToggleOnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" -}), 'ToggleOnSharp'); \ No newline at end of file +}), 'ToggleOnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToggleOnTwoTone.js b/packages/material-ui-icons/lib/ToggleOnTwoTone.js index b921a71793af9e..67a615c21d99e3 100644 --- a/packages/material-ui-icons/lib/ToggleOnTwoTone.js +++ b/packages/material-ui-icons/lib/ToggleOnTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zm0 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}, "1")], 'ToggleOnTwoTone'); \ No newline at end of file +}, "1")], 'ToggleOnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Toll.js b/packages/material-ui-icons/lib/Toll.js index 079e8318437ed3..87978884d80a96 100644 --- a/packages/material-ui-icons/lib/Toll.js +++ b/packages/material-ui-icons/lib/Toll.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" -}), 'Toll'); \ No newline at end of file +}), 'Toll'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TollOutlined.js b/packages/material-ui-icons/lib/TollOutlined.js index 044e3b4a95b983..df51484a15f43a 100644 --- a/packages/material-ui-icons/lib/TollOutlined.js +++ b/packages/material-ui-icons/lib/TollOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" -}), 'TollOutlined'); \ No newline at end of file +}), 'TollOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TollRounded.js b/packages/material-ui-icons/lib/TollRounded.js index a78390affbb49c..409cd98264602d 100644 --- a/packages/material-ui-icons/lib/TollRounded.js +++ b/packages/material-ui-icons/lib/TollRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.39 1.4-4.46 3.43-5.42.34-.16.57-.47.57-.84v-.19c0-.68-.71-1.11-1.32-.82C2.92 5.99 1 8.77 1 12s1.92 6.01 4.68 7.27c.61.28 1.32-.14 1.32-.82v-.18c0-.37-.23-.69-.57-.85C4.4 16.46 3 14.39 3 12z" -}), 'TollRounded'); \ No newline at end of file +}), 'TollRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TollSharp.js b/packages/material-ui-icons/lib/TollSharp.js index 5281d13894276c..ef90782813c3d3 100644 --- a/packages/material-ui-icons/lib/TollSharp.js +++ b/packages/material-ui-icons/lib/TollSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" -}), 'TollSharp'); \ No newline at end of file +}), 'TollSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TollTwoTone.js b/packages/material-ui-icons/lib/TollTwoTone.js index 208278c6f6d6df..cbe5c259f09a3f 100644 --- a/packages/material-ui-icons/lib/TollTwoTone.js +++ b/packages/material-ui-icons/lib/TollTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12c0 3.73 2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" -}, "1")], 'TollTwoTone'); \ No newline at end of file +}, "1")], 'TollTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tonality.js b/packages/material-ui-icons/lib/Tonality.js index 4da423d97b4c46..ac9baeff21f846 100644 --- a/packages/material-ui-icons/lib/Tonality.js +++ b/packages/material-ui-icons/lib/Tonality.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" -}), 'Tonality'); \ No newline at end of file +}), 'Tonality'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TonalityOutlined.js b/packages/material-ui-icons/lib/TonalityOutlined.js index c650f48d8209cc..260b835d5823eb 100644 --- a/packages/material-ui-icons/lib/TonalityOutlined.js +++ b/packages/material-ui-icons/lib/TonalityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" -}), 'TonalityOutlined'); \ No newline at end of file +}), 'TonalityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TonalityRounded.js b/packages/material-ui-icons/lib/TonalityRounded.js index 204a11f2dc9db1..f581e2e8476877 100644 --- a/packages/material-ui-icons/lib/TonalityRounded.js +++ b/packages/material-ui-icons/lib/TonalityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" -}), 'TonalityRounded'); \ No newline at end of file +}), 'TonalityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TonalitySharp.js b/packages/material-ui-icons/lib/TonalitySharp.js index d413406524071f..9bdcd420724968 100644 --- a/packages/material-ui-icons/lib/TonalitySharp.js +++ b/packages/material-ui-icons/lib/TonalitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" -}), 'TonalitySharp'); \ No newline at end of file +}), 'TonalitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TonalityTwoTone.js b/packages/material-ui-icons/lib/TonalityTwoTone.js index 8444cf32609fc2..c81af6b9cc5027 100644 --- a/packages/material-ui-icons/lib/TonalityTwoTone.js +++ b/packages/material-ui-icons/lib/TonalityTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 12c0 4.08 3.06 7.44 7 7.93V4.07C7.05 4.56 4 7.92 4 12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" -}, "1")], 'TonalityTwoTone'); \ No newline at end of file +}, "1")], 'TonalityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Topic.js b/packages/material-ui-icons/lib/Topic.js index 96d16503213218..56cb5ed293719a 100644 --- a/packages/material-ui-icons/lib/Topic.js +++ b/packages/material-ui-icons/lib/Topic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 10H6v-2h8v2zm4-4H6v-2h12v2z" -}), 'Topic'); \ No newline at end of file +}), 'Topic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TopicOutlined.js b/packages/material-ui-icons/lib/TopicOutlined.js index 25c28d899b6ae6..2d58851af21cfd 100644 --- a/packages/material-ui-icons/lib/TopicOutlined.js +++ b/packages/material-ui-icons/lib/TopicOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16.77c.68 0 1.23-.56 1.23-1.23V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" -}), 'TopicOutlined'); \ No newline at end of file +}), 'TopicOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TopicRounded.js b/packages/material-ui-icons/lib/TopicRounded.js index f2c25dc313d1c4..89c1534d0a2853 100644 --- a/packages/material-ui-icons/lib/TopicRounded.js +++ b/packages/material-ui-icons/lib/TopicRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7 10H7c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm4-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'TopicRounded'); \ No newline at end of file +}), 'TopicRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TopicSharp.js b/packages/material-ui-icons/lib/TopicSharp.js index d14e5865d4b8a8..d8a62bf726087a 100644 --- a/packages/material-ui-icons/lib/TopicSharp.js +++ b/packages/material-ui-icons/lib/TopicSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 6-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z" -}), 'TopicSharp'); \ No newline at end of file +}), 'TopicSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TopicTwoTone.js b/packages/material-ui-icons/lib/TopicTwoTone.js index 27a89173142d2e..d1e47fc2ee4832 100644 --- a/packages/material-ui-icons/lib/TopicTwoTone.js +++ b/packages/material-ui-icons/lib/TopicTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 18H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16.77c.68 0 1.23-.56 1.23-1.23V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" -}, "1")], 'TopicTwoTone'); \ No newline at end of file +}, "1")], 'TopicTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TouchApp.js b/packages/material-ui-icons/lib/TouchApp.js index 0f9e3a7b437bb0..c432b9aa8167ac 100644 --- a/packages/material-ui-icons/lib/TouchApp.js +++ b/packages/material-ui-icons/lib/TouchApp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 11.24V7.5C9 6.12 10.12 5 11.5 5S14 6.12 14 7.5v3.74c1.21-.81 2-2.18 2-3.74C16 5.01 13.99 3 11.5 3S7 5.01 7 7.5c0 1.56.79 2.93 2 3.74zm9.84 4.63-4.54-2.26c-.17-.07-.35-.11-.54-.11H13v-6c0-.83-.67-1.5-1.5-1.5S10 6.67 10 7.5v10.74c-3.6-.76-3.54-.75-3.67-.75-.31 0-.59.13-.79.33l-.79.8 4.94 4.94c.27.27.65.44 1.06.44h6.79c.75 0 1.33-.55 1.44-1.28l.75-5.27c.01-.07.02-.14.02-.2 0-.62-.38-1.16-.91-1.38z" -}), 'TouchApp'); \ No newline at end of file +}), 'TouchApp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TouchAppOutlined.js b/packages/material-ui-icons/lib/TouchAppOutlined.js index c7268a6663a6aa..3fe22f1d2843dc 100644 --- a/packages/material-ui-icons/lib/TouchAppOutlined.js +++ b/packages/material-ui-icons/lib/TouchAppOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.19 12.44-3.24-1.62c1.29-1 2.12-2.56 2.12-4.32 0-3.03-2.47-5.5-5.5-5.5s-5.5 2.47-5.5 5.5c0 2.13 1.22 3.98 3 4.89v3.26c-2.15-.46-2.02-.44-2.26-.44-.53 0-1.03.21-1.41.59L4 16.22l5.09 5.09c.43.44 1.03.69 1.65.69h6.3c.98 0 1.81-.7 1.97-1.67l.8-4.71c.22-1.3-.43-2.58-1.62-3.18zm-.35 2.85-.8 4.71h-6.3c-.09 0-.17-.04-.24-.1l-3.68-3.68 4.25.89V6.5c0-.28.22-.5.5-.5s.5.22.5.5v6h1.76l3.46 1.73c.4.2.62.63.55 1.06zM8.07 6.5c0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 .95-.38 1.81-1 2.44V6.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5v2.44c-.62-.63-1-1.49-1-2.44z" -}), 'TouchAppOutlined'); \ No newline at end of file +}), 'TouchAppOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TouchAppRounded.js b/packages/material-ui-icons/lib/TouchAppRounded.js index 3f80ed0d660fdc..6ee605a0ba4e39 100644 --- a/packages/material-ui-icons/lib/TouchAppRounded.js +++ b/packages/material-ui-icons/lib/TouchAppRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.79 9.24V5.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v3.74c1.21-.81 2-2.18 2-3.74 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5c0 1.56.79 2.93 2 3.74zm5.5 2.47c-.28-.14-.58-.21-.89-.21h-.61v-6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v10.74l-3.44-.72c-.37-.08-.76.04-1.03.31-.43.44-.43 1.14 0 1.58l4.01 4.01c.38.37.89.58 1.42.58h6.1c1 0 1.84-.73 1.98-1.72l.63-4.47c.12-.85-.32-1.69-1.09-2.07l-4.08-2.03z" -}), 'TouchAppRounded'); \ No newline at end of file +}), 'TouchAppRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TouchAppSharp.js b/packages/material-ui-icons/lib/TouchAppSharp.js index 05eddfd75a7a6e..f1a5b5aa65a2e7 100644 --- a/packages/material-ui-icons/lib/TouchAppSharp.js +++ b/packages/material-ui-icons/lib/TouchAppSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.25 9.24V5.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v3.74c1.21-.81 2-2.18 2-3.74 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5c0 1.56.79 2.93 2 3.74zm5.08 2.26h-1.08v-6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v10.74l-4.04-.85L4 16.62 9.38 22h8.67l1.07-7.62-5.79-2.88z" -}), 'TouchAppSharp'); \ No newline at end of file +}), 'TouchAppSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TouchAppTwoTone.js b/packages/material-ui-icons/lib/TouchAppTwoTone.js index 91957ca181ec97..924f498c4e4934 100644 --- a/packages/material-ui-icons/lib/TouchAppTwoTone.js +++ b/packages/material-ui-icons/lib/TouchAppTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.19 12.44-3.24-1.62c1.29-1 2.12-2.56 2.12-4.32 0-3.03-2.47-5.5-5.5-5.5s-5.5 2.47-5.5 5.5c0 2.13 1.22 3.98 3 4.89v3.26c-2.08-.44-2.01-.44-2.26-.44-.53 0-1.03.21-1.41.59L4 16.22l5.09 5.09c.43.44 1.03.69 1.65.69h6.3c.98 0 1.81-.7 1.97-1.67l.8-4.71c.22-1.3-.43-2.58-1.62-3.18zM8.07 6.5c0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 .95-.38 1.81-1 2.44V6.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5v2.44c-.62-.63-1-1.49-1-2.44zm9.77 8.79-.8 4.71h-6.3c-.09 0-.17-.04-.24-.1l-3.68-3.68 4.25.89V6.5c0-.28.22-.5.5-.5s.5.22.5.5v6h1.76l3.46 1.73c.4.2.62.63.55 1.06z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.3 14.23-3.46-1.73h-1.77v-6c0-.28-.22-.5-.5-.5s-.5.22-.5.5v10.61l-4.25-.89 3.68 3.68c.06.06.15.1.24.1h6.3l.8-4.71c.07-.43-.15-.86-.54-1.06z", opacity: ".3" -}, "1")], 'TouchAppTwoTone'); \ No newline at end of file +}, "1")], 'TouchAppTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tour.js b/packages/material-ui-icons/lib/Tour.js index 16ee410a433f64..caaca29bad6d4a 100644 --- a/packages/material-ui-icons/lib/Tour.js +++ b/packages/material-ui-icons/lib/Tour.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" -}), 'Tour'); \ No newline at end of file +}), 'Tour'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TourOutlined.js b/packages/material-ui-icons/lib/TourOutlined.js index 5b81d7e4ff48bc..72b51905e84425 100644 --- a/packages/material-ui-icons/lib/TourOutlined.js +++ b/packages/material-ui-icons/lib/TourOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-3.86 5.74.9 2.26H7V6h11.05l-.9 2.26-.3.74.29.74zM14 9c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" -}), 'TourOutlined'); \ No newline at end of file +}), 'TourOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TourRounded.js b/packages/material-ui-icons/lib/TourRounded.js index 133645cdbc628c..06d25fdfc7305f 100644 --- a/packages/material-ui-icons/lib/TourRounded.js +++ b/packages/material-ui-icons/lib/TourRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.45 5.37c.26-.66-.22-1.37-.93-1.37H7V3c0-.55-.45-1-1-1s-1 .45-1 1v19h2v-8h12.52c.71 0 1.19-.71.93-1.37L19 9l1.45-3.63zM15 9c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" -}), 'TourRounded'); \ No newline at end of file +}), 'TourRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TourSharp.js b/packages/material-ui-icons/lib/TourSharp.js index 11d9c3a3d3f25d..acfc393fc9b71c 100644 --- a/packages/material-ui-icons/lib/TourSharp.js +++ b/packages/material-ui-icons/lib/TourSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" -}), 'TourSharp'); \ No newline at end of file +}), 'TourSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TourTwoTone.js b/packages/material-ui-icons/lib/TourTwoTone.js index 3d1360e974a610..02004b8441a5ac 100644 --- a/packages/material-ui-icons/lib/TourTwoTone.js +++ b/packages/material-ui-icons/lib/TourTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 12V6h11.05l-1.2 3 1.2 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zM7 12V6h11.05l-1.2 3 1.2 3H7zm7-3c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" -}, "1")], 'TourTwoTone'); \ No newline at end of file +}, "1")], 'TourTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Toys.js b/packages/material-ui-icons/lib/Toys.js index 182b315e4d628f..7dcea192b40092 100644 --- a/packages/material-ui-icons/lib/Toys.js +++ b/packages/material-ui-icons/lib/Toys.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 14c0-1.95-1.4-3.57-3.25-3.92L17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.5.83 2.79 2.05 3.48C4.28 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.72-1.1 2.95-2.52C21.17 16.79 22 15.5 22 14zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02 1.1-3.3c.14-.41.52-.68.95-.68H11v4zm2-4h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm4 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'Toys'); \ No newline at end of file +}), 'Toys'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToysOutlined.js b/packages/material-ui-icons/lib/ToysOutlined.js index 72ab875e9df8a6..84a50accc36c18 100644 --- a/packages/material-ui-icons/lib/ToysOutlined.js +++ b/packages/material-ui-icons/lib/ToysOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.75 10.08 17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.49.83 2.78 2.05 3.47C4.27 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.73-1.1 2.95-2.53C21.17 16.78 22 15.49 22 14c0-1.95-1.4-3.57-3.25-3.92zM13 6h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm-4.51.68c.14-.41.52-.68.95-.68H11v4H7.41l-.02-.02 1.1-3.3zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.49-2.68C18.95 14.53 18.03 14 17 14c-1.3 0-2.4.84-2.82 2H9.82C9.4 14.84 8.3 14 7 14c-1.03 0-1.95.53-2.49 1.32C4.2 14.97 4 14.51 4 14c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .51-.2.97-.51 1.32z" -}), 'ToysOutlined'); \ No newline at end of file +}), 'ToysOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToysRounded.js b/packages/material-ui-icons/lib/ToysRounded.js index 127f33f016e4fa..cdf1e1edc7d2cf 100644 --- a/packages/material-ui-icons/lib/ToysRounded.js +++ b/packages/material-ui-icons/lib/ToysRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 14c0-1.95-1.4-3.57-3.25-3.92L17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.5.83 2.79 2.05 3.48C4.28 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.72-1.1 2.95-2.52C21.17 16.79 22 15.5 22 14zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02 1.1-3.3c.14-.41.52-.68.95-.68H11v4zm2-4h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm4 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'ToysRounded'); \ No newline at end of file +}), 'ToysRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToysSharp.js b/packages/material-ui-icons/lib/ToysSharp.js index 560c46a755d051..ad277ca5843288 100644 --- a/packages/material-ui-icons/lib/ToysSharp.js +++ b/packages/material-ui-icons/lib/ToysSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.72 10-2-6H7.28L5.81 8.4 4.41 7l1-1L4 4.59.59 8 2 9.41l1-1L4.59 10H2v8h2.18c.41 1.16 1.52 2 2.82 2 1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.3 0 2.41-.84 2.82-2H22v-8h-3.28zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02L8.72 6H11v4zm2 0V6h2.28l1.33 4H13zm4 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'ToysSharp'); \ No newline at end of file +}), 'ToysSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ToysTwoTone.js b/packages/material-ui-icons/lib/ToysTwoTone.js index 551e66855585f8..8eef7885f97948 100644 --- a/packages/material-ui-icons/lib/ToysTwoTone.js +++ b/packages/material-ui-icons/lib/ToysTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 12H6c-1.1 0-2 .9-2 2 0 .51.2.97.51 1.32C5.05 14.53 5.97 14 7 14c1.3 0 2.4.84 2.82 2h4.37c.41-1.16 1.51-2 2.82-2 1.03 0 1.95.53 2.49 1.32.3-.35.5-.81.5-1.32 0-1.1-.9-2-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.75 10.08 17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.49.83 2.78 2.05 3.47C4.27 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.73-1.1 2.95-2.53C21.17 16.78 22 15.49 22 14c0-1.95-1.4-3.57-3.25-3.92zM13 6h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm-4.51.68c.14-.41.52-.68.95-.68H11v4H7.41l-.02-.02 1.1-3.3zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.49-2.68C18.95 14.53 18.03 14 17 14c-1.3 0-2.4.84-2.82 2H9.82C9.4 14.84 8.3 14 7 14c-1.03 0-1.95.53-2.49 1.32C4.2 14.97 4 14.51 4 14c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .51-.2.97-.51 1.32z" -}, "1")], 'ToysTwoTone'); \ No newline at end of file +}, "1")], 'ToysTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrackChanges.js b/packages/material-ui-icons/lib/TrackChanges.js index f4ff32bc304c9b..920d47271f9640 100644 --- a/packages/material-ui-icons/lib/TrackChanges.js +++ b/packages/material-ui-icons/lib/TrackChanges.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" -}), 'TrackChanges'); \ No newline at end of file +}), 'TrackChanges'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrackChangesOutlined.js b/packages/material-ui-icons/lib/TrackChangesOutlined.js index f96f99515189c2..b6ce0b235e5012 100644 --- a/packages/material-ui-icons/lib/TrackChangesOutlined.js +++ b/packages/material-ui-icons/lib/TrackChangesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" -}), 'TrackChangesOutlined'); \ No newline at end of file +}), 'TrackChangesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrackChangesRounded.js b/packages/material-ui-icons/lib/TrackChangesRounded.js index 4d24de42fb6d0b..b480f3decb72ea 100644 --- a/packages/material-ui-icons/lib/TrackChangesRounded.js +++ b/packages/material-ui-icons/lib/TrackChangesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.32 5.68c-.36.36-.39.92-.07 1.32 1.45 1.82 2.21 4.31 1.53 6.92-.79 3.05-3.18 5.33-6.21 5.94C8.47 20.87 4 16.93 4 12c0-4.08 3.05-7.44 7-7.93v2.02c-3.13.53-5.43 3.46-4.93 6.83.39 2.61 2.56 4.71 5.18 5.03C14.89 18.4 18 15.56 18 12c0-1.25-.38-2.4-1.03-3.36-.34-.5-1.07-.53-1.5-.11l-.01.01c-.34.34-.37.87-.11 1.27.6.92.84 2.1.49 3.32-.39 1.37-1.54 2.46-2.94 2.77-2.6.57-4.9-1.39-4.9-3.9 0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2.71c0-.39-.32-.71-.71-.71-5.36-.2-9.98 4.06-10.27 9.4-.36 6.55 5.41 11.82 12.01 10.4 3.88-.83 6.88-3.8 7.75-7.67.71-3.16-.2-6.16-1.97-8.37-.37-.47-1.07-.5-1.49-.08z" -}), 'TrackChangesRounded'); \ No newline at end of file +}), 'TrackChangesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrackChangesSharp.js b/packages/material-ui-icons/lib/TrackChangesSharp.js index af2cff34d0fa3c..6d978951b3853c 100644 --- a/packages/material-ui-icons/lib/TrackChangesSharp.js +++ b/packages/material-ui-icons/lib/TrackChangesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" -}), 'TrackChangesSharp'); \ No newline at end of file +}), 'TrackChangesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrackChangesTwoTone.js b/packages/material-ui-icons/lib/TrackChangesTwoTone.js index 8d0a9d41e74ca7..052f5a2e735d48 100644 --- a/packages/material-ui-icons/lib/TrackChangesTwoTone.js +++ b/packages/material-ui-icons/lib/TrackChangesTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" -}), 'TrackChangesTwoTone'); \ No newline at end of file +}), 'TrackChangesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Traffic.js b/packages/material-ui-icons/lib/Traffic.js index 8d338fea16b97b..4c26ef23fc6932 100644 --- a/packages/material-ui-icons/lib/Traffic.js +++ b/packages/material-ui-icons/lib/Traffic.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z" -}), 'Traffic'); \ No newline at end of file +}), 'Traffic'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrafficOutlined.js b/packages/material-ui-icons/lib/TrafficOutlined.js index 2cf0cc761915ca..6ece3812194d68 100644 --- a/packages/material-ui-icons/lib/TrafficOutlined.js +++ b/packages/material-ui-icons/lib/TrafficOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-5 9H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z" -}), 'TrafficOutlined'); \ No newline at end of file +}), 'TrafficOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrafficRounded.js b/packages/material-ui-icons/lib/TrafficRounded.js index 915f6a34e9782c..01c7cac773f2cd 100644 --- a/packages/material-ui-icons/lib/TrafficRounded.js +++ b/packages/material-ui-icons/lib/TrafficRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.96 10.59c.04-.31-.19-.59-.5-.59H17V8.86c1.54-.4 2.72-1.68 2.96-3.27.04-.31-.19-.59-.5-.59H17V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4.54c-.31 0-.54.28-.5.59C4.28 7.18 5.46 8.46 7 8.86V10H4.54c-.31 0-.54.28-.5.59.24 1.59 1.42 2.87 2.96 3.27V15H4.54c-.31 0-.54.28-.5.59.24 1.59 1.42 2.87 2.96 3.27V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.54-.4 2.72-1.68 2.96-3.27.04-.31-.19-.59-.5-.59H17v-1.14c1.54-.4 2.72-1.68 2.96-3.27zM12 19c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z" -}), 'TrafficRounded'); \ No newline at end of file +}), 'TrafficRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrafficSharp.js b/packages/material-ui-icons/lib/TrafficSharp.js index 2f58c040fbeba4..6d3ddd5bd625a2 100644 --- a/packages/material-ui-icons/lib/TrafficSharp.js +++ b/packages/material-ui-icons/lib/TrafficSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V3H7v2H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V21h10v-2.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z" -}), 'TrafficSharp'); \ No newline at end of file +}), 'TrafficSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrafficTwoTone.js b/packages/material-ui-icons/lib/TrafficTwoTone.js index 65d4cbada534c1..49fb06e9998c44 100644 --- a/packages/material-ui-icons/lib/TrafficTwoTone.js +++ b/packages/material-ui-icons/lib/TrafficTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 19h6V5H9v14zm3-13c.83 0 1.5.67 1.5 1.5S12.83 9 12 9s-1.5-.67-1.5-1.5S11.17 6 12 6zm0 4.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0 4.5c.83 0 1.5.67 1.5 1.5S12.83 18 12 18s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86h-3V8.86c1.72-.45 3-2 3-3.86zm-5 14H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z" -}, "1")], 'TrafficTwoTone'); \ No newline at end of file +}, "1")], 'TrafficTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Train.js b/packages/material-ui-icons/lib/Train.js index dadcf4b4b4e84b..928cb99ea55bd7 100644 --- a/packages/material-ui-icons/lib/Train.js +++ b/packages/material-ui-icons/lib/Train.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm2 0V6h5v4h-5zm3.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'Train'); \ No newline at end of file +}), 'Train'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrainOutlined.js b/packages/material-ui-icons/lib/TrainOutlined.js index 607c61439edffc..e121521a19967b 100644 --- a/packages/material-ui-icons/lib/TrainOutlined.js +++ b/packages/material-ui-icons/lib/TrainOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" -}, "2")], 'TrainOutlined'); \ No newline at end of file +}, "2")], 'TrainOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrainRounded.js b/packages/material-ui-icons/lib/TrainRounded.js index 7b5dac748c318d..512db49e64d0b5 100644 --- a/packages/material-ui-icons/lib/TrainRounded.js +++ b/packages/material-ui-icons/lib/TrainRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H7.8c.13 0 .26-.05.35-.15L10 19h4l1.85 1.85c.09.09.22.15.35.15h1.09c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z" -}), 'TrainRounded'); \ No newline at end of file +}), 'TrainRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrainSharp.js b/packages/material-ui-icons/lib/TrainSharp.js index 18ec264f2ea70c..61388bad00e332 100644 --- a/packages/material-ui-icons/lib/TrainSharp.js +++ b/packages/material-ui-icons/lib/TrainSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z" -}), 'TrainSharp'); \ No newline at end of file +}), 'TrainSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrainTwoTone.js b/packages/material-ui-icons/lib/TrainTwoTone.js index e860d4965b6385..b23318be58b4a6 100644 --- a/packages/material-ui-icons/lib/TrainTwoTone.js +++ b/packages/material-ui-icons/lib/TrainTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-3.51 0-4.96.48-5.57 1h11.13c-.6-.52-2.05-1-5.56-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "8.5", cy: "14.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "15.5", cy: "14.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" -}, "3")], 'TrainTwoTone'); \ No newline at end of file +}, "3")], 'TrainTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tram.js b/packages/material-ui-icons/lib/Tram.js index a100993cf09fb6..94e5439567c537 100644 --- a/packages/material-ui-icons/lib/Tram.js +++ b/packages/material-ui-icons/lib/Tram.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 16.94V8.5c0-2.79-2.61-3.4-6.01-3.49l.76-1.51H17V2H7v1.5h4.75l-.76 1.52C7.86 5.11 5 5.73 5 8.5v8.44c0 1.45 1.19 2.66 2.59 2.97L6 21.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 20h-.08c1.69 0 2.58-1.37 2.58-3.06zm-7 1.56c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" -}), 'Tram'); \ No newline at end of file +}), 'Tram'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TramOutlined.js b/packages/material-ui-icons/lib/TramOutlined.js index ac34018c6ebd61..1acd7d3e62a344 100644 --- a/packages/material-ui-icons/lib/TramOutlined.js +++ b/packages/material-ui-icons/lib/TramOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z" -}), 'TramOutlined'); \ No newline at end of file +}), 'TramOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TramRounded.js b/packages/material-ui-icons/lib/TramRounded.js index 80c8a35f804b2f..29cc76d341d8b0 100644 --- a/packages/material-ui-icons/lib/TramRounded.js +++ b/packages/material-ui-icons/lib/TramRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95l-1.19 1.19c-.32.32-.1.86.35.86H7.8c.13 0 .26-.05.35-.15L10 20h4l1.85 1.85c.09.09.22.15.35.15h1.09c.45 0 .67-.54.35-.85l-1.19-1.19C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" -}), 'TramRounded'); \ No newline at end of file +}), 'TramRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TramSharp.js b/packages/material-ui-icons/lib/TramSharp.js index 7a045d5e83a132..8b3f01723e6a74 100644 --- a/packages/material-ui-icons/lib/TramSharp.js +++ b/packages/material-ui-icons/lib/TramSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" -}), 'TramSharp'); \ No newline at end of file +}), 'TramSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TramTwoTone.js b/packages/material-ui-icons/lib/TramTwoTone.js index d0746e2ac3c289..b9d7a4ed0d9b7c 100644 --- a/packages/material-ui-icons/lib/TramTwoTone.js +++ b/packages/material-ui-icons/lib/TramTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.97 7h-1.94c-2.75.08-3.62.58-3.9 1h9.74c-.28-.42-1.15-.92-3.9-1zM7 16v1c0 .45.3.84.74.95h3.11c-.22-.26-.35-.59-.35-.95 0-.39.15-.73.39-1H7zm6.5 1c0 .36-.13.69-.35.95h3.11c.44-.11.74-.5.74-.95v-1h-3.89c.24.27.39.61.39 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z" -}, "1")], 'TramTwoTone'); \ No newline at end of file +}, "1")], 'TramTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransferWithinAStation.js b/packages/material-ui-icons/lib/TransferWithinAStation.js index 72479faaa66e48..575ab4f9d2c9ee 100644 --- a/packages/material-ui-icons/lib/TransferWithinAStation.js +++ b/packages/material-ui-icons/lib/TransferWithinAStation.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" -}), 'TransferWithinAStation'); \ No newline at end of file +}), 'TransferWithinAStation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransferWithinAStationOutlined.js b/packages/material-ui-icons/lib/TransferWithinAStationOutlined.js index acc543475a0c07..75dae159875d2f 100644 --- a/packages/material-ui-icons/lib/TransferWithinAStationOutlined.js +++ b/packages/material-ui-icons/lib/TransferWithinAStationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" -}), 'TransferWithinAStationOutlined'); \ No newline at end of file +}), 'TransferWithinAStationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransferWithinAStationRounded.js b/packages/material-ui-icons/lib/TransferWithinAStationRounded.js index 05b2932ac8b488..bf77d63eedebc6 100644 --- a/packages/material-ui-icons/lib/TransferWithinAStationRounded.js +++ b/packages/material-ui-icons/lib/TransferWithinAStationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 15.5h-5.52v-.77c0-.36-.44-.54-.69-.29l-1.51 1.52c-.16.16-.16.41 0 .57l1.51 1.52c.26.26.69.08.69-.29V17H22v-1.5zm-.28 4.71-1.51-1.52c-.26-.26-.69-.08-.69.29v.77H14v1.5h5.52v.77c0 .36.44.54.69.29l1.51-1.52c.16-.16.16-.42 0-.58zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3.23 21.81c-.12.62.35 1.19.98 1.19h.09c.47 0 .88-.33.98-.79L6.85 15 9 17v5c0 .55.45 1 1 1s1-.45 1-1v-5.72c0-.53-.21-1.04-.59-1.41L8.95 13.4l.6-3c1.07 1.32 2.58 2.23 4.31 2.51.6.1 1.14-.39 1.14-1 0-.49-.36-.9-.84-.98-1.49-.25-2.75-1.15-3.51-2.38l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L3.24 7.79C2.49 8.1 2 8.83 2 9.64V12c0 .55.45 1 1 1s1-.45 1-1V9.65l1.75-.75" -}), 'TransferWithinAStationRounded'); \ No newline at end of file +}), 'TransferWithinAStationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransferWithinAStationSharp.js b/packages/material-ui-icons/lib/TransferWithinAStationSharp.js index 26d493c33fa963..b4de93c1227e13 100644 --- a/packages/material-ui-icons/lib/TransferWithinAStationSharp.js +++ b/packages/material-ui-icons/lib/TransferWithinAStationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" -}), 'TransferWithinAStationSharp'); \ No newline at end of file +}), 'TransferWithinAStationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransferWithinAStationTwoTone.js b/packages/material-ui-icons/lib/TransferWithinAStationTwoTone.js index 0c9035359072f2..a7a53c84c2a612 100644 --- a/packages/material-ui-icons/lib/TransferWithinAStationTwoTone.js +++ b/packages/material-ui-icons/lib/TransferWithinAStationTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 13.75 14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 6H14v1.5h5.51V23L22 20.5 19.51 18zM7.5 3.5c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm2.05 6.9C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3z" -}), 'TransferWithinAStationTwoTone'); \ No newline at end of file +}), 'TransferWithinAStationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Transform.js b/packages/material-ui-icons/lib/Transform.js index e9a5a7cb6e76a0..07d1278307d2dd 100644 --- a/packages/material-ui-icons/lib/Transform.js +++ b/packages/material-ui-icons/lib/Transform.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z" -}), 'Transform'); \ No newline at end of file +}), 'Transform'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransformOutlined.js b/packages/material-ui-icons/lib/TransformOutlined.js index 772d342121fa19..4fbabf271bd50e 100644 --- a/packages/material-ui-icons/lib/TransformOutlined.js +++ b/packages/material-ui-icons/lib/TransformOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z" -}), 'TransformOutlined'); \ No newline at end of file +}), 'TransformOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransformRounded.js b/packages/material-ui-icons/lib/TransformRounded.js index 10b80eccaf0c8c..8bd2e00dc426ba 100644 --- a/packages/material-ui-icons/lib/TransformRounded.js +++ b/packages/material-ui-icons/lib/TransformRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16H9c-.55 0-1-.45-1-1V4h.79c.45 0 .67-.54.35-.85l-1.79-1.8c-.2-.2-.51-.2-.71 0l-1.79 1.8c-.31.31-.09.85.36.85H6v2H3c-.55 0-1 .45-1 1s.45 1 1 1h3v8c0 1.1.9 2 2 2h8v2h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.2.2.51.2.71 0l1.79-1.79c.32-.31.09-.85-.35-.85H18v-2h3c.55 0 1-.45 1-1s-.45-1-1-1zm-5-2h2V8c0-1.1-.9-2-2-2h-6v2h5c.55 0 1 .45 1 1v5z" -}), 'TransformRounded'); \ No newline at end of file +}), 'TransformRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransformSharp.js b/packages/material-ui-icons/lib/TransformSharp.js index 67d983566f59cb..0d3c9f78c74eba 100644 --- a/packages/material-ui-icons/lib/TransformSharp.js +++ b/packages/material-ui-icons/lib/TransformSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v10h10v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V6h-8v2z" -}), 'TransformSharp'); \ No newline at end of file +}), 'TransformSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransformTwoTone.js b/packages/material-ui-icons/lib/TransformTwoTone.js index b63920f5807961..71caee76df37a5 100644 --- a/packages/material-ui-icons/lib/TransformTwoTone.js +++ b/packages/material-ui-icons/lib/TransformTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4v-2H8V4zm10 10V8c0-1.1-.9-2-2-2h-6v2h6v6h2z" -}), 'TransformTwoTone'); \ No newline at end of file +}), 'TransformTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Transgender.js b/packages/material-ui-icons/lib/Transgender.js index 3218638e88cfcb..64e1b735a7402e 100644 --- a/packages/material-ui-icons/lib/Transgender.js +++ b/packages/material-ui-icons/lib/Transgender.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" -}), 'Transgender'); \ No newline at end of file +}), 'Transgender'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransgenderOutlined.js b/packages/material-ui-icons/lib/TransgenderOutlined.js index f94dcc1598b340..5e079b20b47e45 100644 --- a/packages/material-ui-icons/lib/TransgenderOutlined.js +++ b/packages/material-ui-icons/lib/TransgenderOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" -}), 'TransgenderOutlined'); \ No newline at end of file +}), 'TransgenderOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransgenderRounded.js b/packages/material-ui-icons/lib/TransgenderRounded.js index 402e0a818f3844..97c1b28cd652d1 100644 --- a/packages/material-ui-icons/lib/TransgenderRounded.js +++ b/packages/material-ui-icons/lib/TransgenderRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.5 1h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65.7-.7c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.7.7L4.92 3H6.5c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V4.42l1.91 1.9-.71.71c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0l.71-.71.65.65c-.61.89-.97 1.96-.97 3.12 0 2.7 1.94 4.94 4.5 5.41V19h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12l3.97-3.96V6c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zM12 15c-1.93 0-3.5-1.57-3.5-3.5S10.07 8 12 8s3.5 1.57 3.5 3.5S13.93 15 12 15z" -}), 'TransgenderRounded'); \ No newline at end of file +}), 'TransgenderRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransgenderSharp.js b/packages/material-ui-icons/lib/TransgenderSharp.js index ede8001dd16f4c..dd9c0b6a80bf70 100644 --- a/packages/material-ui-icons/lib/TransgenderSharp.js +++ b/packages/material-ui-icons/lib/TransgenderSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" -}), 'TransgenderSharp'); \ No newline at end of file +}), 'TransgenderSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransgenderTwoTone.js b/packages/material-ui-icons/lib/TransgenderTwoTone.js index 9da50d07f16da2..26a003ba734002 100644 --- a/packages/material-ui-icons/lib/TransgenderTwoTone.js +++ b/packages/material-ui-icons/lib/TransgenderTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" -}), 'TransgenderTwoTone'); \ No newline at end of file +}), 'TransgenderTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransitEnterexit.js b/packages/material-ui-icons/lib/TransitEnterexit.js index 71256bb3bf3ee1..61cf5a7832c437 100644 --- a/packages/material-ui-icons/lib/TransitEnterexit.js +++ b/packages/material-ui-icons/lib/TransitEnterexit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" -}), 'TransitEnterexit'); \ No newline at end of file +}), 'TransitEnterexit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransitEnterexitOutlined.js b/packages/material-ui-icons/lib/TransitEnterexitOutlined.js index ab1569366441ab..d5c7d255d8b143 100644 --- a/packages/material-ui-icons/lib/TransitEnterexitOutlined.js +++ b/packages/material-ui-icons/lib/TransitEnterexitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" -}), 'TransitEnterexitOutlined'); \ No newline at end of file +}), 'TransitEnterexitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransitEnterexitRounded.js b/packages/material-ui-icons/lib/TransitEnterexitRounded.js index c4b138a5450fe8..ff849bfe2e499d 100644 --- a/packages/material-ui-icons/lib/TransitEnterexitRounded.js +++ b/packages/material-ui-icons/lib/TransitEnterexitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 18H8c-1.1 0-2-.9-2-2V9.5C6 8.67 6.67 8 7.5 8S9 8.67 9 9.5v3.27L14.95 7c.57-.55 1.48-.54 2.04.02s.56 1.47.01 2.04L11.15 15h3.35c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" -}), 'TransitEnterexitRounded'); \ No newline at end of file +}), 'TransitEnterexitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransitEnterexitSharp.js b/packages/material-ui-icons/lib/TransitEnterexitSharp.js index e4dc01b9bd1c54..6265f416d94b66 100644 --- a/packages/material-ui-icons/lib/TransitEnterexitSharp.js +++ b/packages/material-ui-icons/lib/TransitEnterexitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" -}), 'TransitEnterexitSharp'); \ No newline at end of file +}), 'TransitEnterexitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TransitEnterexitTwoTone.js b/packages/material-ui-icons/lib/TransitEnterexitTwoTone.js index 6c3f1e4bc76738..0de67d9e935ad8 100644 --- a/packages/material-ui-icons/lib/TransitEnterexitTwoTone.js +++ b/packages/material-ui-icons/lib/TransitEnterexitTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.98 6 9 12.77V8H6v10h10v-3h-4.85L18 8.03z" -}), 'TransitEnterexitTwoTone'); \ No newline at end of file +}), 'TransitEnterexitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Translate.js b/packages/material-ui-icons/lib/Translate.js index 149d8697bc8ef0..4ed0c91129aa01 100644 --- a/packages/material-ui-icons/lib/Translate.js +++ b/packages/material-ui-icons/lib/Translate.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" -}), 'Translate'); \ No newline at end of file +}), 'Translate'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TranslateOutlined.js b/packages/material-ui-icons/lib/TranslateOutlined.js index adf46f9d3eafdf..ceb813c10290e2 100644 --- a/packages/material-ui-icons/lib/TranslateOutlined.js +++ b/packages/material-ui-icons/lib/TranslateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" -}), 'TranslateOutlined'); \ No newline at end of file +}), 'TranslateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TranslateRounded.js b/packages/material-ui-icons/lib/TranslateRounded.js index ea59bf16776033..e76bc91e51bc35 100644 --- a/packages/material-ui-icons/lib/TranslateRounded.js +++ b/packages/material-ui-icons/lib/TranslateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.65 15.67c.14-.36.05-.77-.23-1.05l-2.09-2.06.03-.03c1.74-1.94 2.98-4.17 3.71-6.53h1.94c.54 0 .99-.45.99-.99v-.02c0-.54-.45-.99-.99-.99H10V3c0-.55-.45-1-1-1s-1 .45-1 1v1H1.99c-.54 0-.99.45-.99.99 0 .55.45.99.99.99h10.18C11.5 7.92 10.44 9.75 9 11.35c-.81-.89-1.49-1.86-2.06-2.88-.16-.29-.45-.47-.78-.47-.69 0-1.13.75-.79 1.35.63 1.13 1.4 2.21 2.3 3.21L3.3 16.87c-.4.39-.4 1.03 0 1.42.39.39 1.02.39 1.42 0L9 14l2.02 2.02c.51.51 1.38.32 1.63-.35zM17.5 10c-.6 0-1.14.37-1.35.94l-3.67 9.8c-.24.61.22 1.26.87 1.26.39 0 .74-.24.88-.61l.89-2.39h4.75l.9 2.39c.14.36.49.61.88.61.65 0 1.11-.65.88-1.26l-3.67-9.8c-.22-.57-.76-.94-1.36-.94zm-1.62 7 1.62-4.33L19.12 17h-3.24z" -}), 'TranslateRounded'); \ No newline at end of file +}), 'TranslateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TranslateSharp.js b/packages/material-ui-icons/lib/TranslateSharp.js index 4ecf890a6d0042..a3a320e11b9b6c 100644 --- a/packages/material-ui-icons/lib/TranslateSharp.js +++ b/packages/material-ui-icons/lib/TranslateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" -}), 'TranslateSharp'); \ No newline at end of file +}), 'TranslateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TranslateTwoTone.js b/packages/material-ui-icons/lib/TranslateTwoTone.js index 9144ad408efb09..4b24913af4155c 100644 --- a/packages/material-ui-icons/lib/TranslateTwoTone.js +++ b/packages/material-ui-icons/lib/TranslateTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" -}), 'TranslateTwoTone'); \ No newline at end of file +}), 'TranslateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TravelExplore.js b/packages/material-ui-icons/lib/TravelExplore.js index 3e31c15d55566d..043ac12ef7a3e3 100644 --- a/packages/material-ui-icons/lib/TravelExplore.js +++ b/packages/material-ui-icons/lib/TravelExplore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" -}), 'TravelExplore'); \ No newline at end of file +}), 'TravelExplore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TravelExploreOutlined.js b/packages/material-ui-icons/lib/TravelExploreOutlined.js index 508e864f823b6d..f20eab8adbfb60 100644 --- a/packages/material-ui-icons/lib/TravelExploreOutlined.js +++ b/packages/material-ui-icons/lib/TravelExploreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" -}), 'TravelExploreOutlined'); \ No newline at end of file +}), 'TravelExploreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TravelExploreRounded.js b/packages/material-ui-icons/lib/TravelExploreRounded.js index d25d185be375e3..1775043c4d9345 100644 --- a/packages/material-ui-icons/lib/TravelExploreRounded.js +++ b/packages/material-ui-icons/lib/TravelExploreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.3 16.9c.58-1.01.95-2.23.51-3.65-.53-1.72-2.04-3.05-3.84-3.22-2.87-.28-5.23 2.07-4.95 4.95.18 1.79 1.5 3.31 3.22 3.84 1.43.44 2.64.07 3.65-.51l2.5 2.5c.39.39 1.01.39 1.4 0 .39-.39.39-1.01 0-1.4L19.3 16.9zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" -}), 'TravelExploreRounded'); \ No newline at end of file +}), 'TravelExploreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TravelExploreSharp.js b/packages/material-ui-icons/lib/TravelExploreSharp.js index 6d4e566c51658d..eddd8359284adb 100644 --- a/packages/material-ui-icons/lib/TravelExploreSharp.js +++ b/packages/material-ui-icons/lib/TravelExploreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" -}), 'TravelExploreSharp'); \ No newline at end of file +}), 'TravelExploreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TravelExploreTwoTone.js b/packages/material-ui-icons/lib/TravelExploreTwoTone.js index ed02e3c2ee44fe..3cf6ca9bbde98d 100644 --- a/packages/material-ui-icons/lib/TravelExploreTwoTone.js +++ b/packages/material-ui-icons/lib/TravelExploreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" -}), 'TravelExploreTwoTone'); \ No newline at end of file +}), 'TravelExploreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingDown.js b/packages/material-ui-icons/lib/TrendingDown.js index f1296ec0fd4505..2dcaad64239069 100644 --- a/packages/material-ui-icons/lib/TrendingDown.js +++ b/packages/material-ui-icons/lib/TrendingDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z" -}), 'TrendingDown'); \ No newline at end of file +}), 'TrendingDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingDownOutlined.js b/packages/material-ui-icons/lib/TrendingDownOutlined.js index b6199386b1568b..d958fda50b7b0d 100644 --- a/packages/material-ui-icons/lib/TrendingDownOutlined.js +++ b/packages/material-ui-icons/lib/TrendingDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" -}), 'TrendingDownOutlined'); \ No newline at end of file +}), 'TrendingDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingDownRounded.js b/packages/material-ui-icons/lib/TrendingDownRounded.js index cacc60774d461b..e69583d0bfb169 100644 --- a/packages/material-ui-icons/lib/TrendingDownRounded.js +++ b/packages/material-ui-icons/lib/TrendingDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.85 17.15 1.44-1.44-4.88-4.88-3.29 3.29c-.39.39-1.02.39-1.41 0l-6-6.01a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L9.41 12l3.29-3.29c.39-.39 1.02-.39 1.41 0l5.59 5.58 1.44-1.44c.31-.31.85-.09.85.35v4.29c0 .28-.22.5-.5.5H17.2c-.44.01-.66-.53-.35-.84z" -}), 'TrendingDownRounded'); \ No newline at end of file +}), 'TrendingDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingDownSharp.js b/packages/material-ui-icons/lib/TrendingDownSharp.js index 1ef0c80d585b21..29f80cfc85982b 100644 --- a/packages/material-ui-icons/lib/TrendingDownSharp.js +++ b/packages/material-ui-icons/lib/TrendingDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" -}), 'TrendingDownSharp'); \ No newline at end of file +}), 'TrendingDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingDownTwoTone.js b/packages/material-ui-icons/lib/TrendingDownTwoTone.js index 2e5225351cb7c8..3bb57763166906 100644 --- a/packages/material-ui-icons/lib/TrendingDownTwoTone.js +++ b/packages/material-ui-icons/lib/TrendingDownTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" -}), 'TrendingDownTwoTone'); \ No newline at end of file +}), 'TrendingDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingFlat.js b/packages/material-ui-icons/lib/TrendingFlat.js index 94739fdcaea60c..60149fa8d2a19d 100644 --- a/packages/material-ui-icons/lib/TrendingFlat.js +++ b/packages/material-ui-icons/lib/TrendingFlat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4-4v3H3v2h15v3z" -}), 'TrendingFlat'); \ No newline at end of file +}), 'TrendingFlat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingFlatOutlined.js b/packages/material-ui-icons/lib/TrendingFlatOutlined.js index d60070915b4cb2..48901f5913add1 100644 --- a/packages/material-ui-icons/lib/TrendingFlatOutlined.js +++ b/packages/material-ui-icons/lib/TrendingFlatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4-4v3H3v2h15v3l4-4z" -}), 'TrendingFlatOutlined'); \ No newline at end of file +}), 'TrendingFlatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingFlatRounded.js b/packages/material-ui-icons/lib/TrendingFlatRounded.js index df1f4549de81cc..dee8b89e17c63f 100644 --- a/packages/material-ui-icons/lib/TrendingFlatRounded.js +++ b/packages/material-ui-icons/lib/TrendingFlatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.65 11.65-2.79-2.79c-.32-.32-.86-.1-.86.35V11H4c-.55 0-1 .45-1 1s.45 1 1 1h14v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" -}), 'TrendingFlatRounded'); \ No newline at end of file +}), 'TrendingFlatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingFlatSharp.js b/packages/material-ui-icons/lib/TrendingFlatSharp.js index 8f4be7bcba7a1b..543e250974eb36 100644 --- a/packages/material-ui-icons/lib/TrendingFlatSharp.js +++ b/packages/material-ui-icons/lib/TrendingFlatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4-4v3H3v2h15v3l4-4z" -}), 'TrendingFlatSharp'); \ No newline at end of file +}), 'TrendingFlatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingFlatTwoTone.js b/packages/material-ui-icons/lib/TrendingFlatTwoTone.js index c33618dd75f604..5868d03aa811d7 100644 --- a/packages/material-ui-icons/lib/TrendingFlatTwoTone.js +++ b/packages/material-ui-icons/lib/TrendingFlatTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22 12-4-4v3H3v2h15v3l4-4z" -}), 'TrendingFlatTwoTone'); \ No newline at end of file +}), 'TrendingFlatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingUp.js b/packages/material-ui-icons/lib/TrendingUp.js index 36198de0b81945..002a76b0ef2bd1 100644 --- a/packages/material-ui-icons/lib/TrendingUp.js +++ b/packages/material-ui-icons/lib/TrendingUp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z" -}), 'TrendingUp'); \ No newline at end of file +}), 'TrendingUp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingUpOutlined.js b/packages/material-ui-icons/lib/TrendingUpOutlined.js index a805b91fa49f26..8b6b91307f9909 100644 --- a/packages/material-ui-icons/lib/TrendingUpOutlined.js +++ b/packages/material-ui-icons/lib/TrendingUpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" -}), 'TrendingUpOutlined'); \ No newline at end of file +}), 'TrendingUpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingUpRounded.js b/packages/material-ui-icons/lib/TrendingUpRounded.js index 292d9d3cf25496..6c17144c1f2ad7 100644 --- a/packages/material-ui-icons/lib/TrendingUpRounded.js +++ b/packages/material-ui-icons/lib/TrendingUpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.85 6.85 1.44 1.44-4.88 4.88-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6 6.01c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L9.41 12l3.29 3.29c.39.39 1.02.39 1.41 0l5.59-5.58 1.44 1.44c.31.31.85.09.85-.35V6.5c.01-.28-.21-.5-.49-.5h-4.29c-.45 0-.67.54-.36.85z" -}), 'TrendingUpRounded'); \ No newline at end of file +}), 'TrendingUpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingUpSharp.js b/packages/material-ui-icons/lib/TrendingUpSharp.js index f7603a355024c6..39c5cd2670d9c9 100644 --- a/packages/material-ui-icons/lib/TrendingUpSharp.js +++ b/packages/material-ui-icons/lib/TrendingUpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" -}), 'TrendingUpSharp'); \ No newline at end of file +}), 'TrendingUpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrendingUpTwoTone.js b/packages/material-ui-icons/lib/TrendingUpTwoTone.js index 89216bcab2ca64..52a168c9a1ff0d 100644 --- a/packages/material-ui-icons/lib/TrendingUpTwoTone.js +++ b/packages/material-ui-icons/lib/TrendingUpTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" -}), 'TrendingUpTwoTone'); \ No newline at end of file +}), 'TrendingUpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TripOrigin.js b/packages/material-ui-icons/lib/TripOrigin.js index a59ddfc0505d28..7c74f6e90aab4b 100644 --- a/packages/material-ui-icons/lib/TripOrigin.js +++ b/packages/material-ui-icons/lib/TripOrigin.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" -}), 'TripOrigin'); \ No newline at end of file +}), 'TripOrigin'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TripOriginOutlined.js b/packages/material-ui-icons/lib/TripOriginOutlined.js index 439b908fe3429c..45ea0938abe3dd 100644 --- a/packages/material-ui-icons/lib/TripOriginOutlined.js +++ b/packages/material-ui-icons/lib/TripOriginOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" -}), 'TripOriginOutlined'); \ No newline at end of file +}), 'TripOriginOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TripOriginRounded.js b/packages/material-ui-icons/lib/TripOriginRounded.js index 5d09f40bfb536d..0b96b8fd0c207b 100644 --- a/packages/material-ui-icons/lib/TripOriginRounded.js +++ b/packages/material-ui-icons/lib/TripOriginRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" -}), 'TripOriginRounded'); \ No newline at end of file +}), 'TripOriginRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TripOriginSharp.js b/packages/material-ui-icons/lib/TripOriginSharp.js index 433f55ddf0657b..2be572b77bce33 100644 --- a/packages/material-ui-icons/lib/TripOriginSharp.js +++ b/packages/material-ui-icons/lib/TripOriginSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" -}), 'TripOriginSharp'); \ No newline at end of file +}), 'TripOriginSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TripOriginTwoTone.js b/packages/material-ui-icons/lib/TripOriginTwoTone.js index 811e73b54cdee1..91edc8e5b75c13 100644 --- a/packages/material-ui-icons/lib/TripOriginTwoTone.js +++ b/packages/material-ui-icons/lib/TripOriginTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'TripOriginTwoTone'); \ No newline at end of file +}), 'TripOriginTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Try.js b/packages/material-ui-icons/lib/Try.js index a8b0756c538f23..ca244590e1b398 100644 --- a/packages/material-ui-icons/lib/Try.js +++ b/packages/material-ui-icons/lib/Try.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" -}), 'Try'); \ No newline at end of file +}), 'Try'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TryOutlined.js b/packages/material-ui-icons/lib/TryOutlined.js index 41d06ac7ed2228..a694b847917adb 100644 --- a/packages/material-ui-icons/lib/TryOutlined.js +++ b/packages/material-ui-icons/lib/TryOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" -}, "1")], 'TryOutlined'); \ No newline at end of file +}, "1")], 'TryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TryRounded.js b/packages/material-ui-icons/lib/TryRounded.js index 18debdf6e421f4..83258504a78e67 100644 --- a/packages/material-ui-icons/lib/TryRounded.js +++ b/packages/material-ui-icons/lib/TryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57-1.12 2.44c-.18.39-.73.39-.91 0l-1.12-2.44-2.44-1.12c-.39-.18-.39-.73 0-.91l2.44-1.12 1.12-2.44c.18-.39.73-.39.91 0l1.12 2.44 2.44 1.12c.39.18.39.73 0 .91l-2.44 1.12z" -}), 'TryRounded'); \ No newline at end of file +}), 'TryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TrySharp.js b/packages/material-ui-icons/lib/TrySharp.js index 3f0d6d9fb5ac5a..e3d5348ea55125 100644 --- a/packages/material-ui-icons/lib/TrySharp.js +++ b/packages/material-ui-icons/lib/TrySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" -}), 'TrySharp'); \ No newline at end of file +}), 'TrySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TryTwoTone.js b/packages/material-ui-icons/lib/TryTwoTone.js index cedd7035482b9a..615de9735e1400 100644 --- a/packages/material-ui-icons/lib/TryTwoTone.js +++ b/packages/material-ui-icons/lib/TryTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17 5.17 16H20V4H4v13.17zm6.43-8.74L12 5l1.57 3.43L17 10l-3.43 1.57L12 15l-1.57-3.43L7 10l3.43-1.57z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" -}, "2")], 'TryTwoTone'); \ No newline at end of file +}, "2")], 'TryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tty.js b/packages/material-ui-icons/lib/Tty.js index e6bae855c4fef3..d7ed1f92f7293f 100644 --- a/packages/material-ui-icons/lib/Tty.js +++ b/packages/material-ui-icons/lib/Tty.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 4h2v2h-2V4zm-1 3h2v2h-2V7zm-2-3h2v2h-2V4zm7 5h-2V7h2v2zm1-3h-2V4h2v2zm2 3h-2V7h2v2zm1-3h-2V4h2v2zm-7.38 8.38L12.1 16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52c.24-.24.34-.58.28-.9L8.16 3.8c-.09-.46-.5-.8-.98-.8H3.03c-.56 0-1.03.47-1 1.03.17 2.89 1.02 5.6 2.4 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.23 7.97 2.4.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73a.991.991 0 0 0-.91.27zM14 10h2v2h-2v-2zm-3 0h2v2h-2v-2zm8 2h-2v-2h2v2zm3 0h-2v-2h2v2z" -}), 'Tty'); \ No newline at end of file +}), 'Tty'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TtyOutlined.js b/packages/material-ui-icons/lib/TtyOutlined.js index d4658415a1014c..e588c5b40a81c5 100644 --- a/packages/material-ui-icons/lib/TtyOutlined.js +++ b/packages/material-ui-icons/lib/TtyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 6h-2V4h2v2zm2 1h-2v2h2V7zm1 2h2V7h-2v2zm0-5h-2v2h2V4zm-4 3h-2v2h2V7zm4 3h-2v2h2v-2zm-3 0h-2v2h2v-2zm-3-6h-2v2h2V4zm7 11.82v4.15c0 .56-.47 1.03-1.03 1-2.89-.17-5.6-1.03-7.97-2.4A17.999 17.999 0 0 1 4.43 12C3.05 9.63 2.2 6.92 2.03 4.03 2 3.47 2.47 3 3.03 3h4.15c.48 0 .89.34.98.8l.74 3.68c.07.33-.04.67-.27.9L6.1 10.9c1.43 2.5 3.5 4.57 6 6l2.52-2.52c.24-.24.58-.34.9-.27l3.67.73c.47.09.81.5.81.98zM5.18 8.99l1.65-1.65L6.36 5H4.13c.17 1.37.53 2.71 1.05 3.99zM18 16.64l-2.34-.47-1.65 1.65c1.28.52 2.63.87 3.99 1.05v-2.23zM20 4v2h2V4h-2zm0 8h2v-2h-2v2zm-7-2h-2v2h2v-2z" -}), 'TtyOutlined'); \ No newline at end of file +}), 'TtyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TtyRounded.js b/packages/material-ui-icons/lib/TtyRounded.js index a8522cc7554f92..ae217637ff7eb2 100644 --- a/packages/material-ui-icons/lib/TtyRounded.js +++ b/packages/material-ui-icons/lib/TtyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2-3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6.38 8.38L12.1 16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52c.24-.24.34-.58.28-.9L8.16 3.8c-.09-.46-.5-.8-.98-.8H3.03c-.56 0-1.03.47-1 1.03.17 2.89 1.02 5.6 2.4 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.23 7.97 2.4.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73a.991.991 0 0 0-.91.27zM15 10c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}), 'TtyRounded'); \ No newline at end of file +}), 'TtyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TtySharp.js b/packages/material-ui-icons/lib/TtySharp.js index 58199000ab1bdc..6d71276b6f0c65 100644 --- a/packages/material-ui-icons/lib/TtySharp.js +++ b/packages/material-ui-icons/lib/TtySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15v6c-3.28 0-6.35-.89-9-2.43A17.999 17.999 0 0 1 4.43 12C2.89 9.35 2 6.28 2 3h6l1 5-2.9 2.9c1.43 2.5 3.5 4.57 6 6L15 14l5 1zm-6-9h2V4h-2v2zm-1 3h2V7h-2v2zm-2-3h2V4h-2v2zm7 1h-2v2h2V7zm1-3h-2v2h2V4zm2 3h-2v2h2V7zm1-3h-2v2h2V4zm-8 8h2v-2h-2v2zm-3 0h2v-2h-2v2zm8-2h-2v2h2v-2zm3 0h-2v2h2v-2z" -}), 'TtySharp'); \ No newline at end of file +}), 'TtySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TtyTwoTone.js b/packages/material-ui-icons/lib/TtyTwoTone.js index 44044e957f14e3..72546cb8a61f87 100644 --- a/packages/material-ui-icons/lib/TtyTwoTone.js +++ b/packages/material-ui-icons/lib/TtyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.13 5c.17 1.37.53 2.71 1.05 3.99l1.65-1.65L6.36 5H4.13zm11.53 11.17-1.65 1.65c1.28.52 2.63.87 3.99 1.05v-2.23l-2.34-.47z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.2 14.84-3.67-.73c-.33-.07-.67.04-.9.27L12.1 16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52c.24-.24.34-.58.28-.9L8.16 3.8c-.09-.46-.5-.8-.98-.8H3.03c-.56 0-1.03.47-1 1.03.17 2.89 1.02 5.6 2.4 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.23 7.97 2.4.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98zM4.13 5h2.23l.47 2.34-1.65 1.65C4.66 7.71 4.3 6.37 4.13 5zM18 18.87c-1.37-.17-2.71-.53-3.99-1.05l1.65-1.65 2.34.47v2.23zM14 4h2v2h-2V4zm-1 3h2v2h-2V7zm-2-3h2v2h-2V4zm7 5h-2V7h2v2zm1-3h-2V4h2v2zm2 3h-2V7h2v2zm1-3h-2V4h2v2zm-8 4h2v2h-2v-2zm-3 0h2v2h-2v-2zm8 2h-2v-2h2v2zm3 0h-2v-2h2v2z" -}, "1")], 'TtyTwoTone'); \ No newline at end of file +}, "1")], 'TtyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tune.js b/packages/material-ui-icons/lib/Tune.js index e106c1eb00953e..03a451e75ae60b 100644 --- a/packages/material-ui-icons/lib/Tune.js +++ b/packages/material-ui-icons/lib/Tune.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" -}), 'Tune'); \ No newline at end of file +}), 'Tune'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TuneOutlined.js b/packages/material-ui-icons/lib/TuneOutlined.js index eec96083694446..8127e638c28257 100644 --- a/packages/material-ui-icons/lib/TuneOutlined.js +++ b/packages/material-ui-icons/lib/TuneOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" -}), 'TuneOutlined'); \ No newline at end of file +}), 'TuneOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TuneRounded.js b/packages/material-ui-icons/lib/TuneRounded.js index 46a1d599d22a32..fd2905ae38d141 100644 --- a/packages/material-ui-icons/lib/TuneRounded.js +++ b/packages/material-ui-icons/lib/TuneRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 18c0 .55.45 1 1 1h5v-2H4c-.55 0-1 .45-1 1zM3 6c0 .55.45 1 1 1h9V5H4c-.55 0-1 .45-1 1zm10 14v-1h7c.55 0 1-.45 1-1s-.45-1-1-1h-7v-1c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1zM7 10v1H4c-.55 0-1 .45-1 1s.45 1 1 1h3v1c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1zm14 2c0-.55-.45-1-1-1h-9v2h9c.55 0 1-.45 1-1zm-5-3c.55 0 1-.45 1-1V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" -}), 'TuneRounded'); \ No newline at end of file +}), 'TuneRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TuneSharp.js b/packages/material-ui-icons/lib/TuneSharp.js index 815039cfaeeb9b..7e6eac2bb53061 100644 --- a/packages/material-ui-icons/lib/TuneSharp.js +++ b/packages/material-ui-icons/lib/TuneSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" -}), 'TuneSharp'); \ No newline at end of file +}), 'TuneSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TuneTwoTone.js b/packages/material-ui-icons/lib/TuneTwoTone.js index f424c329aca85b..c1352a59575958 100644 --- a/packages/material-ui-icons/lib/TuneTwoTone.js +++ b/packages/material-ui-icons/lib/TuneTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h10v2H3zm4 6H3v2h4v2h2V9H7zm6 4h-2v6h2v-2h8v-2h-8zM3 17h6v2H3zm8-6h10v2H11zm6-8h-2v6h2V7h4V5h-4z" -}), 'TuneTwoTone'); \ No newline at end of file +}), 'TuneTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tungsten.js b/packages/material-ui-icons/lib/Tungsten.js index c5c82aa7eae856..f73b7dec1f2b2e 100644 --- a/packages/material-ui-icons/lib/Tungsten.js +++ b/packages/material-ui-icons/lib/Tungsten.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z" -}), 'Tungsten'); \ No newline at end of file +}), 'Tungsten'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TungstenOutlined.js b/packages/material-ui-icons/lib/TungstenOutlined.js index bce0379f4f11b3..469df2db8dc04f 100644 --- a/packages/material-ui-icons/lib/TungstenOutlined.js +++ b/packages/material-ui-icons/lib/TungstenOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5zm1 10c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}), 'TungstenOutlined'); \ No newline at end of file +}), 'TungstenOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TungstenRounded.js b/packages/material-ui-icons/lib/TungstenRounded.js index a2f535ad674eb5..45b06f37e5df66 100644 --- a/packages/material-ui-icons/lib/TungstenRounded.js +++ b/packages/material-ui-icons/lib/TungstenRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 19c-.56 0-1 .45-1 1v1c0 .55.45 1 1 1s1-.45 1-1v-1c0-.55-.45-1-1-1zm-6.01-1.91-.71.71c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.71-.71c.39-.39.39-1.02 0-1.41-.38-.38-1.02-.38-1.41 0zM5 12c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1zm16-1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1s-.45-1-1-1zm-2.99 6.09a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.71.71c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71zM15 8.02V5c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3.02c-1.43 1.08-2.28 2.9-1.91 4.91.36 1.95 1.9 3.55 3.84 3.95C14.16 17.56 17 15.11 17 12c0-1.63-.79-3.06-2-3.98zm-2-.92c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5h2v2.1z" -}), 'TungstenRounded'); \ No newline at end of file +}), 'TungstenRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TungstenSharp.js b/packages/material-ui-icons/lib/TungstenSharp.js index 723d02df09438c..99125a9b0ea280 100644 --- a/packages/material-ui-icons/lib/TungstenSharp.js +++ b/packages/material-ui-icons/lib/TungstenSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z" -}), 'TungstenSharp'); \ No newline at end of file +}), 'TungstenSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TungstenTwoTone.js b/packages/material-ui-icons/lib/TungstenTwoTone.js index b17ce5ec92799f..cb274e67af6b96 100644 --- a/packages/material-ui-icons/lib/TungstenTwoTone.js +++ b/packages/material-ui-icons/lib/TungstenTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 7.1V5h-2v2.1c.32-.06.66-.1 1-.1s.68.04 1 .1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5zm1 10c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" -}, "1")], 'TungstenTwoTone'); \ No newline at end of file +}, "1")], 'TungstenTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedIn.js b/packages/material-ui-icons/lib/TurnedIn.js index 407d132a7f8392..8ed36230d6a0a9 100644 --- a/packages/material-ui-icons/lib/TurnedIn.js +++ b/packages/material-ui-icons/lib/TurnedIn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" -}), 'TurnedIn'); \ No newline at end of file +}), 'TurnedIn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInNot.js b/packages/material-ui-icons/lib/TurnedInNot.js index 42727c7137ba66..bd381ab1d38d28 100644 --- a/packages/material-ui-icons/lib/TurnedInNot.js +++ b/packages/material-ui-icons/lib/TurnedInNot.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" -}), 'TurnedInNot'); \ No newline at end of file +}), 'TurnedInNot'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInNotOutlined.js b/packages/material-ui-icons/lib/TurnedInNotOutlined.js index 6864cba243c746..f9f64c300fc81b 100644 --- a/packages/material-ui-icons/lib/TurnedInNotOutlined.js +++ b/packages/material-ui-icons/lib/TurnedInNotOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" -}), 'TurnedInNotOutlined'); \ No newline at end of file +}), 'TurnedInNotOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInNotRounded.js b/packages/material-ui-icons/lib/TurnedInNotRounded.js index 78759ea393941e..23e4d2cbe4a34b 100644 --- a/packages/material-ui-icons/lib/TurnedInNotRounded.js +++ b/packages/material-ui-icons/lib/TurnedInNotRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12z" -}), 'TurnedInNotRounded'); \ No newline at end of file +}), 'TurnedInNotRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInNotSharp.js b/packages/material-ui-icons/lib/TurnedInNotSharp.js index 35868c514427ee..b604f57b83faf2 100644 --- a/packages/material-ui-icons/lib/TurnedInNotSharp.js +++ b/packages/material-ui-icons/lib/TurnedInNotSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5.01L5 21l7-3 7 3V3zm-2 15-5-2.18L7 18V5h10v13z" -}), 'TurnedInNotSharp'); \ No newline at end of file +}), 'TurnedInNotSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInNotTwoTone.js b/packages/material-ui-icons/lib/TurnedInNotTwoTone.js index 132cd0595f4db5..baa227d206e9d0 100644 --- a/packages/material-ui-icons/lib/TurnedInNotTwoTone.js +++ b/packages/material-ui-icons/lib/TurnedInNotTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" -}), 'TurnedInNotTwoTone'); \ No newline at end of file +}), 'TurnedInNotTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInOutlined.js b/packages/material-ui-icons/lib/TurnedInOutlined.js index 7bb37eef606300..8b11a3990bdb2e 100644 --- a/packages/material-ui-icons/lib/TurnedInOutlined.js +++ b/packages/material-ui-icons/lib/TurnedInOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" -}), 'TurnedInOutlined'); \ No newline at end of file +}), 'TurnedInOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInRounded.js b/packages/material-ui-icons/lib/TurnedInRounded.js index 6d110dcdc8765b..b09fc565a208cc 100644 --- a/packages/material-ui-icons/lib/TurnedInRounded.js +++ b/packages/material-ui-icons/lib/TurnedInRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" -}), 'TurnedInRounded'); \ No newline at end of file +}), 'TurnedInRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInSharp.js b/packages/material-ui-icons/lib/TurnedInSharp.js index 71b2bb42177d20..c06e563ef25b5f 100644 --- a/packages/material-ui-icons/lib/TurnedInSharp.js +++ b/packages/material-ui-icons/lib/TurnedInSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5v18l7-3 7 3V3z" -}), 'TurnedInSharp'); \ No newline at end of file +}), 'TurnedInSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TurnedInTwoTone.js b/packages/material-ui-icons/lib/TurnedInTwoTone.js index 2259d9c9624e83..e93b798158ab70 100644 --- a/packages/material-ui-icons/lib/TurnedInTwoTone.js +++ b/packages/material-ui-icons/lib/TurnedInTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97-4.21-1.81-.79-.34-.79.34L7 17.97V5h10v12.97z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 17.97 4.21-1.81.79-.34.79.34L17 17.97V5H7z", opacity: ".3" -}, "1")], 'TurnedInTwoTone'); \ No newline at end of file +}, "1")], 'TurnedInTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Tv.js b/packages/material-ui-icons/lib/Tv.js index 61a3a69066c13a..2542d91bd14630 100644 --- a/packages/material-ui-icons/lib/Tv.js +++ b/packages/material-ui-icons/lib/Tv.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" -}), 'Tv'); \ No newline at end of file +}), 'Tv'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvOff.js b/packages/material-ui-icons/lib/TvOff.js index 985408a3cd634e..1feff0f51d23dd 100644 --- a/packages/material-ui-icons/lib/TvOff.js +++ b/packages/material-ui-icons/lib/TvOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1 3.54 1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l2 2 1.26-1.27L2.27 2.27 1 3.54zM3 19V7h1.46l12 12H3zM21 5h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H7.52l2 2H21v11.48l1.65 1.65c.22-.32.35-.71.35-1.13V7c0-1.11-.89-2-2-2z" -}), 'TvOff'); \ No newline at end of file +}), 'TvOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvOffOutlined.js b/packages/material-ui-icons/lib/TvOffOutlined.js index 4090a4b3a5bf30..bff62428dc64d1 100644 --- a/packages/material-ui-icons/lib/TvOffOutlined.js +++ b/packages/material-ui-icons/lib/TvOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16 1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" -}), 'TvOffOutlined'); \ No newline at end of file +}), 'TvOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvOffRounded.js b/packages/material-ui-icons/lib/TvOffRounded.js index 14a3e6ef261f41..a31dbb6aa6f0c6 100644 --- a/packages/material-ui-icons/lib/TvOffRounded.js +++ b/packages/material-ui-icons/lib/TvOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 8v9.88l1.85 1.85c.1-.22.15-.47.15-.73V7c0-1.11-.9-2-2-2h-7.59l2.94-2.94c.2-.2.2-.51 0-.71s-.51-.2-.71 0L12 4.99 8.36 1.35c-.2-.2-.51-.2-.71 0s-.2.51 0 .71L10.59 5H8.12l2 2H20c.55 0 1 .45 1 1zM3.12 2.83a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.82.82C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.29 1.29c.39.39 1.02.39 1.41 0 .36-.36.37-.92.07-1.31h.03L3.12 2.83zM3 18V8c0-.55.45-1 1-1h.46l12 12H4c-.55 0-1-.45-1-1z" -}), 'TvOffRounded'); \ No newline at end of file +}), 'TvOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvOffSharp.js b/packages/material-ui-icons/lib/TvOffSharp.js index fb6ac84e466734..f923bc10998300 100644 --- a/packages/material-ui-icons/lib/TvOffSharp.js +++ b/packages/material-ui-icons/lib/TvOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7v10.88l2 2V5h-9.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2zM2.41 2.13l-.14.14L1 3.54l1.53 1.53H1V21h17.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" -}), 'TvOffSharp'); \ No newline at end of file +}), 'TvOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvOffTwoTone.js b/packages/material-ui-icons/lib/TvOffTwoTone.js index b26c173e2d1a61..a0558f40102473 100644 --- a/packages/material-ui-icons/lib/TvOffTwoTone.js +++ b/packages/material-ui-icons/lib/TvOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h13.46l-12-12H3zm7.12-12L21 17.88V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16 1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" -}, "1")], 'TvOffTwoTone'); \ No newline at end of file +}, "1")], 'TvOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvOutlined.js b/packages/material-ui-icons/lib/TvOutlined.js index 4b43e7f1dbcc1d..72a15dfb28a9e4 100644 --- a/packages/material-ui-icons/lib/TvOutlined.js +++ b/packages/material-ui-icons/lib/TvOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" -}), 'TvOutlined'); \ No newline at end of file +}), 'TvOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvRounded.js b/packages/material-ui-icons/lib/TvRounded.js index 4b83add87347c1..9625ecaf00fe6b 100644 --- a/packages/material-ui-icons/lib/TvRounded.js +++ b/packages/material-ui-icons/lib/TvRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" -}), 'TvRounded'); \ No newline at end of file +}), 'TvRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvSharp.js b/packages/material-ui-icons/lib/TvSharp.js index 402b3e5e06292c..ea42dd20d892d2 100644 --- a/packages/material-ui-icons/lib/TvSharp.js +++ b/packages/material-ui-icons/lib/TvSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z" -}), 'TvSharp'); \ No newline at end of file +}), 'TvSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TvTwoTone.js b/packages/material-ui-icons/lib/TvTwoTone.js index 619cb75f9e2ed8..8092bd9d4689f4 100644 --- a/packages/material-ui-icons/lib/TvTwoTone.js +++ b/packages/material-ui-icons/lib/TvTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h18v12H3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" -}, "1")], 'TvTwoTone'); \ No newline at end of file +}, "1")], 'TvTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwelveMp.js b/packages/material-ui-icons/lib/TwelveMp.js index ff8d12c7411e72..925b799395e3a5 100644 --- a/packages/material-ui-icons/lib/TwelveMp.js +++ b/packages/material-ui-icons/lib/TwelveMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM15.5 9h-2v1h3v1.5H12V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm0 5H17v1.5h-1.5z" -}), 'TwelveMp'); \ No newline at end of file +}), 'TwelveMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwelveMpOutlined.js b/packages/material-ui-icons/lib/TwelveMpOutlined.js index 4f57dbd534de87..06eb70854c1764 100644 --- a/packages/material-ui-icons/lib/TwelveMpOutlined.js +++ b/packages/material-ui-icons/lib/TwelveMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm8-1.5h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H12V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" -}, "2")], 'TwelveMpOutlined'); \ No newline at end of file +}, "2")], 'TwelveMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwelveMpRounded.js b/packages/material-ui-icons/lib/TwelveMpRounded.js index 9d2812f0e83b11..f22146296fd366 100644 --- a/packages/material-ui-icons/lib/TwelveMpRounded.js +++ b/packages/material-ui-icons/lib/TwelveMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 6c0-.55.45-1 1-1h2V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H12V9zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'TwelveMpRounded'); \ No newline at end of file +}, "1")], 'TwelveMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwelveMpSharp.js b/packages/material-ui-icons/lib/TwelveMpSharp.js index f542c77eecc9e7..91cf2c7de34037 100644 --- a/packages/material-ui-icons/lib/TwelveMpSharp.js +++ b/packages/material-ui-icons/lib/TwelveMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm9 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H12V8zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'TwelveMpSharp'); \ No newline at end of file +}, "1")], 'TwelveMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwelveMpTwoTone.js b/packages/material-ui-icons/lib/TwelveMpTwoTone.js index b79fd79c2ae3e1..b612e083f5fad3 100644 --- a/packages/material-ui-icons/lib/TwelveMpTwoTone.js +++ b/packages/material-ui-icons/lib/TwelveMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h3v1.5H12V9zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.5 11.5H10v-6H7V7h1.5zm8-1.5h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H12V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" -}, "4")], 'TwelveMpTwoTone'); \ No newline at end of file +}, "4")], 'TwelveMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyFourMp.js b/packages/material-ui-icons/lib/TwentyFourMp.js index 51dedb88cc7995..2075b7b8f9cc92 100644 --- a/packages/material-ui-icons/lib/TwentyFourMp.js +++ b/packages/material-ui-icons/lib/TwentyFourMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm8.5 1h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10zm-3 4H17v1.5h-1.5z" -}), 'TwentyFourMp'); \ No newline at end of file +}), 'TwentyFourMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyFourMpOutlined.js b/packages/material-ui-icons/lib/TwentyFourMpOutlined.js index 934f7ee4a12261..436026a5735932 100644 --- a/packages/material-ui-icons/lib/TwentyFourMpOutlined.js +++ b/packages/material-ui-icons/lib/TwentyFourMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm9.5-1.5h-3.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1zm-.5 3H15V14h1.5v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm5 1.5h1.5V10h1V8.5h-1v-3H16v3h-1.5v-3H13V10h3z" -}, "2")], 'TwentyFourMpOutlined'); \ No newline at end of file +}, "2")], 'TwentyFourMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyFourMpRounded.js b/packages/material-ui-icons/lib/TwentyFourMpRounded.js index 9d42ba615cc662..d2482e079253fb 100644 --- a/packages/material-ui-icons/lib/TwentyFourMpRounded.js +++ b/packages/material-ui-icons/lib/TwentyFourMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16zm-.25-6h-.25v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10h-2c-.55 0-1-.45-1-1V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5H16V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h.25c.41 0 .75.34.75.75s-.34.75-.75.75z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'TwentyFourMpRounded'); \ No newline at end of file +}, "1")], 'TwentyFourMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyFourMpSharp.js b/packages/material-ui-icons/lib/TwentyFourMpSharp.js index 1a0d30da971c30..2567aa3dc68ce3 100644 --- a/packages/material-ui-icons/lib/TwentyFourMpSharp.js +++ b/packages/material-ui-icons/lib/TwentyFourMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17zm.5-7h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10z" -}, "1")], 'TwentyFourMpSharp'); \ No newline at end of file +}, "1")], 'TwentyFourMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyFourMpTwoTone.js b/packages/material-ui-icons/lib/TwentyFourMpTwoTone.js index 49ee1847a89dbc..2e26e76f6d19e4 100644 --- a/packages/material-ui-icons/lib/TwentyFourMpTwoTone.js +++ b/packages/material-ui-icons/lib/TwentyFourMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-3c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1V16zM13 5.5h1.5v3H16v-3h1.5v3h1V10h-1v1.5H16V10h-3V5.5zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm9.5-1.5h-3.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1zm-.5 3H15V14h1.5v1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm5 1.5h1.5V10h1V8.5h-1v-3H16v3h-1.5v-3H13V10h3z" -}, "4")], 'TwentyFourMpTwoTone'); \ No newline at end of file +}, "4")], 'TwentyFourMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyOneMp.js b/packages/material-ui-icons/lib/TwentyOneMp.js index 37422176db7124..e8db3b8bc87749 100644 --- a/packages/material-ui-icons/lib/TwentyOneMp.js +++ b/packages/material-ui-icons/lib/TwentyOneMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 9H9v1h3v1.5H7.5V9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm3-3.5h3v6h-1.5V7H14V5.5zm1.5 8.5H17v1.5h-1.5z" -}), 'TwentyOneMp'); \ No newline at end of file +}), 'TwentyOneMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyOneMpOutlined.js b/packages/material-ui-icons/lib/TwentyOneMpOutlined.js index b1538df759e873..fe711e0a3de585 100644 --- a/packages/material-ui-icons/lib/TwentyOneMpOutlined.js +++ b/packages/material-ui-icons/lib/TwentyOneMpOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 11.5H16v-6h-3V7h1.5zM12 10H9V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H7.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H12V10zm-4.5 4h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm7.5 3h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6H15V17zm0-3h1.5v1.5H15V14z" -}, "1")], 'TwentyOneMpOutlined'); \ No newline at end of file +}, "1")], 'TwentyOneMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyOneMpRounded.js b/packages/material-ui-icons/lib/TwentyOneMpRounded.js index a30ff12288b05e..52d03b381a7a1e 100644 --- a/packages/material-ui-icons/lib/TwentyOneMpRounded.js +++ b/packages/material-ui-icons/lib/TwentyOneMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 9c0-.55.45-1 1-1h2V7H8.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H9v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H8.5c-.55 0-1-.45-1-1V9zm5 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-11.5c0-.41.34-.75.75-.75H15c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'TwentyOneMpRounded'); \ No newline at end of file +}, "1")], 'TwentyOneMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyOneMpSharp.js b/packages/material-ui-icons/lib/TwentyOneMpSharp.js index 886062de17ff64..f6ae5065e501eb 100644 --- a/packages/material-ui-icons/lib/TwentyOneMpSharp.js +++ b/packages/material-ui-icons/lib/TwentyOneMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm4.5 5h3V7h-3V5.5H12V9H9v1h3v1.5H7.5V8zm5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1")], 'TwentyOneMpSharp'); \ No newline at end of file +}, "1")], 'TwentyOneMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyOneMpTwoTone.js b/packages/material-ui-icons/lib/TwentyOneMpTwoTone.js index b11fb368c97cec..c92fb831dff6f3 100644 --- a/packages/material-ui-icons/lib/TwentyOneMpTwoTone.js +++ b/packages/material-ui-icons/lib/TwentyOneMpTwoTone.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-13.5h3v6h-1.5V7H13V5.5zm.5 7H17c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6zM7.5 9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H9v1h3v1.5H7.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 11.5H16v-6h-3V7h1.5zM12 10H9V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H7.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H12V10zm-4.5 4h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm7.5 3h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6H15V17zm0-3h1.5v1.5H15V14z" -}, "3")], 'TwentyOneMpTwoTone'); \ No newline at end of file +}, "3")], 'TwentyOneMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyThreeMp.js b/packages/material-ui-icons/lib/TwentyThreeMp.js index d13be066fd567a..631a6240e2333a 100644 --- a/packages/material-ui-icons/lib/TwentyThreeMp.js +++ b/packages/material-ui-icons/lib/TwentyThreeMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm7.5 1.5c0 .55-.45 1-1 1H13V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-2 3.5H17v1.5h-1.5z" -}), 'TwentyThreeMp'); \ No newline at end of file +}), 'TwentyThreeMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyThreeMpOutlined.js b/packages/material-ui-icons/lib/TwentyThreeMpOutlined.js index 07364d5142befc..cea2c958d1e163 100644 --- a/packages/material-ui-icons/lib/TwentyThreeMpOutlined.js +++ b/packages/material-ui-icons/lib/TwentyThreeMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5.5v-4c0-.55-.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "2")], 'TwentyThreeMpOutlined'); \ No newline at end of file +}, "2")], 'TwentyThreeMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyThreeMpRounded.js b/packages/material-ui-icons/lib/TwentyThreeMpRounded.js index b1b640a8d2585a..38df838f08022f 100644 --- a/packages/material-ui-icons/lib/TwentyThreeMpRounded.js +++ b/packages/material-ui-icons/lib/TwentyThreeMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-7c0-.41.34-.75.75-.75H16V9h-1.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H16V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'TwentyThreeMpRounded'); \ No newline at end of file +}, "1")], 'TwentyThreeMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyThreeMpSharp.js b/packages/material-ui-icons/lib/TwentyThreeMpSharp.js index 7fda74e067335b..decc6590af8c8b 100644 --- a/packages/material-ui-icons/lib/TwentyThreeMpSharp.js +++ b/packages/material-ui-icons/lib/TwentyThreeMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 10h3V9h-2V8h2V7h-3V5.5h4.5v6H13V10zm5 7h-3v1.5h-1.5v-6H18V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'TwentyThreeMpSharp'); \ No newline at end of file +}, "1")], 'TwentyThreeMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyThreeMpTwoTone.js b/packages/material-ui-icons/lib/TwentyThreeMpTwoTone.js index b06a5586dd6df1..4236e543ea1b7b 100644 --- a/packages/material-ui-icons/lib/TwentyThreeMpTwoTone.js +++ b/packages/material-ui-icons/lib/TwentyThreeMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM13 10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13V10zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5.5v-4c0-.55-.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" -}, "4")], 'TwentyThreeMpTwoTone'); \ No newline at end of file +}, "4")], 'TwentyThreeMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyTwoMp.js b/packages/material-ui-icons/lib/TwentyTwoMp.js index 0f594ddeaff6bd..c74fcebf63c17e 100644 --- a/packages/material-ui-icons/lib/TwentyTwoMp.js +++ b/packages/material-ui-icons/lib/TwentyTwoMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm6.5 0h-2v1h3v1.5H13V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm-1 5H17v1.5h-1.5z" -}), 'TwentyTwoMp'); \ No newline at end of file +}), 'TwentyTwoMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyTwoMpOutlined.js b/packages/material-ui-icons/lib/TwentyTwoMpOutlined.js index d13a2720f8deee..cf9be34ca5c5b2 100644 --- a/packages/material-ui-icons/lib/TwentyTwoMpOutlined.js +++ b/packages/material-ui-icons/lib/TwentyTwoMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5 0h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H13V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" -}, "2")], 'TwentyTwoMpOutlined'); \ No newline at end of file +}, "2")], 'TwentyTwoMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyTwoMpRounded.js b/packages/material-ui-icons/lib/TwentyTwoMpRounded.js index 1897f2e17da30b..6f333b45a21890 100644 --- a/packages/material-ui-icons/lib/TwentyTwoMpRounded.js +++ b/packages/material-ui-icons/lib/TwentyTwoMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-7.25V9c0-.55.45-1 1-1h2V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H14c-.55 0-1-.45-1-1zm5 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'TwentyTwoMpRounded'); \ No newline at end of file +}, "1")], 'TwentyTwoMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyTwoMpSharp.js b/packages/material-ui-icons/lib/TwentyTwoMpSharp.js index 99abfde5427fb6..082c9f3a5277c1 100644 --- a/packages/material-ui-icons/lib/TwentyTwoMpSharp.js +++ b/packages/material-ui-icons/lib/TwentyTwoMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H13V8zm5 9h-3v1.5h-1.5v-6H18V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'TwentyTwoMpSharp'); \ No newline at end of file +}, "1")], 'TwentyTwoMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyTwoMpTwoTone.js b/packages/material-ui-icons/lib/TwentyTwoMpTwoTone.js index 1f9379de60d5a2..fe54ea5fc31632 100644 --- a/packages/material-ui-icons/lib/TwentyTwoMpTwoTone.js +++ b/packages/material-ui-icons/lib/TwentyTwoMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM13 9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h3v1.5H13V9zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5 0h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H13V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" -}, "4")], 'TwentyTwoMpTwoTone'); \ No newline at end of file +}, "4")], 'TwentyTwoMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyZeroMp.js b/packages/material-ui-icons/lib/TwentyZeroMp.js index 8127b9271a637a..2c49aa85a103b6 100644 --- a/packages/material-ui-icons/lib/TwentyZeroMp.js +++ b/packages/material-ui-icons/lib/TwentyZeroMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 7H16v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm2-8c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm5.5 5H17v1.5h-1.5z" -}), 'TwentyZeroMp'); \ No newline at end of file +}), 'TwentyZeroMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyZeroMpOutlined.js b/packages/material-ui-icons/lib/TwentyZeroMpOutlined.js index f04bd97dae40ac..238547b1a9f0a3 100644 --- a/packages/material-ui-icons/lib/TwentyZeroMpOutlined.js +++ b/packages/material-ui-icons/lib/TwentyZeroMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H14c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H16v3h-1.5V7zM11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10z" -}, "2")], 'TwentyZeroMpOutlined'); \ No newline at end of file +}, "2")], 'TwentyZeroMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyZeroMpRounded.js b/packages/material-ui-icons/lib/TwentyZeroMpRounded.js index c0c856ee6866b3..d769183ad2e553 100644 --- a/packages/material-ui-icons/lib/TwentyZeroMpRounded.js +++ b/packages/material-ui-icons/lib/TwentyZeroMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-7.25v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1zm5 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15zm-.5-7H16v3h-1.5z" -}, "1")], 'TwentyZeroMpRounded'); \ No newline at end of file +}, "1")], 'TwentyZeroMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyZeroMpSharp.js b/packages/material-ui-icons/lib/TwentyZeroMpSharp.js index 141d04d5a9ba13..0f4851b8b0007d 100644 --- a/packages/material-ui-icons/lib/TwentyZeroMpSharp.js +++ b/packages/material-ui-icons/lib/TwentyZeroMpSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 7H16v3h-1.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h4.5v6H13v-6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "2")], 'TwentyZeroMpSharp'); \ No newline at end of file +}, "2")], 'TwentyZeroMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwentyZeroMpTwoTone.js b/packages/material-ui-icons/lib/TwentyZeroMpTwoTone.js index 40a6b06dfe5cc7..76f18f8569a290 100644 --- a/packages/material-ui-icons/lib/TwentyZeroMpTwoTone.js +++ b/packages/material-ui-icons/lib/TwentyZeroMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-5-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 7H16v3h-1.5zm.5 7h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H14c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H16v3h-1.5V7zM11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10z" -}, "4")], 'TwentyZeroMpTwoTone'); \ No newline at end of file +}, "4")], 'TwentyZeroMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Twitter.js b/packages/material-ui-icons/lib/Twitter.js index 421847eedfa3ed..9d62530e9d89b2 100644 --- a/packages/material-ui-icons/lib/Twitter.js +++ b/packages/material-ui-icons/lib/Twitter.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z" -}), 'Twitter'); \ No newline at end of file +}), 'Twitter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoK.js b/packages/material-ui-icons/lib/TwoK.js index fb5162108a53b9..c4bd8652cce42a 100644 --- a/packages/material-ui-icons/lib/TwoK.js +++ b/packages/material-ui-icons/lib/TwoK.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h3V15H6.5v-2.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm8 2.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'TwoK'); \ No newline at end of file +}), 'TwoK'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKOutlined.js b/packages/material-ui-icons/lib/TwoKOutlined.js index 3f7378d45026c3..9ef5c46dd19d95 100644 --- a/packages/material-ui-icons/lib/TwoKOutlined.js +++ b/packages/material-ui-icons/lib/TwoKOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13.5H8v-1h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6.5v1.5h3v1h-2c-.55 0-1 .45-1 1V15H11v-1.5zm3.5-.75L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "1")], 'TwoKOutlined'); \ No newline at end of file +}, "1")], 'TwoKOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKPlus.js b/packages/material-ui-icons/lib/TwoKPlus.js index 24f20202d956e3..5acd4feec8f9ae 100644 --- a/packages/material-ui-icons/lib/TwoKPlus.js +++ b/packages/material-ui-icons/lib/TwoKPlus.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 8.5c0 .55-.45 1-1 1h-2v1h3V15H5v-2.5c0-.55.45-1 1-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v1.5zm4.75 3.5-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM20 12.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" -}), 'TwoKPlus'); \ No newline at end of file +}), 'TwoKPlus'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKPlusOutlined.js b/packages/material-ui-icons/lib/TwoKPlusOutlined.js index 0580929c6ab616..806fae536c685f 100644 --- a/packages/material-ui-icons/lib/TwoKPlusOutlined.js +++ b/packages/material-ui-icons/lib/TwoKPlusOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 13.5H7.5v-1H9c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6v1.5h2.5v1H7c-.55 0-1 .45-1 1V15h4v-1.5zm2.5-.75L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "1")], 'TwoKPlusOutlined'); \ No newline at end of file +}, "1")], 'TwoKPlusOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKPlusRounded.js b/packages/material-ui-icons/lib/TwoKPlusRounded.js index a57af328f126db..a65c3775b62017 100644 --- a/packages/material-ui-icons/lib/TwoKPlusRounded.js +++ b/packages/material-ui-icons/lib/TwoKPlusRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8.5c0 .55-.45 1-1 1H7.5v1h1.75c.41 0 .75.34.75.75s-.34.75-.75.75H7c-.55 0-1-.45-1-1v-1.5c0-.55.45-1 1-1h1.5v-1H6.75c-.41 0-.75-.34-.75-.75S6.34 9 6.75 9H9c.55 0 1 .45 1 1v1.5zm4.04 3.23-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12-.21 0-.42-.1-.55-.27zm4.46-2.23h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" -}), 'TwoKPlusRounded'); \ No newline at end of file +}), 'TwoKPlusRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKPlusSharp.js b/packages/material-ui-icons/lib/TwoKPlusSharp.js index ce41a75ec0bbc1..34b735130c9641 100644 --- a/packages/material-ui-icons/lib/TwoKPlusSharp.js +++ b/packages/material-ui-icons/lib/TwoKPlusSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zm-11 9.5H7.5v1H10V15H6v-3.5h2.5v-1H6V9h4v3.5zm4.25 2.5-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" -}), 'TwoKPlusSharp'); \ No newline at end of file +}), 'TwoKPlusSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKPlusTwoTone.js b/packages/material-ui-icons/lib/TwoKPlusTwoTone.js index 03b4e86f85af2c..ce5d0d2c7b553c 100644 --- a/packages/material-ui-icons/lib/TwoKPlusTwoTone.js +++ b/packages/material-ui-icons/lib/TwoKPlusTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 3.5c0-.55.45-1 1-1h1.5v-1H6V9h3c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H7.5v1H10V15H6v-2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 13.5H7.5v-1H9c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6v1.5h2.5v1H7c-.55 0-1 .45-1 1V15h4v-1.5zm2.5-.75L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" -}, "2")], 'TwoKPlusTwoTone'); \ No newline at end of file +}, "2")], 'TwoKPlusTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKRounded.js b/packages/material-ui-icons/lib/TwoKRounded.js index 7ec5e9ec3e75ab..0b6a0697d01fe3 100644 --- a/packages/material-ui-icons/lib/TwoKRounded.js +++ b/packages/material-ui-icons/lib/TwoKRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1v-1.5c0-.55.45-1 1-1h2v-1H7.25c-.41 0-.75-.34-.75-.75S6.84 9 7.25 9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm6.59 2.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" -}), 'TwoKRounded'); \ No newline at end of file +}), 'TwoKRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKSharp.js b/packages/material-ui-icons/lib/TwoKSharp.js index c943d2ce487c28..66d45f78efb1b1 100644 --- a/packages/material-ui-icons/lib/TwoKSharp.js +++ b/packages/material-ui-icons/lib/TwoKSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3v18h18V3zM8 12.5v1h3V15H6.5v-3.5h3v-1h-3V9H11v3.5H8zM18 15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" -}), 'TwoKSharp'); \ No newline at end of file +}), 'TwoKSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoKTwoTone.js b/packages/material-ui-icons/lib/TwoKTwoTone.js index b7bb32e1e45c8d..ac04edd836c58f 100644 --- a/packages/material-ui-icons/lib/TwoKTwoTone.js +++ b/packages/material-ui-icons/lib/TwoKTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 3.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H8v1h3V15H6.5v-2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13.5H8v-1h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6.5v1.5h3v1h-2c-.55 0-1 .45-1 1V15H11v-1.5zm3.5-.75L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" -}, "2")], 'TwoKTwoTone'); \ No newline at end of file +}, "2")], 'TwoKTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoMp.js b/packages/material-ui-icons/lib/TwoMp.js index 4c1b060f67faed..397d37b9dd92c2 100644 --- a/packages/material-ui-icons/lib/TwoMp.js +++ b/packages/material-ui-icons/lib/TwoMp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2-9.5h-2v1h3v1.5H10V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm2 5H17v1.5h-1.5z" -}), 'TwoMp'); \ No newline at end of file +}), 'TwoMp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoMpOutlined.js b/packages/material-ui-icons/lib/TwoMpOutlined.js index 97a040ea2764bd..002226dfb70c4d 100644 --- a/packages/material-ui-icons/lib/TwoMpOutlined.js +++ b/packages/material-ui-icons/lib/TwoMpOutlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H10V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" -}, "2")], 'TwoMpOutlined'); \ No newline at end of file +}, "2")], 'TwoMpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoMpRounded.js b/packages/material-ui-icons/lib/TwoMpRounded.js index a073bc205b84cb..bb4a7026922fd7 100644 --- a/packages/material-ui-icons/lib/TwoMpRounded.js +++ b/packages/material-ui-icons/lib/TwoMpRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 6c0-.55.45-1 1-1h2V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H11c-.55 0-1-.45-1-1V9zm2.5 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" -}, "1")], 'TwoMpRounded'); \ No newline at end of file +}, "1")], 'TwoMpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoMpSharp.js b/packages/material-ui-icons/lib/TwoMpSharp.js index 30aaf4f474cb9c..4f0f4b380b9bf1 100644 --- a/packages/material-ui-icons/lib/TwoMpSharp.js +++ b/packages/material-ui-icons/lib/TwoMpSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 3v18h18V3H3zm7 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H10V8zm2.5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z" -}, "1")], 'TwoMpSharp'); \ No newline at end of file +}, "1")], 'TwoMpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoMpTwoTone.js b/packages/material-ui-icons/lib/TwoMpTwoTone.js index 9dc583c28d950b..99dc95210fa82f 100644 --- a/packages/material-ui-icons/lib/TwoMpTwoTone.js +++ b/packages/material-ui-icons/lib/TwoMpTwoTone.js @@ -1,15 +1,28 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h3v1.5H10V9zm-4 4.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 14h1.5v1.5H15z", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" -}, "3"), /*#__PURE__*/_jsx("path", { +}, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 10h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H10V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" -}, "4")], 'TwoMpTwoTone'); \ No newline at end of file +}, "4")], 'TwoMpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoWheeler.js b/packages/material-ui-icons/lib/TwoWheeler.js index 65ca39130853c1..da4452a206506b 100644 --- a/packages/material-ui-icons/lib/TwoWheeler.js +++ b/packages/material-ui-icons/lib/TwoWheeler.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm16 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'TwoWheeler'); \ No newline at end of file +}), 'TwoWheeler'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoWheelerOutlined.js b/packages/material-ui-icons/lib/TwoWheelerOutlined.js index 7e371ea252f8f0..7141e7827bfe94 100644 --- a/packages/material-ui-icons/lib/TwoWheelerOutlined.js +++ b/packages/material-ui-icons/lib/TwoWheelerOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'TwoWheelerOutlined'); \ No newline at end of file +}), 'TwoWheelerOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoWheelerRounded.js b/packages/material-ui-icons/lib/TwoWheelerRounded.js index 7a29b049c09fa3..3c9c5eb4c05389 100644 --- a/packages/material-ui-icons/lib/TwoWheelerRounded.js +++ b/packages/material-ui-icons/lib/TwoWheelerRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 11c-.18 0-.36.03-.53.05L17.41 9H19c.55 0 1-.45 1-1v-.38c0-.74-.78-1.23-1.45-.89l-2.28 1.14L13.7 5.3c-.18-.19-.44-.3-.7-.3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2.17c.27 0 .52.11.71.29L14.59 9h-3.35c-.16 0-.31.04-.45.11l-3.14 1.57c-.38.19-.85.12-1.15-.19l-1.2-1.2C5.11 9.11 4.85 9 4.59 9H1c-.55 0-1 .45-1 1s.45 1 1 1h3C1.48 11-.49 13.32.11 15.94c.33 1.45 1.5 2.62 2.95 2.95C5.68 19.49 8 17.52 8 15l1.41 1.41c.38.38.89.59 1.42.59h1.01c.72 0 1.38-.38 1.74-1.01l2.91-5.09 1.01 1.01c-1.13.91-1.76 2.41-1.38 4.05.34 1.44 1.51 2.61 2.95 2.94 2.61.59 4.93-1.39 4.93-3.9 0-2.21-1.79-4-4-4zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm16 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'TwoWheelerRounded'); \ No newline at end of file +}), 'TwoWheelerRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoWheelerSharp.js b/packages/material-ui-icons/lib/TwoWheelerSharp.js index fa59d7b1bed663..84e6f7ea024b1a 100644 --- a/packages/material-ui-icons/lib/TwoWheelerSharp.js +++ b/packages/material-ui-icons/lib/TwoWheelerSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'TwoWheelerSharp'); \ No newline at end of file +}), 'TwoWheelerSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/TwoWheelerTwoTone.js b/packages/material-ui-icons/lib/TwoWheelerTwoTone.js index 858a1ef8e85de3..ac9bbf7e96b8a1 100644 --- a/packages/material-ui-icons/lib/TwoWheelerTwoTone.js +++ b/packages/material-ui-icons/lib/TwoWheelerTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'TwoWheelerTwoTone'); \ No newline at end of file +}), 'TwoWheelerTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Umbrella.js b/packages/material-ui-icons/lib/Umbrella.js index 6120c54e486a8a..caf6da49348584 100644 --- a/packages/material-ui-icons/lib/Umbrella.js +++ b/packages/material-ui-icons/lib/Umbrella.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" -}), 'Umbrella'); \ No newline at end of file +}), 'Umbrella'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UmbrellaOutlined.js b/packages/material-ui-icons/lib/UmbrellaOutlined.js index 8e675f9d9901fc..6689ccab5733c6 100644 --- a/packages/material-ui-icons/lib/UmbrellaOutlined.js +++ b/packages/material-ui-icons/lib/UmbrellaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" -}), 'UmbrellaOutlined'); \ No newline at end of file +}), 'UmbrellaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UmbrellaRounded.js b/packages/material-ui-icons/lib/UmbrellaRounded.js index 474afda6e762ad..92cba95ad04ac3 100644 --- a/packages/material-ui-icons/lib/UmbrellaRounded.js +++ b/packages/material-ui-icons/lib/UmbrellaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.12 6.28-2.62.64L13 5.77V3.4c0-.26.22-.48.5-.48.23 0 .43.16.49.36.11.42.5.72.95.72.55 0 1-.45 1-1 0-.1-.02-.2-.05-.3-.3-.98-1.26-1.7-2.39-1.7C12.12 1 11 2.07 11 3.4v2.37L9.5 6.92l-2.62-.64c-.38-.09-.72.27-.6.64l4.77 14.39c.15.46.55.69.95.69s.8-.23.95-.69l4.77-14.39c.12-.37-.22-.73-.6-.64zM11 14.8 9.03 8.86l.92.23.76-.58.29-.22v6.51zm2 0V8.29l.28.22.76.58.92-.23L13 14.8z" -}), 'UmbrellaRounded'); \ No newline at end of file +}), 'UmbrellaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UmbrellaSharp.js b/packages/material-ui-icons/lib/UmbrellaSharp.js index 4786a88621d9cd..e022dc6c834775 100644 --- a/packages/material-ui-icons/lib/UmbrellaSharp.js +++ b/packages/material-ui-icons/lib/UmbrellaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" -}), 'UmbrellaSharp'); \ No newline at end of file +}), 'UmbrellaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UmbrellaTwoTone.js b/packages/material-ui-icons/lib/UmbrellaTwoTone.js index 09f8cb07e4d7a7..4f99efadcb2ab7 100644 --- a/packages/material-ui-icons/lib/UmbrellaTwoTone.js +++ b/packages/material-ui-icons/lib/UmbrellaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.28 8.5.76.58.92-.23L13 14.8V8.29l.28.21zm-4.25.36L11 14.8V8.29l-.28.21-.76.59-.93-.23z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" -}, "1")], 'UmbrellaTwoTone'); \ No newline at end of file +}, "1")], 'UmbrellaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Unarchive.js b/packages/material-ui-icons/lib/Unarchive.js index 53302635012d66..6bc0449b22e8f3 100644 --- a/packages/material-ui-icons/lib/Unarchive.js +++ b/packages/material-ui-icons/lib/Unarchive.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.55 5.22-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.15.55L3.46 5.22C3.17 5.57 3 6.01 3 6.5V19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.49-.17-.93-.45-1.28zM12 9.5l5.5 5.5H14v2h-4v-2H6.5L12 9.5zM5.12 5l.82-1h12l.93 1H5.12z" -}), 'Unarchive'); \ No newline at end of file +}), 'Unarchive'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnarchiveOutlined.js b/packages/material-ui-icons/lib/UnarchiveOutlined.js index cda08c3141ae2a..3d4bfa39ea1f65 100644 --- a/packages/material-ui-icons/lib/UnarchiveOutlined.js +++ b/packages/material-ui-icons/lib/UnarchiveOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM5 19V8h14v11H5zm3-5h2.55v3h2.9v-3H16l-4-4z" -}), 'UnarchiveOutlined'); \ No newline at end of file +}), 'UnarchiveOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnarchiveRounded.js b/packages/material-ui-icons/lib/UnarchiveRounded.js index 0554f17397bb33..ae8ded93d2f6ba 100644 --- a/packages/material-ui-icons/lib/UnarchiveRounded.js +++ b/packages/material-ui-icons/lib/UnarchiveRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.55 5.22-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.15.55L3.46 5.22C3.17 5.57 3 6.01 3 6.5V19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.49-.17-.93-.45-1.28zm-8.2 4.63L17.5 15H14v2h-4v-2H6.5l5.15-5.15c.19-.19.51-.19.7 0zM5.12 5l.82-1h12l.93 1H5.12z" -}), 'UnarchiveRounded'); \ No newline at end of file +}), 'UnarchiveRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnarchiveSharp.js b/packages/material-ui-icons/lib/UnarchiveSharp.js index 260d0d0294bfa7..ce6acf20736f5b 100644 --- a/packages/material-ui-icons/lib/UnarchiveSharp.js +++ b/packages/material-ui-icons/lib/UnarchiveSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM14 15v2h-4v-2H6.5L12 9.5l5.5 5.5H14zM5.12 5l.81-1h12l.94 1H5.12z" -}), 'UnarchiveSharp'); \ No newline at end of file +}), 'UnarchiveSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnarchiveTwoTone.js b/packages/material-ui-icons/lib/UnarchiveTwoTone.js index 21b8aa5c21fc44..012ccc876084cd 100644 --- a/packages/material-ui-icons/lib/UnarchiveTwoTone.js +++ b/packages/material-ui-icons/lib/UnarchiveTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h14V8H5v11zm7-9 4 4h-2.55v3h-2.91v-3H8l4-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM19 19H5V8h14v11zm-8.45-2h2.9v-3H16l-4-4-4 4h2.55z" -}, "1")], 'UnarchiveTwoTone'); \ No newline at end of file +}, "1")], 'UnarchiveTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Undo.js b/packages/material-ui-icons/lib/Undo.js index 6ce16b2dad6eac..1f7c4eb509a9cc 100644 --- a/packages/material-ui-icons/lib/Undo.js +++ b/packages/material-ui-icons/lib/Undo.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" -}), 'Undo'); \ No newline at end of file +}), 'Undo'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UndoOutlined.js b/packages/material-ui-icons/lib/UndoOutlined.js index cfa8d442b7c8f5..b001d1ebb99d19 100644 --- a/packages/material-ui-icons/lib/UndoOutlined.js +++ b/packages/material-ui-icons/lib/UndoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" -}), 'UndoOutlined'); \ No newline at end of file +}), 'UndoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UndoRounded.js b/packages/material-ui-icons/lib/UndoRounded.js index 0803b572923349..32480de5bec63c 100644 --- a/packages/material-ui-icons/lib/UndoRounded.js +++ b/packages/material-ui-icons/lib/UndoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L3.71 8.71C3.08 8.08 2 8.52 2 9.41V15c0 .55.45 1 1 1h5.59c.89 0 1.34-1.08.71-1.71l-1.91-1.91c1.39-1.16 3.16-1.88 5.12-1.88 3.16 0 5.89 1.84 7.19 4.5.27.56.91.84 1.5.64.71-.23 1.07-1.04.75-1.72C20.23 10.42 16.65 8 12.5 8z" -}), 'UndoRounded'); \ No newline at end of file +}), 'UndoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UndoSharp.js b/packages/material-ui-icons/lib/UndoSharp.js index f77fc9ab88c07f..16fd18f2952c3c 100644 --- a/packages/material-ui-icons/lib/UndoSharp.js +++ b/packages/material-ui-icons/lib/UndoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" -}), 'UndoSharp'); \ No newline at end of file +}), 'UndoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UndoTwoTone.js b/packages/material-ui-icons/lib/UndoTwoTone.js index 25a20e05e7e38b..8b8e911f102325 100644 --- a/packages/material-ui-icons/lib/UndoTwoTone.js +++ b/packages/material-ui-icons/lib/UndoTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" -}), 'UndoTwoTone'); \ No newline at end of file +}), 'UndoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldLess.js b/packages/material-ui-icons/lib/UnfoldLess.js index 25f2c739341ed9..159926b1275261 100644 --- a/packages/material-ui-icons/lib/UnfoldLess.js +++ b/packages/material-ui-icons/lib/UnfoldLess.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" -}), 'UnfoldLess'); \ No newline at end of file +}), 'UnfoldLess'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldLessOutlined.js b/packages/material-ui-icons/lib/UnfoldLessOutlined.js index d72dca6e303204..5233f546d213ac 100644 --- a/packages/material-ui-icons/lib/UnfoldLessOutlined.js +++ b/packages/material-ui-icons/lib/UnfoldLessOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" -}), 'UnfoldLessOutlined'); \ No newline at end of file +}), 'UnfoldLessOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldLessRounded.js b/packages/material-ui-icons/lib/UnfoldLessRounded.js index ac4c3fb4de741a..242a77f26fe596 100644 --- a/packages/material-ui-icons/lib/UnfoldLessRounded.js +++ b/packages/material-ui-icons/lib/UnfoldLessRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.12 19.3c.39.39 1.02.39 1.41 0L12 16.83l2.47 2.47c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-3.17-3.17a.9959.9959 0 0 0-1.41 0l-3.17 3.17c-.4.38-.4 1.02-.01 1.41zm7.76-14.6a.9959.9959 0 0 0-1.41 0L12 7.17 9.53 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42l3.17 3.17c.39.39 1.02.39 1.41 0l3.17-3.17c.4-.39.4-1.03.01-1.42z" -}), 'UnfoldLessRounded'); \ No newline at end of file +}), 'UnfoldLessRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldLessSharp.js b/packages/material-ui-icons/lib/UnfoldLessSharp.js index 40d2169cb13bf9..cd2cb6d98c73d0 100644 --- a/packages/material-ui-icons/lib/UnfoldLessSharp.js +++ b/packages/material-ui-icons/lib/UnfoldLessSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" -}), 'UnfoldLessSharp'); \ No newline at end of file +}), 'UnfoldLessSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldLessTwoTone.js b/packages/material-ui-icons/lib/UnfoldLessTwoTone.js index 7d7be5ac46d38e..180610d2154763 100644 --- a/packages/material-ui-icons/lib/UnfoldLessTwoTone.js +++ b/packages/material-ui-icons/lib/UnfoldLessTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" -}), 'UnfoldLessTwoTone'); \ No newline at end of file +}), 'UnfoldLessTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldMore.js b/packages/material-ui-icons/lib/UnfoldMore.js index f189e926cc5298..0a1fa54abfd634 100644 --- a/packages/material-ui-icons/lib/UnfoldMore.js +++ b/packages/material-ui-icons/lib/UnfoldMore.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" -}), 'UnfoldMore'); \ No newline at end of file +}), 'UnfoldMore'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldMoreOutlined.js b/packages/material-ui-icons/lib/UnfoldMoreOutlined.js index b0214cc23321f6..8c0b037a7558d1 100644 --- a/packages/material-ui-icons/lib/UnfoldMoreOutlined.js +++ b/packages/material-ui-icons/lib/UnfoldMoreOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" -}), 'UnfoldMoreOutlined'); \ No newline at end of file +}), 'UnfoldMoreOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldMoreRounded.js b/packages/material-ui-icons/lib/UnfoldMoreRounded.js index 84b8943076ebac..96378a0bad4034 100644 --- a/packages/material-ui-icons/lib/UnfoldMoreRounded.js +++ b/packages/material-ui-icons/lib/UnfoldMoreRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.83 2.46 2.46c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 3.7a.9959.9959 0 0 0-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 5.83zm0 12.34-2.46-2.46a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L12 18.17z" -}), 'UnfoldMoreRounded'); \ No newline at end of file +}), 'UnfoldMoreRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldMoreSharp.js b/packages/material-ui-icons/lib/UnfoldMoreSharp.js index 3b6793fed2940a..e6c950ed262935 100644 --- a/packages/material-ui-icons/lib/UnfoldMoreSharp.js +++ b/packages/material-ui-icons/lib/UnfoldMoreSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" -}), 'UnfoldMoreSharp'); \ No newline at end of file +}), 'UnfoldMoreSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnfoldMoreTwoTone.js b/packages/material-ui-icons/lib/UnfoldMoreTwoTone.js index 9f9b7955616f8a..e331aa13c7de18 100644 --- a/packages/material-ui-icons/lib/UnfoldMoreTwoTone.js +++ b/packages/material-ui-icons/lib/UnfoldMoreTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" -}), 'UnfoldMoreTwoTone'); \ No newline at end of file +}), 'UnfoldMoreTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Unpublished.js b/packages/material-ui-icons/lib/Unpublished.js index df8ba74a634092..e880757799159f 100644 --- a/packages/material-ui-icons/lib/Unpublished.js +++ b/packages/material-ui-icons/lib/Unpublished.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42zm-10.6-4.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18 1.41 1.41-1.59 1.59zm3-5.84-7.1-7.1C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51L15 12.17l2.65-2.65-1.41-1.41-2.65 2.65z" -}), 'Unpublished'); \ No newline at end of file +}), 'Unpublished'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnpublishedOutlined.js b/packages/material-ui-icons/lib/UnpublishedOutlined.js index 109d09ef234532..a94117f27833fe 100644 --- a/packages/material-ui-icons/lib/UnpublishedOutlined.js +++ b/packages/material-ui-icons/lib/UnpublishedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12zm9.72 4.41-1.41-1.41-2.65 2.65 1.41 1.41 2.65-2.65zm2.12 13.08-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm-3.72-3.73L12.18 15l-1.59 1.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18-5.65-5.65C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12z" -}), 'UnpublishedOutlined'); \ No newline at end of file +}), 'UnpublishedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnpublishedRounded.js b/packages/material-ui-icons/lib/UnpublishedRounded.js index bd5c25cfde1f43..898677085299db 100644 --- a/packages/material-ui-icons/lib/UnpublishedRounded.js +++ b/packages/material-ui-icons/lib/UnpublishedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.56 1.56c-1.25 1.88-1.88 4.21-1.59 6.7.53 4.54 4.21 8.22 8.74 8.74 2.49.29 4.81-.34 6.7-1.59l1.56 1.56c.39.39 1.02.39 1.41 0 .4-.38.4-1.01.01-1.4zm-10.61-4.6-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12.18-.18L12.17 15l-.88.88c-.39.4-1.02.4-1.41.01zm3.71-5.13-7.1-7.1c1.88-1.25 4.21-1.88 6.7-1.59 4.54.53 8.22 4.21 8.74 8.74.29 2.49-.34 4.82-1.59 6.7L15 12.17l1.94-1.94c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-1.94 1.94z" -}), 'UnpublishedRounded'); \ No newline at end of file +}), 'UnpublishedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnpublishedSharp.js b/packages/material-ui-icons/lib/UnpublishedSharp.js index c1faa54e7ae076..f0181d3e996289 100644 --- a/packages/material-ui-icons/lib/UnpublishedSharp.js +++ b/packages/material-ui-icons/lib/UnpublishedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42zm-10.6-4.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18 1.41 1.41-1.59 1.59zm3-5.84-7.1-7.1C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51L15 12.17l2.65-2.65-1.41-1.41-2.65 2.65z" -}), 'UnpublishedSharp'); \ No newline at end of file +}), 'UnpublishedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnpublishedTwoTone.js b/packages/material-ui-icons/lib/UnpublishedTwoTone.js index 16bdec1b78dd9d..b979499521149c 100644 --- a/packages/material-ui-icons/lib/UnpublishedTwoTone.js +++ b/packages/material-ui-icons/lib/UnpublishedTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13.59 10.76 2.65-2.65 1.41 1.41L15 12.17l3.88 3.88C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12l5.65 5.64zm4.07-1.23-1.41-1.41-2.65 2.65 1.41 1.41 2.65-2.65zm-1.6 9.35L12.18 15l-1.59 1.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18-5.65-5.65C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12zm9.72 4.41-1.41-1.41-2.65 2.65 1.41 1.41 2.65-2.65zm2.12 13.08-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm-3.72-3.73L12.18 15l-1.59 1.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18-5.65-5.65C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12z" -}, "1")], 'UnpublishedTwoTone'); \ No newline at end of file +}, "1")], 'UnpublishedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Unsubscribe.js b/packages/material-ui-icons/lib/Unsubscribe.js index fab112b411e1fa..879c5565147373 100644 --- a/packages/material-ui-icons/lib/Unsubscribe.js +++ b/packages/material-ui-icons/lib/Unsubscribe.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.76.26 2.5.69V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55zM12 10.5 5 7V5l7 3.5L19 5v2l-7 3.5z" -}), 'Unsubscribe'); \ No newline at end of file +}), 'Unsubscribe'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnsubscribeOutlined.js b/packages/material-ui-icons/lib/UnsubscribeOutlined.js index 022a287c471332..8e4adb93014ec1 100644 --- a/packages/material-ui-icons/lib/UnsubscribeOutlined.js +++ b/packages/material-ui-icons/lib/UnsubscribeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z" -}), 'UnsubscribeOutlined'); \ No newline at end of file +}), 'UnsubscribeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnsubscribeRounded.js b/packages/material-ui-icons/lib/UnsubscribeRounded.js index a9f3188981f5d7..b421e5dcaf11a8 100644 --- a/packages/material-ui-icons/lib/UnsubscribeRounded.js +++ b/packages/material-ui-icons/lib/UnsubscribeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 11.5c.92 0 1.75.26 2.49.69V5c0-1.1-.89-2-1.99-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5zm-5.61-1.45c-.56.28-1.23.28-1.79 0l-5.61-2.8c-.3-.15-.49-.46-.49-.8 0-.66.7-1.1 1.29-.8L12 8.5l5.71-2.85c.59-.3 1.29.13 1.29.8 0 .34-.19.65-.49.8l-5.62 2.8zM18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 3.5c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5z" -}), 'UnsubscribeRounded'); \ No newline at end of file +}), 'UnsubscribeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnsubscribeSharp.js b/packages/material-ui-icons/lib/UnsubscribeSharp.js index 3229709576278a..a31660f2ebaf15 100644 --- a/packages/material-ui-icons/lib/UnsubscribeSharp.js +++ b/packages/material-ui-icons/lib/UnsubscribeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.75.26 2.49.69V3H3v14h10.55zM12 10.5 5 7V5l7 3.5L19 5v2l-7 3.5z" -}), 'UnsubscribeSharp'); \ No newline at end of file +}), 'UnsubscribeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UnsubscribeTwoTone.js b/packages/material-ui-icons/lib/UnsubscribeTwoTone.js index 9950d493eea05d..59dce808682015 100644 --- a/packages/material-ui-icons/lib/UnsubscribeTwoTone.js +++ b/packages/material-ui-icons/lib/UnsubscribeTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.99 5H5l7 3.5zm.01 8.05V7l-7 3.5L5 7v8h10.35c.56-1.18 1.76-2 3.15-2 .17 0 .34.03.5.05z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z" -}, "1")], 'UnsubscribeTwoTone'); \ No newline at end of file +}, "1")], 'UnsubscribeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Upcoming.js b/packages/material-ui-icons/lib/Upcoming.js index 22b31a904bcc69..dd56fba81ac8f8 100644 --- a/packages/material-ui-icons/lib/Upcoming.js +++ b/packages/material-ui-icons/lib/Upcoming.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.16 7.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm-4.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM20 12h-5c0 1.66-1.34 3-3 3s-3-1.34-3-3H4c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" -}), 'Upcoming'); \ No newline at end of file +}), 'Upcoming'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpcomingOutlined.js b/packages/material-ui-icons/lib/UpcomingOutlined.js index e9ed04f553b806..93cce2da782b5b 100644 --- a/packages/material-ui-icons/lib/UpcomingOutlined.js +++ b/packages/material-ui-icons/lib/UpcomingOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.6 10.81 16.19 9.4l3.56-3.55 1.41 1.41c-.11.03-3.56 3.55-3.56 3.55zM13 3h-2v5h2V3zm-6.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM20 14h-3.42c-.77 1.76-2.54 3-4.58 3s-3.81-1.24-4.58-3H4v5h16v-5m0-2c1.1 0 2 .9 2 2v5c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-5c0-1.1.9-2 2-2h5c0 1.66 1.34 3 3 3s3-1.34 3-3h5z" -}), 'UpcomingOutlined'); \ No newline at end of file +}), 'UpcomingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpcomingRounded.js b/packages/material-ui-icons/lib/UpcomingRounded.js index 1c330c80073d45..6252970ba38d52 100644 --- a/packages/material-ui-icons/lib/UpcomingRounded.js +++ b/packages/material-ui-icons/lib/UpcomingRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.45 6.55c-.38-.38-1.01-.38-1.39 0L16.89 8.7c-.39.38-.39 1.01 0 1.39l.01.01c.39.39 1.01.39 1.4 0 .62-.63 1.52-1.54 2.15-2.17.38-.38.38-1 0-1.38zM12.02 3h-.03c-.55 0-.99.44-.99.98v3.03c0 .55.44.99.98.99h.03c.55 0 .99-.44.99-.98V3.98c0-.54-.44-.98-.98-.98zM7.1 10.11l.01-.01c.38-.38.38-1.01 0-1.39L4.96 6.54c-.38-.39-1.01-.39-1.39 0l-.02.01c-.39.39-.39 1.01 0 1.39.63.62 1.53 1.54 2.15 2.17.39.38 1.02.38 1.4 0zM12 15c-1.24 0-2.31-.75-2.76-1.83-.32-.74-1.1-1.17-1.9-1.17H4c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2h-3.34c-.8 0-1.58.43-1.9 1.17C14.31 14.25 13.24 15 12 15" -}), 'UpcomingRounded'); \ No newline at end of file +}), 'UpcomingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpcomingSharp.js b/packages/material-ui-icons/lib/UpcomingSharp.js index d44a6a46723f60..95806c32323c9b 100644 --- a/packages/material-ui-icons/lib/UpcomingSharp.js +++ b/packages/material-ui-icons/lib/UpcomingSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.16 7.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm-4.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM22 12h-7c0 1.66-1.34 3-3 3s-3-1.34-3-3H2v9h20v-9z" -}), 'UpcomingSharp'); \ No newline at end of file +}), 'UpcomingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpcomingTwoTone.js b/packages/material-ui-icons/lib/UpcomingTwoTone.js index 1ac3421627b142..a42ea52530b1ad 100644 --- a/packages/material-ui-icons/lib/UpcomingTwoTone.js +++ b/packages/material-ui-icons/lib/UpcomingTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 17c-2.04 0-3.81-1.24-4.58-3H4v5h16v-5h-3.42c-.77 1.76-2.54 3-4.58 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21.16 7.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm9 9h-5c0 1.66-1.34 3-3 3s-3-1.34-3-3H4c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm0 7H4v-5h3.42c.77 1.76 2.54 3 4.58 3s3.81-1.24 4.58-3H20v5zM6.4 10.81 7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55z" -}, "1")], 'UpcomingTwoTone'); \ No newline at end of file +}, "1")], 'UpcomingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Update.js b/packages/material-ui-icons/lib/Update.js index a07be114c54753..848401a888495f 100644 --- a/packages/material-ui-icons/lib/Update.js +++ b/packages/material-ui-icons/lib/Update.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-.1-2.73 2.71-2.73 7.08 0 9.79s7.15 2.71 9.88 0C18.32 15.65 19 14.08 19 12.1h2c0 1.98-.88 4.55-2.64 6.29-3.51 3.48-9.21 3.48-12.72 0-3.5-3.47-3.53-9.11-.02-12.58s9.14-3.47 12.65 0L21 3v7.12zM12.5 8v4.25l3.5 2.08-.72 1.21L11 13V8h1.5z" -}), 'Update'); \ No newline at end of file +}), 'Update'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateDisabled.js b/packages/material-ui-icons/lib/UpdateDisabled.js index 656bed0b835b08..362f457d6ee992 100644 --- a/packages/material-ui-icons/lib/UpdateDisabled.js +++ b/packages/material-ui-icons/lib/UpdateDisabled.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.67 5.84 7.22 4.39C8.6 3.51 10.24 3 12 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z" -}), 'UpdateDisabled'); \ No newline at end of file +}), 'UpdateDisabled'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateDisabledOutlined.js b/packages/material-ui-icons/lib/UpdateDisabledOutlined.js index 9d65658c05d86e..5be7ba26973e32 100644 --- a/packages/material-ui-icons/lib/UpdateDisabledOutlined.js +++ b/packages/material-ui-icons/lib/UpdateDisabledOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.94 13c-.15 1.38-.62 2.67-1.33 3.79l-1.47-1.47c.38-.71.65-1.49.77-2.32h2.03zM8.67 5.84C9.66 5.31 10.8 5 12 5c2.37 0 4.47 1.19 5.74 3H15v2h6V4h-2v2.36C17.35 4.32 14.83 3 12 3c-1.76 0-3.4.51-4.78 1.39l1.45 1.45zM11 7v1.17l2 2V7h-2zm8.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85z" -}), 'UpdateDisabledOutlined'); \ No newline at end of file +}), 'UpdateDisabledOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateDisabledRounded.js b/packages/material-ui-icons/lib/UpdateDisabledRounded.js index 12b46b546c2a60..30e1d4effc9c82 100644 --- a/packages/material-ui-icons/lib/UpdateDisabledRounded.js +++ b/packages/material-ui-icons/lib/UpdateDisabledRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.31 2.31C3.57 8.56 3.05 10.09 3 11.74 2.86 16.83 6.94 21 12 21c1.76 0 3.39-.52 4.78-1.39l2.29 2.29c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zm-9.77-1.6c-2.78-.49-5.04-2.71-5.58-5.47-.34-1.72-.03-3.36.72-4.73l9.46 9.46c-1.34.72-2.92 1.03-4.6.74zM13 8v2.17l-2-2V8c0-.55.45-1 1-1s1 .45 1 1zm7.72 6.23c-.23.92-.61 1.77-1.1 2.55l-1.47-1.47c.27-.5.49-1.03.63-1.59.11-.42.51-.72.95-.72.65 0 1.15.61.99 1.23zM7.24 4.41c1.46-.93 3.18-1.45 5-1.41 2.65.07 5 1.28 6.6 3.16l1.31-1.31c.31-.31.85-.09.85.36V9.5c0 .28-.22.5-.5.5h-4.29c-.45 0-.67-.54-.35-.85l1.55-1.55C16.12 6.02 14.18 5 12 5c-1.2 0-2.33.31-3.32.85L7.24 4.41z" -}), 'UpdateDisabledRounded'); \ No newline at end of file +}), 'UpdateDisabledRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateDisabledSharp.js b/packages/material-ui-icons/lib/UpdateDisabledSharp.js index 3e69799c2ecbe7..93dba9b1596f4e 100644 --- a/packages/material-ui-icons/lib/UpdateDisabledSharp.js +++ b/packages/material-ui-icons/lib/UpdateDisabledSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.67 5.84 7.22 4.39C8.6 3.51 10.24 3 12 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z" -}), 'UpdateDisabledSharp'); \ No newline at end of file +}), 'UpdateDisabledSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateDisabledTwoTone.js b/packages/material-ui-icons/lib/UpdateDisabledTwoTone.js index defc077accc843..5d88110ba6554f 100644 --- a/packages/material-ui-icons/lib/UpdateDisabledTwoTone.js +++ b/packages/material-ui-icons/lib/UpdateDisabledTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.67 5.84 7.22 4.39C8.6 3.51 10.24 3 12 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z" -}), 'UpdateDisabledTwoTone'); \ No newline at end of file +}), 'UpdateDisabledTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateOutlined.js b/packages/material-ui-icons/lib/UpdateOutlined.js index ab78cef64e8fe0..dd2949b33552ba 100644 --- a/packages/material-ui-icons/lib/UpdateOutlined.js +++ b/packages/material-ui-icons/lib/UpdateOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64C16.74 4.01 14.49 3 12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z" -}), 'UpdateOutlined'); \ No newline at end of file +}), 'UpdateOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateRounded.js b/packages/material-ui-icons/lib/UpdateRounded.js index ec1e323f8bd80a..3c7b76ab392a0d 100644 --- a/packages/material-ui-icons/lib/UpdateRounded.js +++ b/packages/material-ui-icons/lib/UpdateRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.1-.82-.26-1.03l-2.87-1.71v-3.4c-.01-.4-.35-.74-.76-.74s-.75.34-.75.75zm10 .75V4.21c0-.45-.54-.67-.85-.35l-1.78 1.78c-1.81-1.81-4.39-2.85-7.21-2.6-4.19.38-7.64 3.75-8.1 7.94C2.46 16.4 6.69 21 12 21c4.59 0 8.38-3.44 8.93-7.88.07-.6-.4-1.12-1-1.12-.5 0-.92.37-.98.86-.43 3.49-3.44 6.19-7.05 6.14-3.71-.05-6.84-3.18-6.9-6.9C4.94 8.2 8.11 5 12 5c1.93 0 3.68.79 4.95 2.05l-2.09 2.09c-.32.32-.1.86.35.86h5.29c.28 0 .5-.22.5-.5z" -}), 'UpdateRounded'); \ No newline at end of file +}), 'UpdateRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateSharp.js b/packages/material-ui-icons/lib/UpdateSharp.js index 16164a68fc13b7..2b844b1f7b9658 100644 --- a/packages/material-ui-icons/lib/UpdateSharp.js +++ b/packages/material-ui-icons/lib/UpdateSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64C16.74 4.01 14.49 3 12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z" -}), 'UpdateSharp'); \ No newline at end of file +}), 'UpdateSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpdateTwoTone.js b/packages/material-ui-icons/lib/UpdateTwoTone.js index 8b2574cb03a1a8..d36725c8f8250c 100644 --- a/packages/material-ui-icons/lib/UpdateTwoTone.js +++ b/packages/material-ui-icons/lib/UpdateTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64C16.74 4.01 14.49 3 12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z" -}), 'UpdateTwoTone'); \ No newline at end of file +}), 'UpdateTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Upgrade.js b/packages/material-ui-icons/lib/Upgrade.js index 654ca0efc6df9a..9cc2d8457a8efc 100644 --- a/packages/material-ui-icons/lib/Upgrade.js +++ b/packages/material-ui-icons/lib/Upgrade.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" -}), 'Upgrade'); \ No newline at end of file +}), 'Upgrade'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpgradeOutlined.js b/packages/material-ui-icons/lib/UpgradeOutlined.js index c1de755fa9400d..b2e39048465960 100644 --- a/packages/material-ui-icons/lib/UpgradeOutlined.js +++ b/packages/material-ui-icons/lib/UpgradeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" -}), 'UpgradeOutlined'); \ No newline at end of file +}), 'UpgradeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpgradeRounded.js b/packages/material-ui-icons/lib/UpgradeRounded.js index f45878db1fbd6b..88b52f4b294f0a 100644 --- a/packages/material-ui-icons/lib/UpgradeRounded.js +++ b/packages/material-ui-icons/lib/UpgradeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1zM11 7.99V15c0 .55.45 1 1 1s1-.45 1-1V7.99h1.79c.45 0 .67-.54.35-.85l-2.79-2.78c-.2-.19-.51-.19-.71 0L8.86 7.14c-.32.31-.1.85.35.85H11z" -}), 'UpgradeRounded'); \ No newline at end of file +}), 'UpgradeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpgradeSharp.js b/packages/material-ui-icons/lib/UpgradeSharp.js index ff9e9f6e501e0a..ad5ca0cd50efe6 100644 --- a/packages/material-ui-icons/lib/UpgradeSharp.js +++ b/packages/material-ui-icons/lib/UpgradeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" -}), 'UpgradeSharp'); \ No newline at end of file +}), 'UpgradeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UpgradeTwoTone.js b/packages/material-ui-icons/lib/UpgradeTwoTone.js index beb6cb4f0213df..4e388b467c47ca 100644 --- a/packages/material-ui-icons/lib/UpgradeTwoTone.js +++ b/packages/material-ui-icons/lib/UpgradeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" -}), 'UpgradeTwoTone'); \ No newline at end of file +}), 'UpgradeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Upload.js b/packages/material-ui-icons/lib/Upload.js index e1291e0ea73507..ffb952338724c4 100644 --- a/packages/material-ui-icons/lib/Upload.js +++ b/packages/material-ui-icons/lib/Upload.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 20h14v-2H5v2zm0-10h4v6h6v-6h4l-7-7-7 7z" -}), 'Upload'); \ No newline at end of file +}), 'Upload'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadFile.js b/packages/material-ui-icons/lib/UploadFile.js index 5dadbf946f6c47..ac9cfcb25a99d0 100644 --- a/packages/material-ui-icons/lib/UploadFile.js +++ b/packages/material-ui-icons/lib/UploadFile.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 15.01l1.41 1.41L11 14.84V19h2v-4.16l1.59 1.59L16 15.01 12.01 11z" -}), 'UploadFile'); \ No newline at end of file +}), 'UploadFile'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadFileOutlined.js b/packages/material-ui-icons/lib/UploadFileOutlined.js index 7e51fc7e3c8829..da76e2b8a7e12e 100644 --- a/packages/material-ui-icons/lib/UploadFileOutlined.js +++ b/packages/material-ui-icons/lib/UploadFileOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 15.01l1.41 1.41L11 14.84V19h2v-4.16l1.59 1.59L16 15.01 12.01 11 8 15.01z" -}), 'UploadFileOutlined'); \ No newline at end of file +}), 'UploadFileOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadFileRounded.js b/packages/material-ui-icons/lib/UploadFileRounded.js index 54447773df9f3a..ab60376c8743e1 100644 --- a/packages/material-ui-icons/lib/UploadFileRounded.js +++ b/packages/material-ui-icons/lib/UploadFileRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM14.8 15H13v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H9.21c-.45 0-.67-.54-.35-.85l2.8-2.79c.2-.19.51-.19.71 0l2.79 2.79c.3.31.08.85-.36.85zM14 9c-.55 0-1-.45-1-1V3.5L18.5 9H14z" -}), 'UploadFileRounded'); \ No newline at end of file +}), 'UploadFileRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadFileSharp.js b/packages/material-ui-icons/lib/UploadFileSharp.js index 0bd45e2bc29c39..5506efa5b266be 100644 --- a/packages/material-ui-icons/lib/UploadFileSharp.js +++ b/packages/material-ui-icons/lib/UploadFileSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H4v20h16V8l-6-6zm-1 13v4h-2v-4H8l4.01-4L16 15h-3zm0-6V3.5L18.5 9H13z" -}), 'UploadFileSharp'); \ No newline at end of file +}), 'UploadFileSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadFileTwoTone.js b/packages/material-ui-icons/lib/UploadFileTwoTone.js index ad5012739b5fff..629dbd8237e49b 100644 --- a/packages/material-ui-icons/lib/UploadFileTwoTone.js +++ b/packages/material-ui-icons/lib/UploadFileTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 4H6v16h12V9h-5V4zm3 11h-3v4h-2v-4H8l4.01-4L16 15z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 15h3v4h2v-4h3l-3.99-4z" -}, "2")], 'UploadFileTwoTone'); \ No newline at end of file +}, "2")], 'UploadFileTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadOutlined.js b/packages/material-ui-icons/lib/UploadOutlined.js index dbdcd0aebf6991..fc255101df60c1 100644 --- a/packages/material-ui-icons/lib/UploadOutlined.js +++ b/packages/material-ui-icons/lib/UploadOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6v-6h4l-7-7-7 7h4v6zm3-10.17L14.17 8H13v6h-2V8H9.83L12 5.83zM5 18h14v2H5z" -}), 'UploadOutlined'); \ No newline at end of file +}), 'UploadOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadRounded.js b/packages/material-ui-icons/lib/UploadRounded.js index 0b77d2f972e310..f25ad026e94ad6 100644 --- a/packages/material-ui-icons/lib/UploadRounded.js +++ b/packages/material-ui-icons/lib/UploadRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 16h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.71 3.7a.9959.9959 0 0 0-1.41 0L6.71 8.29c-.63.63-.19 1.71.7 1.71H9v5c0 .55.45 1 1 1zm-4 2h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1z" -}), 'UploadRounded'); \ No newline at end of file +}), 'UploadRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadSharp.js b/packages/material-ui-icons/lib/UploadSharp.js index 59b5931850851d..f48d1e68acc154 100644 --- a/packages/material-ui-icons/lib/UploadSharp.js +++ b/packages/material-ui-icons/lib/UploadSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z" -}), 'UploadSharp'); \ No newline at end of file +}), 'UploadSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UploadTwoTone.js b/packages/material-ui-icons/lib/UploadTwoTone.js index 7559063c88034e..200c90931ac8a6 100644 --- a/packages/material-ui-icons/lib/UploadTwoTone.js +++ b/packages/material-ui-icons/lib/UploadTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.83 8H11v6h2V8h1.17L12 5.83z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 3-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2V8H9.83L12 5.83 14.17 8H13zM5 18h14v2H5z" -}, "1")], 'UploadTwoTone'); \ No newline at end of file +}, "1")], 'UploadTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Usb.js b/packages/material-ui-icons/lib/Usb.js index 07c764f8f1ac80..09c8cfe99235d8 100644 --- a/packages/material-ui-icons/lib/Usb.js +++ b/packages/material-ui-icons/lib/Usb.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2-1.21 0-2.2.99-2.2 2.2 0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2 1.21 0 2.2-.98 2.2-2.2 0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" -}), 'Usb'); \ No newline at end of file +}), 'Usb'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbOff.js b/packages/material-ui-icons/lib/UsbOff.js index 9a46e767aaac91..aeb8b1ca35d553 100644 --- a/packages/material-ui-icons/lib/UsbOff.js +++ b/packages/material-ui-icons/lib/UsbOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" -}), 'UsbOff'); \ No newline at end of file +}), 'UsbOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbOffOutlined.js b/packages/material-ui-icons/lib/UsbOffOutlined.js index 4cca60ccae98a0..206832b0624f9f 100644 --- a/packages/material-ui-icons/lib/UsbOffOutlined.js +++ b/packages/material-ui-icons/lib/UsbOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" -}), 'UsbOffOutlined'); \ No newline at end of file +}), 'UsbOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbOffRounded.js b/packages/material-ui-icons/lib/UsbOffRounded.js index e19d82ae7090aa..6d47259dc05df8 100644 --- a/packages/material-ui-icons/lib/UsbOffRounded.js +++ b/packages/material-ui-icons/lib/UsbOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.6 5.2 2-2.67c.2-.27.6-.27.8 0l2 2.67c.25.33.01.8-.4.8h-1v4.17l-2-2V6h-1c-.41 0-.65-.47-.4-.8zm5.9 6.8h.5v1.17l1.77 1.77c.14-.28.23-.6.23-.94v-2h.5c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-3c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5zm4.99 9.9c-.39.39-1.02.39-1.41 0l-5.9-5.9H13v2.28c.6.34 1 .98 1 1.72 0 1.2-1.07 2.16-2.31 1.98-.88-.13-1.59-.88-1.68-1.77-.08-.83.33-1.55.99-1.93V16H8c-1.1 0-2-.9-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.5L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11 13.83l-2.51-2.51c-.14.16-.31.29-.49.4V14h3v-.17z" -}), 'UsbOffRounded'); \ No newline at end of file +}), 'UsbOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbOffSharp.js b/packages/material-ui-icons/lib/UsbOffSharp.js index 9a922fd426b0df..06c4d8d403adf9 100644 --- a/packages/material-ui-icons/lib/UsbOffSharp.js +++ b/packages/material-ui-icons/lib/UsbOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" -}), 'UsbOffSharp'); \ No newline at end of file +}), 'UsbOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbOffTwoTone.js b/packages/material-ui-icons/lib/UsbOffTwoTone.js index 6602c0c2e5ba41..d256dfac585694 100644 --- a/packages/material-ui-icons/lib/UsbOffTwoTone.js +++ b/packages/material-ui-icons/lib/UsbOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" -}), 'UsbOffTwoTone'); \ No newline at end of file +}), 'UsbOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbOutlined.js b/packages/material-ui-icons/lib/UsbOutlined.js index aa8c3ed91ddf77..d73d5e4a60b534 100644 --- a/packages/material-ui-icons/lib/UsbOutlined.js +++ b/packages/material-ui-icons/lib/UsbOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" -}), 'UsbOutlined'); \ No newline at end of file +}), 'UsbOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbRounded.js b/packages/material-ui-icons/lib/UsbRounded.js index d1d608356b4014..c7fa7aa63032c7 100644 --- a/packages/material-ui-icons/lib/UsbRounded.js +++ b/packages/material-ui-icons/lib/UsbRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 7h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1v2h-3V5h1c.41 0 .65-.47.4-.8l-2-2.67c-.2-.27-.6-.27-.8 0l-2 2.67c-.25.33-.01.8.4.8h1v8H8v-2.07c.83-.44 1.38-1.36 1.14-2.43-.17-.77-.77-1.4-1.52-1.61C6.15 6.48 4.8 7.59 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.1.9 2 2 2h3v3.05c-.86.45-1.39 1.42-1.13 2.49.18.75.79 1.38 1.54 1.58 1.46.39 2.8-.7 2.8-2.12 0-.85-.49-1.58-1.2-1.95V15h3c1.1 0 2-.9 2-2v-2c.55 0 1-.45 1-1V8C19 7.45 18.55 7 18 7z" -}), 'UsbRounded'); \ No newline at end of file +}), 'UsbRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbSharp.js b/packages/material-ui-icons/lib/UsbSharp.js index b085ca1b7cd4d5..bf807c5b91ca5f 100644 --- a/packages/material-ui-icons/lib/UsbSharp.js +++ b/packages/material-ui-icons/lib/UsbSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" -}), 'UsbSharp'); \ No newline at end of file +}), 'UsbSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/UsbTwoTone.js b/packages/material-ui-icons/lib/UsbTwoTone.js index f5d0495070360a..a61f5f1e0be24c 100644 --- a/packages/material-ui-icons/lib/UsbTwoTone.js +++ b/packages/material-ui-icons/lib/UsbTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" -}), 'UsbTwoTone'); \ No newline at end of file +}), 'UsbTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Verified.js b/packages/material-ui-icons/lib/Verified.js index 67193b0e6ee47a..42e71e74016833 100644 --- a/packages/material-ui-icons/lib/Verified.js +++ b/packages/material-ui-icons/lib/Verified.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zm-12.91 4.72-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z" -}), 'Verified'); \ No newline at end of file +}), 'Verified'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedOutlined.js b/packages/material-ui-icons/lib/VerifiedOutlined.js index 32af5f4e87d122..381529ff576f55 100644 --- a/packages/material-ui-icons/lib/VerifiedOutlined.js +++ b/packages/material-ui-icons/lib/VerifiedOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11.99 20.56 9.2l.34-3.69-3.61-.82L15.4 1.5 12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 11.99l2.44 2.79-.34 3.7 3.61.82 1.89 3.2 3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69 2.44-2.8zm-3.95 1.48-.56.65.08.85.18 1.95-1.9.43-.84.19-.44.74-.99 1.68-1.78-.77-.8-.34-.79.34-1.78.77-.99-1.67-.44-.74-.84-.19-1.9-.43.18-1.96.08-.85-.56-.65L3.67 12l1.29-1.48.56-.65-.09-.86-.18-1.94 1.9-.43.84-.19.44-.74.99-1.68 1.78.77.8.34.79-.34 1.78-.77.99 1.68.44.74.84.19 1.9.43-.18 1.95-.08.85.56.65 1.29 1.47-1.28 1.48z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.09 13.75-2.32-2.33-1.48 1.49 3.8 3.81 7.34-7.36-1.48-1.49z" -}, "1")], 'VerifiedOutlined'); \ No newline at end of file +}, "1")], 'VerifiedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedRounded.js b/packages/material-ui-icons/lib/VerifiedRounded.js index e54eda7a9bc4f5..113ca6529cd889 100644 --- a/packages/material-ui-icons/lib/VerifiedRounded.js +++ b/packages/material-ui-icons/lib/VerifiedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zM9.38 16.01 7 13.61a.9959.9959 0 0 1 0-1.41l.07-.07c.39-.39 1.03-.39 1.42 0l1.61 1.62 5.15-5.16c.39-.39 1.03-.39 1.42 0l.07.07c.39.39.39 1.02 0 1.41l-5.92 5.94c-.41.39-1.04.39-1.44 0z" -}), 'VerifiedRounded'); \ No newline at end of file +}), 'VerifiedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedSharp.js b/packages/material-ui-icons/lib/VerifiedSharp.js index bada90f9ea61b2..f346e9c14bc3de 100644 --- a/packages/material-ui-icons/lib/VerifiedSharp.js +++ b/packages/material-ui-icons/lib/VerifiedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zm-12.91 4.72-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z" -}), 'VerifiedSharp'); \ No newline at end of file +}), 'VerifiedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedTwoTone.js b/packages/material-ui-icons/lib/VerifiedTwoTone.js index 9446720a0f0bad..48618afd44e97a 100644 --- a/packages/material-ui-icons/lib/VerifiedTwoTone.js +++ b/packages/material-ui-icons/lib/VerifiedTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.49 9.88.08-.85.18-1.95-1.9-.43-.84-.19-.44-.74-.99-1.68-1.79.76-.79.34-.79-.34-1.79-.77-.99 1.68-.44.74-.84.19-1.9.43.18 1.94.08.85-.56.65-1.29 1.48 1.29 1.47.56.65-.08.85-.18 1.96 1.9.43.84.19.44.74.99 1.67 1.78-.77.8-.33.79.34 1.78.77.99-1.68.44-.74.84-.19 1.9-.43-.18-1.95-.08-.85.56-.65L20.33 12l-1.29-1.47-.55-.65zm-8.4 6.84-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 11.99 20.56 9.2l.34-3.69-3.61-.82L15.4 1.5 12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 11.99l2.44 2.79-.34 3.7 3.61.82 1.89 3.2 3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69 2.44-2.8zm-3.95 1.48-.56.65.08.85.18 1.95-1.9.43-.84.19-.44.74-.99 1.68-1.78-.77-.8-.34-.79.34-1.78.77-.99-1.67-.44-.74-.84-.19-1.9-.43.18-1.96.08-.85-.56-.65L3.67 12l1.29-1.48.56-.65-.09-.86-.18-1.94 1.9-.43.84-.19.44-.74.99-1.68 1.78.77.8.34.79-.34 1.78-.77.99 1.68.44.74.84.19 1.9.43-.18 1.95-.08.85.56.65 1.29 1.47-1.28 1.48z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.09 13.75-2.32-2.33-1.48 1.49 3.8 3.81 7.34-7.36-1.48-1.49z" -}, "2")], 'VerifiedTwoTone'); \ No newline at end of file +}, "2")], 'VerifiedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedUser.js b/packages/material-ui-icons/lib/VerifiedUser.js index 33ba7766f56ce7..4f33c8ccfa98b1 100644 --- a/packages/material-ui-icons/lib/VerifiedUser.js +++ b/packages/material-ui-icons/lib/VerifiedUser.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" -}), 'VerifiedUser'); \ No newline at end of file +}), 'VerifiedUser'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedUserOutlined.js b/packages/material-ui-icons/lib/VerifiedUserOutlined.js index 1b609c3b70a4b4..3605c2998fff90 100644 --- a/packages/material-ui-icons/lib/VerifiedUserOutlined.js +++ b/packages/material-ui-icons/lib/VerifiedUserOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z" -}), 'VerifiedUserOutlined'); \ No newline at end of file +}), 'VerifiedUserOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedUserRounded.js b/packages/material-ui-icons/lib/VerifiedUserRounded.js index e7da457457baad..db4c8435004cdb 100644 --- a/packages/material-ui-icons/lib/VerifiedUserRounded.js +++ b/packages/material-ui-icons/lib/VerifiedUserRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.19 1.36-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62 0zm-1.9 14.93L6.7 13.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l5.88-5.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-6.59 6.59c-.38.39-1.02.39-1.41 0z" -}), 'VerifiedUserRounded'); \ No newline at end of file +}), 'VerifiedUserRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedUserSharp.js b/packages/material-ui-icons/lib/VerifiedUserSharp.js index 67bc78eadd88a1..61c9d2848b31df 100644 --- a/packages/material-ui-icons/lib/VerifiedUserSharp.js +++ b/packages/material-ui-icons/lib/VerifiedUserSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" -}), 'VerifiedUserSharp'); \ No newline at end of file +}), 'VerifiedUserSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerifiedUserTwoTone.js b/packages/material-ui-icons/lib/VerifiedUserTwoTone.js index 3907aa6dabb3a0..0400d150a9bfce 100644 --- a/packages/material-ui-icons/lib/VerifiedUserTwoTone.js +++ b/packages/material-ui-icons/lib/VerifiedUserTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11L5 6.3zM18 9l-8 8-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9z", opacity: ".3" -}, "1")], 'VerifiedUserTwoTone'); \ No newline at end of file +}, "1")], 'VerifiedUserTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignBottom.js b/packages/material-ui-icons/lib/VerticalAlignBottom.js index fddd00c40c49c4..04966d1fa431fc 100644 --- a/packages/material-ui-icons/lib/VerticalAlignBottom.js +++ b/packages/material-ui-icons/lib/VerticalAlignBottom.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" -}), 'VerticalAlignBottom'); \ No newline at end of file +}), 'VerticalAlignBottom'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignBottomOutlined.js b/packages/material-ui-icons/lib/VerticalAlignBottomOutlined.js index 8b2f2fd4801368..c87bb333cd71a0 100644 --- a/packages/material-ui-icons/lib/VerticalAlignBottomOutlined.js +++ b/packages/material-ui-icons/lib/VerticalAlignBottomOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" -}), 'VerticalAlignBottomOutlined'); \ No newline at end of file +}), 'VerticalAlignBottomOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignBottomRounded.js b/packages/material-ui-icons/lib/VerticalAlignBottomRounded.js index 7f2f769ce230b6..d443c5e0948c2c 100644 --- a/packages/material-ui-icons/lib/VerticalAlignBottomRounded.js +++ b/packages/material-ui-icons/lib/VerticalAlignBottomRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.79 13H13V4c0-.55-.45-1-1-1s-1 .45-1 1v9H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85zM4 20c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" -}), 'VerticalAlignBottomRounded'); \ No newline at end of file +}), 'VerticalAlignBottomRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignBottomSharp.js b/packages/material-ui-icons/lib/VerticalAlignBottomSharp.js index a8dcb1557a2aba..ab4a9d5e3811f5 100644 --- a/packages/material-ui-icons/lib/VerticalAlignBottomSharp.js +++ b/packages/material-ui-icons/lib/VerticalAlignBottomSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" -}), 'VerticalAlignBottomSharp'); \ No newline at end of file +}), 'VerticalAlignBottomSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignBottomTwoTone.js b/packages/material-ui-icons/lib/VerticalAlignBottomTwoTone.js index 829fdef967e7da..2e94316683e3fc 100644 --- a/packages/material-ui-icons/lib/VerticalAlignBottomTwoTone.js +++ b/packages/material-ui-icons/lib/VerticalAlignBottomTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 3v10H8l4 4 4-4h-3V3zM4 19h16v2H4z" -}), 'VerticalAlignBottomTwoTone'); \ No newline at end of file +}), 'VerticalAlignBottomTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignCenter.js b/packages/material-ui-icons/lib/VerticalAlignCenter.js index 5abdfbcce5a8f7..cca57edf90cd40 100644 --- a/packages/material-ui-icons/lib/VerticalAlignCenter.js +++ b/packages/material-ui-icons/lib/VerticalAlignCenter.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" -}), 'VerticalAlignCenter'); \ No newline at end of file +}), 'VerticalAlignCenter'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignCenterOutlined.js b/packages/material-ui-icons/lib/VerticalAlignCenterOutlined.js index 187871bde8c54b..9660b005eea19c 100644 --- a/packages/material-ui-icons/lib/VerticalAlignCenterOutlined.js +++ b/packages/material-ui-icons/lib/VerticalAlignCenterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" -}), 'VerticalAlignCenterOutlined'); \ No newline at end of file +}), 'VerticalAlignCenterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignCenterRounded.js b/packages/material-ui-icons/lib/VerticalAlignCenterRounded.js index 151cde8bd838a5..98e9bd107c780e 100644 --- a/packages/material-ui-icons/lib/VerticalAlignCenterRounded.js +++ b/packages/material-ui-icons/lib/VerticalAlignCenterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.21 19H11v3c0 .55.45 1 1 1s1-.45 1-1v-3h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zm5.58-14H13V2c0-.55-.45-1-1-1s-1 .45-1 1v3H9.21c-.45 0-.67.54-.36.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.32-.31.1-.85-.35-.85zM4 12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" -}), 'VerticalAlignCenterRounded'); \ No newline at end of file +}), 'VerticalAlignCenterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignCenterSharp.js b/packages/material-ui-icons/lib/VerticalAlignCenterSharp.js index 0fbc1ba56f97b5..d0dd2ba26b755a 100644 --- a/packages/material-ui-icons/lib/VerticalAlignCenterSharp.js +++ b/packages/material-ui-icons/lib/VerticalAlignCenterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" -}), 'VerticalAlignCenterSharp'); \ No newline at end of file +}), 'VerticalAlignCenterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignCenterTwoTone.js b/packages/material-ui-icons/lib/VerticalAlignCenterTwoTone.js index 9cd27cf6e242fc..694be2b8001738 100644 --- a/packages/material-ui-icons/lib/VerticalAlignCenterTwoTone.js +++ b/packages/material-ui-icons/lib/VerticalAlignCenterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 1v4H8l4 4 4-4h-3V1zM4 11h16v2H4zm4 8h3v4h2v-4h3l-4-4z" -}), 'VerticalAlignCenterTwoTone'); \ No newline at end of file +}), 'VerticalAlignCenterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignTop.js b/packages/material-ui-icons/lib/VerticalAlignTop.js index d8429f640a54b7..e2a7eb56208eb3 100644 --- a/packages/material-ui-icons/lib/VerticalAlignTop.js +++ b/packages/material-ui-icons/lib/VerticalAlignTop.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" -}), 'VerticalAlignTop'); \ No newline at end of file +}), 'VerticalAlignTop'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignTopOutlined.js b/packages/material-ui-icons/lib/VerticalAlignTopOutlined.js index a07a6bed1cb8a3..496975f2f6dbac 100644 --- a/packages/material-ui-icons/lib/VerticalAlignTopOutlined.js +++ b/packages/material-ui-icons/lib/VerticalAlignTopOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" -}), 'VerticalAlignTopOutlined'); \ No newline at end of file +}), 'VerticalAlignTopOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignTopRounded.js b/packages/material-ui-icons/lib/VerticalAlignTopRounded.js index f7bf0181ef71e4..4cc867dca7ff09 100644 --- a/packages/material-ui-icons/lib/VerticalAlignTopRounded.js +++ b/packages/material-ui-icons/lib/VerticalAlignTopRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.21 11H11v9c0 .55.45 1 1 1s1-.45 1-1v-9h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zM4 4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" -}), 'VerticalAlignTopRounded'); \ No newline at end of file +}), 'VerticalAlignTopRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignTopSharp.js b/packages/material-ui-icons/lib/VerticalAlignTopSharp.js index 27f0b5c9317c08..a464c9a8a1847f 100644 --- a/packages/material-ui-icons/lib/VerticalAlignTopSharp.js +++ b/packages/material-ui-icons/lib/VerticalAlignTopSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" -}), 'VerticalAlignTopSharp'); \ No newline at end of file +}), 'VerticalAlignTopSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalAlignTopTwoTone.js b/packages/material-ui-icons/lib/VerticalAlignTopTwoTone.js index e30e122ba89ef9..3133eeca23a407 100644 --- a/packages/material-ui-icons/lib/VerticalAlignTopTwoTone.js +++ b/packages/material-ui-icons/lib/VerticalAlignTopTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 3h16v2H4zm4 8h3v10h2V11h3l-4-4z" -}), 'VerticalAlignTopTwoTone'); \ No newline at end of file +}), 'VerticalAlignTopTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalSplit.js b/packages/material-ui-icons/lib/VerticalSplit.js index dd73a1e443683a..32568e5c4824a8 100644 --- a/packages/material-ui-icons/lib/VerticalSplit.js +++ b/packages/material-ui-icons/lib/VerticalSplit.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z" -}), 'VerticalSplit'); \ No newline at end of file +}), 'VerticalSplit'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalSplitOutlined.js b/packages/material-ui-icons/lib/VerticalSplitOutlined.js index eb544f80d345ac..f76c20e5545eb8 100644 --- a/packages/material-ui-icons/lib/VerticalSplitOutlined.js +++ b/packages/material-ui-icons/lib/VerticalSplitOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z" -}), 'VerticalSplitOutlined'); \ No newline at end of file +}), 'VerticalSplitOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalSplitRounded.js b/packages/material-ui-icons/lib/VerticalSplitRounded.js index 93c76c27e581ff..7a91350d96d73e 100644 --- a/packages/material-ui-icons/lib/VerticalSplitRounded.js +++ b/packages/material-ui-icons/lib/VerticalSplitRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm11-1h6c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z" -}), 'VerticalSplitRounded'); \ No newline at end of file +}), 'VerticalSplitRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalSplitSharp.js b/packages/material-ui-icons/lib/VerticalSplitSharp.js index fcb3cc5ae13980..9a0883138d9993 100644 --- a/packages/material-ui-icons/lib/VerticalSplitSharp.js +++ b/packages/material-ui-icons/lib/VerticalSplitSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z" -}), 'VerticalSplitSharp'); \ No newline at end of file +}), 'VerticalSplitSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VerticalSplitTwoTone.js b/packages/material-ui-icons/lib/VerticalSplitTwoTone.js index b6d880aa3a35d6..c04cbf978e4768 100644 --- a/packages/material-ui-icons/lib/VerticalSplitTwoTone.js +++ b/packages/material-ui-icons/lib/VerticalSplitTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7h4v10h-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm10 0v14h8V5h-8zm6 12h-4V7h4v10z" -}, "1")], 'VerticalSplitTwoTone'); \ No newline at end of file +}, "1")], 'VerticalSplitTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Vibration.js b/packages/material-ui-icons/lib/Vibration.js index 850c73474f87e5..d9d899b59cc5f3 100644 --- a/packages/material-ui-icons/lib/Vibration.js +++ b/packages/material-ui-icons/lib/Vibration.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" -}), 'Vibration'); \ No newline at end of file +}), 'Vibration'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VibrationOutlined.js b/packages/material-ui-icons/lib/VibrationOutlined.js index 6857fd4c0ff275..45c11c78162a41 100644 --- a/packages/material-ui-icons/lib/VibrationOutlined.js +++ b/packages/material-ui-icons/lib/VibrationOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" -}), 'VibrationOutlined'); \ No newline at end of file +}), 'VibrationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VibrationRounded.js b/packages/material-ui-icons/lib/VibrationRounded.js index 9a7d03ebe5757c..4da52231393618 100644 --- a/packages/material-ui-icons/lib/VibrationRounded.js +++ b/packages/material-ui-icons/lib/VibrationRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 15c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1zm3 2c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zm18-7v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1zm-2 7c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" -}), 'VibrationRounded'); \ No newline at end of file +}), 'VibrationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VibrationSharp.js b/packages/material-ui-icons/lib/VibrationSharp.js index 7453afdfea3a33..10a3e9cae0a549 100644 --- a/packages/material-ui-icons/lib/VibrationSharp.js +++ b/packages/material-ui-icons/lib/VibrationSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM18 3H6v18h12V3zm-2 16H8V5h8v14z" -}), 'VibrationSharp'); \ No newline at end of file +}), 'VibrationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VibrationTwoTone.js b/packages/material-ui-icons/lib/VibrationTwoTone.js index 83a210262f3554..250d346dbb5451 100644 --- a/packages/material-ui-icons/lib/VibrationTwoTone.js +++ b/packages/material-ui-icons/lib/VibrationTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 5h8v14H8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 7h2v10h-2zm3 2h2v6h-2zM0 9h2v6H0zm16.5-6h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14zM3 7h2v10H3z" -}, "1")], 'VibrationTwoTone'); \ No newline at end of file +}, "1")], 'VibrationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCall.js b/packages/material-ui-icons/lib/VideoCall.js index 83909eb2fcc53b..02ad49dbe14776 100644 --- a/packages/material-ui-icons/lib/VideoCall.js +++ b/packages/material-ui-icons/lib/VideoCall.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z" -}), 'VideoCall'); \ No newline at end of file +}), 'VideoCall'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCallOutlined.js b/packages/material-ui-icons/lib/VideoCallOutlined.js index 5829b6666ee1de..3b1151006bf471 100644 --- a/packages/material-ui-icons/lib/VideoCallOutlined.js +++ b/packages/material-ui-icons/lib/VideoCallOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM15 16H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z" -}), 'VideoCallOutlined'); \ No newline at end of file +}), 'VideoCallOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCallRounded.js b/packages/material-ui-icons/lib/VideoCallRounded.js index 6716463dc68d21..7c63412c6b403d 100644 --- a/packages/material-ui-icons/lib/VideoCallRounded.js +++ b/packages/material-ui-icons/lib/VideoCallRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5zM13 13h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H7c-.55 0-1-.45-1-1s.45-1 1-1h2V9c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'VideoCallRounded'); \ No newline at end of file +}), 'VideoCallRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCallSharp.js b/packages/material-ui-icons/lib/VideoCallSharp.js index e97e4680e16086..894fc32ccb834f 100644 --- a/packages/material-ui-icons/lib/VideoCallSharp.js +++ b/packages/material-ui-icons/lib/VideoCallSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z" -}), 'VideoCallSharp'); \ No newline at end of file +}), 'VideoCallSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCallTwoTone.js b/packages/material-ui-icons/lib/VideoCallTwoTone.js index 2dd02eacea2582..4bf647f1dadab1 100644 --- a/packages/material-ui-icons/lib/VideoCallTwoTone.js +++ b/packages/material-ui-icons/lib/VideoCallTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 16h10V8H5v8zm2-5h2V9h2v2h2v2h-2v2H9v-2H7v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z" -}, "1")], 'VideoCallTwoTone'); \ No newline at end of file +}, "1")], 'VideoCallTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraBack.js b/packages/material-ui-icons/lib/VideoCameraBack.js index f20f0a4f6ab8ab..5a33ce634a6c6d 100644 --- a/packages/material-ui-icons/lib/VideoCameraBack.js +++ b/packages/material-ui-icons/lib/VideoCameraBack.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM5 16l2.38-3.17L9 15l2.62-3.5L15 16H5z" -}), 'VideoCameraBack'); \ No newline at end of file +}), 'VideoCameraBack'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraBackOutlined.js b/packages/material-ui-icons/lib/VideoCameraBackOutlined.js index f0a3316b58c363..cb84037c32300a 100644 --- a/packages/material-ui-icons/lib/VideoCameraBackOutlined.js +++ b/packages/material-ui-icons/lib/VideoCameraBackOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM16 18H4V6h12v12zm-4.38-6.5L9 15l-1.62-2.17L5 16h10l-3.38-4.5z" -}), 'VideoCameraBackOutlined'); \ No newline at end of file +}), 'VideoCameraBackOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraBackRounded.js b/packages/material-ui-icons/lib/VideoCameraBackRounded.js index 967c8578b6e40d..4eebc9e199a6d4 100644 --- a/packages/material-ui-icons/lib/VideoCameraBackRounded.js +++ b/packages/material-ui-icons/lib/VideoCameraBackRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l3.15 3.13c.31.32.85.09.85-.35V7.7c0-.44-.54-.67-.85-.35L18 10.48zM5.6 15.2l1.38-1.83c.2-.27.6-.27.8 0L9 15l2.23-2.97c.2-.27.6-.27.8 0l2.38 3.17c.25.33.01.8-.4.8H6c-.41 0-.65-.47-.4-.8z" -}), 'VideoCameraBackRounded'); \ No newline at end of file +}), 'VideoCameraBackRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraBackSharp.js b/packages/material-ui-icons/lib/VideoCameraBackSharp.js index f6a890927a5499..d09ac2d1b9d736 100644 --- a/packages/material-ui-icons/lib/VideoCameraBackSharp.js +++ b/packages/material-ui-icons/lib/VideoCameraBackSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM5 16l2.38-3.17L9 15l2.62-3.5L15 16H5z" -}), 'VideoCameraBackSharp'); \ No newline at end of file +}), 'VideoCameraBackSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraBackTwoTone.js b/packages/material-ui-icons/lib/VideoCameraBackTwoTone.js index 74a1964160eccb..8964b4a4af6de8 100644 --- a/packages/material-ui-icons/lib/VideoCameraBackTwoTone.js +++ b/packages/material-ui-icons/lib/VideoCameraBackTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h12V6H4v12zm3.38-5.17L9 15l2.62-3.5L15 16H5l2.38-3.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.62 11.5 9 15l-1.62-2.17L5 16h10z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM16 18H4V6h12v12z" -}, "2")], 'VideoCameraBackTwoTone'); \ No newline at end of file +}, "2")], 'VideoCameraBackTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraFront.js b/packages/material-ui-icons/lib/VideoCameraFront.js index 5f318a0627ddc4..7942e4f0b24e34 100644 --- a/packages/material-ui-icons/lib/VideoCameraFront.js +++ b/packages/material-ui-icons/lib/VideoCameraFront.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16z" -}), 'VideoCameraFront'); \ No newline at end of file +}), 'VideoCameraFront'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraFrontOutlined.js b/packages/material-ui-icons/lib/VideoCameraFrontOutlined.js index 323b59c0156cd5..d7b0d22da07983 100644 --- a/packages/material-ui-icons/lib/VideoCameraFrontOutlined.js +++ b/packages/material-ui-icons/lib/VideoCameraFrontOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zm-2-.79V18H4V6h12v3.69z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "10", cy: "10", r: "2" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 15.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C6.48 13.9 6 14.62 6 15.43V16h8v-.57z" -}, "2")], 'VideoCameraFrontOutlined'); \ No newline at end of file +}, "2")], 'VideoCameraFrontOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraFrontRounded.js b/packages/material-ui-icons/lib/VideoCameraFrontRounded.js index 6432e9b80db8da..35f69a06dd386f 100644 --- a/packages/material-ui-icons/lib/VideoCameraFrontRounded.js +++ b/packages/material-ui-icons/lib/VideoCameraFrontRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l3.15 3.13c.31.32.85.09.85-.35V7.7c0-.44-.54-.67-.85-.35L18 10.48zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16z" -}), 'VideoCameraFrontRounded'); \ No newline at end of file +}), 'VideoCameraFrontRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraFrontSharp.js b/packages/material-ui-icons/lib/VideoCameraFrontSharp.js index ebdc22671ea35e..dd1391ba6170c9 100644 --- a/packages/material-ui-icons/lib/VideoCameraFrontSharp.js +++ b/packages/material-ui-icons/lib/VideoCameraFrontSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16z" -}), 'VideoCameraFrontSharp'); \ No newline at end of file +}), 'VideoCameraFrontSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoCameraFrontTwoTone.js b/packages/material-ui-icons/lib/VideoCameraFrontTwoTone.js index 3487ac173fa249..51be59ef10da75 100644 --- a/packages/material-ui-icons/lib/VideoCameraFrontTwoTone.js +++ b/packages/material-ui-icons/lib/VideoCameraFrontTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM16 18H4V6h12v12zm-6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C6.48 13.9 6 14.62 6 15.43V16h8v-.57z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 18h12V6H4v12zm6-10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-4 7.43c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16H6v-.57z", opacity: ".3" -}, "1")], 'VideoCameraFrontTwoTone'); \ No newline at end of file +}, "1")], 'VideoCameraFrontTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLabel.js b/packages/material-ui-icons/lib/VideoLabel.js index 3ed9563ecbc76e..05d281aabbbbd8 100644 --- a/packages/material-ui-icons/lib/VideoLabel.js +++ b/packages/material-ui-icons/lib/VideoLabel.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" -}), 'VideoLabel'); \ No newline at end of file +}), 'VideoLabel'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLabelOutlined.js b/packages/material-ui-icons/lib/VideoLabelOutlined.js index 4f5f0523ef74a7..81a207cc3c1446 100644 --- a/packages/material-ui-icons/lib/VideoLabelOutlined.js +++ b/packages/material-ui-icons/lib/VideoLabelOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" -}), 'VideoLabelOutlined'); \ No newline at end of file +}), 'VideoLabelOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLabelRounded.js b/packages/material-ui-icons/lib/VideoLabelRounded.js index e94316ed99ffc9..86c00e4bc97edd 100644 --- a/packages/material-ui-icons/lib/VideoLabelRounded.js +++ b/packages/material-ui-icons/lib/VideoLabelRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10z" -}), 'VideoLabelRounded'); \ No newline at end of file +}), 'VideoLabelRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLabelSharp.js b/packages/material-ui-icons/lib/VideoLabelSharp.js index 8ccdfe40c8d313..919ee8aa9a1fb6 100644 --- a/packages/material-ui-icons/lib/VideoLabelSharp.js +++ b/packages/material-ui-icons/lib/VideoLabelSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zm-2 13H3V5h18v11z" -}), 'VideoLabelSharp'); \ No newline at end of file +}), 'VideoLabelSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLabelTwoTone.js b/packages/material-ui-icons/lib/VideoLabelTwoTone.js index 36c991274d6e0b..054252e88b7372 100644 --- a/packages/material-ui-icons/lib/VideoLabelTwoTone.js +++ b/packages/material-ui-icons/lib/VideoLabelTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5h18v11H3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" -}, "1")], 'VideoLabelTwoTone'); \ No newline at end of file +}, "1")], 'VideoLabelTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLibrary.js b/packages/material-ui-icons/lib/VideoLibrary.js index 623adf2f61c3df..9aff6b6f40c23f 100644 --- a/packages/material-ui-icons/lib/VideoLibrary.js +++ b/packages/material-ui-icons/lib/VideoLibrary.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l6 4.5-6 4.5z" -}), 'VideoLibrary'); \ No newline at end of file +}), 'VideoLibrary'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLibraryOutlined.js b/packages/material-ui-icons/lib/VideoLibraryOutlined.js index 266a5703029358..0c06663864546e 100644 --- a/packages/material-ui-icons/lib/VideoLibraryOutlined.js +++ b/packages/material-ui-icons/lib/VideoLibraryOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z" -}), 'VideoLibraryOutlined'); \ No newline at end of file +}), 'VideoLibraryOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLibraryRounded.js b/packages/material-ui-icons/lib/VideoLibraryRounded.js index f7dd49da53adff..b2d4110e355dc2 100644 --- a/packages/material-ui-icons/lib/VideoLibraryRounded.js +++ b/packages/material-ui-icons/lib/VideoLibraryRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l5.47 4.1c.27.2.27.6 0 .8L12 14.5z" -}), 'VideoLibraryRounded'); \ No newline at end of file +}), 'VideoLibraryRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLibrarySharp.js b/packages/material-ui-icons/lib/VideoLibrarySharp.js index fc8e33c2b44f9b..6a73803d193576 100644 --- a/packages/material-ui-icons/lib/VideoLibrarySharp.js +++ b/packages/material-ui-icons/lib/VideoLibrarySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zM12 14.5v-9l6 4.5-6 4.5z" -}), 'VideoLibrarySharp'); \ No newline at end of file +}), 'VideoLibrarySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoLibraryTwoTone.js b/packages/material-ui-icons/lib/VideoLibraryTwoTone.js index c0a7cf36af8ea0..994c330acb7e97 100644 --- a/packages/material-ui-icons/lib/VideoLibraryTwoTone.js +++ b/packages/material-ui-icons/lib/VideoLibraryTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 16h12V4H8v12zm4-10.5 6 4.5-6 4.5v-9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z" -}, "1")], 'VideoLibraryTwoTone'); \ No newline at end of file +}, "1")], 'VideoLibraryTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoSettings.js b/packages/material-ui-icons/lib/VideoSettings.js index 783e75a6cce591..f6092252823278 100644 --- a/packages/material-ui-icons/lib/VideoSettings.js +++ b/packages/material-ui-icons/lib/VideoSettings.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18v5h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H3V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'VideoSettings'); \ No newline at end of file +}, "1")], 'VideoSettings'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoSettingsOutlined.js b/packages/material-ui-icons/lib/VideoSettingsOutlined.js index 95c776e42021d3..85fe32ea0f2405 100644 --- a/packages/material-ui-icons/lib/VideoSettingsOutlined.js +++ b/packages/material-ui-icons/lib/VideoSettingsOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18v5h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H3V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'VideoSettingsOutlined'); \ No newline at end of file +}, "1")], 'VideoSettingsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoSettingsRounded.js b/packages/material-ui-icons/lib/VideoSettingsRounded.js index 0ec1da0ffa9add..d166f0c6b7f352 100644 --- a/packages/material-ui-icons/lib/VideoSettingsRounded.js +++ b/packages/material-ui-icons/lib/VideoSettingsRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6h16c.55 0 1 .45 1 1v4h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'VideoSettingsRounded'); \ No newline at end of file +}, "1")], 'VideoSettingsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoSettingsSharp.js b/packages/material-ui-icons/lib/VideoSettingsSharp.js index a2762a03aa3ae0..495b3935544db6 100644 --- a/packages/material-ui-icons/lib/VideoSettingsSharp.js +++ b/packages/material-ui-icons/lib/VideoSettingsSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18v5h2V4H1v16h11v-2H3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12 9 8v8zm7.72 5.57 1.23-.98-1.25-2.17-1.47.58c-.23-.17-.48-.31-.75-.42L20.25 13h-2.5l-.24 1.58c-.26.11-.51.26-.74.42l-1.48-.58-1.25 2.17 1.24.99c-.03.29-.04.58-.01.86l-1.23.98 1.25 2.17 1.48-.59c.23.17.48.31.75.42l.23 1.58h2.5l.24-1.58c.26-.11.51-.26.74-.42l1.48.58 1.25-2.17-1.24-.99c.03-.28.03-.57 0-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'VideoSettingsSharp'); \ No newline at end of file +}, "1")], 'VideoSettingsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoSettingsTwoTone.js b/packages/material-ui-icons/lib/VideoSettingsTwoTone.js index 4af33d6e47c8b4..4d0d182af236ff 100644 --- a/packages/material-ui-icons/lib/VideoSettingsTwoTone.js +++ b/packages/material-ui-icons/lib/VideoSettingsTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 6h18v5h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H3V6z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}, "1")], 'VideoSettingsTwoTone'); \ No newline at end of file +}, "1")], 'VideoSettingsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoStable.js b/packages/material-ui-icons/lib/VideoStable.js index 2df1c263e92064..2cc4ca042a29ba 100644 --- a/packages/material-ui-icons/lib/VideoStable.js +++ b/packages/material-ui-icons/lib/VideoStable.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 18V6h2.95l-2.33 8.73L16.82 18H4zm16 0h-2.95l2.34-8.73L7.18 6H20v12z" -}), 'VideoStable'); \ No newline at end of file +}), 'VideoStable'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoStableOutlined.js b/packages/material-ui-icons/lib/VideoStableOutlined.js index 5b49a6afdf8fa3..531d8f604f1bad 100644 --- a/packages/material-ui-icons/lib/VideoStableOutlined.js +++ b/packages/material-ui-icons/lib/VideoStableOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 18V6h2.95l-2.33 8.73L16.82 18H4zm11.62-2.39-8.55-2.29L8.38 8.4l8.56 2.29-1.32 4.92zM20 18h-2.95l2.34-8.73L7.18 6H20v12z" -}), 'VideoStableOutlined'); \ No newline at end of file +}), 'VideoStableOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoStableRounded.js b/packages/material-ui-icons/lib/VideoStableRounded.js index d50ac675443222..9f0608a5e4ecd4 100644 --- a/packages/material-ui-icons/lib/VideoStableRounded.js +++ b/packages/material-ui-icons/lib/VideoStableRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.96 4.01h-16c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2zM20 6v12H4V6h16z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.42 9.01 7.92 6.18c-.53-.14-1.08.17-1.22.7l-1.85 6.87c-.14.53.17 1.08.71 1.23l10.5 2.83c.53.14 1.08-.17 1.23-.71l1.85-6.87c.13-.53-.19-1.08-.72-1.22z" -}, "1")], 'VideoStableRounded'); \ No newline at end of file +}, "1")], 'VideoStableRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoStableSharp.js b/packages/material-ui-icons/lib/VideoStableSharp.js index 3dc17a984e21f7..8182763817d95a 100644 --- a/packages/material-ui-icons/lib/VideoStableSharp.js +++ b/packages/material-ui-icons/lib/VideoStableSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4v16h20V4H2zm2 14V6h2.95l-2.33 8.73L16.82 18H4zm16 0h-2.95l2.34-8.73L7.18 6H20v12z" -}), 'VideoStableSharp'); \ No newline at end of file +}), 'VideoStableSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideoStableTwoTone.js b/packages/material-ui-icons/lib/VideoStableTwoTone.js index 1924d223cb9c1c..fd030a34390002 100644 --- a/packages/material-ui-icons/lib/VideoStableTwoTone.js +++ b/packages/material-ui-icons/lib/VideoStableTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7.0627 13.3185 1.3204-4.926 8.558 2.2938-1.3205 4.9261z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 18V6h2.95l-2.33 8.73L16.82 18H4zm11.62-2.39-8.55-2.29L8.38 8.4l8.56 2.29-1.32 4.92zM20 18h-2.95l2.34-8.73L7.18 6H20v12z" -}, "1")], 'VideoStableTwoTone'); \ No newline at end of file +}, "1")], 'VideoStableTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Videocam.js b/packages/material-ui-icons/lib/Videocam.js index 802f745f2230a8..9bef94aabe65e7 100644 --- a/packages/material-ui-icons/lib/Videocam.js +++ b/packages/material-ui-icons/lib/Videocam.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z" -}), 'Videocam'); \ No newline at end of file +}), 'Videocam'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamOff.js b/packages/material-ui-icons/lib/VideocamOff.js index d06d2dc38f1f3b..1261a4735ca975 100644 --- a/packages/material-ui-icons/lib/VideocamOff.js +++ b/packages/material-ui-icons/lib/VideocamOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 6.5-4 4V7c0-.55-.45-1-1-1H9.82L21 17.18V6.5zM3.27 2 2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.54-.18L19.73 21 21 19.73 3.27 2z" -}), 'VideocamOff'); \ No newline at end of file +}), 'VideocamOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamOffOutlined.js b/packages/material-ui-icons/lib/VideocamOffOutlined.js index 39db6f7040c46e..d72d97bad1491e 100644 --- a/packages/material-ui-icons/lib/VideocamOffOutlined.js +++ b/packages/material-ui-icons/lib/VideocamOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.56 8-2-2-4.15-4.14L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86L9.56 8zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z" -}), 'VideocamOffOutlined'); \ No newline at end of file +}), 'VideocamOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamOffRounded.js b/packages/material-ui-icons/lib/VideocamOffRounded.js index 93d9183dd4fe38..62d2e44792c787 100644 --- a/packages/material-ui-icons/lib/VideocamOffRounded.js +++ b/packages/material-ui-icons/lib/VideocamOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 14.2V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5V7c0-.55-.45-1-1-1h-5.61l8.91 8.91c.62.63 1.7.18 1.7-.71zM2.71 2.56c-.39.39-.39 1.02 0 1.41L4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18l2.48 2.48c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 2.56a.9959.9959 0 0 0-1.41 0z" -}), 'VideocamOffRounded'); \ No newline at end of file +}), 'VideocamOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamOffSharp.js b/packages/material-ui-icons/lib/VideocamOffSharp.js index 5f9e31575d048c..dfe6909ff63766 100644 --- a/packages/material-ui-icons/lib/VideocamOffSharp.js +++ b/packages/material-ui-icons/lib/VideocamOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 16.61V6.5l-4 4V6h-6.61zM3.41 1.86 2 3.27 4.73 6H3v12h13.73l3 3 1.41-1.41z" -}), 'VideocamOffSharp'); \ No newline at end of file +}), 'VideocamOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamOffTwoTone.js b/packages/material-ui-icons/lib/VideocamOffTwoTone.js index 1f7a236bbee995..62c938d0458ebf 100644 --- a/packages/material-ui-icons/lib/VideocamOffTwoTone.js +++ b/packages/material-ui-icons/lib/VideocamOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.39 8 15 10.61V8zM5 8v8h9.73l-8-8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.41 1.86 2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41L3.41 1.86zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z" -}, "1")], 'VideocamOffTwoTone'); \ No newline at end of file +}, "1")], 'VideocamOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamOutlined.js b/packages/material-ui-icons/lib/VideocamOutlined.js index f1a34d75834043..e47be7859aa788 100644 --- a/packages/material-ui-icons/lib/VideocamOutlined.js +++ b/packages/material-ui-icons/lib/VideocamOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 8v8H5V8h10m1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1z" -}), 'VideocamOutlined'); \ No newline at end of file +}), 'VideocamOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamRounded.js b/packages/material-ui-icons/lib/VideocamRounded.js index 6efeb43c5c119f..de96696d77522e 100644 --- a/packages/material-ui-icons/lib/VideocamRounded.js +++ b/packages/material-ui-icons/lib/VideocamRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5z" -}), 'VideocamRounded'); \ No newline at end of file +}), 'VideocamRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamSharp.js b/packages/material-ui-icons/lib/VideocamSharp.js index f8f20c9165cf78..d6ecd33fc210f9 100644 --- a/packages/material-ui-icons/lib/VideocamSharp.js +++ b/packages/material-ui-icons/lib/VideocamSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4z" -}), 'VideocamSharp'); \ No newline at end of file +}), 'VideocamSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideocamTwoTone.js b/packages/material-ui-icons/lib/VideocamTwoTone.js index 7a8a9b65c199c7..3cace91281b673 100644 --- a/packages/material-ui-icons/lib/VideocamTwoTone.js +++ b/packages/material-ui-icons/lib/VideocamTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8h10v8H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8z" -}, "1")], 'VideocamTwoTone'); \ No newline at end of file +}, "1")], 'VideocamTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAsset.js b/packages/material-ui-icons/lib/VideogameAsset.js index 8a440ffe9077bf..5a1047f95d2e96 100644 --- a/packages/material-ui-icons/lib/VideogameAsset.js +++ b/packages/material-ui-icons/lib/VideogameAsset.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'VideogameAsset'); \ No newline at end of file +}), 'VideogameAsset'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetOff.js b/packages/material-ui-icons/lib/VideogameAssetOff.js index bbdf3c597a01a9..d34faac38d798e 100644 --- a/packages/material-ui-icons/lib/VideogameAssetOff.js +++ b/packages/material-ui-icons/lib/VideogameAssetOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.19 21.19 2.81 2.81 1.39 4.22 3.3 6.13C2.54 6.41 2 7.15 2 8v8c0 1.1.9 2 2 2h11.17l4.61 4.61 1.41-1.42zM9 13v2H7v-2H5v-2h2V9.83L10.17 13H9zm11.7 4.87c.76-.28 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83L20.7 17.87zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z" -}), 'VideogameAssetOff'); \ No newline at end of file +}), 'VideogameAssetOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetOffOutlined.js b/packages/material-ui-icons/lib/VideogameAssetOffOutlined.js index 6d095cc93fb3c9..25aabdc962ad9f 100644 --- a/packages/material-ui-icons/lib/VideogameAssetOffOutlined.js +++ b/packages/material-ui-icons/lib/VideogameAssetOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-6.67-1H20v8h-1.17l1.87 1.87c.75-.29 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83l2 2zm8.95 14.61L15.17 18H4c-1.1 0-2-.9-2-2V8c0-.85.55-1.58 1.3-1.87L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM13.17 16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17 8H4v8h9.17z" -}), 'VideogameAssetOffOutlined'); \ No newline at end of file +}), 'VideogameAssetOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetOffRounded.js b/packages/material-ui-icons/lib/VideogameAssetOffRounded.js index 679a41fbe38d89..b64572170d8b9a 100644 --- a/packages/material-ui-icons/lib/VideogameAssetOffRounded.js +++ b/packages/material-ui-icons/lib/VideogameAssetOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.7 17.87c.76-.28 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83L20.7 17.87zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm2.99 11.49L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.2 1.2C2.54 6.41 2 7.15 2 8v8c0 1.1.9 2 2 2h11.17l3.9 3.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM10 13H9v1c0 .55-.45 1-1 1s-1-.45-1-1v-1H6c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.05.01-.11.01-.16l3.14 3.14c-.04.01-.1.02-.15.02z" -}), 'VideogameAssetOffRounded'); \ No newline at end of file +}), 'VideogameAssetOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetOffSharp.js b/packages/material-ui-icons/lib/VideogameAssetOffSharp.js index cf36960069f3d3..8763d3fc2d0eab 100644 --- a/packages/material-ui-icons/lib/VideogameAssetOffSharp.js +++ b/packages/material-ui-icons/lib/VideogameAssetOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.83 18H22V6H8.83l12 12zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.69 12.19L2.81 2.81 1.39 4.22 3.17 6H2v12h13.17l4.61 4.61 1.41-1.42zM9 13v2H7v-2H5v-2h2V9.83L10.17 13H9z" -}), 'VideogameAssetOffSharp'); \ No newline at end of file +}), 'VideogameAssetOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetOffTwoTone.js b/packages/material-ui-icons/lib/VideogameAssetOffTwoTone.js index aad6ba2cecd887..7fd4c93d8b46e9 100644 --- a/packages/material-ui-icons/lib/VideogameAssetOffTwoTone.js +++ b/packages/material-ui-icons/lib/VideogameAssetOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m10.83 8 8 8H20V8h-9.17zm6.67 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-4.33 4-3-3H9v2H7v-2H5v-2h2V9.83L5.17 8H4v8h9.17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-6.67-1H20v8h-1.17l1.87 1.87c.75-.29 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83l2 2zm8.95 14.61L15.17 18H4c-1.1 0-2-.9-2-2V8c0-.85.55-1.58 1.3-1.87L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM13.17 16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17 8H4v8h9.17z" -}, "1")], 'VideogameAssetOffTwoTone'); \ No newline at end of file +}, "1")], 'VideogameAssetOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetOutlined.js b/packages/material-ui-icons/lib/VideogameAssetOutlined.js index 7caa05ccd2b0d4..76e4fbd875e538 100644 --- a/packages/material-ui-icons/lib/VideogameAssetOutlined.js +++ b/packages/material-ui-icons/lib/VideogameAssetOutlined.js @@ -1,13 +1,26 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "13.5", r: "1.5" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18.5", cy: "10.5", r: "1.5" -}, "2")], 'VideogameAssetOutlined'); \ No newline at end of file +}, "2")], 'VideogameAssetOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetRounded.js b/packages/material-ui-icons/lib/VideogameAssetRounded.js index c6022921a0d9c3..d946179da72f1e 100644 --- a/packages/material-ui-icons/lib/VideogameAssetRounded.js +++ b/packages/material-ui-icons/lib/VideogameAssetRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-11 7H8v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H4c-.55 0-1-.45-1-1s.45-1 1-1h2V9c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1zm5.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'VideogameAssetRounded'); \ No newline at end of file +}), 'VideogameAssetRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetSharp.js b/packages/material-ui-icons/lib/VideogameAssetSharp.js index ef3dda64b48a32..c3e53c95356571 100644 --- a/packages/material-ui-icons/lib/VideogameAssetSharp.js +++ b/packages/material-ui-icons/lib/VideogameAssetSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 6H1v12h22V6zm-12 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" -}), 'VideogameAssetSharp'); \ No newline at end of file +}), 'VideogameAssetSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VideogameAssetTwoTone.js b/packages/material-ui-icons/lib/VideogameAssetTwoTone.js index 2b90ddfd908327..3eebce8f6ae9bb 100644 --- a/packages/material-ui-icons/lib/VideogameAssetTwoTone.js +++ b/packages/material-ui-icons/lib/VideogameAssetTwoTone.js @@ -1,16 +1,29 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 16h18V8H3v8zm15.5-7c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-4 3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM4 11h2V9h2v2h2v2H8v2H6v-2H4v-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "14.5", cy: "13.5", r: "1.5" -}, "2"), /*#__PURE__*/_jsx("circle", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18.5", cy: "10.5", r: "1.5" -}, "3")], 'VideogameAssetTwoTone'); \ No newline at end of file +}, "3")], 'VideogameAssetTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewAgenda.js b/packages/material-ui-icons/lib/ViewAgenda.js index 7e35a53db7537f..9ccabf3f91ccf9 100644 --- a/packages/material-ui-icons/lib/ViewAgenda.js +++ b/packages/material-ui-icons/lib/ViewAgenda.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm0-10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z" -}), 'ViewAgenda'); \ No newline at end of file +}), 'ViewAgenda'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewAgendaOutlined.js b/packages/material-ui-icons/lib/ViewAgendaOutlined.js index 74415c5e3d0281..b8f8ccd462fe7a 100644 --- a/packages/material-ui-icons/lib/ViewAgendaOutlined.js +++ b/packages/material-ui-icons/lib/ViewAgendaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 5v4H4V5h15m0 10v4H4v-4h15m1-12H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm0 10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1z" -}), 'ViewAgendaOutlined'); \ No newline at end of file +}), 'ViewAgendaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewAgendaRounded.js b/packages/material-ui-icons/lib/ViewAgendaRounded.js index d101f5cba641aa..c735331a50acc5 100644 --- a/packages/material-ui-icons/lib/ViewAgendaRounded.js +++ b/packages/material-ui-icons/lib/ViewAgendaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 13H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm0-10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z" -}), 'ViewAgendaRounded'); \ No newline at end of file +}), 'ViewAgendaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewAgendaSharp.js b/packages/material-ui-icons/lib/ViewAgendaSharp.js index 09a2cddefdf286..ef05a432bf5d3a 100644 --- a/packages/material-ui-icons/lib/ViewAgendaSharp.js +++ b/packages/material-ui-icons/lib/ViewAgendaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 13H2v8h19v-8zm0-10H2v8h19V3z" -}), 'ViewAgendaSharp'); \ No newline at end of file +}), 'ViewAgendaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewAgendaTwoTone.js b/packages/material-ui-icons/lib/ViewAgendaTwoTone.js index acbe0591e622f7..0ea84bc08e0cd1 100644 --- a/packages/material-ui-icons/lib/ViewAgendaTwoTone.js +++ b/packages/material-ui-icons/lib/ViewAgendaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 3H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H4V5h15v4zm1 4H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H4v-4h15v4z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h15v4H4zM4 5h15v4H4z", opacity: ".3" -}, "1")], 'ViewAgendaTwoTone'); \ No newline at end of file +}, "1")], 'ViewAgendaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewArray.js b/packages/material-ui-icons/lib/ViewArray.js index 4905c88f2f82e7..b875af4b7bddb0 100644 --- a/packages/material-ui-icons/lib/ViewArray.js +++ b/packages/material-ui-icons/lib/ViewArray.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" -}), 'ViewArray'); \ No newline at end of file +}), 'ViewArray'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewArrayOutlined.js b/packages/material-ui-icons/lib/ViewArrayOutlined.js index 94051b155863c0..333b1aa1ce0eb0 100644 --- a/packages/material-ui-icons/lib/ViewArrayOutlined.js +++ b/packages/material-ui-icons/lib/ViewArrayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7v10H9V7h6zm6-2h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" -}), 'ViewArrayOutlined'); \ No newline at end of file +}), 'ViewArrayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewArrayRounded.js b/packages/material-ui-icons/lib/ViewArrayRounded.js index 0c77a4274fa813..e71f674cc4c780 100644 --- a/packages/material-ui-icons/lib/ViewArrayRounded.js +++ b/packages/material-ui-icons/lib/ViewArrayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 5h-1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-4 0H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM5 5H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z" -}), 'ViewArrayRounded'); \ No newline at end of file +}), 'ViewArrayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewArraySharp.js b/packages/material-ui-icons/lib/ViewArraySharp.js index 4940f529843d68..bb73a45cbe3870 100644 --- a/packages/material-ui-icons/lib/ViewArraySharp.js +++ b/packages/material-ui-icons/lib/ViewArraySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" -}), 'ViewArraySharp'); \ No newline at end of file +}), 'ViewArraySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewArrayTwoTone.js b/packages/material-ui-icons/lib/ViewArrayTwoTone.js index 71a94cf2e3b86b..0509036979cf6a 100644 --- a/packages/material-ui-icons/lib/ViewArrayTwoTone.js +++ b/packages/material-ui-icons/lib/ViewArrayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7h6v10H9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 7v10H9V7h6zm6-2h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" -}, "1")], 'ViewArrayTwoTone'); \ No newline at end of file +}, "1")], 'ViewArrayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCarousel.js b/packages/material-ui-icons/lib/ViewCarousel.js index 4f74326d57eb4f..d9681820704105 100644 --- a/packages/material-ui-icons/lib/ViewCarousel.js +++ b/packages/material-ui-icons/lib/ViewCarousel.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM18 7h4v10h-4V7z" -}), 'ViewCarousel'); \ No newline at end of file +}), 'ViewCarousel'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCarouselOutlined.js b/packages/material-ui-icons/lib/ViewCarouselOutlined.js index 2179c1ba6bcce8..054e4495409007 100644 --- a/packages/material-ui-icons/lib/ViewCarouselOutlined.js +++ b/packages/material-ui-icons/lib/ViewCarouselOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM9 7h6v10H9V7zm9 0h4v10h-4V7z" -}), 'ViewCarouselOutlined'); \ No newline at end of file +}), 'ViewCarouselOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCarouselRounded.js b/packages/material-ui-icons/lib/ViewCarouselRounded.js index 606f91a69bba34..ae663f2087e581 100644 --- a/packages/material-ui-icons/lib/ViewCarouselRounded.js +++ b/packages/material-ui-icons/lib/ViewCarouselRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1zm5 12h8c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1zM19 7h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1z" -}), 'ViewCarouselRounded'); \ No newline at end of file +}), 'ViewCarouselRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCarouselSharp.js b/packages/material-ui-icons/lib/ViewCarouselSharp.js index 7c224576e6cfde..07120c8a605fcf 100644 --- a/packages/material-ui-icons/lib/ViewCarouselSharp.js +++ b/packages/material-ui-icons/lib/ViewCarouselSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM18 7h4v10h-4V7z" -}), 'ViewCarouselSharp'); \ No newline at end of file +}), 'ViewCarouselSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCarouselTwoTone.js b/packages/material-ui-icons/lib/ViewCarouselTwoTone.js index 35a5fa668b2378..bd01720dd9fb2f 100644 --- a/packages/material-ui-icons/lib/ViewCarouselTwoTone.js +++ b/packages/material-ui-icons/lib/ViewCarouselTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 7h6v10H9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM9 7h6v10H9V7zm9 0h4v10h-4V7z" -}, "1")], 'ViewCarouselTwoTone'); \ No newline at end of file +}, "1")], 'ViewCarouselTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewColumn.js b/packages/material-ui-icons/lib/ViewColumn.js index 92f7b3468b764c..0d26b1acd39e96 100644 --- a/packages/material-ui-icons/lib/ViewColumn.js +++ b/packages/material-ui-icons/lib/ViewColumn.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.67 5v14H9.33V5h5.34zm1 14H21V5h-5.33v14zm-7.34 0V5H3v14h5.33z" -}), 'ViewColumn'); \ No newline at end of file +}), 'ViewColumn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewColumnOutlined.js b/packages/material-ui-icons/lib/ViewColumnOutlined.js index 501277d0b8f884..2367975548e070 100644 --- a/packages/material-ui-icons/lib/ViewColumnOutlined.js +++ b/packages/material-ui-icons/lib/ViewColumnOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33V7h3.33v10zM19 17h-3.33V7H19v10z" -}), 'ViewColumnOutlined'); \ No newline at end of file +}), 'ViewColumnOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewColumnRounded.js b/packages/material-ui-icons/lib/ViewColumnRounded.js index d82314d989d811..f9f52b35c8be7a 100644 --- a/packages/material-ui-icons/lib/ViewColumnRounded.js +++ b/packages/material-ui-icons/lib/ViewColumnRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.67 6v12c0 .55-.45 1-1 1h-3.33c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.33c.55 0 1 .45 1 1zm2 13H20c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1v12c0 .55.44 1 1 1zm-8.34-1V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.33c.56 0 1-.45 1-1z" -}), 'ViewColumnRounded'); \ No newline at end of file +}), 'ViewColumnRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewColumnSharp.js b/packages/material-ui-icons/lib/ViewColumnSharp.js index 5707a2cc54ad11..e1fc73072fa133 100644 --- a/packages/material-ui-icons/lib/ViewColumnSharp.js +++ b/packages/material-ui-icons/lib/ViewColumnSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.67 5v14H9.33V5h5.34zm1 14H21V5h-5.33v14zm-7.34 0V5H3v14h5.33z" -}), 'ViewColumnSharp'); \ No newline at end of file +}), 'ViewColumnSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewColumnTwoTone.js b/packages/material-ui-icons/lib/ViewColumnTwoTone.js index a20df3ac6c98a9..022dc4cc866595 100644 --- a/packages/material-ui-icons/lib/ViewColumnTwoTone.js +++ b/packages/material-ui-icons/lib/ViewColumnTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.33 17H5V7h3.33v10zm5.34 0h-3.33V7h3.33v10zM19 17h-3.33V7H19v10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33V7h3.33v10zM19 17h-3.33V7H19v10z" -}, "1")], 'ViewColumnTwoTone'); \ No newline at end of file +}, "1")], 'ViewColumnTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewComfy.js b/packages/material-ui-icons/lib/ViewComfy.js index 539be8558de861..f43e34cdb36a94 100644 --- a/packages/material-ui-icons/lib/ViewComfy.js +++ b/packages/material-ui-icons/lib/ViewComfy.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z" -}), 'ViewComfy'); \ No newline at end of file +}), 'ViewComfy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewComfyOutlined.js b/packages/material-ui-icons/lib/ViewComfyOutlined.js index 019330207081d9..2723f28fd6722c 100644 --- a/packages/material-ui-icons/lib/ViewComfyOutlined.js +++ b/packages/material-ui-icons/lib/ViewComfyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h19V5H3zm17 4h-2.25V7H20v2zM9.25 11h2.25v2H9.25v-2zm-2 2H5v-2h2.25v2zm4.25-4H9.25V7h2.25v2zm2-2h2.25v2H13.5V7zm-2 8v2H9.25v-2h2.25zm2 0h2.25v2H13.5v-2zm0-2v-2h2.25v2H13.5zm4.25-2H20v2h-2.25v-2zM7.25 7v2H5V7h2.25zM5 15h2.25v2H5v-2zm12.75 2v-2H20v2h-2.25z" -}), 'ViewComfyOutlined'); \ No newline at end of file +}), 'ViewComfyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewComfyRounded.js b/packages/material-ui-icons/lib/ViewComfyRounded.js index 5d0d6e6edf1840..cbe8824ff347c8 100644 --- a/packages/material-ui-icons/lib/ViewComfyRounded.js +++ b/packages/material-ui-icons/lib/ViewComfyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h4V5H5c-1.1 0-2 .9-2 2v2zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM5 19h2v-4H3v2c0 1.1.9 2 2 2zm3 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h2c1.1 0 2-.9 2-2v-2h-4v4zm0-14v4h4V7c0-1.1-.9-2-2-2h-2z" -}), 'ViewComfyRounded'); \ No newline at end of file +}), 'ViewComfyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewComfySharp.js b/packages/material-ui-icons/lib/ViewComfySharp.js index 3df203087c3461..9c2c27a5ae1cbc 100644 --- a/packages/material-ui-icons/lib/ViewComfySharp.js +++ b/packages/material-ui-icons/lib/ViewComfySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z" -}), 'ViewComfySharp'); \ No newline at end of file +}), 'ViewComfySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewComfyTwoTone.js b/packages/material-ui-icons/lib/ViewComfyTwoTone.js index 6504e31bc019d7..9eb7e992664c4c 100644 --- a/packages/material-ui-icons/lib/ViewComfyTwoTone.js +++ b/packages/material-ui-icons/lib/ViewComfyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.25 11h2.25v2H9.25zm0 4h2.25v2H9.25zm0-8h2.25v2H9.25zm4.25 8h2.25v2H13.5zM5 15h2.25v2H5zm0-4h2.25v2H5zm0-4h2.25v2H5zm12.75 0H20v2h-2.25zm-4.25 4h2.25v2H13.5zm0-4h2.25v2H13.5zm4.25 8H20v2h-2.25zm0-4H20v2h-2.25z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h19V5H3zm4.25 12H5v-2h2.25v2zm0-4H5v-2h2.25v2zm0-4H5V7h2.25v2zm4.25 8H9.25v-2h2.25v2zm0-4H9.25v-2h2.25v2zm0-4H9.25V7h2.25v2zm4.25 8H13.5v-2h2.25v2zm0-4H13.5v-2h2.25v2zm0-4H13.5V7h2.25v2zM20 17h-2.25v-2H20v2zm0-4h-2.25v-2H20v2zm0-4h-2.25V7H20v2z" -}, "1")], 'ViewComfyTwoTone'); \ No newline at end of file +}, "1")], 'ViewComfyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCompact.js b/packages/material-ui-icons/lib/ViewCompact.js index 644c2fe200543e..81e5e208ea7a5c 100644 --- a/packages/material-ui-icons/lib/ViewCompact.js +++ b/packages/material-ui-icons/lib/ViewCompact.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z" -}), 'ViewCompact'); \ No newline at end of file +}), 'ViewCompact'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCompactOutlined.js b/packages/material-ui-icons/lib/ViewCompactOutlined.js index 2a315f9d424182..282535d4b80e60 100644 --- a/packages/material-ui-icons/lib/ViewCompactOutlined.js +++ b/packages/material-ui-icons/lib/ViewCompactOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h19V5H3zm2 2h15v4H5V7zm0 10v-4h4v4H5zm6 0v-4h9v4h-9z" -}), 'ViewCompactOutlined'); \ No newline at end of file +}), 'ViewCompactOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCompactRounded.js b/packages/material-ui-icons/lib/ViewCompactRounded.js index 5fa052fe02c9b7..a5391e875be137 100644 --- a/packages/material-ui-icons/lib/ViewCompactRounded.js +++ b/packages/material-ui-icons/lib/ViewCompactRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 19h4v-7H3v5c0 1.1.9 2 2 2zm5 0h10c1.1 0 2-.9 2-2v-5H10v7zM3 7v4h19V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2z" -}), 'ViewCompactRounded'); \ No newline at end of file +}), 'ViewCompactRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCompactSharp.js b/packages/material-ui-icons/lib/ViewCompactSharp.js index 61f3e8c03767f4..62af2f685da9ee 100644 --- a/packages/material-ui-icons/lib/ViewCompactSharp.js +++ b/packages/material-ui-icons/lib/ViewCompactSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z" -}), 'ViewCompactSharp'); \ No newline at end of file +}), 'ViewCompactSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewCompactTwoTone.js b/packages/material-ui-icons/lib/ViewCompactTwoTone.js index 93f699770e7104..d5b94046d0b44d 100644 --- a/packages/material-ui-icons/lib/ViewCompactTwoTone.js +++ b/packages/material-ui-icons/lib/ViewCompactTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11 13h9v4h-9zm-6 0h4v4H5zm0-6h15v4H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h19V5H3zm6 12H5v-4h4v4zm11 0h-9v-4h9v4zm0-6H5V7h15v4z" -}, "1")], 'ViewCompactTwoTone'); \ No newline at end of file +}, "1")], 'ViewCompactTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewDay.js b/packages/material-ui-icons/lib/ViewDay.js index e02e19da31be3b..9ec6efff74eafa 100644 --- a/packages/material-ui-icons/lib/ViewDay.js +++ b/packages/material-ui-icons/lib/ViewDay.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 21h19v-3H2v3zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 3v3h19V3H2z" -}), 'ViewDay'); \ No newline at end of file +}), 'ViewDay'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewDayOutlined.js b/packages/material-ui-icons/lib/ViewDayOutlined.js index f3951c2265e1f4..bd0860fef7b8b7 100644 --- a/packages/material-ui-icons/lib/ViewDayOutlined.js +++ b/packages/material-ui-icons/lib/ViewDayOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z" -}), 'ViewDayOutlined'); \ No newline at end of file +}), 'ViewDayOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewDayRounded.js b/packages/material-ui-icons/lib/ViewDayRounded.js index c592adb256a430..7d04f032c040f3 100644 --- a/packages/material-ui-icons/lib/ViewDayRounded.js +++ b/packages/material-ui-icons/lib/ViewDayRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 21h17c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 4v1c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1z" -}), 'ViewDayRounded'); \ No newline at end of file +}), 'ViewDayRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewDaySharp.js b/packages/material-ui-icons/lib/ViewDaySharp.js index 4089a8fe4cc002..3986b8c342eefc 100644 --- a/packages/material-ui-icons/lib/ViewDaySharp.js +++ b/packages/material-ui-icons/lib/ViewDaySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 21h19v-3H2v3zM21 8H2v8h19V8zM2 3v3h19V3H2z" -}), 'ViewDaySharp'); \ No newline at end of file +}), 'ViewDaySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewDayTwoTone.js b/packages/material-ui-icons/lib/ViewDayTwoTone.js index 2c81f247885a81..dba29b72f21602 100644 --- a/packages/material-ui-icons/lib/ViewDayTwoTone.js +++ b/packages/material-ui-icons/lib/ViewDayTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 10h15v4H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 18h19v2H2zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6H4v-4h15v4zM2 4h19v2H2z" -}, "1")], 'ViewDayTwoTone'); \ No newline at end of file +}, "1")], 'ViewDayTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewHeadline.js b/packages/material-ui-icons/lib/ViewHeadline.js index 830eb5af5c88e5..50fae5a158913e 100644 --- a/packages/material-ui-icons/lib/ViewHeadline.js +++ b/packages/material-ui-icons/lib/ViewHeadline.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" -}), 'ViewHeadline'); \ No newline at end of file +}), 'ViewHeadline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewHeadlineOutlined.js b/packages/material-ui-icons/lib/ViewHeadlineOutlined.js index 6867137a5bc07d..eaf004176cd0bd 100644 --- a/packages/material-ui-icons/lib/ViewHeadlineOutlined.js +++ b/packages/material-ui-icons/lib/ViewHeadlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" -}), 'ViewHeadlineOutlined'); \ No newline at end of file +}), 'ViewHeadlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewHeadlineRounded.js b/packages/material-ui-icons/lib/ViewHeadlineRounded.js index a7dcdf52372644..92e5749f3f497b 100644 --- a/packages/material-ui-icons/lib/ViewHeadlineRounded.js +++ b/packages/material-ui-icons/lib/ViewHeadlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" -}), 'ViewHeadlineRounded'); \ No newline at end of file +}), 'ViewHeadlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewHeadlineSharp.js b/packages/material-ui-icons/lib/ViewHeadlineSharp.js index 0b994251b40ba4..a4550a6c6a131e 100644 --- a/packages/material-ui-icons/lib/ViewHeadlineSharp.js +++ b/packages/material-ui-icons/lib/ViewHeadlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" -}), 'ViewHeadlineSharp'); \ No newline at end of file +}), 'ViewHeadlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewHeadlineTwoTone.js b/packages/material-ui-icons/lib/ViewHeadlineTwoTone.js index c07554abfcab3d..1962207bb89360 100644 --- a/packages/material-ui-icons/lib/ViewHeadlineTwoTone.js +++ b/packages/material-ui-icons/lib/ViewHeadlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" -}), 'ViewHeadlineTwoTone'); \ No newline at end of file +}), 'ViewHeadlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewInAr.js b/packages/material-ui-icons/lib/ViewInAr.js index e76d005dbaa7f4..a66bf1d03c297e 100644 --- a/packages/material-ui-icons/lib/ViewInAr.js +++ b/packages/material-ui-icons/lib/ViewInAr.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m18.25 7.6-5.5-3.18c-.46-.27-1.04-.27-1.5 0L5.75 7.6c-.46.27-.75.76-.75 1.3v6.35c0 .54.29 1.03.75 1.3l5.5 3.18c.46.27 1.04.27 1.5 0l5.5-3.18c.46-.27.75-.76.75-1.3V8.9c0-.54-.29-1.03-.75-1.3zM7 14.96v-4.62l4 2.32v4.61l-4-2.31zm5-4.03L8 8.61l4-2.31 4 2.31-4 2.32zm1 6.34v-4.61l4-2.32v4.62l-4 2.31zM7 2H3.5C2.67 2 2 2.67 2 3.5V7h2V4h3V2zm10 0h3.5c.83 0 1.5.67 1.5 1.5V7h-2V4h-3V2zM7 22H3.5c-.83 0-1.5-.67-1.5-1.5V17h2v3h3v2zm10 0h3.5c.83 0 1.5-.67 1.5-1.5V17h-2v3h-3v2z" -}), 'ViewInAr'); \ No newline at end of file +}), 'ViewInAr'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewInArOutlined.js b/packages/material-ui-icons/lib/ViewInArOutlined.js index 122cfe06cc47ae..c45d795dc7c02e 100644 --- a/packages/material-ui-icons/lib/ViewInArOutlined.js +++ b/packages/material-ui-icons/lib/ViewInArOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4c0-.55.45-1 1-1h2V1H4C2.34 1 1 2.34 1 4v2h2V4zm0 16v-2H1v2c0 1.66 1.34 3 3 3h2v-2H4c-.55 0-1-.45-1-1zM20 1h-2v2h2c.55 0 1 .45 1 1v2h2V4c0-1.66-1.34-3-3-3zm1 19c0 .55-.45 1-1 1h-2v2h2c1.66 0 3-1.34 3-3v-2h-2v2zm-2-5.13V9.13c0-.72-.38-1.38-1-1.73l-5-2.88c-.31-.18-.65-.27-1-.27s-.69.09-1 .27L6 7.39c-.62.36-1 1.02-1 1.74v5.74c0 .72.38 1.38 1 1.73l5 2.88c.31.18.65.27 1 .27s.69-.09 1-.27l5-2.88c.62-.35 1-1.01 1-1.73zm-8 2.3-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" -}), 'ViewInArOutlined'); \ No newline at end of file +}), 'ViewInArOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewInArRounded.js b/packages/material-ui-icons/lib/ViewInArRounded.js index eaa31ece13ab88..2a7dae813c90f3 100644 --- a/packages/material-ui-icons/lib/ViewInArRounded.js +++ b/packages/material-ui-icons/lib/ViewInArRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 6c.55 0 1-.45 1-1V4c0-.55.45-1 1-1h1c.55 0 1-.45 1-1s-.45-1-1-1H4C2.34 1 1 2.34 1 4v1c0 .55.45 1 1 1zm3 15H4c-.55 0-1-.45-1-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1c0 1.66 1.34 3 3 3h1c.55 0 1-.45 1-1s-.45-1-1-1zM20 1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1 .45 1 1v1c0 .55.45 1 1 1s1-.45 1-1V4c0-1.66-1.34-3-3-3zm2 17c-.55 0-1 .45-1 1v1c0 .55-.45 1-1 1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c1.66 0 3-1.34 3-3v-1c0-.55-.45-1-1-1zm-3-3.13V9.13c0-.72-.38-1.38-1-1.73l-5-2.88c-.31-.18-.65-.27-1-.27s-.69.09-1 .27L6 7.39c-.62.36-1 1.02-1 1.74v5.74c0 .72.38 1.38 1 1.73l5 2.88c.31.18.65.27 1 .27s.69-.09 1-.27l5-2.88c.62-.35 1-1.01 1-1.73zm-8 2.3-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" -}), 'ViewInArRounded'); \ No newline at end of file +}), 'ViewInArRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewInArSharp.js b/packages/material-ui-icons/lib/ViewInArSharp.js index e3c12bf0dbf879..1ace389a86d7a3 100644 --- a/packages/material-ui-icons/lib/ViewInArSharp.js +++ b/packages/material-ui-icons/lib/ViewInArSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 1v2h3v3h2V1zm3 20h-3v2h5v-5h-2zM3 3h3V1H1v5h2zm0 15H1v5h5v-2H3zM19 7.97l-7-4.03-7 4.03v8.06l7 4.03 7-4.03V7.97zm-8 9.2-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" -}), 'ViewInArSharp'); \ No newline at end of file +}), 'ViewInArSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewInArTwoTone.js b/packages/material-ui-icons/lib/ViewInArTwoTone.js index 3184d3807c6a0f..6d65ed52ecaee8 100644 --- a/packages/material-ui-icons/lib/ViewInArTwoTone.js +++ b/packages/material-ui-icons/lib/ViewInArTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m13 17.17 4-2.3v-4.63l-4 2.33zM12 6.25 8.04 8.53 12 10.84l3.96-2.31zm-5 8.62 4 2.3v-4.6l-4-2.33z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4c0-.55.45-1 1-1h2V1H4C2.34 1 1 2.34 1 4v2h2V4zm0 16v-2H1v2c0 1.66 1.34 3 3 3h2v-2H4c-.55 0-1-.45-1-1zM20 1h-2v2h2c.55 0 1 .45 1 1v2h2V4c0-1.66-1.34-3-3-3zm1 19c0 .55-.45 1-1 1h-2v2h2c1.66 0 3-1.34 3-3v-2h-2v2zm-2-5.13V9.13c0-.72-.38-1.38-1-1.73l-5-2.88c-.31-.18-.65-.27-1-.27s-.69.09-1 .27L6 7.39c-.62.36-1 1.02-1 1.74v5.74c0 .72.38 1.38 1 1.73l5 2.88c.31.18.65.27 1 .27s.69-.09 1-.27l5-2.88c.62-.35 1-1.01 1-1.73zm-8 2.3-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" -}, "1")], 'ViewInArTwoTone'); \ No newline at end of file +}, "1")], 'ViewInArTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewList.js b/packages/material-ui-icons/lib/ViewList.js index fd9df2321a54d8..e8b3c46a831bc9 100644 --- a/packages/material-ui-icons/lib/ViewList.js +++ b/packages/material-ui-icons/lib/ViewList.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h4v-4H3v4zm0 5h4v-4H3v4zM3 9h4V5H3v4zm5 5h13v-4H8v4zm0 5h13v-4H8v4zM8 5v4h13V5H8z" -}), 'ViewList'); \ No newline at end of file +}), 'ViewList'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewListOutlined.js b/packages/material-ui-icons/lib/ViewListOutlined.js index 09ba804b680b40..895c64fc5ad15b 100644 --- a/packages/material-ui-icons/lib/ViewListOutlined.js +++ b/packages/material-ui-icons/lib/ViewListOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm4 2v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm14 2H9v-2h10v2zm0-4H9v-2h10v2zm0-4H9V7h10v2z" -}), 'ViewListOutlined'); \ No newline at end of file +}), 'ViewListOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewListRounded.js b/packages/material-ui-icons/lib/ViewListRounded.js index 0c67098aeab605..aeaead86a28cd7 100644 --- a/packages/material-ui-icons/lib/ViewListRounded.js +++ b/packages/material-ui-icons/lib/ViewListRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 14h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 5h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zM4 9h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm5 5h11c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 5h11c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zM8 6v2c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1z" -}), 'ViewListRounded'); \ No newline at end of file +}), 'ViewListRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewListSharp.js b/packages/material-ui-icons/lib/ViewListSharp.js index c7f589532a747c..9eab2542c0576c 100644 --- a/packages/material-ui-icons/lib/ViewListSharp.js +++ b/packages/material-ui-icons/lib/ViewListSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 14h4v-4H3v4zm0 5h4v-4H3v4zM3 9h4V5H3v4zm5 5h13v-4H8v4zm0 5h13v-4H8v4zM8 5v4h13V5H8z" -}), 'ViewListSharp'); \ No newline at end of file +}), 'ViewListSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewListTwoTone.js b/packages/material-ui-icons/lib/ViewListTwoTone.js index f72630ef378fb9..97c3aa865c73c6 100644 --- a/packages/material-ui-icons/lib/ViewListTwoTone.js +++ b/packages/material-ui-icons/lib/ViewListTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 7v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm14 2H9v-2h10v2zm0-4H9v-2h10v2zm0-4H9V7h10v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm4 2v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm14 2H9v-2h10v2zm0-4H9v-2h10v2zm0-4H9V7h10v2z" -}, "1")], 'ViewListTwoTone'); \ No newline at end of file +}, "1")], 'ViewListTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewModule.js b/packages/material-ui-icons/lib/ViewModule.js index f5a93e93edb3a1..c0c687ad63f942 100644 --- a/packages/material-ui-icons/lib/ViewModule.js +++ b/packages/material-ui-icons/lib/ViewModule.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.67 5v6.5H9.33V5h5.34zm1 6.5H21V5h-5.33v6.5zm-1 7.5v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zm-7.34 0H3V19h5.33v-6.5zm0-1V5H3v6.5h5.33z" -}), 'ViewModule'); \ No newline at end of file +}), 'ViewModule'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewModuleOutlined.js b/packages/material-ui-icons/lib/ViewModuleOutlined.js index b5c16043c0e600..03a39257bd6eac 100644 --- a/packages/material-ui-icons/lib/ViewModuleOutlined.js +++ b/packages/material-ui-icons/lib/ViewModuleOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm16 6h-3.33V7H19v4zm-5.33 0h-3.33V7h3.33v4zM8.33 7v4H5V7h3.33zM5 17v-4h3.33v4H5zm5.33 0v-4h3.33v4h-3.33zm5.34 0v-4H19v4h-3.33z" -}), 'ViewModuleOutlined'); \ No newline at end of file +}), 'ViewModuleOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewModuleRounded.js b/packages/material-ui-icons/lib/ViewModuleRounded.js index 9b3b7892877be9..5bb01db2a48f74 100644 --- a/packages/material-ui-icons/lib/ViewModuleRounded.js +++ b/packages/material-ui-icons/lib/ViewModuleRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.67 6v4.5c0 .55-.45 1-1 1h-3.33c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.33c.55 0 1 .45 1 1zm2 5.5H20c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1v4.5c0 .55.44 1 1 1zm-2 6.5v-4.5c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1V18c0 .55.45 1 1 1h3.33c.55 0 1-.45 1-1zm1-4.5V18c0 .55.45 1 1 1H20c.55 0 1-.45 1-1v-4.5c0-.55-.45-1-1-1h-3.33c-.56 0-1 .45-1 1zm-8.34-1H4c-.55 0-1 .45-1 1V18c0 .55.45 1 1 1h3.33c.55 0 1-.45 1-1v-4.5c0-.55-.44-1-1-1zm1-2V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4.5c0 .55.45 1 1 1h3.33c.56 0 1-.45 1-1z" -}), 'ViewModuleRounded'); \ No newline at end of file +}), 'ViewModuleRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewModuleSharp.js b/packages/material-ui-icons/lib/ViewModuleSharp.js index c78e74065b46e2..81b203f81c0de4 100644 --- a/packages/material-ui-icons/lib/ViewModuleSharp.js +++ b/packages/material-ui-icons/lib/ViewModuleSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.67 5v6.5H9.33V5h5.34zm1 6.5H21V5h-5.33v6.5zm-1 7.5v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zm-7.34 0H3V19h5.33v-6.5zm0-1V5H3v6.5h5.33z" -}), 'ViewModuleSharp'); \ No newline at end of file +}), 'ViewModuleSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewModuleTwoTone.js b/packages/material-ui-icons/lib/ViewModuleTwoTone.js index f687cfcc0a32ab..cd7bf24d170124 100644 --- a/packages/material-ui-icons/lib/ViewModuleTwoTone.js +++ b/packages/material-ui-icons/lib/ViewModuleTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 11h-3.33V7H19v4zm-5.33 0h-3.33V7h3.33v4zM8.33 7v4H5V7h3.33zM5 17v-4h3.33v4H5zm5.33 0v-4h3.33v4h-3.33zm5.34 0v-4H19v4h-3.33z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm16 6h-3.33V7H19v4zm-5.33 0h-3.33V7h3.33v4zM8.33 7v4H5V7h3.33zM5 17v-4h3.33v4H5zm5.33 0v-4h3.33v4h-3.33zm5.34 0v-4H19v4h-3.33z" -}, "1")], 'ViewModuleTwoTone'); \ No newline at end of file +}, "1")], 'ViewModuleTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewQuilt.js b/packages/material-ui-icons/lib/ViewQuilt.js index f96a9de961f543..a7ad50c5a100b3 100644 --- a/packages/material-ui-icons/lib/ViewQuilt.js +++ b/packages/material-ui-icons/lib/ViewQuilt.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5v6.5H9.33V5H21zm-6.33 14v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zM8.33 19V5H3v14h5.33z" -}), 'ViewQuilt'); \ No newline at end of file +}), 'ViewQuilt'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewQuiltOutlined.js b/packages/material-ui-icons/lib/ViewQuiltOutlined.js index bdbeaa1dd77ea6..492466d4cfdaa5 100644 --- a/packages/material-ui-icons/lib/ViewQuiltOutlined.js +++ b/packages/material-ui-icons/lib/ViewQuiltOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33v-4h3.33v4zM19 17h-3.33v-4H19v4zm0-6h-8.67V7H19v4z" -}), 'ViewQuiltOutlined'); \ No newline at end of file +}), 'ViewQuiltOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewQuiltRounded.js b/packages/material-ui-icons/lib/ViewQuiltRounded.js index ba66be382c8c94..9678f40cc1c923 100644 --- a/packages/material-ui-icons/lib/ViewQuiltRounded.js +++ b/packages/material-ui-icons/lib/ViewQuiltRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 6v4.5c0 .55-.45 1-1 1h-9.67c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1H20c.55 0 1 .45 1 1zm-6.33 12v-4.5c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1V18c0 .55.45 1 1 1h3.33c.55 0 1-.45 1-1zm1-4.5V18c0 .55.45 1 1 1H20c.55 0 1-.45 1-1v-4.5c0-.55-.45-1-1-1h-3.33c-.56 0-1 .45-1 1zM8.33 18V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.33c.56 0 1-.45 1-1z" -}), 'ViewQuiltRounded'); \ No newline at end of file +}), 'ViewQuiltRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewQuiltSharp.js b/packages/material-ui-icons/lib/ViewQuiltSharp.js index 0e85dd51dcda15..155786fb534a48 100644 --- a/packages/material-ui-icons/lib/ViewQuiltSharp.js +++ b/packages/material-ui-icons/lib/ViewQuiltSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5v6.5H9.33V5H21zm-6.33 14v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zM8.33 19V5H3v14h5.33z" -}), 'ViewQuiltSharp'); \ No newline at end of file +}), 'ViewQuiltSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewQuiltTwoTone.js b/packages/material-ui-icons/lib/ViewQuiltTwoTone.js index 9e6b8f1ad5b911..e67be7c33798ef 100644 --- a/packages/material-ui-icons/lib/ViewQuiltTwoTone.js +++ b/packages/material-ui-icons/lib/ViewQuiltTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8.33 17H5V7h3.33v10zm5.34 0h-3.33v-4h3.33v4zM19 17h-3.33v-4H19v4zm0-6h-8.67V7H19v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33v-4h3.33v4zM19 17h-3.33v-4H19v4zm0-6h-8.67V7H19v4z" -}, "1")], 'ViewQuiltTwoTone'); \ No newline at end of file +}, "1")], 'ViewQuiltTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewSidebar.js b/packages/material-ui-icons/lib/ViewSidebar.js index 81549137e9a6e1..c766b29df09744 100644 --- a/packages/material-ui-icons/lib/ViewSidebar.js +++ b/packages/material-ui-icons/lib/ViewSidebar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 20H2V4h14v16zm2-12h4V4h-4v4zm0 12h4v-4h-4v4zm0-6h4v-4h-4v4z" -}), 'ViewSidebar'); \ No newline at end of file +}), 'ViewSidebar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewSidebarOutlined.js b/packages/material-ui-icons/lib/ViewSidebarOutlined.js index ccd2227bb986d2..9058d18f474351 100644 --- a/packages/material-ui-icons/lib/ViewSidebarOutlined.js +++ b/packages/material-ui-icons/lib/ViewSidebarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4v16h20V4H2zm18 4.67h-2.5V6H20v2.67zm-2.5 2H20v2.67h-2.5v-2.67zM4 6h11.5v12H4V6zm13.5 12v-2.67H20V18h-2.5z" -}), 'ViewSidebarOutlined'); \ No newline at end of file +}), 'ViewSidebarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewSidebarRounded.js b/packages/material-ui-icons/lib/ViewSidebarRounded.js index e6660f4fef5942..9df0e84d496c85 100644 --- a/packages/material-ui-icons/lib/ViewSidebarRounded.js +++ b/packages/material-ui-icons/lib/ViewSidebarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 20H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1zm4-12h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 12h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0-6h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1z" -}), 'ViewSidebarRounded'); \ No newline at end of file +}), 'ViewSidebarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewSidebarSharp.js b/packages/material-ui-icons/lib/ViewSidebarSharp.js index 71788a120a54eb..cfe0d554465d7d 100644 --- a/packages/material-ui-icons/lib/ViewSidebarSharp.js +++ b/packages/material-ui-icons/lib/ViewSidebarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 20H2V4h14v16zm2-12h4V4h-4v4zm0 12h4v-4h-4v4zm0-6h4v-4h-4v4z" -}), 'ViewSidebarSharp'); \ No newline at end of file +}), 'ViewSidebarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewSidebarTwoTone.js b/packages/material-ui-icons/lib/ViewSidebarTwoTone.js index 31293e34eaeb5d..9d668e00be8d26 100644 --- a/packages/material-ui-icons/lib/ViewSidebarTwoTone.js +++ b/packages/material-ui-icons/lib/ViewSidebarTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 8.67h-2.5V6H20v2.67zm-2.5 2H20v2.67h-2.5v-2.67zM4 6h11.5v12H4V6zm13.5 12v-2.67H20V18h-2.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2 4v16h20V4H2zm18 4.67h-2.5V6H20v2.67zm-2.5 2H20v2.67h-2.5v-2.67zM4 6h11.5v12H4V6zm13.5 12v-2.67H20V18h-2.5z" -}, "1")], 'ViewSidebarTwoTone'); \ No newline at end of file +}, "1")], 'ViewSidebarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewStream.js b/packages/material-ui-icons/lib/ViewStream.js index 7fe5432b2483b4..f32b53991a5ed0 100644 --- a/packages/material-ui-icons/lib/ViewStream.js +++ b/packages/material-ui-icons/lib/ViewStream.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17v-2c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2zM3 7v2c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2z" -}), 'ViewStream'); \ No newline at end of file +}), 'ViewStream'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewStreamOutlined.js b/packages/material-ui-icons/lib/ViewStreamOutlined.js index 2fdf12b6a2e821..07f2fa00a9a29b 100644 --- a/packages/material-ui-icons/lib/ViewStreamOutlined.js +++ b/packages/material-ui-icons/lib/ViewStreamOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 10H5v-4h14v4zM5 11V7h14v4H5z" -}), 'ViewStreamOutlined'); \ No newline at end of file +}), 'ViewStreamOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewStreamRounded.js b/packages/material-ui-icons/lib/ViewStreamRounded.js index fd7b38b07b3bd3..a8cf515361cac4 100644 --- a/packages/material-ui-icons/lib/ViewStreamRounded.js +++ b/packages/material-ui-icons/lib/ViewStreamRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 17v-2c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2zM3 7v2c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2z" -}), 'ViewStreamRounded'); \ No newline at end of file +}), 'ViewStreamRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewStreamSharp.js b/packages/material-ui-icons/lib/ViewStreamSharp.js index 8d53743b347ff2..1ce8b96abd20b0 100644 --- a/packages/material-ui-icons/lib/ViewStreamSharp.js +++ b/packages/material-ui-icons/lib/ViewStreamSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19v-6h18v6H3zM3 5v6h18V5H3z" -}), 'ViewStreamSharp'); \ No newline at end of file +}), 'ViewStreamSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewStreamTwoTone.js b/packages/material-ui-icons/lib/ViewStreamTwoTone.js index b00023c1ea2555..44a56ea1164ccd 100644 --- a/packages/material-ui-icons/lib/ViewStreamTwoTone.js +++ b/packages/material-ui-icons/lib/ViewStreamTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 17H5v-4h14v4zM5 11V7h14v4H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 7v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 10H5v-4h14v4zM5 11V7h14v4H5z" -}, "1")], 'ViewStreamTwoTone'); \ No newline at end of file +}, "1")], 'ViewStreamTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewWeek.js b/packages/material-ui-icons/lib/ViewWeek.js index cd22f46907050e..f02694417bd645 100644 --- a/packages/material-ui-icons/lib/ViewWeek.js +++ b/packages/material-ui-icons/lib/ViewWeek.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.33 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h1.33c1.1 0 2 .9 2 2v12c0 1.1-.89 2-2 2zM22 18V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2H20c1.11 0 2-.9 2-2zm-7.33 0V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h1.33c1.1 0 2-.9 2-2z" -}), 'ViewWeek'); \ No newline at end of file +}), 'ViewWeek'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewWeekOutlined.js b/packages/material-ui-icons/lib/ViewWeekOutlined.js index daedd9b2890a29..d234377c1bc5ca 100644 --- a/packages/material-ui-icons/lib/ViewWeekOutlined.js +++ b/packages/material-ui-icons/lib/ViewWeekOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z" -}), 'ViewWeekOutlined'); \ No newline at end of file +}), 'ViewWeekOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewWeekRounded.js b/packages/material-ui-icons/lib/ViewWeekRounded.js index e06293d1b4ab98..60c8b827c21b30 100644 --- a/packages/material-ui-icons/lib/ViewWeekRounded.js +++ b/packages/material-ui-icons/lib/ViewWeekRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.33 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h1.33c1.1 0 2 .9 2 2v12c0 1.1-.89 2-2 2zM22 18V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2H20c1.11 0 2-.9 2-2zm-7.33 0V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h1.33c1.1 0 2-.9 2-2z" -}), 'ViewWeekRounded'); \ No newline at end of file +}), 'ViewWeekRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewWeekSharp.js b/packages/material-ui-icons/lib/ViewWeekSharp.js index a8308d47ca7575..c62b47d2f7e960 100644 --- a/packages/material-ui-icons/lib/ViewWeekSharp.js +++ b/packages/material-ui-icons/lib/ViewWeekSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.33 20H2V4h5.33v16zM22 20V4h-5.33v16H22zm-7.33 0V4H9.33v16h5.34z" -}), 'ViewWeekSharp'); \ No newline at end of file +}), 'ViewWeekSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ViewWeekTwoTone.js b/packages/material-ui-icons/lib/ViewWeekTwoTone.js index aa176de42dfd60..aeeed11e2104ff 100644 --- a/packages/material-ui-icons/lib/ViewWeekTwoTone.js +++ b/packages/material-ui-icons/lib/ViewWeekTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z" -}, "1")], 'ViewWeekTwoTone'); \ No newline at end of file +}, "1")], 'ViewWeekTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Vignette.js b/packages/material-ui-icons/lib/Vignette.js index 5e8e3fbf47daf0..803616a9bbd55c 100644 --- a/packages/material-ui-icons/lib/Vignette.js +++ b/packages/material-ui-icons/lib/Vignette.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" -}), 'Vignette'); \ No newline at end of file +}), 'Vignette'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VignetteOutlined.js b/packages/material-ui-icons/lib/VignetteOutlined.js index 476fbc534cd9fa..998c7572ab68b3 100644 --- a/packages/material-ui-icons/lib/VignetteOutlined.js +++ b/packages/material-ui-icons/lib/VignetteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 5v14H3V5h18m0-2H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 5c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4m0-2c-4.42 0-8 2.69-8 6s3.58 6 8 6 8-2.69 8-6-3.58-6-8-6z" -}), 'VignetteOutlined'); \ No newline at end of file +}), 'VignetteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VignetteRounded.js b/packages/material-ui-icons/lib/VignetteRounded.js index e8fe2f0c1d16a6..554d6ddc631682 100644 --- a/packages/material-ui-icons/lib/VignetteRounded.js +++ b/packages/material-ui-icons/lib/VignetteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" -}), 'VignetteRounded'); \ No newline at end of file +}), 'VignetteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VignetteSharp.js b/packages/material-ui-icons/lib/VignetteSharp.js index 63c1d23fe7e09c..6729361596940f 100644 --- a/packages/material-ui-icons/lib/VignetteSharp.js +++ b/packages/material-ui-icons/lib/VignetteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23 3H1v18h22V3zM12 18c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" -}), 'VignetteSharp'); \ No newline at end of file +}), 'VignetteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VignetteTwoTone.js b/packages/material-ui-icons/lib/VignetteTwoTone.js index d1977c7a5e1c6b..585e7490c87152 100644 --- a/packages/material-ui-icons/lib/VignetteTwoTone.js +++ b/packages/material-ui-icons/lib/VignetteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 19h18V5H3v14zm9-13c4.42 0 8 2.69 8 6s-3.58 6-8 6-8-2.69-8-6 3.58-6 8-6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-9-1c4.42 0 8-2.69 8-6s-3.58-6-8-6-8 2.69-8 6 3.58 6 8 6zm0-10c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4z" -}, "1")], 'VignetteTwoTone'); \ No newline at end of file +}, "1")], 'VignetteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Villa.js b/packages/material-ui-icons/lib/Villa.js index a48988b4e3ebeb..49e68f066aa880 100644 --- a/packages/material-ui-icons/lib/Villa.js +++ b/packages/material-ui-icons/lib/Villa.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21H3V8l13-5v7H7v11zm12-11c-1.1 0-2 .9-2 2H9v9h5v-5h2v5h5v-9c0-1.1-.9-2-2-2z" -}), 'Villa'); \ No newline at end of file +}), 'Villa'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VillaOutlined.js b/packages/material-ui-icons/lib/VillaOutlined.js index 051c05d0b7322c..65e40d32dc2e4b 100644 --- a/packages/material-ui-icons/lib/VillaOutlined.js +++ b/packages/material-ui-icons/lib/VillaOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10c-1.1 0-2 .9-2 2h-1V3L3 8v13h18v-9c0-1.1-.9-2-2-2zM5 9.37l9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z" -}), 'VillaOutlined'); \ No newline at end of file +}), 'VillaOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VillaRounded.js b/packages/material-ui-icons/lib/VillaRounded.js index 8742c4243c6956..a1b59d92870f58 100644 --- a/packages/material-ui-icons/lib/VillaRounded.js +++ b/packages/material-ui-icons/lib/VillaRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21H4c-.55 0-1-.45-1-1V8.69c0-.42.25-.79.64-.94l11-4.23c.66-.25 1.36.23 1.36.94V10H8c-.55 0-1 .45-1 1v10zm10-9h-7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h4v-4c0-.55.45-1 1-1s1 .45 1 1v4h4c.55 0 1-.45 1-1v-8c0-1.1-.9-2-2-2s-2 .9-2 2z" -}), 'VillaRounded'); \ No newline at end of file +}), 'VillaRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VillaSharp.js b/packages/material-ui-icons/lib/VillaSharp.js index ba1e75f9fe2f87..fc613f7db84da8 100644 --- a/packages/material-ui-icons/lib/VillaSharp.js +++ b/packages/material-ui-icons/lib/VillaSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 21H3V8l13-5v7H7v11zm12-11c-1.1 0-2 .9-2 2H9v9h5v-5h2v5h5v-9c0-1.1-.9-2-2-2z" -}), 'VillaSharp'); \ No newline at end of file +}), 'VillaSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VillaTwoTone.js b/packages/material-ui-icons/lib/VillaTwoTone.js index 6d3e8486d61047..9358ae930bdd7c 100644 --- a/packages/material-ui-icons/lib/VillaTwoTone.js +++ b/packages/material-ui-icons/lib/VillaTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5 9.37 9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 10c-1.1 0-2 .9-2 2h-1V3L3 8v13h18v-9c0-1.1-.9-2-2-2zM5 9.37l9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z" -}, "1")], 'VillaTwoTone'); \ No newline at end of file +}, "1")], 'VillaTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Visibility.js b/packages/material-ui-icons/lib/Visibility.js index 2f2ea5e48de85c..028fab5c509595 100644 --- a/packages/material-ui-icons/lib/Visibility.js +++ b/packages/material-ui-icons/lib/Visibility.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'Visibility'); \ No newline at end of file +}), 'Visibility'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityOff.js b/packages/material-ui-icons/lib/VisibilityOff.js index 04bc9cd518c988..a02ea65ed0b834 100644 --- a/packages/material-ui-icons/lib/VisibilityOff.js +++ b/packages/material-ui-icons/lib/VisibilityOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78 3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z" -}), 'VisibilityOff'); \ No newline at end of file +}), 'VisibilityOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityOffOutlined.js b/packages/material-ui-icons/lib/VisibilityOffOutlined.js index b4f83382bfebfb..9eb42b119ee81f 100644 --- a/packages/material-ui-icons/lib/VisibilityOffOutlined.js +++ b/packages/material-ui-icons/lib/VisibilityOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5 2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4 1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z" -}), 'VisibilityOffOutlined'); \ No newline at end of file +}), 'VisibilityOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityOffRounded.js b/packages/material-ui-icons/lib/VisibilityOffRounded.js index 162092987e5e7f..cd4cee5496125c 100644 --- a/packages/material-ui-icons/lib/VisibilityOffRounded.js +++ b/packages/material-ui-icons/lib/VisibilityOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM2.71 3.16c-.39.39-.39 1.02 0 1.41l1.97 1.97C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l2.72 2.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.16c-.39-.39-1.03-.39-1.42 0zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z" -}), 'VisibilityOffRounded'); \ No newline at end of file +}), 'VisibilityOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityOffSharp.js b/packages/material-ui-icons/lib/VisibilityOffSharp.js index 7b0549a47a1d67..3ae4a349f0dbb3 100644 --- a/packages/material-ui-icons/lib/VisibilityOffSharp.js +++ b/packages/material-ui-icons/lib/VisibilityOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM3.42 2.45 2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l3.43 3.43 1.41-1.41L3.42 2.45zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z" -}), 'VisibilityOffSharp'); \ No newline at end of file +}), 'VisibilityOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityOffTwoTone.js b/packages/material-ui-icons/lib/VisibilityOffTwoTone.js index 9d20fefe4630ac..64644d49bf69e4 100644 --- a/packages/material-ui-icons/lib/VisibilityOffTwoTone.js +++ b/packages/material-ui-icons/lib/VisibilityOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 14c.04 0 .08-.01.12-.01l-2.61-2.61c0 .04-.01.08-.01.12 0 1.38 1.12 2.5 2.5 2.5zm1.01-4.79 1.28 1.28c-.26-.57-.71-1.03-1.28-1.28zm7.81 2.29C19.17 8.13 15.79 6 12 6c-.68 0-1.34.09-1.99.22l.92.92c.35-.09.7-.14 1.07-.14 2.48 0 4.5 2.02 4.5 4.5 0 .37-.06.72-.14 1.07l2.05 2.05c.98-.86 1.81-1.91 2.41-3.12zM12 17c.95 0 1.87-.13 2.75-.39l-.98-.98c-.54.24-1.14.37-1.77.37-2.48 0-4.5-2.02-4.5-4.5 0-.63.13-1.23.36-1.77L6.11 7.97c-1.22.91-2.23 2.1-2.93 3.52C4.83 14.86 8.21 17 12 17z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm2.28 4.49 2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.06-1.07.14L13 9.21c.58.25 1.03.71 1.28 1.28zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5 2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4 1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z" -}, "1")], 'VisibilityOffTwoTone'); \ No newline at end of file +}, "1")], 'VisibilityOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityOutlined.js b/packages/material-ui-icons/lib/VisibilityOutlined.js index 7b9182a0b6d4b4..bb6e86139d16d2 100644 --- a/packages/material-ui-icons/lib/VisibilityOutlined.js +++ b/packages/material-ui-icons/lib/VisibilityOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z" -}), 'VisibilityOutlined'); \ No newline at end of file +}), 'VisibilityOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityRounded.js b/packages/material-ui-icons/lib/VisibilityRounded.js index 0cef6a77bf3732..d2387b80fc8b21 100644 --- a/packages/material-ui-icons/lib/VisibilityRounded.js +++ b/packages/material-ui-icons/lib/VisibilityRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'VisibilityRounded'); \ No newline at end of file +}), 'VisibilityRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilitySharp.js b/packages/material-ui-icons/lib/VisibilitySharp.js index 2fb646dc328931..bd266ce6210c53 100644 --- a/packages/material-ui-icons/lib/VisibilitySharp.js +++ b/packages/material-ui-icons/lib/VisibilitySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" -}), 'VisibilitySharp'); \ No newline at end of file +}), 'VisibilitySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VisibilityTwoTone.js b/packages/material-ui-icons/lib/VisibilityTwoTone.js index e3997f4005996a..5df0fc45b057c2 100644 --- a/packages/material-ui-icons/lib/VisibilityTwoTone.js +++ b/packages/material-ui-icons/lib/VisibilityTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 6c-3.79 0-7.17 2.13-8.82 5.5C4.83 14.87 8.21 17 12 17s7.17-2.13 8.82-5.5C19.17 8.13 15.79 6 12 6zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7 12 7s4.5 2.02 4.5 4.5S14.48 16 12 16z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6s7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17zm0-10c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7zm0 7c-1.38 0-2.5-1.12-2.5-2.5S10.62 9 12 9s2.5 1.12 2.5 2.5S13.38 14 12 14z" -}, "1")], 'VisibilityTwoTone'); \ No newline at end of file +}, "1")], 'VisibilityTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceChat.js b/packages/material-ui-icons/lib/VoiceChat.js index b3ad9731bf1c78..c62cee9d41fa98 100644 --- a/packages/material-ui-icons/lib/VoiceChat.js +++ b/packages/material-ui-icons/lib/VoiceChat.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12-4-3.2V14H6V6h8v3.2L18 6v8z" -}), 'VoiceChat'); \ No newline at end of file +}), 'VoiceChat'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceChatOutlined.js b/packages/material-ui-icons/lib/VoiceChatOutlined.js index 288f05cd61fdcf..4d3316307b204a 100644 --- a/packages/material-ui-icons/lib/VoiceChatOutlined.js +++ b/packages/material-ui-icons/lib/VoiceChatOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4 3 2.4V7l-3 2.4V7H7v6h7z" -}), 'VoiceChatOutlined'); \ No newline at end of file +}), 'VoiceChatOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceChatRounded.js b/packages/material-ui-icons/lib/VoiceChatRounded.js index cc79385cbd8098..5693cd12dba82e 100644 --- a/packages/material-ui-icons/lib/VoiceChatRounded.js +++ b/packages/material-ui-icons/lib/VoiceChatRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3.62 10.7L14 10.8V13c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.2l2.38-1.9c.65-.52 1.62-.06 1.62.78v3.84c0 .84-.97 1.3-1.62.78z" -}), 'VoiceChatRounded'); \ No newline at end of file +}), 'VoiceChatRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceChatSharp.js b/packages/material-ui-icons/lib/VoiceChatSharp.js index fd0f555c169fdc..8166252d810fde 100644 --- a/packages/material-ui-icons/lib/VoiceChatSharp.js +++ b/packages/material-ui-icons/lib/VoiceChatSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2.01L2 22l4-4h16V2zm-4 12-4-3.2V14H6V6h8v3.2L18 6v8z" -}), 'VoiceChatSharp'); \ No newline at end of file +}), 'VoiceChatSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceChatTwoTone.js b/packages/material-ui-icons/lib/VoiceChatTwoTone.js index 9d327634ccd45a..81ca9ae2c9f47d 100644 --- a/packages/material-ui-icons/lib/VoiceChatTwoTone.js +++ b/packages/material-ui-icons/lib/VoiceChatTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17.17 5.17 16H20V4H4v13.17zM7 7h7v2.4L17 7v6l-3-2.4V13H7V7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4 3 2.4V7l-3 2.4V7H7v6h7z" -}, "1")], 'VoiceChatTwoTone'); \ No newline at end of file +}, "1")], 'VoiceChatTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceOverOff.js b/packages/material-ui-icons/lib/VoiceOverOff.js index e14aee76d81ea5..d27262d8bb9dad 100644 --- a/packages/material-ui-icons/lib/VoiceOverOff.js +++ b/packages/material-ui-icons/lib/VoiceOverOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.99 9.18c0-.06.01-.12.01-.18 0-2.21-1.79-4-4-4-.06 0-.12.01-.18.01l4.17 4.17zm-6.1-3.56L4.27 3 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62L19.73 21 21 19.73l-8.62-8.62-5.49-5.49zM9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" -}), 'VoiceOverOff'); \ No newline at end of file +}), 'VoiceOverOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceOverOffOutlined.js b/packages/material-ui-icons/lib/VoiceOverOffOutlined.js index 28d1b406780bb0..df3b635a7f32de 100644 --- a/packages/material-ui-icons/lib/VoiceOverOffOutlined.js +++ b/packages/material-ui-icons/lib/VoiceOverOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.76 5.36-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z" -}), 'VoiceOverOffOutlined'); \ No newline at end of file +}), 'VoiceOverOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceOverOffRounded.js b/packages/material-ui-icons/lib/VoiceOverOffRounded.js index d7ee497900056c..44e00dd8bcf1a3 100644 --- a/packages/material-ui-icons/lib/VoiceOverOffRounded.js +++ b/packages/material-ui-icons/lib/VoiceOverOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.72 6.41c-.35.35-.44.88-.25 1.35.3.75.32 1.58.05 2.34-.16.46-.06.98.29 1.32.6.6 1.66.47 2.02-.31.64-1.39.6-2.99-.12-4.41-.4-.75-1.41-.88-1.99-.29zm3.46-3.52c-.4.4-.46 1.02-.13 1.48 1.93 2.68 1.95 6.25.09 9.07-.31.46-.23 1.08.16 1.47.51.51 1.38.46 1.81-.13 2.57-3.51 2.52-8.2-.17-11.77-.43-.56-1.26-.62-1.76-.12zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM3.71 3.56c-.39.39-.39 1.02 0 1.41l1.91 1.91c-.56.89-.79 2.01-.47 3.2.36 1.33 1.44 2.4 2.77 2.77 1.19.33 2.31.09 3.2-.47l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-.37-.11-.7-.29-1.02l2.31 2.31c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56a.9959.9959 0 0 0-1.41 0z" -}), 'VoiceOverOffRounded'); \ No newline at end of file +}), 'VoiceOverOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceOverOffSharp.js b/packages/material-ui-icons/lib/VoiceOverOffSharp.js index 5df2d9e58165aa..f49ec9ab496da1 100644 --- a/packages/material-ui-icons/lib/VoiceOverOffSharp.js +++ b/packages/material-ui-icons/lib/VoiceOverOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.76 5.36-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86z" -}), 'VoiceOverOffSharp'); \ No newline at end of file +}), 'VoiceOverOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoiceOverOffTwoTone.js b/packages/material-ui-icons/lib/VoiceOverOffTwoTone.js index d2984d05e41c1c..db31a44f7924ec 100644 --- a/packages/material-ui-icons/lib/VoiceOverOffTwoTone.js +++ b/packages/material-ui-icons/lib/VoiceOverOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2zM7 9c0 1.1.9 2 2 2 .22 0 .42-.04.62-.11L7.11 8.38c-.07.2-.11.4-.11.62z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.76 5.36-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z" -}, "1")], 'VoiceOverOffTwoTone'); \ No newline at end of file +}, "1")], 'VoiceOverOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Voicemail.js b/packages/material-ui-icons/lib/Voicemail.js index 7787db8f6660aa..6ecea73cf0cef3 100644 --- a/packages/material-ui-icons/lib/Voicemail.js +++ b/packages/material-ui-icons/lib/Voicemail.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" -}), 'Voicemail'); \ No newline at end of file +}), 'Voicemail'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoicemailOutlined.js b/packages/material-ui-icons/lib/VoicemailOutlined.js index 168ba5d391470f..3c6892baa6d37e 100644 --- a/packages/material-ui-icons/lib/VoicemailOutlined.js +++ b/packages/material-ui-icons/lib/VoicemailOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" -}), 'VoicemailOutlined'); \ No newline at end of file +}), 'VoicemailOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoicemailRounded.js b/packages/material-ui-icons/lib/VoicemailRounded.js index 5c4e5523d00a5d..284cf01a4ada6b 100644 --- a/packages/material-ui-icons/lib/VoicemailRounded.js +++ b/packages/material-ui-icons/lib/VoicemailRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" -}), 'VoicemailRounded'); \ No newline at end of file +}), 'VoicemailRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoicemailSharp.js b/packages/material-ui-icons/lib/VoicemailSharp.js index 511104800e6d5c..9cb375c56a501f 100644 --- a/packages/material-ui-icons/lib/VoicemailSharp.js +++ b/packages/material-ui-icons/lib/VoicemailSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" -}), 'VoicemailSharp'); \ No newline at end of file +}), 'VoicemailSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VoicemailTwoTone.js b/packages/material-ui-icons/lib/VoicemailTwoTone.js index d8745d5f947abc..e730666f8dff9c 100644 --- a/packages/material-ui-icons/lib/VoicemailTwoTone.js +++ b/packages/material-ui-icons/lib/VoicemailTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" -}), 'VoicemailTwoTone'); \ No newline at end of file +}), 'VoicemailTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeDown.js b/packages/material-ui-icons/lib/VolumeDown.js index f309530cbf0a0c..1886d3849a7f4e 100644 --- a/packages/material-ui-icons/lib/VolumeDown.js +++ b/packages/material-ui-icons/lib/VolumeDown.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z" -}), 'VolumeDown'); \ No newline at end of file +}), 'VolumeDown'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeDownOutlined.js b/packages/material-ui-icons/lib/VolumeDownOutlined.js index c61a0f7c32f012..5e24ee90f7bc34 100644 --- a/packages/material-ui-icons/lib/VolumeDownOutlined.js +++ b/packages/material-ui-icons/lib/VolumeDownOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z" -}), 'VolumeDownOutlined'); \ No newline at end of file +}), 'VolumeDownOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeDownRounded.js b/packages/material-ui-icons/lib/VolumeDownRounded.js index f3493d478a9ae1..8d7bd45fecb9cb 100644 --- a/packages/material-ui-icons/lib/VolumeDownRounded.js +++ b/packages/material-ui-icons/lib/VolumeDownRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L9 9H6c-.55 0-1 .45-1 1z" -}), 'VolumeDownRounded'); \ No newline at end of file +}), 'VolumeDownRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeDownSharp.js b/packages/material-ui-icons/lib/VolumeDownSharp.js index 60ff2b2bfee007..204e19fa6590a9 100644 --- a/packages/material-ui-icons/lib/VolumeDownSharp.js +++ b/packages/material-ui-icons/lib/VolumeDownSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z" -}), 'VolumeDownSharp'); \ No newline at end of file +}), 'VolumeDownSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeDownTwoTone.js b/packages/material-ui-icons/lib/VolumeDownTwoTone.js index d151fe0935e885..00711031e19da5 100644 --- a/packages/material-ui-icons/lib/VolumeDownTwoTone.js +++ b/packages/material-ui-icons/lib/VolumeDownTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 13h2.83L12 15.17V8.83L9.83 11H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z" -}, "1")], 'VolumeDownTwoTone'); \ No newline at end of file +}, "1")], 'VolumeDownTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeMute.js b/packages/material-ui-icons/lib/VolumeMute.js index 546d79e5ead3e7..aaa74a3070c19a 100644 --- a/packages/material-ui-icons/lib/VolumeMute.js +++ b/packages/material-ui-icons/lib/VolumeMute.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v6h4l5 5V4l-5 5H7z" -}), 'VolumeMute'); \ No newline at end of file +}), 'VolumeMute'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeMuteOutlined.js b/packages/material-ui-icons/lib/VolumeMuteOutlined.js index bddcfe3c2c0130..68000d1550defb 100644 --- a/packages/material-ui-icons/lib/VolumeMuteOutlined.js +++ b/packages/material-ui-icons/lib/VolumeMuteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 8.83v6.34L11.83 13H9v-2h2.83L14 8.83M16 4l-5 5H7v6h4l5 5V4z" -}), 'VolumeMuteOutlined'); \ No newline at end of file +}), 'VolumeMuteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeMuteRounded.js b/packages/material-ui-icons/lib/VolumeMuteRounded.js index e8f5facc5188fd..c7e3797301fb44 100644 --- a/packages/material-ui-icons/lib/VolumeMuteRounded.js +++ b/packages/material-ui-icons/lib/VolumeMuteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L11 9H8c-.55 0-1 .45-1 1z" -}), 'VolumeMuteRounded'); \ No newline at end of file +}), 'VolumeMuteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeMuteSharp.js b/packages/material-ui-icons/lib/VolumeMuteSharp.js index e91ef36bb4f00d..321b70e22e838a 100644 --- a/packages/material-ui-icons/lib/VolumeMuteSharp.js +++ b/packages/material-ui-icons/lib/VolumeMuteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v6h4l5 5V4l-5 5H7z" -}), 'VolumeMuteSharp'); \ No newline at end of file +}), 'VolumeMuteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeMuteTwoTone.js b/packages/material-ui-icons/lib/VolumeMuteTwoTone.js index 5ff9e5f02a5110..ce1d09294aa298 100644 --- a/packages/material-ui-icons/lib/VolumeMuteTwoTone.js +++ b/packages/material-ui-icons/lib/VolumeMuteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9 13h2.83L14 15.17V8.83L11.83 11H9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 9v6h4l5 5V4l-5 5H7zm7-.17v6.34L11.83 13H9v-2h2.83L14 8.83z" -}, "1")], 'VolumeMuteTwoTone'); \ No newline at end of file +}, "1")], 'VolumeMuteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeOff.js b/packages/material-ui-icons/lib/VolumeOff.js index 0077103eee70d0..1ecba6730e2824 100644 --- a/packages/material-ui-icons/lib/VolumeOff.js +++ b/packages/material-ui-icons/lib/VolumeOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3 3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4 9.91 6.09 12 8.18V4z" -}), 'VolumeOff'); \ No newline at end of file +}), 'VolumeOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeOffOutlined.js b/packages/material-ui-icons/lib/VolumeOffOutlined.js index caf03ec1cc4500..fbac9e0787e35f 100644 --- a/packages/material-ui-icons/lib/VolumeOffOutlined.js +++ b/packages/material-ui-icons/lib/VolumeOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.34 2.93 2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17 7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" -}), 'VolumeOffOutlined'); \ No newline at end of file +}), 'VolumeOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeOffRounded.js b/packages/material-ui-icons/lib/VolumeOffRounded.js index 0b1e86758f3771..6ea1c6c0c4972f 100644 --- a/packages/material-ui-icons/lib/VolumeOffRounded.js +++ b/packages/material-ui-icons/lib/VolumeOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3.63 3.63c-.39.39-.39 1.02 0 1.41L7.29 8.7 7 9H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71v-4.17l4.18 4.18c-.49.37-1.02.68-1.6.91-.36.15-.58.53-.58.92 0 .72.73 1.18 1.39.91.8-.33 1.55-.77 2.22-1.31l1.34 1.34c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.05 3.63c-.39-.39-1.02-.39-1.42 0zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-3.83-2.4-7.11-5.78-8.4-.59-.23-1.22.23-1.22.86v.19c0 .38.25.71.61.85C17.18 6.54 19 9.06 19 12zm-8.71-6.29-.17.17L12 7.76V6.41c0-.89-1.08-1.33-1.71-.7zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" -}), 'VolumeOffRounded'); \ No newline at end of file +}), 'VolumeOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeOffSharp.js b/packages/material-ui-icons/lib/VolumeOffSharp.js index 9b8d6d12bd0106..d4b44e7269a9a3 100644 --- a/packages/material-ui-icons/lib/VolumeOffSharp.js +++ b/packages/material-ui-icons/lib/VolumeOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.34 2.93 2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" -}), 'VolumeOffSharp'); \ No newline at end of file +}), 'VolumeOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeOffTwoTone.js b/packages/material-ui-icons/lib/VolumeOffTwoTone.js index da010b7a181b40..dc2bc9d273fd63 100644 --- a/packages/material-ui-icons/lib/VolumeOffTwoTone.js +++ b/packages/material-ui-icons/lib/VolumeOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.83 11H5v2h2.83L10 15.17v-3.76l-1.29-1.29z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.34 2.93 2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17 7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" -}, "1")], 'VolumeOffTwoTone'); \ No newline at end of file +}, "1")], 'VolumeOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeUp.js b/packages/material-ui-icons/lib/VolumeUp.js index 517122c3daad99..1716551bba83e1 100644 --- a/packages/material-ui-icons/lib/VolumeUp.js +++ b/packages/material-ui-icons/lib/VolumeUp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" -}), 'VolumeUp'); \ No newline at end of file +}), 'VolumeUp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeUpOutlined.js b/packages/material-ui-icons/lib/VolumeUpOutlined.js index f58495bd32f503..49bc4e72f88c29 100644 --- a/packages/material-ui-icons/lib/VolumeUpOutlined.js +++ b/packages/material-ui-icons/lib/VolumeUpOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z" -}), 'VolumeUpOutlined'); \ No newline at end of file +}), 'VolumeUpOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeUpRounded.js b/packages/material-ui-icons/lib/VolumeUpRounded.js index 9dba9cc519c34a..1021a0a8c7d6fc 100644 --- a/packages/material-ui-icons/lib/VolumeUpRounded.js +++ b/packages/material-ui-icons/lib/VolumeUpRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L7 9H4c-.55 0-1 .45-1 1zm13.5 2c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 4.45v.2c0 .38.25.71.6.85C17.18 6.53 19 9.06 19 12s-1.82 5.47-4.4 6.5c-.36.14-.6.47-.6.85v.2c0 .63.63 1.07 1.21.85C18.6 19.11 21 15.84 21 12s-2.4-7.11-5.79-8.4c-.58-.23-1.21.22-1.21.85z" -}), 'VolumeUpRounded'); \ No newline at end of file +}), 'VolumeUpRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeUpSharp.js b/packages/material-ui-icons/lib/VolumeUpSharp.js index ab2d50f6611f05..149a98940f0e9c 100644 --- a/packages/material-ui-icons/lib/VolumeUpSharp.js +++ b/packages/material-ui-icons/lib/VolumeUpSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" -}), 'VolumeUpSharp'); \ No newline at end of file +}), 'VolumeUpSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolumeUpTwoTone.js b/packages/material-ui-icons/lib/VolumeUpTwoTone.js index 1e45ad20f7eda5..674255eef850b1 100644 --- a/packages/material-ui-icons/lib/VolumeUpTwoTone.js +++ b/packages/material-ui-icons/lib/VolumeUpTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 13h2.83L10 15.17V8.83L7.83 11H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zm4-.86v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zm0-4.74v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z" -}, "1")], 'VolumeUpTwoTone'); \ No newline at end of file +}, "1")], 'VolumeUpTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolunteerActivism.js b/packages/material-ui-icons/lib/VolunteerActivism.js index ba668724a932fa..cd3f2bbbc26faa 100644 --- a/packages/material-ui-icons/lib/VolunteerActivism.js +++ b/packages/material-ui-icons/lib/VolunteerActivism.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM20 17h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9.02L14 22l8.01-3c-.01-1.1-.9-2-2.01-2z" -}), 'VolunteerActivism'); \ No newline at end of file +}), 'VolunteerActivism'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolunteerActivismOutlined.js b/packages/material-ui-icons/lib/VolunteerActivismOutlined.js index b86bb1b3f58fdd..13181cd296165a 100644 --- a/packages/material-ui-icons/lib/VolunteerActivismOutlined.js +++ b/packages/material-ui-icons/lib/VolunteerActivismOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13c3.09-2.81 6-5.44 6-7.7C22 3.45 20.55 2 18.7 2c-1.04 0-2.05.49-2.7 1.25C15.34 2.49 14.34 2 13.3 2 11.45 2 10 3.45 10 5.3c0 2.26 2.91 4.89 6 7.7zm-2.7-9c.44 0 .89.21 1.18.55L16 6.34l1.52-1.79c.29-.34.74-.55 1.18-.55.74 0 1.3.56 1.3 1.3 0 1.12-2.04 3.17-4 4.99-1.96-1.82-4-3.88-4-4.99 0-.74.56-1.3 1.3-1.3zM19 16h-2c0-1.2-.75-2.28-1.87-2.7L8.97 11H1v11h6v-1.44l7 1.94 8-2.5v-1c0-1.66-1.34-3-3-3zM3 20v-7h2v7H3zm10.97.41L7 18.48V13h1.61l5.82 2.17c.34.13.57.46.57.83 0 0-1.99-.05-2.3-.15l-2.38-.79-.63 1.9 2.38.79c.51.17 1.04.26 1.58.26H19c.39 0 .74.23.9.56l-5.93 1.84z" -}), 'VolunteerActivismOutlined'); \ No newline at end of file +}), 'VolunteerActivismOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolunteerActivismRounded.js b/packages/material-ui-icons/lib/VolunteerActivismRounded.js index 4457ff0aa71fce..76cb276c632d2a 100644 --- a/packages/material-ui-icons/lib/VolunteerActivismRounded.js +++ b/packages/material-ui-icons/lib/VolunteerActivismRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 11c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2s2-.9 2-2v-7c0-1.1-.9-2-2-2zm7-5.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25.65-.76 1.66-1.25 2.7-1.25C20.55 2 22 3.45 22 5.3c0 2.1-2.5 4.51-5.33 7.09-.38.35-.97.35-1.35 0C12.5 9.81 10 7.4 10 5.3M19.99 17h-6.83a.96.96 0 0 1-.33-.06l-1.47-.51c-.26-.09-.39-.37-.3-.63.09-.26.38-.4.64-.3l1.12.43c.11.04.24.07.36.07h2.63c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L9.3 11.13c-.22-.09-.46-.13-.7-.13H7v9.02l6.37 1.81c.41.12.85.1 1.25-.05L22 19c0-1.11-.9-2-2.01-2z" -}), 'VolunteerActivismRounded'); \ No newline at end of file +}), 'VolunteerActivismRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolunteerActivismSharp.js b/packages/material-ui-icons/lib/VolunteerActivismSharp.js index 45f5a2a91df61d..d9536fa4b65c7e 100644 --- a/packages/material-ui-icons/lib/VolunteerActivismSharp.js +++ b/packages/material-ui-icons/lib/VolunteerActivismSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM22 17h-9l-2.09-.73.33-.95L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3z" -}), 'VolunteerActivismSharp'); \ No newline at end of file +}), 'VolunteerActivismSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VolunteerActivismTwoTone.js b/packages/material-ui-icons/lib/VolunteerActivismTwoTone.js index 3074522591f0c9..1e351a47fc5def 100644 --- a/packages/material-ui-icons/lib/VolunteerActivismTwoTone.js +++ b/packages/material-ui-icons/lib/VolunteerActivismTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 13h2v7H3zm13-2.71c1.96-1.82 4-3.88 4-4.99 0-.74-.56-1.3-1.3-1.3-.44 0-.89.21-1.18.55L16 6.34l-1.52-1.79c-.29-.34-.74-.55-1.18-.55-.74 0-1.3.56-1.3 1.3 0 1.11 2.04 3.17 4 4.99zM19 18h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1.63.15.95.15H15c0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.94 5.93-1.85c-.16-.34-.51-.57-.9-.57z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16 13c3.09-2.81 6-5.44 6-7.7C22 3.45 20.55 2 18.7 2c-1.04 0-2.05.49-2.7 1.25C15.35 2.49 14.34 2 13.3 2 11.45 2 10 3.45 10 5.3c0 2.26 2.91 4.89 6 7.7zm-2.7-9c.44 0 .89.21 1.18.55L16 6.34l1.52-1.79c.29-.34.74-.55 1.18-.55.74 0 1.3.56 1.3 1.3 0 1.12-2.04 3.17-4 4.99-1.96-1.82-4-3.88-4-4.99 0-.74.56-1.3 1.3-1.3zM19 16h-2c0-1.2-.75-2.28-1.87-2.7L8.97 11H1v11h6v-1.44l7 1.94 8-2.5v-1c0-1.66-1.34-3-3-3zM5 20H3v-7h2v7zm8.97.41L7 18.48V13h1.61l5.82 2.17c.34.13.57.46.57.83h-1.35c-.32 0-.64-.05-.95-.15l-2.38-.79-.63 1.9 2.38.79c.51.17 1.04.26 1.58.26H19c.39 0 .74.23.9.56l-5.93 1.84z" -}, "1")], 'VolunteerActivismTwoTone'); \ No newline at end of file +}, "1")], 'VolunteerActivismTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnKey.js b/packages/material-ui-icons/lib/VpnKey.js index 011a5fbf223d71..2493f6b304a55f 100644 --- a/packages/material-ui-icons/lib/VpnKey.js +++ b/packages/material-ui-icons/lib/VpnKey.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'VpnKey'); \ No newline at end of file +}), 'VpnKey'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnKeyOutlined.js b/packages/material-ui-icons/lib/VpnKeyOutlined.js index a223577540ca1c..bc433ba51c1b63 100644 --- a/packages/material-ui-icons/lib/VpnKeyOutlined.js +++ b/packages/material-ui-icons/lib/VpnKeyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 19h-6v-4h-2.68c-1.14 2.42-3.6 4-6.32 4-3.86 0-7-3.14-7-7s3.14-7 7-7c2.72 0 5.17 1.58 6.32 4H24v6h-2v4zm-4-2h2v-4h2v-2H11.94l-.23-.67C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" -}), 'VpnKeyOutlined'); \ No newline at end of file +}), 'VpnKeyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnKeyRounded.js b/packages/material-ui-icons/lib/VpnKeyRounded.js index 7d7e9124e9710a..9ad113b0f17921 100644 --- a/packages/material-ui-icons/lib/VpnKeyRounded.js +++ b/packages/material-ui-icons/lib/VpnKeyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.65 10C11.7 7.31 8.9 5.5 5.77 6.12c-2.29.46-4.15 2.29-4.63 4.58C.32 14.57 3.26 18 7 18c2.61 0 4.83-1.67 5.65-4H17v2c0 1.1.9 2 2 2s2-.9 2-2v-2c1.1 0 2-.9 2-2s-.9-2-2-2h-8.35zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'VpnKeyRounded'); \ No newline at end of file +}), 'VpnKeyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnKeySharp.js b/packages/material-ui-icons/lib/VpnKeySharp.js index 8a28d757f5b3f2..d05dc0aaca540d 100644 --- a/packages/material-ui-icons/lib/VpnKeySharp.js +++ b/packages/material-ui-icons/lib/VpnKeySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}), 'VpnKeySharp'); \ No newline at end of file +}), 'VpnKeySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnKeyTwoTone.js b/packages/material-ui-icons/lib/VpnKeyTwoTone.js index b826a3b34e1669..d19fe640b51bdf 100644 --- a/packages/material-ui-icons/lib/VpnKeyTwoTone.js +++ b/packages/material-ui-icons/lib/VpnKeyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.71 10.33C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4h2v-4h2v-2H11.94l-.23-.67zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c2.72 0 5.17-1.58 6.32-4H16v4h6v-4h2V9H13.32C12.17 6.58 9.72 5 7 5zm15 8h-2v4h-2v-4h-6.06l-.23.67C11.01 15.66 9.11 17 7 17c-2.76 0-5-2.24-5-5s2.24-5 5-5c2.11 0 4.01 1.34 4.71 3.33l.23.67H22v2zM7 9c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" -}, "1")], 'VpnKeyTwoTone'); \ No newline at end of file +}, "1")], 'VpnKeyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnLock.js b/packages/material-ui-icons/lib/VpnLock.js index c79ecded5393ff..1749142b453bc0 100644 --- a/packages/material-ui-icons/lib/VpnLock.js +++ b/packages/material-ui-icons/lib/VpnLock.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm-2.28 8c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93z" -}), 'VpnLock'); \ No newline at end of file +}), 'VpnLock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnLockOutlined.js b/packages/material-ui-icons/lib/VpnLockOutlined.js index ded7c69ae7c372..2af41208e8eee2 100644 --- a/packages/material-ui-icons/lib/VpnLockOutlined.js +++ b/packages/material-ui-icons/lib/VpnLockOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" -}), 'VpnLockOutlined'); \ No newline at end of file +}), 'VpnLockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnLockRounded.js b/packages/material-ui-icons/lib/VpnLockRounded.js index dbe1e47664d082..0e934a71b9827b 100644 --- a/packages/material-ui-icons/lib/VpnLockRounded.js +++ b/packages/material-ui-icons/lib/VpnLockRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.92 11c.44 3.63-1.52 5.85-2.02 6.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2V2.46c-.95-.3-1.95-.46-3-.46C6.48 2 2 6.48 2 12s4.48 10 10 10c5.73 0 10.51-4.86 9.95-11h-2.03zM11 19.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zM22 4v-.89c0-1-.68-1.92-1.66-2.08C19.08.82 18 1.79 18 3v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-2V3c0-.55.45-1 1-1s1 .45 1 1v1z" -}), 'VpnLockRounded'); \ No newline at end of file +}), 'VpnLockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnLockSharp.js b/packages/material-ui-icons/lib/VpnLockSharp.js index 5c3f7878e4c2ee..88b2931f79608d 100644 --- a/packages/material-ui-icons/lib/VpnLockSharp.js +++ b/packages/material-ui-icons/lib/VpnLockSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 13c0 2.08-.8 3.97-2.1 5.39V17H14v-4H7v-2h3V8h4V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03c.04.33.08.66.08 1zm-9 7.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v3h2v1.93zM22 4v-.36c0-1.31-.94-2.5-2.24-2.63C18.26.86 17 2.03 17 3.5V4h-1v6h7V4h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" -}), 'VpnLockSharp'); \ No newline at end of file +}), 'VpnLockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VpnLockTwoTone.js b/packages/material-ui-icons/lib/VpnLockTwoTone.js index 43ca286de81f27..be28ff45a14522 100644 --- a/packages/material-ui-icons/lib/VpnLockTwoTone.js +++ b/packages/material-ui-icons/lib/VpnLockTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 8h-2v2c0 .55-.45 1-1 1H7v2h6c.55 0 1 .45 1 1v3h1c.9 0 1.64.58 1.9 1.39C18.2 16.97 19 15.08 19 13c0-.34-.04-.67-.08-1H17c-1.65 0-3-1.35-3-3V6c0 1.1-.9 2-2 2zm-4 9v-1l-4.79-4.79C3.08 11.79 3 12.38 3 13c0 4.08 3.05 7.44 7 7.93V19c-1.1 0-2-.9-2-2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" -}, "1")], 'VpnLockTwoTone'); \ No newline at end of file +}, "1")], 'VpnLockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Vrpano.js b/packages/material-ui-icons/lib/Vrpano.js index 8d23921ddb8911..85aad3204abefa 100644 --- a/packages/material-ui-icons/lib/Vrpano.js +++ b/packages/material-ui-icons/lib/Vrpano.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.69 4.05C18.66 4.73 15.86 5.5 12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.16-1.31-.95zM12 15c-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4c-1.99-.25-4.21-.4-6.51-.4z" -}), 'Vrpano'); \ No newline at end of file +}), 'Vrpano'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VrpanoOutlined.js b/packages/material-ui-icons/lib/VrpanoOutlined.js index 06d54cc1bd0db7..1269ae3c99dab8 100644 --- a/packages/material-ui-icons/lib/VrpanoOutlined.js +++ b/packages/material-ui-icons/lib/VrpanoOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.01 4C20.45 4 17.4 5.5 12 5.5c-5.31 0-8.49-1.49-9.01-1.49-.53 0-.99.44-.99 1.01V19c0 .57.46 1 .99 1 .57 0 3.55-1.5 9.01-1.5 5.42 0 8.44 1.5 9.01 1.5.53 0 .99-.43.99-1V5c0-.57-.46-1-.99-1zM20 17.63c-2.01-.59-4.62-1.13-8-1.13-3.39 0-5.99.54-8 1.13V6.38c2.58.73 5.32 1.12 8 1.12 3.38 0 5.99-.54 8-1.13v11.26z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.17 10.99-3.69 4.42c2-.26 4.18-.41 6.52-.41 2.3 0 4.52.15 6.51.4L14 10l-2.83 3.39-2-2.4z" -}, "1")], 'VrpanoOutlined'); \ No newline at end of file +}, "1")], 'VrpanoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VrpanoRounded.js b/packages/material-ui-icons/lib/VrpanoRounded.js index 9b1e7650b7f13a..ff659527a21e7d 100644 --- a/packages/material-ui-icons/lib/VrpanoRounded.js +++ b/packages/material-ui-icons/lib/VrpanoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.69 4.05C18.66 4.73 15.86 5.5 12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.16-1.31-.95zm-3.41 11.21C15.62 15.1 13.84 15 12 15c-1.87 0-3.63.1-5.28.27-.45.04-.72-.48-.43-.82l2.5-3c.2-.24.57-.24.77 0l1.62 1.94 2.44-2.93c.2-.24.57-.24.77 0l3.32 3.99c.28.34.01.86-.43.81z" -}), 'VrpanoRounded'); \ No newline at end of file +}), 'VrpanoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VrpanoSharp.js b/packages/material-ui-icons/lib/VrpanoSharp.js index ee7d1bd8b9edf9..c61d6fae6e97bf 100644 --- a/packages/material-ui-icons/lib/VrpanoSharp.js +++ b/packages/material-ui-icons/lib/VrpanoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9zm0 9.5c-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4c-1.99-.25-4.21-.4-6.51-.4z" -}), 'VrpanoSharp'); \ No newline at end of file +}), 'VrpanoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/VrpanoTwoTone.js b/packages/material-ui-icons/lib/VrpanoTwoTone.js index fe703bc61068a4..b8284ee3e511f5 100644 --- a/packages/material-ui-icons/lib/VrpanoTwoTone.js +++ b/packages/material-ui-icons/lib/VrpanoTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 6.38v11.25c2.01-.59 4.61-1.13 8-1.13 3.38 0 5.99.54 8 1.13V6.37c-2.01.59-4.62 1.13-8 1.13-2.68 0-5.42-.39-8-1.12zm14.51 9.02c-1.99-.25-4.21-.4-6.51-.4-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.01 4C20.45 4 17.4 5.5 12 5.5c-5.31 0-8.49-1.49-9.01-1.49-.53 0-.99.44-.99 1.01V19c0 .57.46 1 .99 1 .57 0 3.55-1.5 9.01-1.5 5.42 0 8.44 1.5 9.01 1.5.53 0 .99-.43.99-1V5c0-.57-.46-1-.99-1zM20 17.63c-2.01-.59-4.62-1.13-8-1.13-3.39 0-5.99.54-8 1.13V6.38c2.58.73 5.32 1.12 8 1.12 3.38 0 5.99-.54 8-1.13v11.26z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9.17 10.99-3.69 4.42c2-.26 4.18-.41 6.52-.41 2.3 0 4.52.15 6.51.4L14 10l-2.83 3.39-2-2.4z" -}, "2")], 'VrpanoTwoTone'); \ No newline at end of file +}, "2")], 'VrpanoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Wallpaper.js b/packages/material-ui-icons/lib/Wallpaper.js index 7f8dc049c2ea55..a3653c1a559051 100644 --- a/packages/material-ui-icons/lib/Wallpaper.js +++ b/packages/material-ui-icons/lib/Wallpaper.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" -}), 'Wallpaper'); \ No newline at end of file +}), 'Wallpaper'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WallpaperOutlined.js b/packages/material-ui-icons/lib/WallpaperOutlined.js index 15f64a3a0f4eaa..6cd611f63ac585 100644 --- a/packages/material-ui-icons/lib/WallpaperOutlined.js +++ b/packages/material-ui-icons/lib/WallpaperOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" -}), 'WallpaperOutlined'); \ No newline at end of file +}), 'WallpaperOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WallpaperRounded.js b/packages/material-ui-icons/lib/WallpaperRounded.js index 3af4afb00903a7..d1dc39ae53a1c1 100644 --- a/packages/material-ui-icons/lib/WallpaperRounded.js +++ b/packages/material-ui-icons/lib/WallpaperRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 5c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v6c0 .55.45 1 1 1s1-.45 1-1V5zm5.61 8.49-2.96 3.7c-.26.33-.03.81.39.81H17c.41 0 .65-.47.4-.8l-2-2.67c-.2-.27-.6-.27-.8 0l-1.63 2.18-2.58-3.22c-.2-.25-.58-.25-.78 0zM17 8.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-6c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1 .45 1 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-1.1-.9-2-2-2zm0 17c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5zM3 13c-.55 0-1 .45-1 1v6c0 1.1.9 2 2 2h6c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1z" -}), 'WallpaperRounded'); \ No newline at end of file +}), 'WallpaperRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WallpaperSharp.js b/packages/material-ui-icons/lib/WallpaperSharp.js index 96f29311f075a7..0dbc7f44e8970f 100644 --- a/packages/material-ui-icons/lib/WallpaperSharp.js +++ b/packages/material-ui-icons/lib/WallpaperSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h7V2H2v9h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM22 2h-9v2h7v7h2V2zm-2 18h-7v2h9v-9h-2v7zM4 13H2v9h9v-2H4v-7z" -}), 'WallpaperSharp'); \ No newline at end of file +}), 'WallpaperSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WallpaperTwoTone.js b/packages/material-ui-icons/lib/WallpaperTwoTone.js index 4ccdd5069e9bfb..a8c719995f60c9 100644 --- a/packages/material-ui-icons/lib/WallpaperTwoTone.js +++ b/packages/material-ui-icons/lib/WallpaperTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" -}), 'WallpaperTwoTone'); \ No newline at end of file +}), 'WallpaperTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Warning.js b/packages/material-ui-icons/lib/Warning.js index d71346f5a0a33e..59e7f3fbb848f0 100644 --- a/packages/material-ui-icons/lib/Warning.js +++ b/packages/material-ui-icons/lib/Warning.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" -}), 'Warning'); \ No newline at end of file +}), 'Warning'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningAmber.js b/packages/material-ui-icons/lib/WarningAmber.js index 83cf92c0c46932..8ed0def0f7e8bf 100644 --- a/packages/material-ui-icons/lib/WarningAmber.js +++ b/packages/material-ui-icons/lib/WarningAmber.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 16h-2v2h2zm0-6h-2v5h2z" -}, "1")], 'WarningAmber'); \ No newline at end of file +}, "1")], 'WarningAmber'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningAmberOutlined.js b/packages/material-ui-icons/lib/WarningAmberOutlined.js index 71633684fc9cf9..0559e5467314e5 100644 --- a/packages/material-ui-icons/lib/WarningAmberOutlined.js +++ b/packages/material-ui-icons/lib/WarningAmberOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" -}), 'WarningAmberOutlined'); \ No newline at end of file +}), 'WarningAmberOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningAmberRounded.js b/packages/material-ui-icons/lib/WarningAmberRounded.js index b728239d0d3ee5..068e9821e943b9 100644 --- a/packages/material-ui-icons/lib/WarningAmberRounded.js +++ b/packages/material-ui-icons/lib/WarningAmberRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.99 19.53 19H4.47L12 5.99M2.74 18c-.77 1.33.19 3 1.73 3h15.06c1.54 0 2.5-1.67 1.73-3L13.73 4.99c-.77-1.33-2.69-1.33-3.46 0L2.74 18zM11 11v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zm0 5h2v2h-2z" -}), 'WarningAmberRounded'); \ No newline at end of file +}), 'WarningAmberRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningAmberSharp.js b/packages/material-ui-icons/lib/WarningAmberSharp.js index 540ab8cdbc6110..263f495f067b28 100644 --- a/packages/material-ui-icons/lib/WarningAmberSharp.js +++ b/packages/material-ui-icons/lib/WarningAmberSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" -}), 'WarningAmberSharp'); \ No newline at end of file +}), 'WarningAmberSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningAmberTwoTone.js b/packages/material-ui-icons/lib/WarningAmberTwoTone.js index bacef238877dd1..869790873fde62 100644 --- a/packages/material-ui-icons/lib/WarningAmberTwoTone.js +++ b/packages/material-ui-icons/lib/WarningAmberTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z" -}), 'WarningAmberTwoTone'); \ No newline at end of file +}), 'WarningAmberTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningOutlined.js b/packages/material-ui-icons/lib/WarningOutlined.js index dd91bf3934d0b7..1b40f6100d066c 100644 --- a/packages/material-ui-icons/lib/WarningOutlined.js +++ b/packages/material-ui-icons/lib/WarningOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" -}), 'WarningOutlined'); \ No newline at end of file +}), 'WarningOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningRounded.js b/packages/material-ui-icons/lib/WarningRounded.js index 579e0bebc8d577..4121dac9be1195 100644 --- a/packages/material-ui-icons/lib/WarningRounded.js +++ b/packages/material-ui-icons/lib/WarningRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.47 21h15.06c1.54 0 2.5-1.67 1.73-3L13.73 4.99c-.77-1.33-2.69-1.33-3.46 0L2.74 18c-.77 1.33.19 3 1.73 3zM12 14c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z" -}), 'WarningRounded'); \ No newline at end of file +}), 'WarningRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningSharp.js b/packages/material-ui-icons/lib/WarningSharp.js index 2b59a227593a06..c8462834a3fc75 100644 --- a/packages/material-ui-icons/lib/WarningSharp.js +++ b/packages/material-ui-icons/lib/WarningSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" -}), 'WarningSharp'); \ No newline at end of file +}), 'WarningSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WarningTwoTone.js b/packages/material-ui-icons/lib/WarningTwoTone.js index 92d840d0eba9af..950ff90934535f 100644 --- a/packages/material-ui-icons/lib/WarningTwoTone.js +++ b/packages/material-ui-icons/lib/WarningTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.47 19h15.06L12 5.99 4.47 19zM13 18h-2v-2h2v2zm0-4h-2v-4h2v4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z" -}, "1")], 'WarningTwoTone'); \ No newline at end of file +}, "1")], 'WarningTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Wash.js b/packages/material-ui-icons/lib/Wash.js index 720bcc205941e5..01c196292c0e41 100644 --- a/packages/material-ui-icons/lib/Wash.js +++ b/packages/material-ui-icons/lib/Wash.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18.5 8C19.88 8 21 6.88 21 5.5 21 3.83 18.5 1 18.5 1S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8zm-5 1c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zM9.12 5l-7.18 6.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25S19.44 10 18.75 10H8.86c.64-1.11 1.48-2.58 1.49-2.61.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7C10.22 6.12 9.12 5 9.12 5z" -}), 'Wash'); \ No newline at end of file +}), 'Wash'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WashOutlined.js b/packages/material-ui-icons/lib/WashOutlined.js index aaf43d397d21d3..d1cbf5e5ab1653 100644 --- a/packages/material-ui-icons/lib/WashOutlined.js +++ b/packages/material-ui-icons/lib/WashOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm3.5-12c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8S21 6.88 21 5.5C21 3.83 18.5 1 18.5 1zm0 5.5c-.55 0-1-.45-1-1 0-.4.43-1.22 1-2.05.57.83 1 1.65 1 2.05 0 .55-.45 1-1 1z" -}), 'WashOutlined'); \ No newline at end of file +}), 'WashOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WashRounded.js b/packages/material-ui-icons/lib/WashRounded.js index d484c10bfb8ac4..e8e01c01e8171d 100644 --- a/packages/material-ui-icons/lib/WashRounded.js +++ b/packages/material-ui-icons/lib/WashRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M1.94 11.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.68c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h8.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38h-9.9l1.49-2.61c.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7l-.42-.45c-.38-.39-1.01-.41-1.41-.03l-6.46 6.11zM18.5 8C19.88 8 21 6.88 21 5.5c0-1.25-1.41-3.16-2.11-4.04a.489.489 0 0 0-.77 0C17.41 2.34 16 4.25 16 5.5 16 6.88 17.12 8 18.5 8zm-5 1c.83 0 1.5-.67 1.5-1.5 0-.56-.67-1.49-1.11-2.04-.2-.25-.58-.25-.77 0C12.67 6.01 12 6.94 12 7.5c0 .83.67 1.5 1.5 1.5z" -}), 'WashRounded'); \ No newline at end of file +}), 'WashRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WashSharp.js b/packages/material-ui-icons/lib/WashSharp.js index 9935b6e990d39b..be83e7c6111c9a 100644 --- a/packages/material-ui-icons/lib/WashSharp.js +++ b/packages/material-ui-icons/lib/WashSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.12 5 1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5zm4.38 4c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8S21 6.88 21 5.5C21 3.83 18.5 1 18.5 1z" -}), 'WashSharp'); \ No newline at end of file +}), 'WashSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WashTwoTone.js b/packages/material-ui-icons/lib/WashTwoTone.js index 83a8775a756450..56451de29adda3 100644 --- a/packages/material-ui-icons/lib/WashTwoTone.js +++ b/packages/material-ui-icons/lib/WashTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm8.5-14.5c-.55 0-1-.45-1-1 0-.4.43-1.22 1-2.05.57.83 1 1.65 1 2.05 0 .55-.45 1-1 1z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm3.5-12c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8S21 6.88 21 5.5C21 3.83 18.5 1 18.5 1zm0 5.5c-.55 0-1-.45-1-1 0-.4.43-1.22 1-2.05.57.83 1 1.65 1 2.05 0 .55-.45 1-1 1z" -}, "1")], 'WashTwoTone'); \ No newline at end of file +}, "1")], 'WashTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Watch.js b/packages/material-ui-icons/lib/Watch.js index cec44afb158fca..9c87b08d20e540 100644 --- a/packages/material-ui-icons/lib/Watch.js +++ b/packages/material-ui-icons/lib/Watch.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" -}), 'Watch'); \ No newline at end of file +}), 'Watch'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchLater.js b/packages/material-ui-icons/lib/WatchLater.js index e8180f20421d7e..3079b326ccbe5b 100644 --- a/packages/material-ui-icons/lib/WatchLater.js +++ b/packages/material-ui-icons/lib/WatchLater.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z" -}), 'WatchLater'); \ No newline at end of file +}), 'WatchLater'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchLaterOutlined.js b/packages/material-ui-icons/lib/WatchLaterOutlined.js index b398ab992b8170..22aa750bfcde19 100644 --- a/packages/material-ui-icons/lib/WatchLaterOutlined.js +++ b/packages/material-ui-icons/lib/WatchLaterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z" -}), 'WatchLaterOutlined'); \ No newline at end of file +}), 'WatchLaterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchLaterRounded.js b/packages/material-ui-icons/lib/WatchLaterRounded.js index c4efb81f36bf16..4f2a8dff86ce23 100644 --- a/packages/material-ui-icons/lib/WatchLaterRounded.js +++ b/packages/material-ui-icons/lib/WatchLaterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm3.55 13.8-4.08-2.51c-.3-.18-.48-.5-.48-.85V7.75c.01-.41.35-.75.76-.75s.75.34.75.75v4.45l3.84 2.31c.36.22.48.69.26 1.05-.22.35-.69.46-1.05.24z" -}), 'WatchLaterRounded'); \ No newline at end of file +}), 'WatchLaterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchLaterSharp.js b/packages/material-ui-icons/lib/WatchLaterSharp.js index 4dfea72f6ee35a..597bd9e2700f0c 100644 --- a/packages/material-ui-icons/lib/WatchLaterSharp.js +++ b/packages/material-ui-icons/lib/WatchLaterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z" -}), 'WatchLaterSharp'); \ No newline at end of file +}), 'WatchLaterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchLaterTwoTone.js b/packages/material-ui-icons/lib/WatchLaterTwoTone.js index b1833b97d0eab0..6d44d9084de88c 100644 --- a/packages/material-ui-icons/lib/WatchLaterTwoTone.js +++ b/packages/material-ui-icons/lib/WatchLaterTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4.2 12.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z" -}, "1")], 'WatchLaterTwoTone'); \ No newline at end of file +}, "1")], 'WatchLaterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchOutlined.js b/packages/material-ui-icons/lib/WatchOutlined.js index 73e1eda3406a3b..6507148761b252 100644 --- a/packages/material-ui-icons/lib/WatchOutlined.js +++ b/packages/material-ui-icons/lib/WatchOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14.31 2 .41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2h4.61m.41 17.52L14.31 22H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48M16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27L16 0zm-4 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}), 'WatchOutlined'); \ No newline at end of file +}), 'WatchOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchRounded.js b/packages/material-ui-icons/lib/WatchRounded.js index 92417052df6d75..3f55a0649a0dbe 100644 --- a/packages/material-ui-icons/lib/WatchRounded.js +++ b/packages/material-ui-icons/lib/WatchRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-2.54-1.19-4.81-3.04-6.27l-.68-4.06C16.12.71 15.28 0 14.31 0H9.7c-.98 0-1.82.71-1.98 1.67l-.67 4.06C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27l.67 4.06c.16.96 1 1.67 1.98 1.67h4.61c.98 0 1.81-.71 1.97-1.67l.68-4.06C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" -}), 'WatchRounded'); \ No newline at end of file +}), 'WatchRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchSharp.js b/packages/material-ui-icons/lib/WatchSharp.js index c0b8ab8fcdae99..e2002d01d5ad95 100644 --- a/packages/material-ui-icons/lib/WatchSharp.js +++ b/packages/material-ui-icons/lib/WatchSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" -}), 'WatchSharp'); \ No newline at end of file +}), 'WatchSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WatchTwoTone.js b/packages/material-ui-icons/lib/WatchTwoTone.js index 10f0a4fe919b38..3168c421441b1e 100644 --- a/packages/material-ui-icons/lib/WatchTwoTone.js +++ b/packages/material-ui-icons/lib/WatchTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14.72 4.48 14.31 2H9.7l-.41 2.47C10.13 4.17 11.05 4 12 4c.96 0 1.87.17 2.72.48zM9.29 19.53 9.7 22h4.61l.41-2.48c-.85.31-1.76.48-2.72.48-.95 0-1.87-.17-2.71-.47z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.96 5.73 16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27zM9.7 2h4.61l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2zm4.61 20H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48L14.31 22zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" -}, "1")], 'WatchTwoTone'); \ No newline at end of file +}, "1")], 'WatchTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Water.js b/packages/material-ui-icons/lib/Water.js index 6e7a41d76406ba..a90db7f4f34fed 100644 --- a/packages/material-ui-icons/lib/Water.js +++ b/packages/material-ui-icons/lib/Water.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" -}), 'Water'); \ No newline at end of file +}), 'Water'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterDamage.js b/packages/material-ui-icons/lib/WaterDamage.js index c817533c829001..776080a930b642 100644 --- a/packages/material-ui-icons/lib/WaterDamage.js +++ b/packages/material-ui-icons/lib/WaterDamage.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 12h3v8h14v-8h3L12 3zm0 13c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z" -}), 'WaterDamage'); \ No newline at end of file +}), 'WaterDamage'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterDamageOutlined.js b/packages/material-ui-icons/lib/WaterDamageOutlined.js index 1403fc52dcae3b..b97b1594d22a8b 100644 --- a/packages/material-ui-icons/lib/WaterDamageOutlined.js +++ b/packages/material-ui-icons/lib/WaterDamageOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 12h3v8h14v-8h3L12 3zM7 18v-7.81l5-4.5 5 4.5V18H7zm7-4c0 1.1-.9 2-2 2s-2-.9-2-2 2-4 2-4 2 2.9 2 4z" -}), 'WaterDamageOutlined'); \ No newline at end of file +}), 'WaterDamageOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterDamageRounded.js b/packages/material-ui-icons/lib/WaterDamageRounded.js index b2f86d1adbc4cc..99ee070ff4c575 100644 --- a/packages/material-ui-icons/lib/WaterDamageRounded.js +++ b/packages/material-ui-icons/lib/WaterDamageRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m11.33 3.6-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0zM12 16c-1.1 0-2-.9-2-2 0-.78.99-2.44 1.58-3.36.2-.31.64-.31.84 0 .59.92 1.58 2.58 1.58 3.36 0 1.1-.9 2-2 2z" -}), 'WaterDamageRounded'); \ No newline at end of file +}), 'WaterDamageRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterDamageSharp.js b/packages/material-ui-icons/lib/WaterDamageSharp.js index ddc60819d1a0cd..c7b01131b6d073 100644 --- a/packages/material-ui-icons/lib/WaterDamageSharp.js +++ b/packages/material-ui-icons/lib/WaterDamageSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 12h3v8h14v-8h3L12 3zm0 13c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z" -}), 'WaterDamageSharp'); \ No newline at end of file +}), 'WaterDamageSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterDamageTwoTone.js b/packages/material-ui-icons/lib/WaterDamageTwoTone.js index f965bfb1e44ddf..381bd80ad83357 100644 --- a/packages/material-ui-icons/lib/WaterDamageTwoTone.js +++ b/packages/material-ui-icons/lib/WaterDamageTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m12 5.69-5 4.5V18h10v-7.81l-5-4.5zM12 16c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3 2 12h3v8h14v-8h3L12 3zM7 18v-7.81l5-4.5 5 4.5V18H7zm7-4c0 1.1-.9 2-2 2s-2-.9-2-2 2-4 2-4 2 2.9 2 4z" -}, "1")], 'WaterDamageTwoTone'); \ No newline at end of file +}, "1")], 'WaterDamageTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterOutlined.js b/packages/material-ui-icons/lib/WaterOutlined.js index 785be3214e2db6..311c34849e7bf6 100644 --- a/packages/material-ui-icons/lib/WaterOutlined.js +++ b/packages/material-ui-icons/lib/WaterOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" -}), 'WaterOutlined'); \ No newline at end of file +}), 'WaterOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterRounded.js b/packages/material-ui-icons/lib/WaterRounded.js index d5bf93a85ee26f..b14c27b1790970 100644 --- a/packages/material-ui-icons/lib/WaterRounded.js +++ b/packages/material-ui-icons/lib/WaterRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 .93 0 1.05.45 2.01.79.63.22 1.3-.24 1.3-.91 0-.52-.23-.83-.64-.97-.6-.22-1.15-.9-2.69-.9-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.54 0-2.13.71-2.68.91-.41.13-.65.43-.65.97 0 .67.66 1.13 1.29.91 1.06-.36 1.1-.8 2.06-.8zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.53 0-2.15.71-2.69.91-.41.14-.65.45-.65.98 0 .67.66 1.13 1.3.91 1.02-.36 1.08-.8 2.04-.8 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 .94 0 1.06.46 2.03.8.63.22 1.3-.24 1.3-.91 0-.53-.24-.83-.65-.98-.53-.19-1.14-.91-2.68-.91zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 .93 0 1.05.45 2.01.79.63.22 1.3-.24 1.3-.91 0-.52-.23-.83-.64-.97-.6-.23-1.15-.91-2.69-.91-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.54 0-2.13.71-2.68.91-.41.14-.65.44-.65.98 0 .67.66 1.13 1.29.91 1.06-.36 1.1-.8 2.06-.8z" -}), 'WaterRounded'); \ No newline at end of file +}), 'WaterRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterSharp.js b/packages/material-ui-icons/lib/WaterSharp.js index 4472af5143eff8..65db7df4269404 100644 --- a/packages/material-ui-icons/lib/WaterSharp.js +++ b/packages/material-ui-icons/lib/WaterSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" -}), 'WaterSharp'); \ No newline at end of file +}), 'WaterSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterTwoTone.js b/packages/material-ui-icons/lib/WaterTwoTone.js index 12820148745e4a..07fab4ad9c3d5d 100644 --- a/packages/material-ui-icons/lib/WaterTwoTone.js +++ b/packages/material-ui-icons/lib/WaterTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" -}), 'WaterTwoTone'); \ No newline at end of file +}), 'WaterTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterfallChart.js b/packages/material-ui-icons/lib/WaterfallChart.js index 2c849db36c5dea..8339214c68dc35 100644 --- a/packages/material-ui-icons/lib/WaterfallChart.js +++ b/packages/material-ui-icons/lib/WaterfallChart.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h3v16h-3zM3 13h3v7H3zm11-9h3v3h-3zm-4 1h3v4h-3zm-3 5h3v4H7z" -}), 'WaterfallChart'); \ No newline at end of file +}), 'WaterfallChart'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterfallChartOutlined.js b/packages/material-ui-icons/lib/WaterfallChartOutlined.js index fa12113447369d..3cce43c54ddc2f 100644 --- a/packages/material-ui-icons/lib/WaterfallChartOutlined.js +++ b/packages/material-ui-icons/lib/WaterfallChartOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z" -}), 'WaterfallChartOutlined'); \ No newline at end of file +}), 'WaterfallChartOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterfallChartRounded.js b/packages/material-ui-icons/lib/WaterfallChartRounded.js index bda4b3c2fbdcf2..57478793c54b31 100644 --- a/packages/material-ui-icons/lib/WaterfallChartRounded.js +++ b/packages/material-ui-icons/lib/WaterfallChartRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.5 4c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-13c0-.83.67-1.5 1.5-1.5zm-15 9c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5S3 19.33 3 18.5v-4c0-.83.67-1.5 1.5-1.5zm11-9c.83 0 1.5.67 1.5 1.5S16.33 7 15.5 7 14 6.33 14 5.5 14.67 4 15.5 4zm-4 1c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5S10 8.33 10 7.5v-1c0-.83.67-1.5 1.5-1.5zm-3 5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5S7 13.33 7 12.5v-1c0-.83.67-1.5 1.5-1.5z" -}), 'WaterfallChartRounded'); \ No newline at end of file +}), 'WaterfallChartRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterfallChartSharp.js b/packages/material-ui-icons/lib/WaterfallChartSharp.js index 22536860ad4a9c..0e058a66880adc 100644 --- a/packages/material-ui-icons/lib/WaterfallChartSharp.js +++ b/packages/material-ui-icons/lib/WaterfallChartSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z" -}), 'WaterfallChartSharp'); \ No newline at end of file +}), 'WaterfallChartSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WaterfallChartTwoTone.js b/packages/material-ui-icons/lib/WaterfallChartTwoTone.js index 468c40efd0f244..cea32038d21f67 100644 --- a/packages/material-ui-icons/lib/WaterfallChartTwoTone.js +++ b/packages/material-ui-icons/lib/WaterfallChartTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z" -}), 'WaterfallChartTwoTone'); \ No newline at end of file +}), 'WaterfallChartTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Waves.js b/packages/material-ui-icons/lib/Waves.js index 2a56c8578736c4..549133da14ec65 100644 --- a/packages/material-ui-icons/lib/Waves.js +++ b/packages/material-ui-icons/lib/Waves.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" -}), 'Waves'); \ No newline at end of file +}), 'Waves'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WavesOutlined.js b/packages/material-ui-icons/lib/WavesOutlined.js index 2da5c057f3d364..09284ebf4997b6 100644 --- a/packages/material-ui-icons/lib/WavesOutlined.js +++ b/packages/material-ui-icons/lib/WavesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" -}), 'WavesOutlined'); \ No newline at end of file +}), 'WavesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WavesRounded.js b/packages/material-ui-icons/lib/WavesRounded.js index c01b1c99e77d98..9d175908efb862 100644 --- a/packages/material-ui-icons/lib/WavesRounded.js +++ b/packages/material-ui-icons/lib/WavesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.43.22-.81.41-1.27.52-.45.1-.78.46-.78.91v.1c0 .6.56 1.03 1.14.91.74-.15 1.3-.43 1.81-.69.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.91v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.39-1.6-.81-2.95-.81zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.43.21-.81.41-1.28.52-.44.1-.77.46-.77.91v.1c0 .59.54 1.03 1.12.91.75-.15 1.31-.44 1.83-.69.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.92v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.43.22-.81.41-1.27.52-.45.1-.78.46-.78.91v.07c0 .6.54 1.04 1.12.92.75-.15 1.31-.44 1.83-.69.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.92v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.28-1.26-.5zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.43.23-.8.42-1.26.52-.45.1-.79.46-.79.92v.09c0 .59.54 1.03 1.12.91.75-.15 1.31-.44 1.83-.69.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.91v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.39-1.6-.81-2.95-.81z" -}), 'WavesRounded'); \ No newline at end of file +}), 'WavesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WavesSharp.js b/packages/material-ui-icons/lib/WavesSharp.js index fd54eade0258c6..37a6fec553e472 100644 --- a/packages/material-ui-icons/lib/WavesSharp.js +++ b/packages/material-ui-icons/lib/WavesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" -}), 'WavesSharp'); \ No newline at end of file +}), 'WavesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WavesTwoTone.js b/packages/material-ui-icons/lib/WavesTwoTone.js index 33c5773c420ce8..f8c8920960b5dc 100644 --- a/packages/material-ui-icons/lib/WavesTwoTone.js +++ b/packages/material-ui-icons/lib/WavesTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" -}), 'WavesTwoTone'); \ No newline at end of file +}), 'WavesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbAuto.js b/packages/material-ui-icons/lib/WbAuto.js index b509bcc8fedff1..62f3b8b12fbb4e 100644 --- a/packages/material-ui-icons/lib/WbAuto.js +++ b/packages/material-ui-icons/lib/WbAuto.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z" -}), 'WbAuto'); \ No newline at end of file +}), 'WbAuto'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbAutoOutlined.js b/packages/material-ui-icons/lib/WbAutoOutlined.js index ea77c02d329dd9..8059202c7e1ccb 100644 --- a/packages/material-ui-icons/lib/WbAutoOutlined.js +++ b/packages/material-ui-icons/lib/WbAutoOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-8.63 7.67C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z" -}), 'WbAutoOutlined'); \ No newline at end of file +}), 'WbAutoOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbAutoRounded.js b/packages/material-ui-icons/lib/WbAutoRounded.js index ce54e461e906ba..717dba58fd1b39 100644 --- a/packages/material-ui-icons/lib/WbAutoRounded.js +++ b/packages/material-ui-icons/lib/WbAutoRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.85 12.65h2.3L8 9zM22.72 7c-.42 0-.77.3-.85.7l-1.07 5.59-1.31-5.51c-.11-.46-.52-.78-.99-.78s-.88.32-.98.78l-1.31 5.51-1.07-5.59c-.08-.4-.44-.7-.85-.7-.01 0-.03.01-.04.01C12.78 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.17 0 5.9-1.85 7.2-4.52.2.32.55.52.94.52.51 0 .95-.35 1.07-.84L18.5 9.9l1.29 5.26c.12.49.57.84 1.07.84.52 0 .96-.36 1.08-.86l1.61-7.08c.13-.54-.28-1.06-.83-1.06zm-11.79 9c-.38 0-.72-.24-.84-.6L9.6 14H6.4l-.49 1.4c-.13.36-.46.6-.84.6-.62 0-1.05-.61-.84-1.19l2.44-6.86C6.87 7.38 7.4 7 8 7s1.13.38 1.34.94l2.44 6.86c.2.59-.23 1.2-.85 1.2z" -}), 'WbAutoRounded'); \ No newline at end of file +}), 'WbAutoRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbAutoSharp.js b/packages/material-ui-icons/lib/WbAutoSharp.js index 4e4eab4c27feae..8e21f62114df02 100644 --- a/packages/material-ui-icons/lib/WbAutoSharp.js +++ b/packages/material-ui-icons/lib/WbAutoSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z" -}), 'WbAutoSharp'); \ No newline at end of file +}), 'WbAutoSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbAutoTwoTone.js b/packages/material-ui-icons/lib/WbAutoTwoTone.js index 438802eec66cf0..2cc7515c0c4457 100644 --- a/packages/material-ui-icons/lib/WbAutoTwoTone.js +++ b/packages/material-ui-icons/lib/WbAutoTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.35 0 4.38-1.36 5.36-3.32l.01-.01c.4-.81.63-1.71.63-2.67 0-3.31-2.69-6-6-6zm2.3 10-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L8 9z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m7 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zm13.95.64L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22l-1.2 6.29zm-7.43 1.38C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z" -}, "1")], 'WbAutoTwoTone'); \ No newline at end of file +}, "1")], 'WbAutoTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbCloudy.js b/packages/material-ui-icons/lib/WbCloudy.js index 585a856397ae5a..4c2fc2dd9f58c6 100644 --- a/packages/material-ui-icons/lib/WbCloudy.js +++ b/packages/material-ui-icons/lib/WbCloudy.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.36 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" -}), 'WbCloudy'); \ No newline at end of file +}), 'WbCloudy'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbCloudyOutlined.js b/packages/material-ui-icons/lib/WbCloudyOutlined.js index 800cca011b19cf..cd2847bd7420e1 100644 --- a/packages/material-ui-icons/lib/WbCloudyOutlined.js +++ b/packages/material-ui-icons/lib/WbCloudyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6m0-2C9.12 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96C18.68 6.59 15.65 4 12.01 4z" -}), 'WbCloudyOutlined'); \ No newline at end of file +}), 'WbCloudyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbCloudyRounded.js b/packages/material-ui-icons/lib/WbCloudyRounded.js index 2b0eb6b153b73d..bf0289e738cfe6 100644 --- a/packages/material-ui-icons/lib/WbCloudyRounded.js +++ b/packages/material-ui-icons/lib/WbCloudyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04C2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" -}), 'WbCloudyRounded'); \ No newline at end of file +}), 'WbCloudyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbCloudySharp.js b/packages/material-ui-icons/lib/WbCloudySharp.js index 6ecf56a9c6c6b6..087b43571c509c 100644 --- a/packages/material-ui-icons/lib/WbCloudySharp.js +++ b/packages/material-ui-icons/lib/WbCloudySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04C2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" -}), 'WbCloudySharp'); \ No newline at end of file +}), 'WbCloudySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbCloudyTwoTone.js b/packages/material-ui-icons/lib/WbCloudyTwoTone.js index cf9212b0bdd687..8c5f9fd0aea8e5 100644 --- a/packages/material-ui-icons/lib/WbCloudyTwoTone.js +++ b/packages/material-ui-icons/lib/WbCloudyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.23 12.04-1.52-.11-.3-1.5C16.89 7.86 14.62 6 12.01 6 9.95 6 8.08 7.14 7.13 8.96l-.5.95-1.07.11c-2.02.22-3.55 1.93-3.55 3.98 0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.23-2.86-2.78-2.96z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.36 10.04C18.67 6.59 15.65 4 12.01 4 9.11 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19.01 18h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z" -}, "1")], 'WbCloudyTwoTone'); \ No newline at end of file +}, "1")], 'WbCloudyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIncandescent.js b/packages/material-ui-icons/lib/WbIncandescent.js index ad0f58c19bc6fb..4eaf7c03447e4e 100644 --- a/packages/material-ui-icons/lib/WbIncandescent.js +++ b/packages/material-ui-icons/lib/WbIncandescent.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.55 18.54 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 22.45h2V19.5h-2v2.95zM4 10.5H1v2h3v-2zm11-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z" -}), 'WbIncandescent'); \ No newline at end of file +}), 'WbIncandescent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIncandescentOutlined.js b/packages/material-ui-icons/lib/WbIncandescentOutlined.js index bce57267994c10..c00e31c8439c94 100644 --- a/packages/material-ui-icons/lib/WbIncandescentOutlined.js +++ b/packages/material-ui-icons/lib/WbIncandescentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.55 19.09 1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm12-6.95v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.42.77-2.74 2-3.46l1-.58V4.05h2m2-2H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19V2.05zM20 11h3v2h-3zm-2.76 7.71 1.79 1.8 1.41-1.41-1.8-1.79z" -}), 'WbIncandescentOutlined'); \ No newline at end of file +}), 'WbIncandescentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIncandescentRounded.js b/packages/material-ui-icons/lib/WbIncandescentRounded.js index 1b7025da958f04..eab4f72a8c7e23 100644 --- a/packages/material-ui-icons/lib/WbIncandescentRounded.js +++ b/packages/material-ui-icons/lib/WbIncandescentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.25 19.79c.39.39 1.02.39 1.41 0l.39-.39c.39-.39.38-1.02 0-1.4l-.01-.01a.9959.9959 0 0 0-1.41 0l-.39.39c-.38.4-.38 1.02.01 1.41zM11.99 23H12c.55 0 .99-.44.99-.99v-.96c0-.55-.44-.99-.99-.99h-.01c-.55 0-.99.44-.99.99v.96c0 .55.44.99.99.99zM3.01 11.05H1.99c-.55 0-.99.44-.99.99v.01c0 .55.44.99.99.99H3c.55 0 .99-.44.99-.99v-.01c.01-.55-.43-.99-.98-.99zM15 6.86V3.05c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3.81c-2.04 1.18-3.32 3.52-2.93 6.13.4 2.61 2.56 4.7 5.18 5.02 3.64.44 6.75-2.4 6.75-5.95 0-2.23-1.21-4.16-3-5.2zm5 5.18v.01c0 .55.44.99.99.99H22c.55 0 .99-.44.99-.99v-.01c0-.55-.44-.99-.99-.99h-1.01c-.55 0-.99.44-.99.99zm-2.06 7.37.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39c-.39-.39-1.02-.38-1.4 0-.4.4-.4 1.02-.01 1.41z" -}), 'WbIncandescentRounded'); \ No newline at end of file +}), 'WbIncandescentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIncandescentSharp.js b/packages/material-ui-icons/lib/WbIncandescentSharp.js index 401d729c49b04d..17447b14d1527e 100644 --- a/packages/material-ui-icons/lib/WbIncandescentSharp.js +++ b/packages/material-ui-icons/lib/WbIncandescentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.55 19.09 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 23h2v-2.95h-2V23zM4 11.05H1v2h3v-2zm11-4.19V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z" -}), 'WbIncandescentSharp'); \ No newline at end of file +}), 'WbIncandescentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIncandescentTwoTone.js b/packages/material-ui-icons/lib/WbIncandescentTwoTone.js index 67b32215636df9..f3d9daba29039e 100644 --- a/packages/material-ui-icons/lib/WbIncandescentTwoTone.js +++ b/packages/material-ui-icons/lib/WbIncandescentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m14 8.59-1-.58V4.05h-2v3.96l-1 .58c-1.24.72-2 2.04-2 3.46 0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.42-.77-2.74-2-3.46z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m3.55 19.09 1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm14-4.14V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm-3 9.19c-2.21 0-4-1.79-4-4 0-1.42.77-2.74 2-3.46l1-.58V4.05h2v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4zM20 11h3v2h-3zm-2.76 7.71 1.79 1.8 1.41-1.41-1.8-1.79z" -}, "1")], 'WbIncandescentTwoTone'); \ No newline at end of file +}, "1")], 'WbIncandescentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIridescent.js b/packages/material-ui-icons/lib/WbIridescent.js index a25511944457fb..65a81ceb08e588 100644 --- a/packages/material-ui-icons/lib/WbIridescent.js +++ b/packages/material-ui-icons/lib/WbIridescent.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 14.5h14v-6H5v6zM11 .55V3.5h2V.55h-2zm8.04 2.5-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 22.45V19.5h-2v2.95h2zm7.45-3.91-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 4.46l1.79 1.79 1.41-1.41-1.79-1.79-1.41 1.41zm1.41 15.49 1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z" -}), 'WbIridescent'); \ No newline at end of file +}), 'WbIridescent'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIridescentOutlined.js b/packages/material-ui-icons/lib/WbIridescentOutlined.js index 7d307c23772c81..390694c022f522 100644 --- a/packages/material-ui-icons/lib/WbIridescentOutlined.js +++ b/packages/material-ui-icons/lib/WbIridescentOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z" -}), 'WbIridescentOutlined'); \ No newline at end of file +}), 'WbIridescentOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIridescentRounded.js b/packages/material-ui-icons/lib/WbIridescentRounded.js index 60b45394c50edc..764c693c27ca8e 100644 --- a/packages/material-ui-icons/lib/WbIridescentRounded.js +++ b/packages/material-ui-icons/lib/WbIridescentRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 15h12c.55 0 1-.45 1-1v-3.95c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1V14c0 .55.45 1 1 1zm5-13v1.05c0 .55.45.95 1 .95s1-.4 1-.95V2c0-.55-.45-1-1-1s-1 .45-1 1zm7.34 2.3-.38.38c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.38-.38c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0zM13 22v-.96c0-.55-.45-1-1-1s-1 .45-1 1V22c0 .55.45 1 1 1s1-.45 1-1zm6.74-3.61-.39-.39a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.38.39c.39.39 1.02.39 1.41 0l.01-.01c.39-.38.39-1.02 0-1.4zM4.25 5.71l.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41zm1.42 14.08.38-.38c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.38.38c-.39.39-.39 1.02 0 1.41.38.39 1.02.39 1.41 0z" -}), 'WbIridescentRounded'); \ No newline at end of file +}), 'WbIridescentRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIridescentSharp.js b/packages/material-ui-icons/lib/WbIridescentSharp.js index aabae717f3b7ad..80feb57c078ebd 100644 --- a/packages/material-ui-icons/lib/WbIridescentSharp.js +++ b/packages/material-ui-icons/lib/WbIridescentSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h14V9.05H5V15zm6-14v3h2V1h-2zm8.04 2.6-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 23v-2.95h-2V23h2zm7.45-3.91-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 5.01 5.34 6.8l1.41-1.41L4.96 3.6 3.55 5.01zM4.96 20.5l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z" -}), 'WbIridescentSharp'); \ No newline at end of file +}), 'WbIridescentSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbIridescentTwoTone.js b/packages/material-ui-icons/lib/WbIridescentTwoTone.js index 63e197b40b8406..d8ecc82bd10a3e 100644 --- a/packages/material-ui-icons/lib/WbIridescentTwoTone.js +++ b/packages/material-ui-icons/lib/WbIridescentTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 11h10v2H7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm6.25 4.39 1.41 1.41 1.8-1.79-1.42-1.41zM11 20h2v3h-2zm6.24-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM5.34 6.805l-1.788-1.79L4.96 3.61l1.788 1.788zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z" -}, "1")], 'WbIridescentTwoTone'); \ No newline at end of file +}, "1")], 'WbIridescentTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbShade.js b/packages/material-ui-icons/lib/WbShade.js index c6cfc1b6f93c62..dff497d0dd52ab 100644 --- a/packages/material-ui-icons/lib/WbShade.js +++ b/packages/material-ui-icons/lib/WbShade.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12v2.5l5.5 5.5H22zm0 8h3l-3-3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" -}), 'WbShade'); \ No newline at end of file +}), 'WbShade'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbShadeOutlined.js b/packages/material-ui-icons/lib/WbShadeOutlined.js index 768d65af4c388d..81323d51f9be7e 100644 --- a/packages/material-ui-icons/lib/WbShadeOutlined.js +++ b/packages/material-ui-icons/lib/WbShadeOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" -}), 'WbShadeOutlined'); \ No newline at end of file +}), 'WbShadeOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbShadeRounded.js b/packages/material-ui-icons/lib/WbShadeRounded.js index 37e0e00d5fb4a2..bbda9f36fc6e95 100644 --- a/packages/material-ui-icons/lib/WbShadeRounded.js +++ b/packages/material-ui-icons/lib/WbShadeRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 14.13c0 .23.09.46.26.63l4.98 4.98c.17.17.39.26.62.26.79 0 1.18-.95.62-1.51l-4.98-4.98c-.55-.56-1.5-.16-1.5.62zM15 20h2l-3-3v2c0 .55.45 1 1 1zM7.65 4.35l-4.8 4.8c-.31.31-.09.85.36.85H4v9c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-9h.79c.45 0 .67-.54.35-.85l-4.79-4.8c-.19-.19-.51-.19-.7 0zM9 14H7v-4h2v4z" -}), 'WbShadeRounded'); \ No newline at end of file +}), 'WbShadeRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbShadeSharp.js b/packages/material-ui-icons/lib/WbShadeSharp.js index b6777e3cda4cd2..02a577a58741bd 100644 --- a/packages/material-ui-icons/lib/WbShadeSharp.js +++ b/packages/material-ui-icons/lib/WbShadeSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" -}), 'WbShadeSharp'); \ No newline at end of file +}), 'WbShadeSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbShadeTwoTone.js b/packages/material-ui-icons/lib/WbShadeTwoTone.js index 8911a57269cce9..59e019659dba2f 100644 --- a/packages/material-ui-icons/lib/WbShadeTwoTone.js +++ b/packages/material-ui-icons/lib/WbShadeTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" -}), 'WbShadeTwoTone'); \ No newline at end of file +}), 'WbShadeTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbSunny.js b/packages/material-ui-icons/lib/WbSunny.js index 7f35c1e3cb7945..40c1b1eb143eac 100644 --- a/packages/material-ui-icons/lib/WbSunny.js +++ b/packages/material-ui-icons/lib/WbSunny.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.76 4.84-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z" -}), 'WbSunny'); \ No newline at end of file +}), 'WbSunny'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbSunnyOutlined.js b/packages/material-ui-icons/lib/WbSunnyOutlined.js index fc0d50fffb986d..70384930f8416f 100644 --- a/packages/material-ui-icons/lib/WbSunnyOutlined.js +++ b/packages/material-ui-icons/lib/WbSunnyOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.76 4.84-1.8-1.79-1.41 1.41 1.79 1.79zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm8.04 2.495 1.408 1.407-1.79 1.79-1.407-1.408zm-1.8 15.115 1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96 1.41 1.41 1.79-1.8-1.41-1.41z" -}), 'WbSunnyOutlined'); \ No newline at end of file +}), 'WbSunnyOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbSunnyRounded.js b/packages/material-ui-icons/lib/WbSunnyRounded.js index 4cb73d730c60a4..c74449d2388f19 100644 --- a/packages/material-ui-icons/lib/WbSunnyRounded.js +++ b/packages/material-ui-icons/lib/WbSunnyRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.05 4.14-.39-.39c-.39-.39-1.02-.38-1.4 0l-.01.01c-.39.39-.39 1.02 0 1.4l.39.39c.39.39 1.01.39 1.4 0l.01-.01c.39-.38.39-1.02 0-1.4zM3.01 10.5H1.99c-.55 0-.99.44-.99.99v.01c0 .55.44.99.99.99H3c.56.01 1-.43 1-.98v-.01c0-.56-.44-1-.99-1zm9-9.95H12c-.56 0-1 .44-1 .99v.96c0 .55.44.99.99.99H12c.56.01 1-.43 1-.98v-.97c0-.55-.44-.99-.99-.99zm7.74 3.21c-.39-.39-1.02-.39-1.41-.01l-.39.39c-.39.39-.39 1.02 0 1.4l.01.01c.39.39 1.02.39 1.4 0l.39-.39c.39-.39.39-1.01 0-1.4zm-1.81 15.1.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39c-.39-.39-1.02-.38-1.4 0-.4.4-.4 1.02-.01 1.41zM20 11.49v.01c0 .55.44.99.99.99H22c.55 0 .99-.44.99-.99v-.01c0-.55-.44-.99-.99-.99h-1.01c-.55 0-.99.44-.99.99zM12 5.5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-.01 16.95H12c.55 0 .99-.44.99-.99v-.96c0-.55-.44-.99-.99-.99h-.01c-.55 0-.99.44-.99.99v.96c0 .55.44.99.99.99zm-7.74-3.21c.39.39 1.02.39 1.41 0l.39-.39c.39-.39.38-1.02 0-1.4l-.01-.01a.9959.9959 0 0 0-1.41 0l-.39.39c-.38.4-.38 1.02.01 1.41z" -}), 'WbSunnyRounded'); \ No newline at end of file +}), 'WbSunnyRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbSunnySharp.js b/packages/material-ui-icons/lib/WbSunnySharp.js index bb0692db2a6f68..0fe81a8f01c4aa 100644 --- a/packages/material-ui-icons/lib/WbSunnySharp.js +++ b/packages/material-ui-icons/lib/WbSunnySharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m6.76 4.84-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z" -}), 'WbSunnySharp'); \ No newline at end of file +}), 'WbSunnySharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbSunnyTwoTone.js b/packages/material-ui-icons/lib/WbSunnyTwoTone.js index 927f0bba5fb548..1b53a4647d5789 100644 --- a/packages/material-ui-icons/lib/WbSunnyTwoTone.js +++ b/packages/material-ui-icons/lib/WbSunnyTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7.5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m5.34 6.25 1.42-1.41-1.8-1.79-1.41 1.41zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm7.66 5.705-1.41-1.407 1.79-1.79 1.406 1.41zM17.24 18.16l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96 1.41 1.41 1.79-1.8-1.41-1.41z" -}, "1")], 'WbSunnyTwoTone'); \ No newline at end of file +}, "1")], 'WbSunnyTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbTwilight.js b/packages/material-ui-icons/lib/WbTwilight.js index 7fd1ff27bae54b..6653684db29bc4 100644 --- a/packages/material-ui-icons/lib/WbTwilight.js +++ b/packages/material-ui-icons/lib/WbTwilight.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" -}), 'WbTwilight'); \ No newline at end of file +}), 'WbTwilight'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbTwilightOutlined.js b/packages/material-ui-icons/lib/WbTwilightOutlined.js index ce4f544c8944fa..a38adbeb5b88cc 100644 --- a/packages/material-ui-icons/lib/WbTwilightOutlined.js +++ b/packages/material-ui-icons/lib/WbTwilightOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" -}), 'WbTwilightOutlined'); \ No newline at end of file +}), 'WbTwilightOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbTwilightRounded.js b/packages/material-ui-icons/lib/WbTwilightRounded.js index e54d8201f7f3dd..35153eca503efe 100644 --- a/packages/material-ui-icons/lib/WbTwilightRounded.js +++ b/packages/material-ui-icons/lib/WbTwilightRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.07 9.37.71-.71c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.71.71c-.39.39-.39 1.02 0 1.41.38.39 1.02.39 1.41 0zM21 18H3c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM12 7c.56 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1zM4.96 9.34c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.71.71zM19 16c0-3.87-3.13-7-7-7s-7 3.13-7 7h14z" -}), 'WbTwilightRounded'); \ No newline at end of file +}), 'WbTwilightRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbTwilightSharp.js b/packages/material-ui-icons/lib/WbTwilightSharp.js index 655060b513e17e..0bffdbd704d4d5 100644 --- a/packages/material-ui-icons/lib/WbTwilightSharp.js +++ b/packages/material-ui-icons/lib/WbTwilightSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" -}), 'WbTwilightSharp'); \ No newline at end of file +}), 'WbTwilightSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WbTwilightTwoTone.js b/packages/material-ui-icons/lib/WbTwilightTwoTone.js index 8260dc9371f8ba..da44969d7c7d16 100644 --- a/packages/material-ui-icons/lib/WbTwilightTwoTone.js +++ b/packages/material-ui-icons/lib/WbTwilightTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" -}), 'WbTwilightTwoTone'); \ No newline at end of file +}), 'WbTwilightTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Wc.js b/packages/material-ui-icons/lib/Wc.js index e6c7215239d76b..fbca1131624bcc 100644 --- a/packages/material-ui-icons/lib/Wc.js +++ b/packages/material-ui-icons/lib/Wc.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" -}), 'Wc'); \ No newline at end of file +}), 'Wc'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WcOutlined.js b/packages/material-ui-icons/lib/WcOutlined.js index 6df76422da041d..55d4cf7f0234ed 100644 --- a/packages/material-ui-icons/lib/WcOutlined.js +++ b/packages/material-ui-icons/lib/WcOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" -}), 'WcOutlined'); \ No newline at end of file +}), 'WcOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WcRounded.js b/packages/material-ui-icons/lib/WcRounded.js index f918a68aa13b84..92274915c83fc5 100644 --- a/packages/material-ui-icons/lib/WcRounded.js +++ b/packages/material-ui-icons/lib/WcRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 21v-6.5H5c-.55 0-1-.45-1-1V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v4.5c0 .55-.45 1-1 1h-.5V21c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1zM18 21v-5h1.61c.68 0 1.16-.67.95-1.32l-2.1-6.31C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37l-2.1 6.31c-.22.65.26 1.32.95 1.32H15v5c0 .55.45 1 1 1h1c.55 0 1-.45 1-1zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" -}), 'WcRounded'); \ No newline at end of file +}), 'WcRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WcSharp.js b/packages/material-ui-icons/lib/WcSharp.js index ce94426b0a3ee3..496959706c79ff 100644 --- a/packages/material-ui-icons/lib/WcSharp.js +++ b/packages/material-ui-icons/lib/WcSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 22v-7.5H4V7h7v7.5H9.5V22h-4zM18 22v-6h3l-3-9h-3l-3 9h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" -}), 'WcSharp'); \ No newline at end of file +}), 'WcSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WcTwoTone.js b/packages/material-ui-icons/lib/WcTwoTone.js index 0ecf95307b68a4..d12830b536a9f3 100644 --- a/packages/material-ui-icons/lib/WcTwoTone.js +++ b/packages/material-ui-icons/lib/WcTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" -}), 'WcTwoTone'); \ No newline at end of file +}), 'WcTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Web.js b/packages/material-ui-icons/lib/Web.js index 3a252669607044..e15025a8f54159 100644 --- a/packages/material-ui-icons/lib/Web.js +++ b/packages/material-ui-icons/lib/Web.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z" -}), 'Web'); \ No newline at end of file +}), 'Web'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAsset.js b/packages/material-ui-icons/lib/WebAsset.js index e54eaa8468c2ec..ce12c91d27a786 100644 --- a/packages/material-ui-icons/lib/WebAsset.js +++ b/packages/material-ui-icons/lib/WebAsset.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" -}), 'WebAsset'); \ No newline at end of file +}), 'WebAsset'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetOff.js b/packages/material-ui-icons/lib/WebAssetOff.js index 1d656eb1cbc210..dc3f89b8f444c2 100644 --- a/packages/material-ui-icons/lib/WebAssetOff.js +++ b/packages/material-ui-icons/lib/WebAssetOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm13.66 19.31L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" -}), 'WebAssetOff'); \ No newline at end of file +}), 'WebAssetOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetOffOutlined.js b/packages/material-ui-icons/lib/WebAssetOffOutlined.js index a05f666797a87a..ff605a37fda6b8 100644 --- a/packages/material-ui-icons/lib/WebAssetOffOutlined.js +++ b/packages/material-ui-icons/lib/WebAssetOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm13.66 19.31L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" -}), 'WebAssetOffOutlined'); \ No newline at end of file +}), 'WebAssetOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetOffRounded.js b/packages/material-ui-icons/lib/WebAssetOffRounded.js index de2f043030685a..bfbf328b6f2178 100644 --- a/packages/material-ui-icons/lib/WebAssetOffRounded.js +++ b/packages/material-ui-icons/lib/WebAssetOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm12.95 18.61L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94l-.84-.84a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.39.39.39 1.02 0 1.41-.38.4-1.01.4-1.4.01zM15.17 18l-10-10H4v10h11.17z" -}), 'WebAssetOffRounded'); \ No newline at end of file +}), 'WebAssetOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetOffSharp.js b/packages/material-ui-icons/lib/WebAssetOffSharp.js index 26b6cd7e740508..0372c080ff6e83 100644 --- a/packages/material-ui-icons/lib/WebAssetOffSharp.js +++ b/packages/material-ui-icons/lib/WebAssetOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H22v15.17l-2-2V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" -}), 'WebAssetOffSharp'); \ No newline at end of file +}), 'WebAssetOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetOffTwoTone.js b/packages/material-ui-icons/lib/WebAssetOffTwoTone.js index d36f4388249620..64dfff6e3997d2 100644 --- a/packages/material-ui-icons/lib/WebAssetOffTwoTone.js +++ b/packages/material-ui-icons/lib/WebAssetOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 17.17V8h-9.17L20 17.17zM5.17 8H4v10h11.17l-10-10z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm13.66 19.31L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" -}, "1")], 'WebAssetOffTwoTone'); \ No newline at end of file +}, "1")], 'WebAssetOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetOutlined.js b/packages/material-ui-icons/lib/WebAssetOutlined.js index 2e3cb495b8c203..fb5b8be1a2f175 100644 --- a/packages/material-ui-icons/lib/WebAssetOutlined.js +++ b/packages/material-ui-icons/lib/WebAssetOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" -}), 'WebAssetOutlined'); \ No newline at end of file +}), 'WebAssetOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetRounded.js b/packages/material-ui-icons/lib/WebAssetRounded.js index 927c4929efbeb1..84d0974aa32bc9 100644 --- a/packages/material-ui-icons/lib/WebAssetRounded.js +++ b/packages/material-ui-icons/lib/WebAssetRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-1 14H6c-.55 0-1-.45-1-1V8h14v9c0 .55-.45 1-1 1z" -}), 'WebAssetRounded'); \ No newline at end of file +}), 'WebAssetRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetSharp.js b/packages/material-ui-icons/lib/WebAssetSharp.js index 4ba312746b8001..02be60c79cf044 100644 --- a/packages/material-ui-icons/lib/WebAssetSharp.js +++ b/packages/material-ui-icons/lib/WebAssetSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M3 4v16h18V4H3zm16 14H5V8h14v10z" -}), 'WebAssetSharp'); \ No newline at end of file +}), 'WebAssetSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebAssetTwoTone.js b/packages/material-ui-icons/lib/WebAssetTwoTone.js index 47a55facf99fff..8201eab88504af 100644 --- a/packages/material-ui-icons/lib/WebAssetTwoTone.js +++ b/packages/material-ui-icons/lib/WebAssetTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 8h14v10H5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" -}, "1")], 'WebAssetTwoTone'); \ No newline at end of file +}, "1")], 'WebAssetTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebOutlined.js b/packages/material-ui-icons/lib/WebOutlined.js index 3644a6ad0e7444..219374c7f08052 100644 --- a/packages/material-ui-icons/lib/WebOutlined.js +++ b/packages/material-ui-icons/lib/WebOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H4v-3.5zM20 18h-3.5V9H20v9z" -}), 'WebOutlined'); \ No newline at end of file +}), 'WebOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebRounded.js b/packages/material-ui-icons/lib/WebRounded.js index 46b96147a247fa..2bcc492d725c74 100644 --- a/packages/material-ui-icons/lib/WebRounded.js +++ b/packages/material-ui-icons/lib/WebRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H5c-.55 0-1-.45-1-1v-2.5zM19 18h-2.5V9H20v8c0 .55-.45 1-1 1z" -}), 'WebRounded'); \ No newline at end of file +}), 'WebRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebSharp.js b/packages/material-ui-icons/lib/WebSharp.js index 3d81dea84e40f4..21fd21d11b15fe 100644 --- a/packages/material-ui-icons/lib/WebSharp.js +++ b/packages/material-ui-icons/lib/WebSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4H2v16h20V4zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H4v-3.5zM20 18h-3.5V9H20v9z" -}), 'WebSharp'); \ No newline at end of file +}), 'WebSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WebTwoTone.js b/packages/material-ui-icons/lib/WebTwoTone.js index 527c8c94692bd4..b885cd495595d1 100644 --- a/packages/material-ui-icons/lib/WebTwoTone.js +++ b/packages/material-ui-icons/lib/WebTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 9h10.5v3.5H4zm0 5.5h10.5V18H4zM16.5 9H20v9h-3.5z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5.5 14H4v-3.5h10.5V18zm0-5.5H4V9h10.5v3.5zM20 18h-3.5V9H20v9z" -}, "1")], 'WebTwoTone'); \ No newline at end of file +}, "1")], 'WebTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Weekend.js b/packages/material-ui-icons/lib/Weekend.js index 1c9ded6449d905..fae64f15c94701 100644 --- a/packages/material-ui-icons/lib/Weekend.js +++ b/packages/material-ui-icons/lib/Weekend.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10c-1.1 0-2 .9-2 2v3H5v-3c0-1.1-.89-2-2-2s-2 .9-2 2v5c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm-3-5H6c-1.1 0-2 .9-2 2v2.15c1.16.41 2 1.52 2 2.81V14h12v-2.03c0-1.3.84-2.4 2-2.81V7c0-1.1-.9-2-2-2z" -}), 'Weekend'); \ No newline at end of file +}), 'Weekend'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WeekendOutlined.js b/packages/material-ui-icons/lib/WeekendOutlined.js index b4b3fed6bdd3c6..4af98e184ca5c0 100644 --- a/packages/material-ui-icons/lib/WeekendOutlined.js +++ b/packages/material-ui-icons/lib/WeekendOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z" -}), 'WeekendOutlined'); \ No newline at end of file +}), 'WeekendOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WeekendRounded.js b/packages/material-ui-icons/lib/WeekendRounded.js index 4dac70c32aa064..baa5bd9c2ff6fd 100644 --- a/packages/material-ui-icons/lib/WeekendRounded.js +++ b/packages/material-ui-icons/lib/WeekendRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 10c-1.1 0-2 .9-2 2v3H5v-3c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm-3-5H6c-1.1 0-2 .9-2 2v2.15c1.16.41 2 1.51 2 2.82V14h12v-2.03c0-1.3.84-2.4 2-2.82V7c0-1.1-.9-2-2-2z" -}), 'WeekendRounded'); \ No newline at end of file +}), 'WeekendRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WeekendSharp.js b/packages/material-ui-icons/lib/WeekendSharp.js index 18911446bba381..33b243ae4240c8 100644 --- a/packages/material-ui-icons/lib/WeekendSharp.js +++ b/packages/material-ui-icons/lib/WeekendSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 9.03V14h12V9.03h2V5H4v4.03zM19 15H5v-4.97H1V19h22v-8.97h-4z" -}), 'WeekendSharp'); \ No newline at end of file +}), 'WeekendSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WeekendTwoTone.js b/packages/material-ui-icons/lib/WeekendTwoTone.js index 3cb04d74163e43..679d0ef2aebf5a 100644 --- a/packages/material-ui-icons/lib/WeekendTwoTone.js +++ b/packages/material-ui-icons/lib/WeekendTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 11c-.55 0-1 .45-1 1v4H4v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zM6 14h12v-2c0-.88.39-1.67 1-2.22V7c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2.78c.61.55 1 1.34 1 2.22v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z" -}, "1")], 'WeekendTwoTone'); \ No newline at end of file +}, "1")], 'WeekendTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/West.js b/packages/material-ui-icons/lib/West.js index 589a1485b3dcdc..5c5f13efdb3d83 100644 --- a/packages/material-ui-icons/lib/West.js +++ b/packages/material-ui-icons/lib/West.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" -}), 'West'); \ No newline at end of file +}), 'West'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WestOutlined.js b/packages/material-ui-icons/lib/WestOutlined.js index 5a8a477d0ca214..1013cb7964cba3 100644 --- a/packages/material-ui-icons/lib/WestOutlined.js +++ b/packages/material-ui-icons/lib/WestOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" -}), 'WestOutlined'); \ No newline at end of file +}), 'WestOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WestRounded.js b/packages/material-ui-icons/lib/WestRounded.js index da36d79db6a45d..b6a230e8f57379 100644 --- a/packages/material-ui-icons/lib/WestRounded.js +++ b/packages/material-ui-icons/lib/WestRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M9.7 18.3c.39-.39.39-1.02 0-1.41L5.83 13H21c.55 0 1-.45 1-1s-.45-1-1-1H5.83l3.88-3.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L2.7 11.3c-.39.39-.39 1.02 0 1.41l5.59 5.59c.39.38 1.03.38 1.41 0z" -}), 'WestRounded'); \ No newline at end of file +}), 'WestRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WestSharp.js b/packages/material-ui-icons/lib/WestSharp.js index bd37ec46d35465..f09324dc6d1c3e 100644 --- a/packages/material-ui-icons/lib/WestSharp.js +++ b/packages/material-ui-icons/lib/WestSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" -}), 'WestSharp'); \ No newline at end of file +}), 'WestSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WestTwoTone.js b/packages/material-ui-icons/lib/WestTwoTone.js index 76ef292cba18c4..36b50d9ac7cfa3 100644 --- a/packages/material-ui-icons/lib/WestTwoTone.js +++ b/packages/material-ui-icons/lib/WestTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" -}), 'WestTwoTone'); \ No newline at end of file +}), 'WestTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhatsApp.js b/packages/material-ui-icons/lib/WhatsApp.js index d2d9d505ce438a..fd1793a9a64f80 100644 --- a/packages/material-ui-icons/lib/WhatsApp.js +++ b/packages/material-ui-icons/lib/WhatsApp.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.75 13.96c.25.13.41.2.46.3.06.11.04.61-.21 1.18-.2.56-1.24 1.1-1.7 1.12-.46.02-.47.36-2.96-.73-2.49-1.09-3.99-3.75-4.11-3.92-.12-.17-.96-1.38-.92-2.61.05-1.22.69-1.8.95-2.04.24-.26.51-.29.68-.26h.47c.15 0 .36-.06.55.45l.69 1.87c.06.13.1.28.01.44l-.27.41-.39.42c-.12.12-.26.25-.12.5.12.26.62 1.09 1.32 1.78.91.88 1.71 1.17 1.95 1.3.24.14.39.12.54-.04l.81-.94c.19-.25.35-.19.58-.11l1.67.88M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10c-1.97 0-3.8-.57-5.35-1.55L2 22l1.55-4.65A9.969 9.969 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8c0 1.72.54 3.31 1.46 4.61L4.5 19.5l2.89-.96A7.95 7.95 0 0 0 12 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8z" -}), 'WhatsApp'); \ No newline at end of file +}), 'WhatsApp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Whatshot.js b/packages/material-ui-icons/lib/Whatshot.js index cddf84b45e15f0..973b958268d947 100644 --- a/packages/material-ui-icons/lib/Whatshot.js +++ b/packages/material-ui-icons/lib/Whatshot.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z" -}), 'Whatshot'); \ No newline at end of file +}), 'Whatshot'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhatshotOutlined.js b/packages/material-ui-icons/lib/WhatshotOutlined.js index b6c65bbfdc4fe9..dddfd0889bbff5 100644 --- a/packages/material-ui-icons/lib/WhatshotOutlined.js +++ b/packages/material-ui-icons/lib/WhatshotOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z" -}), 'WhatshotOutlined'); \ No newline at end of file +}), 'WhatshotOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhatshotRounded.js b/packages/material-ui-icons/lib/WhatshotRounded.js index d48a6ce496404b..76323842c54b20 100644 --- a/packages/material-ui-icons/lib/WhatshotRounded.js +++ b/packages/material-ui-icons/lib/WhatshotRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.09 4.56c-.7-1.03-1.5-1.99-2.4-2.85-.35-.34-.94-.02-.84.46.19.94.39 2.18.39 3.29 0 2.06-1.35 3.73-3.41 3.73-1.54 0-2.8-.93-3.35-2.26-.1-.2-.14-.32-.2-.54-.11-.42-.66-.55-.9-.18-.18.27-.35.54-.51.83C4.68 9.08 4 11.46 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8c0-3.49-1.08-6.73-2.91-9.44zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.47-.3 2.98-.93 4.03-1.92.28-.26.74-.14.82.23.23 1.02.35 2.08.35 3.15.01 2.65-2.14 4.8-4.79 4.8z" -}), 'WhatshotRounded'); \ No newline at end of file +}), 'WhatshotRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhatshotSharp.js b/packages/material-ui-icons/lib/WhatshotSharp.js index 45de102da5fc56..871a468fea0c39 100644 --- a/packages/material-ui-icons/lib/WhatshotSharp.js +++ b/packages/material-ui-icons/lib/WhatshotSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z" -}), 'WhatshotSharp'); \ No newline at end of file +}), 'WhatshotSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhatshotTwoTone.js b/packages/material-ui-icons/lib/WhatshotTwoTone.js index 04b6f8e0976914..a17e823f431d42 100644 --- a/packages/material-ui-icons/lib/WhatshotTwoTone.js +++ b/packages/material-ui-icons/lib/WhatshotTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.11 6.77c-.53 2.6-2.62 4.43-5.28 4.43-1.56 0-2.96-.62-3.97-1.63C6.3 10.96 6 12.47 6 14c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.56-.66-5.03-1.89-7.23zm-4.22 11.22c-1.37 0-2.49-1.08-2.49-2.42 0-1.25.81-2.13 2.17-2.41 1.37-.28 2.78-.93 3.57-1.99.3 1 .46 2.05.46 3.12 0 2.04-1.66 3.7-3.71 3.7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z" -}, "1")], 'WhatshotTwoTone'); \ No newline at end of file +}, "1")], 'WhatshotTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WheelchairPickup.js b/packages/material-ui-icons/lib/WheelchairPickup.js index c582b107e63709..4e0548fdbb81e0 100644 --- a/packages/material-ui-icons/lib/WheelchairPickup.js +++ b/packages/material-ui-icons/lib/WheelchairPickup.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v6h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" -}), 'WheelchairPickup'); \ No newline at end of file +}), 'WheelchairPickup'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WheelchairPickupOutlined.js b/packages/material-ui-icons/lib/WheelchairPickupOutlined.js index cf02b677479ee0..5c8814267f4787 100644 --- a/packages/material-ui-icons/lib/WheelchairPickupOutlined.js +++ b/packages/material-ui-icons/lib/WheelchairPickupOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v6h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" -}), 'WheelchairPickupOutlined'); \ No newline at end of file +}), 'WheelchairPickupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WheelchairPickupRounded.js b/packages/material-ui-icons/lib/WheelchairPickupRounded.js index 4e3592322f26fc..ea9a6469dd0e0e 100644 --- a/packages/material-ui-icons/lib/WheelchairPickupRounded.js +++ b/packages/material-ui-icons/lib/WheelchairPickupRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h1v6c0 .55.45 1 1 1h2.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm2.5-3h-4V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1h4.46l1.92 2.88c.31.46.93.58 1.39.28.46-.31.58-.93.28-1.39l-2.21-3.32c-.19-.28-.51-.45-.84-.45z" -}), 'WheelchairPickupRounded'); \ No newline at end of file +}), 'WheelchairPickupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WheelchairPickupSharp.js b/packages/material-ui-icons/lib/WheelchairPickupSharp.js index b2972f08db4b64..374085579b6e9f 100644 --- a/packages/material-ui-icons/lib/WheelchairPickupSharp.js +++ b/packages/material-ui-icons/lib/WheelchairPickupSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V7H3v8h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" -}), 'WheelchairPickupSharp'); \ No newline at end of file +}), 'WheelchairPickupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WheelchairPickupTwoTone.js b/packages/material-ui-icons/lib/WheelchairPickupTwoTone.js index 0f8eff488631de..70ea279af1e85d 100644 --- a/packages/material-ui-icons/lib/WheelchairPickupTwoTone.js +++ b/packages/material-ui-icons/lib/WheelchairPickupTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v6h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" -}), 'WheelchairPickupTwoTone'); \ No newline at end of file +}), 'WheelchairPickupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhereToVote.js b/packages/material-ui-icons/lib/WhereToVote.js index 998c408c82d11b..9ffc2b8420b9d5 100644 --- a/packages/material-ui-icons/lib/WhereToVote.js +++ b/packages/material-ui-icons/lib/WhereToVote.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7zm-1.53 12L17 7.41 15.6 6l-5.13 5.18L8.4 9.09 7 10.5l3.47 3.5z" -}), 'WhereToVote'); \ No newline at end of file +}), 'WhereToVote'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhereToVoteOutlined.js b/packages/material-ui-icons/lib/WhereToVoteOutlined.js index f040dafe191815..f2d98bfa0a46b2 100644 --- a/packages/material-ui-icons/lib/WhereToVoteOutlined.js +++ b/packages/material-ui-icons/lib/WhereToVoteOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm-1.53-9.3L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01-1.41-1.42z" -}), 'WhereToVoteOutlined'); \ No newline at end of file +}), 'WhereToVoteOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhereToVoteRounded.js b/packages/material-ui-icons/lib/WhereToVoteRounded.js index 6ad6d74f0bf588..dbd17adf3ef4f1 100644 --- a/packages/material-ui-icons/lib/WhereToVoteRounded.js +++ b/packages/material-ui-icons/lib/WhereToVoteRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm-1.77 10.66-1.41-1.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.83-2.83c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-3.54 3.54c-.38.38-1.02.38-1.41-.01z" -}), 'WhereToVoteRounded'); \ No newline at end of file +}), 'WhereToVoteRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhereToVoteSharp.js b/packages/material-ui-icons/lib/WhereToVoteSharp.js index d8f1ffed39e9e4..5b34564809cf0a 100644 --- a/packages/material-ui-icons/lib/WhereToVoteSharp.js +++ b/packages/material-ui-icons/lib/WhereToVoteSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.53 12-3.48-3.48L8.4 9.1l2.07 2.07 5.13-5.14 1.41 1.42L10.47 14z" -}), 'WhereToVoteSharp'); \ No newline at end of file +}), 'WhereToVoteSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WhereToVoteTwoTone.js b/packages/material-ui-icons/lib/WhereToVoteTwoTone.js index 8d60518b865825..c49d3514cf38ff 100644 --- a/packages/material-ui-icons/lib/WhereToVoteTwoTone.js +++ b/packages/material-ui-icons/lib/WhereToVoteTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 3C8.69 3 6 5.69 6 9c0 3.54 3.82 8.86 6 11.47 1.75-2.11 6-7.63 6-11.47 0-3.31-2.69-6-6-6zm-1.53 11-3.18-3.18L8.71 9.4l1.77 1.77 4.6-4.6 1.41 1.41L10.47 14z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm3.07-13.9-4.6 4.6L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01z" -}, "1")], 'WhereToVoteTwoTone'); \ No newline at end of file +}, "1")], 'WhereToVoteTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Widgets.js b/packages/material-ui-icons/lib/Widgets.js index 4f957a36073d74..c019f79a45b43a 100644 --- a/packages/material-ui-icons/lib/Widgets.js +++ b/packages/material-ui-icons/lib/Widgets.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z" -}), 'Widgets'); \ No newline at end of file +}), 'Widgets'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WidgetsOutlined.js b/packages/material-ui-icons/lib/WidgetsOutlined.js index e0cb4cb37f7c48..c40fb3b6a3c03a 100644 --- a/packages/material-ui-icons/lib/WidgetsOutlined.js +++ b/packages/material-ui-icons/lib/WidgetsOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.66 4.52 2.83 2.83-2.83 2.83-2.83-2.83 2.83-2.83M9 5v4H5V5h4m10 10v4h-4v-4h4M9 15v4H5v-4h4m7.66-13.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65zM11 3H3v8h8V3zm10 10h-8v8h8v-8zm-10 0H3v8h8v-8z" -}), 'WidgetsOutlined'); \ No newline at end of file +}), 'WidgetsOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WidgetsRounded.js b/packages/material-ui-icons/lib/WidgetsRounded.js index a481977e1e273f..df4293b08f7df6 100644 --- a/packages/material-ui-icons/lib/WidgetsRounded.js +++ b/packages/material-ui-icons/lib/WidgetsRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 14v6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1zm-9 7h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zM3 4v6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm12.95-1.6L11.7 6.64c-.39.39-.39 1.02 0 1.41l4.25 4.25c.39.39 1.02.39 1.41 0l4.25-4.25c.39-.39.39-1.02 0-1.41L17.37 2.4c-.39-.39-1.03-.39-1.42 0z" -}), 'WidgetsRounded'); \ No newline at end of file +}), 'WidgetsRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WidgetsSharp.js b/packages/material-ui-icons/lib/WidgetsSharp.js index 37a463e27e170d..758926b2347404 100644 --- a/packages/material-ui-icons/lib/WidgetsSharp.js +++ b/packages/material-ui-icons/lib/WidgetsSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z" -}), 'WidgetsSharp'); \ No newline at end of file +}), 'WidgetsSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WidgetsTwoTone.js b/packages/material-ui-icons/lib/WidgetsTwoTone.js index 9c97972be1884a..1ac57c51785afa 100644 --- a/packages/material-ui-icons/lib/WidgetsTwoTone.js +++ b/packages/material-ui-icons/lib/WidgetsTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 5h4v4H5zm10 10h4v4h-4zM5 15h4v4H5zM16.66 4.52l-2.83 2.82 2.83 2.83 2.83-2.83z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.66 1.69 11 7.34 16.66 13l5.66-5.66-5.66-5.65zm-2.83 5.65 2.83-2.83 2.83 2.83-2.83 2.83-2.83-2.83zM3 3v8h8V3H3zm6 6H5V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-2v8h8v-8h-8zm6 6h-4v-4h4v4z" -}, "1")], 'WidgetsTwoTone'); \ No newline at end of file +}, "1")], 'WidgetsTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Wifi.js b/packages/material-ui-icons/lib/Wifi.js index 15522577dd0e31..848e622d293ab7 100644 --- a/packages/material-ui-icons/lib/Wifi.js +++ b/packages/material-ui-icons/lib/Wifi.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" -}), 'Wifi'); \ No newline at end of file +}), 'Wifi'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCalling.js b/packages/material-ui-icons/lib/WifiCalling.js index 7a03c16dee1f82..4623c6e51fa468 100644 --- a/packages/material-ui-icons/lib/WifiCalling.js +++ b/packages/material-ui-icons/lib/WifiCalling.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.35-.12-.75-.03-1.02.24l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1z" -}, "1")], 'WifiCalling'); \ No newline at end of file +}, "1")], 'WifiCalling'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCalling3.js b/packages/material-ui-icons/lib/WifiCalling3.js index 5fe9ebf94e43a7..425a83fe76ed05 100644 --- a/packages/material-ui-icons/lib/WifiCalling3.js +++ b/packages/material-ui-icons/lib/WifiCalling3.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.18-1.18 2.8-1.91 4.59-1.91s3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.03 7.46C19.12 6.56 17.87 6 16.49 6s-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" -}, "2")], 'WifiCalling3'); \ No newline at end of file +}, "2")], 'WifiCalling3'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCalling3Outlined.js b/packages/material-ui-icons/lib/WifiCalling3Outlined.js index 639585def5f1f3..cfb95d97ccd577 100644 --- a/packages/material-ui-icons/lib/WifiCalling3Outlined.js +++ b/packages/material-ui-icons/lib/WifiCalling3Outlined.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 4.5c1.79 0 3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.19-1.17 2.81-1.9 4.6-1.9z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 6c-1.38 0-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.06-1.06C19.12 6.56 17.87 6 16.49 6zm0 3c-.55 0-1.05.22-1.41.59L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.2 14.87-3.67-.73c-.5-.1-.83.2-.9.27l-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.55.03 1.03-.43 1.03-1v-4.15c0-.48-.34-.89-.8-.98zM5.1 5h2.23l.47 2.35L6.17 9c-.54-1.3-.9-2.63-1.07-4zM19 18.9c-1.37-.18-2.7-.53-4-1.07l1.65-1.63 2.35.47v2.23z" -}, "2")], 'WifiCalling3Outlined'); \ No newline at end of file +}, "2")], 'WifiCalling3Outlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCalling3Rounded.js b/packages/material-ui-icons/lib/WifiCalling3Rounded.js index 5173db94605ad3..2d11c03362936f 100644 --- a/packages/material-ui-icons/lib/WifiCalling3Rounded.js +++ b/packages/material-ui-icons/lib/WifiCalling3Rounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.54 4.8C20.17 3.67 18.41 3 16.49 3s-3.67.67-5.05 1.8c-.34.28-.36.79-.05 1.1l.01.01c.27.27.7.29 1 .05 1.12-.91 2.54-1.45 4.09-1.45s2.97.55 4.09 1.45c.3.24.73.23 1-.05l.01-.01c.31-.31.29-.83-.05-1.1z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.45 8.04c.33-.33.28-.88-.11-1.15-.8-.56-1.79-.89-2.85-.89s-2.04.33-2.85.89c-.38.27-.44.82-.11 1.15.25.25.65.31.94.1.57-.4 1.27-.64 2.02-.64s1.45.24 2.02.64c.29.21.69.15.94-.1zm-2.96.86c-.32 0-.62.08-.89.21-.3.15-.34.56-.11.79l.65.65c.2.2.51.2.71 0l.65-.65c.23-.23.19-.64-.11-.79-.27-.14-.58-.21-.9-.21z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" -}, "2")], 'WifiCalling3Rounded'); \ No newline at end of file +}, "2")], 'WifiCalling3Rounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCalling3Sharp.js b/packages/material-ui-icons/lib/WifiCalling3Sharp.js index 3c7b1c33f8ab42..174eb111da3e0e 100644 --- a/packages/material-ui-icons/lib/WifiCalling3Sharp.js +++ b/packages/material-ui-icons/lib/WifiCalling3Sharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.18-1.18 2.8-1.91 4.59-1.91s3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.03 7.46C19.12 6.56 17.87 6 16.49 6s-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 15-5-1-2.9 2.9c-2.5-1.43-4.57-3.5-6-6L10 8 9 3H3c0 3.28.89 6.35 2.43 9 1.58 2.73 3.85 4.99 6.57 6.57C14.65 20.1 17.72 21 21 21v-6z" -}, "2")], 'WifiCalling3Sharp'); \ No newline at end of file +}, "2")], 'WifiCalling3Sharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCalling3TwoTone.js b/packages/material-ui-icons/lib/WifiCalling3TwoTone.js index a0906180c3820d..697ec796f9c134 100644 --- a/packages/material-ui-icons/lib/WifiCalling3TwoTone.js +++ b/packages/material-ui-icons/lib/WifiCalling3TwoTone.js @@ -1,12 +1,25 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.18-1.18 2.8-1.91 4.59-1.91s3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.03 7.46C19.12 6.56 17.87 6 16.49 6s-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15 17.83c1.29.54 2.63.89 4 1.07v-2.23l-2.35-.47L15 17.83zM7.33 5H5.1c.18 1.37.53 2.7 1.07 4L7.8 7.35 7.33 5z", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.2 14.87-3.67-.73c-.5-.1-.83.2-.9.27l-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.55.03 1.03-.43 1.03-1v-4.15c0-.48-.34-.89-.8-.98zM5.1 5h2.23l.47 2.35L6.17 9c-.54-1.3-.9-2.63-1.07-4zM19 18.9c-1.37-.18-2.7-.53-4-1.07l1.65-1.63 2.35.47v2.23z" -}, "3")], 'WifiCalling3TwoTone'); \ No newline at end of file +}, "3")], 'WifiCalling3TwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCallingOutlined.js b/packages/material-ui-icons/lib/WifiCallingOutlined.js index 2f27a1f2be2429..b032f75a2bf19d 100644 --- a/packages/material-ui-icons/lib/WifiCallingOutlined.js +++ b/packages/material-ui-icons/lib/WifiCallingOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" -}, "1")], 'WifiCallingOutlined'); \ No newline at end of file +}, "1")], 'WifiCallingOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCallingRounded.js b/packages/material-ui-icons/lib/WifiCallingRounded.js index c5372dae233e85..04bfa9551f6e37 100644 --- a/packages/material-ui-icons/lib/WifiCallingRounded.js +++ b/packages/material-ui-icons/lib/WifiCallingRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m19.2 15.28-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64L8.72 4.8c-.12-1.01-.97-1.77-1.99-1.77H5c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.37 15.9 15.9 1.13.07 2.07-.87 2.07-2v-1.73c0-1.02-.76-1.87-1.77-1.99z" -}, "1")], 'WifiCallingRounded'); \ No newline at end of file +}, "1")], 'WifiCallingRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCallingSharp.js b/packages/material-ui-icons/lib/WifiCallingSharp.js index 89c9e39258486b..73b66fb5b0bf33 100644 --- a/packages/material-ui-icons/lib/WifiCallingSharp.js +++ b/packages/material-ui-icons/lib/WifiCallingSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M13.21 17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" -}, "1")], 'WifiCallingSharp'); \ No newline at end of file +}, "1")], 'WifiCallingSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiCallingTwoTone.js b/packages/material-ui-icons/lib/WifiCallingTwoTone.js index 28cbd62ab92e9e..691a7f9f85fc48 100644 --- a/packages/material-ui-icons/lib/WifiCallingTwoTone.js +++ b/packages/material-ui-icons/lib/WifiCallingTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.2 18.21c1.2.41 2.48.67 3.8.75v-1.49c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" -}, "2")], 'WifiCallingTwoTone'); \ No newline at end of file +}, "2")], 'WifiCallingTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiLock.js b/packages/material-ui-icons/lib/WifiLock.js index ac1e5b69ec3fc7..90065162040566 100644 --- a/packages/material-ui-icons/lib/WifiLock.js +++ b/packages/material-ui-icons/lib/WifiLock.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'WifiLock'); \ No newline at end of file +}, "1")], 'WifiLock'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiLockOutlined.js b/packages/material-ui-icons/lib/WifiLockOutlined.js index 646cffdd8ebd35..825237f08222fa 100644 --- a/packages/material-ui-icons/lib/WifiLockOutlined.js +++ b/packages/material-ui-icons/lib/WifiLockOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'WifiLockOutlined'); \ No newline at end of file +}, "1")], 'WifiLockOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiLockRounded.js b/packages/material-ui-icons/lib/WifiLockRounded.js index c0a6df4fe5cf8c..2d055e7aa263ad 100644 --- a/packages/material-ui-icons/lib/WifiLockRounded.js +++ b/packages/material-ui-icons/lib/WifiLockRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M23.21 8.24C20.22 5.6 16.3 4 12 4S3.78 5.6.79 8.24C.35 8.63.32 9.3.73 9.71l5.62 5.63 4.94 4.95c.39.39 1.02.39 1.42 0l2.34-2.34V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.94l1.29-1.29c.4-.41.37-1.08-.07-1.47z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'WifiLockRounded'); \ No newline at end of file +}, "1")], 'WifiLockRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiLockSharp.js b/packages/material-ui-icons/lib/WifiLockSharp.js index 2f1548220fff49..d54048d1c42c1b 100644 --- a/packages/material-ui-icons/lib/WifiLockSharp.js +++ b/packages/material-ui-icons/lib/WifiLockSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'WifiLockSharp'); \ No newline at end of file +}, "1")], 'WifiLockSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiLockTwoTone.js b/packages/material-ui-icons/lib/WifiLockTwoTone.js index 38d86f06cbe315..fa62ab86eb4dbd 100644 --- a/packages/material-ui-icons/lib/WifiLockTwoTone.js +++ b/packages/material-ui-icons/lib/WifiLockTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" -}, "1")], 'WifiLockTwoTone'); \ No newline at end of file +}, "1")], 'WifiLockTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiOff.js b/packages/material-ui-icons/lib/WifiOff.js index 7717cbb75bb2c1..7fa9390c65871f 100644 --- a/packages/material-ui-icons/lib/WifiOff.js +++ b/packages/material-ui-icons/lib/WifiOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4c-1.29-1.29-2.84-2.13-4.49-2.56l3.53 3.53.96-.97zM2 3.05 5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24C7.81 10.89 6.27 11.73 5 13v.01L6.99 15c1.36-1.36 3.14-2.04 4.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0z" -}), 'WifiOff'); \ No newline at end of file +}), 'WifiOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiOffOutlined.js b/packages/material-ui-icons/lib/WifiOffOutlined.js index d217dc3ebc64b7..a284bfb1d65203 100644 --- a/packages/material-ui-icons/lib/WifiOffOutlined.js +++ b/packages/material-ui-icons/lib/WifiOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 11 2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64 2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" -}), 'WifiOffOutlined'); \ No newline at end of file +}), 'WifiOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiOffRounded.js b/packages/material-ui-icons/lib/WifiOffRounded.js index 569fde8916e677..0a3da731904ae8 100644 --- a/packages/material-ui-icons/lib/WifiOffRounded.js +++ b/packages/material-ui-icons/lib/WifiOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.06 10.14c.56.46 1.38.42 1.89-.09.59-.59.55-1.57-.1-2.1-3.59-2.94-8.2-4.03-12.55-3.26l2.59 2.59c2.89-.03 5.8.92 8.17 2.86zm-2.27 1.83c-.78-.57-1.63-1-2.52-1.3l2.95 2.95c.24-.58.1-1.27-.43-1.65zm-3.84 4.26c-1.22-.63-2.68-.63-3.91 0-.59.31-.7 1.12-.23 1.59l1.47 1.47c.39.39 1.02.39 1.41 0l1.47-1.47c.49-.47.39-1.28-.21-1.59zm5.73 1.67L4.12 2.34a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.05 6.1c-1.01.5-1.99 1.11-2.89 1.85-.65.53-.69 1.51-.1 2.1.51.51 1.32.56 1.87.1 1-.82 2.1-1.46 3.25-1.93l2.23 2.23c-1.13.3-2.21.8-3.19 1.51-.69.5-.73 1.51-.13 2.11l.01.01c.49.49 1.26.54 1.83.13 1.19-.84 2.58-1.26 3.97-1.29l6.37 6.37c.39.39 1.02.39 1.41 0 .39-.37.39-1 0-1.39z" -}), 'WifiOffRounded'); \ No newline at end of file +}), 'WifiOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiOffSharp.js b/packages/material-ui-icons/lib/WifiOffSharp.js index 113261ae954d84..1a6ce32d8b7f55 100644 --- a/packages/material-ui-icons/lib/WifiOffSharp.js +++ b/packages/material-ui-icons/lib/WifiOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 11 2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm10-4c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM3.41 1.64 2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" -}), 'WifiOffSharp'); \ No newline at end of file +}), 'WifiOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiOffTwoTone.js b/packages/material-ui-icons/lib/WifiOffTwoTone.js index a6363fe1b5a03f..8e28fa5394e802 100644 --- a/packages/material-ui-icons/lib/WifiOffTwoTone.js +++ b/packages/material-ui-icons/lib/WifiOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m21 11 2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64 2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" -}), 'WifiOffTwoTone'); \ No newline at end of file +}), 'WifiOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiOutlined.js b/packages/material-ui-icons/lib/WifiOutlined.js index ae75215ba5aec6..990ec235e9c355 100644 --- a/packages/material-ui-icons/lib/WifiOutlined.js +++ b/packages/material-ui-icons/lib/WifiOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" -}), 'WifiOutlined'); \ No newline at end of file +}), 'WifiOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiProtectedSetup.js b/packages/material-ui-icons/lib/WifiProtectedSetup.js index c0f82f1f3d0153..ae86f361993dc8 100644 --- a/packages/material-ui-icons/lib/WifiProtectedSetup.js +++ b/packages/material-ui-icons/lib/WifiProtectedSetup.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" -}, "1")], 'WifiProtectedSetup'); \ No newline at end of file +}, "1")], 'WifiProtectedSetup'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiProtectedSetupOutlined.js b/packages/material-ui-icons/lib/WifiProtectedSetupOutlined.js index 9639eeac01a310..08cbf55a664b94 100644 --- a/packages/material-ui-icons/lib/WifiProtectedSetupOutlined.js +++ b/packages/material-ui-icons/lib/WifiProtectedSetupOutlined.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" -}, "1")], 'WifiProtectedSetupOutlined'); \ No newline at end of file +}, "1")], 'WifiProtectedSetupOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiProtectedSetupRounded.js b/packages/material-ui-icons/lib/WifiProtectedSetupRounded.js index 370446fee2fc9e..524f7d7d16b689 100644 --- a/packages/material-ui-icons/lib/WifiProtectedSetupRounded.js +++ b/packages/material-ui-icons/lib/WifiProtectedSetupRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m16.7 5.3 1.44-1.44c.32-.32.09-.85-.35-.85H11.5c-.28 0-.5.22-.5.5V9.8c0 .45.54.67.85.35L13.3 8.7c1.97 1.46 3.25 3.78 3.25 6.42 0 .66-.08 1.31-.24 1.92-.12.5.48.86.84.49 1.48-1.53 2.4-3.61 2.4-5.91 0-2.51-1.11-4.76-2.85-6.32zm-4.55 8.56L10.7 15.3c-1.97-1.46-3.25-3.78-3.25-6.42 0-.66.08-1.31.24-1.92.12-.5-.48-.86-.84-.49-1.48 1.53-2.4 3.61-2.4 5.91 0 2.52 1.1 4.77 2.84 6.33l-1.44 1.44c-.32.32-.09.85.35.85h6.29c.28 0 .5-.22.5-.5v-6.29c.01-.44-.53-.67-.84-.35z" -}), 'WifiProtectedSetupRounded'); \ No newline at end of file +}), 'WifiProtectedSetupRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiProtectedSetupSharp.js b/packages/material-ui-icons/lib/WifiProtectedSetupSharp.js index fbda22a8ce72b7..f9ef6161e1527e 100644 --- a/packages/material-ui-icons/lib/WifiProtectedSetupSharp.js +++ b/packages/material-ui-icons/lib/WifiProtectedSetupSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" -}, "1")], 'WifiProtectedSetupSharp'); \ No newline at end of file +}, "1")], 'WifiProtectedSetupSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiProtectedSetupTwoTone.js b/packages/material-ui-icons/lib/WifiProtectedSetupTwoTone.js index d836bb01c8e735..7a9c229efe4c5c 100644 --- a/packages/material-ui-icons/lib/WifiProtectedSetupTwoTone.js +++ b/packages/material-ui-icons/lib/WifiProtectedSetupTwoTone.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" -}, "1")], 'WifiProtectedSetupTwoTone'); \ No newline at end of file +}, "1")], 'WifiProtectedSetupTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiRounded.js b/packages/material-ui-icons/lib/WifiRounded.js index 5cb8be2b872c65..432f7176b07fc1 100644 --- a/packages/material-ui-icons/lib/WifiRounded.js +++ b/packages/material-ui-icons/lib/WifiRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.06 10.06c.51.51 1.32.56 1.87.1 4.67-3.84 11.45-3.84 16.13-.01.56.46 1.38.42 1.89-.09.59-.59.55-1.57-.1-2.1-5.71-4.67-13.97-4.67-19.69 0-.65.52-.7 1.5-.1 2.1zm7.76 7.76 1.47 1.47c.39.39 1.02.39 1.41 0l1.47-1.47c.47-.47.37-1.28-.23-1.59-1.22-.63-2.68-.63-3.91 0-.57.31-.68 1.12-.21 1.59zm-3.73-3.73c.49.49 1.26.54 1.83.13 2.44-1.73 5.72-1.73 8.16 0 .57.4 1.34.36 1.83-.13l.01-.01c.6-.6.56-1.62-.13-2.11-3.44-2.49-8.13-2.49-11.58 0-.69.5-.73 1.51-.12 2.12z" -}), 'WifiRounded'); \ No newline at end of file +}), 'WifiRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiSharp.js b/packages/material-ui-icons/lib/WifiSharp.js index 995d2d829514dd..a0c378ee215f3a 100644 --- a/packages/material-ui-icons/lib/WifiSharp.js +++ b/packages/material-ui-icons/lib/WifiSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" -}), 'WifiSharp'); \ No newline at end of file +}), 'WifiSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTethering.js b/packages/material-ui-icons/lib/WifiTethering.js index 287458b5e988db..946882423b2b8c 100644 --- a/packages/material-ui-icons/lib/WifiTethering.js +++ b/packages/material-ui-icons/lib/WifiTethering.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" -}), 'WifiTethering'); \ No newline at end of file +}), 'WifiTethering'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringErrorRounded.js b/packages/material-ui-icons/lib/WifiTetheringErrorRounded.js index 26c744a33ee351..5ce9d3da2da50d 100644 --- a/packages/material-ui-icons/lib/WifiTetheringErrorRounded.js +++ b/packages/material-ui-icons/lib/WifiTetheringErrorRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" -}), 'WifiTetheringErrorRounded'); \ No newline at end of file +}), 'WifiTetheringErrorRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedOutlined.js b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedOutlined.js index f3c687fbbb0fcf..5da63fd5bb374b 100644 --- a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedOutlined.js +++ b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" -}), 'WifiTetheringErrorRoundedOutlined'); \ No newline at end of file +}), 'WifiTetheringErrorRoundedOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedRounded.js b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedRounded.js index fff1159dc420af..9a174e01d5f290 100644 --- a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedRounded.js +++ b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10.66 7.14c-2.24.48-4.04 2.3-4.52 4.54-.37 1.75.02 3.38.89 4.66.34.51 1.08.55 1.51.11.35-.35.37-.88.1-1.28-.5-.76-.75-1.71-.61-2.73.23-1.74 1.67-3.17 3.41-3.4C13.9 8.71 16 10.61 16 13c0 .8-.24 1.54-.64 2.16-.27.41-.25.95.1 1.29.43.43 1.17.4 1.51-.11C17.62 15.4 18 14.25 18 13c0-3.75-3.45-6.7-7.34-5.86zm-.41-3.99c-4.05.69-7.19 3.69-8.03 7.72-.66 3.17.2 6.16 1.97 8.38.37.46 1.07.49 1.49.07.36-.36.39-.93.07-1.32-1.34-1.67-2.03-3.9-1.66-6.28.55-3.47 3.42-6.24 6.92-6.65 2.76-.33 5.27.74 6.93 2.59.2.21.47.34.76.34.85 0 1.34-1.01.77-1.65-2.19-2.45-5.56-3.82-9.22-3.2zM12 11c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm9-1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1zm0 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" -}), 'WifiTetheringErrorRoundedRounded'); \ No newline at end of file +}), 'WifiTetheringErrorRoundedRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedSharp.js b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedSharp.js index 4e4234e9ae6920..a78bda439bbf08 100644 --- a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedSharp.js +++ b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" -}), 'WifiTetheringErrorRoundedSharp'); \ No newline at end of file +}), 'WifiTetheringErrorRoundedSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedTwoTone.js b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedTwoTone.js index dad8ff12fee899..ba0a7c37ba18f3 100644 --- a/packages/material-ui-icons/lib/WifiTetheringErrorRoundedTwoTone.js +++ b/packages/material-ui-icons/lib/WifiTetheringErrorRoundedTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" -}), 'WifiTetheringErrorRoundedTwoTone'); \ No newline at end of file +}), 'WifiTetheringErrorRoundedTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringOff.js b/packages/material-ui-icons/lib/WifiTetheringOff.js index 19eb3f4aa6916a..21b85cf3140066 100644 --- a/packages/material-ui-icons/lib/WifiTetheringOff.js +++ b/packages/material-ui-icons/lib/WifiTetheringOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" -}), 'WifiTetheringOff'); \ No newline at end of file +}), 'WifiTetheringOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringOffOutlined.js b/packages/material-ui-icons/lib/WifiTetheringOffOutlined.js index 992f8ff2c01ebc..b2569852379b8e 100644 --- a/packages/material-ui-icons/lib/WifiTetheringOffOutlined.js +++ b/packages/material-ui-icons/lib/WifiTetheringOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" -}), 'WifiTetheringOffOutlined'); \ No newline at end of file +}), 'WifiTetheringOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringOffRounded.js b/packages/material-ui-icons/lib/WifiTetheringOffRounded.js index 724e843b83dffa..8bb20c80ff3483 100644 --- a/packages/material-ui-icons/lib/WifiTetheringOffRounded.js +++ b/packages/material-ui-icons/lib/WifiTetheringOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.11 3.51c-.4.39-.4 1.03-.01 1.42l1.98 1.98C2.78 8.6 2 10.71 2 13c0 2.36.82 4.53 2.19 6.24.37.47 1.07.5 1.5.08.36-.36.39-.92.08-1.32C4.66 16.63 4 14.89 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.25.38 2.4 1.03 3.35.34.5 1.08.54 1.51.11.35-.35.37-.88.1-1.29C8.24 14.54 8 13.8 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l6.91 6.91c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51c-.39-.39-1.02-.39-1.4 0zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" -}), 'WifiTetheringOffRounded'); \ No newline at end of file +}), 'WifiTetheringOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringOffSharp.js b/packages/material-ui-icons/lib/WifiTetheringOffSharp.js index 07927b339e2b40..ddd1ad8a1e1c5f 100644 --- a/packages/material-ui-icons/lib/WifiTetheringOffSharp.js +++ b/packages/material-ui-icons/lib/WifiTetheringOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" -}), 'WifiTetheringOffSharp'); \ No newline at end of file +}), 'WifiTetheringOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringOffTwoTone.js b/packages/material-ui-icons/lib/WifiTetheringOffTwoTone.js index 3dc596d7c5cc9f..9b62f0b3addef6 100644 --- a/packages/material-ui-icons/lib/WifiTetheringOffTwoTone.js +++ b/packages/material-ui-icons/lib/WifiTetheringOffTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" -}), 'WifiTetheringOffTwoTone'); \ No newline at end of file +}), 'WifiTetheringOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringOutlined.js b/packages/material-ui-icons/lib/WifiTetheringOutlined.js index 12ab2827e460e6..3433ce5cbf50eb 100644 --- a/packages/material-ui-icons/lib/WifiTetheringOutlined.js +++ b/packages/material-ui-icons/lib/WifiTetheringOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" -}), 'WifiTetheringOutlined'); \ No newline at end of file +}), 'WifiTetheringOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringRounded.js b/packages/material-ui-icons/lib/WifiTetheringRounded.js index c64bfdcf05f7ba..b42dccf77b4528 100644 --- a/packages/material-ui-icons/lib/WifiTetheringRounded.js +++ b/packages/material-ui-icons/lib/WifiTetheringRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.56-3.11-6.4-6.75-5.95-2.62.32-4.78 2.41-5.18 5.02-.33 2.15.49 4.11 1.93 5.4.48.43 1.23.33 1.56-.23l.01-.01c.24-.42.14-.93-.22-1.26-1.03-.93-1.59-2.37-1.22-3.94.33-1.42 1.48-2.57 2.9-2.91C13.65 8.49 16 10.47 16 13c0 1.18-.52 2.23-1.33 2.96-.36.32-.47.84-.23 1.26l.01.01c.31.53 1.03.69 1.5.28C17.2 16.41 18 14.8 18 13zm-7.17-9.93c-4.62.52-8.35 4.33-8.78 8.96-.35 3.7 1.32 7.02 4.02 9.01.48.35 1.16.2 1.46-.31.25-.43.14-.99-.26-1.29-2.28-1.69-3.65-4.55-3.16-7.7.54-3.5 3.46-6.29 6.98-6.68C15.91 4.51 20 8.28 20 13c0 2.65-1.29 4.98-3.27 6.44-.4.3-.51.85-.26 1.29.3.52.98.66 1.46.31C20.4 19.22 22 16.3 22 13c0-5.91-5.13-10.62-11.17-9.93z" -}), 'WifiTetheringRounded'); \ No newline at end of file +}), 'WifiTetheringRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringSharp.js b/packages/material-ui-icons/lib/WifiTetheringSharp.js index e109f582f17825..6ded472772e81d 100644 --- a/packages/material-ui-icons/lib/WifiTetheringSharp.js +++ b/packages/material-ui-icons/lib/WifiTetheringSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" -}), 'WifiTetheringSharp'); \ No newline at end of file +}), 'WifiTetheringSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTetheringTwoTone.js b/packages/material-ui-icons/lib/WifiTetheringTwoTone.js index 7014389e173fe4..6b41ed14ca79ba 100644 --- a/packages/material-ui-icons/lib/WifiTetheringTwoTone.js +++ b/packages/material-ui-icons/lib/WifiTetheringTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" -}), 'WifiTetheringTwoTone'); \ No newline at end of file +}), 'WifiTetheringTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WifiTwoTone.js b/packages/material-ui-icons/lib/WifiTwoTone.js index e27132e75884e0..230e59711e198c 100644 --- a/packages/material-ui-icons/lib/WifiTwoTone.js +++ b/packages/material-ui-icons/lib/WifiTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" -}), 'WifiTwoTone'); \ No newline at end of file +}), 'WifiTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Window.js b/packages/material-ui-icons/lib/Window.js index ded9b74962f1bb..88b90807dc7888 100644 --- a/packages/material-ui-icons/lib/Window.js +++ b/packages/material-ui-icons/lib/Window.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" -}), 'Window'); \ No newline at end of file +}), 'Window'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WindowOutlined.js b/packages/material-ui-icons/lib/WindowOutlined.js index 90e9a40660d8b7..f88c0c186525e6 100644 --- a/packages/material-ui-icons/lib/WindowOutlined.js +++ b/packages/material-ui-icons/lib/WindowOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" -}), 'WindowOutlined'); \ No newline at end of file +}), 'WindowOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WindowRounded.js b/packages/material-ui-icons/lib/WindowRounded.js index ea4aeb4711cb5b..2d85bd440183e1 100644 --- a/packages/material-ui-icons/lib/WindowRounded.js +++ b/packages/material-ui-icons/lib/WindowRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" -}), 'WindowRounded'); \ No newline at end of file +}), 'WindowRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WindowSharp.js b/packages/material-ui-icons/lib/WindowSharp.js index fcad3a4743b040..b12beacf899135 100644 --- a/packages/material-ui-icons/lib/WindowSharp.js +++ b/packages/material-ui-icons/lib/WindowSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zm-2 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" -}), 'WindowSharp'); \ No newline at end of file +}), 'WindowSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WindowTwoTone.js b/packages/material-ui-icons/lib/WindowTwoTone.js index 200229206227c6..ee37de69f09df9 100644 --- a/packages/material-ui-icons/lib/WindowTwoTone.js +++ b/packages/material-ui-icons/lib/WindowTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 4h7v7H4zm0 9h7v7H4zm9 0h7v7h-7zm0-9h7v7h-7z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9 18H4v-7h7v7zm0-9H4V4h7v7zm9 9h-7v-7h7v7zm0-9h-7V4h7v7z" -}, "1")], 'WindowTwoTone'); \ No newline at end of file +}, "1")], 'WindowTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WineBar.js b/packages/material-ui-icons/lib/WineBar.js index 9c26b126e70df4..d6522242a2b758 100644 --- a/packages/material-ui-icons/lib/WineBar.js +++ b/packages/material-ui-icons/lib/WineBar.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm10 5H8V5h8v3z" -}), 'WineBar'); \ No newline at end of file +}), 'WineBar'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WineBarOutlined.js b/packages/material-ui-icons/lib/WineBarOutlined.js index 232731b5f11001..11b265f515bf62 100644 --- a/packages/material-ui-icons/lib/WineBarOutlined.js +++ b/packages/material-ui-icons/lib/WineBarOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm6 10c-1.86 0-3.41-1.28-3.86-3h7.72c-.45 1.72-2 3-3.86 3zm4-5H8V5h8v3z" -}), 'WineBarOutlined'); \ No newline at end of file +}), 'WineBarOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WineBarRounded.js b/packages/material-ui-icons/lib/WineBarRounded.js index 972eecafff36c4..de93b1228f9447 100644 --- a/packages/material-ui-icons/lib/WineBarRounded.js +++ b/packages/material-ui-icons/lib/WineBarRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M7 3c-.55 0-1 .45-1 1v5c0 2.97 2.16 5.43 5 5.91V19H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-2v-4.09c2.84-.48 5-2.94 5-5.91V4c0-.55-.45-1-1-1H7zm9 5H8V5h8v3z" -}), 'WineBarRounded'); \ No newline at end of file +}), 'WineBarRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WineBarSharp.js b/packages/material-ui-icons/lib/WineBarSharp.js index 60ef5f4a236a99..08b52105f12c1c 100644 --- a/packages/material-ui-icons/lib/WineBarSharp.js +++ b/packages/material-ui-icons/lib/WineBarSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm10 5H8V5h8v3z" -}), 'WineBarSharp'); \ No newline at end of file +}), 'WineBarSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WineBarTwoTone.js b/packages/material-ui-icons/lib/WineBarTwoTone.js index cb97a6d4f63725..6e7d0e2ab5eaa1 100644 --- a/packages/material-ui-icons/lib/WineBarTwoTone.js +++ b/packages/material-ui-icons/lib/WineBarTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 13c-1.86 0-3.41-1.28-3.86-3h7.72c-.45 1.72-2 3-3.86 3z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm6 10c-1.86 0-3.41-1.28-3.86-3h7.72c-.45 1.72-2 3-3.86 3zm4-5H8V5h8v3z" -}, "1")], 'WineBarTwoTone'); \ No newline at end of file +}, "1")], 'WineBarTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Work.js b/packages/material-ui-icons/lib/Work.js index 173d1c2fa7ffcf..d78633972b13fc 100644 --- a/packages/material-ui-icons/lib/Work.js +++ b/packages/material-ui-icons/lib/Work.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" -}), 'Work'); \ No newline at end of file +}), 'Work'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOff.js b/packages/material-ui-icons/lib/WorkOff.js index c2ef88a62aeacd..c4457ce204d74c 100644 --- a/packages/material-ui-icons/lib/WorkOff.js +++ b/packages/material-ui-icons/lib/WorkOff.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m23 21.74-1.46-1.46L7.21 5.95 3.25 1.99 1.99 3.25l2.7 2.7h-.64c-1.11 0-1.99.89-1.99 2l-.01 11c0 1.11.89 2 2 2h15.64L21.74 23 23 21.74zM22 7.95c.05-1.11-.84-2-1.95-1.95h-4V3.95c0-1.11-.89-2-2-1.95h-4c-1.11-.05-2 .84-2 1.95v.32l13.95 14V7.95zM14.05 6H10V3.95h4.05V6z" -}), 'WorkOff'); \ No newline at end of file +}), 'WorkOff'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOffOutlined.js b/packages/material-ui-icons/lib/WorkOffOutlined.js index 03162bdb8f2eaa..5a4d3621c7238c 100644 --- a/packages/material-ui-icons/lib/WorkOffOutlined.js +++ b/packages/material-ui-icons/lib/WorkOffOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84 1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z" -}), 'WorkOffOutlined'); \ No newline at end of file +}), 'WorkOffOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOffRounded.js b/packages/material-ui-icons/lib/WorkOffRounded.js index a8216d227f1186..ed811990372b41 100644 --- a/packages/material-ui-icons/lib/WorkOffRounded.js +++ b/packages/material-ui-icons/lib/WorkOffRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4.11 2.54a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.11 2.54zM10 4h4v2h-3.6L22 17.6V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4z" -}), 'WorkOffRounded'); \ No newline at end of file +}), 'WorkOffRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOffSharp.js b/packages/material-ui-icons/lib/WorkOffSharp.js index 84aca4942ed911..9635efe631af5b 100644 --- a/packages/material-ui-icons/lib/WorkOffSharp.js +++ b/packages/material-ui-icons/lib/WorkOffSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4h4v2h-3.6L22 17.6V6h-6V4c0-1.1-.9-2-2-2h-4c-.98 0-1.79.71-1.96 1.64L10 5.6V4zM3.4 1.84 1.99 3.25 4.74 6H2.01L2 21h17.74l2 2 1.41-1.41z" -}), 'WorkOffSharp'); \ No newline at end of file +}), 'WorkOffSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOffTwoTone.js b/packages/material-ui-icons/lib/WorkOffTwoTone.js index 14c9a6d224556d..2957939af2e619 100644 --- a/packages/material-ui-icons/lib/WorkOffTwoTone.js +++ b/packages/material-ui-icons/lib/WorkOffTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8v11h13.74l-11-11zm8.4 0 7.6 7.6V8z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84 1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z" -}, "1")], 'WorkOffTwoTone'); \ No newline at end of file +}, "1")], 'WorkOffTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOutline.js b/packages/material-ui-icons/lib/WorkOutline.js index 7e05c9b335a081..bba29e4f1019fd 100644 --- a/packages/material-ui-icons/lib/WorkOutline.js +++ b/packages/material-ui-icons/lib/WorkOutline.js @@ -1,6 +1,19 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { fillRule: "evenodd", d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z" -}), 'WorkOutline'); \ No newline at end of file +}), 'WorkOutline'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOutlineOutlined.js b/packages/material-ui-icons/lib/WorkOutlineOutlined.js index b7176537f74e03..bd0610d6501357 100644 --- a/packages/material-ui-icons/lib/WorkOutlineOutlined.js +++ b/packages/material-ui-icons/lib/WorkOutlineOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z" -}), 'WorkOutlineOutlined'); \ No newline at end of file +}), 'WorkOutlineOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOutlineRounded.js b/packages/material-ui-icons/lib/WorkOutlineRounded.js index 51451a53129f44..00cce7faeb8326 100644 --- a/packages/material-ui-icons/lib/WorkOutlineRounded.js +++ b/packages/material-ui-icons/lib/WorkOutlineRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6V4h-4v2h4zM4 9v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1zm16-3c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z" -}), 'WorkOutlineRounded'); \ No newline at end of file +}), 'WorkOutlineRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOutlineSharp.js b/packages/material-ui-icons/lib/WorkOutlineSharp.js index c8d66c3c334953..5c29b00edc2383 100644 --- a/packages/material-ui-icons/lib/WorkOutlineSharp.js +++ b/packages/material-ui-icons/lib/WorkOutlineSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm18-2v15H2.01V6H8V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v2h6z" -}), 'WorkOutlineSharp'); \ No newline at end of file +}), 'WorkOutlineSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOutlineTwoTone.js b/packages/material-ui-icons/lib/WorkOutlineTwoTone.js index aa6180ba55db43..f6023ea138aba8 100644 --- a/packages/material-ui-icons/lib/WorkOutlineTwoTone.js +++ b/packages/material-ui-icons/lib/WorkOutlineTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z" -}), 'WorkOutlineTwoTone'); \ No newline at end of file +}), 'WorkOutlineTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkOutlined.js b/packages/material-ui-icons/lib/WorkOutlined.js index 4192252167c4e8..dfc3f3f4b559d8 100644 --- a/packages/material-ui-icons/lib/WorkOutlined.js +++ b/packages/material-ui-icons/lib/WorkOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" -}), 'WorkOutlined'); \ No newline at end of file +}), 'WorkOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkRounded.js b/packages/material-ui-icons/lib/WorkRounded.js index cff3f71f8d4f52..e2cc9af976ea8f 100644 --- a/packages/material-ui-icons/lib/WorkRounded.js +++ b/packages/material-ui-icons/lib/WorkRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" -}), 'WorkRounded'); \ No newline at end of file +}), 'WorkRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkSharp.js b/packages/material-ui-icons/lib/WorkSharp.js index bb002014e54277..92a9b09abfd70e 100644 --- a/packages/material-ui-icons/lib/WorkSharp.js +++ b/packages/material-ui-icons/lib/WorkSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 6h-6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6zm-8 0h-4V4h4v2z" -}), 'WorkSharp'); \ No newline at end of file +}), 'WorkSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkTwoTone.js b/packages/material-ui-icons/lib/WorkTwoTone.js index 700ce6bd59e274..abb81f09b586e9 100644 --- a/packages/material-ui-icons/lib/WorkTwoTone.js +++ b/packages/material-ui-icons/lib/WorkTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 8h16v11H4z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z" -}, "1")], 'WorkTwoTone'); \ No newline at end of file +}, "1")], 'WorkTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Workspaces.js b/packages/material-ui-icons/lib/Workspaces.js index 5e1c1191e66161..3158ad78c06f7f 100644 --- a/packages/material-ui-icons/lib/Workspaces.js +++ b/packages/material-ui-icons/lib/Workspaces.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" -}), 'Workspaces'); \ No newline at end of file +}), 'Workspaces'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkspacesOutlined.js b/packages/material-ui-icons/lib/WorkspacesOutlined.js index 12cc15b78a31ab..2e1cdfce5db712 100644 --- a/packages/material-ui-icons/lib/WorkspacesOutlined.js +++ b/packages/material-ui-icons/lib/WorkspacesOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 15c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" -}), 'WorkspacesOutlined'); \ No newline at end of file +}), 'WorkspacesOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkspacesRounded.js b/packages/material-ui-icons/lib/WorkspacesRounded.js index 72993ca039c057..80514205c6559c 100644 --- a/packages/material-ui-icons/lib/WorkspacesRounded.js +++ b/packages/material-ui-icons/lib/WorkspacesRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" -}), 'WorkspacesRounded'); \ No newline at end of file +}), 'WorkspacesRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkspacesSharp.js b/packages/material-ui-icons/lib/WorkspacesSharp.js index 9e6b13839e7db9..01da331e7a1335 100644 --- a/packages/material-ui-icons/lib/WorkspacesSharp.js +++ b/packages/material-ui-icons/lib/WorkspacesSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" -}), 'WorkspacesSharp'); \ No newline at end of file +}), 'WorkspacesSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WorkspacesTwoTone.js b/packages/material-ui-icons/lib/WorkspacesTwoTone.js index e6b64c412ca435..0c39ae9aeff4fa 100644 --- a/packages/material-ui-icons/lib/WorkspacesTwoTone.js +++ b/packages/material-ui-icons/lib/WorkspacesTwoTone.js @@ -1,20 +1,33 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("circle", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "6", cy: "17", r: "2", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "7", r: "2", opacity: ".3" -}, "1"), /*#__PURE__*/_jsx("circle", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "18", cy: "17", r: "2", opacity: ".3" -}, "2"), /*#__PURE__*/_jsx("path", { +}, "2"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM16 7c0-2.2-1.8-4-4-4S8 4.8 8 7s1.8 4 4 4 4-1.8 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "3")], 'WorkspacesTwoTone'); \ No newline at end of file +}, "3")], 'WorkspacesTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrapText.js b/packages/material-ui-icons/lib/WrapText.js index 344a3f5c0de573..6fe36d6cf5a863 100644 --- a/packages/material-ui-icons/lib/WrapText.js +++ b/packages/material-ui-icons/lib/WrapText.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" -}), 'WrapText'); \ No newline at end of file +}), 'WrapText'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrapTextOutlined.js b/packages/material-ui-icons/lib/WrapTextOutlined.js index 440d87c6321809..c8e006a5225543 100644 --- a/packages/material-ui-icons/lib/WrapTextOutlined.js +++ b/packages/material-ui-icons/lib/WrapTextOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" -}), 'WrapTextOutlined'); \ No newline at end of file +}), 'WrapTextOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrapTextRounded.js b/packages/material-ui-icons/lib/WrapTextRounded.js index b7fa122e66d3f0..15d9319d1d9655 100644 --- a/packages/material-ui-icons/lib/WrapTextRounded.js +++ b/packages/material-ui-icons/lib/WrapTextRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5 7h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm11.83 4H5c-.55 0-1 .45-1 1s.45 1 1 1h12.13c1 0 1.93.67 2.09 1.66.21 1.25-.76 2.34-1.97 2.34H15v-.79c0-.45-.54-.67-.85-.35l-1.79 1.79c-.2.2-.2.51 0 .71l1.79 1.79c.32.32.85.09.85-.35V19h2c2.34 0 4.21-2.01 3.98-4.39-.2-2.08-2.06-3.61-4.15-3.61zM9 17H5c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z" -}), 'WrapTextRounded'); \ No newline at end of file +}), 'WrapTextRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrapTextSharp.js b/packages/material-ui-icons/lib/WrapTextSharp.js index 4ec98b916eae6e..7719430ed75b64 100644 --- a/packages/material-ui-icons/lib/WrapTextSharp.js +++ b/packages/material-ui-icons/lib/WrapTextSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" -}), 'WrapTextSharp'); \ No newline at end of file +}), 'WrapTextSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrapTextTwoTone.js b/packages/material-ui-icons/lib/WrapTextTwoTone.js index 50c240d6e95d26..a7100b83e64960 100644 --- a/packages/material-ui-icons/lib/WrapTextTwoTone.js +++ b/packages/material-ui-icons/lib/WrapTextTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 17h6v2H4zm13-6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4zM4 5h16v2H4z" -}), 'WrapTextTwoTone'); \ No newline at end of file +}), 'WrapTextTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrongLocation.js b/packages/material-ui-icons/lib/WrongLocation.js index 81a6c31b3f03b7..3c814415655b42 100644 --- a/packages/material-ui-icons/lib/WrongLocation.js +++ b/packages/material-ui-icons/lib/WrongLocation.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10V3.26c-.65-.17-1.32-.26-2-.26-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-.41-.04-.81-.09-1.2H14zm-2 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" -}, "1")], 'WrongLocation'); \ No newline at end of file +}, "1")], 'WrongLocation'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrongLocationOutlined.js b/packages/material-ui-icons/lib/WrongLocationOutlined.js index eb727b25e8966e..66a7a83d70212a 100644 --- a/packages/material-ui-icons/lib/WrongLocationOutlined.js +++ b/packages/material-ui-icons/lib/WrongLocationOutlined.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11v.2c0 2.34-1.95 5.44-6 9.14-4.05-3.7-6-6.79-6-9.14C6 7.57 8.65 5 12 5c.34 0 .68.03 1 .08V3.06c-.33-.04-.66-.06-1-.06-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8V11h-2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "11", r: "2" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" -}, "2")], 'WrongLocationOutlined'); \ No newline at end of file +}, "2")], 'WrongLocationOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrongLocationRounded.js b/packages/material-ui-icons/lib/WrongLocationRounded.js index f2fe3f1cb23769..3cbbf179bd44c6 100644 --- a/packages/material-ui-icons/lib/WrongLocationRounded.js +++ b/packages/material-ui-icons/lib/WrongLocationRounded.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m20.42 4.5 1.38-1.38c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L19 3.08 17.62 1.7c-.39-.39-1.02-.39-1.41 0s-.39 1.02 0 1.41l1.38 1.38-1.38 1.38c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 5.92l1.38 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L20.42 4.5z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19.67 8 19 7.33l-.59.59c-.7.7-1.84.88-2.65.3-1.03-.74-1.12-2.19-.26-3.05l.67-.67-.67-.67c-.36-.36-.54-.81-.57-1.28C14.01 2.19 13.02 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2c0-.76-.1-1.47-.26-2.14-.02-.02-.05-.04-.07-.06zM12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "1")], 'WrongLocationRounded'); \ No newline at end of file +}, "1")], 'WrongLocationRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrongLocationSharp.js b/packages/material-ui-icons/lib/WrongLocationSharp.js index 6f50070d243792..68cd722d50f83a 100644 --- a/packages/material-ui-icons/lib/WrongLocationSharp.js +++ b/packages/material-ui-icons/lib/WrongLocationSharp.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M14 10V3.26c-.65-.17-1.32-.26-2-.26-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-.41-.04-.81-.09-1.2H14zm-2 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" -}, "1")], 'WrongLocationSharp'); \ No newline at end of file +}, "1")], 'WrongLocationSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WrongLocationTwoTone.js b/packages/material-ui-icons/lib/WrongLocationTwoTone.js index b5774d45fd6f25..4e2b885c21e60c 100644 --- a/packages/material-ui-icons/lib/WrongLocationTwoTone.js +++ b/packages/material-ui-icons/lib/WrongLocationTwoTone.js @@ -1,11 +1,24 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 11v.2c0 2.34-1.95 5.44-6 9.14-4.05-3.7-6-6.79-6-9.14C6 7.57 8.65 5 12 5c.34 0 .68.03 1 .08V3.06c-.33-.04-.66-.06-1-.06-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8V11h-2z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "11", r: "2" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" -}, "2")], 'WrongLocationTwoTone'); \ No newline at end of file +}, "2")], 'WrongLocationTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Wysiwyg.js b/packages/material-ui-icons/lib/Wysiwyg.js index 90106e396b67ff..532acc8e6d7660 100644 --- a/packages/material-ui-icons/lib/Wysiwyg.js +++ b/packages/material-ui-icons/lib/Wysiwyg.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z" -}), 'Wysiwyg'); \ No newline at end of file +}), 'Wysiwyg'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WysiwygOutlined.js b/packages/material-ui-icons/lib/WysiwygOutlined.js index 4d8bd307191778..0a9dd5a5e1abbe 100644 --- a/packages/material-ui-icons/lib/WysiwygOutlined.js +++ b/packages/material-ui-icons/lib/WysiwygOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z" -}), 'WysiwygOutlined'); \ No newline at end of file +}), 'WysiwygOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WysiwygRounded.js b/packages/material-ui-icons/lib/WysiwygRounded.js index c4b399b65bd042..2acf5274f96d03 100644 --- a/packages/material-ui-icons/lib/WysiwygRounded.js +++ b/packages/material-ui-icons/lib/WysiwygRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-3-7H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-4 4H8c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" -}), 'WysiwygRounded'); \ No newline at end of file +}), 'WysiwygRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WysiwygSharp.js b/packages/material-ui-icons/lib/WysiwygSharp.js index 045240b05a6058..12ee538b9b8b89 100644 --- a/packages/material-ui-icons/lib/WysiwygSharp.js +++ b/packages/material-ui-icons/lib/WysiwygSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17 12H7v-2h10v2zm-4 2H7v2h6v-2zm8 7H3V3h18v18zM19 7H5v12h14V7z" -}), 'WysiwygSharp'); \ No newline at end of file +}), 'WysiwygSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/WysiwygTwoTone.js b/packages/material-ui-icons/lib/WysiwygTwoTone.js index 264abd38f53dbd..ab20874cd8292e 100644 --- a/packages/material-ui-icons/lib/WysiwygTwoTone.js +++ b/packages/material-ui-icons/lib/WysiwygTwoTone.js @@ -1,8 +1,21 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 19H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z" -}, "1")], 'WysiwygTwoTone'); \ No newline at end of file +}, "1")], 'WysiwygTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/Yard.js b/packages/material-ui-icons/lib/Yard.js index c245be821ada75..13d636ee646b16 100644 --- a/packages/material-ui-icons/lib/Yard.js +++ b/packages/material-ui-icons/lib/Yard.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-3.31 0-6-2.69-6-6 3.31 0 6 2.69 6 6 0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9.62", r: "1.56" -}, "1")], 'Yard'); \ No newline at end of file +}, "1")], 'Yard'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YardOutlined.js b/packages/material-ui-icons/lib/YardOutlined.js index 432abe372978a9..83ece146a9ee9a 100644 --- a/packages/material-ui-icons/lib/YardOutlined.js +++ b/packages/material-ui-icons/lib/YardOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M18 13c-3.31 0-6 2.69-6 6 3.31 0 6-2.69 6-6zM6 13c0 3.31 2.69 6 6 6 0-3.31-2.69-6-6-6zm2-1.97c0 .86.7 1.56 1.56 1.56.33 0 .63-.1.89-.28l-.01.12c0 .86.7 1.56 1.56 1.56s1.56-.7 1.56-1.56l-.01-.12c.25.17.56.28.89.28.86 0 1.56-.7 1.56-1.56 0-.62-.37-1.16-.89-1.41.52-.24.89-.78.89-1.4 0-.86-.7-1.56-1.56-1.56-.33 0-.63.1-.89.28l.01-.12c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56l.01.12c-.25-.18-.56-.28-.89-.28-.86 0-1.56.7-1.56 1.56 0 .62.37 1.16.89 1.41-.52.24-.89.78-.89 1.4zm4-2.97c.86 0 1.56.7 1.56 1.56s-.7 1.56-1.56 1.56-1.56-.7-1.56-1.56.7-1.56 1.56-1.56zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" -}), 'YardOutlined'); \ No newline at end of file +}), 'YardOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YardRounded.js b/packages/material-ui-icons/lib/YardRounded.js index 4dff863d56204a..b0b376abdfe7d8 100644 --- a/packages/material-ui-icons/lib/YardRounded.js +++ b/packages/material-ui-icons/lib/YardRounded.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-2.83 0-5.21-1.97-5.84-4.61-.18-.74.49-1.4 1.23-1.23C10.03 13.79 12 16.17 12 19c0-2.83 1.97-5.21 4.61-5.84.74-.18 1.4.49 1.23 1.23C17.21 17.03 14.83 19 12 19z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9.62", r: "1.56" -}, "1")], 'YardRounded'); \ No newline at end of file +}, "1")], 'YardRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YardSharp.js b/packages/material-ui-icons/lib/YardSharp.js index 75c6462c490a0c..417a53c88d2ad3 100644 --- a/packages/material-ui-icons/lib/YardSharp.js +++ b/packages/material-ui-icons/lib/YardSharp.js @@ -1,9 +1,22 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M22 2H2v20h20V2zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-3.31 0-6-2.69-6-6 3.31 0 6 2.69 6 6 0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6z" -}, "0"), /*#__PURE__*/_jsx("circle", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("circle", { cx: "12", cy: "9.62", r: "1.56" -}, "1")], 'YardSharp'); \ No newline at end of file +}, "1")], 'YardSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YardTwoTone.js b/packages/material-ui-icons/lib/YardTwoTone.js index 6515a852be4764..ca26dff57a4b67 100644 --- a/packages/material-ui-icons/lib/YardTwoTone.js +++ b/packages/material-ui-icons/lib/YardTwoTone.js @@ -1,10 +1,23 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M4 20h16V4H4v16zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6s-6-2.69-6-6c3.31 0 6 2.69 6 6z", opacity: ".3" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M8 11.03c0 .86.7 1.56 1.56 1.56.33 0 .63-.1.89-.28l-.01.12c0 .86.7 1.56 1.56 1.56s1.56-.7 1.56-1.56l-.01-.12c.25.17.56.28.89.28.86 0 1.56-.7 1.56-1.56 0-.62-.37-1.16-.89-1.41.52-.24.89-.78.89-1.4 0-.86-.7-1.56-1.56-1.56-.33 0-.63.1-.89.28l.01-.12c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56l.01.12c-.25-.18-.56-.28-.89-.28-.86 0-1.56.7-1.56 1.56 0 .62.37 1.16.89 1.41-.52.24-.89.78-.89 1.4zm4-2.97c.86 0 1.56.7 1.56 1.56s-.7 1.56-1.56 1.56-1.56-.7-1.56-1.56.7-1.56 1.56-1.56zM18 13c-3.31 0-6 2.69-6 6 3.31 0 6-2.69 6-6zm-6 6c0-3.31-2.69-6-6-6 0 3.31 2.69 6 6 6z" -}, "1"), /*#__PURE__*/_jsx("path", { +}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" -}, "2")], 'YardTwoTone'); \ No newline at end of file +}, "2")], 'YardTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YouTube.js b/packages/material-ui-icons/lib/YouTube.js index 23c4a94fb10f0c..38d4149790fff0 100644 --- a/packages/material-ui-icons/lib/YouTube.js +++ b/packages/material-ui-icons/lib/YouTube.js @@ -1,6 +1,22 @@ -import * as React from 'react'; -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var React = _interopRequireWildcard(require("react")); + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M10 15l5.19-3L10 9v6m11.56-7.83c.13.47.22 1.1.28 1.9.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83-.25.9-.83 1.48-1.73 1.73-.47.13-1.33.22-2.65.28-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44-.9-.25-1.48-.83-1.73-1.73-.13-.47-.22-1.1-.28-1.9-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83.25-.9.83-1.48 1.73-1.73.47-.13 1.33-.22 2.65-.28 1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44.9.25 1.48.83 1.73 1.73z" -}), 'YouTube'); \ No newline at end of file +}), 'YouTube'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YoutubeSearchedFor.js b/packages/material-ui-icons/lib/YoutubeSearchedFor.js index 8e1723b5eee632..d7bf3e853a92ce 100644 --- a/packages/material-ui-icons/lib/YoutubeSearchedFor.js +++ b/packages/material-ui-icons/lib/YoutubeSearchedFor.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" -}), 'YoutubeSearchedFor'); \ No newline at end of file +}), 'YoutubeSearchedFor'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YoutubeSearchedForOutlined.js b/packages/material-ui-icons/lib/YoutubeSearchedForOutlined.js index 2062614e423783..fcb5844d177936 100644 --- a/packages/material-ui-icons/lib/YoutubeSearchedForOutlined.js +++ b/packages/material-ui-icons/lib/YoutubeSearchedForOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" -}), 'YoutubeSearchedForOutlined'); \ No newline at end of file +}), 'YoutubeSearchedForOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YoutubeSearchedForRounded.js b/packages/material-ui-icons/lib/YoutubeSearchedForRounded.js index 6ae3dabf39bab4..d9bdfd0f1f80b8 100644 --- a/packages/material-ui-icons/lib/YoutubeSearchedForRounded.js +++ b/packages/material-ui-icons/lib/YoutubeSearchedForRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.01 14h-.8l-.27-.27c1.15-1.34 1.76-3.14 1.51-5.09C17.11 6 15.1 3.78 12.5 3.18 8.26 2.2 4.51 5.53 4.51 9.5h-2.1c-.47 0-.68.59-.31.89l3.4 2.75c.19.2.51.21.71.01l2.9-2.79c.32-.31.1-.86-.35-.86H6.51c0-2.49 2-4.48 4.46-4.5 2.44-.02 4.54 2.05 4.54 4.49 0 2.48-2.02 4.51-4.5 4.51-.45 0-.89-.07-1.3-.19-.34-.1-.71 0-.96.26-.53.53-.32 1.45.39 1.66.59.17 1.22.27 1.87.27 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l4.27 4.25c.41.41 1.07.41 1.48 0 .41-.41.41-1.08 0-1.49L17.01 14z" -}), 'YoutubeSearchedForRounded'); \ No newline at end of file +}), 'YoutubeSearchedForRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YoutubeSearchedForSharp.js b/packages/material-ui-icons/lib/YoutubeSearchedForSharp.js index c90d72fc8f2873..c10e9237f2b779 100644 --- a/packages/material-ui-icons/lib/YoutubeSearchedForSharp.js +++ b/packages/material-ui-icons/lib/YoutubeSearchedForSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" -}), 'YoutubeSearchedForSharp'); \ No newline at end of file +}), 'YoutubeSearchedForSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/YoutubeSearchedForTwoTone.js b/packages/material-ui-icons/lib/YoutubeSearchedForTwoTone.js index d8d9909854dd35..3e43730de7426e 100644 --- a/packages/material-ui-icons/lib/YoutubeSearchedForTwoTone.js +++ b/packages/material-ui-icons/lib/YoutubeSearchedForTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" -}), 'YoutubeSearchedForTwoTone'); \ No newline at end of file +}), 'YoutubeSearchedForTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomIn.js b/packages/material-ui-icons/lib/ZoomIn.js index 437df479ae1db6..6ce908075821c8 100644 --- a/packages/material-ui-icons/lib/ZoomIn.js +++ b/packages/material-ui-icons/lib/ZoomIn.js @@ -1,7 +1,20 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon([/*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" -}, "0"), /*#__PURE__*/_jsx("path", { +}, "0"), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z" -}, "1")], 'ZoomIn'); \ No newline at end of file +}, "1")], 'ZoomIn'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomInOutlined.js b/packages/material-ui-icons/lib/ZoomInOutlined.js index 4abe443e9d7ec6..fcb46e6edffd03 100644 --- a/packages/material-ui-icons/lib/ZoomInOutlined.js +++ b/packages/material-ui-icons/lib/ZoomInOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" -}), 'ZoomInOutlined'); \ No newline at end of file +}), 'ZoomInOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomInRounded.js b/packages/material-ui-icons/lib/ZoomInRounded.js index d43bdc83b922bd..77dd88a7b80afb 100644 --- a/packages/material-ui-icons/lib/ZoomInRounded.js +++ b/packages/material-ui-icons/lib/ZoomInRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm0-7c-.28 0-.5.22-.5.5V9H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H9v1.5c0 .28.22.5.5.5s.5-.22.5-.5V10h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7.5c0-.28-.22-.5-.5-.5z" -}), 'ZoomInRounded'); \ No newline at end of file +}), 'ZoomInRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomInSharp.js b/packages/material-ui-icons/lib/ZoomInSharp.js index 678bff078f6908..9821c5f9c770c4 100644 --- a/packages/material-ui-icons/lib/ZoomInSharp.js +++ b/packages/material-ui-icons/lib/ZoomInSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" -}), 'ZoomInSharp'); \ No newline at end of file +}), 'ZoomInSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomInTwoTone.js b/packages/material-ui-icons/lib/ZoomInTwoTone.js index 5248096c6278b1..dbfab363a81906 100644 --- a/packages/material-ui-icons/lib/ZoomInTwoTone.js +++ b/packages/material-ui-icons/lib/ZoomInTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" -}), 'ZoomInTwoTone'); \ No newline at end of file +}), 'ZoomInTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOut.js b/packages/material-ui-icons/lib/ZoomOut.js index 3301dd1e2c5e3f..34bbcd36d94bdc 100644 --- a/packages/material-ui-icons/lib/ZoomOut.js +++ b/packages/material-ui-icons/lib/ZoomOut.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" -}), 'ZoomOut'); \ No newline at end of file +}), 'ZoomOut'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutMap.js b/packages/material-ui-icons/lib/ZoomOutMap.js index 56be4dc26dcd21..d6daddaad5b89e 100644 --- a/packages/material-ui-icons/lib/ZoomOutMap.js +++ b/packages/material-ui-icons/lib/ZoomOutMap.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 3 2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" -}), 'ZoomOutMap'); \ No newline at end of file +}), 'ZoomOutMap'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutMapOutlined.js b/packages/material-ui-icons/lib/ZoomOutMapOutlined.js index 63b9c4daf3a111..9f354483243125 100644 --- a/packages/material-ui-icons/lib/ZoomOutMapOutlined.js +++ b/packages/material-ui-icons/lib/ZoomOutMapOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 3 2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" -}), 'ZoomOutMapOutlined'); \ No newline at end of file +}), 'ZoomOutMapOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutMapRounded.js b/packages/material-ui-icons/lib/ZoomOutMapRounded.js index 8e6f86260dcd0c..b55d61db754cc6 100644 --- a/packages/material-ui-icons/lib/ZoomOutMapRounded.js +++ b/packages/material-ui-icons/lib/ZoomOutMapRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.85 3.85 17.3 5.3l-2.18 2.16c-.39.39-.39 1.03 0 1.42.39.39 1.03.39 1.42 0L18.7 6.7l1.45 1.45c.31.31.85.09.85-.36V3.5c0-.28-.22-.5-.5-.5h-4.29c-.45 0-.67.54-.36.85zm-12 4.3L5.3 6.7l2.16 2.18c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42L6.7 5.3l1.45-1.45c.31-.31.09-.85-.36-.85H3.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.36zm4.3 12L6.7 18.7l2.18-2.16c.39-.39.39-1.03 0-1.42-.39-.39-1.03-.39-1.42 0L5.3 17.3l-1.45-1.45c-.31-.31-.85-.09-.85.36v4.29c0 .28.22.5.5.5h4.29c.45 0 .67-.54.36-.85zm12-4.3L18.7 17.3l-2.16-2.18c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.03 0 1.42l2.18 2.16-1.45 1.45c-.31.31-.09.85.36.85h4.29c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.36z" -}), 'ZoomOutMapRounded'); \ No newline at end of file +}), 'ZoomOutMapRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutMapSharp.js b/packages/material-ui-icons/lib/ZoomOutMapSharp.js index 1b7e943d7487fe..163d3dfeb2af29 100644 --- a/packages/material-ui-icons/lib/ZoomOutMapSharp.js +++ b/packages/material-ui-icons/lib/ZoomOutMapSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m15 3 2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" -}), 'ZoomOutMapSharp'); \ No newline at end of file +}), 'ZoomOutMapSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutMapTwoTone.js b/packages/material-ui-icons/lib/ZoomOutMapTwoTone.js index 6095b57454ff63..676eb746988b49 100644 --- a/packages/material-ui-icons/lib/ZoomOutMapTwoTone.js +++ b/packages/material-ui-icons/lib/ZoomOutMapTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "m17.3 5.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM9 3H3v6l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3zm-.83 11.41L5.3 17.3 3 15v6h6l-2.3-2.3 2.89-2.87zm7.66 0-1.42 1.42 2.89 2.87L15 21h6v-6l-2.3 2.3z" -}), 'ZoomOutMapTwoTone'); \ No newline at end of file +}), 'ZoomOutMapTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutOutlined.js b/packages/material-ui-icons/lib/ZoomOutOutlined.js index b6b8d2306211ac..7cb21deba56a1f 100644 --- a/packages/material-ui-icons/lib/ZoomOutOutlined.js +++ b/packages/material-ui-icons/lib/ZoomOutOutlined.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" -}), 'ZoomOutOutlined'); \ No newline at end of file +}), 'ZoomOutOutlined'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutRounded.js b/packages/material-ui-icons/lib/ZoomOutRounded.js index a9f4958963eeea..14ba100dcae477 100644 --- a/packages/material-ui-icons/lib/ZoomOutRounded.js +++ b/packages/material-ui-icons/lib/ZoomOutRounded.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z" -}), 'ZoomOutRounded'); \ No newline at end of file +}), 'ZoomOutRounded'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutSharp.js b/packages/material-ui-icons/lib/ZoomOutSharp.js index 4093bfa06f4204..2cc124c3e63634 100644 --- a/packages/material-ui-icons/lib/ZoomOutSharp.js +++ b/packages/material-ui-icons/lib/ZoomOutSharp.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7V9z" -}), 'ZoomOutSharp'); \ No newline at end of file +}), 'ZoomOutSharp'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/ZoomOutTwoTone.js b/packages/material-ui-icons/lib/ZoomOutTwoTone.js index b6728b01fdb5bb..1326c74f9941e8 100644 --- a/packages/material-ui-icons/lib/ZoomOutTwoTone.js +++ b/packages/material-ui-icons/lib/ZoomOutTwoTone.js @@ -1,5 +1,18 @@ -import createSvgIcon from './utils/createSvgIcon.js'; -import { jsx as _jsx } from "react/jsx-runtime"; -export default createSvgIcon( /*#__PURE__*/_jsx("path", { +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); + +var _jsxRuntime = require("react/jsx-runtime"); + +var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" -}), 'ZoomOutTwoTone'); \ No newline at end of file +}), 'ZoomOutTwoTone'); + +exports.default = _default; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AcUnit.js b/packages/material-ui-icons/lib/esm/AcUnit.js new file mode 100644 index 00000000000000..1635b5eaaf4254 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AcUnit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z" +}), 'AcUnit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AcUnitOutlined.js b/packages/material-ui-icons/lib/esm/AcUnitOutlined.js new file mode 100644 index 00000000000000..ab80e8d7c8f07b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AcUnitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" +}), 'AcUnitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AcUnitRounded.js b/packages/material-ui-icons/lib/esm/AcUnitRounded.js new file mode 100644 index 00000000000000..a9aff3008ed782 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AcUnitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11h-3.17l2.54-2.54c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0L15 11h-2V9l3.95-3.95c.39-.39.39-1.03 0-1.42a.9959.9959 0 0 0-1.41 0L13 6.17V3c0-.55-.45-1-1-1s-1 .45-1 1v3.17L8.46 3.63a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42L11 9v2H9L5.05 7.05c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41L6.17 11H3c-.55 0-1 .45-1 1s.45 1 1 1h3.17l-2.54 2.54c-.39.39-.39 1.02 0 1.41.39.39 1.03.39 1.42 0L9 13h2v2l-3.95 3.95c-.39.39-.39 1.03 0 1.42.39.39 1.02.39 1.41 0L11 17.83V21c0 .55.45 1 1 1s1-.45 1-1v-3.17l2.54 2.54c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42L13 15v-2h2l3.95 3.95c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41L17.83 13H21c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'AcUnitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AcUnitSharp.js b/packages/material-ui-icons/lib/esm/AcUnitSharp.js new file mode 100644 index 00000000000000..9000bbec1ca651 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AcUnitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" +}), 'AcUnitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AcUnitTwoTone.js b/packages/material-ui-icons/lib/esm/AcUnitTwoTone.js new file mode 100644 index 00000000000000..f33cb1f56b6b9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AcUnitTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" +}), 'AcUnitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarm.js b/packages/material-ui-icons/lib/esm/AccessAlarm.js new file mode 100644 index 00000000000000..2b24dbd85d658f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarm.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'AccessAlarm'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmOutlined.js b/packages/material-ui-icons/lib/esm/AccessAlarmOutlined.js new file mode 100644 index 00000000000000..fe8da53f9dd41b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'AccessAlarmOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmRounded.js b/packages/material-ui-icons/lib/esm/AccessAlarmRounded.js new file mode 100644 index 00000000000000..93842445471645 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.87 15.25-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AccessAlarmRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmSharp.js b/packages/material-ui-icons/lib/esm/AccessAlarmSharp.js new file mode 100644 index 00000000000000..9cf5aa09411fc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'AccessAlarmSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmTwoTone.js b/packages/material-ui-icons/lib/esm/AccessAlarmTwoTone.js new file mode 100644 index 00000000000000..0943f903769b23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm.5-12H11v6l4.75 2.85.75-1.23-4-2.37zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53z" +}, "1")], 'AccessAlarmTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarms.js b/packages/material-ui-icons/lib/esm/AccessAlarms.js new file mode 100644 index 00000000000000..3bfa21d5964be6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarms.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" +}), 'AccessAlarms'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmsOutlined.js b/packages/material-ui-icons/lib/esm/AccessAlarmsOutlined.js new file mode 100644 index 00000000000000..de42a911f4a9ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" +}), 'AccessAlarmsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmsRounded.js b/packages/material-ui-icons/lib/esm/AccessAlarmsRounded.js new file mode 100644 index 00000000000000..80e147f78a57e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.87 15.25-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AccessAlarmsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmsSharp.js b/packages/material-ui-icons/lib/esm/AccessAlarmsSharp.js new file mode 100644 index 00000000000000..b1d7f9420fe23e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" +}), 'AccessAlarmsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessAlarmsTwoTone.js b/packages/material-ui-icons/lib/esm/AccessAlarmsTwoTone.js new file mode 100644 index 00000000000000..5c78a6da6cf79a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessAlarmsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm3.7 10.9L11 14V8h1.5v5.3l4 2.4-.8 1.2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m22 5.7-4.6-3.9-1.3 1.5 4.6 3.9zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zM7.9 3.4 6.6 1.9 2 5.7l1.3 1.5z" +}, "1")], 'AccessAlarmsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTime.js b/packages/material-ui-icons/lib/esm/AccessTime.js new file mode 100644 index 00000000000000..9d46de92cfdc4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTime.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}, "1")], 'AccessTime'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeFilled.js b/packages/material-ui-icons/lib/esm/AccessTimeFilled.js new file mode 100644 index 00000000000000..27afdbb6ad5911 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" +}), 'AccessTimeFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeFilledOutlined.js b/packages/material-ui-icons/lib/esm/AccessTimeFilledOutlined.js new file mode 100644 index 00000000000000..a1cd9392007e9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeFilledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" +}), 'AccessTimeFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeFilledRounded.js b/packages/material-ui-icons/lib/esm/AccessTimeFilledRounded.js new file mode 100644 index 00000000000000..2953793f413209 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM16 16c-.39.39-1.02.39-1.41 0l-3.29-3.29c-.19-.19-.3-.44-.3-.71V8c0-.55.45-1 1-1s1 .45 1 1v3.59l3 3c.39.39.39 1.02 0 1.41z" +}), 'AccessTimeFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeFilledSharp.js b/packages/material-ui-icons/lib/esm/AccessTimeFilledSharp.js new file mode 100644 index 00000000000000..58a07debf9a6b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" +}), 'AccessTimeFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeFilledTwoTone.js b/packages/material-ui-icons/lib/esm/AccessTimeFilledTwoTone.js new file mode 100644 index 00000000000000..fbee24994e5ad2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeFilledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" +}), 'AccessTimeFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeOutlined.js b/packages/material-ui-icons/lib/esm/AccessTimeOutlined.js new file mode 100644 index 00000000000000..ff301bf9e67b42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}), 'AccessTimeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeRounded.js b/packages/material-ui-icons/lib/esm/AccessTimeRounded.js new file mode 100644 index 00000000000000..18ab20300a0de0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z" +}), 'AccessTimeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeSharp.js b/packages/material-ui-icons/lib/esm/AccessTimeSharp.js new file mode 100644 index 00000000000000..7c394b2b6eca83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}), 'AccessTimeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessTimeTwoTone.js b/packages/material-ui-icons/lib/esm/AccessTimeTwoTone.js new file mode 100644 index 00000000000000..54c6d812e81f1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessTimeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}, "1")], 'AccessTimeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Accessibility.js b/packages/material-ui-icons/lib/esm/Accessibility.js new file mode 100644 index 00000000000000..d926cc29346ee4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Accessibility.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" +}), 'Accessibility'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityNew.js b/packages/material-ui-icons/lib/esm/AccessibilityNew.js new file mode 100644 index 00000000000000..98cd87991a66e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityNew.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'AccessibilityNew'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityNewOutlined.js b/packages/material-ui-icons/lib/esm/AccessibilityNewOutlined.js new file mode 100644 index 00000000000000..799b8016afb4d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityNewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'AccessibilityNewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityNewRounded.js b/packages/material-ui-icons/lib/esm/AccessibilityNewRounded.js new file mode 100644 index 00000000000000..185256b3cfba2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityNewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.75 6.99c-.14-.55-.69-.87-1.24-.75-2.38.53-5.03.76-7.51.76s-5.13-.23-7.51-.76c-.55-.12-1.1.2-1.24.75-.14.56.2 1.13.75 1.26 1.61.36 3.35.61 5 .75v12c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V9c1.65-.14 3.39-.39 4.99-.75.56-.13.9-.7.76-1.26zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'AccessibilityNewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityNewSharp.js b/packages/material-ui-icons/lib/esm/AccessibilityNewSharp.js new file mode 100644 index 00000000000000..97ce0758624e39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityNewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'AccessibilityNewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityNewTwoTone.js b/packages/material-ui-icons/lib/esm/AccessibilityNewTwoTone.js new file mode 100644 index 00000000000000..023560de113790 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityNewTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'AccessibilityNewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityOutlined.js b/packages/material-ui-icons/lib/esm/AccessibilityOutlined.js new file mode 100644 index 00000000000000..a23db073c78845 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" +}), 'AccessibilityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityRounded.js b/packages/material-ui-icons/lib/esm/AccessibilityRounded.js new file mode 100644 index 00000000000000..ffffac9ef54566 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm8 7h-5v12c0 .55-.45 1-1 1s-1-.45-1-1v-5h-2v5c0 .55-.45 1-1 1s-1-.45-1-1V9H4c-.55 0-1-.45-1-1s.45-1 1-1h16c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AccessibilityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilitySharp.js b/packages/material-ui-icons/lib/esm/AccessibilitySharp.js new file mode 100644 index 00000000000000..5871eac2c2351c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" +}), 'AccessibilitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibilityTwoTone.js b/packages/material-ui-icons/lib/esm/AccessibilityTwoTone.js new file mode 100644 index 00000000000000..d3f3885ec6f8d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibilityTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" +}), 'AccessibilityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Accessible.js b/packages/material-ui-icons/lib/esm/Accessible.js new file mode 100644 index 00000000000000..6692771c192de2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Accessible.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" +}, "1")], 'Accessible'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleForward.js b/packages/material-ui-icons/lib/esm/AccessibleForward.js new file mode 100644 index 00000000000000..94803239c6eea4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleForward.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "4.54", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C17.42 8.5 16.44 7 14.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L7.22 10l1.92.53L9.79 9H12l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H17v5h2v-5.5c0-1.1-.9-2-2-2z" +}, "1")], 'AccessibleForward'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleForwardOutlined.js b/packages/material-ui-icons/lib/esm/AccessibleForwardOutlined.js new file mode 100644 index 00000000000000..b77e30a24ba433 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleForwardOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "4.54", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z" +}, "1")], 'AccessibleForwardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleForwardRounded.js b/packages/material-ui-icons/lib/esm/AccessibleForwardRounded.js new file mode 100644 index 00000000000000..a4bd47ffa595c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleForwardRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "4.54", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2l-.28.76c-.21.56.11 1.17.68 1.33.49.14 1-.11 1.2-.58l.3-.71H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v4c0 .55.45 1 1 1s1-.45 1-1v-4.5c0-1.1-.9-2-2-2z" +}, "1")], 'AccessibleForwardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleForwardSharp.js b/packages/material-ui-icons/lib/esm/AccessibleForwardSharp.js new file mode 100644 index 00000000000000..35bf37e5fe885c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleForwardSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "4.54", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm5-3.5h-3.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-3.12 7H18v5h2v-7.5z" +}, "1")], 'AccessibleForwardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleForwardTwoTone.js b/packages/material-ui-icons/lib/esm/AccessibleForwardTwoTone.js new file mode 100644 index 00000000000000..d6c2a437333059 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleForwardTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "4.54", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z" +}, "1")], 'AccessibleForwardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleOutlined.js b/packages/material-ui-icons/lib/esm/AccessibleOutlined.js new file mode 100644 index 00000000000000..936dc9c5e2f9a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z" +}, "1")], 'AccessibleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleRounded.js b/packages/material-ui-icons/lib/esm/AccessibleRounded.js new file mode 100644 index 00000000000000..e3562e5cdba141 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 11.9c0-.49-.36-.89-.84-.97-1.25-.21-2.43-.88-3.23-1.76l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V15c0 1.1.9 2 2 2h5v4c0 .55.45 1 1 1s1-.45 1-1v-4.5c0-1.1-.9-2-2-2h-3v-3.45c1 .83 2.4 1.54 3.8 1.82.62.13 1.2-.34 1.2-.97zM12.83 18c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" +}, "1")], 'AccessibleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleSharp.js b/packages/material-ui-icons/lib/esm/AccessibleSharp.js new file mode 100644 index 00000000000000..ccf696464a5328 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V17h7v5h2v-7.5h-5v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" +}, "1")], 'AccessibleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccessibleTwoTone.js b/packages/material-ui-icons/lib/esm/AccessibleTwoTone.js new file mode 100644 index 00000000000000..e1385025d8707a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccessibleTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z" +}, "1")], 'AccessibleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalance.js b/packages/material-ui-icons/lib/esm/AccountBalance.js new file mode 100644 index 00000000000000..be1325ff94e3d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalance.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 10h3v7H4zm6.5 0h3v7h-3zM2 19h20v3H2zm15-9h3v7h-3zm-5-9L2 6v2h20V6z" +}), 'AccountBalance'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceOutlined.js b/packages/material-ui-icons/lib/esm/AccountBalanceOutlined.js new file mode 100644 index 00000000000000..b9f69acc2513cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z" +}), 'AccountBalanceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceRounded.js b/packages/material-ui-icons/lib/esm/AccountBalanceRounded.js new file mode 100644 index 00000000000000..21fe7fa8b13a20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 11.5v4c0 .83.67 1.5 1.5 1.5S7 16.33 7 15.5v-4c0-.83-.67-1.5-1.5-1.5S4 10.67 4 11.5zm6 0v4c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5zM3.5 22h16c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-16c-.83 0-1.5.67-1.5 1.5S2.67 22 3.5 22zM16 11.5v4c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5zM10.57 1.49l-7.9 4.16c-.41.21-.67.64-.67 1.1C2 7.44 2.56 8 3.25 8h16.51C20.44 8 21 7.44 21 6.75c0-.46-.26-.89-.67-1.1l-7.9-4.16c-.58-.31-1.28-.31-1.86 0z" +}), 'AccountBalanceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceSharp.js b/packages/material-ui-icons/lib/esm/AccountBalanceSharp.js new file mode 100644 index 00000000000000..0f7e104512cbc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z" +}), 'AccountBalanceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceTwoTone.js b/packages/material-ui-icons/lib/esm/AccountBalanceTwoTone.js new file mode 100644 index 00000000000000..ad2f68b577c67f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m6.29 6 5.21-2.74L16.71 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-9L2 6v2h19V6l-9.5-5zM6.29 6l5.21-2.74L16.71 6H6.29z" +}, "1")], 'AccountBalanceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceWallet.js b/packages/material-ui-icons/lib/esm/AccountBalanceWallet.js new file mode 100644 index 00000000000000..bcd42cb7e3d603 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceWallet.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'AccountBalanceWallet'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceWalletOutlined.js b/packages/material-ui-icons/lib/esm/AccountBalanceWalletOutlined.js new file mode 100644 index 00000000000000..eca73bace604ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceWalletOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "12", + r: "1.5" +}, "1")], 'AccountBalanceWalletOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceWalletRounded.js b/packages/material-ui-icons/lib/esm/AccountBalanceWalletRounded.js new file mode 100644 index 00000000000000..664ea3da30aec5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceWalletRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 16V8c0-1.1.89-2 2-2h9V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-1h-9c-1.11 0-2-.9-2-2zm3-8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h9V8h-9zm3 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'AccountBalanceWalletRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceWalletSharp.js b/packages/material-ui-icons/lib/esm/AccountBalanceWalletSharp.js new file mode 100644 index 00000000000000..e35654277a9c7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceWalletSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 18v3H3V3h18v3H10v12h11zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'AccountBalanceWalletSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBalanceWalletTwoTone.js b/packages/material-ui-icons/lib/esm/AccountBalanceWalletTwoTone.js new file mode 100644 index 00000000000000..8487ab5538c962 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBalanceWalletTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 17c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6V5H5v14h14v-2h-6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.38-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "12", + r: "1.5" +}, "2")], 'AccountBalanceWalletTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBox.js b/packages/material-ui-icons/lib/esm/AccountBox.js new file mode 100644 index 00000000000000..45777265f842db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" +}), 'AccountBox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBoxOutlined.js b/packages/material-ui-icons/lib/esm/AccountBoxOutlined.js new file mode 100644 index 00000000000000..5efa6a6e75ed73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBoxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 10H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18zm-9.69-2h7.38c-.69-.56-2.38-1.12-3.69-1.12s-3.01.56-3.69 1.12z" +}), 'AccountBoxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBoxRounded.js b/packages/material-ui-icons/lib/esm/AccountBoxRounded.js new file mode 100644 index 00000000000000..88b298bd7a3648 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBoxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" +}), 'AccountBoxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBoxSharp.js b/packages/material-ui-icons/lib/esm/AccountBoxSharp.js new file mode 100644 index 00000000000000..03738a60d1f2ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBoxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18V3H3v18zM15 9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" +}), 'AccountBoxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountBoxTwoTone.js b/packages/material-ui-icons/lib/esm/AccountBoxTwoTone.js new file mode 100644 index 00000000000000..648642d2edc130 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountBoxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.47c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18H6v-1.53z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7-5H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-1-2.53c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.53zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" +}, "1")], 'AccountBoxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountCircle.js b/packages/material-ui-icons/lib/esm/AccountCircle.js new file mode 100644 index 00000000000000..3aca2e937a124d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" +}), 'AccountCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountCircleOutlined.js b/packages/material-ui-icons/lib/esm/AccountCircleOutlined.js new file mode 100644 index 00000000000000..b6b6d9a9951a13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z" +}), 'AccountCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountCircleRounded.js b/packages/material-ui-icons/lib/esm/AccountCircleRounded.js new file mode 100644 index 00000000000000..35aa4f0c7a82f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" +}), 'AccountCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountCircleSharp.js b/packages/material-ui-icons/lib/esm/AccountCircleSharp.js new file mode 100644 index 00000000000000..f75ed175b35ff1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" +}), 'AccountCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountCircleTwoTone.js b/packages/material-ui-icons/lib/esm/AccountCircleTwoTone.js new file mode 100644 index 00000000000000..967efe6cd2dbeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8 0 1.82.62 3.49 1.64 4.83 1.43-1.74 4.9-2.33 6.36-2.33s4.93.59 6.36 2.33C19.38 15.49 20 13.82 20 12c0-4.41-3.59-8-8-8zm0 9c-1.94 0-3.5-1.56-3.5-3.5S10.06 6 12 6s3.5 1.56 3.5 3.5S13.94 13 12 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z" +}, "1")], 'AccountCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountTree.js b/packages/material-ui-icons/lib/esm/AccountTree.js new file mode 100644 index 00000000000000..a08aa75d2e7e46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountTree.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z" +}), 'AccountTree'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountTreeOutlined.js b/packages/material-ui-icons/lib/esm/AccountTreeOutlined.js new file mode 100644 index 00000000000000..704b4ca619eead --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountTreeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3h7zM7 9H4V5h3v4zm10 6h3v4h-3v-4zm0-10h3v4h-3V5z" +}), 'AccountTreeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountTreeRounded.js b/packages/material-ui-icons/lib/esm/AccountTreeRounded.js new file mode 100644 index 00000000000000..724246afbfaaa1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountTreeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11h3c1.11 0 2-.9 2-2V5c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1H9.01V5c0-1.11-.9-2-2-2H4c-1.1 0-2 .9-2 2v4c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2V8h2v7.01c0 1.65 1.34 2.99 2.99 2.99H15v1c0 1.11.9 2 2 2h3c1.11 0 2-.9 2-2v-4c0-1.11-.9-2-2-2h-3c-1.11 0-2 .9-2 2v1h-1.01c-.54 0-.99-.45-.99-.99V8h2v1c0 1.1.9 2 2 2z" +}), 'AccountTreeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountTreeSharp.js b/packages/material-ui-icons/lib/esm/AccountTreeSharp.js new file mode 100644 index 00000000000000..c658b183d22d5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountTreeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z" +}), 'AccountTreeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AccountTreeTwoTone.js b/packages/material-ui-icons/lib/esm/AccountTreeTwoTone.js new file mode 100644 index 00000000000000..a36479536846f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AccountTreeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3h7zM7 9H4V5h3v4zm10 6h3v4h-3v-4zm0-10h3v4h-3V5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 5v4H4V5h3m13 0v4h-3V5h3m0 10v4h-3v-4h3", + opacity: ".3" +}, "1")], 'AccountTreeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdUnits.js b/packages/material-ui-icons/lib/esm/AdUnits.js new file mode 100644 index 00000000000000..f8a15b5610c21e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdUnits.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM8 6h8v2H8z" +}), 'AdUnits'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdUnitsOutlined.js b/packages/material-ui-icons/lib/esm/AdUnitsOutlined.js new file mode 100644 index 00000000000000..18e0e4da208840 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdUnitsOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 4V3h10v1H7zm0 14V6h10v12H7zm0 3v-1h10v1H7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 7H8v2h8V7z" +}, "1")], 'AdUnitsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdUnitsRounded.js b/packages/material-ui-icons/lib/esm/AdUnitsRounded.js new file mode 100644 index 00000000000000..b249af0d0ed1bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdUnitsRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 18H8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 6H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z" +}, "1")], 'AdUnitsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdUnitsSharp.js b/packages/material-ui-icons/lib/esm/AdUnitsSharp.js new file mode 100644 index 00000000000000..5418209520c71a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdUnitsSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 1H5v22h14V1zm-2 18H7V5h10v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 6h8v2H8z" +}, "1")], 'AdUnitsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdUnitsTwoTone.js b/packages/material-ui-icons/lib/esm/AdUnitsTwoTone.js new file mode 100644 index 00000000000000..6a4080ed2d60c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdUnitsTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 3h10v1H7zm0 17h10v1H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 4V3h10v1H7zm0 14V6h10v12H7zm0 3v-1h10v1H7z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16 7H8v2h8V7z" +}, "2")], 'AdUnitsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Adb.js b/packages/material-ui-icons/lib/esm/Adb.js new file mode 100644 index 00000000000000..18e04fb4150dbb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Adb.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'Adb'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdbOutlined.js b/packages/material-ui-icons/lib/esm/AdbOutlined.js new file mode 100644 index 00000000000000..4c0570dfe0064d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdbOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'AdbOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdbRounded.js b/packages/material-ui-icons/lib/esm/AdbRounded.js new file mode 100644 index 00000000000000..8c8440342bbae5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdbRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'AdbRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdbSharp.js b/packages/material-ui-icons/lib/esm/AdbSharp.js new file mode 100644 index 00000000000000..c49752841dd18e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdbSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'AdbSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdbTwoTone.js b/packages/material-ui-icons/lib/esm/AdbTwoTone.js new file mode 100644 index 00000000000000..31b7b09513a48b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdbTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'AdbTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Add.js b/packages/material-ui-icons/lib/esm/Add.js new file mode 100644 index 00000000000000..6f6fe464017d33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Add.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" +}), 'Add'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAPhoto.js b/packages/material-ui-icons/lib/esm/AddAPhoto.js new file mode 100644 index 00000000000000..54ab56fa05da5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAPhoto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H21c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3.2-5c0 1.77 1.43 3.2 3.2 3.2s3.2-1.43 3.2-3.2-1.43-3.2-3.2-3.2-3.2 1.43-3.2 3.2z" +}), 'AddAPhoto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAPhotoOutlined.js b/packages/material-ui-icons/lib/esm/AddAPhotoOutlined.js new file mode 100644 index 00000000000000..d19951996113ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAPhotoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z" +}), 'AddAPhotoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAPhotoRounded.js b/packages/material-ui-icons/lib/esm/AddAPhotoRounded.js new file mode 100644 index 00000000000000..6c55cf76cfbb65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAPhotoRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 8c0 .55.45 1 1 1s1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1H5V2c0-.55-.45-1-1-1s-1 .45-1 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "14", + r: "3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M21 6h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65h-6.4c.17.3.28.63.28 1 0 1.1-.9 2-2 2H6v1c0 1.1-.9 2-2 2-.37 0-.7-.11-1-.28V20c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "2")], 'AddAPhotoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAPhotoSharp.js b/packages/material-ui-icons/lib/esm/AddAPhotoSharp.js new file mode 100644 index 00000000000000..f672271466c21a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAPhotoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H23v16H3V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'AddAPhotoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAPhotoTwoTone.js b/packages/material-ui-icons/lib/esm/AddAPhotoTwoTone.js new file mode 100644 index 00000000000000..53efe3bc2a5d01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAPhotoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 7v3H5v10h16V8h-4.05l-1.83-2H9v1H6zm7 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 6h-3.17L16 4H9v2h6.12l1.83 2H21v12H5V10H3v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 9V6h3V4H5V1H3v3H0v2h3v3z" +}, "1")], 'AddAPhotoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlarm.js b/packages/material-ui-icons/lib/esm/AddAlarm.js new file mode 100644 index 00000000000000..114b9a7e797786 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlarm.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" +}), 'AddAlarm'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlarmOutlined.js b/packages/material-ui-icons/lib/esm/AddAlarmOutlined.js new file mode 100644 index 00000000000000..2f8418b274942b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlarmOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" +}), 'AddAlarmOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlarmRounded.js b/packages/material-ui-icons/lib/esm/AddAlarmRounded.js new file mode 100644 index 00000000000000..46fcbd717a91eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlarmRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 12h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1zm6.18-6.99L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AddAlarmRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlarmSharp.js b/packages/material-ui-icons/lib/esm/AddAlarmSharp.js new file mode 100644 index 00000000000000..76d6a9fa244b0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlarmSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" +}), 'AddAlarmSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlarmTwoTone.js b/packages/material-ui-icons/lib/esm/AddAlarmTwoTone.js new file mode 100644 index 00000000000000..182df07191af19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlarmTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3zm9-3.28-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53z" +}, "1")], 'AddAlarmTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlert.js b/packages/material-ui-icons/lib/esm/AddAlert.js new file mode 100644 index 00000000000000..c7f87955640bb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z" +}), 'AddAlert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlertOutlined.js b/packages/material-ui-icons/lib/esm/AddAlertOutlined.js new file mode 100644 index 00000000000000..5b664485004be2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlertOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}), 'AddAlertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlertRounded.js b/packages/material-ui-icons/lib/esm/AddAlertRounded.js new file mode 100644 index 00000000000000..8851e365e10647 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlertRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm7-5h-1v-7c0-2.79-1.91-5.14-4.5-5.8v-.7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.7C7.91 4.86 6 7.21 6 10v7H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-5-4h-1v1c0 .55-.45 1-1 1s-1-.45-1-1v-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AddAlertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlertSharp.js b/packages/material-ui-icons/lib/esm/AddAlertSharp.js new file mode 100644 index 00000000000000..a1ec6680cbac03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlertSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-3-3.99h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z" +}), 'AddAlertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddAlertTwoTone.js b/packages/material-ui-icons/lib/esm/AddAlertTwoTone.js new file mode 100644 index 00000000000000..0f726bb6d1202f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddAlertTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm4 7h-3v3h-2v-3H8v-2h3V8h2v3h3v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zm-4-7V8h-2v3H8v2h3v3h2v-3h3v-2z" +}, "1")], 'AddAlertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBox.js b/packages/material-ui-icons/lib/esm/AddBox.js new file mode 100644 index 00000000000000..2d7a1939c82df7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" +}), 'AddBox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBoxOutlined.js b/packages/material-ui-icons/lib/esm/AddBoxOutlined.js new file mode 100644 index 00000000000000..6d0bfcc2ca71bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBoxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z" +}), 'AddBoxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBoxRounded.js b/packages/material-ui-icons/lib/esm/AddBoxRounded.js new file mode 100644 index 00000000000000..14093fe9c3fa26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBoxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AddBoxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBoxSharp.js b/packages/material-ui-icons/lib/esm/AddBoxSharp.js new file mode 100644 index 00000000000000..cacc0a15d0ed1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBoxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-4 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" +}), 'AddBoxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBoxTwoTone.js b/packages/material-ui-icons/lib/esm/AddBoxTwoTone.js new file mode 100644 index 00000000000000..b7d4d8abd013e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBoxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm2-8h4V7h2v4h4v2h-4v4h-2v-4H7v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z" +}, "1")], 'AddBoxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBusiness.js b/packages/material-ui-icons/lib/esm/AddBusiness.js new file mode 100644 index 00000000000000..572b9953a6b81f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBusiness.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 17h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zM2 4h15v2H2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}, "1")], 'AddBusiness'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBusinessOutlined.js b/packages/material-ui-icons/lib/esm/AddBusinessOutlined.js new file mode 100644 index 00000000000000..d2c5d292f813a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBusinessOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M2 4h15v2H2zm13 13h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zm-5.96-6 .6-3h11.72l.6 3H3.04z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23 18h-3v-3h-2v3h-3v2h3v3h2v-3h3z" +}, "1")], 'AddBusinessOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBusinessRounded.js b/packages/material-ui-icons/lib/esm/AddBusinessRounded.js new file mode 100644 index 00000000000000..e5853c249b8aaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBusinessRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 6h13c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm12 11h2v-3h.18c.63 0 1.1-.58.98-1.2l-1-5c-.09-.46-.5-.8-.98-.8H2.82c-.48 0-.89.34-.98.8l-1 5c-.12.62.35 1.2.98 1.2H2v5c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-5h4v3zm-6 1H4v-4h5v4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 18h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z" +}, "1")], 'AddBusinessRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBusinessSharp.js b/packages/material-ui-icons/lib/esm/AddBusinessSharp.js new file mode 100644 index 00000000000000..1093b9149c96c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBusinessSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 17h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zM2 4h15v2H2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}, "1")], 'AddBusinessSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddBusinessTwoTone.js b/packages/material-ui-icons/lib/esm/AddBusinessTwoTone.js new file mode 100644 index 00000000000000..ea5079a0661372 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddBusinessTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.36 9H3.64l-.6 3h12.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 4h15v2H2zm13 13h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zm-5.96-6 .6-3h11.72l.6 3H3.04z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}, "2")], 'AddBusinessTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircle.js b/packages/material-ui-icons/lib/esm/AddCircle.js new file mode 100644 index 00000000000000..236dd1e681134b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" +}), 'AddCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleOutline.js b/packages/material-ui-icons/lib/esm/AddCircleOutline.js new file mode 100644 index 00000000000000..547883f0ea05c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'AddCircleOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleOutlineOutlined.js b/packages/material-ui-icons/lib/esm/AddCircleOutlineOutlined.js new file mode 100644 index 00000000000000..0bdf432e4d7a1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'AddCircleOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleOutlineRounded.js b/packages/material-ui-icons/lib/esm/AddCircleOutlineRounded.js new file mode 100644 index 00000000000000..4d8579181784cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'AddCircleOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleOutlineSharp.js b/packages/material-ui-icons/lib/esm/AddCircleOutlineSharp.js new file mode 100644 index 00000000000000..d1b2a1b8b0b45e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'AddCircleOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/AddCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..e64d9cf091846e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'AddCircleOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleOutlined.js b/packages/material-ui-icons/lib/esm/AddCircleOutlined.js new file mode 100644 index 00000000000000..f5a84cd7b12222 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" +}), 'AddCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleRounded.js b/packages/material-ui-icons/lib/esm/AddCircleRounded.js new file mode 100644 index 00000000000000..0fcdaac4266dbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AddCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleSharp.js b/packages/material-ui-icons/lib/esm/AddCircleSharp.js new file mode 100644 index 00000000000000..0e5ad2676ceb46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" +}), 'AddCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCircleTwoTone.js b/packages/material-ui-icons/lib/esm/AddCircleTwoTone.js new file mode 100644 index 00000000000000..2f79ff35215b66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'AddCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddComment.js b/packages/material-ui-icons/lib/esm/AddComment.js new file mode 100644 index 00000000000000..adf243c1ddbba3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddComment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 11h-4v4h-2v-4H7V9h4V5h2v4h4v2z" +}), 'AddComment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCommentOutlined.js b/packages/material-ui-icons/lib/esm/AddCommentOutlined.js new file mode 100644 index 00000000000000..36b67f660ee38c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCommentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z" +}), 'AddCommentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCommentRounded.js b/packages/material-ui-icons/lib/esm/AddCommentRounded.js new file mode 100644 index 00000000000000..744c1bdd2f9012 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCommentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-6 7h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AddCommentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCommentSharp.js b/packages/material-ui-icons/lib/esm/AddCommentSharp.js new file mode 100644 index 00000000000000..6a47a0daa3a2a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCommentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v16h16l4 4V2zm-5 9h-4v4h-2v-4H7V9h4V5h2v4h4v2z" +}), 'AddCommentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddCommentTwoTone.js b/packages/material-ui-icons/lib/esm/AddCommentTwoTone.js new file mode 100644 index 00000000000000..65fa361e5686b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddCommentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4v12h14.83L20 17.17V4H4zm13 7h-4v4h-2v-4H7V9h4V5h2v4h4v2z", + opacity: ".3" +}, "1")], 'AddCommentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddIcCall.js b/packages/material-ui-icons/lib/esm/AddIcCall.js new file mode 100644 index 00000000000000..d96c848b918988 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddIcCall.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z" +}), 'AddIcCall'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddIcCallOutlined.js b/packages/material-ui-icons/lib/esm/AddIcCallOutlined.js new file mode 100644 index 00000000000000..26a44201997504 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddIcCallOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}), 'AddIcCallOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddIcCallRounded.js b/packages/material-ui-icons/lib/esm/AddIcCallRounded.js new file mode 100644 index 00000000000000..2dba7defc8b6c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddIcCallRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1zm5.21 7.27-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64l-.29-2.52c-.11-1.01-.97-1.78-1.98-1.78H5.02c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1-.76-1.86-1.77-1.97z" +}), 'AddIcCallRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddIcCallSharp.js b/packages/material-ui-icons/lib/esm/AddIcCallSharp.js new file mode 100644 index 00000000000000..6cfb9c12e838d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddIcCallSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6h-3V3h-2v3h-3v2h3v3h2V8h3zm0 9.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" +}), 'AddIcCallSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddIcCallTwoTone.js b/packages/material-ui-icons/lib/esm/AddIcCallTwoTone.js new file mode 100644 index 00000000000000..e484f6b4f557ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddIcCallTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 17.41c-.88-.07-1.75-.22-2.6-.45l-1.2 1.2c1.21.41 2.48.67 3.8.76v-1.51zM6.54 4.95h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 20.95c.55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.99c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zm10.97 6h2v-3h3v-2h-3v-3h-2v3h-3v2h3z" +}, "1")], 'AddIcCallTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLink.js b/packages/material-ui-icons/lib/esm/AddLink.js new file mode 100644 index 00000000000000..c06726ad872c8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLink.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11h8v2H8zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3z" +}), 'AddLink'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLinkOutlined.js b/packages/material-ui-icons/lib/esm/AddLinkOutlined.js new file mode 100644 index 00000000000000..d4d2246bd01f73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLinkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" +}), 'AddLinkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLinkRounded.js b/packages/material-ui-icons/lib/esm/AddLinkRounded.js new file mode 100644 index 00000000000000..d68d6627939d1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLinkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11h6c.55 0 1 .45 1 1s-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1zm11.93 1c.62 0 1.07-.59.93-1.19C21.32 8.62 19.35 7 17 7h-3.05c-.52 0-.95.43-.95.95s.43.95.95.95H17c1.45 0 2.67 1 3.01 2.34.11.44.47.76.92.76zm-16.97-.62C4.24 9.91 5.62 8.9 7.12 8.9h2.93c.52 0 .95-.43.95-.95S10.57 7 10.05 7H7.22c-2.61 0-4.94 1.91-5.19 4.51C1.74 14.49 4.08 17 7 17h3.05c.52 0 .95-.43.95-.95s-.43-.95-.95-.95H7c-1.91 0-3.42-1.74-3.04-3.72zM18 12c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1z" +}), 'AddLinkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLinkSharp.js b/packages/material-ui-icons/lib/esm/AddLinkSharp.js new file mode 100644 index 00000000000000..000d8ce474978c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLinkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" +}), 'AddLinkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLinkTwoTone.js b/packages/material-ui-icons/lib/esm/AddLinkTwoTone.js new file mode 100644 index 00000000000000..f0905889bd3d0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLinkTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" +}), 'AddLinkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocation.js b/packages/material-ui-icons/lib/esm/AddLocation.js new file mode 100644 index 00000000000000..0c3e15f1e82dae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm4 8h-3v3h-2v-3H8V8h3V5h2v3h3v2z" +}), 'AddLocation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationAlt.js b/packages/material-ui-icons/lib/esm/AddLocationAlt.js new file mode 100644 index 00000000000000..7bf91261346c23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" +}), 'AddLocationAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationAltOutlined.js b/packages/material-ui-icons/lib/esm/AddLocationAltOutlined.js new file mode 100644 index 00000000000000..4cb587b56ac754 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z" +}), 'AddLocationAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationAltRounded.js b/packages/material-ui-icons/lib/esm/AddLocationAltRounded.js new file mode 100644 index 00000000000000..9a6380536a5b8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 0c.55 0 1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1h-2v2c0 .55-.45 1-1 1s-1-.45-1-1V5h-2c-.55 0-1-.45-1-1s.45-1 1-1h2V1c0-.55.45-1 1-1zm-7 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.72-9.53c-.44.36-.72.91-.72 1.53 0 1.1.9 2 2 2h1v1c0 1.1.9 2 2 2 .32 0 .62-.08.89-.21.07.45.11.92.11 1.41 0 3.18-2.45 6.92-7.34 11.23-.38.33-.95.33-1.33 0C6.45 17.12 4 13.38 4 10.2 4 5.22 7.8 2 12 2c.94 0 1.86.16 2.72.47z" +}), 'AddLocationAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationAltSharp.js b/packages/material-ui-icons/lib/esm/AddLocationAltSharp.js new file mode 100644 index 00000000000000..4ffc40679c6d52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" +}), 'AddLocationAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationAltTwoTone.js b/packages/material-ui-icons/lib/esm/AddLocationAltTwoTone.js new file mode 100644 index 00000000000000..db9cd7dfdb71a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M14 4.8V7h3v3h1.41c.06.39.09.79.09 1.2 0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 16.99 5.5 13.77 5.5 11.2c0-3.84 2.82-6.7 6.5-6.7.7 0 1.37.1 2 .3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm2-9.75v2.08c-.62-.22-1.3-.33-2-.33-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14 0-.41-.03-.81-.1-1.2h2.02c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" +}, "1")], 'AddLocationAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationOutlined.js b/packages/material-ui-icons/lib/esm/AddLocationOutlined.js new file mode 100644 index 00000000000000..15f5e43f2051c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6v3h3v2h-3v3h-2v-3H8V9h3V6h2zm5 4.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'AddLocationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationRounded.js b/packages/material-ui-icons/lib/esm/AddLocationRounded.js new file mode 100644 index 00000000000000..999225c9a6d89b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7c0-.55-.44-1-1-1-.55 0-1 .44-1 1v2H9c-.55 0-1 .44-1 1 0 .55.44 1 1 1h2v2c0 .55.44 1 1 1 .55 0 1-.44 1-1v-2h2c.55 0 1-.44 1-1 0-.55-.44-1-1-1h-2V7zm-1-5c4.2 0 8 3.22 8 8.2 0 3.18-2.45 6.92-7.34 11.23-.38.33-.95.33-1.33 0C6.45 17.12 4 13.38 4 10.2 4 5.22 7.8 2 12 2z" +}), 'AddLocationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationSharp.js b/packages/material-ui-icons/lib/esm/AddLocationSharp.js new file mode 100644 index 00000000000000..3fd71d6f92ed00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6h-2v3H8v2h3v3h2v-3h3V9h-3V6zm-1-4c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'AddLocationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddLocationTwoTone.js b/packages/material-ui-icons/lib/esm/AddLocationTwoTone.js new file mode 100644 index 00000000000000..85d264d13f8280 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddLocationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 6v3h3v2h-3v3h-2v-3H8V9h3V6h2zm5 4.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}, "1")], 'AddLocationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddModerator.js b/packages/material-ui-icons/lib/esm/AddModerator.js new file mode 100644 index 00000000000000..102f9470031778 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddModerator.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.22 22.61c-.4.15-.8.29-1.22.39-5.16-1.26-9-6.45-9-12V5l9-4 9 4v6c0 .9-.11 1.78-.3 2.65-.81-.41-1.73-.65-2.7-.65-3.31 0-6 2.69-6 6 0 1.36.46 2.61 1.22 3.61zM19 20v2.99s-1.99.01-2 0V20h-3v-2h3v-3h2v3h3v2h-3z" +}), 'AddModerator'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddModeratorOutlined.js b/packages/material-ui-icons/lib/esm/AddModeratorOutlined.js new file mode 100644 index 00000000000000..1bec9b2a295559 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddModeratorOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 11.09v-4.7l6-2.25 6 2.25v3.69c.71.1 1.38.31 2 .6V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02-.79-.78-1.4-1.76-1.75-2.84C7.76 17.53 6 14.42 6 11.09z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z" +}, "1")], 'AddModeratorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddModeratorRounded.js b/packages/material-ui-icons/lib/esm/AddModeratorRounded.js new file mode 100644 index 00000000000000..1830f24bf1550e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddModeratorRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 10c1.08 0 2.09.25 3 .68v-4.3c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.17-.95-.17-1.4 0l-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02C10.8 20.71 10 18.95 10 17c0-3.87 3.13-7 7-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm2.5 5.5h-2v2c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-2h-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h2v-2c0-.28.22-.5.5-.5s.5.22.5.5v2h2c.28 0 .5.22.5.5s-.22.5-.5.5z" +}, "1")], 'AddModeratorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddModeratorSharp.js b/packages/material-ui-icons/lib/esm/AddModeratorSharp.js new file mode 100644 index 00000000000000..0d214a91923447 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddModeratorSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 10c1.08 0 2.09.25 3 .68V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02C10.8 20.71 10 18.95 10 17c0-3.87 3.13-7 7-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z" +}, "1")], 'AddModeratorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddModeratorTwoTone.js b/packages/material-ui-icons/lib/esm/AddModeratorTwoTone.js new file mode 100644 index 00000000000000..9fe4e2ad1413a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddModeratorTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4.14 6 6.39v4.7c0 3.33 1.76 6.44 4.33 8.04-1.56-4.89 2.5-9.8 7.67-9.05V6.39l-6-2.25z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.33 19.13C7.76 17.53 6 14.42 6 11.09v-4.7l6-2.25 6 2.25v3.69c.71.1 1.38.31 2 .6V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02-.79-.79-1.4-1.76-1.75-2.85z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z" +}, "2")], 'AddModeratorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddOutlined.js b/packages/material-ui-icons/lib/esm/AddOutlined.js new file mode 100644 index 00000000000000..4ea86bf9f282fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" +}), 'AddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddPhotoAlternate.js b/packages/material-ui-icons/lib/esm/AddPhotoAlternate.js new file mode 100644 index 00000000000000..06b77f83203fb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddPhotoAlternate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8h-3zM5 19l3-4 2 3 3-4 4 5H5z" +}), 'AddPhotoAlternate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddPhotoAlternateOutlined.js b/packages/material-ui-icons/lib/esm/AddPhotoAlternateOutlined.js new file mode 100644 index 00000000000000..322e792f7a84c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddPhotoAlternateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z" +}), 'AddPhotoAlternateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddPhotoAlternateRounded.js b/packages/material-ui-icons/lib/esm/AddPhotoAlternateRounded.js new file mode 100644 index 00000000000000..93838ac9f2e166 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddPhotoAlternateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.02 5H19V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V5h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V7h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98zM16 9.01V8h-1.01c-.53 0-1.03-.21-1.41-.58-.37-.38-.58-.88-.58-1.44 0-.36.1-.69.27-.98H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.28c-.3.17-.64.28-1.02.28-1.09-.01-1.98-.9-1.98-1.99zM15.96 19H6c-.41 0-.65-.47-.4-.8l1.98-2.63c.21-.28.62-.26.82.02L10 18l2.61-3.48c.2-.26.59-.27.79-.01l2.95 3.68c.26.33.03.81-.39.81z" +}), 'AddPhotoAlternateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddPhotoAlternateSharp.js b/packages/material-ui-icons/lib/esm/AddPhotoAlternateSharp.js new file mode 100644 index 00000000000000..6baa6b5b4f708c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddPhotoAlternateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H3v16h16V11h-3zM5 19l3-4 2 3 3-4 4 5H5z" +}), 'AddPhotoAlternateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddPhotoAlternateTwoTone.js b/packages/material-ui-icons/lib/esm/AddPhotoAlternateTwoTone.js new file mode 100644 index 00000000000000..740eedba6f6d7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddPhotoAlternateTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m10.21 16.83-1.96-2.36L5.5 18h11l-3.54-4.71z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.5 18h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zM17 7h-3V6H4v14h14V10h-1V7z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 4V1h-2v3h-3v2h3v2.99h2V6h3V4zm-2 16H4V6h10V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V10h-2v10z" +}, "2")], 'AddPhotoAlternateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddReaction.js b/packages/material-ui-icons/lib/esm/AddReaction.js new file mode 100644 index 00000000000000..d0ed411bc5fc54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddReaction.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9V7h-2V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H18zm-2.5-1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zM22 3h2v2h-2v2h-2V5h-2V3h2V1h2v2z" +}), 'AddReaction'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddReactionOutlined.js b/packages/material-ui-icons/lib/esm/AddReactionOutlined.js new file mode 100644 index 00000000000000..2bb9407baa2efd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddReactionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm5 8c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm3.5-6.5c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zM22 1h-2v2h-2v2h2v2h2V5h2V3h-2V1zm-2 11c0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.46 0 2.82.4 4 1.08V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H19.4c.38.93.6 1.94.6 3z" +}), 'AddReactionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddReactionRounded.js b/packages/material-ui-icons/lib/esm/AddReactionRounded.js new file mode 100644 index 00000000000000..d30ddd30840f28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddReactionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 4c0 .55-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1zm-2.48 4.95c.31.96.48 1.99.48 3.05 0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2c1.5 0 2.92.34 4.2.94-.12.33-.2.68-.2 1.06 0 1.35.9 2.5 2.13 2.87C18.5 8.1 19.65 9 21 9c.18 0 .35-.02.52-.05zM7 9.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5zm9.31 4.5H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75s3.8-1.11 4.75-2.75c.19-.33-.05-.75-.44-.75zM17 9.5c0-.83-.67-1.5-1.5-1.5S14 8.67 14 9.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" +}), 'AddReactionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddReactionSharp.js b/packages/material-ui-icons/lib/esm/AddReactionSharp.js new file mode 100644 index 00000000000000..76c1a3b22064f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddReactionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9V7h-2V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H18zm-2.5-1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zM22 3h2v2h-2v2h-2V5h-2V3h2V1h2v2z" +}), 'AddReactionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddReactionTwoTone.js b/packages/material-ui-icons/lib/esm/AddReactionTwoTone.js new file mode 100644 index 00000000000000..fe4cb6c8d1afea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddReactionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.41 9H18V7h-2V5.08C14.82 4.4 13.46 4 12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8c0-1.06-.21-2.07-.59-3zM15.5 8c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm5 8c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm3.5-6.5c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zM22 1h-2v2h-2v2h2v2h2V5h2V3h-2V1zm-2 11c0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.46 0 2.82.4 4 1.08V2.84C14.77 2.3 13.42 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H19.4c.38.93.6 1.94.6 3z" +}, "1")], 'AddReactionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddRoad.js b/packages/material-ui-icons/lib/esm/AddRoad.js new file mode 100644 index 00000000000000..6a5ced5371c466 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddRoad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" +}), 'AddRoad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddRoadOutlined.js b/packages/material-ui-icons/lib/esm/AddRoadOutlined.js new file mode 100644 index 00000000000000..0ac22c0ab8b473 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddRoadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" +}), 'AddRoadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddRoadRounded.js b/packages/material-ui-icons/lib/esm/AddRoadRounded.js new file mode 100644 index 00000000000000..6526b3aa0c8f27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddRoadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zM19 4c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zM5 20c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1zm7-12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1z" +}), 'AddRoadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddRoadSharp.js b/packages/material-ui-icons/lib/esm/AddRoadSharp.js new file mode 100644 index 00000000000000..9c44fd83e51e1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddRoadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" +}), 'AddRoadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddRoadTwoTone.js b/packages/material-ui-icons/lib/esm/AddRoadTwoTone.js new file mode 100644 index 00000000000000..dbe7e582092c74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddRoadTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" +}), 'AddRoadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddRounded.js b/packages/material-ui-icons/lib/esm/AddRounded.js new file mode 100644 index 00000000000000..68b5ab3b826a87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddSharp.js b/packages/material-ui-icons/lib/esm/AddSharp.js new file mode 100644 index 00000000000000..e1ec8ab7b87de9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" +}), 'AddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddShoppingCart.js b/packages/material-ui-icons/lib/esm/AddShoppingCart.js new file mode 100644 index 00000000000000..6583a4c8ad5e22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddShoppingCart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z" +}), 'AddShoppingCart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddShoppingCartOutlined.js b/packages/material-ui-icons/lib/esm/AddShoppingCartOutlined.js new file mode 100644 index 00000000000000..c1d33af41ef85f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddShoppingCartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" +}), 'AddShoppingCartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddShoppingCartRounded.js b/packages/material-ui-icons/lib/esm/AddShoppingCartRounded.js new file mode 100644 index 00000000000000..3536b5b0772039 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddShoppingCartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 9c.55 0 1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1zm-5 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.24-6.14c.25-.48.08-1.08-.4-1.34-.49-.27-1.1-.08-1.36.41L15.55 11H8.53L4.27 2H2c-.55 0-1 .45-1 1s.45 1 1 1h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2z" +}), 'AddShoppingCartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddShoppingCartSharp.js b/packages/material-ui-icons/lib/esm/AddShoppingCartSharp.js new file mode 100644 index 00000000000000..25794cf3bc3a82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddShoppingCartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59L3.62 17H19v-2H7l1.1-2z" +}), 'AddShoppingCartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddShoppingCartTwoTone.js b/packages/material-ui-icons/lib/esm/AddShoppingCartTwoTone.js new file mode 100644 index 00000000000000..185d541185678c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddShoppingCartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.41 4l-3.86 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" +}), 'AddShoppingCartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddTask.js b/packages/material-ui-icons/lib/esm/AddTask.js new file mode 100644 index 00000000000000..5bbb2ac180319d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddTask.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" +}), 'AddTask'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddTaskOutlined.js b/packages/material-ui-icons/lib/esm/AddTaskOutlined.js new file mode 100644 index 00000000000000..35375f30fea5e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddTaskOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" +}), 'AddTaskOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddTaskRounded.js b/packages/material-ui-icons/lib/esm/AddTaskRounded.js new file mode 100644 index 00000000000000..1ba203f8cfacbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddTaskRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.29 5.89-10 10c-.39.39-1.02.39-1.41 0l-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12 9.29-9.29c.39-.39 1.02-.39 1.41 0 .4.39.4 1.02.01 1.41zM12 20c-4.71 0-8.48-4.09-7.95-8.9.39-3.52 3.12-6.41 6.61-6.99 1.81-.3 3.53.02 4.99.78.39.2.86.13 1.17-.18.48-.48.36-1.29-.24-1.6-1.47-.75-3.13-1.16-4.9-1.11-5.14.16-9.41 4.34-9.67 9.47C1.72 17.24 6.3 22 12 22c1.2 0 2.34-.21 3.41-.6.68-.25.87-1.13.35-1.65-.27-.27-.68-.37-1.04-.23-.85.31-1.77.48-2.72.48zm7-5h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2z" +}), 'AddTaskRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddTaskSharp.js b/packages/material-ui-icons/lib/esm/AddTaskSharp.js new file mode 100644 index 00000000000000..e1ee569e7be8cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddTaskSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" +}), 'AddTaskSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddTaskTwoTone.js b/packages/material-ui-icons/lib/esm/AddTaskTwoTone.js new file mode 100644 index 00000000000000..1430641334356f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddTaskTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" +}), 'AddTaskTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToDrive.js b/packages/material-ui-icons/lib/esm/AddToDrive.js new file mode 100644 index 00000000000000..9ea01cc89e42ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToDrive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 21v-3h3v-2h-3v-3h-2v3h-3v2h3v3h2zm-4.97.5H5.66c-.72 0-1.38-.38-1.73-1l-2.36-4.1c-.36-.62-.35-1.38.01-2L7.92 3.49c.36-.61 1.02-.99 1.73-.99h4.7c.71 0 1.37.38 1.73.99l4.48 7.71c-.5-.13-1.02-.2-1.56-.2-.28 0-.56.02-.84.06L14.35 4.5h-4.7L3.31 15.41l2.35 4.09h7.89c.35.77.85 1.45 1.48 2zM13.34 15c-.22.63-.34 1.3-.34 2H7.25l-.73-1.27 4.58-7.98h1.8l2.53 4.42c-.56.42-1.05.93-1.44 1.51l-2-3.49L9.25 15h4.09z" +}), 'AddToDrive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToDriveOutlined.js b/packages/material-ui-icons/lib/esm/AddToDriveOutlined.js new file mode 100644 index 00000000000000..7c901aa966333c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToDriveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}), 'AddToDriveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToDriveRounded.js b/packages/material-ui-icons/lib/esm/AddToDriveRounded.js new file mode 100644 index 00000000000000..40ff326cc39d8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToDriveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}), 'AddToDriveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToDriveSharp.js b/packages/material-ui-icons/lib/esm/AddToDriveSharp.js new file mode 100644 index 00000000000000..aa2fc9c996172d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToDriveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}), 'AddToDriveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToDriveTwoTone.js b/packages/material-ui-icons/lib/esm/AddToDriveTwoTone.js new file mode 100644 index 00000000000000..806e4bc3f6828d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToDriveTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84C15.77 11.71 17.3 11 19 11zM8.15 4.52 2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81c-.96-1.06-1.54-2.46-1.54-4 0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" +}), 'AddToDriveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToHomeScreen.js b/packages/material-ui-icons/lib/esm/AddToHomeScreen.js new file mode 100644 index 00000000000000..49be9649de5191 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToHomeScreen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41z" +}), 'AddToHomeScreen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToHomeScreenOutlined.js b/packages/material-ui-icons/lib/esm/AddToHomeScreenOutlined.js new file mode 100644 index 00000000000000..27d1bad46e4afb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToHomeScreenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" +}), 'AddToHomeScreenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToHomeScreenRounded.js b/packages/material-ui-icons/lib/esm/AddToHomeScreenRounded.js new file mode 100644 index 00000000000000..32303b5a7782c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToHomeScreenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V5h10v14H8v-1c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM11 15c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1h2.59L3.7 14.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L10 11.41V14c0 .55.45 1 1 1z" +}), 'AddToHomeScreenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToHomeScreenSharp.js b/packages/material-ui-icons/lib/esm/AddToHomeScreenSharp.js new file mode 100644 index 00000000000000..86dc1f794110d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToHomeScreenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 1.01 6 1v5h2V5h10v14H8v-1H6v5h14V1.01zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" +}), 'AddToHomeScreenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToHomeScreenTwoTone.js b/packages/material-ui-icons/lib/esm/AddToHomeScreenTwoTone.js new file mode 100644 index 00000000000000..1dd1276f0395ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToHomeScreenTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" +}), 'AddToHomeScreenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToPhotos.js b/packages/material-ui-icons/lib/esm/AddToPhotos.js new file mode 100644 index 00000000000000..de3e131e280eef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToPhotos.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" +}), 'AddToPhotos'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToPhotosOutlined.js b/packages/material-ui-icons/lib/esm/AddToPhotosOutlined.js new file mode 100644 index 00000000000000..07aaef8139b1a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToPhotosOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" +}), 'AddToPhotosOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToPhotosRounded.js b/packages/material-ui-icons/lib/esm/AddToPhotosRounded.js new file mode 100644 index 00000000000000..e57ce56ec589af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToPhotosRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AddToPhotosRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToPhotosSharp.js b/packages/material-ui-icons/lib/esm/AddToPhotosSharp.js new file mode 100644 index 00000000000000..8cad0360d67365 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToPhotosSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" +}), 'AddToPhotosSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToPhotosTwoTone.js b/packages/material-ui-icons/lib/esm/AddToPhotosTwoTone.js new file mode 100644 index 00000000000000..6d4cd797d00bc1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToPhotosTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4H8v12h12V4zm-1 7h-4v4h-2v-4H9V9h4V5h2v4h4v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm4-4h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM8 4h12v12H8V4zm7 1h-2v4H9v2h4v4h2v-4h4V9h-4z" +}, "1")], 'AddToPhotosTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToQueue.js b/packages/material-ui-icons/lib/esm/AddToQueue.js new file mode 100644 index 00000000000000..ec6c13af3a426f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToQueue.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z" +}), 'AddToQueue'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToQueueOutlined.js b/packages/material-ui-icons/lib/esm/AddToQueueOutlined.js new file mode 100644 index 00000000000000..763749ebd37384 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToQueueOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" +}), 'AddToQueueOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToQueueRounded.js b/packages/material-ui-icons/lib/esm/AddToQueueRounded.js new file mode 100644 index 00000000000000..13b807ce5f1ca1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToQueueRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-4-6c0 .55-.45 1-1 1h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2V8c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1z" +}), 'AddToQueueRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToQueueSharp.js b/packages/material-ui-icons/lib/esm/AddToQueueSharp.js new file mode 100644 index 00000000000000..0808883124d4a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToQueueSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z" +}), 'AddToQueueSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddToQueueTwoTone.js b/packages/material-ui-icons/lib/esm/AddToQueueTwoTone.js new file mode 100644 index 00000000000000..32bed9c113afae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddToQueueTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 17h18V5H3v12zm5-7h3V7h2v3h3v2h-3v3h-2v-3H8v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" +}, "1")], 'AddToQueueTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddTwoTone.js b/packages/material-ui-icons/lib/esm/AddTwoTone.js new file mode 100644 index 00000000000000..4bb666a5199dee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" +}), 'AddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Addchart.js b/packages/material-ui-icons/lib/esm/Addchart.js new file mode 100644 index 00000000000000..154faaa8403f4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Addchart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z" +}), 'Addchart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddchartOutlined.js b/packages/material-ui-icons/lib/esm/AddchartOutlined.js new file mode 100644 index 00000000000000..35d4d863ccd0ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddchartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z" +}), 'AddchartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddchartRounded.js b/packages/material-ui-icons/lib/esm/AddchartRounded.js new file mode 100644 index 00000000000000..0cf2b97810fa87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddchartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 10c0-.55.45-1 1-1s1 .45 1 1v7h-2v-7zm9 3c-.55 0-1 .45-1 1v5H5V5h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5c0-.55-.45-1-1-1zm1-8h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1zm-5 8c-.55 0-1 .45-1 1v3h2v-3c0-.55-.45-1-1-1zm-9-1v5h2v-5c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'AddchartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddchartSharp.js b/packages/material-ui-icons/lib/esm/AddchartSharp.js new file mode 100644 index 00000000000000..12c2ee62137ea9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddchartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2v8h-2V9zm-2 8v-6H7v6h2zm10 2H5V5h6V3H3v18h18v-8h-2v6zm-4-6v4h2v-4h-2zm4-8V2h-2v3h-3v2h3v3h2V7h3V5h-3z" +}), 'AddchartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AddchartTwoTone.js b/packages/material-ui-icons/lib/esm/AddchartTwoTone.js new file mode 100644 index 00000000000000..3d88d76edd35ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AddchartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z" +}), 'AddchartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Adjust.js b/packages/material-ui-icons/lib/esm/Adjust.js new file mode 100644 index 00000000000000..18faaba83c37ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Adjust.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'Adjust'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdjustOutlined.js b/packages/material-ui-icons/lib/esm/AdjustOutlined.js new file mode 100644 index 00000000000000..9ffb021ff0c30f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdjustOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'AdjustOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdjustRounded.js b/packages/material-ui-icons/lib/esm/AdjustRounded.js new file mode 100644 index 00000000000000..1d07e189e979e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdjustRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'AdjustRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdjustSharp.js b/packages/material-ui-icons/lib/esm/AdjustSharp.js new file mode 100644 index 00000000000000..2b954ec1bc2226 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdjustSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'AdjustSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdjustTwoTone.js b/packages/material-ui-icons/lib/esm/AdjustTwoTone.js new file mode 100644 index 00000000000000..6b1973e2bd4e78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdjustTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0-7C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'AdjustTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdminPanelSettings.js b/packages/material-ui-icons/lib/esm/AdminPanelSettings.js new file mode 100644 index 00000000000000..f8b8b706c2a379 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdminPanelSettings.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 11c.34 0 .67.04 1 .09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z" +}, "1")], 'AdminPanelSettings'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdminPanelSettingsOutlined.js b/packages/material-ui-icons/lib/esm/AdminPanelSettingsOutlined.js new file mode 100644 index 00000000000000..47a948db54effb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdminPanelSettingsOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs("g", { + fillRule: "evenodd", + children: [/*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "15.5", + r: "1.12" + }), /*#__PURE__*/_jsx("path", { + d: "M17 17.5c-.73 0-2.19.36-2.24 1.08.5.71 1.32 1.17 2.24 1.17s1.74-.46 2.24-1.17c-.05-.72-1.51-1.08-2.24-1.08z" + }), /*#__PURE__*/_jsx("path", { + d: "M18 11.09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55C13.18 21.99 14.97 23 17 23c3.31 0 6-2.69 6-6 0-2.97-2.16-5.43-5-5.91zM11 17c0 .56.08 1.11.23 1.62-.24.11-.48.22-.73.3-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4 5.5 2.4v3.51c-2.84.48-5 2.94-5 5.91zm6 4c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + })] +}), 'AdminPanelSettingsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdminPanelSettingsRounded.js b/packages/material-ui-icons/lib/esm/AdminPanelSettingsRounded.js new file mode 100644 index 00000000000000..88ff49d0569383 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdminPanelSettingsRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 11c.34 0 .67.04 1 .09V7.58c0-.8-.47-1.52-1.2-1.83l-5.5-2.4c-.51-.22-1.09-.22-1.6 0l-5.5 2.4C3.47 6.07 3 6.79 3 7.58v3.6c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z" +}, "1")], 'AdminPanelSettingsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdminPanelSettingsSharp.js b/packages/material-ui-icons/lib/esm/AdminPanelSettingsSharp.js new file mode 100644 index 00000000000000..3e48a5e4f968ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdminPanelSettingsSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 11c.34 0 .67.04 1 .09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z" +}, "1")], 'AdminPanelSettingsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AdminPanelSettingsTwoTone.js b/packages/material-ui-icons/lib/esm/AdminPanelSettingsTwoTone.js new file mode 100644 index 00000000000000..0f09716cd64dfd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AdminPanelSettingsTwoTone.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16 7.58-5.5-2.4L5 7.58v3.6c0 3.5 2.33 6.74 5.5 7.74.25-.08.49-.2.73-.3-.15-.51-.23-1.06-.23-1.62 0-2.97 2.16-5.43 5-5.91V7.58z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "15.5", + r: "1.12" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 11.09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55C13.18 21.99 14.97 23 17 23c3.31 0 6-2.69 6-6 0-2.97-2.16-5.43-5-5.91zM11 17c0 .56.08 1.11.23 1.62-.24.11-.48.22-.73.3-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4 5.5 2.4v3.51c-2.84.48-5 2.94-5 5.91zm6 4c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M17 17.5c-.73 0-2.19.36-2.24 1.08.5.71 1.32 1.17 2.24 1.17s1.74-.46 2.24-1.17c-.05-.72-1.51-1.08-2.24-1.08z" +}, "4")], 'AdminPanelSettingsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Agriculture.js b/packages/material-ui-icons/lib/esm/Agriculture.js new file mode 100644 index 00000000000000..fe561725793bea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Agriculture.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.5 12c.93 0 1.78.28 2.5.76V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2h-.54c.95 1.06 1.54 2.46 1.54 4 0 .34-.04.67-.09 1h3.14c.25-2.25 2.14-4 4.45-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1zm5.83 4.82-.18-.47.93-.35c-.46-1.06-1.28-1.91-2.31-2.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.22-.55.35-1.17.35-1.81 0-.53-.11-1.04-.26-1.52l-.91.34zm-2.68 3.95c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.29-1.62 3.92z" +}, "1")], 'Agriculture'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AgricultureOutlined.js b/packages/material-ui-icons/lib/esm/AgricultureOutlined.js new file mode 100644 index 00000000000000..de88f880740c52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AgricultureOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 14.06V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2H8.96c-.22-.16-.45-.3-.69-.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.1-.26.18-.54.24-.82h5.16c-.02.17-.05.34-.05.51 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.95-.38-1.81-1-2.44zM6 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm4.87-4c-.04-.18-.08-.35-.13-.52l-.91.34-.18-.47.93-.35H11c2.21 0 4-1.79 4-4V8h5v5.05c-.16-.02-.33-.05-.5-.05-.95 0-1.81.38-2.44 1h-6.19zm8.63 4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'AgricultureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AgricultureRounded.js b/packages/material-ui-icons/lib/esm/AgricultureRounded.js new file mode 100644 index 00000000000000..bb16d9a4ed650e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AgricultureRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.5 11.97c.93 0 1.78.28 2.5.76V7.97c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.06-1.06c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-2.83 2.83c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.06-1.06L13 6.68v2.29c0 1.1-.9 2-2 2h-.54c.95 1.06 1.54 2.46 1.54 4 0 .34-.04.67-.09 1h3.14c.25-2.24 2.14-4 4.45-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 12.97c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 8.97h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1 0 .56.45 1 1 1zm5.83 4.82-.18-.47.93-.35c-.46-1.06-1.28-1.91-2.31-2.43l-.4.89-.46-.21.4-.9c-.55-.21-1.17-.35-1.81-.35-.53 0-1.04.11-1.52.26l.34.91-.47.18L4 10.4c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4c-.22.55-.35 1.16-.35 1.8 0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.57.22 1.18.35 1.82.35.53 0 1.04-.11 1.52-.26l-.35-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.22-.57.35-1.18.35-1.82 0-.53-.11-1.04-.26-1.52l-.91.35zm-2.68 3.96c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.28-1.62 3.92z" +}, "1")], 'AgricultureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AgricultureSharp.js b/packages/material-ui-icons/lib/esm/AgricultureSharp.js new file mode 100644 index 00000000000000..ab689ccb8a5f94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AgricultureSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.5 12c.93 0 1.78.28 2.5.76V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2h-.54c.95 1.06 1.54 2.46 1.54 4 0 .34-.04.67-.09 1h3.14c.25-2.25 2.14-4 4.45-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1zm5.83 4.82-.18-.47.93-.35c-.46-1.06-1.28-1.91-2.31-2.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.22-.55.35-1.17.35-1.81 0-.53-.11-1.04-.26-1.52l-.91.34zm-2.68 3.95c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.29-1.62 3.92z" +}, "1")], 'AgricultureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AgricultureTwoTone.js b/packages/material-ui-icons/lib/esm/AgricultureTwoTone.js new file mode 100644 index 00000000000000..99c0f87b2cb7a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AgricultureTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 14.06V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2H8.96c-.22-.16-.45-.3-.69-.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93c-1.06.46-1.91 1.28-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35c.46 1.06 1.28 1.91 2.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93c1.06-.46 1.91-1.28 2.43-2.31l-.89-.4.21-.46.9.4c.1-.26.18-.54.24-.82h5.16c-.02.17-.05.34-.05.51 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.95-.38-1.81-1-2.44zM6 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm4.87-4c-.04-.18-.08-.35-.13-.52l-.91.34-.18-.47.93-.35H11c2.21 0 4-1.79 4-4V8h5v5.05c-.16-.02-.33-.05-.5-.05-.95 0-1.81.38-2.44 1h-6.19zm8.63 4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 13.05V8h-5v1c0 2.21-1.79 4-4 4h-.42c.14.32.25.65.32 1h6.16c.63-.62 1.49-1 2.44-1 .17 0 .34.03.5.05z", + opacity: ".3" +}, "2")], 'AgricultureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Air.js b/packages/material-ui-icons/lib/esm/Air.js new file mode 100644 index 00000000000000..35867d419e5e5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Air.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" +}), 'Air'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirOutlined.js b/packages/material-ui-icons/lib/esm/AirOutlined.js new file mode 100644 index 00000000000000..694b0bc337dc24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" +}), 'AirOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirRounded.js b/packages/material-ui-icons/lib/esm/AirRounded.js new file mode 100644 index 00000000000000..5cb0271f88bf34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.35 17.95c-.28.89-1.01 1.62-1.9 1.9-1.51.48-2.94-.23-3.59-1.42-.35-.65.17-1.43.91-1.43h.01c.34 0 .68.16.84.46.17.32.5.54.89.54.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1-.45-1-1s.45-1 1-1h8.5c1.96 0 3.5 1.9 2.85 3.95zm4.56-12.28c-.29-1.26-1.32-2.29-2.58-2.58-1.76-.4-3.37.53-4.02 1.98-.31.67.17 1.43.9 1.43.39 0 .75-.22.9-.57.23-.55.76-.93 1.39-.93.83 0 1.5.67 1.5 1.5S16.33 8 15.5 8H3c-.55 0-1 .45-1 1s.45 1 1 1h12.5c2.2 0 3.93-2.04 3.41-4.33zM18.4 11H3c-.55 0-1 .45-1 1s.45 1 1 1h15.5c.83 0 1.5.67 1.5 1.5 0 .63-.38 1.16-.93 1.39-.36.15-.57.51-.57.9 0 .73.76 1.21 1.43.91 1.43-.64 2.35-2.21 2-3.93-.34-1.64-1.86-2.77-3.53-2.77z" +}), 'AirRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirSharp.js b/packages/material-ui-icons/lib/esm/AirSharp.js new file mode 100644 index 00000000000000..e55e4f7e8e6ecb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" +}), 'AirSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirTwoTone.js b/packages/material-ui-icons/lib/esm/AirTwoTone.js new file mode 100644 index 00000000000000..0b872409147d3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" +}), 'AirTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlat.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlat.js new file mode 100644 index 00000000000000..31dea4b0dd2d15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11v2H9V7h9c2.21 0 4 1.79 4 4zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z" +}), 'AirlineSeatFlat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngled.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngled.js new file mode 100644 index 00000000000000..61e6b32b778c7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.25 14.29-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09c2.1.76 3.18 3.06 2.41 5.15zM1.5 12.14 8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z" +}), 'AirlineSeatFlatAngled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledOutlined.js new file mode 100644 index 00000000000000..63edbab9ae604c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11 6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z" +}), 'AirlineSeatFlatAngledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledRounded.js new file mode 100644 index 00000000000000..97468b71f07d52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.25 14.29-.69 1.89L9.2 11.71l1.39-3.79c.38-1.03 1.52-1.56 2.56-1.19l6.69 2.41c2.1.76 3.18 3.06 2.41 5.15zm-19.8-1.81 5.55 2V18c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-.63l3.58 1.29c.52.19 1.1-.08 1.29-.6.19-.52-.08-1.1-.6-1.29L3.13 10.59c-.52-.19-1.1.08-1.29.6-.18.52.09 1.1.61 1.29zM7.3 10.2c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z" +}), 'AirlineSeatFlatAngledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledSharp.js new file mode 100644 index 00000000000000..561fba1d8bd1e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.56 16.18 9.2 11.71l2.08-5.66 12.35 4.47-2.07 5.66zM1.5 12.14 8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z" +}), 'AirlineSeatFlatAngledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledTwoTone.js new file mode 100644 index 00000000000000..e2c515aba47a95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatAngledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m14 16.64-4-1.45V17h4zM6 8.5c.15 0 .3-.03.44-.1.49-.24.7-.84.46-1.34-.19-.41-.59-.56-.9-.56-.15 0-.3.03-.44.1-.32.16-.45.42-.5.56-.05.15-.12.44.04.77.2.42.59.57.9.57zm13.16 2.52-6.69-2.41-.7 1.91 8.59 3.11.01-.02c.19-.51.17-1.05-.06-1.53-.23-.5-.63-.87-1.15-1.06z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1.5 12.14 8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm8.5 3.05 4 1.44V17h-4v-1.81zm9.84-6.05-8.56-3.09-2.08 5.66 12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15zm.53 4.46-.01.02-8.59-3.11.7-1.91 6.69 2.41c.52.19.93.56 1.15 1.05.23.49.25 1.04.06 1.54zM6 10.5c.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7zm-.94-3.34c.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78z" +}, "1")], 'AirlineSeatFlatAngledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatOutlined.js new file mode 100644 index 00000000000000..f4ebb0e9ede993 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z" +}), 'AirlineSeatFlatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatRounded.js new file mode 100644 index 00000000000000..b9574bad4e5b8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11v2H9V9c0-1.1.9-2 2-2h7c2.21 0 4 1.79 4 4zM2 15c0 .55.45 1 1 1h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm5.14-2.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z" +}), 'AirlineSeatFlatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatSharp.js new file mode 100644 index 00000000000000..4cb7adfeb1da7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7v6H9V7h13zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z" +}), 'AirlineSeatFlatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatFlatTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatFlatTwoTone.js new file mode 100644 index 00000000000000..aec4451f81904b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatFlatTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 11c.27 0 .52-.11.71-.3.39-.4.39-1.02-.01-1.41C5.51 9.11 5.26 9 5 9c-.27 0-.52.11-.71.3-.39.4-.39 1.02.01 1.41.19.18.44.29.7.29zm13-2h-7v2h9c0-1.1-.9-2-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z" +}, "1")], 'AirlineSeatFlatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuite.js b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuite.js new file mode 100644 index 00000000000000..1dbe9516294182 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuite.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-8v7H3V7H1v10h22v-6c0-2.21-1.79-4-4-4z" +}), 'AirlineSeatIndividualSuite'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteOutlined.js new file mode 100644 index 00000000000000..0fb2353198ec97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" +}), 'AirlineSeatIndividualSuiteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteRounded.js new file mode 100644 index 00000000000000..ecb1f3c5ded889 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V8c0-.55-.45-1-1-1s-1 .45-1 1v7c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-4c0-2.21-1.79-4-4-4z" +}), 'AirlineSeatIndividualSuiteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteSharp.js new file mode 100644 index 00000000000000..d82d67f5c64a5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm16-6H11v7H3V7H1v10h22V7z" +}), 'AirlineSeatIndividualSuiteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteTwoTone.js new file mode 100644 index 00000000000000..0fe3334e84b796 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatIndividualSuiteTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "11", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" +}, "2")], 'AirlineSeatIndividualSuiteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtra.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtra.js new file mode 100644 index 00000000000000..fe7ef3e714197b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtra.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98c-.34-.68-1.03-1.12-1.79-1.12L11 9V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" +}), 'AirlineSeatLegroomExtra'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraOutlined.js new file mode 100644 index 00000000000000..49027bb5c20f1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" +}), 'AirlineSeatLegroomExtraOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraRounded.js new file mode 100644 index 00000000000000..8d793ee35fc54a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l2.56 5.25c.48.98 1.64 1.39 2.63.94l1.95-.89c.76-.36 1.09-1.3.69-2.06z" +}), 'AirlineSeatLegroomExtraRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraSharp.js new file mode 100644 index 00000000000000..a175da71b6f08b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 3H2v14h11v-2H4zm18.24 12.96-2.53 1.15-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v11h10l3.41 7 5.07-2.32-1.24-2.72z" +}), 'AirlineSeatLegroomExtraSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraTwoTone.js new file mode 100644 index 00000000000000..27869e9c7f15ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomExtraTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z" +}), 'AirlineSeatLegroomExtraTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormal.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormal.js new file mode 100644 index 00000000000000..4eb5702c5ddf72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormal.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" +}), 'AirlineSeatLegroomNormal'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalOutlined.js new file mode 100644 index 00000000000000..b596b481217fa8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" +}), 'AirlineSeatLegroomNormalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalRounded.js new file mode 100644 index 00000000000000..5ff12120ae885a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v5c0 1.1.9 2 2 2h2.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" +}), 'AirlineSeatLegroomNormalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalSharp.js new file mode 100644 index 00000000000000..829ebbd7230ae1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15V3H3v14h11v-2H5zm17 3h-3v-7c0-1.1-.9-2-2-2h-5V3H6v11h10v7h6v-3z" +}), 'AirlineSeatLegroomNormalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalTwoTone.js new file mode 100644 index 00000000000000..ebdd848a291538 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomNormalTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" +}), 'AirlineSeatLegroomNormalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReduced.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReduced.js new file mode 100644 index 00000000000000..9eb6317325d51a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReduced.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" +}), 'AirlineSeatLegroomReduced'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedOutlined.js new file mode 100644 index 00000000000000..08594b235dabdd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" +}), 'AirlineSeatLegroomReducedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedRounded.js new file mode 100644 index 00000000000000..fe67919af621d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8h-2.69c-1.3 0-2.26-1.22-1.94-2.49L15 14H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h3c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.66 0-3-1.34-3-3z" +}), 'AirlineSeatLegroomReducedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedSharp.js new file mode 100644 index 00000000000000..2b8bb23fe3deba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.97 21H14v-3l1-4H6V3h6v6h5c1.1 0 2 .9 2 2l-2 7h2.97v3zM5 15V3H3v14h9v-2H5z" +}), 'AirlineSeatLegroomReducedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedTwoTone.js new file mode 100644 index 00000000000000..4a9efd734bb741 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatLegroomReducedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z" +}), 'AirlineSeatLegroomReducedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtra.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtra.js new file mode 100644 index 00000000000000..9bdc175e5d84ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtra.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" +}), 'AirlineSeatReclineExtra'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraOutlined.js new file mode 100644 index 00000000000000..f2a90df1322e6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" +}), 'AirlineSeatReclineExtraOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraRounded.js new file mode 100644 index 00000000000000..3b74c1a9d5fc39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 20c0-.55-.45-1-1-1H8.93c-1.48 0-2.74-1.08-2.96-2.54L4.16 7.78C4.07 7.33 3.67 7 3.2 7c-.62 0-1.08.57-.96 1.18l1.75 8.58C4.37 19.2 6.47 21 8.94 21H15c.55 0 1-.45 1-1zm-.46-5h-4.19l-1.03-4.1c1.28.72 2.63 1.28 4.1 1.3.58.01 1.05-.49 1.05-1.07 0-.59-.49-1.04-1.08-1.06-1.31-.04-2.63-.56-3.61-1.33L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.09 2.42c.42.33 1.02.29 1.39-.08.45-.45.4-1.18-.1-1.57l-4.29-3.35c-.35-.27-.78-.42-1.23-.42z" +}), 'AirlineSeatReclineExtraRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraSharp.js new file mode 100644 index 00000000000000..42b48a854c37e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H6.5L4 7H2l2.85 14H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61L7.44 18h9.24l3.82 3 1.5-1.5-5.77-4.5z" +}), 'AirlineSeatReclineExtraSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraTwoTone.js new file mode 100644 index 00000000000000..f070bb85e5e45c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineExtraTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z" +}), 'AirlineSeatReclineExtraTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormal.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormal.js new file mode 100644 index 00000000000000..107d84872eef8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormal.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" +}), 'AirlineSeatReclineNormal'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalOutlined.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalOutlined.js new file mode 100644 index 00000000000000..868af928e044a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" +}), 'AirlineSeatReclineNormalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalRounded.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalRounded.js new file mode 100644 index 00000000000000..37d81fbeb89ad9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H9c-1.66 0-3-1.34-3-3zm13.28 3.35-3.77-3.77c-.37-.37-.88-.58-1.41-.58h-2.6v-3.68c1.09.89 2.66 1.7 4.2 2.02.67.14 1.3-.36 1.3-1.04 0-.53-.39-.96-.92-1.05-1.42-.24-2.88-1.01-3.75-1.97l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l2.78 2.78c.39.39 1.04.39 1.43 0 .4-.39.4-1.03 0-1.43z" +}), 'AirlineSeatReclineNormalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalSharp.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalSharp.js new file mode 100644 index 00000000000000..12d811124d2319 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 19V7H4v14h11v-2H6zm14 1.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V18h8.07l3.5 3.5L20 20.07z" +}), 'AirlineSeatReclineNormalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalTwoTone.js b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalTwoTone.js new file mode 100644 index 00000000000000..246725caa3fc64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirlineSeatReclineNormalTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z" +}), 'AirlineSeatReclineNormalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplaneTicket.js b/packages/material-ui-icons/lib/esm/AirplaneTicket.js new file mode 100644 index 00000000000000..6b6c393740a0e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplaneTicket.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zm-2.46 9.3-8.86 2.36-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19z" +}), 'AirplaneTicket'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplaneTicketOutlined.js b/packages/material-ui-icons/lib/esm/AirplaneTicketOutlined.js new file mode 100644 index 00000000000000..ce1b891ce4d873 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplaneTicketOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zM20 18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v12zM8.87 15.66l-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19l-8.86 2.36z" +}), 'AirplaneTicketOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplaneTicketRounded.js b/packages/material-ui-icons/lib/esm/AirplaneTicketRounded.js new file mode 100644 index 00000000000000..0c73f42b2f19c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplaneTicketRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zm-2.46 9.3-8.49 2.26c-.22.06-.45-.04-.56-.23l-1.12-1.95c-.18-.3-.01-.69.32-.78.16-.04.34-.01.47.1l1.05.82 2.39-.64L9.9 9.6c-.26-.44-.02-1.01.47-1.15.26-.07.54 0 .74.18l3.69 3.44 2.44-.65c.51-.14 1.04.17 1.18.68.13.52-.17 1.05-.69 1.2z" +}), 'AirplaneTicketRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplaneTicketSharp.js b/packages/material-ui-icons/lib/esm/AirplaneTicketSharp.js new file mode 100644 index 00000000000000..a88cb69ae3be18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplaneTicketSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20V4zm-4.27 9.3-8.86 2.36-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19z" +}), 'AirplaneTicketSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplaneTicketTwoTone.js b/packages/material-ui-icons/lib/esm/AirplaneTicketTwoTone.js new file mode 100644 index 00000000000000..b60a7254d652ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplaneTicketTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.01 8.54C5.2 9.23 6 10.52 6 12c0 1.47-.81 2.77-2 3.46V18h16V6H4l.01 2.54zm4.13 3.99 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65c.51-.14 1.04.17 1.18.68.13.51-.17 1.04-.69 1.19l-8.86 2.36-1.66-2.88.93-.25z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.19 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.81-2-1.81-2zM20 18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17.73 13.3c.52-.15.82-.68.69-1.19-.14-.51-.67-.82-1.18-.68l-2.44.65-4.01-3.74-1.4.38 2.4 4.16-2.39.64-1.26-.99-.93.25 1.66 2.88 8.86-2.36z" +}, "2")], 'AirplaneTicketTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeActive.js b/packages/material-ui-icons/lib/esm/AirplanemodeActive.js new file mode 100644 index 00000000000000..cd048c3e7b0cd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeActive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'AirplanemodeActive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeActiveOutlined.js b/packages/material-ui-icons/lib/esm/AirplanemodeActiveOutlined.js new file mode 100644 index 00000000000000..2bf037213caf6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeActiveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'AirplanemodeActiveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeActiveRounded.js b/packages/material-ui-icons/lib/esm/AirplanemodeActiveRounded.js new file mode 100644 index 00000000000000..071fa1fd3e5b86 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeActiveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.48 13.7 13.5 9V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9l-7.98 4.7c-.32.18-.52.53-.52.9 0 .7.67 1.2 1.34 1.01l7.16-2.1V19l-2.26 1.35c-.15.09-.24.26-.24.43v.58c0 .33.31.57.62.49l2.92-.73L12 21l.38.09.42.11 1.9.48.67.17c.32.08.62-.16.62-.49v-.58c0-.18-.09-.34-.24-.43L13.5 19v-5.5l7.16 2.1c.67.2 1.34-.3 1.34-1 0-.37-.2-.72-.52-.9z" +}), 'AirplanemodeActiveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeActiveSharp.js b/packages/material-ui-icons/lib/esm/AirplanemodeActiveSharp.js new file mode 100644 index 00000000000000..9bc2402a111063 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeActiveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'AirplanemodeActiveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeActiveTwoTone.js b/packages/material-ui-icons/lib/esm/AirplanemodeActiveTwoTone.js new file mode 100644 index 00000000000000..a259b3d83e54e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeActiveTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'AirplanemodeActiveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeInactive.js b/packages/material-ui-icons/lib/esm/AirplanemodeInactive.js new file mode 100644 index 00000000000000..5689faffde6683 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeInactive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" +}), 'AirplanemodeInactive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeInactiveOutlined.js b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveOutlined.js new file mode 100644 index 00000000000000..37e76fe3eed7a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" +}), 'AirplanemodeInactiveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeInactiveRounded.js b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveRounded.js new file mode 100644 index 00000000000000..29b1cee617dac5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 14.6c0 .7-.67 1.2-1.34 1.01l-3.15-.93-7.01-7.01V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l7.98 4.7c.32.18.52.53.52.9zm-8.5-1.1L9.56 9.56 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l5.67 5.67-5.25 3.11c-.32.18-.52.53-.52.9 0 .7.67 1.2 1.34 1.01l7.16-2.1V19l-2.26 1.35c-.15.09-.24.26-.24.43v.58c0 .33.31.57.62.49l2.92-.73L12 21l.38.09.42.11 1.9.48.67.17c.32.08.62-.16.62-.49v-.58c0-.18-.09-.34-.24-.43L13.5 19v-2.67l5.57 5.57c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L13.5 13.5z" +}), 'AirplanemodeInactiveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeInactiveSharp.js b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveSharp.js new file mode 100644 index 00000000000000..2ac4b66e9d8d01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" +}), 'AirplanemodeInactiveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplanemodeInactiveTwoTone.js b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveTwoTone.js new file mode 100644 index 00000000000000..f5accae13c9429 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplanemodeInactiveTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94 1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" +}), 'AirplanemodeInactiveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Airplay.js b/packages/material-ui-icons/lib/esm/Airplay.js new file mode 100644 index 00000000000000..5aa3f4694e993b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Airplay.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 22h12l-6-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}, "1")], 'Airplay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplayOutlined.js b/packages/material-ui-icons/lib/esm/AirplayOutlined.js new file mode 100644 index 00000000000000..593ca326f5fd9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplayOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 22h12l-6-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}, "1")], 'AirplayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplayRounded.js b/packages/material-ui-icons/lib/esm/AirplayRounded.js new file mode 100644 index 00000000000000..2d7f47178edad0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.41 22h7.17c.89 0 1.34-1.08.71-1.71L12.7 16.7a.9959.9959 0 0 0-1.41 0L7.7 20.29c-.62.63-.18 1.71.71 1.71zM21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'AirplayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplaySharp.js b/packages/material-ui-icons/lib/esm/AirplaySharp.js new file mode 100644 index 00000000000000..77942c29977d1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 22h12l-6-6-6 6zM23 3H1v16h6v-2H3V5h18v12h-4v2h6V3z" +}), 'AirplaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirplayTwoTone.js b/packages/material-ui-icons/lib/esm/AirplayTwoTone.js new file mode 100644 index 00000000000000..a11c7e59d04cb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirplayTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 22h12l-6-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}, "1")], 'AirplayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirportShuttle.js b/packages/material-ui-icons/lib/esm/AirportShuttle.js new file mode 100644 index 00000000000000..ccebff04fe7837 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirportShuttle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.65 1.34 3 3 3s3-1.35 3-3h5.5c0 1.65 1.34 3 3 3s3-1.35 3-3H23v-5l-6-6zM3 11V7h4v4H3zm3 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7-6.5H9V7h4v4zm4.5 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM15 11V7h1l4 4h-5z" +}), 'AirportShuttle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirportShuttleOutlined.js b/packages/material-ui-icons/lib/esm/AirportShuttleOutlined.js new file mode 100644 index 00000000000000..74a6db7f405660 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirportShuttleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z" +}), 'AirportShuttleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirportShuttleRounded.js b/packages/material-ui-icons/lib/esm/AirportShuttleRounded.js new file mode 100644 index 00000000000000..af610ccda44a79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirportShuttleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.41 10.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H3c-1.1 0-2 .89-2 2v7c0 1.1.9 2 2 2 0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3c1.1 0 2-.9 2-2v-2.17c0-.53-.21-1.04-.59-1.42zM3 10V8c0-.55.45-1 1-1h3v4H4c-.55 0-1-.45-1-1zm3 7.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM13 11H9V7h4v4zm5 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM15 11V7h1l4 4h-5z" +}), 'AirportShuttleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirportShuttleSharp.js b/packages/material-ui-icons/lib/esm/AirportShuttleSharp.js new file mode 100644 index 00000000000000..a5b9fe9efaec90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirportShuttleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5H1v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zM3 11V7h4v4H3zm3 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM13 11H9V7h4v4zm5 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM15 11V7h1l4 4h-5z" +}), 'AirportShuttleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AirportShuttleTwoTone.js b/packages/material-ui-icons/lib/esm/AirportShuttleTwoTone.js new file mode 100644 index 00000000000000..4f3d04e3b7b59e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AirportShuttleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 14h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1h7.56c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H21v-2H3v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z" +}, "1")], 'AirportShuttleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Alarm.js b/packages/material-ui-icons/lib/esm/Alarm.js new file mode 100644 index 00000000000000..b316cbfe3043ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Alarm.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'Alarm'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmAdd.js b/packages/material-ui-icons/lib/esm/AlarmAdd.js new file mode 100644 index 00000000000000..e5576f1347496f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" +}), 'AlarmAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmAddOutlined.js b/packages/material-ui-icons/lib/esm/AlarmAddOutlined.js new file mode 100644 index 00000000000000..38f9891b7ce575 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.337 1.81 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}), 'AlarmAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmAddRounded.js b/packages/material-ui-icons/lib/esm/AlarmAddRounded.js new file mode 100644 index 00000000000000..d1588857d1820a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.18 5.01 18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm3-8h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'AlarmAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmAddSharp.js b/packages/material-ui-icons/lib/esm/AlarmAddSharp.js new file mode 100644 index 00000000000000..a447a6a7f2af50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.337 1.81 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}), 'AlarmAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmAddTwoTone.js b/packages/material-ui-icons/lib/esm/AlarmAddTwoTone.js new file mode 100644 index 00000000000000..f60a3c3d837054 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmAddTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.337 1.81 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}, "1")], 'AlarmAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOff.js b/packages/material-ui-icons/lib/esm/AlarmOff.js new file mode 100644 index 00000000000000..c46cb54fbded22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92 0-4.97-4.03-9-9-9-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29 1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28 6.6 1.86l-.86.71 1.42 1.42.86-.71z" +}), 'AlarmOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOffOutlined.js b/packages/material-ui-icons/lib/esm/AlarmOffOutlined.js new file mode 100644 index 00000000000000..0d088eaff45e5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48 4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1 1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" +}), 'AlarmOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOffRounded.js b/packages/material-ui-icons/lib/esm/AlarmOffRounded.js new file mode 100644 index 00000000000000..121089981e274d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm-6.33-3.5c-.38-.38-1-.38-1.39 0l-.02.03c-.39.39-.39 1.01 0 1.39l.68.68-.17.14c-.42.34-.47.96-.13 1.38l.03.03c.35.42.96.47 1.38.12l.31-.25.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l1.41 1.41c.38.38 1 .38 1.39 0l.03-.03c.38-.38.38-1 0-1.39l-17.01-17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zm7.91-13.44c.42.35 1.03.29 1.38-.12l.03-.03c.35-.42.29-1.03-.12-1.38l-3.1-2.59c-.42-.35-1.03-.29-1.38.12l-.03.03c-.35.42-.29 1.03.12 1.38l3.1 2.59zM7.43 3.68c.18-.34.15-.77-.11-1.09l-.03-.03c-.3-.36-.8-.43-1.2-.22l1.34 1.34z" +}), 'AlarmOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOffSharp.js b/packages/material-ui-icons/lib/esm/AlarmOffSharp.js new file mode 100644 index 00000000000000..09c56d355d1435 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48 4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1 1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" +}), 'AlarmOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOffTwoTone.js b/packages/material-ui-icons/lib/esm/AlarmOffTwoTone.js new file mode 100644 index 00000000000000..85e131a6169053 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48 4.607 3.845-1.28 1.535-4.61-3.843zm1.903 16.51-1.43-1.43-9.7-9.7-1.43-1.43-.74-.74L4.52 3.6l-1.5-1.5-1.41 1.41 1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41-2.16-2.17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" +}), 'AlarmOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOn.js b/packages/material-ui-icons/lib/esm/AlarmOn.js new file mode 100644 index 00000000000000..9027371ff1240a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z" +}), 'AlarmOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOnOutlined.js b/packages/material-ui-icons/lib/esm/AlarmOnOutlined.js new file mode 100644 index 00000000000000..ab49c1d80bd0f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.54 14.53 8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AlarmOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOnRounded.js b/packages/material-ui-icons/lib/esm/AlarmOnRounded.js new file mode 100644 index 00000000000000..445921a804d1d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.94 10.11-4.4 4.42-1.6-1.6c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06L10 16.11c.29.29.77.29 1.06 0L16 11.17c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0zm6.24-5.1L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AlarmOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOnSharp.js b/packages/material-ui-icons/lib/esm/AlarmOnSharp.js new file mode 100644 index 00000000000000..32a91985282832 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.54 14.53 8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AlarmOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOnTwoTone.js b/packages/material-ui-icons/lib/esm/AlarmOnTwoTone.js new file mode 100644 index 00000000000000..934adfde68340d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOnTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm-1.47 10.64-3.18-3.18 1.06-1.06 2.13 2.13 4.93-4.95 1.06 1.06-6 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.54 14.53 8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}, "1")], 'AlarmOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmOutlined.js b/packages/material-ui-icons/lib/esm/AlarmOutlined.js new file mode 100644 index 00000000000000..58b36f1594eaee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AlarmOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmRounded.js b/packages/material-ui-icons/lib/esm/AlarmRounded.js new file mode 100644 index 00000000000000..08abdc86cd293b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.87 15.25-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AlarmRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmSharp.js b/packages/material-ui-icons/lib/esm/AlarmSharp.js new file mode 100644 index 00000000000000..75c2f949c607b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'AlarmSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlarmTwoTone.js b/packages/material-ui-icons/lib/esm/AlarmTwoTone.js new file mode 100644 index 00000000000000..b0efd920974cd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlarmTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}, "1")], 'AlarmTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Album.js b/packages/material-ui-icons/lib/esm/Album.js new file mode 100644 index 00000000000000..633d496cdf7847 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Album.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'Album'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlbumOutlined.js b/packages/material-ui-icons/lib/esm/AlbumOutlined.js new file mode 100644 index 00000000000000..ca7ca58cd168c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlbumOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'AlbumOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlbumRounded.js b/packages/material-ui-icons/lib/esm/AlbumRounded.js new file mode 100644 index 00000000000000..37a3738605d0b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlbumRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'AlbumRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlbumSharp.js b/packages/material-ui-icons/lib/esm/AlbumSharp.js new file mode 100644 index 00000000000000..45fa36f23cd8d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlbumSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'AlbumSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlbumTwoTone.js b/packages/material-ui-icons/lib/esm/AlbumTwoTone.js new file mode 100644 index 00000000000000..c44f6536fe19ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlbumTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'AlbumTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalCenter.js b/packages/material-ui-icons/lib/esm/AlignHorizontalCenter.js new file mode 100644 index 00000000000000..87c4239fd7a128 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalCenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" +}), 'AlignHorizontalCenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalCenterOutlined.js b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterOutlined.js new file mode 100644 index 00000000000000..24ba694324af30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" +}), 'AlignHorizontalCenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalCenterRounded.js b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterRounded.js new file mode 100644 index 00000000000000..d0bddab0028925 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c.55 0 1 .45 1 1v4h6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H13v4h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H13v4c0 .55-.45 1-1 1s-1-.45-1-1v-4H7.5c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14H11v-4H4.5C3.67 10 3 9.33 3 8.5S3.67 7 4.5 7H11V3c0-.55.45-1 1-1z" +}), 'AlignHorizontalCenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalCenterSharp.js b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterSharp.js new file mode 100644 index 00000000000000..5935b7912a78bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" +}), 'AlignHorizontalCenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalCenterTwoTone.js b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterTwoTone.js new file mode 100644 index 00000000000000..7420a32ddaaa37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalCenterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" +}), 'AlignHorizontalCenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalLeft.js b/packages/material-ui-icons/lib/esm/AlignHorizontalLeft.js new file mode 100644 index 00000000000000..23fa008479864d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" +}), 'AlignHorizontalLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalLeftOutlined.js b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftOutlined.js new file mode 100644 index 00000000000000..1b6f672d058811 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" +}), 'AlignHorizontalLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalLeftRounded.js b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftRounded.js new file mode 100644 index 00000000000000..4b5cca4e3127a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 22c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1s1 .45 1 1v18c0 .55-.45 1-1 1zM20.5 7h-13C6.67 7 6 7.67 6 8.5S6.67 10 7.5 10h13c.83 0 1.5-.67 1.5-1.5S21.33 7 20.5 7zm-6 7h-7c-.83 0-1.5.67-1.5 1.5S6.67 17 7.5 17h7c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z" +}), 'AlignHorizontalLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalLeftSharp.js b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftSharp.js new file mode 100644 index 00000000000000..1ba5070e1a0b4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" +}), 'AlignHorizontalLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalLeftTwoTone.js b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftTwoTone.js new file mode 100644 index 00000000000000..fae67dc145502e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" +}), 'AlignHorizontalLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalRight.js b/packages/material-ui-icons/lib/esm/AlignHorizontalRight.js new file mode 100644 index 00000000000000..96636c3a159d38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" +}), 'AlignHorizontalRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalRightOutlined.js b/packages/material-ui-icons/lib/esm/AlignHorizontalRightOutlined.js new file mode 100644 index 00000000000000..68ff8a5bcd9024 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" +}), 'AlignHorizontalRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalRightRounded.js b/packages/material-ui-icons/lib/esm/AlignHorizontalRightRounded.js new file mode 100644 index 00000000000000..0a5224efdfa2bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2c.55 0 1 .45 1 1v18c0 .55-.45 1-1 1s-1-.45-1-1V3c0-.55.45-1 1-1zM3.5 10h13c.83 0 1.5-.67 1.5-1.5S17.33 7 16.5 7h-13C2.67 7 2 7.67 2 8.5S2.67 10 3.5 10zm6 7h7c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-7c-.83 0-1.5.67-1.5 1.5S8.67 17 9.5 17z" +}), 'AlignHorizontalRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalRightSharp.js b/packages/material-ui-icons/lib/esm/AlignHorizontalRightSharp.js new file mode 100644 index 00000000000000..2b0ef20a06bf08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" +}), 'AlignHorizontalRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignHorizontalRightTwoTone.js b/packages/material-ui-icons/lib/esm/AlignHorizontalRightTwoTone.js new file mode 100644 index 00000000000000..99d66a59ab0845 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignHorizontalRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" +}), 'AlignHorizontalRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalBottom.js b/packages/material-ui-icons/lib/esm/AlignVerticalBottom.js new file mode 100644 index 00000000000000..284ed8ad83e76c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalBottom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" +}), 'AlignVerticalBottom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalBottomOutlined.js b/packages/material-ui-icons/lib/esm/AlignVerticalBottomOutlined.js new file mode 100644 index 00000000000000..ea0082d3a43db5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalBottomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" +}), 'AlignVerticalBottomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalBottomRounded.js b/packages/material-ui-icons/lib/esm/AlignVerticalBottomRounded.js new file mode 100644 index 00000000000000..d76afc670ab826 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalBottomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 22H3c-.55 0-1-.45-1-1s.45-1 1-1h18c.55 0 1 .45 1 1s-.45 1-1 1zM8.5 2C7.67 2 7 2.67 7 3.5v13c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-13C10 2.67 9.33 2 8.5 2zm7 6c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5z" +}), 'AlignVerticalBottomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalBottomSharp.js b/packages/material-ui-icons/lib/esm/AlignVerticalBottomSharp.js new file mode 100644 index 00000000000000..b54aa8fa041a3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalBottomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" +}), 'AlignVerticalBottomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalBottomTwoTone.js b/packages/material-ui-icons/lib/esm/AlignVerticalBottomTwoTone.js new file mode 100644 index 00000000000000..b30b752816cc95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalBottomTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" +}), 'AlignVerticalBottomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalCenter.js b/packages/material-ui-icons/lib/esm/AlignVerticalCenter.js new file mode 100644 index 00000000000000..5a3eaba42241ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalCenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" +}), 'AlignVerticalCenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalCenterOutlined.js b/packages/material-ui-icons/lib/esm/AlignVerticalCenterOutlined.js new file mode 100644 index 00000000000000..1ce3f88602f1b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalCenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" +}), 'AlignVerticalCenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalCenterRounded.js b/packages/material-ui-icons/lib/esm/AlignVerticalCenterRounded.js new file mode 100644 index 00000000000000..8c6ac14c1a98ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalCenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11h-4V7.5c0-.83-.67-1.5-1.5-1.5S14 6.67 14 7.5V11h-4V4.5C10 3.67 9.33 3 8.5 3S7 3.67 7 4.5V11H2.84c-.55 0-1 .45-1 1s.45 1 1 1H7v6.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V13h4v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V13h4c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'AlignVerticalCenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalCenterSharp.js b/packages/material-ui-icons/lib/esm/AlignVerticalCenterSharp.js new file mode 100644 index 00000000000000..467ab7bb6342a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalCenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" +}), 'AlignVerticalCenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalCenterTwoTone.js b/packages/material-ui-icons/lib/esm/AlignVerticalCenterTwoTone.js new file mode 100644 index 00000000000000..6d1d44f09f88aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalCenterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" +}), 'AlignVerticalCenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalTop.js b/packages/material-ui-icons/lib/esm/AlignVerticalTop.js new file mode 100644 index 00000000000000..b4cefb6dcc5571 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalTop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" +}), 'AlignVerticalTop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalTopOutlined.js b/packages/material-ui-icons/lib/esm/AlignVerticalTopOutlined.js new file mode 100644 index 00000000000000..f42cfad0fe34b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalTopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" +}), 'AlignVerticalTopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalTopRounded.js b/packages/material-ui-icons/lib/esm/AlignVerticalTopRounded.js new file mode 100644 index 00000000000000..9408c02a0af128 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalTopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1h18c.55 0 1 .45 1 1zM8.5 22c.83 0 1.5-.67 1.5-1.5v-13C10 6.67 9.33 6 8.5 6S7 6.67 7 7.5v13c0 .83.67 1.5 1.5 1.5zm7-6c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5S14 6.67 14 7.5v7c0 .83.67 1.5 1.5 1.5z" +}), 'AlignVerticalTopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalTopSharp.js b/packages/material-ui-icons/lib/esm/AlignVerticalTopSharp.js new file mode 100644 index 00000000000000..77ff801a530e53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalTopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" +}), 'AlignVerticalTopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlignVerticalTopTwoTone.js b/packages/material-ui-icons/lib/esm/AlignVerticalTopTwoTone.js new file mode 100644 index 00000000000000..0c2b649c2f29b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlignVerticalTopTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" +}), 'AlignVerticalTopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInbox.js b/packages/material-ui-icons/lib/esm/AllInbox.js new file mode 100644 index 00000000000000..9dcbf22117c813 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInbox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v3c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3z" +}), 'AllInbox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInboxOutlined.js b/packages/material-ui-icons/lib/esm/AllInboxOutlined.js new file mode 100644 index 00000000000000..236e0f4b1a5875 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInboxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z" +}), 'AllInboxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInboxRounded.js b/packages/material-ui-icons/lib/esm/AllInboxRounded.js new file mode 100644 index 00000000000000..367d52bdd77556 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInboxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-3.14c-.47 0-.84.33-.97.78C14.53 11.04 13.35 12 12 12s-2.53-.96-2.89-2.22c-.13-.45-.5-.78-.97-.78H5V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3zm-3.13 7H20c.55 0 1 .45 1 1v2c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-2c0-.55.45-1 1-1h4.13c.47 0 .85.34.98.8.35 1.27 1.51 2.2 2.89 2.2s2.54-.93 2.89-2.2c.13-.46.51-.8.98-.8z" +}), 'AllInboxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInboxSharp.js b/packages/material-ui-icons/lib/esm/AllInboxSharp.js new file mode 100644 index 00000000000000..3f20643b635700 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInboxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v11h18V3zm-2 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v5H3v-5h6c0 1.66 1.34 3 3 3s3-1.34 3-3z" +}), 'AllInboxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInboxTwoTone.js b/packages/material-ui-icons/lib/esm/AllInboxTwoTone.js new file mode 100644 index 00000000000000..dc358651f6bd3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInboxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-5 7v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-7zm-9 2h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.13 10H5v2h4.4c-.6-.53-1.06-1.22-1.27-2zm6.47 2H19v-2h-3.13c-.21.78-.67 1.47-1.27 2zm-6.38 5.25c-.03-.08-.06-.16-.09-.25H5v2h4.4c-.53-.47-.94-1.07-1.18-1.75zm7.65-.25c-.02.09-.06.17-.09.25-.23.68-.64 1.28-1.18 1.75H19v-2h-3.13z", + opacity: ".3" +}, "1")], 'AllInboxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInclusive.js b/packages/material-ui-icons/lib/esm/AllInclusive.js new file mode 100644 index 00000000000000..d523701251995e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInclusive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L12 10.66 10.48 12h.01L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" +}), 'AllInclusive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInclusiveOutlined.js b/packages/material-ui-icons/lib/esm/AllInclusiveOutlined.js new file mode 100644 index 00000000000000..8dd58848d8373e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInclusiveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" +}), 'AllInclusiveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInclusiveRounded.js b/packages/material-ui-icons/lib/esm/AllInclusiveRounded.js new file mode 100644 index 00000000000000..e3d0c702497c68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInclusiveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.22 6.86c-2-.6-4.06-.04-5.39 1.29L12 10.66 10.48 12h.01L7.8 14.39c-.81.81-1.95 1.15-3.12.92-1.25-.25-2.28-1.25-2.57-2.49-.52-2.23 1.16-4.2 3.29-4.2.91 0 1.76.35 2.44 1.03l.47.41c.38.34.95.34 1.33 0 .45-.4.45-1.1 0-1.5l-.42-.36C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.81-.81 1.95-1.15 3.12-.92 1.25.25 2.28 1.25 2.57 2.49.52 2.23-1.16 4.2-3.29 4.2-.9 0-1.76-.35-2.44-1.03l-.48-.42c-.38-.34-.95-.34-1.33 0-.45.4-.45 1.1 0 1.5l.42.37c1.02 1.01 2.37 1.57 3.82 1.57 3.27 0 5.86-2.9 5.33-6.25-.3-1.99-1.77-3.69-3.7-4.26z" +}), 'AllInclusiveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInclusiveSharp.js b/packages/material-ui-icons/lib/esm/AllInclusiveSharp.js new file mode 100644 index 00000000000000..0bd473a3243900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInclusiveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53L13.51 12l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" +}), 'AllInclusiveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllInclusiveTwoTone.js b/packages/material-ui-icons/lib/esm/AllInclusiveTwoTone.js new file mode 100644 index 00000000000000..0d067d458c1ba1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllInclusiveTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" +}), 'AllInclusiveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllOut.js b/packages/material-ui-icons/lib/esm/AllOut.js new file mode 100644 index 00000000000000..5f607b26c57101 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllOut.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.21 4.16 4 4v-4zm4 12-4 4h4zm-12 4-4-4v4zm-4-12 4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z" +}), 'AllOut'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllOutOutlined.js b/packages/material-ui-icons/lib/esm/AllOutOutlined.js new file mode 100644 index 00000000000000..df8303e341c689 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllOutOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4v4l4-4zm12 0 4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}), 'AllOutOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllOutRounded.js b/packages/material-ui-icons/lib/esm/AllOutRounded.js new file mode 100644 index 00000000000000..1d6563498637d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllOutRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4.5V8l4-4H4.5c-.28 0-.5.22-.5.5zM16 4l4 4V4.5c0-.28-.22-.5-.5-.5H16zm4 15.5V16l-4 4h3.5c.28 0 .5-.22.5-.5zM4.5 20H8l-4-4v3.5c0 .28.22.5.5.5zM19 12c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}), 'AllOutRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllOutSharp.js b/packages/material-ui-icons/lib/esm/AllOutSharp.js new file mode 100644 index 00000000000000..2dca2e48e2f409 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllOutSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4v4l4-4zm12 0 4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}), 'AllOutSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AllOutTwoTone.js b/packages/material-ui-icons/lib/esm/AllOutTwoTone.js new file mode 100644 index 00000000000000..0e8957f4ae46da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AllOutTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4v4l4-4zm12 0 4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'AllOutTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AltRoute.js b/packages/material-ui-icons/lib/esm/AltRoute.js new file mode 100644 index 00000000000000..5af1a7c972e73f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AltRoute.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" +}), 'AltRoute'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AltRouteOutlined.js b/packages/material-ui-icons/lib/esm/AltRouteOutlined.js new file mode 100644 index 00000000000000..25592693b9982d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AltRouteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" +}), 'AltRouteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AltRouteRounded.js b/packages/material-ui-icons/lib/esm/AltRouteRounded.js new file mode 100644 index 00000000000000..9116e3ba42a294 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AltRouteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zm.37-6.01-2.8-2.8c-.2-.2-.51-.2-.71 0l-2.79 2.8c-.31.31-.09.85.36.85h1.81c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H9.8c.44 0 .66-.54.35-.85zm10 0-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.32.31-.1.85.35.85h1.78c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37h1.8c.45 0 .67-.54.36-.85z" +}), 'AltRouteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AltRouteSharp.js b/packages/material-ui-icons/lib/esm/AltRouteSharp.js new file mode 100644 index 00000000000000..824216606c0e08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AltRouteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" +}), 'AltRouteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AltRouteTwoTone.js b/packages/material-ui-icons/lib/esm/AltRouteTwoTone.js new file mode 100644 index 00000000000000..6f8cbd6b8e241b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AltRouteTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.78 11.16-1.42 1.42c-.68-.69-1.34-1.58-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6 7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" +}), 'AltRouteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlternateEmail.js b/packages/material-ui-icons/lib/esm/AlternateEmail.js new file mode 100644 index 00000000000000..06b93c7762da50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlternateEmail.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'AlternateEmail'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlternateEmailOutlined.js b/packages/material-ui-icons/lib/esm/AlternateEmailOutlined.js new file mode 100644 index 00000000000000..797f21ff45641b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlternateEmailOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'AlternateEmailOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlternateEmailRounded.js b/packages/material-ui-icons/lib/esm/AlternateEmailRounded.js new file mode 100644 index 00000000000000..96c3fc5cdc70a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlternateEmailRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.72 2.03C6.63 1.6 1.6 6.63 2.03 12.72 2.39 18.01 7.01 22 12.31 22H16c.55 0 1-.45 1-1s-.45-1-1-1h-3.67c-3.73 0-7.15-2.42-8.08-6.03-1.49-5.8 3.91-11.21 9.71-9.71C17.58 5.18 20 8.6 20 12.33v1.1c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.25c0-2.51-1.78-4.77-4.26-5.12-3.4-.49-6.27 2.45-5.66 5.87.34 1.91 1.83 3.49 3.72 3.94 1.84.43 3.59-.16 4.74-1.33.89 1.22 2.67 1.86 4.3 1.21 1.34-.53 2.16-1.9 2.16-3.34v-1.09c0-5.31-3.99-9.93-9.28-10.29zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'AlternateEmailRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlternateEmailSharp.js b/packages/material-ui-icons/lib/esm/AlternateEmailSharp.js new file mode 100644 index 00000000000000..7252ce45ff6eed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlternateEmailSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'AlternateEmailSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AlternateEmailTwoTone.js b/packages/material-ui-icons/lib/esm/AlternateEmailTwoTone.js new file mode 100644 index 00000000000000..edc6ac7aa28574 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AlternateEmailTwoTone.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillOpacity: ".9", + d: "M12 21.95h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10s-10 4.48-10 10 4.48 10 10 10zm0-7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'AlternateEmailTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Analytics.js b/packages/material-ui-icons/lib/esm/Analytics.js new file mode 100644 index 00000000000000..4e225e777346b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Analytics.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z" +}), 'Analytics'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnalyticsOutlined.js b/packages/material-ui-icons/lib/esm/AnalyticsOutlined.js new file mode 100644 index 00000000000000..223ee9d33b9061 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnalyticsOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 12h2v5H7zm8-5h2v10h-2zm-4 7h2v3h-2zm0-4h2v2h-2z" +}, "1")], 'AnalyticsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnalyticsRounded.js b/packages/material-ui-icons/lib/esm/AnalyticsRounded.js new file mode 100644 index 00000000000000..57462c0ee57491 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnalyticsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1s1 .45 1 1v1c0 .55-.45 1-1 1zm0-5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 5c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1z" +}), 'AnalyticsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnalyticsSharp.js b/packages/material-ui-icons/lib/esm/AnalyticsSharp.js new file mode 100644 index 00000000000000..87834d33d4362b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnalyticsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm6 14H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z" +}), 'AnalyticsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnalyticsTwoTone.js b/packages/material-ui-icons/lib/esm/AnalyticsTwoTone.js new file mode 100644 index 00000000000000..721269489e3425 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnalyticsTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h14v14H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 12h2v5H7zm8-5h2v10h-2zm-4 7h2v3h-2zm0-4h2v2h-2z" +}, "2")], 'AnalyticsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Anchor.js b/packages/material-ui-icons/lib/esm/Anchor.js new file mode 100644 index 00000000000000..93be2bfe72ed1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Anchor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'Anchor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnchorOutlined.js b/packages/material-ui-icons/lib/esm/AnchorOutlined.js new file mode 100644 index 00000000000000..114a2f2f79b13c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnchorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'AnchorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnchorRounded.js b/packages/material-ui-icons/lib/esm/AnchorRounded.js new file mode 100644 index 00000000000000..367270dd31c8e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnchorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 9V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H9c-.55 0-1 .45-1 1s.45 1 1 1h2v8.92c-2.22-.33-4.59-1.68-5.55-3.37l1.14-1.14c.22-.22.19-.57-.05-.75L3.8 12.6c-.33-.25-.8-.01-.8.4v2c0 3.88 4.92 7 9 7s9-3.12 9-7v-2c0-.41-.47-.65-.8-.4l-2.74 2.05c-.24.18-.27.54-.05.75l1.14 1.14c-.96 1.69-3.33 3.04-5.55 3.37V11h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zm-1-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'AnchorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnchorSharp.js b/packages/material-ui-icons/lib/esm/AnchorSharp.js new file mode 100644 index 00000000000000..6829af9d0a02a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnchorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'AnchorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnchorTwoTone.js b/packages/material-ui-icons/lib/esm/AnchorTwoTone.js new file mode 100644 index 00000000000000..9542e5b248aa3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnchorTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 15 1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'AnchorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Android.js b/packages/material-ui-icons/lib/esm/Android.js new file mode 100644 index 00000000000000..fd069b5822106f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Android.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" +}), 'Android'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AndroidOutlined.js b/packages/material-ui-icons/lib/esm/AndroidOutlined.js new file mode 100644 index 00000000000000..d553c295e15523 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AndroidOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" +}), 'AndroidOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AndroidRounded.js b/packages/material-ui-icons/lib/esm/AndroidRounded.js new file mode 100644 index 00000000000000..b39420da856bc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AndroidRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" +}), 'AndroidRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AndroidSharp.js b/packages/material-ui-icons/lib/esm/AndroidSharp.js new file mode 100644 index 00000000000000..8e247d80fc1c31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AndroidSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" +}), 'AndroidSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AndroidTwoTone.js b/packages/material-ui-icons/lib/esm/AndroidTwoTone.js new file mode 100644 index 00000000000000..1d2379b3200d68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AndroidTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.6 9.48 1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.22l-1.88 3.24c-2.86-1.21-6.08-1.21-8.94 0L5.65 5.67c-.19-.29-.58-.38-.87-.2-.28.18-.37.54-.22.83L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm10 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z" +}), 'AndroidTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Animation.js b/packages/material-ui-icons/lib/esm/Animation.js new file mode 100644 index 00000000000000..0adcd18d4af4d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Animation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" +}), 'Animation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnimationOutlined.js b/packages/material-ui-icons/lib/esm/AnimationOutlined.js new file mode 100644 index 00000000000000..e70b0156f0fc43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnimationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" +}), 'AnimationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnimationRounded.js b/packages/material-ui-icons/lib/esm/AnimationRounded.js new file mode 100644 index 00000000000000..0a30de4c881bd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnimationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" +}), 'AnimationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnimationSharp.js b/packages/material-ui-icons/lib/esm/AnimationSharp.js new file mode 100644 index 00000000000000..588d274fc9d879 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnimationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" +}), 'AnimationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnimationTwoTone.js b/packages/material-ui-icons/lib/esm/AnimationTwoTone.js new file mode 100644 index 00000000000000..8cbdc622113faa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnimationTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 12c-.63.84-1 1.88-1 3 0 2.76 2.24 5 5 5 1.12 0 2.16-.37 3-1-3.87 0-7-3.13-7-7zm10-8c-1.13 0-2.16.37-3 1 3.87.01 7 3.14 7 7 .63-.84 1-1.88 1-3 0-2.76-2.24-5-5-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 7c-.6 0-1.17.11-1.7.3-.19.53-.3 1.1-.3 1.7 0 2.76 2.24 5 5 5 .6 0 1.17-.11 1.7-.3.19-.53.3-1.1.3-1.7 0-2.76-2.24-5-5-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8 9c-.63.84-1 1.88-1 3 0 2.76 2.24 5 5 5 1.12 0 2.16-.37 3-1-3.87-.01-7-3.14-7-7z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z" +}, "3")], 'AnimationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Announcement.js b/packages/material-ui-icons/lib/esm/Announcement.js new file mode 100644 index 00000000000000..05d1ef547733b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Announcement.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z" +}), 'Announcement'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnnouncementOutlined.js b/packages/material-ui-icons/lib/esm/AnnouncementOutlined.js new file mode 100644 index 00000000000000..aab81da529f073 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnnouncementOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z" +}), 'AnnouncementOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnnouncementRounded.js b/packages/material-ui-icons/lib/esm/AnnouncementRounded.js new file mode 100644 index 00000000000000..00d0151614e20e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnnouncementRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 9c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z" +}), 'AnnouncementRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnnouncementSharp.js b/packages/material-ui-icons/lib/esm/AnnouncementSharp.js new file mode 100644 index 00000000000000..42610de83729b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnnouncementSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zm-9 9h-2V5h2v6zm0 4h-2v-2h2v2z" +}), 'AnnouncementSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AnnouncementTwoTone.js b/packages/material-ui-icons/lib/esm/AnnouncementTwoTone.js new file mode 100644 index 00000000000000..6b9d362d433cc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AnnouncementTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 4v13.17l.59-.59.58-.58H20V4H4zm9 11h-2v-2h2v2zm0-4h-2V5h2v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z" +}, "1")], 'AnnouncementTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Aod.js b/packages/material-ui-icons/lib/esm/Aod.js new file mode 100644 index 00000000000000..e6b7a30edf8627 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Aod.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-9-8h8v1.5H8V10zm1 3h6v1.5H9V13z" +}), 'Aod'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AodOutlined.js b/packages/material-ui-icons/lib/esm/AodOutlined.js new file mode 100644 index 00000000000000..8d593b61ca9f20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-9 6h8v1.5H8V10zm1 3h6v1.5H9V13z" +}), 'AodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AodRounded.js b/packages/material-ui-icons/lib/esm/AodRounded.js new file mode 100644 index 00000000000000..c5be3ceee75094 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-8.25-8h6.5c.41 0 .75.34.75.75s-.34.75-.75.75h-6.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zm1 3h4.5c.41 0 .75.34.75.75s-.34.75-.75.75h-4.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75z" +}), 'AodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AodSharp.js b/packages/material-ui-icons/lib/esm/AodSharp.js new file mode 100644 index 00000000000000..d54e2653152428 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H5v22h14V1zm-2 17H7V6h10v12zm-9-8h8v1.5H8V10zm1 3h6v1.5H9V13z" +}), 'AodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AodTwoTone.js b/packages/material-ui-icons/lib/esm/AodTwoTone.js new file mode 100644 index 00000000000000..69d3765fa6fc31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AodTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-9 6h8v1.5H8V10zm1 3h6v1.5H9V13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", + opacity: ".3" +}, "1")], 'AodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Apartment.js b/packages/material-ui-icons/lib/esm/Apartment.js new file mode 100644 index 00000000000000..05498425d2c83c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Apartment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'Apartment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApartmentOutlined.js b/packages/material-ui-icons/lib/esm/ApartmentOutlined.js new file mode 100644 index 00000000000000..eb7a3602898e03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApartmentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'ApartmentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApartmentRounded.js b/packages/material-ui-icons/lib/esm/ApartmentRounded.js new file mode 100644 index 00000000000000..c37a5fe87d842d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApartmentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11V5c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h5c.55 0 1-.45 1-1v-3h2v3c0 .55.45 1 1 1h5c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-2zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'ApartmentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApartmentSharp.js b/packages/material-ui-icons/lib/esm/ApartmentSharp.js new file mode 100644 index 00000000000000..7c2c012d1b11a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApartmentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'ApartmentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApartmentTwoTone.js b/packages/material-ui-icons/lib/esm/ApartmentTwoTone.js new file mode 100644 index 00000000000000..a8f03b88e3a745 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApartmentTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'ApartmentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Api.js b/packages/material-ui-icons/lib/esm/Api.js new file mode 100644 index 00000000000000..2d974155c4e978 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Api.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" +}), 'Api'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApiOutlined.js b/packages/material-ui-icons/lib/esm/ApiOutlined.js new file mode 100644 index 00000000000000..6dea9cc830e3c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApiOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" +}), 'ApiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApiRounded.js b/packages/material-ui-icons/lib/esm/ApiRounded.js new file mode 100644 index 00000000000000..c52fbbbed1dca9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApiRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 13c-.56.56-1.45.56-2 .01V13c-.55-.55-.55-1.44 0-1.99V11c.55-.55 1.44-.55 1.99 0H13c.55.55.55 1.45 0 2zm-1-7 2.12 2.12 2.5-2.5-3.2-3.2c-.78-.78-2.05-.78-2.83 0l-3.2 3.2 2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5-3.2 3.2c-.78.78-.78 2.05 0 2.83l3.2 3.2 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5 3.2-3.2c.78-.78.78-2.05 0-2.83l-3.2-3.2-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5 3.2 3.2c.78.78 2.05.78 2.83 0l3.2-3.2-2.5-2.5L12 18z" +}), 'ApiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApiSharp.js b/packages/material-ui-icons/lib/esm/ApiSharp.js new file mode 100644 index 00000000000000..8b207d8e3ab0a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApiSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" +}), 'ApiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApiTwoTone.js b/packages/material-ui-icons/lib/esm/ApiTwoTone.js new file mode 100644 index 00000000000000..f5054e72e1d3a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApiTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 12-2 2-2-2 2-2 2 2zm-2-6 2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6 2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" +}), 'ApiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppBlocking.js b/packages/material-ui-icons/lib/esm/AppBlocking.js new file mode 100644 index 00000000000000..ab1406879aca29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppBlocking.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z" +}), 'AppBlocking'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppBlockingOutlined.js b/packages/material-ui-icons/lib/esm/AppBlockingOutlined.js new file mode 100644 index 00000000000000..d3c8e68019d1d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppBlockingOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" +}, "1")], 'AppBlockingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppBlockingRounded.js b/packages/material-ui-icons/lib/esm/AppBlockingRounded.js new file mode 100644 index 00000000000000..03ab99438e62eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppBlockingRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z" +}, "1")], 'AppBlockingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppBlockingSharp.js b/packages/material-ui-icons/lib/esm/AppBlockingSharp.js new file mode 100644 index 00000000000000..6534d764a82b03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppBlockingSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 23v-6h-2v1H7V6h10v1h2V.94L5 1v22h14z" +}, "1")], 'AppBlockingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppBlockingTwoTone.js b/packages/material-ui-icons/lib/esm/AppBlockingTwoTone.js new file mode 100644 index 00000000000000..31fc6a19150520 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppBlockingTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 3h10v1H7zm0 17h10v1H7z", + opacity: ".3" +}, "2")], 'AppBlockingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppRegistration.js b/packages/material-ui-icons/lib/esm/AppRegistration.js new file mode 100644 index 00000000000000..5359ab61befcd1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppRegistration.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm10 8.42V10h-4v4h2.42zm6.88-1.13-1.17-1.17c-.16-.16-.42-.16-.58 0l-.88.88L20 12.75l.88-.88c.16-.16.16-.42 0-.58zM11 18.25V20h1.75l6.67-6.67-1.75-1.75zM16 4h4v4h-4z" +}), 'AppRegistration'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppRegistrationOutlined.js b/packages/material-ui-icons/lib/esm/AppRegistrationOutlined.js new file mode 100644 index 00000000000000..9857c12720b1a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppRegistrationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm6.85-.47-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06c.2-.2.2-.51 0-.71z" +}), 'AppRegistrationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppRegistrationRounded.js b/packages/material-ui-icons/lib/esm/AppRegistrationRounded.js new file mode 100644 index 00000000000000..de9b64a0f6492a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppRegistrationRounded.js @@ -0,0 +1,25 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "18", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "12", + r: "2" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "6", + r: "2" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "2" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M11 18.07v1.43c0 .28.22.5.5.5h1.4c.13 0 .26-.05.35-.15l5.83-5.83-2.12-2.12-5.81 5.81c-.1.1-.15.23-.15.36zM12.03 14 14 12.03V12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2h.03zm8.82-2.44-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06c.2-.2.2-.51 0-.71z" +}, "5")], 'AppRegistrationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppRegistrationSharp.js b/packages/material-ui-icons/lib/esm/AppRegistrationSharp.js new file mode 100644 index 00000000000000..37941dc1e9a36b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppRegistrationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm3.6713-.8243 1.4142-1.4143 2.1214 2.1214-1.4143 1.4142z" +}), 'AppRegistrationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppRegistrationTwoTone.js b/packages/material-ui-icons/lib/esm/AppRegistrationTwoTone.js new file mode 100644 index 00000000000000..a62c00c2d27189 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppRegistrationTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm6.85-.47-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06c.2-.2.2-.51 0-.71z" +}), 'AppRegistrationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppSettingsAlt.js b/packages/material-ui-icons/lib/esm/AppSettingsAlt.js new file mode 100644 index 00000000000000..b78f1e371adf38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppSettingsAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1z" +}), 'AppSettingsAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppSettingsAltOutlined.js b/packages/material-ui-icons/lib/esm/AppSettingsAltOutlined.js new file mode 100644 index 00000000000000..b6671a5c39ab60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppSettingsAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" +}), 'AppSettingsAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppSettingsAltRounded.js b/packages/material-ui-icons/lib/esm/AppSettingsAltRounded.js new file mode 100644 index 00000000000000..49ba3731afc810 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppSettingsAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zm4-6c0-.13-.02-.26-.04-.39l.64-.48c.2-.15.26-.44.13-.66l-.57-.96c-.13-.21-.39-.3-.62-.2l-.72.3c-.2-.15-.42-.29-.65-.39l-.1-.77c-.03-.25-.24-.43-.49-.44l-1.12-.02c-.26 0-.47.18-.5.44l-.1.79c-.24.1-.45.23-.65.39l-.72-.3c-.23-.1-.5-.01-.62.2l-.57.96c-.13.22-.08.5.13.66l.64.48c-.05.13-.07.26-.07.39s.02.25.04.37l-.64.49c-.2.15-.26.43-.13.65l.56.97c.13.22.39.31.63.21l.73-.31c.2.16.42.3.67.4l.1.77c.03.25.24.44.5.44h1.12c.25 0 .46-.19.5-.44l.1-.77c.24-.1.46-.24.67-.4l.73.31c.23.1.5.01.63-.21l.56-.97c.13-.22.07-.5-.13-.65l-.64-.49c-.02-.12 0-.24 0-.37zm-3 1.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'AppSettingsAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppSettingsAltSharp.js b/packages/material-ui-icons/lib/esm/AppSettingsAltSharp.js new file mode 100644 index 00000000000000..ed1f7076332e4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppSettingsAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 23V1h14v6h-2V6H7v12h10v-1h2v6H5z" +}), 'AppSettingsAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppSettingsAltTwoTone.js b/packages/material-ui-icons/lib/esm/AppSettingsAltTwoTone.js new file mode 100644 index 00000000000000..fbb2e095186cb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppSettingsAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.81 12.74-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 3h10v1H7zm0 17h10v1H7z", + opacity: ".3" +}, "1")], 'AppSettingsAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Apple.js b/packages/material-ui-icons/lib/esm/Apple.js new file mode 100644 index 00000000000000..5bc675d452add9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Apple.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z" +}), 'Apple'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Approval.js b/packages/material-ui-icons/lib/esm/Approval.js new file mode 100644 index 00000000000000..82c49bfb6a2f9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Approval.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z" +}), 'Approval'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApprovalOutlined.js b/packages/material-ui-icons/lib/esm/ApprovalOutlined.js new file mode 100644 index 00000000000000..09b0fda3a17355 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApprovalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z" +}), 'ApprovalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApprovalRounded.js b/packages/material-ui-icons/lib/esm/ApprovalRounded.js new file mode 100644 index 00000000000000..2178024e865da3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApprovalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 16v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm13 2H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zM12 2C9.54 2 7.48 3.79 7.07 6.13c-.08.52.06 1.05.36 1.47l3.76 5.26c.4.56 1.23.56 1.63 0l3.76-5.26c.3-.42.44-.95.35-1.47C16.52 3.79 14.46 2 12 2z" +}), 'ApprovalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApprovalSharp.js b/packages/material-ui-icons/lib/esm/ApprovalSharp.js new file mode 100644 index 00000000000000..86fa3785b2c10c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApprovalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 14v8h16v-8H4zm14 4H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5z" +}), 'ApprovalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ApprovalTwoTone.js b/packages/material-ui-icons/lib/esm/ApprovalTwoTone.js new file mode 100644 index 00000000000000..fff2abe3071417 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ApprovalTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 16h12v2H6zm6-12c-1.66 0-3 1.34-3 3l3 4 3-4c0-1.66-1.34-3-3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4zm6 3H6c-1.1 0-2 .9-2 2v6h16v-6c0-1.1-.9-2-2-2zm0 4H6v-2h12v2z" +}, "1")], 'ApprovalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Apps.js b/packages/material-ui-icons/lib/esm/Apps.js new file mode 100644 index 00000000000000..81508fd231a5ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Apps.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" +}), 'Apps'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppsOutlined.js b/packages/material-ui-icons/lib/esm/AppsOutlined.js new file mode 100644 index 00000000000000..3f2dc367a69a51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" +}), 'AppsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppsRounded.js b/packages/material-ui-icons/lib/esm/AppsRounded.js new file mode 100644 index 00000000000000..d5e5dab3ff8711 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" +}), 'AppsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppsSharp.js b/packages/material-ui-icons/lib/esm/AppsSharp.js new file mode 100644 index 00000000000000..01b58a4f234dad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" +}), 'AppsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AppsTwoTone.js b/packages/material-ui-icons/lib/esm/AppsTwoTone.js new file mode 100644 index 00000000000000..3fb6a60a691147 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AppsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" +}), 'AppsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Architecture.js b/packages/material-ui-icons/lib/esm/Architecture.js new file mode 100644 index 00000000000000..4ac40d4522cea6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Architecture.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'Architecture'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchitectureOutlined.js b/packages/material-ui-icons/lib/esm/ArchitectureOutlined.js new file mode 100644 index 00000000000000..5311bed1766fa2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchitectureOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'ArchitectureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchitectureRounded.js b/packages/material-ui-icons/lib/esm/ArchitectureRounded.js new file mode 100644 index 00000000000000..8e5e5a57a3d903 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchitectureRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zm.17-2.28c.3-1.56-.6-2.94-1.94-3.42V4c0-.55-.45-1-1-1s-1 .45-1 1v1.18C9.84 5.6 9 6.7 9 8c0 1.84 1.66 3.3 3.56 2.95 1.18-.22 2.15-1.17 2.38-2.35zM12 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'ArchitectureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchitectureSharp.js b/packages/material-ui-icons/lib/esm/ArchitectureSharp.js new file mode 100644 index 00000000000000..398ab5548daa4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchitectureSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'ArchitectureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchitectureTwoTone.js b/packages/material-ui-icons/lib/esm/ArchitectureTwoTone.js new file mode 100644 index 00000000000000..64784dc2c97b00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchitectureTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.36 18.78 6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'ArchitectureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Archive.js b/packages/material-ui-icons/lib/esm/Archive.js new file mode 100644 index 00000000000000..eb003dbd9db295 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Archive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM12 17.5 6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z" +}), 'Archive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchiveOutlined.js b/packages/material-ui-icons/lib/esm/ArchiveOutlined.js new file mode 100644 index 00000000000000..f9c1d1ba43d9cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchiveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM5 19V8h14v11H5zm8.45-9h-2.9v3H8l4 4 4-4h-2.55z" +}), 'ArchiveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchiveRounded.js b/packages/material-ui-icons/lib/esm/ArchiveRounded.js new file mode 100644 index 00000000000000..b023b9940c7b0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchiveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zm-8.89 11.92L6.5 12H10v-2h4v2h3.5l-5.15 5.15c-.19.19-.51.19-.7 0zM5.12 5l.81-1h12l.94 1H5.12z" +}), 'ArchiveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchiveSharp.js b/packages/material-ui-icons/lib/esm/ArchiveSharp.js new file mode 100644 index 00000000000000..731d4dc67e7c39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchiveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM12 17.5 6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z" +}), 'ArchiveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArchiveTwoTone.js b/packages/material-ui-icons/lib/esm/ArchiveTwoTone.js new file mode 100644 index 00000000000000..24a1fb92c89893 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArchiveTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V8H5v11zm5.55-6v-3h2.91v3H16l-4 4-4-4h2.55z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 13h-2.55v-3h-2.9v3H8l4 4zm4.54-7.77-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM19 19H5V8h14v11z" +}, "1")], 'ArchiveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBack.js b/packages/material-ui-icons/lib/esm/ArrowBack.js new file mode 100644 index 00000000000000..7212b30b8bb523 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" +}), 'ArrowBack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIos.js b/packages/material-ui-icons/lib/esm/ArrowBackIos.js new file mode 100644 index 00000000000000..9444f61307c02e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIos.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.67 3.87 9.9 2.1 0 12l9.9 9.9 1.77-1.77L3.54 12z" +}), 'ArrowBackIos'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosNew.js b/packages/material-ui-icons/lib/esm/ArrowBackIosNew.js new file mode 100644 index 00000000000000..a64c649160b817 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosNew.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" +}), 'ArrowBackIosNew'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosNewOutlined.js b/packages/material-ui-icons/lib/esm/ArrowBackIosNewOutlined.js new file mode 100644 index 00000000000000..0622546ecc8716 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosNewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" +}), 'ArrowBackIosNewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosNewRounded.js b/packages/material-ui-icons/lib/esm/ArrowBackIosNewRounded.js new file mode 100644 index 00000000000000..eadb7d4e4a9f0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosNewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.88 2.88c-.49-.49-1.28-.49-1.77 0L6.7 11.29c-.39.39-.39 1.02 0 1.41l8.41 8.41c.49.49 1.28.49 1.77 0s.49-1.28 0-1.77L9.54 12l7.35-7.35c.48-.49.48-1.28-.01-1.77z" +}), 'ArrowBackIosNewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosNewSharp.js b/packages/material-ui-icons/lib/esm/ArrowBackIosNewSharp.js new file mode 100644 index 00000000000000..0c9360e3f8f9e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosNewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" +}), 'ArrowBackIosNewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosNewTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowBackIosNewTwoTone.js new file mode 100644 index 00000000000000..f3f90e7918ee33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosNewTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.77 3.77 16 2 6 12l10 10 1.77-1.77L9.54 12z" +}), 'ArrowBackIosNewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosOutlined.js b/packages/material-ui-icons/lib/esm/ArrowBackIosOutlined.js new file mode 100644 index 00000000000000..a514027ff9fd6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.51 3.87 15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" +}), 'ArrowBackIosOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosRounded.js b/packages/material-ui-icons/lib/esm/ArrowBackIosRounded.js new file mode 100644 index 00000000000000..101e71bdfff974 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.62 2.99c-.49-.49-1.28-.49-1.77 0L6.54 11.3c-.39.39-.39 1.02 0 1.41l8.31 8.31c.49.49 1.28.49 1.77 0s.49-1.28 0-1.77L9.38 12l7.25-7.25c.48-.48.48-1.28-.01-1.76z" +}), 'ArrowBackIosRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosSharp.js b/packages/material-ui-icons/lib/esm/ArrowBackIosSharp.js new file mode 100644 index 00000000000000..75acd366386023 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.51 3.87 15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" +}), 'ArrowBackIosSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackIosTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowBackIosTwoTone.js new file mode 100644 index 00000000000000..8826effbb25f3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackIosTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.51 3.87 15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z" +}), 'ArrowBackIosTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackOutlined.js b/packages/material-ui-icons/lib/esm/ArrowBackOutlined.js new file mode 100644 index 00000000000000..7c2ab4854a970d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" +}), 'ArrowBackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackRounded.js b/packages/material-ui-icons/lib/esm/ArrowBackRounded.js new file mode 100644 index 00000000000000..8927666bfa0ce0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11H7.83l4.88-4.88c.39-.39.39-1.03 0-1.42a.9959.9959 0 0 0-1.41 0l-6.59 6.59c-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L7.83 13H19c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'ArrowBackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackSharp.js b/packages/material-ui-icons/lib/esm/ArrowBackSharp.js new file mode 100644 index 00000000000000..d2f696b5080b25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" +}), 'ArrowBackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowBackTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowBackTwoTone.js new file mode 100644 index 00000000000000..f02d9f0f1e5b6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowBackTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z" +}), 'ArrowBackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleDown.js b/packages/material-ui-icons/lib/esm/ArrowCircleDown.js new file mode 100644 index 00000000000000..c1e4a5a4a16c41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" +}), 'ArrowCircleDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleDownOutlined.js b/packages/material-ui-icons/lib/esm/ArrowCircleDownOutlined.js new file mode 100644 index 00000000000000..d7420cd48ea32f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" +}), 'ArrowCircleDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleDownRounded.js b/packages/material-ui-icons/lib/esm/ArrowCircleDownRounded.js new file mode 100644 index 00000000000000..576c487ffe919d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V9c0-.55-.45-1-1-1s-1 .45-1 1v3H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.35-.85H13z" +}), 'ArrowCircleDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleDownSharp.js b/packages/material-ui-icons/lib/esm/ArrowCircleDownSharp.js new file mode 100644 index 00000000000000..d8cf46ee0ea21f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" +}), 'ArrowCircleDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleDownTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowCircleDownTwoTone.js new file mode 100644 index 00000000000000..16d2b1bc6428b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleDownTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12-4-4h3V8h2v4h3l-4 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" +}, "1")], 'ArrowCircleDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleUp.js b/packages/material-ui-icons/lib/esm/ArrowCircleUp.js new file mode 100644 index 00000000000000..a6b2bdbc70601f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleUp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" +}), 'ArrowCircleUp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleUpOutlined.js b/packages/material-ui-icons/lib/esm/ArrowCircleUpOutlined.js new file mode 100644 index 00000000000000..edfd526becc1ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleUpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" +}), 'ArrowCircleUpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleUpRounded.js b/packages/material-ui-icons/lib/esm/ArrowCircleUpRounded.js new file mode 100644 index 00000000000000..f8ef8669fd3c74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleUpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v3c0 .55.45 1 1 1s1-.45 1-1v-3h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85H11z" +}), 'ArrowCircleUpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleUpSharp.js b/packages/material-ui-icons/lib/esm/ArrowCircleUpSharp.js new file mode 100644 index 00000000000000..2a574756301490 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleUpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" +}), 'ArrowCircleUpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowCircleUpTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowCircleUpTwoTone.js new file mode 100644 index 00000000000000..51f8fbd260c74a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowCircleUpTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m-1-8v4h2v-4h3l-4-4-4 4h3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" +}, "1")], 'ArrowCircleUpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDownward.js b/packages/material-ui-icons/lib/esm/ArrowDownward.js new file mode 100644 index 00000000000000..1e751d2e959f9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDownward.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" +}), 'ArrowDownward'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDownwardOutlined.js b/packages/material-ui-icons/lib/esm/ArrowDownwardOutlined.js new file mode 100644 index 00000000000000..6afa5c96279571 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDownwardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" +}), 'ArrowDownwardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDownwardRounded.js b/packages/material-ui-icons/lib/esm/ArrowDownwardRounded.js new file mode 100644 index 00000000000000..7f0039a1001a0f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDownwardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5v11.17l-4.88-4.88c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L13 16.17V5c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'ArrowDownwardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDownwardSharp.js b/packages/material-ui-icons/lib/esm/ArrowDownwardSharp.js new file mode 100644 index 00000000000000..fe988e2cc888b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDownwardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" +}), 'ArrowDownwardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDownwardTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowDownwardTwoTone.js new file mode 100644 index 00000000000000..86f03125c04570 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDownwardTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 12-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" +}), 'ArrowDownwardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDown.js b/packages/material-ui-icons/lib/esm/ArrowDropDown.js new file mode 100644 index 00000000000000..2b82fb4386d6fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 10 5 5 5-5z" +}), 'ArrowDropDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownCircle.js b/packages/material-ui-icons/lib/esm/ArrowDropDownCircle.js new file mode 100644 index 00000000000000..e4aec9dd6e3c5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 12-4-4h8l-4 4z" +}), 'ArrowDropDownCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownCircleOutlined.js b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleOutlined.js new file mode 100644 index 00000000000000..5c7e378237839d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13-4-4h8z" +}), 'ArrowDropDownCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownCircleRounded.js b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleRounded.js new file mode 100644 index 00000000000000..160bed56bb7f3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-.35 12.65-2.79-2.79c-.32-.32-.1-.86.35-.86h5.59c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.52.2-.71.01z" +}), 'ArrowDropDownCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownCircleSharp.js b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleSharp.js new file mode 100644 index 00000000000000..5a3462119afb77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13-4-4h8l-4 4z" +}), 'ArrowDropDownCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownCircleTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleTwoTone.js new file mode 100644 index 00000000000000..bb60bd6c0eb6aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 11-4-4h8l-4 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-5 4-4H8z" +}, "1")], 'ArrowDropDownCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownOutlined.js b/packages/material-ui-icons/lib/esm/ArrowDropDownOutlined.js new file mode 100644 index 00000000000000..20563811f689ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 10 5 5 5-5H7z" +}), 'ArrowDropDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownRounded.js b/packages/material-ui-icons/lib/esm/ArrowDropDownRounded.js new file mode 100644 index 00000000000000..393ea687c58a09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.71 11.71 2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z" +}), 'ArrowDropDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownSharp.js b/packages/material-ui-icons/lib/esm/ArrowDropDownSharp.js new file mode 100644 index 00000000000000..1e73e04807a78c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 10 5 5 5-5H7z" +}), 'ArrowDropDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropDownTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowDropDownTwoTone.js new file mode 100644 index 00000000000000..6ab75ffc689785 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropDownTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 10 5 5 5-5H7z" +}), 'ArrowDropDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropUp.js b/packages/material-ui-icons/lib/esm/ArrowDropUp.js new file mode 100644 index 00000000000000..5e838cf065465b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropUp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 14 5-5 5 5z" +}), 'ArrowDropUp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropUpOutlined.js b/packages/material-ui-icons/lib/esm/ArrowDropUpOutlined.js new file mode 100644 index 00000000000000..97ad9681254b64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropUpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 14 5-5 5 5H7z" +}), 'ArrowDropUpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropUpRounded.js b/packages/material-ui-icons/lib/esm/ArrowDropUpRounded.js new file mode 100644 index 00000000000000..45a20b356853e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropUpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.71 12.29 11.3 9.7c.39-.39 1.02-.39 1.41 0l2.59 2.59c.63.63.18 1.71-.71 1.71H9.41c-.89 0-1.33-1.08-.7-1.71z" +}), 'ArrowDropUpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropUpSharp.js b/packages/material-ui-icons/lib/esm/ArrowDropUpSharp.js new file mode 100644 index 00000000000000..52bcac98045933 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropUpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 14 5-5 5 5H7z" +}), 'ArrowDropUpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowDropUpTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowDropUpTwoTone.js new file mode 100644 index 00000000000000..0c7d8418fd6f00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowDropUpTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 14 5-5 5 5H7z" +}), 'ArrowDropUpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForward.js b/packages/material-ui-icons/lib/esm/ArrowForward.js new file mode 100644 index 00000000000000..6133f627a43c82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForward.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z" +}), 'ArrowForward'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardIos.js b/packages/material-ui-icons/lib/esm/ArrowForwardIos.js new file mode 100644 index 00000000000000..ba57555259639d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardIos.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" +}), 'ArrowForwardIos'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardIosOutlined.js b/packages/material-ui-icons/lib/esm/ArrowForwardIosOutlined.js new file mode 100644 index 00000000000000..00eae2e1fdd7c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardIosOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" +}), 'ArrowForwardIosOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardIosRounded.js b/packages/material-ui-icons/lib/esm/ArrowForwardIosRounded.js new file mode 100644 index 00000000000000..45f5fc1f567217 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardIosRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.38 21.01c.49.49 1.28.49 1.77 0l8.31-8.31c.39-.39.39-1.02 0-1.41L9.15 2.98c-.49-.49-1.28-.49-1.77 0s-.49 1.28 0 1.77L14.62 12l-7.25 7.25c-.48.48-.48 1.28.01 1.76z" +}), 'ArrowForwardIosRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardIosSharp.js b/packages/material-ui-icons/lib/esm/ArrowForwardIosSharp.js new file mode 100644 index 00000000000000..5e37989672fab8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardIosSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" +}), 'ArrowForwardIosSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardIosTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowForwardIosTwoTone.js new file mode 100644 index 00000000000000..2716d9396f1181 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardIosTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.23 20.23 8 22l10-10L8 2 6.23 3.77 14.46 12z" +}), 'ArrowForwardIosTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardOutlined.js b/packages/material-ui-icons/lib/esm/ArrowForwardOutlined.js new file mode 100644 index 00000000000000..24f97c48682ac9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" +}), 'ArrowForwardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardRounded.js b/packages/material-ui-icons/lib/esm/ArrowForwardRounded.js new file mode 100644 index 00000000000000..3ef35c37954e0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42.39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'ArrowForwardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardSharp.js b/packages/material-ui-icons/lib/esm/ArrowForwardSharp.js new file mode 100644 index 00000000000000..bcee908ea2af7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" +}), 'ArrowForwardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowForwardTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowForwardTwoTone.js new file mode 100644 index 00000000000000..43449859bab52a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowForwardTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 4-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z" +}), 'ArrowForwardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowLeft.js b/packages/material-ui-icons/lib/esm/ArrowLeft.js new file mode 100644 index 00000000000000..4bd8b9f11c540f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 7-5 5 5 5V7z" +}), 'ArrowLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowLeftOutlined.js b/packages/material-ui-icons/lib/esm/ArrowLeftOutlined.js new file mode 100644 index 00000000000000..108fbab106a88e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 7-5 5 5 5V7z" +}), 'ArrowLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowLeftRounded.js b/packages/material-ui-icons/lib/esm/ArrowLeftRounded.js new file mode 100644 index 00000000000000..b13391b1ff6bf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.29 8.71 9.7 11.3c-.39.39-.39 1.02 0 1.41l2.59 2.59c.63.63 1.71.18 1.71-.71V9.41c0-.89-1.08-1.33-1.71-.7z" +}), 'ArrowLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowLeftSharp.js b/packages/material-ui-icons/lib/esm/ArrowLeftSharp.js new file mode 100644 index 00000000000000..a99803561c486a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 7-5 5 5 5V7z" +}), 'ArrowLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowLeftTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowLeftTwoTone.js new file mode 100644 index 00000000000000..26bf75ec6c1e79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 7-5 5 5 5V7z" +}), 'ArrowLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRight.js b/packages/material-ui-icons/lib/esm/ArrowRight.js new file mode 100644 index 00000000000000..25a02cd2b00b21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 17 5-5-5-5v10z" +}), 'ArrowRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightAlt.js b/packages/material-ui-icons/lib/esm/ArrowRightAlt.js new file mode 100644 index 00000000000000..814319728fd130 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4z" +}), 'ArrowRightAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightAltOutlined.js b/packages/material-ui-icons/lib/esm/ArrowRightAltOutlined.js new file mode 100644 index 00000000000000..2343a4be4bd0e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" +}), 'ArrowRightAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightAltRounded.js b/packages/material-ui-icons/lib/esm/ArrowRightAltRounded.js new file mode 100644 index 00000000000000..1f0c699aea09db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.01 11H5c-.55 0-1 .45-1 1s.45 1 1 1h11.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35V11z" +}), 'ArrowRightAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightAltSharp.js b/packages/material-ui-icons/lib/esm/ArrowRightAltSharp.js new file mode 100644 index 00000000000000..de41b2618823fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" +}), 'ArrowRightAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightAltTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowRightAltTwoTone.js new file mode 100644 index 00000000000000..aaa357e5c55cff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" +}), 'ArrowRightAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightOutlined.js b/packages/material-ui-icons/lib/esm/ArrowRightOutlined.js new file mode 100644 index 00000000000000..c5263ecc35268d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 17 5-5-5-5v10z" +}), 'ArrowRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightRounded.js b/packages/material-ui-icons/lib/esm/ArrowRightRounded.js new file mode 100644 index 00000000000000..1b43611e2237ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.71 15.29 2.59-2.59c.39-.39.39-1.02 0-1.41L11.71 8.7c-.63-.62-1.71-.18-1.71.71v5.17c0 .9 1.08 1.34 1.71.71z" +}), 'ArrowRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightSharp.js b/packages/material-ui-icons/lib/esm/ArrowRightSharp.js new file mode 100644 index 00000000000000..a1ccc62018bc02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 17 5-5-5-5v10z" +}), 'ArrowRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowRightTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowRightTwoTone.js new file mode 100644 index 00000000000000..72de1f03846b49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 17 5-5-5-5v10z" +}), 'ArrowRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowUpward.js b/packages/material-ui-icons/lib/esm/ArrowUpward.js new file mode 100644 index 00000000000000..df036adc08b1e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowUpward.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" +}), 'ArrowUpward'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowUpwardOutlined.js b/packages/material-ui-icons/lib/esm/ArrowUpwardOutlined.js new file mode 100644 index 00000000000000..8a884183f1009f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowUpwardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" +}), 'ArrowUpwardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowUpwardRounded.js b/packages/material-ui-icons/lib/esm/ArrowUpwardRounded.js new file mode 100644 index 00000000000000..55648746507523 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowUpwardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 19V7.83l4.88 4.88c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41l-6.59-6.59a.9959.9959 0 0 0-1.41 0l-6.6 6.58c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 7.83V19c0 .55.45 1 1 1s1-.45 1-1z" +}), 'ArrowUpwardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowUpwardSharp.js b/packages/material-ui-icons/lib/esm/ArrowUpwardSharp.js new file mode 100644 index 00000000000000..990c9b4e30f399 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowUpwardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" +}), 'ArrowUpwardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArrowUpwardTwoTone.js b/packages/material-ui-icons/lib/esm/ArrowUpwardTwoTone.js new file mode 100644 index 00000000000000..cd43d1c4922119 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArrowUpwardTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4 12 1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" +}), 'ArrowUpwardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArtTrack.js b/packages/material-ui-icons/lib/esm/ArtTrack.js new file mode 100644 index 00000000000000..a960af47f48255 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArtTrack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" +}), 'ArtTrack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArtTrackOutlined.js b/packages/material-ui-icons/lib/esm/ArtTrackOutlined.js new file mode 100644 index 00000000000000..31040d0429574c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArtTrackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" +}), 'ArtTrackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArtTrackRounded.js b/packages/material-ui-icons/lib/esm/ArtTrackRounded.js new file mode 100644 index 00000000000000..f49b6db7b0d6f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArtTrackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 13h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-6h-6c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm-6 10h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zm-3-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-2.1 5.2-1.26-1.68c-.2-.26-.59-.27-.8-.01L6.5 14.26l-.85-1.03c-.2-.25-.58-.24-.78.01l-.74.95c-.26.33-.02.81.39.81H9.5c.41 0 .65-.47.4-.8z" +}), 'ArtTrackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArtTrackSharp.js b/packages/material-ui-icons/lib/esm/ArtTrackSharp.js new file mode 100644 index 00000000000000..95f8ddac819a3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArtTrackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zM12 7v10H2V7h10zm-1.5 8-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" +}), 'ArtTrackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArtTrackTwoTone.js b/packages/material-ui-icons/lib/esm/ArtTrackTwoTone.js new file mode 100644 index 00000000000000..03f3011bbfeecd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArtTrackTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 7h8v2h-8zm0 4h8v2h-8zm0 4h8v2h-8zM4 17h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm1.25-4.25 1.25 1.51L8.25 12l2.25 3h-7l1.75-2.25z" +}), 'ArtTrackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Article.js b/packages/material-ui-icons/lib/esm/Article.js new file mode 100644 index 00000000000000..db2698b60c894a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Article.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" +}), 'Article'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArticleOutlined.js b/packages/material-ui-icons/lib/esm/ArticleOutlined.js new file mode 100644 index 00000000000000..ae52cf316b6061 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArticleOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 17H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" +}, "1")], 'ArticleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArticleRounded.js b/packages/material-ui-icons/lib/esm/ArticleRounded.js new file mode 100644 index 00000000000000..e88d3ac0924872 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArticleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 14H8c-.55 0-1-.45-1-1s.45-1 1-1h5c.55 0 1 .45 1 1s-.45 1-1 1zm3-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'ArticleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArticleSharp.js b/packages/material-ui-icons/lib/esm/ArticleSharp.js new file mode 100644 index 00000000000000..0a7769f50a3794 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArticleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm11 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" +}), 'ArticleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ArticleTwoTone.js b/packages/material-ui-icons/lib/esm/ArticleTwoTone.js new file mode 100644 index 00000000000000..f1ab261fd15f86 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ArticleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm9 12H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-2-6H7v-2h10v2zm0-4H7V7h10v2zm-3 8H7v-2h7v2z" +}, "1")], 'ArticleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AspectRatio.js b/packages/material-ui-icons/lib/esm/AspectRatio.js new file mode 100644 index 00000000000000..291cc2f495318c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AspectRatio.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}), 'AspectRatio'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AspectRatioOutlined.js b/packages/material-ui-icons/lib/esm/AspectRatioOutlined.js new file mode 100644 index 00000000000000..bfdc741d1d86e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AspectRatioOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}), 'AspectRatioOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AspectRatioRounded.js b/packages/material-ui-icons/lib/esm/AspectRatioRounded.js new file mode 100644 index 00000000000000..6c6ef0ed1a889b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AspectRatioRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 12c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zM7 9h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.02c0 .55-.45 1-1 1z" +}), 'AspectRatioRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AspectRatioSharp.js b/packages/material-ui-icons/lib/esm/AspectRatioSharp.js new file mode 100644 index 00000000000000..cad198a7e0e74a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AspectRatioSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm16-6H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" +}), 'AspectRatioSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AspectRatioTwoTone.js b/packages/material-ui-icons/lib/esm/AspectRatioTwoTone.js new file mode 100644 index 00000000000000..20b3ce63a5db53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AspectRatioTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19.01h18V4.99H3v14.02zM14 15h3v-3h2v5h-5v-2zM5 7h5v2H7v3H5V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM7 9h3V7H5v5h2zm12 3h-2v3h-3v2h5z" +}, "1")], 'AspectRatioTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Assessment.js b/packages/material-ui-icons/lib/esm/Assessment.js new file mode 100644 index 00000000000000..ac62333e00cfe8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Assessment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" +}), 'Assessment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssessmentOutlined.js b/packages/material-ui-icons/lib/esm/AssessmentOutlined.js new file mode 100644 index 00000000000000..65f9ae97c0bc18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssessmentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" +}), 'AssessmentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssessmentRounded.js b/packages/material-ui-icons/lib/esm/AssessmentRounded.js new file mode 100644 index 00000000000000..9740b35618a469 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssessmentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'AssessmentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssessmentSharp.js b/packages/material-ui-icons/lib/esm/AssessmentSharp.js new file mode 100644 index 00000000000000..6e19dd6e2ca14c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssessmentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" +}), 'AssessmentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssessmentTwoTone.js b/packages/material-ui-icons/lib/esm/AssessmentTwoTone.js new file mode 100644 index 00000000000000..2232745c414d4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssessmentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm4 12H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" +}, "1")], 'AssessmentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Assignment.js b/packages/material-ui-icons/lib/esm/Assignment.js new file mode 100644 index 00000000000000..bf1ffb1dffb584 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Assignment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" +}), 'Assignment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentInd.js b/packages/material-ui-icons/lib/esm/AssignmentInd.js new file mode 100644 index 00000000000000..51ac9e5682407d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentInd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" +}), 'AssignmentInd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentIndOutlined.js b/packages/material-ui-icons/lib/esm/AssignmentIndOutlined.js new file mode 100644 index 00000000000000..7316119bf6136c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentIndOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zM12 6c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6 6.47V18h12v-1.53c0-2.5-3.97-3.58-6-3.58s-6 1.07-6 3.58zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" +}), 'AssignmentIndOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentIndRounded.js b/packages/material-ui-icons/lib/esm/AssignmentIndRounded.js new file mode 100644 index 00000000000000..59511e025fc880 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentIndRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" +}), 'AssignmentIndRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentIndSharp.js b/packages/material-ui-icons/lib/esm/AssignmentIndSharp.js new file mode 100644 index 00000000000000..92b4a61f7e60ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentIndSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" +}), 'AssignmentIndSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentIndTwoTone.js b/packages/material-ui-icons/lib/esm/AssignmentIndTwoTone.js new file mode 100644 index 00000000000000..c40406919f4386 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentIndTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v14h14V5zm-7 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.66 3.88c-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.41-.13-.8-.34-1.12zM12 2.75c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 2.88c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z" +}, "1")], 'AssignmentIndTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentLate.js b/packages/material-ui-icons/lib/esm/AssignmentLate.js new file mode 100644 index 00000000000000..20be3067584014 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentLate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'AssignmentLate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentLateOutlined.js b/packages/material-ui-icons/lib/esm/AssignmentLateOutlined.js new file mode 100644 index 00000000000000..8f010b17b96059 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentLateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}), 'AssignmentLateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentLateRounded.js b/packages/material-ui-icons/lib/esm/AssignmentLateRounded.js new file mode 100644 index 00000000000000..bb374d0e4f1cda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentLateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM12 13c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}), 'AssignmentLateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentLateSharp.js b/packages/material-ui-icons/lib/esm/AssignmentLateSharp.js new file mode 100644 index 00000000000000..bd3253d68f7f08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentLateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-8 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'AssignmentLateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentLateTwoTone.js b/packages/material-ui-icons/lib/esm/AssignmentLateTwoTone.js new file mode 100644 index 00000000000000..e9d7b7c5c61dca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentLateTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm8 12h-2v-2h2v2zm0-4h-2V7h2v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "1")], 'AssignmentLateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentOutlined.js b/packages/material-ui-icons/lib/esm/AssignmentOutlined.js new file mode 100644 index 00000000000000..b2d99726d972e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}), 'AssignmentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturn.js b/packages/material-ui-icons/lib/esm/AssignmentReturn.js new file mode 100644 index 00000000000000..d9b342f5f43306 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z" +}), 'AssignmentReturn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnOutlined.js b/packages/material-ui-icons/lib/esm/AssignmentReturnOutlined.js new file mode 100644 index 00000000000000..bdbb564df34731 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 14h4v-4h-4V7l-5 5 5 5zm7-11h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}), 'AssignmentReturnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnRounded.js b/packages/material-ui-icons/lib/esm/AssignmentReturnRounded.js new file mode 100644 index 00000000000000..10166583d09be1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-4.65-4.65c-.2-.2-.2-.51 0-.71L12 8v3h4v4z" +}), 'AssignmentReturnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnSharp.js b/packages/material-ui-icons/lib/esm/AssignmentReturnSharp.js new file mode 100644 index 00000000000000..c39abcc8b5763f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z" +}), 'AssignmentReturnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnTwoTone.js b/packages/material-ui-icons/lib/esm/AssignmentReturnTwoTone.js new file mode 100644 index 00000000000000..72e60820dab7b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm11 9h-4v3l-5-5 5-5v3h4v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 7-5 5 5 5v-3h4v-4h-4zm7-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "1")], 'AssignmentReturnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturned.js b/packages/material-ui-icons/lib/esm/AssignmentReturned.js new file mode 100644 index 00000000000000..97c6e3a4c8c15c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturned.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15-5-5h3V9h4v4h3l-5 5z" +}), 'AssignmentReturned'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnedOutlined.js b/packages/material-ui-icons/lib/esm/AssignmentReturnedOutlined.js new file mode 100644 index 00000000000000..e6f0fa073034d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}), 'AssignmentReturnedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnedRounded.js b/packages/material-ui-icons/lib/esm/AssignmentReturnedRounded.js new file mode 100644 index 00000000000000..e460a8f769e3c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-.35 14.65L7 13h3V9h4v4h3l-4.65 4.65c-.19.19-.51.19-.7 0z" +}), 'AssignmentReturnedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnedSharp.js b/packages/material-ui-icons/lib/esm/AssignmentReturnedSharp.js new file mode 100644 index 00000000000000..3806e40adca80a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15-5-5h3V9h4v4h3l-5 5z" +}), 'AssignmentReturnedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentReturnedTwoTone.js b/packages/material-ui-icons/lib/esm/AssignmentReturnedTwoTone.js new file mode 100644 index 00000000000000..01c1183174f7c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentReturnedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm5-7V8h4v4h3l-5 5-5-5h3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "1")], 'AssignmentReturnedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentRounded.js b/packages/material-ui-icons/lib/esm/AssignmentRounded.js new file mode 100644 index 00000000000000..54c10489d5822e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm1 14H8c-.55 0-1-.45-1-1s.45-1 1-1h5c.55 0 1 .45 1 1s-.45 1-1 1zm3-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'AssignmentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentSharp.js b/packages/material-ui-icons/lib/esm/AssignmentSharp.js new file mode 100644 index 00000000000000..36008f0e3fd3de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" +}), 'AssignmentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentTurnedIn.js b/packages/material-ui-icons/lib/esm/AssignmentTurnedIn.js new file mode 100644 index 00000000000000..e92aed9f85348b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentTurnedIn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" +}), 'AssignmentTurnedIn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentTurnedInOutlined.js b/packages/material-ui-icons/lib/esm/AssignmentTurnedInOutlined.js new file mode 100644 index 00000000000000..3dd21270f8b426 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentTurnedInOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 9-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}), 'AssignmentTurnedInOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentTurnedInRounded.js b/packages/material-ui-icons/lib/esm/AssignmentTurnedInRounded.js new file mode 100644 index 00000000000000..a8152a57346b2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentTurnedInRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.29 16.29 6.7 13.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l5.88-5.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-6.59 6.59c-.38.39-1.02.39-1.41 0z" +}), 'AssignmentTurnedInRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentTurnedInSharp.js b/packages/material-ui-icons/lib/esm/AssignmentTurnedInSharp.js new file mode 100644 index 00000000000000..d0d4b9af51d6da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentTurnedInSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" +}), 'AssignmentTurnedInSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentTurnedInTwoTone.js b/packages/material-ui-icons/lib/esm/AssignmentTurnedInTwoTone.js new file mode 100644 index 00000000000000..e8a27906920b43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentTurnedInTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm2.41-7.41L10 14.17l6.59-6.59L18 9l-8 8-4-4 1.41-1.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18 9-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "1")], 'AssignmentTurnedInTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssignmentTwoTone.js b/packages/material-ui-icons/lib/esm/AssignmentTwoTone.js new file mode 100644 index 00000000000000..4eae1b848d164e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssignmentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm9 12H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "1")], 'AssignmentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Assistant.js b/packages/material-ui-icons/lib/esm/Assistant.js new file mode 100644 index 00000000000000..c8d2f28257ecca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Assistant.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" +}), 'Assistant'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantDirection.js b/packages/material-ui-icons/lib/esm/AssistantDirection.js new file mode 100644 index 00000000000000..8dccf7ae1b5c32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantDirection.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 10H9c-.6 0-1 .4-1 1v4h2v-3h4v2.5l3.5-3.5L14 7.5V10zm-2-9C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm7.73 11.58-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16z" +}), 'AssistantDirection'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantDirectionOutlined.js b/packages/material-ui-icons/lib/esm/AssistantDirectionOutlined.js new file mode 100644 index 00000000000000..64abfebf66c3ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantDirectionOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-4.99 0-9-4.01-9-9s4.01-9 9-9 9 4.01 9 9-4.01 9-9 9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.73 11.42 12.54 4.2c-.36-.27-.8-.27-1.15 0L4.2 11.42c-.27.36-.27.8 0 1.16l7.19 7.22c.36.27.8.27 1.15 0l7.19-7.22c.36-.36.36-.89 0-1.16zM13.5 14.5l-1.41-1.41L13.17 12H10v3H8v-4c0-.6.4-1 1-1h4.17l-1.09-1.09L13.5 7.5 17 11l-3.5 3.5z" +}, "1")], 'AssistantDirectionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantDirectionRounded.js b/packages/material-ui-icons/lib/esm/AssistantDirectionRounded.js new file mode 100644 index 00000000000000..342b785c92593c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantDirectionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 10H9c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-2h3.5v1.29c0 .45.54.67.85.35l2.29-2.29c.2-.2.2-.51 0-.71l-2.29-2.29c-.31-.31-.85-.09-.85.35V10zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm7.73 11.58-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16z" +}), 'AssistantDirectionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantDirectionSharp.js b/packages/material-ui-icons/lib/esm/AssistantDirectionSharp.js new file mode 100644 index 00000000000000..a32185d1405df6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantDirectionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 10H8v5h2v-3h3.5v2.5L17 11l-3.5-3.5V10zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm8.31 11-8.34 8.37L3.62 12l8.34-8.37L20.31 12z" +}), 'AssistantDirectionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantDirectionTwoTone.js b/packages/material-ui-icons/lib/esm/AssistantDirectionTwoTone.js new file mode 100644 index 00000000000000..5fe43cb225287b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantDirectionTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3c-4.99 0-9 4.01-9 9s4.01 9 9 9 9-4.01 9-9-4.01-9-9-9zm.54 16.8c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16l-7.19 7.22z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm0 20c-4.99 0-9-4.01-9-9s4.01-9 9-9 9 4.01 9 9-4.01 9-9 9z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19.73 11.42 12.54 4.2c-.36-.27-.8-.27-1.15 0L4.2 11.42c-.27.36-.27.8 0 1.16l7.19 7.22c.36.27.8.27 1.15 0l7.19-7.22c.36-.36.36-.89 0-1.16zM13.5 14.5V12H10v3H8v-4c0-.6.4-1 1-1h4.5V7.5L17 11l-3.5 3.5z" +}, "2")], 'AssistantDirectionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantOutlined.js b/packages/material-ui-icons/lib/esm/AssistantOutlined.js new file mode 100644 index 00000000000000..04384bbdc7b30b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-1 1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z" +}), 'AssistantOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantPhoto.js b/packages/material-ui-icons/lib/esm/AssistantPhoto.js new file mode 100644 index 00000000000000..fd437c82cdbb5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantPhoto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6z" +}), 'AssistantPhoto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantPhotoOutlined.js b/packages/material-ui-icons/lib/esm/AssistantPhotoOutlined.js new file mode 100644 index 00000000000000..788c247379b115 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantPhotoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.36 6 .08.39.32 1.61H18v6h-3.36l-.08-.39-.32-1.61H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z" +}), 'AssistantPhotoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantPhotoRounded.js b/packages/material-ui-icons/lib/esm/AssistantPhotoRounded.js new file mode 100644 index 00000000000000..bd68a2487b60d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantPhotoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.4 6-.24-1.2c-.09-.46-.5-.8-.98-.8H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5.6l.24 1.2c.09.47.5.8.98.8H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-4.6z" +}), 'AssistantPhotoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantPhotoSharp.js b/packages/material-ui-icons/lib/esm/AssistantPhotoSharp.js new file mode 100644 index 00000000000000..fecf3e9ddef798 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantPhotoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z" +}), 'AssistantPhotoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantPhotoTwoTone.js b/packages/material-ui-icons/lib/esm/AssistantPhotoTwoTone.js new file mode 100644 index 00000000000000..c14f71bf89e2f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantPhotoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m14.24 12 .4 2H18V8h-5.24l-.4-2H7v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 14h5.6l.4 2h7V6h-5.6L14 4H5v17h2v-7zm0-8h5.36l.4 2H18v6h-3.36l-.4-2H7V6z" +}, "1")], 'AssistantPhotoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantRounded.js b/packages/material-ui-icons/lib/esm/AssistantRounded.js new file mode 100644 index 00000000000000..b82892f7b04d95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" +}), 'AssistantRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantSharp.js b/packages/material-ui-icons/lib/esm/AssistantSharp.js new file mode 100644 index 00000000000000..83153ea4dd986f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3v18h6l3 3 3-3h6V2zm-7.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" +}), 'AssistantSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AssistantTwoTone.js b/packages/material-ui-icons/lib/esm/AssistantTwoTone.js new file mode 100644 index 00000000000000..ddabdd0b92759e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AssistantTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m9.83 18 .59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zm.29-8.88L12 5l1.88 4.12L18 11l-4.12 1.88L12 17l-1.88-4.12L6 11l4.12-1.88z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 20h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 13 1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z" +}, "1")], 'AssistantTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Atm.js b/packages/material-ui-icons/lib/esm/Atm.js new file mode 100644 index 00000000000000..1fd37461f79fdc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Atm.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z" +}), 'Atm'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AtmOutlined.js b/packages/material-ui-icons/lib/esm/AtmOutlined.js new file mode 100644 index 00000000000000..164380d40e4bca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AtmOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z" +}), 'AtmOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AtmRounded.js b/packages/material-ui-icons/lib/esm/AtmRounded.js new file mode 100644 index 00000000000000..d65f55eee85d26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AtmRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 9.75c0 .41.34.75.75.75h1.5v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h1.5c.41 0 .75-.34.75-.75S13.66 9 13.25 9h-4.5c-.41 0-.75.34-.75.75zM6 9H3c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75v-.75h2v.75c0 .41.34.75.75.75s.75-.34.75-.75V10c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V10.5h1v2.75c0 .41.34.75.75.75s.75-.34.75-.75v-2.76h1v3.76c0 .41.34.75.75.75s.75-.34.75-.75V10c0-.55-.45-1-1-1z" +}), 'AtmRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AtmSharp.js b/packages/material-ui-icons/lib/esm/AtmSharp.js new file mode 100644 index 00000000000000..b939f67233d06a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AtmSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM7 9H2v6h1.5v-1.5h2V15H7V9zm-1.5 3h-2v-1.5h2V12zM22 9h-6.5v6H17v-4.5h1V14h1.5v-3.51h1V15H22V9z" +}), 'AtmSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AtmTwoTone.js b/packages/material-ui-icons/lib/esm/AtmTwoTone.js new file mode 100644 index 00000000000000..032eef9518b05c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AtmTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.5 13.5h2V15H7v-5c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v5h1.5v-1.5zm0-3h2V12h-2v-1.5zm13.5 0h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1h-4.5c-.55 0-1 .45-1 1v5H17v-4.5zM10.25 15h1.5v-4.5H14V9H8v1.5h2.25z" +}), 'AtmTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachEmail.js b/packages/material-ui-icons/lib/esm/AttachEmail.js new file mode 100644 index 00000000000000..aeb0bb40f56813 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachEmail.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 10V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h11v-5c0-1.66 1.34-3 3-3h4zm-10 1L3 6V4l8 5 8-5v2l-8 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" +}, "1")], 'AttachEmail'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachEmailOutlined.js b/packages/material-ui-icons/lib/esm/AttachEmailOutlined.js new file mode 100644 index 00000000000000..bf9389df9c59c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachEmailOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m3 6 8 5 8-5v3h2V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h10v-2H3V6zm16-2-8 5-8-5h16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" +}, "1")], 'AttachEmailOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachEmailRounded.js b/packages/material-ui-icons/lib/esm/AttachEmailRounded.js new file mode 100644 index 00000000000000..cc7930ca437cde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachEmailRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 10V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h11v-5c0-1.66 1.34-3 3-3h4zm-9.47.67c-.32.2-.74.2-1.06 0L3.4 6.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L11 9l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72l-7.07 4.42z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 14c-.55 0-1 .45-1 1v3c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V17c0 .55.45 1 1 1s1-.45 1-1v-3.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-3c0-.55-.45-1-1-1z" +}, "1")], 'AttachEmailRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachEmailSharp.js b/packages/material-ui-icons/lib/esm/AttachEmailSharp.js new file mode 100644 index 00000000000000..50d10cd7f19e59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachEmailSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 10V2H1v16h13v-5c0-1.66 1.34-3 3-3h4zm-10 1L3 6V4l8 5 8-5v2l-8 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" +}, "1")], 'AttachEmailSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachEmailTwoTone.js b/packages/material-ui-icons/lib/esm/AttachEmailTwoTone.js new file mode 100644 index 00000000000000..ce55ead734117c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachEmailTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m3 6 8 5 8-5v3h2V4c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2L1 16c0 1.1.9 2 2 2h10v-2H3V6zm16-2-8 5-8-5h16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5S15 12.12 15 13.5V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" +}, "1")], 'AttachEmailTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachFile.js b/packages/material-ui-icons/lib/esm/AttachFile.js new file mode 100644 index 00000000000000..bafbcb34ce70c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachFile.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" +}), 'AttachFile'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachFileOutlined.js b/packages/material-ui-icons/lib/esm/AttachFileOutlined.js new file mode 100644 index 00000000000000..fb43da7690c671 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachFileOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" +}), 'AttachFileOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachFileRounded.js b/packages/material-ui-icons/lib/esm/AttachFileRounded.js new file mode 100644 index 00000000000000..17b2f293e3f374 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachFileRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 6.75v10.58c0 2.09-1.53 3.95-3.61 4.15-2.39.23-4.39-1.64-4.39-3.98V5.14c0-1.31.94-2.5 2.24-2.63 1.5-.15 2.76 1.02 2.76 2.49v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75v8.61c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V5.17c0-2.09-1.53-3.95-3.61-4.15C9.01.79 7 2.66 7 5v12.27c0 2.87 2.1 5.44 4.96 5.71 3.29.3 6.04-2.26 6.04-5.48V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75z" +}), 'AttachFileRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachFileSharp.js b/packages/material-ui-icons/lib/esm/AttachFileSharp.js new file mode 100644 index 00000000000000..3a5c34b54bc968 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachFileSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" +}), 'AttachFileSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachFileTwoTone.js b/packages/material-ui-icons/lib/esm/AttachFileTwoTone.js new file mode 100644 index 00000000000000..84098055866b79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachFileTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 23c3.04 0 5.5-2.46 5.5-5.5V6h-1.5v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5z" +}), 'AttachFileTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachMoney.js b/packages/material-ui-icons/lib/esm/AttachMoney.js new file mode 100644 index 00000000000000..496ea320764ca7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachMoney.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" +}), 'AttachMoney'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachMoneyOutlined.js b/packages/material-ui-icons/lib/esm/AttachMoneyOutlined.js new file mode 100644 index 00000000000000..fee8c8bb4d9180 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachMoneyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" +}), 'AttachMoneyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachMoneyRounded.js b/packages/material-ui-icons/lib/esm/AttachMoneyRounded.js new file mode 100644 index 00000000000000..f7d8763c1167d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachMoneyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.42 0 2.13.54 2.39 1.4.12.4.45.7.87.7h.3c.66 0 1.13-.65.9-1.27-.42-1.18-1.4-2.16-2.96-2.54V4.5c0-.83-.67-1.5-1.5-1.5S10 3.67 10 4.5v.66c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67h-.28c-.67 0-1.14.68-.89 1.3.57 1.39 1.9 2.21 3.4 2.53v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" +}), 'AttachMoneyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachMoneySharp.js b/packages/material-ui-icons/lib/esm/AttachMoneySharp.js new file mode 100644 index 00000000000000..dbba36cf708c3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachMoneySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" +}), 'AttachMoneySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachMoneyTwoTone.js b/packages/material-ui-icons/lib/esm/AttachMoneyTwoTone.js new file mode 100644 index 00000000000000..a9b19da3382cbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachMoneyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 17.1c-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79z" +}), 'AttachMoneyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Attachment.js b/packages/material-ui-icons/lib/esm/Attachment.js new file mode 100644 index 00000000000000..a1940d13e5ef64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Attachment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 12.5C2 9.46 4.46 7 7.5 7H18c2.21 0 4 1.79 4 4s-1.79 4-4 4H9.5C8.12 15 7 13.88 7 12.5S8.12 10 9.5 10H17v2H9.41c-.55 0-.55 1 0 1H18c1.1 0 2-.9 2-2s-.9-2-2-2H7.5C5.57 9 4 10.57 4 12.5S5.57 16 7.5 16H17v2H7.5C4.46 18 2 15.54 2 12.5z" +}), 'Attachment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachmentOutlined.js b/packages/material-ui-icons/lib/esm/AttachmentOutlined.js new file mode 100644 index 00000000000000..2e05d75e7a28a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachmentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" +}), 'AttachmentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachmentRounded.js b/packages/material-ui-icons/lib/esm/AttachmentRounded.js new file mode 100644 index 00000000000000..14d7dd5e724e8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachmentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.75 16H7.17c-2.09 0-3.95-1.53-4.15-3.61C2.79 10.01 4.66 8 7 8h12.36c1.31 0 2.5.94 2.63 2.24.15 1.5-1.02 2.76-2.49 2.76H9c-.55 0-1-.45-1-1s.45-1 1-1h8.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H9.14c-1.31 0-2.5.94-2.63 2.24-.15 1.5 1.02 2.76 2.49 2.76h10.33c2.09 0 3.95-1.53 4.15-3.61.23-2.39-1.64-4.39-3.98-4.39H7.23c-2.87 0-5.44 2.1-5.71 4.96-.3 3.29 2.26 6.04 5.48 6.04h10.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75z" +}), 'AttachmentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachmentSharp.js b/packages/material-ui-icons/lib/esm/AttachmentSharp.js new file mode 100644 index 00000000000000..45c82c031de5e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachmentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" +}), 'AttachmentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttachmentTwoTone.js b/packages/material-ui-icons/lib/esm/AttachmentTwoTone.js new file mode 100644 index 00000000000000..e4c72fa5624f1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttachmentTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" +}), 'AttachmentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Attractions.js b/packages/material-ui-icons/lib/esm/Attractions.js new file mode 100644 index 00000000000000..2f5e34ad8b349d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Attractions.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.43 18.75c.37-.46.94-.75 1.57-.75.63 0 1.19.29 1.56.75.39-.09.76-.21 1.12-.36l-1.42-3.18c-.39.15-.82.23-1.26.23-.46 0-.9-.09-1.3-.25l-1.43 3.19c.38.16.76.29 1.16.37zM5.15 10c-.16.59-.25 1.21-.25 1.85 0 .75.12 1.47.33 2.15.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99.22-.68.34-1.41.34-2.16 0-.64-.09-1.27-.25-1.86-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.39 5.6 12.74 6 12 6s-1.39-.41-1.74-1.01c-1.34.34-2.53 1.05-3.44 2.03.33.6.35 1.35-.02 1.98-.35.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58.51-.88 1.58-1.23 2.49-.85 1.11-1.17 2.56-2.03 4.18-2.42C10.15 2.75 10.99 2 12 2s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42.91-.38 1.99-.03 2.49.85.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58-.51.88-1.58 1.23-2.49.85-.4.43-.85.81-1.34 1.15l1.34 3H16.3l-.97-2.17c-.43.18-.88.33-1.34.44-.14.98-.98 1.73-1.99 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46L7.66 22H5.78l1.36-3.03a8.72 8.72 0 0 1-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.23-.77-.35-1.58-.35-2.42s.12-1.65.35-2.42z" +}), 'Attractions'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttractionsOutlined.js b/packages/material-ui-icons/lib/esm/AttractionsOutlined.js new file mode 100644 index 00000000000000..06ef87aee714ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttractionsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.15 14.42c.23-.77.35-1.58.35-2.42s-.12-1.65-.35-2.42c.78-.6 1.02-1.7.51-2.58s-1.58-1.23-2.49-.85c-1.11-1.17-2.56-2.03-4.18-2.42C13.85 2.75 13.01 2 12 2s-1.85.75-1.98 1.73c-1.63.39-3.07 1.25-4.19 2.42-.91-.38-1.98-.03-2.49.85s-.27 1.98.51 2.58c-.23.77-.35 1.58-.35 2.42s.12 1.65.35 2.42c-.78.6-1.02 1.7-.51 2.58s1.58 1.23 2.49.85c.4.42.83.79 1.3 1.12L5.78 22h1.88l.98-2.19c.44.19.9.34 1.38.46.13.98.97 1.73 1.98 1.73s1.85-.75 1.98-1.73c.46-.11.91-.26 1.34-.44L16.3 22h1.88l-1.34-3c.48-.34.93-.72 1.34-1.15.91.38 1.99.03 2.49-.85.5-.88.26-1.98-.52-2.58zm-6.59 4.33c-.37-.46-.93-.75-1.56-.75s-1.2.29-1.57.75c-.4-.09-.79-.21-1.16-.37l1.43-3.19c.4.16.84.25 1.3.25.44 0 .87-.08 1.26-.23l1.42 3.18c-.36.15-.73.27-1.12.36zm-3.08-6.73c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zm8.23 1.99c-.61.07-1.18.41-1.52.99-.32.56-.34 1.2-.12 1.75-.28.29-.58.55-.9.79l-1.5-3.35c.49-.59.78-1.34.78-2.16 0-1.89-1.55-3.41-3.46-3.41s-3.46 1.53-3.46 3.41c0 .8.28 1.54.75 2.13l-1.52 3.39c-.31-.23-.6-.48-.87-.76.26-.56.24-1.22-.09-1.79-.34-.59-.93-.94-1.56-.99-.22-.68-.33-1.4-.33-2.15 0-.64.09-1.26.25-1.85.66-.03 1.3-.38 1.65-1 .37-.63.35-1.38.01-1.98.92-.98 2.11-1.69 3.45-2.03.34.59.99 1 1.73 1s1.39-.4 1.73-1c1.34.34 2.53 1.07 3.44 2.05-.32.59-.33 1.33.03 1.95.35.6.96.95 1.6 1 .16.59.25 1.21.25 1.86 0 .75-.12 1.47-.34 2.15z" +}), 'AttractionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttractionsRounded.js b/packages/material-ui-icons/lib/esm/AttractionsRounded.js new file mode 100644 index 00000000000000..9382b9c5e2cd35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttractionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.44 18.75c.37-.46.94-.75 1.57-.75s1.19.29 1.56.75c.39-.09.76-.21 1.12-.36l-1.42-3.18c-.39.15-.82.23-1.26.23-.46 0-.9-.09-1.3-.25l-1.43 3.19c.37.16.75.29 1.16.37zM5.16 10c-.16.59-.25 1.21-.25 1.85 0 .75.12 1.47.33 2.15.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99.22-.68.34-1.41.34-2.16 0-.64-.09-1.27-.25-1.86-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.4 5.6 12.74 6 12.01 6s-1.39-.41-1.74-1.01c-1.34.34-2.53 1.05-3.44 2.03.33.6.35 1.35-.02 1.98-.36.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58s1.58-1.23 2.49-.85c1.11-1.17 2.56-2.03 4.18-2.42.13-.98.97-1.73 1.99-1.73s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42.91-.38 1.99-.03 2.49.85.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58s-1.58 1.23-2.49.85c-.4.43-.85.81-1.34 1.15l.81 1.8c.25.56-.16 1.2-.78 1.2-.33 0-.64-.2-.78-.5l-.75-1.67c-.43.18-.88.33-1.34.44-.13.98-.97 1.73-1.98 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46l-.76 1.69c-.14.3-.44.5-.78.5H7.1c-.62 0-1.03-.64-.77-1.2l.82-1.83a8.72 8.72 0 0 1-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.24-.77-.35-1.58-.35-2.42s.11-1.65.35-2.42z" +}), 'AttractionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttractionsSharp.js b/packages/material-ui-icons/lib/esm/AttractionsSharp.js new file mode 100644 index 00000000000000..3c2e4575bab9ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttractionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.44 18.75c.37-.46.94-.75 1.57-.75s1.19.29 1.56.75c.39-.09.76-.21 1.12-.36l-1.42-3.18c-.39.15-.82.23-1.26.23-.46 0-.9-.09-1.3-.25l-1.43 3.19c.37.16.75.29 1.16.37zM5.16 10c-.16.59-.25 1.21-.25 1.85 0 .75.12 1.47.33 2.15.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99.22-.68.34-1.41.34-2.16 0-.64-.09-1.27-.25-1.86-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.4 5.6 12.74 6 12.01 6s-1.39-.41-1.74-1.01c-1.34.34-2.53 1.05-3.44 2.03.33.6.35 1.35-.02 1.98-.36.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58s1.58-1.23 2.49-.85c1.11-1.17 2.56-2.03 4.18-2.42.13-.98.97-1.73 1.99-1.73s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42.91-.38 1.99-.03 2.49.85.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58s-1.58 1.23-2.49.85c-.4.43-.85.81-1.34 1.15l1.34 3h-1.86l-.97-2.17c-.43.18-.88.33-1.34.44-.14.98-.98 1.73-1.99 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46L7.66 22H5.79l1.36-3.03a8.72 8.72 0 0 1-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.24-.77-.35-1.58-.35-2.42s.11-1.65.35-2.42z" +}), 'AttractionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttractionsTwoTone.js b/packages/material-ui-icons/lib/esm/AttractionsTwoTone.js new file mode 100644 index 00000000000000..401b5e21594182 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttractionsTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "11.98", + cy: "12.02", + r: "1.5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.15 14.42c.23-.77.35-1.58.35-2.42s-.12-1.65-.35-2.42c.78-.6 1.02-1.7.51-2.58-.51-.88-1.58-1.23-2.49-.85-1.11-1.17-2.56-2.03-4.18-2.42C13.85 2.75 13.01 2 12 2s-1.85.75-1.98 1.73c-1.63.39-3.07 1.25-4.19 2.42-.91-.38-1.98-.03-2.49.85-.51.88-.27 1.98.51 2.58-.23.77-.35 1.58-.35 2.42s.12 1.65.35 2.42c-.78.6-1.02 1.7-.51 2.58.51.88 1.58 1.23 2.49.85.4.42.83.79 1.3 1.12L5.78 22h1.88l.98-2.19c.44.19.9.34 1.38.46.13.98.97 1.73 1.98 1.73s1.85-.75 1.98-1.73c.46-.11.91-.26 1.34-.44L16.3 22h1.88l-1.34-3c.48-.34.93-.72 1.34-1.15.91.38 1.99.03 2.49-.85s.26-1.98-.52-2.58zm-6.59 4.33c-.37-.46-.93-.75-1.56-.75s-1.2.29-1.57.75c-.4-.09-.79-.21-1.16-.37l1.43-3.19c.4.16.84.25 1.3.25.44 0 .87-.08 1.26-.23l1.42 3.18c-.36.15-.73.27-1.12.36zm-3.08-6.73c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zm8.23 1.99c-.61.07-1.18.41-1.52.99-.32.56-.34 1.2-.12 1.75-.28.29-.58.55-.9.79l-1.5-3.35c.49-.59.78-1.34.78-2.16 0-1.89-1.55-3.41-3.46-3.41s-3.46 1.53-3.46 3.41c0 .8.28 1.54.75 2.13l-1.52 3.39c-.31-.23-.6-.48-.87-.76.26-.56.24-1.22-.09-1.79-.34-.59-.93-.94-1.56-.99-.22-.68-.33-1.4-.33-2.15 0-.64.09-1.26.25-1.85.66-.03 1.3-.38 1.65-1 .37-.63.35-1.38.01-1.98.92-.98 2.11-1.69 3.45-2.03.34.59.99 1 1.73 1s1.39-.4 1.73-1c1.34.34 2.53 1.07 3.44 2.05-.32.59-.33 1.33.03 1.95.35.6.96.95 1.6 1 .16.59.25 1.21.25 1.86 0 .75-.12 1.47-.34 2.15z" +}, "1")], 'AttractionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Attribution.js b/packages/material-ui-icons/lib/esm/Attribution.js new file mode 100644 index 00000000000000..4cf097230088a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Attribution.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6.5", + r: "1.5" +}, "2")], 'Attribution'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttributionOutlined.js b/packages/material-ui-icons/lib/esm/AttributionOutlined.js new file mode 100644 index 00000000000000..9a1360c4a6ff67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttributionOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6.5", + r: "1.5" +}, "1")], 'AttributionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttributionRounded.js b/packages/material-ui-icons/lib/esm/AttributionRounded.js new file mode 100644 index 00000000000000..bb79c9dc8129e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttributionRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 8.5c-.91 0-2.75.46-2.75 1.38V14c0 .28.22.5.5.5h1v3.25c0 .69.56 1.25 1.25 1.25s1.25-.56 1.25-1.25V14.5h1c.28 0 .5-.22.5-.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6.5", + r: "1.5" +}, "1")], 'AttributionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttributionSharp.js b/packages/material-ui-icons/lib/esm/AttributionSharp.js new file mode 100644 index 00000000000000..b2c210a8a2b296 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttributionSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-2.75-5.5h1.5V19h2.5v-4.5h1.5v-6h-5.5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6.5", + r: "1.5" +}, "1")], 'AttributionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AttributionTwoTone.js b/packages/material-ui-icons/lib/esm/AttributionTwoTone.js new file mode 100644 index 00000000000000..f77c52a35924ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AttributionTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 1c.83 0 1.5.67 1.5 1.5S12.83 8 12 8s-1.5-.67-1.5-1.5S11.17 5 12 5zm2.75 9.5h-1.5V19h-2.5v-4.5h-1.5V9.88c0-.92 1.84-1.38 2.75-1.38s2.75.47 2.75 1.38v4.62z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-11.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6.5", + r: "1.5" +}, "2")], 'AttributionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Audiotrack.js b/packages/material-ui-icons/lib/esm/Audiotrack.js new file mode 100644 index 00000000000000..d0e6c61d1065e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Audiotrack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3v9.28c-.47-.17-.97-.28-1.5-.28C8.01 12 6 14.01 6 16.5S8.01 21 10.5 21c2.31 0 4.2-1.75 4.45-4H15V6h4V3h-7z" +}), 'Audiotrack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AudiotrackOutlined.js b/packages/material-ui-icons/lib/esm/AudiotrackOutlined.js new file mode 100644 index 00000000000000..2757d7850369be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AudiotrackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6zm-2 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'AudiotrackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AudiotrackRounded.js b/packages/material-ui-icons/lib/esm/AudiotrackRounded.js new file mode 100644 index 00000000000000..66f6b1182e0ccd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AudiotrackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z" +}), 'AudiotrackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AudiotrackSharp.js b/packages/material-ui-icons/lib/esm/AudiotrackSharp.js new file mode 100644 index 00000000000000..a48756d65a4f0a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AudiotrackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" +}), 'AudiotrackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AudiotrackTwoTone.js b/packages/material-ui-icons/lib/esm/AudiotrackTwoTone.js new file mode 100644 index 00000000000000..22536571eb3eff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AudiotrackTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "17", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 21c2.21 0 4-1.79 4-4V7h4V3h-6v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" +}, "1")], 'AudiotrackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesome.js b/packages/material-ui-icons/lib/esm/AutoAwesome.js new file mode 100644 index 00000000000000..6565f36cd84f50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesome.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z" +}), 'AutoAwesome'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMosaic.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaic.js new file mode 100644 index 00000000000000..04775680154199 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z" +}), 'AutoAwesomeMosaic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicOutlined.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicOutlined.js new file mode 100644 index 00000000000000..e6c03c1ca671df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm6 14H5V5h4v14zM19 3h-6v8h8V5c0-1.1-.9-2-2-2zm0 6h-4V5h4v4zm-6 12h6c1.1 0 2-.9 2-2v-6h-8v8zm2-6h4v4h-4v-4z" +}), 'AutoAwesomeMosaicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicRounded.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicRounded.js new file mode 100644 index 00000000000000..97fead904f8547 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z" +}), 'AutoAwesomeMosaicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicSharp.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicSharp.js new file mode 100644 index 00000000000000..9acb829eba69a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h8V3H3v18zM21 3h-8v8h8V3zm-8 18h8v-8h-8v8z" +}), 'AutoAwesomeMosaicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicTwoTone.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicTwoTone.js new file mode 100644 index 00000000000000..9763164cf3f4de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMosaicTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h4v14H5zm10 10h4v4h-4zm0-10h4v4h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm6 14H5V5h4v14zM19 3h-6v8h8V5c0-1.1-.9-2-2-2zm0 6h-4V5h4v4zm-6 12h6c1.1 0 2-.9 2-2v-6h-8v8zm2-6h4v4h-4v-4z" +}, "1")], 'AutoAwesomeMosaicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMotion.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMotion.js new file mode 100644 index 00000000000000..a0cf810bcc112c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMotion.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4c-1.11 0-2 .9-2 2v10h2V4h10V2zm4 4H8c-1.11 0-2 .9-2 2v10h2V8h10V6zm2 4h-8c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" +}), 'AutoAwesomeMotion'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMotionOutlined.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionOutlined.js new file mode 100644 index 00000000000000..c56fd17335e1a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4c-1.1 0-2 .9-2 2v10h2V4h10V2zm4 4H8c-1.1 0-2 .9-2 2v10h2V8h10V6zm2 4h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-8v-8h8v8z" +}), 'AutoAwesomeMotionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMotionRounded.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionRounded.js new file mode 100644 index 00000000000000..cb98b96b5ae9ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2H4c-1.1 0-2 .9-2 2v9c0 .55.45 1 1 1s1-.45 1-1V4h9c.55 0 1-.45 1-1s-.45-1-1-1zm4 4H8c-1.1 0-2 .9-2 2v9c0 .55.45 1 1 1s1-.45 1-1V8h9c.55 0 1-.45 1-1s-.45-1-1-1zm3 4h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z" +}), 'AutoAwesomeMotionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMotionSharp.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionSharp.js new file mode 100644 index 00000000000000..31f810f83b250d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H2v12h2V4h10V2zm4 4H6v12h2V8h10V6zm4 4H10v12h12V10z" +}), 'AutoAwesomeMotionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeMotionTwoTone.js b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionTwoTone.js new file mode 100644 index 00000000000000..e47c9b28e8a6e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeMotionTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 12h8v8h-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 2H4c-1.1 0-2 .9-2 2v10h2V4h10V2zm6 8h-8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-8v-8h8v8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 6H8c-1.1 0-2 .9-2 2v10h2V8h10V6z" +}, "2")], 'AutoAwesomeMotionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeOutlined.js b/packages/material-ui-icons/lib/esm/AutoAwesomeOutlined.js new file mode 100644 index 00000000000000..1d8f53b9c1d9aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25zm0 6-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25zm-7.5-5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zm-1.51 3.49L9 15.17l-.99-2.18L5.83 12l2.18-.99L9 8.83l.99 2.18 2.18.99-2.18.99z" +}), 'AutoAwesomeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeRounded.js b/packages/material-ui-icons/lib/esm/AutoAwesomeRounded.js new file mode 100644 index 00000000000000..c04a26662799d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.46 8 .79-1.75L22 5.46c.39-.18.39-.73 0-.91l-1.75-.79L19.46 2c-.18-.39-.73-.39-.91 0l-.79 1.75-1.76.79c-.39.18-.39.73 0 .91l1.75.79.79 1.76c.18.39.74.39.92 0zM11.5 9.5 9.91 6c-.35-.78-1.47-.78-1.82 0L6.5 9.5 3 11.09c-.78.36-.78 1.47 0 1.82l3.5 1.59L8.09 18c.36.78 1.47.78 1.82 0l1.59-3.5 3.5-1.59c.78-.36.78-1.47 0-1.82L11.5 9.5zm7.04 6.5-.79 1.75-1.75.79c-.39.18-.39.73 0 .91l1.75.79.79 1.76c.18.39.73.39.91 0l.79-1.75 1.76-.79c.39-.18.39-.73 0-.91l-1.75-.79-.79-1.76c-.18-.39-.74-.39-.92 0z" +}), 'AutoAwesomeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeSharp.js b/packages/material-ui-icons/lib/esm/AutoAwesomeSharp.js new file mode 100644 index 00000000000000..5cd121478e7c3d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z" +}), 'AutoAwesomeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoAwesomeTwoTone.js b/packages/material-ui-icons/lib/esm/AutoAwesomeTwoTone.js new file mode 100644 index 00000000000000..1f409f96b20614 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoAwesomeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.99 11.01 9 8.83l-.99 2.18-2.18.99 2.18.99.99 2.18.99-2.18 2.18-.99z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m19 9 1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25zm0 6-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25zm-7.5-5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zm-1.51 3.49L9 15.17l-.99-2.18L5.83 12l2.18-.99L9 8.83l.99 2.18 2.18.99-2.18.99z" +}, "1")], 'AutoAwesomeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoDelete.js b/packages/material-ui-icons/lib/esm/AutoDelete.js new file mode 100644 index 00000000000000..e3e66c58271e8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoDelete.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v12c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" +}, "1")], 'AutoDelete'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoDeleteOutlined.js b/packages/material-ui-icons/lib/esm/AutoDeleteOutlined.js new file mode 100644 index 00000000000000..bb8017e7ed698d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoDeleteOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v12c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm-7 7c0 .34.03.67.08 1H4V7h8v3.26c-1.81 1.27-3 3.36-3 5.74zm7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" +}, "1")], 'AutoDeleteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoDeleteRounded.js b/packages/material-ui-icons/lib/esm/AutoDeleteRounded.js new file mode 100644 index 00000000000000..5a2e5995b281ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoDeleteRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 9c-.7 0-1.37.1-2 .29V7c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zM14 4c.55 0 1-.45 1-1s-.45-1-1-1h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H5.91c-.26 0-.52.11-.7.29L4.5 2H2c-.55 0-1 .45-1 1s.45 1 1 1h12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.75 12c-.41 0-.75.34-.75.75v3.68c0 .36.19.68.5.86l2.52 1.47c.33.19.75.09.96-.22.23-.34.12-.81-.24-1.02L16.5 16.2v-3.45c0-.41-.34-.75-.75-.75z" +}, "1")], 'AutoDeleteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoDeleteSharp.js b/packages/material-ui-icons/lib/esm/AutoDeleteSharp.js new file mode 100644 index 00000000000000..c81eeffb12a1f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoDeleteSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v14h7.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" +}, "1")], 'AutoDeleteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoDeleteTwoTone.js b/packages/material-ui-icons/lib/esm/AutoDeleteTwoTone.js new file mode 100644 index 00000000000000..1ff263f5742b92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoDeleteTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 7H4v10h5.08c-.05-.33-.08-.66-.08-1 0-2.38 1.19-4.47 3-5.74V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v12c0 1.1.9 2 2 2h5.68c1.12 2.36 3.53 4 6.32 4 3.87 0 7-3.13 7-7s-3.13-7-7-7zm-7 7c0 .34.03.67.08 1H4V7h8v3.26c-1.81 1.27-3 3.36-3 5.74zm7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" +}, "2")], 'AutoDeleteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixHigh.js b/packages/material-ui-icons/lib/esm/AutoFixHigh.js new file mode 100644 index 00000000000000..520b46554671a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixHigh.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 5.6 10 7 8.6 4.5 10 2 7.5 3.4 5 2l1.4 2.5L5 7zm12 9.8L17 14l1.4 2.5L17 19l2.5-1.4L22 19l-1.4-2.5L22 14zM22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29a.9959.9959 0 0 0-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z" +}), 'AutoFixHigh'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixHighOutlined.js b/packages/material-ui-icons/lib/esm/AutoFixHighOutlined.js new file mode 100644 index 00000000000000..a8d74d8d88ce10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixHighOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-2.29-3.38-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zm-3.54-.7 1.41 1.41L14.41 11 13 9.59l1.17-1.17zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18z" +}), 'AutoFixHighOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixHighRounded.js b/packages/material-ui-icons/lib/esm/AutoFixHighRounded.js new file mode 100644 index 00000000000000..0553af00a5348c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixHighRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.45 6 .49-1.06L22 4.45c.39-.18.39-.73 0-.91l-1.06-.49L20.45 2c-.18-.39-.73-.39-.91 0l-.49 1.06-1.05.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.17.39.73.39.9 0zM8.95 6l.49-1.06 1.06-.49c.39-.18.39-.73 0-.91l-1.06-.48L8.95 2c-.17-.39-.73-.39-.9 0l-.49 1.06-1.06.49c-.39.18-.39.73 0 .91l1.06.49L8.05 6c.17.39.73.39.9 0zm10.6 7.5-.49 1.06-1.06.49c-.39.18-.39.73 0 .91l1.06.49.49 1.06c.18.39.73.39.91 0l.49-1.06 1.05-.5c.39-.18.39-.73 0-.91l-1.06-.49-.49-1.06c-.17-.38-.73-.38-.9.01zm-1.84-4.38-2.83-2.83a.9959.9959 0 0 0-1.41 0L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0L17.7 10.53c.4-.38.4-1.02.01-1.41zm-3.5 2.09L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" +}), 'AutoFixHighRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixHighSharp.js b/packages/material-ui-icons/lib/esm/AutoFixHighSharp.js new file mode 100644 index 00000000000000..90cc601969ba4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixHighSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-1.59-2.67-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" +}), 'AutoFixHighSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixHighTwoTone.js b/packages/material-ui-icons/lib/esm/AutoFixHighTwoTone.js new file mode 100644 index 00000000000000..596f9662585504 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixHighTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4.4149 18.1667 7.17-7.17 1.4142 1.4141-7.17 7.1701z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-2.29-3.38-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18zM14.41 11 13 9.59l1.17-1.17 1.41 1.41L14.41 11z" +}, "1")], 'AutoFixHighTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixNormal.js b/packages/material-ui-icons/lib/esm/AutoFixNormal.js new file mode 100644 index 00000000000000..04cb5ddbed5274 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixNormal.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 2-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29a.9959.9959 0 0 0-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z" +}), 'AutoFixNormal'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixNormalOutlined.js b/packages/material-ui-icons/lib/esm/AutoFixNormalOutlined.js new file mode 100644 index 00000000000000..89c14453e57173 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixNormalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-2.29 2.12-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zm-3.54-.7 1.41 1.41L14.41 11 13 9.59l1.17-1.17zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18z" +}), 'AutoFixNormalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixNormalRounded.js b/packages/material-ui-icons/lib/esm/AutoFixNormalRounded.js new file mode 100644 index 00000000000000..5e37e310b92fc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixNormalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.45 6 .49-1.06L22 4.45c.39-.18.39-.73 0-.91l-1.06-.49L20.45 2c-.18-.39-.73-.39-.91 0l-.49 1.06-1.05.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.17.39.73.39.9 0zm-2.74 3.12-2.83-2.83a.9959.9959 0 0 0-1.41 0L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0L17.7 10.53c.4-.38.4-1.02.01-1.41zm-3.5 2.09L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" +}), 'AutoFixNormalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixNormalSharp.js b/packages/material-ui-icons/lib/esm/AutoFixNormalSharp.js new file mode 100644 index 00000000000000..c75c5850df3474 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixNormalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-1.59 2.83-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" +}), 'AutoFixNormalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixNormalTwoTone.js b/packages/material-ui-icons/lib/esm/AutoFixNormalTwoTone.js new file mode 100644 index 00000000000000..7daa2a8cb2a68d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixNormalTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4.4149 18.1667 7.17-7.17 1.4142 1.4141-7.17 7.1701z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-2.29 2.12-2.83-2.83c-.2-.19-.45-.29-.71-.29-.26 0-.51.1-.71.29L2.29 17.46c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l11.17-11.17c.39-.39.39-1.03 0-1.42zM5.83 19.59l-1.41-1.41L11.59 11 13 12.41l-7.17 7.18zM14.41 11 13 9.59l1.17-1.17 1.41 1.41L14.41 11z" +}, "1")], 'AutoFixNormalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixOff.js b/packages/material-ui-icons/lib/esm/AutoFixOff.js new file mode 100644 index 00000000000000..1d9ca09c30c86f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 1-2.5 1.4L18 1l1.4 2.5L18 6l2.5-1.4L23 6l-1.4-2.5L23 1zm-8.34 6.22 2.12 2.12-2.44 2.44.81.81 2.55-2.55c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0L11.4 8.84l.81.81 2.45-2.43zm-.78 6.65-3.75-3.75-6.86-6.86L2 4.53l6.86 6.86-6.57 6.57c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0l6.57-6.57L19.47 22l1.27-1.27-6.86-6.86z" +}), 'AutoFixOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixOffOutlined.js b/packages/material-ui-icons/lib/esm/AutoFixOffOutlined.js new file mode 100644 index 00000000000000..a7d608910018e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42 1.41 1.41-1.46 1.46 1.41 1.41 2.17-2.17c.39-.39.39-1.02 0-1.41l-2.83-2.83c-.19-.19-.44-.29-.7-.29-.26 0-.51.1-.71.29l-2.17 2.17 1.41 1.41 1.47-1.45zM1.39 4.22l7.07 7.07-6.17 6.17c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l6.17-6.17 7.07 7.07 1.41-1.41L2.81 2.81 1.39 4.22zm9.9 9.9-5.46 5.46-1.41-1.41 5.46-5.46 1.41 1.41z" +}), 'AutoFixOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixOffRounded.js b/packages/material-ui-icons/lib/esm/AutoFixOffRounded.js new file mode 100644 index 00000000000000..0ccaae881fea1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 3.55-1.06-.49L20.45 2c-.18-.39-.73-.39-.91 0l-.49 1.06-1.05.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.18.39.73.39.91 0l.49-1.06L22 4.45c.39-.17.39-.73 0-.9zm-7.83 4.87 1.41 1.41-1.46 1.46 1.41 1.41 2.17-2.17c.39-.39.39-1.02 0-1.41l-2.83-2.83a.9959.9959 0 0 0-1.41 0l-2.17 2.17 1.41 1.41 1.47-1.45zM2.1 4.93l6.36 6.36-6.17 6.17c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0l6.17-6.17 6.36 6.36c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42z" +}), 'AutoFixOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixOffSharp.js b/packages/material-ui-icons/lib/esm/AutoFixOffSharp.js new file mode 100644 index 00000000000000..0e81e15afc1cf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42 1.41 1.41-1.46 1.46 1.42 1.42 2.87-2.88-4.24-4.24-2.88 2.87 1.42 1.42zM1.39 4.22l7.07 7.07-6.87 6.88 4.24 4.24 6.88-6.87 7.07 7.07 1.41-1.42L2.81 2.81z" +}), 'AutoFixOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoFixOffTwoTone.js b/packages/material-ui-icons/lib/esm/AutoFixOffTwoTone.js new file mode 100644 index 00000000000000..c5813d333dbdb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoFixOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4.4169 18.1737 5.4659-5.4659 1.4142 1.4142-5.466 5.466z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20 7 .94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42 1.41 1.41-1.46 1.46 1.41 1.41 2.17-2.17c.39-.39.39-1.02 0-1.41l-2.83-2.83c-.19-.19-.44-.29-.7-.29-.26 0-.51.1-.71.29l-2.17 2.17 1.41 1.41 1.47-1.45zM2.81 2.81 1.39 4.22l7.07 7.07-6.17 6.17c-.39.39-.39 1.02 0 1.41l2.83 2.83c.2.2.45.3.71.3s.51-.1.71-.29l6.17-6.17 7.07 7.07 1.41-1.41L2.81 2.81zm3.02 16.78-1.41-1.41 5.46-5.46 1.41 1.41-5.46 5.46z" +}, "1")], 'AutoFixOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoGraph.js b/packages/material-ui-icons/lib/esm/AutoGraph.js new file mode 100644 index 00000000000000..3b3b1302a0f046 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoGraph.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" +}), 'AutoGraph'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoGraphOutlined.js b/packages/material-ui-icons/lib/esm/AutoGraphOutlined.js new file mode 100644 index 00000000000000..d8f011430a1648 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoGraphOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" +}), 'AutoGraphOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoGraphRounded.js b/packages/material-ui-icons/lib/esm/AutoGraphRounded.js new file mode 100644 index 00000000000000..25bf5d59ca1877 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoGraphRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.06 9.94 13 9.45c-.39-.18-.39-.73 0-.91l1.06-.49.49-1.05c.18-.39.73-.39.91 0l.49 1.06 1.05.49c.39.18.39.73 0 .91l-1.06.49-.49 1.05c-.18.39-.73.39-.91 0l-.48-1.06zM4.45 13l.49-1.06L6 11.45c.39-.18.39-.73 0-.91l-1.06-.49L4.45 9c-.17-.39-.73-.39-.9 0l-.49 1.06-1.06.49c-.39.18-.39.73 0 .91l1.06.49.49 1.05c.17.39.73.39.9 0zm4.51-5.01.63-1.4 1.4-.63c.39-.18.39-.73 0-.91l-1.4-.63-.63-1.4c-.18-.39-.73-.39-.91 0l-.63 1.4-1.4.63c-.39.18-.39.73 0 .91l1.4.63.63 1.4c.17.39.73.39.91 0zm13.38.28c-.4-.4-1.07-.39-1.45.04l-6.39 7.18-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.04 6.05c-.41.41-.41 1.09 0 1.5.41.41 1.09.41 1.5 0l5.25-5.26 3.25 3.25c.41.41 1.07.39 1.45-.04l7.17-8.07c.35-.39.33-.99-.04-1.36z" +}), 'AutoGraphRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoGraphSharp.js b/packages/material-ui-icons/lib/esm/AutoGraphSharp.js new file mode 100644 index 00000000000000..11b85d9d37f6c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoGraphSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" +}), 'AutoGraphSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoGraphTwoTone.js b/packages/material-ui-icons/lib/esm/AutoGraphTwoTone.js new file mode 100644 index 00000000000000..3ed010c5413efd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoGraphTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.06 9.94 12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5 1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5 6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" +}), 'AutoGraphTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoStories.js b/packages/material-ui-icons/lib/esm/AutoStories.js new file mode 100644 index 00000000000000..5a37aba9e88dc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoStories.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 1-5 5v11l5-4.5V1zM1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5V6c-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6zm22 13.5V6c-.6-.45-1.25-.75-2-1v13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5v2c1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5v-1.1z" +}), 'AutoStories'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoStoriesOutlined.js b/packages/material-ui-icons/lib/esm/AutoStoriesOutlined.js new file mode 100644 index 00000000000000..1ab56ff224e39f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoStoriesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.47 5.2c-.47-.24-.96-.44-1.47-.61v12.03c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4c-1.79 0-3.48.44-4.97 1.2-.33.16-.53.51-.53.88v12.08c0 .58.47.99 1 .99.16 0 .32-.04.48-.12C3.69 18.4 5.05 18 6.5 18c2.07 0 3.98.82 5.5 2 1.52-1.18 3.43-2 5.5-2 1.45 0 2.81.4 4.02 1.04.16.08.32.12.48.12.52 0 1-.41 1-.99V6.08c0-.37-.2-.72-.53-.88zM10 16.62C8.86 16.21 7.69 16 6.5 16s-2.36.21-3.5.62V6.71C4.11 6.24 5.28 6 6.5 6c1.2 0 2.39.25 3.5.72v9.9zM19 .5l-5 5V15l5-4.5V.5z" +}), 'AutoStoriesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoStoriesRounded.js b/packages/material-ui-icons/lib/esm/AutoStoriesRounded.js new file mode 100644 index 00000000000000..9c3a598dc260e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoStoriesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.15 1.35-4 4c-.1.1-.15.22-.15.36v8.17c0 .43.51.66.83.37l4-3.6c.11-.09.17-.23.17-.37V1.71c0-.45-.54-.67-.85-.36zm4.32 3.85c-.47-.24-.96-.44-1.47-.61v12.03c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4c-1.79 0-3.48.44-4.97 1.2-.33.16-.53.51-.53.88v12.08c0 .76.81 1.23 1.48.87C3.69 18.4 5.05 18 6.5 18c2.07 0 3.98.82 5.5 2 1.52-1.18 3.43-2 5.5-2 1.45 0 2.81.4 4.02 1.04.67.36 1.48-.11 1.48-.87V6.08c0-.37-.2-.72-.53-.88z" +}), 'AutoStoriesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoStoriesSharp.js b/packages/material-ui-icons/lib/esm/AutoStoriesSharp.js new file mode 100644 index 00000000000000..423e48c325cfc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoStoriesSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 4.6v12.02c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4S2.62 4.55 1 5.48V20c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2V5.48c-.63-.36-1.3-.64-2-.88z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m19 .5-5 5V15l5-4.5z" +}, "1")], 'AutoStoriesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutoStoriesTwoTone.js b/packages/material-ui-icons/lib/esm/AutoStoriesTwoTone.js new file mode 100644 index 00000000000000..674f13636bed3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutoStoriesTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 6.71v9.91c1.14-.41 2.31-.62 3.5-.62s2.36.21 3.5.62v-9.9C8.89 6.25 7.7 6 6.5 6c-1.22 0-2.39.24-3.5.71z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m19 .5-5 5V15l5-4.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22.47 5.2c-.47-.24-.96-.44-1.47-.61v12.03c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4c-1.79 0-3.48.44-4.97 1.2-.33.16-.53.51-.53.88v12.08c0 .58.47.99 1 .99.16 0 .32-.04.48-.12C3.69 18.4 5.05 18 6.5 18c2.07 0 3.98.82 5.5 2 1.52-1.18 3.43-2 5.5-2 1.45 0 2.81.4 4.02 1.04.16.08.32.12.48.12.52 0 1-.41 1-.99V6.08c0-.37-.2-.72-.53-.88zM10 16.62C8.86 16.21 7.69 16 6.5 16s-2.36.21-3.5.62V6.71C4.11 6.24 5.28 6 6.5 6c1.2 0 2.39.25 3.5.72v9.9z" +}, "2")], 'AutoStoriesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutofpsSelect.js b/packages/material-ui-icons/lib/esm/AutofpsSelect.js new file mode 100644 index 00000000000000..a8bfee02d0868e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutofpsSelect.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" +}, "1")], 'AutofpsSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutofpsSelectOutlined.js b/packages/material-ui-icons/lib/esm/AutofpsSelectOutlined.js new file mode 100644 index 00000000000000..d0453f18e9c8f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutofpsSelectOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" +}, "1")], 'AutofpsSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutofpsSelectRounded.js b/packages/material-ui-icons/lib/esm/AutofpsSelectRounded.js new file mode 100644 index 00000000000000..820ae45e958a1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutofpsSelectRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.03 6.3h-.06l-1.02 2.89h2.1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 22c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm8-7c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm0-10c.38 0 .71.23.85.59l2.12 5.65c.14.37-.13.76-.53.76-.24 0-.45-.15-.53-.38l-.49-1.41h-2.83l-.5 1.41c-.08.23-.29.38-.53.38-.39 0-.67-.39-.53-.76l2.12-5.65c.14-.36.47-.59.85-.59zM8 22c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm4 0c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm3-4v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1z" +}, "1")], 'AutofpsSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutofpsSelectSharp.js b/packages/material-ui-icons/lib/esm/AutofpsSelectSharp.js new file mode 100644 index 00000000000000..79299673af6b67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutofpsSelectSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" +}, "1")], 'AutofpsSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutofpsSelectTwoTone.js b/packages/material-ui-icons/lib/esm/AutofpsSelectTwoTone.js new file mode 100644 index 00000000000000..dd2d05b92f8667 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutofpsSelectTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" +}, "1")], 'AutofpsSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Autorenew.js b/packages/material-ui-icons/lib/esm/Autorenew.js new file mode 100644 index 00000000000000..8249d8a1c5a808 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Autorenew.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" +}), 'Autorenew'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutorenewOutlined.js b/packages/material-ui-icons/lib/esm/AutorenewOutlined.js new file mode 100644 index 00000000000000..a68fad0c3a1e40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutorenewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" +}), 'AutorenewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutorenewRounded.js b/packages/material-ui-icons/lib/esm/AutorenewRounded.js new file mode 100644 index 00000000000000..beade2cfaff498 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutorenewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V4c-4.42 0-8 3.58-8 8 0 1.04.2 2.04.57 2.95.27.67 1.13.85 1.64.34.27-.27.38-.68.23-1.04C6.15 13.56 6 12.79 6 12c0-3.31 2.69-6 6-6zm5.79 2.71c-.27.27-.38.69-.23 1.04.28.7.44 1.46.44 2.25 0 3.31-2.69 6-6 6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.35V20c4.42 0 8-3.58 8-8 0-1.04-.2-2.04-.57-2.95-.27-.67-1.13-.85-1.64-.34z" +}), 'AutorenewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutorenewSharp.js b/packages/material-ui-icons/lib/esm/AutorenewSharp.js new file mode 100644 index 00000000000000..07d1e75045c916 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutorenewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" +}), 'AutorenewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AutorenewTwoTone.js b/packages/material-ui-icons/lib/esm/AutorenewTwoTone.js new file mode 100644 index 00000000000000..2a58286659759e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AutorenewTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" +}), 'AutorenewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AvTimer.js b/packages/material-ui-icons/lib/esm/AvTimer.js new file mode 100644 index 00000000000000..be638a2bdd62cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AvTimer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" +}), 'AvTimer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AvTimerOutlined.js b/packages/material-ui-icons/lib/esm/AvTimerOutlined.js new file mode 100644 index 00000000000000..9c06ce8861ebfe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AvTimerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" +}), 'AvTimerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AvTimerRounded.js b/packages/material-ui-icons/lib/esm/AvTimerRounded.js new file mode 100644 index 00000000000000..c59aac5376cdf1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AvTimerRounded.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "12", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "12", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 3c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-.92c3.31.48 5.87 3.25 6 6.66.14 3.85-3.03 7.2-6.88 7.26C8.19 19.06 5 15.91 5 12c0-1.68.59-3.22 1.58-4.42l4.71 4.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L7.26 5.46c-.38-.38-1-.39-1.4-.02C4.1 7.07 3 9.4 3 12c0 5.04 4.14 9.12 9.21 9 4.7-.11 8.63-4.01 8.78-8.71C21.16 7.19 17.07 3 12 3z" +}, "3")], 'AvTimerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AvTimerSharp.js b/packages/material-ui-icons/lib/esm/AvTimerSharp.js new file mode 100644 index 00000000000000..afa814017b04b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AvTimerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" +}), 'AvTimerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/AvTimerTwoTone.js b/packages/material-ui-icons/lib/esm/AvTimerTwoTone.js new file mode 100644 index 00000000000000..9c70b7bff1a6a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/AvTimerTwoTone.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9h-1v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "12", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "12", + r: "1" +}, "3")], 'AvTimerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BabyChangingStation.js b/packages/material-ui-icons/lib/esm/BabyChangingStation.js new file mode 100644 index 00000000000000..f0c5124f0c782f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BabyChangingStation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63c.38-1.12 1.64-1.68 2.72-1.19l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1H9v2h2v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-3h-2v2h-2v-1z" +}), 'BabyChangingStation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BabyChangingStationOutlined.js b/packages/material-ui-icons/lib/esm/BabyChangingStationOutlined.js new file mode 100644 index 00000000000000..96b89619354680 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BabyChangingStationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63c.38-1.12 1.64-1.68 2.72-1.19l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1H9v2h2v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-3h-2v2h-2v-1z" +}), 'BabyChangingStationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BabyChangingStationRounded.js b/packages/material-ui-icons/lib/esm/BabyChangingStationRounded.js new file mode 100644 index 00000000000000..ea24a5453c8db1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BabyChangingStationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9c0 .55-.45 1-1 1h-1.58c-.28 0-.55-.06-.8-.17l-2.3-1.01L7 12.75V21c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-8.67c0-.22.04-.44.11-.65l1.48-4.32c.37-1.11 1.63-1.67 2.71-1.18l4.15 1.83L13 8c.55 0 1 .45 1 1zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm2 18h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zm9.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v1h-2v-1z" +}), 'BabyChangingStationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BabyChangingStationSharp.js b/packages/material-ui-icons/lib/esm/BabyChangingStationSharp.js new file mode 100644 index 00000000000000..3ffec51f671cac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BabyChangingStationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63C4.86 6.53 5.63 6.01 6.46 6c.28 0 .56.05.84.18l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 13v-2H9v2h2v3h6v-5h-2v2h-2z" +}), 'BabyChangingStationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BabyChangingStationTwoTone.js b/packages/material-ui-icons/lib/esm/BabyChangingStationTwoTone.js new file mode 100644 index 00000000000000..08f65ef854a5e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BabyChangingStationTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63c.38-1.12 1.64-1.68 2.72-1.19l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 12c0-.55-.45-1-1-1H9v2h2v1c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-3h-2v2h-2v-1z" +}), 'BabyChangingStationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Backpack.js b/packages/material-ui-icons/lib/esm/Backpack.js new file mode 100644 index 00000000000000..b0a52e7ac9d684 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Backpack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V8c0-1.86 1.28-3.41 3-3.86V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86zM6 12v2h10v2h2v-4H6z" +}), 'Backpack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackpackOutlined.js b/packages/material-ui-icons/lib/esm/BackpackOutlined.js new file mode 100644 index 00000000000000..dc32b935ee9d18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackpackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4.14V2h-3v2h-4V2H7v2.14c-1.72.45-3 2-3 3.86v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.86-1.28-3.41-3-3.86zM18 20H6V8c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v12zm-1.5-8v4h-2v-2h-7v-2h9z" +}), 'BackpackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackpackRounded.js b/packages/material-ui-icons/lib/esm/BackpackRounded.js new file mode 100644 index 00000000000000..43757f8e02f8bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackpackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8v12c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V8c0-1.86 1.28-3.41 3-3.86V3.5C7 2.67 7.67 2 8.5 2s1.5.67 1.5 1.5V4h4v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.64c1.72.45 3 2 3 3.86zM6 13c0 .55.45 1 1 1h9v1c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1z" +}), 'BackpackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackpackSharp.js b/packages/material-ui-icons/lib/esm/BackpackSharp.js new file mode 100644 index 00000000000000..8c0d737f956a40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackpackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8v14H4V8c0-1.86 1.28-3.41 3-3.86V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86zM6 12v2h10v2h2v-4H6z" +}), 'BackpackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackpackTwoTone.js b/packages/material-ui-icons/lib/esm/BackpackTwoTone.js new file mode 100644 index 00000000000000..84e409be396026 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackpackTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 20H6V8c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v12zM7.5 12v2h7v2h2v-4h-9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 4.14V2h-3v2h-4V2H7v2.14c-1.72.45-3 2-3 3.86v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.86-1.28-3.41-3-3.86zM18 20H6V8c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v12zM7.5 12v2h7v2h2v-4h-9z" +}, "1")], 'BackpackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Backspace.js b/packages/material-ui-icons/lib/esm/Backspace.js new file mode 100644 index 00000000000000..fdd30f67fd38ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Backspace.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z" +}), 'Backspace'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackspaceOutlined.js b/packages/material-ui-icons/lib/esm/BackspaceOutlined.js new file mode 100644 index 00000000000000..6ae971c4e6a290 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackspaceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z" +}), 'BackspaceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackspaceRounded.js b/packages/material-ui-icons/lib/esm/BackspaceRounded.js new file mode 100644 index 00000000000000..5cffca8c91237e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackspaceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L.37 11.45c-.22.34-.22.77 0 1.11l5.04 7.56c.36.52.9.88 1.59.88h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3.7 13.3c-.39.39-1.02.39-1.41 0L14 13.41l-2.89 2.89c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L12.59 12 9.7 9.11a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L14 10.59l2.89-2.89c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L15.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z" +}), 'BackspaceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackspaceSharp.js b/packages/material-ui-icons/lib/esm/BackspaceSharp.js new file mode 100644 index 00000000000000..2a774005664d65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackspaceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 3H6l-6 9 6 9h18V3zm-5 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z" +}), 'BackspaceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackspaceTwoTone.js b/packages/material-ui-icons/lib/esm/BackspaceTwoTone.js new file mode 100644 index 00000000000000..b8f8322804ce1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackspaceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.06 5 2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59 17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z" +}, "1")], 'BackspaceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Backup.js b/packages/material-ui-icons/lib/esm/Backup.js new file mode 100644 index 00000000000000..22f3e02f048cdb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Backup.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" +}), 'Backup'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupOutlined.js b/packages/material-ui-icons/lib/esm/BackupOutlined.js new file mode 100644 index 00000000000000..9b489d35b8ed72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" +}), 'BackupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupRounded.js b/packages/material-ui-icons/lib/esm/BackupRounded.js new file mode 100644 index 00000000000000..69ea5d2af2d07f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11c0-3.87-3.13-7-7-7-3.22 0-5.93 2.18-6.74 5.15C2.82 9.71 1 11.89 1 14.5 1 17.54 3.46 20 6.5 20h12c2.49-.01 4.5-2.03 4.5-4.52 0-2.33-1.75-4.22-4-4.48zm-6 2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9.21c-.45 0-.67-.54-.35-.85l2.79-2.79c.2-.2.51-.2.71 0l2.79 2.79c.31.31.09.85-.35.85H13z" +}), 'BackupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupSharp.js b/packages/material-ui-icons/lib/esm/BackupSharp.js new file mode 100644 index 00000000000000..f285d0ca6e03be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" +}), 'BackupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupTable.js b/packages/material-ui-icons/lib/esm/BackupTable.js new file mode 100644 index 00000000000000..37770fb9fb8a8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupTable.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6v14H6v2h14c1.1 0 2-.9 2-2V6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z" +}, "1")], 'BackupTable'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupTableOutlined.js b/packages/material-ui-icons/lib/esm/BackupTableOutlined.js new file mode 100644 index 00000000000000..b8cdadbc007cca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupTableOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6v14H6v2h14c1.1 0 2-.9 2-2V6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z" +}, "1")], 'BackupTableOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupTableRounded.js b/packages/material-ui-icons/lib/esm/BackupTableRounded.js new file mode 100644 index 00000000000000..f9f44180f0845d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupTableRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 7v13h13c.55 0 1 .45 1 1s-.45 1-1 1H4c-1.1 0-2-.9-2-2V7c0-.55.45-1 1-1s1 .45 1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 4v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm9 7h5v5h-5v-5zm-7 0h5v5H8v-5zm0-7h12v5H8V4z" +}, "1")], 'BackupTableRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupTableSharp.js b/packages/material-ui-icons/lib/esm/BackupTableSharp.js new file mode 100644 index 00000000000000..504b461ea96f8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupTableSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6v14H6v2h16V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H2v16h16V2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z" +}, "1")], 'BackupTableSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupTableTwoTone.js b/packages/material-ui-icons/lib/esm/BackupTableTwoTone.js new file mode 100644 index 00000000000000..a8aea7d80d9fb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupTableTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 11h5v5h-5zm-7 0h5v5H4zm0-7h12v5H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6v14H6v2h14c1.1 0 2-.9 2-2V6h-2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 16V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM4 4h12v5H4V4zm5 12H4v-5h5v5zm2-5h5v5h-5v-5z" +}, "2")], 'BackupTableTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BackupTwoTone.js b/packages/material-ui-icons/lib/esm/BackupTwoTone.js new file mode 100644 index 00000000000000..c1015ef6f8cb4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BackupTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" +}, "1")], 'BackupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Badge.js b/packages/material-ui-icons/lib/esm/Badge.js new file mode 100644 index 00000000000000..f7241e23b22c72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Badge.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.75c0-1 2-1.5 3-1.5s3 .5 3 1.5V18zm1-9h-2V4h2v5zm5 7.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z" +}), 'Badge'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BadgeOutlined.js b/packages/material-ui-icons/lib/esm/BadgeOutlined.js new file mode 100644 index 00000000000000..2e76fa5968e204 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BadgeOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 12h4v1.5h-4zm0 3h4v1.5h-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-9 0V4h2v5h-2V7zm9 13H4V9h5c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2h5v11z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.08 16.18c-.64-.28-1.34-.43-2.08-.43s-1.44.15-2.08.43c-.56.24-.92.78-.92 1.39V18h6v-.43c0-.61-.36-1.15-.92-1.39z" +}, "3")], 'BadgeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BadgeRounded.js b/packages/material-ui-icons/lib/esm/BadgeRounded.js new file mode 100644 index 00000000000000..a0921be90646d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BadgeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm1-9h-2V4h2v5zm4.25 7.5h-2.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.5c.41 0 .75.34.75.75s-.34.75-.75.75zm0-3h-2.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.5c.41 0 .75.34.75.75s-.34.75-.75.75z" +}), 'BadgeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BadgeSharp.js b/packages/material-ui-icons/lib/esm/BadgeSharp.js new file mode 100644 index 00000000000000..5202374e769e5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BadgeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7h-7V2H9v5H2v15h20V7zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm1-9h-2V4h2v5zm5 7.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z" +}), 'BadgeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BadgeTwoTone.js b/packages/material-ui-icons/lib/esm/BadgeTwoTone.js new file mode 100644 index 00000000000000..79c77f3551ff62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BadgeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 13.5h4V12h-4v1.5zm0 3h4V15h-4v1.5zM20 7h-5V4c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-9-3h2v5h-2V4zm9 16H4V9h5c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2h5v11zM9 15c.83 0 1.5-.67 1.5-1.5S9.83 12 9 12s-1.5.67-1.5 1.5S8.17 15 9 15zm2.08 1.18c-.64-.28-1.34-.43-2.08-.43s-1.44.15-2.08.43c-.56.24-.92.78-.92 1.39V18h6v-.43c0-.61-.36-1.15-.92-1.39z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 11h-2c-1.1 0-2-.9-2-2H4v11h16V9h-5c0 1.1-.9 2-2 2zm-4 1c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm6-1.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z", + opacity: ".3" +}, "1")], 'BadgeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BakeryDining.js b/packages/material-ui-icons/lib/esm/BakeryDining.js new file mode 100644 index 00000000000000..4f867fcafc3dc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BakeryDining.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M19.28 16.34c-1.21-.89-1.82-1.34-1.82-1.34s.32-.59.96-1.78c.38-.59 1.22-.59 1.6 0l.81 1.26c.19.3.21.68.06 1l-.22.47c-.25.54-.91.72-1.39.39zm-14.56 0c-.48.33-1.13.15-1.39-.38l-.23-.47c-.15-.32-.13-.7.06-1l.81-1.26c.38-.59 1.22-.59 1.6 0 .65 1.18.97 1.77.97 1.77s-.61.45-1.82 1.34zm10.64-6.97c.09-.68.73-1.06 1.27-.75l1.59.9c.46.26.63.91.36 1.41L16.5 15h-1.8l.66-5.63zm-6.73 0L9.3 15H7.5l-2.09-4.08c-.27-.5-.1-1.15.36-1.41l1.59-.9c.53-.3 1.18.08 1.27.76zM13.8 15h-3.6l-.74-6.88c-.07-.59.35-1.12.88-1.12h3.3c.53 0 .94.53.88 1.12L13.8 15z" +}), 'BakeryDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BakeryDiningOutlined.js b/packages/material-ui-icons/lib/esm/BakeryDiningOutlined.js new file mode 100644 index 00000000000000..40ebdeecad7a32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BakeryDiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 10.94c.13-.32.1-.23.15-.39.3-1.21-.34-2.47-1.5-2.93l-2.01-.8c-.46-.18-.95-.21-1.41-.12-.11-.33-.29-.63-.52-.89-.48-.52-1.15-.81-1.85-.81h-2.71c-.71 0-1.38.29-1.85.81-.24.26-.42.56-.53.88-.46-.09-.95-.06-1.41.12l-2.01.8c-1.16.46-1.8 1.72-1.5 2.93l.15.38C1.1 15.55 1 15.55 1 16.38c0 .91.46 1.74 1.24 2.22 1.42.88 2.49.14 4-.61h11.53c1.52.76 1.86 1.01 2.63 1.01 1 0 2.61-.77 2.61-2.61-.01-.85-.13-.88-2.51-5.45zm-.38 5.99-1.68-.84 1.08-2.7 1.41 2.71c.28.53-.29 1.09-.81.83zm-5.03-.94.62-6.9c.03-.33.37-.54.68-.42l2.01.8c.22.09.34.31.31.54l-2.4 5.98h-1.22zm-7.41 0-2.4-5.98c-.03-.23.09-.45.31-.54l2.01-.8c.31-.12.65.08.68.42l.62 6.9H7.68zm-4.61.11 1.41-2.72 1.08 2.71-1.68.84c-.52.26-1.09-.3-.81-.83zm7.08-8.56c-.03-.31.23-.54.5-.54h2.71c.27 0 .53.23.5.54l-.77 8.45h-2.17l-.77-8.45z" +}), 'BakeryDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BakeryDiningRounded.js b/packages/material-ui-icons/lib/esm/BakeryDiningRounded.js new file mode 100644 index 00000000000000..ab822371663ab6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BakeryDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.77 8.55-1.17-.47c-.62-.25-1.31.17-1.37.84L15.49 17H17l2.6-6.5c.31-.77-.06-1.65-.83-1.95zM6.4 8.08l-1.17.47c-.77.3-1.14 1.18-.83 1.95L7 17h1.5l-.74-8.08c-.06-.67-.74-1.09-1.36-.84zM13.36 6h-2.71c-.89 0-1.58.76-1.5 1.64l.85 9.35h4l.85-9.36c.08-.87-.61-1.63-1.49-1.63zM3.18 13.72l-1 1.93c-.19.36-.23.78-.12 1.19.29 1.01 1.43 1.41 2.38.94l1.05-.52-1.4-3.49c-.16-.4-.71-.43-.91-.05zm18.64 1.93-1-1.93c-.2-.38-.75-.35-.91.04l-1.4 3.49 1.05.52c.94.47 2.09.07 2.38-.94.11-.4.07-.82-.12-1.18z" +}), 'BakeryDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BakeryDiningSharp.js b/packages/material-ui-icons/lib/esm/BakeryDiningSharp.js new file mode 100644 index 00000000000000..48aac4d3cac19d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BakeryDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.36 7.58-.86 9.41H17l3.16-7.89zM3.84 9.1 7 16.99h1.5l-.86-9.41zM10 16.99h4L15 6H9zm10.32-4.24-1.81 4.5 1.95.96 2.06-1.22zM1.48 16.99l2.06 1.22 1.95-.96-1.81-4.5z" +}), 'BakeryDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BakeryDiningTwoTone.js b/packages/material-ui-icons/lib/esm/BakeryDiningTwoTone.js new file mode 100644 index 00000000000000..ff88108eaf895b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BakeryDiningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m7.6 8.67-2.01.8c-.22.09-.34.31-.31.54l2.4 5.98h1.23l-.62-6.9c-.04-.34-.38-.55-.69-.42zM3.07 16.1c-.27.53.29 1.09.82.83l1.68-.84-1.08-2.71-1.42 2.72zm10.29-9.11h-2.71c-.27 0-.53.23-.5.54l.77 8.45h2.17l.77-8.45c.02-.31-.23-.54-.5-.54zm5.05 2.48-2.01-.8c-.31-.12-.65.09-.68.42l-.62 6.9h1.23l2.4-5.98c.02-.23-.1-.45-.32-.54zm1.11 3.92-1.08 2.7 1.68.84c.52.26 1.09-.3.82-.83l-1.42-2.71z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.5 10.94c.13-.32.1-.23.15-.39.3-1.21-.34-2.47-1.5-2.93l-2.01-.8c-.46-.18-.95-.21-1.41-.12-.11-.33-.29-.63-.52-.89-.48-.52-1.15-.81-1.85-.81h-2.71c-.71 0-1.38.29-1.85.81-.24.26-.42.56-.53.88-.46-.09-.95-.06-1.41.12l-2.01.8c-1.16.46-1.8 1.72-1.5 2.93l.15.38C1.1 15.55 1 15.55 1 16.38c0 .91.46 1.74 1.24 2.22 1.42.88 2.49.14 4-.61h11.53c1.52.76 1.86 1.01 2.63 1.01 1 0 2.61-.77 2.61-2.61-.01-.85-.13-.88-2.51-5.45zM3.88 16.93c-.53.26-1.09-.3-.82-.83l1.41-2.72 1.08 2.71-1.67.84zm3.8-.94-2.4-5.98c-.03-.23.09-.45.31-.54l2.01-.8c.31-.12.65.08.68.42l.62 6.9H7.68zm5.41 0h-2.17l-.77-8.45c-.03-.31.23-.54.5-.54h2.71c.27 0 .53.23.5.54l-.77 8.45zm3.23 0h-1.23l.62-6.9c.03-.33.37-.54.68-.42l2.01.8c.22.09.34.31.31.54l-2.39 5.98zm3.8.94-1.68-.84 1.08-2.7 1.41 2.71c.28.53-.29 1.09-.81.83z" +}, "1")], 'BakeryDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Balcony.js b/packages/material-ui-icons/lib/esm/Balcony.js new file mode 100644 index 00000000000000..a07cb4edb7a8e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Balcony.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" +}), 'Balcony'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BalconyOutlined.js b/packages/material-ui-icons/lib/esm/BalconyOutlined.js new file mode 100644 index 00000000000000..792188c2f6d8b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BalconyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" +}), 'BalconyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BalconyRounded.js b/packages/material-ui-icons/lib/esm/BalconyRounded.js new file mode 100644 index 00000000000000..b05da6d2b3b64a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BalconyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 14.27V10c0-4.42-3.58-8-8-8s-8 3.58-8 8v4.27c-.6.34-1 .99-1 1.73v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-.74-.4-1.39-1-1.73zM7 20H5v-4h2v4zm4 0H9v-4h2v4zm0-6H6v-4c0-2.97 2.16-5.44 5-5.92V14zm2-9.92c2.84.48 5 2.94 5 5.92v4h-5V4.08zM15 20h-2v-4h2v4zm4 0h-2v-4h2v4zM8 11c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm8 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}), 'BalconyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BalconySharp.js b/packages/material-ui-icons/lib/esm/BalconySharp.js new file mode 100644 index 00000000000000..449a62ec37aa65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BalconySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" +}), 'BalconySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BalconyTwoTone.js b/packages/material-ui-icons/lib/esm/BalconyTwoTone.js new file mode 100644 index 00000000000000..1789c422c0bcfa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BalconyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 16H5v4h2v-4zm4 0H9v4h2v-4zm-5-6v4h5V4.08C8.16 4.56 6 7.03 6 10zm4 2H8v-2h2v2zm3-7.92V14h5v-4c0-2.97-2.16-5.44-5-5.92zM16 12h-2v-2h2v2zm-1 4h-2v4h2v-4zm4 0h-2v4h2v-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" +}, "1")], 'BalconyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Ballot.js b/packages/material-ui-icons/lib/esm/Ballot.js new file mode 100644 index 00000000000000..c68256d7534ad6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Ballot.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M13 9.5h5v-2h-5v2zm0 7h5v-2h-5v2zm6 4.5H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2zM6 11h5V6H6v5zm1-4h3v3H7V7zM6 18h5v-5H6v5zm1-4h3v3H7v-3z" +}), 'Ballot'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BallotOutlined.js b/packages/material-ui-icons/lib/esm/BallotOutlined.js new file mode 100644 index 00000000000000..6f271a6e95bd3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BallotOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z" +}), 'BallotOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BallotRounded.js b/packages/material-ui-icons/lib/esm/BallotRounded.js new file mode 100644 index 00000000000000..e383c0047eb464 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BallotRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9.5h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm0 7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm5 4.5H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2zM7 11h3c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm0-4h3v3H7V7zm0 11h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm0-4h3v3H7v-3z" +}), 'BallotRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BallotSharp.js b/packages/material-ui-icons/lib/esm/BallotSharp.js new file mode 100644 index 00000000000000..5027e912565394 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BallotSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 9.5h5v-2h-5v2zm0 7h5v-2h-5v2zm8 4.5H3V3h18v18zM6 11h5V6H6v5zm1-4h3v3H7V7zM6 18h5v-5H6v5zm1-4h3v3H7v-3z" +}), 'BallotSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BallotTwoTone.js b/packages/material-ui-icons/lib/esm/BallotTwoTone.js new file mode 100644 index 00000000000000..f27f9ff2d20d0a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BallotTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 14h3v3H7zm0-7h3v3H7zM5 19h14V5H5v14zm8-11.5h5v2h-5v-2zm0 7h5v2h-5v-2zM6 6h5v5H6V6zm0 7h5v5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z" +}, "1")], 'BallotTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BarChart.js b/packages/material-ui-icons/lib/esm/BarChart.js new file mode 100644 index 00000000000000..6db63ed10f1a67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BarChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 9.2h3V19H5zM10.6 5h2.8v14h-2.8zm5.6 8H19v6h-2.8z" +}), 'BarChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BarChartOutlined.js b/packages/material-ui-icons/lib/esm/BarChartOutlined.js new file mode 100644 index 00000000000000..098f17835534d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BarChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z" +}), 'BarChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BarChartRounded.js b/packages/material-ui-icons/lib/esm/BarChartRounded.js new file mode 100644 index 00000000000000..7bdfb737bfd477 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BarChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.4 9.2h.2c.77 0 1.4.63 1.4 1.4v7c0 .77-.63 1.4-1.4 1.4h-.2c-.77 0-1.4-.63-1.4-1.4v-7c0-.77.63-1.4 1.4-1.4zM12 5c.77 0 1.4.63 1.4 1.4v11.2c0 .77-.63 1.4-1.4 1.4-.77 0-1.4-.63-1.4-1.4V6.4c0-.77.63-1.4 1.4-1.4zm5.6 8c.77 0 1.4.63 1.4 1.4v3.2c0 .77-.63 1.4-1.4 1.4-.77 0-1.4-.63-1.4-1.4v-3.2c0-.77.63-1.4 1.4-1.4z" +}), 'BarChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BarChartSharp.js b/packages/material-ui-icons/lib/esm/BarChartSharp.js new file mode 100644 index 00000000000000..425ed0b0c79953 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BarChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z" +}), 'BarChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BarChartTwoTone.js b/packages/material-ui-icons/lib/esm/BarChartTwoTone.js new file mode 100644 index 00000000000000..e6ddbf42754755 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BarChartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 9.2h3V19H5zM16.2 13H19v6h-2.8zm-5.6-8h2.8v14h-2.8z" +}), 'BarChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatchPrediction.js b/packages/material-ui-icons/lib/esm/BatchPrediction.js new file mode 100644 index 00000000000000..f67d1409ac47b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatchPrediction.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" +}), 'BatchPrediction'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatchPredictionOutlined.js b/packages/material-ui-icons/lib/esm/BatchPredictionOutlined.js new file mode 100644 index 00000000000000..2967c5308f95b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatchPredictionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" +}), 'BatchPredictionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatchPredictionRounded.js b/packages/material-ui-icons/lib/esm/BatchPredictionRounded.js new file mode 100644 index 00000000000000..7d89a0f3fe7960 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatchPredictionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-5 12.5c-.55 0-1-.45-1-1V19h2v.5c0 .55-.45 1-1 1zm1-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" +}), 'BatchPredictionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatchPredictionSharp.js b/packages/material-ui-icons/lib/esm/BatchPredictionSharp.js new file mode 100644 index 00000000000000..ba0fbdfcb9e99b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatchPredictionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8H5v14h14V8zm-6 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6V5h12v1.5zm-1-3H7V2h10v1.5z" +}), 'BatchPredictionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatchPredictionTwoTone.js b/packages/material-ui-icons/lib/esm/BatchPredictionTwoTone.js new file mode 100644 index 00000000000000..7682416b6b5b39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatchPredictionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 20.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 8H7c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-4 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6C6 5.67 6.67 5 7.5 5h9c.83 0 1.5.67 1.5 1.5zm-1-3H7C7 2.67 7.67 2 8.5 2h7c.83 0 1.5.67 1.5 1.5z" +}, "1")], 'BatchPredictionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bathroom.js b/packages/material-ui-icons/lib/esm/Bathroom.js new file mode 100644 index 00000000000000..2011383bbf3601 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bathroom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-3H7v-1c0-2.76 2.24-5 5-5s5 2.24 5 5v1z" +}), 'Bathroom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathroomOutlined.js b/packages/material-ui-icons/lib/esm/BathroomOutlined.js new file mode 100644 index 00000000000000..5a32531968c1cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathroomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 14c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm4 1c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3-7.5c-1.76 0-3.22 1.31-3.46 3h6.93c-.25-1.69-1.71-3-3.47-3M12 6c2.76 0 5 2.24 5 5v1H7v-1c0-2.76 2.24-5 5-5zM9 18c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm5-14H4v16h16V4m0-2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16z" +}), 'BathroomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathroomRounded.js b/packages/material-ui-icons/lib/esm/BathroomRounded.js new file mode 100644 index 00000000000000..ee164e0fb10f2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathroomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c0-2.76 2.24-5 5-5s5 2.24 5 5c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1z" +}), 'BathroomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathroomSharp.js b/packages/material-ui-icons/lib/esm/BathroomSharp.js new file mode 100644 index 00000000000000..215dfb246612fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathroomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-3H7v-1c0-2.76 2.24-5 5-5s5 2.24 5 5v1z" +}), 'BathroomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathroomTwoTone.js b/packages/material-ui-icons/lib/esm/BathroomTwoTone.js new file mode 100644 index 00000000000000..c03864e847a7c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathroomTwoTone.js @@ -0,0 +1,34 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zm5-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c0-2.76 2.24-5 5-5s5 2.24 5 5v1H7v-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "14", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "14", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "17", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M17 11c0-2.76-2.24-5-5-5s-5 2.24-5 5v1h10v-1zm-8.46-.5c.24-1.69 1.7-3 3.46-3s3.22 1.31 3.47 3H8.54z" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "17", + r: "1" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "14", + r: "1" +}, "7"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "1" +}, "8")], 'BathroomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bathtub.js b/packages/material-ui-icons/lib/esm/Bathtub.js new file mode 100644 index 00000000000000..f7207aeafe09a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bathtub.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "7", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6h-2z" +}, "1")], 'Bathtub'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathtubOutlined.js b/packages/material-ui-icons/lib/esm/BathtubOutlined.js new file mode 100644 index 00000000000000..85335ad0656917 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathtubOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "7", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6h-2zm0 6H4v-4h16v4z" +}, "1")], 'BathtubOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathtubRounded.js b/packages/material-ui-icons/lib/esm/BathtubRounded.js new file mode 100644 index 00000000000000..63edd2834448ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathtubRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "7", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 13h-1V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H3c-.55 0-1 .45-1 1v5c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-5c0-.55-.45-1-1-1z" +}, "1")], 'BathtubRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathtubSharp.js b/packages/material-ui-icons/lib/esm/BathtubSharp.js new file mode 100644 index 00000000000000..072b808d680240 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathtubSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "7", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v8h2v1h16v-1h2v-8h-2z" +}, "1")], 'BathtubSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BathtubTwoTone.js b/packages/material-ui-icons/lib/esm/BathtubTwoTone.js new file mode 100644 index 00000000000000..f5c89658234ec3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BathtubTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 15h16v4H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "7", + r: "2" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25c.15-.15.36-.24.58-.24.46 0 .83.37.83.83V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.31-.15-.65-.23-1-.23C6 10.01 5 11.01 5 12.25V13H2v6c0 1.1.9 2 2 2 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 1.1 0 2-.9 2-2v-6h-2zm0 6H4v-4h16v4z" +}, "2")], 'BathtubTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery20.js b/packages/material-ui-icons/lib/esm/Battery20.js new file mode 100644 index 00000000000000..c1bf05af7aa508 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery20.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" + })] +}), 'Battery20'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery20Outlined.js b/packages/material-ui-icons/lib/esm/Battery20Outlined.js new file mode 100644 index 00000000000000..84c833b0bd4f6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery20Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" + })] +}), 'Battery20Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery20Rounded.js b/packages/material-ui-icons/lib/esm/Battery20Rounded.js new file mode 100644 index 00000000000000..188fdf02d44835 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery20Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" + })] +}), 'Battery20Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery20Sharp.js b/packages/material-ui-icons/lib/esm/Battery20Sharp.js new file mode 100644 index 00000000000000..aa045f08f5253d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery20Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M7 17v5h10v-5H7z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v13h10V4z" + })] +}), 'Battery20Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery20TwoTone.js b/packages/material-ui-icons/lib/esm/Battery20TwoTone.js new file mode 100644 index 00000000000000..df86f9c2799c30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery20TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z" + })] +}), 'Battery20TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery30.js b/packages/material-ui-icons/lib/esm/Battery30.js new file mode 100644 index 00000000000000..dd9bb3dde6de64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery30.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" + })] +}), 'Battery30'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery30Outlined.js b/packages/material-ui-icons/lib/esm/Battery30Outlined.js new file mode 100644 index 00000000000000..eb1a3272789e59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery30Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" + })] +}), 'Battery30Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery30Rounded.js b/packages/material-ui-icons/lib/esm/Battery30Rounded.js new file mode 100644 index 00000000000000..5bc3ad6b787ce4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery30Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" + })] +}), 'Battery30Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery30Sharp.js b/packages/material-ui-icons/lib/esm/Battery30Sharp.js new file mode 100644 index 00000000000000..eec13ce489db5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery30Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v11h10V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 15v7h10v-7H7z" + })] +}), 'Battery30Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery30TwoTone.js b/packages/material-ui-icons/lib/esm/Battery30TwoTone.js new file mode 100644 index 00000000000000..e795161746378d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery30TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z" + })] +}), 'Battery30TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery50.js b/packages/material-ui-icons/lib/esm/Battery50.js new file mode 100644 index 00000000000000..0fe73dd27b8a27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery50.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" + })] +}), 'Battery50'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery50Outlined.js b/packages/material-ui-icons/lib/esm/Battery50Outlined.js new file mode 100644 index 00000000000000..ca228187537a62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery50Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" + })] +}), 'Battery50Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery50Rounded.js b/packages/material-ui-icons/lib/esm/Battery50Rounded.js new file mode 100644 index 00000000000000..7c4cdd67802ec3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery50Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" + })] +}), 'Battery50Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery50Sharp.js b/packages/material-ui-icons/lib/esm/Battery50Sharp.js new file mode 100644 index 00000000000000..21b5aef6d2e692 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery50Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v9h10V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 13v9h10v-9H7z" + })] +}), 'Battery50Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery50TwoTone.js b/packages/material-ui-icons/lib/esm/Battery50TwoTone.js new file mode 100644 index 00000000000000..2be92e29a69bbe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery50TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z" + })] +}), 'Battery50TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery60.js b/packages/material-ui-icons/lib/esm/Battery60.js new file mode 100644 index 00000000000000..6de5e3f00bcbb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery60.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" + })] +}), 'Battery60'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery60Outlined.js b/packages/material-ui-icons/lib/esm/Battery60Outlined.js new file mode 100644 index 00000000000000..7c94fb1a66b26d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery60Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" + })] +}), 'Battery60Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery60Rounded.js b/packages/material-ui-icons/lib/esm/Battery60Rounded.js new file mode 100644 index 00000000000000..fbef61c8989586 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery60Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" + })] +}), 'Battery60Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery60Sharp.js b/packages/material-ui-icons/lib/esm/Battery60Sharp.js new file mode 100644 index 00000000000000..ced9586f8a8609 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery60Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v7h10V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 11v11h10V11H7z" + })] +}), 'Battery60Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery60TwoTone.js b/packages/material-ui-icons/lib/esm/Battery60TwoTone.js new file mode 100644 index 00000000000000..895dba479551c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery60TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z" + })] +}), 'Battery60TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery80.js b/packages/material-ui-icons/lib/esm/Battery80.js new file mode 100644 index 00000000000000..af6329a6d954ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery80.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" + })] +}), 'Battery80'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery80Outlined.js b/packages/material-ui-icons/lib/esm/Battery80Outlined.js new file mode 100644 index 00000000000000..e5e909c3779989 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery80Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" + })] +}), 'Battery80Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery80Rounded.js b/packages/material-ui-icons/lib/esm/Battery80Rounded.js new file mode 100644 index 00000000000000..1d199d81a99418 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery80Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" + })] +}), 'Battery80Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery80Sharp.js b/packages/material-ui-icons/lib/esm/Battery80Sharp.js new file mode 100644 index 00000000000000..d678b6725b6ab8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery80Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v5h10V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 9v13h10V9H7z" + })] +}), 'Battery80Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery80TwoTone.js b/packages/material-ui-icons/lib/esm/Battery80TwoTone.js new file mode 100644 index 00000000000000..ee4781792c5ed6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery80TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z" + })] +}), 'Battery80TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery90.js b/packages/material-ui-icons/lib/esm/Battery90.js new file mode 100644 index 00000000000000..5339c2fc56f87b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery90.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" + })] +}), 'Battery90'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery90Outlined.js b/packages/material-ui-icons/lib/esm/Battery90Outlined.js new file mode 100644 index 00000000000000..583502ffc52f9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery90Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" + })] +}), 'Battery90Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery90Rounded.js b/packages/material-ui-icons/lib/esm/Battery90Rounded.js new file mode 100644 index 00000000000000..cdc1444cb4d95e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery90Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" + })] +}), 'Battery90Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery90Sharp.js b/packages/material-ui-icons/lib/esm/Battery90Sharp.js new file mode 100644 index 00000000000000..febb90d8121011 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery90Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v4h10V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 8v14h10V8H7z" + })] +}), 'Battery90Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Battery90TwoTone.js b/packages/material-ui-icons/lib/esm/Battery90TwoTone.js new file mode 100644 index 00000000000000..182d64ebe62211 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Battery90TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z" + })] +}), 'Battery90TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryAlert.js b/packages/material-ui-icons/lib/esm/BatteryAlert.js new file mode 100644 index 00000000000000..906fd0872de4fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryAlert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" +}), 'BatteryAlert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryAlertOutlined.js b/packages/material-ui-icons/lib/esm/BatteryAlertOutlined.js new file mode 100644 index 00000000000000..ef33bb45d9d591 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryAlertOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" +}), 'BatteryAlertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryAlertRounded.js b/packages/material-ui-icons/lib/esm/BatteryAlertRounded.js new file mode 100644 index 00000000000000..bb35f14d41ef33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryAlertRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3z" +}), 'BatteryAlertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryAlertSharp.js b/packages/material-ui-icons/lib/esm/BatteryAlertSharp.js new file mode 100644 index 00000000000000..33dab059b8d590 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryAlertSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h-3V2h-4v2H7v18h10V4zm-4 14h-2v-2h2v2zm0-4h-2V9h2v5z" +}), 'BatteryAlertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryAlertTwoTone.js b/packages/material-ui-icons/lib/esm/BatteryAlertTwoTone.js new file mode 100644 index 00000000000000..437df019bbbaeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryAlertTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z" +}), 'BatteryAlertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging20.js b/packages/material-ui-icons/lib/esm/BatteryCharging20.js new file mode 100644 index 00000000000000..e47695f24cf78c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging20.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging20'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging20Outlined.js b/packages/material-ui-icons/lib/esm/BatteryCharging20Outlined.js new file mode 100644 index 00000000000000..81dae77c7fa998 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging20Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging20Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging20Rounded.js b/packages/material-ui-icons/lib/esm/BatteryCharging20Rounded.js new file mode 100644 index 00000000000000..25bdf54906f7b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging20Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M11.94 18.24c-.24.45-.94.28-.94-.24v-1H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4l-.66 1.24z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging20Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging20Sharp.js b/packages/material-ui-icons/lib/esm/BatteryCharging20Sharp.js new file mode 100644 index 00000000000000..5c947a54dba40d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging20Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M11 20v-3H7v5h10v-5h-4.4L11 20z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v13h4v-2.5H9L13 7v5.5h2L12.6 17H17V4z" + })] +}), 'BatteryCharging20Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging20TwoTone.js b/packages/material-ui-icons/lib/esm/BatteryCharging20TwoTone.js new file mode 100644 index 00000000000000..432e66306ccc7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging20TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging20TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging30.js b/packages/material-ui-icons/lib/esm/BatteryCharging30.js new file mode 100644 index 00000000000000..520fef911123c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging30.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" + })] +}), 'BatteryCharging30'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging30Outlined.js b/packages/material-ui-icons/lib/esm/BatteryCharging30Outlined.js new file mode 100644 index 00000000000000..56dd0e61e83b3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging30Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" + })] +}), 'BatteryCharging30Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging30Rounded.js b/packages/material-ui-icons/lib/esm/BatteryCharging30Rounded.js new file mode 100644 index 00000000000000..af4d4edeecbf29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging30Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v9.17h2.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74l-.67 1.26H17V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M11.94 18.24c-.24.45-.94.28-.94-.24v-3.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07l-1.99 3.74z" + })] +}), 'BatteryCharging30Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging30Sharp.js b/packages/material-ui-icons/lib/esm/BatteryCharging30Sharp.js new file mode 100644 index 00000000000000..3725ebb5acc65f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging30Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v10.5h2L13 7v5.5h2l-1.07 2H17V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M11 20v-5.5H7V22h10v-7.5h-3.07L11 20z" + })] +}), 'BatteryCharging30Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging30TwoTone.js b/packages/material-ui-icons/lib/esm/BatteryCharging30TwoTone.js new file mode 100644 index 00000000000000..af0ead551e7483 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging30TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z" + })] +}), 'BatteryCharging30TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging50.js b/packages/material-ui-icons/lib/esm/BatteryCharging50.js new file mode 100644 index 00000000000000..64197218fa9214 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging50.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging50'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging50Outlined.js b/packages/material-ui-icons/lib/esm/BatteryCharging50Outlined.js new file mode 100644 index 00000000000000..918ac1cf8ddf73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging50Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging50Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging50Rounded.js b/packages/material-ui-icons/lib/esm/BatteryCharging50Rounded.js new file mode 100644 index 00000000000000..e6a07715234535 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging50Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M11.94 18.24c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74l.14-.26H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53l-2.53 4.74z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53l2.53-4.74c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74l-.14.26H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging50Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging50Sharp.js b/packages/material-ui-icons/lib/esm/BatteryCharging50Sharp.js new file mode 100644 index 00000000000000..82bdee6847f316 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging50Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M14.47 13.5L11 20v-5.5H9l.53-1H7V22h10v-8.5h-2.53z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v9.5h2.53L13 7v5.5h2l-.53 1H17V4z" + })] +}), 'BatteryCharging50Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging50TwoTone.js b/packages/material-ui-icons/lib/esm/BatteryCharging50TwoTone.js new file mode 100644 index 00000000000000..2431af0ff3c59a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging50TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z" + })] +}), 'BatteryCharging50TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging60.js b/packages/material-ui-icons/lib/esm/BatteryCharging60.js new file mode 100644 index 00000000000000..d36c0e01262062 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging60.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" + })] +}), 'BatteryCharging60'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging60Outlined.js b/packages/material-ui-icons/lib/esm/BatteryCharging60Outlined.js new file mode 100644 index 00000000000000..1fedb18083fb90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging60Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" + })] +}), 'BatteryCharging60Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging60Rounded.js b/packages/material-ui-icons/lib/esm/BatteryCharging60Rounded.js new file mode 100644 index 00000000000000..8cd4fcb5d7d717 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging60Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V11h3.87l1.19-2.24c.24-.45.94-.28.94.24v2h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h1.17c.38 0 .62.4.44.74l-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74L10.87 11H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" + })] +}), 'BatteryCharging60Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging60Sharp.js b/packages/material-ui-icons/lib/esm/BatteryCharging60Sharp.js new file mode 100644 index 00000000000000..d0c4a302c12c26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging60Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v7h3.87L13 7v4h4V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v11h10V11h-4v1.5z" + })] +}), 'BatteryCharging60Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging60TwoTone.js b/packages/material-ui-icons/lib/esm/BatteryCharging60TwoTone.js new file mode 100644 index 00000000000000..3823b99270a138 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging60TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z" + })] +}), 'BatteryCharging60TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging80.js b/packages/material-ui-icons/lib/esm/BatteryCharging80.js new file mode 100644 index 00000000000000..4450f11997fea9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging80.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" + })] +}), 'BatteryCharging80'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging80Outlined.js b/packages/material-ui-icons/lib/esm/BatteryCharging80Outlined.js new file mode 100644 index 00000000000000..487c2fadf8bf07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging80Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" + })] +}), 'BatteryCharging80Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging80Rounded.js b/packages/material-ui-icons/lib/esm/BatteryCharging80Rounded.js new file mode 100644 index 00000000000000..b590774eb5c269 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging80Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V9h4.93l.13-.24c.24-.45.94-.28.94.24h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h1.17c.38 0 .62.4.44.74l-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" + })] +}), 'BatteryCharging80Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging80Sharp.js b/packages/material-ui-icons/lib/esm/BatteryCharging80Sharp.js new file mode 100644 index 00000000000000..152836729f6745 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging80Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v5h4.93L13 7v2h4V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v13h10V9h-4v3.5z" + })] +}), 'BatteryCharging80Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging80TwoTone.js b/packages/material-ui-icons/lib/esm/BatteryCharging80TwoTone.js new file mode 100644 index 00000000000000..de15331f43dc5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging80TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z" + })] +}), 'BatteryCharging80TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging90.js b/packages/material-ui-icons/lib/esm/BatteryCharging90.js new file mode 100644 index 00000000000000..494a466bbe727a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging90.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" + })] +}), 'BatteryCharging90'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging90Outlined.js b/packages/material-ui-icons/lib/esm/BatteryCharging90Outlined.js new file mode 100644 index 00000000000000..703e7bbe6e2f77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging90Outlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" + })] +}), 'BatteryCharging90Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging90Rounded.js b/packages/material-ui-icons/lib/esm/BatteryCharging90Rounded.js new file mode 100644 index 00000000000000..0b977364fac663 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging90Rounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M7 20.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7v12.67zm2.39-6.91l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.38 0 .62.4.44.74l-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.37 0-.62-.4-.44-.74z" + })] +}), 'BatteryCharging90Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging90Sharp.js b/packages/material-ui-icons/lib/esm/BatteryCharging90Sharp.js new file mode 100644 index 00000000000000..7900201ce24c19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging90Sharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M17 4h-3V2h-4v2H7v4h5.47L13 7v1h4V4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v14h10V8h-4v4.5z" + })] +}), 'BatteryCharging90Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryCharging90TwoTone.js b/packages/material-ui-icons/lib/esm/BatteryCharging90TwoTone.js new file mode 100644 index 00000000000000..88aeac759776a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryCharging90TwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z" + }), /*#__PURE__*/_jsx("path", { + d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z" + })] +}), 'BatteryCharging90TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryChargingFull.js b/packages/material-ui-icons/lib/esm/BatteryChargingFull.js new file mode 100644 index 00000000000000..4d5e1a4a7edc52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryChargingFull.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" +}), 'BatteryChargingFull'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryChargingFullOutlined.js b/packages/material-ui-icons/lib/esm/BatteryChargingFullOutlined.js new file mode 100644 index 00000000000000..e7d7b139b1d5f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryChargingFullOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" +}), 'BatteryChargingFullOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryChargingFullRounded.js b/packages/material-ui-icons/lib/esm/BatteryChargingFullRounded.js new file mode 100644 index 00000000000000..7de37f2df4073a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryChargingFullRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-1.06 9.24-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.37 0 .62.4.44.74z" +}), 'BatteryChargingFullRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryChargingFullSharp.js b/packages/material-ui-icons/lib/esm/BatteryChargingFullSharp.js new file mode 100644 index 00000000000000..6e7abd650a2624 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryChargingFullSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h-3V2h-4v2H7v18h10V4zm-6 16v-5.5H9L13 7v5.5h2L11 20z" +}), 'BatteryChargingFullSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryChargingFullTwoTone.js b/packages/material-ui-icons/lib/esm/BatteryChargingFullTwoTone.js new file mode 100644 index 00000000000000..64ec7e7d2517aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryChargingFullTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" +}), 'BatteryChargingFullTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryFull.js b/packages/material-ui-icons/lib/esm/BatteryFull.js new file mode 100644 index 00000000000000..b5c091fa59402e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryFull.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryFull'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryFullOutlined.js b/packages/material-ui-icons/lib/esm/BatteryFullOutlined.js new file mode 100644 index 00000000000000..60062add583639 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryFullOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryFullOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryFullRounded.js b/packages/material-ui-icons/lib/esm/BatteryFullRounded.js new file mode 100644 index 00000000000000..d74b963c1aa6d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryFullRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryFullRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryFullSharp.js b/packages/material-ui-icons/lib/esm/BatteryFullSharp.js new file mode 100644 index 00000000000000..828f210432ee19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryFullSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h-3V2h-4v2H7v18h10V4z" +}), 'BatteryFullSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryFullTwoTone.js b/packages/material-ui-icons/lib/esm/BatteryFullTwoTone.js new file mode 100644 index 00000000000000..e55d8bd9784f82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryFullTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryFullTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatterySaver.js b/packages/material-ui-icons/lib/esm/BatterySaver.js new file mode 100644 index 00000000000000..77e172f0f99948 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatterySaver.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4h-2V2h-4v2H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" +}), 'BatterySaver'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatterySaverOutlined.js b/packages/material-ui-icons/lib/esm/BatterySaverOutlined.js new file mode 100644 index 00000000000000..44dad6b14e5809 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatterySaverOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4h-2V2h-4v2H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" +}), 'BatterySaverOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatterySaverRounded.js b/packages/material-ui-icons/lib/esm/BatterySaverRounded.js new file mode 100644 index 00000000000000..50b0c4f6f2fe80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatterySaverRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4h-2V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-2 10h-1v1c0 .55-.45 1-1 1s-1-.45-1-1v-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'BatterySaverRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatterySaverSharp.js b/packages/material-ui-icons/lib/esm/BatterySaverSharp.js new file mode 100644 index 00000000000000..80c3a90dffdc73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatterySaverSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h-3V2h-4v2H7v18h10V4zm-2 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" +}), 'BatterySaverSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatterySaverTwoTone.js b/packages/material-ui-icons/lib/esm/BatterySaverTwoTone.js new file mode 100644 index 00000000000000..f5f6fdbfc37e06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatterySaverTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4h-2V2h-4v2H8c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" +}), 'BatterySaverTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryStd.js b/packages/material-ui-icons/lib/esm/BatteryStd.js new file mode 100644 index 00000000000000..38610703a5f39e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryStd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryStd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryStdOutlined.js b/packages/material-ui-icons/lib/esm/BatteryStdOutlined.js new file mode 100644 index 00000000000000..9e09bfcc275871 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryStdOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryStdOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryStdRounded.js b/packages/material-ui-icons/lib/esm/BatteryStdRounded.js new file mode 100644 index 00000000000000..65d47f381d1a19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryStdRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryStdRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryStdSharp.js b/packages/material-ui-icons/lib/esm/BatteryStdSharp.js new file mode 100644 index 00000000000000..8fa9bec8f4a202 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryStdSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h-3V2h-4v2H7v18h10V4z" +}), 'BatteryStdSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryStdTwoTone.js b/packages/material-ui-icons/lib/esm/BatteryStdTwoTone.js new file mode 100644 index 00000000000000..47ed02c87c42fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryStdTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z" +}), 'BatteryStdTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryUnknown.js b/packages/material-ui-icons/lib/esm/BatteryUnknown.js new file mode 100644 index 00000000000000..246a0232e9583b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryUnknown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-2.72 13.95h-1.9v-1.9h1.9v1.9zm1.35-5.26s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" +}), 'BatteryUnknown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryUnknownOutlined.js b/packages/material-ui-icons/lib/esm/BatteryUnknownOutlined.js new file mode 100644 index 00000000000000..d8b6cbb2cb5b26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryUnknownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" +}), 'BatteryUnknownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryUnknownRounded.js b/packages/material-ui-icons/lib/esm/BatteryUnknownRounded.js new file mode 100644 index 00000000000000..a32e82be3b017f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryUnknownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.14.14-.27.31-.39.47l-.09.15c-.08.12-.14.25-.19.37-.09.22-.16.43-.16.61h-1.6c0-.42.12-.8.29-1.13.06-.11.13-.21.2-.31.03-.05.06-.11.1-.16.11-.14.23-.28.34-.4l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5-.65 0-1.21.41-1.41.99-.11.31-.39.51-.71.51-.52 0-.88-.52-.71-1.01C9.59 8.83 10.69 8 12 8c1.66 0 3 1.34 3 3 0 .66-.27 1.26-.7 1.69z" +}), 'BatteryUnknownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryUnknownSharp.js b/packages/material-ui-icons/lib/esm/BatteryUnknownSharp.js new file mode 100644 index 00000000000000..6eb2626fcc2bde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryUnknownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" +}), 'BatteryUnknownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BatteryUnknownTwoTone.js b/packages/material-ui-icons/lib/esm/BatteryUnknownTwoTone.js new file mode 100644 index 00000000000000..6adfd3cd347d8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BatteryUnknownTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" +}), 'BatteryUnknownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeachAccess.js b/packages/material-ui-icons/lib/esm/BeachAccess.js new file mode 100644 index 00000000000000..788e51da57d02a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeachAccess.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.127 14.56 1.43-1.43 6.44 6.443L19.57 21zm4.293-5.73 2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z" +}), 'BeachAccess'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeachAccessOutlined.js b/packages/material-ui-icons/lib/esm/BeachAccessOutlined.js new file mode 100644 index 00000000000000..0dbb2dc4f0e11d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeachAccessOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 19.57-1.427 1.428-6.442-6.442 1.43-1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z" +}), 'BeachAccessOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeachAccessRounded.js b/packages/material-ui-icons/lib/esm/BeachAccessRounded.js new file mode 100644 index 00000000000000..1e2f29701c76a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeachAccessRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.13 14.56 1.43-1.43 5.73 5.73c.39.39.39 1.03 0 1.43-.39.39-1.03.39-1.43 0l-5.73-5.73zm4.29-5.73 1.27-1.27c.89-.89.77-2.43-.31-3.08-3.89-2.38-9.03-1.89-12.4 1.47 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.36 3.37-3.85 8.51-1.48 12.4.66 1.08 2.19 1.21 3.08.31l1.27-1.27C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z" +}), 'BeachAccessRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeachAccessSharp.js b/packages/material-ui-icons/lib/esm/BeachAccessSharp.js new file mode 100644 index 00000000000000..8d3360a54bd8f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeachAccessSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm11.47 2.85 2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.97 5.96l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3zm7.156 8.6 1.428-1.428 6.442 6.442-1.43 1.428z" +}), 'BeachAccessSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeachAccessTwoTone.js b/packages/material-ui-icons/lib/esm/BeachAccessTwoTone.js new file mode 100644 index 00000000000000..8e09356e390fee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeachAccessTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.6 7.6c-.47 2.34.03 4.78 1.39 6.83l5.45-5.45c-1.53-1.02-3.28-1.56-5.08-1.56-.6 0-1.19.06-1.76.18zM13.12 5c-.93 0-1.82.16-2.67.46 1.91.19 3.79.89 5.44 2.07l1.39-1.39C16.03 5.4 14.61 5 13.12 5zM5 13.12c0 1.49.4 2.91 1.14 4.15l1.39-1.39c-1.18-1.65-1.88-3.52-2.07-5.44-.3.86-.46 1.76-.46 2.68z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m13.126 14.56 1.428-1.428 6.442 6.442-1.43 1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z" +}, "1")], 'BeachAccessTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bed.js b/packages/material-ui-icons/lib/esm/Bed.js new file mode 100644 index 00000000000000..d9f2abc66a94ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z" +}), 'Bed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedOutlined.js b/packages/material-ui-icons/lib/esm/BedOutlined.js new file mode 100644 index 00000000000000..1f3eda187a0a32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z" +}), 'BedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedRounded.js b/packages/material-ui-icons/lib/esm/BedRounded.js new file mode 100644 index 00000000000000..1e54a75520f8c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v5c0 .55.45 1 1 1s1-.45 1-1v-1h16v1c0 .55.45 1 1 1s1-.45 1-1v-5c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z" +}), 'BedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedSharp.js b/packages/material-ui-icons/lib/esm/BedSharp.js new file mode 100644 index 00000000000000..cc989f5aecc0cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10V5H3v5H2v9h2v-2h16v2h2v-9h-1zm-8-3h6v3h-6V7zm-8 3V7h6v3H5zm-1 5v-3h16v3H4z" +}), 'BedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedTwoTone.js b/packages/material-ui-icons/lib/esm/BedTwoTone.js new file mode 100644 index 00000000000000..959137bb760647 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2h6V8zm-8 0c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2h6V8zm8 4H5c-.55 0-1 .45-1 1v2h16v-2c0-.55-.45-1-1-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM13 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2h-6V8zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm15 7H4v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2z" +}, "1")], 'BedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomBaby.js b/packages/material-ui-icons/lib/esm/BedroomBaby.js new file mode 100644 index 00000000000000..ba3c31c98038e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomBaby.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 16c-2.64 0-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1c-1.87 1.87-4.36 2.9-7 2.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.69 14.24c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z" +}, "1")], 'BedroomBaby'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomBabyOutlined.js b/packages/material-ui-icons/lib/esm/BedroomBabyOutlined.js new file mode 100644 index 00000000000000..f5c5aab7cc33a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomBabyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.94 14.04c-.34.34-.71.64-1.1.92L16 13.5V11h1v-1h-5.62L9.65 7H6l1 .76L5.5 9.5l.95 1L8 9.51v3.99l-.84 1.46c-.39-.27-.76-.58-1.1-.92L5 15.1c1.87 1.87 4.36 2.9 7 2.9s5.13-1.03 7-2.9l-1.06-1.06zm-9.49 1.67.03-.06.81-1.41c1.74.65 3.66.65 5.4 0l.81 1.41.03.06c-1.1.51-2.3.79-3.55.79s-2.43-.27-3.53-.79zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'BedroomBabyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomBabyRounded.js b/packages/material-ui-icons/lib/esm/BedroomBabyRounded.js new file mode 100644 index 00000000000000..ed9a1a7b63c417 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomBabyRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 15.99c-2.37 0-4.61-.83-6.4-2.35-.33-.28-.35-.8-.04-1.11.27-.27.71-.29 1.01-.04.19.16.39.31.6.46L8 13.49V9.5l-1 .65c-.32.21-.73.16-.99-.12L6 10.01c-.29-.3-.3-.77-.03-1.08.3-.33.65-.74.86-.98.09-.11.07-.28-.04-.36 0 0-.81-.31-.79-.57 0-.11 3.36-.03 3.36-.03.18 0 .34.1.43.25l1.44 2.5c.09.15.25.25.43.25h4.83c.28 0 .5.22.5.5s-.22.5-.5.5H16v2.5l.84 1.46c.2-.15.4-.3.6-.46.3-.25.73-.23 1.01.04.31.31.29.82-.04 1.11-1.8 1.52-4.04 2.35-6.41 2.35z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.69 14.24c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z" +}, "1")], 'BedroomBabyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomBabySharp.js b/packages/material-ui-icons/lib/esm/BedroomBabySharp.js new file mode 100644 index 00000000000000..1adbb1a68c1730 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomBabySharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zM12 18c-2.64 0-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1c-1.87 1.87-4.36 2.9-7 2.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.69 14.24c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z" +}, "1")], 'BedroomBabySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomBabyTwoTone.js b/packages/material-ui-icons/lib/esm/BedroomBabyTwoTone.js new file mode 100644 index 00000000000000..5c616dd4c0fec0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomBabyTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zm2.45-9.5-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1c-1.87 1.87-4.36 2.9-7 2.9s-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.53 15.71-.03-.06-.81-1.41c-1.74.65-3.66.65-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.16 14.96c-.39-.27-.76-.58-1.1-.92L5 15.1c1.87 1.87 4.36 2.9 7 2.9s5.13-1.03 7-2.9l-1.06-1.06c-.34.34-.71.64-1.1.92L16 13.5V11h1v-1h-5.62L9.65 7H6l1 .76L5.5 9.5l.95 1L8 9.51v3.99l-.84 1.46zm1.32.69.81-1.41c1.74.65 3.66.65 5.4 0l.81 1.41.03.06c-1.1.51-2.3.79-3.55.79s-2.43-.27-3.53-.79l.03-.06z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "3")], 'BedroomBabyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomChild.js b/packages/material-ui-icons/lib/esm/BedroomChild.js new file mode 100644 index 00000000000000..00d1a70fe4fa9b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomChild.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 8.5h6v2H9zm6.64 3.5H8.37c-.48 0-.87.39-.87.87h.01V14h9v-1.13c0-.48-.39-.87-.87-.87z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 15h-1.5v-1.5h-9V17H6v-4.13c0-1 .62-1.85 1.5-2.2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2v1.67c.88.35 1.5 1.2 1.5 2.2V17z" +}, "1")], 'BedroomChild'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomChildOutlined.js b/packages/material-ui-icons/lib/esm/BedroomChildOutlined.js new file mode 100644 index 00000000000000..f7705a9879266e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomChildOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3.5 8.67V9c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v1.67c-.88.35-1.5 1.2-1.5 2.2V17h1.5v-1.5h9V17H18v-4.13c0-1-.62-1.85-1.5-2.2zM15 8.5v2H9v-2h6zm-7.5 4.37c0-.48.39-.87.87-.87h7.27c.48 0 .87.39.87.87V14h-9v-1.13H7.5z" +}), 'BedroomChildOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomChildRounded.js b/packages/material-ui-icons/lib/esm/BedroomChildRounded.js new file mode 100644 index 00000000000000..84cd9a108d9999 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomChildRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 8.5h6v2H9zm6.64 3.5H8.37c-.48 0-.87.39-.87.87h.01V14h9v-1.13c0-.48-.39-.87-.87-.87z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2.75 15c-.41 0-.75-.34-.75-.75v-.75h-9v.75c0 .41-.34.75-.75.75S6 16.66 6 16.25v-3.38c0-1 .62-1.85 1.5-2.2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2v1.67c.88.35 1.5 1.2 1.5 2.2v3.38c0 .41-.34.75-.75.75z" +}, "1")], 'BedroomChildRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomChildSharp.js b/packages/material-ui-icons/lib/esm/BedroomChildSharp.js new file mode 100644 index 00000000000000..924ccaba24f553 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomChildSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 8.5h6v2H9zM7.51 12h9v2h-9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zm-4 15h-1.5v-1.5h-9V17H6v-6.32l1.5-.01V7h9v3.67H18V17z" +}, "1")], 'BedroomChildSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomChildTwoTone.js b/packages/material-ui-icons/lib/esm/BedroomChildTwoTone.js new file mode 100644 index 00000000000000..951e50dadb2924 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomChildTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zm2-7.13c0-1 .62-1.85 1.5-2.2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2v1.67c.88.35 1.5 1.2 1.5 2.2V17h-1.5v-1.5h-9V17H6v-4.13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 15.5h9V17H18v-4.13c0-1-.62-1.85-1.5-2.2V9c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v1.67c-.88.35-1.5 1.2-1.5 2.2V17h1.5v-1.5zm1.5-7h6v2H9v-2zM8.37 12h7.27c.48 0 .87.39.87.87V14h-9v-1.13H7.5c0-.48.39-.87.87-.87z" +}, "2")], 'BedroomChildTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomParent.js b/packages/material-ui-icons/lib/esm/BedroomParent.js new file mode 100644 index 00000000000000..1473b00c8cd6cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomParent.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 12h-9c-.55 0-1 .45-1 1v1h11v-1c0-.55-.45-1-1-1zM7.25 8.5h4v2h-4zm5.5 0h4v2h-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 15h-1.5v-1.5h-11V17H5v-3.83c0-.66.25-1.26.65-1.72V9c0-1.1.9-2 2-2H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h3.35c1.1 0 2 .9 2 2v2.45c.4.46.65 1.06.65 1.72V17z" +}, "1")], 'BedroomParent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomParentOutlined.js b/packages/material-ui-icons/lib/esm/BedroomParentOutlined.js new file mode 100644 index 00000000000000..96aed8c53ffdcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomParentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.35 11.45V9c0-1.1-.9-2-2-2H13c-.37 0-.72.12-1 .32-.28-.2-.63-.32-1-.32H7.65c-1.1 0-2 .9-2 2v2.45c-.4.46-.65 1.06-.65 1.72V17h1.5v-1.5h11V17H19v-3.83c0-.66-.25-1.26-.65-1.72zm-1.6-.95h-4v-2h4v2zm-9.5-2h4v2h-4v-2zM17.5 14h-11v-1c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v1zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'BedroomParentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomParentRounded.js b/packages/material-ui-icons/lib/esm/BedroomParentRounded.js new file mode 100644 index 00000000000000..d0a6b6b96f72ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomParentRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 12h-9c-.55 0-1 .45-1 1v1h11v-1c0-.55-.45-1-1-1zM7.25 8.5h4v2h-4zm5.5 0h4v2h-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1.75 15c-.41 0-.75-.34-.75-.75v-.75h-11v.75c0 .41-.34.75-.75.75S5 16.66 5 16.25v-3.08c0-.66.25-1.26.65-1.72V9c0-1.1.9-2 2-2H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h3.35c1.1 0 2 .9 2 2v2.45c.4.46.65 1.06.65 1.72v3.08c0 .41-.34.75-.75.75z" +}, "1")], 'BedroomParentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomParentSharp.js b/packages/material-ui-icons/lib/esm/BedroomParentSharp.js new file mode 100644 index 00000000000000..fcd7efd228b411 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomParentSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.5 12h11v2h-11zm.75-3.5h4v2h-4zm5.5 0h4v2h-4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zm-3 15h-1.5v-1.5h-11V17H5v-5l.65-.55V7H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h5.35v4.45L19 12v5z" +}, "1")], 'BedroomParentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedroomParentTwoTone.js b/packages/material-ui-icons/lib/esm/BedroomParentTwoTone.js new file mode 100644 index 00000000000000..f0867ff48b05ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedroomParentTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zm1-6.83c0-.66.25-1.26.65-1.72V9c0-1.1.9-2 2-2H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h3.35c1.1 0 2 .9 2 2v2.45c.4.46.65 1.06.65 1.72V17h-1.5v-1.5h-11V17H5v-3.83z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6.5 15.5h11V17H19v-3.83c0-.66-.25-1.26-.65-1.72V9c0-1.1-.9-2-2-2H13c-.37 0-.72.12-1 .32-.28-.2-.63-.32-1-.32H7.65c-1.1 0-2 .9-2 2v2.45c-.4.46-.65 1.06-.65 1.72V17h1.5v-1.5zm6.25-7h4v2h-4v-2zm-5.5 0h4v2h-4v-2zM6.5 13c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v1h-11v-1z" +}, "2")], 'BedroomParentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bedtime.js b/packages/material-ui-icons/lib/esm/Bedtime.js new file mode 100644 index 00000000000000..271ca236d506e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bedtime.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z" +}), 'Bedtime'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedtimeOutlined.js b/packages/material-ui-icons/lib/esm/BedtimeOutlined.js new file mode 100644 index 00000000000000..f9d4bd7a40638d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedtimeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.27 4.49c-1.63 7.54 3.75 12.41 7.66 13.8C15.54 19.38 13.81 20 12 20c-4.41 0-8-3.59-8-8 0-3.45 2.2-6.4 5.27-7.51m2.72-2.48C6.4 2.01 2 6.54 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.97h-.35z" +}), 'BedtimeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedtimeRounded.js b/packages/material-ui-icons/lib/esm/BedtimeRounded.js new file mode 100644 index 00000000000000..bd2f3458fa2f69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedtimeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.97 2.73c.16-.34-.12-.72-.5-.7-6 .3-10.47 5.83-9.28 11.96.78 4.03 4.09 7.22 8.14 7.87 4.07.66 7.77-1.14 9.87-4.15.21-.31.04-.75-.33-.79-6.74-.76-10.87-7.96-7.9-14.19z" +}), 'BedtimeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedtimeSharp.js b/packages/material-ui-icons/lib/esm/BedtimeSharp.js new file mode 100644 index 00000000000000..0414c28a99557d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedtimeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z" +}), 'BedtimeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BedtimeTwoTone.js b/packages/material-ui-icons/lib/esm/BedtimeTwoTone.js new file mode 100644 index 00000000000000..d5433afaea20fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BedtimeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.27 4.49C6.2 5.6 4 8.55 4 12c0 4.41 3.59 8 8 8 1.81 0 3.54-.62 4.93-1.71-3.91-1.39-9.29-6.26-7.66-13.8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.34 2.02c-.12 0-.23-.01-.35-.01C6.4 2.01 2 6.54 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96zM12 20c-4.41 0-8-3.59-8-8 0-3.45 2.2-6.4 5.27-7.51-1.63 7.54 3.75 12.41 7.66 13.8C15.54 19.38 13.81 20 12 20z" +}, "1")], 'BedtimeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Beenhere.js b/packages/material-ui-icons/lib/esm/Beenhere.js new file mode 100644 index 00000000000000..65794e6fee52bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Beenhere.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-9 15-5-5 1.41-1.41L10 13.17l7.59-7.59L19 7l-9 9z" +}), 'Beenhere'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeenhereOutlined.js b/packages/material-ui-icons/lib/esm/BeenhereOutlined.js new file mode 100644 index 00000000000000..226e617df16285 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeenhereOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42-2.58-2.59L6 12l4 4 8-8-1.42-1.42z" +}), 'BeenhereOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeenhereRounded.js b/packages/material-ui-icons/lib/esm/BeenhereRounded.js new file mode 100644 index 00000000000000..cc0b9847c7d000 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeenhereRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66l7.57 5.04c.34.22.77.22 1.11 0l7.56-5.04c.53-.36.88-.97.88-1.66V3c0-1.1-.9-2-2-2zm-.7 6.7-7.59 7.59c-.39.39-1.02.39-1.41 0L5.71 11.7c-.39-.39-.39-1.02 0-1.41s1.02-.39 1.41 0L10 13.17l6.88-6.88c.39-.39 1.02-.39 1.41 0s.4 1.02.01 1.41z" +}), 'BeenhereRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeenhereSharp.js b/packages/material-ui-icons/lib/esm/BeenhereSharp.js new file mode 100644 index 00000000000000..bd097e1996ace5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeenhereSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.01 1 3 17l9 6 8.99-6L21 1H3.01zM10 16l-5-5 1.41-1.42L10 13.17l7.59-7.59L19 7l-9 9z" +}), 'BeenhereSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BeenhereTwoTone.js b/packages/material-ui-icons/lib/esm/BeenhereTwoTone.js new file mode 100644 index 00000000000000..ec02ae4b335396 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BeenhereTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5v12.93l7 4.66 7-4.67V3zm-9 13-4-4 1.41-1.41 2.58 2.58 6.59-6.59L18 8l-8 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42-2.58-2.59L6 12l4 4 8-8-1.42-1.42z" +}, "1")], 'BeenhereTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bento.js b/packages/material-ui-icons/lib/esm/Bento.js new file mode 100644 index 00000000000000..2393dcae70b0e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bento.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11V5h4c1.1 0 2 .9 2 2v4h-6zm4 8c1.1 0 2-.9 2-2v-4h-6v6h4zM14 5v14H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h10zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" +}), 'Bento'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BentoOutlined.js b/packages/material-ui-icons/lib/esm/BentoOutlined.js new file mode 100644 index 00000000000000..aacade8a2cdb42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BentoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 6h-6V7h6v4zM4 7h8v10H4V7zm10 10v-4h6v4h-6zm-4.5-5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" +}), 'BentoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BentoRounded.js b/packages/material-ui-icons/lib/esm/BentoRounded.js new file mode 100644 index 00000000000000..9c90070ff0b6de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BentoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11V5h4c1.1 0 2 .9 2 2v4h-6zm4 8c1.1 0 2-.9 2-2v-4h-6v6h4zM14 5v14H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h10zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" +}), 'BentoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BentoSharp.js b/packages/material-ui-icons/lib/esm/BentoSharp.js new file mode 100644 index 00000000000000..1df74c5970ef07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BentoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11V5h6v6h-6zm0 8h6v-6h-6v6zM14 5v14H2V5h12zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" +}), 'BentoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BentoTwoTone.js b/packages/material-ui-icons/lib/esm/BentoTwoTone.js new file mode 100644 index 00000000000000..fa2af27ed39107 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BentoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17h8V7H4v10zm4-6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm6 2.5h6v4h-6v-4zm6-6v4h-6V7h6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 5H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 6h-6V7h6v4zM4 7h8v10H4V7zm10 10v-4h6v4h-6zm-4.5-5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" +}, "1")], 'BentoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BikeScooter.js b/packages/material-ui-icons/lib/esm/BikeScooter.js new file mode 100644 index 00000000000000..c5667d35e3d680 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BikeScooter.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm9-6h-.82l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 10.2 21.8 8 19 8zm0 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'BikeScooter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BikeScooterOutlined.js b/packages/material-ui-icons/lib/esm/BikeScooterOutlined.js new file mode 100644 index 00000000000000..4e6912341f8a2b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BikeScooterOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm9-6h-.82l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 10.2 21.8 8 19 8zm0 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'BikeScooterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BikeScooterRounded.js b/packages/material-ui-icons/lib/esm/BikeScooterRounded.js new file mode 100644 index 00000000000000..13003271cb1c1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BikeScooterRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H4c-.55 0-1 .45-1 1s.45 1 1 1h2.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm8.75-6h-.56l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H12c-.55 0-1 .45-1 1s.45 1 1 1h2.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 3.16.15 5.88-2.83 5.12-6.1C23.34 9.57 21.13 8 18.75 8zm.13 8c-1.54-.06-2.84-1.37-2.88-2.92-.02-.96.39-1.8 1.05-2.36l.62 1.7c.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28l-.63-1.73.01-.01c1.71-.04 3.07 1.29 3.07 3 0 1.72-1.38 3.06-3.12 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'BikeScooterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BikeScooterSharp.js b/packages/material-ui-icons/lib/esm/BikeScooterSharp.js new file mode 100644 index 00000000000000..811e06954e851b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BikeScooterSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 14h.74L8.47 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm8.18-6-1.83-5H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zm.82 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'BikeScooterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BikeScooterTwoTone.js b/packages/material-ui-icons/lib/esm/BikeScooterTwoTone.js new file mode 100644 index 00000000000000..9ee855dea9543c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BikeScooterTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 14h.74L8.82 5.56C8.61 4.65 7.8 4 6.87 4H3v2h3.87l1.42 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H0v2h6v-1c0-2.21 1.79-4 4-4zm9-6h-.82l-1.35-3.69C16.55 3.52 15.8 3 14.96 3H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 10.2 21.8 8 19 8zm0 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'BikeScooterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Biotech.js b/packages/material-ui-icons/lib/esm/Biotech.js new file mode 100644 index 00000000000000..5e0882aa544269 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Biotech.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62C6.28 8.13 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.59 1.62.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.53-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.54z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "10.5", + cy: "8", + r: "1.5" +}, "2")], 'Biotech'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BiotechOutlined.js b/packages/material-ui-icons/lib/esm/BiotechOutlined.js new file mode 100644 index 00000000000000..95a3b3a3626052 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BiotechOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.47-2.57.41.59 1.06 1 1.83 1.06.7.06 1.36-.19 1.85-.62l.59 1.61.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.52-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.55c-1.17-.04-2.19.75-2.48 1.86C6.27 8.14 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7zm5.86-14.48 1.71 4.7-.94.34-1.71-4.7.94-.34zM10.5 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'BiotechOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BiotechRounded.js b/packages/material-ui-icons/lib/esm/BiotechRounded.js new file mode 100644 index 00000000000000..8e55f95a90d72f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BiotechRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62C6.28 8.13 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.25.68c.19.52.76.79 1.28.6.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28.52-.19.79-.76.6-1.28L14.1 3.54c-.19-.52-.76-.79-1.28-.6-.19-.52-.76-.79-1.28-.6-.52.19-.79.76-.6 1.28-.52.19-.79.76-.6 1.28l.22.61z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "10.5", + cy: "8", + r: "1.5" +}, "2")], 'BiotechRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BiotechSharp.js b/packages/material-ui-icons/lib/esm/BiotechSharp.js new file mode 100644 index 00000000000000..077bdfb43595a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BiotechSharp.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 19v-2h5v-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62C6.28 8.13 5 9.92 5 12c0 2.76 2.24 5 5 5v2H5v2h14v-2h-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.59 1.62.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.53-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.54z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "10.5", + cy: "8", + r: "1.5" +}, "2")], 'BiotechSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BiotechTwoTone.js b/packages/material-ui-icons/lib/esm/BiotechTwoTone.js new file mode 100644 index 00000000000000..c6372d0df31234 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BiotechTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.9247 4.8613.9397-.342 1.71 4.6985-.9397.342z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10.5", + cy: "8", + r: "1", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 19c-1.1 0-2 .9-2 2h14c0-1.1-.9-2-2-2h-4v-2h3c1.1 0 2-.9 2-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.47-2.57.41.59 1.06 1 1.83 1.06.7.06 1.36-.19 1.85-.62l.59 1.61.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.52-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.55c-1.17-.04-2.19.75-2.48 1.86C6.27 8.14 5 9.92 5 12c0 2.76 2.24 5 5 5v2H7zm5.86-14.48 1.71 4.7-.94.34-1.71-4.7.94-.34zM10.5 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "2")], 'BiotechTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Blender.js b/packages/material-ui-icons/lib/esm/Blender.js new file mode 100644 index 00000000000000..ec33b7f28d5ee6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Blender.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z" +}), 'Blender'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlenderOutlined.js b/packages/material-ui-icons/lib/esm/BlenderOutlined.js new file mode 100644 index 00000000000000..b4f12fa1488932 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlenderOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm10.67-4-1.38 9H9.72L8.33 5h7.34zM16 20H8v-1c0-1.65 1.35-3 3-3h2c1.65 0 3 1.35 3 3v1z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "18", + r: "1" +}, "1")], 'BlenderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlenderRounded.js b/packages/material-ui-icons/lib/esm/BlenderRounded.js new file mode 100644 index 00000000000000..7f95eb86b2772e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlenderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.13 15.13 1.69-10.98c.1-.6-.37-1.15-.99-1.15H14c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z" +}), 'BlenderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlenderSharp.js b/packages/material-ui-icons/lib/esm/BlenderSharp.js new file mode 100644 index 00000000000000..ac734dae3a2137 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlenderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3h-4V2h-4v1H3v8h4.23l.64 4.13L6 17v5h12v-5l-1.87-1.87L18 3zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z" +}), 'BlenderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlenderTwoTone.js b/packages/material-ui-icons/lib/esm/BlenderTwoTone.js new file mode 100644 index 00000000000000..2d2d340a5a336b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlenderTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 16h-2c-1.65 0-3 1.35-3 3v1h8v-1c0-1.65-1.35-3-3-3zm-1 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.13 15.13 18 3h-4V2h-4v1H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2.23l.64 4.13C6.74 16.05 6 17.43 6 19v1c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-1c0-1.57-.74-2.95-1.87-3.87zM5 9V5h1.31l.62 4H5zm10.67-4-1.38 9H9.72L8.33 5h7.34zM16 20H8v-1c0-1.65 1.35-3 3-3h2c1.65 0 3 1.35 3 3v1z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "18", + r: "1" +}, "2")], 'BlenderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Block.js b/packages/material-ui-icons/lib/esm/Block.js new file mode 100644 index 00000000000000..cfd91aad805ce1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Block.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" +}), 'Block'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlockOutlined.js b/packages/material-ui-icons/lib/esm/BlockOutlined.js new file mode 100644 index 00000000000000..88d64c19c41084 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlockOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" +}), 'BlockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlockRounded.js b/packages/material-ui-icons/lib/esm/BlockRounded.js new file mode 100644 index 00000000000000..3511e36f93833e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlockRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" +}), 'BlockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlockSharp.js b/packages/material-ui-icons/lib/esm/BlockSharp.js new file mode 100644 index 00000000000000..24e32a681913e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlockSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" +}), 'BlockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlockTwoTone.js b/packages/material-ui-icons/lib/esm/BlockTwoTone.js new file mode 100644 index 00000000000000..a2627c7a2e3606 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlockTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z" +}), 'BlockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bloodtype.js b/packages/material-ui-icons/lib/esm/Bloodtype.js new file mode 100644 index 00000000000000..e72d547315881d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bloodtype.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm3 16H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z" +}), 'Bloodtype'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BloodtypeOutlined.js b/packages/material-ui-icons/lib/esm/BloodtypeOutlined.js new file mode 100644 index 00000000000000..9240385798e272 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BloodtypeOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 16h6v2H9zm4-7h-2v2H9v2h2v2h2v-2h2v-2h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm0 18c-3.35 0-6-2.57-6-6.2 0-2.34 1.95-5.44 6-9.14 4.05 3.7 6 6.79 6 9.14 0 3.63-2.65 6.2-6 6.2z" +}, "1")], 'BloodtypeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BloodtypeRounded.js b/packages/material-ui-icons/lib/esm/BloodtypeRounded.js new file mode 100644 index 00000000000000..bac74dd36d6a62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BloodtypeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.66 2.58c-.38-.33-.95-.33-1.33 0C6.45 6.88 4 10.62 4 13.8c0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.18-2.45-6.92-7.34-11.22zM14 18h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm0-5h-1v1c0 .55-.45 1-1 1s-1-.45-1-1v-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'BloodtypeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BloodtypeSharp.js b/packages/material-ui-icons/lib/esm/BloodtypeSharp.js new file mode 100644 index 00000000000000..c295ae4f4d3b3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BloodtypeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm3 16H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z" +}), 'BloodtypeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BloodtypeTwoTone.js b/packages/material-ui-icons/lib/esm/BloodtypeTwoTone.js new file mode 100644 index 00000000000000..3635fe2087eb30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BloodtypeTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4.67c-4.05 3.7-6 6.79-6 9.14 0 3.63 2.65 6.2 6 6.2s6-2.57 6-6.2c0-2.35-1.95-5.45-6-9.14zM15 18H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 16h6v2H9zm4-7h-2v2H9v2h2v2h2v-2h2v-2h-2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm0 18c-3.35 0-6-2.57-6-6.2 0-2.34 1.95-5.44 6-9.14 4.05 3.7 6 6.79 6 9.14 0 3.63-2.65 6.2-6 6.2z" +}, "2")], 'BloodtypeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bluetooth.js b/packages/material-ui-icons/lib/esm/Bluetooth.js new file mode 100644 index 00000000000000..c3ec36ab32d70e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bluetooth.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" +}), 'Bluetooth'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothAudio.js b/packages/material-ui-icons/lib/esm/BluetoothAudio.js new file mode 100644 index 00000000000000..97be88c820764b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothAudio.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothAudio'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothAudioOutlined.js b/packages/material-ui-icons/lib/esm/BluetoothAudioOutlined.js new file mode 100644 index 00000000000000..147d7032a66ec9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothAudioOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothAudioOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothAudioRounded.js b/packages/material-ui-icons/lib/esm/BluetoothAudioRounded.js new file mode 100644 index 00000000000000..420034ef76471b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothAudioRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.98 10.28-1.38 1.38c-.2.2-.2.51 0 .71l1.38 1.38c.28.28.75.15.85-.23.11-.5.17-1 .17-1.52 0-.51-.06-1.01-.18-1.48-.09-.38-.56-.52-.84-.24zm4.12-2.5c-.25-.55-.98-.67-1.4-.24-.26.26-.31.64-.17.98.46 1.07.72 2.24.72 3.47 0 1.24-.26 2.42-.73 3.49-.14.32-.09.69.16.94.41.41 1.1.29 1.35-.23.63-1.3.98-2.76.98-4.3-.01-1.45-.33-2.85-.91-4.11zM11.39 12l3.59-3.58c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.18-1.71.71V9.6L5.09 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L8.57 12l-4.89 4.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l3.89-3.89v6.18c0 .89 1.08 1.34 1.71.71l4.3-4.3c.39-.39.39-1.02 0-1.42L11.39 12zm-.41-6.17 1.88 1.88-1.88 1.88V5.83zm0 12.34v-3.76l1.88 1.88-1.88 1.88z" +}), 'BluetoothAudioRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothAudioSharp.js b/packages/material-ui-icons/lib/esm/BluetoothAudioSharp.js new file mode 100644 index 00000000000000..0c7c6daff7eeee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothAudioSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothAudioSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothAudioTwoTone.js b/packages/material-ui-icons/lib/esm/BluetoothAudioTwoTone.js new file mode 100644 index 00000000000000..1f9c8f85ad165d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothAudioTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothAudioTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothConnected.js b/packages/material-ui-icons/lib/esm/BluetoothConnected.js new file mode 100644 index 00000000000000..cb9defa7f7e3a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothConnected.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" +}), 'BluetoothConnected'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothConnectedOutlined.js b/packages/material-ui-icons/lib/esm/BluetoothConnectedOutlined.js new file mode 100644 index 00000000000000..6a82d4ece6ddd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothConnectedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" +}), 'BluetoothConnectedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothConnectedRounded.js b/packages/material-ui-icons/lib/esm/BluetoothConnectedRounded.js new file mode 100644 index 00000000000000..1ec8556aee0d12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothConnectedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c.55-.55.55-1.44 0-1.99V11c-.55-.55-1.45-.55-2 0s-.55 1.45 0 2 1.45.55 2 0zm14-2c-.56-.56-1.45-.56-2-.01V11c-.55.55-.55 1.44 0 1.99V13c.55.55 1.44.55 1.99 0H20c.55-.55.55-1.45 0-2zm-3-4-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71L17 17c.39-.39.39-1.02 0-1.42L13.41 12 17 8.42c.39-.39.39-1.03 0-1.42zm-2.12 9.29L13 18.17v-3.76l1.88 1.88zM13 9.59V5.83l1.88 1.88L13 9.59z" +}), 'BluetoothConnectedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothConnectedSharp.js b/packages/material-ui-icons/lib/esm/BluetoothConnectedSharp.js new file mode 100644 index 00000000000000..0d92e7a340d3a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothConnectedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" +}), 'BluetoothConnectedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothConnectedTwoTone.js b/packages/material-ui-icons/lib/esm/BluetoothConnectedTwoTone.js new file mode 100644 index 00000000000000..50241ca865a771 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothConnectedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 12-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" +}), 'BluetoothConnectedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDisabled.js b/packages/material-ui-icons/lib/esm/BluetoothDisabled.js new file mode 100644 index 00000000000000..d671914c2aa183 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" +}), 'BluetoothDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDisabledOutlined.js b/packages/material-ui-icons/lib/esm/BluetoothDisabledOutlined.js new file mode 100644 index 00000000000000..15f12627b20cb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" +}), 'BluetoothDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDisabledRounded.js b/packages/material-ui-icons/lib/esm/BluetoothDisabledRounded.js new file mode 100644 index 00000000000000..08f5c94bb9aa0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.29 17.89 6.11 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71l3.59-3.59 1.59 1.59c.39.39 1.02.39 1.41 0 .38-.39.38-1.03-.01-1.41zm-6.29.28v-3.76l1.88 1.88L13 18.17zm0-12.34 1.88 1.88-1.47 1.47 1.41 1.41L17 8.42c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v3.36l2 2V5.83z" +}), 'BluetoothDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDisabledSharp.js b/packages/material-ui-icons/lib/esm/BluetoothDisabledSharp.js new file mode 100644 index 00000000000000..c56a43685d9cde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" +}), 'BluetoothDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/BluetoothDisabledTwoTone.js new file mode 100644 index 00000000000000..d2adca4a0a079a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDisabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 5.83 1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4 4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" +}), 'BluetoothDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDrive.js b/packages/material-ui-icons/lib/esm/BluetoothDrive.js new file mode 100644 index 00000000000000..ee92dc4103bd5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDrive.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 10H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" +}, "1")], 'BluetoothDrive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDriveOutlined.js b/packages/material-ui-icons/lib/esm/BluetoothDriveOutlined.js new file mode 100644 index 00000000000000..714eeb8f0e32e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDriveOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "14.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 17H4v-5h11v-2H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8h-2v5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" +}, "3")], 'BluetoothDriveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDriveRounded.js b/packages/material-ui-icons/lib/esm/BluetoothDriveRounded.js new file mode 100644 index 00000000000000..0e3efb4cb307f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDriveRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.85 6 1.8-1.8c.2-.2.2-.51 0-.71L19.5 1.36c-.32-.31-.85-.09-.85.35v3.08L16.7 2.85c-.19-.19-.51-.19-.7 0-.19.19-.19.51 0 .7L18.44 6 16 8.44c-.19.19-.19.5 0 .7.19.2.51.2.7 0l1.95-1.95v3.09c0 .45.54.67.85.35l2.14-2.15c.2-.2.19-.51 0-.71L19.85 6zm-.2-3.09.94.94-.94.94V2.91zm0 6.17V7.2l.94.94-.94.94z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 10H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v7.5c0 .83.67 1.5 1.5 1.5S5 20.33 5 19.5V19h12v.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V12h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'BluetoothDriveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDriveSharp.js b/packages/material-ui-icons/lib/esm/BluetoothDriveSharp.js new file mode 100644 index 00000000000000..78721bced2f3fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDriveSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 10H4.81l1.04-3H15V5H4.43L2 12v9h3v-2h12v2h3v-9h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" +}, "1")], 'BluetoothDriveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothDriveTwoTone.js b/packages/material-ui-icons/lib/esm/BluetoothDriveTwoTone.js new file mode 100644 index 00000000000000..0168e905695345 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothDriveTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17h14v-5H4v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S7.33 16 6.5 16 5 15.33 5 14.5 5.67 13 6.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 17H4v-5h13c-1.1 0-2-.9-2-2H4.81l1.04-3H15V5H5.5c-.66 0-1.21.42-1.42 1.01L2 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8h-2v5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M22 3.85 19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94.94.94-.94.94V2.91zm.94 5.23-.94.94V7.2l.94.94z" +}, "4")], 'BluetoothDriveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothOutlined.js b/packages/material-ui-icons/lib/esm/BluetoothOutlined.js new file mode 100644 index 00000000000000..b6a1981eba0c60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" +}), 'BluetoothOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothRounded.js b/packages/material-ui-icons/lib/esm/BluetoothRounded.js new file mode 100644 index 00000000000000..b40599f53b91b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 7-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71L17 17c.39-.39.39-1.02 0-1.41L13.41 12 17 8.42c.39-.39.39-1.03 0-1.42zm-4-1.17 1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" +}), 'BluetoothRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothSearching.js b/packages/material-ui-icons/lib/esm/BluetoothSearching.js new file mode 100644 index 00000000000000..047bb0f950add9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothSearching.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothSearching'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothSearchingOutlined.js b/packages/material-ui-icons/lib/esm/BluetoothSearchingOutlined.js new file mode 100644 index 00000000000000..b2ba6314f5f568 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothSearchingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothSearchingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothSearchingRounded.js b/packages/material-ui-icons/lib/esm/BluetoothSearchingRounded.js new file mode 100644 index 00000000000000..a09877a6585bcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothSearchingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.98 10.28-1.38 1.38c-.2.2-.2.51 0 .71l1.38 1.38c.28.28.75.15.85-.23.11-.5.17-1 .17-1.52 0-.51-.06-1.01-.18-1.48-.09-.38-.56-.52-.84-.24zm4.12-2.5c-.25-.55-.98-.67-1.4-.24-.26.26-.31.64-.17.98.46 1.07.72 2.24.72 3.47 0 1.24-.26 2.42-.73 3.49-.14.32-.09.69.16.94.41.41 1.1.29 1.35-.23.63-1.3.98-2.76.98-4.3-.01-1.45-.33-2.85-.91-4.11zM11.41 12 15 8.42c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L5.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L8.59 12 3.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L9 14.41v6.18c0 .89 1.08 1.34 1.71.71L15 17c.39-.39.39-1.02 0-1.42L11.41 12zM11 5.83l1.88 1.88L11 9.59V5.83zm0 12.34v-3.76l1.88 1.88L11 18.17z" +}), 'BluetoothSearchingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothSearchingSharp.js b/packages/material-ui-icons/lib/esm/BluetoothSearchingSharp.js new file mode 100644 index 00000000000000..ffede7756e7162 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothSearchingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothSearchingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothSearchingTwoTone.js b/packages/material-ui-icons/lib/esm/BluetoothSearchingTwoTone.js new file mode 100644 index 00000000000000..0ed8025b52d84c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothSearchingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.24 12.01 2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" +}), 'BluetoothSearchingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothSharp.js b/packages/material-ui-icons/lib/esm/BluetoothSharp.js new file mode 100644 index 00000000000000..e7f2b3981a1455 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" +}), 'BluetoothSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BluetoothTwoTone.js b/packages/material-ui-icons/lib/esm/BluetoothTwoTone.js new file mode 100644 index 00000000000000..08e31bef9eb59c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BluetoothTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.71 7.71 12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" +}), 'BluetoothTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurCircular.js b/packages/material-ui-icons/lib/esm/BlurCircular.js new file mode 100644 index 00000000000000..13e762ce6f34ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurCircular.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'BlurCircular'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurCircularOutlined.js b/packages/material-ui-icons/lib/esm/BlurCircularOutlined.js new file mode 100644 index 00000000000000..83a9c8bfbd3d54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurCircularOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'BlurCircularOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurCircularRounded.js b/packages/material-ui-icons/lib/esm/BlurCircularRounded.js new file mode 100644 index 00000000000000..74d429fe09e7fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurCircularRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'BlurCircularRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurCircularSharp.js b/packages/material-ui-icons/lib/esm/BlurCircularSharp.js new file mode 100644 index 00000000000000..c4d4f2e961c04b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurCircularSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'BlurCircularSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurCircularTwoTone.js b/packages/material-ui-icons/lib/esm/BlurCircularTwoTone.js new file mode 100644 index 00000000000000..b0da7b5943c933 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurCircularTwoTone.js @@ -0,0 +1,27 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "10", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "14", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M10 16.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "10", + r: "1" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M7 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "14", + r: "1" +}, "6"), /*#__PURE__*/_jsx("path", { + d: "M10 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm4 9c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0 4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "7")], 'BlurCircularTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurLinear.js b/packages/material-ui-icons/lib/esm/BlurLinear.js new file mode 100644 index 00000000000000..484239c3d22b4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurLinear.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'BlurLinear'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurLinearOutlined.js b/packages/material-ui-icons/lib/esm/BlurLinearOutlined.js new file mode 100644 index 00000000000000..3ef7821905711d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurLinearOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'BlurLinearOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurLinearRounded.js b/packages/material-ui-icons/lib/esm/BlurLinearRounded.js new file mode 100644 index 00000000000000..6ff143ce3ec601 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurLinearRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm14 4.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'BlurLinearRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurLinearSharp.js b/packages/material-ui-icons/lib/esm/BlurLinearSharp.js new file mode 100644 index 00000000000000..b1e2bb20fe0ae1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurLinearSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'BlurLinearSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurLinearTwoTone.js b/packages/material-ui-icons/lib/esm/BlurLinearTwoTone.js new file mode 100644 index 00000000000000..d73e3a34da659b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurLinearTwoTone.js @@ -0,0 +1,49 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 16.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "12", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "8", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "16", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M17 12.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "12", + r: "1" +}, "5"), /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3z" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "5", + cy: "8", + r: "1.5" +}, "7"), /*#__PURE__*/_jsx("circle", { + cx: "5", + cy: "12", + r: "1.5" +}, "8"), /*#__PURE__*/_jsx("circle", { + cx: "5", + cy: "16", + r: "1.5" +}, "9"), /*#__PURE__*/_jsx("path", { + d: "M17 8.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "10"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "16", + r: "1" +}, "11"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "1" +}, "12"), /*#__PURE__*/_jsx("path", { + d: "M3 19h18v2H3z" +}, "13")], 'BlurLinearTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOff.js b/packages/material-ui-icons/lib/esm/BlurOff.js new file mode 100644 index 00000000000000..ad52e289a0d2fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-.2 4.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm11 7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM2.5 5.27l3.78 3.78L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27zM10 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm11-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}), 'BlurOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOffOutlined.js b/packages/material-ui-icons/lib/esm/BlurOffOutlined.js new file mode 100644 index 00000000000000..7762f107f9c9df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOffOutlined.js @@ -0,0 +1,45 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "6", + r: "1" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "10", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "6", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "14", + r: "1" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "18", + r: "1" +}, "7"), /*#__PURE__*/_jsx("path", { + d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "8"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "18", + r: "1" +}, "9"), /*#__PURE__*/_jsx("path", { + d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "10"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "14", + r: "1" +}, "11"), /*#__PURE__*/_jsx("path", { + d: "M2.5 5.27 6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" +}, "12")], 'BlurOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOffRounded.js b/packages/material-ui-icons/lib/esm/BlurOffRounded.js new file mode 100644 index 00000000000000..f853081e9c5e72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOffRounded.js @@ -0,0 +1,45 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "6", + r: "1" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "10", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "6", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "14", + r: "1" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "18", + r: "1" +}, "7"), /*#__PURE__*/_jsx("path", { + d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "8"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "18", + r: "1" +}, "9"), /*#__PURE__*/_jsx("path", { + d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "10"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "14", + r: "1" +}, "11"), /*#__PURE__*/_jsx("path", { + d: "M3.21 4.56c-.39.39-.39 1.02 0 1.41l3.07 3.07L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.08 3.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.42L4.62 4.56a.9959.9959 0 0 0-1.41 0z" +}, "12")], 'BlurOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOffSharp.js b/packages/material-ui-icons/lib/esm/BlurOffSharp.js new file mode 100644 index 00000000000000..78bcc5eb168366 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOffSharp.js @@ -0,0 +1,45 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "6", + r: "1" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "10", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "6", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "14", + r: "1" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "18", + r: "1" +}, "7"), /*#__PURE__*/_jsx("path", { + d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "8"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "18", + r: "1" +}, "9"), /*#__PURE__*/_jsx("path", { + d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "10"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "14", + r: "1" +}, "11"), /*#__PURE__*/_jsx("path", { + d: "M2.5 5.27 6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" +}, "12")], 'BlurOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOffTwoTone.js b/packages/material-ui-icons/lib/esm/BlurOffTwoTone.js new file mode 100644 index 00000000000000..bae53dd2f55dd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOffTwoTone.js @@ -0,0 +1,45 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "6", + r: "1" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m13.8 11.48.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "10", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "6", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "14", + r: "1" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "18", + r: "1" +}, "7"), /*#__PURE__*/_jsx("path", { + d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "8"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "18", + r: "1" +}, "9"), /*#__PURE__*/_jsx("path", { + d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" +}, "10"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "14", + r: "1" +}, "11"), /*#__PURE__*/_jsx("path", { + d: "M2.5 5.27 6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" +}, "12")], 'BlurOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOn.js b/packages/material-ui-icons/lib/esm/BlurOn.js new file mode 100644 index 00000000000000..97349f1f510cdf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'BlurOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOnOutlined.js b/packages/material-ui-icons/lib/esm/BlurOnOutlined.js new file mode 100644 index 00000000000000..5ffdab0e628dee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'BlurOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOnRounded.js b/packages/material-ui-icons/lib/esm/BlurOnRounded.js new file mode 100644 index 00000000000000..a4c54584f2eab7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'BlurOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOnSharp.js b/packages/material-ui-icons/lib/esm/BlurOnSharp.js new file mode 100644 index 00000000000000..7ccd2a20e6c4c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'BlurOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BlurOnTwoTone.js b/packages/material-ui-icons/lib/esm/BlurOnTwoTone.js new file mode 100644 index 00000000000000..71aac5d3a301ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BlurOnTwoTone.js @@ -0,0 +1,77 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "10", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "18", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "14", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zM21 14.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "18", + r: "1" +}, "5"), /*#__PURE__*/_jsx("path", { + d: "M13.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5zM21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "14", + r: "1" +}, "7"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "1" +}, "8"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "18", + r: "1" +}, "9"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "14", + r: "1" +}, "10"), /*#__PURE__*/_jsx("path", { + d: "M3.5 14c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z" +}, "11"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "6", + r: "1" +}, "12"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "10", + r: "1" +}, "13"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "6", + r: "1" +}, "14"), /*#__PURE__*/_jsx("path", { + d: "M9.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5z" +}, "15"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "18", + r: "1" +}, "16"), /*#__PURE__*/_jsx("path", { + d: "M10.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z" +}, "17"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "14", + r: "1.5" +}, "18"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "10", + r: "1.5" +}, "19"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "10", + r: "1" +}, "20")], 'BlurOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bolt.js b/packages/material-ui-icons/lib/esm/Bolt.js new file mode 100644 index 00000000000000..71d3f4ee0c5dfc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bolt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h-1l1-7H7.5c-.58 0-.57-.32-.38-.66.19-.34.05-.08.07-.12C8.48 10.94 10.42 7.54 13 3h1l-1 7h3.5c.49 0 .56.33.47.51l-.07.15C12.96 17.55 11 21 11 21z" +}), 'Bolt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BoltOutlined.js b/packages/material-ui-icons/lib/esm/BoltOutlined.js new file mode 100644 index 00000000000000..b3f0ef8fb1a2c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BoltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h-1l1-7H7.5c-.88 0-.33-.75-.31-.78C8.48 10.94 10.42 7.54 13.01 3h1l-1 7h3.51c.4 0 .62.19.4.66C12.97 17.55 11 21 11 21z" +}), 'BoltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BoltRounded.js b/packages/material-ui-icons/lib/esm/BoltRounded.js new file mode 100644 index 00000000000000..f42e3a1d2b36ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BoltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.67 21c-.35 0-.62-.31-.57-.66L11 14H7.5c-.88 0-.33-.75-.31-.78 1.26-2.23 3.15-5.53 5.65-9.93.1-.18.3-.29.5-.29.35 0 .62.31.57.66l-.9 6.34h3.51c.4 0 .62.19.4.66-3.29 5.74-5.2 9.09-5.75 10.05-.1.18-.29.29-.5.29z" +}), 'BoltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BoltSharp.js b/packages/material-ui-icons/lib/esm/BoltSharp.js new file mode 100644 index 00000000000000..88d50addb97d11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BoltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h-1l1-7H6.74S10.42 7.54 13 3h1l-1 7h4.28L11 21z" +}), 'BoltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BoltTwoTone.js b/packages/material-ui-icons/lib/esm/BoltTwoTone.js new file mode 100644 index 00000000000000..3e699a947f869e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BoltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h-1l1-7H7.5c-.88 0-.33-.75-.31-.78C8.48 10.94 10.42 7.54 13.01 3h1l-1 7h3.51c.4 0 .62.19.4.66C12.97 17.55 11 21 11 21z" +}), 'BoltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Book.js b/packages/material-ui-icons/lib/esm/Book.js new file mode 100644 index 00000000000000..6e611a149edd08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Book.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" +}), 'Book'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookOnline.js b/packages/material-ui-icons/lib/esm/BookOnline.js new file mode 100644 index 00000000000000..86964b69b103ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookOnline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 18V6h10v12H7zm9-7V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" +}), 'BookOnline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookOnlineOutlined.js b/packages/material-ui-icons/lib/esm/BookOnlineOutlined.js new file mode 100644 index 00000000000000..1d87a91f1b13fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookOnlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4H7V3h10v1zm0 17H7v-1h10v1zm0-20H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 6h10v12H7V6zm9 5V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" +}), 'BookOnlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookOnlineRounded.js b/packages/material-ui-icons/lib/esm/BookOnlineRounded.js new file mode 100644 index 00000000000000..18ea0ced031cba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookOnlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 6h10v12H7V6zm9 5V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-4 3.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm0-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm0-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5z" +}), 'BookOnlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookOnlineSharp.js b/packages/material-ui-icons/lib/esm/BookOnlineSharp.js new file mode 100644 index 00000000000000..f2a88e6d683713 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookOnlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H5v22h14V1zM7 18V6h10v12H7zm9-7V8H8v3.1c.55 0 1 .45 1 1s-.45 1-1 1V16h8v-3c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" +}), 'BookOnlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookOnlineTwoTone.js b/packages/material-ui-icons/lib/esm/BookOnlineTwoTone.js new file mode 100644 index 00000000000000..3520b0a468d8f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookOnlineTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 4H7V3h10v1zm0 17H7v-1h10v1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 4H7V3h10v1zm0 17H7v-1h10v1zm0-20H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 6h10v12H7V6zm9 5V9.14C16 8.51 15.55 8 15 8H9c-.55 0-1 .51-1 1.14v1.96c.55 0 1 .45 1 1s-.45 1-1 1v1.76c0 .63.45 1.14 1 1.14h6c.55 0 1-.51 1-1.14V13c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" +}, "1")], 'BookOnlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookOutlined.js b/packages/material-ui-icons/lib/esm/BookOutlined.js new file mode 100644 index 00000000000000..37bbd4983d3fe4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" +}), 'BookOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookRounded.js b/packages/material-ui-icons/lib/esm/BookRounded.js new file mode 100644 index 00000000000000..7ea00181a49900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" +}), 'BookRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookSharp.js b/packages/material-ui-icons/lib/esm/BookSharp.js new file mode 100644 index 00000000000000..79631ba5930120 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z" +}), 'BookSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookTwoTone.js b/packages/material-ui-icons/lib/esm/BookTwoTone.js new file mode 100644 index 00000000000000..a930e7cc56cf66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13 13-3-2.25L7 13V4H6v16h12V4h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" +}, "1")], 'BookTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bookmark.js b/packages/material-ui-icons/lib/esm/Bookmark.js new file mode 100644 index 00000000000000..96b3ffdf72b566 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bookmark.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" +}), 'Bookmark'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAdd.js b/packages/material-ui-icons/lib/esm/BookmarkAdd.js new file mode 100644 index 00000000000000..114de3668dec16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-2 14-7-3-7 3V5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21z" +}), 'BookmarkAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddOutlined.js b/packages/material-ui-icons/lib/esm/BookmarkAddOutlined.js new file mode 100644 index 00000000000000..ffd4d14d7d4be2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v6.97l-5-2.14-5 2.14V5h6V3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V11h-2zm4-4h-2v2h-2V7h-2V5h2V3h2v2h2v2z" +}), 'BookmarkAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddRounded.js b/packages/material-ui-icons/lib/esm/BookmarkAddRounded.js new file mode 100644 index 00000000000000..9179aa1db90a39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6c0 .55-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V7h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V4c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1zm-2 13.48c0 .72-.73 1.2-1.39.92L12 18l-5.61 2.4c-.66.29-1.39-.2-1.39-.92V5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1v8.58z" +}), 'BookmarkAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddSharp.js b/packages/material-ui-icons/lib/esm/BookmarkAddSharp.js new file mode 100644 index 00000000000000..937d875f480310 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-2 14-7-3-7 3V3h9c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21z" +}), 'BookmarkAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddTwoTone.js b/packages/material-ui-icons/lib/esm/BookmarkAddTwoTone.js new file mode 100644 index 00000000000000..95f28d42127108 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 17.97V10.9c-2.28-.46-4-2.48-4-4.9 0-.34.03-.68.1-1H7v12.97l5-2.14 5 2.14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-4 10.97-5-2.14-5 2.14V5h6.1c.15-.74.46-1.42.9-2H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9c-.32.07-.66.1-1 .1-.34 0-.68-.03-1-.1v7.07z" +}, "1")], 'BookmarkAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAdded.js b/packages/material-ui-icons/lib/esm/BookmarkAdded.js new file mode 100644 index 00000000000000..d8999dd948a944 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAdded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 21-7-3-7 3V5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21zM17.83 9 15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z" +}), 'BookmarkAdded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddedOutlined.js b/packages/material-ui-icons/lib/esm/BookmarkAddedOutlined.js new file mode 100644 index 00000000000000..0149632fa183e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v6.97l-5-2.14-5 2.14V5h6V3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V11h-2zm.83-2L15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z" +}), 'BookmarkAddedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddedRounded.js b/packages/material-ui-icons/lib/esm/BookmarkAddedRounded.js new file mode 100644 index 00000000000000..aaf40dad64284f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 5c0-1.1.9-2 2-2h7c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1v8.58c0 .72-.73 1.2-1.39.92L12 18l-5.61 2.4c-.66.29-1.39-.2-1.39-.92V5zm17.07-1.66c.39.39.39 1.02 0 1.41l-3.54 3.54c-.39.39-1.02.39-1.41 0l-1.41-1.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.83-2.83c.39-.4 1.02-.4 1.41-.01z" +}), 'BookmarkAddedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddedSharp.js b/packages/material-ui-icons/lib/esm/BookmarkAddedSharp.js new file mode 100644 index 00000000000000..ef874e86b40346 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 21-7-3-7 3V3h9c-.63.84-1 1.87-1 3 0 2.76 2.24 5 5 5 .34 0 .68-.03 1-.1V21zM17.83 9 15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z" +}), 'BookmarkAddedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkAddedTwoTone.js b/packages/material-ui-icons/lib/esm/BookmarkAddedTwoTone.js new file mode 100644 index 00000000000000..c7bd4c8bb426ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkAddedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 17.97V10.9c-2.28-.46-4-2.48-4-4.9 0-.34.03-.68.1-1H7v12.97l5-2.14 5 2.14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.83 9 15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9zM17 17.97l-5-2.14-5 2.14V5h6.1c.15-.74.46-1.42.9-2H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9c-.32.07-.66.1-1 .1-.34 0-.68-.03-1-.1v7.07z" +}, "1")], 'BookmarkAddedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkBorder.js b/packages/material-ui-icons/lib/esm/BookmarkBorder.js new file mode 100644 index 00000000000000..83322fe0ee2428 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkBorder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" +}), 'BookmarkBorder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkBorderOutlined.js b/packages/material-ui-icons/lib/esm/BookmarkBorderOutlined.js new file mode 100644 index 00000000000000..b1a125e2698863 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkBorderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" +}), 'BookmarkBorderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkBorderRounded.js b/packages/material-ui-icons/lib/esm/BookmarkBorderRounded.js new file mode 100644 index 00000000000000..c9248f1bd25952 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkBorderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12z" +}), 'BookmarkBorderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkBorderSharp.js b/packages/material-ui-icons/lib/esm/BookmarkBorderSharp.js new file mode 100644 index 00000000000000..70d70877e345b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkBorderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5v18l7-3 7 3V3zm-2 15-5-2.18L7 18V5h10v13z" +}), 'BookmarkBorderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkBorderTwoTone.js b/packages/material-ui-icons/lib/esm/BookmarkBorderTwoTone.js new file mode 100644 index 00000000000000..21968e6b954ab7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkBorderTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" +}), 'BookmarkBorderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkOutlined.js b/packages/material-ui-icons/lib/esm/BookmarkOutlined.js new file mode 100644 index 00000000000000..2bc5c851cc4376 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z" +}), 'BookmarkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkRemove.js b/packages/material-ui-icons/lib/esm/BookmarkRemove.js new file mode 100644 index 00000000000000..c9ace679686a67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkRemove.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-6V5h6v2zm-2 3.9c-.32.07-.66.1-1 .1-2.76 0-5-2.24-5-5 0-1.13.37-2.16 1-3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9z" +}), 'BookmarkRemove'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkRemoveOutlined.js b/packages/material-ui-icons/lib/esm/BookmarkRemoveOutlined.js new file mode 100644 index 00000000000000..309fb1ca816f92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkRemoveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v6.97l-5-2.14-5 2.14V5h6V3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V11h-2zm4-4h-6V5h6v2z" +}), 'BookmarkRemoveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkRemoveRounded.js b/packages/material-ui-icons/lib/esm/BookmarkRemoveRounded.js new file mode 100644 index 00000000000000..c5b5c489392b2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkRemoveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1zm-2 4.9c-.32.07-.66.1-1 .1-2.76 0-5-2.24-5-5 0-1.13.37-2.16 1-3H7c-1.1 0-2 .9-2 2v14.48c0 .72.73 1.2 1.39.92L12 18l5.61 2.4c.66.28 1.39-.2 1.39-.92V10.9z" +}), 'BookmarkRemoveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkRemoveSharp.js b/packages/material-ui-icons/lib/esm/BookmarkRemoveSharp.js new file mode 100644 index 00000000000000..710f8dbae1ea14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkRemoveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-6V5h6v2zm-2 3.9c-.64.13-1.32.14-2.02 0-1.91-.38-3.47-1.92-3.87-3.83-.32-1.53.07-2.97.89-4.07H5v18l7-3 7 3V10.9z" +}), 'BookmarkRemoveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkRemoveTwoTone.js b/packages/material-ui-icons/lib/esm/BookmarkRemoveTwoTone.js new file mode 100644 index 00000000000000..24cd17f6286284 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkRemoveTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 17.97V10.9c-2.28-.46-4-2.48-4-4.9 0-.34.03-.68.1-1H7v12.97l5-2.14 5 2.14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 7h-6V5h6v2zm-4 10.97-5-2.14-5 2.14V5h6.1c.15-.74.46-1.42.9-2H7c-1.1 0-2 .9-2 2v16l7-3 7 3V10.9c-.32.07-.66.1-1 .1-.34 0-.68-.03-1-.1v7.07z" +}, "1")], 'BookmarkRemoveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkRounded.js b/packages/material-ui-icons/lib/esm/BookmarkRounded.js new file mode 100644 index 00000000000000..c5f1125efa693c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z" +}), 'BookmarkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkSharp.js b/packages/material-ui-icons/lib/esm/BookmarkSharp.js new file mode 100644 index 00000000000000..cfdd39c8f3e2f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5v18l7-3 7 3V3z" +}), 'BookmarkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarkTwoTone.js b/packages/material-ui-icons/lib/esm/BookmarkTwoTone.js new file mode 100644 index 00000000000000..92b2b4f6130131 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m7 17.97 5-2.15 5 2.15V5H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97-5-2.14-5 2.14V5h10v12.97z" +}, "1")], 'BookmarkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bookmarks.js b/packages/material-ui-icons/lib/esm/Bookmarks.js new file mode 100644 index 00000000000000..33c66e4030fdbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bookmarks.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 18 2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" +}), 'Bookmarks'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarksOutlined.js b/packages/material-ui-icons/lib/esm/BookmarksOutlined.js new file mode 100644 index 00000000000000..57b8ce41a2a3df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarksOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" +}), 'BookmarksOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarksRounded.js b/packages/material-ui-icons/lib/esm/BookmarksRounded.js new file mode 100644 index 00000000000000..8e2b638633ec2b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarksRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 18 2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z" +}), 'BookmarksRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarksSharp.js b/packages/material-ui-icons/lib/esm/BookmarksSharp.js new file mode 100644 index 00000000000000..cb9e2cc62e8460 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarksSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 18 2 1V1H7v2h12v15zM17 5H3v18l7-3 7 3V5z" +}), 'BookmarksSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BookmarksTwoTone.js b/packages/material-ui-icons/lib/esm/BookmarksTwoTone.js new file mode 100644 index 00000000000000..26bc4b196fff44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BookmarksTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 1H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2zm0 14.97-4.21-1.81-.79-.34-.79.34L5 19.97V7h10v12.97z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m5 19.97 5-2.15 5 2.15V7H5z", + opacity: ".3" +}, "1")], 'BookmarksTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderAll.js b/packages/material-ui-icons/lib/esm/BorderAll.js new file mode 100644 index 00000000000000..b3b4e596069969 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderAll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" +}), 'BorderAll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderAllOutlined.js b/packages/material-ui-icons/lib/esm/BorderAllOutlined.js new file mode 100644 index 00000000000000..c09bd562d83e73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderAllOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" +}), 'BorderAllOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderAllRounded.js b/packages/material-ui-icons/lib/esm/BorderAllRounded.js new file mode 100644 index 00000000000000..f90731c3995e47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderAllRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm8 14H6c-.55 0-1-.45-1-1v-5h5c.55 0 1 .45 1 1v5zm-1-8H5V6c0-.55.45-1 1-1h5v5c0 .55-.45 1-1 1zm8 8h-5v-5c0-.55.45-1 1-1h5v5c0 .55-.45 1-1 1zm1-8h-5c-.55 0-1-.45-1-1V5h5c.55 0 1 .45 1 1v5z" +}), 'BorderAllRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderAllSharp.js b/packages/material-ui-icons/lib/esm/BorderAllSharp.js new file mode 100644 index 00000000000000..f0d01084abfddc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderAllSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" +}), 'BorderAllSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderAllTwoTone.js b/packages/material-ui-icons/lib/esm/BorderAllTwoTone.js new file mode 100644 index 00000000000000..57792afac83346 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderAllTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM11 19H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" +}), 'BorderAllTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderBottom.js b/packages/material-ui-icons/lib/esm/BorderBottom.js new file mode 100644 index 00000000000000..4026afcb438a7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderBottom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" +}), 'BorderBottom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderBottomOutlined.js b/packages/material-ui-icons/lib/esm/BorderBottomOutlined.js new file mode 100644 index 00000000000000..e8a54cd476c062 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderBottomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" +}), 'BorderBottomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderBottomRounded.js b/packages/material-ui-icons/lib/esm/BorderBottomRounded.js new file mode 100644 index 00000000000000..e6164e8f8e8de3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderBottomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm1-6H3v2h2v-2z" +}), 'BorderBottomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderBottomSharp.js b/packages/material-ui-icons/lib/esm/BorderBottomSharp.js new file mode 100644 index 00000000000000..cfba40d84129a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderBottomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" +}), 'BorderBottomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderBottomTwoTone.js b/packages/material-ui-icons/lib/esm/BorderBottomTwoTone.js new file mode 100644 index 00000000000000..32a45725ed2656 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderBottomTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 11h2v2H3zm0 4h2v2H3zm0 4h18v2H3zm16-4h2v2h-2zM3 7h2v2H3zm16 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm4-4h2v2h-2zm-4-4h2v2h-2zm-8 8h2v2H7zM3 3h2v2H3zm8 4h2v2h-2zM7 3h2v2H7zm4 8h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2z" +}), 'BorderBottomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderClear.js b/packages/material-ui-icons/lib/esm/BorderClear.js new file mode 100644 index 00000000000000..1169d65a19e2b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderClear.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderClear'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderClearOutlined.js b/packages/material-ui-icons/lib/esm/BorderClearOutlined.js new file mode 100644 index 00000000000000..381dcc4d9e9836 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderClearOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderClearOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderClearRounded.js b/packages/material-ui-icons/lib/esm/BorderClearRounded.js new file mode 100644 index 00000000000000..fc2bee8287ef00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderClearRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderClearRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderClearSharp.js b/packages/material-ui-icons/lib/esm/BorderClearSharp.js new file mode 100644 index 00000000000000..2fdd89c1ad5fd5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderClearSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderClearSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderClearTwoTone.js b/packages/material-ui-icons/lib/esm/BorderClearTwoTone.js new file mode 100644 index 00000000000000..4fdf4bd9134afc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderClearTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3h2v2H7zm0 16h2v2H7zM3 3h2v2H3zm16 0h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0 12h2v2H3zm16 0h2v2h-2zm0-4h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm4 0h2v2H7zm8 0h2v2h-2zm-4 8h2v2h-2zm4 0h2v2h-2zm0-16h2v2h-2zm-4 0h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2zm0-4h2v2h-2z" +}), 'BorderClearTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderColor.js b/packages/material-ui-icons/lib/esm/BorderColor.js new file mode 100644 index 00000000000000..265554f849aba8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderColor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 24H2v-4h20v4zM13.06 5.19l3.75 3.75L7.75 18H4v-3.75l9.06-9.06zm4.82 2.68-3.75-3.75 1.83-1.83c.39-.39 1.02-.39 1.41 0l2.34 2.34c.39.39.39 1.02 0 1.41l-1.83 1.83z" +}), 'BorderColor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderColorOutlined.js b/packages/material-ui-icons/lib/esm/BorderColorOutlined.js new file mode 100644 index 00000000000000..d2bfe7585de01e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderColorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.81 8.94-3.75-3.75L4 14.25V18h3.75l9.06-9.06zM6 16v-.92l7.06-7.06.92.92L6.92 16H6zm13.71-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2 20h20v4H2z" +}), 'BorderColorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderColorRounded.js b/packages/material-ui-icons/lib/esm/BorderColorRounded.js new file mode 100644 index 00000000000000..203974a74d172e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderColorRounded.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.75 7 14 3.25 4.15 13.1c-.1.1-.15.22-.15.36v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.75 7zm2.96-2.96c.39-.39.39-1.02 0-1.41L18.37.29a.9959.9959 0 0 0-1.41 0L15 2.25 18.75 6l1.96-1.96z" +}, "0"), /*#__PURE__*/_jsx("path", { + fillOpacity: ".36", + d: "M2 20h20c1.1 0 2 .9 2 2s-.9 2-2 2H2c-1.1 0-2-.9-2-2s.9-2 2-2z" +}, "1")], 'BorderColorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderColorSharp.js b/packages/material-ui-icons/lib/esm/BorderColorSharp.js new file mode 100644 index 00000000000000..1285b0e5e4e59b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderColorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 24H2v-4h20v4zM13.06 5.19l3.75 3.75L7.75 18H4v-3.75l9.06-9.06zm4.82 2.68-3.75-3.75 2.53-2.54 3.75 3.75-2.53 2.54z" +}), 'BorderColorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderColorTwoTone.js b/packages/material-ui-icons/lib/esm/BorderColorTwoTone.js new file mode 100644 index 00000000000000..43a29412f171da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderColorTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.81 8.94-3.75-3.75L4 14.25V18h3.75l9.06-9.06zM6 16v-.92l7.06-7.06.92.92L6.92 16H6zm13.71-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2 20h20v4H2z" +}), 'BorderColorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderHorizontal.js b/packages/material-ui-icons/lib/esm/BorderHorizontal.js new file mode 100644 index 00000000000000..38db6309b09157 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderHorizontal.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'BorderHorizontal'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderHorizontalOutlined.js b/packages/material-ui-icons/lib/esm/BorderHorizontalOutlined.js new file mode 100644 index 00000000000000..e1b68e51ae91cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderHorizontalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'BorderHorizontalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderHorizontalRounded.js b/packages/material-ui-icons/lib/esm/BorderHorizontalRounded.js new file mode 100644 index 00000000000000..e724be310a6c32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderHorizontalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-7-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'BorderHorizontalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderHorizontalSharp.js b/packages/material-ui-icons/lib/esm/BorderHorizontalSharp.js new file mode 100644 index 00000000000000..45bf4d0537e87a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderHorizontalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'BorderHorizontalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderHorizontalTwoTone.js b/packages/material-ui-icons/lib/esm/BorderHorizontalTwoTone.js new file mode 100644 index 00000000000000..5b1dfa9ad861d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderHorizontalTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 3h2v2h-2zm8 0h2v2h-2zm0 4h2v2h-2zm-4-4h2v2h-2zM3 19h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm4 12h2v2H7zm4-12h2v2h-2zM7 3h2v2H7zM3 3h2v2H3zm12 16h2v2h-2zm-4 0h2v2h-2zm8-4h2v2h-2zm0 4h2v2h-2zm-8-4h2v2h-2zm-8-4h18v2H3z" +}), 'BorderHorizontalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderInner.js b/packages/material-ui-icons/lib/esm/BorderInner.js new file mode 100644 index 00000000000000..db2b554e787f3d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderInner.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" +}), 'BorderInner'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderInnerOutlined.js b/packages/material-ui-icons/lib/esm/BorderInnerOutlined.js new file mode 100644 index 00000000000000..a2badaaffd2a48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderInnerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" +}), 'BorderInnerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderInnerRounded.js b/packages/material-ui-icons/lib/esm/BorderInnerRounded.js new file mode 100644 index 00000000000000..c34cbe9c415d4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderInnerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM12 3c-.55 0-1 .45-1 1v7H4c-.55 0-1 .45-1 1s.45 1 1 1h7v7c0 .55.45 1 1 1s1-.45 1-1v-7h7c.55 0 1-.45 1-1s-.45-1-1-1h-7V4c0-.55-.45-1-1-1zm7 18h2v-2h-2v2zm0-4h2v-2h-2v2z" +}), 'BorderInnerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderInnerSharp.js b/packages/material-ui-icons/lib/esm/BorderInnerSharp.js new file mode 100644 index 00000000000000..0b8faa18930832 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderInnerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" +}), 'BorderInnerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderInnerTwoTone.js b/packages/material-ui-icons/lib/esm/BorderInnerTwoTone.js new file mode 100644 index 00000000000000..18fe0a050d8674 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderInnerTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 15h2v2H3zM3 3h2v2H3zm0 16h2v2H3zm8 2h2v-8h8v-2h-8V3h-2v8H3v2h8zm-4-2h2v2H7zm12-4h2v2h-2zm-4 4h2v2h-2zm4 0h2v2h-2zM3 7h2v2H3zm16 0h2v2h-2zM7 3h2v2H7zm8 0h2v2h-2zm4 0h2v2h-2z" +}), 'BorderInnerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderLeft.js b/packages/material-ui-icons/lib/esm/BorderLeft.js new file mode 100644 index 00000000000000..eba21a2bb81f47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderLeftOutlined.js b/packages/material-ui-icons/lib/esm/BorderLeftOutlined.js new file mode 100644 index 00000000000000..5ba665bb255ea5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderLeftRounded.js b/packages/material-ui-icons/lib/esm/BorderLeftRounded.js new file mode 100644 index 00000000000000..7772d97cbdb25f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-3 8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderLeftSharp.js b/packages/material-ui-icons/lib/esm/BorderLeftSharp.js new file mode 100644 index 00000000000000..9944906817d273 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" +}), 'BorderLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderLeftTwoTone.js b/packages/material-ui-icons/lib/esm/BorderLeftTwoTone.js new file mode 100644 index 00000000000000..f81cc02eb3b298 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 3h2v2h-2zM3 3h2v18H3zm12 0h2v2h-2zm-4 16h2v2h-2zm0-4h2v2h-2zm4 4h2v2h-2zM11 7h2v2h-2zm0 4h2v2h-2zm8 4h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm-8 8h2v2H7zm0-8h2v2H7zm0-8h2v2H7z" +}), 'BorderLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderOuter.js b/packages/material-ui-icons/lib/esm/BorderOuter.js new file mode 100644 index 00000000000000..4164e51645fb3d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderOuter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" +}), 'BorderOuter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderOuterOutlined.js b/packages/material-ui-icons/lib/esm/BorderOuterOutlined.js new file mode 100644 index 00000000000000..05975c1f4363e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderOuterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" +}), 'BorderOuterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderOuterRounded.js b/packages/material-ui-icons/lib/esm/BorderOuterRounded.js new file mode 100644 index 00000000000000..70ba369012f80a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderOuterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm15 14H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-5-4h-2v2h2v-2zm-4-4H7v2h2v-2z" +}), 'BorderOuterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderOuterSharp.js b/packages/material-ui-icons/lib/esm/BorderOuterSharp.js new file mode 100644 index 00000000000000..7375abc7f3a6c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderOuterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" +}), 'BorderOuterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderOuterTwoTone.js b/packages/material-ui-icons/lib/esm/BorderOuterTwoTone.js new file mode 100644 index 00000000000000..bdbd24c52e2aa5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderOuterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 11h2v2h-2zm0-4h2v2h-2zm10-4H3v18h18V3zm-2 16H5V5h14v14zm-4-8h2v2h-2zm-8 0h2v2H7zm4 4h2v2h-2z" +}), 'BorderOuterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderRight.js b/packages/material-ui-icons/lib/esm/BorderRight.js new file mode 100644 index 00000000000000..d2766e07b331a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" +}), 'BorderRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderRightOutlined.js b/packages/material-ui-icons/lib/esm/BorderRightOutlined.js new file mode 100644 index 00000000000000..04656ff61fd42d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" +}), 'BorderRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderRightRounded.js b/packages/material-ui-icons/lib/esm/BorderRightRounded.js new file mode 100644 index 00000000000000..518abc253bc0de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-9v16c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zm-4 17h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" +}), 'BorderRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderRightSharp.js b/packages/material-ui-icons/lib/esm/BorderRightSharp.js new file mode 100644 index 00000000000000..42a02eb8c46460 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" +}), 'BorderRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderRightTwoTone.js b/packages/material-ui-icons/lib/esm/BorderRightTwoTone.js new file mode 100644 index 00000000000000..cec083a3849b05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h2v2H3zm0 16h2v2H3zM15 3h2v2h-2zm0 16h2v2h-2zm0-8h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm0-4h2v2H3zm8 8h2v2h-2zm-4-4h2v2H7zm0-8h2v2H7zm12 0h2v18h-2zM7 19h2v2H7zm4-16h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2z" +}), 'BorderRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderStyle.js b/packages/material-ui-icons/lib/esm/BorderStyle.js new file mode 100644 index 00000000000000..d286db314248bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderStyle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" +}), 'BorderStyle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderStyleOutlined.js b/packages/material-ui-icons/lib/esm/BorderStyleOutlined.js new file mode 100644 index 00000000000000..b5fedeec0c8127 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderStyleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" +}), 'BorderStyleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderStyleRounded.js b/packages/material-ui-icons/lib/esm/BorderStyleRounded.js new file mode 100644 index 00000000000000..f105ad0a1b28fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderStyleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 5v15c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm16 4h2V7h-2v2z" +}), 'BorderStyleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderStyleSharp.js b/packages/material-ui-icons/lib/esm/BorderStyleSharp.js new file mode 100644 index 00000000000000..2070cfca926857 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderStyleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" +}), 'BorderStyleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderStyleTwoTone.js b/packages/material-ui-icons/lib/esm/BorderStyleTwoTone.js new file mode 100644 index 00000000000000..ac2e98998f032c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderStyleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19h2v2h-2zm0-8h2v2h-2zm0 4h2v2h-2zm-4 4h2v2h-2zM3 21h2V5h16V3H3zM19 7h2v2h-2zm-8 12h2v2h-2zm-4 0h2v2H7z" +}), 'BorderStyleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderTop.js b/packages/material-ui-icons/lib/esm/BorderTop.js new file mode 100644 index 00000000000000..c6d8096ac83397 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderTop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" +}), 'BorderTop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderTopOutlined.js b/packages/material-ui-icons/lib/esm/BorderTopOutlined.js new file mode 100644 index 00000000000000..4c6d28875658ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderTopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" +}), 'BorderTopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderTopRounded.js b/packages/material-ui-icons/lib/esm/BorderTopRounded.js new file mode 100644 index 00000000000000..632ff1f2810d2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderTopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm16 13h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" +}), 'BorderTopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderTopSharp.js b/packages/material-ui-icons/lib/esm/BorderTopSharp.js new file mode 100644 index 00000000000000..c9ff6726ec7435 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderTopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" +}), 'BorderTopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderTopTwoTone.js b/packages/material-ui-icons/lib/esm/BorderTopTwoTone.js new file mode 100644 index 00000000000000..c1fffba9e6fc96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderTopTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19h2v2h-2zM3 19h2v2H3zm8 0h2v2h-2zm-8-8h2v2H3zm0 4h2v2H3zm4 4h2v2H7zm4-12h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0-4h18v2H3zm8 12h2v2h-2zm4 4h2v2h-2zm-8-8h2v2H7zm8 0h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" +}), 'BorderTopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderVertical.js b/packages/material-ui-icons/lib/esm/BorderVertical.js new file mode 100644 index 00000000000000..ff23db9eca1a5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderVertical.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" +}), 'BorderVertical'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderVerticalOutlined.js b/packages/material-ui-icons/lib/esm/BorderVerticalOutlined.js new file mode 100644 index 00000000000000..2f1715894b183a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderVerticalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" +}), 'BorderVerticalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderVerticalRounded.js b/packages/material-ui-icons/lib/esm/BorderVerticalRounded.js new file mode 100644 index 00000000000000..3d67c4d2245f1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderVerticalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-7 4c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1zm7 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" +}), 'BorderVerticalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderVerticalSharp.js b/packages/material-ui-icons/lib/esm/BorderVerticalSharp.js new file mode 100644 index 00000000000000..f1e179df42191e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderVerticalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" +}), 'BorderVerticalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BorderVerticalTwoTone.js b/packages/material-ui-icons/lib/esm/BorderVerticalTwoTone.js new file mode 100644 index 00000000000000..ad56a22b6e5915 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BorderVerticalTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3h2v2H7zm0 8h2v2H7zm0 8h2v2H7zm-4 0h2v2H3zM3 3h2v2H3zm0 8h2v2H3zm16-8h2v2h-2zM3 7h2v2H3zm8-4h2v18h-2zM3 15h2v2H3zm12-4h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm0 12h2v2h-2zm-4 0h2v2h-2zm0-16h2v2h-2z" +}), 'BorderVerticalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrandingWatermark.js b/packages/material-ui-icons/lib/esm/BrandingWatermark.js new file mode 100644 index 00000000000000..59c6bc4f52911c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrandingWatermark.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-9v-6h9v6z" +}), 'BrandingWatermark'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrandingWatermarkOutlined.js b/packages/material-ui-icons/lib/esm/BrandingWatermarkOutlined.js new file mode 100644 index 00000000000000..2c4496caddce76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrandingWatermarkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z" +}), 'BrandingWatermarkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrandingWatermarkRounded.js b/packages/material-ui-icons/lib/esm/BrandingWatermarkRounded.js new file mode 100644 index 00000000000000..cbb110954dd32c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrandingWatermarkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16h-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1z" +}), 'BrandingWatermarkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrandingWatermarkSharp.js b/packages/material-ui-icons/lib/esm/BrandingWatermarkSharp.js new file mode 100644 index 00000000000000..ade49d1e61c187 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrandingWatermarkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-2 16h-9v-6h9v6z" +}), 'BrandingWatermarkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrandingWatermarkTwoTone.js b/packages/material-ui-icons/lib/esm/BrandingWatermarkTwoTone.js new file mode 100644 index 00000000000000..c5692cb1edf4fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrandingWatermarkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V5H3v14zm8-7h9v6h-9v-6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z" +}, "1")], 'BrandingWatermarkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BreakfastDining.js b/packages/material-ui-icons/lib/esm/BreakfastDining.js new file mode 100644 index 00000000000000..09c2f7a7ecddeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BreakfastDining.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm-4 12h-4v-4h4v4z" +}), 'BreakfastDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BreakfastDiningOutlined.js b/packages/material-ui-icons/lib/esm/BreakfastDiningOutlined.js new file mode 100644 index 00000000000000..7ea604f7600a91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BreakfastDiningOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm1 5.72-1 .58V19H6V9.31l-.99-.58C4.38 8.35 4 7.71 4 7c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .71-.38 1.36-1 1.72z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.71 9.29C12.51 9.1 12.26 9 12 9s-.51.1-.71.29l-3 3c-.39.39-.39 1.02 0 1.41l3 3c.2.2.45.3.71.3s.51-.1.71-.29l3-3c.39-.39.39-1.02 0-1.41l-3-3.01zM12 14.58 10.41 13 12 11.41 13.59 13 12 14.58z" +}, "1")], 'BreakfastDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BreakfastDiningRounded.js b/packages/material-ui-icons/lib/esm/BreakfastDiningRounded.js new file mode 100644 index 00000000000000..89455364147692 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BreakfastDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm-2.29 10.7-3 3c-.39.39-1.02.39-1.42 0l-3-3a.9959.9959 0 0 1 0-1.41l3-3c.39-.39 1.02-.39 1.41 0l3 3c.4.39.4 1.02.01 1.41z" +}), 'BreakfastDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BreakfastDiningSharp.js b/packages/material-ui-icons/lib/esm/BreakfastDiningSharp.js new file mode 100644 index 00000000000000..da31820ddeea89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BreakfastDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.85 3H6.14C4.15 3 2.36 4.39 2.05 6.36c-.27 1.75.59 3.29 1.95 4.09V21h16V10.45c1.36-.79 2.23-2.36 1.95-4.11C21.63 4.38 19.83 3 17.85 3zm-1.44 10L12 17.42 7.59 13 12 8.59 16.41 13z" +}), 'BreakfastDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BreakfastDiningTwoTone.js b/packages/material-ui-icons/lib/esm/BreakfastDiningTwoTone.js new file mode 100644 index 00000000000000..9ed3e70e22bad8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BreakfastDiningTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 5H6c-1.1 0-2 .9-2 2 0 .71.38 1.35 1.01 1.73l.99.58V19h12V9.3l1-.58c.63-.36 1-1.01 1-1.72 0-1.1-.9-2-2-2zm-2.29 8.7-3 3c-.2.2-.45.3-.71.3s-.51-.1-.71-.29l-3-3a.9959.9959 0 0 1 0-1.41l3-3c.2-.2.45-.3.71-.3s.51.1.71.29l3 3c.39.39.39 1.02 0 1.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm1 5.72-1 .58V19H6V9.31l-.99-.58C4.38 8.35 4 7.71 4 7c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .71-.38 1.36-1 1.72z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.71 9.29C12.51 9.1 12.26 9 12 9s-.51.1-.71.29l-3 3c-.39.39-.39 1.02 0 1.41l3 3c.2.2.45.3.71.3s.51-.1.71-.29l3-3c.39-.39.39-1.02 0-1.41l-3-3.01zM12 14.58 10.41 13 12 11.41 13.59 13 12 14.58z" +}, "2")], 'BreakfastDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness1.js b/packages/material-ui-icons/lib/esm/Brightness1.js new file mode 100644 index 00000000000000..c63a796510a9de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness1.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "10" +}), 'Brightness1'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness1Outlined.js b/packages/material-ui-icons/lib/esm/Brightness1Outlined.js new file mode 100644 index 00000000000000..b36f15bea2e586 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness1Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'Brightness1Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness1Rounded.js b/packages/material-ui-icons/lib/esm/Brightness1Rounded.js new file mode 100644 index 00000000000000..5e05c90945a564 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness1Rounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "10" +}), 'Brightness1Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness1Sharp.js b/packages/material-ui-icons/lib/esm/Brightness1Sharp.js new file mode 100644 index 00000000000000..1737bddf2de455 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness1Sharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "10" +}), 'Brightness1Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness1TwoTone.js b/packages/material-ui-icons/lib/esm/Brightness1TwoTone.js new file mode 100644 index 00000000000000..2451748554361c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness1TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" +}, "1")], 'Brightness1TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness2.js b/packages/material-ui-icons/lib/esm/Brightness2.js new file mode 100644 index 00000000000000..d7f0065c58a8d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness2.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" +}), 'Brightness2'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness2Outlined.js b/packages/material-ui-icons/lib/esm/Brightness2Outlined.js new file mode 100644 index 00000000000000..63a2ada17b4453 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness2Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12s-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4m0-2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" +}), 'Brightness2Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness2Rounded.js b/packages/material-ui-icons/lib/esm/Brightness2Rounded.js new file mode 100644 index 00000000000000..72f83694c73a3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness2Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.43 2.3c-2.38-.59-4.68-.27-6.63.64-.35.16-.41.64-.1.86C8.3 5.6 10 8.6 10 12c0 3.4-1.7 6.4-4.3 8.2-.32.22-.26.7.09.86 1.28.6 2.71.94 4.21.94 6.05 0 10.85-5.38 9.87-11.6-.61-3.92-3.59-7.16-7.44-8.1z" +}), 'Brightness2Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness2Sharp.js b/packages/material-ui-icons/lib/esm/Brightness2Sharp.js new file mode 100644 index 00000000000000..031702d5dd4041 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness2Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" +}), 'Brightness2Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness2TwoTone.js b/packages/material-ui-icons/lib/esm/Brightness2TwoTone.js new file mode 100644 index 00000000000000..d6e30c7ef2e618 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness2TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 12c0-4.41-3.59-8-8-8-.34 0-.68.02-1.01.07C10.9 6.23 12 9.05 12 12c0 2.95-1.1 5.77-3.01 7.93.33.05.67.07 1.01.07 4.41 0 8-3.59 8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 20.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65zM12 12c0-2.95-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12z" +}, "1")], 'Brightness2TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness3.js b/packages/material-ui-icons/lib/esm/Brightness3.js new file mode 100644 index 00000000000000..f4e2b984f4364c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness3.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" +}), 'Brightness3'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness3Outlined.js b/packages/material-ui-icons/lib/esm/Brightness3Outlined.js new file mode 100644 index 00000000000000..49b16ca3f2083a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness3Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.7 4.91C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" +}), 'Brightness3Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness3Rounded.js b/packages/material-ui-icons/lib/esm/Brightness3Rounded.js new file mode 100644 index 00000000000000..a95443c410b161 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness3Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.93 2h-.14c-.83.02-1.09 1.12-.39 1.56 2.78 1.77 4.63 4.89 4.63 8.44s-1.84 6.66-4.62 8.43c-.71.46-.43 1.55.41 1.57h.21c6.05 0 10.86-5.39 9.87-11.63-.76-4.84-5.07-8.42-9.97-8.37z" +}), 'Brightness3Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness3Sharp.js b/packages/material-ui-icons/lib/esm/Brightness3Sharp.js new file mode 100644 index 00000000000000..92eb41a7f5b647 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness3Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" +}), 'Brightness3Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness3TwoTone.js b/packages/material-ui-icons/lib/esm/Brightness3TwoTone.js new file mode 100644 index 00000000000000..cf06a023b5d486 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness3TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.7 4.91c1.46 2 2.3 4.46 2.3 7.09s-.84 5.09-2.3 7.09C15.25 17.76 17 15.08 17 12s-1.75-5.76-4.3-7.09z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2zm3.7 17.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09z" +}, "1")], 'Brightness3TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness4.js b/packages/material-ui-icons/lib/esm/Brightness4.js new file mode 100644 index 00000000000000..b6215127ca89bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness4.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" +}), 'Brightness4'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness4Outlined.js b/packages/material-ui-icons/lib/esm/Brightness4Outlined.js new file mode 100644 index 00000000000000..85fb476bca386e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness4Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z" +}), 'Brightness4Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness4Rounded.js b/packages/material-ui-icons/lib/esm/Brightness4Rounded.js new file mode 100644 index 00000000000000..03085b498bd01c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness4Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.6 11.29 20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69l2.6-2.6c.39-.39.39-1.03 0-1.42zm-4.68 1.69c-.34 2.12-1.85 3.94-3.88 4.66-1.21.43-2.41.45-3.5.18-.41-.1-.48-.65-.13-.9C11.98 15.84 13 14.04 13 12s-1.02-3.84-2.58-4.92c-.35-.24-.29-.79.13-.9 1.09-.27 2.29-.25 3.5.18 2.02.72 3.54 2.54 3.88 4.66.05.33.07.66.07.98-.01.32-.03.65-.08.98z" +}), 'Brightness4Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness4Sharp.js b/packages/material-ui-icons/lib/esm/Brightness4Sharp.js new file mode 100644 index 00000000000000..e5747bde8e0c7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness4Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" +}), 'Brightness4Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness4TwoTone.js b/packages/material-ui-icons/lib/esm/Brightness4TwoTone.js new file mode 100644 index 00000000000000..9be4d5a6fea6a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness4TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12.29 17c-.74 0-1.45-.17-2.08-.46 1.72-.79 2.92-2.52 2.92-4.54s-1.2-3.75-2.92-4.54c.63-.29 1.34-.46 2.08-.46 2.76 0 5 2.24 5 5s-2.24 5-5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z" +}, "1")], 'Brightness4TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness5.js b/packages/material-ui-icons/lib/esm/Brightness5.js new file mode 100644 index 00000000000000..24bc74bbb9902b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness5.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'Brightness5'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness5Outlined.js b/packages/material-ui-icons/lib/esm/Brightness5Outlined.js new file mode 100644 index 00000000000000..016d3948f24ed3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness5Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" +}), 'Brightness5Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness5Rounded.js b/packages/material-ui-icons/lib/esm/Brightness5Rounded.js new file mode 100644 index 00000000000000..0fceb5ee989ee8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness5Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 15.31 2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'Brightness5Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness5Sharp.js b/packages/material-ui-icons/lib/esm/Brightness5Sharp.js new file mode 100644 index 00000000000000..e74deb27a00d25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness5Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'Brightness5Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness5TwoTone.js b/packages/material-ui-icons/lib/esm/Brightness5TwoTone.js new file mode 100644 index 00000000000000..c4a0714ecb269a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness5TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" +}, "1")], 'Brightness5TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness6.js b/packages/material-ui-icons/lib/esm/Brightness6.js new file mode 100644 index 00000000000000..ed5d60e24d98ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness6.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" +}), 'Brightness6'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness6Outlined.js b/packages/material-ui-icons/lib/esm/Brightness6Outlined.js new file mode 100644 index 00000000000000..997fcb46433241 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness6Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z" +}), 'Brightness6Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness6Rounded.js b/packages/material-ui-icons/lib/esm/Brightness6Rounded.js new file mode 100644 index 00000000000000..fb1f8f362aa11e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness6Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 15.31 2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69zm-8 1.59V7.1c0-.61.55-1.11 1.15-.99C15.91 6.65 18 9.08 18 12s-2.09 5.35-4.85 5.89c-.6.12-1.15-.38-1.15-.99z" +}), 'Brightness6Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness6Sharp.js b/packages/material-ui-icons/lib/esm/Brightness6Sharp.js new file mode 100644 index 00000000000000..766397360f6d52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness6Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" +}), 'Brightness6Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness6TwoTone.js b/packages/material-ui-icons/lib/esm/Brightness6TwoTone.js new file mode 100644 index 00000000000000..8c14903e5c8489 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness6TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98v-11c3.03 0 5.5 2.47 5.5 5.5s-2.47 5.5-5.5 5.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z" +}, "1")], 'Brightness6TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness7.js b/packages/material-ui-icons/lib/esm/Brightness7.js new file mode 100644 index 00000000000000..4e4dc4f2ae278a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness7.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'Brightness7'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness7Outlined.js b/packages/material-ui-icons/lib/esm/Brightness7Outlined.js new file mode 100644 index 00000000000000..3d234997f6607e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness7Outlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2" +}, "1")], 'Brightness7Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness7Rounded.js b/packages/material-ui-icons/lib/esm/Brightness7Rounded.js new file mode 100644 index 00000000000000..3c50f59f56be92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness7Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6a.9959.9959 0 0 0-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69l2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'Brightness7Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness7Sharp.js b/packages/material-ui-icons/lib/esm/Brightness7Sharp.js new file mode 100644 index 00000000000000..8b0f697910d6f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness7Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'Brightness7Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brightness7TwoTone.js b/packages/material-ui-icons/lib/esm/Brightness7TwoTone.js new file mode 100644 index 00000000000000..c3566d5a02823e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brightness7TwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2" +}, "2")], 'Brightness7TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessAuto.js b/packages/material-ui-icons/lib/esm/BrightnessAuto.js new file mode 100644 index 00000000000000..f5225b0c4c71ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessAuto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z" +}), 'BrightnessAuto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessAutoOutlined.js b/packages/material-ui-icons/lib/esm/BrightnessAutoOutlined.js new file mode 100644 index 00000000000000..3d4a411c7eae84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessAutoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z" +}), 'BrightnessAutoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessAutoRounded.js b/packages/material-ui-icons/lib/esm/BrightnessAutoRounded.js new file mode 100644 index 00000000000000..3ecd7bb40bec39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessAutoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69zm-5.91 6.71L13.6 14h-3.2l-.49 1.4c-.13.36-.46.6-.84.6-.62 0-1.05-.61-.84-1.19l2.44-6.86c.2-.57.73-.95 1.33-.95.6 0 1.13.38 1.34.94l2.44 6.86c.21.58-.22 1.19-.84 1.19-.39.01-.72-.23-.85-.59z" +}), 'BrightnessAutoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessAutoSharp.js b/packages/material-ui-icons/lib/esm/BrightnessAutoSharp.js new file mode 100644 index 00000000000000..8c8668149327e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessAutoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z" +}), 'BrightnessAutoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessAutoTwoTone.js b/packages/material-ui-icons/lib/esm/BrightnessAutoTwoTone.js new file mode 100644 index 00000000000000..25c40f5e9f01ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessAutoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L12 9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z" +}, "1")], 'BrightnessAutoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessHigh.js b/packages/material-ui-icons/lib/esm/BrightnessHigh.js new file mode 100644 index 00000000000000..21361bea12c5fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessHigh.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'BrightnessHigh'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessHighOutlined.js b/packages/material-ui-icons/lib/esm/BrightnessHighOutlined.js new file mode 100644 index 00000000000000..b6497cd0d99b28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessHighOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2.5" +}, "1")], 'BrightnessHighOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessHighRounded.js b/packages/material-ui-icons/lib/esm/BrightnessHighRounded.js new file mode 100644 index 00000000000000..14270945aa1bf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessHighRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'BrightnessHighRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessHighSharp.js b/packages/material-ui-icons/lib/esm/BrightnessHighSharp.js new file mode 100644 index 00000000000000..99478ed849024f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessHighSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'BrightnessHighSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessHighTwoTone.js b/packages/material-ui-icons/lib/esm/BrightnessHighTwoTone.js new file mode 100644 index 00000000000000..115f4cbcaed7d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessHighTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2.5" +}, "2")], 'BrightnessHighTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessLow.js b/packages/material-ui-icons/lib/esm/BrightnessLow.js new file mode 100644 index 00000000000000..452a0ac68a1b9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessLow.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'BrightnessLow'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessLowOutlined.js b/packages/material-ui-icons/lib/esm/BrightnessLowOutlined.js new file mode 100644 index 00000000000000..ff26e757f87e24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessLowOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'BrightnessLowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessLowRounded.js b/packages/material-ui-icons/lib/esm/BrightnessLowRounded.js new file mode 100644 index 00000000000000..ab54cdfc79fb73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessLowRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 15.31 1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'BrightnessLowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessLowSharp.js b/packages/material-ui-icons/lib/esm/BrightnessLowSharp.js new file mode 100644 index 00000000000000..0a7e91bbed7c21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessLowSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'BrightnessLowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessLowTwoTone.js b/packages/material-ui-icons/lib/esm/BrightnessLowTwoTone.js new file mode 100644 index 00000000000000..4e4daf4082e32f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessLowTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "1")], 'BrightnessLowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessMedium.js b/packages/material-ui-icons/lib/esm/BrightnessMedium.js new file mode 100644 index 00000000000000..75c384927c316f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessMedium.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" +}), 'BrightnessMedium'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessMediumOutlined.js b/packages/material-ui-icons/lib/esm/BrightnessMediumOutlined.js new file mode 100644 index 00000000000000..8a4ecf07c6b176 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessMediumOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z" +}), 'BrightnessMediumOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessMediumRounded.js b/packages/material-ui-icons/lib/esm/BrightnessMediumRounded.js new file mode 100644 index 00000000000000..c2aed703b9d26c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessMediumRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 15.31 1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69zm-8 1.59V7.1c0-.61.55-1.11 1.15-.99C15.91 6.65 18 9.08 18 12s-2.09 5.35-4.85 5.89c-.6.12-1.15-.38-1.15-.99z" +}), 'BrightnessMediumRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessMediumSharp.js b/packages/material-ui-icons/lib/esm/BrightnessMediumSharp.js new file mode 100644 index 00000000000000..291fd3081d4894 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessMediumSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.31 23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" +}), 'BrightnessMediumSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrightnessMediumTwoTone.js b/packages/material-ui-icons/lib/esm/BrightnessMediumTwoTone.js new file mode 100644 index 00000000000000..ded07f4832b27d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrightnessMediumTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z" +}, "1")], 'BrightnessMediumTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrokenImage.js b/packages/material-ui-icons/lib/esm/BrokenImage.js new file mode 100644 index 00000000000000..c9c2ee3c8b1a56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrokenImage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42 3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l3 2.99 4-4 4 4 4-3.99z" +}), 'BrokenImage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrokenImageOutlined.js b/packages/material-ui-icons/lib/esm/BrokenImageOutlined.js new file mode 100644 index 00000000000000..fb4b26920654c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrokenImageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z" +}), 'BrokenImageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrokenImageRounded.js b/packages/material-ui-icons/lib/esm/BrokenImageRounded.js new file mode 100644 index 00000000000000..bf7ca789fd9075 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrokenImageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5v6.59l-2.29-2.3c-.39-.39-1.03-.39-1.42 0L14 12.59 10.71 9.3a.9959.9959 0 0 0-1.41 0L6 12.59 3 9.58V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42 3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l2.29 2.29c.39.39 1.02.39 1.41 0l3.3-3.3 3.29 3.29c.39.39 1.02.39 1.41 0l3.3-3.28z" +}), 'BrokenImageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrokenImageSharp.js b/packages/material-ui-icons/lib/esm/BrokenImageSharp.js new file mode 100644 index 00000000000000..3fc0e20c36ce58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrokenImageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3v8.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V3h18zm-3 8.42 3 3.01V21H3v-8.58l3 2.99 4-4 4 4 4-3.99z" +}), 'BrokenImageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrokenImageTwoTone.js b/packages/material-ui-icons/lib/esm/BrokenImageTwoTone.js new file mode 100644 index 00000000000000..bb3098598f48f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrokenImageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13.99 15.41-4-4-4 4-.99-.99V19h14v-6.57l-1.01-1.01zM5 11.59l.99 1 4-4 4 4 4-4.01L19 9.59V5H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z" +}, "1")], 'BrokenImageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrowserNotSupported.js b/packages/material-ui-icons/lib/esm/BrowserNotSupported.js new file mode 100644 index 00000000000000..67ca0cb312a201 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrowserNotSupported.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.22 3.32 1.95 4.59 3 5.64V18c0 1.1.9 2 2 2h12.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" +}), 'BrowserNotSupported'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrowserNotSupportedOutlined.js b/packages/material-ui-icons/lib/esm/BrowserNotSupportedOutlined.js new file mode 100644 index 00000000000000..b34e469d9b1303 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrowserNotSupportedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.22 3.32 1.95 4.59 3 5.64V18c0 1.1.9 2 2 2h12.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" +}), 'BrowserNotSupportedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrowserNotSupportedRounded.js b/packages/material-ui-icons/lib/esm/BrowserNotSupportedRounded.js new file mode 100644 index 00000000000000..276d4766b87f6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrowserNotSupportedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.86 3.95c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l.41.42V18c0 1.1.9 2 2 2h12.36l1.42 1.42c.35.35.92.35 1.27 0s.35-.92 0-1.27L3.86 3.95zM5 18V7.64L15.36 18H5z" +}), 'BrowserNotSupportedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrowserNotSupportedSharp.js b/packages/material-ui-icons/lib/esm/BrowserNotSupportedSharp.js new file mode 100644 index 00000000000000..a243024868d900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrowserNotSupportedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6v10.5l2 2V4H6.5l2 2zM3.22 3.32 1.95 4.59 3 5.64V20h14.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" +}), 'BrowserNotSupportedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrowserNotSupportedTwoTone.js b/packages/material-ui-icons/lib/esm/BrowserNotSupportedTwoTone.js new file mode 100644 index 00000000000000..352e1903aa05ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrowserNotSupportedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6v10.5l1.95 1.95c.03-.15.05-.3.05-.45V6c0-1.1-.9-2-2-2H6.5l2 2H19zM3.22 3.32 1.95 4.59 3 5.64V18c0 1.1.9 2 2 2h12.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" +}), 'BrowserNotSupportedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrunchDining.js b/packages/material-ui-icons/lib/esm/BrunchDining.js new file mode 100644 index 00000000000000..264ab84634feb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrunchDining.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M18 8h2V4h-2v4zm-2.49 14H2.49c-.27 0-.49-.22-.49-.5V20h14v1.5c0 .28-.22.5-.49.5zM18 15.89l-.4-.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h2v2h-4v-6.11zM7 16v-2h4v2h4.5c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5h-13c-.28 0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5H7z" +}), 'BrunchDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrunchDiningOutlined.js b/packages/material-ui-icons/lib/esm/BrunchDiningOutlined.js new file mode 100644 index 00000000000000..00a29efebb3180 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrunchDiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 21.5c0 .28.22.5.49.5h13.02c.27 0 .49-.22.49-.5V20H2v1.5zM15.5 16H11v-2H7v2H2.5c-.28 0-.5.22-.5.5V18h14v-1.5c0-.28-.22-.5-.5-.5zm4.97-.55c.99-1.07 1.53-2.48 1.53-3.94V2h-6v9.47c0 1.48.58 2.92 1.6 4l.4.42V22h4v-2h-2v-4.03l.47-.52zM18 4h2v4h-2V4zm1.03 10.07c-.65-.71-1.03-1.65-1.03-2.6V10h2v1.51c0 .95-.34 1.85-.97 2.56z" +}), 'BrunchDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrunchDiningRounded.js b/packages/material-ui-icons/lib/esm/BrunchDiningRounded.js new file mode 100644 index 00000000000000..4ea93353193dab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrunchDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h2V4h-2v4zm-3 14H3c-.55 0-1-.45-1-1v-1h14v1c0 .55-.45 1-1 1zm3-6.11-.4-.42c-1.03-1.08-1.6-2.51-1.6-4V3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v8.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h1c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1v-5.11zM7 16v-1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v1h4c.55 0 1 .45 1 1v1H2v-1c0-.55.45-1 1-1h4z" +}), 'BrunchDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrunchDiningSharp.js b/packages/material-ui-icons/lib/esm/BrunchDiningSharp.js new file mode 100644 index 00000000000000..7172e39bba2769 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrunchDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h2V4h-2v4zm-2 14H2v-2h14v2zm2-6.11-.4-.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h2v2h-4v-6.11zM7 16v-2h4v2h5v2H2v-2h5z" +}), 'BrunchDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrunchDiningTwoTone.js b/packages/material-ui-icons/lib/esm/BrunchDiningTwoTone.js new file mode 100644 index 00000000000000..41a699693dc56a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrunchDiningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 10h-2v1.47c0 .95.37 1.89 1.03 2.6.63-.71.97-1.61.97-2.56V10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 21.5c0 .28.22.5.49.5h13.02c.27 0 .49-.22.49-.5V20H2v1.5zm18.47-6.05c.99-1.07 1.53-2.48 1.53-3.94V2h-6v9.47c0 1.48.58 2.92 1.6 4l.4.42V22h4v-2h-2v-4.03l.47-.52zM18 4h2v4h-2V4zm1.03 10.07c-.65-.71-1.03-1.65-1.03-2.6V10h2v1.51c0 .95-.34 1.85-.97 2.56zM15.5 16H11v-2H7v2H2.5c-.28 0-.5.22-.5.5V18h14v-1.5c0-.28-.22-.5-.5-.5z" +}, "1")], 'BrunchDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Brush.js b/packages/material-ui-icons/lib/esm/Brush.js new file mode 100644 index 00000000000000..f892d5ac91388e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Brush.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37-1.34-1.34a.9959.9959 0 0 0-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z" +}), 'Brush'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrushOutlined.js b/packages/material-ui-icons/lib/esm/BrushOutlined.js new file mode 100644 index 00000000000000..b0f99c6752e9a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrushOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29zM7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3z" +}), 'BrushOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrushRounded.js b/packages/material-ui-icons/lib/esm/BrushRounded.js new file mode 100644 index 00000000000000..d6e473b28167d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrushRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37-1.34-1.34a.9959.9959 0 0 0-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z" +}), 'BrushRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrushSharp.js b/packages/material-ui-icons/lib/esm/BrushSharp.js new file mode 100644 index 00000000000000..487b6dee9d4356 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrushSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm14.41-8.66-2.75-2.75L9 12.25 11.75 15l9.66-9.66z" +}), 'BrushSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BrushTwoTone.js b/packages/material-ui-icons/lib/esm/BrushTwoTone.js new file mode 100644 index 00000000000000..641688d3c27886 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BrushTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 17c0-.55-.45-1-1-1s-1 .45-1 1c0 .74-.19 1.4-.5 1.95.17.03.33.05.5.05 1.1 0 2-.9 2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11.75 15 8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29s-.51.1-.71.29L9 12.25 11.75 15zM6 21c2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3s-3 1.34-3 3c0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2zm0-4c0-.55.45-1 1-1s1 .45 1 1c0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95z" +}, "1")], 'BrushTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BubbleChart.js b/packages/material-ui-icons/lib/esm/BubbleChart.js new file mode 100644 index 00000000000000..7440a7c107fd18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BubbleChart.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7.2", + cy: "14.4", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.8", + cy: "18", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.2", + cy: "8.8", + r: "4.8" +}, "2")], 'BubbleChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BubbleChartOutlined.js b/packages/material-ui-icons/lib/esm/BubbleChartOutlined.js new file mode 100644 index 00000000000000..d109d0fd433402 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BubbleChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM16.5 3C13.47 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3zm0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12z" +}), 'BubbleChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BubbleChartRounded.js b/packages/material-ui-icons/lib/esm/BubbleChartRounded.js new file mode 100644 index 00000000000000..58cf22cdf9799c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BubbleChartRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7.2", + cy: "14.4", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.8", + cy: "18", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.2", + cy: "8.8", + r: "4.8" +}, "2")], 'BubbleChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BubbleChartSharp.js b/packages/material-ui-icons/lib/esm/BubbleChartSharp.js new file mode 100644 index 00000000000000..72d0e631ae722a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BubbleChartSharp.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7.2", + cy: "14.4", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.8", + cy: "18", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.2", + cy: "8.8", + r: "4.8" +}, "2")], 'BubbleChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BubbleChartTwoTone.js b/packages/material-ui-icons/lib/esm/BubbleChartTwoTone.js new file mode 100644 index 00000000000000..882e84774bb003 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BubbleChartTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 12c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.01", + cy: "18", + r: "1", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "14", + r: "2", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M7 18c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm11.01 6c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-4 0c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm2.49-4c3.03 0 5.5-2.47 5.5-5.5S19.53 3 16.5 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5zm0-9C18.43 5 20 6.57 20 8.5S18.43 12 16.5 12 13 10.43 13 8.5 14.57 5 16.5 5z" +}, "3")], 'BubbleChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BugReport.js b/packages/material-ui-icons/lib/esm/BugReport.js new file mode 100644 index 00000000000000..109357f5040171 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BugReport.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z" +}), 'BugReport'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BugReportOutlined.js b/packages/material-ui-icons/lib/esm/BugReportOutlined.js new file mode 100644 index 00000000000000..6f5bb05df83161 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BugReportOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.48 8 15.23 8 15v-4c0-.23.03-.48.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z" +}), 'BugReportOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BugReportRounded.js b/packages/material-ui-icons/lib/esm/BugReportRounded.js new file mode 100644 index 00000000000000..e199fecab8cc1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BugReportRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8h-1.81c-.45-.78-1.07-1.45-1.82-1.96l.93-.93c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-1.47 1.47C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L9.11 3.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.92.93C7.88 6.55 7.26 7.22 6.81 8H5c-.55 0-1 .45-1 1s.45 1 1 1h1.09c-.05.33-.09.66-.09 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .34.04.67.09 1H5c-.55 0-1 .45-1 1s.45 1 1 1h1.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H19c.55 0 1-.45 1-1s-.45-1-1-1h-1.09c.05-.33.09-.66.09-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.34-.04-.67-.09-1H19c.55 0 1-.45 1-1s-.45-1-1-1zm-6 8h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zm0-4h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'BugReportRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BugReportSharp.js b/packages/material-ui-icons/lib/esm/BugReportSharp.js new file mode 100644 index 00000000000000..893e9e08f30293 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BugReportSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z" +}), 'BugReportSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BugReportTwoTone.js b/packages/material-ui-icons/lib/esm/BugReportTwoTone.js new file mode 100644 index 00000000000000..3659349f52c6d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BugReportTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.83 9.65 15.46 9c-.3-.53-.71-.96-1.21-1.31l-.61-.42-.68-.16C12.63 7.04 12.32 7 12 7c-.31 0-.63.04-.94.11l-.74.18-.57.4c-.49.34-.91.79-1.21 1.31l-.37.65-.1.65c-.04.23-.07.48-.07.7v4c0 .22.03.47.07.7l.1.65.37.65c.72 1.24 2.04 2 3.46 2s2.74-.77 3.46-2l.37-.64.1-.65c.04-.24.07-.49.07-.71v-4c0-.22-.03-.47-.07-.7l-.1-.65zM14 16h-4v-2h4v2zm0-4h-4v-2h4v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.47 8 15.22 8 15v-4c0-.22.03-.47.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z" +}, "1")], 'BugReportTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Build.js b/packages/material-ui-icons/lib/esm/Build.js new file mode 100644 index 00000000000000..6c17860abb6fd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Build.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.7 19-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z" +}), 'Build'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildCircle.js b/packages/material-ui-icons/lib/esm/BuildCircle.js new file mode 100644 index 00000000000000..934ca55ceeb80a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildCircle.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.9 13.49-1.4 1.4c-.2.2-.51.2-.71 0l-3.41-3.41c-1.22.43-2.64.17-3.62-.81-1.11-1.11-1.3-2.79-.59-4.1l2.35 2.35 1.41-1.41-2.35-2.34c1.32-.71 2.99-.52 4.1.59.98.98 1.24 2.4.81 3.62l3.41 3.41c.19.19.19.51 0 .7z" +}), 'BuildCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildCircleOutlined.js b/packages/material-ui-icons/lib/esm/BuildCircleOutlined.js new file mode 100644 index 00000000000000..74cf8e9a3c8b11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildCircleOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs("g", { + fillRule: "evenodd", + children: [/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + }), /*#__PURE__*/_jsx("path", { + d: "M13.49 11.38c.43-1.22.17-2.64-.81-3.62-1.11-1.11-2.79-1.3-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71l-3.41-3.41z" + })] +}), 'BuildCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildCircleRounded.js b/packages/material-ui-icons/lib/esm/BuildCircleRounded.js new file mode 100644 index 00000000000000..d1d09cac668f1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildCircleRounded.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.54 13.85-.69.69c-.39.39-1.02.39-1.41 0l-3.05-3.05c-1.22.43-2.64.17-3.62-.81-1.11-1.11-1.3-2.79-.59-4.1l2.35 2.35 1.41-1.41-2.36-2.35c1.32-.71 2.99-.52 4.1.59.98.98 1.24 2.4.81 3.62l3.05 3.05c.39.39.39 1.03 0 1.42z" +}), 'BuildCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildCircleSharp.js b/packages/material-ui-icons/lib/esm/BuildCircleSharp.js new file mode 100644 index 00000000000000..873931e4201b57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildCircleSharp.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.14 15.25-3.76-3.76c-1.22.43-2.64.17-3.62-.81-1.11-1.11-1.3-2.79-.59-4.1l2.35 2.35 1.41-1.41-2.35-2.35c1.32-.71 2.99-.52 4.1.59.98.98 1.24 2.4.81 3.62l3.76 3.76-2.11 2.11z" +}), 'BuildCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildCircleTwoTone.js b/packages/material-ui-icons/lib/esm/BuildCircleTwoTone.js new file mode 100644 index 00000000000000..b16689549f5088 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildCircleTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.68 7.76c-1.11-1.11-2.79-1.3-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71l-3.41-3.41c.43-1.23.17-2.64-.81-3.62z" +}, "2")], 'BuildCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildOutlined.js b/packages/material-ui-icons/lib/esm/BuildOutlined.js new file mode 100644 index 00000000000000..b7f377e6ab9ab1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.61 18.99-9.08-9.08c.93-2.34.45-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.52 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.01 0-1.41zm-3 1.6-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24-3.09-3.09c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.71-.42 1.37-.88 1.96l9.45 9.45-.88.89z" +}), 'BuildOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildRounded.js b/packages/material-ui-icons/lib/esm/BuildRounded.js new file mode 100644 index 00000000000000..2ec9a7eb693db7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.09 2.91C10.08.9 7.07.49 4.65 1.67L8.28 5.3c.39.39.39 1.02 0 1.41L6.69 8.3c-.39.4-1.02.4-1.41 0L1.65 4.67C.48 7.1.89 10.09 2.9 12.1c1.86 1.86 4.58 2.35 6.89 1.48l7.96 7.96c1.03 1.03 2.69 1.03 3.71 0 1.03-1.03 1.03-2.69 0-3.71L13.54 9.9c.92-2.34.44-5.1-1.45-6.99z" +}), 'BuildRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildSharp.js b/packages/material-ui-icons/lib/esm/BuildSharp.js new file mode 100644 index 00000000000000..7741c0789b71ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.09 2.91C10.08.9 7.07.49 4.65 1.67l4.34 4.34-3 3-4.34-4.34C.48 7.1.89 10.09 2.9 12.1c1.86 1.86 4.58 2.35 6.89 1.48l9.82 9.82 3.71-3.71-9.78-9.79c.92-2.34.44-5.1-1.45-6.99z" +}), 'BuildSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BuildTwoTone.js b/packages/material-ui-icons/lib/esm/BuildTwoTone.js new file mode 100644 index 00000000000000..5a448831470180 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BuildTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.92 8.28c.24-1.4-.16-2.89-1.24-3.96-.94-.95-2.2-1.39-3.44-1.32l3.09 3.09-4.24 4.24L3 7.24c-.07 1.24.37 2.49 1.31 3.44 1.04 1.04 2.47 1.45 3.83 1.25.71-.1 1.4-.38 2-.82l9.46 9.46.88-.88-9.45-9.45c.47-.6.77-1.26.89-1.96z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22.61 18.97 13.54 9.9c.93-2.34.45-5.1-1.44-7C9.8.6 6.22.39 3.67 2.25L7.5 6.08 6.08 7.5 2.25 3.67C.39 6.21.6 9.79 2.9 12.09c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.02 0-1.41zm-3 1.6-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25-.95-.94-1.39-2.2-1.32-3.44l3.09 3.09 4.24-4.24L7.24 3c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.7-.42 1.36-.88 1.95l9.45 9.45-.88.9z" +}, "1")], 'BuildTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Bungalow.js b/packages/material-ui-icons/lib/esm/Bungalow.js new file mode 100644 index 00000000000000..97063963a40784 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Bungalow.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4.2 15.5l1.7 1.06L7 14.8V21h4v-5h2v5h4v-6.21l1.1 1.77 1.7-1.06L12 3zm1 11h-2v-2h2v2z" +}), 'Bungalow'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BungalowOutlined.js b/packages/material-ui-icons/lib/esm/BungalowOutlined.js new file mode 100644 index 00000000000000..ddb0051dad5c72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BungalowOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 14h-2v-2h2v2zm5.1 2.56L17 14.79V21H7v-6.2l-1.1 1.76-1.7-1.06L12 3l7.8 12.5-1.7 1.06zM15 11.59l-3-4.8-3 4.8V19h2v-3h2v3h2v-7.41z" +}), 'BungalowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BungalowRounded.js b/packages/material-ui-icons/lib/esm/BungalowRounded.js new file mode 100644 index 00000000000000..93949794fca821 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BungalowRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 16c.55 0 1 .45 1 1v4h3c.55 0 1-.45 1-1v-5.21l.57.92c.29.47.91.61 1.38.32.47-.29.61-.91.32-1.38L12.85 4.36c-.39-.63-1.31-.63-1.7 0L4.73 14.65c-.29.47-.15 1.09.32 1.38.47.29 1.08.15 1.38-.32L7 14.8V20c0 .55.45 1 1 1h3v-4c0-.55.45-1 1-1zm1-3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}), 'BungalowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BungalowSharp.js b/packages/material-ui-icons/lib/esm/BungalowSharp.js new file mode 100644 index 00000000000000..d42ebeec54f8b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BungalowSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4.2 15.5l1.7 1.06L7 14.8V21h4v-5h2v5h4v-6.21l1.1 1.77 1.7-1.06L12 3zm1 11h-2v-2h2v2z" +}), 'BungalowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BungalowTwoTone.js b/packages/material-ui-icons/lib/esm/BungalowTwoTone.js new file mode 100644 index 00000000000000..974db9588d63ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BungalowTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 6.78-3 4.8V19h2v-3h2v3h2v-7.42l-3-4.8zM13 14h-2v-2h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 14h-2v-2h2v2zm5.1 2.56L17 14.79V21H7v-6.2l-1.1 1.76-1.7-1.06L12 3l7.8 12.5-1.7 1.06zM15 11.59l-3-4.8-3 4.8V19h2v-3h2v3h2v-7.41z" +}, "1")], 'BungalowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BurstMode.js b/packages/material-ui-icons/lib/esm/BurstMode.js new file mode 100644 index 00000000000000..ccd022a2d74bff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BurstMode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z" +}), 'BurstMode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BurstModeOutlined.js b/packages/material-ui-icons/lib/esm/BurstModeOutlined.js new file mode 100644 index 00000000000000..7f95dea214b8fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BurstModeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38-2 2.57L14 13.47l-2 2.52h8z" +}), 'BurstModeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BurstModeRounded.js b/packages/material-ui-icons/lib/esm/BurstModeRounded.js new file mode 100644 index 00000000000000..46349f672a82d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BurstModeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm4 0c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm16 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11.64 16.19l1.47-1.86c.2-.25.57-.25.78-.01l1.4 1.68 2.1-2.71c.2-.26.59-.26.79 0l2.21 2.9c.25.33.02.8-.4.8h-7.96c-.41.01-.65-.47-.39-.8z" +}), 'BurstModeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BurstModeSharp.js b/packages/material-ui-icons/lib/esm/BurstModeSharp.js new file mode 100644 index 00000000000000..ac8fd798bfb4b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BurstModeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 5h2v14H1V5zm4 0h2v14H5V5zm18 0H9v14h14V5zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z" +}), 'BurstModeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BurstModeTwoTone.js b/packages/material-ui-icons/lib/esm/BurstModeTwoTone.js new file mode 100644 index 00000000000000..9249b2a6646ee3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BurstModeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 17h10V7H11v10zm3-3.53 1.43 1.72 2-2.58L20 15.99h-8l2-2.52z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38-2 2.57L14 13.47l-2 2.52h8z" +}, "1")], 'BurstModeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusAlert.js b/packages/material-ui-icons/lib/esm/BusAlert.js new file mode 100644 index 00000000000000..daa582a7ce0b68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusAlert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1a7 7 0 0 0-5.78 3.05l.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h8v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08A7 7 0 0 0 16 1zM4.5 19a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.5-6a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm-1-9h2v5h-2zm0 6h2v2h-2z" +}), 'BusAlert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusAlertOutlined.js b/packages/material-ui-icons/lib/esm/BusAlertOutlined.js new file mode 100644 index 00000000000000..dac674bb7ebd49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusAlertOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "15.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "13.5", + cy: "15.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.83-.71 2.98-1.09 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V21c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm12 5c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-3h12v3z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "3")], 'BusAlertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusAlertRounded.js b/packages/material-ui-icons/lib/esm/BusAlertRounded.js new file mode 100644 index 00000000000000..c0725f3dd3fb76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusAlertRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44v1.56c0 .83.67 1.5 1.5 1.5S6 21.33 6 20.5V20h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.56c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm2.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 5.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5s.5.22.5.5v3zm0 2c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5z" +}, "1")], 'BusAlertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusAlertSharp.js b/packages/material-ui-icons/lib/esm/BusAlertSharp.js new file mode 100644 index 00000000000000..f85226e3af73f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusAlertSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V22h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm2.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "1")], 'BusAlertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusAlertTwoTone.js b/packages/material-ui-icons/lib/esm/BusAlertTwoTone.js new file mode 100644 index 00000000000000..e5a2326563e455 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusAlertTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3H4v3zm9.5-2c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S7.33 17 6.5 17 5 16.33 5 15.5 5.67 14 6.5 14zM4.43 6H11c0-.33.03-.66.08-.98-3.68-.11-5.83.27-6.65.98z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.83-.71 2.98-1.09 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V21c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm12 5c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-3h12v3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "15.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "13.5", + cy: "15.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "4")], 'BusAlertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Business.js b/packages/material-ui-icons/lib/esm/Business.js new file mode 100644 index 00000000000000..c85603891f7e95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Business.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'Business'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessCenter.js b/packages/material-ui-icons/lib/esm/BusinessCenter.js new file mode 100644 index 00000000000000..57b5585466d0d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessCenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 16v-1H3.01L3 19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2 2v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-6 0h-4V5h4v2z" +}), 'BusinessCenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessCenterOutlined.js b/packages/material-ui-icons/lib/esm/BusinessCenterOutlined.js new file mode 100644 index 00000000000000..1eabc4d88d645b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessCenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zM4 9h16v5h-5v-3H9v3H4V9zm9 6h-2v-2h2v2zm6 4H5v-3h4v1h6v-1h4v3z" +}), 'BusinessCenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessCenterRounded.js b/packages/material-ui-icons/lib/esm/BusinessCenterRounded.js new file mode 100644 index 00000000000000..b014e531bb3ddc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessCenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 16h-2c-.55 0-1-.45-1-1H3.01v4c0 1.1.9 2 2 2H19c1.1 0 2-.9 2-2v-4h-7c0 .55-.45 1-1 1zm7-9h-4c0-2.21-1.79-4-4-4S8 4.79 8 7H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v1h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 7c0-1.1.9-2 2-2s2 .9 2 2H9.99 10z" +}), 'BusinessCenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessCenterSharp.js b/packages/material-ui-icons/lib/esm/BusinessCenterSharp.js new file mode 100644 index 00000000000000..d0a0a110f2eb4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessCenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 16v-1H3.01v6H21v-6h-7v1h-4zm12-9h-6V5l-2-2h-4L8 5v2H2v7h8v-2h4v2h8V7zm-8 0h-4V5h4v2z" +}), 'BusinessCenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessCenterTwoTone.js b/packages/material-ui-icons/lib/esm/BusinessCenterTwoTone.js new file mode 100644 index 00000000000000..800004bbb1390a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessCenterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 17H9v-1H5v3h14v-3h-4zM4 14h5v-3h6v3h5V9H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm9 14H5v-3h4v1h6v-1h4v3zm-8-4v-2h2v2h-2zm9-1h-5v-3H9v3H4V9h16v5z" +}, "1")], 'BusinessCenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessOutlined.js b/packages/material-ui-icons/lib/esm/BusinessOutlined.js new file mode 100644 index 00000000000000..be2690ddce6bff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'BusinessOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessRounded.js b/packages/material-ui-icons/lib/esm/BusinessRounded.js new file mode 100644 index 00000000000000..1e2dc08292d191 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'BusinessRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessSharp.js b/packages/material-ui-icons/lib/esm/BusinessSharp.js new file mode 100644 index 00000000000000..2a1e6b3762c524 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'BusinessSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/BusinessTwoTone.js b/packages/material-ui-icons/lib/esm/BusinessTwoTone.js new file mode 100644 index 00000000000000..17d970085ede19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/BusinessTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 15h2v2h-2zm0-4h2v2h-2zm6-4H12V3H2v18h20V7zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10z" +}, "1")], 'BusinessTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cabin.js b/packages/material-ui-icons/lib/esm/Cabin.js new file mode 100644 index 00000000000000..8075c803049bc7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cabin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" +}), 'Cabin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CabinOutlined.js b/packages/material-ui-icons/lib/esm/CabinOutlined.js new file mode 100644 index 00000000000000..4445b1fd4b11e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CabinOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" +}), 'CabinOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CabinRounded.js b/packages/material-ui-icons/lib/esm/CabinRounded.js new file mode 100644 index 00000000000000..5b851fc9ba7ca6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CabinRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.37 3.55C4.89 2.62 5.87 2 7 2c.38 0 .72-.22.89-.53.15-.31.5-.47.84-.47.74 0 1.26.8.9 1.45C9.11 3.38 8.13 4 7 4c-.38 0-.72.22-.89.53-.15.31-.5.47-.84.47-.74 0-1.26-.8-.9-1.45zm18.02 8.64c-.34.44-.96.52-1.4.19l-.99-.76V20c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1v-8.38l-.99.76c-.44.34-1.07.25-1.4-.19-.33-.44-.25-1.07.19-1.4L4 9.11V7c0-.55.45-1 1-1s1 .45 1 1v.58l5.39-4.12c.36-.27.86-.27 1.21 0l9.6 7.33c.44.34.53.97.19 1.4zM10.06 7h3.89L12 5.52 10.06 7zM6 10.1v.9h12v-.9L16.56 9H7.44L6 10.1zM6 13v2h12v-2H6zm12 6v-2H6v2h12z" +}), 'CabinRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CabinSharp.js b/packages/material-ui-icons/lib/esm/CabinSharp.js new file mode 100644 index 00000000000000..f8114e14895c6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CabinSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" +}), 'CabinSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CabinTwoTone.js b/packages/material-ui-icons/lib/esm/CabinTwoTone.js new file mode 100644 index 00000000000000..3c9e785649a193 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CabinTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.94 7h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" +}, "1")], 'CabinTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cable.js b/packages/material-ui-icons/lib/esm/Cable.js new file mode 100644 index 00000000000000..a7fad6f30cd3c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cable.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1h-1v4c0 .55.45 1 1 1h1v7c0 1.1-.9 2-2 2s-2-.9-2-2V7c0-2.21-1.79-4-4-4S5 4.79 5 7v7H4c-.55 0-1 .45-1 1v4h1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h1v-4c0-.55-.45-1-1-1H7V7c0-1.1.9-2 2-2s2 .9 2 2v10c0 2.21 1.79 4 4 4s4-1.79 4-4v-7h1c.55 0 1-.45 1-1V5h-1z" +}), 'Cable'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CableOutlined.js b/packages/material-ui-icons/lib/esm/CableOutlined.js new file mode 100644 index 00000000000000..807303dcb3b111 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CableOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1h-1v4c0 .55.45 1 1 1h1v7c0 1.1-.9 2-2 2s-2-.9-2-2V7c0-2.21-1.79-4-4-4S5 4.79 5 7v7H4c-.55 0-1 .45-1 1v4h1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h1v-4c0-.55-.45-1-1-1H7V7c0-1.1.9-2 2-2s2 .9 2 2v10c0 2.21 1.79 4 4 4s4-1.79 4-4v-7h1c.55 0 1-.45 1-1V5h-1z" +}), 'CableOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CableRounded.js b/packages/material-ui-icons/lib/esm/CableRounded.js new file mode 100644 index 00000000000000..8b947414fedfd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CableRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v6.91c0 1.04-.76 1.98-1.79 2.08-1.2.12-2.21-.82-2.21-1.99V7.14c0-2.13-1.61-3.99-3.74-4.13C6.93 2.86 5 4.7 5 7v7H4c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H7V7.09c0-1.04.76-1.98 1.79-2.08C9.99 4.89 11 5.83 11 7v9.86c0 2.13 1.61 3.99 3.74 4.13C17.07 21.14 19 19.3 19 17v-7h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z" +}), 'CableRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CableSharp.js b/packages/material-ui-icons/lib/esm/CableSharp.js new file mode 100644 index 00000000000000..2ab495a50f9e69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CableSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5V3h-4v2h-1v5h2v9h-4V3H5v11H3v5h1v2h4v-2h1v-5H7V5h4v16h8V10h2V5h-1z" +}), 'CableSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CableTwoTone.js b/packages/material-ui-icons/lib/esm/CableTwoTone.js new file mode 100644 index 00000000000000..15800e09d147ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CableTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5V4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1h-1v4c0 .55.45 1 1 1h1v7c0 1.1-.9 2-2 2s-2-.9-2-2V7c0-2.21-1.79-4-4-4S5 4.79 5 7v7H4c-.55 0-1 .45-1 1v4h1v1c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h1v-4c0-.55-.45-1-1-1H7V7c0-1.1.9-2 2-2s2 .9 2 2v10c0 2.21 1.79 4 4 4s4-1.79 4-4v-7h1c.55 0 1-.45 1-1V5h-1z" +}), 'CableTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cached.js b/packages/material-ui-icons/lib/esm/Cached.js new file mode 100644 index 00000000000000..e00d50c5ccbe3d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cached.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" +}), 'Cached'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CachedOutlined.js b/packages/material-ui-icons/lib/esm/CachedOutlined.js new file mode 100644 index 00000000000000..4c64112c1040d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CachedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" +}), 'CachedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CachedRounded.js b/packages/material-ui-icons/lib/esm/CachedRounded.js new file mode 100644 index 00000000000000..89fed3d808fbde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CachedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.65 8.35-2.79 2.79c-.32.32-.1.86.35.86H18c0 3.31-2.69 6-6 6-.79 0-1.56-.15-2.25-.44-.36-.15-.77-.04-1.04.23-.51.51-.33 1.37.34 1.64.91.37 1.91.57 2.95.57 4.42 0 8-3.58 8-8h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01zM6 12c0-3.31 2.69-6 6-6 .79 0 1.56.15 2.25.44.36.15.77.04 1.04-.23.51-.51.33-1.37-.34-1.64C14.04 4.2 13.04 4 12 4c-4.42 0-8 3.58-8 8H2.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85H6z" +}), 'CachedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CachedSharp.js b/packages/material-ui-icons/lib/esm/CachedSharp.js new file mode 100644 index 00000000000000..7f0d793b01e59a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CachedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" +}), 'CachedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CachedTwoTone.js b/packages/material-ui-icons/lib/esm/CachedTwoTone.js new file mode 100644 index 00000000000000..568e4760abeb66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CachedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" +}), 'CachedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cake.js b/packages/material-ui-icons/lib/esm/Cake.js new file mode 100644 index 00000000000000..54ba0657426d64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cake.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.6 9.99-1.07-1.07-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V21c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-4.61c-.56.38-1.23.61-1.96.61-.92 0-1.79-.36-2.44-1.01zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z" +}), 'Cake'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CakeOutlined.js b/packages/material-ui-icons/lib/esm/CakeOutlined.js new file mode 100644 index 00000000000000..80fd55af048efd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CakeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z" +}), 'CakeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CakeRounded.js b/packages/material-ui-icons/lib/esm/CakeRounded.js new file mode 100644 index 00000000000000..09da937ddfcb8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CakeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.68 5.88c.7-.24 1.22-.9 1.3-1.64.05-.47-.05-.91-.28-1.27L12.42.75c-.19-.33-.67-.33-.87 0l-1.28 2.22c-.17.3-.27.65-.27 1.03 0 1.32 1.3 2.35 2.68 1.88zm3.85 10.04-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-3.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V8c0-.55-.45-1-1-1s-1 .45-1 1v1H6c-1.66 0-3 1.34-3 3v1.46c0 .85.5 1.67 1.31 1.94.73.24 1.52.06 2.03-.46l2.14-2.13 2.13 2.13c.76.76 2.01.76 2.77 0l2.14-2.13 2.13 2.13c.43.43 1.03.63 1.65.55.99-.13 1.69-1.06 1.69-2.06v-1.42C21 10.34 19.66 9 18 9z" +}), 'CakeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CakeSharp.js b/packages/material-ui-icons/lib/esm/CakeSharp.js new file mode 100644 index 00000000000000..feb477e5cb7ee9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CakeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.53 9.92-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V22h18v-5.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z" +}), 'CakeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CakeTwoTone.js b/packages/material-ui-icons/lib/esm/CakeTwoTone.js new file mode 100644 index 00000000000000..fa41471fd375a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CakeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.53 14.92-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07c-.64.64-1.5 1-2.4 1.01v3h14v-3c-.9-.01-1.76-.37-2.4-1.01l-1.07-1.07zM18 11H6c-.55 0-1 .45-1 1v3.5c.51-.01.99-.21 1.34-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.36.36.84.56 1.35.57V12c0-.55-.45-1-1-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z" +}, "1")], 'CakeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Calculate.js b/packages/material-ui-icons/lib/esm/Calculate.js new file mode 100644 index 00000000000000..b55b7d2694f781 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Calculate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5.97 4.06L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zm-6.78.66h5v1.5h-5v-1.5zM11.5 16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zm6.5 1.25h-5v-1.5h5v1.5zm0-2.5h-5v-1.5h5v1.5z" +}), 'Calculate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalculateOutlined.js b/packages/material-ui-icons/lib/esm/CalculateOutlined.js new file mode 100644 index 00000000000000..7695c8e92c8724 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalculateOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.25 7.72h5v1.5h-5zM13 15.75h5v1.5h-5zm0-2.5h5v1.5h-5zM8 18h1.5v-2h2v-1.5h-2v-2H8v2H6V16h2zm6.09-7.05 1.41-1.41 1.41 1.41 1.06-1.06-1.41-1.42 1.41-1.41L16.91 6 15.5 7.41 14.09 6l-1.06 1.06 1.41 1.41-1.41 1.42z" +}, "1")], 'CalculateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalculateRounded.js b/packages/material-ui-icons/lib/esm/CalculateRounded.js new file mode 100644 index 00000000000000..aebf719458a430 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalculateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5.44 3.53c.29-.29.77-.29 1.06 0l.88.88.88-.88c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.88.88.88.88c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0l-.88-.87-.88.88c-.29.29-.77.29-1.06 0-.29-.29-.29-.77 0-1.06l.88-.88-.88-.88c-.3-.3-.3-.78 0-1.07zM7 7.72h3.5c.41 0 .75.34.75.75s-.34.75-.75.75H7c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM10.75 16H9.5v1.25c0 .41-.34.75-.75.75S8 17.66 8 17.25V16H6.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8v-1.25c0-.41.34-.75.75-.75s.75.34.75.75v1.25h1.25c.41 0 .75.34.75.75s-.34.75-.75.75zm6.5 1.25h-3.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.5c.41 0 .75.34.75.75s-.34.75-.75.75zm0-2.5h-3.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.5c.41 0 .75.34.75.75s-.34.75-.75.75z" +}), 'CalculateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalculateSharp.js b/packages/material-ui-icons/lib/esm/CalculateSharp.js new file mode 100644 index 00000000000000..bc1722a6dd92d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalculateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-7.97 4.06L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zm-6.78.66h5v1.5h-5v-1.5zM11.5 16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zm6.5 1.25h-5v-1.5h5v1.5zm0-2.5h-5v-1.5h5v1.5z" +}), 'CalculateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalculateTwoTone.js b/packages/material-ui-icons/lib/esm/CalculateTwoTone.js new file mode 100644 index 00000000000000..b1b272b0a1f41b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalculateTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8.03-11.94L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zM13 13.25h5v1.5h-5v-1.5zm0 2.5h5v1.5h-5v-1.5zM6.25 7.72h5v1.5h-5v-1.5zM6 14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6v-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6.25 7.72h5v1.5h-5zM13 15.75h5v1.5h-5zm0-2.5h5v1.5h-5zM8 18h1.5v-2h2v-1.5h-2v-2H8v2H6V16h2zm6.09-7.05 1.41-1.41 1.41 1.41 1.06-1.06-1.41-1.42 1.41-1.41L16.91 6 15.5 7.41 14.09 6l-1.06 1.06 1.41 1.41-1.41 1.42z" +}, "2")], 'CalculateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarToday.js b/packages/material-ui-icons/lib/esm/CalendarToday.js new file mode 100644 index 00000000000000..f49d6d063b86cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarToday.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z" +}), 'CalendarToday'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarTodayOutlined.js b/packages/material-ui-icons/lib/esm/CalendarTodayOutlined.js new file mode 100644 index 00000000000000..954c4df4f766b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarTodayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z" +}), 'CalendarTodayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarTodayRounded.js b/packages/material-ui-icons/lib/esm/CalendarTodayRounded.js new file mode 100644 index 00000000000000..d270614b06d157 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarTodayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H7V2c0-.55-.45-1-1-1s-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 18H5c-.55 0-1-.45-1-1V8h16v12c0 .55-.45 1-1 1z" +}), 'CalendarTodayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarTodaySharp.js b/packages/material-ui-icons/lib/esm/CalendarTodaySharp.js new file mode 100644 index 00000000000000..6dd2fa0e9864fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarTodaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3h-3V1h-2v2H7V1H5v2H2v20h20V3zm-2 18H4V8h16v13z" +}), 'CalendarTodaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarTodayTwoTone.js b/packages/material-ui-icons/lib/esm/CalendarTodayTwoTone.js new file mode 100644 index 00000000000000..ea74229fcc4713 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarTodayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H4V5h16zM4 21V10h16v11H4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 5.01h16V8H4z", + opacity: ".3" +}, "1")], 'CalendarTodayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewDay.js b/packages/material-ui-icons/lib/esm/CalendarViewDay.js new file mode 100644 index 00000000000000..f463777bd1e89b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewDay.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18v2H3zm0-7h18v5H3zm0-4h18v2H3z" +}), 'CalendarViewDay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewDayOutlined.js b/packages/material-ui-icons/lib/esm/CalendarViewDayOutlined.js new file mode 100644 index 00000000000000..dc1088ac02c8d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewDayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z" +}), 'CalendarViewDayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewDayRounded.js b/packages/material-ui-icons/lib/esm/CalendarViewDayRounded.js new file mode 100644 index 00000000000000..867df50352521f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewDayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 7h14c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2zM4 3h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1zm0 16h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'CalendarViewDayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewDaySharp.js b/packages/material-ui-icons/lib/esm/CalendarViewDaySharp.js new file mode 100644 index 00000000000000..591f329cbdf2b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewDaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18v2H3v-2zm0-7h18v5H3v-5zm0-4h18v2H3V6z" +}), 'CalendarViewDaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewDayTwoTone.js b/packages/material-ui-icons/lib/esm/CalendarViewDayTwoTone.js new file mode 100644 index 00000000000000..f8e5ff7bbad1c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewDayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 12h14v1H5z", + opacity: ".3" +}, "1")], 'CalendarViewDayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewMonth.js b/packages/material-ui-icons/lib/esm/CalendarViewMonth.js new file mode 100644 index 00000000000000..ae39170402724e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewMonth.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" +}), 'CalendarViewMonth'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewMonthOutlined.js b/packages/material-ui-icons/lib/esm/CalendarViewMonthOutlined.js new file mode 100644 index 00000000000000..8dc400be2800c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewMonthOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" +}), 'CalendarViewMonthOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewMonthRounded.js b/packages/material-ui-icons/lib/esm/CalendarViewMonthRounded.js new file mode 100644 index 00000000000000..aabadd26beb7b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewMonthRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" +}), 'CalendarViewMonthRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewMonthSharp.js b/packages/material-ui-icons/lib/esm/CalendarViewMonthSharp.js new file mode 100644 index 00000000000000..26d8734ff7131b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewMonthSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" +}), 'CalendarViewMonthSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewMonthTwoTone.js b/packages/material-ui-icons/lib/esm/CalendarViewMonthTwoTone.js new file mode 100644 index 00000000000000..fb8769871de2b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewMonthTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6h4v5H4zm0 7h4v5H4zm6 0h4v5h-4zm6 0h4v5h-4zm0-7h4v5h-4zm-6 0h4v5h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 18H4v-5h4v5zm0-7H4V6h4v5zm6 7h-4v-5h4v5zm0-7h-4V6h4v5zm6 7h-4v-5h4v5zm0-7h-4V6h4v5z" +}, "1")], 'CalendarViewMonthTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewWeek.js b/packages/material-ui-icons/lib/esm/CalendarViewWeek.js new file mode 100644 index 00000000000000..2adf2dcbf6895b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewWeek.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" +}), 'CalendarViewWeek'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewWeekOutlined.js b/packages/material-ui-icons/lib/esm/CalendarViewWeekOutlined.js new file mode 100644 index 00000000000000..e1e8e758966909 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewWeekOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" +}), 'CalendarViewWeekOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewWeekRounded.js b/packages/material-ui-icons/lib/esm/CalendarViewWeekRounded.js new file mode 100644 index 00000000000000..f503fd39f3cf39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewWeekRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" +}), 'CalendarViewWeekRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewWeekSharp.js b/packages/material-ui-icons/lib/esm/CalendarViewWeekSharp.js new file mode 100644 index 00000000000000..f2c04078e8f7bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewWeekSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zm-9 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" +}), 'CalendarViewWeekSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CalendarViewWeekTwoTone.js b/packages/material-ui-icons/lib/esm/CalendarViewWeekTwoTone.js new file mode 100644 index 00000000000000..bd3f521a11bd42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CalendarViewWeekTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.5 6H11v12H8.5zM13 6h2.5v12H13zM4 6h2.5v12H4zm13.5 0H20v12h-2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM6.5 18H4V6h2.5v12zm4.5 0H8.5V6H11v12zm4.5 0H13V6h2.5v12zm4.5 0h-2.5V6H20v12z" +}, "1")], 'CalendarViewWeekTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Call.js b/packages/material-ui-icons/lib/esm/Call.js new file mode 100644 index 00000000000000..c6f4994426c6cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Call.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z" +}), 'Call'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallEnd.js b/packages/material-ui-icons/lib/esm/CallEnd.js new file mode 100644 index 00000000000000..c135ad8d2d5aa6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallEnd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 9c-1.6 0-3.15.25-4.6.72v3.1c0 .39-.23.74-.56.9-.98.49-1.87 1.12-2.66 1.85-.18.18-.43.28-.7.28-.28 0-.53-.11-.71-.29L.29 13.08c-.18-.17-.29-.42-.29-.7 0-.28.11-.53.29-.71C3.34 8.78 7.46 7 12 7s8.66 1.78 11.71 4.67c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.71.29-.27 0-.52-.11-.7-.28-.79-.74-1.69-1.36-2.67-1.85-.33-.16-.56-.5-.56-.9v-3.1C15.15 9.25 13.6 9 12 9z" +}), 'CallEnd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallEndOutlined.js b/packages/material-ui-icons/lib/esm/CallEndOutlined.js new file mode 100644 index 00000000000000..ccd5b8f30c4b88 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallEndOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.59 10.52c1.05.51 2.04 1.15 2.96 1.91l-1.07 1.07c-.58-.47-1.21-.89-1.88-1.27v-1.71m-13.2 0v1.7c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71s.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9s3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7z" +}), 'CallEndOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallEndRounded.js b/packages/material-ui-icons/lib/esm/CallEndRounded.js new file mode 100644 index 00000000000000..b4af8543ba4d3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallEndRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4.51 15.48 2-1.59c.48-.38.76-.96.76-1.57v-2.6c3.02-.98 6.29-.99 9.32 0v2.61c0 .61.28 1.19.76 1.57l1.99 1.58c.8.63 1.94.57 2.66-.15l1.22-1.22c.8-.8.8-2.13-.05-2.88-6.41-5.66-16.07-5.66-22.48 0-.85.75-.85 2.08-.05 2.88l1.22 1.22c.71.72 1.85.78 2.65.15z" +}), 'CallEndRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallEndSharp.js b/packages/material-ui-icons/lib/esm/CallEndSharp.js new file mode 100644 index 00000000000000..f10453b2f2ce4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallEndSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.68 16.07 3.92-3.11V9.59c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 12.39c-6.41-7.19-17.59-7.19-24 0l3.68 3.68z" +}), 'CallEndSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallEndTwoTone.js b/packages/material-ui-icons/lib/esm/CallEndTwoTone.js new file mode 100644 index 00000000000000..25e2d45e592c42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallEndTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.59 12.23c.67.38 1.3.8 1.88 1.27l1.07-1.07c-.92-.75-1.91-1.39-2.96-1.91v1.71zM3.53 13.49c.59-.48 1.22-.9 1.87-1.27v-1.7c-1.04.51-2.03 1.15-2.94 1.9l1.07 1.07z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9c1.6 0 3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7zm-6.6 5.22c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9v1.7zm15.07 1.28c-.58-.47-1.21-.89-1.88-1.27v-1.71c1.05.51 2.04 1.15 2.96 1.91l-1.08 1.07z" +}, "1")], 'CallEndTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMade.js b/packages/material-ui-icons/lib/esm/CallMade.js new file mode 100644 index 00000000000000..a0d621784b13d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMade.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z" +}), 'CallMade'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMadeOutlined.js b/packages/material-ui-icons/lib/esm/CallMadeOutlined.js new file mode 100644 index 00000000000000..7a7f592a3f09c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMadeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" +}), 'CallMadeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMadeRounded.js b/packages/material-ui-icons/lib/esm/CallMadeRounded.js new file mode 100644 index 00000000000000..5107c3ec489f07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMadeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6c0 .56.45 1 1 1h5.59L4.7 17.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17 8.41V14c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-8c-.55 0-1 .45-1 1z" +}), 'CallMadeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMadeSharp.js b/packages/material-ui-icons/lib/esm/CallMadeSharp.js new file mode 100644 index 00000000000000..1fda132f48404e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMadeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" +}), 'CallMadeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMadeTwoTone.js b/packages/material-ui-icons/lib/esm/CallMadeTwoTone.js new file mode 100644 index 00000000000000..aaf6c863eb336f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMadeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.41 20 17 8.41V15h2V5H9v2h6.59L4 18.59z" +}), 'CallMadeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMerge.js b/packages/material-ui-icons/lib/esm/CallMerge.js new file mode 100644 index 00000000000000..ba178b656cee21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMerge.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" +}), 'CallMerge'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMergeOutlined.js b/packages/material-ui-icons/lib/esm/CallMergeOutlined.js new file mode 100644 index 00000000000000..0cd972b755e257 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMergeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" +}), 'CallMergeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMergeRounded.js b/packages/material-ui-icons/lib/esm/CallMergeRounded.js new file mode 100644 index 00000000000000..98778bf4d4a716 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMergeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.7 19.7c.39-.39.39-1.02 0-1.41l-2.7-2.7L13.59 17l2.7 2.7c.39.39 1.03.39 1.41 0zM8.71 8H11v5.59l-4.71 4.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l5.3-5.3V8h2.29c.45 0 .67-.54.35-.85l-3.29-3.29c-.2-.2-.51-.2-.71 0L8.35 7.15c-.31.31-.09.85.36.85z" +}), 'CallMergeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMergeSharp.js b/packages/material-ui-icons/lib/esm/CallMergeSharp.js new file mode 100644 index 00000000000000..1e3b474f5d3b29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMergeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" +}), 'CallMergeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMergeTwoTone.js b/packages/material-ui-icons/lib/esm/CallMergeTwoTone.js new file mode 100644 index 00000000000000..b1db09d7e07e39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMergeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.997 20.41-3.408-3.407 1.4-1.407 3.41 3.408zM5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59z" +}), 'CallMergeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissed.js b/packages/material-ui-icons/lib/esm/CallMissed.js new file mode 100644 index 00000000000000..caa34edb4d1bb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.59 7 12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9z" +}), 'CallMissed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedOutgoing.js b/packages/material-ui-icons/lib/esm/CallMissedOutgoing.js new file mode 100644 index 00000000000000..a0c8f0bbb95fa8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedOutgoing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3 8.41 9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" +}), 'CallMissedOutgoing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedOutgoingOutlined.js b/packages/material-ui-icons/lib/esm/CallMissedOutgoingOutlined.js new file mode 100644 index 00000000000000..02de39fbcde6b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedOutgoingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3 8.41 9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" +}), 'CallMissedOutgoingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedOutgoingRounded.js b/packages/material-ui-icons/lib/esm/CallMissedOutgoingRounded.js new file mode 100644 index 00000000000000..94f20aa069c150 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedOutgoingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.7 9.11 7.59 7.59c.39.39 1.02.39 1.41 0l6.3-6.3V14c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1h3.59L12 14.59 5.11 7.7a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41z" +}), 'CallMissedOutgoingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedOutgoingSharp.js b/packages/material-ui-icons/lib/esm/CallMissedOutgoingSharp.js new file mode 100644 index 00000000000000..b45a5368a03bd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedOutgoingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3 8.41 9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" +}), 'CallMissedOutgoingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedOutgoingTwoTone.js b/packages/material-ui-icons/lib/esm/CallMissedOutgoingTwoTone.js new file mode 100644 index 00000000000000..2a48904b4e33b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedOutgoingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 10.41V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41l9 9z" +}), 'CallMissedOutgoingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedOutlined.js b/packages/material-ui-icons/lib/esm/CallMissedOutlined.js new file mode 100644 index 00000000000000..7047dbb8f0631f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.59 7 12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z" +}), 'CallMissedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedRounded.js b/packages/material-ui-icons/lib/esm/CallMissedRounded.js new file mode 100644 index 00000000000000..fc9265d7172c24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.89 7.7 12 14.59 6.41 9H10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1v-3.59l6.29 6.29c.39.39 1.02.39 1.41 0l7.59-7.59c.39-.39.39-1.02 0-1.41-.38-.38-1.02-.38-1.4 0z" +}), 'CallMissedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedSharp.js b/packages/material-ui-icons/lib/esm/CallMissedSharp.js new file mode 100644 index 00000000000000..4f242e0a558fb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.59 7 12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z" +}), 'CallMissedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallMissedTwoTone.js b/packages/material-ui-icons/lib/esm/CallMissedTwoTone.js new file mode 100644 index 00000000000000..d88476c1805620 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallMissedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5 10.41 7 7 9-9L19.59 7 12 14.59 6.41 9H11V7H3v8h2z" +}), 'CallMissedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallOutlined.js b/packages/material-ui-icons/lib/esm/CallOutlined.js new file mode 100644 index 00000000000000..de71955b4d3b16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" +}), 'CallOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallReceived.js b/packages/material-ui-icons/lib/esm/CallReceived.js new file mode 100644 index 00000000000000..3d09bc24233589 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallReceived.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5.41 18.59 4 7 15.59V9H5v10h10v-2H8.41z" +}), 'CallReceived'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallReceivedOutlined.js b/packages/material-ui-icons/lib/esm/CallReceivedOutlined.js new file mode 100644 index 00000000000000..29888cbf8e0a1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallReceivedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5.41 18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z" +}), 'CallReceivedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallReceivedRounded.js b/packages/material-ui-icons/lib/esm/CallReceivedRounded.js new file mode 100644 index 00000000000000..0bc4476a08a6da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallReceivedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.3 4.71a.9959.9959 0 0 0-1.41 0L7 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8.41L19.3 6.11c.38-.38.38-1.02 0-1.4z" +}), 'CallReceivedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallReceivedSharp.js b/packages/material-ui-icons/lib/esm/CallReceivedSharp.js new file mode 100644 index 00000000000000..5aad44e55e4dc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallReceivedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5.41 18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z" +}), 'CallReceivedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallReceivedTwoTone.js b/packages/material-ui-icons/lib/esm/CallReceivedTwoTone.js new file mode 100644 index 00000000000000..c9f2a246649844 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallReceivedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 17H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" +}), 'CallReceivedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallRounded.js b/packages/material-ui-icons/lib/esm/CallRounded.js new file mode 100644 index 00000000000000..128f6b723f44e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" +}), 'CallRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallSharp.js b/packages/material-ui-icons/lib/esm/CallSharp.js new file mode 100644 index 00000000000000..cb126fe2bb7c12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 15.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" +}), 'CallSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallSplit.js b/packages/material-ui-icons/lib/esm/CallSplit.js new file mode 100644 index 00000000000000..7308caabd290d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallSplit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 4 2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3z" +}), 'CallSplit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallSplitOutlined.js b/packages/material-ui-icons/lib/esm/CallSplitOutlined.js new file mode 100644 index 00000000000000..aedacc2611a5b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallSplitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 4 2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" +}), 'CallSplitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallSplitRounded.js b/packages/material-ui-icons/lib/esm/CallSplitRounded.js new file mode 100644 index 00000000000000..6a652149de15fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallSplitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.85 4.85 1.44 1.44-2.88 2.88 1.42 1.42 2.88-2.88 1.44 1.44c.31.31.85.09.85-.36V4.5c0-.28-.22-.5-.5-.5h-4.29c-.45 0-.67.54-.36.85zM8.79 4H4.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35L6.29 7.7 11 12.4V19c0 .55.45 1 1 1s1-.45 1-1v-7c0-.26-.11-.52-.29-.71l-5-5.01 1.44-1.44c.31-.3.09-.84-.36-.84z" +}), 'CallSplitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallSplitSharp.js b/packages/material-ui-icons/lib/esm/CallSplitSharp.js new file mode 100644 index 00000000000000..d87c9ed8a6a70f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallSplitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 4 2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" +}), 'CallSplitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallSplitTwoTone.js b/packages/material-ui-icons/lib/esm/CallSplitTwoTone.js new file mode 100644 index 00000000000000..cca8e73c268f11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallSplitTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-6l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10zM4 4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" +}), 'CallSplitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallToAction.js b/packages/material-ui-icons/lib/esm/CallToAction.js new file mode 100644 index 00000000000000..30583da7890f0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallToAction.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3v-3h18v3z" +}), 'CallToAction'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallToActionOutlined.js b/packages/material-ui-icons/lib/esm/CallToActionOutlined.js new file mode 100644 index 00000000000000..1351e20b196a78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallToActionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z" +}), 'CallToActionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallToActionRounded.js b/packages/material-ui-icons/lib/esm/CallToActionRounded.js new file mode 100644 index 00000000000000..fc6e747fe9d0db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallToActionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1z" +}), 'CallToActionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallToActionSharp.js b/packages/material-ui-icons/lib/esm/CallToActionSharp.js new file mode 100644 index 00000000000000..7f9e99ad826ec8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallToActionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-2 16H3v-3h18v3z" +}), 'CallToActionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallToActionTwoTone.js b/packages/material-ui-icons/lib/esm/CallToActionTwoTone.js new file mode 100644 index 00000000000000..060597231ea2a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallToActionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V5H3v14zm2-4h14v3H5v-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z" +}, "1")], 'CallToActionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CallTwoTone.js b/packages/material-ui-icons/lib/esm/CallTwoTone.js new file mode 100644 index 00000000000000..23153690cea468 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CallTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 21c.55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.98c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79z" +}, "1")], 'CallTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Camera.js b/packages/material-ui-icons/lib/esm/Camera.js new file mode 100644 index 00000000000000..75725f702cf34a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Camera.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.4 10.5 4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z" +}), 'Camera'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraAlt.js b/packages/material-ui-icons/lib/esm/CameraAlt.js new file mode 100644 index 00000000000000..ddeed73e57b69e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraAlt.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 2 7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'CameraAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraAltOutlined.js b/packages/material-ui-icons/lib/esm/CameraAltOutlined.js new file mode 100644 index 00000000000000..bb9c010fbc111a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}), 'CameraAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraAltRounded.js b/packages/material-ui-icons/lib/esm/CameraAltRounded.js new file mode 100644 index 00000000000000..78e3b9fc4cb992 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraAltRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'CameraAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraAltSharp.js b/packages/material-ui-icons/lib/esm/CameraAltSharp.js new file mode 100644 index 00000000000000..eac62efc4054cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraAltSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.83 4 15 2H9L7.17 4H2v16h20V4h-5.17zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'CameraAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraAltTwoTone.js b/packages/material-ui-icons/lib/esm/CameraAltTwoTone.js new file mode 100644 index 00000000000000..247b027256cacb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}, "1")], 'CameraAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraEnhance.js b/packages/material-ui-icons/lib/esm/CameraEnhance.js new file mode 100644 index 00000000000000..45a8f7665ccc96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraEnhance.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 3 7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 17 1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25z" +}, "1")], 'CameraEnhance'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraEnhanceOutlined.js b/packages/material-ui-icons/lib/esm/CameraEnhanceOutlined.js new file mode 100644 index 00000000000000..aad3b3ca8359ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraEnhanceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 10-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}), 'CameraEnhanceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraEnhanceRounded.js b/packages/material-ui-icons/lib/esm/CameraEnhanceRounded.js new file mode 100644 index 00000000000000..2d3c5f0b7ee805 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraEnhanceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z" +}), 'CameraEnhanceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraEnhanceSharp.js b/packages/material-ui-icons/lib/esm/CameraEnhanceSharp.js new file mode 100644 index 00000000000000..890384bbfcb0b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraEnhanceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z" +}), 'CameraEnhanceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraEnhanceTwoTone.js b/packages/material-ui-icons/lib/esm/CameraEnhanceTwoTone.js new file mode 100644 index 00000000000000..d6bec8db7e9d30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraEnhanceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.95 7-.59-.65L14.12 5H9.88L8.65 6.35l-.6.65H4v12h16V7h-4.05zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 10-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}, "1")], 'CameraEnhanceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraFront.js b/packages/material-ui-icons/lib/esm/CameraFront.js new file mode 100644 index 00000000000000..d2b6bc5a43bdd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraFront.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm5-8H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z" +}), 'CameraFront'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraFrontOutlined.js b/packages/material-ui-icons/lib/esm/CameraFrontOutlined.js new file mode 100644 index 00000000000000..475c5c65347b80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraFrontOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z" +}), 'CameraFrontOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraFrontRounded.js b/packages/material-ui-icons/lib/esm/CameraFrontRounded.js new file mode 100644 index 00000000000000..403b48c0aeee7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraFrontRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 12.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V3c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v9.5zm-6.15 6.35c-.31-.31-.85-.09-.85.36V20H6c-.55 0-1 .45-1 1s.45 1 1 1h4v.79c0 .45.54.67.85.35l1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79zM18 20h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8z" +}), 'CameraFrontRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraFrontSharp.js b/packages/material-ui-icons/lib/esm/CameraFrontSharp.js new file mode 100644 index 00000000000000..51d85d364d2a2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraFrontSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm7-8H5v18h14V0zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z" +}), 'CameraFrontSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraFrontTwoTone.js b/packages/material-ui-icons/lib/esm/CameraFrontTwoTone.js new file mode 100644 index 00000000000000..388a9b5fd1ef9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraFrontTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 14h10v2H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z" +}, "1")], 'CameraFrontTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraIndoor.js b/packages/material-ui-icons/lib/esm/CameraIndoor.js new file mode 100644 index 00000000000000..7d1c8e9851272b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraIndoor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm4 13.06L14 15v1c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1l2-1.06v4.12z" +}), 'CameraIndoor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraIndoorOutlined.js b/packages/material-ui-icons/lib/esm/CameraIndoorOutlined.js new file mode 100644 index 00000000000000..f99e8b5cf09c01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraIndoorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 13v-1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L14 13zm-2-7.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6z" +}), 'CameraIndoorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraIndoorRounded.js b/packages/material-ui-icons/lib/esm/CameraIndoorRounded.js new file mode 100644 index 00000000000000..d78b5868cd761e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraIndoorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.8 3.65-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zm4.47 12.02L14 15v1c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1l1.27-.67c.33-.18.73.06.73.44v2.46c0 .38-.4.62-.73.44z" +}), 'CameraIndoorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraIndoorSharp.js b/packages/material-ui-icons/lib/esm/CameraIndoorSharp.js new file mode 100644 index 00000000000000..eae41a41af4400 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraIndoorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm4 13.06L14 15v2H8v-6h6v2l2-1.06v4.12z" +}), 'CameraIndoorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraIndoorTwoTone.js b/packages/material-ui-icons/lib/esm/CameraIndoorTwoTone.js new file mode 100644 index 00000000000000..dd3a74069be73c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraIndoorTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 10v9h12v-9l-6-4.5L6 10zm8 2v1l2-1.06v4.12L14 15v1c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 12v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L14 13v-1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm6 16H6v-9l6-4.5 6 4.5v9z" +}, "2")], 'CameraIndoorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraOutdoor.js b/packages/material-ui-icons/lib/esm/CameraOutdoor.js new file mode 100644 index 00000000000000..9c5024a0b62891 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraOutdoor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L18 14v-1zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" +}), 'CameraOutdoor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraOutdoorOutlined.js b/packages/material-ui-icons/lib/esm/CameraOutdoorOutlined.js new file mode 100644 index 00000000000000..0827fc214f1b4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraOutdoorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L18 14v-1zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" +}), 'CameraOutdoorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraOutdoorRounded.js b/packages/material-ui-icons/lib/esm/CameraOutdoorRounded.js new file mode 100644 index 00000000000000..aaa9808ef12099 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraOutdoorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l1.27.67c.33.18.73-.06.73-.44v-2.46c0-.38-.4-.62-.73-.44L18 14v-1zm-7.2-9.1-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H6v-9l6-4.5 6 4.5v1h2v-1c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0z" +}), 'CameraOutdoorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraOutdoorSharp.js b/packages/material-ui-icons/lib/esm/CameraOutdoorSharp.js new file mode 100644 index 00000000000000..17b6a43d92c610 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraOutdoorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 14v-2h-6v6h6v-2l2 1.06v-4.12L18 14zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" +}), 'CameraOutdoorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraOutdoorTwoTone.js b/packages/material-ui-icons/lib/esm/CameraOutdoorTwoTone.js new file mode 100644 index 00000000000000..8c966412ebab67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraOutdoorTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1l2 1.06v-4.12L18 14v-1zM12 3 4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" +}), 'CameraOutdoorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraOutlined.js b/packages/material-ui-icons/lib/esm/CameraOutlined.js new file mode 100644 index 00000000000000..cdb2e4439f6a66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.25 2.26-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-4.75-3.31-8.72-7.75-9.74zM19.41 9h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM13.1 4.08 10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4c.37 0 .74.03 1.1.08zM5.7 7.09 8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12c0-1.85.64-3.55 1.7-4.91zM4.59 15h7.98l-2.71 4.7c-2.4-.67-4.34-2.42-5.27-4.7zm6.31 4.91L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20c-.38 0-.74-.04-1.1-.09zm7.4-3-4-6.91h5.43c.17.64.27 1.31.27 2 0 1.85-.64 3.55-1.7 4.91z" +}), 'CameraOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRear.js b/packages/material-ui-icons/lib/esm/CameraRear.js new file mode 100644 index 00000000000000..b1525bafdf0830 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRear.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" +}), 'CameraRear'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRearOutlined.js b/packages/material-ui-icons/lib/esm/CameraRearOutlined.js new file mode 100644 index 00000000000000..14b1d3efa6142d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRearOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z" +}), 'CameraRearOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRearRounded.js b/packages/material-ui-icons/lib/esm/CameraRearRounded.js new file mode 100644 index 00000000000000..e374c9be964b36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRearRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.85 18.85c-.31-.31-.85-.09-.85.36V20H6c-.55 0-1 .45-1 1s.45 1 1 1h4v.79c0 .45.54.67.85.35l1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79zM18 20h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" +}), 'CameraRearRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRearSharp.js b/packages/material-ui-icons/lib/esm/CameraRearSharp.js new file mode 100644 index 00000000000000..236fc88f259aec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRearSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm5-20H5v18h14V0zm-7 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" +}), 'CameraRearSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRearTwoTone.js b/packages/material-ui-icons/lib/esm/CameraRearTwoTone.js new file mode 100644 index 00000000000000..440132955fa7be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRearTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 16h10V2H7v14zm4.99-13c1.1 0 2 .9 2 2C14 6.1 13.1 7 12 7c-1.11 0-2-.9-2-2s.89-2 1.99-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm5-18c0-1.1-.9-2-2-2H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2zm-2 14H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z" +}, "1")], 'CameraRearTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRoll.js b/packages/material-ui-icons/lib/esm/CameraRoll.js new file mode 100644 index 00000000000000..925e234d4abfb2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRoll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" +}), 'CameraRoll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRollOutlined.js b/packages/material-ui-icons/lib/esm/CameraRollOutlined.js new file mode 100644 index 00000000000000..da85210f559fe4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRollOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z" +}), 'CameraRollOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRollRounded.js b/packages/material-ui-icons/lib/esm/CameraRollRounded.js new file mode 100644 index 00000000000000..5b7b0efc35d906 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRollRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h6c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-6zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" +}), 'CameraRollRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRollSharp.js b/packages/material-ui-icons/lib/esm/CameraRollSharp.js new file mode 100644 index 00000000000000..4cb968406b1573 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRollSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5V3h-3V1H5v2H2v19h12v-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" +}), 'CameraRollSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRollTwoTone.js b/packages/material-ui-icons/lib/esm/CameraRollTwoTone.js new file mode 100644 index 00000000000000..00d6810c2e2122 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRollTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5H9V3H7v2H4v15h8v-2h8V7h-8V5zm-1 12H9v-2h2v2zm0-7H9V8h2v2zm6-2h2v2h-2V8zm0 7h2v2h-2v-2zm-4-7h2v2h-2V8zm0 7h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z" +}, "1")], 'CameraRollTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraRounded.js b/packages/material-ui-icons/lib/esm/CameraRounded.js new file mode 100644 index 00000000000000..9334fa44e6d83e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.81 2.86c.17-.3 0-.7-.35-.74-2.62-.37-5.3.28-7.44 1.86-.19.15-.25.43-.12.65l3.01 5.22c.19.33.67.33.87 0l4.03-6.99zm7.49 5.47c-.98-2.47-2.92-4.46-5.35-5.5-.23-.1-.5 0-.63.22l-3.01 5.21c-.19.32.05.74.44.74h8.08c.35 0 .6-.35.47-.67zm.07 1.67h-6.2c-.38 0-.63.42-.43.75L19 18.14c.17.3.6.35.82.08 1.74-2.18 2.48-5.03 2.05-7.79-.03-.25-.25-.43-.5-.43zM4.18 5.79c-1.73 2.19-2.48 5.02-2.05 7.79.03.24.25.42.5.42h6.2c.38 0 .63-.42.43-.75L5 5.87c-.18-.3-.61-.35-.82-.08zM2.7 15.67c.98 2.47 2.92 4.46 5.35 5.5.23.1.5 0 .63-.22l3.01-5.21c.19-.33-.05-.75-.43-.75H3.17c-.35.01-.6.36-.47.68zm7.83 6.22c2.62.37 5.3-.28 7.44-1.86.2-.15.26-.44.13-.66l-3.01-5.22c-.19-.33-.67-.33-.87 0l-4.04 6.99c-.17.3.01.7.35.75z" +}), 'CameraRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraSharp.js b/packages/material-ui-icons/lib/esm/CameraSharp.js new file mode 100644 index 00000000000000..d6b1eb1375065f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.4 10.5 4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z" +}), 'CameraSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraTwoTone.js b/packages/material-ui-icons/lib/esm/CameraTwoTone.js new file mode 100644 index 00000000000000..1b6d5690550bc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.9 19.91c.36.05.72.09 1.1.09 2.18 0 4.16-.88 5.61-2.3L14.89 13l-3.99 6.91zm-1.04-.21 2.71-4.7H4.59c.93 2.28 2.87 4.03 5.27 4.7zM8.54 12 5.7 7.09C4.64 8.45 4 10.15 4 12c0 .69.1 1.36.26 2h5.43l-1.15-2zm9.76 4.91C19.36 15.55 20 13.85 20 12c0-.69-.1-1.36-.26-2h-5.43l3.99 6.91zM13.73 9h5.68c-.93-2.28-2.88-4.04-5.28-4.7L11.42 9h2.31zm-3.46 0 2.83-4.92C12.74 4.03 12.37 4 12 4c-2.18 0-4.16.88-5.6 2.3L9.12 11l1.15-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 22c5.52 0 10-4.48 10-10 0-4.75-3.31-8.72-7.75-9.74l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10zm0-2c-.38 0-.74-.04-1.1-.09L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20zm8-8c0 1.85-.64 3.55-1.7 4.91l-4-6.91h5.43c.17.64.27 1.31.27 2zm-.59-3h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM12 4c.37 0 .74.03 1.1.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4zm-8 8c0-1.85.64-3.55 1.7-4.91L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12zm6.27 3h2.3l-2.71 4.7c-2.4-.67-4.35-2.42-5.28-4.7h5.69z" +}, "1")], 'CameraTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cameraswitch.js b/packages/material-ui-icons/lib/esm/Cameraswitch.js new file mode 100644 index 00000000000000..2a7688fa2adaa5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cameraswitch.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-4 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m8.57.51 4.48 4.48V2.04c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.02 15.49-1.59 8.57.51zm2.38 21.45c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z" +}, "1")], 'Cameraswitch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraswitchOutlined.js b/packages/material-ui-icons/lib/esm/CameraswitchOutlined.js new file mode 100644 index 00000000000000..492b9f778dc230 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraswitchOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H8V9h1.83l1-1h2.34l1 1H16v6z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.57.52 13.05 5l1.41-1.41-1.54-1.54C17.7 2.46 21.53 6.24 22 11h2C23.36 3.3 15.79-1.67 8.57.52zm.97 19.89 1.54 1.54C6.3 21.54 2.47 17.76 2 13H0c.64 7.7 8.21 12.67 15.43 10.48L10.95 19l-1.41 1.41z" +}, "2")], 'CameraswitchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraswitchRounded.js b/packages/material-ui-icons/lib/esm/CameraswitchRounded.js new file mode 100644 index 00000000000000..3f40a7c5d56073 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraswitchRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-4 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.45.28c-.4.08-.55.56-.26.84l3.01 3.01c.32.31.85.09.85-.35V2.04c4.45.44 8.06 3.82 8.84 8.17.08.46.5.78.97.78.62 0 1.09-.57.98-1.18C22.61 2.89 15.79-1.12 9.45.28zm2.35 19.59c-.32-.32-.85-.09-.85.35v1.74c-4.45-.44-8.06-3.82-8.84-8.17-.08-.46-.5-.78-.97-.78-.62 0-1.09.57-.98 1.18 1.24 6.92 8.06 10.93 14.4 9.53.39-.09.55-.56.26-.85l-3.02-3z" +}, "1")], 'CameraswitchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraswitchSharp.js b/packages/material-ui-icons/lib/esm/CameraswitchSharp.js new file mode 100644 index 00000000000000..0a2b6c536a3f0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraswitchSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 6h-4L9 7H6v10h12V7h-3l-1-1zm-2 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m8.57.51 4.48 4.48V2.04c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.02 15.49-1.59 8.57.51zm2.38 21.45c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z" +}, "1")], 'CameraswitchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CameraswitchTwoTone.js b/packages/material-ui-icons/lib/esm/CameraswitchTwoTone.js new file mode 100644 index 00000000000000..f38f1a92cad613 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CameraswitchTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.17 8h-2.34l-1 1H8v6h8V9h-1.83l-1-1zM12 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 7h-1l-1-1h-4L9 7H8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H8V9h1.83l1-1h2.34l1 1H16v6z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M8.57.52 13.05 5V2.05c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.03 15.49-1.58 8.57.52zm2.38 21.44c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z" +}, "3")], 'CameraswitchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Campaign.js b/packages/material-ui-icons/lib/esm/Campaign.js new file mode 100644 index 00000000000000..4262fa468dbf55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Campaign.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm11.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" +}), 'Campaign'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CampaignOutlined.js b/packages/material-ui-icons/lib/esm/CampaignOutlined.js new file mode 100644 index 00000000000000..e2794f6737f367 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CampaignOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm5.03 1.71L11 9.53v4.94l-1.97-1.18-.48-.29H4v-2h4.55l.48-.29zM15.5 12c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" +}), 'CampaignOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CampaignRounded.js b/packages/material-ui-icons/lib/esm/CampaignRounded.js new file mode 100644 index 00000000000000..bd997f98ad7a27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CampaignRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 12c0 .55.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1zm-1.41 4.82c-.33.44-.24 1.05.2 1.37.53.39 1.09.81 1.62 1.21.44.33 1.06.24 1.38-.2 0-.01.01-.01.01-.02.33-.44.24-1.06-.2-1.38-.53-.4-1.09-.82-1.61-1.21-.44-.33-1.06-.23-1.39.21 0 .01-.01.02-.01.02zm3.22-12.01c0-.01-.01-.01-.01-.02-.33-.44-.95-.53-1.38-.2-.53.4-1.1.82-1.62 1.22-.44.33-.52.95-.19 1.38 0 .01.01.01.01.02.33.44.94.53 1.38.2.53-.39 1.09-.82 1.62-1.22.43-.32.51-.94.19-1.38zM8 9H4c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v3c0 .55.45 1 1 1s1-.45 1-1v-3h1l5 3V6L8 9zm7.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" +}), 'CampaignRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CampaignSharp.js b/packages/material-ui-icons/lib/esm/CampaignSharp.js new file mode 100644 index 00000000000000..b2a8e5674ee980 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CampaignSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM8 9H2v6h3v4h2v-4h1l5 3V6L8 9zm7.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" +}), 'CampaignSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CampaignTwoTone.js b/packages/material-ui-icons/lib/esm/CampaignTwoTone.js new file mode 100644 index 00000000000000..97577a66fbb3a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CampaignTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm5.03 1.71L11 9.53v4.94l-1.97-1.18-.48-.29H4v-2h4.55l.48-.29zM15.5 12c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.03 10.71 11 9.53v4.94l-1.97-1.18-.48-.29H4v-2h4.55l.48-.29z", + opacity: ".3" +}, "1")], 'CampaignTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cancel.js b/packages/material-ui-icons/lib/esm/Cancel.js new file mode 100644 index 00000000000000..5ac0b6b38d29c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cancel.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" +}), 'Cancel'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelOutlined.js b/packages/material-ui-icons/lib/esm/CancelOutlined.js new file mode 100644 index 00000000000000..b83f3651e74cd4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z" +}), 'CancelOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelPresentation.js b/packages/material-ui-icons/lib/esm/CancelPresentation.js new file mode 100644 index 00000000000000..1f39b7b4bea2fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelPresentation.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z" +}, "1")], 'CancelPresentation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelPresentationOutlined.js b/packages/material-ui-icons/lib/esm/CancelPresentationOutlined.js new file mode 100644 index 00000000000000..c4bf0394be7be4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelPresentationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95 12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z" +}), 'CancelPresentationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelPresentationRounded.js b/packages/material-ui-icons/lib/esm/CancelPresentationRounded.js new file mode 100644 index 00000000000000..c9b230bd264002 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelPresentationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12zm-5.71-9.3a.9959.9959 0 0 0-1.41 0L12 10.59 10.11 8.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 8.7 13.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l1.89 1.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l1.89-1.89c.38-.38.38-1.02-.01-1.41z" +}), 'CancelPresentationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelPresentationSharp.js b/packages/material-ui-icons/lib/esm/CancelPresentationSharp.js new file mode 100644 index 00000000000000..457499881c9544 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelPresentationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59z" +}), 'CancelPresentationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelPresentationTwoTone.js b/packages/material-ui-icons/lib/esm/CancelPresentationTwoTone.js new file mode 100644 index 00000000000000..b8b9ddea2a3d91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelPresentationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19.1h18V4.95H3V19.1zm5-9.74 1.41-1.41L12 10.54l2.59-2.59L16 9.36l-2.59 2.59L16 14.54l-1.41 1.41L12 13.36l-2.59 2.59L8 14.54l2.59-2.59L8 9.36z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95 12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z" +}, "1")], 'CancelPresentationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelRounded.js b/packages/material-ui-icons/lib/esm/CancelRounded.js new file mode 100644 index 00000000000000..7627982db116bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm4.3 14.3c-.39.39-1.02.39-1.41 0L12 13.41 9.11 16.3c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 7.7 9.11a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l2.89-2.89c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z" +}), 'CancelRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelScheduleSend.js b/packages/material-ui-icons/lib/esm/CancelScheduleSend.js new file mode 100644 index 00000000000000..f386651edf726d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelScheduleSend.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l9 2-9 2 .01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" +}, "1")], 'CancelScheduleSend'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelScheduleSendOutlined.js b/packages/material-ui-icons/lib/esm/CancelScheduleSendOutlined.js new file mode 100644 index 00000000000000..ea6cc176d6e6b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelScheduleSendOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l10.06 1.34c-.42.44-.78.93-1.09 1.46L1 14l.01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zM3 8.25l.01-2.22 7.51 3.22-7.52-1zm6.1 7.11L3 17.97v-2.22l6.17-.82c-.03.14-.05.28-.07.43zM16.5 22c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" +}, "1")], 'CancelScheduleSendOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelScheduleSendRounded.js b/packages/material-ui-icons/lib/esm/CancelScheduleSendRounded.js new file mode 100644 index 00000000000000..59aca4c4ee0ab8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelScheduleSendRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 9c-.42 0-.83.04-1.24.11L2.4 3.6c-.66-.29-1.39.2-1.39.91L1 9.2c0 .47.33.88.78.98L10 12l-8.22 1.83c-.45.1-.78.5-.78.97l.01 4.68c0 .72.73 1.2 1.39.92l6.68-2.86C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.62 14.38c-.2-.2-.51-.2-.71 0l-1.41 1.41-1.41-1.41c-.2-.2-.51-.2-.71 0s-.2.51 0 .71l1.41 1.41-1.41 1.41c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.41-1.41 1.41 1.41c.2.2.51.2.71 0 .2-.2.2-.51 0-.71l-1.41-1.41 1.41-1.41c.2-.2.2-.52 0-.71z" +}, "1")], 'CancelScheduleSendRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelScheduleSendSharp.js b/packages/material-ui-icons/lib/esm/CancelScheduleSendSharp.js new file mode 100644 index 00000000000000..03fe2732285ee2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelScheduleSendSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l9 2-9 2 .01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" +}, "1")], 'CancelScheduleSendSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelScheduleSendTwoTone.js b/packages/material-ui-icons/lib/esm/CancelScheduleSendTwoTone.js new file mode 100644 index 00000000000000..c508658ca1b939 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelScheduleSendTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m3 17.97 6.1-2.61c.02-.14.04-.29.07-.43L3 15.75v2.22zM16.5 11c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm2.47 7.27-.71.71-1.77-1.77-1.77 1.77-.71-.71 1.77-1.77-1.77-1.77.71-.71 1.77 1.77 1.77-1.77.71.71-1.77 1.77 1.77 1.77zM3 8.25l7.52 1-7.51-3.22z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l10.06 1.34c-.42.44-.78.93-1.09 1.46L1 14l.01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zM3 8.25l.01-2.22 7.51 3.22-7.52-1zm6.1 7.11L3 17.97v-2.22l6.17-.82c-.03.14-.05.28-.07.43zM16.5 22c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m18.27 14.03-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" +}, "2")], 'CancelScheduleSendTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelSharp.js b/packages/material-ui-icons/lib/esm/CancelSharp.js new file mode 100644 index 00000000000000..6ca2ebfd74abd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" +}), 'CancelSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CancelTwoTone.js b/packages/material-ui-icons/lib/esm/CancelTwoTone.js new file mode 100644 index 00000000000000..3c2cec03e852d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CancelTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 11.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z" +}, "1")], 'CancelTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRental.js b/packages/material-ui-icons/lib/esm/CarRental.js new file mode 100644 index 00000000000000..842ece802d3f9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRental.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.39 9H7.61c-.43 0-.81.28-.95.68l-1.66 5v6.81c0 .29.23.51.5.51h1c.28 0 .5-.22.5-.5V20h10v1.5c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-6.81l-1.66-5c-.14-.41-.52-.69-.95-.69zm-8.61 9c-.68 0-1.22-.54-1.22-1.22s.54-1.22 1.22-1.22S9 16.11 9 16.78 8.46 18 7.78 18zm8.44 0c-.67 0-1.22-.54-1.22-1.22s.54-1.22 1.22-1.22 1.22.54 1.22 1.22S16.9 18 16.22 18zm-9.93-4 1.33-4h8.78l1.33 4H6.29zm4.54-11C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'CarRental'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRentalOutlined.js b/packages/material-ui-icons/lib/esm/CarRentalOutlined.js new file mode 100644 index 00000000000000..c5e0e9b6ebdc07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRentalOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "16.5", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "16.5", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17.25 9.6c-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81h.44c.43 0 .78-.36.78-.81V20h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4zM8.33 11h7.34l.23.69.43 1.31H7.67l.66-2zM17 18H7v-3h10v3zM10.83 3C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "2")], 'CarRentalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRentalRounded.js b/packages/material-ui-icons/lib/esm/CarRentalRounded.js new file mode 100644 index 00000000000000..c7311556b27e84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRentalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 7c1.3 0 2.41-.84 2.83-2H16v1c0 .55.45 1 1 1s1-.45 1-1V5c.55 0 1-.45 1-1s-.45-1-1-1h-7.17C10.35 1.65 8.95.76 7.4 1.06c-1.17.23-2.12 1.19-2.35 2.36C4.7 5.32 6.15 7 8 7zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm8.39 6H7.61c-.43 0-.81.28-.95.68L5 14.69V21c0 .55.45 1 1 1s1-.45 1-1v-1h10v1c0 .55.45 1 1 1s1-.45 1-1v-6.31l-1.66-5.01c-.14-.4-.52-.68-.95-.68zM9 17.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7.67 13l.66-2h7.34l.66 2H7.67z" +}), 'CarRentalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRentalSharp.js b/packages/material-ui-icons/lib/esm/CarRentalSharp.js new file mode 100644 index 00000000000000..c86f95afeeb1cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRentalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.83 3C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9.11 4H6.89L5 14.69V22h2v-2h10v2h2v-7.31L17.11 9zM9 17.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7.67 13l.66-2h7.34l.66 2H7.67z" +}), 'CarRentalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRentalTwoTone.js b/packages/material-ui-icons/lib/esm/CarRentalTwoTone.js new file mode 100644 index 00000000000000..a26c303a176047 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRentalTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 15.01V18h10v-3H7v.01zm8 .49c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-6 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "16.5", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "16.5", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M17.25 9.6c-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81h.44c.43 0 .78-.36.78-.81V20h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4zM8.33 11h7.34l.23.69.43 1.31H7.67l.66-2zM17 15.01V18H7v-3h10v.01zM10.83 3C10.41 1.83 9.3 1 8 1 6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "3")], 'CarRentalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRepair.js b/packages/material-ui-icons/lib/esm/CarRepair.js new file mode 100644 index 00000000000000..3a6b7052063c5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRepair.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.22 12c.68 0 1.22-.54 1.22-1.22 0-.67-.54-1.22-1.22-1.22S15 10.11 15 10.78c0 .68.55 1.22 1.22 1.22zm-9.66-1.22c0 .67.54 1.22 1.22 1.22S9 11.46 9 10.78c0-.67-.54-1.22-1.22-1.22s-1.22.55-1.22 1.22zM7.61 4 6.28 8h11.43l-1.33-4H7.61zm8.67-1s.54.01.92.54c.02.02.03.04.05.07.07.11.14.24.19.4.22.65 1.56 4.68 1.56 4.68v6.5c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81V14H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5S6.34 4.67 6.55 4c.05-.16.12-.28.19-.4.03-.02.04-.04.06-.06.38-.53.92-.54.92-.54h8.56zM4 17.01h16V19h-7v3h-2v-3H4v-1.99z" +}), 'CarRepair'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRepairOutlined.js b/packages/material-ui-icons/lib/esm/CarRepairOutlined.js new file mode 100644 index 00000000000000..db54a9e2a3af37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRepairOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "10.5", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "10.5", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5.78 16h.44c.43 0 .78-.36.78-.81V14h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5S17.66 4.66 17.44 4c-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4C6.34 4.66 5 8.69 5 8.69v6.5c0 .45.35.81.78.81zM8.33 5h7.34l.23.69.43 1.31H7.67l.66-2zM7 9.01V9h10v3H7V9.01zm-3 8V19h7v3h2v-3h7v-1.99z" +}, "2")], 'CarRepairOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRepairRounded.js b/packages/material-ui-icons/lib/esm/CarRepairRounded.js new file mode 100644 index 00000000000000..7ecb7318d56205 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRepairRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 15v-1h10v1c0 .55.45 1 1 1s1-.45 1-1V8.69S17.66 4.66 17.44 4c-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4C6.34 4.66 5 8.69 5 8.69V15c0 .55.45 1 1 1s1-.45 1-1zm2-3.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8.33 5h7.34l.23.69.43 1.31H7.67l.66-2zM4 18.01c0 .54.45.99.99.99H11v2.01c0 .55.45.99.99.99H12c.55 0 .99-.45.99-.99V19H19c.55 0 .99-.45.99-.99 0-.55-.45-.99-.99-.99H4.99c-.54-.01-.99.44-.99.99z" +}), 'CarRepairRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRepairSharp.js b/packages/material-ui-icons/lib/esm/CarRepairSharp.js new file mode 100644 index 00000000000000..a176dc2215f744 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRepairSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 17.01V19h7v3h2v-3h7v-1.99H4zM7 14h10v2h2V8.69L17.11 3H6.89L5 8.69V16h2v-2zm2-2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8.33 5h7.34l.66 2H7.67l.66-2z" +}), 'CarRepairSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarRepairTwoTone.js b/packages/material-ui-icons/lib/esm/CarRepairTwoTone.js new file mode 100644 index 00000000000000..0c29aca65a0ba0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarRepairTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 9.01V9H7v3h10V9.01zM9 11.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "10.5", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "10.5", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M5.78 16h.44c.43 0 .78-.36.78-.81V14h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5S17.66 4.66 17.44 4c-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4C6.34 4.66 5 8.69 5 8.69v6.5c0 .45.35.81.78.81zM8.33 5h7.34l.23.69.43 1.31H7.67l.66-2zM7 9.01V9h10v3H7V9.01zm-3 8V19h7v3h2v-3h7v-1.99z" +}, "3")], 'CarRepairTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardGiftcard.js b/packages/material-ui-icons/lib/esm/CardGiftcard.js new file mode 100644 index 00000000000000..a3c9e0255003d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardGiftcard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" +}), 'CardGiftcard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardGiftcardOutlined.js b/packages/material-ui-icons/lib/esm/CardGiftcardOutlined.js new file mode 100644 index 00000000000000..1db611e250e30f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardGiftcardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" +}), 'CardGiftcardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardGiftcardRounded.js b/packages/material-ui-icons/lib/esm/CardGiftcardRounded.js new file mode 100644 index 00000000000000..ca5fbd899f797b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardGiftcardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V9c0-.55.45-1 1-1h4.08L7.6 10.02c-.33.45-.23 1.08.22 1.4.44.32 1.07.22 1.39-.22L12 7.4l2.79 3.8c.32.44.95.54 1.39.22.45-.32.55-.95.22-1.4L14.92 8H19c.55 0 1 .45 1 1v5z" +}), 'CardGiftcardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardGiftcardSharp.js b/packages/material-ui-icons/lib/esm/CardGiftcardSharp.js new file mode 100644 index 00000000000000..31951fb166be51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardGiftcardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6h-4.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2.01v15H22V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" +}), 'CardGiftcardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardGiftcardTwoTone.js b/packages/material-ui-icons/lib/esm/CardGiftcardTwoTone.js new file mode 100644 index 00000000000000..2985949a6d48c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardGiftcardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17h16v2H4zm13-6.17L15.38 12 12 7.4 8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" +}, "1")], 'CardGiftcardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardMembership.js b/packages/material-ui-icons/lib/esm/CardMembership.js new file mode 100644 index 00000000000000..f7873cfd9024e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardMembership.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" +}), 'CardMembership'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardMembershipOutlined.js b/packages/material-ui-icons/lib/esm/CardMembershipOutlined.js new file mode 100644 index 00000000000000..ca0cbd342bd051 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardMembershipOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" +}), 'CardMembershipOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardMembershipRounded.js b/packages/material-ui-icons/lib/esm/CardMembershipRounded.js new file mode 100644 index 00000000000000..c621ae8805415e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardMembershipRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v5z" +}), 'CardMembershipRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardMembershipSharp.js b/packages/material-ui-icons/lib/esm/CardMembershipSharp.js new file mode 100644 index 00000000000000..d910a70392c63a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardMembershipSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v15h6v5l4-2 4 2v-5h6V2zm-2 13H4v-2h16v2zm0-5H4V4h16v6z" +}), 'CardMembershipSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardMembershipTwoTone.js b/packages/material-ui-icons/lib/esm/CardMembershipTwoTone.js new file mode 100644 index 00000000000000..2799b480630cea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardMembershipTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 4h16v6H4zm0 9h16v2H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z" +}, "1")], 'CardMembershipTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardTravel.js b/packages/material-ui-icons/lib/esm/CardTravel.js new file mode 100644 index 00000000000000..80e5def13ee9b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardTravel.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" +}), 'CardTravel'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardTravelOutlined.js b/packages/material-ui-icons/lib/esm/CardTravelOutlined.js new file mode 100644 index 00000000000000..9a676b4d7fa884 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardTravelOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" +}), 'CardTravelOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardTravelRounded.js b/packages/material-ui-icons/lib/esm/CardTravelRounded.js new file mode 100644 index 00000000000000..71ece3aea62d54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardTravelRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V9c0-.55.45-1 1-1h2v1c0 .55.45 1 1 1s1-.45 1-1V8h6v1c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1 .45 1 1v5z" +}), 'CardTravelRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardTravelSharp.js b/packages/material-ui-icons/lib/esm/CardTravelSharp.js new file mode 100644 index 00000000000000..c9fa23375da497 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardTravelSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6h-5V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H2v15h20V6zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" +}), 'CardTravelSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CardTravelTwoTone.js b/packages/material-ui-icons/lib/esm/CardTravelTwoTone.js new file mode 100644 index 00000000000000..05d22301581e14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CardTravelTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17h16v2H4zm13-7h-2V8H9v2H7V8H4v6h16V8h-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" +}, "1")], 'CardTravelTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Carpenter.js b/packages/material-ui-icons/lib/esm/Carpenter.js new file mode 100644 index 00000000000000..b22fe7e80d925a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Carpenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.73 14.23 7 1.5 3.11 5.39l8.13 11.67c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zm-5.66 5.65-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" +}), 'Carpenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarpenterOutlined.js b/packages/material-ui-icons/lib/esm/CarpenterOutlined.js new file mode 100644 index 00000000000000..d556a5e9f823e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarpenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.73 14.23 7 1.5 3.11 5.39l8.13 11.67c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zM5.71 5.62 7 4.33l8.49 8.49-2.81 2.81L5.71 5.62zm8.36 14.26-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" +}), 'CarpenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarpenterRounded.js b/packages/material-ui-icons/lib/esm/CarpenterRounded.js new file mode 100644 index 00000000000000..9259f5a469a79f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarpenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.73 14.23 7.71 2.21a.9959.9959 0 0 0-1.41 0L3.7 4.8c-.34.34-.39.88-.11 1.28l7.65 10.98c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zm-5.66 5.65-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" +}), 'CarpenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarpenterSharp.js b/packages/material-ui-icons/lib/esm/CarpenterSharp.js new file mode 100644 index 00000000000000..b0a3b0b197e7cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarpenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 1.5 3.11 5.39l8.13 11.67-1.41 1.41 4.24 4.24 7.07-7.07L7 1.5zm5.66 16.97 4.24-4.24 1.41 1.41-4.24 4.24-1.41-1.41z" +}), 'CarpenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CarpenterTwoTone.js b/packages/material-ui-icons/lib/esm/CarpenterTwoTone.js new file mode 100644 index 00000000000000..6b43c1f81498b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CarpenterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.71 5.62 7 4.33l8.49 8.49-2.81 2.81L5.71 5.62z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.73 14.23 7 1.5 3.11 5.39l8.13 11.67c-.78.78-.78 2.05 0 2.83l1.41 1.41c.78.78 2.05.78 2.83 0l4.24-4.24c.79-.78.79-2.05.01-2.83zM5.71 5.62 7 4.33l8.49 8.49-2.81 2.81L5.71 5.62zm8.36 14.26-1.41-1.41 4.24-4.24 1.41 1.41-4.24 4.24z" +}, "1")], 'CarpenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cases.js b/packages/material-ui-icons/lib/esm/Cases.js new file mode 100644 index 00000000000000..40ccfcea77f014 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cases.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6V4l-2-2h-5L9 4v2H5v11s1 2 2 2h13s2-.98 2-2V6h-4zM4 9H2v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H4V9zm7-4c0-.55.53-1 1-1h3c.46 0 1 .54 1 1v1h-5V5zM5 6h17v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6z" +}), 'Cases'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasesOutlined.js b/packages/material-ui-icons/lib/esm/CasesOutlined.js new file mode 100644 index 00000000000000..39e5b9763fa97a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasesOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h17v-2H3V9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 5V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v11c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" +}, "1")], 'CasesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasesRounded.js b/packages/material-ui-icons/lib/esm/CasesRounded.js new file mode 100644 index 00000000000000..be2defa35c7e87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 5V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3zm-2 0h-4V3h4v2zM2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H3V10c0-.55-.45-1-1-1z" +}), 'CasesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasesSharp.js b/packages/material-ui-icons/lib/esm/CasesSharp.js new file mode 100644 index 00000000000000..0d62c6bf190584 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 5V1h-8v4H5v13h18V5h-5zm-2 0h-4V3h4v2zM3 9H1v13h18v-2H3V9z" +}), 'CasesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasesTwoTone.js b/packages/material-ui-icons/lib/esm/CasesTwoTone.js new file mode 100644 index 00000000000000..3074be4c9c7949 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasesTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 7h14v9H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h17v-2H3V9z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 5V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v11c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" +}, "2")], 'CasesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Casino.js b/packages/material-ui-icons/lib/esm/Casino.js new file mode 100644 index 00000000000000..b947356377660f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Casino.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" +}), 'Casino'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasinoOutlined.js b/packages/material-ui-icons/lib/esm/CasinoOutlined.js new file mode 100644 index 00000000000000..73c2848f4a6d5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasinoOutlined.js @@ -0,0 +1,25 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "16.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "7.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "16.5", + r: "1.5" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "7.5", + r: "1.5" +}, "5")], 'CasinoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasinoRounded.js b/packages/material-ui-icons/lib/esm/CasinoRounded.js new file mode 100644 index 00000000000000..ae81d704df479b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasinoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" +}), 'CasinoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasinoSharp.js b/packages/material-ui-icons/lib/esm/CasinoSharp.js new file mode 100644 index 00000000000000..bbcfa36a79373c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasinoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" +}), 'CasinoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CasinoTwoTone.js b/packages/material-ui-icons/lib/esm/CasinoTwoTone.js new file mode 100644 index 00000000000000..26eada670f1c14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CasinoTwoTone.js @@ -0,0 +1,28 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zM16.5 6c.83 0 1.5.67 1.5 1.5S17.33 9 16.5 9 15 8.33 15 7.5 15.67 6 16.5 6zm0 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM12 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM7.5 6C8.33 6 9 6.67 9 7.5S8.33 9 7.5 9 6 8.33 6 7.5 6.67 6 7.5 6zm0 9c.83 0 1.5.67 1.5 1.5S8.33 18 7.5 18 6 17.33 6 16.5 6.67 15 7.5 15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "16.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "7.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "1.5" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "16.5", + r: "1.5" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "7.5", + r: "1.5" +}, "6")], 'CasinoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cast.js b/packages/material-ui-icons/lib/esm/Cast.js new file mode 100644 index 00000000000000..cd41395d985df2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cast.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" +}), 'Cast'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastConnected.js b/packages/material-ui-icons/lib/esm/CastConnected.js new file mode 100644 index 00000000000000..51bc75b8b9c589 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastConnected.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'CastConnected'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastConnectedOutlined.js b/packages/material-ui-icons/lib/esm/CastConnectedOutlined.js new file mode 100644 index 00000000000000..25761130dcc1f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastConnectedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v2h12v6h-3v2h5V7z" +}), 'CastConnectedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastConnectedRounded.js b/packages/material-ui-icons/lib/esm/CastConnectedRounded.js new file mode 100644 index 00000000000000..8470f27f1de5f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastConnectedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 16V8c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v.63c3.96 1.28 7.09 4.41 8.37 8.37H18c.55 0 1-.45 1-1zm2-13H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-.62-.19-1.2-.51-1.68C2.95 18.52 2.04 18 1 18zm1.14-3.91c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zm-.04-4.04c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z" +}), 'CastConnectedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastConnectedSharp.js b/packages/material-ui-icons/lib/esm/CastConnectedSharp.js new file mode 100644 index 00000000000000..43463f11501b90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastConnectedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm22-7H1v5h2V5h18v14h-7v2h9V3z" +}), 'CastConnectedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastConnectedTwoTone.js b/packages/material-ui-icons/lib/esm/CastConnectedTwoTone.js new file mode 100644 index 00000000000000..7067dbe29e3f4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastConnectedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 9H5.95c2.83 1.17 5.15 3.3 6.56 6H17V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v1.63c.32.1.63.24.95.37H17v6h-4.49c.15.29.29.58.42.88.16.36.31.74.44 1.12H19V7H5z" +}, "1")], 'CastConnectedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastForEducation.js b/packages/material-ui-icons/lib/esm/CastForEducation.js new file mode 100644 index 00000000000000..d835c7f17a0e43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastForEducation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" +}), 'CastForEducation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastForEducationOutlined.js b/packages/material-ui-icons/lib/esm/CastForEducationOutlined.js new file mode 100644 index 00000000000000..0191cd80121fd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastForEducationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" +}), 'CastForEducationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastForEducationRounded.js b/packages/material-ui-icons/lib/esm/CastForEducationRounded.js new file mode 100644 index 00000000000000..927d38d3e6643a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastForEducationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.2 8.56-4.22-2.3c-.3-.16-.66-.16-.96 0L9.8 8.56c-.35.19-.35.69 0 .88l4.22 2.3c.3.16.66.16.96 0l4.22-2.3c.34-.19.34-.69 0-.88zM21 3H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.98 9.74L11 11.09v1.41c0 .37.2.7.52.88l2.5 1.36c.3.16.66.16.96 0l2.5-1.36c.32-.18.52-.52.52-.88v-1.41l-3.02 1.65c-.3.16-.66.16-.96 0zM1 18v3h3c0-1.66-1.34-3-3-3zm1.14-3.91c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zm-.04-4.04c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z" +}), 'CastForEducationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastForEducationSharp.js b/packages/material-ui-icons/lib/esm/CastForEducationSharp.js new file mode 100644 index 00000000000000..bac5d2c2fd055e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastForEducationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" +}), 'CastForEducationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastForEducationTwoTone.js b/packages/material-ui-icons/lib/esm/CastForEducationTwoTone.js new file mode 100644 index 00000000000000..69e5fa75011ead --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastForEducationTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6 9 9l5.5 3L20 9l-5.5-3z" +}), 'CastForEducationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastOutlined.js b/packages/material-ui-icons/lib/esm/CastOutlined.js new file mode 100644 index 00000000000000..15174332996697 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" +}), 'CastOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastRounded.js b/packages/material-ui-icons/lib/esm/CastRounded.js new file mode 100644 index 00000000000000..600de4d308b01e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM2.14 14.09c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zM1 18v3h3c0-1.66-1.34-3-3-3zm1.1-7.95c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z" +}), 'CastRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastSharp.js b/packages/material-ui-icons/lib/esm/CastSharp.js new file mode 100644 index 00000000000000..cb1da488c4d0dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" +}), 'CastSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CastTwoTone.js b/packages/material-ui-icons/lib/esm/CastTwoTone.js new file mode 100644 index 00000000000000..701d88a6b36b49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CastTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z" +}), 'CastTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CatchingPokemon.js b/packages/material-ui-icons/lib/esm/CatchingPokemon.js new file mode 100644 index 00000000000000..eb3ef96f7c8e72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CatchingPokemon.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" +}), 'CatchingPokemon'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CatchingPokemonOutlined.js b/packages/material-ui-icons/lib/esm/CatchingPokemonOutlined.js new file mode 100644 index 00000000000000..c534136191b7b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CatchingPokemonOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" +}), 'CatchingPokemonOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CatchingPokemonRounded.js b/packages/material-ui-icons/lib/esm/CatchingPokemonRounded.js new file mode 100644 index 00000000000000..4935843b9b84f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CatchingPokemonRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" +}), 'CatchingPokemonRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CatchingPokemonSharp.js b/packages/material-ui-icons/lib/esm/CatchingPokemonSharp.js new file mode 100644 index 00000000000000..a2953a22c934e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CatchingPokemonSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 12c0 1.38-1.12 2.5-2.5 2.5S9.5 13.38 9.5 12s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" +}), 'CatchingPokemonSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CatchingPokemonTwoTone.js b/packages/material-ui-icons/lib/esm/CatchingPokemonTwoTone.js new file mode 100644 index 00000000000000..10c43022d81f3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CatchingPokemonTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c4.08 0 7.45 3.05 7.94 7h-4.06c-.45-1.73-2.02-3-3.88-3s-3.43 1.27-3.87 3H4.06C4.55 7.05 7.92 4 12 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 2c4.08 0 7.45 3.05 7.94 7h-4.06c-.45-1.73-2.02-3-3.88-3s-3.43 1.27-3.87 3H4.06C4.55 7.05 7.92 4 12 4zm2 8c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2 8c-4.08 0-7.45-3.05-7.94-7h4.06c.44 1.73 2.01 3 3.87 3s3.43-1.27 3.87-3h4.06c-.47 3.95-3.84 7-7.92 7z" +}, "1")], 'CatchingPokemonTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Category.js b/packages/material-ui-icons/lib/esm/Category.js new file mode 100644 index 00000000000000..7f49eeec3a9691 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Category.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 2-5.5 9h11z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "17.5", + r: "4.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M3 13.5h8v8H3z" +}, "2")], 'Category'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CategoryOutlined.js b/packages/material-ui-icons/lib/esm/CategoryOutlined.js new file mode 100644 index 00000000000000..4f4770f6b6127a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CategoryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 2-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z" +}), 'CategoryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CategoryRounded.js b/packages/material-ui-icons/lib/esm/CategoryRounded.js new file mode 100644 index 00000000000000..ea3312f41cd544 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CategoryRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.15 3.4 7.43 9.48c-.41.66.07 1.52.85 1.52h7.43c.78 0 1.26-.86.85-1.52L12.85 3.4c-.39-.64-1.31-.64-1.7 0z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "17.5", + r: "4.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M4 21.5h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1z" +}, "2")], 'CategoryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CategorySharp.js b/packages/material-ui-icons/lib/esm/CategorySharp.js new file mode 100644 index 00000000000000..3b9cad0bb7c685 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CategorySharp.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 2-5.5 9h11z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "17.5", + r: "4.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M3 13.5h8v8H3z" +}, "2")], 'CategorySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CategoryTwoTone.js b/packages/material-ui-icons/lib/esm/CategoryTwoTone.js new file mode 100644 index 00000000000000..88153473032c15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CategoryTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "17.5", + r: "2.5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 15.5h4v4H5zm7-9.66L10.07 9h3.86z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m12 2-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM11 13.5H3v8h8v-8zm-2 6H5v-4h4v4z" +}, "2")], 'CategoryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Celebration.js b/packages/material-ui-icons/lib/esm/Celebration.js new file mode 100644 index 00000000000000..a173fd1dadb2af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Celebration.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 22 14-5-9-9zm12.53-9.47 5.59-5.59c.49-.49 1.28-.49 1.77 0l.59.59 1.06-1.06-.59-.59c-1.07-1.07-2.82-1.07-3.89 0l-5.59 5.59 1.06 1.06zm-4.47-5.65-.59.59 1.06 1.06.59-.59c1.07-1.07 1.07-2.82 0-3.89l-.59-.59-1.06 1.07.59.59c.48.48.48 1.28 0 1.76zm7 5-1.59 1.59 1.06 1.06 1.59-1.59c.49-.49 1.28-.49 1.77 0l1.61 1.61 1.06-1.06-1.61-1.61c-1.08-1.07-2.82-1.07-3.89 0zm-2-6-3.59 3.59 1.06 1.06 3.59-3.59c1.07-1.07 1.07-2.82 0-3.89l-1.59-1.59-1.06 1.06 1.59 1.59c.48.49.48 1.29 0 1.77z" +}), 'Celebration'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CelebrationOutlined.js b/packages/material-ui-icons/lib/esm/CelebrationOutlined.js new file mode 100644 index 00000000000000..1fb02c89fd2256 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CelebrationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 22 14-5-9-9-5 14zm10.35-5.82L5.3 18.7l2.52-7.05 4.53 4.53zm2.18-3.65 5.59-5.59c.49-.49 1.28-.49 1.77 0l.59.59 1.06-1.06-.59-.59c-1.07-1.07-2.82-1.07-3.89 0l-5.59 5.59 1.06 1.06zm-4.47-5.65-.59.59 1.06 1.06.59-.59c1.07-1.07 1.07-2.82 0-3.89l-.59-.59-1.06 1.07.59.59c.48.48.48 1.28 0 1.76zm7 5-1.59 1.59 1.06 1.06 1.59-1.59c.49-.49 1.28-.49 1.77 0l1.61 1.61 1.06-1.06-1.61-1.61c-1.08-1.07-2.82-1.07-3.89 0zm-2-6-3.59 3.59 1.06 1.06 3.59-3.59c1.07-1.07 1.07-2.82 0-3.89l-1.59-1.59-1.06 1.06 1.59 1.59c.48.49.48 1.29 0 1.77z" +}), 'CelebrationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CelebrationRounded.js b/packages/material-ui-icons/lib/esm/CelebrationRounded.js new file mode 100644 index 00000000000000..d0ae2feb482813 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CelebrationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.99 21.29 9.04-3.23c1.38-.49 1.78-2.26.74-3.3l-4.53-4.53c-1.04-1.04-2.8-.64-3.3.74l-3.23 9.04c-.28.8.48 1.56 1.28 1.28zM15.06 12l5.06-5.06c.49-.49 1.28-.49 1.77 0l.06.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.06-.06c-1.07-1.07-2.82-1.07-3.89 0L14 10.94c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zm-5-5.12-.06.06c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.06-.06c1.07-1.07 1.07-2.82 0-3.89L11.07 4c-.3-.3-.78-.3-1.07 0-.29.29-.29.77 0 1.06l.06.06c.48.48.48 1.28 0 1.76zm7 5L16 12.94c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l1.06-1.06c.49-.49 1.28-.49 1.77 0l1.08 1.08c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-1.08-1.08c-1.08-1.07-2.82-1.07-3.89 0zm-2-6L12 8.94c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l3.06-3.06c1.07-1.07 1.07-2.82 0-3.89l-1.06-1.06c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.06 1.06c.48.49.48 1.29 0 1.77z" +}), 'CelebrationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CelebrationSharp.js b/packages/material-ui-icons/lib/esm/CelebrationSharp.js new file mode 100644 index 00000000000000..2169c83cfb4c61 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CelebrationSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m2 22 14-5-9-9zm12.53-9.47L21 6.05l1.48 1.48 1.06-1.06L21 3.93l-7.53 7.53 1.06 1.07zM10.94 6 9.47 7.47l1.06 1.06 2.54-2.54-2.54-2.53-1.06 1.07L10.94 6zm8.03 3.97-3.5 3.5 1.06 1.06L19 12.06l2.5 2.49 1.06-1.06-3.59-3.52z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.97 4.97-4.5 4.5 1.06 1.06L18.07 5l-3.53-3.53-1.06 1.06 2.49 2.44z" +}, "1")], 'CelebrationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CelebrationTwoTone.js b/packages/material-ui-icons/lib/esm/CelebrationTwoTone.js new file mode 100644 index 00000000000000..1451522c683a35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CelebrationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12.35 16.18-4.53-4.53L5.3 18.7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m2 22 14-5-9-9-5 14zm10.35-5.82L5.3 18.7l2.52-7.05 4.53 4.53zm2.18-3.65 5.59-5.59c.49-.49 1.28-.49 1.77 0l.59.59 1.06-1.06-.59-.59c-1.07-1.07-2.82-1.07-3.89 0l-5.59 5.59 1.06 1.06zM9.47 7.47l1.06 1.06.59-.59c1.07-1.07 1.07-2.82 0-3.89l-.59-.59-1.06 1.07.59.59c.48.48.48 1.28 0 1.76l-.59.59zm7.59 4.41-1.59 1.59 1.06 1.06 1.59-1.59c.49-.49 1.28-.49 1.77 0l1.61 1.61 1.06-1.06-1.61-1.61c-1.08-1.07-2.82-1.07-3.89 0zm-2-6-3.59 3.59 1.06 1.06 3.59-3.59c1.07-1.07 1.07-2.82 0-3.89l-1.59-1.59-1.06 1.06 1.59 1.59c.48.49.48 1.29 0 1.77z" +}, "1")], 'CelebrationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CellWifi.js b/packages/material-ui-icons/lib/esm/CellWifi.js new file mode 100644 index 00000000000000..b72f3a9d14228f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CellWifi.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9.98 6 22h16V5.97l-4 4.01zM20 20h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" +}), 'CellWifi'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CellWifiOutlined.js b/packages/material-ui-icons/lib/esm/CellWifiOutlined.js new file mode 100644 index 00000000000000..5f01d7f0c30f6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CellWifiOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" +}), 'CellWifiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CellWifiRounded.js b/packages/material-ui-icons/lib/esm/CellWifiRounded.js new file mode 100644 index 00000000000000..371d659359d1ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CellWifiRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.29 7.68 7.7 20.29c-.63.63-.18 1.71.71 1.71H21c.55 0 1-.45 1-1V8.39c0-.89-1.08-1.34-1.71-.71zM20 20h-2v-7.22l2-2V20zM9.61 10.68c-.28.17-.32.56-.09.79l.82.82c.39.39 1.02.39 1.41 0l.82-.82c.23-.23.18-.62-.09-.79-.87-.54-1.99-.54-2.87 0zM8.42 9.3c1.57-1.12 3.7-1.12 5.27 0 .36.26.85.22 1.16-.1.39-.39.35-1.06-.1-1.38-2.2-1.57-5.19-1.57-7.4 0-.45.32-.5.99-.1 1.38.32.32.81.36 1.17.1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.26 6.69c.34.28.83.28 1.14-.03l.12-.12c.35-.35.31-.92-.08-1.24-3.67-3.05-9.02-3.07-12.7-.06-.43.35-.47.99-.08 1.37.32.33.84.37 1.19.08 3.01-2.48 7.4-2.48 10.41 0z" +}, "1")], 'CellWifiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CellWifiSharp.js b/packages/material-ui-icons/lib/esm/CellWifiSharp.js new file mode 100644 index 00000000000000..f3ce55c16948ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CellWifiSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" +}), 'CellWifiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CellWifiTwoTone.js b/packages/material-ui-icons/lib/esm/CellWifiTwoTone.js new file mode 100644 index 00000000000000..92f6300f3f8588 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CellWifiTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93c1.07-1.06 2.79-1.06 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5c2.48-2.48 6.52-2.48 9 0l-1.28 1.29z" +}), 'CellWifiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusStrong.js b/packages/material-ui-icons/lib/esm/CenterFocusStrong.js new file mode 100644 index 00000000000000..edd96b36ed4c81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusStrong.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" +}), 'CenterFocusStrong'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusStrongOutlined.js b/packages/material-ui-icons/lib/esm/CenterFocusStrongOutlined.js new file mode 100644 index 00000000000000..e565f0bb2442f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusStrongOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" +}), 'CenterFocusStrongOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusStrongRounded.js b/packages/material-ui-icons/lib/esm/CenterFocusStrongRounded.js new file mode 100644 index 00000000000000..27cc3864d77f8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusStrongRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-8 7c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2z" +}), 'CenterFocusStrongRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusStrongSharp.js b/packages/material-ui-icons/lib/esm/CenterFocusStrongSharp.js new file mode 100644 index 00000000000000..f30f1027d61a1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusStrongSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4z" +}), 'CenterFocusStrongSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusStrongTwoTone.js b/packages/material-ui-icons/lib/esm/CenterFocusStrongTwoTone.js new file mode 100644 index 00000000000000..d0b1a84a7293af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusStrongTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 12c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.35 3 3zM3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm18 0c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" +}, "1")], 'CenterFocusStrongTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusWeak.js b/packages/material-ui-icons/lib/esm/CenterFocusWeak.js new file mode 100644 index 00000000000000..516c7b228ecf80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusWeak.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'CenterFocusWeak'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusWeakOutlined.js b/packages/material-ui-icons/lib/esm/CenterFocusWeakOutlined.js new file mode 100644 index 00000000000000..eae1687b325d4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusWeakOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7-11h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" +}), 'CenterFocusWeakOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusWeakRounded.js b/packages/material-ui-icons/lib/esm/CenterFocusWeakRounded.js new file mode 100644 index 00000000000000..34d1436c1559d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusWeakRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'CenterFocusWeakRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusWeakSharp.js b/packages/material-ui-icons/lib/esm/CenterFocusWeakSharp.js new file mode 100644 index 00000000000000..c50b249c3f1ec4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusWeakSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'CenterFocusWeakSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CenterFocusWeakTwoTone.js b/packages/material-ui-icons/lib/esm/CenterFocusWeakTwoTone.js new file mode 100644 index 00000000000000..15a2b34950a120 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CenterFocusWeakTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm9 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm9-9c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z" +}, "1")], 'CenterFocusWeakTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Chair.js b/packages/material-ui-icons/lib/esm/Chair.js new file mode 100644 index 00000000000000..4fb1b5afc8afaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Chair.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 11v2h10v-2c0-1.86 1.28-3.41 3-3.86V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v1.14c1.72.45 3 2 3 3.86z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 9c-1.1 0-2 .9-2 2v4H5v-4c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.1-.9-2-2-2z" +}, "1")], 'Chair'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairAlt.js b/packages/material-ui-icons/lib/esm/ChairAlt.js new file mode 100644 index 00000000000000..b379464787c769 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v7h2v-3h10v3h2v-7c0-1.1-.9-2-2-2h-1v-2h1zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" +}), 'ChairAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairAltOutlined.js b/packages/material-ui-icons/lib/esm/ChairAltOutlined.js new file mode 100644 index 00000000000000..d142ce5563967a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v7h2v-3h10v3h2v-7c0-1.1-.9-2-2-2h-1v-2h1zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" +}), 'ChairAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairAltRounded.js b/packages/material-ui-icons/lib/esm/ChairAltRounded.js new file mode 100644 index 00000000000000..45781fe0f66dce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v6c0 .55.45 1 1 1s1-.45 1-1v-2h10v2c0 .55.45 1 1 1s1-.45 1-1v-6c0-1.1-.9-2-2-2h-1v-2h1zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" +}), 'ChairAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairAltSharp.js b/packages/material-ui-icons/lib/esm/ChairAltSharp.js new file mode 100644 index 00000000000000..dd02954d98ab74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 10h3V3H5v7h3v2H5v9h2v-3h10v3h2v-9h-3v-2zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" +}), 'ChairAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairAltTwoTone.js b/packages/material-ui-icons/lib/esm/ChairAltTwoTone.js new file mode 100644 index 00000000000000..17056cac39b887 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 14h10v2H7zm0-9h10v3H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v3c0 1.1.9 2 2 2h1v2H7c-1.1 0-2 .9-2 2v7h2v-3h10v3h2v-7c0-1.1-.9-2-2-2h-1v-2h1zm0 4v2H7v-2h10zm-7-2v-2h4v2h-4zM7 8V5h10v3H7z" +}, "1")], 'ChairAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairOutlined.js b/packages/material-ui-icons/lib/esm/ChairOutlined.js new file mode 100644 index 00000000000000..684f307b13a03f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM6 6c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H7v-2c0-.88-.39-1.67-1-2.22V6zm15 10c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h14v-4c0-.55.45-1 1-1s1 .45 1 1v5z" +}), 'ChairOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairRounded.js b/packages/material-ui-icons/lib/esm/ChairRounded.js new file mode 100644 index 00000000000000..5332784cb1bdac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 9c-1.1 0-2 .9-2 2v4H5v-4c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 11v2h10v-2c0-1.86 1.28-3.41 3-3.86V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v1.14c1.72.45 3 2 3 3.86z" +}, "1")], 'ChairRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairSharp.js b/packages/material-ui-icons/lib/esm/ChairSharp.js new file mode 100644 index 00000000000000..fb8efacbc5ebeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 13h10V7h3V3H4v4h3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23 9h-4v6H5V9H1v10h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1h3V9z" +}, "1")], 'ChairSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChairTwoTone.js b/packages/material-ui-icons/lib/esm/ChairTwoTone.js new file mode 100644 index 00000000000000..e2a19b74a3d3af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChairTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 13h10v-2c0-.88.39-1.67 1-2.22V6c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v2.78c.61.55 1 1.34 1 2.22v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 10c-.55 0-1 .45-1 1v4H5v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 8V6c0-1.65-1.35-3-3-3H7C5.35 3 4 4.35 4 6v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM6 6c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H7v-2c0-.88-.39-1.67-1-2.22V6zm15 10c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h14v-4c0-.55.45-1 1-1s1 .45 1 1v5z" +}, "2")], 'ChairTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Chalet.js b/packages/material-ui-icons/lib/esm/Chalet.js new file mode 100644 index 00000000000000..6de6326b24a727 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Chalet.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 7.5 7.5 7.5-1.41 1.41L15 15.33V20h-4v-5H9v5H5v-4.67l-1.09 1.09L2.5 15 10 7.5zm12-1h-1.19l.75-.75-.71-.71-1.46 1.46h-.89v-.89l1.45-1.45-.71-.71-.74.74V3h-1v1.19l-.75-.75-.71.71 1.45 1.45v.9h-.89l-1.45-1.45-.71.71.75.75H14v1h1.19l-.75.75.71.71 1.45-1.45h.89v.89l-1.45 1.45.71.71.75-.75V11h1V9.81l.75.75.71-.71-1.46-1.46V7.5h.89l1.45 1.45.71-.71-.74-.74H22v-1z" +}), 'Chalet'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChaletOutlined.js b/packages/material-ui-icons/lib/esm/ChaletOutlined.js new file mode 100644 index 00000000000000..8aa78a53b8ae21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChaletOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 15 10 7.5 2.5 15l1.41 1.41L5 15.33V20h10v-4.67l1.09 1.09L17.5 15zM13 18h-2v-3H9v3H7v-4.67l3-3 3 3V18zm9-10.5h-1.19l.75.75-.71.71-1.46-1.46h-.89v.89l1.45 1.45-.71.71-.74-.74V11h-1V9.81l-.75.75-.71-.71 1.45-1.45v-.9h-.89l-1.45 1.45-.71-.71.75-.75H14v-1h1.19l-.75-.75.71-.71 1.45 1.45h.89v-.87l-1.45-1.45.71-.71.75.75V3h1v1.19l.75-.75.71.71-1.46 1.46v.89h.89l1.45-1.45.71.71-.74.74H22v1z" +}), 'ChaletOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChaletRounded.js b/packages/material-ui-icons/lib/esm/ChaletRounded.js new file mode 100644 index 00000000000000..a10829628d5a5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChaletRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 15c-.55 0-1 .45-1 1v4H6c-.55 0-1-.45-1-1v-3.67l-.38.38c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L9.3 8.21c.39-.39 1.02-.39 1.41 0l6.09 6.09c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-.39-.38V19c0 .55-.45 1-1 1h-3v-4c0-.55-.45-1-1-1zm7.5-7.5v.89l-1.08 1.08c-.18.18-.21.48-.05.69.19.23.53.24.74.04l.39-.39v.69c0 .28.22.5.5.5s.5-.22.5-.5v-.69l.39.39c.21.21.55.19.74-.04.17-.2.14-.5-.05-.69L18.5 8.39V7.5h.89l1.08 1.08c.18.18.48.21.69.05.23-.19.24-.53.04-.74l-.39-.39h.69c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-.69l.39-.39c.21-.21.19-.55-.04-.74-.2-.17-.5-.14-.69.05L19.39 6.5h-.89v-.89l1.08-1.08c.18-.18.21-.48.05-.69-.19-.23-.53-.24-.74-.04l-.39.39V3.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.69l-.39-.39c-.21-.21-.55-.19-.74.04-.17.2-.14.5.05.69l1.08 1.08v.89h-.89l-1.08-1.08c-.18-.18-.48-.21-.69-.05-.23.19-.24.53-.04.74l.39.39h-.69c-.28 0-.5.22-.5.5s.22.5.5.5h.69l-.39.39c-.21.21-.19.55.04.74.2.17.5.14.69-.05l1.08-1.08h.89z" +}), 'ChaletRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChaletSharp.js b/packages/material-ui-icons/lib/esm/ChaletSharp.js new file mode 100644 index 00000000000000..44247e30f7fd7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChaletSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 7.5 7.5 7.5-1.41 1.41L15 15.33V20h-4v-5H9v5H5v-4.67l-1.09 1.09L2.5 15 10 7.5zm12-1h-1.19l.75-.75-.71-.71-1.46 1.46h-.89v-.89l1.45-1.45-.71-.71-.74.74V3h-1v1.19l-.75-.75-.71.71 1.45 1.45v.9h-.89l-1.45-1.45-.71.71.75.75H14v1h1.19l-.75.75.71.71 1.45-1.45h.89v.89l-1.45 1.45.71.71.75-.75V11h1V9.81l.75.75.71-.71-1.46-1.46V7.5h.89l1.45 1.45.71-.71-.74-.74H22v-1z" +}), 'ChaletSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChaletTwoTone.js b/packages/material-ui-icons/lib/esm/ChaletTwoTone.js new file mode 100644 index 00000000000000..e86ee5eca71d7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChaletTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 18h-2v-3H9v3H7v-4.67l3-3 3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 15 10 7.5 2.5 15l1.41 1.41L5 15.33V20h10v-4.67l1.09 1.09L17.5 15zM13 18h-2v-3H9v3H7v-4.67l3-3 3 3V18zm9-10.5h-1.19l.75.75-.71.71-1.46-1.46h-.89v.89l1.45 1.45-.71.71-.74-.74V11h-1V9.81l-.75.75-.71-.71 1.45-1.45v-.9h-.89l-1.45 1.45-.71-.71.75-.75H14v-1h1.19l-.75-.75.71-.71 1.45 1.45h.89v-.87l-1.45-1.45.71-.71.75.75V3h1v1.19l.75-.75.71.71-1.46 1.46v.89h.89l1.45-1.45.71.71-.74.74H22v1z" +}, "1")], 'ChaletTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeCircle.js b/packages/material-ui-icons/lib/esm/ChangeCircle.js new file mode 100644 index 00000000000000..f2eaefd43e00b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 17v-2.01H12c-1.28 0-2.56-.49-3.54-1.46-1.71-1.71-1.92-4.35-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.62 1.03 2.54 1.01v-2.14l2.83 2.83L12.06 19zm4.11-4.24-1.1-1.1c.71-1.33.53-3.01-.59-4.13C13.79 8.84 12.9 8.5 12 8.5h-.06v2.15L9.11 7.83 11.94 5v2.02c1.3-.02 2.61.45 3.6 1.45 1.7 1.7 1.91 4.35.63 6.29z" +}), 'ChangeCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeCircleOutlined.js b/packages/material-ui-icons/lib/esm/ChangeCircleOutlined.js new file mode 100644 index 00000000000000..b108b16075cc1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.17-5.24-1.1-1.1c.71-1.33.53-3.01-.59-4.13C13.79 8.84 12.9 8.5 12 8.5c-.03 0-.06.01-.09.01L13 9.6l-1.06 1.06-2.83-2.83L11.94 5 13 6.06l-.96.96c1.27.01 2.53.48 3.5 1.44 1.7 1.71 1.91 4.36.63 6.3zm-1.28 1.41L12.06 19 11 17.94l.95-.95c-1.26-.01-2.52-.5-3.48-1.46-1.71-1.71-1.92-4.35-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.63 1.04 2.56 1.01L11 14.4l1.06-1.06 2.83 2.83z" +}), 'ChangeCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeCircleRounded.js b/packages/material-ui-icons/lib/esm/ChangeCircleRounded.js new file mode 100644 index 00000000000000..dcd5025206c941 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.91 16.15c-.31.31-.85.09-.85-.35V17H12c-1.28 0-2.56-.49-3.54-1.46-1.43-1.43-1.81-3.52-1.14-5.3.19-.51.86-.64 1.24-.25.22.22.27.54.17.82-.46 1.24-.2 2.68.8 3.68.7.7 1.62 1.03 2.54 1.01v-.94c0-.45.54-.67.85-.35l1.62 1.62c.2.2.2.51 0 .71l-1.63 1.61zm2.53-4.13c-.22-.22-.27-.54-.17-.82.46-1.24.2-2.68-.8-3.68-.7-.7-1.62-1.04-2.53-1.02v.94c0 .45-.54.67-.85.35L9.46 8.18c-.2-.2-.2-.51 0-.71l1.62-1.62c.31-.31.85-.09.85.35v.81c1.3-.02 2.61.45 3.6 1.45 1.43 1.43 1.81 3.52 1.14 5.3-.19.52-.85.65-1.23.26z" +}), 'ChangeCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeCircleSharp.js b/packages/material-ui-icons/lib/esm/ChangeCircleSharp.js new file mode 100644 index 00000000000000..40bb2531ef0765 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 17v-2.01H12c-1.28 0-2.56-.49-3.54-1.46-1.71-1.71-1.92-4.35-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.62 1.03 2.54 1.01v-2.14l2.83 2.83L12.06 19zm4.11-4.24-1.1-1.1c.71-1.33.53-3.01-.59-4.13C13.79 8.84 12.9 8.5 12 8.5h-.06v2.15L9.11 7.83 11.94 5v2.02c1.3-.02 2.61.45 3.6 1.45 1.7 1.7 1.91 4.35.63 6.29z" +}), 'ChangeCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeCircleTwoTone.js b/packages/material-ui-icons/lib/esm/ChangeCircleTwoTone.js new file mode 100644 index 00000000000000..62217b3e73e45b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m.06 9.34v2.14c-.92.02-1.84-.31-2.54-1.01-1.12-1.12-1.3-2.8-.59-4.13l-1.1-1.1c-1.28 1.94-1.07 4.59.64 6.29.97.98 2.25 1.47 3.53 1.47h.06v2l2.83-2.83-2.83-2.83zm3.48-4.88c-.99-.99-2.3-1.46-3.6-1.45V5L9.11 7.83l2.83 2.83V8.51H12c.9 0 1.79.34 2.48 1.02 1.12 1.12 1.3 2.8.59 4.13l1.1 1.1c1.28-1.94 1.07-4.59-.63-6.3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 11.34v2.14c-.92.02-1.84-.31-2.54-1.01-1.12-1.12-1.3-2.8-.59-4.13l-1.1-1.1c-1.28 1.94-1.07 4.59.64 6.29.97.98 2.25 1.47 3.53 1.47h.06v2l2.83-2.83-2.83-2.83zm3.48-4.88c-.99-.99-2.3-1.46-3.6-1.45V5L9.11 7.83l2.83 2.83V8.51H12c.9 0 1.79.34 2.48 1.02 1.12 1.12 1.3 2.8.59 4.13l1.1 1.1c1.28-1.94 1.07-4.59-.63-6.3z" +}, "1")], 'ChangeCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeHistory.js b/packages/material-ui-icons/lib/esm/ChangeHistory.js new file mode 100644 index 00000000000000..80b97acfd208a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeHistory.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7.77 18.39 18H5.61L12 7.77M12 4 2 20h20L12 4z" +}), 'ChangeHistory'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeHistoryOutlined.js b/packages/material-ui-icons/lib/esm/ChangeHistoryOutlined.js new file mode 100644 index 00000000000000..441a56b90cb824 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeHistoryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7.77 18.39 18H5.61L12 7.77M12 4 2 20h20L12 4z" +}), 'ChangeHistoryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeHistoryRounded.js b/packages/material-ui-icons/lib/esm/ChangeHistoryRounded.js new file mode 100644 index 00000000000000..5d9453b78bd598 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeHistoryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7.77 18.39 18H5.61L12 7.77m-.85-2.41-8.2 13.11c-.41.67.07 1.53.85 1.53h16.4c.79 0 1.26-.86.85-1.53l-8.2-13.11c-.39-.63-1.31-.63-1.7 0z" +}), 'ChangeHistoryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeHistorySharp.js b/packages/material-ui-icons/lib/esm/ChangeHistorySharp.js new file mode 100644 index 00000000000000..1a7f45db52e028 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeHistorySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7.77 18.39 18H5.61L12 7.77M12 4 2 20h20L12 4z" +}), 'ChangeHistorySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChangeHistoryTwoTone.js b/packages/material-ui-icons/lib/esm/ChangeHistoryTwoTone.js new file mode 100644 index 00000000000000..33ee6709cc8e56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChangeHistoryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 7.77 5.61 18h12.78z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4 2 20h20L12 4zm0 3.77L18.39 18H5.61L12 7.77z" +}, "1")], 'ChangeHistoryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChargingStation.js b/packages/material-ui-icons/lib/esm/ChargingStation.js new file mode 100644 index 00000000000000..7a5b35a9530160 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChargingStation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.5 11-3 6v-4h-2l3-6v4h2zM7 1h10c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2zm0 5v12h10V6H7z" +}), 'ChargingStation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChargingStationOutlined.js b/packages/material-ui-icons/lib/esm/ChargingStationOutlined.js new file mode 100644 index 00000000000000..16f327354f94b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChargingStationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.5 11-3 6v-4h-2l3-6v4h2zM17 3H7v1h10V3m0 17H7v1h10v-1m0-19c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10zM7 18h10V6H7v12z" +}), 'ChargingStationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChargingStationRounded.js b/packages/material-ui-icons/lib/esm/ChargingStationRounded.js new file mode 100644 index 00000000000000..e444a969702ada --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChargingStationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12zm-4.5-7V9.12c0-.53-.71-.7-.95-.22l-1.69 3.38c-.16.33.08.72.45.72h1.19v1.88c0 .53.71.7.95.22l1.69-3.38c.16-.33-.08-.72-.45-.72H12.5z" +}), 'ChargingStationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChargingStationSharp.js b/packages/material-ui-icons/lib/esm/ChargingStationSharp.js new file mode 100644 index 00000000000000..218d1f56967137 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChargingStationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.5 11-3 6v-4h-2l3-6v4h2zM5 1h14v22H5V1zm2 5v12h10V6H7z" +}), 'ChargingStationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChargingStationTwoTone.js b/packages/material-ui-icons/lib/esm/ChargingStationTwoTone.js new file mode 100644 index 00000000000000..a8c45753026510 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChargingStationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 3v1H7V3h10m0 17H7v1h10v-1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m14.5 11-3 6v-4h-2l3-6v4h2zM17 3H7v1h10V3m0 17H7v1h10v-1m0-19c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10zM7 18h10V6H7v12z" +}, "1")], 'ChargingStationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Chat.js b/packages/material-ui-icons/lib/esm/Chat.js new file mode 100644 index 00000000000000..d7acfead698f08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Chat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z" +}), 'Chat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubble.js b/packages/material-ui-icons/lib/esm/ChatBubble.js new file mode 100644 index 00000000000000..17104b2bca5d5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubble.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'ChatBubble'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleOutline.js b/packages/material-ui-icons/lib/esm/ChatBubbleOutline.js new file mode 100644 index 00000000000000..d639733c9ebc16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" +}), 'ChatBubbleOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleOutlineOutlined.js b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineOutlined.js new file mode 100644 index 00000000000000..a88eaf56a40675 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" +}), 'ChatBubbleOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleOutlineRounded.js b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineRounded.js new file mode 100644 index 00000000000000..30df9ca90d7e12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4v12H5.17L4 17.17V4h16m0-2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'ChatBubbleOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleOutlineSharp.js b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineSharp.js new file mode 100644 index 00000000000000..b10ff7b19abd6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zm-2 14H6l-2 2V4h16v12z" +}), 'ChatBubbleOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineTwoTone.js new file mode 100644 index 00000000000000..6ad2576fd94c05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" +}), 'ChatBubbleOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleOutlined.js b/packages/material-ui-icons/lib/esm/ChatBubbleOutlined.js new file mode 100644 index 00000000000000..f73cc704357b46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'ChatBubbleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleRounded.js b/packages/material-ui-icons/lib/esm/ChatBubbleRounded.js new file mode 100644 index 00000000000000..cd9cda2d3ded2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'ChatBubbleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleSharp.js b/packages/material-ui-icons/lib/esm/ChatBubbleSharp.js new file mode 100644 index 00000000000000..568c3dbacc6fd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2z" +}), 'ChatBubbleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatBubbleTwoTone.js b/packages/material-ui-icons/lib/esm/ChatBubbleTwoTone.js new file mode 100644 index 00000000000000..90841dd9f750a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatBubbleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4 18 2-2h14V4H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" +}, "1")], 'ChatBubbleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatOutlined.js b/packages/material-ui-icons/lib/esm/ChatOutlined.js new file mode 100644 index 00000000000000..f29212d3a18670 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h8v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z" +}), 'ChatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatRounded.js b/packages/material-ui-icons/lib/esm/ChatRounded.js new file mode 100644 index 00000000000000..cdbc8510752d90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 9h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1zm6 5H7c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm4-6H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'ChatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatSharp.js b/packages/material-ui-icons/lib/esm/ChatSharp.js new file mode 100644 index 00000000000000..ac46c2169dc5d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2.01L2 22l4-4h16V2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z" +}), 'ChatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChatTwoTone.js b/packages/material-ui-icons/lib/esm/ChatTwoTone.js new file mode 100644 index 00000000000000..a9dbd73d59d4bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChatTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4H4v13.17L5.17 16H20V4zm-6 10H6v-2h8v2zm4-3H6V9h12v2zm0-3H6V6h12v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h8v2H6zm0-3h12v2H6zm0-3h12v2H6z" +}, "1")], 'ChatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Check.js b/packages/material-ui-icons/lib/esm/Check.js new file mode 100644 index 00000000000000..3fbc8245c96397 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Check.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" +}), 'Check'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBox.js b/packages/material-ui-icons/lib/esm/CheckBox.js new file mode 100644 index 00000000000000..2a586df7b63489 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" +}), 'CheckBox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlank.js b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlank.js new file mode 100644 index 00000000000000..ec4eb80b73d65e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlank.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'CheckBoxOutlineBlank'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankOutlined.js b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankOutlined.js new file mode 100644 index 00000000000000..c1ab883173635b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'CheckBoxOutlineBlankOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankRounded.js b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankRounded.js new file mode 100644 index 00000000000000..031f1b481ef9a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'CheckBoxOutlineBlankRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankSharp.js b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankSharp.js new file mode 100644 index 00000000000000..ea728d5df222c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m2-2H3v18h18V3z" +}), 'CheckBoxOutlineBlankSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankTwoTone.js b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankTwoTone.js new file mode 100644 index 00000000000000..481c2b8fa2b7db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxOutlineBlankTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'CheckBoxOutlineBlankTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxOutlined.js b/packages/material-ui-icons/lib/esm/CheckBoxOutlined.js new file mode 100644 index 00000000000000..06c4096efe819c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z" +}), 'CheckBoxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxRounded.js b/packages/material-ui-icons/lib/esm/CheckBoxRounded.js new file mode 100644 index 00000000000000..0a1786c007bf4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.29 13.29c-.39.39-1.02.39-1.41 0L5.71 12.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.58 7.59z" +}), 'CheckBoxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxSharp.js b/packages/material-ui-icons/lib/esm/CheckBoxSharp.js new file mode 100644 index 00000000000000..30e530c712d386 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM10 17l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" +}), 'CheckBoxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckBoxTwoTone.js b/packages/material-ui-icons/lib/esm/CheckBoxTwoTone.js new file mode 100644 index 00000000000000..e949ce23ddb663 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckBoxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm2.41-7.4 2.58 2.58 6.59-6.59L17.99 9l-8 8L6 13.01l1.41-1.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z" +}, "1")], 'CheckBoxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircle.js b/packages/material-ui-icons/lib/esm/CheckCircle.js new file mode 100644 index 00000000000000..655860f141d2dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" +}), 'CheckCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleOutline.js b/packages/material-ui-icons/lib/esm/CheckCircleOutline.js new file mode 100644 index 00000000000000..b5eca02bcda1d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 7.58 10 14.17l-3.59-3.58L5 12l5 5 8-8zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'CheckCircleOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleOutlineOutlined.js b/packages/material-ui-icons/lib/esm/CheckCircleOutlineOutlined.js new file mode 100644 index 00000000000000..05f7011cd01459 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" +}), 'CheckCircleOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleOutlineRounded.js b/packages/material-ui-icons/lib/esm/CheckCircleOutlineRounded.js new file mode 100644 index 00000000000000..99c24d3768671b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.88-11.71L10 14.17l-1.88-1.88a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0z" +}), 'CheckCircleOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleOutlineSharp.js b/packages/material-ui-icons/lib/esm/CheckCircleOutlineSharp.js new file mode 100644 index 00000000000000..965faf075dbc84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" +}), 'CheckCircleOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/CheckCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..e36739519b94b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" +}), 'CheckCircleOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleOutlined.js b/packages/material-ui-icons/lib/esm/CheckCircleOutlined.js new file mode 100644 index 00000000000000..57380425abf979 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" +}), 'CheckCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleRounded.js b/packages/material-ui-icons/lib/esm/CheckCircleRounded.js new file mode 100644 index 00000000000000..0adf1c5bc3aa46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.29 16.29 5.7 12.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.59 7.59c-.38.39-1.02.39-1.41 0z" +}), 'CheckCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleSharp.js b/packages/material-ui-icons/lib/esm/CheckCircleSharp.js new file mode 100644 index 00000000000000..746771cc1f74cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" +}), 'CheckCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckCircleTwoTone.js b/packages/material-ui-icons/lib/esm/CheckCircleTwoTone.js new file mode 100644 index 00000000000000..3603b2be4d3018 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-2 13-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" +}, "1")], 'CheckCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckOutlined.js b/packages/material-ui-icons/lib/esm/CheckOutlined.js new file mode 100644 index 00000000000000..8b6cfedd7a9806 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" +}), 'CheckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckRounded.js b/packages/material-ui-icons/lib/esm/CheckRounded.js new file mode 100644 index 00000000000000..b6cd214eea1cab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.17 5.53 12.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L9 16.17z" +}), 'CheckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckSharp.js b/packages/material-ui-icons/lib/esm/CheckSharp.js new file mode 100644 index 00000000000000..15955e8e4cfabb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" +}), 'CheckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckTwoTone.js b/packages/material-ui-icons/lib/esm/CheckTwoTone.js new file mode 100644 index 00000000000000..5ae2c2f2a891f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z" +}), 'CheckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Checkroom.js b/packages/material-ui-icons/lib/esm/Checkroom.js new file mode 100644 index 00000000000000..48e74cbb346da3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Checkroom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" +}), 'Checkroom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckroomOutlined.js b/packages/material-ui-icons/lib/esm/CheckroomOutlined.js new file mode 100644 index 00000000000000..c3faf0a6eca45b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckroomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" +}), 'CheckroomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckroomRounded.js b/packages/material-ui-icons/lib/esm/CheckroomRounded.js new file mode 100644 index 00000000000000..3e0702514e718a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckroomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7-1.76-.4-3.37.53-4.02 1.98-.3.67.18 1.43.91 1.43.39 0 .75-.22.9-.57.23-.55.76-.93 1.39-.93.83 0 1.5.67 1.5 1.5 0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" +}), 'CheckroomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckroomSharp.js b/packages/material-ui-icons/lib/esm/CheckroomSharp.js new file mode 100644 index 00000000000000..0b674f44c4a0fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckroomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5H11v2.75L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" +}), 'CheckroomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CheckroomTwoTone.js b/packages/material-ui-icons/lib/esm/CheckroomTwoTone.js new file mode 100644 index 00000000000000..db815b86832636 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CheckroomTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.6 18.2 13 11.75v-.91c1.65-.49 2.8-2.17 2.43-4.05-.26-1.31-1.3-2.4-2.61-2.7C10.54 3.57 8.5 5.3 8.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5-.54-.01-.97.45-.97.99v1.76L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" +}), 'CheckroomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronLeft.js b/packages/material-ui-icons/lib/esm/ChevronLeft.js new file mode 100644 index 00000000000000..3948cdf79e0a2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z" +}), 'ChevronLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronLeftOutlined.js b/packages/material-ui-icons/lib/esm/ChevronLeftOutlined.js new file mode 100644 index 00000000000000..033d7ede21da28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" +}), 'ChevronLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronLeftRounded.js b/packages/material-ui-icons/lib/esm/ChevronLeftRounded.js new file mode 100644 index 00000000000000..723f42380e35d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.71 6.71a.9959.9959 0 0 0-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41z" +}), 'ChevronLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronLeftSharp.js b/packages/material-ui-icons/lib/esm/ChevronLeftSharp.js new file mode 100644 index 00000000000000..142622382fe15c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" +}), 'ChevronLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronLeftTwoTone.js b/packages/material-ui-icons/lib/esm/ChevronLeftTwoTone.js new file mode 100644 index 00000000000000..e8f68a9fd6bd0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z" +}), 'ChevronLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronRight.js b/packages/material-ui-icons/lib/esm/ChevronRight.js new file mode 100644 index 00000000000000..e4fd7830928dc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" +}), 'ChevronRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronRightOutlined.js b/packages/material-ui-icons/lib/esm/ChevronRightOutlined.js new file mode 100644 index 00000000000000..29a682061c2b1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" +}), 'ChevronRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronRightRounded.js b/packages/material-ui-icons/lib/esm/ChevronRightRounded.js new file mode 100644 index 00000000000000..e8421492478823 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.29 6.71c-.39.39-.39 1.02 0 1.41L13.17 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z" +}), 'ChevronRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronRightSharp.js b/packages/material-ui-icons/lib/esm/ChevronRightSharp.js new file mode 100644 index 00000000000000..51f7cc60922153 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" +}), 'ChevronRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChevronRightTwoTone.js b/packages/material-ui-icons/lib/esm/ChevronRightTwoTone.js new file mode 100644 index 00000000000000..d07e226a0a1722 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChevronRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z" +}), 'ChevronRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildCare.js b/packages/material-ui-icons/lib/esm/ChildCare.js new file mode 100644 index 00000000000000..d115ae20962f02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildCare.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "10.5", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "10.5", + r: "1.25" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22.94 12.66c.04-.21.06-.43.06-.66s-.02-.45-.06-.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66s.02.45.06.66c.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zM7.5 14c.76 1.77 2.49 3 4.5 3s3.74-1.23 4.5-3h-9z" +}, "2")], 'ChildCare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildCareOutlined.js b/packages/material-ui-icons/lib/esm/ChildCareOutlined.js new file mode 100644 index 00000000000000..da366ef7be3fab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildCareOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "10.5", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "10.5", + r: "1.25" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22.94 11.34c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zm-7 3c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3z" +}, "2")], 'ChildCareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildCareRounded.js b/packages/material-ui-icons/lib/esm/ChildCareRounded.js new file mode 100644 index 00000000000000..8d1e0cca6ed50a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildCareRounded.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "10.5", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "10.5", + r: "1.25" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16.1 14H7.9c-.19 0-.32.2-.23.37C8.5 15.94 10.13 17 12 17s3.5-1.06 4.33-2.63c.08-.17-.05-.37-.23-.37zm6.84-2.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" +}, "2")], 'ChildCareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildCareSharp.js b/packages/material-ui-icons/lib/esm/ChildCareSharp.js new file mode 100644 index 00000000000000..24f36e506b19cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildCareSharp.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "10.5", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "10.5", + r: "1.25" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" +}, "2")], 'ChildCareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildCareTwoTone.js b/packages/material-ui-icons/lib/esm/ChildCareTwoTone.js new file mode 100644 index 00000000000000..33ecd1a60b7af5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildCareTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 10c-.1 0-.19.02-.29.03-.2-.67-.49-1.29-.86-1.86C16.6 6.26 14.45 5 12 5S7.4 6.26 6.15 8.17c-.37.57-.66 1.19-.86 1.86-.1-.01-.19-.03-.29-.03-1.1 0-2 .9-2 2s.9 2 2 2c.1 0 .19-.02.29-.03.2.67.49 1.29.86 1.86C7.4 17.74 9.55 19 12 19s4.6-1.26 5.85-3.17c.37-.57.66-1.19.86-1.86.1.01.19.03.29.03 1.1 0 2-.9 2-2s-.9-2-2-2zm-4.5-.75c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zm-5 0c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM12 17c-2.01 0-3.74-1.23-4.5-3h9c-.76 1.77-2.49 3-4.5 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "10.5", + r: "1.25" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "10.5", + r: "1.25" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" +}, "3")], 'ChildCareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildFriendly.js b/packages/material-ui-icons/lib/esm/ChildFriendly.js new file mode 100644 index 00000000000000..fbc78c587340a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildFriendly.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" +}), 'ChildFriendly'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildFriendlyOutlined.js b/packages/material-ui-icons/lib/esm/ChildFriendlyOutlined.js new file mode 100644 index 00000000000000..a6a5119e6f64d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildFriendlyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z" +}), 'ChildFriendlyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildFriendlyRounded.js b/packages/material-ui-icons/lib/esm/ChildFriendlyRounded.js new file mode 100644 index 00000000000000..d6f3a193d86fc7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildFriendlyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3.08V10h8c0-4.03-2.98-7.37-6.86-7.92-.6-.09-1.14.39-1.14 1zm6.32 12.81C20.37 14.54 21 12.84 21 11H6.44l-.68-1.43C5.6 9.22 5.24 9 4.86 9H3c-.55 0-1 .45-1 1s.45 1 1 1h1.22s1.89 4.07 2.12 4.42c-1.33.71-2.14 2.27-1.74 3.94.3 1.26 1.34 2.27 2.6 2.55 2.1.46 3.98-.96 4.25-2.91h2.08c.27 1.94 2.14 3.36 4.22 2.92 1.27-.27 2.31-1.27 2.63-2.53.35-1.39-.14-2.68-1.06-3.5zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" +}), 'ChildFriendlyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildFriendlySharp.js b/packages/material-ui-icons/lib/esm/ChildFriendlySharp.js new file mode 100644 index 00000000000000..37181e9f290c51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildFriendlySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" +}), 'ChildFriendlySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChildFriendlyTwoTone.js b/packages/material-ui-icons/lib/esm/ChildFriendlyTwoTone.js new file mode 100644 index 00000000000000..95c963654aee50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChildFriendlyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 4.34V8h3.66C18.05 6.3 16.7 4.95 15 4.34zM8.04 14.36l.44.67c1.19.16 2.19.92 2.68 1.97h2.68c.56-1.18 1.77-2 3.16-2 .15 0 .31.01.46.03l.29-.37c.4-.51.7-1.07.92-1.66H7.37c.32.67.57 1.19.67 1.36z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z" +}, "1")], 'ChildFriendlyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChromeReaderMode.js b/packages/material-ui-icons/lib/esm/ChromeReaderMode.js new file mode 100644 index 00000000000000..657fe60af6d0b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChromeReaderMode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 12h7v1.5h-7zm0-2.5h7V11h-7zm0 5h7V16h-7zM21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15h-9V6h9v13z" +}), 'ChromeReaderMode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChromeReaderModeOutlined.js b/packages/material-ui-icons/lib/esm/ChromeReaderModeOutlined.js new file mode 100644 index 00000000000000..be5e3e3aa8faf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChromeReaderModeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 19V6h8v13H3zm18 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z" +}), 'ChromeReaderModeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChromeReaderModeRounded.js b/packages/material-ui-icons/lib/esm/ChromeReaderModeRounded.js new file mode 100644 index 00000000000000..4349e91b8fd009 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChromeReaderModeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14c0 .55-.45 1-1 1h-8V6h8c.55 0 1 .45 1 1v11zm-1.75-8.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zm0 2.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zm0 2.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75z" +}), 'ChromeReaderModeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChromeReaderModeSharp.js b/packages/material-ui-icons/lib/esm/ChromeReaderModeSharp.js new file mode 100644 index 00000000000000..a6167bbb74db3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChromeReaderModeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 12h7v1.5h-7V12zm0-2.5h7V11h-7V9.5zm0 5h7V16h-7v-1.5zM23 4H1v17h22V4zm-2 15h-9V6h9v13z" +}), 'ChromeReaderModeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ChromeReaderModeTwoTone.js b/packages/material-ui-icons/lib/esm/ChromeReaderModeTwoTone.js new file mode 100644 index 00000000000000..8f7f967b4d4f99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ChromeReaderModeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 6h8v13H3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM11 19H3V6h8v13zm10 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z" +}, "1")], 'ChromeReaderModeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Circle.js b/packages/material-ui-icons/lib/esm/Circle.js new file mode 100644 index 00000000000000..7c3de6c35ad681 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Circle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" +}), 'Circle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleNotifications.js b/packages/material-ui-icons/lib/esm/CircleNotifications.js new file mode 100644 index 00000000000000..7c94e99d0ff940 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleNotifications.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-1l1-1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14l1 1v1z" +}), 'CircleNotifications'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleNotificationsOutlined.js b/packages/material-ui-icons/lib/esm/CircleNotificationsOutlined.js new file mode 100644 index 00000000000000..37c9f1057501a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleNotificationsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 18.5c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4-8.61c0-2.11-1.03-3.92-3-4.39v-.5c0-.57-.43-1-1-1s-1 .43-1 1V7c-1.97.47-3 2.27-3 4.39V14H7v2h10v-2h-1v-2.61zM14 14h-4v-3c0-1.1.9-2 2-2s2 .9 2 2v3z" +}), 'CircleNotificationsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleNotificationsRounded.js b/packages/material-ui-icons/lib/esm/CircleNotificationsRounded.js new file mode 100644 index 00000000000000..e094c9b1f07b2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleNotificationsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm4-2.5H8c-.55 0-1-.45-1-1s.45-1 1-1v-3c0-1.86 1.28-3.41 3-3.86V6.5c0-.55.45-1 1-1s1 .45 1 1v.64c1.72.45 3 2 3 3.86v3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'CircleNotificationsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleNotificationsSharp.js b/packages/material-ui-icons/lib/esm/CircleNotificationsSharp.js new file mode 100644 index 00000000000000..fb865bff81ff62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleNotificationsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-2h1v-3c0-1.86 1.28-3.41 3-3.86V5.5h2v1.64c1.72.45 3 2 3 3.86v3h1v2z" +}), 'CircleNotificationsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleNotificationsTwoTone.js b/packages/material-ui-icons/lib/esm/CircleNotificationsTwoTone.js new file mode 100644 index 00000000000000..0e4ac79aab23e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleNotificationsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 14.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-2h1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14h1v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 18.5c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4-8.61c0-2.11-1.03-3.92-3-4.39v-.5c0-.57-.43-1-1-1s-1 .43-1 1V7c-1.97.47-3 2.27-3 4.39V14H7v2h10v-2h-1v-2.61zM14 14h-4v-3c0-1.1.9-2 2-2s2 .9 2 2v3z" +}, "1")], 'CircleNotificationsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleOutlined.js b/packages/material-ui-icons/lib/esm/CircleOutlined.js new file mode 100644 index 00000000000000..6404f597b0a260 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'CircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleRounded.js b/packages/material-ui-icons/lib/esm/CircleRounded.js new file mode 100644 index 00000000000000..f0188fed1cbcf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" +}), 'CircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleSharp.js b/packages/material-ui-icons/lib/esm/CircleSharp.js new file mode 100644 index 00000000000000..47df11de0d55e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" +}), 'CircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CircleTwoTone.js b/packages/material-ui-icons/lib/esm/CircleTwoTone.js new file mode 100644 index 00000000000000..f5877425a4033c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CircleTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "8", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "1")], 'CircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Class.js b/packages/material-ui-icons/lib/esm/Class.js new file mode 100644 index 00000000000000..14995d3fad0447 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Class.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" +}), 'Class'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClassOutlined.js b/packages/material-ui-icons/lib/esm/ClassOutlined.js new file mode 100644 index 00000000000000..ba84337f1b2a0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClassOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" +}), 'ClassOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClassRounded.js b/packages/material-ui-icons/lib/esm/ClassRounded.js new file mode 100644 index 00000000000000..c46d8ec13f1502 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClassRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" +}), 'ClassRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClassSharp.js b/packages/material-ui-icons/lib/esm/ClassSharp.js new file mode 100644 index 00000000000000..d7f669ea520c8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClassSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z" +}), 'ClassSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClassTwoTone.js b/packages/material-ui-icons/lib/esm/ClassTwoTone.js new file mode 100644 index 00000000000000..ea7dbe64ff007a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClassTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13 13-3-2.25L7 13V4H6v16h12V4h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z" +}, "1")], 'ClassTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleanHands.js b/packages/material-ui-icons/lib/esm/CleanHands.js new file mode 100644 index 00000000000000..6a933b9971fcb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleanHands.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.99 5 .63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7l1.37-.63.63-1.37M11 6.13V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.14C7.23 6.51 5.81 7.8 5.26 9.5h3.98L15 11.65v-.62c0-2.42-1.72-4.44-4-4.9zM1 22h4V11H1v11zm19-5h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9.02L14 22l8-3c-.01-1.1-.89-2-2-2zm0-3c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2z" +}), 'CleanHands'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleanHandsOutlined.js b/packages/material-ui-icons/lib/esm/CleanHandsOutlined.js new file mode 100644 index 00000000000000..ac45509276b0ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleanHandsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.99 5 .63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7l1.37-.63.63-1.37M20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zm-9-7.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h2.16C7.94 8.61 8.89 8 10 8c1.62 0 2.94 1.29 2.99 2.9l2.01.75V11c0-2.42-1.72-4.44-4-4.9zM22 19v1l-8 2.5-7-1.94V22H1V11h7.97l6.16 2.3c1.12.42 1.87 1.5 1.87 2.7h2c1.66 0 3 1.34 3 3zM5 20v-7H3v7h2zm14.9-1.43c-.16-.33-.51-.56-.9-.56h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.93 5.93-1.84z" +}), 'CleanHandsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleanHandsRounded.js b/packages/material-ui-icons/lib/esm/CleanHandsRounded.js new file mode 100644 index 00000000000000..947a1f89e9b1c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleanHandsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.99 7 1.37-.63.63-1.37.63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7zM20 14c1.1 0 2-.9 2-2 0-.78-.99-2.44-1.58-3.36-.2-.31-.64-.31-.84 0C18.99 9.56 18 11.22 18 12c0 1.1.9 2 2 2zM9.24 9.5 15 11.65V11c0-2.42-1.72-4.44-4-4.9V4h2c.35 0 .68.06 1 .18.37.13.78.05 1.05-.22.51-.51.34-1.39-.33-1.64C14.19 2.11 13.61 2 13 2H8.5c-.55 0-1 .45-1 1s.45 1 1 1H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h3.99zM3 11c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2s2-.9 2-2v-7c0-1.1-.9-2-2-2zm16.99 6h-6.83a.96.96 0 0 1-.33-.06l-1.47-.51c-.26-.09-.39-.37-.3-.63.09-.26.38-.4.64-.3l1.12.43c.11.04.24.07.36.07h2.63c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L9.3 11.13c-.22-.09-.46-.13-.7-.13H7v9.02l6.37 1.81c.41.12.85.1 1.25-.05L22 19c0-1.11-.9-2-2.01-2z" +}), 'CleanHandsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleanHandsSharp.js b/packages/material-ui-icons/lib/esm/CleanHandsSharp.js new file mode 100644 index 00000000000000..69ba72d336747b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleanHandsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.99 7 1.37-.63.63-1.37.63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7zM20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zM1 22h4V11H1v11zM9.24 9.5 15 11.65V11c0-2.42-1.72-4.44-4-4.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h3.99zM22 17h-9l-2.09-.73.33-.94L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3v-2z" +}), 'CleanHandsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleanHandsTwoTone.js b/packages/material-ui-icons/lib/esm/CleanHandsTwoTone.js new file mode 100644 index 00000000000000..92677146c56e18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleanHandsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.24 9.5H7.42C7.94 8.61 8.89 8 10 8c1.62 0 2.94 1.29 2.99 2.9L9.24 9.5zM5 20v-7H3v7h2zm14.9-1.43c-.16-.33-.51-.56-.9-.56h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.93 5.93-1.84z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m16.99 5 .63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7l1.37-.63.63-1.37M20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zm-9-7.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43C15.15 2.39 14.13 2 13 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h2.16C7.94 8.61 8.89 8 10 8c1.62 0 2.94 1.29 2.99 2.9l2.01.75V11c0-2.42-1.72-4.44-4-4.9zM22 19v1l-8 2.5-7-1.94V22H1V11h7.97l6.16 2.3c1.12.42 1.87 1.5 1.87 2.7h2c1.66 0 3 1.34 3 3zM5 20v-7H3v7h2zm14.9-1.43c-.16-.33-.51-.56-.9-.56h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1 2.3.15 2.3.15 0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.93 5.93-1.84z" +}, "1")], 'CleanHandsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleaningServices.js b/packages/material-ui-icons/lib/esm/CleaningServices.js new file mode 100644 index 00000000000000..488a50922d5461 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleaningServices.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11h-1V3c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v8H8c-2.76 0-5 2.24-5 5v7h18v-7c0-2.76-2.24-5-5-5zm3 10h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" +}), 'CleaningServices'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleaningServicesOutlined.js b/packages/material-ui-icons/lib/esm/CleaningServicesOutlined.js new file mode 100644 index 00000000000000..aef8a017d10c0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleaningServicesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11h-1V3c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v8H8c-2.76 0-5 2.24-5 5v7h18v-7c0-2.76-2.24-5-5-5zm-5-8h2v8h-2V3zm8 18h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" +}), 'CleaningServicesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleaningServicesRounded.js b/packages/material-ui-icons/lib/esm/CleaningServicesRounded.js new file mode 100644 index 00000000000000..61f04e86fbd5b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleaningServicesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11h-1V4c0-1.66-1.34-3-3-3S9 2.34 9 4v7H8c-2.76 0-5 2.24-5 5v5c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5c0-2.76-2.24-5-5-5zm3 10h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" +}), 'CleaningServicesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleaningServicesSharp.js b/packages/material-ui-icons/lib/esm/CleaningServicesSharp.js new file mode 100644 index 00000000000000..73786b14e95f2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleaningServicesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11V1H9v10H3v12h18V11h-6zm4 10h-2v-4h-2v4h-2v-4h-2v4H9v-4H7v4H5v-8h14v8z" +}), 'CleaningServicesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CleaningServicesTwoTone.js b/packages/material-ui-icons/lib/esm/CleaningServicesTwoTone.js new file mode 100644 index 00000000000000..abb32ca457cd64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CleaningServicesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 3h2v8h-2zm5 10H8c-1.65 0-3 1.35-3 3v5h2v-3c0-.55.45-1 1-1s1 .45 1 1v3h2v-3c0-.55.45-1 1-1s1 .45 1 1v3h2v-3c0-.55.45-1 1-1s1 .45 1 1v3h2v-5c0-1.65-1.35-3-3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 11h-1V3c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v8H8c-2.76 0-5 2.24-5 5v7h18v-7c0-2.76-2.24-5-5-5zm-5-8h2v8h-2V3zm8 18h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H9v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5v-5c0-1.65 1.35-3 3-3h8c1.65 0 3 1.35 3 3v5z" +}, "1")], 'CleaningServicesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Clear.js b/packages/material-ui-icons/lib/esm/Clear.js new file mode 100644 index 00000000000000..06a040c65df856 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Clear.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" +}), 'Clear'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearAll.js b/packages/material-ui-icons/lib/esm/ClearAll.js new file mode 100644 index 00000000000000..f1d9d685f8eb4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearAll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" +}), 'ClearAll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearAllOutlined.js b/packages/material-ui-icons/lib/esm/ClearAllOutlined.js new file mode 100644 index 00000000000000..a49214d93c47bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearAllOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" +}), 'ClearAllOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearAllRounded.js b/packages/material-ui-icons/lib/esm/ClearAllRounded.js new file mode 100644 index 00000000000000..8f0cd49c36f150 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearAllRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-2 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z" +}), 'ClearAllRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearAllSharp.js b/packages/material-ui-icons/lib/esm/ClearAllSharp.js new file mode 100644 index 00000000000000..1ceb0229e15d6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearAllSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" +}), 'ClearAllSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearAllTwoTone.js b/packages/material-ui-icons/lib/esm/ClearAllTwoTone.js new file mode 100644 index 00000000000000..b92d03d66961fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearAllTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 11h14v2H5zm-2 4h14v2H3zm4-8h14v2H7z" +}), 'ClearAllTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearOutlined.js b/packages/material-ui-icons/lib/esm/ClearOutlined.js new file mode 100644 index 00000000000000..0b821620193fa8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" +}), 'ClearOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearRounded.js b/packages/material-ui-icons/lib/esm/ClearRounded.js new file mode 100644 index 00000000000000..6234d0b456dffe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.3 5.71a.9959.9959 0 0 0-1.41 0L12 10.59 7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z" +}), 'ClearRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearSharp.js b/packages/material-ui-icons/lib/esm/ClearSharp.js new file mode 100644 index 00000000000000..7d2afcaeca6635 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" +}), 'ClearSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClearTwoTone.js b/packages/material-ui-icons/lib/esm/ClearTwoTone.js new file mode 100644 index 00000000000000..35e9fbde201f8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClearTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" +}), 'ClearTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Close.js b/packages/material-ui-icons/lib/esm/Close.js new file mode 100644 index 00000000000000..d75e3509fffaa0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Close.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" +}), 'Close'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseFullscreen.js b/packages/material-ui-icons/lib/esm/CloseFullscreen.js new file mode 100644 index 00000000000000..ddec2ab7c38a23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseFullscreen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" +}), 'CloseFullscreen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseFullscreenOutlined.js b/packages/material-ui-icons/lib/esm/CloseFullscreenOutlined.js new file mode 100644 index 00000000000000..fd643707b6b522 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseFullscreenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" +}), 'CloseFullscreenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseFullscreenRounded.js b/packages/material-ui-icons/lib/esm/CloseFullscreenRounded.js new file mode 100644 index 00000000000000..4dbf5d48216640 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseFullscreenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.29 4.12 16.7 8.71l1.59 1.59c.63.63.18 1.71-.71 1.71H13c-.55 0-1-.45-1-1v-4.6c0-.89 1.08-1.34 1.71-.71l1.59 1.59 4.59-4.59c.39-.39 1.02-.39 1.41 0 .38.4.38 1.03-.01 1.42zM4.12 21.29l4.59-4.59 1.59 1.59c.63.63 1.71.18 1.71-.71V13c0-.55-.45-1-1-1h-4.6c-.89 0-1.34 1.08-.71 1.71l1.59 1.59-4.59 4.59c-.39.39-.39 1.02 0 1.41.4.38 1.03.38 1.42-.01z" +}), 'CloseFullscreenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseFullscreenSharp.js b/packages/material-ui-icons/lib/esm/CloseFullscreenSharp.js new file mode 100644 index 00000000000000..0bff6aa98c16b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseFullscreenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" +}), 'CloseFullscreenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseFullscreenTwoTone.js b/packages/material-ui-icons/lib/esm/CloseFullscreenTwoTone.js new file mode 100644 index 00000000000000..630f209cba42c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseFullscreenTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3.41 16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" +}), 'CloseFullscreenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseOutlined.js b/packages/material-ui-icons/lib/esm/CloseOutlined.js new file mode 100644 index 00000000000000..7557b81597017f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" +}), 'CloseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseRounded.js b/packages/material-ui-icons/lib/esm/CloseRounded.js new file mode 100644 index 00000000000000..9c359f6f7898e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.3 5.71a.9959.9959 0 0 0-1.41 0L12 10.59 7.11 5.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z" +}), 'CloseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseSharp.js b/packages/material-ui-icons/lib/esm/CloseSharp.js new file mode 100644 index 00000000000000..47e1bda6f8c272 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" +}), 'CloseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloseTwoTone.js b/packages/material-ui-icons/lib/esm/CloseTwoTone.js new file mode 100644 index 00000000000000..f40174265eedcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloseTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" +}), 'CloseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaption.js b/packages/material-ui-icons/lib/esm/ClosedCaption.js new file mode 100644 index 00000000000000..558a9a2362360d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaption.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z" +}), 'ClosedCaption'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionDisabled.js b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabled.js new file mode 100644 index 00000000000000..c2be86178959a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H19c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-3.38-3.38c.24-.19.4-.46.4-.78v-1h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17L6.83 4zm12.95 18.61L17.17 20H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM11 13.83l-.83-.83H9.5v.5h-2v-3h.17L6.4 9.22c-.24.19-.4.46-.4.78v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-.17z" +}), 'ClosedCaptionDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledOutlined.js b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledOutlined.js new file mode 100644 index 00000000000000..c2d14b289280e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1h-1.5v-.5h-2v1L13 10zm3.5 3.5 1.21 1.21c.18-.19.29-.44.29-.71v-1h-1.5v.5zM8.83 6H19v10.17l1.98 1.98c0-.05.02-.1.02-.16V6c0-1.1-.9-2-2-2H6.83l2 2zm10.95 16.61L17.17 20H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM7.5 13.5h2V13h.67l-2.5-2.5H7.5v3zm7.67 4.5L11 13.83V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.32.16-.59.4-.78L5 7.83V18h10.17z" +}), 'ClosedCaptionDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledRounded.js b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledRounded.js new file mode 100644 index 00000000000000..6ca5ad83c40f86 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H19c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-3.38-3.38c.24-.19.4-.46.4-.78v-.5c0-.28-.22-.5-.5-.5H17c-.28 0-.5.22-.5.5h-.17l-1.83-1.83V10.5h2c0 .28.22.5.5.5h.5c.28 0 .5-.22.5-.5V10c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17L6.83 4zm13.66 17.9c-.39.39-1.02.39-1.41 0l-1.9-1.9H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15l-.92-.92a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11 13.83l-.83-.83H10c-.28 0-.5.22-.5.5h-2v-3h.17L6.4 9.22c-.24.19-.4.46-.4.78v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-.17z" +}), 'ClosedCaptionDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledSharp.js b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledSharp.js new file mode 100644 index 00000000000000..f7192caeb500f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H21v14.17L17.83 15H18v-2h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18V9h-5v1.17L6.83 4zm12.95 18.61L17.17 20H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM11 13.83l-.83-.83H9.5v.5h-2v-3h.17L6.17 9H6v6h5v-1.17z" +}), 'ClosedCaptionDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledTwoTone.js new file mode 100644 index 00000000000000..619eb853dac29e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionDisabledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.83 6H19v10.17l-1.4-1.4c.24-.18.4-.45.4-.77v-1h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17L8.83 6zM7.5 13.5h2V13h.67l-2.5-2.5H7.5v3zm3.5.5c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.32.16-.59.4-.78L5 7.83V18h10.17L11 13.83V14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.83 4H19c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16L19 16.17V6H8.83l-2-2zm12.95 18.61L17.17 20H5c-1.11 0-2-.9-2-2V6c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81 18 18l1.82 1.82 1.37 1.37-1.41 1.42zM7.5 13.5h2V13h.67l-2.5-2.5H7.5v3zm7.67 4.5L11 13.83V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.32.16-.59.4-.78L5 7.83V18h10.17zM18 14v-1h-1.5v.5h-.17l1.28 1.28c.23-.19.39-.46.39-.78zm-3.5-2.33V10.5h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v.17l1.5 1.5z" +}, "1")], 'ClosedCaptionDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionOff.js b/packages/material-ui-icons/lib/esm/ClosedCaptionOff.js new file mode 100644 index 00000000000000..0fdf3bcb7bbec0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 5.5v13h-15v-13h15zM19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z" +}), 'ClosedCaptionOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionOffOutlined.js b/packages/material-ui-icons/lib/esm/ClosedCaptionOffOutlined.js new file mode 100644 index 00000000000000..5b4967d06e622b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionOffOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" +}, "1")], 'ClosedCaptionOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionOffRounded.js b/packages/material-ui-icons/lib/esm/ClosedCaptionOffRounded.js new file mode 100644 index 00000000000000..9bc2a4079c0499 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 6.5c0 .28-.22.5-.5.5H10c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5zm7 0c0 .28-.22.5-.5.5H17c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5z" +}), 'ClosedCaptionOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionOffSharp.js b/packages/material-ui-icons/lib/esm/ClosedCaptionOffSharp.js new file mode 100644 index 00000000000000..0dfbc4752dcac7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z" +}), 'ClosedCaptionOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionOffTwoTone.js b/packages/material-ui-icons/lib/esm/ClosedCaptionOffTwoTone.js new file mode 100644 index 00000000000000..c2eec2f44a1b6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionOffTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 6H5v12h14V6zm-8 5H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 20h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2zM5 6h14v12H5V6z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 9H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1z" +}, "2")], 'ClosedCaptionOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionOutlined.js b/packages/material-ui-icons/lib/esm/ClosedCaptionOutlined.js new file mode 100644 index 00000000000000..f085a2bdbb3a89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" +}), 'ClosedCaptionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionRounded.js b/packages/material-ui-icons/lib/esm/ClosedCaptionRounded.js new file mode 100644 index 00000000000000..f32e6fffe86049 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 6.5c0 .28-.22.5-.5.5H10c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5zm7 0c0 .28-.22.5-.5.5H17c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5z" +}), 'ClosedCaptionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionSharp.js b/packages/material-ui-icons/lib/esm/ClosedCaptionSharp.js new file mode 100644 index 00000000000000..d7de45044df0ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z" +}), 'ClosedCaptionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ClosedCaptionTwoTone.js b/packages/material-ui-icons/lib/esm/ClosedCaptionTwoTone.js new file mode 100644 index 00000000000000..fa9e4a085d91e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ClosedCaptionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 6H5v12h14V6zm-8 5H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 20h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2zM5 6h14v12H5V6zm5 3H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1z" +}, "1")], 'ClosedCaptionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cloud.js b/packages/material-ui-icons/lib/esm/Cloud.js new file mode 100644 index 00000000000000..1cd8265f7c4319 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cloud.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" +}), 'Cloud'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudCircle.js b/packages/material-ui-icons/lib/esm/CloudCircle.js new file mode 100644 index 00000000000000..0f0c8665041b49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3l.14.01C8.58 8.28 10.13 7 12 7c2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z" +}), 'CloudCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudCircleOutlined.js b/packages/material-ui-icons/lib/esm/CloudCircleOutlined.js new file mode 100644 index 00000000000000..bf90515cae7b7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'CloudCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudCircleRounded.js b/packages/material-ui-icons/lib/esm/CloudCircleRounded.js new file mode 100644 index 00000000000000..52080f1baa98ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z" +}), 'CloudCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudCircleSharp.js b/packages/material-ui-icons/lib/esm/CloudCircleSharp.js new file mode 100644 index 00000000000000..2850b97222e811 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z" +}), 'CloudCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudCircleTwoTone.js b/packages/material-ui-icons/lib/esm/CloudCircleTwoTone.js new file mode 100644 index 00000000000000..e24cc4ec50ee7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4.08 12H8.5C6.57 16 5 14.43 5 12.5c0-1.8 1.36-3.29 3.12-3.48.73-1.4 2.19-2.36 3.88-2.36 2.12 0 3.89 1.51 4.29 3.52 1.52.1 2.71 1.35 2.71 2.89 0 1.62-1.31 2.93-2.92 2.93z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z" +}, "1")], 'CloudCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDone.js b/packages/material-ui-icons/lib/esm/CloudDone.js new file mode 100644 index 00000000000000..c2a9258d4c0f28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z" +}), 'CloudDone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDoneOutlined.js b/packages/material-ui-icons/lib/esm/CloudDoneOutlined.js new file mode 100644 index 00000000000000..ac1872826ecb1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z" +}), 'CloudDoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDoneRounded.js b/packages/material-ui-icons/lib/esm/CloudDoneRounded.js new file mode 100644 index 00000000000000..fe84cc81adfa5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zm-8.64 6.25c-.39.39-1.02.39-1.41 0L7.2 14.2a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.18l4.48-4.48c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-5.18 5.18z" +}), 'CloudDoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDoneSharp.js b/packages/material-ui-icons/lib/esm/CloudDoneSharp.js new file mode 100644 index 00000000000000..3dff3107f4fd19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18 15.18 9l1.41 1.41L10 17z" +}), 'CloudDoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDoneTwoTone.js b/packages/material-ui-icons/lib/esm/CloudDoneTwoTone.js new file mode 100644 index 00000000000000..d100543ffbbd38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18l4.6-4.6 1.41 1.41L10 17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z" +}, "1")], 'CloudDoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDownload.js b/packages/material-ui-icons/lib/esm/CloudDownload.js new file mode 100644 index 00000000000000..48c86a74679cd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDownload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" +}), 'CloudDownload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDownloadOutlined.js b/packages/material-ui-icons/lib/esm/CloudDownloadOutlined.js new file mode 100644 index 00000000000000..a3b900bfcfb370 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDownloadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z" +}), 'CloudDownloadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDownloadRounded.js b/packages/material-ui-icons/lib/esm/CloudDownloadRounded.js new file mode 100644 index 00000000000000..7c78a000516c00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDownloadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-4.65 4.65c-.2.2-.51.2-.71 0L7 13h3V9h4v4h3z" +}), 'CloudDownloadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDownloadSharp.js b/packages/material-ui-icons/lib/esm/CloudDownloadSharp.js new file mode 100644 index 00000000000000..7f6309849a3727 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDownloadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" +}), 'CloudDownloadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudDownloadTwoTone.js b/packages/material-ui-icons/lib/esm/CloudDownloadTwoTone.js new file mode 100644 index 00000000000000..237ee162177305 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudDownloadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM12 17l-4-4h2.55v-3h2.91v3H16l-4 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z" +}, "1")], 'CloudDownloadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudOff.js b/packages/material-ui-icons/lib/esm/CloudOff.js new file mode 100644 index 00000000000000..46d479dd202f15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.48 0-2.85.43-4.01 1.17l1.46 1.46C10.21 6.23 11.08 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 1.13-.64 2.11-1.56 2.62l1.45 1.45C23.16 18.16 24 16.68 24 15c0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.75 2.74C2.56 8.15 0 10.77 0 14c0 3.31 2.69 6 6 6h11.73l2 2L21 20.73 4.27 4 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z" +}), 'CloudOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudOffOutlined.js b/packages/material-ui-icons/lib/esm/CloudOffOutlined.js new file mode 100644 index 00000000000000..050302dd326fe5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86 3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" +}), 'CloudOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudOffRounded.js b/packages/material-ui-icons/lib/esm/CloudOffRounded.js new file mode 100644 index 00000000000000..5260b6f820371c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM3.71 4.56c-.39.39-.39 1.02 0 1.41l2.06 2.06h-.42c-3.28.35-5.76 3.34-5.29 6.79C.46 17.84 3.19 20 6.22 20h11.51l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 4.56a.9959.9959 0 0 0-1.41 0zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" +}), 'CloudOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudOffSharp.js b/packages/material-ui-icons/lib/esm/CloudOffSharp.js new file mode 100644 index 00000000000000..4b5493b1b4a5d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86 3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" +}), 'CloudOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudOffTwoTone.js b/packages/material-ui-icons/lib/esm/CloudOffTwoTone.js new file mode 100644 index 00000000000000..07dd0dc7bfa73c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 15c0-1.66-1.34-3-3-3h-1.5v-.5C17.5 8.46 15.04 6 12 6c-.77 0-1.49.17-2.16.46L20.79 17.4c.73-.55 1.21-1.41 1.21-2.4zM2 14c0 2.21 1.79 4 4 4h9.73l-8-8H6c-2.21 0-4 1.79-4 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81 0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z" +}, "1")], 'CloudOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudOutlined.js b/packages/material-ui-icons/lib/esm/CloudOutlined.js new file mode 100644 index 00000000000000..888ef42e00fc7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6m0-2C9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4z" +}), 'CloudOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudQueue.js b/packages/material-ui-icons/lib/esm/CloudQueue.js new file mode 100644 index 00000000000000..04b33117138bc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudQueue.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" +}), 'CloudQueue'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudQueueOutlined.js b/packages/material-ui-icons/lib/esm/CloudQueueOutlined.js new file mode 100644 index 00000000000000..cbdef8556d37f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudQueueOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" +}), 'CloudQueueOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudQueueRounded.js b/packages/material-ui-icons/lib/esm/CloudQueueRounded.js new file mode 100644 index 00000000000000..1565d7c8b657da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudQueueRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" +}), 'CloudQueueRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudQueueSharp.js b/packages/material-ui-icons/lib/esm/CloudQueueSharp.js new file mode 100644 index 00000000000000..9ac634c5273bd5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudQueueSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" +}), 'CloudQueueSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudQueueTwoTone.js b/packages/material-ui-icons/lib/esm/CloudQueueTwoTone.js new file mode 100644 index 00000000000000..1eefebe2c5bc76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudQueueTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 12h-1.5v-.5C17.5 8.46 15.04 6 12 6c-2.52 0-4.63 1.69-5.29 4H6c-2.21 0-4 1.79-4 4s1.79 4 4 4h13c1.66 0 3-1.34 3-3s-1.34-3-3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" +}, "1")], 'CloudQueueTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudRounded.js b/packages/material-ui-icons/lib/esm/CloudRounded.js new file mode 100644 index 00000000000000..993eacb9d4fb96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" +}), 'CloudRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudSharp.js b/packages/material-ui-icons/lib/esm/CloudSharp.js new file mode 100644 index 00000000000000..08ccf9305e7270 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" +}), 'CloudSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudTwoTone.js b/packages/material-ui-icons/lib/esm/CloudTwoTone.js new file mode 100644 index 00000000000000..744b2fc629972a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z" +}, "1")], 'CloudTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudUpload.js b/packages/material-ui-icons/lib/esm/CloudUpload.js new file mode 100644 index 00000000000000..1ef9569bd515aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudUpload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" +}), 'CloudUpload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudUploadOutlined.js b/packages/material-ui-icons/lib/esm/CloudUploadOutlined.js new file mode 100644 index 00000000000000..02f3fe2cffa331 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudUploadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" +}), 'CloudUploadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudUploadRounded.js b/packages/material-ui-icons/lib/esm/CloudUploadRounded.js new file mode 100644 index 00000000000000..598607d5dc67c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudUploadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l4.65-4.65c.2-.2.51-.2.71 0L17 13h-3z" +}), 'CloudUploadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudUploadSharp.js b/packages/material-ui-icons/lib/esm/CloudUploadSharp.js new file mode 100644 index 00000000000000..300e4417fd9ca2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudUploadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" +}), 'CloudUploadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CloudUploadTwoTone.js b/packages/material-ui-icons/lib/esm/CloudUploadTwoTone.js new file mode 100644 index 00000000000000..7dff847cc80607 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CloudUploadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.21 12.04-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z" +}, "1")], 'CloudUploadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Code.js b/packages/material-ui-icons/lib/esm/Code.js new file mode 100644 index 00000000000000..b13dcdaac2b21b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Code.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" +}), 'Code'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeOff.js b/packages/material-ui-icons/lib/esm/CodeOff.js new file mode 100644 index 00000000000000..2cd769eec5419a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" +}), 'CodeOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeOffOutlined.js b/packages/material-ui-icons/lib/esm/CodeOffOutlined.js new file mode 100644 index 00000000000000..cbbeea7d7f7f9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" +}), 'CodeOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeOffRounded.js b/packages/material-ui-icons/lib/esm/CodeOffRounded.js new file mode 100644 index 00000000000000..a3d71e5c5d5cc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.17 12-3.88-3.88a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l4.59 4.59c.39.39.39 1.02 0 1.41l-2.88 2.88L17 14.17 19.17 12zM2.1 4.93l3.49 3.49-2.88 2.88c-.39.39-.39 1.02 0 1.41L7.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.83 12 7 9.83 19.07 21.9c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42z" +}), 'CodeOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeOffSharp.js b/packages/material-ui-icons/lib/esm/CodeOffSharp.js new file mode 100644 index 00000000000000..d338e4aef75f50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" +}), 'CodeOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeOffTwoTone.js b/packages/material-ui-icons/lib/esm/CodeOffTwoTone.js new file mode 100644 index 00000000000000..5cee45ff87ff72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.17 12-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" +}), 'CodeOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeOutlined.js b/packages/material-ui-icons/lib/esm/CodeOutlined.js new file mode 100644 index 00000000000000..60e1eb7bd4e946 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" +}), 'CodeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeRounded.js b/packages/material-ui-icons/lib/esm/CodeRounded.js new file mode 100644 index 00000000000000..aca5bea5ae1472 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.7 15.9 4.8 12l3.9-3.9c.39-.39.39-1.01 0-1.4a.9839.9839 0 0 0-1.4 0l-4.59 4.59c-.39.39-.39 1.02 0 1.41l4.59 4.6c.39.39 1.01.39 1.4 0 .39-.39.39-1.01 0-1.4zm6.6 0 3.9-3.9-3.9-3.9a.9839.9839 0 0 1 0-1.4c.39-.39 1.01-.39 1.4 0l4.59 4.59c.39.39.39 1.02 0 1.41l-4.59 4.6c-.39.39-1.01.39-1.4 0a.9839.9839 0 0 1 0-1.4z" +}), 'CodeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeSharp.js b/packages/material-ui-icons/lib/esm/CodeSharp.js new file mode 100644 index 00000000000000..005590885b6646 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" +}), 'CodeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CodeTwoTone.js b/packages/material-ui-icons/lib/esm/CodeTwoTone.js new file mode 100644 index 00000000000000..4ae3e3336969df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CodeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" +}), 'CodeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Coffee.js b/packages/material-ui-icons/lib/esm/Coffee.js new file mode 100644 index 00000000000000..cafeb8558c3f54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Coffee.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z" +}), 'Coffee'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeMaker.js b/packages/material-ui-icons/lib/esm/CoffeeMaker.js new file mode 100644 index 00000000000000..a0bc02bcd3fd90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeMaker.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 6V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "9", + r: "1" +}, "1")], 'CoffeeMaker'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeMakerOutlined.js b/packages/material-ui-icons/lib/esm/CoffeeMakerOutlined.js new file mode 100644 index 00000000000000..5f944a51892523 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeMakerOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 6V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1zm-8 10v-3h6v3c0 1.65-1.35 3-3 3s-3-1.35-3-3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "9", + r: "1" +}, "1")], 'CoffeeMakerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeMakerRounded.js b/packages/material-ui-icons/lib/esm/CoffeeMakerRounded.js new file mode 100644 index 00000000000000..0e8b7ab66b8ac9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeMakerRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 6V4h1c.55 0 1-.45 1-1s-.45-1-1-1H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1h-3.03c1.23-.91 2.03-2.36 2.03-4v-3c0-1.1-.9-2-2-2h-6c-1.1 0-2 .9-2 2v3c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "9", + r: "1" +}, "1")], 'CoffeeMakerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeMakerSharp.js b/packages/material-ui-icons/lib/esm/CoffeeMakerSharp.js new file mode 100644 index 00000000000000..b6bdf78da0fb45 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeMakerSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 7V4h2V2H4v20h16v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v3h10z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "9", + r: "1" +}, "1")], 'CoffeeMakerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeMakerTwoTone.js b/packages/material-ui-icons/lib/esm/CoffeeMakerTwoTone.js new file mode 100644 index 00000000000000..52f991d9bee7ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeMakerTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 19c1.65 0 3-1.35 3-3v-3h-6v3c0 1.65 1.35 3 3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 7h8c.55 0 1-.45 1-1V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1zm1 9v-3h6v3c0 1.65-1.35 3-3 3s-3-1.35-3-3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "13", + cy: "9", + r: "1" +}, "2")], 'CoffeeMakerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeOutlined.js b/packages/material-ui-icons/lib/esm/CoffeeOutlined.js new file mode 100644 index 00000000000000..e1518a6f309cec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 5v3H6V5h10zm0 5v1c0 2.76-2.24 5-5 5s-5-2.24-5-5v-1m12.5-2H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z" +}), 'CoffeeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeRounded.js b/packages/material-ui-icons/lib/esm/CoffeeRounded.js new file mode 100644 index 00000000000000..efe9da3cdd6321 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM5 19h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'CoffeeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeSharp.js b/packages/material-ui-icons/lib/esm/CoffeeSharp.js new file mode 100644 index 00000000000000..7730eafddf32c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 3H4v8c0 3.87 3.13 7 7 7s7-3.13 7-7v-1h.4c1.67 0 3.19-1.13 3.52-2.77C22.39 4.98 20.67 3 18.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z" +}), 'CoffeeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoffeeTwoTone.js b/packages/material-ui-icons/lib/esm/CoffeeTwoTone.js new file mode 100644 index 00000000000000..60fc2e05b86177 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoffeeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 11c0 2.76 2.24 5 5 5s5-2.24 5-5v-1H6v1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 19h16v2H4zM18.5 3H6c-1.1 0-2 .9-2 2v5.71c0 3.83 2.95 7.18 6.78 7.29 3.96.12 7.22-3.06 7.22-7v-1h.5c1.93 0 3.5-1.57 3.5-3.5S20.43 3 18.5 3zM16 11c0 2.76-2.24 5-5 5s-5-2.24-5-5v-1h10v1zm0-3H6V5h10v3zm2.5 0H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8z" +}, "1")], 'CoffeeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Collections.js b/packages/material-ui-icons/lib/esm/Collections.js new file mode 100644 index 00000000000000..cba02c5fd9ca44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Collections.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4 2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" +}), 'Collections'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsBookmark.js b/packages/material-ui-icons/lib/esm/CollectionsBookmark.js new file mode 100644 index 00000000000000..ec96559413a6a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsBookmark.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10-2.5-1.5L15 12V4h5v8z" +}, "1")], 'CollectionsBookmark'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsBookmarkOutlined.js b/packages/material-ui-icons/lib/esm/CollectionsBookmarkOutlined.js new file mode 100644 index 00000000000000..1ccf3abe5055a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsBookmarkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 2v5l-1-.75L15 9V4h2zm3 12H8V4h5v9l3-2.25L19 13V4h1v12z" +}), 'CollectionsBookmarkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsBookmarkRounded.js b/packages/material-ui-icons/lib/esm/CollectionsBookmarkRounded.js new file mode 100644 index 00000000000000..eae852429a6f56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsBookmarkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1zm3-18H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10-2.5-1.5L15 12V4h5v8z" +}), 'CollectionsBookmarkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsBookmarkSharp.js b/packages/material-ui-icons/lib/esm/CollectionsBookmarkSharp.js new file mode 100644 index 00000000000000..2532f0e34a78c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsBookmarkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-2 10-2.5-1.5L15 12V4h5v8z" +}), 'CollectionsBookmarkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsBookmarkTwoTone.js b/packages/material-ui-icons/lib/esm/CollectionsBookmarkTwoTone.js new file mode 100644 index 00000000000000..f12393d04b26bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsBookmarkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4h-1v9l-3-2.25L13 13V4H8v12h12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm18-6V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM15 4h2v5l-1-.75L15 9V4zM8 4h5v9l3-2.25L19 13V4h1v12H8V4z" +}, "1")], 'CollectionsBookmarkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsOutlined.js b/packages/material-ui-icons/lib/esm/CollectionsOutlined.js new file mode 100644 index 00000000000000..1f9bad2699e1fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67 1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" +}), 'CollectionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsRounded.js b/packages/material-ui-icons/lib/esm/CollectionsRounded.js new file mode 100644 index 00000000000000..f53138123deeb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-10.6-3.47 1.63 2.18 2.58-3.22c.2-.25.58-.25.78 0l2.96 3.7c.26.33.03.81-.39.81H9c-.41 0-.65-.47-.4-.8l2-2.67c.2-.26.6-.26.8 0zM2 7v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'CollectionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsSharp.js b/packages/material-ui-icons/lib/esm/CollectionsSharp.js new file mode 100644 index 00000000000000..506d68951dd716 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18V2H6v16h16zm-11-6 2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z" +}), 'CollectionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CollectionsTwoTone.js b/packages/material-ui-icons/lib/esm/CollectionsTwoTone.js new file mode 100644 index 00000000000000..e1b45f111983ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CollectionsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm3.5-4.33 1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-4.33-5.17-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z" +}, "1")], 'CollectionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorLens.js b/packages/material-ui-icons/lib/esm/ColorLens.js new file mode 100644 index 00000000000000..7ed6dde94b953c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorLens.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'ColorLens'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorLensOutlined.js b/packages/material-ui-icons/lib/esm/ColorLensOutlined.js new file mode 100644 index 00000000000000..e3d7f08600f1c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorLensOutlined.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "11.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "7.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "7.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "11.5", + r: "1.5" +}, "4")], 'ColorLensOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorLensRounded.js b/packages/material-ui-icons/lib/esm/ColorLensRounded.js new file mode 100644 index 00000000000000..62222b5648226a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorLensRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'ColorLensRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorLensSharp.js b/packages/material-ui-icons/lib/esm/ColorLensSharp.js new file mode 100644 index 00000000000000..318082dc8514e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorLensSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'ColorLensSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorLensTwoTone.js b/packages/material-ui-icons/lib/esm/ColorLensTwoTone.js new file mode 100644 index 00000000000000..29e3b5762811ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorLensTwoTone.js @@ -0,0 +1,24 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "11.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "7.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "7.5", + r: "1.5" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "11.5", + r: "1.5" +}, "5")], 'ColorLensTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Colorize.js b/packages/material-ui-icons/lib/esm/Colorize.js new file mode 100644 index 00000000000000..0a7710fa7d89f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Colorize.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.71 5.63-2.34-2.34a.9959.9959 0 0 0-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" +}), 'Colorize'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorizeOutlined.js b/packages/material-ui-icons/lib/esm/ColorizeOutlined.js new file mode 100644 index 00000000000000..9c1a39cf02afc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorizeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 5.41.92.92-2.69 2.69-.92-.92 2.69-2.69M17.67 3c-.26 0-.51.1-.71.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42l-2.34-2.34c-.2-.19-.45-.29-.7-.29zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" +}), 'ColorizeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorizeRounded.js b/packages/material-ui-icons/lib/esm/ColorizeRounded.js new file mode 100644 index 00000000000000..65bdd4e53c5534 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorizeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.71 5.63-2.34-2.34a.9959.9959 0 0 0-1.41 0l-3.12 3.12-1.23-1.21c-.39-.39-1.02-.38-1.41 0-.39.39-.39 1.02 0 1.41l.72.72-8.77 8.77c-.1.1-.15.22-.15.36v4.04c0 .28.22.5.5.5h4.04c.13 0 .26-.05.35-.15l8.77-8.77.72.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.22-1.22 3.12-3.12c.41-.4.41-1.03.02-1.42zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" +}), 'ColorizeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorizeSharp.js b/packages/material-ui-icons/lib/esm/ColorizeSharp.js new file mode 100644 index 00000000000000..9002c9f19d4702 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorizeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.42 6.34-3.75-3.75-3.82 3.82-1.94-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.84-3.83zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z" +}), 'ColorizeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ColorizeTwoTone.js b/packages/material-ui-icons/lib/esm/ColorizeTwoTone.js new file mode 100644 index 00000000000000..e05306f2ce13b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ColorizeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.896 9.023-.92-.92L17.67 5.41l.92.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.71 5.63-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19zm8.98-9.97-.93-.93 2.69-2.69.92.92-2.68 2.7z" +}, "1")], 'ColorizeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Comment.js b/packages/material-ui-icons/lib/esm/Comment.js new file mode 100644 index 00000000000000..3ace2060f58dcc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Comment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" +}), 'Comment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentBank.js b/packages/material-ui-icons/lib/esm/CommentBank.js new file mode 100644 index 00000000000000..108498dc3985dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentBank.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 11-2.5-1.5L14 13V5h5v8z" +}), 'CommentBank'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentBankOutlined.js b/packages/material-ui-icons/lib/esm/CommentBankOutlined.js new file mode 100644 index 00000000000000..17759f9aad4c03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentBankOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 14V6h-5v8l2.5-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" +}, "1")], 'CommentBankOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentBankRounded.js b/packages/material-ui-icons/lib/esm/CommentBankRounded.js new file mode 100644 index 00000000000000..788a9419b27030 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentBankRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1.76 9.55L16.5 10.5l-1.74 1.05c-.33.2-.76-.04-.76-.43V4h5v7.12c0 .39-.42.63-.76.43z" +}), 'CommentBankRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentBankSharp.js b/packages/material-ui-icons/lib/esm/CommentBankSharp.js new file mode 100644 index 00000000000000..de77930adaa5e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentBankSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 2v20l4-4h16V2H2zm17 11-2.5-1.5L14 13V5h5v8z" +}), 'CommentBankSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentBankTwoTone.js b/packages/material-ui-icons/lib/esm/CommentBankTwoTone.js new file mode 100644 index 00000000000000..e29b817345e5cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentBankTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4 18 2-2h14V4H4v14zm9-12h5v8l-2.5-1.5L13 14V6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 14V6h-5v8l2.5-1.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z" +}, "2")], 'CommentBankTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentOutlined.js b/packages/material-ui-icons/lib/esm/CommentOutlined.js new file mode 100644 index 00000000000000..20cedeb8fc9e22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM20 4v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" +}), 'CommentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentRounded.js b/packages/material-ui-icons/lib/esm/CommentRounded.js new file mode 100644 index 00000000000000..2154e9ae90a9e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 14H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'CommentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentSharp.js b/packages/material-ui-icons/lib/esm/CommentSharp.js new file mode 100644 index 00000000000000..e40087c2545423 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 2H2v16h16l4 4-.01-20zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" +}), 'CommentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommentTwoTone.js b/packages/material-ui-icons/lib/esm/CommentTwoTone.js new file mode 100644 index 00000000000000..64a1a698118d28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 17.17V4H4v12h14.83L20 17.17zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 18h14l4 4-.01-18c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 4h16v13.17L18.83 16H4V4zm2 8h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" +}, "1")], 'CommentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Commute.js b/packages/material-ui-icons/lib/esm/Commute.js new file mode 100644 index 00000000000000..5f8f10c248cc93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Commute.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2.03L9 18v-5H4V5.98L13 6v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 13.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'Commute'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommuteOutlined.js b/packages/material-ui-icons/lib/esm/CommuteOutlined.js new file mode 100644 index 00000000000000..cfefd1f643c395 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommuteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'CommuteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommuteRounded.js b/packages/material-ui-icons/lib/esm/CommuteRounded.js new file mode 100644 index 00000000000000..1b82fa7aaef435 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommuteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-.77.77c-.28.28-.28.72 0 1s.72.28 1 0L7 18h2v-5H4.5c-.28 0-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5h8c.28 0 .5.22.5.5V8h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.24c0 .55.45.99 1 .99s1-.45 1-1v-1h8v1c0 .55.45 1 1 1s.99-.44 1-.99L22 13.77l-1.43-4.11zm-7.8.34h6.48c.21 0 .4.14.47.34l.69 2c.11.32-.13.66-.47.66h-7.85c-.34 0-.58-.34-.47-.66l.69-2c.05-.2.24-.34.46-.34zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'CommuteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommuteSharp.js b/packages/material-ui-icons/lib/esm/CommuteSharp.js new file mode 100644 index 00000000000000..c6f4c7d946bdbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommuteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'CommuteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CommuteTwoTone.js b/packages/material-ui-icons/lib/esm/CommuteTwoTone.js new file mode 100644 index 00000000000000..e1e3504cffb1aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CommuteTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'CommuteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Compare.js b/packages/material-ui-icons/lib/esm/Compare.js new file mode 100644 index 00000000000000..4340c7e69d58fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Compare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'Compare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareArrows.js b/packages/material-ui-icons/lib/esm/CompareArrows.js new file mode 100644 index 00000000000000..33c2ccbbc9cf41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareArrows.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" +}), 'CompareArrows'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareArrowsOutlined.js b/packages/material-ui-icons/lib/esm/CompareArrowsOutlined.js new file mode 100644 index 00000000000000..adb1cbff6264b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareArrowsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" +}), 'CompareArrowsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareArrowsRounded.js b/packages/material-ui-icons/lib/esm/CompareArrowsRounded.js new file mode 100644 index 00000000000000..eb89d0881d12d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareArrowsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.01 14H3c-.55 0-1 .45-1 1s.45 1 1 1h6.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35V14zm5.98-2.21V10H21c.55 0 1-.45 1-1s-.45-1-1-1h-6.01V6.21c0-.45-.54-.67-.85-.35l-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.31.85.09.85-.36z" +}), 'CompareArrowsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareArrowsSharp.js b/packages/material-ui-icons/lib/esm/CompareArrowsSharp.js new file mode 100644 index 00000000000000..ce224b7301214d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareArrowsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" +}), 'CompareArrowsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareArrowsTwoTone.js b/packages/material-ui-icons/lib/esm/CompareArrowsTwoTone.js new file mode 100644 index 00000000000000..d7f816a51beb33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareArrowsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" +}), 'CompareArrowsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareOutlined.js b/packages/material-ui-icons/lib/esm/CompareOutlined.js new file mode 100644 index 00000000000000..ac41f61da797c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'CompareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareRounded.js b/packages/material-ui-icons/lib/esm/CompareRounded.js new file mode 100644 index 00000000000000..9dce138fd4caad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1zm0 15H5l5-6v6zm9-15h-5v2h4c.55 0 1 .45 1 1v12l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'CompareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareSharp.js b/packages/material-ui-icons/lib/esm/CompareSharp.js new file mode 100644 index 00000000000000..1f553cd9c059cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3H3v18h7v2h2V1h-2v2zm0 15H5l5-6v6zM21 3h-7v2h5v13l-5-6v9h7V3z" +}), 'CompareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompareTwoTone.js b/packages/material-ui-icons/lib/esm/CompareTwoTone.js new file mode 100644 index 00000000000000..3d020daf8eda56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompareTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5h-5v7l5 6zm-9 13v-6l-5 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-2h-2v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1zm-2 17H5l5-6v6z" +}, "1")], 'CompareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompassCalibration.js b/packages/material-ui-icons/lib/esm/CompassCalibration.js new file mode 100644 index 00000000000000..cc516dafea81d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompassCalibration.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 10.07c1.95 0 3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3S4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08z" +}, "1")], 'CompassCalibration'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompassCalibrationOutlined.js b/packages/material-ui-icons/lib/esm/CompassCalibrationOutlined.js new file mode 100644 index 00000000000000..3703aebe49c409 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompassCalibrationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-17C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3zm4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z" +}), 'CompassCalibrationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompassCalibrationRounded.js b/packages/material-ui-icons/lib/esm/CompassCalibrationRounded.js new file mode 100644 index 00000000000000..bd497ea6825d0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompassCalibrationRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3C8.49 3 5.28 4.29 2.8 6.41c-.44.38-.48 1.06-.06 1.48l3.6 3.6c.36.36.92.39 1.32.08 1.2-.94 2.71-1.5 4.34-1.5 1.64 0 3.14.56 4.34 1.49.4.31.96.28 1.31-.08l3.6-3.6c.42-.42.38-1.1-.07-1.48C18.72 4.28 15.51 3 12 3z" +}, "1")], 'CompassCalibrationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompassCalibrationSharp.js b/packages/material-ui-icons/lib/esm/CompassCalibrationSharp.js new file mode 100644 index 00000000000000..0c317f47c0b740 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompassCalibrationSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3z" +}, "1")], 'CompassCalibrationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompassCalibrationTwoTone.js b/packages/material-ui-icons/lib/esm/CompassCalibrationTwoTone.js new file mode 100644 index 00000000000000..a61de484729497 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompassCalibrationTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4.94 7.26 2.21 2.21c1.44-.91 3.11-1.4 4.85-1.4 1.74 0 3.41.49 4.84 1.4l2.21-2.21C17 5.79 14.56 5 12 5c-2.56 0-5.01.79-7.06 2.26z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "3", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 17c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-8 0c0-1.65 1.35-3 3-3s3 1.35 3 3-1.35 3-3 3-3-1.35-3-3zM2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3 8.1 3 4.56 4.59 2 7.15zm14.84 2.32c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z" +}, "2")], 'CompassCalibrationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Compress.js b/packages/material-ui-icons/lib/esm/Compress.js new file mode 100644 index 00000000000000..3b7aea47f26686 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Compress.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 19h3v3h2v-3h3l-4-4-4 4zm8-15h-3V1h-2v3H8l4 4 4-4zM4 9v2h16V9H4zm0 3h16v2H4z" +}), 'Compress'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompressOutlined.js b/packages/material-ui-icons/lib/esm/CompressOutlined.js new file mode 100644 index 00000000000000..20d7e209f3d869 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompressOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9v2h16V9H4zm12-5-1.41-1.41L13 4.17V1h-2v3.19L9.39 2.61 8 4l4 4 4-4zM4 14h16v-2H4v2zm4 5 1.39 1.39L11 18.81V22h2v-3.17l1.59 1.59L16 19l-4-4-4 4z" +}), 'CompressOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompressRounded.js b/packages/material-ui-icons/lib/esm/CompressRounded.js new file mode 100644 index 00000000000000..0232c8b836d994 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompressRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1zm10.79-6H13V2c0-.55-.45-1-1-1s-1 .45-1 1v2H9.21c-.45 0-.67.54-.36.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.32-.31.1-.85-.35-.85zM9.21 19H11v2c0 .55.45 1 1 1s1-.45 1-1v-2h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zM5 14h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'CompressRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompressSharp.js b/packages/material-ui-icons/lib/esm/CompressSharp.js new file mode 100644 index 00000000000000..6ccabca1231f52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompressSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h16v2H4zm12-5h-3V1h-2v3H8l4 4zM8 19h3v3h2v-3h3l-4-4zm-4-7h16v2H4z" +}), 'CompressSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CompressTwoTone.js b/packages/material-ui-icons/lib/esm/CompressTwoTone.js new file mode 100644 index 00000000000000..ab7e4f903c7ff6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CompressTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h16v2H4zm12-5h-3V1h-2v3H8l4 4zM8 19h3v3h2v-3h3l-4-4zm-4-7h16v2H4z" +}), 'CompressTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Computer.js b/packages/material-ui-icons/lib/esm/Computer.js new file mode 100644 index 00000000000000..5d79406d882347 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Computer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}), 'Computer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ComputerOutlined.js b/packages/material-ui-icons/lib/esm/ComputerOutlined.js new file mode 100644 index 00000000000000..a2235e19110a44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ComputerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}), 'ComputerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ComputerRounded.js b/packages/material-ui-icons/lib/esm/ComputerRounded.js new file mode 100644 index 00000000000000..7a19249eaf2e57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ComputerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 6h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z" +}), 'ComputerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ComputerSharp.js b/packages/material-ui-icons/lib/esm/ComputerSharp.js new file mode 100644 index 00000000000000..4c58df89eead79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ComputerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 18 2-2V4H2v12l2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}), 'ComputerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ComputerTwoTone.js b/packages/material-ui-icons/lib/esm/ComputerTwoTone.js new file mode 100644 index 00000000000000..5651796e918401 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ComputerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6h16v10H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}, "1")], 'ComputerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConfirmationNumber.js b/packages/material-ui-icons/lib/esm/ConfirmationNumber.js new file mode 100644 index 00000000000000..a1039717100c20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConfirmationNumber.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z" +}), 'ConfirmationNumber'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConfirmationNumberOutlined.js b/packages/material-ui-icons/lib/esm/ConfirmationNumberOutlined.js new file mode 100644 index 00000000000000..bc45a5c7acae7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConfirmationNumberOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" +}), 'ConfirmationNumberOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConfirmationNumberRounded.js b/packages/material-ui-icons/lib/esm/ConfirmationNumberRounded.js new file mode 100644 index 00000000000000..7bd48f98546de2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConfirmationNumberRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 8.54V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v2.54c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7V18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76s.43-1.42 1.06-1.76c.6-.33.94-1.01.94-1.7zm-9 8.96h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z" +}), 'ConfirmationNumberRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConfirmationNumberSharp.js b/packages/material-ui-icons/lib/esm/ConfirmationNumberSharp.js new file mode 100644 index 00000000000000..5078e0230eebec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConfirmationNumberSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z" +}), 'ConfirmationNumberSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConfirmationNumberTwoTone.js b/packages/material-ui-icons/lib/esm/ConfirmationNumberTwoTone.js new file mode 100644 index 00000000000000..e92826c4b2e836 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConfirmationNumberTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zM11 7h2v2h-2V7zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z" +}, "1")], 'ConfirmationNumberTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectWithoutContact.js b/packages/material-ui-icons/lib/esm/ConnectWithoutContact.js new file mode 100644 index 00000000000000..58a7331a3d3809 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectWithoutContact.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-2.5c0-.83-.67-1.5-1.5-1.5z" +}), 'ConnectWithoutContact'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectWithoutContactOutlined.js b/packages/material-ui-icons/lib/esm/ConnectWithoutContactOutlined.js new file mode 100644 index 00000000000000..b12ccf1e2a7f75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectWithoutContactOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-2.5c0-.83-.67-1.5-1.5-1.5z" +}), 'ConnectWithoutContactOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectWithoutContactRounded.js b/packages/material-ui-icons/lib/esm/ConnectWithoutContactRounded.js new file mode 100644 index 00000000000000..d910c50c34cff0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectWithoutContactRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm3.19.5c-.41 0-.76.25-.92.63C8.83 6.23 7.76 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.43-.45 2.58-1.53 3.12-2.91.26-.64-.24-1.33-.93-1.33zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.26 0-2.33-.77-2.77-1.87-.15-.38-.51-.63-.92-.63-.69 0-1.19.69-.94 1.33.55 1.38 1.69 2.46 3.12 2.91V22h6v-2.5c.01-.83-.66-1.5-1.49-1.5zm-3.25-6.91s0-.01.01 0c-1.06.27-1.9 1.11-2.17 2.17v-.01c-.11.43-.51.75-.98.75-.55 0-1-.45-1-1 0-.05.02-.14.02-.14.43-1.85 1.89-3.31 3.75-3.73.04 0 .08-.01.12-.01.55 0 1 .45 1 1 0 .46-.32.86-.75.97zM18 6.06c0 .51-.37.92-.86.99-3.19.39-5.7 2.91-6.09 6.1-.07.48-.49.85-.99.85-.55 0-1-.45-1-1v-.09c.5-4.12 3.79-7.38 7.92-7.85h.01c.56 0 1.01.45 1.01 1z" +}), 'ConnectWithoutContactRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectWithoutContactSharp.js b/packages/material-ui-icons/lib/esm/ConnectWithoutContactSharp.js new file mode 100644 index 00000000000000..97ddfe79e9d832 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectWithoutContactSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7H2v4h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm-1.5 1c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-4h-4.5z" +}), 'ConnectWithoutContactSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectWithoutContactTwoTone.js b/packages/material-ui-icons/lib/esm/ConnectWithoutContactTwoTone.js new file mode 100644 index 00000000000000..36cb2019179c67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectWithoutContactTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 14H9c0-4.97 4.03-9 9-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2C9.21 5.92 7.99 7 6.5 7h-3C2.67 7 2 7.67 2 8.5V11h6V8.74c1.86-.59 3.25-2.23 3.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm1.5 1h-3c-1.49 0-2.71-1.08-2.95-2.5h-2c.2 2.01 1.59 3.65 3.45 4.24V22h6v-2.5c0-.83-.67-1.5-1.5-1.5z" +}), 'ConnectWithoutContactTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectedTv.js b/packages/material-ui-icons/lib/esm/ConnectedTv.js new file mode 100644 index 00000000000000..b6fefc058cf07b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectedTv.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM4 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H9c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H12c0-4.42-3.59-8-8-8z" +}), 'ConnectedTv'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectedTvOutlined.js b/packages/material-ui-icons/lib/esm/ConnectedTvOutlined.js new file mode 100644 index 00000000000000..88a096ca5b52d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectedTvOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2zm0 14H4V5h16v12zM5 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H10c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H13c0-4.42-3.59-8-8-8z" +}), 'ConnectedTvOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectedTvRounded.js b/packages/material-ui-icons/lib/esm/ConnectedTvRounded.js new file mode 100644 index 00000000000000..e35c467207c20e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectedTvRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h4c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2zm0 14H4V5h16v12zM7 15.97c-.02-1.08-.89-1.95-1.97-1.97H5v2h2v-.03zm-1.38-3.42c1.44.26 2.58 1.4 2.83 2.84.06.36.37.61.73.61.46 0 .82-.41.75-.86-.36-2.07-1.99-3.7-4.06-4.06-.46-.08-.87.28-.87.74 0 .37.26.67.62.73zm.02-3.02c3.07.3 5.52 2.75 5.83 5.82.04.37.37.65.74.65.45 0 .79-.4.75-.85-.4-3.74-3.37-6.71-7.11-7.1C5.4 8 5 8.34 5 8.79c0 .37.27.71.64.74z" +}), 'ConnectedTvRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectedTvSharp.js b/packages/material-ui-icons/lib/esm/ConnectedTvSharp.js new file mode 100644 index 00000000000000..294035dbe1c988 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectedTvSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.57 16H10c0-2.76-2.24-5-5-5v1.43c1.97 0 3.57 1.6 3.57 3.57z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.55 16H13c0-4.42-3.59-8-8-8v1.45c3.61 0 6.55 2.93 6.55 6.55zM5 14v2h2c0-1.11-.89-2-2-2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z" +}, "2")], 'ConnectedTvSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConnectedTvTwoTone.js b/packages/material-ui-icons/lib/esm/ConnectedTvTwoTone.js new file mode 100644 index 00000000000000..2212ad11a980f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConnectedTvTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2zm0 14H4V5h16v12zM5 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H10c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H13c0-4.42-3.59-8-8-8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 5h16v12H4z", + opacity: ".3" +}, "1")], 'ConnectedTvTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Construction.js b/packages/material-ui-icons/lib/esm/Construction.js new file mode 100644 index 00000000000000..bbae530a8b7cbe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Construction.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" +}), 'Construction'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConstructionOutlined.js b/packages/material-ui-icons/lib/esm/ConstructionOutlined.js new file mode 100644 index 00000000000000..66066bfef21f4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConstructionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" +}), 'ConstructionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConstructionRounded.js b/packages/material-ui-icons/lib/esm/ConstructionRounded.js new file mode 100644 index 00000000000000..339afe5490eb6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConstructionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.99 17.99-4.94-4.94-2.12 2.12 4.94 4.94c.59.59 1.54.59 2.12 0 .58-.59.58-1.54 0-2.12zM17.65 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41-1.93 0-3.5 1.57-3.5 3.5 0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78c.39-.39.39-1.02 0-1.41l-.71-.71 2.12-2.12c-1.17-1.17-3.07-1.17-4.24 0L5.08 6.32c-.39.39-.39 1.02 0 1.41l.71.71H3.25c-.19 0-.37.07-.5.21-.28.28-.28.72 0 1l2.54 2.54c.28.28.72.28 1 0 .13-.13.21-.31.21-.5V9.15l.7.7c.39.39 1.02.39 1.41 0l1.78 1.78-6.35 6.35c-.59.59-.59 1.54 0 2.12.59.59 1.54.59 2.12 0L16.48 9.79c.37.13.76.21 1.17.21z" +}), 'ConstructionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConstructionSharp.js b/packages/material-ui-icons/lib/esm/ConstructionSharp.js new file mode 100644 index 00000000000000..9b972158fcbc68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConstructionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" +}), 'ConstructionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ConstructionTwoTone.js b/packages/material-ui-icons/lib/esm/ConstructionTwoTone.js new file mode 100644 index 00000000000000..b36e199ced061e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ConstructionTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.7826 15.1719 2.1213-2.1213 5.9963 5.9962-2.1213 2.1213zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49c-1.17-1.17-3.07-1.17-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" +}), 'ConstructionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactMail.js b/packages/material-ui-icons/lib/esm/ContactMail.js new file mode 100644 index 00000000000000..7910495020001f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactMail.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8V7l-3 2-3-2v1l3 2 3-2zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z" +}), 'ContactMail'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactMailOutlined.js b/packages/material-ui-icons/lib/esm/ContactMailOutlined.js new file mode 100644 index 00000000000000..f489c497b5d8b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactMailOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" +}), 'ContactMailOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactMailRounded.js b/packages/material-ui-icons/lib/esm/ContactMailRounded.js new file mode 100644 index 00000000000000..2a3e5b303c5731 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactMailRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8V7l-3 2-3-2v1l2.72 1.82c.17.11.39.11.55 0L21 8zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm7.5-6h-7c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v5c0 .28-.22.5-.5.5z" +}), 'ContactMailRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactMailSharp.js b/packages/material-ui-icons/lib/esm/ContactMailSharp.js new file mode 100644 index 00000000000000..f3269da5235ab6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactMailSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8V7l-3 2-3-2v1l3 2 3-2zm3-5H0v18h23.99L24 3zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z" +}), 'ContactMailSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactMailTwoTone.js b/packages/material-ui-icons/lib/esm/ContactMailTwoTone.js new file mode 100644 index 00000000000000..1a1c8fbecca816 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactMailTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M2 19h20V5H2v14zM14 6h7v5h-7V6zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM3 16.59C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18H3v-1.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" +}, "1")], 'ContactMailTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPage.js b/packages/material-ui-icons/lib/esm/ContactPage.js new file mode 100644 index 00000000000000..c6dc99deaf75ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-2 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V18z" +}), 'ContactPage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPageOutlined.js b/packages/material-ui-icons/lib/esm/ContactPageOutlined.js new file mode 100644 index 00000000000000..b61417abb5be00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-2 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 15.9 8 16.62 8 17.43V18h8v-.57z" +}), 'ContactPageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPageRounded.js b/packages/material-ui-icons/lib/esm/ContactPageRounded.js new file mode 100644 index 00000000000000..94caa25a3461ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.17 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V18z" +}), 'ContactPageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPageSharp.js b/packages/material-ui-icons/lib/esm/ContactPageSharp.js new file mode 100644 index 00000000000000..7a347fb3bcf8ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm-2 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V18z" +}), 'ContactPageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPageTwoTone.js b/packages/material-ui-icons/lib/esm/ContactPageTwoTone.js new file mode 100644 index 00000000000000..b0b6eb94381b96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.17 4 18 8.83V20H6V4h7.17M12 14c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 15.9 8 16.62 8 17.43V18h8v-.57z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-2 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 15.9 8 16.62 8 17.43V18h8v-.57z" +}, "1")], 'ContactPageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPhone.js b/packages/material-ui-icons/lib/esm/ContactPhone.js new file mode 100644 index 00000000000000..86f921b1a8b08e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPhone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z" +}), 'ContactPhone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPhoneOutlined.js b/packages/material-ui-icons/lib/esm/ContactPhoneOutlined.js new file mode 100644 index 00000000000000..591b387f4ddb92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPhoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zm-2.99-1.01L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" +}), 'ContactPhoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPhoneRounded.js b/packages/material-ui-icons/lib/esm/ContactPhoneRounded.js new file mode 100644 index 00000000000000..1f9d5e373c87b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPhoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.39c.16 0 .3.07.4.2l1.1 1.45c.15.2.13.48-.05.65l-1.36 1.36c-.18.18-.48.2-.67.04a7.557 7.557 0 0 1-2.38-3.71c-.18-.63-.28-1.3-.28-1.99s.1-1.36.28-2c.41-1.47 1.25-2.75 2.38-3.71.2-.17.49-.14.67.04l1.36 1.36c.18.18.2.46.05.65l-1.1 1.45c-.09.13-.24.2-.4.2h-1.39c-.22.63-.35 1.3-.35 2s.13 1.38.35 2.01z" +}), 'ContactPhoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPhoneSharp.js b/packages/material-ui-icons/lib/esm/ContactPhoneSharp.js new file mode 100644 index 00000000000000..9c142638f815cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPhoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.99 3H0v18h24l-.01-18zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z" +}), 'ContactPhoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactPhoneTwoTone.js b/packages/material-ui-icons/lib/esm/ContactPhoneTwoTone.js new file mode 100644 index 00000000000000..09ca35be42da04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactPhoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 5H2v14h20V5zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H3v-1.41C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18zm2.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 21h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2zM2 5h20v14H2V5zm17.49 5L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 5c-2.03 0-6 1.08-6 3.58V18h12v-1.41C15 14.08 11.03 13 9 13zm-3.52 3c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z" +}, "1")], 'ContactPhoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactSupport.js b/packages/material-ui-icons/lib/esm/ContactSupport.js new file mode 100644 index 00000000000000..0c026b16089ca7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactSupport.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" +}), 'ContactSupport'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactSupportOutlined.js b/packages/material-ui-icons/lib/esm/ContactSupportOutlined.js new file mode 100644 index 00000000000000..f6237cf5cb29f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactSupportOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 23.59v-3.6c-5.01-.26-9-4.42-9-9.49C2 5.26 6.26 1 11.5 1S21 5.26 21 10.5c0 4.95-3.44 9.93-8.57 12.4l-1.43.69zM11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm-1 11.5h2v2h-2zm2-1.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" +}), 'ContactSupportOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactSupportRounded.js b/packages/material-ui-icons/lib/esm/ContactSupportRounded.js new file mode 100644 index 00000000000000..b2668ab9989954 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactSupportRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm.4-4.78c-.01.01-.02.03-.03.05-.05.08-.1.16-.14.24-.02.03-.03.07-.04.11-.03.07-.06.14-.08.21-.07.21-.1.43-.1.68H10.5c0-.51.08-.94.2-1.3 0-.01 0-.02.01-.03.01-.04.04-.06.05-.1.06-.16.13-.3.22-.44.03-.05.07-.1.1-.15.03-.04.05-.09.08-.12l.01.01c.84-1.1 2.21-1.44 2.32-2.68.09-.98-.61-1.93-1.57-2.13-1.04-.22-1.98.39-2.3 1.28-.14.36-.47.65-.88.65h-.2c-.6 0-1.04-.59-.87-1.17.55-1.82 2.37-3.09 4.43-2.79 1.69.25 3.04 1.64 3.33 3.33.44 2.44-1.63 3.03-2.53 4.35z" +}), 'ContactSupportRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactSupportSharp.js b/packages/material-ui-icons/lib/esm/ContactSupportSharp.js new file mode 100644 index 00000000000000..78696ad5272684 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactSupportSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" +}), 'ContactSupportSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactSupportTwoTone.js b/packages/material-ui-icons/lib/esm/ContactSupportTwoTone.js new file mode 100644 index 00000000000000..5000e2f5f883e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactSupportTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm1 13.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.5 1C6.26 1 2 5.26 2 10.5c0 5.07 3.99 9.23 9 9.49v3.6l1.43-.69C17.56 20.43 21 15.45 21 10.5 21 5.26 16.74 1 11.5 1zM13 20.3V18h-1.5C7.36 18 4 14.64 4 10.5S7.36 3 11.5 3 19 6.36 19 10.5c0 3.73-2.36 7.51-6 9.8zm-2.5-5.8h2v2h-2zm1-10.5c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" +}, "1")], 'ContactSupportTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Contactless.js b/packages/material-ui-icons/lib/esm/Contactless.js new file mode 100644 index 00000000000000..1c247cf7883e22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Contactless.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86-.01-.63-.14-1.24-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z" +}), 'Contactless'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactlessOutlined.js b/packages/material-ui-icons/lib/esm/ContactlessOutlined.js new file mode 100644 index 00000000000000..39e42996c84a37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactlessOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.1 10.18c.26.56.39 1.16.4 1.8.01.63-.13 1.25-.4 1.86l1.37.62c.37-.81.55-1.65.54-2.5-.01-.84-.19-1.65-.54-2.4l-1.37.62zm6.23-2.85c.78 1.57 1.18 3.14 1.18 4.64 0 1.51-.4 3.09-1.18 4.69l1.35.66c.88-1.81 1.33-3.61 1.33-5.35 0-1.74-.45-3.53-1.33-5.31l-1.35.67zM10.2 8.72c.53 1.07.8 2.21.8 3.4 0 1.17-.26 2.23-.78 3.15l1.3.74c.65-1.15.98-2.45.98-3.89 0-1.42-.32-2.79-.96-4.07l-1.34.67z" +}, "1")], 'ContactlessOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactlessRounded.js b/packages/material-ui-icons/lib/esm/ContactlessRounded.js new file mode 100644 index 00000000000000..a88de24a9d62e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactlessRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.75 13.68c-.13.43-.62.63-1.02.45a.749.749 0 0 1-.4-.9c.12-.41.18-.83.17-1.24-.01-.41-.06-.8-.17-1.18-.1-.36.06-.75.4-.9.42-.19.91.04 1.04.49.15.51.22 1.03.23 1.57 0 .56-.08 1.14-.25 1.71zm3.14 1.59c-.17.41-.67.57-1.06.35-.33-.19-.46-.59-.32-.94.33-.77.49-1.63.49-2.56 0-.96-.18-1.89-.53-2.78-.14-.36.02-.76.36-.94.39-.2.87-.02 1.03.39.42 1.06.63 2.18.63 3.33.02 1.13-.19 2.19-.6 3.15zM15 16.6c-.17.4-.64.58-1.02.39-.35-.17-.52-.59-.37-.95.59-1.39.89-2.75.89-4.06 0-1.31-.3-2.65-.88-4.01-.16-.36.01-.78.36-.95.39-.2.85-.02 1.02.38.66 1.54 1 3.08 1 4.58s-.34 3.06-1 4.62z" +}), 'ContactlessRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactlessSharp.js b/packages/material-ui-icons/lib/esm/ContactlessSharp.js new file mode 100644 index 00000000000000..27fa3eafcfcc8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactlessSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86-.01-.63-.14-1.24-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z" +}), 'ContactlessSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactlessTwoTone.js b/packages/material-ui-icons/lib/esm/ContactlessTwoTone.js new file mode 100644 index 00000000000000..9c697960a4a247 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactlessTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86-.01-.63-.14-1.24-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.1 10.18c.26.56.39 1.16.4 1.8.01.63-.13 1.25-.4 1.86l1.37.62c.37-.81.55-1.65.54-2.5-.01-.84-.19-1.65-.54-2.4l-1.37.62zm6.23-2.85c.78 1.57 1.18 3.14 1.18 4.64 0 1.51-.4 3.09-1.18 4.69l1.35.66c.88-1.81 1.33-3.61 1.33-5.35 0-1.74-.45-3.53-1.33-5.31l-1.35.67zM10.2 8.72c.53 1.07.8 2.21.8 3.4 0 1.17-.26 2.23-.78 3.15l1.3.74c.65-1.15.98-2.45.98-3.89 0-1.42-.32-2.79-.96-4.07l-1.34.67z" +}, "2")], 'ContactlessTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Contacts.js b/packages/material-ui-icons/lib/esm/Contacts.js new file mode 100644 index 00000000000000..97eaa1687c6b9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Contacts.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 0H4v2h16V0zM4 24h16v-2H4v2zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" +}), 'Contacts'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactsOutlined.js b/packages/material-ui-icons/lib/esm/ContactsOutlined.js new file mode 100644 index 00000000000000..40c0bb743f9011 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM4 0h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 7.49C17 13.9 13.69 13 12 13s-5 .9-5 2.99V17h10v-1.01zm-8.19-.49c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z" +}), 'ContactsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactsRounded.js b/packages/material-ui-icons/lib/esm/ContactsRounded.js new file mode 100644 index 00000000000000..eae08f02503113 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 0H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 24h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" +}), 'ContactsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactsSharp.js b/packages/material-ui-icons/lib/esm/ContactsSharp.js new file mode 100644 index 00000000000000..d0f07abe6bbdc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 0H4v2h16V0zM4 24h16v-2H4v2zM22 4H2v16h20V4zM12 6.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" +}), 'ContactsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContactsTwoTone.js b/packages/material-ui-icons/lib/esm/ContactsTwoTone.js new file mode 100644 index 00000000000000..ff1c125c4c006f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContactsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6H4v12h16V6zm-8 1c1.38 0 2.5 1.12 2.5 2.5S13.38 12 12 12s-2.5-1.12-2.5-2.5S10.62 7 12 7zm5 10H7v-1.01C7 13.9 10.31 13 12 13s5 .9 5 2.99V17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h16v12H4V6zm0-6h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4.5c-1.69 0-5 .9-5 2.99V17h10v-1.01C17 13.9 13.69 13 12 13zm-3.19 2.5c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z" +}, "1")], 'ContactsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCopy.js b/packages/material-ui-icons/lib/esm/ContentCopy.js new file mode 100644 index 00000000000000..d720099bb129d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCopy.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" +}), 'ContentCopy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCopyOutlined.js b/packages/material-ui-icons/lib/esm/ContentCopyOutlined.js new file mode 100644 index 00000000000000..6a9bae20c70598 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCopyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" +}), 'ContentCopyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCopyRounded.js b/packages/material-ui-icons/lib/esm/ContentCopyRounded.js new file mode 100644 index 00000000000000..97efc6543682c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCopyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 20H5V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h10c.55 0 1-.45 1-1s-.45-1-1-1zm5-4V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2zm-2 0H9V4h9v12z" +}), 'ContentCopyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCopySharp.js b/packages/material-ui-icons/lib/esm/ContentCopySharp.js new file mode 100644 index 00000000000000..59e260e21238ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCopySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H2v16h2V3h12V1zm5 4H6v18h15V5zm-2 16H8V7h11v14z" +}), 'ContentCopySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCopyTwoTone.js b/packages/material-ui-icons/lib/esm/ContentCopyTwoTone.js new file mode 100644 index 00000000000000..d9b1dfef8569b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCopyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 7h11v14H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" +}, "1")], 'ContentCopyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCut.js b/packages/material-ui-icons/lib/esm/ContentCut.js new file mode 100644 index 00000000000000..f44597ccd004b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCut.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3z" +}), 'ContentCut'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCutOutlined.js b/packages/material-ui-icons/lib/esm/ContentCutOutlined.js new file mode 100644 index 00000000000000..feae10e2682ed1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCutOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z" +}), 'ContentCutOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCutRounded.js b/packages/material-ui-icons/lib/esm/ContentCutRounded.js new file mode 100644 index 00000000000000..8875e0a5690fb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCutRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.64 7.64c.29-.62.42-1.33.34-2.09-.19-1.73-1.54-3.2-3.26-3.49-2.77-.48-5.14 1.89-4.66 4.65.3 1.72 1.76 3.07 3.49 3.26.76.08 1.46-.05 2.09-.34L10 12l-2.36 2.36c-.62-.29-1.33-.42-2.09-.34-1.73.19-3.2 1.54-3.49 3.26-.48 2.77 1.89 5.13 4.65 4.65 1.72-.3 3.07-1.76 3.26-3.49.08-.76-.05-1.46-.34-2.09L12 14l7.59 7.59c.89.89 2.41.26 2.41-1v-.01c0-.37-.15-.73-.41-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm7.59-10.09L13 9l2 2 6.59-6.59c.26-.26.41-.62.41-1V3.4c0-1.25-1.52-1.88-2.41-.99z" +}), 'ContentCutRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCutSharp.js b/packages/material-ui-icons/lib/esm/ContentCutSharp.js new file mode 100644 index 00000000000000..2633c0e868248d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCutSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z" +}), 'ContentCutSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentCutTwoTone.js b/packages/material-ui-icons/lib/esm/ContentCutTwoTone.js new file mode 100644 index 00000000000000..ecf6e86369226f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentCutTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 3-6 6 2 2 7-7V3zm-9 3c0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64c.23-.5.36-1.05.36-1.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-8.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" +}), 'ContentCutTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPaste.js b/packages/material-ui-icons/lib/esm/ContentPaste.js new file mode 100644 index 00000000000000..30d0ba30456745 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPaste.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" +}), 'ContentPaste'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteOff.js b/packages/material-ui-icons/lib/esm/ContentPasteOff.js new file mode 100644 index 00000000000000..5f7e88f9b8ef67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'ContentPasteOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteOffOutlined.js b/packages/material-ui-icons/lib/esm/ContentPasteOffOutlined.js new file mode 100644 index 00000000000000..d46c0e658b292b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'ContentPasteOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteOffRounded.js b/packages/material-ui-icons/lib/esm/ContentPasteOffRounded.js new file mode 100644 index 00000000000000..61a682865d719e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.9.91V19c0 1.1.9 2 2 2h13.17l.9.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'ContentPasteOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteOffSharp.js b/packages/material-ui-icons/lib/esm/ContentPasteOffSharp.js new file mode 100644 index 00000000000000..18732541966a82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'ContentPasteOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteOffTwoTone.js b/packages/material-ui-icons/lib/esm/ContentPasteOffTwoTone.js new file mode 100644 index 00000000000000..103a107ba68236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.83 8H17V5h2v11.17L10.83 8zM5 19V7.83L16.17 19H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "1")], 'ContentPasteOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteOutlined.js b/packages/material-ui-icons/lib/esm/ContentPasteOutlined.js new file mode 100644 index 00000000000000..500a05fd8d0d3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" +}), 'ContentPasteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteRounded.js b/packages/material-ui-icons/lib/esm/ContentPasteRounded.js new file mode 100644 index 00000000000000..610714f3935c01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 18H6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h1v1c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V4h1c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1z" +}), 'ContentPasteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteSharp.js b/packages/material-ui-icons/lib/esm/ContentPasteSharp.js new file mode 100644 index 00000000000000..f0b0972fa197f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2h-6.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H3v20h18V2zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" +}), 'ContentPasteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ContentPasteTwoTone.js b/packages/material-ui-icons/lib/esm/ContentPasteTwoTone.js new file mode 100644 index 00000000000000..cf5a7bcaf42a26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ContentPasteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 7H7V4H5v16h14V4h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" +}, "1")], 'ContentPasteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlCamera.js b/packages/material-ui-icons/lib/esm/ControlCamera.js new file mode 100644 index 00000000000000..c8716f05b190ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlCamera.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.54 5.54 13.77 7.3 12 5.54 10.23 7.3 8.46 5.54 12 2zm2.92 10-1.76-1.77L18.46 12l-1.76-1.77 1.76-1.77L22 12zm-10 2.92 1.77-1.76L12 18.46l1.77-1.76 1.77 1.76L12 22zm-2.92-10 1.76 1.77L5.54 12l1.76 1.77-1.76 1.77L2 12z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'ControlCamera'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlCameraOutlined.js b/packages/material-ui-icons/lib/esm/ControlCameraOutlined.js new file mode 100644 index 00000000000000..b8150130695190 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlCameraOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.54 8.46 2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92 1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'ControlCameraOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlCameraRounded.js b/packages/material-ui-icons/lib/esm/ControlCameraRounded.js new file mode 100644 index 00000000000000..7a13722b995fc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlCameraRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.65 9.35 2.7 11.3c-.39.39-.39 1.02 0 1.41l1.95 1.95c.49.49 1.28.49 1.77 0 .48-.49.48-1.27 0-1.76l-.88-.9.88-.89c.48-.49.48-1.27 0-1.76s-1.28-.49-1.77 0zm12.93 0c-.48.49-.48 1.27 0 1.76l.88.89-.88.89c-.48.49-.48 1.27 0 1.76.49.49 1.28.49 1.77 0l1.95-1.95c.39-.39.39-1.02 0-1.41l-1.95-1.95c-.49-.48-1.29-.48-1.77.01zM12 18.46l-.89-.88c-.49-.48-1.27-.48-1.76 0-.49.49-.49 1.28 0 1.77l1.95 1.95c.39.39 1.02.39 1.41 0l1.95-1.95c.49-.49.49-1.28 0-1.77-.49-.48-1.27-.48-1.76 0l-.9.88zM9.35 6.42c.49.48 1.27.48 1.76 0l.89-.88.89.88c.49.48 1.27.48 1.76 0 .49-.49.49-1.28 0-1.77L12.7 2.7a.9959.9959 0 0 0-1.41 0L9.35 4.65c-.49.49-.49 1.29 0 1.77z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'ControlCameraRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlCameraSharp.js b/packages/material-ui-icons/lib/esm/ControlCameraSharp.js new file mode 100644 index 00000000000000..0c4e159ad22032 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlCameraSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.54 8.46 2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm12.92 0-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-6.46 10-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zM8.46 5.54l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'ControlCameraSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlCameraTwoTone.js b/packages/material-ui-icons/lib/esm/ControlCameraTwoTone.js new file mode 100644 index 00000000000000..1911690a410b46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlCameraTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.3 13.77 5.54 12l1.76-1.77-1.76-1.77L2 12l3.54 3.54zm8.24 4.69-1.77-1.76L12 18.46l-1.77-1.76-1.77 1.76L12 22zm2.92-2.92L22 12l-3.54-3.54-1.76 1.77L18.46 12l-1.76 1.77zM12 5.54l1.77 1.76 1.77-1.76L12 2 8.46 5.54l1.77 1.76z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'ControlCameraTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPoint.js b/packages/material-ui-icons/lib/esm/ControlPoint.js new file mode 100644 index 00000000000000..95c98d68b00545 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPoint.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'ControlPoint'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointDuplicate.js b/packages/material-ui-icons/lib/esm/ControlPointDuplicate.js new file mode 100644 index 00000000000000..399a7e27e01f45 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointDuplicate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'ControlPointDuplicate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointDuplicateOutlined.js b/packages/material-ui-icons/lib/esm/ControlPointDuplicateOutlined.js new file mode 100644 index 00000000000000..5e9a0104fd5730 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointDuplicateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'ControlPointDuplicateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointDuplicateRounded.js b/packages/material-ui-icons/lib/esm/ControlPointDuplicateRounded.js new file mode 100644 index 00000000000000..668e09f391403f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointDuplicateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 8c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V9c0-.55-.45-1-1-1zM2 12c0-2.58 1.4-4.83 3.48-6.04.32-.19.53-.51.53-.88 0-.77-.84-1.25-1.51-.86C1.82 5.78 0 8.68 0 12s1.82 6.22 4.5 7.78c.67.39 1.51-.09 1.51-.86 0-.37-.21-.69-.53-.88C3.4 16.83 2 14.58 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'ControlPointDuplicateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointDuplicateSharp.js b/packages/material-ui-icons/lib/esm/ControlPointDuplicateSharp.js new file mode 100644 index 00000000000000..e2e062a5680dec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointDuplicateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'ControlPointDuplicateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointDuplicateTwoTone.js b/packages/material-ui-icons/lib/esm/ControlPointDuplicateTwoTone.js new file mode 100644 index 00000000000000..a9f23b5f3139c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointDuplicateTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 5c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3h-3v-2h3V8h2v3h3v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zm-1-5c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12z" +}, "1")], 'ControlPointDuplicateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointOutlined.js b/packages/material-ui-icons/lib/esm/ControlPointOutlined.js new file mode 100644 index 00000000000000..81a3e7fb0bcdc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'ControlPointOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointRounded.js b/packages/material-ui-icons/lib/esm/ControlPointRounded.js new file mode 100644 index 00000000000000..3f6217b5a48b4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'ControlPointRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointSharp.js b/packages/material-ui-icons/lib/esm/ControlPointSharp.js new file mode 100644 index 00000000000000..f7f444405747e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'ControlPointSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ControlPointTwoTone.js b/packages/material-ui-icons/lib/esm/ControlPointTwoTone.js new file mode 100644 index 00000000000000..394483c4efda94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ControlPointTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-13h-2v4H7v2h4v4h2v-4h4v-2h-4z" +}, "1")], 'ControlPointTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyAll.js b/packages/material-ui-icons/lib/esm/CopyAll.js new file mode 100644 index 00000000000000..2504a968782213 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyAll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" +}), 'CopyAll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyAllOutlined.js b/packages/material-ui-icons/lib/esm/CopyAllOutlined.js new file mode 100644 index 00000000000000..9ece7f3a0af2c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyAllOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" +}), 'CopyAllOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyAllRounded.js b/packages/material-ui-icons/lib/esm/CopyAllRounded.js new file mode 100644 index 00000000000000..2e5d4a28c03862 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyAllRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" +}), 'CopyAllRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyAllSharp.js b/packages/material-ui-icons/lib/esm/CopyAllSharp.js new file mode 100644 index 00000000000000..b1491e116c00e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyAllSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H7v16h13V2zm-2 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22H3v-2h2v2zm3.5 0h-2v-2h2v2zm7 0h-2v-2h2v2zM3 6h2v2H3V6z" +}), 'CopyAllSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyAllTwoTone.js b/packages/material-ui-icons/lib/esm/CopyAllTwoTone.js new file mode 100644 index 00000000000000..3e7477f46cc5ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyAllTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 4h9v12H9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H9c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22c-1.1 0-2-.9-2-2h2v2zm3.5 0h-2v-2h2v2zm5 0v-2h2c0 1.1-.9 2-2 2zM5 6v2H3c0-1.1.9-2 2-2z" +}, "1")], 'CopyAllTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Copyright.js b/packages/material-ui-icons/lib/esm/Copyright.js new file mode 100644 index 00000000000000..f861023e64c016 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Copyright.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.88 9.14c1.28.06 1.61 1.15 1.63 1.66h1.79c-.08-1.98-1.49-3.19-3.45-3.19C9.64 7.61 8 9 8 12.14c0 1.94.93 4.24 3.84 4.24 2.22 0 3.41-1.65 3.44-2.95h-1.79c-.03.59-.45 1.38-1.63 1.44-1.31-.04-1.86-1.06-1.86-2.73 0-2.89 1.28-2.98 1.88-3zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'Copyright'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyrightOutlined.js b/packages/material-ui-icons/lib/esm/CopyrightOutlined.js new file mode 100644 index 00000000000000..ad572fa8aa2064 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyrightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'CopyrightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyrightRounded.js b/packages/material-ui-icons/lib/esm/CopyrightRounded.js new file mode 100644 index 00000000000000..2742b3d9fdb3e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyrightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'CopyrightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyrightSharp.js b/packages/material-ui-icons/lib/esm/CopyrightSharp.js new file mode 100644 index 00000000000000..ac2c28bedbe77f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyrightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'CopyrightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CopyrightTwoTone.js b/packages/material-ui-icons/lib/esm/CopyrightTwoTone.js new file mode 100644 index 00000000000000..73d08236a110bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CopyrightTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1.92 9.14c.05.33.16.63.3.88s.34.46.59.62c.23.15.53.22.89.23.21-.01.41-.03.6-.1.2-.07.37-.17.52-.3.15-.13.27-.28.36-.46.09-.18.14-.37.15-.58h1.79c-.01.41-.12.79-.3 1.15-.18.36-.43.67-.74.94-.31.27-.67.48-1.08.63-.41.15-.85.23-1.32.23-.65 0-1.22-.12-1.7-.34-.48-.22-.88-.53-1.2-.91s-.56-.83-.71-1.35c-.15-.52-.23-1.06-.23-1.64v-.27c0-.58.09-1.12.24-1.64.15-.52.39-.97.71-1.36s.72-.69 1.2-.92c.48-.23 1.05-.34 1.7-.34.51 0 .97.07 1.39.23.42.16.78.38 1.08.66.3.28.53.62.7 1.01.17.39.26.82.28 1.29h-1.79c-.01-.22-.05-.44-.14-.64-.09-.2-.2-.38-.34-.53-.14-.15-.32-.27-.52-.36-.19-.08-.4-.12-.63-.13-.37.01-.67.08-.91.23-.25.16-.45.37-.59.62s-.25.54-.3.87c-.05.33-.08.66-.08 1.01v.27c0 .33.03.67.08 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53c.09.2.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29-.17-.39-.4-.73-.7-1.01-.3-.28-.66-.5-1.08-.66-.42-.16-.88-.23-1.39-.23-.65 0-1.22.11-1.7.34-.48.23-.88.53-1.2.92s-.56.84-.71 1.36c-.15.52-.24 1.06-.24 1.64v.27c0 .58.08 1.12.23 1.64.15.52.39.97.71 1.35s.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23.41-.15.77-.36 1.08-.63.31-.27.56-.58.74-.94.18-.36.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58-.09.18-.21.33-.36.46s-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88c-.05-.33-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'CopyrightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Coronavirus.js b/packages/material-ui-icons/lib/esm/Coronavirus.js new file mode 100644 index 00000000000000..530f32c4e8686d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Coronavirus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.25 10.5c-.41 0-.75.34-.75.75h-1.54c-.15-1.37-.69-2.63-1.52-3.65l1.09-1.09.01.01c.29.29.77.29 1.06 0s.29-.77 0-1.06L18.54 4.4c-.29-.29-.77-.29-1.06 0-.29.29-.29.76-.01 1.05l-1.09 1.09a7.015 7.015 0 0 0-3.64-1.51V3.5h.01c.41 0 .75-.34.75-.75S13.16 2 12.75 2h-1.5c-.41 0-.75.34-.75.75s.33.74.74.75v1.55c-1.37.14-2.62.69-3.64 1.51L6.51 5.47l.01-.01c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0L4.4 5.46c-.29.29-.29.77 0 1.06.29.29.76.29 1.05.01l1.09 1.09c-.82 1.02-1.36 2.26-1.5 3.63H3.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.5c0 .41.34.75.75.75s.75-.34.75-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09c-.29-.29-.76-.28-1.05.01-.29.29-.29.77 0 1.06l1.06 1.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.55c-.41.01-.74.34-.74.75s.34.75.75.75h1.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09c-.29.29-.28.76.01 1.05.29.29.77.29 1.06 0l1.06-1.06c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-.01.01-1.09-1.09c.82-1.02 1.37-2.27 1.52-3.65h1.54c0 .41.34.75.75.75s.75-.34.75-.75v-1.5c.01-.4-.33-.74-.74-.74zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1.75-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3.5 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm.75-4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" +}), 'Coronavirus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoronavirusOutlined.js b/packages/material-ui-icons/lib/esm/CoronavirusOutlined.js new file mode 100644 index 00000000000000..f892bd267b9f69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoronavirusOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4.25-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3.5 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM22 11.25v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75h-1.54c-.15 1.37-.69 2.63-1.52 3.65l1.09 1.09.01-.01c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-1.06 1.06c-.29.29-.77.29-1.06 0-.29-.29-.29-.76-.01-1.05l-1.09-1.09a7.015 7.015 0 0 1-3.64 1.51v1.54h.01c.41 0 .75.34.75.75s-.34.75-.75.75h-1.5c-.41 0-.75-.34-.75-.75s.33-.74.74-.75v-1.55c-1.37-.15-2.62-.69-3.63-1.51l-1.09 1.09.01.01c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0L4.4 18.54c-.29-.29-.29-.77 0-1.06.29-.29.76-.29 1.05-.01l1.09-1.09c-.82-1.02-1.36-2.26-1.5-3.63H3.5c0 .41-.34.75-.75.75S2 13.16 2 12.75v-1.5c0-.41.34-.75.75-.75s.75.34.75.75h1.54c.15-1.37.69-2.61 1.5-3.63L5.45 6.53c-.29.28-.76.28-1.05-.01-.29-.29-.29-.77 0-1.06L5.46 4.4c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.01.01L7.6 6.56c1.02-.82 2.26-1.36 3.63-1.51V3.5c-.41-.01-.74-.34-.74-.75.01-.41.35-.75.76-.75h1.5c.41 0 .75.34.75.75s-.34.75-.75.75h-.01v1.54c1.37.14 2.62.69 3.64 1.51l1.09-1.09c-.29-.29-.28-.76.01-1.05.29-.29.77-.29 1.06 0l1.06 1.06c.29.29.29.77 0 1.06s-.77.29-1.06 0l-.01-.01-1.09 1.08c.82 1.02 1.37 2.27 1.52 3.65h1.54c0-.41.34-.75.75-.75s.75.34.75.75zM17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.5 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.75 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'CoronavirusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoronavirusRounded.js b/packages/material-ui-icons/lib/esm/CoronavirusRounded.js new file mode 100644 index 00000000000000..c75acf08e810b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoronavirusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.25 10.5c-.41 0-.75.34-.75.75h-1.54c-.15-1.37-.69-2.63-1.52-3.65l1.09-1.09.01.01c.29.29.77.29 1.06 0s.29-.77 0-1.06L18.54 4.4c-.29-.29-.77-.29-1.06 0-.29.29-.29.76-.01 1.05l-1.09 1.09a7.015 7.015 0 0 0-3.64-1.51V3.5h.01c.41 0 .75-.34.75-.75S13.16 2 12.75 2h-1.5c-.41 0-.75.34-.75.75s.33.74.74.75v1.55c-1.37.14-2.62.69-3.64 1.51L6.51 5.47l.01-.01c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0L4.4 5.46c-.29.29-.29.77 0 1.06.29.29.76.29 1.05.01l1.09 1.09c-.82 1.02-1.36 2.26-1.5 3.63H3.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.5c0 .41.34.75.75.75s.75-.34.75-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09c-.29-.29-.76-.28-1.05.01-.29.29-.29.77 0 1.06l1.06 1.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.55c-.41.01-.74.34-.74.75s.34.75.75.75h1.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.01v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09c-.29.29-.28.76.01 1.05.29.29.77.29 1.06 0l1.06-1.06c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-.01.01-1.09-1.09c.82-1.02 1.37-2.27 1.52-3.65h1.54c0 .41.34.75.75.75s.75-.34.75-.75v-1.5c.01-.4-.33-.74-.74-.74zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1.75-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3.5 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm.75-4c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" +}), 'CoronavirusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoronavirusSharp.js b/packages/material-ui-icons/lib/esm/CoronavirusSharp.js new file mode 100644 index 00000000000000..fcb4557a75598b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoronavirusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 10.5v.75h-1.54c-.15-1.37-.69-2.63-1.52-3.65l1.09-1.09.01.01.53.53 1.06-1.06-2.12-2.12-1.06 1.06.52.52-1.09 1.09a7.015 7.015 0 0 0-3.64-1.51V3.5h.76V2h-3v1.5h.74v1.54c-1.37.15-2.62.7-3.64 1.52L6.51 5.47l.01-.01.53-.53-1.06-1.06-2.12 2.12 1.06 1.06.52-.52 1.09 1.09c-.82 1.02-1.36 2.26-1.5 3.63H3.5v-.75H2v3h1.5v-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09-.52-.52-1.06 1.06 2.12 2.12 1.06-1.06-.53-.53-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.54h-.73V22h3v-1.5h-.76v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09-.52.52 1.06 1.06L20.13 18l-1.06-1.06-.53.53-.01.01-1.09-1.09c.82-1.02 1.37-2.27 1.52-3.65h1.54v.75H22v-3h-1.5zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3.5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'CoronavirusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CoronavirusTwoTone.js b/packages/material-ui-icons/lib/esm/CoronavirusTwoTone.js new file mode 100644 index 00000000000000..2feeccf130ecf4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CoronavirusTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.75 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3.5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.5 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4.25-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3.5 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM22 11.25v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75h-1.54c-.15 1.37-.69 2.63-1.52 3.65l1.09 1.09.01-.01c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-1.06 1.06c-.29.29-.77.29-1.06 0-.29-.29-.29-.76-.01-1.05l-1.09-1.09a7.015 7.015 0 0 1-3.64 1.51v1.54h.01c.41 0 .75.34.75.75s-.34.75-.75.75h-1.5c-.41 0-.75-.34-.75-.75s.33-.74.74-.75v-1.55c-1.37-.15-2.62-.69-3.63-1.51l-1.09 1.09.01.01c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0L4.4 18.54c-.29-.29-.29-.77 0-1.06.29-.29.76-.29 1.05-.01l1.09-1.09c-.82-1.02-1.36-2.26-1.5-3.63H3.5c0 .41-.34.75-.75.75S2 13.16 2 12.75v-1.5c0-.41.34-.75.75-.75s.75.34.75.75h1.54c.15-1.37.69-2.61 1.5-3.63L5.45 6.53c-.29.28-.76.28-1.05-.01-.29-.29-.29-.77 0-1.06L5.46 4.4c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.01.01L7.6 6.56c1.02-.82 2.26-1.36 3.63-1.51V3.5c-.41-.01-.74-.34-.74-.75.01-.41.35-.75.76-.75h1.5c.41 0 .75.34.75.75s-.34.75-.75.75h-.01v1.54c1.37.14 2.62.69 3.64 1.51l1.09-1.09c-.29-.29-.28-.76.01-1.05.29-.29.77-.29 1.06 0l1.06 1.06c.29.29.29.77 0 1.06s-.77.29-1.06 0l-.01-.01-1.09 1.08c.82 1.02 1.37 2.27 1.52 3.65h1.54c0-.41.34-.75.75-.75s.75.34.75.75zM17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.5 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.75 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}, "1")], 'CoronavirusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CorporateFare.js b/packages/material-ui-icons/lib/esm/CorporateFare.js new file mode 100644 index 00000000000000..ce4f4e8824dc80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CorporateFare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" +}), 'CorporateFare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CorporateFareOutlined.js b/packages/material-ui-icons/lib/esm/CorporateFareOutlined.js new file mode 100644 index 00000000000000..50e93673a29eec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CorporateFareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" +}), 'CorporateFareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CorporateFareRounded.js b/packages/material-ui-icons/lib/esm/CorporateFareRounded.js new file mode 100644 index 00000000000000..2e25e112006c20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CorporateFareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" +}), 'CorporateFareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CorporateFareSharp.js b/packages/material-ui-icons/lib/esm/CorporateFareSharp.js new file mode 100644 index 00000000000000..10f1e042d7f4ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CorporateFareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" +}), 'CorporateFareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CorporateFareTwoTone.js b/packages/material-ui-icons/lib/esm/CorporateFareTwoTone.js new file mode 100644 index 00000000000000..ceed48d727cbf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CorporateFareTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 19H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" +}, "1")], 'CorporateFareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Cottage.js b/packages/material-ui-icons/lib/esm/Cottage.js new file mode 100644 index 00000000000000..c419a520488432 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Cottage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h7v-6h2v6h7v-9.38l1.79 1.36L23 11.4 12 3zm-2-2c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" +}), 'Cottage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CottageOutlined.js b/packages/material-ui-icons/lib/esm/CottageOutlined.js new file mode 100644 index 00000000000000..16658f5a04d98a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CottageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16h-5v-4h-2v4H6v-8.9l6-4.58 6 4.58V19zM10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" +}), 'CottageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CottageRounded.js b/packages/material-ui-icons/lib/esm/CottageRounded.js new file mode 100644 index 00000000000000..5137e36cb53a75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CottageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.39 12.19c.34-.44.25-1.07-.19-1.4l-9.6-7.33c-.36-.27-.86-.27-1.21 0L6 7.58V7c0-.55-.45-1-1-1s-1 .45-1 1v2.11l-2.21 1.68c-.44.33-.52.96-.19 1.4.34.44.96.52 1.4.19l1-.76V20c0 .55.45 1 1 1h6v-5c0-.55.45-1 1-1s1 .45 1 1v5h6c.55 0 1-.45 1-1v-8.38l.99.76c.44.34 1.07.25 1.4-.19zM5.27 5c-.74 0-1.26-.8-.9-1.45C4.89 2.62 5.87 2 7 2c.38 0 .72-.22.89-.53.15-.31.5-.47.84-.47.74 0 1.26.8.9 1.45C9.11 3.38 8.13 4 7 4c-.38 0-.72.22-.89.53-.15.31-.5.47-.84.47z" +}), 'CottageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CottageSharp.js b/packages/material-ui-icons/lib/esm/CottageSharp.js new file mode 100644 index 00000000000000..6c42dc1cb3edb2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CottageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h7v-6h2v6h7v-9.38l1.79 1.36L23 11.4 12 3zm-2-2c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" +}), 'CottageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CottageTwoTone.js b/packages/material-ui-icons/lib/esm/CottageTwoTone.js new file mode 100644 index 00000000000000..24b0f96b16de1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CottageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 19h-5v-4h-2v4H6v-8.9l6-4.58 6 4.58z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3 6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16h-5v-4h-2v4H6v-8.9l6-4.58 6 4.58V19zM10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" +}, "1")], 'CottageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Countertops.js b/packages/material-ui-icons/lib/esm/Countertops.js new file mode 100644 index 00000000000000..f10d83defaf23b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Countertops.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2h-4zm-5 8h-2v-6h2v6z" +}), 'Countertops'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CountertopsOutlined.js b/packages/material-ui-icons/lib/esm/CountertopsOutlined.js new file mode 100644 index 00000000000000..2964bef0f39fc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CountertopsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10h-4V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2zM6 6h2v2H6V6zm0 12v-6h5v6H6zm12 0h-5v-6h5v6z" +}), 'CountertopsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CountertopsRounded.js b/packages/material-ui-icons/lib/esm/CountertopsRounded.js new file mode 100644 index 00000000000000..4f967654c9afa6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CountertopsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10V7.17c0-1.62-1.22-3.08-2.84-3.17-1.21-.06-2.27.59-2.8 1.57-.35.65.17 1.43.91 1.43h.01c.34 0 .68-.16.84-.46.16-.32.5-.54.88-.54.55 0 1 .45 1 1v3H8c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2H3c-.55 0-1 .45-1 1s.45 1 1 1h1v7c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-7h1c.55 0 1-.45 1-1s-.45-1-1-1h-3zm-5 8h-2v-6h2v6z" +}), 'CountertopsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CountertopsSharp.js b/packages/material-ui-icons/lib/esm/CountertopsSharp.js new file mode 100644 index 00000000000000..b3f1497f1c6dfb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CountertopsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2h-4zm-5 8h-2v-6h2v6z" +}), 'CountertopsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CountertopsTwoTone.js b/packages/material-ui-icons/lib/esm/CountertopsTwoTone.js new file mode 100644 index 00000000000000..b29e2b7944e1aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CountertopsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 6h2v2H6V6zm0 12v-6h5v6H6zm12 0h-5v-6h5v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 10h-4V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2zM6 6h2v2H6V6zm0 12v-6h5v6H6zm12 0h-5v-6h5v6z" +}, "1")], 'CountertopsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Create.js b/packages/material-ui-icons/lib/esm/Create.js new file mode 100644 index 00000000000000..7b03f6a7337876 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Create.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'Create'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateNewFolder.js b/packages/material-ui-icons/lib/esm/CreateNewFolder.js new file mode 100644 index 00000000000000..b1e1e5037ff279 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateNewFolder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z" +}), 'CreateNewFolder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateNewFolderOutlined.js b/packages/material-ui-icons/lib/esm/CreateNewFolderOutlined.js new file mode 100644 index 00000000000000..d8989ecd1cbd54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateNewFolderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z" +}), 'CreateNewFolderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateNewFolderRounded.js b/packages/material-ui-icons/lib/esm/CreateNewFolderRounded.js new file mode 100644 index 00000000000000..a1fc3ae5b404b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateNewFolderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2 8h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2h-2c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'CreateNewFolderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateNewFolderSharp.js b/packages/material-ui-icons/lib/esm/CreateNewFolderSharp.js new file mode 100644 index 00000000000000..e9479d66c05999 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateNewFolderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H12l-2-2H2v16h20V6zm-3 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z" +}), 'CreateNewFolderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateNewFolderTwoTone.js b/packages/material-ui-icons/lib/esm/CreateNewFolderTwoTone.js new file mode 100644 index 00000000000000..4493ecc3d62949 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateNewFolderTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.17 8-.59-.59L9.17 6H4v12h16V8h-8.83zM14 10h2v2h2v2h-2v2h-2v-2h-2v-2h2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z" +}, "1")], 'CreateNewFolderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateOutlined.js b/packages/material-ui-icons/lib/esm/CreateOutlined.js new file mode 100644 index 00000000000000..1bb6cdbc7e5344 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}), 'CreateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateRounded.js b/packages/material-ui-icons/lib/esm/CreateRounded.js new file mode 100644 index 00000000000000..c54b858d5449f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'CreateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateSharp.js b/packages/material-ui-icons/lib/esm/CreateSharp.js new file mode 100644 index 00000000000000..30e2ef0a05aba9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" +}), 'CreateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreateTwoTone.js b/packages/material-ui-icons/lib/esm/CreateTwoTone.js new file mode 100644 index 00000000000000..2998ae3e00cde0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreateTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}, "1")], 'CreateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCard.js b/packages/material-ui-icons/lib/esm/CreditCard.js new file mode 100644 index 00000000000000..1fcd7ecb9d056d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" +}), 'CreditCard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardOff.js b/packages/material-ui-icons/lib/esm/CreditCardOff.js new file mode 100644 index 00000000000000..4d0cd5ba37e57a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.9 21.9 2.1 2.1.69 3.51l1.55 1.55c-.15.28-.23.6-.23.94L2 18c0 1.11.89 2 2 2h13.17l3.31 3.31 1.42-1.41zM4 12V8h1.17l4 4H4zm2.83-8H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L14.83 12H20V8h-9.17l-4-4z" +}), 'CreditCardOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardOffOutlined.js b/packages/material-ui-icons/lib/esm/CreditCardOffOutlined.js new file mode 100644 index 00000000000000..07bb4a17a0890b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L20 17.17V12h-5.17l-4-4H20V6H8.83l-2-2zm13.66 19.31L17.17 20H4c-1.11 0-2-.89-2-2l.01-12c0-.34.08-.66.23-.93L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM4 6.83V8h1.17L4 6.83zM15.17 18l-6-6H4v6h11.17z" +}), 'CreditCardOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardOffRounded.js b/packages/material-ui-icons/lib/esm/CreditCardOffRounded.js new file mode 100644 index 00000000000000..38e0b20e5c4b57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l.84.84c-.14.28-.22.6-.22.94L2 18c0 1.11.89 2 2 2h13.17l2.61 2.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42zM4 12V8h1.17l4 4H4zm2.83-8H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L14.83 12H20V8h-9.17l-4-4z" +}), 'CreditCardOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardOffSharp.js b/packages/material-ui-icons/lib/esm/CreditCardOffSharp.js new file mode 100644 index 00000000000000..fca76254f1ed25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H22v15.17L14.83 12H20V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM9.17 12l-4-4H4v4h5.17z" +}), 'CreditCardOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardOffTwoTone.js b/packages/material-ui-icons/lib/esm/CreditCardOffTwoTone.js new file mode 100644 index 00000000000000..a25052417ddf8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 17.17V12h-5.17L20 17.17zM10.83 8H20V6H8.83l2 2zM4 6.83V8h1.17L4 6.83zM15.17 18l-6-6H4v6h11.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.83 4H20c1.11 0 2 .89 2 2v12c0 .34-.08.66-.23.94L20 17.17V12h-5.17l-4-4H20V6H8.83l-2-2zm13.66 19.31L17.17 20H4c-1.11 0-2-.89-2-2l.01-12c0-.34.08-.66.23-.93L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM4 6.83V8h1.17L4 6.83zM15.17 18l-6-6H4v6h11.17z" +}, "1")], 'CreditCardOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardOutlined.js b/packages/material-ui-icons/lib/esm/CreditCardOutlined.js new file mode 100644 index 00000000000000..82b235911ba519 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" +}), 'CreditCardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardRounded.js b/packages/material-ui-icons/lib/esm/CreditCardRounded.js new file mode 100644 index 00000000000000..926e28fd750f60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V6h16v2z" +}), 'CreditCardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardSharp.js b/packages/material-ui-icons/lib/esm/CreditCardSharp.js new file mode 100644 index 00000000000000..3c06a6f2203a9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2.01L2 20h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z" +}), 'CreditCardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditCardTwoTone.js b/packages/material-ui-icons/lib/esm/CreditCardTwoTone.js new file mode 100644 index 00000000000000..c9d7c4bf9b2ad3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditCardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 12h16v6H4zm0-6h16v2H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" +}, "1")], 'CreditCardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditScore.js b/packages/material-ui-icons/lib/esm/CreditScore.js new file mode 100644 index 00000000000000..6fbd527d41fe74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditScore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h5v-2H4v-6h18V6c0-1.11-.89-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" +}), 'CreditScore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditScoreOutlined.js b/packages/material-ui-icons/lib/esm/CreditScoreOutlined.js new file mode 100644 index 00000000000000..62b20242cb6726 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditScoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h5v-2H4v-6h18V6c0-1.11-.89-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" +}), 'CreditScoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditScoreRounded.js b/packages/material-ui-icons/lib/esm/CreditScoreRounded.js new file mode 100644 index 00000000000000..0f015d5b189658 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditScoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h4c.55 0 1-.45 1-1s-.45-1-1-1H4v-6h18V6c0-1.1-.9-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.12-2.12a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0l5.66-5.66c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-4.96 4.95z" +}), 'CreditScoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditScoreSharp.js b/packages/material-ui-icons/lib/esm/CreditScoreSharp.js new file mode 100644 index 00000000000000..7cac43b003d4b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditScoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 4v16h7v-2H4v-6h18V4H2zm18 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" +}), 'CreditScoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CreditScoreTwoTone.js b/packages/material-ui-icons/lib/esm/CreditScoreTwoTone.js new file mode 100644 index 00000000000000..949d670e0b7f75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CreditScoreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h5v-2H4v-6h18V6c0-1.11-.89-2-2-2zm0 4H4V6h16v2zm-5.07 11.17-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" +}), 'CreditScoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crib.js b/packages/material-ui-icons/lib/esm/Crib.js new file mode 100644 index 00000000000000..3df2145fc4a44e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crib.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9h-6V4H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm-4 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z" +}), 'Crib'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CribOutlined.js b/packages/material-ui-icons/lib/esm/CribOutlined.js new file mode 100644 index 00000000000000..024ce95f3551e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CribOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9h-6V4H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm-4 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75zM18 14H6V8c0-1.1.9-2 2-2h2v5h8v3z" +}), 'CribOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CribRounded.js b/packages/material-ui-icons/lib/esm/CribRounded.js new file mode 100644 index 00000000000000..dbab0b85af65f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CribRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.32 18.32c-.36-.36-.92-.4-1.31-.08-.32.25-.65.48-1 .69V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2h-6V6c0-1.1-.9-2-2-2H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.35-.2-.69-.43-1-.69-.39-.32-.96-.27-1.31.08-.42.42-.39 1.12.08 1.5C7.47 21.18 9.64 22 12 22c2.36 0 4.53-.82 6.24-2.18.47-.38.5-1.08.08-1.5zM14 19.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z" +}), 'CribRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CribSharp.js b/packages/material-ui-icons/lib/esm/CribSharp.js new file mode 100644 index 00000000000000..2412441ba77356 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CribSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9h-8V4H8C5.79 4 4 5.79 4 8v8h4v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h4V9zm-6 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z" +}), 'CribSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CribTwoTone.js b/packages/material-ui-icons/lib/esm/CribTwoTone.js new file mode 100644 index 00000000000000..54b27d87b3b50c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CribTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 14H6V8c0-1.1.9-2 2-2h2v5h8v3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 9h-6V4H8C5.79 4 4 5.79 4 8v6c0 1.1.9 2 2 2h2v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h2c1.1 0 2-.9 2-2v-3c0-1.1-.9-2-2-2zm-4 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75zM18 14H6V8c0-1.1.9-2 2-2h2v5h8v3z" +}, "1")], 'CribTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop.js b/packages/material-ui-icons/lib/esm/Crop.js new file mode 100644 index 00000000000000..8a536707dc7903 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z" +}), 'Crop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop169.js b/packages/material-ui-icons/lib/esm/Crop169.js new file mode 100644 index 00000000000000..ad0a560a6aa5aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop169.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" +}), 'Crop169'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop169Outlined.js b/packages/material-ui-icons/lib/esm/Crop169Outlined.js new file mode 100644 index 00000000000000..7c19135395e782 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop169Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" +}), 'Crop169Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop169Rounded.js b/packages/material-ui-icons/lib/esm/Crop169Rounded.js new file mode 100644 index 00000000000000..9e1aa428c9ae8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop169Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 10H6c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1z" +}), 'Crop169Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop169Sharp.js b/packages/material-ui-icons/lib/esm/Crop169Sharp.js new file mode 100644 index 00000000000000..26784ebd7667fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop169Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6H3v12h18V6zm-2 10H5V8h14v8z" +}), 'Crop169Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop169TwoTone.js b/packages/material-ui-icons/lib/esm/Crop169TwoTone.js new file mode 100644 index 00000000000000..d1edadbfdff8a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop169TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z" +}), 'Crop169TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop32.js b/packages/material-ui-icons/lib/esm/Crop32.js new file mode 100644 index 00000000000000..c1f5192135e89a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop32.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" +}), 'Crop32'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop32Outlined.js b/packages/material-ui-icons/lib/esm/Crop32Outlined.js new file mode 100644 index 00000000000000..8f83a504438537 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop32Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" +}), 'Crop32Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop32Rounded.js b/packages/material-ui-icons/lib/esm/Crop32Rounded.js new file mode 100644 index 00000000000000..aef7f6d6dcac02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop32Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H6c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'Crop32Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop32Sharp.js b/packages/material-ui-icons/lib/esm/Crop32Sharp.js new file mode 100644 index 00000000000000..406baf2bcbd21d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop32Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3v16h18V4zm-2 14H5V6h14v12z" +}), 'Crop32Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop32TwoTone.js b/packages/material-ui-icons/lib/esm/Crop32TwoTone.js new file mode 100644 index 00000000000000..195f100cb4555d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop32TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z" +}), 'Crop32TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop54.js b/packages/material-ui-icons/lib/esm/Crop54.js new file mode 100644 index 00000000000000..c29475b3e97608 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop54.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" +}), 'Crop54'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop54Outlined.js b/packages/material-ui-icons/lib/esm/Crop54Outlined.js new file mode 100644 index 00000000000000..dc4f6f091437c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop54Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" +}), 'Crop54Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop54Rounded.js b/packages/material-ui-icons/lib/esm/Crop54Rounded.js new file mode 100644 index 00000000000000..e08af483732f38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop54Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-1 12H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" +}), 'Crop54Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop54Sharp.js b/packages/material-ui-icons/lib/esm/Crop54Sharp.js new file mode 100644 index 00000000000000..d99cbada576a78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop54Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z" +}), 'Crop54Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop54TwoTone.js b/packages/material-ui-icons/lib/esm/Crop54TwoTone.js new file mode 100644 index 00000000000000..b8df9d56b4a644 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop54TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" +}), 'Crop54TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop75.js b/packages/material-ui-icons/lib/esm/Crop75.js new file mode 100644 index 00000000000000..1a1fc5331d8979 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop75.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" +}), 'Crop75'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop75Outlined.js b/packages/material-ui-icons/lib/esm/Crop75Outlined.js new file mode 100644 index 00000000000000..91b3debc60a6da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop75Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" +}), 'Crop75Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop75Rounded.js b/packages/material-ui-icons/lib/esm/Crop75Rounded.js new file mode 100644 index 00000000000000..4b4aed5392e738 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop75Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-1 8H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1z" +}), 'Crop75Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop75Sharp.js b/packages/material-ui-icons/lib/esm/Crop75Sharp.js new file mode 100644 index 00000000000000..6533952c27a054 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop75Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7H3v10h18V7zm-2 8H5V9h14v6z" +}), 'Crop75Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Crop75TwoTone.js b/packages/material-ui-icons/lib/esm/Crop75TwoTone.js new file mode 100644 index 00000000000000..57ebaa432ca744 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Crop75TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z" +}), 'Crop75TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropDin.js b/packages/material-ui-icons/lib/esm/CropDin.js new file mode 100644 index 00000000000000..5dd2f849c756dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropDin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'CropDin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropDinOutlined.js b/packages/material-ui-icons/lib/esm/CropDinOutlined.js new file mode 100644 index 00000000000000..bc0c7b4e6dd1f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropDinOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'CropDinOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropDinRounded.js b/packages/material-ui-icons/lib/esm/CropDinRounded.js new file mode 100644 index 00000000000000..bd150a8022a8bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropDinRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'CropDinRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropDinSharp.js b/packages/material-ui-icons/lib/esm/CropDinSharp.js new file mode 100644 index 00000000000000..70c038f5f71f2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropDinSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-2 16H5V5h14v14z" +}), 'CropDinSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropDinTwoTone.js b/packages/material-ui-icons/lib/esm/CropDinTwoTone.js new file mode 100644 index 00000000000000..5ea6dee0639481 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropDinTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'CropDinTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropFree.js b/packages/material-ui-icons/lib/esm/CropFree.js new file mode 100644 index 00000000000000..11593b1f29048b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropFree.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z" +}), 'CropFree'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropFreeOutlined.js b/packages/material-ui-icons/lib/esm/CropFreeOutlined.js new file mode 100644 index 00000000000000..b6ae1396e35b2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropFreeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z" +}), 'CropFreeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropFreeRounded.js b/packages/material-ui-icons/lib/esm/CropFreeRounded.js new file mode 100644 index 00000000000000..51fbedc61c7a0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropFreeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v3c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm1 10c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm15 3c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zm0-15h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2z" +}), 'CropFreeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropFreeSharp.js b/packages/material-ui-icons/lib/esm/CropFreeSharp.js new file mode 100644 index 00000000000000..4061c1be146baa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropFreeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v6h2V5h4V3H3zm2 12H3v6h6v-2H5v-4zm14 4h-4v2h6v-6h-2v4zm2-16h-6v2h4v4h2V3z" +}), 'CropFreeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropFreeTwoTone.js b/packages/material-ui-icons/lib/esm/CropFreeTwoTone.js new file mode 100644 index 00000000000000..9b050be277d7ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropFreeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM21 5c0-1.1-.9-2-2-2h-4v2h4v4h2V5zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm16 14v-4h-2v4h-4v2h4c1.1 0 2-.9 2-2z" +}), 'CropFreeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropLandscape.js b/packages/material-ui-icons/lib/esm/CropLandscape.js new file mode 100644 index 00000000000000..2106e80b4f7314 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropLandscape.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" +}), 'CropLandscape'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropLandscapeOutlined.js b/packages/material-ui-icons/lib/esm/CropLandscapeOutlined.js new file mode 100644 index 00000000000000..9e3829c0ca2303 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropLandscapeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" +}), 'CropLandscapeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropLandscapeRounded.js b/packages/material-ui-icons/lib/esm/CropLandscapeRounded.js new file mode 100644 index 00000000000000..89397976bb6d76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropLandscapeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-1 12H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" +}), 'CropLandscapeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropLandscapeSharp.js b/packages/material-ui-icons/lib/esm/CropLandscapeSharp.js new file mode 100644 index 00000000000000..fa1212031ec5ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropLandscapeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z" +}), 'CropLandscapeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropLandscapeTwoTone.js b/packages/material-ui-icons/lib/esm/CropLandscapeTwoTone.js new file mode 100644 index 00000000000000..45009df0cb3b33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropLandscapeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z" +}), 'CropLandscapeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropOriginal.js b/packages/material-ui-icons/lib/esm/CropOriginal.js new file mode 100644 index 00000000000000..8631ffb8bc9e0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropOriginal.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" +}), 'CropOriginal'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropOriginalOutlined.js b/packages/material-ui-icons/lib/esm/CropOriginalOutlined.js new file mode 100644 index 00000000000000..5022a5b55c42e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropOriginalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" +}), 'CropOriginalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropOriginalRounded.js b/packages/material-ui-icons/lib/esm/CropOriginalRounded.js new file mode 100644 index 00000000000000..7365fa2649ff6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropOriginalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4.44-6.19-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0z" +}), 'CropOriginalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropOriginalSharp.js b/packages/material-ui-icons/lib/esm/CropOriginalSharp.js new file mode 100644 index 00000000000000..605008f7813f59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropOriginalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-2 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" +}), 'CropOriginalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropOriginalTwoTone.js b/packages/material-ui-icons/lib/esm/CropOriginalTwoTone.js new file mode 100644 index 00000000000000..9826212cea234e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropOriginalTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L6.5 17h11z" +}), 'CropOriginalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropOutlined.js b/packages/material-ui-icons/lib/esm/CropOutlined.js new file mode 100644 index 00000000000000..62a7e0f3f21a48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z" +}), 'CropOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropPortrait.js b/packages/material-ui-icons/lib/esm/CropPortrait.js new file mode 100644 index 00000000000000..3c04cbafd7d1f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropPortrait.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" +}), 'CropPortrait'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropPortraitOutlined.js b/packages/material-ui-icons/lib/esm/CropPortraitOutlined.js new file mode 100644 index 00000000000000..c2f8c39cdf11d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropPortraitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" +}), 'CropPortraitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropPortraitRounded.js b/packages/material-ui-icons/lib/esm/CropPortraitRounded.js new file mode 100644 index 00000000000000..12b6f99479e03e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropPortraitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'CropPortraitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropPortraitSharp.js b/packages/material-ui-icons/lib/esm/CropPortraitSharp.js new file mode 100644 index 00000000000000..90c3abf540f6a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropPortraitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5v18h14V3zm-2 16H7V5h10v14z" +}), 'CropPortraitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropPortraitTwoTone.js b/packages/material-ui-icons/lib/esm/CropPortraitTwoTone.js new file mode 100644 index 00000000000000..c168171ec4c621 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropPortraitTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z" +}), 'CropPortraitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropRotate.js b/packages/material-ui-icons/lib/esm/CropRotate.js new file mode 100644 index 00000000000000..c5b64c54c55699 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropRotate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z" +}), 'CropRotate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropRotateOutlined.js b/packages/material-ui-icons/lib/esm/CropRotateOutlined.js new file mode 100644 index 00000000000000..d5dcf005ef8439 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropRotateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z" +}), 'CropRotateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropRotateRounded.js b/packages/material-ui-icons/lib/esm/CropRotateRounded.js new file mode 100644 index 00000000000000..7cd2c470d3fa0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropRotateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9v5h2V8c0-1.1-.9-2-2-2h-6v2h5c.55 0 1 .45 1 1zm3 7H9c-.55 0-1-.45-1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v8c0 1.1.9 2 2 2h8v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zM17.66 1.4C15.99.51 13.83-.11 11.39.04l3.81 3.81 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.8-2.96-7-6.24-8.74zM7.47 21.49c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.67.89 3.83 1.51 6.27 1.36L8.8 20.16l-1.33 1.33z" +}), 'CropRotateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropRotateSharp.js b/packages/material-ui-icons/lib/esm/CropRotateSharp.js new file mode 100644 index 00000000000000..db421d593bd273 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropRotateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V6h-8v2h6v6zm-8 2V4H6v2H4v2h2v10h10v2h2v-2h2v-2H8z" +}), 'CropRotateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropRotateTwoTone.js b/packages/material-ui-icons/lib/esm/CropRotateTwoTone.js new file mode 100644 index 00000000000000..8f59460d4cb26b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropRotateTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.95 24c.23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11zm.1-24c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 6h-6v2h6v6h2V8c0-1.11-.9-2-2-2zm2 12h2v-2H8V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2z" +}), 'CropRotateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropRounded.js b/packages/material-ui-icons/lib/esm/CropRounded.js new file mode 100644 index 00000000000000..9b48267991af59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 15h2V7c0-1.1-.9-2-2-2H9v2h7c.55 0 1 .45 1 1v7zm-9 2c-.55 0-1-.45-1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v3H2c-.55 0-1 .45-1 1s.45 1 1 1h3v10c0 1.1.9 2 2 2h10v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1H8z" +}), 'CropRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropSharp.js b/packages/material-ui-icons/lib/esm/CropSharp.js new file mode 100644 index 00000000000000..192e205e7b4092 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 15h2V5H9v2h8v8zM7 17V1H5v4H1v2h4v12h12v4h2v-4h4v-2H7z" +}), 'CropSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropSquare.js b/packages/material-ui-icons/lib/esm/CropSquare.js new file mode 100644 index 00000000000000..1d865de86b0155 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropSquare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" +}), 'CropSquare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropSquareOutlined.js b/packages/material-ui-icons/lib/esm/CropSquareOutlined.js new file mode 100644 index 00000000000000..aa4e1833dc2572 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropSquareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" +}), 'CropSquareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropSquareRounded.js b/packages/material-ui-icons/lib/esm/CropSquareRounded.js new file mode 100644 index 00000000000000..82fe7ac16dee10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropSquareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'CropSquareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropSquareSharp.js b/packages/material-ui-icons/lib/esm/CropSquareSharp.js new file mode 100644 index 00000000000000..79db555aba1dd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropSquareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4v16h16V4zm-2 14H6V6h12v12z" +}), 'CropSquareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropSquareTwoTone.js b/packages/material-ui-icons/lib/esm/CropSquareTwoTone.js new file mode 100644 index 00000000000000..5fa9091ef2904b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropSquareTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z" +}), 'CropSquareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/CropTwoTone.js b/packages/material-ui-icons/lib/esm/CropTwoTone.js new file mode 100644 index 00000000000000..7e7d36c14f17fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/CropTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7V1H5v4H1v2h4v10zm14-2V7c0-1.1-.9-2-2-2H9v2h8v8h2z" +}), 'CropTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dangerous.js b/packages/material-ui-icons/lib/esm/Dangerous.js new file mode 100644 index 00000000000000..f023980b9d4b35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dangerous.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM17 15.74 15.74 17 12 13.26 8.26 17 7 15.74 10.74 12 7 8.26 8.26 7 12 10.74 15.74 7 17 8.26 13.26 12 17 15.74z" +}), 'Dangerous'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DangerousOutlined.js b/packages/material-ui-icons/lib/esm/DangerousOutlined.js new file mode 100644 index 00000000000000..e1284a325471f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DangerousOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8zm-4.17-7.14L12 10.59 9.17 7.76 7.76 9.17 10.59 12l-2.83 2.83 1.41 1.41L12 13.41l2.83 2.83 1.41-1.41L13.41 12l2.83-2.83-1.41-1.41z" +}), 'DangerousOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DangerousRounded.js b/packages/material-ui-icons/lib/esm/DangerousRounded.js new file mode 100644 index 00000000000000..003e54a22100cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DangerousRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.9 3H9.1c-.53 0-1.04.21-1.42.59l-4.1 4.1C3.21 8.06 3 8.57 3 9.1v5.8c0 .53.21 1.04.59 1.41l4.1 4.1c.37.38.88.59 1.41.59h5.8c.53 0 1.04-.21 1.41-.59l4.1-4.1c.38-.37.59-.88.59-1.41V9.1c0-.53-.21-1.04-.59-1.41l-4.1-4.1c-.37-.38-.88-.59-1.41-.59zm.64 12.54c-.39.39-1.02.39-1.41 0L12 13.41l-2.12 2.12c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 8.46 9.88a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l2.12-2.12c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.12 2.12c.4.39.4 1.03.01 1.42z" +}), 'DangerousRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DangerousSharp.js b/packages/material-ui-icons/lib/esm/DangerousSharp.js new file mode 100644 index 00000000000000..06a40ebd01ab89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DangerousSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zm.51 11.83-1.41 1.41L12 13.41l-2.83 2.83-1.41-1.41L10.59 12 7.76 9.17l1.41-1.41L12 10.59l2.83-2.83 1.41 1.41L13.41 12l2.83 2.83z" +}), 'DangerousSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DangerousTwoTone.js b/packages/material-ui-icons/lib/esm/DangerousTwoTone.js new file mode 100644 index 00000000000000..6d958735c58d21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DangerousTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.1 5 5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5H9.1zm7.14 9.83-1.41 1.41L12 13.41l-2.83 2.83-1.41-1.41L10.59 12 7.76 9.17l1.41-1.41L12 10.59l2.83-2.83 1.41 1.41L13.41 12l2.83 2.83z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8zm-4.17-7.14L12 10.59 9.17 7.76 7.76 9.17 10.59 12l-2.83 2.83 1.41 1.41L12 13.41l2.83 2.83 1.41-1.41L13.41 12l2.83-2.83-1.41-1.41z" +}, "1")], 'DangerousTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DarkMode.js b/packages/material-ui-icons/lib/esm/DarkMode.js new file mode 100644 index 00000000000000..afb4557d4b6c4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DarkMode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" +}), 'DarkMode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DarkModeOutlined.js b/packages/material-ui-icons/lib/esm/DarkModeOutlined.js new file mode 100644 index 00000000000000..8dcab8e8f03e8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DarkModeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.37 5.51c-.18.64-.27 1.31-.27 1.99 0 4.08 3.32 7.4 7.4 7.4.68 0 1.35-.09 1.99-.27C17.45 17.19 14.93 19 12 19c-3.86 0-7-3.14-7-7 0-2.93 1.81-5.45 4.37-6.49zM12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" +}), 'DarkModeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DarkModeRounded.js b/packages/material-ui-icons/lib/esm/DarkModeRounded.js new file mode 100644 index 00000000000000..0f75c68acf6764 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DarkModeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.01 3.05C6.51 3.54 3 7.36 3 12c0 4.97 4.03 9 9 9 4.63 0 8.45-3.5 8.95-8 .09-.79-.78-1.42-1.54-.95-.84.54-1.84.85-2.91.85-2.98 0-5.4-2.42-5.4-5.4 0-1.06.31-2.06.84-2.89.45-.67-.04-1.63-.93-1.56z" +}), 'DarkModeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DarkModeSharp.js b/packages/material-ui-icons/lib/esm/DarkModeSharp.js new file mode 100644 index 00000000000000..9c192422e82478 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DarkModeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" +}), 'DarkModeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DarkModeTwoTone.js b/packages/material-ui-icons/lib/esm/DarkModeTwoTone.js new file mode 100644 index 00000000000000..e82d3db565530e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DarkModeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.37 5.51c-.18.64-.27 1.31-.27 1.99 0 4.08 3.32 7.4 7.4 7.4.68 0 1.35-.09 1.99-.27C17.45 17.19 14.93 19 12 19c-3.86 0-7-3.14-7-7 0-2.93 1.81-5.45 4.37-6.49z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.37 5.51c-.18.64-.27 1.31-.27 1.99 0 4.08 3.32 7.4 7.4 7.4.68 0 1.35-.09 1.99-.27C17.45 17.19 14.93 19 12 19c-3.86 0-7-3.14-7-7 0-2.93 1.81-5.45 4.37-6.49zM12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-2.98 0-5.4-2.42-5.4-5.4 0-1.81.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z" +}, "1")], 'DarkModeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dashboard.js b/packages/material-ui-icons/lib/esm/Dashboard.js new file mode 100644 index 00000000000000..e95a356d948d2b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dashboard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z" +}), 'Dashboard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardCustomize.js b/packages/material-ui-icons/lib/esm/DashboardCustomize.js new file mode 100644 index 00000000000000..4427c5e68ba65e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardCustomize.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3z" +}), 'DashboardCustomize'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardCustomizeOutlined.js b/packages/material-ui-icons/lib/esm/DashboardCustomizeOutlined.js new file mode 100644 index 00000000000000..739ace4ed90d08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardCustomizeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 11h8V3H3v8zm2-6h4v4H5V5zm8-2v8h8V3h-8zm6 6h-4V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm13-2h-2v3h-3v2h3v3h2v-3h3v-2h-3z" +}), 'DashboardCustomizeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardCustomizeRounded.js b/packages/material-ui-icons/lib/esm/DashboardCustomizeRounded.js new file mode 100644 index 00000000000000..566737c059b5ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardCustomizeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 3h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1zm10 0h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-6c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1zM4 13h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1zm13 0c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1z" +}), 'DashboardCustomizeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardCustomizeSharp.js b/packages/material-ui-icons/lib/esm/DashboardCustomizeSharp.js new file mode 100644 index 00000000000000..fb01bf9da0a84d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardCustomizeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" +}), 'DashboardCustomizeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardCustomizeTwoTone.js b/packages/material-ui-icons/lib/esm/DashboardCustomizeTwoTone.js new file mode 100644 index 00000000000000..bf5efd16a75714 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardCustomizeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 15h4v4H5zM5 5h4v4H5zm10 0h4v4h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 11h8V3H3v8zm2-6h4v4H5V5zm8-2v8h8V3h-8zm6 6h-4V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm13-2h-2v3h-3v2h3v3h2v-3h3v-2h-3z" +}, "1")], 'DashboardCustomizeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardOutlined.js b/packages/material-ui-icons/lib/esm/DashboardOutlined.js new file mode 100644 index 00000000000000..05cc9dde4a5e57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z" +}), 'DashboardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardRounded.js b/packages/material-ui-icons/lib/esm/DashboardRounded.js new file mode 100644 index 00000000000000..a71b3cc12c164b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 13h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zm0 8h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm10 0h6c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zM13 4v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1z" +}), 'DashboardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardSharp.js b/packages/material-ui-icons/lib/esm/DashboardSharp.js new file mode 100644 index 00000000000000..1127f232e834ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z" +}), 'DashboardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DashboardTwoTone.js b/packages/material-ui-icons/lib/esm/DashboardTwoTone.js new file mode 100644 index 00000000000000..2fc7cb83d3725c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DashboardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h4v6H5zm10 8h4v6h-4zM5 17h4v2H5zM15 5h4v2h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 13h8V3H3v10zm2-8h4v6H5V5zm8 16h8V11h-8v10zm2-8h4v6h-4v-6zM13 3v6h8V3h-8zm6 4h-4V5h4v2zM3 21h8v-6H3v6zm2-4h4v2H5v-2z" +}, "1")], 'DashboardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOff.js b/packages/material-ui-icons/lib/esm/DataSaverOff.js new file mode 100644 index 00000000000000..1b5c76072f89c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOffOutlined.js b/packages/material-ui-icons/lib/esm/DataSaverOffOutlined.js new file mode 100644 index 00000000000000..873529bf4a932a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOffRounded.js b/packages/material-ui-icons/lib/esm/DataSaverOffRounded.js new file mode 100644 index 00000000000000..d918c71cbcfc8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOffSharp.js b/packages/material-ui-icons/lib/esm/DataSaverOffSharp.js new file mode 100644 index 00000000000000..2a7aef5367b76d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOffTwoTone.js b/packages/material-ui-icons/lib/esm/DataSaverOffTwoTone.js new file mode 100644 index 00000000000000..3bce78ec631b2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOn.js b/packages/material-ui-icons/lib/esm/DataSaverOn.js new file mode 100644 index 00000000000000..7c940d6f94d976 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOnOutlined.js b/packages/material-ui-icons/lib/esm/DataSaverOnOutlined.js new file mode 100644 index 00000000000000..c058ea0acfd5e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOnRounded.js b/packages/material-ui-icons/lib/esm/DataSaverOnRounded.js new file mode 100644 index 00000000000000..8eaac20cac5cd1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 11H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V9c0-.55-.45-1-1-1s-1 .45-1 1v2zm1 8c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19zm1-16.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95z" +}), 'DataSaverOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOnSharp.js b/packages/material-ui-icons/lib/esm/DataSaverOnSharp.js new file mode 100644 index 00000000000000..f497123a040444 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataSaverOnTwoTone.js b/packages/material-ui-icons/lib/esm/DataSaverOnTwoTone.js new file mode 100644 index 00000000000000..4597d519bd0791 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataSaverOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataSaverOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataUsage.js b/packages/material-ui-icons/lib/esm/DataUsage.js new file mode 100644 index 00000000000000..c5030081b95a00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataUsage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataUsage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataUsageOutlined.js b/packages/material-ui-icons/lib/esm/DataUsageOutlined.js new file mode 100644 index 00000000000000..9b2b9bbf4560d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataUsageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataUsageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataUsageRounded.js b/packages/material-ui-icons/lib/esm/DataUsageRounded.js new file mode 100644 index 00000000000000..cf170ba2020a5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataUsageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3.87v.02c0 .67.45 1.23 1.08 1.43C16.93 6.21 19 8.86 19 12c0 .52-.06 1.01-.17 1.49-.14.64.12 1.3.69 1.64l.01.01c.86.5 1.98.05 2.21-.91.17-.72.26-1.47.26-2.23 0-4.5-2.98-8.32-7.08-9.57-.95-.29-1.92.44-1.92 1.44zm-2.06 15.05c-2.99-.43-5.42-2.86-5.86-5.84-.54-3.6 1.66-6.77 4.83-7.76.64-.19 1.09-.76 1.09-1.43v-.02c0-1-.97-1.73-1.93-1.44-4.51 1.38-7.66 5.86-6.98 10.96.59 4.38 4.13 7.92 8.51 8.51 3.14.42 6.04-.61 8.13-2.53.74-.68.61-1.89-.26-2.39-.58-.34-1.3-.23-1.8.22-1.47 1.34-3.51 2.05-5.73 1.72z" +}), 'DataUsageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataUsageSharp.js b/packages/material-ui-icons/lib/esm/DataUsageSharp.js new file mode 100644 index 00000000000000..c9b9feea2bd8c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataUsageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataUsageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DataUsageTwoTone.js b/packages/material-ui-icons/lib/esm/DataUsageTwoTone.js new file mode 100644 index 00000000000000..318c00f1adf687 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DataUsageTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z" +}), 'DataUsageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DateRange.js b/packages/material-ui-icons/lib/esm/DateRange.js new file mode 100644 index 00000000000000..38abfeeda92682 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DateRange.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z" +}), 'DateRange'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DateRangeOutlined.js b/packages/material-ui-icons/lib/esm/DateRangeOutlined.js new file mode 100644 index 00000000000000..c41b081829a63c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DateRangeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z" +}), 'DateRangeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DateRangeRounded.js b/packages/material-ui-icons/lib/esm/DateRangeRounded.js new file mode 100644 index 00000000000000..2a1786e8da73e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DateRangeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V9h14v10zM7 11h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" +}), 'DateRangeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DateRangeSharp.js b/packages/material-ui-icons/lib/esm/DateRangeSharp.js new file mode 100644 index 00000000000000..dc15bc7d142eaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DateRangeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm4-7h-3V2h-2v2H8V2H6v2H3v18h18V4zm-2 16H5V9h14v11z" +}), 'DateRangeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DateRangeTwoTone.js b/packages/material-ui-icons/lib/esm/DateRangeTwoTone.js new file mode 100644 index 00000000000000..0bb5b25b301453 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DateRangeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 8h14V6H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 11h2v2H7zm12-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-4 3h2v2h-2zm-4 0h2v2h-2z" +}, "1")], 'DateRangeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Deck.js b/packages/material-ui-icons/lib/esm/Deck.js new file mode 100644 index 00000000000000..d200c3db2435ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Deck.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 9 12 2 2 9h9v13h2V9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" +}, "1")], 'Deck'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeckOutlined.js b/packages/material-ui-icons/lib/esm/DeckOutlined.js new file mode 100644 index 00000000000000..24be7d0fb857e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeckOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 9 12 2 2 9h9v13h2V9h9zM12 4.44 15.66 7H8.34L12 4.44z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" +}, "1")], 'DeckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeckRounded.js b/packages/material-ui-icons/lib/esm/DeckRounded.js new file mode 100644 index 00000000000000..7ce305646a50c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeckRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.41 9c.49 0 .69-.63.29-.91L13.15 2.8c-.69-.48-1.61-.48-2.29 0L3.3 8.09c-.4.28-.2.91.29.91H11v12c0 .55.45 1 1 1s1-.45 1-1V9h7.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 16H4.9l-.57-3.02c-.1-.54-.62-.9-1.17-.8-.54.1-.9.62-.8 1.17L3 16.74V21c0 .55.45 1 1 1h.01c.55 0 1-.44 1-.99L5.02 18H7v3c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm12.84-3.82c-.54-.1-1.06.26-1.17.8L19.1 16H16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-3h1.98l.02 3.01c0 .55.45.99 1 .99s1-.45 1-1v-4.26l.64-3.39c.1-.54-.26-1.07-.8-1.17z" +}, "1")], 'DeckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeckSharp.js b/packages/material-ui-icons/lib/esm/DeckSharp.js new file mode 100644 index 00000000000000..4eb071d546dfd4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeckSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 9 12 2 2 9h9v13h2V9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" +}, "1")], 'DeckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeckTwoTone.js b/packages/material-ui-icons/lib/esm/DeckTwoTone.js new file mode 100644 index 00000000000000..0b45885ac34c1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeckTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4.44 8.34 7h7.32z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 9 12 2 2 9h9v13h2V9h9zM12 4.44 15.66 7H8.34L12 4.44z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m4.14 12-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" +}, "2")], 'DeckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dehaze.js b/packages/material-ui-icons/lib/esm/Dehaze.js new file mode 100644 index 00000000000000..96294a61929888 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dehaze.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 15.5v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20v-2H2z" +}), 'Dehaze'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DehazeOutlined.js b/packages/material-ui-icons/lib/esm/DehazeOutlined.js new file mode 100644 index 00000000000000..b39cf008ec5244 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DehazeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" +}), 'DehazeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DehazeRounded.js b/packages/material-ui-icons/lib/esm/DehazeRounded.js new file mode 100644 index 00000000000000..b10a5b132b57a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DehazeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z" +}), 'DehazeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DehazeSharp.js b/packages/material-ui-icons/lib/esm/DehazeSharp.js new file mode 100644 index 00000000000000..a2b8b3c88f0ac4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DehazeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" +}), 'DehazeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DehazeTwoTone.js b/packages/material-ui-icons/lib/esm/DehazeTwoTone.js new file mode 100644 index 00000000000000..828b3ed49e6b15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DehazeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" +}), 'DehazeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Delete.js b/packages/material-ui-icons/lib/esm/Delete.js new file mode 100644 index 00000000000000..97509895ecb740 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Delete.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" +}), 'Delete'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteForever.js b/packages/material-ui-icons/lib/esm/DeleteForever.js new file mode 100644 index 00000000000000..1b1d0a9602df11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteForever.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z" +}), 'DeleteForever'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteForeverOutlined.js b/packages/material-ui-icons/lib/esm/DeleteForeverOutlined.js new file mode 100644 index 00000000000000..54237e73a13cbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteForeverOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.12 10.47 12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" +}), 'DeleteForeverOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteForeverRounded.js b/packages/material-ui-icons/lib/esm/DeleteForeverRounded.js new file mode 100644 index 00000000000000..c92d7c8108c43d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteForeverRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm3.17-6.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 12.59l1.41-1.41c.39-.39 1.02-.39 1.41 0s.39 1.02 0 1.41L13.41 14l1.41 1.41c.39.39.39 1.02 0 1.41s-1.02.39-1.41 0L12 15.41l-1.41 1.41c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 14l-1.42-1.41zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'DeleteForeverRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteForeverSharp.js b/packages/material-ui-icons/lib/esm/DeleteForeverSharp.js new file mode 100644 index 00000000000000..330ac148fd60b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteForeverSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 21h12V7H6v14zm2.46-9.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5z" +}), 'DeleteForeverSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteForeverTwoTone.js b/packages/material-ui-icons/lib/esm/DeleteForeverTwoTone.js new file mode 100644 index 00000000000000..852ad40062355f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteForeverTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 9H8v10h8V9zm-.47 7.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.12 10.47 12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" +}, "1")], 'DeleteForeverTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteOutline.js b/packages/material-ui-icons/lib/esm/DeleteOutline.js new file mode 100644 index 00000000000000..669116a7f33f3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4z" +}), 'DeleteOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteOutlineOutlined.js b/packages/material-ui-icons/lib/esm/DeleteOutlineOutlined.js new file mode 100644 index 00000000000000..20c521095cceb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4h-3.5z" +}), 'DeleteOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteOutlineRounded.js b/packages/material-ui-icons/lib/esm/DeleteOutlineRounded.js new file mode 100644 index 00000000000000..3504cea596faa3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM9 9h6c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1zm6.5-5-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z" +}), 'DeleteOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteOutlineSharp.js b/packages/material-ui-icons/lib/esm/DeleteOutlineSharp.js new file mode 100644 index 00000000000000..0a330c114b545c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 21h12V7H6v14zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4h-3.5z" +}), 'DeleteOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/DeleteOutlineTwoTone.js new file mode 100644 index 00000000000000..7c405c181c8387 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5-1-1h-5l-1 1H5v2h14V4h-3.5z" +}), 'DeleteOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteOutlined.js b/packages/material-ui-icons/lib/esm/DeleteOutlined.js new file mode 100644 index 00000000000000..e692f8f43a2055 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z" +}), 'DeleteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteRounded.js b/packages/material-ui-icons/lib/esm/DeleteRounded.js new file mode 100644 index 00000000000000..7cc0b51cf0d6b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'DeleteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteSharp.js b/packages/material-ui-icons/lib/esm/DeleteSharp.js new file mode 100644 index 00000000000000..fbe1a8feecc7f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 21h12V7H6v14zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" +}), 'DeleteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteSweep.js b/packages/material-ui-icons/lib/esm/DeleteSweep.js new file mode 100644 index 00000000000000..cf0cddab19c43b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteSweep.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM14 5h-3l-1-1H6L5 5H2v2h12z" +}), 'DeleteSweep'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteSweepOutlined.js b/packages/material-ui-icons/lib/esm/DeleteSweepOutlined.js new file mode 100644 index 00000000000000..d43470f80845b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteSweepOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z" +}), 'DeleteSweepOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteSweepRounded.js b/packages/material-ui-icons/lib/esm/DeleteSweepRounded.js new file mode 100644 index 00000000000000..4e5e3b4d8130e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteSweepRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 16h2c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1s.45-1 1-1zm0-8h5c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1zm0 4h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM13 5h-2l-.71-.71c-.18-.18-.44-.29-.7-.29H6.41c-.26 0-.52.11-.7.29L5 5H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'DeleteSweepRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteSweepSharp.js b/packages/material-ui-icons/lib/esm/DeleteSweepSharp.js new file mode 100644 index 00000000000000..14465b080a421e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteSweepSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 16h4v2h-4v-2zm0-8h7v2h-7V8zm0 4h6v2h-6v-2zM3 20h10V8H3v12zM14 5h-3l-1-1H6L5 5H2v2h12V5z" +}), 'DeleteSweepSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteSweepTwoTone.js b/packages/material-ui-icons/lib/esm/DeleteSweepTwoTone.js new file mode 100644 index 00000000000000..b1872fd25affba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteSweepTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 10h6v8H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z" +}, "1")], 'DeleteSweepTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeleteTwoTone.js b/packages/material-ui-icons/lib/esm/DeleteTwoTone.js new file mode 100644 index 00000000000000..5ddca8631d0dfa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeleteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 9h8v10H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.5 4-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z" +}, "1")], 'DeleteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeliveryDining.js b/packages/material-ui-icons/lib/esm/DeliveryDining.js new file mode 100644 index 00000000000000..0e4b4b270aaf22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeliveryDining.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'DeliveryDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeliveryDiningOutlined.js b/packages/material-ui-icons/lib/esm/DeliveryDiningOutlined.js new file mode 100644 index 00000000000000..3086fad1cb7955 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeliveryDiningOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM4 14v-1c0-1.1.9-2 2-2h2v3H4zm3 3c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'DeliveryDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeliveryDiningRounded.js b/packages/material-ui-icons/lib/esm/DeliveryDiningRounded.js new file mode 100644 index 00000000000000..a0728219e8a8be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeliveryDiningRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2.65L13.52 14H10v-4c0-.55-.45-1-1-1H6c-2.21 0-4 1.79-4 4v2c0 .55.45 1 1 1h1c0 1.66 1.34 3 3 3s3-1.34 3-3h3.52c.61 0 1.18-.28 1.56-.75l3.48-4.35c.29-.36.44-.8.44-1.25V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 6h3c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm13 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'DeliveryDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeliveryDiningSharp.js b/packages/material-ui-icons/lib/esm/DeliveryDiningSharp.js new file mode 100644 index 00000000000000..0d7650b4cab726 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeliveryDiningSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H2v7h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'DeliveryDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeliveryDiningTwoTone.js b/packages/material-ui-icons/lib/esm/DeliveryDiningTwoTone.js new file mode 100644 index 00000000000000..04b4342d6df327 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeliveryDiningTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 13v1h4v-3H6c-1.1 0-2 .9-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm1-3H4v-1c0-1.1.9-2 2-2h2v3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "2")], 'DeliveryDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DepartureBoard.js b/packages/material-ui-icons/lib/esm/DepartureBoard.js new file mode 100644 index 00000000000000..c0c71227ad4179 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DepartureBoard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1c-2.4 0-4.52 1.21-5.78 3.05.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" +}), 'DepartureBoard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DepartureBoardOutlined.js b/packages/material-ui-icons/lib/esm/DepartureBoardOutlined.js new file mode 100644 index 00000000000000..88710097451333 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DepartureBoardOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "5.5", + cy: "16.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12.5", + cy: "16.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" +}, "2")], 'DepartureBoardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DepartureBoardRounded.js b/packages/material-ui-icons/lib/esm/DepartureBoardRounded.js new file mode 100644 index 00000000000000..61226b3bbc5653 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DepartureBoardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22v1.28c0 .83.67 1.5 1.5 1.5S5 22.33 5 21.5V21h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.28c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm-.25-9c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l2.52 1.51c.34.2.78.09.98-.24.21-.34.1-.79-.25-.99L16.5 8.25v-3.5c0-.41-.34-.75-.75-.75z" +}), 'DepartureBoardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DepartureBoardSharp.js b/packages/material-ui-icons/lib/esm/DepartureBoardSharp.js new file mode 100644 index 00000000000000..e79d46258cb1d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DepartureBoardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V23h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68V4z" +}), 'DepartureBoardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DepartureBoardTwoTone.js b/packages/material-ui-icons/lib/esm/DepartureBoardTwoTone.js new file mode 100644 index 00000000000000..efd0e933d94d80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DepartureBoardTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.29 6H9c-3.69 0-5.11.46-5.66.99h5.74c.05-.33.12-.67.21-.99zM3 14v4c0 .37.21.62.34.73l.29.27h10.74l.29-.27c.13-.11.34-.36.34-.73v-3.08c-.94-.13-1.81-.45-2.59-.92H3zm2.5 4c-.83 0-1.5-.67-1.5-1.5S4.67 15 5.5 15s1.5.67 1.5 1.5S6.33 18 5.5 18zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "5.5", + cy: "16.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12.5", + cy: "16.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z" +}, "3")], 'DepartureBoardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Description.js b/packages/material-ui-icons/lib/esm/Description.js new file mode 100644 index 00000000000000..1aa0666ed2f735 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Description.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z" +}), 'Description'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DescriptionOutlined.js b/packages/material-ui-icons/lib/esm/DescriptionOutlined.js new file mode 100644 index 00000000000000..ac01d18a91fb5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DescriptionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" +}), 'DescriptionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DescriptionRounded.js b/packages/material-ui-icons/lib/esm/DescriptionRounded.js new file mode 100644 index 00000000000000..ce2b93d77b4b29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DescriptionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.59 2.59c-.38-.38-.89-.59-1.42-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15 18H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm-2-6V3.5L18.5 9H14c-.55 0-1-.45-1-1z" +}), 'DescriptionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DescriptionSharp.js b/packages/material-ui-icons/lib/esm/DescriptionSharp.js new file mode 100644 index 00000000000000..7e5093c3b802f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DescriptionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z" +}), 'DescriptionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DescriptionTwoTone.js b/packages/material-ui-icons/lib/esm/DescriptionTwoTone.js new file mode 100644 index 00000000000000..09f51cc3b96bb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DescriptionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 4H6v16h12V9h-5V4zm3 14H8v-2h8v2zm0-6v2H8v-2h8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" +}, "1")], 'DescriptionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesignServices.js b/packages/material-ui-icons/lib/esm/DesignServices.js new file mode 100644 index 00000000000000..407d064a4f0b15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesignServices.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.24 11.51 1.57-1.57-3.75-3.75-1.57 1.57-4.14-4.13c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l4.13 4.13L3 17.25V21h3.75l4.76-4.76 4.13 4.13c.95.95 2.23.6 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-4.13-4.13zm-7.06-.44L5.04 6.94l1.89-1.9L8.2 6.31 7.02 7.5l1.41 1.41 1.19-1.19 1.45 1.45-1.89 1.9zm7.88 7.89-4.13-4.13 1.9-1.9 1.45 1.45-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9zm3.65-11.92c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.47-.47-1.12-.29-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'DesignServices'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesignServicesOutlined.js b/packages/material-ui-icons/lib/esm/DesignServicesOutlined.js new file mode 100644 index 00000000000000..7bde5ee7d4b11a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesignServicesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.97 7.27c.39-.39.39-1.02 0-1.41l-2.83-2.83a.9959.9959 0 0 0-1.41 0l-4.49 4.49-3.89-3.89c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l3.89 3.89L3 16.76V21h4.24l4.52-4.52 3.89 3.89c.95.95 2.23.6 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-3.89-3.89 4.48-4.48zM5.04 6.94l1.89-1.9L8.2 6.31 7.02 7.5l1.41 1.41 1.19-1.19 1.2 1.2-1.9 1.9-3.88-3.88zm11.23 7.44-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9-3.89-3.89 1.9-1.9 1.21 1.21zM6.41 19H5v-1.41l9.61-9.61 1.3 1.3.11.11L6.41 19zm9.61-12.44 1.41-1.41 1.41 1.41-1.41 1.41-1.41-1.41z" +}), 'DesignServicesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesignServicesRounded.js b/packages/material-ui-icons/lib/esm/DesignServicesRounded.js new file mode 100644 index 00000000000000..9542ee3e5e60d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesignServicesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.24 11.51 1.57-1.57-3.75-3.75-1.57 1.57-4.14-4.13c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l4.13 4.13-4.6 4.61c-.1.1-.15.22-.15.36v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15l4.62-4.62 4.13 4.13c1.32 1.32 2.76.07 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-4.13-4.12zm-7.06-.44L5.04 6.94l1.89-1.9L8.2 6.31l-.47.49c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.48-.48 1.45 1.45-1.89 1.89zm7.88 7.89-4.13-4.13 1.9-1.9 1.45 1.45-.48.48c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.48-.48 1.27 1.27-1.9 1.9zm3.65-11.92c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.47-.47-1.12-.29-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'DesignServicesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesignServicesSharp.js b/packages/material-ui-icons/lib/esm/DesignServicesSharp.js new file mode 100644 index 00000000000000..617e6b2ee28fa0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesignServicesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.79 17.06-5.55-5.55 1.57-1.57-3.75-3.75-1.57 1.57-5.55-5.55-4.73 4.73 5.55 5.55L3 17.25V21h3.75l4.76-4.76 5.55 5.55 4.73-4.73zM9.18 11.07 5.04 6.94l1.9-1.9 1.27 1.27L7.02 7.5l1.41 1.41 1.19-1.19 1.45 1.45-1.89 1.9zm3.75 3.75 1.9-1.9 1.45 1.45-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9-4.13-4.13zm2.2029-9.697 2.5385-2.5386 3.7477 3.7477-2.5386 2.5385z" +}), 'DesignServicesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesignServicesTwoTone.js b/packages/material-ui-icons/lib/esm/DesignServicesTwoTone.js new file mode 100644 index 00000000000000..626d4d558bab08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesignServicesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.91 9.28-1.3-1.3L5 17.59V19h1.41l9.61-9.61zm-5.08-.35-1.2-1.2-1.19 1.19L7.02 7.5l1.19-1.18-1.27-1.28-1.9 1.9 3.89 3.89zm5.44 5.45-1.2-1.21-1.9 1.9 3.89 3.89 1.9-1.9-1.27-1.27-1.19 1.19-1.42-1.41zm-.2493-7.822 1.4142-1.4142 1.4142 1.4143-1.4142 1.4142z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.97 5.86-2.83-2.83a.9959.9959 0 0 0-1.41 0l-4.49 4.49-3.89-3.89c-.78-.78-2.05-.78-2.83 0l-1.9 1.9c-.78.78-.78 2.05 0 2.83l3.89 3.89L3 16.76V21h4.24l4.52-4.52 3.89 3.89c.95.95 2.23.6 2.83 0l1.9-1.9c.78-.78.78-2.05 0-2.83l-3.89-3.89 4.49-4.49c.38-.38.38-1.01-.01-1.4zM5.04 6.94l1.89-1.9L8.2 6.31 7.02 7.5l1.41 1.41 1.19-1.19 1.2 1.2-1.9 1.9-3.88-3.88zM6.41 19H5v-1.41l9.61-9.61 1.3 1.3.11.11L6.41 19zm10.09-2.02 1.19-1.19 1.27 1.27-1.9 1.9-3.89-3.89 1.9-1.9 1.2 1.2-1.19 1.19 1.42 1.42zm.94-9-1.41-1.41 1.41-1.41 1.41 1.41-1.41 1.41z" +}, "1")], 'DesignServicesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopAccessDisabled.js b/packages/material-ui-icons/lib/esm/DesktopAccessDisabled.js new file mode 100644 index 00000000000000..1b71af6c9b2df6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopAccessDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 16c0 1.1-.9 2-2 2h-1l-2-2h3V4H6L4 2h17c1.1 0 2 .9 2 2v12zm-5.5 2-2-2zm-2.6 0 6 6 1.3-1.3-4.7-4.7-2-2L1.2 1.8 0 3.1l1 1V16c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h.9zM3 16V6.1l9.9 9.9H3z" +}), 'DesktopAccessDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopAccessDisabledOutlined.js b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledOutlined.js new file mode 100644 index 00000000000000..1dd0bb17e6ab56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.41 1.69 0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" +}), 'DesktopAccessDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopAccessDisabledRounded.js b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledRounded.js new file mode 100644 index 00000000000000..0167a29884e6dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M.31 2c-.39.39-.39 1.02 0 1.41l.69.68V16c0 1.1.9 2 2 2h7v2H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h.9l5.29 5.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L1.72 2A.9959.9959 0 0 0 .31 2zm2.68 13V6.09L12.9 16H3.99c-.55 0-1-.45-1-1zM4.55 2l2 2H20c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-1.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" +}), 'DesktopAccessDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopAccessDisabledSharp.js b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledSharp.js new file mode 100644 index 00000000000000..b9c595b3273058 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.41 1.69 0 3.1l1 .99V18h9v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h2.44V2z" +}), 'DesktopAccessDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopAccessDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledTwoTone.js new file mode 100644 index 00000000000000..46bd1e1b6488dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopAccessDisabledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1.41 1.69 0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2.99 6.09V16h9.91zM6.55 4l12 12H21V4z", + opacity: ".3" +}, "1")], 'DesktopAccessDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopMac.js b/packages/material-ui-icons/lib/esm/DesktopMac.js new file mode 100644 index 00000000000000..d03d600f9e7802 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopMac.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" +}), 'DesktopMac'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopMacOutlined.js b/packages/material-ui-icons/lib/esm/DesktopMacOutlined.js new file mode 100644 index 00000000000000..caba90dfce0c46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopMacOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" +}), 'DesktopMacOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopMacRounded.js b/packages/material-ui-icons/lib/esm/DesktopMacRounded.js new file mode 100644 index 00000000000000..0546de4af22fa4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopMacRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-1.63 2.45c-.44.66.03 1.55.83 1.55h5.6c.8 0 1.28-.89.83-1.55L14 18h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v9z" +}), 'DesktopMacRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopMacSharp.js b/packages/material-ui-icons/lib/esm/DesktopMacSharp.js new file mode 100644 index 00000000000000..071d68da52ef6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopMacSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 2H1v16h9l-2 3v1h8v-1l-2-3h9V2zm-2 12H3V4h18v10z" +}), 'DesktopMacSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopMacTwoTone.js b/packages/material-ui-icons/lib/esm/DesktopMacTwoTone.js new file mode 100644 index 00000000000000..877b830175bcaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopMacTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 4h18v10H3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z" +}, "1")], 'DesktopMacTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopWindows.js b/packages/material-ui-icons/lib/esm/DesktopWindows.js new file mode 100644 index 00000000000000..c3e3ceeb6fd616 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopWindows.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" +}), 'DesktopWindows'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopWindowsOutlined.js b/packages/material-ui-icons/lib/esm/DesktopWindowsOutlined.js new file mode 100644 index 00000000000000..1aa8b95d59325f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopWindowsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" +}), 'DesktopWindowsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopWindowsRounded.js b/packages/material-ui-icons/lib/esm/DesktopWindowsRounded.js new file mode 100644 index 00000000000000..682bab8b93305f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopWindowsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'DesktopWindowsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopWindowsSharp.js b/packages/material-ui-icons/lib/esm/DesktopWindowsSharp.js new file mode 100644 index 00000000000000..8c06a96707887a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopWindowsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 2H1v16h9v2H8v2h8v-2h-2v-2h9V2zm-2 14H3V4h18v12z" +}), 'DesktopWindowsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DesktopWindowsTwoTone.js b/packages/material-ui-icons/lib/esm/DesktopWindowsTwoTone.js new file mode 100644 index 00000000000000..7285125c088793 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DesktopWindowsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 4h18v12H3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z" +}, "1")], 'DesktopWindowsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Details.js b/packages/material-ui-icons/lib/esm/Details.js new file mode 100644 index 00000000000000..b797854b77819e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Details.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" +}), 'Details'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DetailsOutlined.js b/packages/material-ui-icons/lib/esm/DetailsOutlined.js new file mode 100644 index 00000000000000..a5f346992225d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DetailsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" +}), 'DetailsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DetailsRounded.js b/packages/material-ui-icons/lib/esm/DetailsRounded.js new file mode 100644 index 00000000000000..c46aad033506af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DetailsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.13 4.57-8.3 14.94c-.37.67.11 1.49.87 1.49h16.6c.76 0 1.24-.82.87-1.49l-8.3-14.94c-.38-.68-1.36-.68-1.74 0zM13 8.92 18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" +}), 'DetailsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DetailsSharp.js b/packages/material-ui-icons/lib/esm/DetailsSharp.js new file mode 100644 index 00000000000000..b5a03b88f2e70b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DetailsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" +}), 'DetailsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DetailsTwoTone.js b/packages/material-ui-icons/lib/esm/DetailsTwoTone.js new file mode 100644 index 00000000000000..007e3633ea466f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DetailsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 8.92 18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3 2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" +}, "1")], 'DetailsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoard.js b/packages/material-ui-icons/lib/esm/DeveloperBoard.js new file mode 100644 index 00000000000000..f266663dc283af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z" +}), 'DeveloperBoard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardOff.js b/packages/material-ui-icons/lib/esm/DeveloperBoardOff.js new file mode 100644 index 00000000000000..46b21f86a10ca4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-.9-2-2-2H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zM18 21c.06 0 .11 0 .16-.01l2.32 2.32 1.41-1.41L2.1 2.1.69 3.51l1.32 1.32C2 4.89 2 4.94 2 5v14c0 1.1.9 2 2 2h14zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" +}), 'DeveloperBoardOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardOffOutlined.js b/packages/material-ui-icons/lib/esm/DeveloperBoardOffOutlined.js new file mode 100644 index 00000000000000..26c8b898944be3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-.9-2-2-2H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zM18 21c.06 0 .11 0 .16-.01l2.32 2.32 1.41-1.41L2.1 2.1.69 3.51l1.32 1.32C2 4.89 2 4.94 2 5v14c0 1.1.9 2 2 2h14zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" +}), 'DeveloperBoardOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardOffRounded.js b/packages/material-ui-icons/lib/esm/DeveloperBoardOffRounded.js new file mode 100644 index 00000000000000..58336444498a51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.83 5H18v10.17L19.83 17H21c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V5c0-1.1-.9-2-2-2H5.83l2 2zM15 10h-2c-.06 0-.13-.01-.19-.02l-.79-.79C12.01 9.13 12 9.06 12 9V8c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zm-4-2v.17L9.83 7H10c.55 0 1 .45 1 1zm5 4v1.17L13.83 11H15c.55 0 1 .45 1 1zM1.39 2.81C1 3.2 1 3.83 1.39 4.22l.61.61V19c0 1.1.9 2 2 2h14c.06 0 .11 0 .16-.01l1.61 1.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.81 2.81c-.39-.39-1.03-.39-1.42 0zM4 19V6.83l2 2V11c0 .55.45 1 1 1h2.17l1.02 1.02c-.06-.01-.13-.02-.19-.02H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2c0-.06-.01-.13-.02-.19L12 14.83V16c0 .55.45 1 1 1h1.18l2 2H4z" +}), 'DeveloperBoardOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardOffSharp.js b/packages/material-ui-icons/lib/esm/DeveloperBoardOffSharp.js new file mode 100644 index 00000000000000..8208ba2b99816e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V3H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zm4.34 10 2.31 2.31 1.41-1.41L2.1 2.1.69 3.51 2 4.83V21h16.17zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" +}), 'DeveloperBoardOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardOffTwoTone.js b/packages/material-ui-icons/lib/esm/DeveloperBoardOffTwoTone.js new file mode 100644 index 00000000000000..04c84c6c0072b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4zm12-5.83V11h-2.17l-1-1H16V7h-4v2.17l-1-1V7H9.83l-2-2H18v10.17l-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-.9-2-2-2H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zM18 21c.06 0 .11 0 .16-.01l2.32 2.32 1.41-1.41L2.1 2.1.69 3.51l1.32 1.32C2 4.89 2 4.94 2 5v14c0 1.1.9 2 2 2h14zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" +}, "1")], 'DeveloperBoardOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardOutlined.js b/packages/material-ui-icons/lib/esm/DeveloperBoardOutlined.js new file mode 100644 index 00000000000000..52faf24b7f576c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z" +}), 'DeveloperBoardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardRounded.js b/packages/material-ui-icons/lib/esm/DeveloperBoardRounded.js new file mode 100644 index 00000000000000..6e3c29fa03be78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 8c0-.55-.45-1-1-1h-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V9h1c.55 0 1-.45 1-1zm-5 11H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM6.5 13h4c.28 0 .5.22.5.5v3c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5zm6-6h3c.28 0 .5.22.5.5v2c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5zm-6 0h4c.28 0 .5.22.5.5v4c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5zm6 4h3c.28 0 .5.22.5.5v5c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5z" +}), 'DeveloperBoardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardSharp.js b/packages/material-ui-icons/lib/esm/DeveloperBoardSharp.js new file mode 100644 index 00000000000000..24c7395c7620f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9V7h-2V3H2v18h18v-4h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z" +}), 'DeveloperBoardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperBoardTwoTone.js b/packages/material-ui-icons/lib/esm/DeveloperBoardTwoTone.js new file mode 100644 index 00000000000000..3a8660fdd7c910 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperBoardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 19h14V5H4v14zm8-12h4v3h-4V7zm0 4h4v6h-4v-6zM6 7h5v5H6V7zm0 6h5v4H6v-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 13h5v4H6zm0-6h5v5H6zm6 0h4v3h-4zm0 4h4v6h-4zm10-2V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14z" +}, "1")], 'DeveloperBoardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperMode.js b/packages/material-ui-icons/lib/esm/DeveloperMode.js new file mode 100644 index 00000000000000..954562e36b02cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperMode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" +}), 'DeveloperMode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperModeOutlined.js b/packages/material-ui-icons/lib/esm/DeveloperModeOutlined.js new file mode 100644 index 00000000000000..ee8b207c248ac1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperModeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" +}), 'DeveloperModeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperModeRounded.js b/packages/material-ui-icons/lib/esm/DeveloperModeRounded.js new file mode 100644 index 00000000000000..8b572e74f1e55c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperModeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h10v1c0 .55.45 1 1 1s1-.45 1-1V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V5zm9.12 10.88 3.17-3.17c.39-.39.39-1.02 0-1.41l-3.17-3.17c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41L17.17 12l-2.47 2.47c-.39.39-.39 1.02 0 1.41.39.39 1.03.39 1.42 0zm-6.83-1.42L6.83 12l2.46-2.46c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0L4.7 11.3c-.39.39-.39 1.02 0 1.41l3.17 3.17c.39.39 1.03.39 1.42 0 .4-.39.39-1.03 0-1.42zM17 19H7v-1c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v1z" +}), 'DeveloperModeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperModeSharp.js b/packages/material-ui-icons/lib/esm/DeveloperModeSharp.js new file mode 100644 index 00000000000000..3963ea3a628f50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperModeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h10v2h2V1.01L5 1v6h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v6h14v-6h-2v2z" +}), 'DeveloperModeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeveloperModeTwoTone.js b/packages/material-ui-icons/lib/esm/DeveloperModeTwoTone.js new file mode 100644 index 00000000000000..69f335e0a9a06c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeveloperModeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17 6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z" +}), 'DeveloperModeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceHub.js b/packages/material-ui-icons/lib/esm/DeviceHub.js new file mode 100644 index 00000000000000..9ce41a5a6952a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceHub.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" +}), 'DeviceHub'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceHubOutlined.js b/packages/material-ui-icons/lib/esm/DeviceHubOutlined.js new file mode 100644 index 00000000000000..43d8169feb46af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceHubOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" +}), 'DeviceHubOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceHubRounded.js b/packages/material-ui-icons/lib/esm/DeviceHubRounded.js new file mode 100644 index 00000000000000..901b463218f910 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceHubRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 16-4-4V8.82c1.35-.49 2.26-1.89 1.93-3.46-.25-1.18-1.23-2.12-2.42-2.32C10.63 2.73 9 4.17 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H4c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2.05l4-4.2 4 4.2V20c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3z" +}), 'DeviceHubRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceHubSharp.js b/packages/material-ui-icons/lib/esm/DeviceHubSharp.js new file mode 100644 index 00000000000000..d1a50757b0c7ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceHubSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" +}), 'DeviceHubSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceHubTwoTone.js b/packages/material-ui-icons/lib/esm/DeviceHubTwoTone.js new file mode 100644 index 00000000000000..5317b62f459382 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceHubTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 16-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" +}), 'DeviceHubTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceThermostat.js b/packages/material-ui-icons/lib/esm/DeviceThermostat.js new file mode 100644 index 00000000000000..e7af8356a1cbf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceThermostat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" +}), 'DeviceThermostat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceThermostatOutlined.js b/packages/material-ui-icons/lib/esm/DeviceThermostatOutlined.js new file mode 100644 index 00000000000000..5550b897ce78f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceThermostatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" +}), 'DeviceThermostatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceThermostatRounded.js b/packages/material-ui-icons/lib/esm/DeviceThermostatRounded.js new file mode 100644 index 00000000000000..038c79022c0bd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceThermostatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" +}), 'DeviceThermostatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceThermostatSharp.js b/packages/material-ui-icons/lib/esm/DeviceThermostatSharp.js new file mode 100644 index 00000000000000..b0a8aa79a4c15d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceThermostatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" +}), 'DeviceThermostatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceThermostatTwoTone.js b/packages/material-ui-icons/lib/esm/DeviceThermostatTwoTone.js new file mode 100644 index 00000000000000..033cc06a1291e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceThermostatTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" +}), 'DeviceThermostatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceUnknown.js b/packages/material-ui-icons/lib/esm/DeviceUnknown.js new file mode 100644 index 00000000000000..55275173509239 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceUnknown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zm-.88 8.8h1.76v1.76h-1.76z" +}), 'DeviceUnknown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceUnknownOutlined.js b/packages/material-ui-icons/lib/esm/DeviceUnknownOutlined.js new file mode 100644 index 00000000000000..72e360b7775bee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceUnknownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z" +}), 'DeviceUnknownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceUnknownRounded.js b/packages/material-ui-icons/lib/esm/DeviceUnknownRounded.js new file mode 100644 index 00000000000000..6556b1cac2ad7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceUnknownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-6-3h2v2h-2zm-1.48-5.81h.13c.33 0 .59-.23.7-.54.24-.69.91-1.21 1.66-1.21.93 0 1.75.82 1.75 1.75 0 1.32-1.49 1.55-2.23 2.82h-.01c-.08.14-.14.29-.2.45-.01.02-.02.03-.02.05-.01.02-.01.04-.01.05-.1.31-.16.66-.16 1.08h1.76c0-.25.04-.47.12-.67.54-1.47 2.77-1.86 2.48-4.18-.19-1.55-1.43-2.84-2.98-3.04-1.77-.23-3.29.78-3.81 2.3-.2.56.23 1.14.82 1.14z" +}), 'DeviceUnknownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceUnknownSharp.js b/packages/material-ui-icons/lib/esm/DeviceUnknownSharp.js new file mode 100644 index 00000000000000..d634eab19e0c01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceUnknownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H5v22h14V1zm-2 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z" +}), 'DeviceUnknownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DeviceUnknownTwoTone.js b/packages/material-ui-icons/lib/esm/DeviceUnknownTwoTone.js new file mode 100644 index 00000000000000..00aceaed9bea46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DeviceUnknownTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h10V5H7v14zm6-1h-2v-2h2v2zM12 6.72c1.96 0 3.5 1.51 3.5 3.47 0 2.26-2.62 2.49-2.62 4.45h-1.76c0-2.88 2.63-2.7 2.63-4.45 0-.93-.82-1.75-1.75-1.75s-1.75.82-1.75 1.75H8.5c0-1.95 1.54-3.47 3.5-3.47z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 16h2v2h-2zm6-15H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 8.44c.93 0 1.75.82 1.75 1.75 0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47s-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75z" +}, "1")], 'DeviceUnknownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Devices.js b/packages/material-ui-icons/lib/esm/Devices.js new file mode 100644 index 00000000000000..04e907a5e174d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Devices.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" +}), 'Devices'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesOther.js b/packages/material-ui-icons/lib/esm/DevicesOther.js new file mode 100644 index 00000000000000..0e64974f72b8b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesOther.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" +}), 'DevicesOther'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesOtherOutlined.js b/packages/material-ui-icons/lib/esm/DevicesOtherOutlined.js new file mode 100644 index 00000000000000..71dcb5106f9fdd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesOtherOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" +}), 'DevicesOtherOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesOtherRounded.js b/packages/material-ui-icons/lib/esm/DevicesOtherRounded.js new file mode 100644 index 00000000000000..210fe7dbf07b93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesOtherRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V7zm9 5h-2c-.55 0-1 .45-1 1v.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V13c0-.55-.45-1-1-1zm-1 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z" +}), 'DevicesOtherRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesOtherSharp.js b/packages/material-ui-icons/lib/esm/DevicesOtherSharp.js new file mode 100644 index 00000000000000..0bf2fdca497334 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesOtherSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6h18V4H1v16h6v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM23 8h-8v12h8V8zm-2 10h-4v-8h4v8z" +}), 'DevicesOtherSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesOtherTwoTone.js b/packages/material-ui-icons/lib/esm/DevicesOtherTwoTone.js new file mode 100644 index 00000000000000..ee39dc06638f63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesOtherTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 10h4v8h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "16", + r: "1.5", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm19 2h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8zm-8-6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "2")], 'DevicesOtherTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesOutlined.js b/packages/material-ui-icons/lib/esm/DevicesOutlined.js new file mode 100644 index 00000000000000..d96f28bcc37b29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" +}), 'DevicesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesRounded.js b/packages/material-ui-icons/lib/esm/DevicesRounded.js new file mode 100644 index 00000000000000..574e02f9792e79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20H14v-3H4V7zm19 1h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" +}), 'DevicesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesSharp.js b/packages/material-ui-icons/lib/esm/DevicesSharp.js new file mode 100644 index 00000000000000..7dd24703f3f39d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z" +}), 'DevicesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DevicesTwoTone.js b/packages/material-ui-icons/lib/esm/DevicesTwoTone.js new file mode 100644 index 00000000000000..cd16f036fbebc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DevicesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 10h4v7h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23 8h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7zM4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6z" +}, "1")], 'DevicesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialerSip.js b/packages/material-ui-icons/lib/esm/DialerSip.js new file mode 100644 index 00000000000000..cda912c78de5c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialerSip.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3h-1v5h1V3zm-2 2h-2V4h2V3h-3v3h2v1h-2v1h3V5zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" +}), 'DialerSip'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialerSipOutlined.js b/packages/material-ui-icons/lib/esm/DialerSipOutlined.js new file mode 100644 index 00000000000000..924cf51908f09a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialerSipOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z" +}), 'DialerSipOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialerSipRounded.js b/packages/material-ui-icons/lib/esm/DialerSipRounded.js new file mode 100644 index 00000000000000..7b4c2ee028c91b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialerSipRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 8c.28 0 .5-.22.5-.5v-4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v4c0 .28.22.5.5.5zm-4-1c-.28 0-.5.22-.5.5s.22.5.5.5h1.95c.3 0 .55-.25.55-.55v-1.9c0-.3-.25-.55-.55-.55H13V4h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.95c-.3 0-.55.25-.55.55v1.89c0 .31.25.56.55.56H14v1h-1.5zm7.95-4h-1.89c-.31 0-.56.25-.56.55V7.5c0 .28.22.5.5.5s.5-.22.5-.5V6h1.45c.3 0 .55-.25.55-.55v-1.9c0-.3-.25-.55-.55-.55zM20 5h-1V4h1v1zm-.79 10.27-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64l-.29-2.52c-.11-1.01-.97-1.78-1.98-1.78H5.02c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1-.76-1.86-1.77-1.97z" +}), 'DialerSipRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialerSipSharp.js b/packages/material-ui-icons/lib/esm/DialerSipSharp.js new file mode 100644 index 00000000000000..f78e628ba649e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialerSipSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm1 10.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" +}), 'DialerSipSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialerSipTwoTone.js b/packages/material-ui-icons/lib/esm/DialerSipTwoTone.js new file mode 100644 index 00000000000000..bc64b80ef39fb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialerSipTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.2 18.21c1.2.41 2.48.67 3.8.75v-1.5c-.88-.06-1.75-.22-2.59-.45l-1.21 1.2zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 3h1v5h-1zm-4 4v1h3V5h-2V4h2V3h-3v3h2v1zm9-4h-3v5h1V6h2V3zm-1 2h-1V4h1v1zm1 11.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z" +}, "1")], 'DialerSipTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dialpad.js b/packages/material-ui-icons/lib/esm/Dialpad.js new file mode 100644 index 00000000000000..b8f82269415605 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dialpad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'Dialpad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialpadOutlined.js b/packages/material-ui-icons/lib/esm/DialpadOutlined.js new file mode 100644 index 00000000000000..bde1c1e4f06d13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialpadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DialpadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialpadRounded.js b/packages/material-ui-icons/lib/esm/DialpadRounded.js new file mode 100644 index 00000000000000..0c4fcdd201e32e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialpadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DialpadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialpadSharp.js b/packages/material-ui-icons/lib/esm/DialpadSharp.js new file mode 100644 index 00000000000000..dfae269ed121bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialpadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DialpadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DialpadTwoTone.js b/packages/material-ui-icons/lib/esm/DialpadTwoTone.js new file mode 100644 index 00000000000000..8c6bc790ce43fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DialpadTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm2 8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-8 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm12-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'DialpadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dining.js b/packages/material-ui-icons/lib/esm/Dining.js new file mode 100644 index 00000000000000..5e34f44c11fb14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dining.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9 8.3c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9h.75V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9H10V6.5c0-.28.23-.5.5-.5.28 0 .5.22.5.5v3.8zm4.58 2.29-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z" +}), 'Dining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiningOutlined.js b/packages/material-ui-icons/lib/esm/DiningOutlined.js new file mode 100644 index 00000000000000..3ae572ff8caf76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.75 6c-1.37 0-2.5 1.52-2.5 3.4 0 1.48.7 2.71 1.67 3.18l.08.04V19h1.5v-6.38l.08-.03c.97-.47 1.67-1.7 1.67-3.18 0-1.88-1.12-3.41-2.5-3.41M10.5 6c-.27 0-.5.22-.5.5V9h-.75V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9H7.5V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v3.8c0 .93.64 1.71 1.5 1.93V19h1.5v-6.77c.86-.22 1.5-1 1.5-1.93V6.5c0-.28-.22-.5-.5-.5zM20 4H4v16h16V4m0-2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16z" +}), 'DiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiningRounded.js b/packages/material-ui-icons/lib/esm/DiningRounded.js new file mode 100644 index 00000000000000..b101882862231a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9 8.3c0 .93-.64 1.71-1.5 1.93v6.02c0 .41-.34.75-.75.75S8 18.66 8 18.25v-6.02c-.86-.22-1.5-1-1.5-1.93V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9h.75V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9H10V6.5c0-.28.23-.5.5-.5.28 0 .5.22.5.5v3.8zm4.58 2.29-.08.03v5.63c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-5.63l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z" +}), 'DiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiningSharp.js b/packages/material-ui-icons/lib/esm/DiningSharp.js new file mode 100644 index 00000000000000..4322f3c54aeebb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zm-11 8.3c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6h1v3h.75V6h1v3H10V6h1v4.3zm4.58 2.29-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z" +}), 'DiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiningTwoTone.js b/packages/material-ui-icons/lib/esm/DiningTwoTone.js new file mode 100644 index 00000000000000..0e159dc9ef1e2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiningTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zM14.75 6c1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18l-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4zm-8.25.5c0-.28.22-.5.5-.5s.5.22.5.5V9h.75V6.5c0-.28.22-.5.5-.5s.5.22.5.5V9H10V6.5c0-.28.23-.5.5-.5.28 0 .5.22.5.5v3.8c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8 12.23V19h1.5v-6.77c.86-.22 1.5-1 1.5-1.93V6.5c0-.28-.22-.5-.5-.5-.27 0-.5.22-.5.5V9h-.75V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V9H7.5V6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v3.8c0 .93.64 1.71 1.5 1.93zm5.92.35.08.04V19h1.5v-6.38l.08-.03c.97-.47 1.67-1.7 1.67-3.18 0-1.88-1.12-3.41-2.5-3.41-1.37 0-2.5 1.52-2.5 3.4 0 1.48.7 2.71 1.67 3.18z" +}, "2")], 'DiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DinnerDining.js b/packages/material-ui-icons/lib/esm/DinnerDining.js new file mode 100644 index 00000000000000..891c1b9e65718b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DinnerDining.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 19h20l-2 2H4l-2-2zM5 6h1v1H5V6zm0-2h1v1H5V4zm4 0v1H7V4h2zm0 3H7V6h2v1zm-3 8.23c-.36.11-.69.28-1 .47V8h1v7.23zm-2 1.29c-.38.44-.68.93-.84 1.48h16.82c.01-.16.03-.33.03-.5 0-3.04-2.46-5.5-5.5-5.5-2.29 0-4.25 1.4-5.08 3.4-.59-.25-1.24-.4-1.93-.4-.17 0-.33.02-.5.04V8h2c1.03.06 1.9-.96 2-2h10V5H11c-.1-1.05-.97-1.97-2-2H3v1h1v1H3v1h1v1H3v1h1v8.52z" +}), 'DinnerDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DinnerDiningOutlined.js b/packages/material-ui-icons/lib/esm/DinnerDiningOutlined.js new file mode 100644 index 00000000000000..12ce1c9a2ab9a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DinnerDiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 19 2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h1.75C10.99 9 12 7.99 12 6.75h9v-1.5h-9C12 4.01 10.99 3 9.75 3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zm11.5-4c.99 0 1.91.4 2.58 1.14.24.26.44.55.58.86h-6.32c.58-1.21 1.81-2 3.16-2zM8 4.5h2v.75H8V4.5zm0 2.25h2v.75H8v-.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM5.5 9h1v6.06c-.35.06-.68.17-1 .3V9z" +}), 'DinnerDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DinnerDiningRounded.js b/packages/material-ui-icons/lib/esm/DinnerDiningRounded.js new file mode 100644 index 00000000000000..65c8a5eee3715c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DinnerDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.85 19.85 1 1c.1.1.22.15.36.15H19.8c.13 0 .26-.05.35-.15l1-1c.31-.31.09-.85-.35-.85H3.21c-.45 0-.67.54-.36.85zM3 18h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h1.75C10.99 9 12 7.99 12 6.75h8.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H12C12 4.01 10.99 3 9.75 3h-6c-.41 0-.75.34-.75.75s.34.75.75.75H4v.75h-.25c-.41 0-.75.34-.75.75s.34.75.75.75H4v.75h-.25c-.41 0-.75.34-.75.75s.34.75.75.75H4v7.39c-.44.46-.78 1-1 1.61zM8 4.5h2v.75H8V4.5zm0 2.25h2v.75H8v-.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM5.5 9h1v6.06c-.35.06-.68.17-1 .3V9z" +}), 'DinnerDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DinnerDiningSharp.js b/packages/material-ui-icons/lib/esm/DinnerDiningSharp.js new file mode 100644 index 00000000000000..5b8d2a62ed148f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DinnerDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 19 2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h4V6.75h9v-1.5h-9V3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zM8 7.5v-.75h2v.75H8zm2-2.25H8V4.5h2v.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM6.5 9v6.06c-.35.06-.68.17-1 .3V9h1z" +}), 'DinnerDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DinnerDiningTwoTone.js b/packages/material-ui-icons/lib/esm/DinnerDiningTwoTone.js new file mode 100644 index 00000000000000..ec4cbc935fb14b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DinnerDiningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.08 15.14C16.41 14.4 15.49 14 14.5 14c-1.35 0-2.58.79-3.16 2h6.32c-.14-.31-.34-.6-.58-.86z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m2 19 2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h1.75C10.99 9 12 7.99 12 6.75h9v-1.5h-9C12 4.01 10.99 3 9.75 3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zm11.5-4c.99 0 1.91.4 2.58 1.14.24.26.44.55.58.86h-6.32c.58-1.21 1.81-2 3.16-2zM8 4.5h2v.75H8V4.5zm0 2.25h2v.75H8v-.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM5.5 9h1v6.06c-.35.06-.68.17-1 .3V9z" +}, "1")], 'DinnerDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Directions.js b/packages/material-ui-icons/lib/esm/Directions.js new file mode 100644 index 00000000000000..fbede85b63a4ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Directions.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0l-9 9c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9c.39-.38.39-1.01 0-1.41zM14 14.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5l3.5 3.5-3.5 3.5z" +}), 'Directions'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBike.js b/packages/material-ui-icons/lib/esm/DirectionsBike.js new file mode 100644 index 00000000000000..9d1a7402e96166 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBike.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" +}), 'DirectionsBike'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBikeOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsBikeOutlined.js new file mode 100644 index 00000000000000..5d9acc48af0047 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBikeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" +}), 'DirectionsBikeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBikeRounded.js b/packages/material-ui-icons/lib/esm/DirectionsBikeRounded.js new file mode 100644 index 00000000000000..ef82a725c06189 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBikeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.06 1.06 2.38 1.78 3.96 2.02.6.09 1.14-.39 1.14-1 0-.49-.37-.91-.85-.99-1.11-.18-2.02-.71-2.75-1.43l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v4c0 .55.45 1 1 1s1-.45 1-1v-4.4c0-.52-.2-1.01-.55-1.38L10.8 10.5zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" +}), 'DirectionsBikeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBikeSharp.js b/packages/material-ui-icons/lib/esm/DirectionsBikeSharp.js new file mode 100644 index 00000000000000..82bba1fccc5fc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBikeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L6.31 9.9 11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" +}), 'DirectionsBikeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBikeTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsBikeTwoTone.js new file mode 100644 index 00000000000000..496fcd9df229c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBikeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 22c2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5 2.2 5 5 5zm0-8.5c1.9 0 3.5 1.6 3.5 3.5S6.9 20.5 5 20.5 1.5 18.9 1.5 17s1.6-3.5 3.5-3.5zm2.8-2.3L11 14v5h2v-6.2l-2.2-2.3 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" +}), 'DirectionsBikeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoat.js b/packages/material-ui-icons/lib/esm/DirectionsBoat.js new file mode 100644 index 00000000000000..4d6d5a8f187fdc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" +}), 'DirectionsBoat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatFilled.js b/packages/material-ui-icons/lib/esm/DirectionsBoatFilled.js new file mode 100644 index 00000000000000..68203919b68074 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.9-6.68c.11-.37.04-1.06-.66-1.28L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" +}), 'DirectionsBoatFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatFilledOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledOutlined.js new file mode 100644 index 00000000000000..1357b42b1bff59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 12.66-1.12 3.97c-.78-.43-1.07-.86-2.65-2.67-1.6 1.82-2.43 3.04-4 3.04-1.53 0-2.34-1.15-4-3.04-1.6 1.82-1.87 2.21-2.65 2.65l-1.13-3.96L12 10.11l7.77 2.55zM15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.91-6.68c.11-.37.04-1.06-.66-1.28l-1.3-.42V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z" +}), 'DirectionsBoatFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatFilledRounded.js b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledRounded.js new file mode 100644 index 00000000000000..1719930a1d5647 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 21c-1.19 0-2.38-.35-3.47-.98-.33-.19-.73-.19-1.07 0-2.17 1.26-4.76 1.26-6.93 0-.33-.19-.73-.19-1.07 0-1.08.63-2.27.98-3.46.98H3c-.55 0-1 .45-1 1s.45 1 1 1h1c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h1c.55 0 1-.45 1-1s-.45-1-1-1h-1zM3.95 19H4c1.27 0 2.42-.55 3.33-1.33.39-.34.95-.34 1.34 0C9.58 18.45 10.73 19 12 19s2.42-.55 3.33-1.33c.39-.34.95-.34 1.34 0 .91.78 2.06 1.33 3.33 1.33h.05l1.9-6.68c.11-.37.04-1.06-.66-1.28L20 10.62V6c0-1.1-.9-2-2-2h-3V2c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19zM6 6h12v3.97L12.62 8.2c-.41-.13-.84-.13-1.25 0L6 9.97V6z" +}), 'DirectionsBoatFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatFilledSharp.js b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledSharp.js new file mode 100644 index 00000000000000..b8cce385e03b97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" +}), 'DirectionsBoatFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatFilledTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledTwoTone.js new file mode 100644 index 00000000000000..96e041dca3bcd0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatFilledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.77 12.66-1.12 3.97c-.78-.43-1.07-.86-2.65-2.67-1.6 1.82-2.43 3.04-4 3.04-1.53 0-2.34-1.15-4-3.04-1.6 1.82-1.87 2.21-2.65 2.65l-1.13-3.96L12 10.11l7.77 2.55z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m19.77 12.66-1.12 3.97c-.78-.43-1.07-.86-2.65-2.67-1.6 1.82-2.43 3.04-4 3.04-1.53 0-2.34-1.15-4-3.04-1.6 1.82-1.87 2.21-2.65 2.65l-1.13-3.96L12 10.11l7.77 2.55zM15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.91-6.68c.11-.37.04-1.06-.66-1.28l-1.3-.42V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z" +}, "1")], 'DirectionsBoatFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsBoatOutlined.js new file mode 100644 index 00000000000000..b81c9201108643 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3v1h-2V3h2m-1 7.11 5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32s-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.79L12 10.11M15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z" +}), 'DirectionsBoatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatRounded.js b/packages/material-ui-icons/lib/esm/DirectionsBoatRounded.js new file mode 100644 index 00000000000000..0b339f9ca2759c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 21c-1.19 0-2.38-.35-3.47-.98-.33-.19-.73-.19-1.07 0-2.17 1.26-4.76 1.26-6.93 0-.33-.19-.73-.19-1.07 0-1.08.63-2.27.98-3.46.98H3c-.55 0-1 .45-1 1s.45 1 1 1h1c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h1c.55 0 1-.45 1-1s-.45-1-1-1h-1zM3.95 19H4c1.27 0 2.42-.55 3.33-1.33.39-.34.95-.34 1.34 0C9.58 18.45 10.73 19 12 19s2.42-.55 3.33-1.33c.39-.34.95-.34 1.34 0 .91.78 2.06 1.33 3.33 1.33h.05l1.9-6.68c.11-.37.04-1.06-.66-1.28L20 10.62V6c0-1.1-.9-2-2-2h-3V2c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.63.19-.81.84-.66 1.28L3.95 19zM6 6h12v3.97L12.62 8.2c-.41-.13-.84-.13-1.25 0L6 9.97V6z" +}), 'DirectionsBoatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatSharp.js b/packages/material-ui-icons/lib/esm/DirectionsBoatSharp.js new file mode 100644 index 00000000000000..f819b5dd38aef6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" +}), 'DirectionsBoatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBoatTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsBoatTwoTone.js new file mode 100644 index 00000000000000..e4b2723ef94e97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBoatTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.49 15.68 8 13.96l1.51 1.72c.34.4 1.28 1.32 2.49 1.32 1.21 0 2.15-.92 2.49-1.32L16 13.96l1.51 1.72c.2.23.6.64 1.14.94l1.12-3.97-2.39-.78L12 10.11l-5.38 1.77-2.4.79 1.13 3.96c.55-.31.94-.72 1.14-.95zM11 3h2v1h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM11 3h2v1h-2V3zM6 6h12v3.97L12 8 6 9.97V6zm.62 5.87L12 10.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32-1.21 0-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.78zM8 22.01c1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99z" +}, "1")], 'DirectionsBoatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBus.js b/packages/material-ui-icons/lib/esm/DirectionsBus.js new file mode 100644 index 00000000000000..be5fc3b2b65a83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" +}), 'DirectionsBus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusFilled.js b/packages/material-ui-icons/lib/esm/DirectionsBusFilled.js new file mode 100644 index 00000000000000..14d4fff529efa7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z" +}), 'DirectionsBusFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusFilledOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsBusFilledOutlined.js new file mode 100644 index 00000000000000..046d2dcfc54515 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusFilledOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2v-3h12v3zm0-5H6V7h12v3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsBusFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusFilledRounded.js b/packages/material-ui-icons/lib/esm/DirectionsBusFilledRounded.js new file mode 100644 index 00000000000000..67723a37bdeff0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44v1.56c0 .83.67 1.5 1.5 1.5S8 20.33 8 19.5V19h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.56c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z" +}), 'DirectionsBusFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusFilledSharp.js b/packages/material-ui-icons/lib/esm/DirectionsBusFilledSharp.js new file mode 100644 index 00000000000000..f7308e033c7638 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V21h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z" +}), 'DirectionsBusFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusFilledTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsBusFilledTwoTone.js new file mode 100644 index 00000000000000..2eb9e0e55f0a48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusFilledTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3H6v3zm9.5-2c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13zM12 4c-3.52 0-4.97.48-5.57 1h11.24c-.54-.54-1.96-1-5.67-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2v-3h12v3zm0-5H6V7h12v3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsBusFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsBusOutlined.js new file mode 100644 index 00000000000000..3b3d6552bbc8c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4zm5.66 2.99H6.34C6.89 4.46 8.31 4 12 4s5.11.46 5.66.99zm.34 2V10H6V6.99h12zm-.34 9.74-.29.27H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsBusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusRounded.js b/packages/material-ui-icons/lib/esm/DirectionsBusRounded.js new file mode 100644 index 00000000000000..a16d16de46b77b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 16c0 .88.39 1.67 1 2.22v1.28c0 .83.67 1.5 1.5 1.5S8 20.33 8 19.5V19h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.28c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" +}), 'DirectionsBusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusSharp.js b/packages/material-ui-icons/lib/esm/DirectionsBusSharp.js new file mode 100644 index 00000000000000..4700b4049ee9d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 16c0 .88.39 1.67 1 2.22V21h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" +}), 'DirectionsBusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsBusTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsBusTwoTone.js new file mode 100644 index 00000000000000..93f9990e57e0c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsBusTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m17.37 17 .29-.27c.13-.11.34-.36.34-.73v-4H6v4c0 .37.21.62.34.73l.29.27h10.74zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm5.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM12 4c-3.69 0-5.11.46-5.66.99h11.31C17.11 4.46 15.69 4 12 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 21h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1zM12 4c3.69 0 5.11.46 5.66.99H6.34C6.89 4.46 8.31 4 12 4zM6 6.99h12V10H6V6.99zM8 17H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73l-.29.27H8z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsBusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCar.js b/packages/material-ui-icons/lib/esm/DirectionsCar.js new file mode 100644 index 00000000000000..9627c33a06d982 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" +}), 'DirectionsCar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarFilled.js b/packages/material-ui-icons/lib/esm/DirectionsCarFilled.js new file mode 100644 index 00000000000000..14c26ebde636cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z" +}), 'DirectionsCarFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarFilledOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsCarFilledOutlined.js new file mode 100644 index 00000000000000..9d4b2fefe0410e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarFilledOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-5h14v5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsCarFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarFilledRounded.js b/packages/material-ui-icons/lib/esm/DirectionsCarFilledRounded.js new file mode 100644 index 00000000000000..94eb30870c340a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v7.5c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5V12l-2.08-5.99zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z" +}), 'DirectionsCarFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarFilledSharp.js b/packages/material-ui-icons/lib/esm/DirectionsCarFilledSharp.js new file mode 100644 index 00000000000000..6a196a7b9a6fee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.57 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.43-7zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z" +}), 'DirectionsCarFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarFilledTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsCarFilledTwoTone.js new file mode 100644 index 00000000000000..a3150753090c71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarFilledTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 17h14v-5H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 16 7.5 16 6 15.33 6 14.5 6.67 13 7.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-5h14v5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsCarFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsCarOutlined.js new file mode 100644 index 00000000000000..bf39800d4d177f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsCarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarRounded.js b/packages/material-ui-icons/lib/esm/DirectionsCarRounded.js new file mode 100644 index 00000000000000..17893fe3f0d807 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 11H5z" +}), 'DirectionsCarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarSharp.js b/packages/material-ui-icons/lib/esm/DirectionsCarSharp.js new file mode 100644 index 00000000000000..2f4f6d21acb3d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.58 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" +}), 'DirectionsCarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsCarTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsCarTwoTone.js new file mode 100644 index 00000000000000..22e0a0d7be3fc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsCarTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 17h14v-5H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 16 7.5 16 6 15.33 6 14.5 6.67 13 7.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsCarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsOff.js b/packages/material-ui-icons/lib/esm/DirectionsOff.js new file mode 100644 index 00000000000000..71233b43b9eee4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsOff.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.41 6.58 12 4l8 8-2.58 2.59L18.83 16l2.58-2.59c.78-.78.78-2.05 0-2.83l-8-8c-.78-.78-2.05-.78-2.83 0L8 5.17l1.41 1.41zm-6.6-3.77L1.39 4.22 5.17 8l-2.58 2.59c-.78.78-.78 2.05 0 2.83l8 8c.78.78 2.05.78 2.83 0L16 18.83l3.78 3.78 1.41-1.41L2.81 2.81zM12 20l-8-8 2.58-2.59L8.17 11H7v2h3.17l1.5 1.5-1.08 1.09L12 17l1.09-1.09 1.5 1.5L12 20z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m10.9165 8.0872 1.089-1.089 4.9992 4.9993-1.089 1.089z" +}, "1")], 'DirectionsOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsOffOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsOffOutlined.js new file mode 100644 index 00000000000000..52d6378386610e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsOffOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0L8.21 5.38l1.41 1.41L12 4.42 19.58 12l-2.38 2.38 1.41 1.41 3.09-3.09c.4-.37.4-1 .01-1.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 7.5v2.67l2.17 2.17L16.5 11zM1.39 4.22l3.99 3.99-3.09 3.09c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm6.64 6.63c-.01.05-.04.1-.04.15v4h2v-2.18l4.38 4.38L12 19.58 4.42 12 6.8 9.62l1.23 1.23z" +}, "1")], 'DirectionsOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsOffRounded.js b/packages/material-ui-icons/lib/esm/DirectionsOffRounded.js new file mode 100644 index 00000000000000..17c5cf61f8ae9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0L8.21 5.38 13 10.17V7.5l3.15 3.15c.2.2.2.51 0 .71l-.98.98 3.45 3.45 3.09-3.09c.38-.38.38-1.01 0-1.41zM6.79 6.79 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.38 8.2l-3.09 3.09c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.28 3.28c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.79 6.79zM9.99 14c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.05.02-.1.03-.15l1.97 1.97V14z" +}), 'DirectionsOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsOffSharp.js b/packages/material-ui-icons/lib/esm/DirectionsOffSharp.js new file mode 100644 index 00000000000000..1215f10186497e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 7.5 3.5 3.5-1.33 1.34 3.45 3.45L22.41 12 12.01 1.58l-3.8 3.8L13 10.17zM1.39 4.22l3.99 3.99L1.59 12l10.42 10.4 3.79-3.79 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm8.6 8.6V15h-2v-4.18l2 2z" +}), 'DirectionsOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsOffTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsOffTwoTone.js new file mode 100644 index 00000000000000..fcdddb24318c06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsOffTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0L8.21 5.38l1.41 1.41L12 4.42 19.58 12l-2.38 2.38 1.41 1.41 3.09-3.09c.4-.37.4-1 .01-1.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 7.5v2.67l2.17 2.17L16.5 11zM1.39 4.22l3.99 3.99-3.09 3.09c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm6.64 6.63c-.01.05-.04.1-.04.15v4h2v-2.18l4.38 4.38L12 19.58 4.42 12 6.8 9.62l1.23 1.23z" +}, "1")], 'DirectionsOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsOutlined.js new file mode 100644 index 00000000000000..b79405ea280ee3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.43 10.59-9.01-9.01c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.79-.76.8-2.02.03-2.82zm-10.42 10.4-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z" +}), 'DirectionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailway.js b/packages/material-ui-icons/lib/esm/DirectionsRailway.js new file mode 100644 index 00000000000000..60bd14a026bdc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailway.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" +}), 'DirectionsRailway'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayFilled.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilled.js new file mode 100644 index 00000000000000..c6fb7579c92e7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z" +}), 'DirectionsRailwayFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledOutlined.js new file mode 100644 index 00000000000000..b9464e0f06b23d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "14.5", + r: "1.5" +}, "1")], 'DirectionsRailwayFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledRounded.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledRounded.js new file mode 100644 index 00000000000000..9b64182fc35667 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z" +}), 'DirectionsRailwayFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledSharp.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledSharp.js new file mode 100644 index 00000000000000..b4898935ed3ff3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z" +}), 'DirectionsRailwayFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledTwoTone.js new file mode 100644 index 00000000000000..01c4a246d7c159 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayFilledTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm6-2.5c.83 0 1.5.67 1.5 1.5S12.83 16 12 16s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0-9c-3.52 0-4.97.48-5.57 1h11.24c-.54-.54-1.96-1-5.67-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zm6 11.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsRailwayFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayOutlined.js new file mode 100644 index 00000000000000..8ac2f1a8555053 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1c-4.42 0-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4zm0 2c6 0 6 1.2 6 2H6c0-.8 0-2 6-2zm6 4v3H6V7h12zm-1.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5zM12 12.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DirectionsRailwayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayRounded.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayRounded.js new file mode 100644 index 00000000000000..afcf6a1dfcdc6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5zM4 15.5C4 17.43 5.57 19 7.5 19l-1.14 1.15c-.32.31-.1.85.35.85h10.58c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" +}), 'DirectionsRailwayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwaySharp.js b/packages/material-ui-icons/lib/esm/DirectionsRailwaySharp.js new file mode 100644 index 00000000000000..37ab3368ba5d1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" +}), 'DirectionsRailwaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRailwayTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsRailwayTwoTone.js new file mode 100644 index 00000000000000..b94fffe46435fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRailwayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm6-3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM12 3C6 3 6 4.2 6 5h12c0-.8 0-2-6-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5zm-2 0c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3zM6 5c0-.8 0-2 6-2s6 1.2 6 2H6zm6 11.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}, "1")], 'DirectionsRailwayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRounded.js b/packages/material-ui-icons/lib/esm/DirectionsRounded.js new file mode 100644 index 00000000000000..8c7b5180ed19d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.71 11.29-9-9a.9959.9959 0 0 0-1.41 0l-9 9c-.39.39-.39 1.02 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9c.39-.38.39-1.01 0-1.41zM14 14.5V12h-4v2c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1h5V7.5l3.15 3.15c.2.2.2.51 0 .71L14 14.5z" +}), 'DirectionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRun.js b/packages/material-ui-icons/lib/esm/DirectionsRun.js new file mode 100644 index 00000000000000..eae8489813d4ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRun.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9 1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" +}), 'DirectionsRun'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRunOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsRunOutlined.js new file mode 100644 index 00000000000000..d3943c63e7f0a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRunOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9 1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" +}), 'DirectionsRunOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRunRounded.js b/packages/material-ui-icons/lib/esm/DirectionsRunRounded.js new file mode 100644 index 00000000000000..2b2d115611be3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRunRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.17 12 .57-2.5 2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45l-1.48-1.41.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.09 1.14-.39 1.14-1 0-.49-.36-.9-.85-.98-1.52-.25-2.78-1.15-3.45-2.33l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L7.21 7.76c-.74.32-1.22 1.04-1.22 1.85v2.37c0 .55.45 1 1 1s1-.45 1-1v-2.4l1.8-.7-1.6 8.1-3.92-.8c-.54-.11-1.07.24-1.18.78V17c-.11.54.24 1.07.78 1.18l4.11.82c1.06.21 2.1-.46 2.34-1.52z" +}), 'DirectionsRunRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRunSharp.js b/packages/material-ui-icons/lib/esm/DirectionsRunSharp.js new file mode 100644 index 00000000000000..8aaea0219a94d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRunSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9 1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" +}), 'DirectionsRunSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsRunTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsRunTwoTone.js new file mode 100644 index 00000000000000..8bcc7a98146281 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsRunTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.49 3.48c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm-.6 11.5 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4 1-4.4z" +}), 'DirectionsRunTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSharp.js b/packages/material-ui-icons/lib/esm/DirectionsSharp.js new file mode 100644 index 00000000000000..144ac08efd4ac9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.41 12 12 1.59 1.59 11.99 12 22.41 22.41 12zM14 14.5V12h-4v3H8v-5h6V7.5l3.5 3.5-3.5 3.5z" +}), 'DirectionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubway.js b/packages/material-ui-icons/lib/esm/DirectionsSubway.js new file mode 100644 index 00000000000000..7182fab4a5b873 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubway.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" +}), 'DirectionsSubway'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayFilled.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilled.js new file mode 100644 index 00000000000000..ecd194ad680e6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" +}), 'DirectionsSubwayFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledOutlined.js new file mode 100644 index 00000000000000..02bdf43437c9ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsSubwayFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledRounded.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledRounded.js new file mode 100644 index 00000000000000..7a9a878daba24b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" +}), 'DirectionsSubwayFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledSharp.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledSharp.js new file mode 100644 index 00000000000000..978b37ff93403f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" +}), 'DirectionsSubwayFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledTwoTone.js new file mode 100644 index 00000000000000..686c2bc0ad3c83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayFilledTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 5h4.67c-.54-.54-1.96-1-5.67-1-3.52 0-4.97.48-5.57 1H13zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsSubwayFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayOutlined.js new file mode 100644 index 00000000000000..3e696e52473ddd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsSubwayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayRounded.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayRounded.js new file mode 100644 index 00000000000000..efd8580a4abbca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H17.3c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" +}), 'DirectionsSubwayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwaySharp.js b/packages/material-ui-icons/lib/esm/DirectionsSubwaySharp.js new file mode 100644 index 00000000000000..14c2c953f68a3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" +}), 'DirectionsSubwaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsSubwayTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsSubwayTwoTone.js new file mode 100644 index 00000000000000..7cdefcbf29ca36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsSubwayTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsSubwayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransit.js b/packages/material-ui-icons/lib/esm/DirectionsTransit.js new file mode 100644 index 00000000000000..c2857dd8425a61 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" +}), 'DirectionsTransit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitFilled.js b/packages/material-ui-icons/lib/esm/DirectionsTransitFilled.js new file mode 100644 index 00000000000000..cd94bf3b01b184 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" +}), 'DirectionsTransitFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitFilledOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledOutlined.js new file mode 100644 index 00000000000000..a0fd87cf7f258a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsTransitFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitFilledRounded.js b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledRounded.js new file mode 100644 index 00000000000000..bc8c0032b77cc1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" +}), 'DirectionsTransitFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitFilledSharp.js b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledSharp.js new file mode 100644 index 00000000000000..fbb32ee644a4c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" +}), 'DirectionsTransitFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitFilledTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledTwoTone.js new file mode 100644 index 00000000000000..f55ef10f67c261 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitFilledTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 5h4.67c-.54-.54-1.96-1-5.67-1-3.52 0-4.97.48-5.57 1H13zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.13.46 5.67 1H6.43c.6-.52 2.05-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsTransitFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsTransitOutlined.js new file mode 100644 index 00000000000000..2aebabac3b6b50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "2")], 'DirectionsTransitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitRounded.js b/packages/material-ui-icons/lib/esm/DirectionsTransitRounded.js new file mode 100644 index 00000000000000..3d77d387b71cd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H17.3c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" +}), 'DirectionsTransitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitSharp.js b/packages/material-ui-icons/lib/esm/DirectionsTransitSharp.js new file mode 100644 index 00000000000000..1a6d884fa83c27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" +}), 'DirectionsTransitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTransitTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsTransitTwoTone.js new file mode 100644 index 00000000000000..f5d80763360be3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTransitTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM7.5 17h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5c0 .83.67 1.5 1.5 1.5zm8-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4-4 0-8 .5-8 4zm14 4h-5V7h5v3zm-6-6c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm0 5h12v3.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "3")], 'DirectionsTransitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsTwoTone.js new file mode 100644 index 00000000000000..3a168da8bc7d60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m3.01 12 9 9L21 12l-9-9-8.99 9zM14 7.5l3.5 3.5-3.5 3.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.42 1.58c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.78-.76.79-2.03.02-2.82l-9-9.01zm-1.41 19.41-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z" +}, "1")], 'DirectionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsWalk.js b/packages/material-ui-icons/lib/esm/DirectionsWalk.js new file mode 100644 index 00000000000000..e6bfc617311ba4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsWalk.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L6 8.3V13h2V9.6l1.8-.7" +}), 'DirectionsWalk'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsWalkOutlined.js b/packages/material-ui-icons/lib/esm/DirectionsWalkOutlined.js new file mode 100644 index 00000000000000..e18465157c6d84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsWalkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" +}), 'DirectionsWalkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsWalkRounded.js b/packages/material-ui-icons/lib/esm/DirectionsWalkRounded.js new file mode 100644 index 00000000000000..f6ed6d7c478eda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsWalkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7.24 21.81c-.13.61.35 1.19.98 1.19h.08c.47 0 .87-.32.98-.78L10.9 15l2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45L12.9 13.5l.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.09 1.14-.39 1.14-1 0-.49-.36-.9-.85-.98-1.52-.25-2.78-1.15-3.45-2.33l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L7.22 7.78C6.48 8.1 6 8.82 6 9.63V12c0 .55.45 1 1 1s1-.45 1-1V9.6l1.8-.7" +}), 'DirectionsWalkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsWalkSharp.js b/packages/material-ui-icons/lib/esm/DirectionsWalkSharp.js new file mode 100644 index 00000000000000..9dafeea602e396 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsWalkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" +}), 'DirectionsWalkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirectionsWalkTwoTone.js b/packages/material-ui-icons/lib/esm/DirectionsWalkTwoTone.js new file mode 100644 index 00000000000000..1a9d75cf3d5961 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirectionsWalkTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7" +}), 'DirectionsWalkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirtyLens.js b/packages/material-ui-icons/lib/esm/DirtyLens.js new file mode 100644 index 00000000000000..b8249a9a2e40d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirtyLens.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.95 19H20V7H4v12h7.24c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33zM20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm-1.86 13.01c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" +}), 'DirtyLens'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirtyLensOutlined.js b/packages/material-ui-icons/lib/esm/DirtyLensOutlined.js new file mode 100644 index 00000000000000..832ee5082351df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirtyLensOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7.02c-.22-.84-.52-1.76-.13-2.33.81-1.12 2.67 1.77 3.81-.09.77-1.57-1.58-1.29-1.64-2.12-.05-.84 3.68.17 3.04-1.66-.61-1.73-2.42.48-2.76-.53-.58-1.74 4.7-1.68 2.85-4.01-1.76-2.22-2.47 2.85-4.41 2.33-1.34-.36-1.01-2.88-2.65-2.44-1.88.51 1.03 2.2 0 2.86-.96.63-1.72-.92-2.51-1.19-.2-.07-.69-.05-.91.19-.78.86.28 1.16.25 1.91-.02.75-1.59.49-1.51 1.49.12 1.6 2.18.45 2.4 1.24.55 1.98-1.89 2.15-.5 3.27 1.53.71 1.91-1.94 2.8-1.35.58.38.3 1.45.16 2.43H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.28 17.15c0 .48.39.86.86.86.48 0 .86-.38.86-.86s-.39-.86-.86-.86c-.48 0-.86.38-.86.86z" +}, "1")], 'DirtyLensOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirtyLensRounded.js b/packages/material-ui-icons/lib/esm/DirtyLensRounded.js new file mode 100644 index 00000000000000..9b740eb9df2cba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirtyLensRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3.34 11.58c-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33 0 .47-.38.85-.85.85s-.86-.38-.86-.85c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12zm1.48 1.43c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" +}), 'DirtyLensRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirtyLensSharp.js b/packages/material-ui-icons/lib/esm/DirtyLensSharp.js new file mode 100644 index 00000000000000..81ea0394f51da3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirtyLensSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5h-5.17L15 3H9L7.17 5H2v16h20V5zm-5.34 11.58c-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33 0 .47-.38.85-.85.85s-.86-.38-.86-.85c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12zm1.48 1.43c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" +}), 'DirtyLensSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DirtyLensTwoTone.js b/packages/material-ui-icons/lib/esm/DirtyLensTwoTone.js new file mode 100644 index 00000000000000..84cb78aef9394e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DirtyLensTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.12 5H9.88L8.05 7H4v12h7.27c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33H20V7h-4.05l-1.83-2zM19 17.15c0 .48-.38.86-.86.86-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7.02c-.22-.84-.52-1.76-.13-2.33.81-1.12 2.67 1.77 3.81-.09.77-1.57-1.58-1.29-1.64-2.12-.05-.84 3.68.17 3.04-1.66-.61-1.73-2.42.48-2.76-.53-.58-1.74 4.7-1.68 2.85-4.01-1.76-2.22-2.47 2.85-4.41 2.33-1.34-.36-1.01-2.88-2.65-2.44-1.88.51 1.03 2.2 0 2.86-.96.63-1.72-.92-2.51-1.19-.2-.07-.69-.05-.91.19-.78.86.28 1.16.25 1.91-.02.75-1.59.49-1.51 1.49.12 1.6 2.18.45 2.4 1.24.55 1.98-1.89 2.15-.5 3.27 1.53.71 1.91-1.94 2.8-1.35.58.38.3 1.45.16 2.43H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17.28 17.15c0 .48.39.86.86.86.48 0 .86-.38.86-.86s-.39-.86-.86-.86c-.48 0-.86.38-.86.86z" +}, "2")], 'DirtyLensTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DisabledByDefault.js b/packages/material-ui-icons/lib/esm/DisabledByDefault.js new file mode 100644 index 00000000000000..c8bc2faef02498 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DisabledByDefault.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" +}), 'DisabledByDefault'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DisabledByDefaultOutlined.js b/packages/material-ui-icons/lib/esm/DisabledByDefaultOutlined.js new file mode 100644 index 00000000000000..471ee9cc72663c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DisabledByDefaultOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h14v14zM3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" +}), 'DisabledByDefaultOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DisabledByDefaultRounded.js b/packages/material-ui-icons/lib/esm/DisabledByDefaultRounded.js new file mode 100644 index 00000000000000..242caa61aa11b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DisabledByDefaultRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm13.3 11.29c-.39.39-1.02.39-1.41 0L12 13.41 9.11 16.3c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 7.7 9.11a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l2.89-2.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.89 2.88c.38.39.38 1.03 0 1.41z" +}), 'DisabledByDefaultRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DisabledByDefaultSharp.js b/packages/material-ui-icons/lib/esm/DisabledByDefaultSharp.js new file mode 100644 index 00000000000000..fd0e1bb1a54b36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DisabledByDefaultSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" +}), 'DisabledByDefaultSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DisabledByDefaultTwoTone.js b/packages/material-ui-icons/lib/esm/DisabledByDefaultTwoTone.js new file mode 100644 index 00000000000000..a7a9bb644dc33a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DisabledByDefaultTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm12 10.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h14v14zM3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" +}, "1")], 'DisabledByDefaultTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiscFull.js b/packages/material-ui-icons/lib/esm/DiscFull.js new file mode 100644 index 00000000000000..1e50becb803eda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiscFull.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'DiscFull'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiscFullOutlined.js b/packages/material-ui-icons/lib/esm/DiscFullOutlined.js new file mode 100644 index 00000000000000..9923d26e823056 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiscFullOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7h2v5h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm10-4h2v2h-2zm-10-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DiscFullOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiscFullRounded.js b/packages/material-ui-icons/lib/esm/DiscFullRounded.js new file mode 100644 index 00000000000000..10291bde192e40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiscFullRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 16h2v-2h-2v2zm0-8v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'DiscFullRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiscFullSharp.js b/packages/material-ui-icons/lib/esm/DiscFullSharp.js new file mode 100644 index 00000000000000..ff38408eda175e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiscFullSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'DiscFullSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DiscFullTwoTone.js b/packages/material-ui-icons/lib/esm/DiscFullTwoTone.js new file mode 100644 index 00000000000000..b7745f7457972e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DiscFullTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 14h2v2h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM20 7h2v5h-2zm-10 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}, "1")], 'DiscFullTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dns.js b/packages/material-ui-icons/lib/esm/Dns.js new file mode 100644 index 00000000000000..c760d87b095628 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dns.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'Dns'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DnsOutlined.js b/packages/material-ui-icons/lib/esm/DnsOutlined.js new file mode 100644 index 00000000000000..b9625e84d3d9c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DnsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 15v4H5v-4h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 18.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM19 5v4H5V5h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 8.5c-.82 0-1.5-.67-1.5-1.5S6.18 5.5 7 5.5s1.5.68 1.5 1.5S7.83 8.5 7 8.5z" +}), 'DnsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DnsRounded.js b/packages/material-ui-icons/lib/esm/DnsRounded.js new file mode 100644 index 00000000000000..6435e9e351e144 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DnsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM19 3H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'DnsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DnsSharp.js b/packages/material-ui-icons/lib/esm/DnsSharp.js new file mode 100644 index 00000000000000..e5972ee2592119 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DnsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 13H3v8h18v-8zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM21 3H3v8h18V3zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'DnsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DnsTwoTone.js b/packages/material-ui-icons/lib/esm/DnsTwoTone.js new file mode 100644 index 00000000000000..29e949c5bf0c16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DnsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 9h14V5H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5S7.83 8.5 7 8.5 5.5 7.83 5.5 7 6.17 5.5 7 5.5zM5 19h14v-4H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H5v-4h14v4zm-12-.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H5V5h14v4zM7 8.5c.83 0 1.5-.67 1.5-1.5S7.83 5.5 7 5.5 5.5 6.17 5.5 7 6.17 8.5 7 8.5z" +}, "1")], 'DnsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturb.js b/packages/material-ui-icons/lib/esm/DoDisturb.js new file mode 100644 index 00000000000000..41bc6b854147ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturb.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoDisturb'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbAlt.js b/packages/material-ui-icons/lib/esm/DoDisturbAlt.js new file mode 100644 index 00000000000000..576d3b3717e9ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoDisturbAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbAltOutlined.js b/packages/material-ui-icons/lib/esm/DoDisturbAltOutlined.js new file mode 100644 index 00000000000000..66b10b7518f2f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoDisturbAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbAltRounded.js b/packages/material-ui-icons/lib/esm/DoDisturbAltRounded.js new file mode 100644 index 00000000000000..3c5a3d0daeea27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoDisturbAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbAltSharp.js b/packages/material-ui-icons/lib/esm/DoDisturbAltSharp.js new file mode 100644 index 00000000000000..875f6f3db88762 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoDisturbAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbAltTwoTone.js b/packages/material-ui-icons/lib/esm/DoDisturbAltTwoTone.js new file mode 100644 index 00000000000000..e65ae82688d687 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoDisturbAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOff.js b/packages/material-ui-icons/lib/esm/DoDisturbOff.js new file mode 100644 index 00000000000000..535485c979e5da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v2h-1.17l4.51 4.51C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zM7 11h1.17l2 2H7v-2z" +}), 'DoDisturbOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOffOutlined.js b/packages/material-ui-icons/lib/esm/DoDisturbOffOutlined.js new file mode 100644 index 00000000000000..b5c89526b59e3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z" +}), 'DoDisturbOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOffRounded.js b/packages/material-ui-icons/lib/esm/DoDisturbOffRounded.js new file mode 100644 index 00000000000000..8d1c5d02eea113 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v2h-.88l4.33 4.33C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55L14.12 11H17zm4.17 9.88L3.12 2.83a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.07 2.07C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78l2.07 2.07c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM7 13v-2h1.46l2 2H7z" +}), 'DoDisturbOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOffSharp.js b/packages/material-ui-icons/lib/esm/DoDisturbOffSharp.js new file mode 100644 index 00000000000000..e2dbe2f6e47881 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v2h-.88l4.33 4.33C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55L14.12 11H17zM2.41 2.13 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM7 13v-2h1.46l2 2H7z" +}), 'DoDisturbOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOffTwoTone.js b/packages/material-ui-icons/lib/esm/DoDisturbOffTwoTone.js new file mode 100644 index 00000000000000..7b38140583cfe1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-1.41 0-2.73.37-3.88 1.01l6 5.99H17v2h-.88L19 15.88c.63-1.15 1-2.47 1-3.88 0-4.41-3.59-8-8-8zm0 16c1.56 0 3-.45 4.23-1.23L10.46 13H7v-2h1.46L5.23 7.77C4.45 9 4 10.44 4 12c0 4.41 3.59 8 8 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z" +}, "1")], 'DoDisturbOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOn.js b/packages/material-ui-icons/lib/esm/DoDisturbOn.js new file mode 100644 index 00000000000000..b5e8fbb9b84ae2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" +}), 'DoDisturbOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOnOutlined.js b/packages/material-ui-icons/lib/esm/DoDisturbOnOutlined.js new file mode 100644 index 00000000000000..6bc5a90d42aceb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z" +}), 'DoDisturbOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOnRounded.js b/packages/material-ui-icons/lib/esm/DoDisturbOnRounded.js new file mode 100644 index 00000000000000..074187fe34a7c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'DoDisturbOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOnSharp.js b/packages/material-ui-icons/lib/esm/DoDisturbOnSharp.js new file mode 100644 index 00000000000000..2d645f755379c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" +}), 'DoDisturbOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOnTwoTone.js b/packages/material-ui-icons/lib/esm/DoDisturbOnTwoTone.js new file mode 100644 index 00000000000000..468a1318469138 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOnTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z" +}, "1")], 'DoDisturbOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbOutlined.js b/packages/material-ui-icons/lib/esm/DoDisturbOutlined.js new file mode 100644 index 00000000000000..1734b2d4df439c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoDisturbOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbRounded.js b/packages/material-ui-icons/lib/esm/DoDisturbRounded.js new file mode 100644 index 00000000000000..3adf12dcd40020 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoDisturbRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbSharp.js b/packages/material-ui-icons/lib/esm/DoDisturbSharp.js new file mode 100644 index 00000000000000..70c5ccd4aa2ee4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoDisturbSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoDisturbTwoTone.js b/packages/material-ui-icons/lib/esm/DoDisturbTwoTone.js new file mode 100644 index 00000000000000..35a5e88e22159a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoDisturbTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoDisturbTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturb.js b/packages/material-ui-icons/lib/esm/DoNotDisturb.js new file mode 100644 index 00000000000000..6b482f2be7ae9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturb.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoNotDisturb'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbAlt.js b/packages/material-ui-icons/lib/esm/DoNotDisturbAlt.js new file mode 100644 index 00000000000000..7101c645b6405d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoNotDisturbAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbAltOutlined.js b/packages/material-ui-icons/lib/esm/DoNotDisturbAltOutlined.js new file mode 100644 index 00000000000000..74e501fc447b37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoNotDisturbAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbAltRounded.js b/packages/material-ui-icons/lib/esm/DoNotDisturbAltRounded.js new file mode 100644 index 00000000000000..5a7e1ede2b53fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoNotDisturbAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbAltSharp.js b/packages/material-ui-icons/lib/esm/DoNotDisturbAltSharp.js new file mode 100644 index 00000000000000..696e728baf6c8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoNotDisturbAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbAltTwoTone.js b/packages/material-ui-icons/lib/esm/DoNotDisturbAltTwoTone.js new file mode 100644 index 00000000000000..a6d893b342dcb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" +}), 'DoNotDisturbAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOff.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOff.js new file mode 100644 index 00000000000000..91f824d8c03c5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v2h-1.46l4.68 4.68C21.34 16.07 22 14.11 22 12c0-5.52-4.48-10-10-10-2.11 0-4.07.66-5.68 1.78L13.54 11H17zM2.27 2.27 1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.27-1.27L11 11 2.27 2.27zM7 13v-2h1.46l2 2H7z" +}), 'DoNotDisturbOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOffOutlined.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOffOutlined.js new file mode 100644 index 00000000000000..ed5fdd750f602b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOffOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.94 5.12C9.14 4.41 10.52 4 12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.46zM2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06L8.17 11H7v2h3.17l5.88 5.88C14.86 19.59 13.48 20 12 20z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m13.83 11 2 2H17v-2z" +}, "1")], 'DoNotDisturbOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOffRounded.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOffRounded.js new file mode 100644 index 00000000000000..3de1f4e87734cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v2h-1.17l4.51 4.51C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM2.1 4.93l1.56 1.56c-1.37 2.07-2 4.68-1.48 7.45.75 3.95 3.92 7.13 7.88 7.88 2.77.52 5.38-.1 7.45-1.48l1.56 1.56c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42zM7 11h1.17l2 2H7v-2z" +}), 'DoNotDisturbOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOffSharp.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOffSharp.js new file mode 100644 index 00000000000000..b95a219c28ef8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11v2h-1.17l4.51 4.51C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zM7 11h1.17l2 2H7v-2z" +}), 'DoNotDisturbOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOffTwoTone.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOffTwoTone.js new file mode 100644 index 00000000000000..6113f5a8be571a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOffTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 13v-2h1.17L5.12 7.94C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12L10.17 13H7zm5-9c-1.48 0-2.86.41-4.06 1.12L13.83 11H17v2h-1.17l3.06 3.06c.7-1.2 1.11-2.58 1.11-4.06 0-4.41-3.59-8-8-8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm5 9v-2h-3.17l2 2H17zM1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zm3.73 3.72L8.17 11H7v2h3.17l5.88 5.88C14.86 19.59 13.48 20 12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z" +}, "1")], 'DoNotDisturbOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOn.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOn.js new file mode 100644 index 00000000000000..1d9d4e89d1fbb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" +}), 'DoNotDisturbOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnOutlined.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnOutlined.js new file mode 100644 index 00000000000000..ef2480e895832c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'DoNotDisturbOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnRounded.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnRounded.js new file mode 100644 index 00000000000000..baaa4f1f40a33f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'DoNotDisturbOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnSharp.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnSharp.js new file mode 100644 index 00000000000000..20debfb30b373f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" +}), 'DoNotDisturbOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilence.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilence.js new file mode 100644 index 00000000000000..e49bc271a4e5da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilence.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" +}), 'DoNotDisturbOnTotalSilence'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceOutlined.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceOutlined.js new file mode 100644 index 00000000000000..c1734e6952b922 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" +}), 'DoNotDisturbOnTotalSilenceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceRounded.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceRounded.js new file mode 100644 index 00000000000000..a71cab312d6ffb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm2 7h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'DoNotDisturbOnTotalSilenceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceSharp.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceSharp.js new file mode 100644 index 00000000000000..c6d44305c955f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" +}), 'DoNotDisturbOnTotalSilenceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceTwoTone.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceTwoTone.js new file mode 100644 index 00000000000000..4a3128adda0325 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTotalSilenceTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" +}), 'DoNotDisturbOnTotalSilenceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOnTwoTone.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTwoTone.js new file mode 100644 index 00000000000000..b9498cd0f28a28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOnTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 11h10v2H7z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "2")], 'DoNotDisturbOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbOutlined.js b/packages/material-ui-icons/lib/esm/DoNotDisturbOutlined.js new file mode 100644 index 00000000000000..fb6a7b640005c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoNotDisturbOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbRounded.js b/packages/material-ui-icons/lib/esm/DoNotDisturbRounded.js new file mode 100644 index 00000000000000..a10c28555ce4ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoNotDisturbRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbSharp.js b/packages/material-ui-icons/lib/esm/DoNotDisturbSharp.js new file mode 100644 index 00000000000000..56739eb072ed93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoNotDisturbSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotDisturbTwoTone.js b/packages/material-ui-icons/lib/esm/DoNotDisturbTwoTone.js new file mode 100644 index 00000000000000..c72631cce30e7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotDisturbTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'DoNotDisturbTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotStep.js b/packages/material-ui-icons/lib/esm/DoNotStep.js new file mode 100644 index 00000000000000..a2062bbc104d40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotStep.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1.39 4.22 7.9 7.9c.18.2.18.5-.01.7-.1.1-.23.15-.35.15s-.26-.05-.35-.15L6.87 11.1c-.11.4-.26.78-.45 1.12l1.4 1.4c.2.2.2.51 0 .71-.1.1-.23.15-.35.15s-.26-.05-.35-.15l-1.27-1.27c-.24.29-.5.56-.77.8l1.28 1.28c.2.2.2.51 0 .71-.1.1-.23.15-.36.15s-.26-.05-.35-.15l-1.38-1.38c-.69.46-1.39.79-1.97 1.02-.78.31-1.3 1.04-1.3 1.88V20h9.5l3.33-3.33 5.94 5.94 1.41-1.41L2.81 2.81 1.39 4.22zm17.12 11.46-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm2.37-6.6-4.48 4.48-7.1-7.09L13.8 2l7.08 7.08z" +}), 'DoNotStep'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotStepOutlined.js b/packages/material-ui-icons/lib/esm/DoNotStepOutlined.js new file mode 100644 index 00000000000000..d0493625ed62ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotStepOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.51 15.68-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm-3.53-3.53 3.07-3.07-4.25-4.26-3.08 3.07L9.3 6.47 13.8 2l7.08 7.08-4.48 4.48-1.42-1.41zm6.2 9.05-1.41 1.41-5.94-5.94L10.5 20H1v-2.63c0-.84.52-1.57 1.3-1.88.58-.23 1.28-.56 1.97-1.02l1.38 1.38c.09.1.22.15.35.15s.26-.05.36-.15c.2-.2.2-.51 0-.71l-1.28-1.28c.27-.24.53-.51.77-.8l1.27 1.27c.09.1.23.15.35.15s.25-.05.35-.15c.2-.2.2-.51 0-.71l-1.4-1.4c.19-.34.34-.72.45-1.12l1.71 1.72c.09.1.23.15.35.15s.25-.05.35-.15c.19-.2.19-.5.01-.7l-7.9-7.9 1.42-1.41L21.18 21.2zm-8.76-5.94-1.67-1.68-3.33 3.32c-.78.78-2.05.78-2.83-.01l-.19-.17-.47.24c-.29.14-.59.27-.89.39l-.01.65h6.64l2.75-2.74z" +}), 'DoNotStepOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotStepRounded.js b/packages/material-ui-icons/lib/esm/DoNotStepRounded.js new file mode 100644 index 00000000000000..b74d6cd190d179 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotStepRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.1 3.51c-.39.39-.39 1.02 0 1.41l7.19 7.19c.18.2.18.5-.01.7-.1.1-.23.15-.35.15s-.26-.05-.35-.15L6.87 11.1c-.11.4-.26.78-.45 1.12l1.4 1.4c.2.2.2.51 0 .71-.1.1-.23.15-.35.15s-.26-.05-.35-.15l-1.27-1.27c-.24.29-.5.56-.77.8l1.28 1.28c.2.2.2.51 0 .71-.1.1-.23.15-.36.15s-.26-.05-.35-.15l-1.38-1.38c-.71.47-1.43.81-2.02 1.04-.76.3-1.25 1.04-1.25 1.86V18c0 1.1.9 2 2 2h6.67c.53 0 1.04-.21 1.41-.59l2.74-2.74 5.23 5.23c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0zm16.41 12.17-1.41-1.41 4.48-4.48c.78.78.78 2.05 0 2.83l-3.07 3.06zm2.37-6.6-4.48 4.48-7.1-7.09 3.09-3.07c.78-.78 2.04-.77 2.82 0l5.67 5.68z" +}), 'DoNotStepRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotStepSharp.js b/packages/material-ui-icons/lib/esm/DoNotStepSharp.js new file mode 100644 index 00000000000000..f61e133f1958d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotStepSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1.39 4.22 8.24 8.24-.69.72-2.07-2.08c-.11.4-.26.78-.45 1.12l1.75 1.75-.69.72-1.63-1.63c-.24.29-.5.56-.77.8l1.63 1.63-.7.72-1.74-1.74c-1.44.96-2.93 1.35-3.27 1.45V20h9.5l3.33-3.33 5.94 5.94 1.41-1.41L2.81 2.81 1.39 4.22zm17.12 11.46-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm2.37-6.6-4.48 4.48-7.1-7.09L13.8 2l7.08 7.08z" +}), 'DoNotStepSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotStepTwoTone.js b/packages/material-ui-icons/lib/esm/DoNotStepTwoTone.js new file mode 100644 index 00000000000000..9715e976e29f55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotStepTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m14.98 12.15 3.07-3.07-4.25-4.26-3.08 3.07 4.26 4.26zm-2.56 3.11-1.67-1.68-3.33 3.32c-.78.78-2.05.78-2.83-.01l-.19-.17-.47.24c-.29.14-.59.27-.89.39l-.01.65h6.64l2.75-2.74z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18.51 15.68-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm-3.53-3.53 3.07-3.07-4.25-4.26-3.08 3.07L9.3 6.47 13.8 2l7.08 7.08-4.48 4.48-1.42-1.41zm6.2 9.05-1.41 1.41-5.94-5.94L10.5 20H1v-2.63c0-.84.52-1.57 1.3-1.88.58-.23 1.28-.56 1.97-1.02l1.38 1.38c.09.1.22.15.35.15s.26-.05.36-.15c.2-.2.2-.51 0-.71l-1.28-1.28c.27-.24.53-.51.77-.8l1.27 1.27c.09.1.23.15.35.15s.25-.05.35-.15c.2-.2.2-.51 0-.71l-1.4-1.4c.19-.34.34-.72.45-1.12l1.71 1.72c.09.1.23.15.35.15s.25-.05.35-.15c.19-.2.19-.5.01-.7l-7.9-7.9 1.42-1.41L21.18 21.2zm-8.76-5.94-1.67-1.68-3.33 3.32c-.78.78-2.05.78-2.83-.01l-.19-.17-.47.24c-.29.14-.59.27-.89.39l-.01.65h6.64l2.75-2.74z" +}, "1")], 'DoNotStepTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotTouch.js b/packages/material-ui-icons/lib/esm/DoNotTouch.js new file mode 100644 index 00000000000000..1bea294b8db3dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotTouch.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 10.17-2.5-2.5V2.25c0-.69.56-1.25 1.25-1.25S13 1.56 13 2.25v7.92zm7 2.58v-7.5C20 4.56 19.44 4 18.75 4s-1.25.56-1.25 1.25V11h-1V3.25c0-.69-.56-1.25-1.25-1.25S14 2.56 14 3.25v7.92l6 6v-4.42zM9.5 4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67V4.25zm3.5 5.92-2.5-2.5V2.25c0-.69.56-1.25 1.25-1.25S13 1.56 13 2.25v7.92zm7 2.58v-7.5C20 4.56 19.44 4 18.75 4s-1.25.56-1.25 1.25V11h-1V3.25c0-.69-.56-1.25-1.25-1.25S14 2.56 14 3.25v7.92l6 6v-4.42zM9.5 4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67V4.25zm11.69 16.94L2.81 2.81 1.39 4.22l5.63 5.63L7 9.83v4.3c-1.11-.64-2.58-1.47-2.6-1.48-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26-.04.01-1.16 1.11-1.16 1.11l6.8 7.18c.57.6 1.35.94 2.18.94H17c.62 0 1.18-.19 1.65-.52l-.02-.02 1.15 1.15 1.41-1.42z" +}), 'DoNotTouch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotTouchOutlined.js b/packages/material-ui-icons/lib/esm/DoNotTouchOutlined.js new file mode 100644 index 00000000000000..73f303b8499805 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotTouchOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22 7 9.83v4.3l-2.6-1.48c-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26L2 13.88l6.8 7.18c.57.6 1.35.94 2.18.94H17c.62 0 1.18-.19 1.66-.52l1.12 1.12 1.41-1.41L2.81 2.81zM17 20h-6c-.39 0-.64-.23-.75-.36L6.87 16H9v-4.17l8.14 8.14c-.05.01-.09.03-.14.03zm-3.17-9H14V3.25c0-.69.56-1.25 1.25-1.25s1.25.56 1.25 1.25V11h1V5.25c0-.69.56-1.25 1.25-1.25S20 4.56 20 5.25v11.92l-2-2V13h-2.17l-2-2zm-.83-.83V2.25C13 1.56 12.44 1 11.75 1s-1.25.56-1.25 1.25v5.42l2.5 2.5zm-3.5-3.5V4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67z" +}), 'DoNotTouchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotTouchRounded.js b/packages/material-ui-icons/lib/esm/DoNotTouchRounded.js new file mode 100644 index 00000000000000..e8ae9450f99d36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotTouchRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 10.17-2.5-2.5V2.25c0-.69.56-1.25 1.25-1.25S13 1.56 13 2.25v7.92zm7-4.85c0-.65-.47-1.25-1.12-1.32-.75-.08-1.38.51-1.38 1.24v5.25c0 .28-.22.5-.5.5s-.5-.22-.5-.5V3.31c0-.65-.47-1.25-1.12-1.32-.75-.06-1.38.53-1.38 1.26v7.92l6 6V5.32zM9.5 4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67V4.25zM17 22c.62 0 1.18-.19 1.65-.52l-.02-.02.44.44c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.92 4.92L7 9.83v4.3l-2.6-1.48c-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26L2 13.88l6.8 7.18c.57.6 1.35.94 2.18.94H17z" +}), 'DoNotTouchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotTouchSharp.js b/packages/material-ui-icons/lib/esm/DoNotTouchSharp.js new file mode 100644 index 00000000000000..8e865fd7fa33f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotTouchSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 10.17-2.5-2.5V1H13v9.17zM20 4h-2.5v7h-1V2H14v9.17l6 6V4zM9.5 3H7.01v1.18L9.5 6.67V3zm11.69 18.19L2.81 2.81 1.39 4.22 7 9.83v4.3l-3.32-1.9L2 13.88 9.68 22h9.54l.56.61 1.41-1.42z" +}), 'DoNotTouchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoNotTouchTwoTone.js b/packages/material-ui-icons/lib/esm/DoNotTouchTwoTone.js new file mode 100644 index 00000000000000..ab713ffc3bd5f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoNotTouchTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 15.17V13h-2.17L18 15.17zm-9-3.34 8.14 8.14c-.05.01-.09.03-.14.03h-6c-.39 0-.64-.23-.75-.36L6.87 16H9v-4.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22 7 9.83v4.3l-2.6-1.48c-.17-.09-.34-.14-.54-.14-.26 0-.5.09-.7.26L2 13.88l6.8 7.18c.57.6 1.35.94 2.18.94H17c.62 0 1.18-.19 1.66-.52l1.12 1.12 1.41-1.41L2.81 2.81zM17 20h-6c-.39 0-.64-.23-.75-.36L6.87 16H9v-4.17l8.14 8.14c-.05.01-.09.03-.14.03zm-3.17-9H14V3.25c0-.69.56-1.25 1.25-1.25s1.25.56 1.25 1.25V11h1V5.25c0-.69.56-1.25 1.25-1.25S20 4.56 20 5.25v11.92l-2-2V13h-2.17l-2-2zm-.83-.83V2.25C13 1.56 12.44 1 11.75 1s-1.25.56-1.25 1.25v5.42l2.5 2.5zm-3.5-3.5V4.25C9.5 3.56 8.94 3 8.25 3c-.67 0-1.2.53-1.24 1.18L9.5 6.67z" +}, "1")], 'DoNotTouchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dock.js b/packages/material-ui-icons/lib/esm/Dock.js new file mode 100644 index 00000000000000..5ee9e7aaff04e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dock.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" +}), 'Dock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DockOutlined.js b/packages/material-ui-icons/lib/esm/DockOutlined.js new file mode 100644 index 00000000000000..885c6ca42cece1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DockOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" +}), 'DockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DockRounded.js b/packages/material-ui-icons/lib/esm/DockRounded.js new file mode 100644 index 00000000000000..0a18957416d073 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DockRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 23h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm7-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" +}), 'DockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DockSharp.js b/packages/material-ui-icons/lib/esm/DockSharp.js new file mode 100644 index 00000000000000..c19f9d16b975da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DockSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 23h8v-2H8v2zM18 1.01 6 1v18h12V1.01zM16 15H8V5h8v10z" +}), 'DockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DockTwoTone.js b/packages/material-ui-icons/lib/esm/DockTwoTone.js new file mode 100644 index 00000000000000..7639ced189e16a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DockTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 5h8v10H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 21h8v2H8zm8-19.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z" +}, "1")], 'DockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DocumentScanner.js b/packages/material-ui-icons/lib/esm/DocumentScanner.js new file mode 100644 index 00000000000000..6e5fd567ad1b12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DocumentScanner.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zm-1 0c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM15 8H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" +}), 'DocumentScanner'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DocumentScannerOutlined.js b/packages/material-ui-icons/lib/esm/DocumentScannerOutlined.js new file mode 100644 index 00000000000000..17b3d8101643b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DocumentScannerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM17 6H7v12h10V6zm2 12c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM15 8H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" +}), 'DocumentScannerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DocumentScannerRounded.js b/packages/material-ui-icons/lib/esm/DocumentScannerRounded.js new file mode 100644 index 00000000000000..900a35e7384a90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DocumentScannerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1H4v2c0 .55-.45 1-1 1zm14-4c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1zM3 18c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1H4v-2c0-.55-.45-1-1-1zm14 4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1zm2-4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM9 9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zm0 3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zm0 3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1z" +}), 'DocumentScannerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DocumentScannerSharp.js b/packages/material-ui-icons/lib/esm/DocumentScannerSharp.js new file mode 100644 index 00000000000000..6754e7a1342f63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DocumentScannerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM19 4v16H5V4h14zm-4 4H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" +}), 'DocumentScannerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DocumentScannerTwoTone.js b/packages/material-ui-icons/lib/esm/DocumentScannerTwoTone.js new file mode 100644 index 00000000000000..5fb31734df819f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DocumentScannerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 6v12h10V6H7zm8 10H9v-2h6v2zm0-3H9v-2h6v2zm0-3H9V8h6v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM17 6H7v12h10V6zm2 12c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v12zM15 8H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" +}, "1")], 'DocumentScannerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Domain.js b/packages/material-ui-icons/lib/esm/Domain.js new file mode 100644 index 00000000000000..def6064a5ee7a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Domain.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'Domain'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainDisabled.js b/packages/material-ui-icons/lib/esm/DomainDisabled.js new file mode 100644 index 00000000000000..1e6534b8698e6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 5h2v2h-.9L12 9.9V9h8v8.9l2 2V7H12V3H5.1L8 5.9zm8 6h2v2h-2zM1.3 1.8.1 3.1 2 5v16h16l3 3 1.3-1.3-21-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm4 8H8v-2h2v2zm0-4H8v-2h2v2zm2 4v-2h2l2 2h-4z" +}), 'DomainDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainDisabledOutlined.js b/packages/material-ui-icons/lib/esm/DomainDisabledOutlined.js new file mode 100644 index 00000000000000..e70018e91f7965 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.41 1.69 0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" +}), 'DomainDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainDisabledRounded.js b/packages/material-ui-icons/lib/esm/DomainDisabledRounded.js new file mode 100644 index 00000000000000..53810ffb1474ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M.71 2.39c-.39.39-.39 1.02 0 1.41L2 5.1V19c0 1.1.9 2 2 2h13.9l2.29 2.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.39a.9959.9959 0 0 0-1.41 0zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h7c.55 0 1 .45 1 1v7.45l2 2V9c0-1.1-.9-2-2-2h-8V5c0-1.1-.9-2-2-2H5.55L8 5.45V5zm8 6h2v2h-2z" +}), 'DomainDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainDisabledSharp.js b/packages/material-ui-icons/lib/esm/DomainDisabledSharp.js new file mode 100644 index 00000000000000..bddcee61f5ee72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.41 1.69 0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" +}), 'DomainDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/DomainDisabledTwoTone.js new file mode 100644 index 00000000000000..cacd98ed615368 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainDisabledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1.41 1.69 0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 9v.45l8 8V9h-8zm6 4h-2v-2h2v2z", + opacity: ".3" +}, "1")], 'DomainDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainOutlined.js b/packages/material-ui-icons/lib/esm/DomainOutlined.js new file mode 100644 index 00000000000000..b13cb367a7ed46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'DomainOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainRounded.js b/packages/material-ui-icons/lib/esm/DomainRounded.js new file mode 100644 index 00000000000000..cd9a20eabbd25c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'DomainRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainSharp.js b/packages/material-ui-icons/lib/esm/DomainSharp.js new file mode 100644 index 00000000000000..3b950a33d2401c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" +}), 'DomainSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainTwoTone.js b/packages/material-ui-icons/lib/esm/DomainTwoTone.js new file mode 100644 index 00000000000000..0edc9caaf4f0ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-4-8h2v2h-2zm0 4h2v2h-2z" +}, "1")], 'DomainTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainVerification.js b/packages/material-ui-icons/lib/esm/DomainVerification.js new file mode 100644 index 00000000000000..16839de71c67f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainVerification.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" +}, "1")], 'DomainVerification'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainVerificationOutlined.js b/packages/material-ui-icons/lib/esm/DomainVerificationOutlined.js new file mode 100644 index 00000000000000..e29d7b66a00e1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainVerificationOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" +}, "1")], 'DomainVerificationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainVerificationRounded.js b/packages/material-ui-icons/lib/esm/DomainVerificationRounded.js new file mode 100644 index 00000000000000..0f8f746de6dfb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainVerificationRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.23 15.83c.39.39 1.02.39 1.41 0l4.24-4.24c.39-.39.39-1.02 0-1.42a.9959.9959 0 0 0-1.41 0l-3.54 3.53-1.41-1.41c-.39-.39-1.02-.39-1.42 0s-.39 1.02 0 1.41l2.13 2.13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 13c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V8h14v9z" +}, "1")], 'DomainVerificationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainVerificationSharp.js b/packages/material-ui-icons/lib/esm/DomainVerificationSharp.js new file mode 100644 index 00000000000000..ecc6f09828ed97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainVerificationSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 4v16h18V4H3zm16 14H5V8h14v10z" +}, "1")], 'DomainVerificationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DomainVerificationTwoTone.js b/packages/material-ui-icons/lib/esm/DomainVerificationTwoTone.js new file mode 100644 index 00000000000000..fe452f261bbf01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DomainVerificationTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 18h14V8H5v10zm3.82-6.42 2.12 2.12 4.24-4.24 1.41 1.41-5.66 5.66L7.4 13l1.42-1.42z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m16.6 10.88-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" +}, "2")], 'DomainVerificationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Done.js b/packages/material-ui-icons/lib/esm/Done.js new file mode 100644 index 00000000000000..8b1e949d35079f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Done.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" +}), 'Done'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneAll.js b/packages/material-ui-icons/lib/esm/DoneAll.js new file mode 100644 index 00000000000000..a2c010d6282743 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneAll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" +}), 'DoneAll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneAllOutlined.js b/packages/material-ui-icons/lib/esm/DoneAllOutlined.js new file mode 100644 index 00000000000000..cb508f828362b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneAllOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" +}), 'DoneAllOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneAllRounded.js b/packages/material-ui-icons/lib/esm/DoneAllRounded.js new file mode 100644 index 00000000000000..4248fbc3661390 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneAllRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.3 6.3a.9959.9959 0 0 0-1.41 0l-5.64 5.64 1.41 1.41L17.3 7.7c.38-.38.38-1.02 0-1.4zm4.24-.01-9.88 9.88-3.48-3.47a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L22.95 7.71c.39-.39.39-1.02 0-1.41h-.01c-.38-.4-1.01-.4-1.4-.01zM1.12 14.12 5.3 18.3c.39.39 1.02.39 1.41 0l.7-.7-4.88-4.9a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42z" +}), 'DoneAllRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneAllSharp.js b/packages/material-ui-icons/lib/esm/DoneAllSharp.js new file mode 100644 index 00000000000000..4344aa389bdff6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneAllSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" +}), 'DoneAllSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneAllTwoTone.js b/packages/material-ui-icons/lib/esm/DoneAllTwoTone.js new file mode 100644 index 00000000000000..d73d7b34a9a491 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneAllTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 7-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41 6 19l1.41-1.41L1.83 12 .41 13.41z" +}), 'DoneAllTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneOutline.js b/packages/material-ui-icons/lib/esm/DoneOutline.js new file mode 100644 index 00000000000000..13b041152be3ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 5.03 1.4 1.4L8.43 19.17l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 5.03m0-2.83L8.43 13.54l-4.2-4.2L0 13.57 8.43 22 24 6.43 19.77 2.2z" +}), 'DoneOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneOutlineOutlined.js b/packages/material-ui-icons/lib/esm/DoneOutlineOutlined.js new file mode 100644 index 00000000000000..0032fc5ea11d9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 4.93 1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" +}), 'DoneOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneOutlineRounded.js b/packages/material-ui-icons/lib/esm/DoneOutlineRounded.js new file mode 100644 index 00000000000000..6589abe81926a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.47 5.63c.39.39.39 1.01 0 1.4L9.13 18.37c-.39.39-1.01.39-1.4 0l-4.2-4.2a.9839.9839 0 0 1 0-1.4c.39-.39 1.01-.39 1.4 0l3.5 3.5L19.07 5.63c.39-.39 1.01-.39 1.4 0zm-2.11-2.12-9.93 9.93-2.79-2.79c-.78-.78-2.05-.78-2.83 0l-1.4 1.4c-.78.78-.78 2.05 0 2.83l5.6 5.6c.78.78 2.05.78 2.83 0L22.59 7.74c.78-.78.78-2.05 0-2.83l-1.4-1.4c-.79-.78-2.05-.78-2.83 0z" +}), 'DoneOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneOutlineSharp.js b/packages/material-ui-icons/lib/esm/DoneOutlineSharp.js new file mode 100644 index 00000000000000..2d61854fed249e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 4.93 1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" +}), 'DoneOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/DoneOutlineTwoTone.js new file mode 100644 index 00000000000000..91cb1c52c596a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 4.93 1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" +}), 'DoneOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneOutlined.js b/packages/material-ui-icons/lib/esm/DoneOutlined.js new file mode 100644 index 00000000000000..ed4d9cb72d77a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" +}), 'DoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneRounded.js b/packages/material-ui-icons/lib/esm/DoneRounded.js new file mode 100644 index 00000000000000..91ca756d1d0995 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 16.2-3.5-3.5a.9839.9839 0 0 0-1.4 0c-.39.39-.39 1.01 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7c.39-.39.39-1.01 0-1.4a.9839.9839 0 0 0-1.4 0L9 16.2z" +}), 'DoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneSharp.js b/packages/material-ui-icons/lib/esm/DoneSharp.js new file mode 100644 index 00000000000000..35842cf9ed6a6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" +}), 'DoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoneTwoTone.js b/packages/material-ui-icons/lib/esm/DoneTwoTone.js new file mode 100644 index 00000000000000..34bb62e5213fd8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" +}), 'DoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutLarge.js b/packages/material-ui-icons/lib/esm/DonutLarge.js new file mode 100644 index 00000000000000..a7bfe6fce1adb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutLarge.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5.08V2c-5 .5-9 4.81-9 10s4 9.5 9 10v-3.08c-3-.48-6-3.4-6-6.92s3-6.44 6-6.92zM18.97 11H22c-.47-5-4-8.53-9-9v3.08C16 5.51 18.54 8 18.97 11zM13 18.92V22c5-.47 8.53-4 9-9h-3.03c-.43 3-2.97 5.49-5.97 5.92z" +}), 'DonutLarge'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutLargeOutlined.js b/packages/material-ui-icons/lib/esm/DonutLargeOutlined.js new file mode 100644 index 00000000000000..87e64def3a8887 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutLargeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" +}), 'DonutLargeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutLargeRounded.js b/packages/material-ui-icons/lib/esm/DonutLargeRounded.js new file mode 100644 index 00000000000000..7d9caf11de0c9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutLargeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.07 5.32C16.26 6 18 7.74 18.68 9.93c.19.63.76 1.07 1.41 1.07h.04c1 0 1.72-.96 1.43-1.91-.97-3.18-3.48-5.69-6.66-6.66-.94-.29-1.9.43-1.9 1.43v.04c0 .66.44 1.23 1.07 1.42zm4.61 8.75c-.68 2.2-2.42 3.93-4.61 4.61-.63.19-1.07.76-1.07 1.41v.04c0 1 .96 1.72 1.91 1.43 3.18-.97 5.69-3.48 6.66-6.66.29-.95-.43-1.91-1.42-1.91h-.05c-.66.01-1.23.45-1.42 1.08zM11 20.11c0-.67-.45-1.24-1.09-1.44C7.07 17.78 5 15.13 5 12s2.07-5.78 4.91-6.67c.64-.2 1.09-.77 1.09-1.44v-.01c0-1-.97-1.74-1.93-1.44C4.98 3.69 2 7.5 2 12c0 4.5 2.98 8.31 7.07 9.56.96.3 1.93-.44 1.93-1.45z" +}), 'DonutLargeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutLargeSharp.js b/packages/material-ui-icons/lib/esm/DonutLargeSharp.js new file mode 100644 index 00000000000000..b4736081a83e03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutLargeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" +}), 'DonutLargeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutLargeTwoTone.js b/packages/material-ui-icons/lib/esm/DonutLargeTwoTone.js new file mode 100644 index 00000000000000..1171cd0bd224a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutLargeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" +}), 'DonutLargeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutSmall.js b/packages/material-ui-icons/lib/esm/DonutSmall.js new file mode 100644 index 00000000000000..a15de28da69008 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutSmall.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9.16V2c-5 .5-9 4.79-9 10s4 9.5 9 10v-7.16c-1-.41-2-1.52-2-2.84s1-2.43 2-2.84zM14.86 11H22c-.48-4.75-4-8.53-9-9v7.16c1 .3 1.52.98 1.86 1.84zM13 14.84V22c5-.47 8.52-4.25 9-9h-7.14c-.34.86-.86 1.54-1.86 1.84z" +}), 'DonutSmall'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutSmallOutlined.js b/packages/material-ui-icons/lib/esm/DonutSmallOutlined.js new file mode 100644 index 00000000000000..20136e29c7fb17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutSmallOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z" +}), 'DonutSmallOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutSmallRounded.js b/packages/material-ui-icons/lib/esm/DonutSmallRounded.js new file mode 100644 index 00000000000000..e2fa8d94e27658 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutSmallRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 3.18v17.64c0 .64-.59 1.12-1.21.98C5.32 20.8 2 16.79 2 12s3.32-8.8 7.79-9.8c.62-.14 1.21.34 1.21.98zm2.03 0v6.81c0 .55.45 1 1 1h6.79c.64 0 1.12-.59.98-1.22-.85-3.76-3.8-6.72-7.55-7.57-.63-.14-1.22.34-1.22.98zm0 10.83v6.81c0 .64.59 1.12 1.22.98 3.76-.85 6.71-3.82 7.56-7.58.14-.62-.35-1.22-.98-1.22h-6.79c-.56.01-1.01.46-1.01 1.01z" +}), 'DonutSmallRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutSmallSharp.js b/packages/material-ui-icons/lib/esm/DonutSmallSharp.js new file mode 100644 index 00000000000000..16da2d86c227c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutSmallSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 9.18c.85.3 1.51.97 1.82 1.82h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13zm-2 5.64C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-7.13zM14.82 13c-.3.85-.97 1.51-1.82 1.82v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13z" +}), 'DonutSmallSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DonutSmallTwoTone.js b/packages/material-ui-icons/lib/esm/DonutSmallTwoTone.js new file mode 100644 index 00000000000000..387da510213c1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DonutSmallTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.99 9h3.43C18.6 7 17 5.4 15 4.58v3.43c.37.28.71.62.99.99zM4 12c0 3.35 2.04 6.24 5 7.42v-3.44c-1.23-.93-2-2.4-2-3.99C7 10.4 7.77 8.93 9 8V4.58C6.04 5.76 4 8.65 4 12zm11 3.99v3.43c2-.82 3.6-2.42 4.42-4.42h-3.43c-.28.37-.62.71-.99.99z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z" +}, "1")], 'DonutSmallTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorBack.js b/packages/material-ui-icons/lib/esm/DoorBack.js new file mode 100644 index 00000000000000..0a93aa6fb4b83e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorBack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-8-6H9v-2h2v2z" +}), 'DoorBack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorBackOutlined.js b/packages/material-ui-icons/lib/esm/DoorBackOutlined.js new file mode 100644 index 00000000000000..d09009d86aec58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorBackOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 11h2v2H9z" +}, "1")], 'DoorBackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorBackRounded.js b/packages/material-ui-icons/lib/esm/DoorBackRounded.js new file mode 100644 index 00000000000000..f95e3dfd50a81a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorBackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19h-1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm-10-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'DoorBackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorBackSharp.js b/packages/material-ui-icons/lib/esm/DoorBackSharp.js new file mode 100644 index 00000000000000..3eb6309cc4ace9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorBackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19V3H5v16H3v2h18v-2h-2zm-8-6H9v-2h2v2z" +}), 'DoorBackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorBackTwoTone.js b/packages/material-ui-icons/lib/esm/DoorBackTwoTone.js new file mode 100644 index 00000000000000..dfc013abdfe670 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorBackTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h10V5H7v14zm2-8h2v2H9v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 11h2v2H9z" +}, "2")], 'DoorBackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorFront.js b/packages/material-ui-icons/lib/esm/DoorFront.js new file mode 100644 index 00000000000000..5b3a7a21008a6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorFront.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-4-6h-2v-2h2v2z" +}), 'DoorFront'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorFrontOutlined.js b/packages/material-ui-icons/lib/esm/DoorFrontOutlined.js new file mode 100644 index 00000000000000..8d9d27d9e6b835 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorFrontOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14zm-4-8h2v2h-2v-2z" +}), 'DoorFrontOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorFrontRounded.js b/packages/material-ui-icons/lib/esm/DoorFrontRounded.js new file mode 100644 index 00000000000000..9ca4a8ce1a7946 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorFrontRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19h-1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm-6-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'DoorFrontRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorFrontSharp.js b/packages/material-ui-icons/lib/esm/DoorFrontSharp.js new file mode 100644 index 00000000000000..c1983e9718fbdf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorFrontSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19V3H5v16H3v2h18v-2h-2zm-4-6h-2v-2h2v2z" +}), 'DoorFrontSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorFrontTwoTone.js b/packages/material-ui-icons/lib/esm/DoorFrontTwoTone.js new file mode 100644 index 00000000000000..7f83984ba59ddd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorFrontTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h10V5H7v14zm6-8h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 11h2v2h-2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 19V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14H3v2h18v-2h-2zm-2 0H7V5h10v14z" +}, "2")], 'DoorFrontTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorSliding.js b/packages/material-ui-icons/lib/esm/DoorSliding.js new file mode 100644 index 00000000000000..033592b544030f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorSliding.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19V5c0-1.1-.9-2-2-2h-5.25v16h-1.5V3H6c-1.1 0-2 .9-2 2v14H3v2h18v-2h-1zm-10-6H8v-2h2v2zm6 0h-2v-2h2v2z" +}), 'DoorSliding'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorSlidingOutlined.js b/packages/material-ui-icons/lib/esm/DoorSlidingOutlined.js new file mode 100644 index 00000000000000..16b9152227e490 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorSlidingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 13H8v-2h2v2zm6-2h-2v2h2v-2zm5 8v2H3v-2h1V5c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v14h1zM11 5H6v14h5V5zm7 0h-5v14h5V5z" +}), 'DoorSlidingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorSlidingRounded.js b/packages/material-ui-icons/lib/esm/DoorSlidingRounded.js new file mode 100644 index 00000000000000..111baf6be693a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorSlidingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19V5c0-1.1-.9-2-2-2h-5.25v16h-1.5V3H6c-1.1 0-2 .9-2 2v14c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zM9 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'DoorSlidingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorSlidingSharp.js b/packages/material-ui-icons/lib/esm/DoorSlidingSharp.js new file mode 100644 index 00000000000000..f2ba89ed43ca85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorSlidingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19V3h-7.25v16h-1.5V3H4v16H3v2h18v-2h-1zm-10-6H8v-2h2v2zm6 0h-2v-2h2v2z" +}), 'DoorSlidingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorSlidingTwoTone.js b/packages/material-ui-icons/lib/esm/DoorSlidingTwoTone.js new file mode 100644 index 00000000000000..32bc193a5a7b95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorSlidingTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 19h5V5h-5v14zm1-8h2v2h-2v-2zm-8 8h5V5H6v14zm2-8h2v2H8v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 19V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v14H3v2h18v-2h-1zm-9 0H6V5h5v14zm7 0h-5V5h5v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8 11h2v2H8zm6 0h2v2h-2z" +}, "2")], 'DoorSlidingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Doorbell.js b/packages/material-ui-icons/lib/esm/Doorbell.js new file mode 100644 index 00000000000000..00c12de92cb3ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Doorbell.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm0 14.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm4-1.5H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-.25c0-.41.34-.75.75-.75s.75.34.75.75v.25c1.44.34 2.25 1.62 2.25 3.16V15h1v1z" +}), 'Doorbell'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorbellOutlined.js b/packages/material-ui-icons/lib/esm/DoorbellOutlined.js new file mode 100644 index 00000000000000..8235cfd62a562a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorbellOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 16.5h2c0 .55-.45 1-1 1s-1-.45-1-1zm4-1.5v-2.34c0-1.54-.81-2.82-2.25-3.16v-.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v.25C9.82 9.84 9 11.12 9 12.66V15H8v1h8v-1h-1zm-3-9.5L6 10v9h12v-9l-6-4.5M12 3l8 6v12H4V9l8-6z" +}), 'DoorbellOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorbellRounded.js b/packages/material-ui-icons/lib/esm/DoorbellRounded.js new file mode 100644 index 00000000000000..2bfdbe8dfb6231 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorbellRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.8 3.9-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zM12 17.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm3.5-1.5h-7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H9v-2.34c0-1.54.82-2.82 2.25-3.16v-.25c0-.41.34-.75.75-.75s.75.34.75.75v.25c1.44.34 2.25 1.62 2.25 3.16V15h.5c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'DoorbellRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorbellSharp.js b/packages/material-ui-icons/lib/esm/DoorbellSharp.js new file mode 100644 index 00000000000000..49c5ce4b70c752 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorbellSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm0 14.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm4-1.5H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-1h1.5v1c1.44.34 2.25 1.62 2.25 3.16V15h1v1z" +}), 'DoorbellSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoorbellTwoTone.js b/packages/material-ui-icons/lib/esm/DoorbellTwoTone.js new file mode 100644 index 00000000000000..ea10399b7a805d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoorbellTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 10v9h12v-9l-6-4.5L6 10zm6 7.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm.75-8.25v.25c1.44.34 2.25 1.62 2.25 3.16V15h1v1H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-.25c0-.41.34-.75.75-.75s.75.34.75.75z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm6 16H6v-9l6-4.5 6 4.5v9z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.25 9.25v.25C9.82 9.84 9 11.12 9 12.66V15H8v1h8v-1h-1v-2.34c0-1.54-.81-2.82-2.25-3.16v-.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75zM12 17.5c.55 0 1-.45 1-1h-2c0 .55.45 1 1 1z" +}, "2")], 'DoorbellTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoubleArrow.js b/packages/material-ui-icons/lib/esm/DoubleArrow.js new file mode 100644 index 00000000000000..62cbc1dc41f321 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoubleArrow.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 5H11l5 7-5 7h4.5l5-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 5H4l5 7-5 7h4.5l5-7z" +}, "1")], 'DoubleArrow'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoubleArrowOutlined.js b/packages/material-ui-icons/lib/esm/DoubleArrowOutlined.js new file mode 100644 index 00000000000000..038a0ad3f684a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoubleArrowOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 5H11l5 7-5 7h4.5l5-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 5H4l5 7-5 7h4.5l5-7z" +}, "1")], 'DoubleArrowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoubleArrowRounded.js b/packages/material-ui-icons/lib/esm/DoubleArrowRounded.js new file mode 100644 index 00000000000000..6c11f76d1ae7a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoubleArrowRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m20.08 11.42-4.04-5.65c-.34-.48-.89-.77-1.48-.77-1.49 0-2.35 1.68-1.49 2.89L16 12l-2.93 4.11c-.87 1.21 0 2.89 1.49 2.89.59 0 1.15-.29 1.49-.77l4.04-5.65c.24-.35.24-.81-.01-1.16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.08 11.42 9.05 5.77C8.7 5.29 8.15 5 7.56 5 6.07 5 5.2 6.68 6.07 7.89L9 12l-2.93 4.11C5.2 17.32 6.07 19 7.56 19c.59 0 1.15-.29 1.49-.77l4.04-5.65c.24-.35.24-.81-.01-1.16z" +}, "1")], 'DoubleArrowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoubleArrowSharp.js b/packages/material-ui-icons/lib/esm/DoubleArrowSharp.js new file mode 100644 index 00000000000000..73fa4b761b8ccd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoubleArrowSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 5H11l5 7-5 7h4.5l5-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 5H4l5 7-5 7h4.5l5-7z" +}, "1")], 'DoubleArrowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DoubleArrowTwoTone.js b/packages/material-ui-icons/lib/esm/DoubleArrowTwoTone.js new file mode 100644 index 00000000000000..016124ea4fbf03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DoubleArrowTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 5H11l5 7-5 7h4.5l5-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 5H4l5 7-5 7h4.5l5-7z" +}, "1")], 'DoubleArrowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownhillSkiing.js b/packages/material-ui-icons/lib/esm/DownhillSkiing.js new file mode 100644 index 00000000000000..0c30006c10ea81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownhillSkiing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" +}), 'DownhillSkiing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownhillSkiingOutlined.js b/packages/material-ui-icons/lib/esm/DownhillSkiingOutlined.js new file mode 100644 index 00000000000000..a8954f7f5179d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownhillSkiingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" +}), 'DownhillSkiingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownhillSkiingRounded.js b/packages/material-ui-icons/lib/esm/DownhillSkiingRounded.js new file mode 100644 index 00000000000000..582ff63ce2467c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownhillSkiingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.68 0 1.34-.12 1.95-.33.27-.09.57-.02.78.18.39.4.23 1.06-.3 1.24-.76.27-1.58.41-2.43.41-.86 0-1.68-.14-2.45-.41L2.7 17.72c-.39-.14-.59-.57-.45-.95.14-.39.57-.6.96-.45l6.19 2.25 1.72-4.44-3.57-3.73c-.9-.94-.68-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.29-.89c.13-.39.55-.61.94-.48.4.13.61.55.48.95l-.6 1.85c-.17.52-.72.82-1.24.65-2.02-.63-3.64-2.15-4.42-4.1l-2.53 1.45 2.23 2.55c.49.56.63 1.34.36 2.04l-1.78 4.63 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.56z" +}), 'DownhillSkiingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownhillSkiingSharp.js b/packages/material-ui-icons/lib/esm/DownhillSkiingSharp.js new file mode 100644 index 00000000000000..154911be6921a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownhillSkiingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" +}), 'DownhillSkiingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownhillSkiingTwoTone.js b/packages/material-ui-icons/lib/esm/DownhillSkiingTwoTone.js new file mode 100644 index 00000000000000..8feb94c7dd7662 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownhillSkiingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4.76.27c.62.21 1.27.33 1.96.33.84 0 1.65-.18 2.38-.5L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08c.44 1.42 1.48 2.57 2.83 3.14l.52-1.6 1.43.46-1.12 3.45c-2.45-.4-4.48-2.07-5.38-4.32l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" +}), 'DownhillSkiingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Download.js b/packages/material-ui-icons/lib/esm/Download.js new file mode 100644 index 00000000000000..3ea6682bbcaba9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Download.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 20h14v-2H5v2zM19 9h-4V3H9v6H5l7 7 7-7z" +}), 'Download'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadDone.js b/packages/material-ui-icons/lib/esm/DownloadDone.js new file mode 100644 index 00000000000000..b0d54268844c11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadDone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" +}), 'DownloadDone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadDoneOutlined.js b/packages/material-ui-icons/lib/esm/DownloadDoneOutlined.js new file mode 100644 index 00000000000000..08574cfca8b5d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadDoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" +}), 'DownloadDoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadDoneRounded.js b/packages/material-ui-icons/lib/esm/DownloadDoneRounded.js new file mode 100644 index 00000000000000..ee1fd6e371d977 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadDoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 18h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm5.01-4.1c-.78.77-2.04.77-2.82-.01L6 11.7c-.55-.55-.54-1.44.03-1.97.54-.52 1.4-.5 1.92.02L9.6 11.4l6.43-6.43c.54-.54 1.41-.54 1.95 0l.04.04c.54.54.54 1.42-.01 1.96l-7 6.93z" +}), 'DownloadDoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadDoneSharp.js b/packages/material-ui-icons/lib/esm/DownloadDoneSharp.js new file mode 100644 index 00000000000000..bda37705a32068 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadDoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" +}), 'DownloadDoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadDoneTwoTone.js b/packages/material-ui-icons/lib/esm/DownloadDoneTwoTone.js new file mode 100644 index 00000000000000..837cffe379e3d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadDoneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" +}), 'DownloadDoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadForOffline.js b/packages/material-ui-icons/lib/esm/DownloadForOffline.js new file mode 100644 index 00000000000000..8d2ced42d1d0d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadForOffline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z" +}), 'DownloadForOffline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadForOfflineOutlined.js b/packages/material-ui-icons/lib/esm/DownloadForOfflineOutlined.js new file mode 100644 index 00000000000000..29bbbf55c12b16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadForOfflineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm2.59-11.41L16 10l-4 4-4-4 1.41-1.41L11 10.17V6h2v4.17l1.59-1.58zM17 17H7v-2h10v2z" +}), 'DownloadForOfflineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadForOfflineRounded.js b/packages/material-ui-icons/lib/esm/DownloadForOfflineRounded.js new file mode 100644 index 00000000000000..986d81e6ed2f65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadForOfflineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V7c0-.55.45-1 1-1s1 .45 1 1v3h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.51.2-.71 0l-2.79-2.79c-.31-.31-.09-.85.36-.85H11zm5 7H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'DownloadForOfflineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadForOfflineSharp.js b/packages/material-ui-icons/lib/esm/DownloadForOfflineSharp.js new file mode 100644 index 00000000000000..01a05c314af280 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadForOfflineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z" +}), 'DownloadForOfflineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadForOfflineTwoTone.js b/packages/material-ui-icons/lib/esm/DownloadForOfflineTwoTone.js new file mode 100644 index 00000000000000..32b7384541727b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadForOfflineTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 6V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 10h-3V6h-2v4H8l4 4zm-9 5h10v2H7z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "2")], 'DownloadForOfflineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadOutlined.js b/packages/material-ui-icons/lib/esm/DownloadOutlined.js new file mode 100644 index 00000000000000..acb0e4fd3f890f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z" +}), 'DownloadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadRounded.js b/packages/material-ui-icons/lib/esm/DownloadRounded.js new file mode 100644 index 00000000000000..c92038e9f65cbe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" +}), 'DownloadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadSharp.js b/packages/material-ui-icons/lib/esm/DownloadSharp.js new file mode 100644 index 00000000000000..5be3eb969c4aab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" +}), 'DownloadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadTwoTone.js b/packages/material-ui-icons/lib/esm/DownloadTwoTone.js new file mode 100644 index 00000000000000..ef01a45b6e2cb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 9V5h-2v6H9.83L12 13.17 14.17 11H13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 9V3H9v6H5l7 7 7-7h-4zm-3 4.17L9.83 11H11V5h2v6h1.17L12 13.17zM5 18h14v2H5z" +}, "1")], 'DownloadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Downloading.js b/packages/material-ui-icons/lib/esm/Downloading.js new file mode 100644 index 00000000000000..c1006046242360 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Downloading.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zM13 12V7h-2v5H7l5 5 5-5h-4zm-2 7.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" +}), 'Downloading'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadingOutlined.js b/packages/material-ui-icons/lib/esm/DownloadingOutlined.js new file mode 100644 index 00000000000000..8a0521b225df0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm2.59-9.34L13 13.17V7h-2v6.17l-2.59-2.59L7 12l5 5 5-5-1.41-1.41zM11 19.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" +}), 'DownloadingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadingRounded.js b/packages/material-ui-icons/lib/esm/DownloadingRounded.js new file mode 100644 index 00000000000000..54b33dc64b1cde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.33 3.55c-.94-.6-1.99-1.04-3.12-1.3-.62-.14-1.21.34-1.21.98 0 .45.3.87.74.97.91.2 1.77.56 2.53 1.05.39.25.89.17 1.22-.16.45-.45.38-1.2-.16-1.54zM20.77 11c.64 0 1.13-.59.98-1.21-.26-1.12-.7-2.17-1.3-3.12-.34-.54-1.1-.61-1.55-.16-.32.32-.4.83-.16 1.22.49.77.85 1.62 1.05 2.53.11.44.52.74.98.74zm-1.87 6.49c.45.45 1.21.38 1.55-.15.6-.94 1.04-1.99 1.3-3.11.14-.62-.35-1.21-.98-1.21-.45 0-.87.3-.97.74-.2.91-.57 1.76-1.05 2.53-.25.37-.17.88.15 1.2zM13 20.77c0 .64.59 1.13 1.21.98 1.12-.26 2.17-.7 3.11-1.3.54-.34.61-1.1.16-1.55-.32-.32-.83-.4-1.21-.15-.76.49-1.61.85-2.53 1.05-.44.1-.74.51-.74.97zM13 12V8c0-.55-.45-1-1-1s-1 .45-1 1v4H9.41c-.89 0-1.34 1.08-.71 1.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H13zm-2 8.77c0 .64-.59 1.13-1.21.99C5.33 20.75 2 16.77 2 12s3.33-8.75 7.79-9.75c.62-.14 1.21.34 1.21.98 0 .46-.31.87-.76.97C6.67 5 4 8.19 4 12s2.67 7 6.24 7.8c.45.1.76.51.76.97z" +}), 'DownloadingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadingSharp.js b/packages/material-ui-icons/lib/esm/DownloadingSharp.js new file mode 100644 index 00000000000000..2122a5664aef0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zM13 12V7h-2v5H7l5 5 5-5h-4zm-2 7.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" +}), 'DownloadingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DownloadingTwoTone.js b/packages/material-ui-icons/lib/esm/DownloadingTwoTone.js new file mode 100644 index 00000000000000..c2c38721122e8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DownloadingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.32 4.26C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zm-1.62 5.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zM13 12V7h-2v5H7l5 5 5-5h-4zm-2 7.93v2.02c-5.05-.5-9-4.76-9-9.95s3.95-9.45 9-9.95v2.02C7.05 4.56 4 7.92 4 12s3.05 7.44 7 7.93z" +}), 'DownloadingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Drafts.js b/packages/material-ui-icons/lib/esm/Drafts.js new file mode 100644 index 00000000000000..b79036dd1b2168 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Drafts.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 13 3.74 7.84 12 3l8.26 4.84L12 13z" +}), 'Drafts'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DraftsOutlined.js b/packages/material-ui-icons/lib/esm/DraftsOutlined.js new file mode 100644 index 00000000000000..a2638a940fc44d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DraftsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-2 0v.01L12 13 4 8l8-4.68L19.99 8zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z" +}), 'DraftsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DraftsRounded.js b/packages/material-ui-icons/lib/esm/DraftsRounded.js new file mode 100644 index 00000000000000..bcdf937deef589 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DraftsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 8c0-.72-.37-1.35-.94-1.7l-8.04-4.71c-.62-.37-1.4-.37-2.02 0L2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-11.05 4.34-7.2-4.5 7.25-4.25c.62-.37 1.4-.37 2.02 0l7.25 4.25-7.2 4.5c-.65.4-1.47.4-2.12 0z" +}), 'DraftsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DraftsSharp.js b/packages/material-ui-icons/lib/esm/DraftsSharp.js new file mode 100644 index 00000000000000..0fa45f806319b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DraftsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 6.86 12 1 2 6.86V20h20l-.01-13.14zM12 13 3.74 7.84 12 3l8.26 4.84L12 13z" +}), 'DraftsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DraftsTwoTone.js b/packages/material-ui-icons/lib/esm/DraftsTwoTone.js new file mode 100644 index 00000000000000..fab0c17fd4c240 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DraftsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 15.36-8-5.02V18h16l-.01-7.63z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 3.32 19.99 8v.01L12 13 4 8l8-4.68zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z" +}, "1")], 'DraftsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragHandle.js b/packages/material-ui-icons/lib/esm/DragHandle.js new file mode 100644 index 00000000000000..32e668fff44b36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragHandle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z" +}), 'DragHandle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragHandleOutlined.js b/packages/material-ui-icons/lib/esm/DragHandleOutlined.js new file mode 100644 index 00000000000000..fa8ecba64184d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragHandleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z" +}), 'DragHandleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragHandleRounded.js b/packages/material-ui-icons/lib/esm/DragHandleRounded.js new file mode 100644 index 00000000000000..c2c31b98dfdff6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragHandleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'DragHandleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragHandleSharp.js b/packages/material-ui-icons/lib/esm/DragHandleSharp.js new file mode 100644 index 00000000000000..a72af7508fb6a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragHandleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z" +}), 'DragHandleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragHandleTwoTone.js b/packages/material-ui-icons/lib/esm/DragHandleTwoTone.js new file mode 100644 index 00000000000000..e5edf09a9f6e3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragHandleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h16v2H4zm0 4h16v2H4z" +}), 'DragHandleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragIndicator.js b/packages/material-ui-icons/lib/esm/DragIndicator.js new file mode 100644 index 00000000000000..bb4aeffc55ea65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragIndicator.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DragIndicator'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragIndicatorOutlined.js b/packages/material-ui-icons/lib/esm/DragIndicatorOutlined.js new file mode 100644 index 00000000000000..068a082ff3f18b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragIndicatorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DragIndicatorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragIndicatorRounded.js b/packages/material-ui-icons/lib/esm/DragIndicatorRounded.js new file mode 100644 index 00000000000000..99e5418ef955f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragIndicatorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DragIndicatorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragIndicatorSharp.js b/packages/material-ui-icons/lib/esm/DragIndicatorSharp.js new file mode 100644 index 00000000000000..4c953045110e82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragIndicatorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DragIndicatorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DragIndicatorTwoTone.js b/packages/material-ui-icons/lib/esm/DragIndicatorTwoTone.js new file mode 100644 index 00000000000000..0943f4103c1a84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DragIndicatorTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'DragIndicatorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveEta.js b/packages/material-ui-icons/lib/esm/DriveEta.js new file mode 100644 index 00000000000000..d56b3bd3714965 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveEta.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" +}), 'DriveEta'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveEtaOutlined.js b/packages/material-ui-icons/lib/esm/DriveEtaOutlined.js new file mode 100644 index 00000000000000..617936501f9ba2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveEtaOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "13.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "13.5", + r: "1.5" +}, "2")], 'DriveEtaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveEtaRounded.js b/packages/material-ui-icons/lib/esm/DriveEtaRounded.js new file mode 100644 index 00000000000000..3b22be42c70c41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveEtaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 19.33 6 18.5V18h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 10H5z" +}), 'DriveEtaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveEtaSharp.js b/packages/material-ui-icons/lib/esm/DriveEtaSharp.js new file mode 100644 index 00000000000000..227ea4e93fad4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveEtaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 5.01 18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" +}), 'DriveEtaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveEtaTwoTone.js b/packages/material-ui-icons/lib/esm/DriveEtaTwoTone.js new file mode 100644 index 00000000000000..ec117a3b402a74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveEtaTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5.12 11-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "13.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "13.5", + r: "1.5" +}, "3")], 'DriveEtaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileMove.js b/packages/material-ui-icons/lib/esm/DriveFileMove.js new file mode 100644 index 00000000000000..1af49fd4be751c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileMove.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 12v-3h-4v-4h4V8l5 5-5 5z" +}), 'DriveFileMove'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileMoveOutlined.js b/packages/material-ui-icons/lib/esm/DriveFileMoveOutlined.js new file mode 100644 index 00000000000000..6b6f2d728f2e98 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileMoveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10zm-7.84-6H8v2h4.16l-1.59 1.59L11.99 17 16 13.01 11.99 9l-1.41 1.41L12.16 12z" +}), 'DriveFileMoveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileMoveRounded.js b/packages/material-ui-icons/lib/esm/DriveFileMoveRounded.js new file mode 100644 index 00000000000000..aa4bb1827171ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileMoveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 9.79V14H9c-.55 0-1-.45-1-1s.45-1 1-1h3v-1.79c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36z" +}), 'DriveFileMoveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileMoveSharp.js b/packages/material-ui-icons/lib/esm/DriveFileMoveSharp.js new file mode 100644 index 00000000000000..3a1605eee5e3e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileMoveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H12l-2-2H2v16h20V6zM12 17v-3H8v-2h4V9l4 4-4 4z" +}), 'DriveFileMoveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileMoveTwoTone.js b/packages/material-ui-icons/lib/esm/DriveFileMoveTwoTone.js new file mode 100644 index 00000000000000..4a52355a4f4fb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileMoveTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 14h4v3l4-4-4-4v3H8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10.59 7.41 9.17 6H4v12h16V8h-8.83l-.58-.59zM12 9l4 4-4 4v-3H8v-2h4V9z", + opacity: ".3" +}, "2")], 'DriveFileMoveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileRenameOutline.js b/packages/material-ui-icons/lib/esm/DriveFileRenameOutline.js new file mode 100644 index 00000000000000..e83adbcdeb1e48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileRenameOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.41 5.8 17.2 4.59c-.78-.78-2.05-.78-2.83 0l-2.68 2.68L3 15.96V20h4.04l8.74-8.74 2.63-2.63c.79-.78.79-2.05 0-2.83zM6.21 18H5v-1.21l8.66-8.66 1.21 1.21L6.21 18zM11 20l4-4h6v4H11z" +}), 'DriveFileRenameOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineOutlined.js b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineOutlined.js new file mode 100644 index 00000000000000..c480c13a19255a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06-3.75-3.75zM5.92 18H5v-.92l7.06-7.06.92.92L5.92 18zm12.79-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'DriveFileRenameOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineRounded.js b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineRounded.js new file mode 100644 index 00000000000000..2bd77caba45d96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 16-4 4h8c1.1 0 2-.9 2-2s-.9-2-2-2h-4zm-2.94-8.81-8.77 8.77c-.18.18-.29.44-.29.7V19c0 .55.45 1 1 1h2.34c.27 0 .52-.11.71-.29l8.77-8.77-3.76-3.75zm6.65.85c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'DriveFileRenameOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineSharp.js b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineSharp.js new file mode 100644 index 00000000000000..1b80825ea96da1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06zm1.072-1.0673 2.5385-2.5386 3.7477 3.7477-2.5385 2.5385z" +}), 'DriveFileRenameOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineTwoTone.js new file mode 100644 index 00000000000000..c425b295759507 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFileRenameOutlineTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.06 10.02 5 17.08V18h.92l7.06-7.06z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15 16-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06-3.75-3.75zM5.92 18H5v-.92l7.06-7.06.92.92L5.92 18zm12.79-9.96c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83z" +}, "1")], 'DriveFileRenameOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFolderUpload.js b/packages/material-ui-icons/lib/esm/DriveFolderUpload.js new file mode 100644 index 00000000000000..3b51b3d774efc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFolderUpload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zM8 13.01l1.41 1.41L11 12.84V17h2v-4.16l1.59 1.59L16 13.01 12.01 9 8 13.01z" +}), 'DriveFolderUpload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFolderUploadOutlined.js b/packages/material-ui-icons/lib/esm/DriveFolderUploadOutlined.js new file mode 100644 index 00000000000000..da0b39461290f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFolderUploadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zM9.41 14.42 11 12.84V17h2v-4.16l1.59 1.59L16 13.01 12.01 9 8 13.01l1.41 1.41z" +}), 'DriveFolderUploadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFolderUploadRounded.js b/packages/material-ui-icons/lib/esm/DriveFolderUploadRounded.js new file mode 100644 index 00000000000000..a4a2cf70b9cbc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFolderUploadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7 7v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H9.21c-.45 0-.67-.54-.35-.85l2.8-2.79c.2-.2.51-.19.71 0l2.79 2.79c.3.31.08.85-.36.85H13z" +}), 'DriveFolderUploadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFolderUploadSharp.js b/packages/material-ui-icons/lib/esm/DriveFolderUploadSharp.js new file mode 100644 index 00000000000000..20b77a978d7167 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFolderUploadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H12l-2-2H2v16h20V6zm-9 7v4h-2v-4H8l4.01-4L16 13h-3z" +}), 'DriveFolderUploadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DriveFolderUploadTwoTone.js b/packages/material-ui-icons/lib/esm/DriveFolderUploadTwoTone.js new file mode 100644 index 00000000000000..d90485ee2d44a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DriveFolderUploadTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.17 6H4v12h16V8h-8.83l-2-2zM16 13h-3v4h-2v-4H8l4.01-4L16 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 13v4h2v-4h3l-3.99-4L8 13z" +}, "2")], 'DriveFolderUploadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dry.js b/packages/material-ui-icons/lib/esm/Dry.js new file mode 100644 index 00000000000000..eab91c220e6543 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dry.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.65 4.86-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zM9.12 5l-7.18 6.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25S19.44 10 18.75 10H8.86c.64-1.11 1.48-2.58 1.49-2.61.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7C10.22 6.12 9.12 5 9.12 5z" +}), 'Dry'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryCleaning.js b/packages/material-ui-icons/lib/esm/DryCleaning.js new file mode 100644 index 00000000000000..862e8b29e5ebed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryCleaning.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v6h10v-6h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM18.58 14H17v-1H7v1H5.42c-.23 0-.42-.19-.42-.43 0-.17.1-.32.25-.38l6.75-3 6.75 3c.15.07.25.22.25.39 0 .23-.19.42-.42.42z" +}), 'DryCleaning'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryCleaningOutlined.js b/packages/material-ui-icons/lib/esm/DryCleaningOutlined.js new file mode 100644 index 00000000000000..e8a9694c4f7ac0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryCleaningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v6h10v-6h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM15 20H9v-5h6v5zm3.58-6H17v-1H7v1H5.42c-.46 0-.58-.65-.17-.81l6.75-3 6.75 3c.42.19.28.81-.17.81z" +}), 'DryCleaningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryCleaningRounded.js b/packages/material-ui-icons/lib/esm/DryCleaningRounded.js new file mode 100644 index 00000000000000..916afbbb119840 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryCleaningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1c.38 0 .72.22.88.53.16.31.51.47.85.47.74 0 1.26-.79.91-1.44-.6-1.1-1.86-1.78-3.24-1.51-1.17.23-2.12 1.2-2.34 2.37-.29 1.56.61 2.93 1.94 3.4v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v4c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-4h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM18.58 14h-1.86c-.35-.6-.98-1-1.72-1H9c-.74 0-1.38.4-1.72 1H5.42c-.46 0-.58-.65-.17-.81l6.75-3 6.75 3c.42.19.28.81-.17.81z" +}), 'DryCleaningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryCleaningSharp.js b/packages/material-ui-icons/lib/esm/DryCleaningSharp.js new file mode 100644 index 00000000000000..6b35f9b3664814 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryCleaningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 12-8-3.56V6h-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-8 3.56V16h4v6h10v-6h4v-4zm-2 2h-2v-1H7v1H5v-.7l7-3.11 7 3.11v.7z" +}), 'DryCleaningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryCleaningTwoTone.js b/packages/material-ui-icons/lib/esm/DryCleaningTwoTone.js new file mode 100644 index 00000000000000..70e6594c4cbf7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryCleaningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 15h6v5H9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.56 11.36 13 8.44V7c0-.55-.45-1-1-1s-1-.45-1-1 .45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-6.56 2.92c-.88.38-1.44 1.25-1.44 2.2v.01C3 14.92 4.08 16 5.42 16H7v6h10v-6h1.58c1.34 0 2.42-1.08 2.42-2.42v-.01c0-.95-.56-1.82-1.44-2.21zM15 20H9v-5h6v5zm3.58-6H17v-1H7v1H5.42c-.46 0-.58-.65-.17-.81l6.75-3 6.75 3c.42.19.28.81-.17.81z" +}, "1")], 'DryCleaningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryOutlined.js b/packages/material-ui-icons/lib/esm/DryOutlined.js new file mode 100644 index 00000000000000..1f50bac9f9635c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm5.65-16.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" +}), 'DryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryRounded.js b/packages/material-ui-icons/lib/esm/DryRounded.js new file mode 100644 index 00000000000000..5b4c9be1a8482c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.94 11.79c-.6.57-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.68c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h8.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38h-9.9l1.49-2.61c.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7l-.42-.45c-.38-.39-1.01-.41-1.41-.03l-6.46 6.11zm15.05-3.72c0 .52-.42.93-.93.93-.52 0-.93-.42-.93-.93.03-.67-.22-1.33-.71-1.86l-.07-.06c-.9-.89-1.38-2.03-1.34-3.22-.01-.51.41-.93.92-.93s.93.42.93.93c-.03.67.22 1.33.71 1.86l.07.07c.91.88 1.39 2.02 1.35 3.21zm4.01 0c0 .51-.42.93-.94.93s-.93-.42-.93-.93c.03-.67-.22-1.33-.71-1.86l-.07-.06c-.9-.89-1.38-2.03-1.34-3.22 0-.51.42-.93.93-.93s.93.42.93.93c-.03.67.22 1.33.71 1.86l.07.07c.9.88 1.38 2.02 1.35 3.21z" +}), 'DryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DrySharp.js b/packages/material-ui-icons/lib/esm/DrySharp.js new file mode 100644 index 00000000000000..406eb03a14e49b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DrySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68zm14.65-7.82-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" +}), 'DrySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DryTwoTone.js b/packages/material-ui-icons/lib/esm/DryTwoTone.js new file mode 100644 index 00000000000000..4a7ad708d2205c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm5.65-16.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" +}, "1")], 'DryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Duo.js b/packages/material-ui-icons/lib/esm/Duo.js new file mode 100644 index 00000000000000..8eeb301b9f6f65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Duo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" +}), 'Duo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DuoOutlined.js b/packages/material-ui-icons/lib/esm/DuoOutlined.js new file mode 100644 index 00000000000000..51d522f8f2eeab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DuoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" +}), 'DuoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DuoRounded.js b/packages/material-ui-icons/lib/esm/DuoRounded.js new file mode 100644 index 00000000000000..a27e9c70a334b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DuoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" +}), 'DuoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DuoSharp.js b/packages/material-ui-icons/lib/esm/DuoSharp.js new file mode 100644 index 00000000000000..292f3bd28b99a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DuoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" +}), 'DuoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DuoTwoTone.js b/packages/material-ui-icons/lib/esm/DuoTwoTone.js new file mode 100644 index 00000000000000..b28015daeca4ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DuoTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13-3-2v2H7V9h7v2l3-2v6z" +}), 'DuoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Dvr.js b/packages/material-ui-icons/lib/esm/Dvr.js new file mode 100644 index 00000000000000..422e1efdc1a11f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Dvr.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" +}), 'Dvr'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DvrOutlined.js b/packages/material-ui-icons/lib/esm/DvrOutlined.js new file mode 100644 index 00000000000000..ffa765dcc5d788 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DvrOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" +}), 'DvrOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DvrRounded.js b/packages/material-ui-icons/lib/esm/DvrRounded.js new file mode 100644 index 00000000000000..f7a68bbc93121a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DvrRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-2-9H9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM7 8H5v2h2V8zm0 4H5v2h2v-2z" +}), 'DvrRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DvrSharp.js b/packages/material-ui-icons/lib/esm/DvrSharp.js new file mode 100644 index 00000000000000..69c770f356358b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DvrSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" +}), 'DvrSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DvrTwoTone.js b/packages/material-ui-icons/lib/esm/DvrTwoTone.js new file mode 100644 index 00000000000000..5cfbc321d1b68e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DvrTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 17h18V5H3v12zm5-9h11v2H8V8zm0 4h11v2H8v-2zM5 8h2v2H5V8zm0 4h2v2H5v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 12h11v2H8zm0-4h11v2H8zm13-5H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM5 12h2v2H5zm0-4h2v2H5z" +}, "1")], 'DvrTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFeed.js b/packages/material-ui-icons/lib/esm/DynamicFeed.js new file mode 100644 index 00000000000000..550ac7358cbfdb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFeed.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 8H6v7c0 1.1.9 2 2 2h9v-2H8V8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM4 12H2v7c0 1.1.9 2 2 2h9v-2H4v-7z" +}, "1")], 'DynamicFeed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFeedOutlined.js b/packages/material-ui-icons/lib/esm/DynamicFeedOutlined.js new file mode 100644 index 00000000000000..6dde40f3494dd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFeedOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 8H6v7c0 1.1.9 2 2 2h9v-2H8V8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM4 12H2v7c0 1.1.9 2 2 2h9v-2H4v-7z" +}, "1")], 'DynamicFeedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFeedRounded.js b/packages/material-ui-icons/lib/esm/DynamicFeedRounded.js new file mode 100644 index 00000000000000..df74db94e65529 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFeedRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 8c-.55 0-1 .45-1 1v6c0 1.1.9 2 2 2h8c.55 0 1-.45 1-1s-.45-1-1-1H8V9c0-.55-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM3 12c-.55 0-1 .45-1 1v6c0 1.1.9 2 2 2h8c.55 0 1-.45 1-1s-.45-1-1-1H4v-6c0-.55-.45-1-1-1z" +}, "1")], 'DynamicFeedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFeedSharp.js b/packages/material-ui-icons/lib/esm/DynamicFeedSharp.js new file mode 100644 index 00000000000000..60e436a2f5c292 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFeedSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 8H6v9h11v-2H8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 3H10v10h12V3zm-2 8h-8V7h8v4zM4 12H2v9h11v-2H4z" +}, "1")], 'DynamicFeedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFeedTwoTone.js b/packages/material-ui-icons/lib/esm/DynamicFeedTwoTone.js new file mode 100644 index 00000000000000..a5cd44e80340af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFeedTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 7h8v4h-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 8H6v7c0 1.1.9 2 2 2h9v-2H8V8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 3h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-8V7h8v4zM4 12H2v7c0 1.1.9 2 2 2h9v-2H4v-7z" +}, "2")], 'DynamicFeedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicForm.js b/packages/material-ui-icons/lib/esm/DynamicForm.js new file mode 100644 index 00000000000000..3f6021f7b8af2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicForm.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20v-9h-2V4h7l-2 5h2l-5 11zm-2-7v7H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11zm-8.75 2.75h-1.5v1.5h1.5v-1.5zM13 4v7H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9zM6.25 6.75h-1.5v1.5h1.5v-1.5z" +}), 'DynamicForm'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFormOutlined.js b/packages/material-ui-icons/lib/esm/DynamicFormOutlined.js new file mode 100644 index 00000000000000..9ed0b3fdbf423f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFormOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9v7zM4 9h7V6H4v3zm11 11H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11v7zM4 18h9v-3H4v3zm18-9h-2l2-5h-7v7h2v9l5-11zM4.75 17.25h1.5v-1.5h-1.5v1.5zm0-9h1.5v-1.5h-1.5v1.5z" +}), 'DynamicFormOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFormRounded.js b/packages/material-ui-icons/lib/esm/DynamicFormRounded.js new file mode 100644 index 00000000000000..139c8940aec723 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFormRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.68 9.71-3.72 8.19c-.23.49-.96.33-.96-.21V11h-1.5c-.28 0-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5h5.76c.35 0 .6.36.46.69L20 9h1.22c.37 0 .61.38.46.71zM15 13v7H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11zm-8.75 3.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75zM13 4v7H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9zM6.25 7.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75z" +}), 'DynamicFormRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFormSharp.js b/packages/material-ui-icons/lib/esm/DynamicFormSharp.js new file mode 100644 index 00000000000000..a410f8cb70ead0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFormSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20v-9h-2V4h7l-2 5h2l-5 11zm-2-7v7H2v-7h13zm-8.75 2.75h-1.5v1.5h1.5v-1.5zM13 4v7H2V4h11zM6.25 6.75h-1.5v1.5h1.5v-1.5z" +}), 'DynamicFormSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/DynamicFormTwoTone.js b/packages/material-ui-icons/lib/esm/DynamicFormTwoTone.js new file mode 100644 index 00000000000000..4effa55b1cef0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/DynamicFormTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 9h7V6H4v3zm0 9h9v-3H4v3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 11H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h9v7zM4 9h7V6H4v3zm11 11H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2h11v7zM4 18h9v-3H4v3zm18-9h-2l2-5h-7v7h2v9l5-11zM4.75 17.25h1.5v-1.5h-1.5v1.5zm0-9h1.5v-1.5h-1.5v1.5z" +}, "1")], 'DynamicFormTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EMobiledata.js b/packages/material-ui-icons/lib/esm/EMobiledata.js new file mode 100644 index 00000000000000..157191c497d81a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" +}), 'EMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/EMobiledataOutlined.js new file mode 100644 index 00000000000000..d34d6e6a4e91a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" +}), 'EMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EMobiledataRounded.js b/packages/material-ui-icons/lib/esm/EMobiledataRounded.js new file mode 100644 index 00000000000000..36f6ab078b630e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 8c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-5v-2h5c.55 0 1-.45 1-1s-.45-1-1-1h-5V9h5c.55 0 1-.45 1-1z" +}), 'EMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EMobiledataSharp.js b/packages/material-ui-icons/lib/esm/EMobiledataSharp.js new file mode 100644 index 00000000000000..c6756ed79a6085 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" +}), 'EMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/EMobiledataTwoTone.js new file mode 100644 index 00000000000000..b7c8ca16b300a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" +}), 'EMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Earbuds.js b/packages/material-ui-icons/lib/esm/Earbuds.js new file mode 100644 index 00000000000000..20242f0653c40a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Earbuds.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z" +}), 'Earbuds'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsBattery.js b/packages/material-ui-icons/lib/esm/EarbudsBattery.js new file mode 100644 index 00000000000000..f111e7f3411ac0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsBattery.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM10.62 6C8.76 6 7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38C14 7.51 12.49 6 10.62 6z" +}), 'EarbudsBattery'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsBatteryOutlined.js b/packages/material-ui-icons/lib/esm/EarbudsBatteryOutlined.js new file mode 100644 index 00000000000000..860e931c84a119 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsBatteryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7zm-6-6.62C14 7.51 12.49 6 10.62 6S7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38z" +}), 'EarbudsBatteryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsBatteryRounded.js b/packages/material-ui-icons/lib/esm/EarbudsBatteryRounded.js new file mode 100644 index 00000000000000..f4ac5285e6e179 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsBatteryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-1v-.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-7 2.38C14 7.51 12.49 6 10.62 6S7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38z" +}), 'EarbudsBatteryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsBatterySharp.js b/packages/material-ui-icons/lib/esm/EarbudsBatterySharp.js new file mode 100644 index 00000000000000..52885b479ff2cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsBatterySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7V6h-2v1h-2v11h6V7zM5.38 16.5c-1.04 0-1.88-.84-1.88-1.87V10H6V6H4c-1.1 0-2 .9-2 2v6.63C2 16.49 3.51 18 5.37 18s3.37-1.51 3.37-3.37V9.37c0-1.04.84-1.87 1.87-1.87 1.04 0 1.87.84 1.87 1.87V14H10v4h2c1.1 0 2-.9 2-2V9.37C14 7.51 12.49 6 10.63 6 8.76 6 7.25 7.51 7.25 9.37v5.25c0 1.04-.84 1.88-1.87 1.88z" +}), 'EarbudsBatterySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsBatteryTwoTone.js b/packages/material-ui-icons/lib/esm/EarbudsBatteryTwoTone.js new file mode 100644 index 00000000000000..681c2cef9ffb33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsBatteryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 9h2v7h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.62 6C8.76 6 7.25 7.51 7.25 9.38v5.25c0 1.04-.84 1.88-1.88 1.88s-1.87-.85-1.87-1.89v-4.7c.16.05.33.08.5.08 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2v6.62C2 16.49 3.51 18 5.38 18s3.38-1.51 3.38-3.38V9.38c0-1.04.84-1.88 1.88-1.88s1.88.84 1.88 1.88v4.7c-.18-.05-.35-.08-.52-.08-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2V9.38C14 7.51 12.49 6 10.62 6zM21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7z" +}, "1")], 'EarbudsBatteryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsOutlined.js b/packages/material-ui-icons/lib/esm/EarbudsOutlined.js new file mode 100644 index 00000000000000..0f04f5a3b64399 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3c-2.76 0-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21 9.12 4.52 7.84 3.11 6.2 3 4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5zM5 6c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1H5V6zm14 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1h1v1z" +}), 'EarbudsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsRounded.js b/packages/material-ui-icons/lib/esm/EarbudsRounded.js new file mode 100644 index 00000000000000..11751ca852d2cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z" +}), 'EarbudsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsSharp.js b/packages/material-ui-icons/lib/esm/EarbudsSharp.js new file mode 100644 index 00000000000000..bff36f04584094 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 3h3v6H6zm9 12h3v6h-3z" +}, "1")], 'EarbudsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EarbudsTwoTone.js b/packages/material-ui-icons/lib/esm/EarbudsTwoTone.js new file mode 100644 index 00000000000000..bfc0294530aa4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EarbudsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 6c0-.55-.45-1-1-1s-1 .45-1 1v1h1c.55 0 1-.45 1-1zm10 12c0 .55.45 1 1 1s1-.45 1-1v-1h-1c-.55 0-1 .45-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 3c-2.76 0-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21 9.12 4.52 7.84 3.11 6.2 3 4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79-.12 1.69 1.16 3.1 2.8 3.21 1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5zM5 6c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1H5V6zm14 12c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1h1v1z" +}, "1")], 'EarbudsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/East.js b/packages/material-ui-icons/lib/esm/East.js new file mode 100644 index 00000000000000..2d3223b8a7cc37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/East.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" +}), 'East'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EastOutlined.js b/packages/material-ui-icons/lib/esm/EastOutlined.js new file mode 100644 index 00000000000000..583f6c5d703d8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EastOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" +}), 'EastOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EastRounded.js b/packages/material-ui-icons/lib/esm/EastRounded.js new file mode 100644 index 00000000000000..0b42c9e1161974 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EastRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.29 5.71c-.39.39-.39 1.02 0 1.41L18.17 11H3c-.55 0-1 .45-1 1s.45 1 1 1h15.18l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l5.59-5.59c.39-.39.39-1.02 0-1.41l-5.6-5.58c-.38-.39-1.02-.39-1.41 0z" +}), 'EastRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EastSharp.js b/packages/material-ui-icons/lib/esm/EastSharp.js new file mode 100644 index 00000000000000..821d3a6ebb8db3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EastSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" +}), 'EastSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EastTwoTone.js b/packages/material-ui-icons/lib/esm/EastTwoTone.js new file mode 100644 index 00000000000000..071153f7c3ddc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EastTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 5-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" +}), 'EastTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorHigh.js b/packages/material-ui-icons/lib/esm/EdgesensorHigh.js new file mode 100644 index 00000000000000..0f0a2f18e53f85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorHigh.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-3-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" +}), 'EdgesensorHigh'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorHighOutlined.js b/packages/material-ui-icons/lib/esm/EdgesensorHighOutlined.js new file mode 100644 index 00000000000000..97456f069c3758 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorHighOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-3-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zM8 5V4h8v1H8z" +}), 'EdgesensorHighOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorHighRounded.js b/packages/material-ui-icons/lib/esm/EdgesensorHighRounded.js new file mode 100644 index 00000000000000..3ab7b9d6168fea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorHighRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-3 3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1v-5c0-.55.45-1 1-1zm22-3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-3 3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1v-5c0-.55.45-1 1-1zm-4-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" +}), 'EdgesensorHighRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorHighSharp.js b/packages/material-ui-icons/lib/esm/EdgesensorHighSharp.js new file mode 100644 index 00000000000000..b877852fc83ecf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorHighSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-1-8H6v20h12V2zm-2 15H8V7h8v10z" +}), 'EdgesensorHighSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorHighTwoTone.js b/packages/material-ui-icons/lib/esm/EdgesensorHighTwoTone.js new file mode 100644 index 00000000000000..0a09298ae31244 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorHighTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 4h8v1H8zm0 15h8v1H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 2.01 8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zm0-12H8V4h8v1zm3 5h2v7h-2zm3-3h2v7h-2zM3 7h2v7H3zm-3 3h2v7H0z" +}, "1")], 'EdgesensorHighTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorLow.js b/packages/material-ui-icons/lib/esm/EdgesensorLow.js new file mode 100644 index 00000000000000..d4322fcff4dcd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorLow.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zm-4-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" +}), 'EdgesensorLow'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorLowOutlined.js b/packages/material-ui-icons/lib/esm/EdgesensorLowOutlined.js new file mode 100644 index 00000000000000..6ddcc07e368a73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorLowOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zm-4-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zM8 5V4h8v1H8z" +}), 'EdgesensorLowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorLowRounded.js b/packages/material-ui-icons/lib/esm/EdgesensorLowRounded.js new file mode 100644 index 00000000000000..8f20944ac8fc4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorLowRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm18 3c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1s-1-.45-1-1v-5c0-.55.45-1 1-1zm-5-7.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 17H8V7h8v10z" +}), 'EdgesensorLowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorLowSharp.js b/packages/material-ui-icons/lib/esm/EdgesensorLowSharp.js new file mode 100644 index 00000000000000..79bf2b9a1289ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorLowSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zM6 2v20h12V2H6zm10 15H8V7h8v10z" +}), 'EdgesensorLowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EdgesensorLowTwoTone.js b/packages/material-ui-icons/lib/esm/EdgesensorLowTwoTone.js new file mode 100644 index 00000000000000..429d2beab6c33d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EdgesensorLowTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 4h8v1H8zm0 15h8v1H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 10h2v7h-2zM2 7h2v7H2zm14-4.99L8 2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V4c0-1.1-.9-1.99-2-1.99zM16 20H8v-1h8v1zm0-3H8V7h8v10zm0-12H8V4h8v1z" +}, "1")], 'EdgesensorLowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Edit.js b/packages/material-ui-icons/lib/esm/Edit.js new file mode 100644 index 00000000000000..7081b7e7ae0900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Edit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'Edit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditAttributes.js b/packages/material-ui-icons/lib/esm/EditAttributes.js new file mode 100644 index 00000000000000..cf932ba4ce5500 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditAttributes.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z" +}), 'EditAttributes'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditAttributesOutlined.js b/packages/material-ui-icons/lib/esm/EditAttributesOutlined.js new file mode 100644 index 00000000000000..09ee09e7b11c37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditAttributesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z" +}), 'EditAttributesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditAttributesRounded.js b/packages/material-ui-icons/lib/esm/EditAttributesRounded.js new file mode 100644 index 00000000000000..694617b63955fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditAttributesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm-6.52 3.6L7.6 14.11c-.1.1-.23.15-.35.15s-.26-.05-.35-.15l-1.86-1.86c-.2-.2-.2-.51 0-.71s.51-.2.71 0l1.51 1.51 3.16-3.16c.2-.2.51-.2.71 0s.17.51-.02.71z" +}), 'EditAttributesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditAttributesSharp.js b/packages/material-ui-icons/lib/esm/EditAttributesSharp.js new file mode 100644 index 00000000000000..71296a45a8692c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditAttributesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z" +}), 'EditAttributesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditAttributesTwoTone.js b/packages/material-ui-icons/lib/esm/EditAttributesTwoTone.js new file mode 100644 index 00000000000000..8d0b06f9b30eaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditAttributesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.63 9H6.37C5.09 9 4 10.37 4 12s1.09 3 2.37 3h11.26c1.28 0 2.37-1.37 2.37-3s-1.09-3-2.37-3zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z" +}, "1")], 'EditAttributesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocation.js b/packages/material-ui-icons/lib/esm/EditLocation.js new file mode 100644 index 00000000000000..2c8dcb662a40e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.56 10H9v-1.44l3.35-3.34 1.43 1.43L10.44 12zm4.45-4.45-.7.7-1.44-1.44.7-.7c.15-.15.39-.15.54 0l.9.9c.15.15.15.39 0 .54z" +}), 'EditLocation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationAlt.js b/packages/material-ui-icons/lib/esm/EditLocationAlt.js new file mode 100644 index 00000000000000..c40724b7ed8747 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationAlt.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.95 13H9V8.05l5.61-5.61C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8l-5.6 5.6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 11h2.12l6.16-6.16-2.12-2.12L11 8.88zm9.71-9L20 1.29c-.2-.19-.45-.29-.71-.29-.13 0-.48.07-.71.29l-.72.72 2.12 2.12.72-.72c.4-.39.4-1.02.01-1.41z" +}, "1")], 'EditLocationAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationAltOutlined.js b/packages/material-ui-icons/lib/esm/EditLocationAltOutlined.js new file mode 100644 index 00000000000000..d9ab39a20637e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11zm9.71-9L20 1.29a.9959.9959 0 0 0-1.41 0l-.72.72 2.12 2.12.72-.72c.39-.39.39-1.02 0-1.41zM17.9 9.05c.06.36.1.74.1 1.15 0 1.71-1.08 4.64-6 9.14-4.92-4.49-6-7.43-6-9.14C6 6.17 9.09 4 12 4c.32 0 .65.03.97.08l1.65-1.65C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8L17.9 9.05z" +}), 'EditLocationAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationAltRounded.js b/packages/material-ui-icons/lib/esm/EditLocationAltRounded.js new file mode 100644 index 00000000000000..2eeee7242af8ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationAltRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.54 13H10c-.55 0-1-.45-1-1V8.46c0-.26.11-.52.29-.7l5.32-5.32C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.44 6.92 7.33 11.22.38.33.96.33 1.34 0C17.56 17.12 20 13.37 20 10.2c0-1.01-.16-1.94-.45-2.8l-5.31 5.31c-.18.18-.44.29-.7.29z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 11h2.12l6.16-6.16-2.12-2.12L11 8.88zm9.71-9L20 1.29a.9959.9959 0 0 0-1.41 0l-.72.72 2.12 2.12.72-.72c.39-.39.39-1.02 0-1.41z" +}, "1")], 'EditLocationAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationAltSharp.js b/packages/material-ui-icons/lib/esm/EditLocationAltSharp.js new file mode 100644 index 00000000000000..90913c7d4b55b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.95 13H9V8.05l5.61-5.61C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8l-5.6 5.6zM11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11zM19.29.59l-1.42 1.42 2.12 2.12 1.42-1.42L19.29.59z" +}), 'EditLocationAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationAltTwoTone.js b/packages/material-ui-icons/lib/esm/EditLocationAltTwoTone.js new file mode 100644 index 00000000000000..7ef3adb8c016ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.9 9.05c.06.36.1.74.1 1.15 0 1.71-1.08 4.64-6 9.14-4.92-4.49-6-7.43-6-9.14C6 6.17 9.09 4 12 4c.32 0 .65.03.97.08l1.65-1.65C13.78 2.16 12.9 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8L17.9 9.05zM20.71 2 20 1.29a.9959.9959 0 0 0-1.41 0l-.72.72 2.12 2.12.72-.72c.39-.39.39-1.02 0-1.41zM11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.95 13H9V8.05l3.97-3.97C12.65 4.03 12.32 4 12 4c-2.91 0-6 2.17-6 6.2 0 1.71 1.08 4.64 6 9.14 4.92-4.49 6-7.43 6-9.14 0-.4-.04-.78-.1-1.15L13.95 13z", + opacity: ".3" +}, "1")], 'EditLocationAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationOutlined.js b/packages/material-ui-icons/lib/esm/EditLocationOutlined.js new file mode 100644 index 00000000000000..85c6468919f755 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.17 4.91 17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29a1.49 1.49 0 0 1 2.12 0l1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z" +}), 'EditLocationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationRounded.js b/packages/material-ui-icons/lib/esm/EditLocationRounded.js new file mode 100644 index 00000000000000..075ea5ab2f5077 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zM9.73 13.5H8.5v-1.44l3.93-3.92 1.43 1.43-3.77 3.78c-.1.1-.22.15-.36.15zm5.55-5.34-.7.7-1.44-1.44.7-.7c.15-.15.39-.15.54 0l.9.9c.15.15.15.39 0 .54z" +}), 'EditLocationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationSharp.js b/packages/material-ui-icons/lib/esm/EditLocationSharp.js new file mode 100644 index 00000000000000..bc96ae7a6f947d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.11 1.77 19.78.1l2.12 2.12-1.67 1.67-2.12-2.12zm-1 1 2.12 2.12L13.12 11H11V8.89l6.11-6.12zm-1.98-.13L9.5 8.27v4.24h4.24l5.62-5.62c.41.99.64 2.1.64 3.32 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2 1.09 0 2.16.22 3.13.63z" +}), 'EditLocationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditLocationTwoTone.js b/packages/material-ui-icons/lib/esm/EditLocationTwoTone.js new file mode 100644 index 00000000000000..3c4637e1bcc2c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditLocationTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.11 14H8V7.91l.59-.59L11.91 4C8.61 4.05 6 6.6 6 10.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.08l-3.3 3.3-.59.58z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.17 4.91 17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29c.58-.59 1.52-.59 2.11-.01l.01.01 1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18.17 4.91 17.1 3.84l-5.55 5.55v1.08h1.08z", + opacity: ".3" +}, "2")], 'EditLocationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditNotifications.js b/packages/material-ui-icons/lib/esm/EditNotifications.js new file mode 100644 index 00000000000000..66e76d7d811c25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditNotifications.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09L10.6 10.4V15h4.6l2.8-2.8zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" +}), 'EditNotifications'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditNotificationsOutlined.js b/packages/material-ui-icons/lib/esm/EditNotificationsOutlined.js new file mode 100644 index 00000000000000..bd7a635ea92187 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditNotificationsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09l-1.43 1.43C13.64 6.26 12.85 6 12 6c-2.21 0-4 1.79-4 4v7h8v-2.8l2-2zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" +}), 'EditNotificationsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditNotificationsRounded.js b/packages/material-ui-icons/lib/esm/EditNotificationsRounded.js new file mode 100644 index 00000000000000..b97e54b75a7b67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditNotificationsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.58 6.25 1.77 1.77-4.84 4.84c-.09.09-.22.14-.35.14H13.1c-.28 0-.5-.22-.5-.5v-1.06c0-.13.05-.26.15-.35l4.83-4.84zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM20 18c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h1v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09l-4.52 4.52c-.38.38-.59.88-.59 1.41V13c0 1.1.9 2 2 2h1.77c.53 0 1.04-.21 1.41-.59L18 12.2V17h1c.55 0 1 .45 1 1zm-10 2h4c0 1.1-.9 2-2 2s-2-.9-2-2z" +}), 'EditNotificationsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditNotificationsSharp.js b/packages/material-ui-icons/lib/esm/EditNotificationsSharp.js new file mode 100644 index 00000000000000..874b8994c0bc09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditNotificationsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.82.21 1.57.59 2.21 1.09L10.6 10.4V15h4.6l2.8-2.8zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" +}), 'EditNotificationsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditNotificationsTwoTone.js b/packages/material-ui-icons/lib/esm/EditNotificationsTwoTone.js new file mode 100644 index 00000000000000..b170458a46c325 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditNotificationsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16 14.2-.8.8h-4.6v-4.6l3.68-3.68C13.64 6.26 12.85 6 12 6c-2.21 0-4 1.79-4 4v7h8v-2.8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.58 6.25 1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.82.21 1.57.59 2.21 1.09l-1.43 1.43C13.64 6.26 12.85 6 12 6c-2.21 0-4 1.79-4 4v7h8v-2.8l2-2zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" +}, "1")], 'EditNotificationsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditOff.js b/packages/material-ui-icons/lib/esm/EditOff.js new file mode 100644 index 00000000000000..0224ecc01b407d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.126 8.125 1.937-1.937 3.747 3.747-1.937 1.938zM20.71 5.63l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75L20.71 7a1 1 0 0 0 0-1.37zM2 5l6.63 6.63L3 17.25V21h3.75l5.63-5.62L18 21l2-2L4 3 2 5z" +}), 'EditOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditOffOutlined.js b/packages/material-ui-icons/lib/esm/EditOffOutlined.js new file mode 100644 index 00000000000000..d01512a30c00f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.06 9.02.92.92-1.11 1.11 1.41 1.41 2.52-2.52-3.75-3.75-2.52 2.52 1.41 1.41 1.12-1.1zm6.65-1.98c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2.81 2.81 1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81zM5.92 19H5v-.92l5.13-5.13.92.92L5.92 19z" +}), 'EditOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditOffRounded.js b/packages/material-ui-icons/lib/esm/EditOffRounded.js new file mode 100644 index 00000000000000..9aedc7e5d44370 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.1 3.51c-.39.39-.39 1.02 0 1.41l6.61 6.61-5.56 5.57c-.1.1-.15.22-.15.36v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15l5.56-5.56 6.61 6.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.52 3.51c-.4-.39-1.03-.39-1.42 0zm18.61 3.53c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83zm-9.1749 1.6697 2.5173-2.5173L17.8001 9.94l-2.5173 2.5173z" +}), 'EditOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditOffSharp.js b/packages/material-ui-icons/lib/esm/EditOffSharp.js new file mode 100644 index 00000000000000..6e1129b4043afd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 6.33-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54zM1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81 1.39 4.22zm16.42 5.72-3.75-3.75-2.52 2.52 3.75 3.75 2.52-2.52z" +}), 'EditOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditOffTwoTone.js b/packages/material-ui-icons/lib/esm/EditOffTwoTone.js new file mode 100644 index 00000000000000..9d05925623c596 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 18.08V19h.92l5.12-5.12-.92-.92L5 18.08zm9.06-9.06-1.11 1.11.92.92 1.11-1.11-.92-.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m14.06 9.02.92.92-1.11 1.11 1.41 1.41 2.52-2.52-3.75-3.75-2.52 2.52 1.41 1.41 1.12-1.1zm6.65-1.98c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM2.81 2.81 1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81zM5.92 19H5v-.92l5.13-5.13.92.92L5.92 19z" +}, "1")], 'EditOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditOutlined.js b/packages/material-ui-icons/lib/esm/EditOutlined.js new file mode 100644 index 00000000000000..e3a3ca91c8e721 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.06 9.02.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" +}), 'EditOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditRoad.js b/packages/material-ui-icons/lib/esm/EditRoad.js new file mode 100644 index 00000000000000..42b55ac62ab157 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditRoad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" +}), 'EditRoad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditRoadOutlined.js b/packages/material-ui-icons/lib/esm/EditRoadOutlined.js new file mode 100644 index 00000000000000..6577fffa4b9100 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditRoadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" +}), 'EditRoadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditRoadRounded.js b/packages/material-ui-icons/lib/esm/EditRoadRounded.js new file mode 100644 index 00000000000000..f0d56e0f8c48f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditRoadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4c-.55 0-1 .45-1 1v6.9l2-2V5c0-.55-.45-1-1-1zM5 20c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1zm6-12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm0 6c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm11.56-7.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73v2.77c0 .28.22.5.5.5h2.77l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" +}), 'EditRoadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditRoadSharp.js b/packages/material-ui-icons/lib/esm/EditRoadSharp.js new file mode 100644 index 00000000000000..4e1ecbe40b45bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditRoadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" +}), 'EditRoadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditRoadTwoTone.js b/packages/material-ui-icons/lib/esm/EditRoadTwoTone.js new file mode 100644 index 00000000000000..a29a2575ddc376 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditRoadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.55 17.42v1.03h1.03L20.03 15 19 13.97z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41-1.15-1.15c-.59-.59-1.54-.59-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" +}, "1")], 'EditRoadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditRounded.js b/packages/material-ui-icons/lib/esm/EditRounded.js new file mode 100644 index 00000000000000..474076e555f6bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'EditRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditSharp.js b/packages/material-ui-icons/lib/esm/EditSharp.js new file mode 100644 index 00000000000000..14cd9f0968e700 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" +}), 'EditSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EditTwoTone.js b/packages/material-ui-icons/lib/esm/EditTwoTone.js new file mode 100644 index 00000000000000..1d88d320cd25b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EditTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19z" +}, "1")], 'EditTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightK.js b/packages/material-ui-icons/lib/esm/EightK.js new file mode 100644 index 00000000000000..5f488cf00e0711 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 12.5h1.5V14H8zM8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'EightK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKOutlined.js b/packages/material-ui-icons/lib/esm/EightKOutlined.js new file mode 100644 index 00000000000000..9c2d8f2a594e8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 15H10c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1.5v1.5H8V10zm0 2.5h1.5V14H8v-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "2")], 'EightKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKPlus.js b/packages/material-ui-icons/lib/esm/EightKPlus.js new file mode 100644 index 00000000000000..e81d60b0be55ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 12.5H8V14H6.5zm0-2.5H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'EightKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKPlusOutlined.js b/packages/material-ui-icons/lib/esm/EightKPlusOutlined.js new file mode 100644 index 00000000000000..ed9a2b273e706a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKPlusOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 15h2c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1v1.5h-1V10zm0 2.5h1V14h-1v-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "2")], 'EightKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKPlusRounded.js b/packages/material-ui-icons/lib/esm/EightKPlusRounded.js new file mode 100644 index 00000000000000..03316d8b1f986b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKPlusRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 11c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.5 12.5h1V14h-1zm0-2.5h1v1.5h-1z" +}, "1")], 'EightKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKPlusSharp.js b/packages/material-ui-icons/lib/esm/EightKPlusSharp.js new file mode 100644 index 00000000000000..dde29e9c202f27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 12.5h1V14h-1v-1.5zm0-2.5h1v1.5h-1V10zM21 3H3v18h18V3zM10 14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm6 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'EightKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/EightKPlusTwoTone.js new file mode 100644 index 00000000000000..247836ca21d9f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKPlusTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 12.5h1V14h-1zm0-2.5h1v1.5h-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 15h2c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1v1.5h-1V10zm0 2.5h1V14h-1v-1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "4")], 'EightKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKRounded.js b/packages/material-ui-icons/lib/esm/EightKRounded.js new file mode 100644 index 00000000000000..56151644266e3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 12.5h1.5V14H8v-1.5zM8 10h1.5v1.5H8V10zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm5.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'EightKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKSharp.js b/packages/material-ui-icons/lib/esm/EightKSharp.js new file mode 100644 index 00000000000000..ffa195036e5fff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 12.5h1.5V14H8v-1.5zM8 10h1.5v1.5H8V10zm13-7H3v18h18V3zm-10 7v4c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1zm7 5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'EightKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightKTwoTone.js b/packages/material-ui-icons/lib/esm/EightKTwoTone.js new file mode 100644 index 00000000000000..def0db5ee8b448 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightKTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 10h1.5v1.5H8zm0 2.5h1.5V14H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 1c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 15H10c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5h1.5v1.5H8V10zm0 2.5h1.5V14H8v-1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "4")], 'EightKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightMp.js b/packages/material-ui-icons/lib/esm/EightMp.js new file mode 100644 index 00000000000000..6d064d80aab838 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" +}), 'EightMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightMpOutlined.js b/packages/material-ui-icons/lib/esm/EightMpOutlined.js new file mode 100644 index 00000000000000..fd7263379119fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H13V8h-1.5V6.5zm0 2.5H13v1.5h-1.5V9z" +}, "2")], 'EightMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightMpRounded.js b/packages/material-ui-icons/lib/esm/EightMpRounded.js new file mode 100644 index 00000000000000..2224b6022de049 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightMpRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm2.5 11.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5z" +}, "2")], 'EightMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightMpSharp.js b/packages/material-ui-icons/lib/esm/EightMpSharp.js new file mode 100644 index 00000000000000..2add8f2fcf4608 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightMpSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm7 2.5h4.5v6H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v1.5h-1.5z" +}, "2")], 'EightMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightMpTwoTone.js b/packages/material-ui-icons/lib/esm/EightMpTwoTone.js new file mode 100644 index 00000000000000..b3d33e097294f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5zm0 2.5H13v1.5h-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm-4 7c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H13V8h-1.5V6.5zm0 2.5H13v1.5h-1.5V9z" +}, "4")], 'EightMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightteenMp.js b/packages/material-ui-icons/lib/esm/EightteenMp.js new file mode 100644 index 00000000000000..80057408be91cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightteenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-3 0H15V9h-1.5v1.5zm0-2.5H15V6.5h-1.5V8zm2 6H17v1.5h-1.5z" +}), 'EightteenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightteenMpOutlined.js b/packages/material-ui-icons/lib/esm/EightteenMpOutlined.js new file mode 100644 index 00000000000000..4b4a13f164b0c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightteenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm4.5 0h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H15V8h-1.5V6.5zm0 2.5H15v1.5h-1.5V9z" +}, "2")], 'EightteenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightteenMpRounded.js b/packages/material-ui-icons/lib/esm/EightteenMpRounded.js new file mode 100644 index 00000000000000..3a44ac3f94f103 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightteenMpRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 9H15v1.5h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 10.5v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1zm6 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z" +}, "2")], 'EightteenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightteenMpSharp.js b/packages/material-ui-icons/lib/esm/EightteenMpSharp.js new file mode 100644 index 00000000000000..137969d05dc84d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightteenMpSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 9H15v1.5h-1.5zm0-2.5H15V8h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 2.5h4.5v6H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "2")], 'EightteenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EightteenMpTwoTone.js b/packages/material-ui-icons/lib/esm/EightteenMpTwoTone.js new file mode 100644 index 00000000000000..109f89a28f9bf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EightteenMpTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 6.5H15V8h-1.5zm0 2.5H15v1.5h-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4zm-5-1h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm4.5 0h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-5H15V8h-1.5V6.5zm0 2.5H15v1.5h-1.5V9z" +}, "5")], 'EightteenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Eject.js b/packages/material-ui-icons/lib/esm/Eject.js new file mode 100644 index 00000000000000..22a457fe8a332f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Eject.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17h14v2H5zm7-12L5.33 15h13.34z" +}), 'Eject'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EjectOutlined.js b/packages/material-ui-icons/lib/esm/EjectOutlined.js new file mode 100644 index 00000000000000..57bc0cfd778b14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EjectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6 2.93 4.4H9.07L12 8.6z" +}), 'EjectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EjectRounded.js b/packages/material-ui-icons/lib/esm/EjectRounded.js new file mode 100644 index 00000000000000..430ac5f0161fa1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EjectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 17h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm5.17-10.75-4.8 7.2c-.45.66.03 1.55.83 1.55h9.6c.8 0 1.28-.89.83-1.55l-4.8-7.2c-.39-.6-1.27-.6-1.66 0z" +}), 'EjectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EjectSharp.js b/packages/material-ui-icons/lib/esm/EjectSharp.js new file mode 100644 index 00000000000000..f6c850de890cd4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EjectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17h14v2H5v-2zm7-12L5.33 15h13.34L12 5z" +}), 'EjectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EjectTwoTone.js b/packages/material-ui-icons/lib/esm/EjectTwoTone.js new file mode 100644 index 00000000000000..c52d082cdbec5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EjectTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 8.6 9.07 13h5.86z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6 2.93 4.4H9.07L12 8.6z" +}, "1")], 'EjectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Elderly.js b/packages/material-ui-icons/lib/esm/Elderly.js new file mode 100644 index 00000000000000..75b6f0d57f8280 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Elderly.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" +}), 'Elderly'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElderlyOutlined.js b/packages/material-ui-icons/lib/esm/ElderlyOutlined.js new file mode 100644 index 00000000000000..14c906820e63a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElderlyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" +}), 'ElderlyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElderlyRounded.js b/packages/material-ui-icons/lib/esm/ElderlyRounded.js new file mode 100644 index 00000000000000..da187bb6b9ef84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElderlyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.03 7.5c-1.57.01-2.94-.9-3.6-2.21l-.79-1.67c-.17-.35-.44-.65-.8-.85-.62-.36-1.35-.34-1.94-.03v-.01l-4.39 2.5C6.39 9.08 6 9.74 6 10.46V13c0 .55.45 1 1 1s1-.45 1-1v-2.54l1.5-.85C9.18 10.71 9 11.85 9 13v5.33L7 21c-.33.44-.24 1.07.2 1.4.44.33 1.07.24 1.4-.2l2.04-2.72c.23-.31.37-.69.4-1.08l.18-2.94L13 18v4c0 .55.45 1 1 1s1-.45 1-1v-4.87c0-.41-.13-.81-.36-1.15l-1.6-2.29v-.01c-.11-1.16.07-2.32.46-3.4.81 1.23 2.05 2.14 3.51 2.52v.2c0 .28.22.5.5.5s.49-.22.49-.5v-.5c0-.28.22-.5.5-.5s.5.22.5.5v10c0 .28.22.5.5.5s.5-.22.5-.5v-10c0-.82-.66-1.51-1.47-1.5z" +}), 'ElderlyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElderlySharp.js b/packages/material-ui-icons/lib/esm/ElderlySharp.js new file mode 100644 index 00000000000000..61d9d609483142 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElderlySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" +}), 'ElderlySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElderlyTwoTone.js b/packages/material-ui-icons/lib/esm/ElderlyTwoTone.js new file mode 100644 index 00000000000000..9e844f367e43fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElderlyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69c-1.46-.38-2.7-1.29-3.51-2.52-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01c.59-.31 1.32-.33 1.94.03.36.21.63.51.8.85l.79 1.67C15.58 10.1 16.94 11 18.5 11c.83 0 1.5.67 1.5 1.5z" +}), 'ElderlyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricBike.js b/packages/material-ui-icons/lib/esm/ElectricBike.js new file mode 100644 index 00000000000000..36962bba8315c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricBike.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H12v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" +}), 'ElectricBike'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricBikeOutlined.js b/packages/material-ui-icons/lib/esm/ElectricBikeOutlined.js new file mode 100644 index 00000000000000..1ba065952ccf76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricBikeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H12v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" +}), 'ElectricBikeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricBikeRounded.js b/packages/material-ui-icons/lib/esm/ElectricBikeRounded.js new file mode 100644 index 00000000000000..1bb4a33308d1d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricBikeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H13c-.55 0-1 .45-1 1s.45 1 1 1h1.6l1.46 4h-4.81l-.36-1h.09c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1h.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM6 13h1.82c-.42 1.23-1.6 2.08-3.02 1.99-1.49-.09-2.73-1.35-2.8-2.85C1.93 10.39 3.27 9 5 9c1.33 0 2.42.83 2.82 2H6c-.55 0-1 .45-1 1s.45 1 1 1zm8.1-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.78 4c-1.54-.06-2.84-1.37-2.88-2.92-.02-.96.39-1.8 1.05-2.36l.62 1.7c.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28l-.63-1.73.01-.01c1.71-.04 3.07 1.29 3.07 3 0 1.72-1.38 3.06-3.12 3zM11 20H7l6 3v-2h4l-6-3z" +}), 'ElectricBikeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricBikeSharp.js b/packages/material-ui-icons/lib/esm/ElectricBikeSharp.js new file mode 100644 index 00000000000000..126adbb10ca768 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricBikeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-.82L16 1h-4v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" +}), 'ElectricBikeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricBikeTwoTone.js b/packages/material-ui-icons/lib/esm/ElectricBikeTwoTone.js new file mode 100644 index 00000000000000..048706237aa70c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricBikeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-.82l-1.7-4.68C16.19 1.53 15.44 1 14.6 1H12v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" +}), 'ElectricBikeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricCar.js b/packages/material-ui-icons/lib/esm/ElectricCar.js new file mode 100644 index 00000000000000..a057f3ed17a9e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricCar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8l-2.08-5.99zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.5-4.5h11L19 7H5zm2 13h4v-2l6 3h-4v2z" +}), 'ElectricCar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricCarOutlined.js b/packages/material-ui-icons/lib/esm/ElectricCarOutlined.js new file mode 100644 index 00000000000000..dae25d9cf9fa41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricCarOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8l-2.08-5.99zM6.85 3h10.29l1.08 3.11H5.77L6.85 3zM19 13H5V8h14v5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "10.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "10.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M7 20h4v-2l6 3h-4v2z" +}, "3")], 'ElectricCarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricCarRounded.js b/packages/material-ui-icons/lib/esm/ElectricCarRounded.js new file mode 100644 index 00000000000000..88576f0e6f1ef0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricCarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3.11 7.68c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 16.33 6 15.5V15h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5V8.34c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 7H5zm2 13h4v-2l6 3h-4v2z" +}), 'ElectricCarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricCarSharp.js b/packages/material-ui-icons/lib/esm/ElectricCarSharp.js new file mode 100644 index 00000000000000..0fd6b3d673ce19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricCarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.58 1H5.43L3 8v9h3v-2h12v2h3V8l-2.42-7zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.5-4.5h11L19 7H5zm2 13h4v-2l6 3h-4v2z" +}), 'ElectricCarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricCarTwoTone.js b/packages/material-ui-icons/lib/esm/ElectricCarTwoTone.js new file mode 100644 index 00000000000000..f170f7b5845e08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricCarTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 13h14V8H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 12 7.5 12 6 11.33 6 10.5 6.67 9 7.5 9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.92 2.01C18.72 1.42 18.16 1 17.5 1h-11c-.66 0-1.21.42-1.42 1.01L3 8v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8l-2.08-5.99zM6.85 3h10.29l1.08 3.11H5.77L6.85 3zM19 13H5V8h14v5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "10.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "10.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M7 20h4v-2l6 3h-4v2z" +}, "4")], 'ElectricCarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricMoped.js b/packages/material-ui-icons/lib/esm/ElectricMoped.js new file mode 100644 index 00000000000000..ff475b9f192f64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricMoped.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}, "1")], 'ElectricMoped'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricMopedOutlined.js b/packages/material-ui-icons/lib/esm/ElectricMopedOutlined.js new file mode 100644 index 00000000000000..1e17a6309fbe9b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricMopedOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM4 12v-1c0-1.1.9-2 2-2h2v3H4zm3 3c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}, "1")], 'ElectricMopedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricMopedRounded.js b/packages/material-ui-icons/lib/esm/ElectricMopedRounded.js new file mode 100644 index 00000000000000..e5ce9f61e8caa9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricMopedRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5c0-1.1-.9-2-2-2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2.65L13.52 12H10V8c0-.55-.45-1-1-1H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 4H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm10 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}, "1")], 'ElectricMopedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricMopedSharp.js b/packages/material-ui-icons/lib/esm/ElectricMopedSharp.js new file mode 100644 index 00000000000000..871fccf4fef763 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricMopedSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 8.35V3h-5v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}, "1")], 'ElectricMopedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricMopedTwoTone.js b/packages/material-ui-icons/lib/esm/ElectricMopedTwoTone.js new file mode 100644 index 00000000000000..4dee6a60c3f622 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricMopedTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 11v1h4V9H6c-1.1 0-2 .9-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35V5zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm1-3H4v-1c0-1.1.9-2 2-2h2v3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}, "2")], 'ElectricMopedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricRickshaw.js b/packages/material-ui-icons/lib/esm/ElectricRickshaw.js new file mode 100644 index 00000000000000..6f77e48e3c0081 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricRickshaw.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM18.4 9H16V6.12L18.4 9zM3 5h4v4H3V5zm3 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h3V9H9V5h5v8H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}), 'ElectricRickshaw'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricRickshawOutlined.js b/packages/material-ui-icons/lib/esm/ElectricRickshawOutlined.js new file mode 100644 index 00000000000000..0c056ee6d4072d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricRickshawOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM6 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3.83c-.31-.11-.65-.17-1-.17-1.3 0-2.42.84-2.83 2H3v-3h4v1.17zM7 8H3V5h4v3zm7 5H9v-3h3V8H9V5h5v8zm2-6.88L18.4 9H16V6.12zM17.17 13H16v-2h3v.17c-.85.3-1.53.98-1.83 1.83zM20 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}), 'ElectricRickshawOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricRickshawRounded.js b/packages/material-ui-icons/lib/esm/ElectricRickshawRounded.js new file mode 100644 index 00000000000000..a004e6ba43c095 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricRickshawRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM18.4 9H16V6.12L18.4 9zM4 5h3v4H3V6c0-.55.45-1 1-1zm2 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H9V5h4c.55 0 1 .45 1 1v7H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}), 'ElectricRickshawRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricRickshawSharp.js b/packages/material-ui-icons/lib/esm/ElectricRickshawSharp.js new file mode 100644 index 00000000000000..2df88694677c69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricRickshawSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.18V9l-5-6H1v12h2.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.48 1.34 1.86 2.25 3.42 1.94 1.16-.23 2.11-1.17 2.33-2.33.31-1.56-.6-2.95-1.94-3.43zM18.4 9H16V6.12L18.4 9zM3 5h4v4H3V5zm3 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h3V9H9V5h5v8H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}), 'ElectricRickshawSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricRickshawTwoTone.js b/packages/material-ui-icons/lib/esm/ElectricRickshawTwoTone.js new file mode 100644 index 00000000000000..178c3795ed3fa0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricRickshawTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 13h.17c.41-1.16 1.53-2 2.83-2 .35 0 .69.06 1 .17V10H3v3zm16-2h-3v2h1.17c.3-.85.98-1.53 1.83-1.83V11z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 11.18V9.72c0-.47-.16-.92-.46-1.28L16.6 3.72c-.38-.46-.94-.72-1.54-.72H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.41 1.16 1.51 2 2.82 2 1.66 0 3-1.34 3-3-.01-1.3-.85-2.4-2.01-2.82zM6 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3.83c-.31-.11-.65-.17-1-.17-1.3 0-2.42.84-2.83 2H3v-3h4v1.17zM7 8H3V5h4v3zm7 5H9v-3h3V8H9V5h5v8zm2-6.88L18.4 9H16V6.12zM17.17 13H16v-2h3v.17c-.85.3-1.53.98-1.83 1.83zM20 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" +}, "1")], 'ElectricRickshawTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricScooter.js b/packages/material-ui-icons/lib/esm/ElectricScooter.js new file mode 100644 index 00000000000000..2a8f7b194fb976 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricScooter.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" +}, "1")], 'ElectricScooter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricScooterOutlined.js b/packages/material-ui-icons/lib/esm/ElectricScooterOutlined.js new file mode 100644 index 00000000000000..408890bd771033 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricScooterOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" +}, "1")], 'ElectricScooterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricScooterRounded.js b/packages/material-ui-icons/lib/esm/ElectricScooterRounded.js new file mode 100644 index 00000000000000..e49ed2e1698e9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricScooterRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H13c-.55 0-1 .45-1 1s.45 1 1 1h2.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" +}, "1")], 'ElectricScooterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricScooterSharp.js b/packages/material-ui-icons/lib/esm/ElectricScooterSharp.js new file mode 100644 index 00000000000000..6b9f356b68dd6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricScooterSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74L17.49 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" +}, "1")], 'ElectricScooterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricScooterTwoTone.js b/packages/material-ui-icons/lib/esm/ElectricScooterTwoTone.js new file mode 100644 index 00000000000000..729aa99c8c31e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricScooterTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44C17.63 1.65 16.82 1 15.89 1H12v2h3.89l1.4 6.25h-.01c-2.16.65-3.81 2.48-4.19 4.75H7.82c-.48-1.34-1.86-2.24-3.42-1.94-1.18.23-2.13 1.2-2.35 2.38C1.7 16.34 3.16 18 5 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" +}, "1")], 'ElectricScooterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricalServices.js b/packages/material-ui-icons/lib/esm/ElectricalServices.js new file mode 100644 index 00000000000000..6924a65847b728 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricalServices.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 14c0-.55-.45-1-1-1h-2v2h2c.55 0 1-.45 1-1zm-1 3h-2v2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-8-3h-2v4h2c0 1.1.9 2 2 2h3v-8h-3c-1.1 0-2 .9-2 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 13c0-1.1.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2z" +}, "1")], 'ElectricalServices'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricalServicesOutlined.js b/packages/material-ui-icons/lib/esm/ElectricalServicesOutlined.js new file mode 100644 index 00000000000000..d1ef43d17015a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricalServicesOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 14c0-.55-.45-1-1-1h-2v2h2c.55 0 1-.45 1-1zm-1 3h-2v2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-8-3h-2v4h2c0 1.1.9 2 2 2h3v-8h-3c-1.1 0-2 .9-2 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 13c0-1.1.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2z" +}, "1")], 'ElectricalServicesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricalServicesRounded.js b/packages/material-ui-icons/lib/esm/ElectricalServicesRounded.js new file mode 100644 index 00000000000000..c5e83802c8ebd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricalServicesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 14c0-.55-.45-1-1-1h-2v2h2c.55 0 1-.45 1-1zm-1 3h-2v2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-4-5h-2c-1.1 0-2 .9-2 2h-1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h1c0 1.1.9 2 2 2h2c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM5 13c0-1.1.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2z" +}), 'ElectricalServicesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricalServicesSharp.js b/packages/material-ui-icons/lib/esm/ElectricalServicesSharp.js new file mode 100644 index 00000000000000..69ff6bdc90d1a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricalServicesSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13h3v2h-3zm-6-1v2h-2v4h2v2h5v-8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 11h7V4H4v2h6v3H3v8h6v-2H5zm13 6h3v2h-3z" +}, "1")], 'ElectricalServicesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElectricalServicesTwoTone.js b/packages/material-ui-icons/lib/esm/ElectricalServicesTwoTone.js new file mode 100644 index 00000000000000..5aea42c22fef20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElectricalServicesTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 15h-2v-2h2c.55 0 1 .45 1 1s-.45 1-1 1zm0 4h-2v-2h2c.55 0 1 .45 1 1s-.45 1-1 1zm-6-7c-1.1 0-2 .9-2 2h-2v4h2c0 1.1.9 2 2 2h3v-8h-3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 5c0 .55.45 1 1 1h3.5c.83 0 1.5.67 1.5 1.5S9.33 9 8.5 9H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2H7c-1.1 0-2-.9-2-2s.9-2 2-2h1.5c1.93 0 3.5-1.57 3.5-3.5S10.43 4 8.5 4H5c-.55 0-1 .45-1 1z" +}, "1")], 'ElectricalServicesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Elevator.js b/packages/material-ui-icons/lib/esm/Elevator.js new file mode 100644 index 00000000000000..d1c9ac66234686 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Elevator.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.5 6c.69 0 1.25.56 1.25 1.25S9.19 8.5 8.5 8.5s-1.25-.56-1.25-1.25S7.81 6 8.5 6zm2.5 8h-1v4H7v-4H6v-2.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2V14zm4.5 3L13 13h5l-2.5 4zM13 11l2.5-4 2.5 4h-5z" +}), 'Elevator'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevatorOutlined.js b/packages/material-ui-icons/lib/esm/ElevatorOutlined.js new file mode 100644 index 00000000000000..63eaec95cac78f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevatorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4h3zM8.5 8.5c.69 0 1.25-.56 1.25-1.25S9.19 6 8.5 6s-1.25.56-1.25 1.25S7.81 8.5 8.5 8.5zM18 11l-2.5-4-2.5 4h5zm-5 2 2.5 4 2.5-4h-5z" +}), 'ElevatorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevatorRounded.js b/packages/material-ui-icons/lib/esm/ElevatorRounded.js new file mode 100644 index 00000000000000..7b4f9f323cec68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevatorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.5 6c.69 0 1.25.56 1.25 1.25S9.19 8.5 8.5 8.5s-1.25-.56-1.25-1.25S7.81 6 8.5 6zm2.5 7c0 .55-.45 1-1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c-.55 0-1-.45-1-1v-1.5c0-1.1.9-2 2-2h1c1.1 0 2 .9 2 2V13zm6.52.76-1.6 2.56c-.2.31-.65.31-.85 0l-1.6-2.56c-.2-.33.04-.76.43-.76h3.2c.39 0 .63.43.42.76zM17.1 11h-3.2c-.39 0-.63-.43-.42-.77l1.6-2.56c.2-.31.65-.31.85 0l1.6 2.56c.2.34-.04.77-.43.77z" +}), 'ElevatorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevatorSharp.js b/packages/material-ui-icons/lib/esm/ElevatorSharp.js new file mode 100644 index 00000000000000..0ec65d854161f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevatorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM8.5 6c.69 0 1.25.56 1.25 1.25S9.19 8.5 8.5 8.5s-1.25-.56-1.25-1.25S7.81 6 8.5 6zm2.5 8h-1v4H7v-4H6V9.5h5V14zm4.5 3L13 13h5l-2.5 4zM13 11l2.5-4 2.5 4h-5z" +}), 'ElevatorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevatorTwoTone.js b/packages/material-ui-icons/lib/esm/ElevatorTwoTone.js new file mode 100644 index 00000000000000..725fc3c88e83ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevatorTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m-9 13v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4h3zM8.5 8.5c.69 0 1.25-.56 1.25-1.25S9.19 6 8.5 6s-1.25.56-1.25 1.25S7.81 8.5 8.5 8.5zM18 11l-2.5-4-2.5 4h5zm-5 2 2.5 4 2.5-4h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15v-4h1v-2.5c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2V14h1v4h3zM8.5 8.5c.69 0 1.25-.56 1.25-1.25S9.19 6 8.5 6s-1.25.56-1.25 1.25S7.81 8.5 8.5 8.5zM18 11l-2.5-4-2.5 4h5zm-5 2 2.5 4 2.5-4h-5z" +}, "1")], 'ElevatorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevenMp.js b/packages/material-ui-icons/lib/esm/ElevenMp.js new file mode 100644 index 00000000000000..81b7febca93713 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 5.5v6H9.5V7H8V5.5h3zm5 0v6h-1.5V7H13V5.5h3zm-.5 8.5H17v1.5h-1.5z" +}), 'ElevenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevenMpOutlined.js b/packages/material-ui-icons/lib/esm/ElevenMpOutlined.js new file mode 100644 index 00000000000000..0dd902f37b153d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9.5 11.5H11v-6H8V7h1.5zm5 0H16v-6h-3V7h1.5z" +}, "2")], 'ElevenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevenMpRounded.js b/packages/material-ui-icons/lib/esm/ElevenMpRounded.js new file mode 100644 index 00000000000000..802ffc272c0b6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevenMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.75 5.5H10c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C8.34 7 8 6.66 8 6.25s.34-.75.75-.75zm3.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-11.5c0-.41.34-.75.75-.75H15c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'ElevenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevenMpSharp.js b/packages/material-ui-icons/lib/esm/ElevenMpSharp.js new file mode 100644 index 00000000000000..9ee00006448060 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevenMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm5 2.5h3v6H9.5V7H8V5.5zm4.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'ElevenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ElevenMpTwoTone.js b/packages/material-ui-icons/lib/esm/ElevenMpTwoTone.js new file mode 100644 index 00000000000000..c055185fe9325c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ElevenMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-5-8h3v6h-1.5V7H13V5.5zm-5 0h3v6H9.5V7H8V5.5zm-2 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M9.5 11.5H11v-6H8V7h1.5zm5 0H16v-6h-3V7h1.5z" +}, "4")], 'ElevenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Email.js b/packages/material-ui-icons/lib/esm/Email.js new file mode 100644 index 00000000000000..f763ce89eb7e89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Email.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" +}), 'Email'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmailOutlined.js b/packages/material-ui-icons/lib/esm/EmailOutlined.js new file mode 100644 index 00000000000000..37d3e81b5110ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmailOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" +}), 'EmailOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmailRounded.js b/packages/material-ui-icons/lib/esm/EmailRounded.js new file mode 100644 index 00000000000000..70def0354c2c66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmailRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-7.07 4.42c-.32.2-.74.2-1.06 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" +}), 'EmailRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmailSharp.js b/packages/material-ui-icons/lib/esm/EmailSharp.js new file mode 100644 index 00000000000000..1c36c0c51a7cb2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmailSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" +}), 'EmailSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmailTwoTone.js b/packages/material-ui-icons/lib/esm/EmailTwoTone.js new file mode 100644 index 00000000000000..d0da3bf8de81bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmailTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m20 8-8 5-8-5v10h16zm0-2H4l8 4.99z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM20 6l-8 4.99L4 6h16zM4 8l8 5 8-5v10H4V8z" +}, "1")], 'EmailTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEmotions.js b/packages/material-ui-icons/lib/esm/EmojiEmotions.js new file mode 100644 index 00000000000000..c7bcb19bbf7c4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEmotions.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'EmojiEmotions'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEmotionsOutlined.js b/packages/material-ui-icons/lib/esm/EmojiEmotionsOutlined.js new file mode 100644 index 00000000000000..70ff3c01bdae2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEmotionsOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 18c2.28 0 4.22-1.66 5-4H7c.78 2.34 2.72 4 5 4z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "3")], 'EmojiEmotionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEmotionsRounded.js b/packages/material-ui-icons/lib/esm/EmojiEmotionsRounded.js new file mode 100644 index 00000000000000..25f9cc598266af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEmotionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm8.21 6.72C15.8 16.67 14.04 18 12 18s-3.8-1.33-4.71-3.28c-.16-.33.08-.72.45-.72h8.52c.37 0 .61.39.45.72zM15.5 11c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'EmojiEmotionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEmotionsSharp.js b/packages/material-ui-icons/lib/esm/EmojiEmotionsSharp.js new file mode 100644 index 00000000000000..802bd4c11c5c31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEmotionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'EmojiEmotionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEmotionsTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiEmotionsTwoTone.js new file mode 100644 index 00000000000000..54366d0ff97570 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEmotionsTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 12c0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8 8-3.58 8-8zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12 18c2.28 0 4.22-1.66 5-4H7c.78 2.34 2.72 4 5 4z" +}, "4")], 'EmojiEmotionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEvents.js b/packages/material-ui-icons/lib/esm/EmojiEvents.js new file mode 100644 index 00000000000000..c5c856d3324e2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEvents.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z" +}), 'EmojiEvents'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEventsOutlined.js b/packages/material-ui-icons/lib/esm/EmojiEventsOutlined.js new file mode 100644 index 00000000000000..d31521d0588de0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEventsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm7 6c-1.65 0-3-1.35-3-3V5h6v6c0 1.65-1.35 3-3 3zm7-6c0 1.3-.84 2.4-2 2.82V7h2v1z" +}), 'EmojiEventsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEventsRounded.js b/packages/material-ui-icons/lib/esm/EmojiEventsRounded.js new file mode 100644 index 00000000000000..d47fc81168d4d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEventsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5h-2V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H8c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1h-3v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z" +}), 'EmojiEventsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEventsSharp.js b/packages/material-ui-icons/lib/esm/EmojiEventsSharp.js new file mode 100644 index 00000000000000..01af69d5513d79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEventsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z" +}), 'EmojiEventsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiEventsTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiEventsTwoTone.js new file mode 100644 index 00000000000000..054cfdc8b94572 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiEventsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 14c-1.65 0-3-1.35-3-3V5h6v6c0 1.65-1.35 3-3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm7 6c-1.65 0-3-1.35-3-3V5h6v6c0 1.65-1.35 3-3 3zm7-6c0 1.3-.84 2.4-2 2.82V7h2v1z" +}, "1")], 'EmojiEventsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFlags.js b/packages/material-ui-icons/lib/esm/EmojiFlags.js new file mode 100644 index 00000000000000..45ae3718f74df8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFlags.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" +}), 'EmojiFlags'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFlagsOutlined.js b/packages/material-ui-icons/lib/esm/EmojiFlagsOutlined.js new file mode 100644 index 00000000000000..192721710e8c11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFlagsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" +}), 'EmojiFlagsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFlagsRounded.js b/packages/material-ui-icons/lib/esm/EmojiFlagsRounded.js new file mode 100644 index 00000000000000..05b3131dd8557a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFlagsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-5l-.72-1.45c-.17-.34-.52-.55-.9-.55H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V20c0 .55.45 1 1 1s1-.45 1-1v-3h5l.72 1.45c.17.34.52.55.89.55H19c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1zm-1 8h-4l-1-2H7V9h5l1 2h5v6z" +}), 'EmojiFlagsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFlagsSharp.js b/packages/material-ui-icons/lib/esm/EmojiFlagsSharp.js new file mode 100644 index 00000000000000..acb5f1a64b88cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFlagsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" +}), 'EmojiFlagsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFlagsTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiFlagsTwoTone.js new file mode 100644 index 00000000000000..28e66106b9844e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFlagsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 9H7v6h6l1 2h4v-6h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m14 9-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" +}, "1")], 'EmojiFlagsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFoodBeverage.js b/packages/material-ui-icons/lib/esm/EmojiFoodBeverage.js new file mode 100644 index 00000000000000..8d8a43b3ef4931 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFoodBeverage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H9v2.4l1.81 1.45c.12.09.19.24.19.39v4.26c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5V7.24c0-.15.07-.3.19-.39L8 5.4V3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" +}), 'EmojiFoodBeverage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFoodBeverageOutlined.js b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageOutlined.js new file mode 100644 index 00000000000000..a83cd138603193 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 19h18v2H2zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h3v1.4L7.19 7.85c-.12.09-.19.24-.19.39v4.26c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5V8.24c0-.15-.07-.3-.19-.39L10 6.4V5h6v8zM9.5 7.28l1.5 1.2V12H8V8.48l1.5-1.2zM20 8h-2V5h2v3z" +}), 'EmojiFoodBeverageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFoodBeverageRounded.js b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageRounded.js new file mode 100644 index 00000000000000..b2f5c43450e19b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H3c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm1-16H9v2.4l1.81 1.45c.12.09.19.24.19.39v4.26c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5V7.24c0-.15.07-.3.19-.39L8 5.4V3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3z" +}), 'EmojiFoodBeverageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFoodBeverageSharp.js b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageSharp.js new file mode 100644 index 00000000000000..fe247675750187 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 19h18v2H2zM20 3H9v2.4L11 7v5H6V7l2-1.6V3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3z" +}), 'EmojiFoodBeverageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiFoodBeverageTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageTwoTone.js new file mode 100644 index 00000000000000..d6071013eaece2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiFoodBeverageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m10 6.4 1.81 1.45c.12.09.19.24.19.39v4.26c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5V8.24c0-.15.07-.3.19-.39L9 6.4V5H6v8c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5h-6v1.4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 19h18v2H2zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zM9.5 7.28l1.5 1.2V12H8V8.48l1.5-1.2zM16 13c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h3v1.4L7.19 7.85c-.12.09-.19.24-.19.39v4.26c0 .28.22.5.5.5h4c.28 0 .5-.22.5-.5V8.24c0-.15-.07-.3-.19-.39L10 6.4V5h6v8zm4-5h-2V5h2v3z" +}, "1")], 'EmojiFoodBeverageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiNature.js b/packages/material-ui-icons/lib/esm/EmojiNature.js new file mode 100644 index 00000000000000..1e07c448c88e9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiNature.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91s2.57 1.38 3.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-8.82 3.78c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" +}), 'EmojiNature'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiNatureOutlined.js b/packages/material-ui-icons/lib/esm/EmojiNatureOutlined.js new file mode 100644 index 00000000000000..a518289a28d4f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiNatureOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17l-.5.5-1.33-.5c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91.78.78 1.8 1.17 2.83 1.17.37 0 .73-.07 1.09-.17.29.42.68.77 1.16 1 .41.2.84.3 1.28.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.49-1.3.5-.5c.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-5.91 8.31c-.15.04-.3.06-.46.06-.53 0-1.04-.21-1.41-.59-.38-.38-.59-.88-.59-1.41 0-.16.03-.32.06-.47.14.01.28.03.42.03.85 0 1.68-.2 2.44-.48-.32.89-.54 1.87-.46 2.86zm-2.91-4.53c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" +}), 'EmojiNatureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiNatureRounded.js b/packages/material-ui-icons/lib/esm/EmojiNatureRounded.js new file mode 100644 index 00000000000000..b3eff2f00f5d74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiNatureRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2.5 5h-1.09c-.19-.54-.49-1.05-.93-1.49s-.94-.73-1.48-.92V8.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v.88c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91s2.57 1.38 3.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17h.88c.28 0 .5-.22.5-.5-.01-.29-.23-.51-.51-.51zM4.67 14.29c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" +}), 'EmojiNatureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiNatureSharp.js b/packages/material-ui-icons/lib/esm/EmojiNatureSharp.js new file mode 100644 index 00000000000000..ea4e5903eed555 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiNatureSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.94 4.88c-.18-.53-.69-.88-1.26-.88H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52c-1.56-.55-3.28.27-3.83 1.82-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91s2.57 1.38 3.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17 1.56-.55 2.38-2.27 1.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-8.82 3.78c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04-.24-.11-.42-.32-.51-.57-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12c-.02-.04-.04-.07-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6c.36-.29.79-.46 1.26-.46.53 0 1.04.21 1.41.59.73.73.77 1.88.13 2.67z" +}), 'EmojiNatureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiNatureTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiNatureTwoTone.js new file mode 100644 index 00000000000000..3da338810dab03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiNatureTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.94 4.88c-.19-.55-.75-.92-1.36-.88h-.98l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-.98c-.61-.04-1.16.32-1.35.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.5.37 1.17.35 1.64-.06l.81-.7.81.7c.47.4 1.15.43 1.64.06.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6.1 17.9c.53.53 1.27.69 1.94.5-.03-1.19.35-2.37.92-3.36-1 .57-2.17.95-3.36.92-.19.67-.02 1.41.5 1.94zm3.55-6.35 1.61.66c.25.1.44.3.54.54l.66 1.61c.75-.78.74-2.01-.03-2.78-.77-.78-2-.78-2.78-.03z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M14.86 12c-.17-.67-.5-1.31-1.03-1.84-.52-.52-1.16-.85-1.83-1.02V7h-1v2c-1.01.01-2.02.39-2.79 1.16l-.56.56-1.53-.63c-1.52-.63-3.27.1-3.89 1.62-.6 1.46.05 3.11 1.44 3.8-.33 1.31 0 2.76 1.03 3.79 1.03 1.03 2.48 1.36 3.79 1.03.69 1.39 2.34 2.04 3.8 1.44 1.52-.63 2.25-2.37 1.62-3.89l-.63-1.53.56-.56C14.61 15.02 15 14.01 15 13h2v-1h-2.14zM4.58 13.8c-.51-.21-.75-.79-.54-1.3.21-.51.79-.75 1.3-.54l2.92 1.2c-1.04.68-2.43 1.15-3.68.64zm3.46 4.6c-.67.19-1.41.02-1.94-.5-.53-.53-.69-1.27-.5-1.94 1.19.03 2.37-.35 3.36-.92-.57.99-.95 2.17-.92 3.36zm3.46 1.56c-.51.21-1.09-.03-1.3-.54-.51-1.25-.04-2.64.64-3.67l1.2 2.92c.21.5-.03 1.09-.54 1.29zm.95-5.61-.66-1.61c-.1-.25-.3-.44-.54-.54l-1.61-.66c.78-.75 2.01-.74 2.78.03.78.77.78 2 .03 2.78z" +}, "3")], 'EmojiNatureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiObjects.js b/packages/material-ui-icons/lib/esm/EmojiObjects.js new file mode 100644 index 00000000000000..51190437161b89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiObjects.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm-1.5-5.59V14h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.82z" +}), 'EmojiObjects'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiObjectsOutlined.js b/packages/material-ui-icons/lib/esm/EmojiObjectsOutlined.js new file mode 100644 index 00000000000000..817adfaa611c16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiObjectsOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 14h-4v-1h4v1zm-4 2v-1h4v1h-4zm5.31-5.26c-.09.08-.16.18-.24.26H8.92c-.08-.09-.15-.19-.24-.27-1.32-1.18-1.91-2.94-1.59-4.7.36-1.94 1.96-3.55 3.89-3.93.34-.07.68-.1 1.02-.1 2.76 0 5 2.24 5 5 0 1.43-.61 2.79-1.69 3.74z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.5 11h1v3h-1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m9.6724 9.5808.7071-.7071 2.1214 2.1213-.7071.7071z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m12.2081 11.7124-.707-.7071 2.1212-2.1214.7071.7072z" +}, "3")], 'EmojiObjectsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiObjectsRounded.js b/packages/material-ui-icons/lib/esm/EmojiObjectsRounded.js new file mode 100644 index 00000000000000..85b01f2577098c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiObjectsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm.5 11h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.83V14zm1 5c-.01 0-.02-.01-.03-.01V19h-2.94v-.01c-.01 0-.02.01-.03.01-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.01 0 .02.01.03.01V18h2.94v.01c.01 0 .02-.01.03-.01.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'EmojiObjectsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiObjectsSharp.js b/packages/material-ui-icons/lib/esm/EmojiObjectsSharp.js new file mode 100644 index 00000000000000..b6a6a9d7f9849d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiObjectsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-.42 0-.85.04-1.28.11-2.81.5-5.08 2.75-5.6 5.55-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V21h2.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H16v-4.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm-1.5-5.59V14h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.82z" +}), 'EmojiObjectsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiObjectsTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiObjectsTwoTone.js new file mode 100644 index 00000000000000..731496a8ad1047 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiObjectsTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 18h4v1h-4zm0-2h4v1h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3c-.46 0-.93.04-1.4.14-2.76.53-4.96 2.76-5.48 5.52-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V19c0 1.1.9 2 2 2h.28c.35.6.98 1 1.72 1s1.38-.4 1.72-1H14c1.1 0 2-.9 2-2v-2.31c0-.55.22-1.09.64-1.46C18.09 13.95 19 12.08 19 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm1.31-3.26c-.09.08-.16.18-.24.26H8.92c-.08-.09-.15-.19-.24-.27-1.32-1.18-1.91-2.94-1.59-4.7.36-1.94 1.96-3.55 3.89-3.93.34-.07.68-.1 1.02-.1 2.76 0 5 2.24 5 5 0 1.43-.61 2.79-1.69 3.74z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 11h1v3h-1z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m9.6724 9.5808.7071-.7071 2.1214 2.1213-.7071.7071z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "m12.2081 11.7124-.707-.7071 2.1212-2.1214.7071.7072z" +}, "4")], 'EmojiObjectsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiPeople.js b/packages/material-ui-icons/lib/esm/EmojiPeople.js new file mode 100644 index 00000000000000..6797b06d8d7dd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiPeople.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" +}, "1")], 'EmojiPeople'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiPeopleOutlined.js b/packages/material-ui-icons/lib/esm/EmojiPeopleOutlined.js new file mode 100644 index 00000000000000..e1325c1407f5b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiPeopleOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" +}, "1")], 'EmojiPeopleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiPeopleRounded.js b/packages/material-ui-icons/lib/esm/EmojiPeopleRounded.js new file mode 100644 index 00000000000000..c7b7bbfd15af05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiPeopleRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54c-2.46-.01-4.51-1.8-4.92-4.15-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14C4.53 5.8 6.47 7.95 9 8.71V21c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V10.05l3.24 3.24c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-3.76-3.77z" +}, "1")], 'EmojiPeopleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiPeopleSharp.js b/packages/material-ui-icons/lib/esm/EmojiPeopleSharp.js new file mode 100644 index 00000000000000..753387799b1638 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiPeopleSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" +}, "1")], 'EmojiPeopleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiPeopleTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiPeopleTwoTone.js new file mode 100644 index 00000000000000..e49cdc6e046cbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiPeopleTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" +}, "1")], 'EmojiPeopleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiSymbols.js b/packages/material-ui-icons/lib/esm/EmojiSymbols.js new file mode 100644 index 00000000000000..6d6b962c0e2df0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiSymbols.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" +}, "3")], 'EmojiSymbols'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiSymbolsOutlined.js b/packages/material-ui-icons/lib/esm/EmojiSymbolsOutlined.js new file mode 100644 index 00000000000000..66897864330723 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiSymbolsOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" +}, "3")], 'EmojiSymbolsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiSymbolsRounded.js b/packages/material-ui-icons/lib/esm/EmojiSymbolsRounded.js new file mode 100644 index 00000000000000..4997ca0b5f2873 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiSymbolsRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 5H4c-.55 0-1 .45-1 1s.45 1 1 1h2v3c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1zm0-3H4c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm10.89 11.11a.9959.9959 0 0 0-1.41 0l-6.36 6.36c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1v3.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.05 7.09c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.71.71-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.48 1.14.72 1.78.72.64 0 1.28-.24 1.77-.73l1.06-1.06.71.71c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71.71-.71zm-4.6-3.89c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.12-.12-.15-.26-.15-.35s.03-.23.15-.35zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.12-.12-.15-.26-.15-.35s.03-.23.15-.35l1.06-1.06.71.71-1.07 1.05z" +}, "3")], 'EmojiSymbolsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiSymbolsSharp.js b/packages/material-ui-icons/lib/esm/EmojiSymbolsSharp.js new file mode 100644 index 00000000000000..4ef236ff8766b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiSymbolsSharp.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" +}, "3")], 'EmojiSymbolsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiSymbolsTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiSymbolsTwoTone.js new file mode 100644 index 00000000000000..82b55fb144a739 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiSymbolsTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.4036 9.1819 7.7782-7.7782 1.4142 1.4142-7.7782 7.7782z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M15.5 11c1.38 0 2.5-1.12 2.5-2.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51C14.12 6 13 7.12 13 8.5s1.12 2.5 2.5 2.5zm-5.76 4.96-1.41 1.41-.71-.71.35-.35c.98-.98.98-2.56 0-3.54-.49-.49-1.13-.73-1.77-.73-.64 0-1.28.24-1.77.73-.98.98-.98 2.56 0 3.54l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36c-.19-.19-.19-.51 0-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15c-.19-.19-.19-.51 0-.71l1.06-1.06.71.71-1.07 1.06z" +}, "3")], 'EmojiSymbolsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiTransportation.js b/packages/material-ui-icons/lib/esm/EmojiTransportation.js new file mode 100644 index 00000000000000..18ab6932b4282a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiTransportation.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" +}, "2")], 'EmojiTransportation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiTransportationOutlined.js b/packages/material-ui-icons/lib/esm/EmojiTransportationOutlined.js new file mode 100644 index 00000000000000..5aa5e5796eaf01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiTransportationOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" +}, "2")], 'EmojiTransportationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiTransportationRounded.js b/packages/material-ui-icons/lib/esm/EmojiTransportationRounded.js new file mode 100644 index 00000000000000..d2d2648d9b1326 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiTransportationRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.99 14.77-1.43-4.11c-.14-.4-.52-.66-.97-.66H12.4c-.46 0-.83.26-.98.66L10 14.77v5.24c0 .55.45.99 1 .99s1-.45 1-1v-1h8v1c0 .55.45 1 1 1s.99-.44 1-.99l-.01-5.24zm-10.38-1.43.69-2c.05-.2.24-.34.46-.34h6.48c.21 0 .4.14.47.34l.69 2c.11.32-.13.66-.47.66h-7.85c-.34 0-.58-.34-.47-.66zm.38 3.66c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 4.5V9h1V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v4H3c-.55 0-1 .45-1 1v12h1V9.5c0-.28.22-.5.5-.5h4c.28 0 .5-.22.5-.5v-4c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" +}, "2")], 'EmojiTransportationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiTransportationSharp.js b/packages/material-ui-icons/lib/esm/EmojiTransportationSharp.js new file mode 100644 index 00000000000000..59c07500bed1fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiTransportationSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" +}, "2")], 'EmojiTransportationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EmojiTransportationTwoTone.js b/packages/material-ui-icons/lib/esm/EmojiTransportationTwoTone.js new file mode 100644 index 00000000000000..9c3921cad9ff95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EmojiTransportationTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" +}, "2")], 'EmojiTransportationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Engineering.js b/packages/material-ui-icons/lib/esm/Engineering.js new file mode 100644 index 00000000000000..74c7b225e90078 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Engineering.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm13.1-8.16c.01-.11.02-.22.02-.34 0-.12-.01-.23-.03-.34l.74-.58c.07-.05.08-.15.04-.22l-.7-1.21c-.04-.08-.14-.1-.21-.08l-.86.35c-.18-.14-.38-.25-.59-.34l-.13-.93c-.02-.09-.09-.15-.18-.15h-1.4c-.09 0-.16.06-.17.15l-.13.93c-.21.09-.41.21-.59.34l-.87-.35c-.08-.03-.17 0-.21.08l-.7 1.21c-.04.08-.03.17.04.22l.74.58c-.02.11-.03.23-.03.34 0 .11.01.23.03.34l-.74.58c-.07.05-.08.15-.04.22l.7 1.21c.04.08.14.1.21.08l.87-.35c.18.14.38.25.59.34l.13.93c.01.09.08.15.17.15h1.4c.09 0 .16-.06.17-.15l.13-.93c.21-.09.41-.21.59-.34l.87.35c.08.03.17 0 .21-.08l.7-1.21c.04-.08.03-.17-.04-.22l-.73-.58zm-2.6.91c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm.42 3.93-.5-.87c-.03-.06-.1-.08-.15-.06l-.62.25c-.13-.1-.27-.18-.42-.24l-.09-.66c-.02-.06-.08-.1-.14-.1h-1c-.06 0-.11.04-.12.11l-.09.66c-.15.06-.29.15-.42.24l-.62-.25c-.06-.02-.12 0-.15.06l-.5.87c-.03.06-.02.12.03.16l.53.41c-.01.08-.02.16-.02.24 0 .08.01.17.02.24l-.53.41c-.05.04-.06.11-.03.16l.5.87c.03.06.1.08.15.06l.62-.25c.13.1.27.18.42.24l.09.66c.01.07.06.11.12.11h1c.06 0 .12-.04.12-.11l.09-.66c.15-.06.29-.15.42-.24l.62.25c.06.02.12 0 .15-.06l.5-.87c.03-.06.02-.12-.03-.16l-.52-.41c.01-.08.02-.16.02-.24 0-.08-.01-.17-.02-.24l.53-.41c.05-.04.06-.11.04-.17zm-2.42 1.65c-.46 0-.83-.38-.83-.83 0-.46.38-.83.83-.83s.83.38.83.83c0 .46-.37.83-.83.83zM4.74 9h8.53c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3z" +}), 'Engineering'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EngineeringOutlined.js b/packages/material-ui-icons/lib/esm/EngineeringOutlined.js new file mode 100644 index 00000000000000..b89017f0e06394 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EngineeringOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM4.74 9H5c0 2.21 1.79 4 4 4s4-1.79 4-4h.26c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM11 9c0 1.1-.9 2-2 2s-2-.9-2-2h4zm10.98-2.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.1 3.04-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" +}), 'EngineeringOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EngineeringRounded.js b/packages/material-ui-icons/lib/esm/EngineeringRounded.js new file mode 100644 index 00000000000000..cc6425fa959a88 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EngineeringRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zM4.74 9h8.53c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3zm12.98-6.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.1 3.04-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" +}), 'EngineeringRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EngineeringSharp.js b/packages/material-ui-icons/lib/esm/EngineeringSharp.js new file mode 100644 index 00000000000000..4d948f2ccb9472 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EngineeringSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm4.75-7H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.75v1h9.5V8zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3zm12.98-6.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.1 3.04-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" +}), 'EngineeringSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EngineeringTwoTone.js b/packages/material-ui-icons/lib/esm/EngineeringTwoTone.js new file mode 100644 index 00000000000000..a0a00c0ce08d46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EngineeringTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 11c1.1 0 2-.9 2-2H7c0 1.1.9 2 2 2zM7.5 6c.28 0 .5-.22.5-.5V4.14c-.36.09-.69.23-1 .41v.95c0 .28.22.5.5.5zm3 0c.28 0 .5-.22.5-.5v-.95c-.31-.18-.64-.32-1-.41V5.5c0 .28.22.5.5.5zM9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM4.74 9H5c0 2.21 1.79 4 4 4s4-1.79 4-4h.26c.27 0 .49-.22.49-.49v-.02c0-.27-.22-.49-.49-.49H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.26c-.27 0-.49.22-.49.49v.03c0 .26.22.48.49.48zM11 9c0 1.1-.9 2-2 2s-2-.9-2-2h4zm10.98-2.77.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm-.23 4.56.66-.59-.54-.93-.85.28c-.1-.08-.21-.14-.33-.19l-.17-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37zm-1.77 1.08c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" +}, "1")], 'EngineeringTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EnhancedEncryption.js b/packages/material-ui-icons/lib/esm/EnhancedEncryption.js new file mode 100644 index 00000000000000..7ec018f50480bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EnhancedEncryption.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" +}), 'EnhancedEncryption'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EnhancedEncryptionOutlined.js b/packages/material-ui-icons/lib/esm/EnhancedEncryptionOutlined.js new file mode 100644 index 00000000000000..0bfec8624dd6fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EnhancedEncryptionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-5-9h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}), 'EnhancedEncryptionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EnhancedEncryptionRounded.js b/packages/material-ui-icons/lib/esm/EnhancedEncryptionRounded.js new file mode 100644 index 00000000000000..88e9a71eab0488 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EnhancedEncryptionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM15 16h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'EnhancedEncryptionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EnhancedEncryptionSharp.js b/packages/material-ui-icons/lib/esm/EnhancedEncryptionSharp.js new file mode 100644 index 00000000000000..33031ab296d7a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EnhancedEncryptionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" +}), 'EnhancedEncryptionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EnhancedEncryptionTwoTone.js b/packages/material-ui-icons/lib/esm/EnhancedEncryptionTwoTone.js new file mode 100644 index 00000000000000..a1966693dce230 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EnhancedEncryptionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20h12V10H6v10zm2-6h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-7-1h2v-3h3v-2h-3v-3h-2v3H8v2h3z" +}, "1")], 'EnhancedEncryptionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Equalizer.js b/packages/material-ui-icons/lib/esm/Equalizer.js new file mode 100644 index 00000000000000..df8bb662758508 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Equalizer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" +}), 'Equalizer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EqualizerOutlined.js b/packages/material-ui-icons/lib/esm/EqualizerOutlined.js new file mode 100644 index 00000000000000..beec69b823b840 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EqualizerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" +}), 'EqualizerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EqualizerRounded.js b/packages/material-ui-icons/lib/esm/EqualizerRounded.js new file mode 100644 index 00000000000000..0fa88c314b241a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EqualizerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 1.1.9 2 2 2zm-6 0c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2s-2 .9-2 2v4c0 1.1.9 2 2 2zm10-9v7c0 1.1.9 2 2 2s2-.9 2-2v-7c0-1.1-.9-2-2-2s-2 .9-2 2z" +}), 'EqualizerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EqualizerSharp.js b/packages/material-ui-icons/lib/esm/EqualizerSharp.js new file mode 100644 index 00000000000000..482b01a90a5ae2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EqualizerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" +}), 'EqualizerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EqualizerTwoTone.js b/packages/material-ui-icons/lib/esm/EqualizerTwoTone.js new file mode 100644 index 00000000000000..626c39373845a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EqualizerTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9h4v11h-4zm-6-5h4v16h-4zm-6 8h4v8H4z" +}), 'EqualizerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Error.js b/packages/material-ui-icons/lib/esm/Error.js new file mode 100644 index 00000000000000..b2f7ea15cfc43b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Error.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" +}), 'Error'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorOutline.js b/packages/material-ui-icons/lib/esm/ErrorOutline.js new file mode 100644 index 00000000000000..cf2717f6b5836d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'ErrorOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorOutlineOutlined.js b/packages/material-ui-icons/lib/esm/ErrorOutlineOutlined.js new file mode 100644 index 00000000000000..f4b823eecf17f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'ErrorOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorOutlineRounded.js b/packages/material-ui-icons/lib/esm/ErrorOutlineRounded.js new file mode 100644 index 00000000000000..37e420ad50f3a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-.01-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-3h-2v-2h2v2z" +}), 'ErrorOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorOutlineSharp.js b/packages/material-ui-icons/lib/esm/ErrorOutlineSharp.js new file mode 100644 index 00000000000000..1b6b320b56fecf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'ErrorOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/ErrorOutlineTwoTone.js new file mode 100644 index 00000000000000..aef2b0fced58b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z" +}), 'ErrorOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorOutlined.js b/packages/material-ui-icons/lib/esm/ErrorOutlined.js new file mode 100644 index 00000000000000..68ac0fe6273fd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" +}), 'ErrorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorRounded.js b/packages/material-ui-icons/lib/esm/ErrorRounded.js new file mode 100644 index 00000000000000..b4e84c40bc20e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 11c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z" +}), 'ErrorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorSharp.js b/packages/material-ui-icons/lib/esm/ErrorSharp.js new file mode 100644 index 00000000000000..04f3fcd951d89e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z" +}), 'ErrorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ErrorTwoTone.js b/packages/material-ui-icons/lib/esm/ErrorTwoTone.js new file mode 100644 index 00000000000000..c6c50b4f023e84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ErrorTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-4h-2V7h2v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z" +}, "1")], 'ErrorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Escalator.js b/packages/material-ui-icons/lib/esm/Escalator.js new file mode 100644 index 00000000000000..4c278789305872 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Escalator.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 6h-1.7l-5 9H7c-.83 0-1.5-.67-1.5-1.5S6.17 15 7 15h1.7l5-9H17c.83 0 1.5.67 1.5 1.5S17.83 9 17 9z" +}), 'Escalator'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorOutlined.js b/packages/material-ui-icons/lib/esm/EscalatorOutlined.js new file mode 100644 index 00000000000000..ba887e571a34b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 3h-3.3l-5 9H7c-.83 0-1.5.67-1.5 1.5S6.17 18 7 18h3.3l5-9H17c.83 0 1.5-.67 1.5-1.5S17.83 6 17 6z" +}), 'EscalatorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorRounded.js b/packages/material-ui-icons/lib/esm/EscalatorRounded.js new file mode 100644 index 00000000000000..6bcdb90b229723 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 6h-1.7l-4.71 8.49c-.18.31-.52.51-.88.51H7c-.83 0-1.5-.67-1.5-1.5S6.17 15 7 15h1.7l4.71-8.49c.18-.31.52-.51.88-.51H17c.83 0 1.5.67 1.5 1.5S17.83 9 17 9z" +}), 'EscalatorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorSharp.js b/packages/material-ui-icons/lib/esm/EscalatorSharp.js new file mode 100644 index 00000000000000..cbb128db7a356d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-2.5 6h-3.2l-5 9H5.5v-3h3.2l5-9h4.8v3z" +}), 'EscalatorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorTwoTone.js b/packages/material-ui-icons/lib/esm/EscalatorTwoTone.js new file mode 100644 index 00000000000000..42c4bbb7ca2292 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m-2 1h-3.3l-5 9H7c-.83 0-1.5.67-1.5 1.5S6.17 18 7 18h3.3l5-9H17c.83 0 1.5-.67 1.5-1.5S17.83 6 17 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 3h-3.3l-5 9H7c-.83 0-1.5.67-1.5 1.5S6.17 18 7 18h3.3l5-9H17c.83 0 1.5-.67 1.5-1.5S17.83 6 17 6z" +}, "1")], 'EscalatorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorWarning.js b/packages/material-ui-icons/lib/esm/EscalatorWarning.js new file mode 100644 index 00000000000000..ec559de27224c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorWarning.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v6h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-3.5c0-.82-.67-1.5-1.5-1.5z" +}), 'EscalatorWarning'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorWarningOutlined.js b/packages/material-ui-icons/lib/esm/EscalatorWarningOutlined.js new file mode 100644 index 00000000000000..e36196b99531d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorWarningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v6h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-3.5c0-.82-.67-1.5-1.5-1.5z" +}), 'EscalatorWarningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorWarningRounded.js b/packages/material-ui-icons/lib/esm/EscalatorWarningRounded.js new file mode 100644 index 00000000000000..028799c9f3cdce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorWarningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h.5v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-9.39l2.24 3.89c.18.31.51.5.87.5h1.1c.33 0 .63-.16.82-.43l.47-.67V21c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-4c.55 0 1-.45 1-1v-2.5c0-.82-.67-1.5-1.5-1.5z" +}), 'EscalatorWarningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorWarningSharp.js b/packages/material-ui-icons/lib/esm/EscalatorWarningSharp.js new file mode 100644 index 00000000000000..1c6dd8aea01ebc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorWarningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm-1.29 3.36-.92 1.32L9.72 8c-.35-.62-1.01-1-1.73-1H3v8h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-5h-4.15c-.66 0-1.27.32-1.64.86z" +}), 'EscalatorWarningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EscalatorWarningTwoTone.js b/packages/material-ui-icons/lib/esm/EscalatorWarningTwoTone.js new file mode 100644 index 00000000000000..51cf1d87204cbf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EscalatorWarningTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm3 2.5h-2.84c-.58.01-1.14.32-1.45.86l-.92 1.32L9.72 8c-.37-.63-1.03-.99-1.71-1H5c-1.1 0-2 .9-2 2v6h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-3.5c0-.82-.67-1.5-1.5-1.5z" +}), 'EscalatorWarningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Euro.js b/packages/material-ui-icons/lib/esm/Euro.js new file mode 100644 index 00000000000000..cc9f4d1981bc7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Euro.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'Euro'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroOutlined.js b/packages/material-ui-icons/lib/esm/EuroOutlined.js new file mode 100644 index 00000000000000..72db5b6d9dd4c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'EuroOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroRounded.js b/packages/material-ui-icons/lib/esm/EuroRounded.js new file mode 100644 index 00000000000000..1fe47dff4f0c8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5h5.14c.38 0 .73-.21.89-.55.33-.66-.15-1.45-.89-1.45h-5.8c-.05-.33-.08-.66-.08-1s.03-.67.08-1h5.8c.38 0 .73-.21.89-.55.34-.67-.14-1.45-.89-1.45H9.24C10.32 6.92 12.5 5.5 15 5.5c1.25 0 2.42.36 3.42.97.5.31 1.15.26 1.57-.16.58-.58.45-1.53-.25-1.96C18.36 3.5 16.73 3 15 3c-3.92 0-7.24 2.51-8.48 6h-2.9c-.38 0-.73.21-.9.55-.33.67.15 1.45.9 1.45h2.44c-.04.33-.06.66-.06 1s.02.67.06 1H3.62c-.38 0-.73.21-.89.55-.34.67.14 1.45.89 1.45h2.9c1.24 3.49 4.56 6 8.48 6 1.74 0 3.36-.49 4.74-1.35.69-.43.82-1.39.24-1.97-.42-.42-1.07-.47-1.57-.15-.99.62-2.15.97-3.41.97z" +}), 'EuroRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroSharp.js b/packages/material-ui-icons/lib/esm/EuroSharp.js new file mode 100644 index 00000000000000..c63c6f59508778 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'EuroSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroSymbol.js b/packages/material-ui-icons/lib/esm/EuroSymbol.js new file mode 100644 index 00000000000000..775c52224cfc21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroSymbol.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1 0 .34.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'EuroSymbol'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroSymbolOutlined.js b/packages/material-ui-icons/lib/esm/EuroSymbolOutlined.js new file mode 100644 index 00000000000000..e1582f1fa2d223 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroSymbolOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'EuroSymbolOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroSymbolRounded.js b/packages/material-ui-icons/lib/esm/EuroSymbolRounded.js new file mode 100644 index 00000000000000..2c2ecb9770283d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroSymbolRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H14c.55 0 1-.45 1-1s-.45-1-1-1H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H14c.55 0 1-.45 1-1s-.45-1-1-1H9.24C10.32 6.92 12.5 5.5 15 5.5c1.25 0 2.42.36 3.42.97.5.31 1.15.26 1.57-.16.58-.58.45-1.53-.25-1.96C18.36 3.5 16.73 3 15 3c-3.92 0-7.24 2.51-8.48 6H4c-.55 0-1 .45-1 1s.45 1 1 1h2.06c-.04.33-.06.66-.06 1s.02.67.06 1H4c-.55 0-1 .45-1 1s.45 1 1 1h2.52c1.24 3.49 4.56 6 8.48 6 1.74 0 3.36-.49 4.74-1.35.69-.43.82-1.39.24-1.97-.42-.42-1.07-.47-1.57-.15-.99.62-2.15.97-3.41.97z" +}), 'EuroSymbolRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroSymbolSharp.js b/packages/material-ui-icons/lib/esm/EuroSymbolSharp.js new file mode 100644 index 00000000000000..14a1ea7fc94576 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroSymbolSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'EuroSymbolSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroSymbolTwoTone.js b/packages/material-ui-icons/lib/esm/EuroSymbolTwoTone.js new file mode 100644 index 00000000000000..0e8919b58ffc62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroSymbolTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'EuroSymbolTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EuroTwoTone.js b/packages/material-ui-icons/lib/esm/EuroTwoTone.js new file mode 100644 index 00000000000000..853ac03db6ebcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EuroTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06c-.04.33-.06.66-.06 1s.02.67.06 1H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" +}), 'EuroTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EvStation.js b/packages/material-ui-icons/lib/esm/EvStation.js new file mode 100644 index 00000000000000..6efeeec9f32947 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EvStation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z" +}), 'EvStation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EvStationOutlined.js b/packages/material-ui-icons/lib/esm/EvStationOutlined.js new file mode 100644 index 00000000000000..5f95b9b145f279 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EvStationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 11v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4-4 7.5h2V18l4-7h-2z" +}), 'EvStationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EvStationRounded.js b/packages/material-ui-icons/lib/esm/EvStationRounded.js new file mode 100644 index 00000000000000..57c25e28126f80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EvStationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.19-3.19c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.58 1.58c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v15c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-6.5h1.5v4.86c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 16.12V13.5H6.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3h1.14c.38 0 .62.41.43.75l-2.64 4.62c-.25.44-.93.26-.93-.25z" +}), 'EvStationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EvStationSharp.js b/packages/material-ui-icons/lib/esm/EvStationSharp.js new file mode 100644 index 00000000000000..c7713b84b812ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EvStationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5V21h5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z" +}), 'EvStationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EvStationTwoTone.js b/packages/material-ui-icons/lib/esm/EvStationTwoTone.js new file mode 100644 index 00000000000000..0a3372edfc0279 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EvStationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 13.5H6V19h6v-8l-4 7zm-2 0L10 6v5h2V5H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 8v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4-4 7.5h2V18l4-7h-2z" +}, "1")], 'EvStationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Event.js b/packages/material-ui-icons/lib/esm/Event.js new file mode 100644 index 00000000000000..a83680199acb02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Event.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z" +}), 'Event'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventAvailable.js b/packages/material-ui-icons/lib/esm/EventAvailable.js new file mode 100644 index 00000000000000..6c8789ba1f58ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventAvailable.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.53 11.06 15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z" +}), 'EventAvailable'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventAvailableOutlined.js b/packages/material-ui-icons/lib/esm/EventAvailableOutlined.js new file mode 100644 index 00000000000000..8a17da3bc52ddb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventAvailableOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm5.56 10.46 5.93-5.93-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06z" +}), 'EventAvailableOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventAvailableRounded.js b/packages/material-ui-icons/lib/esm/EventAvailableRounded.js new file mode 100644 index 00000000000000..ca3956d4598d99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventAvailableRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 10.53c-.29-.29-.77-.29-1.06 0l-4.35 4.35L9 13.29c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.94 1.94c.39.39 1.02.39 1.41 0l4.7-4.7c.3-.29.3-.77.01-1.06zM19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z" +}), 'EventAvailableRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventAvailableSharp.js b/packages/material-ui-icons/lib/esm/EventAvailableSharp.js new file mode 100644 index 00000000000000..7319e7b50c1754 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventAvailableSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.53 11.06 15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11z" +}), 'EventAvailableSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventAvailableTwoTone.js b/packages/material-ui-icons/lib/esm/EventAvailableTwoTone.js new file mode 100644 index 00000000000000..9da8a10a1326d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventAvailableTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h14v2H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2.51 4.53-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06 3.17 3.17z" +}, "1")], 'EventAvailableTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventBusy.js b/packages/material-ui-icons/lib/esm/EventBusy.js new file mode 100644 index 00000000000000..973ae6d0f1ea34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventBusy.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.31 17 2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z" +}), 'EventBusy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventBusyOutlined.js b/packages/material-ui-icons/lib/esm/EventBusyOutlined.js new file mode 100644 index 00000000000000..96c05b4b5a46c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventBusyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm3.23 9.41 1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z" +}), 'EventBusyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventBusyRounded.js b/packages/material-ui-icons/lib/esm/EventBusyRounded.js new file mode 100644 index 00000000000000..905a023573aeda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventBusyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.84 16.47 1.91-1.91 1.91 1.91c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-1.91-1.91 1.91-1.91c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-1.91 1.91-1.91-1.91c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.91 1.91-1.91 1.91c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zM19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z" +}), 'EventBusyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventBusySharp.js b/packages/material-ui-icons/lib/esm/EventBusySharp.js new file mode 100644 index 00000000000000..9f980cb95efa46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventBusySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.31 17 2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM21 3h-3V1h-2v2H8V1H6v2H3.01L3 21h18V3zm-2 16H5V8h14v11z" +}), 'EventBusySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventBusyTwoTone.js b/packages/material-ui-icons/lib/esm/EventBusyTwoTone.js new file mode 100644 index 00000000000000..773b2d5155f509 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventBusyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h14v2H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM9.29 17.47l2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44-2.44 2.44z" +}, "1")], 'EventBusyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventNote.js b/packages/material-ui-icons/lib/esm/EventNote.js new file mode 100644 index 00000000000000..9622464a8ca302 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventNote.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10H7v2h10v-2zm2-7h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zm-5-5H7v2h7v-2z" +}), 'EventNote'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventNoteOutlined.js b/packages/material-ui-icons/lib/esm/EventNoteOutlined.js new file mode 100644 index 00000000000000..1c706bf98334a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventNoteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm2 4h10v2H7zm0 4h7v2H7z" +}), 'EventNoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventNoteRounded.js b/packages/material-ui-icons/lib/esm/EventNoteRounded.js new file mode 100644 index 00000000000000..c3f362a4a9766a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventNoteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 10H8c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm3-7h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1zm-5-5H8c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'EventNoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventNoteSharp.js b/packages/material-ui-icons/lib/esm/EventNoteSharp.js new file mode 100644 index 00000000000000..361bad0e02b7e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventNoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10H7v2h10v-2zm4-7h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zm-5-5H7v2h7v-2z" +}), 'EventNoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventNoteTwoTone.js b/packages/material-ui-icons/lib/esm/EventNoteTwoTone.js new file mode 100644 index 00000000000000..da95ff1d63d301 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventNoteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h14v2H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h10v2H7zm0 4h7v2H7z" +}, "1")], 'EventNoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventOutlined.js b/packages/material-ui-icons/lib/esm/EventOutlined.js new file mode 100644 index 00000000000000..1bf8a340613d4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z" +}), 'EventOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventRounded.js b/packages/material-ui-icons/lib/esm/EventRounded.js new file mode 100644 index 00000000000000..7e635ab956e3a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 13h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-10v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-1V3c0-.55-.45-1-1-1s-1 .45-1 1zm2 17H6c-.55 0-1-.45-1-1V9h14v10c0 .55-.45 1-1 1z" +}), 'EventRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventSeat.js b/packages/material-ui-icons/lib/esm/EventSeat.js new file mode 100644 index 00000000000000..393d5cbc428138 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventSeat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 18v3h3v-3h10v3h3v-6H4v3zm15-8h3v3h-3v-3zM2 10h3v3H2v-3zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z" +}), 'EventSeat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventSeatOutlined.js b/packages/material-ui-icons/lib/esm/EventSeatOutlined.js new file mode 100644 index 00000000000000..8a563f7c4a11d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventSeatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 5v7H9V5h6m0-2H9c-1.1 0-2 .9-2 2v9h10V5c0-1.1-.9-2-2-2zm7 7h-3v3h3v-3zM5 10H2v3h3v-3zm15 5H4v6h2v-4h12v4h2v-6z" +}), 'EventSeatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventSeatRounded.js b/packages/material-ui-icons/lib/esm/EventSeatRounded.js new file mode 100644 index 00000000000000..74cd3d94c4c763 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventSeatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 21c.83 0 1.5-.67 1.5-1.5V18h10v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V17c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v2.5c0 .83.67 1.5 1.5 1.5zM20 10h1c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1zM3 10h1c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1zm14 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z" +}), 'EventSeatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventSeatSharp.js b/packages/material-ui-icons/lib/esm/EventSeatSharp.js new file mode 100644 index 00000000000000..9c2c0183731942 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventSeatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 21h3v-3h10v3h3v-6H4v6zm15-11h3v3h-3v-3zM2 10h3v3H2v-3zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z" +}), 'EventSeatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventSeatTwoTone.js b/packages/material-ui-icons/lib/esm/EventSeatTwoTone.js new file mode 100644 index 00000000000000..6232d788658db1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventSeatTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 5h6v7H9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 21h2v-4h12v4h2v-6H4zM17 5c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v9h10V5zm-2 7H9V5h6v7zm4-2h3v3h-3zM2 10h3v3H2z" +}, "1")], 'EventSeatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventSharp.js b/packages/material-ui-icons/lib/esm/EventSharp.js new file mode 100644 index 00000000000000..85d01dbfef16df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 13h-5v5h5v-5zM16 2v2H8V2H6v2H3.01L3 22h18V4h-3V2h-2zm3 18H5V9h14v11z" +}), 'EventSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/EventTwoTone.js b/packages/material-ui-icons/lib/esm/EventTwoTone.js new file mode 100644 index 00000000000000..0d188c50e01963 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/EventTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 8h14V6H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z" +}, "1")], 'EventTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExitToApp.js b/packages/material-ui-icons/lib/esm/ExitToApp.js new file mode 100644 index 00000000000000..1aec9e05414c92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExitToApp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'ExitToApp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExitToAppOutlined.js b/packages/material-ui-icons/lib/esm/ExitToAppOutlined.js new file mode 100644 index 00000000000000..b20d9aab539ffe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExitToAppOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'ExitToAppOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExitToAppRounded.js b/packages/material-ui-icons/lib/esm/ExitToAppRounded.js new file mode 100644 index 00000000000000..eda2729a3bcfec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExitToAppRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.79 16.29c.39.39 1.02.39 1.41 0l3.59-3.59c.39-.39.39-1.02 0-1.41L12.2 7.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L12.67 11H4c-.55 0-1 .45-1 1s.45 1 1 1h8.67l-1.88 1.88c-.39.39-.38 1.03 0 1.41zM19 3H5c-1.11 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'ExitToAppRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExitToAppSharp.js b/packages/material-ui-icons/lib/esm/ExitToAppSharp.js new file mode 100644 index 00000000000000..acb7a00c9ca647 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExitToAppSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM21 3H3v6h2V5h14v14H5v-4H3v6h18V3z" +}), 'ExitToAppSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExitToAppTwoTone.js b/packages/material-ui-icons/lib/esm/ExitToAppTwoTone.js new file mode 100644 index 00000000000000..84a189fb061142 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExitToAppTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'ExitToAppTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Expand.js b/packages/material-ui-icons/lib/esm/Expand.js new file mode 100644 index 00000000000000..f32adcf92e5258 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Expand.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 20h16v2H4zM4 2h16v2H4zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3z" +}), 'Expand'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandLess.js b/packages/material-ui-icons/lib/esm/ExpandLess.js new file mode 100644 index 00000000000000..c7f458a64cf2db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandLess.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z" +}), 'ExpandLess'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandLessOutlined.js b/packages/material-ui-icons/lib/esm/ExpandLessOutlined.js new file mode 100644 index 00000000000000..26eb7d53ea078e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandLessOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" +}), 'ExpandLessOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandLessRounded.js b/packages/material-ui-icons/lib/esm/ExpandLessRounded.js new file mode 100644 index 00000000000000..525fe0a0887393 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandLessRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.29 8.71 6.7 13.3c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 10.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 8.71c-.38-.39-1.02-.39-1.41 0z" +}), 'ExpandLessRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandLessSharp.js b/packages/material-ui-icons/lib/esm/ExpandLessSharp.js new file mode 100644 index 00000000000000..fe70441ad4dfda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandLessSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" +}), 'ExpandLessSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandLessTwoTone.js b/packages/material-ui-icons/lib/esm/ExpandLessTwoTone.js new file mode 100644 index 00000000000000..f306bb078c14e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandLessTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z" +}), 'ExpandLessTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandMore.js b/packages/material-ui-icons/lib/esm/ExpandMore.js new file mode 100644 index 00000000000000..6b0dce9dfd8971 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandMore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z" +}), 'ExpandMore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandMoreOutlined.js b/packages/material-ui-icons/lib/esm/ExpandMoreOutlined.js new file mode 100644 index 00000000000000..aff254302497a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandMoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" +}), 'ExpandMoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandMoreRounded.js b/packages/material-ui-icons/lib/esm/ExpandMoreRounded.js new file mode 100644 index 00000000000000..7de1157b08ed5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandMoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.88 9.29 12 13.17 8.12 9.29a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41-.39-.38-1.03-.39-1.42 0z" +}), 'ExpandMoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandMoreSharp.js b/packages/material-ui-icons/lib/esm/ExpandMoreSharp.js new file mode 100644 index 00000000000000..022f4f1ca9864a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandMoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" +}), 'ExpandMoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandMoreTwoTone.js b/packages/material-ui-icons/lib/esm/ExpandMoreTwoTone.js new file mode 100644 index 00000000000000..abe4f53b46bb5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandMoreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" +}), 'ExpandMoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandOutlined.js b/packages/material-ui-icons/lib/esm/ExpandOutlined.js new file mode 100644 index 00000000000000..6337a18fb3c3fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 20h16v2H4zM4 2h16v2H4zm5.41 11.59L8 15l4 4 4-4-1.41-1.41L13 15.17V8.83l1.59 1.58L16 9l-4-4-4 4 1.41 1.41L11 8.83v6.34z" +}), 'ExpandOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandRounded.js b/packages/material-ui-icons/lib/esm/ExpandRounded.js new file mode 100644 index 00000000000000..9fa898b95001fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 20h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zM5 2h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm8 7h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0L8.85 8.15c-.31.31-.09.85.36.85H11v6H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.35-.85H13V9z" +}), 'ExpandRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandSharp.js b/packages/material-ui-icons/lib/esm/ExpandSharp.js new file mode 100644 index 00000000000000..aa5581c71e5ad2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 20h16v2H4v-2zM4 2h16v2H4V2zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3V9z" +}), 'ExpandSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExpandTwoTone.js b/packages/material-ui-icons/lib/esm/ExpandTwoTone.js new file mode 100644 index 00000000000000..a0a79b11626133 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExpandTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 20h16v2H4v-2zM4 2h16v2H4V2zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3V9z" +}), 'ExpandTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Explicit.js b/packages/material-ui-icons/lib/esm/Explicit.js new file mode 100644 index 00000000000000..b314a4a027a971 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Explicit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h4v2h-4v2h4v2H9V7h6v2z" +}), 'Explicit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExplicitOutlined.js b/packages/material-ui-icons/lib/esm/ExplicitOutlined.js new file mode 100644 index 00000000000000..06e11abcfb409f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExplicitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z" +}), 'ExplicitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExplicitRounded.js b/packages/material-ui-icons/lib/esm/ExplicitRounded.js new file mode 100644 index 00000000000000..ece2c009418a46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExplicitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-3v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'ExplicitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExplicitSharp.js b/packages/material-ui-icons/lib/esm/ExplicitSharp.js new file mode 100644 index 00000000000000..f208c6050c5abb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExplicitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-6 6h-4v2h4v2h-4v2h4v2H9V7h6v2z" +}), 'ExplicitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExplicitTwoTone.js b/packages/material-ui-icons/lib/esm/ExplicitTwoTone.js new file mode 100644 index 00000000000000..99efad29804ffc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExplicitTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zM9 7h6v2h-4v2h4v2h-4v2h4v2H9V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z" +}, "1")], 'ExplicitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Explore.js b/packages/material-ui-icons/lib/esm/Explore.js new file mode 100644 index 00000000000000..c42ad00446fba4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Explore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" +}), 'Explore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreOff.js b/packages/material-ui-icons/lib/esm/ExploreOff.js new file mode 100644 index 00000000000000..bce07c080be27d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.19 14.19-1.41-1.41-1.56-1.56L11 11 9.81 9.81 4.93 4.93 2.27 2.27 1 3.54l2.78 2.78c-.11.16-.21.32-.31.48-.04.07-.09.14-.13.21-.09.15-.17.31-.25.47-.05.1-.1.21-.16.32-.06.14-.13.28-.19.43-.1.24-.19.48-.27.73l-.09.3c-.05.2-.1.39-.14.59-.02.11-.04.22-.07.33-.04.2-.07.4-.09.61-.01.1-.03.2-.03.3-.03.29-.05.6-.05.91 0 5.52 4.48 10 10 10 .31 0 .62-.02.92-.05l.3-.03c.2-.02.41-.06.61-.09.11-.02.22-.04.33-.07.2-.04.39-.09.58-.15.1-.03.2-.05.3-.09.25-.08.49-.17.73-.27.15-.06.29-.13.43-.19.11-.05.22-.1.33-.16.16-.08.31-.16.46-.25.07-.04.14-.09.21-.13.16-.1.32-.2.48-.31L20.46 23l1.27-1.27-2.66-2.66-4.88-4.88zM6 18l3-6.46L12.46 15 6 18zm16-6c0 .31-.02.62-.05.92l-.03.3c-.02.2-.06.41-.09.61-.02.11-.04.22-.07.33-.04.2-.09.39-.15.58-.03.1-.05.21-.09.31-.08.25-.17.49-.27.73-.06.15-.13.29-.19.43-.05.11-.1.22-.16.33-.08.16-.16.31-.25.46-.04.07-.09.14-.13.21-.1.16-.2.32-.31.48L15 12.46 18 6l-6.46 3-5.22-5.22c.16-.11.32-.21.48-.31.07-.04.14-.09.21-.13.15-.09.31-.17.46-.25.11-.05.22-.1.33-.16.14-.06.28-.13.43-.19.24-.1.48-.19.73-.27l.31-.09c.19-.05.38-.11.58-.15.11-.02.22-.04.33-.07.2-.04.4-.07.61-.09.1-.01.2-.03.3-.03.29-.02.6-.04.91-.04 5.52 0 10 4.48 10 10z" +}), 'ExploreOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreOffOutlined.js b/packages/material-ui-icons/lib/esm/ExploreOffOutlined.js new file mode 100644 index 00000000000000..97a7aedc881fce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm2.91 8.08L17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01 3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z" +}), 'ExploreOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreOffRounded.js b/packages/material-ui-icons/lib/esm/ExploreOffRounded.js new file mode 100644 index 00000000000000..3490c9066bd3b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 6-2.91 6.26 5.25 5.25C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.81 5.64l.85.85c-1.37 2.07-2 4.68-1.48 7.45.75 3.95 3.92 7.13 7.88 7.88 2.77.52 5.38-.1 7.45-1.48l.85.85c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.22 4.22a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42zm6.1 6.1 3.35 3.35L6 18l2.91-6.26z" +}), 'ExploreOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreOffSharp.js b/packages/material-ui-icons/lib/esm/ExploreOffSharp.js new file mode 100644 index 00000000000000..2a1bdc4cfbf69f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 6-2.91 6.26 5.25 5.25C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm6.81 6.81 3.35 3.35L6 18l2.91-6.26z" +}), 'ExploreOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreOffTwoTone.js b/packages/material-ui-icons/lib/esm/ExploreOffTwoTone.js new file mode 100644 index 00000000000000..998bdda69f9eca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 20c1.48 0 2.86-.41 4.06-1.12l-3.98-3.98-5.58 2.6 2.59-5.58-3.97-3.98C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8zm0-16c-1.48 0-2.86.41-4.06 1.12l3.98 3.98 5.58-2.6-2.59 5.58 3.98 3.98c.7-1.2 1.11-2.58 1.11-4.06 0-4.41-3.59-8-8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.5 6.5-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01 3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06zM12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4z" +}, "1")], 'ExploreOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreOutlined.js b/packages/material-ui-icons/lib/esm/ExploreOutlined.js new file mode 100644 index 00000000000000..d6ada745d435bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5 7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" +}), 'ExploreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreRounded.js b/packages/material-ui-icons/lib/esm/ExploreRounded.js new file mode 100644 index 00000000000000..71a78dd0f05f9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" +}), 'ExploreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreSharp.js b/packages/material-ui-icons/lib/esm/ExploreSharp.js new file mode 100644 index 00000000000000..7c4a3f5c474a80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" +}), 'ExploreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExploreTwoTone.js b/packages/material-ui-icons/lib/esm/ExploreTwoTone.js new file mode 100644 index 00000000000000..62388ba15f054d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExploreTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm2.01 10.01L6.5 17.5l3.49-7.51L17.5 6.5l-3.49 7.51z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5 7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" +}, "1")], 'ExploreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Exposure.js b/packages/material-ui-icons/lib/esm/Exposure.js new file mode 100644 index 00000000000000..71abcba648e099 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Exposure.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z" +}), 'Exposure'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExposureOutlined.js b/packages/material-ui-icons/lib/esm/ExposureOutlined.js new file mode 100644 index 00000000000000..a5c90790f27495 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExposureOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1.41 2L5 17.59V5h12.59zM6.41 19 19 6.41V19H6.41zM6 7h5v1.5H6zm10 5.5h-1.5v2h-2V16h2v2H16v-2h2v-1.5h-2z" +}), 'ExposureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExposureRounded.js b/packages/material-ui-icons/lib/esm/ExposureRounded.js new file mode 100644 index 00000000000000..c7bdb42358ffc5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExposureRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.75 7h3.5c.41 0 .75.34.75.75s-.34.75-.75.75h-3.5c-.41 0-.75-.34-.75-.75S6.34 7 6.75 7zM18 19H5L19 5v13c0 .55-.45 1-1 1zm-3.5-3v1.25c0 .41.34.75.75.75s.75-.34.75-.75V16h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H16v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.25h-1.25c-.41 0-.75.34-.75.75s.34.75.75.75h1.25z" +}), 'ExposureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExposureSharp.js b/packages/material-ui-icons/lib/esm/ExposureSharp.js new file mode 100644 index 00000000000000..b9fbfb7170397b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExposureSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16h2z" +}), 'ExposureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExposureTwoTone.js b/packages/material-ui-icons/lib/esm/ExposureTwoTone.js new file mode 100644 index 00000000000000..9cc165083a6e3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExposureTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 19V5L5 19h14zm-4.5-4.5v-2H16v2h2V16h-2v2h-1.5v-2h-2v-1.5h2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z" +}, "1")], 'ExposureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Extension.js b/packages/material-ui-icons/lib/esm/Extension.js new file mode 100644 index 00000000000000..fbe40a6626e62a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Extension.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z" +}), 'Extension'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionOff.js b/packages/material-ui-icons/lib/esm/ExtensionOff.js new file mode 100644 index 00000000000000..0f4f4530f4b5a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.78 22.61-1.63-1.63c-.05 0-.1.02-.15.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H5c-1.1 0-2-.9-2-2v-3.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm.22-5.44V15c1.38 0 2.5-1.12 2.5-2.5S21.38 10 20 10V6c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9 2.62 9 4H6.83L20 17.17z" +}), 'ExtensionOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionOffOutlined.js b/packages/material-ui-icons/lib/esm/ExtensionOffOutlined.js new file mode 100644 index 00000000000000..8505b2ebd40bcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1.39 4.22 1.62 1.62c0 .05-.01.1-.01.16v3.8c2.7 0 3 2.16 3 2.7s-.29 2.7-3 2.7V19c0 1.1.9 2 2 2h3.8c0-2.71 2.16-3 2.7-3s2.7.29 2.7 3H18c.06 0 .11 0 .16-.01l1.61 1.61 1.41-1.41L2.81 2.81 1.39 4.22zM11.5 16c-1.5 0-3.57.83-4.37 3H5v-2.13c2.17-.8 3-2.87 3-4.37 0-.69-.18-1.5-.58-2.25l6.33 6.33c-.75-.4-1.56-.58-2.25-.58zM8.83 6l-2-2H9c0-1.38 1.12-2.5 2.5-2.5S14 2.62 14 4h4c1.1 0 2 .9 2 2v4c1.38 0 2.5 1.12 2.5 2.5S21.38 15 20 15v2.17l-2-2V13h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-2V6h-6V4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H8.83z" +}), 'ExtensionOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionOffRounded.js b/packages/material-ui-icons/lib/esm/ExtensionOffRounded.js new file mode 100644 index 00000000000000..b29f3c6d96c371 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 21.9c-.39.39-1.02.39-1.41 0l-.92-.92c-.06 0-.11.02-.16.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H5c-1.1 0-2-.9-2-2v-3.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14l-.93-.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM20 17.17V15c1.38 0 2.5-1.12 2.5-2.5S21.38 10 20 10V6c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9 2.62 9 4H6.83L20 17.17z" +}), 'ExtensionOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionOffSharp.js b/packages/material-ui-icons/lib/esm/ExtensionOffSharp.js new file mode 100644 index 00000000000000..42917da08a12e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.78 22.61-1.63-1.63c-.05 0-.1.02-.15.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H3v-5.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm.22-5.44V15c1.38 0 2.5-1.12 2.5-2.5S21.38 10 20 10V4h-6c0-1.38-1.12-2.5-2.5-2.5S9 2.62 9 4H6.83L20 17.17z" +}), 'ExtensionOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionOffTwoTone.js b/packages/material-ui-icons/lib/esm/ExtensionOffTwoTone.js new file mode 100644 index 00000000000000..d440316607c1e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13v2.17L8.83 6H11V4c0-.28.22-.5.5-.5s.5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2zm-10-.5c0 1.5-.83 3.57-3 4.37V19h2.13c.8-2.17 2.87-3 4.37-3 .69 0 1.5.18 2.25.58l-6.33-6.33c.4.75.58 1.56.58 2.25z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m1.39 4.22 1.62 1.62c0 .05-.01.1-.01.16v3.8c2.7 0 3 2.16 3 2.7s-.29 2.7-3 2.7V19c0 1.1.9 2 2 2h3.8c0-2.71 2.16-3 2.7-3s2.7.29 2.7 3H18c.06 0 .11 0 .16-.01l1.61 1.61 1.41-1.41L2.81 2.81 1.39 4.22zM11.5 16c-1.5 0-3.57.83-4.37 3H5v-2.13c2.17-.8 3-2.87 3-4.37 0-.69-.18-1.5-.58-2.25l6.33 6.33c-.75-.4-1.56-.58-2.25-.58zM8.83 6l-2-2H9c0-1.38 1.12-2.5 2.5-2.5S14 2.62 14 4h4c1.1 0 2 .9 2 2v4c1.38 0 2.5 1.12 2.5 2.5S21.38 15 20 15v2.17l-2-2V13h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-2V6h-6V4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H8.83z" +}, "1")], 'ExtensionOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionOutlined.js b/packages/material-ui-icons/lib/esm/ExtensionOutlined.js new file mode 100644 index 00000000000000..f17cce5d230a7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 4.5c.28 0 .5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3s-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5m0-2C9.12 2.5 8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5z" +}), 'ExtensionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionRounded.js b/packages/material-ui-icons/lib/esm/ExtensionRounded.js new file mode 100644 index 00000000000000..2d468ff108802a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z" +}), 'ExtensionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionSharp.js b/packages/material-ui-icons/lib/esm/ExtensionSharp.js new file mode 100644 index 00000000000000..0147cda9031086 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.36 11H19V5h-6V3.64c0-1.31-.94-2.5-2.24-2.63C9.26.86 8 2.03 8 3.5V5H2.01v5.8H3.4c1.31 0 2.5.88 2.75 2.16.33 1.72-.98 3.24-2.65 3.24H2V22h5.8v-1.4c0-1.31.88-2.5 2.16-2.75 1.72-.33 3.24.98 3.24 2.65V22H19v-6h1.5c1.47 0 2.64-1.26 2.49-2.76-.13-1.3-1.33-2.24-2.63-2.24z" +}), 'ExtensionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ExtensionTwoTone.js b/packages/material-ui-icons/lib/esm/ExtensionTwoTone.js new file mode 100644 index 00000000000000..cb83b9e234b775 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ExtensionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 13h-2V7h-6V5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H4l.01 2.12C5.76 9.8 7 11.51 7 13.5c0 1.99-1.25 3.7-3 4.38V20h2.12c.68-1.75 2.39-3 4.38-3 1.99 0 3.7 1.25 4.38 3H17v-6h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11zm0 3h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3-1.99 0-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5s.5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5z" +}, "1")], 'ExtensionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Face.js b/packages/material-ui-icons/lib/esm/Face.js new file mode 100644 index 00000000000000..23222ba6bab45d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Face.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z" +}), 'Face'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceOutlined.js b/packages/material-ui-icons/lib/esm/FaceOutlined.js new file mode 100644 index 00000000000000..7a1ce0279bd9cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z" +}), 'FaceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingNatural.js b/packages/material-ui-icons/lib/esm/FaceRetouchingNatural.js new file mode 100644 index 00000000000000..d162666c121140 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingNatural.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.77 8.58-.92 2.01c.09.46.15.93.15 1.41 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55C11.58 8.56 14.37 10 17.5 10c.45 0 .89-.04 1.33-.1l-.6-1.32-.88-1.93-1.93-.88-2.79-1.27 2.79-1.27.71-.32C14.87 2.33 13.47 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.47-.33-2.87-.9-4.13l-.33.71z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1.25" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20.6 5.6 19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5z" +}, "3")], 'FaceRetouchingNatural'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalOutlined.js b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalOutlined.js new file mode 100644 index 00000000000000..b1714316aa47e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.89 10.75c.07.41.11.82.11 1.25 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55 3.38 4.14 7.97 3.73 8.99 3.61l-.89-1.93c-.13.01-4.62.38-7.18-3.86 1.01-.16 1.71-.15 2.59-.01 2.52-1.15 1.93-.89 2.76-1.26C14.78 2.3 13.43 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.43-.3-2.78-.84-4.01l-1.27 2.76zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1.25" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m23 4.5-2.4-1.1L19.5 1l-1.1 2.4L16 4.5l2.4 1.1L19.5 8l1.1-2.4z" +}, "3")], 'FaceRetouchingNaturalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalRounded.js b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalRounded.js new file mode 100644 index 00000000000000..8d7e3e56391005 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22.01 4.05 20.6 3.4l-.65-1.41c-.18-.39-.73-.39-.91 0L18.4 3.4l-1.41.65c-.39.18-.39.73 0 .91l1.41.64.65 1.41c.18.39.73.39.91 0l.64-1.41 1.41-.65c.39-.17.39-.73 0-.9z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1.25" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19.5 8.8c-.78 0-1.49-.46-1.82-1.17l-.41-.9-.9-.41c-.71-.33-1.17-1.04-1.17-1.82 0-.66.34-1.26.87-1.63C14.83 2.32 13.45 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.45-.32-2.83-.87-4.07-.37.53-.97.87-1.63.87zM12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55C11.58 8.56 14.37 10 17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z" +}, "3")], 'FaceRetouchingNaturalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalSharp.js b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalSharp.js new file mode 100644 index 00000000000000..fbff9f0b7ef84c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalSharp.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.85 10.59C20.79 15.4 17.01 20 12 20c-4.41 0-8-3.59-8-8 0-.39 3.87-1.12 5.74-5.69 3.42 4.19 8.07 3.73 9.09 3.59l-1.48-3.25-4.72-2.15 3.5-1.59C9.51-.14 2 4.77 2 12c0 5.52 4.48 10 10 10 7.21 0 12.12-7.45 9.1-14.13l-1.25 2.72z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1.25" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20.6 5.6 19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5l-2.4 1.1z" +}, "3")], 'FaceRetouchingNaturalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalTwoTone.js b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalTwoTone.js new file mode 100644 index 00000000000000..ccae4fd4e77bb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingNaturalTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.66 4.12c2.55 4.23 7.03 3.87 7.18 3.86l-.57-1.25L12.4 4.5l.85-.39C12.84 4.04 12.43 4 12 4c-.46 0-.91.05-1.34.12zm-2.58.91C6.37 6 5.05 7.58 4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.89 10.75c.07.41.11.82.11 1.25 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55 3.38 4.14 7.97 3.73 8.99 3.61l-.89-1.93c-.13.01-4.62.38-7.18-3.86 1.01-.16 1.71-.15 2.59-.01l2.12-.97.64-.29C14.78 2.3 13.43 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.43-.3-2.78-.84-4.01l-1.27 2.76zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1.25" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M20.6 3.4 19.5 1l-1.1 2.4L16 4.5l2.4 1.1L19.5 8l1.1-2.4L23 4.5z" +}, "4")], 'FaceRetouchingNaturalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingOff.js b/packages/material-ui-icons/lib/esm/FaceRetouchingOff.js new file mode 100644 index 00000000000000..e3840d505b249e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingOff.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM1.89 3.72l2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02z" +}, "1")], 'FaceRetouchingOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingOffOutlined.js b/packages/material-ui-icons/lib/esm/FaceRetouchingOffOutlined.js new file mode 100644 index 00000000000000..2aca22ec65c3e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingOffOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zm-6.84-5.88c.43-.07.88-.12 1.34-.12 2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88zm-8.77-.4 2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02zM6.23 8.06c-.53.55-1.14 1.03-1.81 1.41.26-.77.63-1.48 1.09-2.13l.72.72z" +}, "1")], 'FaceRetouchingOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingOffRounded.js b/packages/material-ui-icons/lib/esm/FaceRetouchingOffRounded.js new file mode 100644 index 00000000000000..50a4ffea43bcbf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingOffRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM2.6 4.43l1.48 1.48C2.51 7.95 1.7 10.6 2.1 13.46c.62 4.33 4.11 7.82 8.44 8.44 2.85.41 5.51-.41 7.55-1.98l1.48 1.48c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.01 3.01a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.42zm14.06 14.06C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02z" +}, "1")], 'FaceRetouchingOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingOffSharp.js b/packages/material-ui-icons/lib/esm/FaceRetouchingOffSharp.js new file mode 100644 index 00000000000000..f7746f4f5edead --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingOffSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM1.89 3.72l2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02z" +}, "1")], 'FaceRetouchingOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRetouchingOffTwoTone.js b/packages/material-ui-icons/lib/esm/FaceRetouchingOffTwoTone.js new file mode 100644 index 00000000000000..08f3701bd8e347 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRetouchingOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-.46 0-.91.05-1.34.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4zM4.42 9.47c.67-.38 1.28-.86 1.81-1.41l-.72-.72c-.46.65-.83 1.36-1.09 2.13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 14.25c.69 0 1.25-.56 1.25-1.25S9.69 11.75 9 11.75s-1.25.56-1.25 1.25.56 1.25 1.25 1.25zM17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49C21.53 15.44 22 13.78 22 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zm-6.84-5.88c.43-.07.88-.12 1.34-.12 2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88zm-8.77-.4 2.19 2.19C2.78 7.6 2 9.71 2 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77C15.35 19.44 13.74 20 12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14 1.39-.52 2.63-1.35 3.64-2.39l9.02 9.02zM5.51 7.34l.72.72c-.53.55-1.14 1.03-1.81 1.41.26-.77.63-1.48 1.09-2.13z" +}, "1")], 'FaceRetouchingOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceRounded.js b/packages/material-ui-icons/lib/esm/FaceRounded.js new file mode 100644 index 00000000000000..29dd064f536c6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z" +}), 'FaceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceSharp.js b/packages/material-ui-icons/lib/esm/FaceSharp.js new file mode 100644 index 00000000000000..4102f9df0987bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z" +}), 'FaceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FaceTwoTone.js b/packages/material-ui-icons/lib/esm/FaceTwoTone.js new file mode 100644 index 00000000000000..39fb535963fb0f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FaceTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12C12.06 6.44 14.6 8 17.5 8zM8.08 5.03C6.37 6 5.05 7.58 4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 2c2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88.43-.07.88-.12 1.34-.12zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03zM12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1.01-.15 2.6-.98 4.68-2.99 5.74-5.55 1.83 2.26 4.62 3.7 7.75 3.7.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1.25" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1.25" +}, "3")], 'FaceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Facebook.js b/packages/material-ui-icons/lib/esm/Facebook.js new file mode 100644 index 00000000000000..22f2c9c4afe7b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Facebook.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m13 2h-2.5A3.5 3.5 0 0 0 12 8.5V11h-2v3h2v7h3v-7h3v-3h-3V9a1 1 0 0 1 1-1h2V5z" +}), 'Facebook'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FacebookOutlined.js b/packages/material-ui-icons/lib/esm/FacebookOutlined.js new file mode 100644 index 00000000000000..0f2171276603db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FacebookOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" +}), 'FacebookOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FacebookRounded.js b/packages/material-ui-icons/lib/esm/FacebookRounded.js new file mode 100644 index 00000000000000..3fa05a8dfad098 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FacebookRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" +}), 'FacebookRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FacebookSharp.js b/packages/material-ui-icons/lib/esm/FacebookSharp.js new file mode 100644 index 00000000000000..a6fc7f13c52dee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FacebookSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" +}), 'FacebookSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FacebookTwoTone.js b/packages/material-ui-icons/lib/esm/FacebookTwoTone.js new file mode 100644 index 00000000000000..9e07806bd015d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FacebookTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" +}), 'FacebookTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FactCheck.js b/packages/material-ui-icons/lib/esm/FactCheck.js new file mode 100644 index 00000000000000..8341ef1907ef2b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FactCheck.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM10 17H5v-2h5v2zm0-4H5v-2h5v2zm0-4H5V7h5v2zm4.82 6L12 12.16l1.41-1.41 1.41 1.42L17.99 9l1.42 1.42L14.82 15z" +}), 'FactCheck'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FactCheckOutlined.js b/packages/material-ui-icons/lib/esm/FactCheckOutlined.js new file mode 100644 index 00000000000000..a24cef39cd5b1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FactCheckOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs("g", { + fillRule: "evenodd", + children: [/*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H4V5h16v14z" + }), /*#__PURE__*/_jsx("path", { + d: "M19.41 10.42 17.99 9l-3.17 3.17-1.41-1.42L12 12.16 14.82 15zM5 7h5v2H5zm0 4h5v2H5zm0 4h5v2H5z" + })] +}), 'FactCheckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FactCheckRounded.js b/packages/material-ui-icons/lib/esm/FactCheckRounded.js new file mode 100644 index 00000000000000..51d3e7c04a524a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FactCheckRounded.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H6c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H6c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H6c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm9.7 2.12-3.17 3.17c-.39.39-1.03.39-1.42 0l-1.41-1.42a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.47-2.47c.39-.39 1.02-.39 1.41 0l.01.01c.38.39.38 1.03-.01 1.41z" +}), 'FactCheckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FactCheckSharp.js b/packages/material-ui-icons/lib/esm/FactCheckSharp.js new file mode 100644 index 00000000000000..36817f78342a75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FactCheckSharp.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M2 3v18h20V3H2zm8 14H5v-2h5v2zm0-4H5v-2h5v2zm0-4H5V7h5v2zm4.82 6L12 12.16l1.41-1.41 1.41 1.42L17.99 9l1.42 1.42L14.82 15z" +}), 'FactCheckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FactCheckTwoTone.js b/packages/material-ui-icons/lib/esm/FactCheckTwoTone.js new file mode 100644 index 00000000000000..f899b288048cb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FactCheckTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 19h16V5H4v14zm9.41-8.25 1.41 1.42L17.99 9l1.42 1.42L14.82 15 12 12.16l1.41-1.41zM5 7h5v2H5V7zm0 4h5v2H5v-2zm0 4h5v2H5v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H4V5h16v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19.41 10.42 17.99 9l-3.17 3.17-1.41-1.42L12 12.16 14.82 15zM5 7h5v2H5zm0 4h5v2H5zm0 4h5v2H5z" +}, "2")], 'FactCheckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FamilyRestroom.js b/packages/material-ui-icons/lib/esm/FamilyRestroom.js new file mode 100644 index 00000000000000..38a7fbc2fbe94f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FamilyRestroom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7h4zm6.5 0v-4h1v-4c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5v4h1v4h3z" +}), 'FamilyRestroom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FamilyRestroomOutlined.js b/packages/material-ui-icons/lib/esm/FamilyRestroomOutlined.js new file mode 100644 index 00000000000000..3102152f58539c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FamilyRestroomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7h4zm6.5 0v-4h1v-4c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5v4h1v4h3z" +}), 'FamilyRestroomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FamilyRestroomRounded.js b/packages/material-ui-icons/lib/esm/FamilyRestroomRounded.js new file mode 100644 index 00000000000000..72840d60ac97a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FamilyRestroomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 17v-5h1.11c.68 0 1.16-.67.95-1.32l-2.1-6.31C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h2c.55 0 1-.45 1-1zm-7.5-9.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 15v-6H8c.55 0 1-.45 1-1V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h.5v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1zm2.5-7v3c0 .55.45 1 1 1v3c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-3c.55 0 1-.45 1-1v-3c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5" +}), 'FamilyRestroomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FamilyRestroomSharp.js b/packages/material-ui-icons/lib/esm/FamilyRestroomSharp.js new file mode 100644 index 00000000000000..daed697ab9013a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FamilyRestroomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-3-9h-3l-1.17 3.5H17V22h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V7H2v8h1.5v7h4zm6.5 0v-4h1v-5.5h-5V18h1v4h3z" +}), 'FamilyRestroomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FamilyRestroomTwoTone.js b/packages/material-ui-icons/lib/esm/FamilyRestroomTwoTone.js new file mode 100644 index 00000000000000..4fff416f3966d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FamilyRestroomTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63C19.68 7.55 18.92 7 18.06 7h-.12c-.86 0-1.63.55-1.9 1.37l-.86 2.58c1.08.6 1.82 1.73 1.82 3.05v8h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6h1.5v7h4zm6.5 0v-4h1v-4c0-.82-.68-1.5-1.5-1.5h-2c-.82 0-1.5.68-1.5 1.5v4h1v4h3z" +}), 'FamilyRestroomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastForward.js b/packages/material-ui-icons/lib/esm/FastForward.js new file mode 100644 index 00000000000000..9cedf4d4403163 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastForward.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4 18 8.5-6L4 6v12zm9-12v12l8.5-6L13 6z" +}), 'FastForward'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastForwardOutlined.js b/packages/material-ui-icons/lib/esm/FastForwardOutlined.js new file mode 100644 index 00000000000000..d809bc18137c32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastForwardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 9.86 18.03 12 15 14.14V9.86m-9 0L9.03 12 6 14.14V9.86M13 6v12l8.5-6L13 6zM4 6v12l8.5-6L4 6z" +}), 'FastForwardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastForwardRounded.js b/packages/material-ui-icons/lib/esm/FastForwardRounded.js new file mode 100644 index 00000000000000..8987f21ff40f65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastForwardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5.58 16.89 5.77-4.07c.56-.4.56-1.24 0-1.63L5.58 7.11C4.91 6.65 4 7.12 4 7.93v8.14c0 .81.91 1.28 1.58.82zM13 7.93v8.14c0 .81.91 1.28 1.58.82l5.77-4.07c.56-.4.56-1.24 0-1.63l-5.77-4.07c-.67-.47-1.58 0-1.58.81z" +}), 'FastForwardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastForwardSharp.js b/packages/material-ui-icons/lib/esm/FastForwardSharp.js new file mode 100644 index 00000000000000..b291de392a2bba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastForwardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4 18 8.5-6L4 6v12zm9-12v12l8.5-6L13 6z" +}), 'FastForwardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastForwardTwoTone.js b/packages/material-ui-icons/lib/esm/FastForwardTwoTone.js new file mode 100644 index 00000000000000..30084df3307bff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastForwardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 9.86v4.28L18.03 12zm-9 0v4.28L9.03 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m4 18 8.5-6L4 6v12zm2-8.14L9.03 12 6 14.14V9.86zM21.5 12 13 6v12l8.5-6zM15 9.86 18.03 12 15 14.14V9.86z" +}, "1")], 'FastForwardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastRewind.js b/packages/material-ui-icons/lib/esm/FastRewind.js new file mode 100644 index 00000000000000..c08e9389f62343 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastRewind.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18V6l-8.5 6 8.5 6zm.5-6 8.5 6V6l-8.5 6z" +}), 'FastRewind'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastRewindOutlined.js b/packages/material-ui-icons/lib/esm/FastRewindOutlined.js new file mode 100644 index 00000000000000..801c957156b165 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastRewindOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0-8.5 6 8.5 6V6z" +}), 'FastRewindOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastRewindRounded.js b/packages/material-ui-icons/lib/esm/FastRewindRounded.js new file mode 100644 index 00000000000000..3d8bfca62c4f1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastRewindRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 16.07V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.56.4-.56 1.24 0 1.63l5.77 4.07c.67.47 1.58 0 1.58-.81zm1.66-3.25 5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.57.4-.57 1.24 0 1.64z" +}), 'FastRewindRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastRewindSharp.js b/packages/material-ui-icons/lib/esm/FastRewindSharp.js new file mode 100644 index 00000000000000..284557d9836664 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastRewindSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18V6l-8.5 6 8.5 6zm.5-6 8.5 6V6l-8.5 6z" +}), 'FastRewindSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastRewindTwoTone.js b/packages/material-ui-icons/lib/esm/FastRewindTwoTone.js new file mode 100644 index 00000000000000..0d3454863d7a42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastRewindTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 14.14V9.86L5.97 12zm9 0V9.86L14.97 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 6-8.5 6 8.5 6V6zm-2 8.14L5.97 12 9 9.86v4.28zM20 6l-8.5 6 8.5 6V6zm-2 8.14L14.97 12 18 9.86v4.28z" +}, "1")], 'FastRewindTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Fastfood.js b/packages/material-ui-icons/lib/esm/Fastfood.js new file mode 100644 index 00000000000000..a8e534d5c76fe6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Fastfood.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.06 22.99h1.66c.84 0 1.53-.64 1.63-1.46L23 5.05h-5V1h-1.97v4.05h-4.97l.3 2.34c1.71.47 3.31 1.32 4.27 2.26 1.44 1.42 2.43 2.89 2.43 5.29v8.05zM1 21.99V21h15.03v.99c0 .55-.45 1-1.01 1H2.01c-.56 0-1.01-.45-1.01-1zm15.03-7c0-8-15.03-8-15.03 0h15.03zM1.02 17h15v2h-15z" +}), 'Fastfood'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastfoodOutlined.js b/packages/material-ui-icons/lib/esm/FastfoodOutlined.js new file mode 100644 index 00000000000000..1084c20d655ef8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastfoodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z" +}), 'FastfoodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastfoodRounded.js b/packages/material-ui-icons/lib/esm/FastfoodRounded.js new file mode 100644 index 00000000000000..f563f5c2873082 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastfoodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.9 5H18V2c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.9c-.59 0-1.05.51-1 1.1l.12 1.21C14.9 8.16 18 10.77 18 15l.02 8h1.7c.84 0 1.53-.65 1.63-1.47L22.89 6.1c.06-.59-.4-1.1-.99-1.1zM15 21H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM2.1 15h12.8c.62 0 1.11-.56.99-1.16-.65-3.23-4.02-4.85-7.39-4.85s-6.73 1.62-7.39 4.85c-.12.6.38 1.16.99 1.16zM15 17H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'FastfoodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastfoodSharp.js b/packages/material-ui-icons/lib/esm/FastfoodSharp.js new file mode 100644 index 00000000000000..6ebf1e00b937c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastfoodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 5V1h-2v4h-5l.23 2.31C14.9 8.16 18 10.77 18 15l.02 8h3.18L23 5h-5zM1 21h15v2H1zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM1 17h15v2H1z" +}), 'FastfoodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FastfoodTwoTone.js b/packages/material-ui-icons/lib/esm/FastfoodTwoTone.js new file mode 100644 index 00000000000000..86c7e021c2a4ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FastfoodTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 10.99c-1.42 0-3.77.46-4.88 2.01h9.77c-1.12-1.55-3.47-2.01-4.89-2.01z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z" +}, "2")], 'FastfoodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Favorite.js b/packages/material-ui-icons/lib/esm/Favorite.js new file mode 100644 index 00000000000000..0802b058930e34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Favorite.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" +}), 'Favorite'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteBorder.js b/packages/material-ui-icons/lib/esm/FavoriteBorder.js new file mode 100644 index 00000000000000..9b9f225afcdd51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteBorder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" +}), 'FavoriteBorder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteBorderOutlined.js b/packages/material-ui-icons/lib/esm/FavoriteBorderOutlined.js new file mode 100644 index 00000000000000..6581daaa7422cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteBorderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" +}), 'FavoriteBorderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteBorderRounded.js b/packages/material-ui-icons/lib/esm/FavoriteBorderRounded.js new file mode 100644 index 00000000000000..ebeeb692973291 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteBorderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.66 3.99c-2.64-1.8-5.9-.96-7.66 1.1-1.76-2.06-5.02-2.91-7.66-1.1-1.4.96-2.28 2.58-2.34 4.29-.14 3.88 3.3 6.99 8.55 11.76l.1.09c.76.69 1.93.69 2.69-.01l.11-.1c5.25-4.76 8.68-7.87 8.55-11.75-.06-1.7-.94-3.32-2.34-4.28zM12.1 18.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" +}), 'FavoriteBorderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteBorderSharp.js b/packages/material-ui-icons/lib/esm/FavoriteBorderSharp.js new file mode 100644 index 00000000000000..10191dc8196ffc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteBorderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" +}), 'FavoriteBorderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteBorderTwoTone.js b/packages/material-ui-icons/lib/esm/FavoriteBorderTwoTone.js new file mode 100644 index 00000000000000..e0336eea90ab67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteBorderTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" +}), 'FavoriteBorderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteOutlined.js b/packages/material-ui-icons/lib/esm/FavoriteOutlined.js new file mode 100644 index 00000000000000..136ea990899cf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" +}), 'FavoriteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteRounded.js b/packages/material-ui-icons/lib/esm/FavoriteRounded.js new file mode 100644 index 00000000000000..c3a88fc5e38581 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.35 20.13c-.76.69-1.93.69-2.69-.01l-.11-.1C5.3 15.27 1.87 12.16 2 8.28c.06-1.7.93-3.33 2.34-4.29 2.64-1.8 5.9-.96 7.66 1.1 1.76-2.06 5.02-2.91 7.66-1.1 1.41.96 2.28 2.59 2.34 4.29.14 3.88-3.3 6.99-8.55 11.76l-.1.09z" +}), 'FavoriteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteSharp.js b/packages/material-ui-icons/lib/esm/FavoriteSharp.js new file mode 100644 index 00000000000000..142bb4486ef8a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 21.35-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" +}), 'FavoriteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FavoriteTwoTone.js b/packages/material-ui-icons/lib/esm/FavoriteTwoTone.js new file mode 100644 index 00000000000000..43162bf50391f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FavoriteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z" +}, "1")], 'FavoriteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedPlayList.js b/packages/material-ui-icons/lib/esm/FeaturedPlayList.js new file mode 100644 index 00000000000000..fb2ae992fa3a68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedPlayList.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8H3V9h9v2zm0-4H3V5h9v2z" +}), 'FeaturedPlayList'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedPlayListOutlined.js b/packages/material-ui-icons/lib/esm/FeaturedPlayListOutlined.js new file mode 100644 index 00000000000000..cc8083e93c2505 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedPlayListOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z" +}), 'FeaturedPlayListOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedPlayListRounded.js b/packages/material-ui-icons/lib/esm/FeaturedPlayListRounded.js new file mode 100644 index 00000000000000..78f99c05d67313 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedPlayListRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-10 8H4c-.55 0-1-.45-1-1s.45-1 1-1h7c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H4c-.55 0-1-.45-1-1s.45-1 1-1h7c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'FeaturedPlayListRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedPlayListSharp.js b/packages/material-ui-icons/lib/esm/FeaturedPlayListSharp.js new file mode 100644 index 00000000000000..cc089d3ed493fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedPlayListSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-11 8H3V9h9v2zm0-4H3V5h9v2z" +}), 'FeaturedPlayListSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedPlayListTwoTone.js b/packages/material-ui-icons/lib/esm/FeaturedPlayListTwoTone.js new file mode 100644 index 00000000000000..fca96c77193a80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedPlayListTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V5H3v14zM5 7h9v2H5V7zm0 3h9v2H5v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z" +}, "1")], 'FeaturedPlayListTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedVideo.js b/packages/material-ui-icons/lib/esm/FeaturedVideo.js new file mode 100644 index 00000000000000..1bf8b80f91587b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedVideo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9H3V5h9v7z" +}), 'FeaturedVideo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedVideoOutlined.js b/packages/material-ui-icons/lib/esm/FeaturedVideoOutlined.js new file mode 100644 index 00000000000000..ba88d20231b0d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedVideoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z" +}), 'FeaturedVideoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedVideoRounded.js b/packages/material-ui-icons/lib/esm/FeaturedVideoRounded.js new file mode 100644 index 00000000000000..f2b90cd1180697 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedVideoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-10 9H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1z" +}), 'FeaturedVideoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedVideoSharp.js b/packages/material-ui-icons/lib/esm/FeaturedVideoSharp.js new file mode 100644 index 00000000000000..e3c15066620e41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedVideoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-11 9H3V5h9v7z" +}), 'FeaturedVideoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeaturedVideoTwoTone.js b/packages/material-ui-icons/lib/esm/FeaturedVideoTwoTone.js new file mode 100644 index 00000000000000..a792a59be31ba4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeaturedVideoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V5H3v14zM4 6h9v7H4V6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z" +}, "1")], 'FeaturedVideoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Feed.js b/packages/material-ui-icons/lib/esm/Feed.js new file mode 100644 index 00000000000000..76a9af0d55fda3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Feed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2zm-2-4V5l4 4h-4z" +}), 'Feed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedOutlined.js b/packages/material-ui-icons/lib/esm/FeedOutlined.js new file mode 100644 index 00000000000000..64fdeaa5a45f6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zm3 16H5V5h10v4h4v10zM7 17h10v-2H7v2zm5-10H7v2h5V7zm-5 6h10v-2H7v2z" +}), 'FeedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedRounded.js b/packages/material-ui-icons/lib/esm/FeedRounded.js new file mode 100644 index 00000000000000..803e024fd6dcc5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zM8 7h3c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm8 10H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-1-5V5l4 4h-3c-.55 0-1-.45-1-1z" +}), 'FeedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedSharp.js b/packages/material-ui-icons/lib/esm/FeedSharp.js new file mode 100644 index 00000000000000..572be67fe824d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3H3v18h18V8l-5-5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2zm-2-4V5l4 4h-4z" +}), 'FeedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedTwoTone.js b/packages/material-ui-icons/lib/esm/FeedTwoTone.js new file mode 100644 index 00000000000000..c90cfdf0a6afb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 5H5v14h14V9h-4V5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-6v2H7v-2h10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 13h10v-2H7v2zm0 4h10v-2H7v2zm9-14H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8l-5-5zm3 16H5V5h10v4h4v10zM12 7H7v2h5V7z" +}, "1")], 'FeedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Feedback.js b/packages/material-ui-icons/lib/esm/Feedback.js new file mode 100644 index 00000000000000..77f4304e1f41e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Feedback.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z" +}), 'Feedback'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedbackOutlined.js b/packages/material-ui-icons/lib/esm/FeedbackOutlined.js new file mode 100644 index 00000000000000..209fef9b245886 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedbackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" +}), 'FeedbackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedbackRounded.js b/packages/material-ui-icons/lib/esm/FeedbackRounded.js new file mode 100644 index 00000000000000..6988fbb5f1712a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedbackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4.01c-1.1 0-2 .9-2 2v18L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v2z" +}), 'FeedbackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedbackSharp.js b/packages/material-ui-icons/lib/esm/FeedbackSharp.js new file mode 100644 index 00000000000000..bedb9704614bbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedbackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2.01L2 22l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z" +}), 'FeedbackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FeedbackTwoTone.js b/packages/material-ui-icons/lib/esm/FeedbackTwoTone.js new file mode 100644 index 00000000000000..0ae74a28770bc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FeedbackTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17 5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" +}, "1")], 'FeedbackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Female.js b/packages/material-ui-icons/lib/esm/Female.js new file mode 100644 index 00000000000000..e2d59935fd7f0f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Female.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" +}), 'Female'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FemaleOutlined.js b/packages/material-ui-icons/lib/esm/FemaleOutlined.js new file mode 100644 index 00000000000000..833ffb0996bc51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FemaleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" +}), 'FemaleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FemaleRounded.js b/packages/material-ui-icons/lib/esm/FemaleRounded.js new file mode 100644 index 00000000000000..d84c84bb59c999 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FemaleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm1 8.91c2.56-.47 4.5-2.71 4.5-5.41C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.94 4.5 5.41V17h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2.09z" +}), 'FemaleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FemaleSharp.js b/packages/material-ui-icons/lib/esm/FemaleSharp.js new file mode 100644 index 00000000000000..d09095707b1132 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FemaleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" +}), 'FemaleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FemaleTwoTone.js b/packages/material-ui-icons/lib/esm/FemaleTwoTone.js new file mode 100644 index 00000000000000..d81882f39e83f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FemaleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" +}), 'FemaleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Fence.js b/packages/material-ui-icons/lib/esm/Fence.js new file mode 100644 index 00000000000000..05eb4632eaf965 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Fence.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'Fence'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FenceOutlined.js b/packages/material-ui-icons/lib/esm/FenceOutlined.js new file mode 100644 index 00000000000000..5052a8b418e49c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FenceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'FenceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FenceRounded.js b/packages/material-ui-icons/lib/esm/FenceRounded.js new file mode 100644 index 00000000000000..d8edbb50a0c6b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FenceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11c0-.55-.45-1-1-1h-1V7l-2.29-2.29a.9959.9959 0 0 0-1.41 0L14 6l-1.29-1.29a.9959.9959 0 0 0-1.41 0L10 6 8.71 4.71a.9959.9959 0 0 0-1.41 0L5 7v3H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v3c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1zm-5-4.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'FenceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FenceSharp.js b/packages/material-ui-icons/lib/esm/FenceSharp.js new file mode 100644 index 00000000000000..7755ecbd168acf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FenceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'FenceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FenceTwoTone.js b/packages/material-ui-icons/lib/esm/FenceTwoTone.js new file mode 100644 index 00000000000000..cbf3cd22401f34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FenceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16 6.83 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17 1 1V10h-2V7.83l.41-.41.59-.59zm-4 0 .59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" +}, "1")], 'FenceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Festival.js b/packages/material-ui-icons/lib/esm/Festival.js new file mode 100644 index 00000000000000..54cb9413344069 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Festival.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 5.7V4h3l-1-1.49L16 1h-5v4.7L2 12v10h7v-5l3.03-2L15 17v5h7V12z" +}), 'Festival'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FestivalOutlined.js b/packages/material-ui-icons/lib/esm/FestivalOutlined.js new file mode 100644 index 00000000000000..3420f2192f7abc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FestivalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 11V9c-6-2-11-7-11-7S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74C22.07 13.75 23 12.49 23 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" +}), 'FestivalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FestivalRounded.js b/packages/material-ui-icons/lib/esm/FestivalRounded.js new file mode 100644 index 00000000000000..f2e2d1e493b992 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FestivalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 11v-.61c0-.8-.48-1.54-1.23-1.84-3.65-1.48-6.81-3.93-8.48-5.37-.74-.64-1.84-.64-2.58 0-1.68 1.44-4.83 3.88-8.48 5.37C1.48 8.85 1 9.58 1 10.39V11c0 1.49.93 2.75 2.24 3.26-.03 1.68-.16 3.55-.52 5.29-.26 1.26.66 2.45 1.95 2.45h14.67c1.29 0 2.21-1.19 1.95-2.45-.36-1.75-.5-3.62-.52-5.29C22.07 13.75 23 12.49 23 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" +}), 'FestivalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FestivalSharp.js b/packages/material-ui-icons/lib/esm/FestivalSharp.js new file mode 100644 index 00000000000000..7efe5d4c9fa460 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FestivalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 11V9c-6-2-11-7-11-7S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74C22.07 13.75 23 12.49 23 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" +}), 'FestivalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FestivalTwoTone.js b/packages/material-ui-icons/lib/esm/FestivalTwoTone.js new file mode 100644 index 00000000000000..b5789ad44704e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FestivalTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.24 14.42c-.04 1.76-.18 3.72-.58 5.58h2.67c.27-1.94.43-4.07.52-5.93-.31-.17-.6-.37-.85-.63-.47.49-1.08.83-1.76.98zM11 11H8c0 .83.67 1.5 1.5 1.5S11 11.83 11 11zm-5 0H3c0 .83.67 1.5 1.5 1.5S6 11.83 6 11zm6-6.29C10.67 5.85 8.51 7.55 5.89 9h12.23C15.49 7.55 13.33 5.85 12 4.71zm7.5 7.79c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5h-3c0 .83.67 1.5 1.5 1.5zm2.5.94c-.25.25-.54.45-.85.62.1 1.87.26 4 .52 5.93h2.67c-.39-1.86-.54-3.82-.57-5.58-.69-.14-1.3-.48-1.77-.97z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74C22.07 13.75 23 12.49 23 11V9c-6-2-11-7-11-7zm0 2.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM3 11h3c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11zm4.33 9H4.66c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.08 1.87-.24 4-.51 5.94zM8 11h3c0 .83-.67 1.5-1.5 1.5S8 11.83 8 11zm1.35 9c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm5.15-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm2.17 7.5c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" +}, "1")], 'FestivalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberDvr.js b/packages/material-ui-icons/lib/esm/FiberDvr.js new file mode 100644 index 00000000000000..bcefd2fa0bfa90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberDvr.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 10.5h2v1h-2v-1zm-13 0h2v3h-2v-3zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 11.5c0 .6-.4 1.15-.9 1.4L21 15h-1.5l-.85-2H17.5v2H16V9h3.5c.85 0 1.5.65 1.5 1.5v1z" +}), 'FiberDvr'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberDvrOutlined.js b/packages/material-ui-icons/lib/esm/FiberDvrOutlined.js new file mode 100644 index 00000000000000..c91b20cd720152 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberDvrOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.87 12.43-1-3.43h-1.5l1.75 6h1.5l1.75-6h-1.5zM21 11.5v-1c0-.85-.65-1.5-1.5-1.5H16v6h1.5v-2h1.15l.85 2H21l-.9-2.1c.5-.25.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zM6.5 9H3v6h3.5c.85 0 1.5-.65 1.5-1.5v-3C8 9.65 7.35 9 6.5 9zm0 4.5h-2v-3h2v3z" +}), 'FiberDvrOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberDvrRounded.js b/packages/material-ui-icons/lib/esm/FiberDvrRounded.js new file mode 100644 index 00000000000000..28d8de705a8a7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberDvrRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 10.5h2v3h-2zm13 0h2v1h-2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zM8 13.5c0 .83-.67 1.5-1.5 1.5h-3c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h3c.83 0 1.5.67 1.5 1.5v3zm6.1-3.58-1.27 4.36c-.12.43-.52.72-.96.72s-.84-.29-.96-.72L9.64 9.92c-.14-.46.21-.92.69-.92.32 0 .6.21.69.52l.85 2.91.85-2.91c.09-.31.37-.52.69-.52.48 0 .83.46.69.92zM21 11.5c0 .6-.4 1.15-.9 1.4l.63 1.48c.19.45-.14.96-.63.96-.28 0-.53-.16-.63-.42L18.65 13H17.5v1.31c0 .38-.31.69-.69.69h-.12c-.38 0-.69-.31-.69-.69V9.64c0-.35.29-.64.64-.64h2.86c.83 0 1.5.67 1.5 1.5v1z" +}), 'FiberDvrRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberDvrSharp.js b/packages/material-ui-icons/lib/esm/FiberDvrSharp.js new file mode 100644 index 00000000000000..5928eba93332fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberDvrSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 10.5h2v1h-2v-1zm-13 0h2v3h-2v-3zM23 3H1v18h22V3zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 12.9h-.9L21 15h-1.5l-.85-2H17.5v2H16V9h5v3.9z" +}), 'FiberDvrSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberDvrTwoTone.js b/packages/material-ui-icons/lib/esm/FiberDvrTwoTone.js new file mode 100644 index 00000000000000..259b0d01dcf522 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberDvrTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 11.56v-.89c0-.76-.58-1.33-1.33-1.33h-3.11v5.33h1.33v-1.78h1.02l.76 1.78H20l-.8-1.87c.44-.22.8-.71.8-1.24zm-1.33 0h-1.78v-.89h1.78v.89zM7.11 9.33H4v5.33h3.11c.76 0 1.33-.58 1.33-1.33v-2.67c0-.75-.57-1.33-1.33-1.33zm0 4H5.33v-2.67h1.78v2.67zm7-4h-1.34l-.89 3.05L11 9.33H9.66l1.56 5.34h1.33z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5h18v14H3z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 16H3V5h18v14z" +}, "2")], 'FiberDvrTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberManualRecord.js b/packages/material-ui-icons/lib/esm/FiberManualRecord.js new file mode 100644 index 00000000000000..7957d4e3448f62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberManualRecord.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "8" +}), 'FiberManualRecord'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberManualRecordOutlined.js b/packages/material-ui-icons/lib/esm/FiberManualRecordOutlined.js new file mode 100644 index 00000000000000..d3f8eadd392db8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberManualRecordOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8z" +}), 'FiberManualRecordOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberManualRecordRounded.js b/packages/material-ui-icons/lib/esm/FiberManualRecordRounded.js new file mode 100644 index 00000000000000..2255582b308b6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberManualRecordRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "8" +}), 'FiberManualRecordRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberManualRecordSharp.js b/packages/material-ui-icons/lib/esm/FiberManualRecordSharp.js new file mode 100644 index 00000000000000..59df039c87a539 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberManualRecordSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "8" +}), 'FiberManualRecordSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberManualRecordTwoTone.js b/packages/material-ui-icons/lib/esm/FiberManualRecordTwoTone.js new file mode 100644 index 00000000000000..69fda53b0b6a6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberManualRecordTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zm0-14c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z" +}, "1")], 'FiberManualRecordTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberNew.js b/packages/material-ui-icons/lib/esm/FiberNew.js new file mode 100644 index 00000000000000..4757642df7bc36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberNew.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 3.74c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v5z" +}), 'FiberNew'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberNewOutlined.js b/packages/material-ui-icons/lib/esm/FiberNewOutlined.js new file mode 100644 index 00000000000000..5f356fdf256e32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberNewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.25 12.5 4.75 9H3.5v6h1.25v-3.5L7.3 15h1.2V9H7.25zM9.5 15h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12h2.5V9h-4zm9.75-6v4.5h-1.12V9.99h-1.25v3.52h-1.13V9H14.5v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h-1.25z" +}), 'FiberNewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberNewRounded.js b/packages/material-ui-icons/lib/esm/FiberNewRounded.js new file mode 100644 index 00000000000000..41ad701498212c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberNewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM8.5 14.21c0 .43-.36.79-.79.79-.25 0-.49-.12-.64-.33L4.75 11.5v2.88c0 .35-.28.62-.62.62s-.63-.28-.63-.62V9.79c0-.43.36-.79.79-.79h.05c.26 0 .5.12.65.33l2.26 3.17V9.62c0-.34.28-.62.63-.62s.62.28.62.62v4.59zm5-4.57c0 .35-.28.62-.62.62H11v1.12h1.88c.35 0 .62.28.62.62v.01c0 .35-.28.62-.62.62H11v1.11h1.88c.35 0 .62.28.62.62 0 .35-.28.62-.62.62h-2.53c-.47 0-.85-.38-.85-.85v-4.3c0-.45.38-.83.85-.83h2.53c.35 0 .62.28.62.62v.02zm7 4.36c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1V9.62c0-.34.28-.62.62-.62s.62.28.62.62v3.89h1.13v-2.9c0-.35.28-.62.62-.62s.62.28.62.62v2.89h1.12V9.62c0-.35.28-.62.62-.62s.62.28.62.62V14z" +}), 'FiberNewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberNewSharp.js b/packages/material-ui-icons/lib/esm/FiberNewSharp.js new file mode 100644 index 00000000000000..8b6e6de17c1f1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberNewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 4.74h-6V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v6z" +}), 'FiberNewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberNewTwoTone.js b/packages/material-ui-icons/lib/esm/FiberNewTwoTone.js new file mode 100644 index 00000000000000..7dd599a5d40e81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberNewTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.12 14.47V9.53H8.09v2.88L6.03 9.53H5v4.94h1.03v-2.88l2.1 2.88zm4.12-3.9V9.53h-3.3v4.94h3.3v-1.03h-2.06v-.91h2.06v-1.04h-2.06v-.92zm.82-1.04v4.12c0 .45.37.82.82.82h3.29c.45 0 .82-.37.82-.82V9.53h-1.03v3.71h-.92v-2.89h-1.03v2.9h-.93V9.53h-1.02z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6h16v12H4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" +}, "2")], 'FiberNewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberPin.js b/packages/material-ui-icons/lib/esm/FiberPin.js new file mode 100644 index 00000000000000..f8cd3d6fa19aaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberPin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 10.5h2v1h-2zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .85-.65 1.5-1.5 1.5h-2v2H4V9h3.5c.85 0 1.5.65 1.5 1.5v1zm3.5 3.5H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z" +}), 'FiberPin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberPinOutlined.js b/packages/material-ui-icons/lib/esm/FiberPinOutlined.js new file mode 100644 index 00000000000000..2accaf996a59cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberPinOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h1.5V9H11v6zm7.75-6v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9h-1.25zM7.5 9H4v6h1.5v-2h2c.85 0 1.5-.65 1.5-1.5v-1C9 9.65 8.35 9 7.5 9zm0 2.5h-2v-1h2v1z" +}), 'FiberPinOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberPinRounded.js b/packages/material-ui-icons/lib/esm/FiberPinRounded.js new file mode 100644 index 00000000000000..56ceec88b29288 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberPinRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .83-.67 1.5-1.5 1.5h-2v1.25c0 .41-.34.75-.75.75S4 14.66 4 14.25V10c0-.55.45-1 1-1h2.5c.83 0 1.5.67 1.5 1.5v1zm3.5 2.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v4.5zm7.5-.04c0 .44-.35.79-.79.79-.25 0-.49-.12-.64-.33l-2.31-3.17v2.88c0 .34-.28.62-.62.62h-.01c-.35 0-.63-.28-.63-.62V9.83c0-.46.37-.83.83-.83.27 0 .52.13.67.35l2.25 3.15V9.62c0-.34.28-.62.62-.62h.01c.34 0 .62.28.62.62v4.59zM5.5 10.5h2v1h-2z" +}), 'FiberPinRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberPinSharp.js b/packages/material-ui-icons/lib/esm/FiberPinSharp.js new file mode 100644 index 00000000000000..b47dd95adf1e2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberPinSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 10.5h2v1h-2v-1zM22 4H2v16h20V4zM9 13H5.5v2H4V9h5v4zm3.5 2H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z" +}), 'FiberPinSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberPinTwoTone.js b/packages/material-ui-icons/lib/esm/FiberPinTwoTone.js new file mode 100644 index 00000000000000..7bc3d217be1415 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberPinTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 14.62h1.31v-1.75h1.75c.74 0 1.31-.57 1.31-1.31v-.88c0-.74-.57-1.31-1.31-1.31H5v5.25zm1.31-3.93h1.75v.88H6.31v-.88zm5.03-1.31h1.31v5.25h-1.31zm3.28 5.24h1.1v-3.06l2.23 3.06H19V9.38h-1.09v3.06l-2.19-3.06h-1.1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6h16v12H4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" +}, "2")], 'FiberPinTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberSmartRecord.js b/packages/material-ui-icons/lib/esm/FiberSmartRecord.js new file mode 100644 index 00000000000000..b253e60719476a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberSmartRecord.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "12", + r: "8" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z" +}, "1")], 'FiberSmartRecord'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberSmartRecordOutlined.js b/packages/material-ui-icons/lib/esm/FiberSmartRecordOutlined.js new file mode 100644 index 00000000000000..d655bdf778bf78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberSmartRecordOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm8-13.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z" +}), 'FiberSmartRecordOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberSmartRecordRounded.js b/packages/material-ui-icons/lib/esm/FiberSmartRecordRounded.js new file mode 100644 index 00000000000000..33b6d0b2d0e1c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberSmartRecordRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "12", + r: "8" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 5.55v.18c0 .37.23.69.57.85C19.6 7.54 21 9.61 21 12s-1.4 4.46-3.43 5.42c-.34.16-.57.47-.57.84v.18c0 .68.71 1.11 1.32.82C21.08 18.01 23 15.23 23 12s-1.92-6.01-4.68-7.27c-.61-.28-1.32.14-1.32.82z" +}, "1")], 'FiberSmartRecordRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberSmartRecordSharp.js b/packages/material-ui-icons/lib/esm/FiberSmartRecordSharp.js new file mode 100644 index 00000000000000..e969e60c9284d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberSmartRecordSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "12", + r: "8" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z" +}, "1")], 'FiberSmartRecordSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiberSmartRecordTwoTone.js b/packages/material-ui-icons/lib/esm/FiberSmartRecordTwoTone.js new file mode 100644 index 00000000000000..e0533ab00f34a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiberSmartRecordTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zM9 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm8-1.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z" +}, "1")], 'FiberSmartRecordTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileCopy.js b/packages/material-ui-icons/lib/esm/FileCopy.js new file mode 100644 index 00000000000000..f1a9002c8a4d14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileCopy.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4 6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z" +}), 'FileCopy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileCopyOutlined.js b/packages/material-ui-icons/lib/esm/FileCopyOutlined.js new file mode 100644 index 00000000000000..b0556a9f706e0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileCopyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z" +}), 'FileCopyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileCopyRounded.js b/packages/material-ui-icons/lib/esm/FileCopyRounded.js new file mode 100644 index 00000000000000..28ca5837e3dca4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileCopyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 1H4c-1.1 0-2 .9-2 2v13c0 .55.45 1 1 1s1-.45 1-1V4c0-.55.45-1 1-1h10c.55 0 1-.45 1-1s-.45-1-1-1zm.59 4.59 4.83 4.83c.37.37.58.88.58 1.41V21c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h6.17c.53 0 1.04.21 1.42.59zM15 12h4.5L14 6.5V11c0 .55.45 1 1 1z" +}), 'FileCopyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileCopySharp.js b/packages/material-ui-icons/lib/esm/FileCopySharp.js new file mode 100644 index 00000000000000..02f5d3a45dcb88 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileCopySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H2v16h2V3h12V1zm-1 4 6 6v12H6V5h9zm-1 7h5.5L14 6.5V12z" +}), 'FileCopySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileCopyTwoTone.js b/packages/material-ui-icons/lib/esm/FileCopyTwoTone.js new file mode 100644 index 00000000000000..026cdcb1482c7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileCopyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 7H8v14h11v-9h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zm4 16H8V7h6v5h5v9z" +}, "1")], 'FileCopyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownload.js b/packages/material-ui-icons/lib/esm/FileDownload.js new file mode 100644 index 00000000000000..a91838922c0f0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" +}), 'FileDownload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadDone.js b/packages/material-ui-icons/lib/esm/FileDownloadDone.js new file mode 100644 index 00000000000000..18c46457bda066 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadDone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z" +}), 'FileDownloadDone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadDoneOutlined.js b/packages/material-ui-icons/lib/esm/FileDownloadDoneOutlined.js new file mode 100644 index 00000000000000..ee4e472a5fa4be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadDoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" +}), 'FileDownloadDoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadDoneRounded.js b/packages/material-ui-icons/lib/esm/FileDownloadDoneRounded.js new file mode 100644 index 00000000000000..325724f7d5511d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadDoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.42 4.71a.9959.9959 0 0 0-1.41 0L9.53 13.2 5.99 9.66a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.24 4.24c.39.39 1.02.39 1.41 0l9.19-9.19c.4-.39.4-1.02 0-1.41zM6 20h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'FileDownloadDoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadDoneSharp.js b/packages/material-ui-icons/lib/esm/FileDownloadDoneSharp.js new file mode 100644 index 00000000000000..bea7a58c1bdaf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadDoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" +}), 'FileDownloadDoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadDoneTwoTone.js b/packages/material-ui-icons/lib/esm/FileDownloadDoneTwoTone.js new file mode 100644 index 00000000000000..68973f8992d49f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadDoneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.13 5.41 18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" +}), 'FileDownloadDoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadOff.js b/packages/material-ui-icons/lib/esm/FileDownloadOff.js new file mode 100644 index 00000000000000..8522a5e1820a3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V3h6v6h4l-3.59 3.59L9 6.17zm12.19 15.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z" +}), 'FileDownloadOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadOffOutlined.js b/packages/material-ui-icons/lib/esm/FileDownloadOffOutlined.js new file mode 100644 index 00000000000000..3b841e5420aa80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 15.17V15h2v2.17l-2-2zm-2.59-2.58L17 11l-1.41-1.41L14 11.17l1.41 1.42zM13 10.17V4h-2v4.17l2 2zm8.19 11.02-1.78-1.78-16.6-16.6-1.42 1.41 6.19 6.19L7 11l5 5 .59-.59L15.17 18H6v-3H4v3c0 1.1.9 2 2 2h11.17l2.61 2.61 1.41-1.42z" +}), 'FileDownloadOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadOffRounded.js b/packages/material-ui-icons/lib/esm/FileDownloadOffRounded.js new file mode 100644 index 00000000000000..c44cec4da622f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v5h1.59c.89 0 1.33 1.08.7 1.71l-1.88 1.88L9 6.17zm11.49 14.32L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.5 4.5c-.26.37-.28.91.1 1.28l4.59 4.59c.35.35.88.37 1.27.09L15.17 18H6c-.55 0-1 .45-1 1s.45 1 1 1h11.17l1.9 1.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" +}), 'FileDownloadOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadOffSharp.js b/packages/material-ui-icons/lib/esm/FileDownloadOffSharp.js new file mode 100644 index 00000000000000..4c7efbfa981637 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V3h6v6h4l-3.59 3.59L9 6.17zm12.19 15.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z" +}), 'FileDownloadOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadOffTwoTone.js b/packages/material-ui-icons/lib/esm/FileDownloadOffTwoTone.js new file mode 100644 index 00000000000000..3bd83a06c06140 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 5h-2v3.17l2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 8.17-2-2V3h6v6h4l-3.59 3.59L13 10.17V5h-2v3.17zm10.19 13.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z" +}, "1")], 'FileDownloadOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadOutlined.js b/packages/material-ui-icons/lib/esm/FileDownloadOutlined.js new file mode 100644 index 00000000000000..58f42933e6e0b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zm-1-4-1.41-1.41L13 12.17V4h-2v8.17L8.41 9.59 7 11l5 5 5-5z" +}), 'FileDownloadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadRounded.js b/packages/material-ui-icons/lib/esm/FileDownloadRounded.js new file mode 100644 index 00000000000000..5c853b3643fb45 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" +}), 'FileDownloadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadSharp.js b/packages/material-ui-icons/lib/esm/FileDownloadSharp.js new file mode 100644 index 00000000000000..e974e956f3e87b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" +}), 'FileDownloadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileDownloadTwoTone.js b/packages/material-ui-icons/lib/esm/FileDownloadTwoTone.js new file mode 100644 index 00000000000000..996b6cd1b3e1c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileDownloadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.17 11H13V5h-2v6H9.83L12 13.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 18h14v2H5zm14-9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11z" +}, "1")], 'FileDownloadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilePresent.js b/packages/material-ui-icons/lib/esm/FilePresent.js new file mode 100644 index 00000000000000..7ce1d39d119dac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilePresent.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V7l-5-5zM6 20V4h8v4h4v12H6zm10-10v5c0 2.21-1.79 4-4 4s-4-1.79-4-4V8.5c0-1.47 1.26-2.64 2.76-2.49 1.3.13 2.24 1.32 2.24 2.63V15h-2V8.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-5h2z" +}), 'FilePresent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilePresentOutlined.js b/packages/material-ui-icons/lib/esm/FilePresentOutlined.js new file mode 100644 index 00000000000000..4731bb41db287c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilePresentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h8v4h4v12zm-6-3c-1.1 0-2-.9-2-2V9.5c0-.28.22-.5.5-.5s.5.22.5.5V15h2V9.5C13 8.12 11.88 7 10.5 7S8 8.12 8 9.5V15c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2v4c0 1.1-.9 2-2 2z" +}), 'FilePresentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilePresentRounded.js b/packages/material-ui-icons/lib/esm/FilePresentRounded.js new file mode 100644 index 00000000000000..9a1d72d95f631f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilePresentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.17 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM16 15c0 2.34-2.01 4.21-4.39 3.98C9.53 18.78 8 16.92 8 14.83V9.64c0-1.31.94-2.5 2.24-2.63C11.74 6.86 13 8.03 13 9.5V14c0 .55-.45 1-1 1s-1-.45-1-1V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v5.39c0 1 .68 1.92 1.66 2.08 1.26.21 2.34-.76 2.34-1.97v-3c0-.55.45-1 1-1s1 .45 1 1v3zm-2-8V4l4 4h-3c-.55 0-1-.45-1-1z" +}), 'FilePresentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilePresentSharp.js b/packages/material-ui-icons/lib/esm/FilePresentSharp.js new file mode 100644 index 00000000000000..bdbd4a5f66c7a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilePresentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm2 13c0 2.21-1.79 4-4 4s-4-1.79-4-4V9.5C8 8.12 9.12 7 10.5 7S13 8.12 13 9.5V15h-2V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4zm-2-7V4l4 4h-4z" +}), 'FilePresentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilePresentTwoTone.js b/packages/material-ui-icons/lib/esm/FilePresentTwoTone.js new file mode 100644 index 00000000000000..92d1486e084899 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilePresentTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 4H6v16h12V8h-4V4zm2 7v4c0 2.21-1.79 4-4 4s-4-1.79-4-4V9.5C8 8.12 9.12 7 10.5 7S13 8.12 13 9.5V15h-2V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-4h2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 15c0 1.1-.9 2-2 2s-2-.9-2-2V9.5c0-.28.22-.5.5-.5s.5.22.5.5V15h2V9.5C13 8.12 11.88 7 10.5 7S8 8.12 8 9.5V15c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2v4z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h8v4h4v12z" +}, "2")], 'FilePresentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileUpload.js b/packages/material-ui-icons/lib/esm/FileUpload.js new file mode 100644 index 00000000000000..1de1cb92c489dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileUpload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z" +}), 'FileUpload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileUploadOutlined.js b/packages/material-ui-icons/lib/esm/FileUploadOutlined.js new file mode 100644 index 00000000000000..7906a4e8c283df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileUploadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z" +}), 'FileUploadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileUploadRounded.js b/packages/material-ui-icons/lib/esm/FileUploadRounded.js new file mode 100644 index 00000000000000..f6d5d32cd6e91d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileUploadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.4 10h1.59v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.7 3.7a.9959.9959 0 0 0-1.41 0L6.7 8.29c-.63.63-.19 1.71.7 1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" +}), 'FileUploadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileUploadSharp.js b/packages/material-ui-icons/lib/esm/FileUploadSharp.js new file mode 100644 index 00000000000000..5f2df9812d5921 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileUploadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 10h4v6h6v-6h4l-7-7-7 7zm0 8v2h14v-2H5z" +}), 'FileUploadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FileUploadTwoTone.js b/packages/material-ui-icons/lib/esm/FileUploadTwoTone.js new file mode 100644 index 00000000000000..47c3bc7fbbf8e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FileUploadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.83 8H11v6h2V8h1.17L12 5.83z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 18h14v2H5zm0-8h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2V8H9.83L12 5.83 14.17 8H13z" +}, "1")], 'FileUploadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter.js b/packages/material-ui-icons/lib/esm/Filter.js new file mode 100644 index 00000000000000..e0ff5c7e519e45 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.96 10.29-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'Filter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter1.js b/packages/material-ui-icons/lib/esm/Filter1.js new file mode 100644 index 00000000000000..573fc5d0afeee0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter1.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'Filter1'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter1Outlined.js b/packages/material-ui-icons/lib/esm/Filter1Outlined.js new file mode 100644 index 00000000000000..0435f5320805e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter1Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'Filter1Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter1Rounded.js b/packages/material-ui-icons/lib/esm/Filter1Rounded.js new file mode 100644 index 00000000000000..8777c8214dfc9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter1Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm13 10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v7c0 .55.45 1 1 1zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'Filter1Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter1Sharp.js b/packages/material-ui-icons/lib/esm/Filter1Sharp.js new file mode 100644 index 00000000000000..e5f057ccfe1d14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter1Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm11 10h2V5h-4v2h2v8zm9-14H5v18h18V1zm-2 16H7V3h14v14z" +}), 'Filter1Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter1TwoTone.js b/packages/material-ui-icons/lib/esm/Filter1TwoTone.js new file mode 100644 index 00000000000000..9f070dced4a746 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter1TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm5-12h4v10h-2V7h-2V5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 15h2V5h-4v2h2zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 5v16c0 1.1.9 2 2 2h16v-2H3V5H1z" +}, "1")], 'Filter1TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter2.js b/packages/material-ui-icons/lib/esm/Filter2.js new file mode 100644 index 00000000000000..a6996c701bb830 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter2.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" +}), 'Filter2'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter2Outlined.js b/packages/material-ui-icons/lib/esm/Filter2Outlined.js new file mode 100644 index 00000000000000..53b515acef9c14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter2Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" +}), 'Filter2Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter2Rounded.js b/packages/material-ui-icons/lib/esm/Filter2Rounded.js new file mode 100644 index 00000000000000..19b43208b281eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter2Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4-4h-3v-2h2c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v2h-2c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'Filter2Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter2Sharp.js b/packages/material-ui-icons/lib/esm/Filter2Sharp.js new file mode 100644 index 00000000000000..cca7ab722a30ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter2Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-4-4h-4v-2h4V5h-6v2h4v2h-4v6h6v-2z" +}), 'Filter2Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter2TwoTone.js b/packages/material-ui-icons/lib/esm/Filter2TwoTone.js new file mode 100644 index 00000000000000..7b2e97eba43e38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter2TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm4-6c0-1.11.9-2 2-2h2V7h-4V5h4c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2v2h4v2h-6v-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 13h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16z" +}, "1")], 'Filter2TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter3.js b/packages/material-ui-icons/lib/esm/Filter3.js new file mode 100644 index 00000000000000..8c0e0b07408573 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter3.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z" +}), 'Filter3'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter3Outlined.js b/packages/material-ui-icons/lib/esm/Filter3Outlined.js new file mode 100644 index 00000000000000..66f47fc9e5dcc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter3Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z" +}), 'Filter3Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter3Rounded.js b/packages/material-ui-icons/lib/esm/Filter3Rounded.js new file mode 100644 index 00000000000000..a85ba4eff5af85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter3Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm15 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.1-.9-2-2-2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v2h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2z" +}), 'Filter3Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter3Sharp.js b/packages/material-ui-icons/lib/esm/Filter3Sharp.js new file mode 100644 index 00000000000000..6efb6ef585f0b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter3Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V5h-6v2h4v2h-2v2h2v2h-4v2h6z" +}), 'Filter3Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter3TwoTone.js b/packages/material-ui-icons/lib/esm/Filter3TwoTone.js new file mode 100644 index 00000000000000..e8e25c40cac7ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter3TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm4-4h4v-2h-2V9h2V7h-4V5h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-4v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2zm2 10v-2H3V5H1v16c0 1.1.9 2 2 2h16z" +}, "1")], 'Filter3TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter4.js b/packages/material-ui-icons/lib/esm/Filter4.js new file mode 100644 index 00000000000000..74060ce9b58711 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter4.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'Filter4'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter4Outlined.js b/packages/material-ui-icons/lib/esm/Filter4Outlined.js new file mode 100644 index 00000000000000..5ab8dad833529a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter4Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'Filter4Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter4Rounded.js b/packages/material-ui-icons/lib/esm/Filter4Rounded.js new file mode 100644 index 00000000000000..7722f6568560cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter4Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm14 10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v3h-2V6c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h3v3c0 .55.45 1 1 1zm5-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'Filter4Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter4Sharp.js b/packages/material-ui-icons/lib/esm/Filter4Sharp.js new file mode 100644 index 00000000000000..bb1b2b9c4c6079 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter4Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm8-14H5v18h18V1zm-2 16H7V3h14v14z" +}), 'Filter4Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter4TwoTone.js b/packages/material-ui-icons/lib/esm/Filter4TwoTone.js new file mode 100644 index 00000000000000..1d1b2e73a3ee60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter4TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 3H7v14h14V3zm-4 12h-2v-4h-4V5h2v4h2V5h2v10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm4-4h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM7 3h14v14H7V3zm8 6h-2V5h-2v6h4v4h2V5h-2z" +}, "1")], 'Filter4TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter5.js b/packages/material-ui-icons/lib/esm/Filter5.js new file mode 100644 index 00000000000000..05dff0fa1aec58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter5.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z" +}), 'Filter5'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter5Outlined.js b/packages/material-ui-icons/lib/esm/Filter5Outlined.js new file mode 100644 index 00000000000000..a657f7921727d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter5Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z" +}), 'Filter5Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter5Rounded.js b/packages/material-ui-icons/lib/esm/Filter5Rounded.js new file mode 100644 index 00000000000000..746c62d778e9ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter5Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm15 8v-2c0-1.1-.9-2-2-2h-2V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2z" +}), 'Filter5Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter5Sharp.js b/packages/material-ui-icons/lib/esm/Filter5Sharp.js new file mode 100644 index 00000000000000..85add9f07a344f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter5Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V9h-4V7h4V5h-6v6h4v2h-4v2h6z" +}), 'Filter5Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter5TwoTone.js b/packages/material-ui-icons/lib/esm/Filter5TwoTone.js new file mode 100644 index 00000000000000..b30d0a7f17974c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter5TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm4-4h4v-2h-4V5h6v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-4v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 23v-2H3V5H1v16c0 1.1.9 2 2 2h16zm-2-10v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}, "1")], 'Filter5TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter6.js b/packages/material-ui-icons/lib/esm/Filter6.js new file mode 100644 index 00000000000000..2c3884a29f0a04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter6.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z" +}), 'Filter6'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter6Outlined.js b/packages/material-ui-icons/lib/esm/Filter6Outlined.js new file mode 100644 index 00000000000000..8df6712e2b713f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter6Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z" +}), 'Filter6Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter6Rounded.js b/packages/material-ui-icons/lib/esm/Filter6Rounded.js new file mode 100644 index 00000000000000..dee8de5429c027 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter6Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-7-2h2c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2h-2V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm0-4h2v2h-2v-2z" +}), 'Filter6Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter6Sharp.js b/packages/material-ui-icons/lib/esm/Filter6Sharp.js new file mode 100644 index 00000000000000..ec4ba0f86032c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter6Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-10-2h6V9h-4V7h4V5h-6v10zm2-4h2v2h-2v-2z" +}), 'Filter6Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter6TwoTone.js b/packages/material-ui-icons/lib/esm/Filter6TwoTone.js new file mode 100644 index 00000000000000..dde6eb6b3a8530 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter6TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm4-10c0-1.11.9-2 2-2h4v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V7zm2 4h2v2h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2z" +}, "1")], 'Filter6TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter7.js b/packages/material-ui-icons/lib/esm/Filter7.js new file mode 100644 index 00000000000000..5668029a39c75e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter7.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2 4-8V5h-6v2h4l-4 8h2z" +}), 'Filter7'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter7Outlined.js b/packages/material-ui-icons/lib/esm/Filter7Outlined.js new file mode 100644 index 00000000000000..58f9d2a179b385 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter7Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2 4-8V5h-6v2h4l-4 8h2z" +}), 'Filter7Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter7Rounded.js b/packages/material-ui-icons/lib/esm/Filter7Rounded.js new file mode 100644 index 00000000000000..fe1b32bc1ff620 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter7Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-6.75-2.49 3.58-7.17c.11-.22.17-.47.17-.72 0-.9-.72-1.62-1.62-1.62H12c-.55 0-1 .45-1 1s.45 1 1 1h3l-3.36 6.71c-.3.59.13 1.29.8 1.29h.01c.34 0 .65-.19.8-.49z" +}), 'Filter7Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter7Sharp.js b/packages/material-ui-icons/lib/esm/Filter7Sharp.js new file mode 100644 index 00000000000000..f4e48653cf127c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter7Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2 4-8V5h-6v2h4l-4 8h2z" +}), 'Filter7Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter7TwoTone.js b/packages/material-ui-icons/lib/esm/Filter7TwoTone.js new file mode 100644 index 00000000000000..32df49b1c4820d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter7TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm4-10V5h6v2l-4 8h-2l4-8h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8 4-8V5h-6v2h4l-4 8zm8-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}, "1")], 'Filter7TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter8.js b/packages/material-ui-icons/lib/esm/Filter8.js new file mode 100644 index 00000000000000..ea85a2f79e7449 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter8.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" +}), 'Filter8'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter8Outlined.js b/packages/material-ui-icons/lib/esm/Filter8Outlined.js new file mode 100644 index 00000000000000..a1990d487da47e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter8Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" +}), 'Filter8Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter8Rounded.js b/packages/material-ui-icons/lib/esm/Filter8Rounded.js new file mode 100644 index 00000000000000..174e122e044080 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter8Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-7-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" +}), 'Filter8Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter8Sharp.js b/packages/material-ui-icons/lib/esm/Filter8Sharp.js new file mode 100644 index 00000000000000..63a43f06ab5fc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter8Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" +}), 'Filter8Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter8TwoTone.js b/packages/material-ui-icons/lib/esm/Filter8TwoTone.js new file mode 100644 index 00000000000000..9a15ab41b6357b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter8TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm4-5.5c0-.83.67-1.5 1.5-1.5-.83 0-1.5-.67-1.5-1.5V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2v-1.5zM13 7h2v2h-2zm0 4h2v2h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" +}, "1")], 'Filter8TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9.js b/packages/material-ui-icons/lib/esm/Filter9.js new file mode 100644 index 00000000000000..9237bd85ab3bd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z" +}), 'Filter9'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9Outlined.js b/packages/material-ui-icons/lib/esm/Filter9Outlined.js new file mode 100644 index 00000000000000..c0bbafc0c81b69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z" +}), 'Filter9Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9Plus.js b/packages/material-ui-icons/lib/esm/Filter9Plus.js new file mode 100644 index 00000000000000..8a91661425a89f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9Plus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" +}), 'Filter9Plus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9PlusOutlined.js b/packages/material-ui-icons/lib/esm/Filter9PlusOutlined.js new file mode 100644 index 00000000000000..5099e624ba4f12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9PlusOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" +}), 'Filter9PlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9PlusRounded.js b/packages/material-ui-icons/lib/esm/Filter9PlusRounded.js new file mode 100644 index 00000000000000..9880d517861e85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9PlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm12 7V8c0-1.1-.9-2-2-2h-1c-1.1 0-2 .9-2 2v1c0 1.1.9 2 2 2h1v1h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c1.1 0 2-.9 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-7c0-.55-.45-1-1-1h-1V8c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1z" +}), 'Filter9PlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9PlusSharp.js b/packages/material-ui-icons/lib/esm/Filter9PlusSharp.js new file mode 100644 index 00000000000000..ae711abf6cff43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9PlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm11 9V6H9v5h3v1H9v2h5zm-3-5V8h1v1h-1zm12-8H5v18h18V1zm-2 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" +}), 'Filter9PlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9PlusTwoTone.js b/packages/material-ui-icons/lib/esm/Filter9PlusTwoTone.js new file mode 100644 index 00000000000000..c807a52c18c8e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9PlusTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14v-6h-2v2h-2v-2h-2V9h2V7h2v2h2V3H7v14zm2-5h3v-1h-1c-1.1 0-2-.89-2-2V8c0-1.11.9-2 2-2h1c1.1 0 2 .89 2 2v4c0 1.11-.9 2-2 2H9v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 21H3V5H1v16c0 1.1.9 2 2 2h16v-2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 8h1v1h-1z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 6h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2V8c0-1.11-.9-2-2-2zm0 3h-1V8h1v1zm9-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" +}, "3")], 'Filter9PlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9Rounded.js b/packages/material-ui-icons/lib/esm/Filter9Rounded.js new file mode 100644 index 00000000000000..567cff6ef33761 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM15 5h-2c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h2v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 4h-2V7h2v2z" +}), 'Filter9Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9Sharp.js b/packages/material-ui-icons/lib/esm/Filter9Sharp.js new file mode 100644 index 00000000000000..ad2a4288341b89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zM17 5h-6v6h4v2h-4v2h6V5zm-2 4h-2V7h2v2z" +}), 'Filter9Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Filter9TwoTone.js b/packages/material-ui-icons/lib/esm/Filter9TwoTone.js new file mode 100644 index 00000000000000..43eb5ff533d888 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Filter9TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 7h2v2h-2zM7 17h14V3H7v14zm4-4h4v-2h-2c-1.1 0-2-.89-2-2V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v6c0 1.11-.9 2-2 2h-4v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm14-10V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2zm-4-4V7h2v2h-2z" +}, "1")], 'Filter9TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterAlt.js b/packages/material-ui-icons/lib/esm/FilterAlt.js new file mode 100644 index 00000000000000..40ddd1ba46dc20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.25 5.61C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39c.51-.66.04-1.61-.79-1.61H5.04c-.83 0-1.3.95-.79 1.61z" +}), 'FilterAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterAltOutlined.js b/packages/material-ui-icons/lib/esm/FilterAltOutlined.js new file mode 100644 index 00000000000000..66c4b49cf06e25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 6h10l-5.01 6.3L7 6zm-2.75-.39C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39c.51-.66.04-1.61-.79-1.61H5.04c-.83 0-1.3.95-.79 1.61z" +}), 'FilterAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterAltRounded.js b/packages/material-ui-icons/lib/esm/FilterAltRounded.js new file mode 100644 index 00000000000000..afcaddaeac70f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.25 5.61C6.57 8.59 10 13 10 13v5c0 1.1.9 2 2 2s2-.9 2-2v-5s3.43-4.41 5.75-7.39c.51-.66.04-1.61-.8-1.61H5.04c-.83 0-1.3.95-.79 1.61z" +}), 'FilterAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterAltSharp.js b/packages/material-ui-icons/lib/esm/FilterAltSharp.js new file mode 100644 index 00000000000000..e9c033955ee340 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 4c2.01 2.59 7 9 7 9v7h4v-7s4.98-6.41 7-9H3z" +}), 'FilterAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterAltTwoTone.js b/packages/material-ui-icons/lib/esm/FilterAltTwoTone.js new file mode 100644 index 00000000000000..18d9c4a68e34a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 6h10l-5.01 6.3L7 6zm-2.75-.39C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39c.51-.66.04-1.61-.79-1.61H5.04c-.83 0-1.3.95-.79 1.61z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 6h10l-5.01 6.3z", + opacity: ".3" +}, "1")], 'FilterAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterBAndW.js b/packages/material-ui-icons/lib/esm/FilterBAndW.js new file mode 100644 index 00000000000000..599ae6b7129c24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterBAndW.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16-7-8v8H5l7-8V5h7v14z" +}), 'FilterBAndW'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterBAndWOutlined.js b/packages/material-ui-icons/lib/esm/FilterBAndWOutlined.js new file mode 100644 index 00000000000000..2224293f7f6eea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterBAndWOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16-7-8v8H5l7-8V5h7v14z" +}), 'FilterBAndWOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterBAndWRounded.js b/packages/material-ui-icons/lib/esm/FilterBAndWRounded.js new file mode 100644 index 00000000000000..d2363b3b59e870 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterBAndWRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16-7-8v8H5l7-8V5h6c.55 0 1 .45 1 1v13z" +}), 'FilterBAndWRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterBAndWSharp.js b/packages/material-ui-icons/lib/esm/FilterBAndWSharp.js new file mode 100644 index 00000000000000..0a4d50eb28d20f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterBAndWSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-2 16-7-8v8H5l7-8V5h7v14z" +}), 'FilterBAndWSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterBAndWTwoTone.js b/packages/material-ui-icons/lib/esm/FilterBAndWTwoTone.js new file mode 100644 index 00000000000000..c300ed0485ebbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterBAndWTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5h-7v6l7 8zm-7 14v-8l-7 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9 0H5l7-8V5h7v14l-7-8v8z" +}, "1")], 'FilterBAndWTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterCenterFocus.js b/packages/material-ui-icons/lib/esm/FilterCenterFocus.js new file mode 100644 index 00000000000000..9ca239b8757cbb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterCenterFocus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'FilterCenterFocus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterCenterFocusOutlined.js b/packages/material-ui-icons/lib/esm/FilterCenterFocusOutlined.js new file mode 100644 index 00000000000000..ecadf2ac61d3a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterCenterFocusOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'FilterCenterFocusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterCenterFocusRounded.js b/packages/material-ui-icons/lib/esm/FilterCenterFocusRounded.js new file mode 100644 index 00000000000000..7674a3bfa23ada --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterCenterFocusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zm-7-9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'FilterCenterFocusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterCenterFocusSharp.js b/packages/material-ui-icons/lib/esm/FilterCenterFocusSharp.js new file mode 100644 index 00000000000000..2f0df35d04ab65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterCenterFocusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'FilterCenterFocusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterCenterFocusTwoTone.js b/packages/material-ui-icons/lib/esm/FilterCenterFocusTwoTone.js new file mode 100644 index 00000000000000..4622c0d5dea0bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterCenterFocusTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm7-6h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4z" +}), 'FilterCenterFocusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterDrama.js b/packages/material-ui-icons/lib/esm/FilterDrama.js new file mode 100644 index 00000000000000..6efbd7959712c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterDrama.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" +}), 'FilterDrama'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterDramaOutlined.js b/packages/material-ui-icons/lib/esm/FilterDramaOutlined.js new file mode 100644 index 00000000000000..b980858772e6ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterDramaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" +}), 'FilterDramaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterDramaRounded.js b/packages/material-ui-icons/lib/esm/FilterDramaRounded.js new file mode 100644 index 00000000000000..634c39a8c16cd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterDramaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6.17c-2.09 0-3.95-1.53-4.15-3.61C1.79 12.01 3.66 10 6 10c1.92 0 3.53 1.36 3.91 3.17.1.48.5.83.98.83.61 0 1.11-.55.99-1.15-.43-2.24-2.11-4.03-4.29-4.63 1.1-1.46 2.89-2.37 4.89-2.2 2.88.25 5.01 2.82 5.01 5.71V12h1.37c1.45 0 2.79.97 3.07 2.4.39 1.91-1.08 3.6-2.93 3.6z" +}), 'FilterDramaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterDramaSharp.js b/packages/material-ui-icons/lib/esm/FilterDramaSharp.js new file mode 100644 index 00000000000000..1719502830cbae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterDramaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" +}), 'FilterDramaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterDramaTwoTone.js b/packages/material-ui-icons/lib/esm/FilterDramaTwoTone.js new file mode 100644 index 00000000000000..7ce82465f09b00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterDramaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 12h-1.5v-.5C17.5 8.47 15.03 6 12 6c-1.8 0-3.39.88-4.4 2.22 2.54.7 4.4 3.02 4.4 5.78h-2c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4h13c1.65 0 3-1.35 3-3s-1.35-3-3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" +}, "1")], 'FilterDramaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterFrames.js b/packages/material-ui-icons/lib/esm/FilterFrames.js new file mode 100644 index 00000000000000..f78a091ca29cc9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterFrames.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12" +}), 'FilterFrames'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterFramesOutlined.js b/packages/material-ui-icons/lib/esm/FilterFramesOutlined.js new file mode 100644 index 00000000000000..04eef880ffe0e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterFramesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z" +}), 'FilterFramesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterFramesRounded.js b/packages/material-ui-icons/lib/esm/FilterFramesRounded.js new file mode 100644 index 00000000000000..3ff8303b15de81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterFramesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-4L12.71.71a.9959.9959 0 0 0-1.41 0L8 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 16H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h3.52l3.52-3.5L15.52 6H19c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM17 8H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z" +}), 'FilterFramesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterFramesSharp.js b/packages/material-ui-icons/lib/esm/FilterFramesSharp.js new file mode 100644 index 00000000000000..c33a220f306ba4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterFramesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4h-6l-4-4-4 4H2v18h20V4zm-2 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12" +}), 'FilterFramesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterFramesTwoTone.js b/packages/material-ui-icons/lib/esm/FilterFramesTwoTone.js new file mode 100644 index 00000000000000..9fa6e5da8de4af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterFramesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 10h8v6H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z" +}, "1")], 'FilterFramesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterHdr.js b/packages/material-ui-icons/lib/esm/FilterHdr.js new file mode 100644 index 00000000000000..6b2f7b9fbec66c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterHdr.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" +}), 'FilterHdr'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterHdrOutlined.js b/packages/material-ui-icons/lib/esm/FilterHdrOutlined.js new file mode 100644 index 00000000000000..3491848393e60e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterHdrOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" +}), 'FilterHdrOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterHdrRounded.js b/packages/material-ui-icons/lib/esm/FilterHdrRounded.js new file mode 100644 index 00000000000000..0e26610728148d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterHdrRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.2 7.07 10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z" +}), 'FilterHdrRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterHdrSharp.js b/packages/material-ui-icons/lib/esm/FilterHdrSharp.js new file mode 100644 index 00000000000000..076264040f3e08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterHdrSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" +}), 'FilterHdrSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterHdrTwoTone.js b/packages/material-ui-icons/lib/esm/FilterHdrTwoTone.js new file mode 100644 index 00000000000000..4e4cae0a78e970 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterHdrTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 16h3.04l-1.52-2.03z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m9.78 11.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" +}, "1")], 'FilterHdrTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterList.js b/packages/material-ui-icons/lib/esm/FilterList.js new file mode 100644 index 00000000000000..73ef02bee84fdc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterList.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" +}), 'FilterList'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterListOutlined.js b/packages/material-ui-icons/lib/esm/FilterListOutlined.js new file mode 100644 index 00000000000000..a5440c593040b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterListOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" +}), 'FilterListOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterListRounded.js b/packages/material-ui-icons/lib/esm/FilterListRounded.js new file mode 100644 index 00000000000000..0f07cfdc650ace --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterListRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm4 6h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'FilterListRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterListSharp.js b/packages/material-ui-icons/lib/esm/FilterListSharp.js new file mode 100644 index 00000000000000..d5e5a629abe3ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterListSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" +}), 'FilterListSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterListTwoTone.js b/packages/material-ui-icons/lib/esm/FilterListTwoTone.js new file mode 100644 index 00000000000000..f64e37d9c2ddeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterListTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" +}), 'FilterListTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterNone.js b/packages/material-ui-icons/lib/esm/FilterNone.js new file mode 100644 index 00000000000000..bb7d4fb0618529 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterNone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'FilterNone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterNoneOutlined.js b/packages/material-ui-icons/lib/esm/FilterNoneOutlined.js new file mode 100644 index 00000000000000..f0f7f356aa0ab0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterNoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'FilterNoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterNoneRounded.js b/packages/material-ui-icons/lib/esm/FilterNoneRounded.js new file mode 100644 index 00000000000000..a0ec51e3da795b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterNoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'FilterNoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterNoneSharp.js b/packages/material-ui-icons/lib/esm/FilterNoneSharp.js new file mode 100644 index 00000000000000..665eb470859e3d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterNoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z" +}), 'FilterNoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterNoneTwoTone.js b/packages/material-ui-icons/lib/esm/FilterNoneTwoTone.js new file mode 100644 index 00000000000000..60856d43baf6b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterNoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 3h14v14H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}, "1")], 'FilterNoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterOutlined.js b/packages/material-ui-icons/lib/esm/FilterOutlined.js new file mode 100644 index 00000000000000..269c7a4cc3503e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.96 10.29-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z" +}), 'FilterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterRounded.js b/packages/material-ui-icons/lib/esm/FilterRounded.js new file mode 100644 index 00000000000000..439aa559904058 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.56 10.81-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'FilterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterSharp.js b/packages/material-ui-icons/lib/esm/FilterSharp.js new file mode 100644 index 00000000000000..7a8169da9a997e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.96 10.29-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z" +}), 'FilterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterTiltShift.js b/packages/material-ui-icons/lib/esm/FilterTiltShift.js new file mode 100644 index 00000000000000..610e6804f49d82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterTiltShift.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" +}), 'FilterTiltShift'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterTiltShiftOutlined.js b/packages/material-ui-icons/lib/esm/FilterTiltShiftOutlined.js new file mode 100644 index 00000000000000..f95879806666e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterTiltShiftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" +}), 'FilterTiltShiftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterTiltShiftRounded.js b/packages/material-ui-icons/lib/esm/FilterTiltShiftRounded.js new file mode 100644 index 00000000000000..4047dd71b69d48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterTiltShiftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 3.23c0-.64-.59-1.13-1.21-.99-1.12.26-2.18.7-3.12 1.3-.53.34-.61 1.1-.16 1.55.32.32.83.4 1.21.16.77-.49 1.62-.85 2.54-1.05.44-.1.74-.51.74-.97zm6.33.32c-.94-.6-2-1.04-3.12-1.3-.62-.14-1.21.34-1.21.98 0 .45.3.87.74.96.91.2 1.77.57 2.53 1.05.39.24.89.17 1.21-.16.46-.44.39-1.19-.15-1.53zM20.77 11c.64 0 1.13-.59.99-1.21-.26-1.12-.7-2.18-1.3-3.12-.34-.53-1.1-.61-1.55-.16-.32.32-.4.83-.16 1.21.49.77.85 1.62 1.05 2.53.1.45.51.75.97.75zM5.1 6.51c-.46-.45-1.21-.38-1.55.16-.6.94-1.04 2-1.3 3.12-.14.62.34 1.21.98 1.21.45 0 .87-.3.96-.74.2-.91.57-1.77 1.05-2.53.26-.39.18-.9-.14-1.22zM3.23 13c-.64 0-1.13.59-.99 1.21.26 1.12.7 2.17 1.3 3.12.34.54 1.1.61 1.55.16.32-.32.4-.83.15-1.21-.49-.76-.85-1.61-1.05-2.53-.09-.45-.5-.75-.96-.75zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.9 5.49c.45.45 1.21.38 1.55-.15.6-.94 1.04-2 1.3-3.11.14-.62-.35-1.21-.98-1.21-.45 0-.87.3-.96.74-.2.91-.57 1.76-1.05 2.53-.26.37-.18.88.14 1.2zM13 20.77c0 .64.59 1.13 1.21.99 1.12-.26 2.17-.7 3.12-1.3.54-.34.61-1.1.16-1.55-.32-.32-.83-.4-1.21-.15-.76.49-1.61.85-2.53 1.05-.45.09-.75.5-.75.96zm-6.33-.32c.95.6 2 1.04 3.12 1.3.62.14 1.21-.35 1.21-.98 0-.45-.3-.87-.74-.96-.91-.2-1.77-.57-2.53-1.05-.39-.24-.89-.17-1.21.16-.46.44-.39 1.19.15 1.53z" +}), 'FilterTiltShiftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterTiltShiftSharp.js b/packages/material-ui-icons/lib/esm/FilterTiltShiftSharp.js new file mode 100644 index 00000000000000..0b02098dfb00c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterTiltShiftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9 1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" +}), 'FilterTiltShiftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterTiltShiftTwoTone.js b/packages/material-ui-icons/lib/esm/FilterTiltShiftTwoTone.js new file mode 100644 index 00000000000000..3aaef9cfdd1f4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterTiltShiftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43C16.84 3.05 15.01 2.25 13 2.05zm0 17.88v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-8.74-1.61 1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm16.26-3.9c.86 1.11 1.44 2.44 1.62 3.9h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zm16.27-6.73h-2.02c-.18 1.45-.76 2.78-1.62 3.89l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32zM9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'FilterTiltShiftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterTwoTone.js b/packages/material-ui-icons/lib/esm/FilterTwoTone.js new file mode 100644 index 00000000000000..92e6216bc999a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h14V3H7v14zm4.25-5.53 1.96 2.36 2.75-3.54L19.5 15h-11l2.75-3.53z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-5.04-6.71-2.75 3.54-1.96-2.36L8.5 15h11z" +}, "1")], 'FilterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterVintage.js b/packages/material-ui-icons/lib/esm/FilterVintage.js new file mode 100644 index 00000000000000..0f3a3d1652f6f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterVintage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'FilterVintage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterVintageOutlined.js b/packages/material-ui-icons/lib/esm/FilterVintageOutlined.js new file mode 100644 index 00000000000000..7ed08ed3055624 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterVintageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zm-2.54-3.88c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 20.63c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zm6.69-4.24c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z" +}), 'FilterVintageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterVintageRounded.js b/packages/material-ui-icons/lib/esm/FilterVintageRounded.js new file mode 100644 index 00000000000000..32a17cf4ee55ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterVintageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'FilterVintageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterVintageSharp.js b/packages/material-ui-icons/lib/esm/FilterVintageSharp.js new file mode 100644 index 00000000000000..d30692aeb06e55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterVintageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'FilterVintageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FilterVintageTwoTone.js b/packages/material-ui-icons/lib/esm/FilterVintageTwoTone.js new file mode 100644 index 00000000000000..026a3f5fab1f36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FilterVintageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.69 7.61c-.7 0-1.39.19-2 .54-.16.09-.32.21-.54.37l-1.13.9c.31.36.56.78.72 1.24l1.38-.52c.22-.08.41-.17.58-.27.84-.49 1.47-1.27 1.78-2.18-.26-.06-.52-.08-.79-.08zm-1.56 6.26-1.38-.52c-.16.45-.4.85-.7 1.21l1.15.96c.15.12.31.24.49.34.61.35 1.3.54 1.99.54.27 0 .53-.03.8-.08-.31-.91-.94-1.69-1.78-2.18-.16-.1-.35-.19-.57-.27zM11 6c0 .19.02.41.05.63l.23 1.44c.24-.04.48-.07.72-.07s.48.03.71.07l.23-1.44c.04-.22.06-.44.06-.63 0-.98-.37-1.91-1-2.63-.63.72-1 1.65-1 2.63zm1.71 9.93c-.23.04-.47.07-.71.07-.25 0-.49-.03-.72-.07l-.22 1.42c-.04.24-.06.45-.06.65 0 .98.37 1.91 1 2.63.63-.72 1-1.66 1-2.63 0-.19-.02-.41-.05-.63l-.24-1.44zm-5.84-5.81 1.38.52c.16-.44.4-.85.7-1.2L7.8 8.49c-.17-.15-.34-.27-.49-.35-.62-.36-1.3-.54-2-.54-.27 0-.54.03-.81.08.3.91.93 1.68 1.79 2.18.17.09.36.18.58.26zm0 3.74c-.22.08-.41.17-.58.27-.84.49-1.47 1.27-1.78 2.18.26.05.52.08.79.08.7 0 1.39-.19 2-.54.16-.09.32-.21.54-.37l1.13-.89c-.31-.36-.56-.78-.72-1.24l-1.38.51z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zm0 17.26c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zM12 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4.16-5.48c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zm2.53 7.87c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z" +}, "1")], 'FilterVintageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindInPage.js b/packages/material-ui-icons/lib/esm/FindInPage.js new file mode 100644 index 00000000000000..f36003c9739786 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindInPage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19.59V8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'FindInPage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindInPageOutlined.js b/packages/material-ui-icons/lib/esm/FindInPageOutlined.js new file mode 100644 index 00000000000000..b762b19bc93f6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindInPageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 4h7l5 5v8.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11z" +}), 'FindInPageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindInPageRounded.js b/packages/material-ui-icons/lib/esm/FindInPageRounded.js new file mode 100644 index 00000000000000..ef182d0aa5d54e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindInPageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19.59V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31-.44-3.35 2.45-6.18 5.83-5.61 1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'FindInPageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindInPageSharp.js b/packages/material-ui-icons/lib/esm/FindInPageSharp.js new file mode 100644 index 00000000000000..23b7c4c53d8151 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindInPageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19.59V8l-6-6H4v20l15.57-.02-4.81-4.81c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'FindInPageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindInPageTwoTone.js b/packages/material-ui-icons/lib/esm/FindInPageTwoTone.js new file mode 100644 index 00000000000000..f33506497d25c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindInPageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 4v16h11.6l-2.85-2.85c-.83.55-1.79.83-2.75.83-1.28 0-2.55-.49-3.53-1.46-1.95-1.95-1.95-5.11 0-7.05C9.45 8.49 10.72 8 12 8c1.28 0 2.55.49 3.53 1.46 1.71 1.71 1.92 4.34.64 6.28L18 17.58V9l-5-5H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 15.58-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4h7l5 5v8.58zm-3.01-4.59c0 .8-.31 1.55-.88 2.11-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11S11.2 10 12 10s1.55.31 2.11.88c.57.56.88 1.31.88 2.11z" +}, "1")], 'FindInPageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindReplace.js b/packages/material-ui-icons/lib/esm/FindReplace.js new file mode 100644 index 00000000000000..2e9cc00e35ab31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindReplace.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" +}), 'FindReplace'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindReplaceOutlined.js b/packages/material-ui-icons/lib/esm/FindReplaceOutlined.js new file mode 100644 index 00000000000000..9e4c037ece3f95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindReplaceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" +}), 'FindReplaceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindReplaceRounded.js b/packages/material-ui-icons/lib/esm/FindReplaceRounded.js new file mode 100644 index 00000000000000..209000a3f970bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindReplaceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6c1.38 0 2.63.56 3.54 1.46l-1.69 1.69c-.31.31-.09.85.36.85h4.29c.28 0 .5-.22.5-.5V5.21c0-.45-.54-.67-.85-.35l-1.2 1.2C14.68 4.78 12.93 4 11 4 7.96 4 5.38 5.94 4.42 8.64c-.24.66.23 1.36.93 1.36.42 0 .79-.26.93-.66C6.96 7.4 8.82 6 11 6zm5.64 9.14c.4-.54.72-1.15.95-1.8.23-.65-.25-1.34-.94-1.34-.42 0-.79.26-.93.66C15.04 14.6 13.18 16 11 16c-1.38 0-2.63-.56-3.54-1.46l1.69-1.69c.31-.31.09-.85-.36-.85H4.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35l1.2-1.2C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36l4.11 4.11c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49l-4.1-4.12z" +}), 'FindReplaceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindReplaceSharp.js b/packages/material-ui-icons/lib/esm/FindReplaceSharp.js new file mode 100644 index 00000000000000..ac4328b5d0f1c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindReplaceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" +}), 'FindReplaceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FindReplaceTwoTone.js b/packages/material-ui-icons/lib/esm/FindReplaceTwoTone.js new file mode 100644 index 00000000000000..efba5457a2bfb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FindReplaceTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" +}), 'FindReplaceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Fingerprint.js b/packages/material-ui-icons/lib/esm/Fingerprint.js new file mode 100644 index 00000000000000..447f103a99b521 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Fingerprint.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" +}), 'Fingerprint'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FingerprintOutlined.js b/packages/material-ui-icons/lib/esm/FingerprintOutlined.js new file mode 100644 index 00000000000000..0f513433ef4ec5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FingerprintOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" +}), 'FingerprintOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FingerprintRounded.js b/packages/material-ui-icons/lib/esm/FingerprintRounded.js new file mode 100644 index 00000000000000..c38dac01bf939d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FingerprintRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" +}), 'FingerprintRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FingerprintSharp.js b/packages/material-ui-icons/lib/esm/FingerprintSharp.js new file mode 100644 index 00000000000000..888de667169824 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FingerprintSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" +}), 'FingerprintSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FingerprintTwoTone.js b/packages/material-ui-icons/lib/esm/FingerprintTwoTone.js new file mode 100644 index 00000000000000..3508e079346e3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FingerprintTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" +}), 'FingerprintTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireExtinguisher.js b/packages/material-ui-icons/lib/esm/FireExtinguisher.js new file mode 100644 index 00000000000000..17d5542919aa59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireExtinguisher.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" +}), 'FireExtinguisher'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireExtinguisherOutlined.js b/packages/material-ui-icons/lib/esm/FireExtinguisherOutlined.js new file mode 100644 index 00000000000000..d0679a79144c60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireExtinguisherOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" +}), 'FireExtinguisherOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireExtinguisherRounded.js b/packages/material-ui-icons/lib/esm/FireExtinguisherRounded.js new file mode 100644 index 00000000000000..aa4b2b57ab8e2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireExtinguisherRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 4.23v3.54c0 .63-.58 1.11-1.21.98l-1.94-.41c0 .02 0 .01-.01.03 1.54.62 2.71 1.98 3.06 3.63H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5.49 6.6C5.2 6.54 5 6.29 5 6s.2-.54.49-.6l3.88-.81C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66l1.94-.41c.63-.13 1.21.35 1.21.98zM13 6c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" +}), 'FireExtinguisherRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireExtinguisherSharp.js b/packages/material-ui-icons/lib/esm/FireExtinguisherSharp.js new file mode 100644 index 00000000000000..4d4fed4a01df1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireExtinguisherSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 19h10v3H7v-3zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" +}), 'FireExtinguisherSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireExtinguisherTwoTone.js b/packages/material-ui-icons/lib/esm/FireExtinguisherTwoTone.js new file mode 100644 index 00000000000000..b5268e8799a235 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireExtinguisherTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 19h10v1c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2v-1zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" +}), 'FireExtinguisherTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Fireplace.js b/packages/material-ui-icons/lib/esm/Fireplace.js new file mode 100644 index 00000000000000..1167a5b4b5949a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Fireplace.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 2v20h20V2H2zm9.86 14.96c.76-.24 1.4-1.04 1.53-1.63.13-.56-.1-1.05-.2-1.6-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.7-2.11 2.38-3.39 1.33zM20 20h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" +}), 'Fireplace'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireplaceOutlined.js b/packages/material-ui-icons/lib/esm/FireplaceOutlined.js new file mode 100644 index 00000000000000..09b6f38ebfb60b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireplaceOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.01 12.46c-.15.42-.15.82-.08 1.28.1.55.33 1.04.2 1.6-.13.59-.77 1.38-1.53 1.63 1.28 1.05 3.2.37 3.39-1.32.17-1.54-1.44-1.98-1.98-3.19z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 2v20h20V2H2zm10 16c-1.58 0-2.97-1.88-3-3.06 0-.05-.01-.13-.01-.22-.13-1.73 1-3.2 2.47-4.37.47 1.01 1.27 2.03 2.57 2.92.58.42.97.86.97 1.73 0 1.65-1.35 3-3 3zm8 2h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" +}, "1")], 'FireplaceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireplaceRounded.js b/packages/material-ui-icons/lib/esm/FireplaceRounded.js new file mode 100644 index 00000000000000..4e8c953dfcda1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireplaceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 17c0 .55-.45 1-1 1h-1v-1c0-.55-.45-1-1-1h-1.15c.71-.85 1.15-1.89 1.15-3 0-1.89-1.09-2.84-1.85-3.36-1.86-1.27-2.23-2.78-2.25-3.72-.01-.4-.43-.63-.77-.43-5.8 3.43-5.15 7-5.13 7.51.03.96.49 2.07 1.24 3H7c-.55 0-1 .45-1 1v1H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v14zm-6.8-5.26c-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.69-2.11 2.37-3.39 1.32.76-.24 1.4-1.04 1.53-1.63.12-.55-.11-1.04-.2-1.59z" +}), 'FireplaceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireplaceSharp.js b/packages/material-ui-icons/lib/esm/FireplaceSharp.js new file mode 100644 index 00000000000000..9ba3836d185271 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireplaceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 2v20h20V2H2zm11.2 11.74c-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.69-2.11 2.37-3.39 1.32.76-.24 1.4-1.04 1.53-1.63.12-.55-.11-1.04-.2-1.59zM20 20h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" +}), 'FireplaceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FireplaceTwoTone.js b/packages/material-ui-icons/lib/esm/FireplaceTwoTone.js new file mode 100644 index 00000000000000..60a90134704e0a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FireplaceTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h2v-2h2.23c-.75-.93-1.2-2.04-1.23-3-.02-.53-.73-4.43 6-8 0 0-.8 2.61 2.15 4.63.76.52 1.85 1.48 1.85 3.37 0 1.13-.39 2.16-1.02 3H18v2h2V4H4v16z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.01 12.46c-.15.42-.15.82-.08 1.28.1.55.33 1.04.2 1.6-.13.59-.77 1.38-1.53 1.63 1.28 1.05 3.2.37 3.39-1.32.17-1.54-1.44-1.98-1.98-3.19z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M2 2v20h20V2H2zm10 16c-1.58 0-2.97-1.88-3-3.06 0-.05-.01-.13-.01-.22-.13-1.73 1-3.2 2.47-4.37.47 1.01 1.27 2.03 2.57 2.92.58.42.97.86.97 1.73 0 1.65-1.35 3-3 3zm8 2h-2v-2h-2.02c.63-.84 1.02-1.87 1.02-3 0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" +}, "2")], 'FireplaceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FirstPage.js b/packages/material-ui-icons/lib/esm/FirstPage.js new file mode 100644 index 00000000000000..b0510f8bf94b68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FirstPage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z" +}), 'FirstPage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FirstPageOutlined.js b/packages/material-ui-icons/lib/esm/FirstPageOutlined.js new file mode 100644 index 00000000000000..5887cf80feed57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FirstPageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" +}), 'FirstPageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FirstPageRounded.js b/packages/material-ui-icons/lib/esm/FirstPageRounded.js new file mode 100644 index 00000000000000..45cffc81aee2d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FirstPageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.7 15.89 13.82 12l3.89-3.89c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-4.59 4.59c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.38.38-1.02-.01-1.4zM7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1z" +}), 'FirstPageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FirstPageSharp.js b/packages/material-ui-icons/lib/esm/FirstPageSharp.js new file mode 100644 index 00000000000000..afc0b458f6f239 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FirstPageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" +}), 'FirstPageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FirstPageTwoTone.js b/packages/material-ui-icons/lib/esm/FirstPageTwoTone.js new file mode 100644 index 00000000000000..e4b0b912e26f76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FirstPageTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.41 16.59 13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" +}), 'FirstPageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitScreen.js b/packages/material-ui-icons/lib/esm/FitScreen.js new file mode 100644 index 00000000000000..f31b410b4e9f15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitScreen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h3c1.1 0 2 .9 2 2v2h-2V6h-3V4zM4 8V6h3V4H4c-1.1 0-2 .9-2 2v2h2zm16 8v2h-3v2h3c1.1 0 2-.9 2-2v-2h-2zM7 18H4v-2H2v2c0 1.1.9 2 2 2h3v-2zM18 8H6v8h12V8z" +}), 'FitScreen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitScreenOutlined.js b/packages/material-ui-icons/lib/esm/FitScreenOutlined.js new file mode 100644 index 00000000000000..c821652f3fe6ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitScreenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 16h12V8H6v8zm2-6h8v4H8v-4zm-4 5H2v3c0 1.1.9 2 2 2h3v-2H4v-3zm0-9h3V4H4c-1.1 0-2 .9-2 2v3h2V6zm16-2h-3v2h3v3h2V6c0-1.1-.9-2-2-2zm0 14h-3v2h3c1.1 0 2-.9 2-2v-3h-2v3z" +}), 'FitScreenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitScreenRounded.js b/packages/material-ui-icons/lib/esm/FitScreenRounded.js new file mode 100644 index 00000000000000..e946755f539813 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitScreenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h2c1.1 0 2 .9 2 2v2c0 .55-.45 1-1 1s-1-.45-1-1V6h-2c-.55 0-1-.45-1-1s.45-1 1-1zM4 8V6h2c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1zm16 8v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c1.1 0 2-.9 2-2v-2c0-.55-.45-1-1-1s-1 .45-1 1zM6 18H4v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h2c.55 0 1-.45 1-1s-.45-1-1-1zM16 8H8c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2z" +}), 'FitScreenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitScreenSharp.js b/packages/material-ui-icons/lib/esm/FitScreenSharp.js new file mode 100644 index 00000000000000..939b49fdcf7d07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitScreenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h5v5h-2V6h-3V4zM4 9V6h3V4H2v5h2zm16 6v3h-3v2h5v-5h-2zM7 18H4v-3H2v5h5v-2zM18 8H6v8h12V8z" +}), 'FitScreenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitScreenTwoTone.js b/packages/material-ui-icons/lib/esm/FitScreenTwoTone.js new file mode 100644 index 00000000000000..aa30a77ad84fd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitScreenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 10h8v4H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 16h12V8H6v8zm2-6h8v4H8v-4zm-4 5H2v3c0 1.1.9 2 2 2h3v-2H4v-3zm0-9h3V4H4c-1.1 0-2 .9-2 2v3h2V6zm16-2h-3v2h3v3h2V6c0-1.1-.9-2-2-2zm0 14h-3v2h3c1.1 0 2-.9 2-2v-3h-2v3z" +}, "1")], 'FitScreenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitnessCenter.js b/packages/material-ui-icons/lib/esm/FitnessCenter.js new file mode 100644 index 00000000000000..00b6b968f0a201 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitnessCenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z" +}), 'FitnessCenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitnessCenterOutlined.js b/packages/material-ui-icons/lib/esm/FitnessCenterOutlined.js new file mode 100644 index 00000000000000..ac4ec10aac8bf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitnessCenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" +}), 'FitnessCenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitnessCenterRounded.js b/packages/material-ui-icons/lib/esm/FitnessCenterRounded.js new file mode 100644 index 00000000000000..6a24ff6047aacd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitnessCenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.57 14.86.72-.72c.39-.39.39-1.02 0-1.41l-.02-.02a.9959.9959 0 0 0-1.41 0L17 15.57 8.43 7l2.86-2.86c.39-.39.39-1.02 0-1.41l-.02-.02a.9959.9959 0 0 0-1.41 0l-.72.72-.72-.72c-.39-.39-1.03-.39-1.42 0L5.57 4.14l-.72-.72c-.39-.39-1.04-.39-1.43 0-.39.39-.39 1.04 0 1.43l.72.72L2.71 7c-.39.39-.39 1.02 0 1.41l.72.72-.72.73c-.39.39-.39 1.02 0 1.41l.02.02c.39.39 1.02.39 1.41 0L7 8.43 15.57 17l-2.86 2.86c-.39.39-.39 1.02 0 1.41l.02.02c.39.39 1.02.39 1.41 0l.72-.72.72.72c.39.39 1.02.39 1.41 0l1.43-1.43.72.72c.39.39 1.04.39 1.43 0 .39-.39.39-1.04 0-1.43l-.72-.72L21.29 17c.39-.39.39-1.02 0-1.41l-.72-.73z" +}), 'FitnessCenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitnessCenterSharp.js b/packages/material-ui-icons/lib/esm/FitnessCenterSharp.js new file mode 100644 index 00000000000000..05e2a5f99e2dc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitnessCenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" +}), 'FitnessCenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FitnessCenterTwoTone.js b/packages/material-ui-icons/lib/esm/FitnessCenterTwoTone.js new file mode 100644 index 00000000000000..092c4a279aea8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FitnessCenterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.57 14.86 22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" +}), 'FitnessCenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveG.js b/packages/material-ui-icons/lib/esm/FiveG.js new file mode 100644 index 00000000000000..276f37d10aac5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveG.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 13h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4v2zM3 13h5v2H3v2h5c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h5V7H3v6z" +}), 'FiveG'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveGOutlined.js b/packages/material-ui-icons/lib/esm/FiveGOutlined.js new file mode 100644 index 00000000000000..fb01288663c8a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveGOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 13H19v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4.5v2zM3 13h5v2H3v2h5c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h5V7H3v6z" +}), 'FiveGOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveGRounded.js b/packages/material-ui-icons/lib/esm/FiveGRounded.js new file mode 100644 index 00000000000000..ce1d4867f74985 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveGRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13h1v2h-5V9h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM4 13h4v2H4c-.55 0-1 .45-1 1s.45 1 1 1h4c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" +}), 'FiveGRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveGSharp.js b/packages/material-ui-icons/lib/esm/FiveGSharp.js new file mode 100644 index 00000000000000..c37a3bdb979766 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveGSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 13h2v2h-5V9h7V7h-9v10h9v-6h-4zM3 13h5v2H3v2h7v-6H5V9h5V7H3z" +}), 'FiveGSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveGTwoTone.js b/packages/material-ui-icons/lib/esm/FiveGTwoTone.js new file mode 100644 index 00000000000000..76af79174ddd8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveGTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 13H19v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4.5v2zM3 13h5v2H3v2h5c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H5V9h5V7H3v6z" +}), 'FiveGTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveK.js b/packages/material-ui-icons/lib/esm/FiveK.js new file mode 100644 index 00000000000000..3d203bee5a3b6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'FiveK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKOutlined.js b/packages/material-ui-icons/lib/esm/FiveKOutlined.js new file mode 100644 index 00000000000000..3ab172f374d105 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 14v-1.5c0-.55-.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "1")], 'FiveKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKPlus.js b/packages/material-ui-icons/lib/esm/FiveKPlus.js new file mode 100644 index 00000000000000..3a931f77a48200 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3v-1H5V9h4.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'FiveKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKPlusOutlined.js b/packages/material-ui-icons/lib/esm/FiveKPlusOutlined.js new file mode 100644 index 00000000000000..a145ab7e6e3c83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKPlusOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 14v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "1")], 'FiveKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKPlusRounded.js b/packages/material-ui-icons/lib/esm/FiveKPlusRounded.js new file mode 100644 index 00000000000000..0ee67c5029710a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.75 7.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75zm5.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'FiveKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKPlusSharp.js b/packages/material-ui-icons/lib/esm/FiveKPlusSharp.js new file mode 100644 index 00000000000000..a087901de0bb5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6v-1.5h2.5v-1H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'FiveKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/FiveKPlusTwoTone.js new file mode 100644 index 00000000000000..853824bcf23c82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKPlusTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 4.5h2.5v-1H6V9h4v1.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6v-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 14v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "2")], 'FiveKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKRounded.js b/packages/material-ui-icons/lib/esm/FiveKRounded.js new file mode 100644 index 00000000000000..9a6b542b8ea7bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H9.5v-1H7.25c-.41 0-.75-.34-.75-.75v-2c0-.41.34-.75.75-.75h3c.41 0 .75.34.75.75s-.34.75-.75.75zm6.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'FiveKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKSharp.js b/packages/material-ui-icons/lib/esm/FiveKSharp.js new file mode 100644 index 00000000000000..44cb7d5977e749 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'FiveKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveKTwoTone.js b/packages/material-ui-icons/lib/esm/FiveKTwoTone.js new file mode 100644 index 00000000000000..b28be7aaefbf70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveKTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 4.5h3v-1h-3V9H11v1.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 14v-1.5c0-.55-.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "2")], 'FiveKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveMp.js b/packages/material-ui-icons/lib/esm/FiveMp.js new file mode 100644 index 00000000000000..15ed9715da2379 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM14.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10h3V9h-3V5.5h4.5V7zm1 7H17v1.5h-1.5z" +}), 'FiveMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveMpOutlined.js b/packages/material-ui-icons/lib/esm/FiveMpOutlined.js new file mode 100644 index 00000000000000..b7bbce96ccf4e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10.5V9c0-.55-.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "2")], 'FiveMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveMpRounded.js b/packages/material-ui-icons/lib/esm/FiveMpRounded.js new file mode 100644 index 00000000000000..0c84a907cf8944 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 6c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H11.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H13V9h-2zm1.5 8.75c0 .41-.34.75-.75.75s-.75-.33-.75-.75V14h-1v2.25c0 .42-.34.75-.75.75s-.75-.33-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.17 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'FiveMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveMpSharp.js b/packages/material-ui-icons/lib/esm/FiveMpSharp.js new file mode 100644 index 00000000000000..274cf67686b357 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'FiveMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FiveMpTwoTone.js b/packages/material-ui-icons/lib/esm/FiveMpTwoTone.js new file mode 100644 index 00000000000000..9bdfe61ed6865f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FiveMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 10h3V9h-3V5.5h4.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10zm-4 3.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10.5V9c0-.55-.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "4")], 'FiveMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FivteenMp.js b/packages/material-ui-icons/lib/esm/FivteenMp.js new file mode 100644 index 00000000000000..d182e9809993a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FivteenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM16.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10h3V9h-3V5.5h4.5V7zm-1 7H17v1.5h-1.5z" +}), 'FivteenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FivteenMpOutlined.js b/packages/material-ui-icons/lib/esm/FivteenMpOutlined.js new file mode 100644 index 00000000000000..3efccb14e2d646 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FivteenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm8-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "2")], 'FivteenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FivteenMpRounded.js b/packages/material-ui-icons/lib/esm/FivteenMpRounded.js new file mode 100644 index 00000000000000..1bdd2ece093334 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FivteenMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.5-7c0-.41.34-.75.75-.75H15V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H13.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'FivteenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FivteenMpSharp.js b/packages/material-ui-icons/lib/esm/FivteenMpSharp.js new file mode 100644 index 00000000000000..15542b7caf37af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FivteenMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'FivteenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FivteenMpTwoTone.js b/packages/material-ui-icons/lib/esm/FivteenMpTwoTone.js new file mode 100644 index 00000000000000..059993d61a9462 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FivteenMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 10h3V9h-3V5.5h4.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm8-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "4")], 'FivteenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Flag.js b/packages/material-ui-icons/lib/esm/Flag.js new file mode 100644 index 00000000000000..5f0ff78b71f3d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Flag.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6z" +}), 'Flag'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlagOutlined.js b/packages/material-ui-icons/lib/esm/FlagOutlined.js new file mode 100644 index 00000000000000..7b2ea27b48e6e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlagOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.36 6 .4 2H18v6h-3.36l-.4-2H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z" +}), 'FlagOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlagRounded.js b/packages/material-ui-icons/lib/esm/FlagRounded.js new file mode 100644 index 00000000000000..ca5b963d939ded --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlagRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.4 6-.24-1.2c-.09-.46-.5-.8-.98-.8H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5.6l.24 1.2c.09.47.5.8.98.8H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-4.6z" +}), 'FlagRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlagSharp.js b/packages/material-ui-icons/lib/esm/FlagSharp.js new file mode 100644 index 00000000000000..a5563aa1e26f9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlagSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z" +}), 'FlagSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlagTwoTone.js b/packages/material-ui-icons/lib/esm/FlagTwoTone.js new file mode 100644 index 00000000000000..f2048d60e3408c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlagTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.36 6H7v6h7.24l.4 2H18V8h-5.24z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.4 6 14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6zm3.6 8h-3.36l-.4-2H7V6h5.36l.4 2H18v6z" +}, "1")], 'FlagTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Flaky.js b/packages/material-ui-icons/lib/esm/Flaky.js new file mode 100644 index 00000000000000..cdc6dd43cfe9e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Flaky.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" +}), 'Flaky'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlakyOutlined.js b/packages/material-ui-icons/lib/esm/FlakyOutlined.js new file mode 100644 index 00000000000000..ecbf023b23dc1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlakyOutlined.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" +}), 'FlakyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlakyRounded.js b/packages/material-ui-icons/lib/esm/FlakyRounded.js new file mode 100644 index 00000000000000..a51e17b0c21689 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlakyRounded.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M12.16 15.72c-.29-.29-.29-.77 0-1.06.29-.29.77-.29 1.06 0l.82.82L16 13.52c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-2.65 2.65c-.19.19-.51.2-.7 0l-1.55-1.51zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.87 6.81l.88.88.88-.88c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06l-.88.88.88.88c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0l-.88-.88-.88.88c-.29.29-.77.29-1.06 0-.29-.29-.29-.77 0-1.06l.88-.88-.88-.88c-.29-.29-.29-.77 0-1.06.29-.3.76-.3 1.06 0zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" +}), 'FlakyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlakySharp.js b/packages/material-ui-icons/lib/esm/FlakySharp.js new file mode 100644 index 00000000000000..cd1f4fb622c31d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlakySharp.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" +}), 'FlakySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlakyTwoTone.js b/packages/material-ui-icons/lib/esm/FlakyTwoTone.js new file mode 100644 index 00000000000000..67d1ef8d4745e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlakyTwoTone.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "m14.05 17.58-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z" +}), 'FlakyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Flare.js b/packages/material-ui-icons/lib/esm/Flare.js new file mode 100644 index 00000000000000..7ba95157e480af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Flare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" +}), 'Flare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlareOutlined.js b/packages/material-ui-icons/lib/esm/FlareOutlined.js new file mode 100644 index 00000000000000..4a787d49e3ddff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" +}), 'FlareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlareRounded.js b/packages/material-ui-icons/lib/esm/FlareRounded.js new file mode 100644 index 00000000000000..adaca07bcac020 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 11H2c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zm2.47-3.94-.72-.72a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.71.71c.39.39 1.02.39 1.41 0 .39-.38.39-1.02.01-1.4zM12 1c-.56 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zm5.66 5.35a.9959.9959 0 0 0-1.41 0l-.71.71c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.71-.71c.38-.39.38-1.03 0-1.41zM17 12c0 .56.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zm-5-3c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm3.53 7.94.71.71c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41zm-9.19.71c.39.39 1.02.39 1.41 0l.71-.71c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.71.71c-.38.39-.38 1.03 0 1.41zM12 23c.56 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" +}), 'FlareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlareSharp.js b/packages/material-ui-icons/lib/esm/FlareSharp.js new file mode 100644 index 00000000000000..fbe8146aa7d20c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" +}), 'FlareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlareTwoTone.js b/packages/material-ui-icons/lib/esm/FlareTwoTone.js new file mode 100644 index 00000000000000..e05d671a74ffa2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlareTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.644 7.05 7.05 5.645l2.123 2.122-1.408 1.407zM11 1h2v6h-2zm5.242 13.834 2.12 2.12-1.406 1.408-2.12-2.12zM14.834 7.76l2.12-2.123 1.41 1.407-2.123 2.122zm-5.668 8.482-2.122 2.12-1.407-1.406 2.122-2.122zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-1 8h2v6h-2zM1 11h6v2H1zm16 0h6v2h-6z" +}), 'FlareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashAuto.js b/packages/material-ui-icons/lib/esm/FlashAuto.js new file mode 100644 index 00000000000000..2c7f7935d03d3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashAuto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" +}), 'FlashAuto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashAutoOutlined.js b/packages/material-ui-icons/lib/esm/FlashAutoOutlined.js new file mode 100644 index 00000000000000..282a0b1b9f01f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashAutoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" +}), 'FlashAutoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashAutoRounded.js b/packages/material-ui-icons/lib/esm/FlashAutoRounded.js new file mode 100644 index 00000000000000..86c89f3feb8077 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashAutoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v10c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l5.19-8.9c.39-.67-.09-1.5-.86-1.5H9l3.38-7.59c.29-.67-.2-1.41-.92-1.41H4c-.55 0-1 .45-1 1zm15-1c-.6 0-1.13.38-1.34.94L14.22 9.8c-.2.59.23 1.2.85 1.2.38 0 .72-.24.84-.6L16.4 9h3.2l.49 1.4c.13.36.46.6.84.6.62 0 1.05-.61.84-1.19l-2.44-6.86C19.13 2.38 18.6 2 18 2zm-1.15 5.65L18 4l1.15 3.65h-2.3z" +}), 'FlashAutoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashAutoSharp.js b/packages/material-ui-icons/lib/esm/FlashAutoSharp.js new file mode 100644 index 00000000000000..a21a55890f567f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashAutoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" +}), 'FlashAutoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashAutoTwoTone.js b/packages/material-ui-icons/lib/esm/FlashAutoTwoTone.js new file mode 100644 index 00000000000000..7d1e1f2b84464d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashAutoTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 2v12h3v9l7-12H9l4-9zm14 0-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2h-2zm-.15 5.65L18 4l1.15 3.65h-2.3z" +}), 'FlashAutoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOff.js b/packages/material-ui-icons/lib/esm/FlashOff.js new file mode 100644 index 00000000000000..fbf7f9d1a00f3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.27 3 2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73 3.27 3zM17 10h-4l4-8H7v2.18l8.46 8.46L17 10z" +}), 'FlashOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOffOutlined.js b/packages/material-ui-icons/lib/esm/FlashOffOutlined.js new file mode 100644 index 00000000000000..61bf9c56f66e13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" +}), 'FlashOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOffRounded.js b/packages/material-ui-icons/lib/esm/FlashOffRounded.js new file mode 100644 index 00000000000000..32903927eb809b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.12 11.5c.39-.67-.09-1.5-.86-1.5h-1.87l2.28 2.28.45-.78zm.16-8.05c.33-.67-.15-1.45-.9-1.45H8c-.55 0-1 .45-1 1v.61l6.13 6.13 3.15-6.29zm2.16 14.43L4.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L7 9.27V12c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l2.65-4.55 3.44 3.44c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" +}), 'FlashOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOffSharp.js b/packages/material-ui-icons/lib/esm/FlashOffSharp.js new file mode 100644 index 00000000000000..5f6c1630e6dcbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" +}), 'FlashOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOffTwoTone.js b/packages/material-ui-icons/lib/esm/FlashOffTwoTone.js new file mode 100644 index 00000000000000..cea6f0cfcf5f50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" +}), 'FlashOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOn.js b/packages/material-ui-icons/lib/esm/FlashOn.js new file mode 100644 index 00000000000000..07cac00112da97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 2v11h3v9l7-12h-4l4-8z" +}), 'FlashOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOnOutlined.js b/packages/material-ui-icons/lib/esm/FlashOnOutlined.js new file mode 100644 index 00000000000000..d8e5484f0f4887 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 2v11h3v9l7-12h-4l3-8z" +}), 'FlashOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOnRounded.js b/packages/material-ui-icons/lib/esm/FlashOnRounded.js new file mode 100644 index 00000000000000..482d671a42d03a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3v9c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l5.19-8.9c.39-.67-.09-1.5-.86-1.5H13l2.49-6.65c.25-.65-.23-1.35-.93-1.35H8c-.55 0-1 .45-1 1z" +}), 'FlashOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOnSharp.js b/packages/material-ui-icons/lib/esm/FlashOnSharp.js new file mode 100644 index 00000000000000..08ff22e0b08d8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 2v11h3v9l7-12h-4l3-8z" +}), 'FlashOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashOnTwoTone.js b/packages/material-ui-icons/lib/esm/FlashOnTwoTone.js new file mode 100644 index 00000000000000..16c6c62adc05bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10h-4l3-8H7v11h3v9z" +}), 'FlashOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOff.js b/packages/material-ui-icons/lib/esm/FlashlightOff.js new file mode 100644 index 00000000000000..19fb16c1279897 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 5V2H6v1.17L7.83 5zm-2 6 2-3V7H9.83L16 13.17zM2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81z" +}), 'FlashlightOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOffOutlined.js b/packages/material-ui-icons/lib/esm/FlashlightOffOutlined.js new file mode 100644 index 00000000000000..403819bec8d0c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81zM14 20h-4v-7.17l4 4V20zm2-16v1H7.83l2 2H16v.39l-2 3.01v.77l2 2V11l2-3V2H6v1.17l.83.83z" +}), 'FlashlightOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOffRounded.js b/packages/material-ui-icons/lib/esm/FlashlightOffRounded.js new file mode 100644 index 00000000000000..06dc0030362371 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 5V4c0-1.1-.9-2-2-2H8c-.86 0-1.58.54-1.87 1.3L7.83 5H18zm-2 6 2-3V7H9.83L16 13.17zM2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9V20c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-1.17l3.07 3.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0z" +}), 'FlashlightOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOffSharp.js b/packages/material-ui-icons/lib/esm/FlashlightOffSharp.js new file mode 100644 index 00000000000000..fd9a865a8201df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 5V2H6v1.17L7.83 5zm-2 6 2-3V7H9.83L16 13.17zM2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81z" +}), 'FlashlightOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOffTwoTone.js b/packages/material-ui-icons/lib/esm/FlashlightOffTwoTone.js new file mode 100644 index 00000000000000..0978d475d786a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 7H9.83L14 11.17v-.77l2-3.01zm-6 5.83V20h4v-3.17zM16 5V4H6.83l1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81zM14 20h-4v-7.17l4 4V20zm2-16v1H7.83l2 2H16v.39l-2 3.01v.77l2 2V11l2-3V2H6v1.17l.83.83z" +}, "1")], 'FlashlightOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOn.js b/packages/material-ui-icons/lib/esm/FlashlightOn.js new file mode 100644 index 00000000000000..cd3a793cbfca14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2h12v3H6zm0 5v1l2 3v11h8V11l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'FlashlightOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOnOutlined.js b/packages/material-ui-icons/lib/esm/FlashlightOnOutlined.js new file mode 100644 index 00000000000000..2a8a8a38067d73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOnOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 2H6v6l2 3v11h8V11l2-3V2zm-2 2v1H8V4h8zm-2 6.4V20h-4v-9.61l-2-3V7h8v.39l-2 3.01z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "14", + r: "1.5" +}, "1")], 'FlashlightOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOnRounded.js b/packages/material-ui-icons/lib/esm/FlashlightOnRounded.js new file mode 100644 index 00000000000000..c9119ff28f4026 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 4v1h12V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm0 3v1l2 3v9c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-9l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'FlashlightOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOnSharp.js b/packages/material-ui-icons/lib/esm/FlashlightOnSharp.js new file mode 100644 index 00000000000000..81c016037b281a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2h12v3H6zm0 5v1l2 3v11h8V11l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'FlashlightOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlashlightOnTwoTone.js b/packages/material-ui-icons/lib/esm/FlashlightOnTwoTone.js new file mode 100644 index 00000000000000..8294aad8e5a041 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlashlightOnTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8 7.39 2 3V20h4v-9.6l2-3.01V7H8v.39zm4 5.11c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM8 4h8v1H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 2v6l2 3v11h8V11l2-3V2H6zm10 5.39-2 3.01V20h-4v-9.61l-2-3V7h8v.39zM16 5H8V4h8v1z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "14", + r: "1.5" +}, "2")], 'FlashlightOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Flatware.js b/packages/material-ui-icons/lib/esm/Flatware.js new file mode 100644 index 00000000000000..2e5d1aa7522dfa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Flatware.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v10h2V11c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" +}), 'Flatware'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlatwareOutlined.js b/packages/material-ui-icons/lib/esm/FlatwareOutlined.js new file mode 100644 index 00000000000000..13372bf37906c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlatwareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v10h2V11c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" +}), 'FlatwareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlatwareRounded.js b/packages/material-ui-icons/lib/esm/FlatwareRounded.js new file mode 100644 index 00000000000000..60ec2c7d824459 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlatwareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7.08c0 1.77-.84 3.25-2 3.82V20c0 .55-.45 1-1 1s-1-.45-1-1v-9.1c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zm2.27-3.9c-.63-.19-1.27.31-1.27.97V20c0 .55.45 1 1 1s1-.45 1-1v-7h1c.55 0 1-.45 1-1V7c0-1.46-.86-3.26-2.73-3.82zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v9c0 .55.45 1 1 1s1-.45 1-1v-9c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" +}), 'FlatwareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlatwareSharp.js b/packages/material-ui-icons/lib/esm/FlatwareSharp.js new file mode 100644 index 00000000000000..68a6c21657fb5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlatwareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3h-.72v4h-.84V3H5.28v4h-.84V3H3v8h2v10h2V11h2V3h-.72z" +}), 'FlatwareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlatwareTwoTone.js b/packages/material-ui-icons/lib/esm/FlatwareTwoTone.js new file mode 100644 index 00000000000000..9fdf862deb373f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlatwareTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3c-.4 0-.72.32-.72.72V7h-.84V3.72C6.72 3.32 6.4 3 6 3s-.72.32-.72.72V7h-.84V3.72c0-.4-.32-.72-.72-.72S3 3.32 3 3.72V9c0 1.1.9 2 2 2v10h2V11c1.1 0 2-.9 2-2V3.72c0-.4-.32-.72-.72-.72z" +}), 'FlatwareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Flight.js b/packages/material-ui-icons/lib/esm/Flight.js new file mode 100644 index 00000000000000..ce521eae983114 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Flight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" +}), 'Flight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightLand.js b/packages/material-ui-icons/lib/esm/FlightLand.js new file mode 100644 index 00000000000000..e1343003f64127 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightLand.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" +}), 'FlightLand'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightLandOutlined.js b/packages/material-ui-icons/lib/esm/FlightLandOutlined.js new file mode 100644 index 00000000000000..31e0bd778936dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightLandOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" +}), 'FlightLandOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightLandRounded.js b/packages/material-ui-icons/lib/esm/FlightLandRounded.js new file mode 100644 index 00000000000000..16c022f3335512 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightLandRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 19h-17c-.55 0-1 .45-1 1s.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1zM3.51 11.61l15.83 4.24c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.58-8.45c-.11-.36-.39-.63-.75-.73-.68-.18-1.35.33-1.35 1.04v6.88L5.15 8.95 4.4 7.09c-.12-.29-.36-.51-.67-.59l-.33-.09c-.32-.09-.63.15-.63.48v3.75c0 .46.3.85.74.97z" +}), 'FlightLandRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightLandSharp.js b/packages/material-ui-icons/lib/esm/FlightLandSharp.js new file mode 100644 index 00000000000000..43d0540f5fdd20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightLandSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" +}), 'FlightLandSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightLandTwoTone.js b/packages/material-ui-icons/lib/esm/FlightLandTwoTone.js new file mode 100644 index 00000000000000..e88631014c86bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightLandTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" +}), 'FlightLandTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightOutlined.js b/packages/material-ui-icons/lib/esm/FlightOutlined.js new file mode 100644 index 00000000000000..38043d8fa22fae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" +}), 'FlightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightRounded.js b/packages/material-ui-icons/lib/esm/FlightRounded.js new file mode 100644 index 00000000000000..83bf21131a29e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 14.58c0-.36-.19-.69-.49-.89L13 9V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-7.51 4.69c-.3.19-.49.53-.49.89 0 .7.68 1.21 1.36 1L10 13.5V19l-1.8 1.35c-.13.09-.2.24-.2.4v.59c0 .33.32.57.64.48L11.5 21l2.86.82c.32.09.64-.15.64-.48v-.59c0-.16-.07-.31-.2-.4L13 19v-5.5l6.64 2.08c.68.21 1.36-.3 1.36-1z" +}), 'FlightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightSharp.js b/packages/material-ui-icons/lib/esm/FlightSharp.js new file mode 100644 index 00000000000000..8e4bc774861353 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" +}), 'FlightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightTakeoff.js b/packages/material-ui-icons/lib/esm/FlightTakeoff.js new file mode 100644 index 00000000000000..6a7242d789674f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightTakeoff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49s7.12-1.9 16.57-4.43c.81-.23 1.28-1.05 1.07-1.85z" +}), 'FlightTakeoff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightTakeoffOutlined.js b/packages/material-ui-icons/lib/esm/FlightTakeoffOutlined.js new file mode 100644 index 00000000000000..1f6e6c143f115d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightTakeoffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" +}), 'FlightTakeoffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightTakeoffRounded.js b/packages/material-ui-icons/lib/esm/FlightTakeoffRounded.js new file mode 100644 index 00000000000000..353bcaf0d8ac7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightTakeoffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 19h-17c-.55 0-1 .45-1 1s.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1zm1.57-9.36c-.22-.8-1.04-1.27-1.84-1.06L14.92 10 8.46 3.98c-.27-.26-.66-.35-1.02-.25-.68.19-1 .97-.65 1.58l3.44 5.96-4.97 1.33-1.57-1.24c-.25-.19-.57-.26-.88-.18l-.33.09c-.32.08-.47.45-.3.73l1.88 3.25c.23.39.69.58 1.12.47L21 11.48c.8-.22 1.28-1.04 1.07-1.84z" +}), 'FlightTakeoffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightTakeoffSharp.js b/packages/material-ui-icons/lib/esm/FlightTakeoffSharp.js new file mode 100644 index 00000000000000..e3634aa48af23a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightTakeoffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" +}), 'FlightTakeoffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightTakeoffTwoTone.js b/packages/material-ui-icons/lib/esm/FlightTakeoffTwoTone.js new file mode 100644 index 00000000000000..e876a647fe8b09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightTakeoffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" +}), 'FlightTakeoffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlightTwoTone.js b/packages/material-ui-icons/lib/esm/FlightTwoTone.js new file mode 100644 index 00000000000000..39c683d37a02c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 19-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19z" +}), 'FlightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Flip.js b/packages/material-ui-icons/lib/esm/Flip.js new file mode 100644 index 00000000000000..52df2900073b44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Flip.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" +}), 'Flip'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraAndroid.js b/packages/material-ui-icons/lib/esm/FlipCameraAndroid.js new file mode 100644 index 00000000000000..55c6c4468e176c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraAndroid.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" +}, "1")], 'FlipCameraAndroid'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraAndroidOutlined.js b/packages/material-ui-icons/lib/esm/FlipCameraAndroidOutlined.js new file mode 100644 index 00000000000000..38962aef14b30a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraAndroidOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" +}, "1")], 'FlipCameraAndroidOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraAndroidRounded.js b/packages/material-ui-icons/lib/esm/FlipCameraAndroidRounded.js new file mode 100644 index 00000000000000..88abc324dacba3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraAndroidRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 9c0-.55-.45-1-1-1H5.09C6.47 5.61 9.05 4 12 4c3.49 0 6.45 2.24 7.54 5.36.14.39.53.64.94.64.68 0 1.18-.67.96-1.31C20.07 4.79 16.36 2 12 2 8.73 2 5.82 3.58 4 6.01V5c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1zm8 6c0 .55.45 1 1 1h1.91c-1.38 2.39-3.96 4-6.91 4-3.49 0-6.45-2.24-7.54-5.36-.14-.39-.53-.64-.94-.64-.68 0-1.18.67-.96 1.31C3.93 19.21 7.64 22 12 22c3.27 0 6.18-1.58 8-4.01V19c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1z" +}, "1")], 'FlipCameraAndroidRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraAndroidSharp.js b/packages/material-ui-icons/lib/esm/FlipCameraAndroidSharp.js new file mode 100644 index 00000000000000..c7e979023b94e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraAndroidSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" +}, "1")], 'FlipCameraAndroidSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraAndroidTwoTone.js b/packages/material-ui-icons/lib/esm/FlipCameraAndroidTwoTone.js new file mode 100644 index 00000000000000..44f7a584831eaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraAndroidTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8 8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6V8zm8 6v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" +}, "2")], 'FlipCameraAndroidTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraIos.js b/packages/material-ui-icons/lib/esm/FlipCameraIos.js new file mode 100644 index 00000000000000..62cbdd38e30814 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraIos.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm4.5-2.5L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2l-2.5 2.5z" +}), 'FlipCameraIos'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraIosOutlined.js b/packages/material-ui-icons/lib/esm/FlipCameraIosOutlined.js new file mode 100644 index 00000000000000..7eb96f4a645c94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraIosOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 17c-2.21 0-4-1.79-4-4h2l-2.5-2.5L5 13h2c0 2.76 2.24 5 5 5 .86 0 1.65-.24 2.36-.62l-.74-.74c-.49.23-1.04.36-1.62.36zm0-9c-.86 0-1.65.24-2.36.62l.74.73C10.87 9.13 11.42 9 12 9c2.21 0 4 1.79 4 4h-2l2.5 2.5L19 13h-2c0-2.76-2.24-5-5-5z" +}, "1")], 'FlipCameraIosOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraIosRounded.js b/packages/material-ui-icons/lib/esm/FlipCameraIosRounded.js new file mode 100644 index 00000000000000..da91150b6c9263 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraIosRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6.33 12.7c-.52.19-1.08.3-1.67.3-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .46 0 .91-.08 1.32-.23.19-.07.39-.03.53.11.26.26.16.69-.18.82zm2.83-2.2L14 13h2c0-2.21-1.79-4-4-4-.46 0-.91.08-1.32.23-.19.07-.39.03-.53-.11-.26-.26-.16-.69.18-.82.52-.19 1.08-.3 1.67-.3 2.76 0 5 2.24 5 5h2l-2.5 2.5z" +}), 'FlipCameraIosRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraIosSharp.js b/packages/material-ui-icons/lib/esm/FlipCameraIosSharp.js new file mode 100644 index 00000000000000..d3262ca64a57ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraIosSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm4.5-2.5L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2l-2.5 2.5z" +}), 'FlipCameraIosSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipCameraIosTwoTone.js b/packages/material-ui-icons/lib/esm/FlipCameraIosTwoTone.js new file mode 100644 index 00000000000000..e2005699fcb214 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipCameraIosTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.12 5H9.88L8.05 7H4v12h16V7h-4.05l-1.83-2zM12 18c-2.76 0-5-2.24-5-5H5l2.49-2.49.01-.01L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm7-5-2.49 2.49-.01.01L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 17c-2.21 0-4-1.79-4-4h2l-2.5-2.5-.01.01L5 13h2c0 2.76 2.24 5 5 5 .86 0 1.65-.24 2.36-.62l-.74-.74c-.49.23-1.04.36-1.62.36zm0-9c-.86 0-1.65.24-2.36.62l.74.73C10.87 9.13 11.42 9 12 9c2.21 0 4 1.79 4 4h-2l2.5 2.5.01-.01L19 13h-2c0-2.76-2.24-5-5-5z" +}, "2")], 'FlipCameraIosTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipOutlined.js b/packages/material-ui-icons/lib/esm/FlipOutlined.js new file mode 100644 index 00000000000000..a329b1b7c6895e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" +}), 'FlipOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipRounded.js b/packages/material-ui-icons/lib/esm/FlipRounded.js new file mode 100644 index 00000000000000..66e49a703f03bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-7 20c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v20c0 .55.45 1 1 1zm7-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z" +}), 'FlipRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipSharp.js b/packages/material-ui-icons/lib/esm/FlipSharp.js new file mode 100644 index 00000000000000..a9c2accbddf3e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 3v18h6v-2H5V5h4V3H3zm16 0v2h2V3h-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8h2v-2h-2v2z" +}), 'FlipSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToBack.js b/packages/material-ui-icons/lib/esm/FlipToBack.js new file mode 100644 index 00000000000000..8cff2d1e69e0ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToBack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" +}), 'FlipToBack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToBackOutlined.js b/packages/material-ui-icons/lib/esm/FlipToBackOutlined.js new file mode 100644 index 00000000000000..4b9fc3a866e621 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToBackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" +}), 'FlipToBackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToBackRounded.js b/packages/material-ui-icons/lib/esm/FlipToBackRounded.js new file mode 100644 index 00000000000000..3fbdbdf9509ada --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToBackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM4 7c-.55 0-1 .45-1 1v11c0 1.1.9 2 2 2h11c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1V8c0-.55-.45-1-1-1zm11-2h2V3h-2v2zm0 12h2v-2h-2v2z" +}), 'FlipToBackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToBackSharp.js b/packages/material-ui-icons/lib/esm/FlipToBackSharp.js new file mode 100644 index 00000000000000..f6297111f31d74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToBackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm4 4h-2v2h2v-2zm0-12h-2v2h2V3zM9 3H7v2h2V3zm12 0h-2v2h2V3zm0 12h-2v2h2v-2zM9 15H7v2h2v-2zm10-2h2v-2h-2v2zm0-4h2V7h-2v2zM5 7H3v14h14v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" +}), 'FlipToBackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToBackTwoTone.js b/packages/material-ui-icons/lib/esm/FlipToBackTwoTone.js new file mode 100644 index 00000000000000..5fd4aaa8ad0f20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToBackTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" +}), 'FlipToBackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToFront.js b/packages/material-ui-icons/lib/esm/FlipToFront.js new file mode 100644 index 00000000000000..ffbf463975ba50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToFront.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" +}), 'FlipToFront'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToFrontOutlined.js b/packages/material-ui-icons/lib/esm/FlipToFrontOutlined.js new file mode 100644 index 00000000000000..c931e36a27d94f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToFrontOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" +}), 'FlipToFrontOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToFrontRounded.js b/packages/material-ui-icons/lib/esm/FlipToFrontRounded.js new file mode 100644 index 00000000000000..a99743496983c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToFrontRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 12h-8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-7 6h2v-2h-2v2zm-4 0h2v-2H7v2z" +}), 'FlipToFrontRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToFrontSharp.js b/packages/material-ui-icons/lib/esm/FlipToFrontSharp.js new file mode 100644 index 00000000000000..ce4dba080ab60d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToFrontSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm12 12h2v-2h-2v2zm6-18H7v14h14V3zm-2 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2zm-4 0h2v-2H3v2z" +}), 'FlipToFrontSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipToFrontTwoTone.js b/packages/material-ui-icons/lib/esm/FlipToFrontTwoTone.js new file mode 100644 index 00000000000000..7b6bc165504d79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipToFrontTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z" +}), 'FlipToFrontTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlipTwoTone.js b/packages/material-ui-icons/lib/esm/FlipTwoTone.js new file mode 100644 index 00000000000000..a429834ca809e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlipTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h2v2h-2zm0 14c1.1 0 2-.9 2-2h-2v2zm0-6h2v2h-2zm0-4h2v2h-2zM9 5V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4v-2H5V5h4zm10-2v2h2c0-1.1-.9-2-2-2zm-8-2h2v22h-2zm4 2h2v2h-2zm0 16h2v2h-2z" +}), 'FlipTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Flourescent.js b/packages/material-ui-icons/lib/esm/Flourescent.js new file mode 100644 index 00000000000000..06525bccc3f245 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Flourescent.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 9h14v6H5zm6-7h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" +}), 'Flourescent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlourescentOutlined.js b/packages/material-ui-icons/lib/esm/FlourescentOutlined.js new file mode 100644 index 00000000000000..8020c90c9cf062 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlourescentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-9h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" +}), 'FlourescentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlourescentRounded.js b/packages/material-ui-icons/lib/esm/FlourescentRounded.js new file mode 100644 index 00000000000000..efc856e933b6d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlourescentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 15h10c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2zm5-13c-.56 0-1 .45-1 1v1c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1zm7.79 3.3a.9959.9959 0 0 0-1.41 0l-.38.38c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.38-.38c.39-.38.39-1.02 0-1.41zM12 22c.56 0 1-.45 1-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1zm5.99-3.59.38.39c.39.39 1.02.39 1.41 0l.01-.01c.39-.39.39-1.02 0-1.41L19.4 17a.9959.9959 0 0 0-1.41 0c-.39.4-.39 1.03 0 1.41zM6 5.69l-.39-.38a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.39.38c.39.39 1.02.39 1.41 0 .38-.39.38-1.03 0-1.41zm-1.8 13.1c.39.4 1.03.4 1.42 0L6 18.4c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.39.39c-.39.39-.39 1.02 0 1.41z" +}), 'FlourescentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlourescentSharp.js b/packages/material-ui-icons/lib/esm/FlourescentSharp.js new file mode 100644 index 00000000000000..f1c50b5f963881 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlourescentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 9h14v6H5zm6-7h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" +}), 'FlourescentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlourescentTwoTone.js b/packages/material-ui-icons/lib/esm/FlourescentTwoTone.js new file mode 100644 index 00000000000000..0fe74c28fa7952 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlourescentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 11h10v2H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-9h2v3h-2zm6.2863 4.3989 1.7897-1.8024 1.4192 1.4092-1.7897 1.8024zM11 19h2v3h-2zm6.29-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM3.4947 6.0091 4.902 4.602l1.789 1.789-1.4074 1.407zm-.0026 12.0672 1.8024-1.7897 1.4092 1.4192-1.8023 1.7897z" +}, "1")], 'FlourescentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlutterDash.js b/packages/material-ui-icons/lib/esm/FlutterDash.js new file mode 100644 index 00000000000000..4aa03c308a9e27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlutterDash.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" +}), 'FlutterDash'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlutterDashOutlined.js b/packages/material-ui-icons/lib/esm/FlutterDashOutlined.js new file mode 100644 index 00000000000000..4f42d2d4040a0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlutterDashOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" +}), 'FlutterDashOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlutterDashRounded.js b/packages/material-ui-icons/lib/esm/FlutterDashRounded.js new file mode 100644 index 00000000000000..07ae75ca4ed663 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlutterDashRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" +}), 'FlutterDashRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlutterDashSharp.js b/packages/material-ui-icons/lib/esm/FlutterDashSharp.js new file mode 100644 index 00000000000000..81697858d990b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlutterDashSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" +}), 'FlutterDashSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FlutterDashTwoTone.js b/packages/material-ui-icons/lib/esm/FlutterDashTwoTone.js new file mode 100644 index 00000000000000..bc034434c45bf5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FlutterDashTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53-.18.01-.35-.07-.45-.22-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85 1.28-1.78 3.26-3.02 5.55-3.29.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92-.21-.47-.34-.99-.34-1.54C5.75 7.68 7.43 6 9.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05C6.26 13.06 6 14 6 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" +}, "1")], 'FlutterDashTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdBad.js b/packages/material-ui-icons/lib/esm/FmdBad.js new file mode 100644 index 00000000000000..e9b4a098196f76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdBad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm1 13h-2v-2h2v2zm0-4h-2V6h2v5z" +}), 'FmdBad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdBadOutlined.js b/packages/material-ui-icons/lib/esm/FmdBadOutlined.js new file mode 100644 index 00000000000000..56f3555f7a2d90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdBadOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 17.33c-4.05-3.7-6-6.79-6-9.14C6 6.57 8.65 4 12 4s6 2.57 6 6.2c0 2.34-1.95 5.44-6 9.13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 6h2v5h-2zm0 7h2v2h-2z" +}, "1")], 'FmdBadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdBadRounded.js b/packages/material-ui-icons/lib/esm/FmdBadRounded.js new file mode 100644 index 00000000000000..6e8937484bf2a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdBadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" +}), 'FmdBadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdBadSharp.js b/packages/material-ui-icons/lib/esm/FmdBadSharp.js new file mode 100644 index 00000000000000..c6c074a0e708fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdBadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm1 13h-2v-2h2v2zm0-4h-2V6h2v5z" +}), 'FmdBadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdBadTwoTone.js b/packages/material-ui-icons/lib/esm/FmdBadTwoTone.js new file mode 100644 index 00000000000000..3cb7a40a76456b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdBadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 15h2v-2h-2v2zm0-4h2V6h-2v5zm1-9c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 17.33c-4.05-3.7-6-6.79-6-9.14C6 6.57 8.65 4 12 4s6 2.57 6 6.2c0 2.34-1.95 5.44-6 9.13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 19.33c4.05-3.7 6-6.79 6-9.14C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.13zM11 6h2v5h-2V6zm0 7h2v2h-2v-2z", + opacity: ".3" +}, "1")], 'FmdBadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdGood.js b/packages/material-ui-icons/lib/esm/FmdGood.js new file mode 100644 index 00000000000000..41d4e7727cc67b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdGood.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'FmdGood'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdGoodOutlined.js b/packages/material-ui-icons/lib/esm/FmdGoodOutlined.js new file mode 100644 index 00000000000000..fc9449275f1af0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdGoodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'FmdGoodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdGoodRounded.js b/packages/material-ui-icons/lib/esm/FmdGoodRounded.js new file mode 100644 index 00000000000000..16b15940bf339a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdGoodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'FmdGoodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdGoodSharp.js b/packages/material-ui-icons/lib/esm/FmdGoodSharp.js new file mode 100644 index 00000000000000..828bbe1cb8beee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdGoodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'FmdGoodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FmdGoodTwoTone.js b/packages/material-ui-icons/lib/esm/FmdGoodTwoTone.js new file mode 100644 index 00000000000000..7b9a24ebda4742 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FmdGoodTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14C18 6.57 15.35 4 12 4zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 17.33c-4.05-3.7-6-6.79-6-9.14C6 6.57 8.65 4 12 4s6 2.57 6 6.2c0 2.34-1.95 5.44-6 9.13z" +}, "1")], 'FmdGoodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Folder.js b/packages/material-ui-icons/lib/esm/Folder.js new file mode 100644 index 00000000000000..d12cda401cec0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Folder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" +}), 'Folder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderOpen.js b/packages/material-ui-icons/lib/esm/FolderOpen.js new file mode 100644 index 00000000000000..4a7ba36d1acf6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderOpen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" +}), 'FolderOpen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderOpenOutlined.js b/packages/material-ui-icons/lib/esm/FolderOpenOutlined.js new file mode 100644 index 00000000000000..ed649e7ed465eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderOpenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" +}), 'FolderOpenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderOpenRounded.js b/packages/material-ui-icons/lib/esm/FolderOpenRounded.js new file mode 100644 index 00000000000000..86699a34e3b978 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderOpenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 12H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" +}), 'FolderOpenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderOpenSharp.js b/packages/material-ui-icons/lib/esm/FolderOpenSharp.js new file mode 100644 index 00000000000000..43c6c6573d51cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderOpenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H12l-2-2H2v16h20V6zm-2 12H4V8h16v10z" +}), 'FolderOpenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderOpenTwoTone.js b/packages/material-ui-icons/lib/esm/FolderOpenTwoTone.js new file mode 100644 index 00000000000000..0833049bb3b49f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderOpenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 8h16v10H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z" +}, "1")], 'FolderOpenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderOutlined.js b/packages/material-ui-icons/lib/esm/FolderOutlined.js new file mode 100644 index 00000000000000..7ba6498e056e4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.17 6 2 2H20v10H4V6h5.17M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z" +}), 'FolderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderRounded.js b/packages/material-ui-icons/lib/esm/FolderRounded.js new file mode 100644 index 00000000000000..6cd3709d6a050c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.59 4.59C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-1.41-1.41z" +}), 'FolderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderShared.js b/packages/material-ui-icons/lib/esm/FolderShared.js new file mode 100644 index 00000000000000..bf35ba09300943 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderShared.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" +}), 'FolderShared'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSharedOutlined.js b/packages/material-ui-icons/lib/esm/FolderSharedOutlined.js new file mode 100644 index 00000000000000..ab2c5676430580 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSharedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 4h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1z" +}), 'FolderSharedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSharedRounded.js b/packages/material-ui-icons/lib/esm/FolderSharedRounded.js new file mode 100644 index 00000000000000..85d61404e9848c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSharedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" +}), 'FolderSharedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSharedSharp.js b/packages/material-ui-icons/lib/esm/FolderSharedSharp.js new file mode 100644 index 00000000000000..f5021d8f37b9b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSharedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H12l-2-2H2v16h20V6zm-7 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" +}), 'FolderSharedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSharedTwoTone.js b/packages/material-ui-icons/lib/esm/FolderSharedTwoTone.js new file mode 100644 index 00000000000000..fb806fb344fe12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSharedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.17 8-.59-.59L9.17 6H4v12h16V8h-8.83zM19 16v1h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm-4-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 3v1h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2z" +}, "1")], 'FolderSharedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSharp.js b/packages/material-ui-icons/lib/esm/FolderSharp.js new file mode 100644 index 00000000000000..12acf213dce68d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4H2v16h20V6H12l-2-2z" +}), 'FolderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSpecial.js b/packages/material-ui-icons/lib/esm/FolderSpecial.js new file mode 100644 index 00000000000000..d553705ca21b40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSpecial.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z" +}), 'FolderSpecial'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSpecialOutlined.js b/packages/material-ui-icons/lib/esm/FolderSpecialOutlined.js new file mode 100644 index 00000000000000..a2e6239232a3dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSpecialOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z" +}), 'FolderSpecialOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSpecialRounded.js b/packages/material-ui-icons/lib/esm/FolderSpecialRounded.js new file mode 100644 index 00000000000000..614e15b15bf95a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSpecialRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-3.06 10.41L15 15.28l-1.94 1.13c-.38.22-.84-.12-.74-.55l.51-2.2-1.69-1.46c-.33-.29-.16-.84.28-.88l2.23-.19.88-2.06c.17-.4.75-.4.92 0l.88 2.06 2.23.19c.44.04.62.59.28.88l-1.69 1.46.51 2.2c.11.43-.35.77-.72.55z" +}), 'FolderSpecialRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSpecialSharp.js b/packages/material-ui-icons/lib/esm/FolderSpecialSharp.js new file mode 100644 index 00000000000000..6d76d30997e447 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSpecialSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H12l-2-2H2v16h20V6zm-4.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z" +}), 'FolderSpecialSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderSpecialTwoTone.js b/packages/material-ui-icons/lib/esm/FolderSpecialTwoTone.js new file mode 100644 index 00000000000000..5b277679e461be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderSpecialTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.17 8-2-2H4v12h16V8h-8.83zM15 9l1.19 2.79 3.03.26-2.3 1.99.69 2.96L15 15.47 12.39 17l.69-2.96-2.3-1.99 3.03-.26L15 9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z" +}, "1")], 'FolderSpecialTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FolderTwoTone.js b/packages/material-ui-icons/lib/esm/FolderTwoTone.js new file mode 100644 index 00000000000000..e500c99459fe9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FolderTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.17 8-.58-.59L9.17 6H4v12h16V8h-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10z" +}, "1")], 'FolderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FollowTheSigns.js b/packages/material-ui-icons/lib/esm/FollowTheSigns.js new file mode 100644 index 00000000000000..4d0faeaa9e6e8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FollowTheSigns.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z" +}), 'FollowTheSigns'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FollowTheSignsOutlined.js b/packages/material-ui-icons/lib/esm/FollowTheSignsOutlined.js new file mode 100644 index 00000000000000..7b44ce5226f727 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FollowTheSignsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z" +}), 'FollowTheSignsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FollowTheSignsRounded.js b/packages/material-ui-icons/lib/esm/FollowTheSignsRounded.js new file mode 100644 index 00000000000000..f5db441cc48be4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FollowTheSignsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3.23 21.81c-.12.62.35 1.19.98 1.19h.09c.47 0 .88-.33.98-.79L6.85 15 9 17v5c0 .55.45 1 1 1s1-.45 1-1v-6.14c0-.27-.11-.52-.29-.71L8.95 13.4l.6-3c1.07 1.32 2.58 2.23 4.31 2.51.6.1 1.14-.39 1.14-1 0-.49-.36-.9-.84-.98-1.49-.25-2.75-1.15-3.51-2.38l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15l-4.63 1.9c-.37.15-.62.52-.62.92V12c0 .55.45 1 1 1s1-.45 1-1V9.65l1.75-.75M21 2h-7c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h2.75v13.25c0 .41.34.75.75.75s.75-.34.75-.75V9H21c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-.85 3.85-1.28 1.29c-.31.32-.85.09-.85-.35v-.54h-2.76c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.76v-.54c0-.45.54-.67.85-.35l1.28 1.29c.19.19.19.51 0 .7z" +}), 'FollowTheSignsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FollowTheSignsSharp.js b/packages/material-ui-icons/lib/esm/FollowTheSignsSharp.js new file mode 100644 index 00000000000000..c1b675b5a6300f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FollowTheSignsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z" +}), 'FollowTheSignsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FollowTheSignsTwoTone.js b/packages/material-ui-icons/lib/esm/FollowTheSignsTwoTone.js new file mode 100644 index 00000000000000..80a55f8d005401 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FollowTheSignsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.64 7.75V6h-3.51V4.5h3.51V2.75l2.49 2.5-2.49 2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.12 5.25c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.74 3.4-2.75 14.1h2.1l1.75-8 2.15 2v6h2V15.2l-2.05-2.05.6-3c1.3 1.6 3.25 2.6 5.45 2.6v-2c-1.85 0-3.45-1-4.35-2.45l-.96-1.6c-.35-.6-1-.95-1.7-.95-.25 0-.5.05-.75.15L1.62 8.05v4.7h2V9.4l1.76-.75m7.24-6.9v7h3.75v14h1.5v-14h3.75v-7h-9zm5.02 6V6h-3.51V4.5h3.51V2.75l2.49 2.5-2.49 2.5z" +}, "1")], 'FollowTheSignsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownload.js b/packages/material-ui-icons/lib/esm/FontDownload.js new file mode 100644 index 00000000000000..84b34e1eaac226 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.93 13.5h4.14L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.05 16.5-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z" +}), 'FontDownload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadOff.js b/packages/material-ui-icons/lib/esm/FontDownloadOff.js new file mode 100644 index 00000000000000..80cff410e277a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.58 9.75-.87-.87.23-.66h.1l.54 1.53zm-2.23-2.23L10.92 6h2.14l2.55 6.79L22 19.17V4c0-1.1-.9-2-2-2H4.83l5.52 5.52zm10.14 15.79L19.17 22H4c-1.1 0-2-.9-2-2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zm-8.39-8.38-3.3-3.3L6.41 18h2.08l1.09-3.07h2.52z" +}), 'FontDownloadOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadOffOutlined.js b/packages/material-ui-icons/lib/esm/FontDownloadOffOutlined.js new file mode 100644 index 00000000000000..2e2de1dd0a6314 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.83 2H20c1.1 0 2 .9 2 2v15.17l-2-2V4H6.83l-2-2zm6.09 4-.57 1.52 1.36 1.36.23-.66h.1l.54 1.52 3.04 3.04L13.07 6h-2.15zm9.57 17.31L19.17 22H4c-1.1 0-2-.9-2-2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM17.17 20l-5.07-5.07H9.58L8.49 18H6.41l2.39-6.37L4 6.83V20h13.17z" +}), 'FontDownloadOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadOffRounded.js b/packages/material-ui-icons/lib/esm/FontDownloadOffRounded.js new file mode 100644 index 00000000000000..014ad6bb55d981 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.58 9.75-.87-.87.23-.66h.1l.54 1.53zm-2.23-2.23.2-.52c.23-.6.8-1 1.45-1s1.22.4 1.45 1l2.17 5.79L22 19.17V4c0-1.1-.9-2-2-2H4.83l5.52 5.52zm10.84 15.09c-.39.39-1.02.39-1.41 0l-.61-.61H4c-1.1 0-2-.9-2-2V4.83l-.61-.61a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.4.39.4 1.03.01 1.42zm-9.09-7.68-3.3-3.3-1.9 5.07c-.23.63.23 1.3.9 1.3h.01c.41 0 .77-.26.9-.64l.86-2.43h2.53z" +}), 'FontDownloadOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadOffSharp.js b/packages/material-ui-icons/lib/esm/FontDownloadOffSharp.js new file mode 100644 index 00000000000000..bf536921f80c98 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.58 9.75-.87-.87.23-.66h.1l.54 1.53zm7.91 13.56L19.17 22H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zm-8.39-8.38-3.3-3.3L6.41 18h2.08l1.09-3.07h2.52zm-1.75-7.41L10.92 6h2.14l2.55 6.79L22 19.17V2H4.83l5.52 5.52z" +}), 'FontDownloadOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadOffTwoTone.js b/packages/material-ui-icons/lib/esm/FontDownloadOffTwoTone.js new file mode 100644 index 00000000000000..74d4e0c48ed16c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.35 7.52 10.92 6h2.14l2.55 6.79L20 17.17V4H6.83l3.52 3.52zm2.23 2.23-.54-1.52h-.1l-.23.66.87.86zM17.17 20l-5.07-5.07H9.58L8.49 18H6.41l2.39-6.37L4 6.83V20h13.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4.83 2H20c1.1 0 2 .9 2 2v15.17l-2-2V4H6.83l-2-2zm6.09 4-.57 1.52 1.36 1.36.23-.66h.1l.54 1.52 3.04 3.04L13.07 6h-2.15zm9.57 17.31L19.17 22H4c-1.1 0-2-.9-2-2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM17.17 20l-5.07-5.07H9.58L8.49 18H6.41l2.39-6.37L4 6.83V20h13.17z" +}, "1")], 'FontDownloadOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadOutlined.js b/packages/material-ui-icons/lib/esm/FontDownloadOutlined.js new file mode 100644 index 00000000000000..ce5ea82b52a975 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}), 'FontDownloadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadRounded.js b/packages/material-ui-icons/lib/esm/FontDownloadRounded.js new file mode 100644 index 00000000000000..a6c598a51338d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.93 13.5h4.14L12 7.98 9.93 13.5zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.29 15.88-.9-2.38H9.17l-.89 2.37c-.14.38-.5.63-.91.63-.68 0-1.15-.69-.9-1.32l4.25-10.81c.22-.53.72-.87 1.28-.87s1.06.34 1.27.87l4.25 10.81c.25.63-.22 1.32-.9 1.32-.4 0-.76-.25-.91-.62z" +}), 'FontDownloadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadSharp.js b/packages/material-ui-icons/lib/esm/FontDownloadSharp.js new file mode 100644 index 00000000000000..a39e468e8fb370 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.93 13.5h4.14L12 7.98 9.93 13.5zM22 2H2v20h20V2zm-6.05 16.5-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z" +}), 'FontDownloadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FontDownloadTwoTone.js b/packages/material-ui-icons/lib/esm/FontDownloadTwoTone.js new file mode 100644 index 00000000000000..2121ab7ea509b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FontDownloadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zm7.07-14.5h1.86l5.11 13h-2.09l-1.14-3H9.17l-1.12 3H5.96l5.11-13zM12 7.98 9.93 13.5h4.14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "1")], 'FontDownloadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoodBank.js b/packages/material-ui-icons/lib/esm/FoodBank.js new file mode 100644 index 00000000000000..884b024a90d133 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoodBank.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm.5 9.5c0 .83-.67 1.5-1.5 1.5v4h-1v-4c-.83 0-1.5-.67-1.5-1.5v-3h1v3h.5v-3h1v3h.5v-3h1v3zM15 18h-1v-3.5h-1v-3c0-1.1.9-2 2-2V18z" +}), 'FoodBank'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoodBankOutlined.js b/packages/material-ui-icons/lib/esm/FoodBankOutlined.js new file mode 100644 index 00000000000000..c94c2d332d8f89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoodBankOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm-.5 6.5v3H11v-3h-1v3h-.5v-3h-1v3c0 .83.67 1.5 1.5 1.5v4h1v-4c.83 0 1.5-.67 1.5-1.5v-3h-1zm1.5 2v3h1V18h1V9.5c-1.1 0-2 .9-2 2z" +}), 'FoodBankOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoodBankRounded.js b/packages/material-ui-icons/lib/esm/FoodBankRounded.js new file mode 100644 index 00000000000000..c0d6df72c780a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoodBankRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.8 3.9-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zm1.7 8.6c0 .83-.67 1.5-1.5 1.5v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V14c-.83 0-1.5-.67-1.5-1.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5h.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5h.5V10c0-.28.22-.5.5-.5s.5.22.5.5v2.5zm2 5.5c-.28 0-.5-.22-.5-.5v-3h-.5c-.28 0-.5-.22-.5-.5v-2.5c0-.88.57-1.63 1.36-1.89.31-.11.64.14.64.48v7.41c0 .28-.22.5-.5.5z" +}), 'FoodBankRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoodBankSharp.js b/packages/material-ui-icons/lib/esm/FoodBankSharp.js new file mode 100644 index 00000000000000..7d632b3d166d78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoodBankSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm.5 9.5c0 .83-.67 1.5-1.5 1.5v4h-1v-4c-.83 0-1.5-.67-1.5-1.5v-3h1v3h.5v-3h1v3h.5v-3h1v3zM15 18h-1v-3.5h-1v-3c0-1.1.9-2 2-2V18z" +}), 'FoodBankSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoodBankTwoTone.js b/packages/material-ui-icons/lib/esm/FoodBankTwoTone.js new file mode 100644 index 00000000000000..3105a06e78164a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoodBankTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 5.5 6 4.5v9H6v-9l6-4.5m-.5 4v3H11v-3h-1v3h-.5v-3h-1v3c0 .83.67 1.5 1.5 1.5v4h1v-4c.83 0 1.5-.67 1.5-1.5v-3h-1zm1.5 2v3h1V18h1V9.5c-1.1 0-2 .9-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm-.5 6.5v3H11v-3h-1v3h-.5v-3h-1v3c0 .83.67 1.5 1.5 1.5v4h1v-4c.83 0 1.5-.67 1.5-1.5v-3h-1zm1.5 2v3h1V18h1V9.5c-1.1 0-2 .9-2 2z" +}, "1")], 'FoodBankTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignCenter.js b/packages/material-ui-icons/lib/esm/FormatAlignCenter.js new file mode 100644 index 00000000000000..42cf310e5ffa8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignCenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" +}), 'FormatAlignCenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignCenterOutlined.js b/packages/material-ui-icons/lib/esm/FormatAlignCenterOutlined.js new file mode 100644 index 00000000000000..212b442ee9a59c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignCenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" +}), 'FormatAlignCenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignCenterRounded.js b/packages/material-ui-icons/lib/esm/FormatAlignCenterRounded.js new file mode 100644 index 00000000000000..ab59ff16dbacf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignCenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm-3 5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'FormatAlignCenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignCenterSharp.js b/packages/material-ui-icons/lib/esm/FormatAlignCenterSharp.js new file mode 100644 index 00000000000000..80c9f80d810fc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignCenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" +}), 'FormatAlignCenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignCenterTwoTone.js b/packages/material-ui-icons/lib/esm/FormatAlignCenterTwoTone.js new file mode 100644 index 00000000000000..71c86f169e1f99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignCenterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3zm4 12h10v2H7zm0-8h10v2H7zm-4 4h18v2H3zm0 8h18v2H3z" +}), 'FormatAlignCenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignJustify.js b/packages/material-ui-icons/lib/esm/FormatAlignJustify.js new file mode 100644 index 00000000000000..c2bc876f30547a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignJustify.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" +}), 'FormatAlignJustify'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignJustifyOutlined.js b/packages/material-ui-icons/lib/esm/FormatAlignJustifyOutlined.js new file mode 100644 index 00000000000000..b476dc2d7635b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignJustifyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" +}), 'FormatAlignJustifyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignJustifyRounded.js b/packages/material-ui-icons/lib/esm/FormatAlignJustifyRounded.js new file mode 100644 index 00000000000000..59b5a5fcd91cd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignJustifyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'FormatAlignJustifyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignJustifySharp.js b/packages/material-ui-icons/lib/esm/FormatAlignJustifySharp.js new file mode 100644 index 00000000000000..6c173cb024e921 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignJustifySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" +}), 'FormatAlignJustifySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignJustifyTwoTone.js b/packages/material-ui-icons/lib/esm/FormatAlignJustifyTwoTone.js new file mode 100644 index 00000000000000..07f732128149d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignJustifyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3zm0 8h18v2H3zm0 8h18v2H3zm0-4h18v2H3zm0-8h18v2H3z" +}), 'FormatAlignJustifyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignLeft.js b/packages/material-ui-icons/lib/esm/FormatAlignLeft.js new file mode 100644 index 00000000000000..2cd908b1866ad7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" +}), 'FormatAlignLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignLeftOutlined.js b/packages/material-ui-icons/lib/esm/FormatAlignLeftOutlined.js new file mode 100644 index 00000000000000..5c5dc2f432728b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" +}), 'FormatAlignLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignLeftRounded.js b/packages/material-ui-icons/lib/esm/FormatAlignLeftRounded.js new file mode 100644 index 00000000000000..2a370da4b980cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 15H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-8H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM4 13h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'FormatAlignLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignLeftSharp.js b/packages/material-ui-icons/lib/esm/FormatAlignLeftSharp.js new file mode 100644 index 00000000000000..a3af83d71fbf9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" +}), 'FormatAlignLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignLeftTwoTone.js b/packages/material-ui-icons/lib/esm/FormatAlignLeftTwoTone.js new file mode 100644 index 00000000000000..bd1151542f5394 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19h18v2H3zM3 7h12v2H3zm0-4h18v2H3zm0 12h12v2H3zm0-4h18v2H3z" +}), 'FormatAlignLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignRight.js b/packages/material-ui-icons/lib/esm/FormatAlignRight.js new file mode 100644 index 00000000000000..eea5b3cfabebf1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" +}), 'FormatAlignRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignRightOutlined.js b/packages/material-ui-icons/lib/esm/FormatAlignRightOutlined.js new file mode 100644 index 00000000000000..3a078ed0bea3d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" +}), 'FormatAlignRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignRightRounded.js b/packages/material-ui-icons/lib/esm/FormatAlignRightRounded.js new file mode 100644 index 00000000000000..ad10ac49d44dee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zm-6-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'FormatAlignRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignRightSharp.js b/packages/material-ui-icons/lib/esm/FormatAlignRightSharp.js new file mode 100644 index 00000000000000..22d0f8ebd9869b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" +}), 'FormatAlignRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatAlignRightTwoTone.js b/packages/material-ui-icons/lib/esm/FormatAlignRightTwoTone.js new file mode 100644 index 00000000000000..fb1376d84d574f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatAlignRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3zm0 16h18v2H3zm0-8h18v2H3zm6 4h12v2H9zm0-8h12v2H9z" +}), 'FormatAlignRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatBold.js b/packages/material-ui-icons/lib/esm/FormatBold.js new file mode 100644 index 00000000000000..bd9d54299e3516 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatBold.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" +}), 'FormatBold'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatBoldOutlined.js b/packages/material-ui-icons/lib/esm/FormatBoldOutlined.js new file mode 100644 index 00000000000000..c3593693eeff34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatBoldOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" +}), 'FormatBoldOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatBoldRounded.js b/packages/material-ui-icons/lib/esm/FormatBoldRounded.js new file mode 100644 index 00000000000000..b07424f362107b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatBoldRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h5.78c2.07 0 3.96-1.69 3.97-3.77.01-1.53-.85-2.84-2.15-3.44zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" +}), 'FormatBoldRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatBoldSharp.js b/packages/material-ui-icons/lib/esm/FormatBoldSharp.js new file mode 100644 index 00000000000000..fb9195b7508855 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatBoldSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" +}), 'FormatBoldSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatBoldTwoTone.js b/packages/material-ui-icons/lib/esm/FormatBoldTwoTone.js new file mode 100644 index 00000000000000..d59132ce575dae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatBoldTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.25 8c0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42.97-.67 1.65-1.77 1.65-2.79zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" +}), 'FormatBoldTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatClear.js b/packages/material-ui-icons/lib/esm/FormatClear.js new file mode 100644 index 00000000000000..dd5973cab2947e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatClear.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.27 5 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21 18 19.73 3.55 5.27 3.27 5zM6 5v.18L8.82 8h2.4l-.72 1.68 2.1 2.1L14.21 8H20V5H6z" +}), 'FormatClear'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatClearOutlined.js b/packages/material-ui-icons/lib/esm/FormatClearOutlined.js new file mode 100644 index 00000000000000..cf09fb3c0ae325 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatClearOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" +}), 'FormatClearOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatClearRounded.js b/packages/material-ui-icons/lib/esm/FormatClearRounded.js new file mode 100644 index 00000000000000..79cb7893af6573 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatClearRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 8c.83 0 1.5-.67 1.5-1.5S19.33 5 18.5 5H6.39l3 3h1.83l-.55 1.28 2.09 2.09L14.21 8h4.29zm-1.06 10.88L4.12 5.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l6.26 6.26-1.65 3.84c-.39.92.28 1.93 1.27 1.93.55 0 1.05-.33 1.27-.84l1.21-2.83 4.95 4.95c.39.39 1.02.39 1.41 0 .4-.38.4-1.01.01-1.4z" +}), 'FormatClearRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatClearSharp.js b/packages/material-ui-icons/lib/esm/FormatClearSharp.js new file mode 100644 index 00000000000000..f0587a018d30b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatClearSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" +}), 'FormatClearSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatClearTwoTone.js b/packages/material-ui-icons/lib/esm/FormatClearTwoTone.js new file mode 100644 index 00000000000000..c13904e17b5f76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatClearTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86 2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" +}), 'FormatClearTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorFill.js b/packages/material-ui-icons/lib/esm/FormatColorFill.js new file mode 100644 index 00000000000000..66891579c1a149 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorFill.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.56 8.94 7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12zM5.21 10 10 5.21 14.79 10H5.21zM19 11.5s-2 2.17-2 3.5c0 1.1.9 2 2 2s2-.9 2-2c0-1.33-2-3.5-2-3.5zM2 20h20v4H2v-4z" +}), 'FormatColorFill'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorFillOutlined.js b/packages/material-ui-icons/lib/esm/FormatColorFillOutlined.js new file mode 100644 index 00000000000000..3451607d0359a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorFillOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.56 8.94 7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12zM5.21 10 10 5.21 14.79 10H5.21zM19 11.5s-2 2.17-2 3.5c0 1.1.9 2 2 2s2-.9 2-2c0-1.33-2-3.5-2-3.5zM2 20h20v4H2v-4z" +}), 'FormatColorFillOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorFillRounded.js b/packages/material-ui-icons/lib/esm/FormatColorFillRounded.js new file mode 100644 index 00000000000000..9a9d1aae5d8080 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorFillRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.94 16.56c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12L8.32.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.68 1.68-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5zM10 5.21 14.79 10H5.21L10 5.21zM19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zm1 3H4c-1.1 0-2 .9-2 2s.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2z" +}), 'FormatColorFillRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorFillSharp.js b/packages/material-ui-icons/lib/esm/FormatColorFillSharp.js new file mode 100644 index 00000000000000..018560406149bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorFillSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 17.62 17.62 10l-10-10-1.41 1.41 2.38 2.38L2.38 10 10 17.62zm0-12.41L14.79 10H5.21L10 5.21zM19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zM2 20h20v4H2z" +}), 'FormatColorFillSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorFillTwoTone.js b/packages/material-ui-icons/lib/esm/FormatColorFillTwoTone.js new file mode 100644 index 00000000000000..e2ab07f6fbb816 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorFillTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.56 8.94 7.62 0 6.21 1.41l2.38 2.38-5.15 5.15c-.59.59-.59 1.54 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12zM5.21 10 10 5.21 14.79 10H5.21zM19 11.5s-2 2.17-2 3.5c0 1.1.9 2 2 2s2-.9 2-2c0-1.33-2-3.5-2-3.5zM2 20h20v4H2v-4z" +}), 'FormatColorFillTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorReset.js b/packages/material-ui-icons/lib/esm/FormatColorReset.js new file mode 100644 index 00000000000000..bd9ff2082240e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorReset.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 14c0-4-6-10.8-6-10.8s-1.33 1.51-2.73 3.52l8.59 8.59c.09-.42.14-.86.14-1.31zm-.88 3.12L12.5 12.5 5.27 5.27 4 6.55l3.32 3.32C6.55 11.32 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.96-1.5l2.63 2.63 1.27-1.27-2.74-2.74z" +}), 'FormatColorReset'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorResetOutlined.js b/packages/material-ui-icons/lib/esm/FormatColorResetOutlined.js new file mode 100644 index 00000000000000..f1274600a03263 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorResetOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14 4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z" +}), 'FormatColorResetOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorResetRounded.js b/packages/material-ui-icons/lib/esm/FormatColorResetRounded.js new file mode 100644 index 00000000000000..9f36fcd34b8088 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorResetRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 14c0-3.09-3.6-7.88-5.23-9.87-.4-.49-1.15-.49-1.55 0-.46.57-1.08 1.36-1.73 2.27l8.44 8.44c.04-.28.07-.56.07-.84zm1.29 5.01L6.12 5.84a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.61 2.61C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l1.92 1.92c.39.39 1.02.39 1.41 0 .4-.38.4-1.02.01-1.41z" +}), 'FormatColorResetRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorResetSharp.js b/packages/material-ui-icons/lib/esm/FormatColorResetSharp.js new file mode 100644 index 00000000000000..9270d04b70f32b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorResetSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 14c0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l8.44 8.44c.03-.27.06-.55.06-.83zM5.41 5.14 4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14z" +}), 'FormatColorResetSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorResetTwoTone.js b/packages/material-ui-icons/lib/esm/FormatColorResetTwoTone.js new file mode 100644 index 00000000000000..98c334ae7d6aa0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorResetTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m10.93 7.83 4.77 4.77c-.62-1.81-2.17-4.24-3.71-6.24-.35.47-.71.96-1.06 1.47zM12 18c.96 0 1.83-.36 2.53-.92l-5.72-5.72C8.32 12.38 8 13.31 8 14c0 2.21 1.79 4 4 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14 4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z" +}, "1")], 'FormatColorResetTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorText.js b/packages/material-ui-icons/lib/esm/FormatColorText.js new file mode 100644 index 00000000000000..03030f07b2fde2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorText.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" +}), 'FormatColorText'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorTextOutlined.js b/packages/material-ui-icons/lib/esm/FormatColorTextOutlined.js new file mode 100644 index 00000000000000..38a4e5e0dfbf78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorTextOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" +}), 'FormatColorTextOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorTextRounded.js b/packages/material-ui-icons/lib/esm/FormatColorTextRounded.js new file mode 100644 index 00000000000000..bbe93707c8ae27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorTextRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 20H4c-1.1 0-2 .9-2 2s.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2zM7.11 17c.48 0 .91-.3 1.06-.75l1.01-2.83h5.65l.99 2.82c.16.46.59.76 1.07.76.79 0 1.33-.79 1.05-1.52L13.69 4.17C13.43 3.47 12.75 3 12 3s-1.43.47-1.69 1.17L6.06 15.48c-.28.73.27 1.52 1.05 1.52zm4.83-11.4h.12l2.03 5.79H9.91l2.03-5.79z" +}), 'FormatColorTextRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorTextSharp.js b/packages/material-ui-icons/lib/esm/FormatColorTextSharp.js new file mode 100644 index 00000000000000..4fe263f3963dc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorTextSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" +}), 'FormatColorTextSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatColorTextTwoTone.js b/packages/material-ui-icons/lib/esm/FormatColorTextTwoTone.js new file mode 100644 index 00000000000000..34ae46cc704de1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatColorTextTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61 2.03-5.79h.12l2.03 5.79H9.91z" +}), 'FormatColorTextTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentDecrease.js b/packages/material-ui-icons/lib/esm/FormatIndentDecrease.js new file mode 100644 index 00000000000000..fc3e9af4faed12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentDecrease.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17h10v-2H11v2zm-8-5 4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" +}), 'FormatIndentDecrease'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentDecreaseOutlined.js b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseOutlined.js new file mode 100644 index 00000000000000..899575a304c798 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17h10v-2H11v2zm-8-5 4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" +}), 'FormatIndentDecreaseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentDecreaseRounded.js b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseRounded.js new file mode 100644 index 00000000000000..6a7d4d1cb3e402 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm-8.65-4.65 2.79 2.79c.32.32.86.1.86-.35V9.21c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.19-.2.51-.01.7zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm9 5h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'FormatIndentDecreaseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentDecreaseSharp.js b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseSharp.js new file mode 100644 index 00000000000000..cd367f080fcf25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17h10v-2H11v2zm-8-5 4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" +}), 'FormatIndentDecreaseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentDecreaseTwoTone.js b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseTwoTone.js new file mode 100644 index 00000000000000..ec8596b9343c6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentDecreaseTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 16V8l-4 4zm4-9h10v2H11zm0 4h10v2H11zm0 4h10v2H11zm-8 4h18v2H3zM3 3h18v2H3z" +}), 'FormatIndentDecreaseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentIncrease.js b/packages/material-ui-icons/lib/esm/FormatIndentIncrease.js new file mode 100644 index 00000000000000..4c8fb14c7f7397 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentIncrease.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" +}), 'FormatIndentIncrease'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentIncreaseOutlined.js b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseOutlined.js new file mode 100644 index 00000000000000..e25764304dfc0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" +}), 'FormatIndentIncreaseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentIncreaseRounded.js b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseRounded.js new file mode 100644 index 00000000000000..9ddb72073d286f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 9.21v5.59c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.8c-.31-.31-.85-.09-.85.36zM12 17h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm9 5h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'FormatIndentIncreaseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentIncreaseSharp.js b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseSharp.js new file mode 100644 index 00000000000000..671dc149958712 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" +}), 'FormatIndentIncreaseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatIndentIncreaseTwoTone.js b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseTwoTone.js new file mode 100644 index 00000000000000..464a222be847f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatIndentIncreaseTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19h18v2H3zM3 3h18v2H3zm8 4h10v2H11zM3 8v8l4-4zm8 3h10v2H11zm0 4h10v2H11z" +}), 'FormatIndentIncreaseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatItalic.js b/packages/material-ui-icons/lib/esm/FormatItalic.js new file mode 100644 index 00000000000000..989e381ce59be7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatItalic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z" +}), 'FormatItalic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatItalicOutlined.js b/packages/material-ui-icons/lib/esm/FormatItalicOutlined.js new file mode 100644 index 00000000000000..153bd4f74fb071 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatItalicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z" +}), 'FormatItalicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatItalicRounded.js b/packages/material-ui-icons/lib/esm/FormatItalicRounded.js new file mode 100644 index 00000000000000..8ddfa284a0b274 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatItalicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 5.5c0 .83.67 1.5 1.5 1.5h.71l-3.42 8H7.5c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.71l3.42-8h1.29c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4h-5c-.83 0-1.5.67-1.5 1.5z" +}), 'FormatItalicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatItalicSharp.js b/packages/material-ui-icons/lib/esm/FormatItalicSharp.js new file mode 100644 index 00000000000000..91e06817e01f0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatItalicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z" +}), 'FormatItalicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatItalicTwoTone.js b/packages/material-ui-icons/lib/esm/FormatItalicTwoTone.js new file mode 100644 index 00000000000000..2b02a22dd09941 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatItalicTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 15v3h8v-3h-2.21l3.42-8H18V4h-8v3h2.21l-3.42 8z" +}), 'FormatItalicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatLineSpacing.js b/packages/material-ui-icons/lib/esm/FormatLineSpacing.js new file mode 100644 index 00000000000000..1d8c837509f992 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatLineSpacing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" +}), 'FormatLineSpacing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatLineSpacingOutlined.js b/packages/material-ui-icons/lib/esm/FormatLineSpacingOutlined.js new file mode 100644 index 00000000000000..391222dd597158 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatLineSpacingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" +}), 'FormatLineSpacingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatLineSpacingRounded.js b/packages/material-ui-icons/lib/esm/FormatLineSpacingRounded.js new file mode 100644 index 00000000000000..9b8f375dc35a97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatLineSpacingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.29 7c.45 0 .67-.54.35-.85l-2.29-2.3c-.2-.2-.51-.2-.71 0l-2.29 2.3c-.31.31-.09.85.36.85H4v10H2.71c-.45 0-.67.54-.35.85l2.29 2.29c.2.2.51.2.71 0l2.29-2.29c.31-.31.09-.85-.36-.85H6V7h1.29zM11 7h10c.55 0 1-.45 1-1s-.45-1-1-1H11c-.55 0-1 .45-1 1s.45 1 1 1zm10 10H11c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H11c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'FormatLineSpacingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatLineSpacingSharp.js b/packages/material-ui-icons/lib/esm/FormatLineSpacingSharp.js new file mode 100644 index 00000000000000..17ccb5a7545859 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatLineSpacingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" +}), 'FormatLineSpacingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatLineSpacingTwoTone.js b/packages/material-ui-icons/lib/esm/FormatLineSpacingTwoTone.js new file mode 100644 index 00000000000000..238a180a65f9cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatLineSpacingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 5h12v2H10zm0 12h12v2H10zm-8.5 0L5 20.5 8.5 17H6V7h2.5L5 3.5 1.5 7H4v10zm8.5-6h12v2H10z" +}), 'FormatLineSpacingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListBulleted.js b/packages/material-ui-icons/lib/esm/FormatListBulleted.js new file mode 100644 index 00000000000000..b17621f86a0b2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListBulleted.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" +}), 'FormatListBulleted'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListBulletedOutlined.js b/packages/material-ui-icons/lib/esm/FormatListBulletedOutlined.js new file mode 100644 index 00000000000000..9fe5044022c96c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListBulletedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" +}), 'FormatListBulletedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListBulletedRounded.js b/packages/material-ui-icons/lib/esm/FormatListBulletedRounded.js new file mode 100644 index 00000000000000..71acef7e0ec823 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListBulletedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM8 19h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0-6h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z" +}), 'FormatListBulletedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListBulletedSharp.js b/packages/material-ui-icons/lib/esm/FormatListBulletedSharp.js new file mode 100644 index 00000000000000..92722480cc82ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListBulletedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" +}), 'FormatListBulletedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListBulletedTwoTone.js b/packages/material-ui-icons/lib/esm/FormatListBulletedTwoTone.js new file mode 100644 index 00000000000000..93f8117304a39e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListBulletedTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 5h14v2H7z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "6", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 11h14v2H7zm0 6h14v2H7zm-3 2.5c.82 0 1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5-1.5.68-1.5 1.5.68 1.5 1.5 1.5z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "12", + r: "1.5" +}, "3")], 'FormatListBulletedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumbered.js b/packages/material-ui-icons/lib/esm/FormatListNumbered.js new file mode 100644 index 00000000000000..9a27215a3f47de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumbered.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" +}), 'FormatListNumbered'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedOutlined.js b/packages/material-ui-icons/lib/esm/FormatListNumberedOutlined.js new file mode 100644 index 00000000000000..0dd20019222dbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" +}), 'FormatListNumberedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedRounded.js b/packages/material-ui-icons/lib/esm/FormatListNumberedRounded.js new file mode 100644 index 00000000000000..57030ae7b85005 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 7h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm12 10H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM4.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5H2.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-2-11H3v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2 5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96c-.08.09-.12.21-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H3.2l1.68-1.96c.08-.09.12-.21.12-.32v-.22c0-.28-.22-.5-.5-.5z" +}), 'FormatListNumberedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedRtl.js b/packages/material-ui-icons/lib/esm/FormatListNumberedRtl.js new file mode 100644 index 00000000000000..634157527c45be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedRtl.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm1-9h1V4h-2v1h1zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zM2 5h14v2H2zm0 12h14v2H2zm0-6h14v2H2z" +}), 'FormatListNumberedRtl'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedRtlOutlined.js b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlOutlined.js new file mode 100644 index 00000000000000..4fa6bccb4df550 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z" +}), 'FormatListNumberedRtlOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedRtlRounded.js b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlRounded.js new file mode 100644 index 00000000000000..62bf70a6bbe10f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H20v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v.5h-1.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-2-11h.5v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2.5 5.72v-.22c0-.28-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96c-.08.09-.12.21-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.3l1.68-1.96c.08-.09.12-.21.12-.32zM15 5H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 12H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'FormatListNumberedRtlRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedRtlSharp.js b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlSharp.js new file mode 100644 index 00000000000000..f4e1f806982efa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z" +}), 'FormatListNumberedRtlSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedRtlTwoTone.js b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlTwoTone.js new file mode 100644 index 00000000000000..b5cf7e4c83ff04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedRtlTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 11h14v2H2zm16 6h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm0-6h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zm2-3V4h-2v1h1v3zM2 17h14v2H2zM2 5h14v2H2z" +}), 'FormatListNumberedRtlTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedSharp.js b/packages/material-ui-icons/lib/esm/FormatListNumberedSharp.js new file mode 100644 index 00000000000000..ce555c852d857f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" +}), 'FormatListNumberedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatListNumberedTwoTone.js b/packages/material-ui-icons/lib/esm/FormatListNumberedTwoTone.js new file mode 100644 index 00000000000000..bb47f82b30bad5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatListNumberedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13H3.2L5 10.9V10H2v1h1.8L2 13.1v.9h3zm2-8h14v2H7zM5 16H2v1h2v.5H3v1h1v.5H2v1h3zm2 1h14v2H7zM3 8h1V4H2v1h1zm4 3h14v2H7z" +}), 'FormatListNumberedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatPaint.js b/packages/material-ui-icons/lib/esm/FormatPaint.js new file mode 100644 index 00000000000000..05238ec062297b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatPaint.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3z" +}), 'FormatPaint'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatPaintOutlined.js b/packages/material-ui-icons/lib/esm/FormatPaintOutlined.js new file mode 100644 index 00000000000000..0c5e1d39c5932a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatPaintOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z" +}), 'FormatPaintOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatPaintRounded.js b/packages/material-ui-icons/lib/esm/FormatPaintRounded.js new file mode 100644 index 00000000000000..43781e614a662c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatPaintRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4h-9c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h7c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2z" +}), 'FormatPaintRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatPaintSharp.js b/packages/material-ui-icons/lib/esm/FormatPaintSharp.js new file mode 100644 index 00000000000000..10765ff1fb7d32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatPaintSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4V2H4v6h14V6h1v4H9v12h4V12h8V4h-3z" +}), 'FormatPaintSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatPaintTwoTone.js b/packages/material-ui-icons/lib/esm/FormatPaintTwoTone.js new file mode 100644 index 00000000000000..9bc320f518864b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatPaintTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 4h10v2H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 2H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3V3c0-.55-.45-1-1-1zm-1 4H6V4h10v2z" +}, "1")], 'FormatPaintTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatQuote.js b/packages/material-ui-icons/lib/esm/FormatQuote.js new file mode 100644 index 00000000000000..0b975f92aa2574 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatQuote.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z" +}), 'FormatQuote'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatQuoteOutlined.js b/packages/material-ui-icons/lib/esm/FormatQuoteOutlined.js new file mode 100644 index 00000000000000..4bbf7b1f23c314 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatQuoteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z" +}), 'FormatQuoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatQuoteRounded.js b/packages/material-ui-icons/lib/esm/FormatQuoteRounded.js new file mode 100644 index 00000000000000..c536a3d91be98d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatQuoteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.17 17c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94zm10 0c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94z" +}), 'FormatQuoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatQuoteSharp.js b/packages/material-ui-icons/lib/esm/FormatQuoteSharp.js new file mode 100644 index 00000000000000..1a2d1387a423ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatQuoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17h3l2-4V7H4v6h3l-2 4zm10 0h3l2-4V7h-6v6h3l-2 4z" +}), 'FormatQuoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatQuoteTwoTone.js b/packages/material-ui-icons/lib/esm/FormatQuoteTwoTone.js new file mode 100644 index 00000000000000..b6366ae2967dad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatQuoteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.62 16h.76L19 12.76V8h-4v4h3.62zm-10 0h.76L9 12.76V8H5v4h3.62z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.62 18 21 13.24V6h-8v8h2.38l-2 4h5.24zM15 12V8h4v4.76L17.38 16h-.76l2-4H15zM3.38 18h5.24L11 13.24V6H3v8h2.38l-2 4zM5 12V8h4v4.76L7.38 16h-.76l2-4H5z" +}, "1")], 'FormatQuoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatShapes.js b/packages/material-ui-icons/lib/esm/FormatShapes.js new file mode 100644 index 00000000000000..8338b5a752bee8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatShapes.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" +}), 'FormatShapes'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatShapesOutlined.js b/packages/material-ui-icons/lib/esm/FormatShapesOutlined.js new file mode 100644 index 00000000000000..5c0daaa559853d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatShapesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" +}), 'FormatShapesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatShapesRounded.js b/packages/material-ui-icons/lib/esm/FormatShapesRounded.js new file mode 100644 index 00000000000000..d8f9d8b09b383b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatShapesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 6V2c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v1H7V2c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h1v10H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1h10v1c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-1V7h1c.55 0 1-.45 1-1zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-1c0-.55-.45-1-1-1H5V7h1c.55 0 1-.45 1-1V5h10v1c0 .55.45 1 1 1h1v10h-1c-.55 0-1 .45-1 1v1zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-6.06 2.65c-.15-.39-.53-.65-.95-.65-.42 0-.8.26-.94.65l-2.77 7.33c-.19.49.17 1.02.7 1.02.32 0 .6-.2.71-.5l.55-1.5h3.49l.56 1.51c.11.29.39.49.71.49h.01c.53 0 .89-.53.71-1.02l-2.78-7.33zm-2.25 5.09L12 8.91l1.3 3.83h-2.61z" +}), 'FormatShapesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatShapesSharp.js b/packages/material-ui-icons/lib/esm/FormatShapesSharp.js new file mode 100644 index 00000000000000..c87a71877e8ac1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatShapesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" +}), 'FormatShapesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatShapesTwoTone.js b/packages/material-ui-icons/lib/esm/FormatShapesTwoTone.js new file mode 100644 index 00000000000000..11bdab55fbd014 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatShapesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3h2v2H3zm16 16h2v2h-2zm0-16h2v2h-2zM3 19h2v2H3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11.29 7-3.4 9h1.62l.73-2h3.49l.74 2h1.63l-3.41-9h-1.4zm-.6 5.74L12 8.91l1.3 3.83h-2.61zM17 3H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2V1h-6v2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm16 0h-2v-2h2v2zM19 3h2v2h-2V3zm0 14h-2v2H7v-2H5V7h2V5h10v2h2v10z" +}, "1")], 'FormatShapesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatSize.js b/packages/material-ui-icons/lib/esm/FormatSize.js new file mode 100644 index 00000000000000..5f6ec1e3ff210e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatSize.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" +}), 'FormatSize'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatSizeOutlined.js b/packages/material-ui-icons/lib/esm/FormatSizeOutlined.js new file mode 100644 index 00000000000000..6ba34320a94ccf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatSizeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" +}), 'FormatSizeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatSizeRounded.js b/packages/material-ui-icons/lib/esm/FormatSizeRounded.js new file mode 100644 index 00000000000000..d18164983d0abe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatSizeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5.5c0 .83.67 1.5 1.5 1.5H14v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h3.5c.83 0 1.5-.67 1.5-1.5S21.33 4 20.5 4h-10C9.67 4 9 4.67 9 5.5zM4.5 12H6v5.5c0 .83.67 1.5 1.5 1.5S9 18.33 9 17.5V12h1.5c.83 0 1.5-.67 1.5-1.5S11.33 9 10.5 9h-6C3.67 9 3 9.67 3 10.5S3.67 12 4.5 12z" +}), 'FormatSizeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatSizeSharp.js b/packages/material-ui-icons/lib/esm/FormatSizeSharp.js new file mode 100644 index 00000000000000..6750ee02ea8257 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatSizeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z" +}), 'FormatSizeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatSizeTwoTone.js b/packages/material-ui-icons/lib/esm/FormatSizeTwoTone.js new file mode 100644 index 00000000000000..5e4dd7d676f963 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatSizeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12h3v7h3v-7h3V9H3zm6-5h5v12h3V7h5V4H9z" +}), 'FormatSizeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatStrikethrough.js b/packages/material-ui-icons/lib/esm/FormatStrikethrough.js new file mode 100644 index 00000000000000..965bfc87ed35af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatStrikethrough.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" +}), 'FormatStrikethrough'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatStrikethroughOutlined.js b/packages/material-ui-icons/lib/esm/FormatStrikethroughOutlined.js new file mode 100644 index 00000000000000..6878ffa4c47582 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatStrikethroughOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" +}), 'FormatStrikethroughOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatStrikethroughRounded.js b/packages/material-ui-icons/lib/esm/FormatStrikethroughRounded.js new file mode 100644 index 00000000000000..d328984168b9fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatStrikethroughRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c1.1 0 2-.9 2-2v-1h-4v1c0 1.1.9 2 2 2zM5 5.5C5 6.33 5.67 7 6.5 7H10v3h4V7h3.5c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5zM4 14h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'FormatStrikethroughRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatStrikethroughSharp.js b/packages/material-ui-icons/lib/esm/FormatStrikethroughSharp.js new file mode 100644 index 00000000000000..ff693fb1a70abd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatStrikethroughSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" +}), 'FormatStrikethroughSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatStrikethroughTwoTone.js b/packages/material-ui-icons/lib/esm/FormatStrikethroughTwoTone.js new file mode 100644 index 00000000000000..fa25f45ded81fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatStrikethroughTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12h18v2H3zm11-2V7h5V4H5v3h5v3zm-4 6h4v3h-4z" +}), 'FormatStrikethroughTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionLToR.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToR.js new file mode 100644 index 00000000000000..a5358f8d342148 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToR.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8-4-4v3H5v2h12v3l4-4z" +}), 'FormatTextdirectionLToR'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionLToROutlined.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToROutlined.js new file mode 100644 index 00000000000000..e3e4f3432fb085 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToROutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2H9C6.79 2 5 3.79 5 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zm0 12v3H5v2h12v3l4-4-4-4z" +}), 'FormatTextdirectionLToROutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRRounded.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRRounded.js new file mode 100644 index 00000000000000..5af98ad50cb489 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 10v4c0 .55.45 1 1 1s1-.45 1-1V4h2v10c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1H9.17C7.08 2 5.22 3.53 5.02 5.61 4.79 7.99 6.66 10 9 10zm11.65 7.65-2.79-2.79c-.32-.32-.86-.1-.86.35V17H6c-.55 0-1 .45-1 1s.45 1 1 1h11v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" +}), 'FormatTextdirectionLToRRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRSharp.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRSharp.js new file mode 100644 index 00000000000000..cfd8b0e893eb0f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8-4-4v3H5v2h12v3l4-4z" +}), 'FormatTextdirectionLToRSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRTwoTone.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRTwoTone.js new file mode 100644 index 00000000000000..3f5bd160f1bf57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionLToRTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 8V4c-1.1 0-2 .9-2 2s.9 2 2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm0-6v4c-1.1 0-2-.9-2-2s.9-2 2-2zm12 14-4-4v3H5v2h12v3z" +}, "1")], 'FormatTextdirectionLToRTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionRToL.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToL.js new file mode 100644 index 00000000000000..5e8d167779868b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToL.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z" +}), 'FormatTextdirectionRToL'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLOutlined.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLOutlined.js new file mode 100644 index 00000000000000..d27011ef574ef8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zM8 14l-4 4 4 4v-3h12v-2H8v-3z" +}), 'FormatTextdirectionRToLOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLRounded.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLRounded.js new file mode 100644 index 00000000000000..788d3ba544324f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10v4c0 .55.45 1 1 1s1-.45 1-1V4h2v10c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1h-6.83C8.08 2 6.22 3.53 6.02 5.61 5.79 7.99 7.66 10 10 10zm-2 7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1s-.45-1-1-1H8z" +}), 'FormatTextdirectionRToLRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLSharp.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLSharp.js new file mode 100644 index 00000000000000..d5a195bb6f6e91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z" +}), 'FormatTextdirectionRToLSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLTwoTone.js b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLTwoTone.js new file mode 100644 index 00000000000000..b62462aa0b7840 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatTextdirectionRToLTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 6c0 1.1.9 2 2 2V4c-1.1 0-2 .9-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 6c0 2.21 1.79 4 4 4v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6zm4 2c-1.1 0-2-.9-2-2s.9-2 2-2v4zM4 18l4 4v-3h12v-2H8v-3z" +}, "1")], 'FormatTextdirectionRToLTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatUnderlined.js b/packages/material-ui-icons/lib/esm/FormatUnderlined.js new file mode 100644 index 00000000000000..9d3dbf67cfcc92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatUnderlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" +}), 'FormatUnderlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatUnderlinedOutlined.js b/packages/material-ui-icons/lib/esm/FormatUnderlinedOutlined.js new file mode 100644 index 00000000000000..fecfc3635ecb1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatUnderlinedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" +}), 'FormatUnderlinedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatUnderlinedRounded.js b/packages/material-ui-icons/lib/esm/FormatUnderlinedRounded.js new file mode 100644 index 00000000000000..4b93fe035f8faf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatUnderlinedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.79 16.95c3.03-.39 5.21-3.11 5.21-6.16V4.25C18 3.56 17.44 3 16.75 3s-1.25.56-1.25 1.25v6.65c0 1.67-1.13 3.19-2.77 3.52-2.25.47-4.23-1.25-4.23-3.42V4.25C8.5 3.56 7.94 3 7.25 3S6 3.56 6 4.25V11c0 3.57 3.13 6.42 6.79 5.95zM5 20c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" +}), 'FormatUnderlinedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatUnderlinedSharp.js b/packages/material-ui-icons/lib/esm/FormatUnderlinedSharp.js new file mode 100644 index 00000000000000..fa74179a72ef39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatUnderlinedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" +}), 'FormatUnderlinedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FormatUnderlinedTwoTone.js b/packages/material-ui-icons/lib/esm/FormatUnderlinedTwoTone.js new file mode 100644 index 00000000000000..a3a7b3ccdf4430 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FormatUnderlinedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 19h14v2H5zM6 3v8c0 3.31 2.69 6 6 6s6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6z" +}), 'FormatUnderlinedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forum.js b/packages/material-ui-icons/lib/esm/Forum.js new file mode 100644 index 00000000000000..3cc93c10b7bdad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forum.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z" +}), 'Forum'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForumOutlined.js b/packages/material-ui-icons/lib/esm/ForumOutlined.js new file mode 100644 index 00000000000000..4817fc7c6e3091 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForumOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 4v7H5.17L4 12.17V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z" +}), 'ForumOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForumRounded.js b/packages/material-ui-icons/lib/esm/ForumRounded.js new file mode 100644 index 00000000000000..89bebffbe8e935 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForumRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2zm-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2z" +}), 'ForumRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForumSharp.js b/packages/material-ui-icons/lib/esm/ForumSharp.js new file mode 100644 index 00000000000000..8db602b3aecacb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForumSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z" +}), 'ForumSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForumTwoTone.js b/packages/material-ui-icons/lib/esm/ForumTwoTone.js new file mode 100644 index 00000000000000..3c146045fa27dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForumTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 11V4H4v8.17L5.17 11H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 13c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zm-12-.83V4h11v7H5.17L4 12.17zM22 7c0-.55-.45-1-1-1h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7z" +}, "1")], 'ForumTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward.js b/packages/material-ui-icons/lib/esm/Forward.js new file mode 100644 index 00000000000000..4498691cb04934 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8V4l8 8-8 8v-4H4V8z" +}), 'Forward'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward10.js b/packages/material-ui-icons/lib/esm/Forward10.js new file mode 100644 index 00000000000000..cea0d01ea4de1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward10.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.86 15.94v-4.27h-.09L9 12.3v.69l1.01-.31v3.26zm1.39-2.5v.74c0 1.9 1.31 1.82 1.44 1.82.14 0 1.44.09 1.44-1.82v-.74c0-1.9-1.31-1.82-1.44-1.82-.14 0-1.44-.09-1.44 1.82zm2.04-.12v.97c0 .77-.21 1.03-.59 1.03s-.6-.26-.6-1.03v-.97c0-.75.22-1.01.59-1.01.38-.01.6.26.6 1.01z" +}, "1")], 'Forward10'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward10Outlined.js b/packages/material-ui-icons/lib/esm/Forward10Outlined.js new file mode 100644 index 00000000000000..27180553b8c7e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward10Outlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}, "1")], 'Forward10Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward10Rounded.js b/packages/material-ui-icons/lib/esm/Forward10Rounded.js new file mode 100644 index 00000000000000..32e1cafc552734 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward10Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.32 10.42 8.27 7 12 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71l-3.79-3.79c-.31-.31-.85-.09-.85.36V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-8.02 3v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}), 'Forward10Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward10Sharp.js b/packages/material-ui-icons/lib/esm/Forward10Sharp.js new file mode 100644 index 00000000000000..29afd0ffc2d51e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward10Sharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}, "1")], 'Forward10Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward10TwoTone.js b/packages/material-ui-icons/lib/esm/Forward10TwoTone.js new file mode 100644 index 00000000000000..809a31aa905da7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward10TwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}, "1")], 'Forward10TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward30.js b/packages/material-ui-icons/lib/esm/Forward30.js new file mode 100644 index 00000000000000..5ce0e6bfb5c43d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward30.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.06 15.38c-.29 0-.62-.17-.62-.54h-.85c0 .97.9 1.23 1.45 1.23.87 0 1.51-.46 1.51-1.25 0-.66-.45-.9-.71-1 .11-.05.65-.32.65-.92 0-.21-.05-1.22-1.44-1.22-.62 0-1.4.35-1.4 1.16h.85c0-.34.31-.48.57-.48.59 0 .58.5.58.54 0 .52-.41.59-.63.59h-.46v.66h.45c.65 0 .7.42.7.64 0 .32-.21.59-.65.59zm3.79-3.7c-.14 0-1.44-.08-1.44 1.82v.74c0 1.9 1.31 1.82 1.44 1.82.14 0 1.44.09 1.44-1.82v-.74c.01-1.91-1.3-1.82-1.44-1.82zm.6 2.67c0 .77-.21 1.03-.59 1.03s-.6-.26-.6-1.03v-.97c0-.75.22-1.01.59-1.01.38 0 .6.26.6 1.01v.97z" +}, "1")], 'Forward30'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward30Outlined.js b/packages/material-ui-icons/lib/esm/Forward30Outlined.js new file mode 100644 index 00000000000000..e9e479dc378fa8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward30Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}), 'Forward30Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward30Rounded.js b/packages/material-ui-icons/lib/esm/Forward30Rounded.js new file mode 100644 index 00000000000000..1ea32ba6658c25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward30Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.32 10.42 8.27 7 12 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71l-3.79-3.79c-.31-.31-.85-.09-.85.36V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-8.38 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}), 'Forward30Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward30Sharp.js b/packages/material-ui-icons/lib/esm/Forward30Sharp.js new file mode 100644 index 00000000000000..f2afe6e296297d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward30Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}), 'Forward30Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward30TwoTone.js b/packages/material-ui-icons/lib/esm/Forward30TwoTone.js new file mode 100644 index 00000000000000..bf2bd4f273d441 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward30TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" +}), 'Forward30TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward5.js b/packages/material-ui-icons/lib/esm/Forward5.js new file mode 100644 index 00000000000000..d214748af9fe57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward5.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.03 15.38c-.44 0-.58-.31-.6-.56h-.84c.03.85.79 1.25 1.44 1.25.93 0 1.44-.63 1.44-1.43 0-1.33-.97-1.44-1.3-1.44-.2 0-.43.05-.64.16l.11-.92h1.7v-.71h-2.39l-.25 2.17.67.17c.13-.13.28-.23.57-.23.4 0 .69.23.69.75-.01.05.02.79-.6.79z" +}, "1")], 'Forward5'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward5Outlined.js b/packages/material-ui-icons/lib/esm/Forward5Outlined.js new file mode 100644 index 00000000000000..446883cc8e790f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward5Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" +}), 'Forward5Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward5Rounded.js b/packages/material-ui-icons/lib/esm/Forward5Rounded.js new file mode 100644 index 00000000000000..8728a04fb6f41f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward5Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.87 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.27 10.42 8.22 7 11.95 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71L12.8 1.85c-.31-.31-.85-.09-.85.35V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-6.44 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" +}), 'Forward5Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward5Sharp.js b/packages/material-ui-icons/lib/esm/Forward5Sharp.js new file mode 100644 index 00000000000000..23fdd367008cf4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward5Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" +}), 'Forward5Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Forward5TwoTone.js b/packages/material-ui-icons/lib/esm/Forward5TwoTone.js new file mode 100644 index 00000000000000..6fde53e1c0aa75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Forward5TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" +}), 'Forward5TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardOutlined.js b/packages/material-ui-icons/lib/esm/ForwardOutlined.js new file mode 100644 index 00000000000000..880e651544907f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8.83 17.17 12 14 15.17V14H6v-4h8V8.83M12 4v4H4v8h8v4l8-8-8-8z" +}), 'ForwardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardRounded.js b/packages/material-ui-icons/lib/esm/ForwardRounded.js new file mode 100644 index 00000000000000..9026bea7ca29cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8V6.41c0-.89 1.08-1.34 1.71-.71l5.59 5.59c.39.39.39 1.02 0 1.41l-5.59 5.59c-.63.63-1.71.19-1.71-.7V16H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h7z" +}), 'ForwardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardSharp.js b/packages/material-ui-icons/lib/esm/ForwardSharp.js new file mode 100644 index 00000000000000..0729581507fc6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8V4l8 8-8 8v-4H4V8h8z" +}), 'ForwardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardToInbox.js b/packages/material-ui-icons/lib/esm/ForwardToInbox.js new file mode 100644 index 00000000000000..cd525a46afbadb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardToInbox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" +}), 'ForwardToInbox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardToInboxOutlined.js b/packages/material-ui-icons/lib/esm/ForwardToInboxOutlined.js new file mode 100644 index 00000000000000..5ad56fb0d04839 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardToInboxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" +}), 'ForwardToInboxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardToInboxRounded.js b/packages/material-ui-icons/lib/esm/ForwardToInboxRounded.js new file mode 100644 index 00000000000000..8a811367078d23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardToInboxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l6.94 4.34c.65.41 1.47.41 2.12 0L20 8v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 5.21c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36V20h-3c-.55 0-1-.45-1-1s.45-1 1-1h3v-1.79z" +}), 'ForwardToInboxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardToInboxSharp.js b/packages/material-ui-icons/lib/esm/ForwardToInboxSharp.js new file mode 100644 index 00000000000000..2abff8a7c59b47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardToInboxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h11v-2H4V8l8 5 8-5v5h2V4zm-10 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" +}), 'ForwardToInboxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardToInboxTwoTone.js b/packages/material-ui-icons/lib/esm/ForwardToInboxTwoTone.js new file mode 100644 index 00000000000000..4bfe129b0954cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardToInboxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 18H4V8l8 5 8-5v5h-2c-2.76 0-5 2.24-5 5zm-1-7L4 6h16l-8 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 4 4 4-4 4v-3h-4v-2h4v-3z" +}, "1")], 'ForwardToInboxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ForwardTwoTone.js b/packages/material-ui-icons/lib/esm/ForwardTwoTone.js new file mode 100644 index 00000000000000..8f142b75dfee63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ForwardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 14v1.17L17.17 12 14 8.83V10H6v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20 12-8-8v4H4v8h8v4l8-8zM6 14v-4h8V8.83L17.17 12 14 15.17V14H6z" +}, "1")], 'ForwardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Foundation.js b/packages/material-ui-icons/lib/esm/Foundation.js new file mode 100644 index 00000000000000..17d8e9c058fbfa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Foundation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" +}), 'Foundation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoundationOutlined.js b/packages/material-ui-icons/lib/esm/FoundationOutlined.js new file mode 100644 index 00000000000000..10c87429def960 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoundationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" +}), 'FoundationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoundationRounded.js b/packages/material-ui-icons/lib/esm/FoundationRounded.js new file mode 100644 index 00000000000000..c1be1d1fa02254 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoundationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v3H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" +}), 'FoundationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoundationSharp.js b/packages/material-ui-icons/lib/esm/FoundationSharp.js new file mode 100644 index 00000000000000..d48731966d8135 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoundationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" +}), 'FoundationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FoundationTwoTone.js b/packages/material-ui-icons/lib/esm/FoundationTwoTone.js new file mode 100644 index 00000000000000..0751a215695c81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FoundationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" +}, "1")], 'FoundationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGMobiledata.js b/packages/material-ui-icons/lib/esm/FourGMobiledata.js new file mode 100644 index 00000000000000..62124ad74ab62b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" +}), 'FourGMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/FourGMobiledataOutlined.js new file mode 100644 index 00000000000000..867d66e93921f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" +}), 'FourGMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGMobiledataRounded.js b/packages/material-ui-icons/lib/esm/FourGMobiledataRounded.js new file mode 100644 index 00000000000000..e12c1769c851ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 7c-.55 0-1 .45-1 1v4H5V8c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h3v2c0 .55.45 1 1 1s1-.45 1-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1H9V8c0-.55-.45-1-1-1zm9 5c0 .55.45 1 1 1h1v2h-5V9h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1z" +}), 'FourGMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGMobiledataSharp.js b/packages/material-ui-icons/lib/esm/FourGMobiledataSharp.js new file mode 100644 index 00000000000000..cf6b2329d15334 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7V7h-9v10h9v-6h-4z" +}), 'FourGMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/FourGMobiledataTwoTone.js new file mode 100644 index 00000000000000..2efe5b68251e87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7c0-1.1-.9-2-2-2h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" +}), 'FourGMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGPlusMobiledata.js b/packages/material-ui-icons/lib/esm/FourGPlusMobiledata.js new file mode 100644 index 00000000000000..dccaa958d7c3c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGPlusMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11v2h2v2h-4V9h6c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" +}), 'FourGPlusMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGPlusMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataOutlined.js new file mode 100644 index 00000000000000..5b99383c286426 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11v2h2v2h-4V9h6c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" +}), 'FourGPlusMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGPlusMobiledataRounded.js b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataRounded.js new file mode 100644 index 00000000000000..24f239b6473aa5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9c.55 0 1-.45 1-1s-.45-1-1-1h-5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v2h-4V9h5zm7 2h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zM7 12V8c0-.55-.45-1-1-1s-1 .45-1 1v4H3V8c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h3v2c0 .55.45 1 1 1s1-.45 1-1v-2c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'FourGPlusMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGPlusMobiledataSharp.js b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataSharp.js new file mode 100644 index 00000000000000..4ecf45e9e32c46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11v2h2v2h-4V9h6V7H9v10h8v-6h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" +}), 'FourGPlusMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourGPlusMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataTwoTone.js new file mode 100644 index 00000000000000..ee34aa9fa5578a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourGPlusMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11v2h2v2h-4V9h6c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-4h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" +}), 'FourGPlusMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourK.js b/packages/material-ui-icons/lib/esm/FourK.js new file mode 100644 index 00000000000000..de869b695c9d93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 10.5h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.5zm6 1.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'FourK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKOutlined.js b/packages/material-ui-icons/lib/esm/FourKOutlined.js new file mode 100644 index 00000000000000..3a63600167b60c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z" +}), 'FourKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKPlus.js b/packages/material-ui-icons/lib/esm/FourKPlus.js new file mode 100644 index 00000000000000..17523f76b55199 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 10.5h-1V15H8v-1.5H5V9h1.5v3H8V9h1.5v3h1v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'FourKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKPlusOutlined.js b/packages/material-ui-icons/lib/esm/FourKPlusOutlined.js new file mode 100644 index 00000000000000..9ce929901d958c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKPlusOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 15H10v-1.5h1V12h-1V9H8.5v3H7V9H5.5v4.5h3zm4.5-2.25L14.75 15h1.75l-2.25-3 2.25-3h-1.75L13 11.25V9h-1.5v6H13z" +}, "1")], 'FourKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKPlusRounded.js b/packages/material-ui-icons/lib/esm/FourKPlusRounded.js new file mode 100644 index 00000000000000..59afbc5a5bb6cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 10.5H10v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-.75h-2c-.55 0-1-.45-1-1V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h1.5V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h.25c.41 0 .75.34.75.75s-.34.75-.75.75zm4.84 1.5c-.22 0-.42-.1-.55-.27L13 12.75v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.4 0 .71.31.71.7v1.55l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L14.25 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.41-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'FourKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKPlusSharp.js b/packages/material-ui-icons/lib/esm/FourKPlusSharp.js new file mode 100644 index 00000000000000..916c8c542a8aef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM11 13.5h-1V15H8.5v-1.5h-3V9H7v3h1.5V9H10v3h1v1.5zm3.75 1.5L13 12.75V15h-1.5V9H13v2.25L14.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'FourKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/FourKPlusTwoTone.js new file mode 100644 index 00000000000000..be13078b02db91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKPlusTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6.5-10H13v2.25L14.75 9h1.75l-2.25 3 2.25 3h-1.75L13 12.75V15h-1.5V9zm-6 0H7v3h1.5V9H10v3h1v1.5h-1V15H8.5v-1.5h-3V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 15H10v-1.5h1V12h-1V9H8.5v3H7V9H5.5v4.5h3zm4.5-2.25L14.75 15h1.75l-2.25-3 2.25-3h-1.75L13 11.25V9h-1.5v6H13z" +}, "2")], 'FourKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKRounded.js b/packages/material-ui-icons/lib/esm/FourKRounded.js new file mode 100644 index 00000000000000..281896e6ca7520 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-7 9.76c0 .41-.34.75-.75.75H11v.74c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-.75h-2c-.55 0-1-.45-1-1V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h1.5V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h.25c.41 0 .75.34.75.75v.01zm5.47 1.14c.22.33.13.77-.2.98-.12.08-.26.12-.39.12-.23 0-.45-.11-.59-.32L14.5 12v2.24c0 .41-.34.75-.75.75-.41.01-.75-.33-.75-.74v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v2.24l1.79-2.68c.22-.33.66-.41.98-.2.33.22.41.66.2.98L16.2 12l1.27 1.9z" +}), 'FourKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKSharp.js b/packages/material-ui-icons/lib/esm/FourKSharp.js new file mode 100644 index 00000000000000..ffa985506e86eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-9 10.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z" +}), 'FourKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourKTwoTone.js b/packages/material-ui-icons/lib/esm/FourKTwoTone.js new file mode 100644 index 00000000000000..6ec2b8606f3f74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourKTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v14h14V5zm-7 8.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm6 4H9.5v3H8V9H6.5v4.5h3V15H11v-1.49h1V12h-1zm5.5 0-2 3 2 3h1.7l-2-3 2-3zM13 9v6h1.5V9z" +}, "1")], 'FourKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourMp.js b/packages/material-ui-icons/lib/esm/FourMp.js new file mode 100644 index 00000000000000..e19a30e6240dc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3-8.5h-1v1.5h-1.5V10h-3V5.5H11v3h1.5v-3H14v3h1V10zm.5 8.5H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z" +}), 'FourMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourMpOutlined.js b/packages/material-ui-icons/lib/esm/FourMpOutlined.js new file mode 100644 index 00000000000000..b24186fef3c55a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 11.5H14V10h1V8.5h-1v-3h-1.5v3H11v-3H9.5V10h3z" +}, "2")], 'FourMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourMpRounded.js b/packages/material-ui-icons/lib/esm/FourMpRounded.js new file mode 100644 index 00000000000000..b6ae2e64781b4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.5 14.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm0-7V10h-2c-.55 0-1-.45-1-1V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h1.5V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h.25c.41 0 .75.34.75.75s-.34.75-.75.75H14v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'FourMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourMpSharp.js b/packages/material-ui-icons/lib/esm/FourMpSharp.js new file mode 100644 index 00000000000000..4e614fa924ea74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-3-8.5V5.5H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3zm8.5 7h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'FourMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourMpTwoTone.js b/packages/material-ui-icons/lib/esm/FourMpTwoTone.js new file mode 100644 index 00000000000000..0141506b0791c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8.5-8H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3V5.5zm-3.5 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12.5 11.5H14V10h1V8.5h-1v-3h-1.5v3H11v-3H9.5V10h3z" +}, "4")], 'FourMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourteenMp.js b/packages/material-ui-icons/lib/esm/FourteenMp.js new file mode 100644 index 00000000000000..33c39e93b3d5b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourteenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm7.5 4.5h-1v1.5H15V10h-3V5.5h1.5v3H15v-3h1.5v3h1V10zm-2 4H17v1.5h-1.5z" +}), 'FourteenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourteenMpOutlined.js b/packages/material-ui-icons/lib/esm/FourteenMpOutlined.js new file mode 100644 index 00000000000000..a3abb8fdc147da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourteenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm6.5 0h1.5V10h1V8.5h-1v-3H15v3h-1.5v-3H12V10h3z" +}, "2")], 'FourteenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourteenMpRounded.js b/packages/material-ui-icons/lib/esm/FourteenMpRounded.js new file mode 100644 index 00000000000000..986c493d3e09a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourteenMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 9V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5H15V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h.25c.41 0 .75.34.75.75s-.34.75-.75.75h-.25v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10h-2c-.55 0-1-.45-1-1zm6 7c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'FourteenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourteenMpSharp.js b/packages/material-ui-icons/lib/esm/FourteenMpSharp.js new file mode 100644 index 00000000000000..ebb0cea1c7e06e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourteenMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 2.5h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'FourteenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FourteenMpTwoTone.js b/packages/material-ui-icons/lib/esm/FourteenMpTwoTone.js new file mode 100644 index 00000000000000..437cb608eb5a32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FourteenMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-8h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zm-5 0h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm6.5 0h1.5V10h1V8.5h-1v-3H15v3h-1.5v-3H12V10h3z" +}, "4")], 'FourteenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FreeBreakfast.js b/packages/material-ui-icons/lib/esm/FreeBreakfast.js new file mode 100644 index 00000000000000..14a6dd9671b278 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FreeBreakfast.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" +}), 'FreeBreakfast'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FreeBreakfastOutlined.js b/packages/material-ui-icons/lib/esm/FreeBreakfastOutlined.js new file mode 100644 index 00000000000000..c67addffa27cb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FreeBreakfastOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z" +}), 'FreeBreakfastOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FreeBreakfastRounded.js b/packages/material-ui-icons/lib/esm/FreeBreakfastRounded.js new file mode 100644 index 00000000000000..62e2d3fa22d4e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FreeBreakfastRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM5 19h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'FreeBreakfastRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FreeBreakfastSharp.js b/packages/material-ui-icons/lib/esm/FreeBreakfastSharp.js new file mode 100644 index 00000000000000..5a8c08f6a87430 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FreeBreakfastSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4v14h14v-7h2c1.11 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4v-2z" +}), 'FreeBreakfastSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FreeBreakfastTwoTone.js b/packages/material-ui-icons/lib/esm/FreeBreakfastTwoTone.js new file mode 100644 index 00000000000000..0aa605ca38cf7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FreeBreakfastTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 13c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5H6v8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z" +}, "1")], 'FreeBreakfastTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Fullscreen.js b/packages/material-ui-icons/lib/esm/Fullscreen.js new file mode 100644 index 00000000000000..e12283d60609ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Fullscreen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" +}), 'Fullscreen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenExit.js b/packages/material-ui-icons/lib/esm/FullscreenExit.js new file mode 100644 index 00000000000000..8f4ecc63e40597 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenExit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" +}), 'FullscreenExit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenExitOutlined.js b/packages/material-ui-icons/lib/esm/FullscreenExitOutlined.js new file mode 100644 index 00000000000000..6a6f20b0473bd1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenExitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" +}), 'FullscreenExitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenExitRounded.js b/packages/material-ui-icons/lib/esm/FullscreenExitRounded.js new file mode 100644 index 00000000000000..86b65cbe68d619 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenExitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 16h2v2c0 .55.45 1 1 1s1-.45 1-1v-3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm2-8H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v2zm7 11c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm1-11V6c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2z" +}), 'FullscreenExitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenExitSharp.js b/packages/material-ui-icons/lib/esm/FullscreenExitSharp.js new file mode 100644 index 00000000000000..de42faef536111 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenExitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" +}), 'FullscreenExitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenExitTwoTone.js b/packages/material-ui-icons/lib/esm/FullscreenExitTwoTone.js new file mode 100644 index 00000000000000..621fcf9b98bdb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenExitTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" +}), 'FullscreenExitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenOutlined.js b/packages/material-ui-icons/lib/esm/FullscreenOutlined.js new file mode 100644 index 00000000000000..f50cf089e69773 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" +}), 'FullscreenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenRounded.js b/packages/material-ui-icons/lib/esm/FullscreenRounded.js new file mode 100644 index 00000000000000..a768efc00876d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 14c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1H7v-2c0-.55-.45-1-1-1zm0-4c.55 0 1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm11 7h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zM14 6c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1z" +}), 'FullscreenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenSharp.js b/packages/material-ui-icons/lib/esm/FullscreenSharp.js new file mode 100644 index 00000000000000..d9cfcfe24acf7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" +}), 'FullscreenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FullscreenTwoTone.js b/packages/material-ui-icons/lib/esm/FullscreenTwoTone.js new file mode 100644 index 00000000000000..0c76b6ac645135 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FullscreenTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" +}), 'FullscreenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Functions.js b/packages/material-ui-icons/lib/esm/Functions.js new file mode 100644 index 00000000000000..b9b12a37208dde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Functions.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7z" +}), 'Functions'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FunctionsOutlined.js b/packages/material-ui-icons/lib/esm/FunctionsOutlined.js new file mode 100644 index 00000000000000..66638cd7651812 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FunctionsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z" +}), 'FunctionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FunctionsRounded.js b/packages/material-ui-icons/lib/esm/FunctionsRounded.js new file mode 100644 index 00000000000000..387973b2528efc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FunctionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 4H7.56C6.7 4 6 4.7 6 5.56c0 .28.12.55.32.74L12.5 12l-6.18 5.7c-.2.19-.32.46-.32.74C6 19.3 6.7 20 7.56 20h8.94c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H11l3.59-3.59c.78-.78.78-2.05 0-2.83L11 7h5.5c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4z" +}), 'FunctionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FunctionsSharp.js b/packages/material-ui-icons/lib/esm/FunctionsSharp.js new file mode 100644 index 00000000000000..e407c92bc8a24f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FunctionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z" +}), 'FunctionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/FunctionsTwoTone.js b/packages/material-ui-icons/lib/esm/FunctionsTwoTone.js new file mode 100644 index 00000000000000..c631bd2c298d6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/FunctionsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 17h-7l5-5-5-5h7V4H6v2l6.5 6L6 18v2h12z" +}), 'FunctionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GMobiledata.js b/packages/material-ui-icons/lib/esm/GMobiledata.js new file mode 100644 index 00000000000000..96509688efa80c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11v2h2v2H9V9h7c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" +}), 'GMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/GMobiledataOutlined.js new file mode 100644 index 00000000000000..fef7e76e4bc872 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11v2h2v2H9V9h7c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" +}), 'GMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GMobiledataRounded.js b/packages/material-ui-icons/lib/esm/GMobiledataRounded.js new file mode 100644 index 00000000000000..f377eb4164d962 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c0 .55.45 1 1 1h1v2H9V9h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1z" +}), 'GMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GMobiledataSharp.js b/packages/material-ui-icons/lib/esm/GMobiledataSharp.js new file mode 100644 index 00000000000000..8533c0b343bdd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11v2h2v2H9V9h7V7H7v10h9v-6h-4z" +}), 'GMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/GMobiledataTwoTone.js new file mode 100644 index 00000000000000..d85739105fd4d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11v2h2v2H9V9h7c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h5c1.1 0 2-.9 2-2v-4h-4z" +}), 'GMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GTranslate.js b/packages/material-ui-icons/lib/esm/GTranslate.js new file mode 100644 index 00000000000000..8718a98504f0b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GTranslate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H11l-1-3H3c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8l1 3h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 16c-2.76 0-5-2.24-5-5s2.24-5 5-5c1.35 0 2.48.5 3.35 1.3L9.03 8.57c-.38-.36-1.04-.78-2.03-.78-1.74 0-3.15 1.44-3.15 3.21S5.26 14.21 7 14.21c2.01 0 2.84-1.44 2.92-2.41H7v-1.71h4.68c.07.31.12.61.12 1.02C11.8 13.97 9.89 16 7 16zm6.17-5.42h3.7c-.43 1.25-1.11 2.43-2.05 3.47-.31-.35-.6-.72-.86-1.1l-.79-2.37zm8.33 9.92c0 .55-.45 1-1 1H14l2-2.5-1.04-3.1 3.1 3.1.92-.92-3.3-3.25.02-.02c1.13-1.25 1.93-2.69 2.4-4.22H20v-1.3h-4.53V8h-1.29v1.29h-1.44L11.46 5.5h9.04c.55 0 1 .45 1 1v14z" +}), 'GTranslate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GTranslateOutlined.js b/packages/material-ui-icons/lib/esm/GTranslateOutlined.js new file mode 100644 index 00000000000000..e2eed628e657d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GTranslateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" +}), 'GTranslateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GTranslateRounded.js b/packages/material-ui-icons/lib/esm/GTranslateRounded.js new file mode 100644 index 00000000000000..3304fbb30d80ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GTranslateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" +}), 'GTranslateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GTranslateSharp.js b/packages/material-ui-icons/lib/esm/GTranslateSharp.js new file mode 100644 index 00000000000000..089e8f3dfb0486 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GTranslateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" +}), 'GTranslateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GTranslateTwoTone.js b/packages/material-ui-icons/lib/esm/GTranslateTwoTone.js new file mode 100644 index 00000000000000..e0d0164529dc5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GTranslateTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42 0 1.33 1.07 2.42 2.38 2.42 1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm5.5-3.51h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7h-.99l-.31-1.04zm1.72 3.5-.54.53-.65-2.23c.33.6.74 1.18 1.19 1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" +}), 'GTranslateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Gamepad.js b/packages/material-ui-icons/lib/esm/Gamepad.js new file mode 100644 index 00000000000000..8ddeb7268f5bed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Gamepad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" +}), 'Gamepad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamepadOutlined.js b/packages/material-ui-icons/lib/esm/GamepadOutlined.js new file mode 100644 index 00000000000000..9af70a4fd01024 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamepadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5-3 3V22h6v-5.5l-3-3z" +}), 'GamepadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamepadRounded.js b/packages/material-ui-icons/lib/esm/GamepadRounded.js new file mode 100644 index 00000000000000..e47eac574e235d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamepadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7.29V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4.29c0 .13.05.26.15.35l2.5 2.5c.2.2.51.2.71 0l2.5-2.5c.09-.09.14-.21.14-.35zM7.29 9H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4.29c.13 0 .26-.05.35-.15l2.5-2.5c.2-.2.2-.51 0-.71l-2.5-2.5C7.55 9.05 7.43 9 7.29 9zM9 16.71V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.29c0-.13-.05-.26-.15-.35l-2.5-2.5c-.2-.2-.51-.2-.71 0l-2.5 2.5c-.09.09-.14.21-.14.35zm7.35-7.56-2.5 2.5c-.2.2-.2.51 0 .71l2.5 2.5c.09.09.22.15.35.15H21c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4.29c-.14-.01-.26.04-.36.14z" +}), 'GamepadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamepadSharp.js b/packages/material-ui-icons/lib/esm/GamepadSharp.js new file mode 100644 index 00000000000000..c1bd8f6f1d1aa2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamepadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" +}), 'GamepadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamepadTwoTone.js b/packages/material-ui-icons/lib/esm/GamepadTwoTone.js new file mode 100644 index 00000000000000..dc55736619d31d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamepadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.67 11H4v2h2.67l1-1zM13 6.67V4h-2v2.67l1 1zm-2 10.66V20h2v-2.67l-1-1zM16.33 12l1 1H20v-2h-2.67z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 16.5V22h6v-5.5l-3-3-3 3zm4 3.5h-2v-2.67l1-1 1 1V20zm2-12.5V2H9v5.5l3 3 3-3zM11 4h2v2.67l-1 1-1-1V4zM7.5 9H2v6h5.5l3-3-3-3zm-.83 4H4v-2h2.67l1 1-1 1zm9.83-4-3 3 3 3H22V9h-5.5zm3.5 4h-2.67l-1-1 1-1H20v2z" +}, "1")], 'GamepadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Games.js b/packages/material-ui-icons/lib/esm/Games.js new file mode 100644 index 00000000000000..159378726f99f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Games.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" +}), 'Games'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamesOutlined.js b/packages/material-ui-icons/lib/esm/GamesOutlined.js new file mode 100644 index 00000000000000..d8f725d6d1fa36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5-3 3V22h6v-5.5l-3-3z" +}), 'GamesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamesRounded.js b/packages/material-ui-icons/lib/esm/GamesRounded.js new file mode 100644 index 00000000000000..d8879438da5114 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7.29V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4.29c0 .13.05.26.15.35l2.5 2.5c.2.2.51.2.71 0l2.5-2.5c.09-.09.14-.21.14-.35zM7.29 9H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4.29c.13 0 .26-.05.35-.15l2.5-2.5c.2-.2.2-.51 0-.71l-2.5-2.5C7.55 9.05 7.43 9 7.29 9zM9 16.71V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.29c0-.13-.05-.26-.15-.35l-2.5-2.5c-.2-.2-.51-.2-.71 0l-2.5 2.5c-.09.09-.14.21-.14.35zm7.35-7.56-2.5 2.5c-.2.2-.2.51 0 .71l2.5 2.5c.09.09.22.15.35.15H21c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4.29c-.14-.01-.26.04-.36.14z" +}), 'GamesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamesSharp.js b/packages/material-ui-icons/lib/esm/GamesSharp.js new file mode 100644 index 00000000000000..df431bdf5ad806 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" +}), 'GamesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GamesTwoTone.js b/packages/material-ui-icons/lib/esm/GamesTwoTone.js new file mode 100644 index 00000000000000..dfeea4ecc86fa4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GamesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 17.33V20h2v-2.67l-1-1zm2-10.66V4h-2v2.67l1 1zM16.33 12l1 1H20v-2h-2.67zM4 11v2h2.67l1-1-1-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 9v6h5.5l3-3-3-3H2zm4.67 4H4v-2h2.67l1 1-1 1zM22 9h-5.5l-3 3 3 3H22V9zm-2 4h-2.67l-1-1 1-1H20v2zm-5 3.5-3-3-3 3V22h6v-5.5zM13 20h-2v-2.67l1-1 1 1V20zM9 7.5l3 3 3-3V2H9v5.5zM11 4h2v2.67l-1 1-1-1V4z" +}, "1")], 'GamesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Garage.js b/packages/material-ui-icons/lib/esm/Garage.js new file mode 100644 index 00000000000000..e05a2005fc66cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Garage.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m8.33 7.5-.66 2h8.66l-.66-2z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 15.69c0 .45-.35.81-.78.81h-.44c-.44 0-.78-.36-.78-.81V16.5H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5c.82-2.47 1.34-4.03 1.56-4.69.05-.16.12-.29.19-.4.02-.02.03-.04.05-.06.38-.53.92-.54.92-.54h8.56s.54.01.92.53c.02.03.03.05.05.07.07.11.14.24.19.4.22.66.74 2.23 1.56 4.69v6.5z" +}, "3")], 'Garage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GarageOutlined.js b/packages/material-ui-icons/lib/esm/GarageOutlined.js new file mode 100644 index 00000000000000..22d63782504839 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GarageOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M5.78 18.5h.44c.43 0 .78-.36.78-.81V16.5h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81zm2.55-11h7.34l.23.69.43 1.31H7.67l.66-2zM7 11.51v-.01h10v3H7v-2.99z" +}, "3")], 'GarageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GarageRounded.js b/packages/material-ui-icons/lib/esm/GarageRounded.js new file mode 100644 index 00000000000000..ec1e2eabfd2f84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GarageRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m8.33 7.5-.66 2h8.66l-.66-2z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 15.69c0 .45-.35.81-.78.81h-.44c-.44 0-.78-.36-.78-.81V16.5H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5c.82-2.47 1.34-4.03 1.56-4.69.05-.16.12-.29.19-.4.02-.02.03-.04.05-.06.38-.53.92-.54.92-.54h8.56s.54.01.92.53c.02.03.03.05.05.07.07.11.14.24.19.4.22.66.74 2.23 1.56 4.69v6.5z" +}, "3")], 'GarageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GarageSharp.js b/packages/material-ui-icons/lib/esm/GarageSharp.js new file mode 100644 index 00000000000000..93dc696263231b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GarageSharp.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m8.33 7.5-.66 2h8.66l-.66-2z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zm-3 16.5h-2v-2H7v2H5v-7.31L6.89 5.5H17.1l1.9 5.69v7.31z" +}, "3")], 'GarageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GarageTwoTone.js b/packages/material-ui-icons/lib/esm/GarageTwoTone.js new file mode 100644 index 00000000000000..e5497796b3e4cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GarageTwoTone.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 11.51v-.01H7v3h10v-2.99zM9 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zm1-8.81c.82-2.47 1.34-4.03 1.56-4.69.05-.16.12-.29.19-.4.02-.02.03-.04.05-.06.38-.53.92-.54.92-.54h8.56s.54.01.92.53c.02.03.03.05.05.07.07.11.14.24.19.4.22.66.74 2.23 1.56 4.69v6.5c0 .45-.35.81-.78.81h-.44c-.44 0-.78-.36-.78-.81V16.5H7v1.19c0 .45-.35.81-.78.81h-.44c-.43 0-.78-.36-.78-.81v-6.5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M5.78 18.5h.44c.43 0 .78-.36.78-.81V16.5h10v1.19c0 .45.34.81.78.81h.44c.43 0 .78-.36.78-.81v-6.5c-.82-2.46-1.34-4.03-1.56-4.69-.05-.16-.12-.29-.19-.4-.02-.02-.03-.04-.05-.07-.38-.52-.92-.53-.92-.53H7.72s-.54.01-.92.54c-.02.02-.03.04-.05.06-.07.11-.14.24-.19.4-.22.66-.74 2.22-1.56 4.69v6.5c0 .45.35.81.78.81zm2.55-11h7.34l.23.69.43 1.31H7.67l.66-2zM7 11.51v-.01h10v3H7v-2.99z" +}, "5")], 'GarageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Gavel.js b/packages/material-ui-icons/lib/esm/Gavel.js new file mode 100644 index 00000000000000..5acd629abd84ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Gavel.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5.2494 8.0688 2.83-2.8269 14.1343 14.15-2.83 2.8269zm4.2363-4.2415 2.828-2.8289 5.6577 5.656-2.828 2.8289zM.9989 12.3147l2.8284-2.8285 5.6569 5.6569-2.8285 2.8284zM1 21h12v2H1z" +}), 'Gavel'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GavelOutlined.js b/packages/material-ui-icons/lib/esm/GavelOutlined.js new file mode 100644 index 00000000000000..a9e3522419bb28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GavelOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" +}), 'GavelOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GavelRounded.js b/packages/material-ui-icons/lib/esm/GavelRounded.js new file mode 100644 index 00000000000000..739235b461b175 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GavelRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 21h10c.55 0 1 .45 1 1s-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1zM5.24 8.07l2.83-2.83L20.8 17.97c.78.78.78 2.05 0 2.83-.78.78-2.05.78-2.83 0L5.24 8.07zm8.49-5.66 2.83 2.83c.78.78.78 2.05 0 2.83l-1.42 1.42-5.65-5.66 1.41-1.41c.78-.79 2.05-.79 2.83-.01zm-9.9 7.07 5.66 5.66-1.41 1.41c-.78.78-2.05.78-2.83 0l-2.83-2.83c-.78-.78-.78-2.05 0-2.83l1.41-1.41z" +}), 'GavelRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GavelSharp.js b/packages/material-ui-icons/lib/esm/GavelSharp.js new file mode 100644 index 00000000000000..faa7f6d141bcf7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GavelSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" +}), 'GavelSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GavelTwoTone.js b/packages/material-ui-icons/lib/esm/GavelTwoTone.js new file mode 100644 index 00000000000000..545f264fdcb5f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GavelTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" +}), 'GavelTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Gesture.js b/packages/material-ui-icons/lib/esm/Gesture.js new file mode 100644 index 00000000000000..73d409215aa213 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Gesture.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" +}), 'Gesture'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GestureOutlined.js b/packages/material-ui-icons/lib/esm/GestureOutlined.js new file mode 100644 index 00000000000000..c38d924dbd712d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GestureOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" +}), 'GestureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GestureRounded.js b/packages/material-ui-icons/lib/esm/GestureRounded.js new file mode 100644 index 00000000000000..275ee15a56e072 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GestureRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.72 6.04c.47.46 1.21.48 1.71.06.37-.32.69-.51.87-.43.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1h1.21c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25h-1.22c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3c-1.09 0-2.04.63-2.7 1.22-.53.48-.53 1.32-.02 1.82zm10.16 12.51c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" +}), 'GestureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GestureSharp.js b/packages/material-ui-icons/lib/esm/GestureSharp.js new file mode 100644 index 00000000000000..4a47fbf4b1b8a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GestureSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" +}), 'GestureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GestureTwoTone.js b/packages/material-ui-icons/lib/esm/GestureTwoTone.js new file mode 100644 index 00000000000000..5e34e9e61507dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GestureTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" +}), 'GestureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GetApp.js b/packages/material-ui-icons/lib/esm/GetApp.js new file mode 100644 index 00000000000000..997b48172ca3e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GetApp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" +}), 'GetApp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GetAppOutlined.js b/packages/material-ui-icons/lib/esm/GetAppOutlined.js new file mode 100644 index 00000000000000..4e1c6e25d14d7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GetAppOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 5v6h1.17L12 13.17 9.83 11H11V5h2m2-2H9v6H5l7 7 7-7h-4V3zm4 15H5v2h14v-2z" +}), 'GetAppOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GetAppRounded.js b/packages/material-ui-icons/lib/esm/GetAppRounded.js new file mode 100644 index 00000000000000..e9b1758d38b4f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GetAppRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z" +}), 'GetAppRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GetAppSharp.js b/packages/material-ui-icons/lib/esm/GetAppSharp.js new file mode 100644 index 00000000000000..39b9b013e339d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GetAppSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" +}), 'GetAppSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GetAppTwoTone.js b/packages/material-ui-icons/lib/esm/GetAppTwoTone.js new file mode 100644 index 00000000000000..c0b793d185ee8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GetAppTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.17 11H13V5h-2v6H9.83L12 13.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z" +}, "1")], 'GetAppTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Gif.js b/packages/material-ui-icons/lib/esm/Gif.js new file mode 100644 index 00000000000000..5943cbe8df72fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Gif.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v6h-1.5zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1z" +}), 'Gif'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GifOutlined.js b/packages/material-ui-icons/lib/esm/GifOutlined.js new file mode 100644 index 00000000000000..5cffbc8e949904 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GifOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z" +}), 'GifOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GifRounded.js b/packages/material-ui-icons/lib/esm/GifRounded.js new file mode 100644 index 00000000000000..e7e3c991ea4675 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GifRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.25 9c.41 0 .75.34.75.75v4.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75zM10 9.75c0-.41-.34-.75-.75-.75H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v.75h-2v-3h2.75c.41 0 .75-.34.75-.75zm9 0c0-.41-.34-.75-.75-.75H15.5c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H16v-1h2.25c.41 0 .75-.34.75-.75z" +}), 'GifRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GifSharp.js b/packages/material-ui-icons/lib/esm/GifSharp.js new file mode 100644 index 00000000000000..7bd402a0d008a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GifSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v6h-1.5V9zM10 9H5v6h5v-3H8.5v1.5h-2v-3H10V9zm9 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z" +}), 'GifSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GifTwoTone.js b/packages/material-ui-icons/lib/esm/GifTwoTone.js new file mode 100644 index 00000000000000..657aec4ea08c81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GifTwoTone.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z", + opacity: ".87" +}), 'GifTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GitHub.js b/packages/material-ui-icons/lib/esm/GitHub.js new file mode 100644 index 00000000000000..8c5eda457d0523 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GitHub.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 .3a12 12 0 0 0-3.8 23.4c.6.1.8-.3.8-.6v-2c-3.3.7-4-1.6-4-1.6-.6-1.4-1.4-1.8-1.4-1.8-1-.7.1-.7.1-.7 1.2 0 1.9 1.2 1.9 1.2 1 1.8 2.8 1.3 3.5 1 0-.8.4-1.3.7-1.6-2.7-.3-5.5-1.3-5.5-6 0-1.2.5-2.3 1.3-3.1-.2-.4-.6-1.6 0-3.2 0 0 1-.3 3.4 1.2a11.5 11.5 0 0 1 6 0c2.3-1.5 3.3-1.2 3.3-1.2.6 1.6.2 2.8 0 3.2.9.8 1.3 1.9 1.3 3.2 0 4.6-2.8 5.6-5.5 5.9.5.4.9 1 .9 2.2v3.3c0 .3.1.7.8.6A12 12 0 0 0 12 .3" +}), 'GitHub'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Gite.js b/packages/material-ui-icons/lib/esm/Gite.js new file mode 100644 index 00000000000000..60978d54498e68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Gite.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" +}), 'Gite'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GiteOutlined.js b/packages/material-ui-icons/lib/esm/GiteOutlined.js new file mode 100644 index 00000000000000..7d51640e2447bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GiteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" +}), 'GiteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GiteRounded.js b/packages/material-ui-icons/lib/esm/GiteRounded.js new file mode 100644 index 00000000000000..833f397cbfb49d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GiteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 9.41-2.83-2.83c-.37-.37-.88-.58-1.41-.58H9V5c0-.55-.45-1-1-1s-1 .45-1 1v1h-.17c-.53 0-1.04.21-1.42.59L2.59 9.41c-.38.38-.59.89-.59 1.42V17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-6.17c0-.53-.21-1.04-.59-1.42zM14 17H4v-5h10v5zm6 0h-4v-6.17l2-2 2 2V17z" +}), 'GiteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GiteSharp.js b/packages/material-ui-icons/lib/esm/GiteSharp.js new file mode 100644 index 00000000000000..fbdb35cf29c88d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GiteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" +}), 'GiteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GiteTwoTone.js b/packages/material-ui-icons/lib/esm/GiteTwoTone.js new file mode 100644 index 00000000000000..42d4671249946a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GiteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" +}, "1")], 'GiteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GolfCourse.js b/packages/material-ui-icons/lib/esm/GolfCourse.js new file mode 100644 index 00000000000000..58ede406a2d9cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GolfCourse.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" +}, "1")], 'GolfCourse'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GolfCourseOutlined.js b/packages/material-ui-icons/lib/esm/GolfCourseOutlined.js new file mode 100644 index 00000000000000..f983c1a01bd0b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GolfCourseOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" +}, "1")], 'GolfCourseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GolfCourseRounded.js b/packages/material-ui-icons/lib/esm/GolfCourseRounded.js new file mode 100644 index 00000000000000..8ec85b6d56ea7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GolfCourseRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 18.03V8.98l4.22-2.15c.73-.37.73-1.43-.01-1.79l-4.76-2.33C9.78 2.38 9 2.86 9 3.6V19c0 .55-.45 1-1 1s-1-.45-1-1v-.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97z" +}, "1")], 'GolfCourseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GolfCourseSharp.js b/packages/material-ui-icons/lib/esm/GolfCourseSharp.js new file mode 100644 index 00000000000000..85b4534be4a65c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GolfCourseSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" +}, "1")], 'GolfCourseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GolfCourseTwoTone.js b/packages/material-ui-icons/lib/esm/GolfCourseTwoTone.js new file mode 100644 index 00000000000000..59a3285a1b2797 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GolfCourseTwoTone.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "19.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M17 5.92 9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" +}, "3")], 'GolfCourseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Google.js b/packages/material-ui-icons/lib/esm/Google.js new file mode 100644 index 00000000000000..a99f5b079816af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Google.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.545,10.239v3.821h5.445c-0.712,2.315-2.647,3.972-5.445,3.972c-3.332,0-6.033-2.701-6.033-6.032s2.701-6.032,6.033-6.032c1.498,0,2.866,0.549,3.921,1.453l2.814-2.814C17.503,2.988,15.139,2,12.545,2C7.021,2,2.543,6.477,2.543,12s4.478,10,10.002,10c8.396,0,10.249-7.85,9.426-11.748L12.545,10.239z" +}), 'Google'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppBad.js b/packages/material-ui-icons/lib/esm/GppBad.js new file mode 100644 index 00000000000000..3b01e1ae52845c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppBad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.5 12.09-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41L13.42 12l2.08 2.09z" +}), 'GppBad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppBadOutlined.js b/packages/material-ui-icons/lib/esm/GppBadOutlined.js new file mode 100644 index 00000000000000..de181bcfb6776f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppBadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7zM9.91 8.5 8.5 9.91 10.59 12 8.5 14.09l1.41 1.41L12 13.42l2.09 2.08 1.41-1.41L13.42 12l2.08-2.09-1.41-1.41L12 10.59 9.91 8.5z" +}), 'GppBadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppBadRounded.js b/packages/material-ui-icons/lib/esm/GppBadRounded.js new file mode 100644 index 00000000000000..3986b8001f5658 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppBadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.7 4.51-6-2.25c-.45-.17-.95-.17-1.4 0l-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 4.94 3.27 9.57 7.71 10.83.19.05.39.05.57 0C16.73 20.66 20 16.03 20 11.09v-4.7c0-.84-.52-1.58-1.3-1.88zm-3.9 10.28c-.39.39-1.02.39-1.41.01L12 13.42l-1.39 1.38c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L10.59 12 9.2 10.61a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L12 10.59l1.39-1.39c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.42 12l1.38 1.38c.39.39.39 1.02 0 1.41z" +}), 'GppBadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppBadSharp.js b/packages/material-ui-icons/lib/esm/GppBadSharp.js new file mode 100644 index 00000000000000..773409086fd3cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppBadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.5 12.09-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41L13.42 12l2.08 2.09z" +}), 'GppBadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppBadTwoTone.js b/packages/material-ui-icons/lib/esm/GppBadTwoTone.js new file mode 100644 index 00000000000000..ac7ddc3cacdabd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppBadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7zM9.91 8.5 8.5 9.91 10.59 12 8.5 14.09l1.41 1.41L12 13.42l2.09 2.08 1.41-1.41L13.42 12l2.08-2.09-1.41-1.41L12 10.59 9.91 8.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25-6 2.25zm9.5 3.52L13.42 12l2.08 2.09-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41z", + opacity: ".3" +}, "1")], 'GppBadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppGood.js b/packages/material-ui-icons/lib/esm/GppGood.js new file mode 100644 index 00000000000000..013f0a5be1d6b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppGood.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z" +}), 'GppGood'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppGoodOutlined.js b/packages/material-ui-icons/lib/esm/GppGoodOutlined.js new file mode 100644 index 00000000000000..aac4357048d7df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppGoodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12 6 2.12v4.78zm-9.18-.5L7.4 12l3.54 3.54 5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" +}), 'GppGoodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppGoodRounded.js b/packages/material-ui-icons/lib/esm/GppGoodRounded.js new file mode 100644 index 00000000000000..7d032d013ecdb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppGoodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.3 2.26-6 2.25C4.52 4.81 4 5.55 4 6.39v4.71c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V6.39c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01zm-1.07 12.57-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.24c-.38.4-1.02.4-1.41.01z" +}), 'GppGoodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppGoodSharp.js b/packages/material-ui-icons/lib/esm/GppGoodSharp.js new file mode 100644 index 00000000000000..cb548d716feee8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppGoodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z" +}), 'GppGoodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppGoodTwoTone.js b/packages/material-ui-icons/lib/esm/GppGoodTwoTone.js new file mode 100644 index 00000000000000..8c2ab0552839d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppGoodTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 6.31v4.78c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83V6.31l-6-2.12-6 2.12zm10.6 3.57-5.66 5.66L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.43 1.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12 6 2.12v4.78zm-9.18-.5L7.4 12l3.54 3.54 5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" +}, "1")], 'GppGoodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppMaybe.js b/packages/material-ui-icons/lib/esm/GppMaybe.js new file mode 100644 index 00000000000000..cf0218bff9fe87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppMaybe.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z" +}), 'GppMaybe'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppMaybeOutlined.js b/packages/material-ui-icons/lib/esm/GppMaybeOutlined.js new file mode 100644 index 00000000000000..4ed92552941c63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppMaybeOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 14h2v2h-2zm0-7h2v5h-2z" +}, "1")], 'GppMaybeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppMaybeRounded.js b/packages/material-ui-icons/lib/esm/GppMaybeRounded.js new file mode 100644 index 00000000000000..96d9efb3e0413e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppMaybeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.3 2.26-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" +}), 'GppMaybeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppMaybeSharp.js b/packages/material-ui-icons/lib/esm/GppMaybeSharp.js new file mode 100644 index 00000000000000..06b8adce49aca8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppMaybeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z" +}), 'GppMaybeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GppMaybeTwoTone.js b/packages/material-ui-icons/lib/esm/GppMaybeTwoTone.js new file mode 100644 index 00000000000000..0e45c4b21f9c41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GppMaybeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25-6 2.25zM13 16h-2v-2h2v2zm0-4h-2V7h2v5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7zM11 16h2v-2h-2v2zm0-4h2V7h-2v5z" +}, "1")], 'GppMaybeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsFixed.js b/packages/material-ui-icons/lib/esm/GpsFixed.js new file mode 100644 index 00000000000000..75aba1cfead50c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsFixed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsFixed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsFixedOutlined.js b/packages/material-ui-icons/lib/esm/GpsFixedOutlined.js new file mode 100644 index 00000000000000..7d031cf74716b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsFixedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsFixedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsFixedRounded.js b/packages/material-ui-icons/lib/esm/GpsFixedRounded.js new file mode 100644 index 00000000000000..4c3119a9618b76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsFixedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsFixedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsFixedSharp.js b/packages/material-ui-icons/lib/esm/GpsFixedSharp.js new file mode 100644 index 00000000000000..c2064b8cbb5f03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsFixedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsFixedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsFixedTwoTone.js b/packages/material-ui-icons/lib/esm/GpsFixedTwoTone.js new file mode 100644 index 00000000000000..81284edca571ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsFixedTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8.94-3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}, "1")], 'GpsFixedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsNotFixed.js b/packages/material-ui-icons/lib/esm/GpsNotFixed.js new file mode 100644 index 00000000000000..60fc5b4e0fc893 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsNotFixed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsNotFixed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsNotFixedOutlined.js b/packages/material-ui-icons/lib/esm/GpsNotFixedOutlined.js new file mode 100644 index 00000000000000..cb4d7b41f569ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsNotFixedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsNotFixedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsNotFixedRounded.js b/packages/material-ui-icons/lib/esm/GpsNotFixedRounded.js new file mode 100644 index 00000000000000..2a798b6649bc51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsNotFixedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsNotFixedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsNotFixedSharp.js b/packages/material-ui-icons/lib/esm/GpsNotFixedSharp.js new file mode 100644 index 00000000000000..b863b41bd72601 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsNotFixedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsNotFixedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsNotFixedTwoTone.js b/packages/material-ui-icons/lib/esm/GpsNotFixedTwoTone.js new file mode 100644 index 00000000000000..4c8ddc6a3d4e20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsNotFixedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'GpsNotFixedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsOff.js b/packages/material-ui-icons/lib/esm/GpsOff.js new file mode 100644 index 00000000000000..2e9f5fae057798 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" +}), 'GpsOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsOffOutlined.js b/packages/material-ui-icons/lib/esm/GpsOffOutlined.js new file mode 100644 index 00000000000000..13c6a0496e5c37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" +}), 'GpsOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsOffRounded.js b/packages/material-ui-icons/lib/esm/GpsOffRounded.js new file mode 100644 index 00000000000000..49aeb17404f4cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13c.55 0 1-.45 1-1s-.45-1-1-1h-1.06c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H22zm-1.56 5.88L5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.04 6.3C3.97 7.62 3.26 9.23 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c1.77-.2 3.38-.91 4.69-1.98l1.33 1.33c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" +}), 'GpsOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsOffSharp.js b/packages/material-ui-icons/lib/esm/GpsOffSharp.js new file mode 100644 index 00000000000000..c6fd2dec34a3ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" +}), 'GpsOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GpsOffTwoTone.js b/packages/material-ui-icons/lib/esm/GpsOffTwoTone.js new file mode 100644 index 00000000000000..a11bdefe8fb1a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GpsOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" +}), 'GpsOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grade.js b/packages/material-ui-icons/lib/esm/Grade.js new file mode 100644 index 00000000000000..46872cb0a3b692 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grade.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" +}), 'Grade'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradeOutlined.js b/packages/material-ui-icons/lib/esm/GradeOutlined.js new file mode 100644 index 00000000000000..0f86f40a59693d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 7.13.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.18.56 2.41-2.12-1.28-1.03-.64-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27M12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z" +}), 'GradeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradeRounded.js b/packages/material-ui-icons/lib/esm/GradeRounded.js new file mode 100644 index 00000000000000..31722ed80057d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 17.27 5.17 3.12c.38.23.85-.11.75-.54l-1.37-5.88 4.56-3.95c.33-.29.16-.84-.29-.88l-6.01-.51-2.35-5.54c-.17-.41-.75-.41-.92 0L9.19 8.63l-6.01.51c-.44.04-.62.59-.28.88l4.56 3.95-1.37 5.88c-.1.43.37.77.75.54L12 17.27z" +}), 'GradeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradeSharp.js b/packages/material-ui-icons/lib/esm/GradeSharp.js new file mode 100644 index 00000000000000..f1782c26ab4e2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" +}), 'GradeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradeTwoTone.js b/packages/material-ui-icons/lib/esm/GradeTwoTone.js new file mode 100644 index 00000000000000..6ce01f62ae0f05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m17.11 10.83-2.47-.21-1.2-.1-.47-1.11L12 7.13l-.97 2.28-.47 1.11-1.2.1-2.47.21 1.88 1.63.91.79-.27 1.17-.57 2.42 2.13-1.28 1.03-.63 1.03.63 2.13 1.28-.57-2.42-.27-1.17.91-.79z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24zm-7.41 5.18.56 2.41-2.12-1.28-1.03-.62-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.16z" +}, "1")], 'GradeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Gradient.js b/packages/material-ui-icons/lib/esm/Gradient.js new file mode 100644 index 00000000000000..c8d7005c7695ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Gradient.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" +}), 'Gradient'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradientOutlined.js b/packages/material-ui-icons/lib/esm/GradientOutlined.js new file mode 100644 index 00000000000000..d16ab99eb2754a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradientOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" +}), 'GradientOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradientRounded.js b/packages/material-ui-icons/lib/esm/GradientRounded.js new file mode 100644 index 00000000000000..2d7bba2719666a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradientRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v5z" +}), 'GradientRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradientSharp.js b/packages/material-ui-icons/lib/esm/GradientSharp.js new file mode 100644 index 00000000000000..06346b9b28395c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradientSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm14-6H3v18h18V3zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" +}), 'GradientSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradientTwoTone.js b/packages/material-ui-icons/lib/esm/GradientTwoTone.js new file mode 100644 index 00000000000000..4b3158845e365d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradientTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11h2v2h-2zm6 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zM5 13h2v-2H5V5h14v6h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2zm2-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2zm-2 2h2v2H9z" +}), 'GradientTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grading.js b/packages/material-ui-icons/lib/esm/Grading.js new file mode 100644 index 00000000000000..24b6daeacd52f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grading.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" +}), 'Grading'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradingOutlined.js b/packages/material-ui-icons/lib/esm/GradingOutlined.js new file mode 100644 index 00000000000000..d6eb776debb176 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" +}), 'GradingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradingRounded.js b/packages/material-ui-icons/lib/esm/GradingRounded.js new file mode 100644 index 00000000000000..8851652fb4454b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 7h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm10.41-2.83-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.42 1.42c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2.47 2.46zM4 4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" +}), 'GradingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradingSharp.js b/packages/material-ui-icons/lib/esm/GradingSharp.js new file mode 100644 index 00000000000000..fb570b8e07fd2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" +}), 'GradingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GradingTwoTone.js b/packages/material-ui-icons/lib/esm/GradingTwoTone.js new file mode 100644 index 00000000000000..e23eeadabb80ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GradingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" +}), 'GradingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grain.js b/packages/material-ui-icons/lib/esm/Grain.js new file mode 100644 index 00000000000000..e7dfbcf7eb913d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grain.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'Grain'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrainOutlined.js b/packages/material-ui-icons/lib/esm/GrainOutlined.js new file mode 100644 index 00000000000000..65785d02147252 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrainOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'GrainOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrainRounded.js b/packages/material-ui-icons/lib/esm/GrainRounded.js new file mode 100644 index 00000000000000..4de887c28ff80b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrainRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'GrainRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrainSharp.js b/packages/material-ui-icons/lib/esm/GrainSharp.js new file mode 100644 index 00000000000000..c7055d65e342c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrainSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'GrainSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrainTwoTone.js b/packages/material-ui-icons/lib/esm/GrainTwoTone.js new file mode 100644 index 00000000000000..7211550e2523bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrainTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-8 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'GrainTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GraphicEq.js b/packages/material-ui-icons/lib/esm/GraphicEq.js new file mode 100644 index 00000000000000..80d98d790c7537 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GraphicEq.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" +}), 'GraphicEq'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GraphicEqOutlined.js b/packages/material-ui-icons/lib/esm/GraphicEqOutlined.js new file mode 100644 index 00000000000000..13430557212064 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GraphicEqOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" +}), 'GraphicEqOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GraphicEqRounded.js b/packages/material-ui-icons/lib/esm/GraphicEqRounded.js new file mode 100644 index 00000000000000..a64547db6379b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GraphicEqRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 18c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1zm4 4c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1s-1 .45-1 1v18c0 .55.45 1 1 1zm-8-8c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm12 4c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1zm3-7v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'GraphicEqRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GraphicEqSharp.js b/packages/material-ui-icons/lib/esm/GraphicEqSharp.js new file mode 100644 index 00000000000000..be3f2394a1f0ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GraphicEqSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" +}), 'GraphicEqSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GraphicEqTwoTone.js b/packages/material-ui-icons/lib/esm/GraphicEqTwoTone.js new file mode 100644 index 00000000000000..2f4149412ae136 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GraphicEqTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" +}), 'GraphicEqTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grass.js b/packages/material-ui-icons/lib/esm/Grass.js new file mode 100644 index 00000000000000..f3a2817cf6266a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grass.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" +}), 'Grass'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrassOutlined.js b/packages/material-ui-icons/lib/esm/GrassOutlined.js new file mode 100644 index 00000000000000..f75e95ba523572 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrassOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" +}), 'GrassOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrassRounded.js b/packages/material-ui-icons/lib/esm/GrassRounded.js new file mode 100644 index 00000000000000..064e07c0cb034c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrassRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.64 11.02c.55-1.47 1.43-2.78 2.56-3.83.38-.36.04-1-.46-.85-3.32.98-5.75 4.05-5.74 7.69.95-1.28 2.2-2.31 3.64-3.01zm-4.22-2.17c-.6-1.56-1.63-2.91-2.96-3.87-.42-.3-.96.19-.72.65C8.54 7.15 9 8.88 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29zM12 20H3c-.55 0-1-.45-1-1s.45-1 1-1h4.75c-.57-2.19-2.04-4.02-4-5.06-.16-.08-.26-.25-.26-.44 0-.27.22-.49.49-.5H4c4.42 0 8 3.58 8 8zm8.26-7.06c-1.96 1.04-3.44 2.87-4 5.06H21c.55 0 1 .45 1 1s-.45 1-1 1h-7c0-.68-.07-1.35-.2-2-.15-.72-.38-1.42-.67-2.07C14.52 13.58 17.07 12 20 12h.02c.27 0 .49.23.49.5.01.19-.1.35-.25.44z" +}), 'GrassRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrassSharp.js b/packages/material-ui-icons/lib/esm/GrassSharp.js new file mode 100644 index 00000000000000..b565257d6ecb50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrassSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" +}), 'GrassSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GrassTwoTone.js b/packages/material-ui-icons/lib/esm/GrassTwoTone.js new file mode 100644 index 00000000000000..60cb8bbeb68137 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GrassTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 20H2v-2h5.75c-.73-2.81-2.94-5.01-5.75-5.74.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.2 1.32.2 2h8v-2h-5.75c.74-2.81 2.95-5.01 5.76-5.74zm-6.36-1.24c.78-2.09 2.23-3.84 4.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17C10.58 6.66 8.88 4.89 6.7 4 8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82.21-1.18.65-2.29 1.24-3.29z" +}), 'GrassTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid3x3.js b/packages/material-ui-icons/lib/esm/Grid3x3.js new file mode 100644 index 00000000000000..04437f98893ade --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid3x3.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'Grid3x3'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid3x3Outlined.js b/packages/material-ui-icons/lib/esm/Grid3x3Outlined.js new file mode 100644 index 00000000000000..b9ee30cbdf240c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid3x3Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'Grid3x3Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid3x3Rounded.js b/packages/material-ui-icons/lib/esm/Grid3x3Rounded.js new file mode 100644 index 00000000000000..58c585a59845fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid3x3Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9c0-.55-.45-1-1-1h-3V5c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V5c0-.55-.45-1-1-1s-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v4H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h4v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3v-4h3c.55 0 1-.45 1-1zm-6 5h-4v-4h4v4z" +}), 'Grid3x3Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid3x3Sharp.js b/packages/material-ui-icons/lib/esm/Grid3x3Sharp.js new file mode 100644 index 00000000000000..42ae66d487b8d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid3x3Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'Grid3x3Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid3x3TwoTone.js b/packages/material-ui-icons/lib/esm/Grid3x3TwoTone.js new file mode 100644 index 00000000000000..7702d4be417ea1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid3x3TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'Grid3x3TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid4x4.js b/packages/material-ui-icons/lib/esm/Grid4x4.js new file mode 100644 index 00000000000000..29641138ddbf63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid4x4.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" +}), 'Grid4x4'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid4x4Outlined.js b/packages/material-ui-icons/lib/esm/Grid4x4Outlined.js new file mode 100644 index 00000000000000..4cdb4fcd7e5a17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid4x4Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" +}), 'Grid4x4Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid4x4Rounded.js b/packages/material-ui-icons/lib/esm/Grid4x4Rounded.js new file mode 100644 index 00000000000000..b03459212912cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid4x4Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6c0-.55-.45-1-1-1h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-4V3c0-.55-.45-1-1-1s-1 .45-1 1v2H7V3c0-.55-.45-1-1-1s-1 .45-1 1v2H3c-.55 0-1 .45-1 1s.45 1 1 1h2v4H3c-.55 0-1 .45-1 1s.45 1 1 1h2v4H3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-4h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V7h2c.55 0 1-.45 1-1zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" +}), 'Grid4x4Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid4x4Sharp.js b/packages/material-ui-icons/lib/esm/Grid4x4Sharp.js new file mode 100644 index 00000000000000..e644d80d78658f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid4x4Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" +}), 'Grid4x4Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Grid4x4TwoTone.js b/packages/material-ui-icons/lib/esm/Grid4x4TwoTone.js new file mode 100644 index 00000000000000..6edf9a5ad6b9f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Grid4x4TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" +}), 'Grid4x4TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridGoldenratio.js b/packages/material-ui-icons/lib/esm/GridGoldenratio.js new file mode 100644 index 00000000000000..1839eb9fbf1937 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridGoldenratio.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" +}), 'GridGoldenratio'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridGoldenratioOutlined.js b/packages/material-ui-icons/lib/esm/GridGoldenratioOutlined.js new file mode 100644 index 00000000000000..de028ee2e7d71e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridGoldenratioOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" +}), 'GridGoldenratioOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridGoldenratioRounded.js b/packages/material-ui-icons/lib/esm/GridGoldenratioRounded.js new file mode 100644 index 00000000000000..c0d99fea7b06db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridGoldenratioRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 13h-6v-2h6c.55 0 1-.45 1-1s-.45-1-1-1h-6V3c0-.55-.45-1-1-1s-1 .45-1 1v6h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v6H3c-.55 0-1 .45-1 1s.45 1 1 1h6v2H3c-.55 0-1 .45-1 1s.45 1 1 1h6v6c0 .55.45 1 1 1s1-.45 1-1v-6h2v6c0 .55.45 1 1 1s1-.45 1-1v-6h6c.55 0 1-.45 1-1s-.45-1-1-1zm-8 0h-2v-2h2v2z" +}), 'GridGoldenratioRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridGoldenratioSharp.js b/packages/material-ui-icons/lib/esm/GridGoldenratioSharp.js new file mode 100644 index 00000000000000..9643784f986498 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridGoldenratioSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" +}), 'GridGoldenratioSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridGoldenratioTwoTone.js b/packages/material-ui-icons/lib/esm/GridGoldenratioTwoTone.js new file mode 100644 index 00000000000000..7615a00bef8571 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridGoldenratioTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" +}), 'GridGoldenratioTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOff.js b/packages/material-ui-icons/lib/esm/GridOff.js new file mode 100644 index 00000000000000..d695f558f8c7df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4v1.45l2 2V4h4v4h-3.45l2 2H14v1.45l2 2V10h4v4h-3.45l2 2H20v1.45l2 2V4c0-1.1-.9-2-2-2H4.55l2 2H8zm8 0h4v4h-4V4zM1.27 1.27 0 2.55l2 2V20c0 1.1.9 2 2 2h15.46l2 2 1.27-1.27L1.27 1.27zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.54V20zm2 0v-1.46L17.46 20H16z" +}), 'GridOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOffOutlined.js b/packages/material-ui-icons/lib/esm/GridOffOutlined.js new file mode 100644 index 00000000000000..11187ab5309231 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14 0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" +}), 'GridOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOffRounded.js b/packages/material-ui-icons/lib/esm/GridOffRounded.js new file mode 100644 index 00000000000000..f0eb1a620090c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h3c.55 0 1 .45 1 1v3h-4V4zm6.16 17.88L2.12 1.84a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L2 4.55V20c0 1.1.9 2 2 2h15.45l1.3 1.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H5c-.55 0-1-.45-1-1v-3h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" +}), 'GridOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOffSharp.js b/packages/material-ui-icons/lib/esm/GridOffSharp.js new file mode 100644 index 00000000000000..e115709aaae01b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14 0 2.55l2 2V22h17.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" +}), 'GridOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOffTwoTone.js b/packages/material-ui-icons/lib/esm/GridOffTwoTone.js new file mode 100644 index 00000000000000..513c50e3a539a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 14v-4h-4v2.89L17.11 14zm-10-1.45V14h1.45zM14 10h-.89l.89.89zm5.11 6 .89.89V16zM8 4h-.89l.89.89zm6 4V4h-4v2.89L11.11 8zm2-4h4v4h-4zm-6 12v4h4v-3.45l-.55-.55zm-6-6v4h4v-3.45L7.45 10zm12 10h1.45L16 18.55zM4 16h4v4H4zm0-9.45V8h1.45z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14 0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55 11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" +}, "1")], 'GridOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOn.js b/packages/material-ui-icons/lib/esm/GridOn.js new file mode 100644 index 00000000000000..26e2b7a45bad3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" +}), 'GridOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOnOutlined.js b/packages/material-ui-icons/lib/esm/GridOnOutlined.js new file mode 100644 index 00000000000000..15efa913883db5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" +}), 'GridOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOnRounded.js b/packages/material-ui-icons/lib/esm/GridOnRounded.js new file mode 100644 index 00000000000000..bd675b87274a1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H5c-.55 0-1-.45-1-1v-3h4v4zm0-6H4v-4h4v4zm0-6H4V5c0-.55.45-1 1-1h3v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm5 12h-3v-4h4v3c0 .55-.45 1-1 1zm1-6h-4v-4h4v4zm0-6h-4V4h3c.55 0 1 .45 1 1v3z" +}), 'GridOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOnSharp.js b/packages/material-ui-icons/lib/esm/GridOnSharp.js new file mode 100644 index 00000000000000..8c19f58593915b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" +}), 'GridOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridOnTwoTone.js b/packages/material-ui-icons/lib/esm/GridOnTwoTone.js new file mode 100644 index 00000000000000..491d97f511f6be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridOnTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 10h4v4h-4zm0 6h4v4h-4zM4 4h4v4H4zm0 6h4v4H4zm0 6h4v4H4zM16 4h4v4h-4zm0 6h4v4h-4zm0 6h4v4h-4zM10 4h4v4h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" +}, "1")], 'GridOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridView.js b/packages/material-ui-icons/lib/esm/GridView.js new file mode 100644 index 00000000000000..7bb0e2ee05b48d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridView.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z" +}), 'GridView'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridViewOutlined.js b/packages/material-ui-icons/lib/esm/GridViewOutlined.js new file mode 100644 index 00000000000000..f78f5e11171c12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridViewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z" +}), 'GridViewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridViewRounded.js b/packages/material-ui-icons/lib/esm/GridViewRounded.js new file mode 100644 index 00000000000000..f84bb75488fe9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridViewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 11h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm0 10h4c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm8-16v4c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2zm2 16h4c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2z" +}), 'GridViewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridViewSharp.js b/packages/material-ui-icons/lib/esm/GridViewSharp.js new file mode 100644 index 00000000000000..259d2d04723f44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridViewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h8v8H3zm0 10h8v8H3zM13 3h8v8h-8zm0 10h8v8h-8z" +}), 'GridViewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GridViewTwoTone.js b/packages/material-ui-icons/lib/esm/GridViewTwoTone.js new file mode 100644 index 00000000000000..57006ee52f6e80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GridViewTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h4v4H5zm0 10h4v4H5zm10 0h4v4h-4zm0-10h4v4h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 21h8v-8H3v8zm2-6h4v4H5v-4zm-2-4h8V3H3v8zm2-6h4v4H5V5zm8 16h8v-8h-8v8zm2-6h4v4h-4v-4zM13 3v8h8V3h-8zm6 6h-4V5h4v4z" +}, "1")], 'GridViewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Group.js b/packages/material-ui-icons/lib/esm/Group.js new file mode 100644 index 00000000000000..9a4b7ea3999378 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Group.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" +}), 'Group'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupAdd.js b/packages/material-ui-icons/lib/esm/GroupAdd.js new file mode 100644 index 00000000000000..03598b3751a69b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 10H5V7H3v3H0v2h3v3h2v-3h3v-2zm10 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm6.62 2.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84zM13 13c-2 0-6 1-6 3v2h12v-2c0-2-4-3-6-3z" +}), 'GroupAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupAddOutlined.js b/packages/material-ui-icons/lib/esm/GroupAddOutlined.js new file mode 100644 index 00000000000000..9e952bb4a809ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15v-3h3v-2H5V7H3v3H0v2h3v3zm7-1.25c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm5 5c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z" +}), 'GroupAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupAddRounded.js b/packages/material-ui-icons/lib/esm/GroupAddRounded.js new file mode 100644 index 00000000000000..42812b37f1ac2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 10H5V8c0-.55-.45-1-1-1s-1 .45-1 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1zm11 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5s-3 1.34-3 3 1.34 3 3 3zm0 2c-2 0-6 1-6 3v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-1c0-2-4-3-6-3zm6.62.16c.83.73 1.38 1.66 1.38 2.84v1.5c0 .17-.02.34-.05.5h2.55c.28 0 .5-.22.5-.5V16c0-1.54-2.37-2.49-4.38-2.84z" +}), 'GroupAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupAddSharp.js b/packages/material-ui-icons/lib/esm/GroupAddSharp.js new file mode 100644 index 00000000000000..92799791d1b67a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 10H5V7H3v3H0v2h3v3h2v-3h3v-2zm10 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5s-3 1.34-3 3 1.34 3 3 3zm6.62 2.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84zM13 13c-2 0-6 1-6 3v2h12v-2c0-2-4-3-6-3z" +}), 'GroupAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupAddTwoTone.js b/packages/material-ui-icons/lib/esm/GroupAddTwoTone.js new file mode 100644 index 00000000000000..c5acfb92037632 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupAddTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 15v-3h3v-2H5V7H3v3H0v2h3v3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "8.5", + r: "1.5", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 12c1.93 0 3.5-1.57 3.5-3.5S13.93 5 12 5 8.5 6.57 8.5 8.5 10.07 12 12 12zm0-5c.83 0 1.5.67 1.5 1.5S12.83 10 12 10s-1.5-.67-1.5-1.5S11.17 7 12 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM7.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H7.34zM17 12c1.93 0 3.5-1.57 3.5-3.5S18.93 5 17 5c-.24 0-.48.02-.71.07.76.94 1.21 2.13 1.21 3.43 0 1.3-.47 2.48-1.23 3.42.24.05.48.08.73.08zm2.32 2.02c1 .81 1.68 1.87 1.68 3.23V19h3v-1.75c0-1.69-2.44-2.76-4.68-3.23z" +}, "3")], 'GroupAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupOutlined.js b/packages/material-ui-icons/lib/esm/GroupOutlined.js new file mode 100644 index 00000000000000..b0713ff213e28d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}), 'GroupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupRounded.js b/packages/material-ui-icons/lib/esm/GroupRounded.js new file mode 100644 index 00000000000000..bfcfc0cbf0fe33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z" +}), 'GroupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupSharp.js b/packages/material-ui-icons/lib/esm/GroupSharp.js new file mode 100644 index 00000000000000..076b86af8c4b17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" +}), 'GroupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupTwoTone.js b/packages/material-ui-icons/lib/esm/GroupTwoTone.js new file mode 100644 index 00000000000000..b899f44d6a5c4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8.5", + r: "1.5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}, "2")], 'GroupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupWork.js b/packages/material-ui-icons/lib/esm/GroupWork.js new file mode 100644 index 00000000000000..48c882599597ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupWork.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'GroupWork'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupWorkOutlined.js b/packages/material-ui-icons/lib/esm/GroupWorkOutlined.js new file mode 100644 index 00000000000000..bdf7d3881627ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupWorkOutlined.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "14", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "8", + r: "2" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "14", + r: "2" +}, "3")], 'GroupWorkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupWorkRounded.js b/packages/material-ui-icons/lib/esm/GroupWorkRounded.js new file mode 100644 index 00000000000000..924f92e0191b37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupWorkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'GroupWorkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupWorkSharp.js b/packages/material-ui-icons/lib/esm/GroupWorkSharp.js new file mode 100644 index 00000000000000..6dbffc6215c742 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupWorkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'GroupWorkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupWorkTwoTone.js b/packages/material-ui-icons/lib/esm/GroupWorkTwoTone.js new file mode 100644 index 00000000000000..7f339ce7edc275 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupWorkTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM8 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4-6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "14", + r: "2" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "8", + r: "2" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "14", + r: "2" +}, "4")], 'GroupWorkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Groups.js b/packages/material-ui-icons/lib/esm/Groups.js new file mode 100644 index 00000000000000..5df67ec7fb5236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Groups.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z" +}), 'Groups'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupsOutlined.js b/packages/material-ui-icons/lib/esm/GroupsOutlined.js new file mode 100644 index 00000000000000..4b5ae2f2dc2cb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zm-7.76-2.78c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9C6.68 14.13 6 15.21 6 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zM8.07 16c.09-.23.13-.39.91-.69.97-.38 1.99-.56 3.02-.56s2.05.18 3.02.56c.77.3.81.46.91.69H8.07zM12 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'GroupsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupsRounded.js b/packages/material-ui-icons/lib/esm/GroupsRounded.js new file mode 100644 index 00000000000000..b8e92cb93673c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V17c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V17c0 .55.45 1 1 1h3.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H23c.55 0 1-.45 1-1v-.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z" +}), 'GroupsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupsSharp.js b/packages/material-ui-icons/lib/esm/GroupsSharp.js new file mode 100644 index 00000000000000..671545b9c4ce97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z" +}), 'GroupsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/GroupsTwoTone.js b/packages/material-ui-icons/lib/esm/GroupsTwoTone.js new file mode 100644 index 00000000000000..8871c0cb7d5694 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/GroupsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.07 16c.09-.23.13-.39.91-.69.97-.38 1.99-.56 3.02-.56s2.05.18 3.02.56c.77.3.81.46.91.69H8.07zM12 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58C.48 14.9 0 15.62 0 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zm-7.76-2.78c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9C6.68 14.13 6 15.21 6 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zM8.07 16c.09-.23.13-.39.91-.69.97-.38 1.99-.56 3.02-.56s2.05.18 3.02.56c.77.3.81.46.91.69H8.07zM12 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}, "1")], 'GroupsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HMobiledata.js b/packages/material-ui-icons/lib/esm/HMobiledata.js new file mode 100644 index 00000000000000..af13b383090a62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" +}), 'HMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/HMobiledataOutlined.js new file mode 100644 index 00000000000000..3c46dd035541e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" +}), 'HMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HMobiledataRounded.js b/packages/material-ui-icons/lib/esm/HMobiledataRounded.js new file mode 100644 index 00000000000000..905028404f88bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11H9V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1v-3h6v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v3z" +}), 'HMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HMobiledataSharp.js b/packages/material-ui-icons/lib/esm/HMobiledataSharp.js new file mode 100644 index 00000000000000..31583717a7e417 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" +}), 'HMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/HMobiledataTwoTone.js new file mode 100644 index 00000000000000..bbf27aba6165b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" +}), 'HMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HPlusMobiledata.js b/packages/material-ui-icons/lib/esm/HPlusMobiledata.js new file mode 100644 index 00000000000000..67407cce38fde0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HPlusMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'HPlusMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HPlusMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/HPlusMobiledataOutlined.js new file mode 100644 index 00000000000000..8458b665667fc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HPlusMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'HPlusMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HPlusMobiledataRounded.js b/packages/material-ui-icons/lib/esm/HPlusMobiledataRounded.js new file mode 100644 index 00000000000000..5d7ea514af2245 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HPlusMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11H6V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1v-3h6v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v3zm9 0h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'HPlusMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HPlusMobiledataSharp.js b/packages/material-ui-icons/lib/esm/HPlusMobiledataSharp.js new file mode 100644 index 00000000000000..d47b5143eec41b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HPlusMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'HPlusMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HPlusMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/HPlusMobiledataTwoTone.js new file mode 100644 index 00000000000000..4a85d2753e80d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HPlusMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'HPlusMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hail.js b/packages/material-ui-icons/lib/esm/Hail.js new file mode 100644 index 00000000000000..b1b884dd197c9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hail.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2v.4c-.1 2.2-.8 3.9-2.3 5.1-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.9.7-1.39 1.6-1.4 3.1v.5H5v-.5c0-2 .71-3.59 2.11-4.79C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C16.48 5.14 17 4 17 2.5V2zM4 16h3v6H4v-6z" +}), 'Hail'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HailOutlined.js b/packages/material-ui-icons/lib/esm/HailOutlined.js new file mode 100644 index 00000000000000..412c501c0c0d36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HailOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z" +}), 'HailOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HailRounded.js b/packages/material-ui-icons/lib/esm/HailRounded.js new file mode 100644 index 00000000000000..f701607219e49b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HailRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.95-4c.59 0 1.06.51 1 1.09-.02.15-.21 4.06-3.95 5.31V21c0 .55-.45 1-1 1s-1-.45-1-1v-5h-2v5c0 .55-.45 1-1 1s-1-.45-1-1V10.1c-.3.1-.5.2-.6.3-.46.36-1.17.87-1.36 2.67-.05.52-.47.93-1 .93-.58 0-1.05-.49-1-1.07.13-1.6.62-2.98 2.07-4.22C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06c.43-.34 1.28-.99 1.48-3.02.05-.52.47-.92.99-.92zM5 16h1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1z" +}), 'HailRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HailSharp.js b/packages/material-ui-icons/lib/esm/HailSharp.js new file mode 100644 index 00000000000000..260037d516ce78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HailSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z" +}), 'HailSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HailTwoTone.js b/packages/material-ui-icons/lib/esm/HailTwoTone.js new file mode 100644 index 00000000000000..420f71f767e714 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HailTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z" +}), 'HailTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Handyman.js b/packages/material-ui-icons/lib/esm/Handyman.js new file mode 100644 index 00000000000000..e703ec8fc58ed7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Handyman.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.67 18.17-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05z" +}, "1")], 'Handyman'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HandymanOutlined.js b/packages/material-ui-icons/lib/esm/HandymanOutlined.js new file mode 100644 index 00000000000000..620340df69853e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HandymanOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.67 18.17-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41zm-2.83 1.42-4.24-4.24.71-.71 4.24 4.24-.71.71z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05zm-7.98 5.15-4.24 4.24-.71-.71 4.24-4.24.71.71z" +}, "1")], 'HandymanOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HandymanRounded.js b/packages/material-ui-icons/lib/esm/HandymanRounded.js new file mode 100644 index 00000000000000..d6940ed88a45fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HandymanRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.67 18.17-4.72-4.72c-.48-.48-.99-.59-1.58-.59l-2.54 2.54c0 .59.11 1.11.59 1.58l4.72 4.72c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.63 9.49c.39.39 1.02.39 1.41 0l.71-.71 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-2.83-2.83a.9959.9959 0 0 0-1.41 0l-.71.71V2c0-.62-.76-.95-1.21-.5l-2.54 2.54c-.45.45-.12 1.21.5 1.21h2.54l-.71.71c-.39.39-.39 1.02 0 1.41l.35.35-2.89 2.89-4.11-4.13v-1c0-.27-.11-.52-.29-.71L5.54 2.74a.9959.9959 0 0 0-1.41 0L2.71 4.16c-.39.39-.39 1.02 0 1.41L4.73 7.6c.19.19.44.29.71.29h1l4.13 4.13-.85.85h-1.3c-.53 0-1.04.21-1.41.59l-4.72 4.72c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l4.72-4.72c.38-.38.59-.88.59-1.41v-1.29l5.15-5.15.35.35z" +}, "1")], 'HandymanRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HandymanSharp.js b/packages/material-ui-icons/lib/esm/HandymanSharp.js new file mode 100644 index 00000000000000..c6834477de4284 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HandymanSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.37 12.87h-.99l-2.54 2.54v.99l6.01 6.01 3.54-3.54-6.02-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-6.01 6.01 3.54 3.54 6.01-6.01V14.3l5.15-5.15 1.05 1.04z" +}, "1")], 'HandymanSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HandymanTwoTone.js b/packages/material-ui-icons/lib/esm/HandymanTwoTone.js new file mode 100644 index 00000000000000..6acf589098112a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HandymanTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8.66 14.64-4.25 4.24.71.71 4.24-4.25-.7-.7zm5.9356.7054.7071-.7072 4.2426 4.2427-.707.7071z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.67 18.17-5.3-5.3h-.99l-2.54 2.54v.99l5.3 5.3c.39.39 1.02.39 1.41 0l2.12-2.12c.39-.38.39-1.02 0-1.41zm-2.83 1.42-4.24-4.24.71-.71 4.24 4.24-.71.71z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m17.34 10.19 1.41-1.41 2.12 2.12c1.17-1.17 1.17-3.07 0-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-5.3 5.3c-.39.39-.39 1.02 0 1.41l2.12 2.12c.39.39 1.02.39 1.41 0l5.3-5.3v-2.12l5.15-5.15 1.06 1.05zm-7.98 5.15-4.24 4.24-.71-.71 4.24-4.24.71.71z" +}, "2")], 'HandymanTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hardware.js b/packages/material-ui-icons/lib/esm/Hardware.js new file mode 100644 index 00000000000000..a3e0227ef1d8de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hardware.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v3h6V8l3 3h2V3h-2zM9 13v7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-7H9z" +}), 'Hardware'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HardwareOutlined.js b/packages/material-ui-icons/lib/esm/HardwareOutlined.js new file mode 100644 index 00000000000000..a49c176a92afb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HardwareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v12c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8l3 3h2V3h-2zm-5 16h-2v-6h2v6zm-2-8V6H6.77C7.32 5.39 8.11 5 9 5h4v6h-2z" +}), 'HardwareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HardwareRounded.js b/packages/material-ui-icons/lib/esm/HardwareRounded.js new file mode 100644 index 00000000000000..d7458f98109a8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HardwareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.59 3.41 15 6V5c0-1.1-.9-2-2-2H9C6.24 3 4 5.24 4 8h5v3h6V8l2.59 2.59c.26.26.62.41 1 .41h.01c.77 0 1.4-.63 1.4-1.41V4.41C20 3.63 19.37 3 18.59 3h-.01c-.37 0-.73.15-.99.41zM9 13v7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-7H9z" +}), 'HardwareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HardwareSharp.js b/packages/material-ui-icons/lib/esm/HardwareSharp.js new file mode 100644 index 00000000000000..91011e09741d5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HardwareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v3h6V8l3 3h2V3h-2zM9 13v8h6v-8H9z" +}), 'HardwareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HardwareTwoTone.js b/packages/material-ui-icons/lib/esm/HardwareTwoTone.js new file mode 100644 index 00000000000000..d5708b633468f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HardwareTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.77 6H11v5h2V5H9c-.89 0-1.68.39-2.23 1zM11 13h2v6h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18 3-3 3V3H9C6.24 3 4 5.24 4 8h5v12c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8l3 3h2V3h-2zm-5 16h-2v-6h2v6zm0-8h-2V6H6.77C7.32 5.39 8.11 5 9 5h4v6z" +}, "1")], 'HardwareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hd.js b/packages/material-ui-icons/lib/esm/Hd.js new file mode 100644 index 00000000000000..92cf8a8f404918 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 12H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z" +}), 'Hd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdOutlined.js b/packages/material-ui-icons/lib/esm/HdOutlined.js new file mode 100644 index 00000000000000..412f8e72ffb910 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zM18 14v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z" +}), 'HdOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdRounded.js b/packages/material-ui-icons/lib/esm/HdRounded.js new file mode 100644 index 00000000000000..d978620afa1d2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 12c-.41 0-.75-.34-.75-.75V13h-2v1.25c0 .41-.34.75-.75.75S6 14.66 6 14.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.75h2V9.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zm3.25-6H17c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-3.5c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5zm1 4.5h2v-3h-2v3z" +}), 'HdRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdSharp.js b/packages/material-ui-icons/lib/esm/HdSharp.js new file mode 100644 index 00000000000000..e4a10f52fec944 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z" +}), 'HdSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdTwoTone.js b/packages/material-ui-icons/lib/esm/HdTwoTone.js new file mode 100644 index 00000000000000..65706799268ae1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.5 10.5h2v3h-2zM19 5H5v14h14V5zm-8 10H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-4V9h4c.55 0 1 .45 1 1v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm4.5 6.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-4v6h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z" +}, "1")], 'HdTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAuto.js b/packages/material-ui-icons/lib/esm/HdrAuto.js new file mode 100644 index 00000000000000..bc0c75e39172ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAuto.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.04 8.04h-.09l-1.6 4.55h3.29z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.21 15-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z" +}, "1")], 'HdrAuto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoOutlined.js b/packages/material-ui-icons/lib/esm/HdrAutoOutlined.js new file mode 100644 index 00000000000000..9d0371568f5f26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-.99-14L6.88 17h1.9l1-2.81h4.44l.99 2.81h1.9L12.98 6h-1.97zm-.66 6.59 1.6-4.55h.09l1.6 4.55h-3.29z" +}), 'HdrAutoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoRounded.js b/packages/material-ui-icons/lib/esm/HdrAutoRounded.js new file mode 100644 index 00000000000000..311fb7b62fe0d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.04 8.04h-.09l-1.6 4.55h3.29z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3 14.41-.78-2.22H9.78l-.79 2.22c-.12.35-.46.59-.83.59-.62 0-1.05-.62-.83-1.2l3.34-8.88C10.88 6.37 11.4 6 12 6c.59 0 1.12.37 1.33.92l3.34 8.88c.22.58-.21 1.2-.83 1.2-.38 0-.72-.24-.84-.59z" +}, "1")], 'HdrAutoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoSelect.js b/packages/material-ui-icons/lib/esm/HdrAutoSelect.js new file mode 100644 index 00000000000000..744c4bee32791e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoSelect.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm6.5-4.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" +}, "1")], 'HdrAutoSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoSelectOutlined.js b/packages/material-ui-icons/lib/esm/HdrAutoSelectOutlined.js new file mode 100644 index 00000000000000..a13a773cf0453c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoSelectOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zM3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM16.5 16H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" +}, "1")], 'HdrAutoSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoSelectRounded.js b/packages/material-ui-icons/lib/esm/HdrAutoSelectRounded.js new file mode 100644 index 00000000000000..48cb1bcf1e1e4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoSelectRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 16H7.25c-.41 0-.75.34-.75.75v4.5c0 .41.34.75.75.75H10c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5zm0 4.5H8v-3h2v3zM4.25 16c-.41 0-.75.34-.75.75V18h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75zm19 2.5H22v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.25h-1.25c-.41 0-.75.34-.75.75s.34.75.75.75h1.25v1.25c0 .41.34.75.75.75s.75-.34.75-.75V20h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zM16.5 16h-2.75c-.41 0-.75.34-.75.75v4.56c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4v-1c0-.83-.67-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.44 9c-.24 0-.45-.15-.53-.38l-.49-1.41h-2.83l-.5 1.41c-.08.23-.29.38-.53.38-.39 0-.67-.39-.53-.76l2.12-5.65c.14-.36.47-.59.85-.59s.71.23.85.59l2.12 5.65c.14.37-.13.76-.53.76z" +}, "1")], 'HdrAutoSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoSelectSharp.js b/packages/material-ui-icons/lib/esm/HdrAutoSelectSharp.js new file mode 100644 index 00000000000000..616305486d9ebb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoSelectSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm12-2v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM13 22h1.5v-2h1.1l.9 2H18l-.86-2H18v-4h-5v6zm1.5-4.5h2v1h-2v-1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" +}, "1")], 'HdrAutoSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoSelectTwoTone.js b/packages/material-ui-icons/lib/esm/HdrAutoSelectTwoTone.js new file mode 100644 index 00000000000000..4054fb022e6605 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoSelectTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 18.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm13-2H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm1.97-15.2-1.02 2.89h2.1L12.03 5.3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" +}, "1")], 'HdrAutoSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoSharp.js b/packages/material-ui-icons/lib/esm/HdrAutoSharp.js new file mode 100644 index 00000000000000..1718fe9abfb36f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.04 8.04h-.09l-1.6 4.55h3.29z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.21 15-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z" +}, "1")], 'HdrAutoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrAutoTwoTone.js b/packages/material-ui-icons/lib/esm/HdrAutoTwoTone.js new file mode 100644 index 00000000000000..2355d062fd1e24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrAutoTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.04 8.04h-.09l-1.6 4.55h3.29z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm3.21 13-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.01 6 6.88 17h1.9l1-2.81h4.44l.99 2.81h1.9L12.98 6h-1.97zm-.66 6.59 1.6-4.55h.09l1.6 4.55h-3.29z" +}, "3")], 'HdrAutoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrEnhancedSelect.js b/packages/material-ui-icons/lib/esm/HdrEnhancedSelect.js new file mode 100644 index 00000000000000..e2292fc386975a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrEnhancedSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm1 7h-2V9H9V7h2V5h2v2h2v2h-2v2zm11 9h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zm-6-1.5c0 .6-.4 1.1-.9 1.4L18 22h-1.5l-.9-2h-1.1v2H13v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm-1.5 0v-1h-2v1h2zm-13-.5v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2h2zm6.5-2c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H6.5v-6H10zm0 4.5v-3H8v3h2z" +}), 'HdrEnhancedSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrEnhancedSelectOutlined.js b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectOutlined.js new file mode 100644 index 00000000000000..1d86986b0a3e5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm1 7h-2V9H9V7h2V5h2v2h2v2h-2v2zm11 9h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zm-6-1.5c0 .6-.4 1.1-.9 1.4L18 22h-1.5l-.9-2h-1.1v2H13v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm-1.5 0v-1h-2v1h2zm-13-.5v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2h2zm6.5-2c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H6.5v-6H10zm0 4.5v-3H8v3h2z" +}), 'HdrEnhancedSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrEnhancedSelectRounded.js b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectRounded.js new file mode 100644 index 00000000000000..6209e8fbb4ce0a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2 7h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V9h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V6c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1zm-4 7H7c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5h3c.82 0 1.5-.67 1.5-1.5v-3c0-.83-.68-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm6.5-4.5H14c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4v-1c0-.83-.67-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zm-13-.5h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75V18zm18.5.5v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.25h-1.25c-.41 0-.75.34-.75.75s.34.75.75.75h1.25v1.25c0 .41.34.75.75.75s.75-.34.75-.75V20h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H22z" +}), 'HdrEnhancedSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrEnhancedSelectSharp.js b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectSharp.js new file mode 100644 index 00000000000000..c1eb294cd5143d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm3 7h-2v2h-2V9H9V7h2V5h2v2h2v2zm-5 7H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm8-4.5h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18v-4zm-1.5 2.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5z" +}), 'HdrEnhancedSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrEnhancedSelectTwoTone.js b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectTwoTone.js new file mode 100644 index 00000000000000..0fe3a7b52f71ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrEnhancedSelectTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm3 5h-2v2h-2V9H9V7h2V5h2v2h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13 5h-2v2H9v2h2v2h2V9h2V7h-2zM3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM16.5 16H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1zM10 16H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3z" +}, "2")], 'HdrEnhancedSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOff.js b/packages/material-ui-icons/lib/esm/HdrOff.js new file mode 100644 index 00000000000000..3a564795116bab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z" +}), 'HdrOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffOutlined.js b/packages/material-ui-icons/lib/esm/HdrOffOutlined.js new file mode 100644 index 00000000000000..d3431c507a88de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49 1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" +}), 'HdrOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffRounded.js b/packages/material-ui-icons/lib/esm/HdrOffRounded.js new file mode 100644 index 00000000000000..cf7857b2e770bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 14.25V13h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.96l-.49-1.14c.5-.3.9-.8.9-1.4v-1c0-.83-.67-1.5-1.5-1.5H17c-.55 0-1 .45-1 1v3.9l1.04 1.04c.27-.11.46-.38.46-.69zm0-3.75h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.82-.68-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm8.03 10.53-18-18c-.29-.29-.76-.29-1.05 0-.29.29-.29.76 0 1.05l4.98 4.98c-.27.11-.46.38-.46.69V11h-2V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75V10.1l1.5 1.5v2.9c0 .28.22.5.5.5h2.5c.12 0 .24-.01.36-.04l7.11 7.11c.29.29.76.29 1.05 0 .29-.28.29-.75.01-1.04z" +}), 'HdrOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffSelect.js b/packages/material-ui-icons/lib/esm/HdrOffSelect.js new file mode 100644 index 00000000000000..32c078aa128420 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" +}), 'HdrOffSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffSelectOutlined.js b/packages/material-ui-icons/lib/esm/HdrOffSelectOutlined.js new file mode 100644 index 00000000000000..803e656539d54b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" +}), 'HdrOffSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffSelectRounded.js b/packages/material-ui-icons/lib/esm/HdrOffSelectRounded.js new file mode 100644 index 00000000000000..f9876cd620b7c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.83-.67-1.5-1.5-1.5H14c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75V18zm6.5-2H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1H10c.82 0 1.5-.67 1.5-1.5v-3c0-.83-.68-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm13.25-.5H22v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V20h-1.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.25v-1.25c0-.41.34-.75.75-.75s.75.34.75.75v1.25h1.25c.41 0 .75.34.75.75s-.34.75-.75.75zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zm-5.35-1.1c-.39.39-.39 1.02 0 1.41l.96.96c-2.42 5.1 2.88 10.41 7.99 7.99l.95.95c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-9.9-9.91c-.38-.38-1.02-.38-1.41.01zm2.52 3.93 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" +}), 'HdrOffSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffSelectSharp.js b/packages/material-ui-icons/lib/esm/HdrOffSelectSharp.js new file mode 100644 index 00000000000000..fc1cecd44f31d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 20v-4h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18zm-1.5-1.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" +}), 'HdrOffSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffSelectTwoTone.js b/packages/material-ui-icons/lib/esm/HdrOffSelectTwoTone.js new file mode 100644 index 00000000000000..f2f00f77482802 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffSelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15 9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34 4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64 4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" +}), 'HdrOffSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffSharp.js b/packages/material-ui-icons/lib/esm/HdrOffSharp.js new file mode 100644 index 00000000000000..d79190d0026f8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1h.9V9h-5v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49 1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" +}), 'HdrOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOffTwoTone.js b/packages/material-ui-icons/lib/esm/HdrOffTwoTone.js new file mode 100644 index 00000000000000..a786fb6b81f15f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49 1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" +}), 'HdrOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOn.js b/packages/material-ui-icons/lib/esm/HdrOn.js new file mode 100644 index 00000000000000..08e700c1d5515d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" +}), 'HdrOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnOutlined.js b/packages/material-ui-icons/lib/esm/HdrOnOutlined.js new file mode 100644 index 00000000000000..e786a247cf39c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" +}), 'HdrOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnRounded.js b/packages/material-ui-icons/lib/esm/HdrOnRounded.js new file mode 100644 index 00000000000000..96609f69deaf8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.25 9c-.41 0-.75.34-.75.75V11h-2V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C8 9.34 7.66 9 7.25 9zM21 11.5v-1c0-.83-.67-1.5-1.5-1.5H17c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.96l-.49-1.14c.5-.3.9-.8.9-1.4zm-3.5 0v-1h2v1h-2zM13 9h-3c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5h3c.82 0 1.5-.68 1.5-1.5v-3c0-.82-.68-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" +}), 'HdrOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnSelect.js b/packages/material-ui-icons/lib/esm/HdrOnSelect.js new file mode 100644 index 00000000000000..7492c3103be9df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" +}), 'HdrOnSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnSelectOutlined.js b/packages/material-ui-icons/lib/esm/HdrOnSelectOutlined.js new file mode 100644 index 00000000000000..5d943ed4693589 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" +}), 'HdrOnSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnSelectRounded.js b/packages/material-ui-icons/lib/esm/HdrOnSelectRounded.js new file mode 100644 index 00000000000000..5a251072900461 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.83-.67-1.5-1.5-1.5H14c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V20h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.97l-.48-1.13c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V19.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75V18zm6.5-2H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1H10c.82 0 1.5-.67 1.5-1.5v-3c0-.83-.68-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm13.25-.5H22v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V20h-1.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.25v-1.25c0-.41.34-.75.75-.75s.75.34.75.75v1.25h1.25c.41 0 .75.34.75.75s-.34.75-.75.75zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" +}), 'HdrOnSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnSelectSharp.js b/packages/material-ui-icons/lib/esm/HdrOnSelectSharp.js new file mode 100644 index 00000000000000..83cc73d39b9084 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 19.9V16h-5v6h1.5v-2h1.1l.9 2H18l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" +}), 'HdrOnSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnSelectTwoTone.js b/packages/material-ui-icons/lib/esm/HdrOnSelectTwoTone.js new file mode 100644 index 00000000000000..5109ff29c413ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnSelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 18.5v-1c0-.8-.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l.9 2H18l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" +}), 'HdrOnSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnSharp.js b/packages/material-ui-icons/lib/esm/HdrOnSharp.js new file mode 100644 index 00000000000000..4c9d91812bd729 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 12.9V9h-5v6h1.5v-2h1.1l.9 2H21l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" +}), 'HdrOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrOnTwoTone.js b/packages/material-ui-icons/lib/esm/HdrOnTwoTone.js new file mode 100644 index 00000000000000..51c9ab601df53e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3zm8-2v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5z" +}), 'HdrOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrPlus.js b/packages/material-ui-icons/lib/esm/HdrPlus.js new file mode 100644 index 00000000000000..4217a43c1be995 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrPlus.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13.5c0 .6-.4 1.1-.9 1.4L12 19h-1.5l-.9-2H8.5v2H7v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm0-3.5h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z" +}, "1")], 'HdrPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrPlusOutlined.js b/packages/material-ui-icons/lib/esm/HdrPlusOutlined.js new file mode 100644 index 00000000000000..48fb068693fd5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrPlusOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.13 19c1.15.64 2.47 1 3.87 1 4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8c0 2.52 1.17 4.77 3 6.24V13h3.5c.8 0 1.5.7 1.5 1.5v1c0 .6-.4 1.1-.9 1.4L12 19h-1.5l-.9-2H8.5v2h-.37zM12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zm5.5 14H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm-7-.5v-1h-2v1h2zm0-7.5V6H12v6h-1.5V9.5h-2V12H7V6h1.5v2h2zM16 6c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5h-3V6h3zm0 4.5v-3h-1.5v3H16z" +}), 'HdrPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrPlusRounded.js b/packages/material-ui-icons/lib/esm/HdrPlusRounded.js new file mode 100644 index 00000000000000..95673f4384df1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrPlusRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13.5c0 .6-.4 1.1-.9 1.4l.49 1.13c.2.46-.14.97-.64.97-.27 0-.52-.16-.63-.41L9.6 17H8.5v1.31c0 .38-.31.69-.69.69h-.12c-.38 0-.69-.31-.69-.69V14c0-.55.45-1 1-1h2.5c.82 0 1.5.68 1.5 1.5v1zm-.75-3.5c-.41 0-.75-.34-.75-.75V9.5h-2v1.75c0 .41-.34.75-.75.75S7 11.66 7 11.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75V8h2V6.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zm5.5 4H16v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V16h-.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h.75v-.75c0-.41.34-.75.75-.75s.75.34.75.75v.74h.75c.41 0 .75.34.75.75v.01c0 .41-.34.75-.75.75zm.75-5.5c0 .82-.67 1.5-1.5 1.5h-2.5c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5H16c.83 0 1.5.68 1.5 1.5v3z" +}, "1")], 'HdrPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrPlusSharp.js b/packages/material-ui-icons/lib/esm/HdrPlusSharp.js new file mode 100644 index 00000000000000..678de6c9cf2f06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrPlusSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15-.86-.01L12 19h-1.5l-.9-2H8.5v2H7v-6h5v4zm0-5h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z" +}, "1")], 'HdrPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrPlusTwoTone.js b/packages/material-ui-icons/lib/esm/HdrPlusTwoTone.js new file mode 100644 index 00000000000000..bbe8a1fe177b30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrPlusTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8 0 2.52 1.17 4.77 3 6.24V13h3.5c.8 0 1.5.7 1.5 1.5v1c0 .6-.4 1.1-.9 1.4L12 19h-1.5l-.9-2H8.5v2h-.37c1.15.64 2.47 1 3.87 1 4.41 0 8-3.59 8-8s-3.59-8-8-8zm0 8h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 7.5H16v3h-1.5zm-6 7h2v1h-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-1.4 0-2.72-.36-3.87-1h.37v-2h1.1l.9 2H12l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H7v5.24C5.17 16.77 4 14.52 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8-3.59 8-8 8zm-3.5-4.5v-1h2v1h-2z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M10.5 8h-2V6H7v6h1.5V9.5h2V12H12V6h-1.5zM16 6h-3v6h3c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-1.5v-3H16v3zm0 2.5h-1.5v1.5H13V16h1.5v1.5H16V16h1.5v-1.51H16z" +}, "3")], 'HdrPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrStrong.js b/packages/material-ui-icons/lib/esm/HdrStrong.js new file mode 100644 index 00000000000000..376abe1c985053 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrStrong.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'HdrStrong'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrStrongOutlined.js b/packages/material-ui-icons/lib/esm/HdrStrongOutlined.js new file mode 100644 index 00000000000000..081e9a5823d8d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrStrongOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'HdrStrongOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrStrongRounded.js b/packages/material-ui-icons/lib/esm/HdrStrongRounded.js new file mode 100644 index 00000000000000..6d3fc9dc0496a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrStrongRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'HdrStrongRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrStrongSharp.js b/packages/material-ui-icons/lib/esm/HdrStrongSharp.js new file mode 100644 index 00000000000000..dc60e17dca4206 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrStrongSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'HdrStrongSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrStrongTwoTone.js b/packages/material-ui-icons/lib/esm/HdrStrongTwoTone.js new file mode 100644 index 00000000000000..e4786597714481 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrStrongTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zM5 16c2.21 0 4-1.79 4-4S7.21 8 5 8s-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" +}, "1")], 'HdrStrongTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrWeak.js b/packages/material-ui-icons/lib/esm/HdrWeak.js new file mode 100644 index 00000000000000..d38c10eacc38d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrWeak.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'HdrWeak'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrWeakOutlined.js b/packages/material-ui-icons/lib/esm/HdrWeakOutlined.js new file mode 100644 index 00000000000000..336e8fc85e9d8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrWeakOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'HdrWeakOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrWeakRounded.js b/packages/material-ui-icons/lib/esm/HdrWeakRounded.js new file mode 100644 index 00000000000000..0413ea84ab7794 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrWeakRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'HdrWeakRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrWeakSharp.js b/packages/material-ui-icons/lib/esm/HdrWeakSharp.js new file mode 100644 index 00000000000000..0a1d2b6fe2aecb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrWeakSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}), 'HdrWeakSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HdrWeakTwoTone.js b/packages/material-ui-icons/lib/esm/HdrWeakTwoTone.js new file mode 100644 index 00000000000000..1910f36eb7598e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HdrWeakTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "5", + cy: "12", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "2")], 'HdrWeakTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Headphones.js b/packages/material-ui-icons/lib/esm/Headphones.js new file mode 100644 index 00000000000000..a81771868e6e9b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Headphones.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9v7c0 1.1.9 2 2 2h4v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h4c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9z" +}), 'Headphones'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesBattery.js b/packages/material-ui-icons/lib/esm/HeadphonesBattery.js new file mode 100644 index 00000000000000..c9b211c3a496ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesBattery.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2h2v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h2c1.1 0 2-.9 2-2v-4c0-3.31-2.69-6-6-6z" +}), 'HeadphonesBattery'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesBatteryOutlined.js b/packages/material-ui-icons/lib/esm/HeadphonesBatteryOutlined.js new file mode 100644 index 00000000000000..7bcd450080cf38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesBatteryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2h2v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h2c1.1 0 2-.9 2-2v-4c0-3.31-2.69-6-6-6z" +}), 'HeadphonesBatteryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesBatteryRounded.js b/packages/material-ui-icons/lib/esm/HeadphonesBatteryRounded.js new file mode 100644 index 00000000000000..aea329101c673b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesBatteryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7h-1v-.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5V7h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2s2-.9 2-2v-1c0-1.1-.9-2-2-2h-.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H12c-1.1 0-2 .9-2 2v1c0 1.1.9 2 2 2s2-.9 2-2v-4c0-3.31-2.69-6-6-6z" +}), 'HeadphonesBatteryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesBatterySharp.js b/packages/material-ui-icons/lib/esm/HeadphonesBatterySharp.js new file mode 100644 index 00000000000000..17d9eaa35a0b6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesBatterySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7V6h-2v1h-2v11h6V7zM8 6c-3.31 0-6 2.69-6 6v6h4v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h4v-6c0-3.31-2.69-6-6-6z" +}), 'HeadphonesBatterySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesBatteryTwoTone.js b/packages/material-ui-icons/lib/esm/HeadphonesBatteryTwoTone.js new file mode 100644 index 00000000000000..7163184f5fab47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesBatteryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 9h2v7h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 7h-1V6h-2v1h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 9h-2V9h2v7zM8 6c-3.31 0-6 2.69-6 6v4c0 1.1.9 2 2 2h2v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h2c1.1 0 2-.9 2-2v-4c0-3.31-2.69-6-6-6z" +}, "1")], 'HeadphonesBatteryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesOutlined.js b/packages/material-ui-icons/lib/esm/HeadphonesOutlined.js new file mode 100644 index 00000000000000..958ec1b6971d43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9v7c0 1.1.9 2 2 2h4v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h4c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9zM7 15v4H5v-4h2zm12 4h-2v-4h2v4z" +}), 'HeadphonesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesRounded.js b/packages/material-ui-icons/lib/esm/HeadphonesRounded.js new file mode 100644 index 00000000000000..6843d22f41adaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12v7c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9s-9 4.03-9 9z" +}), 'HeadphonesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesSharp.js b/packages/material-ui-icons/lib/esm/HeadphonesSharp.js new file mode 100644 index 00000000000000..568294c7dfcfac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9v9h6v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h6v-9c0-4.97-4.03-9-9-9z" +}), 'HeadphonesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadphonesTwoTone.js b/packages/material-ui-icons/lib/esm/HeadphonesTwoTone.js new file mode 100644 index 00000000000000..c99f3e20f1e8bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadphonesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 15h2v4H5zm12 0h2v4h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3c-4.97 0-9 4.03-9 9v7c0 1.1.9 2 2 2h4v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h4c1.1 0 2-.9 2-2v-7c0-4.97-4.03-9-9-9zM7 15v4H5v-4h2zm12 4h-2v-4h2v4z" +}, "1")], 'HeadphonesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Headset.js b/packages/material-ui-icons/lib/esm/Headset.js new file mode 100644 index 00000000000000..84d341d5144b52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Headset.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" +}), 'Headset'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetMic.js b/packages/material-ui-icons/lib/esm/HeadsetMic.js new file mode 100644 index 00000000000000..c0a2ab146f9add --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetMic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z" +}), 'HeadsetMic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetMicOutlined.js b/packages/material-ui-icons/lib/esm/HeadsetMicOutlined.js new file mode 100644 index 00000000000000..619712ff7d07fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetMicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 14v4h-2v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z" +}), 'HeadsetMicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetMicRounded.js b/packages/material-ui-icons/lib/esm/HeadsetMicRounded.js new file mode 100644 index 00000000000000..18896f89da813f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetMicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V17c0 1.66 1.34 3 3 3h1c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2v1h-6c-.55 0-1 .45-1 1s.45 1 1 1h5c1.66 0 3-1.34 3-3V10c0-5.17-4.36-9.32-9.6-8.98z" +}), 'HeadsetMicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetMicSharp.js b/packages/material-ui-icons/lib/esm/HeadsetMicSharp.js new file mode 100644 index 00000000000000..d010093d8581c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetMicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.4 1.02C6.62 1.33 3 5.51 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-4v8h4v1h-7v2h9V10c0-5.17-4.36-9.32-9.6-8.98z" +}), 'HeadsetMicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetMicTwoTone.js b/packages/material-ui-icons/lib/esm/HeadsetMicTwoTone.js new file mode 100644 index 00000000000000..519dba5189312b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetMicTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 17c0 .55.45 1 1 1h1v-4H5v3zm12-3h2v4h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 4h-2v-4h2v4z" +}, "1")], 'HeadsetMicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetOff.js b/packages/material-ui-icons/lib/esm/HeadsetOff.js new file mode 100644 index 00000000000000..bef821d4126e63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c3.87 0 7 3.13 7 7v2h-2.92L21 17.92V11c0-4.97-4.03-9-9-9-1.95 0-3.76.62-5.23 1.68l1.44 1.44C9.3 4.41 10.6 4 12 4zM2.27 1.72 1 3l3.33 3.32C3.49 7.68 3 9.29 3 11v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-1.17.29-2.26.79-3.22L15 17v4h3c.3 0 .59-.06.86-.14L21 23l1.27-1.27-20-20.01z" +}), 'HeadsetOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetOffOutlined.js b/packages/material-ui-icons/lib/esm/HeadsetOffOutlined.js new file mode 100644 index 00000000000000..3bb63d1f92a808 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17L16.83 14H19v2.17l2 2V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zM2.1 2.1.69 3.51l3.33 3.33C3.37 8.09 3 9.5 3 11v7c0 1.1.9 2 2 2h4v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h7c.34 0 .65-.09.93-.24l.55.55 1.41-1.41L2.1 2.1zM7 14v4H5v-4h2z" +}), 'HeadsetOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetOffRounded.js b/packages/material-ui-icons/lib/esm/HeadsetOffRounded.js new file mode 100644 index 00000000000000..a624916f097e9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c3.87 0 7 3.13 7 7v1h-2c-.6 0-1.13.27-1.49.68L21 18.17V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zm9.19 17.19L2.81 2.81a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l2.63 2.63C3.37 8.09 3 9.5 3 11v7c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1c0-.94.19-1.83.52-2.65L15 17.83V18c0 1.1.9 2 2 2h.17l1 1H13c-.55 0-1 .45-1 1s.45 1 1 1h6c.36 0 .68-.1.97-.26.38.23.89.2 1.22-.13.39-.39.39-1.03 0-1.42z" +}), 'HeadsetOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetOffSharp.js b/packages/material-ui-icons/lib/esm/HeadsetOffSharp.js new file mode 100644 index 00000000000000..e082e896d01741 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17l6 6V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zM2.1 2.1.69 3.51l3.33 3.33C3.37 8.09 3 9.5 3 11v9h6v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h8.17l.31.31 1.41-1.41L2.1 2.1z" +}), 'HeadsetOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetOffTwoTone.js b/packages/material-ui-icons/lib/esm/HeadsetOffTwoTone.js new file mode 100644 index 00000000000000..ee25a3a773ab86 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 14h2v4H5zm11.83 0L19 16.17V14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17L16.83 14H19v2.17l2 2V11c0-4.97-4.03-9-9-9-2.02 0-3.88.67-5.38 1.8l1.43 1.43C9.17 4.45 10.53 4 12 4zM2.1 2.1.69 3.51l3.33 3.33C3.37 8.09 3 9.5 3 11v7c0 1.1.9 2 2 2h4v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h7c.34 0 .65-.09.93-.24l.55.55 1.41-1.41L2.1 2.1zM7 14v4H5v-4h2z" +}, "1")], 'HeadsetOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetOutlined.js b/packages/material-ui-icons/lib/esm/HeadsetOutlined.js new file mode 100644 index 00000000000000..c392d33e2d7854 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 14v3c0 .55-.45 1-1 1h-1v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" +}), 'HeadsetOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetRounded.js b/packages/material-ui-icons/lib/esm/HeadsetRounded.js new file mode 100644 index 00000000000000..528d8420eaa2aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V17c0 1.66 1.34 3 3 3h1c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h1c1.66 0 3-1.34 3-3v-7c0-5.17-4.36-9.32-9.6-8.98z" +}), 'HeadsetRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetSharp.js b/packages/material-ui-icons/lib/esm/HeadsetSharp.js new file mode 100644 index 00000000000000..a7058bff5921eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-4v8h6V10c0-5.17-4.36-9.32-9.6-8.98z" +}), 'HeadsetSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeadsetTwoTone.js b/packages/material-ui-icons/lib/esm/HeadsetTwoTone.js new file mode 100644 index 00000000000000..b545803ac008af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeadsetTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 18h1c.55 0 1-.45 1-1v-3h-2v4zM5 17c0 .55.45 1 1 1h1v-4H5v3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 3c0 .55-.45 1-1 1h-1v-4h2v3z" +}, "1")], 'HeadsetTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Healing.js b/packages/material-ui-icons/lib/esm/Healing.js new file mode 100644 index 00000000000000..44ef9758d0938f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Healing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" +}), 'Healing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealingOutlined.js b/packages/material-ui-icons/lib/esm/HealingOutlined.js new file mode 100644 index 00000000000000..315ec6e662450c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" +}), 'HealingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealingRounded.js b/packages/material-ui-icons/lib/esm/HealingRounded.js new file mode 100644 index 00000000000000..bd5bc8df11d1f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" +}), 'HealingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealingSharp.js b/packages/material-ui-icons/lib/esm/HealingSharp.js new file mode 100644 index 00000000000000..e57f67db236451 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.74 12.01 4.68-4.68-5.75-5.75-4.68 4.68L7.3 1.58 1.55 7.34l4.68 4.69-4.68 4.68 5.75 5.75 4.68-4.68 4.69 4.69 5.76-5.76-4.69-4.7zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" +}), 'HealingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealingTwoTone.js b/packages/material-ui-icons/lib/esm/HealingTwoTone.js new file mode 100644 index 00000000000000..ea22633c04c868 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13.03 16.72 3.63 3.62 3.62-3.63-3.62-3.62zM7.29 3.71 3.66 7.34l3.63 3.62 3.62-3.63z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.73 12.02 3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34a.9959.9959 0 0 0-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29s.51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" +}, "1")], 'HealingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealthAndSafety.js b/packages/material-ui-icons/lib/esm/HealthAndSafety.js new file mode 100644 index 00000000000000..de8d7b8b1b0b01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealthAndSafety.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" +}), 'HealthAndSafety'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealthAndSafetyOutlined.js b/packages/material-ui-icons/lib/esm/HealthAndSafetyOutlined.js new file mode 100644 index 00000000000000..c7f6c52885e6ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealthAndSafetyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" +}), 'HealthAndSafetyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealthAndSafetyRounded.js b/packages/material-ui-icons/lib/esm/HealthAndSafetyRounded.js new file mode 100644 index 00000000000000..aa3c485cfe4595 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealthAndSafetyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 13h-1c-.83 0-1.5-.67-1.5-1.5S8.67 10 9.5 10h1V9c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1h1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-1v1c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-1zm.8-10.74-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01z" +}), 'HealthAndSafetyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealthAndSafetySharp.js b/packages/material-ui-icons/lib/esm/HealthAndSafetySharp.js new file mode 100644 index 00000000000000..d3f2a47cf2c714 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealthAndSafetySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" +}), 'HealthAndSafetySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HealthAndSafetyTwoTone.js b/packages/material-ui-icons/lib/esm/HealthAndSafetyTwoTone.js new file mode 100644 index 00000000000000..6aa9dcbef4a222 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HealthAndSafetyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4.14 6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25zM16 13h-2.5v2.5h-3V13H8v-3h2.5V7.5h3V10H16v3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" +}, "1")], 'HealthAndSafetyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hearing.js b/packages/material-ui-icons/lib/esm/Hearing.js new file mode 100644 index 00000000000000..e28d8d99568ff2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hearing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" +}), 'Hearing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingDisabled.js b/packages/material-ui-icons/lib/esm/HearingDisabled.js new file mode 100644 index 00000000000000..567b30e0035ab7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" +}), 'HearingDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingDisabledOutlined.js b/packages/material-ui-icons/lib/esm/HearingDisabledOutlined.js new file mode 100644 index 00000000000000..b0da88b7860664 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" +}), 'HearingDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingDisabledRounded.js b/packages/material-ui-icons/lib/esm/HearingDisabledRounded.js new file mode 100644 index 00000000000000..277ae512e58be8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.96 3.3c-.32-.39-.29-.96.07-1.32l.01-.01c.42-.42 1.12-.38 1.49.08C20.07 3.94 21 6.36 21 9c0 2.57-.89 4.94-2.36 6.81l-1.43-1.43C18.33 12.88 19 11.02 19 9c0-2.17-.77-4.16-2.04-5.7zM7.49 4.66C8.23 4.24 9.08 4 10 4c2.8 0 5 2.2 5 5 0 .8-.23 1.69-.63 2.54l1.48 1.48c.02-.04.05-.08.08-.13C16.62 11.65 17 10.26 17 9c0-3.93-3.07-7-7-7-1.49 0-2.85.44-3.97 1.2l1.46 1.46zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm10.49 13.99L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.42 1.42c-.2.49-.35 1-.43 1.54-.1.59.38 1.12.97 1.12h.04c.48 0 .89-.35.96-.82.02-.08.04-.16.06-.23l6.62 6.62c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.2.09-.47.15-.76.15-.88 0-1.63-.58-1.9-1.37-.13-.39-.53-.63-.95-.63-.66 0-1.15.64-.95 1.26C3.73 20.85 5.23 22 7 22c.57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l5.91 5.91c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" +}), 'HearingDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingDisabledSharp.js b/packages/material-ui-icons/lib/esm/HearingDisabledSharp.js new file mode 100644 index 00000000000000..8d67d5ff560742 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" +}), 'HearingDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/HearingDisabledTwoTone.js new file mode 100644 index 00000000000000..ea963c8105afcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingDisabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18 1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42C17.99 4.26 19 6.51 19 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59 0-1.38-1.12-2.5-2.5-2.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3c0 2.21 1.79 4 4 4 .57 0 1.13-.12 1.64-.35 1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" +}), 'HearingDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingOutlined.js b/packages/material-ui-icons/lib/esm/HearingOutlined.js new file mode 100644 index 00000000000000..512a1f6978b79a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" +}), 'HearingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingRounded.js b/packages/material-ui-icons/lib/esm/HearingRounded.js new file mode 100644 index 00000000000000..7e48279afb9cc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5 2.56 0 4.63 1.85 4.95 4.31.06.4.41.69.82.69h.34c.5 0 .89-.44.83-.94C20.49 4.59 17.61 2 14 2c-3.93 0-7 3.07-7 7 0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 1.84 0 3.39-1.24 3.86-2.93.14-.54-.25-1.07-.81-1.07h-.35c-.38 0-.68.27-.81.63-.26.79-1.01 1.37-1.89 1.37zM6.97 1.97c-.43-.43-1.12-.39-1.5.07C3.93 3.94 3 6.36 3 9s.93 5.06 2.47 6.95c.38.46 1.07.5 1.49.08.36-.36.39-.93.07-1.32C5.77 13.16 5 11.17 5 9s.77-4.16 2.04-5.7c.33-.4.29-.97-.07-1.33zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" +}), 'HearingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingSharp.js b/packages/material-ui-icons/lib/esm/HearingSharp.js new file mode 100644 index 00000000000000..9539ad4a67fc43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z" +}), 'HearingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HearingTwoTone.js b/packages/material-ui-icons/lib/esm/HearingTwoTone.js new file mode 100644 index 00000000000000..cfde6a44e8669b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HearingTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.64 2.64 6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "9", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2z" +}, "2")], 'HearingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Height.js b/packages/material-ui-icons/lib/esm/Height.js new file mode 100644 index 00000000000000..fa55913d0d3566 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Height.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" +}), 'Height'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeightOutlined.js b/packages/material-ui-icons/lib/esm/HeightOutlined.js new file mode 100644 index 00000000000000..d2f7535f08ffcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" +}), 'HeightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeightRounded.js b/packages/material-ui-icons/lib/esm/HeightRounded.js new file mode 100644 index 00000000000000..19a2faad9c1aef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.99h1.79c.45 0 .67-.54.35-.85l-2.79-2.78c-.2-.19-.51-.19-.71 0L8.86 6.14c-.32.31-.1.85.35.85H11v10.02H9.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H13V6.99z" +}), 'HeightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeightSharp.js b/packages/material-ui-icons/lib/esm/HeightSharp.js new file mode 100644 index 00000000000000..f4ea0938bba600 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" +}), 'HeightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HeightTwoTone.js b/packages/material-ui-icons/lib/esm/HeightTwoTone.js new file mode 100644 index 00000000000000..97ae363831ff6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HeightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" +}), 'HeightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Help.js b/packages/material-ui-icons/lib/esm/Help.js new file mode 100644 index 00000000000000..d056f3bb32fcc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Help.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" +}), 'Help'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpCenter.js b/packages/material-ui-icons/lib/esm/HelpCenter.js new file mode 100644 index 00000000000000..2e6679bf316651 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpCenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z" +}), 'HelpCenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpCenterOutlined.js b/packages/material-ui-icons/lib/esm/HelpCenterOutlined.js new file mode 100644 index 00000000000000..b876893e1e5a1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpCenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.25 16.74c0 .69-.53 1.26-1.25 1.26-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.55 1.25 1.25zM11.99 6c-1.77 0-2.98 1.15-3.43 2.49l1.64.69c.22-.67.74-1.48 1.8-1.48 1.62 0 1.94 1.52 1.37 2.33-.54.77-1.47 1.29-1.96 2.16-.39.69-.31 1.49-.31 1.98h1.82c0-.93.07-1.12.22-1.41.39-.72 1.11-1.06 1.87-2.17.68-1 .42-2.36-.02-3.08-.51-.84-1.52-1.51-3-1.51zM19 5H5v14h14V5m0-2c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14z" +}), 'HelpCenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpCenterRounded.js b/packages/material-ui-icons/lib/esm/HelpCenterRounded.js new file mode 100644 index 00000000000000..31031c53360bb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpCenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.1.18-.16.32-.19.63-.05.45-.45.78-.9.78H12c-.52 0-.93-.44-.88-.96.03-.34.11-.69.3-1.03.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-.71 0-1.18.36-1.47.79-.25.36-.69.53-1.1.36-.53-.21-.72-.85-.4-1.31C9.65 6.65 10.67 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z" +}), 'HelpCenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpCenterSharp.js b/packages/material-ui-icons/lib/esm/HelpCenterSharp.js new file mode 100644 index 00000000000000..421f16bc373fb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpCenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-8.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z" +}), 'HelpCenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpCenterTwoTone.js b/packages/material-ui-icons/lib/esm/HelpCenterTwoTone.js new file mode 100644 index 00000000000000..45afa5129f56c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpCenterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm7.01 13c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.25 16.74c0 .69-.53 1.26-1.25 1.26-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.55 1.25 1.25zM11.99 6c-1.77 0-2.98 1.15-3.43 2.49l1.64.69c.22-.67.74-1.48 1.8-1.48 1.62 0 1.94 1.52 1.37 2.33-.54.77-1.47 1.29-1.96 2.16-.39.69-.31 1.49-.31 1.98h1.82c0-.93.07-1.12.22-1.41.39-.72 1.11-1.06 1.87-2.17.68-1 .42-2.36-.02-3.08-.51-.84-1.52-1.51-3-1.51zM19 5H5v14h14V5m0-2c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14z" +}, "1")], 'HelpCenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpOutline.js b/packages/material-ui-icons/lib/esm/HelpOutline.js new file mode 100644 index 00000000000000..4ad11679467365 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" +}), 'HelpOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpOutlineOutlined.js b/packages/material-ui-icons/lib/esm/HelpOutlineOutlined.js new file mode 100644 index 00000000000000..6b3dff8491fa50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" +}), 'HelpOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpOutlineRounded.js b/packages/material-ui-icons/lib/esm/HelpOutlineRounded.js new file mode 100644 index 00000000000000..7994eb1e13e717 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2zm1.61-9.96c-2.06-.3-3.88.97-4.43 2.79-.18.58.26 1.17.87 1.17h.2c.41 0 .74-.29.88-.67.32-.89 1.27-1.5 2.3-1.28.95.2 1.65 1.13 1.57 2.1-.1 1.34-1.62 1.63-2.45 2.88 0 .01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2 1.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91 2.26-1.65 1.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z" +}), 'HelpOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpOutlineSharp.js b/packages/material-ui-icons/lib/esm/HelpOutlineSharp.js new file mode 100644 index 00000000000000..7f05ae6f31fb41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" +}), 'HelpOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/HelpOutlineTwoTone.js new file mode 100644 index 00000000000000..4df2818bce3118 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" +}), 'HelpOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpOutlined.js b/packages/material-ui-icons/lib/esm/HelpOutlined.js new file mode 100644 index 00000000000000..80aab40773fb8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" +}), 'HelpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpRounded.js b/packages/material-ui-icons/lib/esm/HelpRounded.js new file mode 100644 index 00000000000000..1a0475779bb500 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92c-.5.51-.86.97-1.04 1.69-.08.32-.13.68-.13 1.14h-2v-.5c0-.46.08-.9.22-1.31.2-.58.53-1.1.95-1.52l1.24-1.26c.46-.44.68-1.1.55-1.8-.13-.72-.69-1.33-1.39-1.53-1.11-.31-2.14.32-2.47 1.27-.12.37-.43.65-.82.65h-.3C8.4 9 8 8.44 8.16 7.88c.43-1.47 1.68-2.59 3.23-2.83 1.52-.24 2.97.55 3.87 1.8 1.18 1.63.83 3.38-.19 4.4z" +}), 'HelpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpSharp.js b/packages/material-ui-icons/lib/esm/HelpSharp.js new file mode 100644 index 00000000000000..fdc5dc6715c5bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" +}), 'HelpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HelpTwoTone.js b/packages/material-ui-icons/lib/esm/HelpTwoTone.js new file mode 100644 index 00000000000000..01d59eda0e1784 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HelpTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 14h-2v-2h2v2zm0-3h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" +}, "1")], 'HelpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hevc.js b/packages/material-ui-icons/lib/esm/Hevc.js new file mode 100644 index 00000000000000..285ab5a9138a5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hevc.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11v-1c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-1.5v.5h-1v-3h1v.5H21zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" +}), 'Hevc'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HevcOutlined.js b/packages/material-ui-icons/lib/esm/HevcOutlined.js new file mode 100644 index 00000000000000..e79fd27cc7ab29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HevcOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11v-1c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-1.5v.5h-1v-3h1v.5H21zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" +}), 'HevcOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HevcRounded.js b/packages/material-ui-icons/lib/esm/HevcRounded.js new file mode 100644 index 00000000000000..627d336dddd589 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HevcRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.25 9c-.41 0-.75.34-.75.75V11h-1V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h1v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C7 9.34 6.66 9 6.25 9zm4.5 1.5c.41 0 .75-.34.75-.75S11.16 9 10.75 9H9c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h1.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H9.5v-1h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H9.5v-.5h1.25zM15.63 9c-.36 0-.67.26-.73.62l-.65 3.88-.65-3.88c-.06-.36-.37-.62-.73-.62-.46 0-.8.41-.73.86l.65 3.91c.12.71.73 1.23 1.46 1.23s1.34-.52 1.46-1.23l.65-3.91c.07-.45-.28-.86-.73-.86zm3.87 1.5c0 .28.22.5.5.5h.5c.28 0 .5-.22.5-.5V10c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-.5c0-.28-.22-.5-.5-.5H20c-.28 0-.5.22-.5.5h-1v-3h1z" +}), 'HevcRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HevcSharp.js b/packages/material-ui-icons/lib/esm/HevcSharp.js new file mode 100644 index 00000000000000..2c252779f70e35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HevcSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11V9h-4v6h4v-2h-1.5v.5h-1v-3h1v.5zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" +}), 'HevcSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HevcTwoTone.js b/packages/material-ui-icons/lib/esm/HevcTwoTone.js new file mode 100644 index 00000000000000..581fa9b014ec9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HevcTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11v-1c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1h-1.5v.5h-1v-3h1v.5H21zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" +}), 'HevcTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideImage.js b/packages/material-ui-icons/lib/esm/HideImage.js new file mode 100644 index 00000000000000..59321b3b500d23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideImage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5c0-1.1-.9-2-2-2H5.83L21 18.17V5zM2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.41L2.81 2.81zM6 17l3-4 2.25 3 .82-1.1 2.1 2.1H6z" +}), 'HideImage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideImageOutlined.js b/packages/material-ui-icons/lib/esm/HideImageOutlined.js new file mode 100644 index 00000000000000..b73f5b13ebde58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideImageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v11.17l2 2V5c0-1.1-.9-2-2-2H5.83l2 2H19zM2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.41L2.81 2.81zM5 19V7.83l7.07 7.07-.82 1.1L9 13l-3 4h8.17l2 2H5z" +}), 'HideImageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideImageRounded.js b/packages/material-ui-icons/lib/esm/HideImageRounded.js new file mode 100644 index 00000000000000..f1cc02e5acd04c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideImageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5.83L21 18.17V5c0-1.1-.9-2-2-2zm-15.49.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.9.91V19c0 1.1.9 2 2 2h13.17l.9.9c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51zM7 17c-.41 0-.65-.47-.4-.8l2-2.67c.2-.27.6-.27.8 0L11.25 16l.82-1.1 2.1 2.1H7z" +}), 'HideImageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideImageSharp.js b/packages/material-ui-icons/lib/esm/HideImageSharp.js new file mode 100644 index 00000000000000..b0bf4d96a3b649 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideImageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H5.83L21 18.17zM2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.41L2.81 2.81zM6 17l3-4 2.25 3 .82-1.1 2.1 2.1H6z" +}), 'HideImageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideImageTwoTone.js b/packages/material-ui-icons/lib/esm/HideImageTwoTone.js new file mode 100644 index 00000000000000..0153eac4f2758e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideImageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.17 19-2-2H6l3-4 2.25 3 .82-1.1L5 7.83V19zM7.83 5 19 16.17V5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5v11.17l2 2V5c0-1.1-.9-2-2-2H5.83l2 2H19zM2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.41L2.81 2.81zM5 19V7.83l7.07 7.07-.82 1.1L9 13l-3 4h8.17l2 2H5z" +}, "1")], 'HideImageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideSource.js b/packages/material-ui-icons/lib/esm/HideSource.js new file mode 100644 index 00000000000000..431a1c89ddd2f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideSource.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" +}), 'HideSource'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideSourceOutlined.js b/packages/material-ui-icons/lib/esm/HideSourceOutlined.js new file mode 100644 index 00000000000000..b6f3b931016aac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideSourceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" +}), 'HideSourceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideSourceRounded.js b/packages/material-ui-icons/lib/esm/HideSourceRounded.js new file mode 100644 index 00000000000000..1b63fd26b114af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideSourceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.1 3.51c-.39.39-.39 1.03 0 1.42l1.56 1.56c-1.25 1.88-1.88 4.2-1.59 6.69.52 4.54 4.21 8.23 8.75 8.75 2.49.29 4.81-.34 6.69-1.59l1.56 1.56c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" +}), 'HideSourceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideSourceSharp.js b/packages/material-ui-icons/lib/esm/HideSourceSharp.js new file mode 100644 index 00000000000000..82f019df64369c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideSourceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" +}), 'HideSourceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HideSourceTwoTone.js b/packages/material-ui-icons/lib/esm/HideSourceTwoTone.js new file mode 100644 index 00000000000000..3485b966b7a701 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HideSourceTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" +}), 'HideSourceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighQuality.js b/packages/material-ui-icons/lib/esm/HighQuality.js new file mode 100644 index 00000000000000..9cdf0ed3483122 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighQuality.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 11H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z" +}), 'HighQuality'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighQualityOutlined.js b/packages/material-ui-icons/lib/esm/HighQualityOutlined.js new file mode 100644 index 00000000000000..8574338ba51b6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighQualityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zm6.5 2h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h2v3h-2v-3z" +}), 'HighQualityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighQualityRounded.js b/packages/material-ui-icons/lib/esm/HighQualityRounded.js new file mode 100644 index 00000000000000..418cbb6c8fcc0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighQualityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8.75 11c-.41 0-.75-.34-.75-.75V13h-2v1.25c0 .41-.34.75-.75.75S6 14.66 6 14.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.75h2V9.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zM18 14c0 .55-.45 1-1 1h-.75v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z" +}), 'HighQualityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighQualitySharp.js b/packages/material-ui-icons/lib/esm/HighQualitySharp.js new file mode 100644 index 00000000000000..f1c1e54614b3fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighQualitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3v16h18V4zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7 0h-1.75v1.5h-1.5V15H13V9h5v6zm-3.5-1.5h2v-3h-2v3z" +}), 'HighQualitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighQualityTwoTone.js b/packages/material-ui-icons/lib/esm/HighQualityTwoTone.js new file mode 100644 index 00000000000000..2c4954592a1e3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighQualityTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 6H5v12h14V6zm-8 9H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-3.5h2v3h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 6v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm2 0h14v12H5V6zm4.5 5.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z" +}, "1")], 'HighQualityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Highlight.js b/packages/material-ui-icons/lib/esm/Highlight.js new file mode 100644 index 00000000000000..88313fdec40e26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Highlight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm5-12h2v3h-2V2zM3.5 5.88l1.41-1.41 2.12 2.12L5.62 8 3.5 5.88zm13.46.71 2.12-2.12 1.41 1.41L18.38 8l-1.42-1.41z" +}), 'Highlight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightAlt.js b/packages/material-ui-icons/lib/esm/HighlightAlt.js new file mode 100644 index 00000000000000..63e86c64c9890a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5h-2V3h2v2zm-2 16h2v-2.59L19.59 21 21 19.59 18.41 17H21v-2h-6v6zm4-12h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z" +}), 'HighlightAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightAltOutlined.js b/packages/material-ui-icons/lib/esm/HighlightAltOutlined.js new file mode 100644 index 00000000000000..d10429e52e658d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5h-2V3h2v2zm-2 10v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6zm4-6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z" +}), 'HighlightAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightAltRounded.js b/packages/material-ui-icons/lib/esm/HighlightAltRounded.js new file mode 100644 index 00000000000000..20271b77e74e1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5h-2V3h2v2zm2 4h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2zm15.71 12.29 1.44-1.44c.32-.32.09-.85-.35-.85H16c-.55 0-1 .45-1 1v3.79c0 .45.54.67.85.35l1.44-1.44 2 2c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.99-2z" +}), 'HighlightAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightAltSharp.js b/packages/material-ui-icons/lib/esm/HighlightAltSharp.js new file mode 100644 index 00000000000000..2a3c7c834d3ed8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5h-2V3h2v2zm2-2v2h2V3h-2zm0 6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 5h2V3H3v2zm0 12h2v-2H3v2zm0 4h2v-2H3v2zm8-16h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm12 2v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6z" +}), 'HighlightAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightAltTwoTone.js b/packages/material-ui-icons/lib/esm/HighlightAltTwoTone.js new file mode 100644 index 00000000000000..d808c61e3aebde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5h-2V3h2v2zm-2 10v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6zm4-6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z" +}), 'HighlightAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightOff.js b/packages/material-ui-icons/lib/esm/HighlightOff.js new file mode 100644 index 00000000000000..f68b1c984beb42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'HighlightOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightOffOutlined.js b/packages/material-ui-icons/lib/esm/HighlightOffOutlined.js new file mode 100644 index 00000000000000..7ccdbc04c1e351 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'HighlightOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightOffRounded.js b/packages/material-ui-icons/lib/esm/HighlightOffRounded.js new file mode 100644 index 00000000000000..98a71178c78de6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.89 8.7 12 10.59 10.11 8.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 8.7 13.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l1.89 1.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l1.89-1.89c.39-.39.39-1.02 0-1.41-.39-.38-1.03-.38-1.41 0zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'HighlightOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightOffSharp.js b/packages/material-ui-icons/lib/esm/HighlightOffSharp.js new file mode 100644 index 00000000000000..745c53234202fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'HighlightOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightOffTwoTone.js b/packages/material-ui-icons/lib/esm/HighlightOffTwoTone.js new file mode 100644 index 00000000000000..b708a77bb218e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4 10.59L14.59 16 12 13.41 9.41 16 8 14.59 10.59 12 8 9.41 9.41 8 12 10.59 14.59 8 16 9.41 13.41 12 16 14.59z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'HighlightOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightOutlined.js b/packages/material-ui-icons/lib/esm/HighlightOutlined.js new file mode 100644 index 00000000000000..7f6ebd61c699e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM3.502 5.874 4.916 4.46l2.122 2.12-1.414 1.415zm13.458.708 2.123-2.12 1.413 1.416-2.123 2.12z" +}), 'HighlightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightRounded.js b/packages/material-ui-icons/lib/esm/HighlightRounded.js new file mode 100644 index 00000000000000..c456fd43979a93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.29 14.29 9 17v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4l2.71-2.71c.19-.19.29-.44.29-.71V10c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3.59c0 .26.11.52.29.7zM12 2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1s-1-.45-1-1V3c0-.55.45-1 1-1zM4.21 5.17c.39-.39 1.02-.39 1.42 0l.71.71c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-.72-.71a.9959.9959 0 0 1 0-1.41zm13.46.71.71-.71c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-.71.71c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41z" +}), 'HighlightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightSharp.js b/packages/material-ui-icons/lib/esm/HighlightSharp.js new file mode 100644 index 00000000000000..6f7eed4d120aa7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm5-12h2v3h-2V2zM3.5 5.88l1.41-1.41 2.12 2.12L5.62 8 3.5 5.88zm13.46.71 2.12-2.12 1.41 1.41L18.38 8l-1.42-1.41z" +}), 'HighlightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HighlightTwoTone.js b/packages/material-ui-icons/lib/esm/HighlightTwoTone.js new file mode 100644 index 00000000000000..1fe16a6cbaabf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HighlightTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 20h2v-3.83l3-3V11H8v2.17l3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m6 14 3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM4.916 4.464l2.12 2.122L5.62 8 3.5 5.877zM18.372 8l-1.414-1.414 2.12-2.12 1.415 1.413z" +}, "1")], 'HighlightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hiking.js b/packages/material-ui-icons/lib/esm/Hiking.js new file mode 100644 index 00000000000000..7e0722f05ec5e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hiking.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" +}), 'Hiking'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HikingOutlined.js b/packages/material-ui-icons/lib/esm/HikingOutlined.js new file mode 100644 index 00000000000000..7b7774a5ae6620 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HikingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" +}), 'HikingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HikingRounded.js b/packages/material-ui-icons/lib/esm/HikingRounded.js new file mode 100644 index 00000000000000..f24d66f6c06bbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HikingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM18.25 9c-.41 0-.75.34-.75.75v1.03c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44L7.25 21.76c-.13.64.36 1.24 1.02 1.24.49 0 .91-.34 1.02-.81L10.9 15l2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45L12.9 13.5l.6-3c1 1.15 2.41 2.01 4 2.34v9.41c0 .41.34.75.75.75s.75-.34.75-.75V9.75c0-.41-.34-.75-.75-.75zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" +}), 'HikingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HikingSharp.js b/packages/material-ui-icons/lib/esm/HikingSharp.js new file mode 100644 index 00000000000000..fdf958036d71fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HikingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-3.1-.6 1.34-6.87 3.13.61-1.37 6.86z" +}), 'HikingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HikingTwoTone.js b/packages/material-ui-icons/lib/esm/HikingTwoTone.js new file mode 100644 index 00000000000000..0dc0f613abd2d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HikingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-2.12-.41c-.54-.11-.9-.63-.79-1.17l.76-3.93c.21-1.08 1.26-1.79 2.34-1.58l1.16.23-1.35 6.86z" +}), 'HikingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/History.js b/packages/material-ui-icons/lib/esm/History.js new file mode 100644 index 00000000000000..3e65eefe29d615 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/History.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z" +}), 'History'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryEdu.js b/packages/material-ui-icons/lib/esm/HistoryEdu.js new file mode 100644 index 00000000000000..56d27760720940 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryEdu.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" +}), 'HistoryEdu'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryEduOutlined.js b/packages/material-ui-icons/lib/esm/HistoryEduOutlined.js new file mode 100644 index 00000000000000..b45d04cc1dee6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryEduOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" +}), 'HistoryEduOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryEduRounded.js b/packages/material-ui-icons/lib/esm/HistoryEduRounded.js new file mode 100644 index 00000000000000..5c7a83772732bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryEduRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v.38c-.83-.33-1.72-.5-2.61-.5-1.42 0-2.84.43-4.05 1.29-.51.36-.57 1.09-.13 1.53l2.57 2.57h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H7c-.55 0-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V5c0-.55-.45-1-1-1H10c-.55 0-1 .45-1 1zm-1.11 5.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-1c0-.55-.45-1-1-1h-5v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" +}), 'HistoryEduRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryEduSharp.js b/packages/material-ui-icons/lib/esm/HistoryEduSharp.js new file mode 100644 index 00000000000000..32e4b4a7a514e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryEduSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" +}), 'HistoryEduSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryEduTwoTone.js b/packages/material-ui-icons/lib/esm/HistoryEduTwoTone.js new file mode 100644 index 00000000000000..f22be27c003b81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryEduTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.34 9.76 9.93 8.34c-.95-.94-2.2-1.46-3.54-1.46-.63 0-1.25.12-1.82.34l1.04 1.04h2.28v2.14c.4.23.86.35 1.33.35.73 0 1.41-.28 1.92-.8l.2-.19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 6.62 6 5.97V14h-1.41l-2.83-2.83-.2.2c-.46.46-.99.8-1.56 1.03V15h6v2c0 .55.45 1 1 1s1-.45 1-1V6h-8v.62z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 0 1 1.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2c-.51.51-1.19.8-1.92.8-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" +}, "2")], 'HistoryEduTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryOutlined.js b/packages/material-ui-icons/lib/esm/HistoryOutlined.js new file mode 100644 index 00000000000000..86970d49596f78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" +}), 'HistoryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryRounded.js b/packages/material-ui-icons/lib/esm/HistoryRounded.js new file mode 100644 index 00000000000000..2f942cda92673a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.26 3C8.17 2.86 4 6.95 4 12H2.21c-.45 0-.67.54-.35.85l2.79 2.8c.2.2.51.2.71 0l2.79-2.8c.31-.31.09-.85-.36-.85H6c0-3.9 3.18-7.05 7.1-7 3.72.05 6.85 3.18 6.9 6.9.05 3.91-3.1 7.1-7 7.1-1.61 0-3.1-.55-4.28-1.48-.4-.31-.96-.28-1.32.08-.42.42-.39 1.13.08 1.49C9 20.29 10.91 21 13 21c5.05 0 9.14-4.17 9-9.26-.13-4.69-4.05-8.61-8.74-8.74zm-.51 5c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.09-.82-.26-1.03l-2.88-1.71v-3.4c0-.4-.34-.74-.75-.74z" +}), 'HistoryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistorySharp.js b/packages/material-ui-icons/lib/esm/HistorySharp.js new file mode 100644 index 00000000000000..7ce3beb0c2195d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistorySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.29-3.52-2.09V8H12z" +}), 'HistorySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryToggleOff.js b/packages/material-ui-icons/lib/esm/HistoryToggleOff.js new file mode 100644 index 00000000000000..dc33ecc46711d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryToggleOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" +}), 'HistoryToggleOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryToggleOffOutlined.js b/packages/material-ui-icons/lib/esm/HistoryToggleOffOutlined.js new file mode 100644 index 00000000000000..43a4f8905c69b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryToggleOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" +}), 'HistoryToggleOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryToggleOffRounded.js b/packages/material-ui-icons/lib/esm/HistoryToggleOffRounded.js new file mode 100644 index 00000000000000..2912ecae599756 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryToggleOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM12 7c-.55 0-1 .45-1 1v3.59c0 .53.21 1.04.59 1.41l3 3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-3-3V8c0-.55-.45-1-1-1z" +}), 'HistoryToggleOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryToggleOffSharp.js b/packages/material-ui-icons/lib/esm/HistoryToggleOffSharp.js new file mode 100644 index 00000000000000..6681a699216237 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryToggleOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" +}), 'HistoryToggleOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryToggleOffTwoTone.js b/packages/material-ui-icons/lib/esm/HistoryToggleOffTwoTone.js new file mode 100644 index 00000000000000..431927e672f5d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryToggleOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.1 19.37 1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1 1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36 1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01c.44-.59.95-1.1 1.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74c-.59-.44-1.1-.95-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" +}), 'HistoryToggleOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HistoryTwoTone.js b/packages/material-ui-icons/lib/esm/HistoryTwoTone.js new file mode 100644 index 00000000000000..b4e89f3efe2d9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HistoryTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" +}), 'HistoryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HolidayVillage.js b/packages/material-ui-icons/lib/esm/HolidayVillage.js new file mode 100644 index 00000000000000..f80fea9197b657 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HolidayVillage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 20V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2zM8 4l-6 6v10h5v-5h2v5h5V10L8 4zm1 9H7v-2h2v2z" +}), 'HolidayVillage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HolidayVillageOutlined.js b/packages/material-ui-icons/lib/esm/HolidayVillageOutlined.js new file mode 100644 index 00000000000000..8965618eb6ab87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HolidayVillageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8 4-6 6v10h12V10L8 4zm4 14H9v-3H7v3H4v-7.17l4-4 4 4V18zm-3-5H7v-2h2v2zm9 7V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2z" +}), 'HolidayVillageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HolidayVillageRounded.js b/packages/material-ui-icons/lib/esm/HolidayVillageRounded.js new file mode 100644 index 00000000000000..9d11c3a6a595b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HolidayVillageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20c.55 0 1-.45 1-1V8.76c0-.27-.11-.52-.29-.71l-3.76-3.76c-.19-.18-.44-.29-.71-.29-.89 0-1.34 1.08-.71 1.71l3.32 3.32c.1.09.15.22.15.35V19c0 .55.45 1 1 1zm4 0c.55 0 1-.45 1-1V7.11c0-.26-.11-.52-.29-.71l-2.1-2.11c-.19-.18-.45-.29-.71-.29-.9 0-1.34 1.08-.71 1.71l1.67 1.67c.09.09.14.22.14.35V19c0 .55.45 1 1 1zM8 15c.55 0 1 .45 1 1v4h4c.55 0 1-.45 1-1v-8.59c0-.27-.11-.52-.29-.71l-5-5a.9959.9959 0 0 0-1.41 0l-5 5c-.19.19-.3.45-.3.71V19c0 .55.45 1 1 1h4v-4c0-.55.45-1 1-1zm0-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'HolidayVillageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HolidayVillageSharp.js b/packages/material-ui-icons/lib/esm/HolidayVillageSharp.js new file mode 100644 index 00000000000000..7159ba148814a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HolidayVillageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 20V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2zM8 4l-6 6v10h5v-5h2v5h5V10L8 4zm1 9H7v-2h2v2z" +}), 'HolidayVillageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HolidayVillageTwoTone.js b/packages/material-ui-icons/lib/esm/HolidayVillageTwoTone.js new file mode 100644 index 00000000000000..8aa489b2d20fd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HolidayVillageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8 6.83-4 4V18h3v-3h2v3h3v-7.17l-4-4zM9 13H7v-2h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m8 4-6 6v10h12V10L8 4zm4 14H9v-3H7v3H4v-7.17l4-4 4 4V18zm-3-5H7v-2h2v2zm9 7V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2z" +}, "1")], 'HolidayVillageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Home.js b/packages/material-ui-icons/lib/esm/Home.js new file mode 100644 index 00000000000000..5756d93abbbe30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Home.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" +}), 'Home'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMax.js b/packages/material-ui-icons/lib/esm/HomeMax.js new file mode 100644 index 00000000000000..f5280349a03b83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMax.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" +}), 'HomeMax'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMaxOutlined.js b/packages/material-ui-icons/lib/esm/HomeMaxOutlined.js new file mode 100644 index 00000000000000..362882449b966c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMaxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" +}), 'HomeMaxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMaxRounded.js b/packages/material-ui-icons/lib/esm/HomeMaxRounded.js new file mode 100644 index 00000000000000..6212b6d6907004 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMaxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" +}), 'HomeMaxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMaxSharp.js b/packages/material-ui-icons/lib/esm/HomeMaxSharp.js new file mode 100644 index 00000000000000..24ac9f1917d2d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMaxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" +}), 'HomeMaxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMaxTwoTone.js b/packages/material-ui-icons/lib/esm/HomeMaxTwoTone.js new file mode 100644 index 00000000000000..ef9f8014c582c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMaxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7H5c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" +}, "1")], 'HomeMaxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMini.js b/packages/material-ui-icons/lib/esm/HomeMini.js new file mode 100644 index 00000000000000..4c9f3b1924ae2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMini.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" +}), 'HomeMini'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMiniOutlined.js b/packages/material-ui-icons/lib/esm/HomeMiniOutlined.js new file mode 100644 index 00000000000000..4cb0db8bcd651b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMiniOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" +}), 'HomeMiniOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMiniRounded.js b/packages/material-ui-icons/lib/esm/HomeMiniRounded.js new file mode 100644 index 00000000000000..00e29bbc9d1adb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMiniRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" +}), 'HomeMiniRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMiniSharp.js b/packages/material-ui-icons/lib/esm/HomeMiniSharp.js new file mode 100644 index 00000000000000..331b6d3d883ed1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMiniSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" +}), 'HomeMiniSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeMiniTwoTone.js b/packages/material-ui-icons/lib/esm/HomeMiniTwoTone.js new file mode 100644 index 00000000000000..8fe9501a62f133 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeMiniTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 7c-7.91 0-8 4.8-8 5h16c-.01-.49-.36-5-8-5zM9.14 17h5.72c2.1 0 3.92-1.24 4.71-3H4.42c.8 1.76 2.62 3 4.72 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm2.86 12H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3zM4 12c0-.2.09-5 8-5 7.64 0 7.99 4.51 8 5H4z" +}, "1")], 'HomeMiniTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeOutlined.js b/packages/material-ui-icons/lib/esm/HomeOutlined.js new file mode 100644 index 00000000000000..a39da3baed8a07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 5.69 5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3 2 12h3v8h6v-6h2v6h6v-8h3L12 3z" +}), 'HomeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeRepairService.js b/packages/material-ui-icons/lib/esm/HomeRepairService.js new file mode 100644 index 00000000000000..42c3d6116ecc40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeRepairService.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16h-2v-1H8v1H6v-1H2v5h20v-5h-4zm2-8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v4h4v-2h2v2h8v-2h2v2h4v-4c0-1.1-.9-2-2-2zm-5 0H9V6h6v2z" +}), 'HomeRepairService'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeRepairServiceOutlined.js b/packages/material-ui-icons/lib/esm/HomeRepairServiceOutlined.js new file mode 100644 index 00000000000000..ecc4727b442446 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeRepairServiceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10h20V10c0-1.1-.9-2-2-2zM9 6h6v2H9V6zm11 12H4v-3h2v1h2v-1h8v1h2v-1h2v3zm-2-5v-1h-2v1H8v-1H6v1H4v-3h16v3h-2z" +}), 'HomeRepairServiceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeRepairServiceRounded.js b/packages/material-ui-icons/lib/esm/HomeRepairServiceRounded.js new file mode 100644 index 00000000000000..ea54bdead9a0a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeRepairServiceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 16c-.55 0-1-.45-1-1H8c0 .55-.45 1-1 1s-1-.45-1-1H2v3c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-3h-4c0 .55-.45 1-1 1zm3-8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v4h4v-1c0-.55.45-1 1-1s1 .45 1 1v1h8v-1c0-.55.45-1 1-1s1 .45 1 1v1h4v-4c0-1.1-.9-2-2-2zm-5 0H9V6h6v2z" +}), 'HomeRepairServiceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeRepairServiceSharp.js b/packages/material-ui-icons/lib/esm/HomeRepairServiceSharp.js new file mode 100644 index 00000000000000..4228601e36bc06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeRepairServiceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16h-2v-1H8v1H6v-1H2v5h20v-5h-4zm-1-8V4H7v4H2v6h4v-2h2v2h8v-2h2v2h4V8h-5zM9 6h6v2H9V6z" +}), 'HomeRepairServiceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeRepairServiceTwoTone.js b/packages/material-ui-icons/lib/esm/HomeRepairServiceTwoTone.js new file mode 100644 index 00000000000000..69240e68e4b397 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeRepairServiceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10h20V10c0-1.1-.9-2-2-2zM9 6h6v2H9V6zm11 12H4v-3h2v1h2v-1h8v1h2v-1h2v3zm0-5h-2v-1h-2v1H8v-1H6v1H4v-3h16v3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 16h-2v-1H8v1H6v-1H4v3h16v-3h-2zM4 10v3h2v-1h2v1h8v-1h2v1h2v-3H7z", + opacity: ".3" +}, "1")], 'HomeRepairServiceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeRounded.js b/packages/material-ui-icons/lib/esm/HomeRounded.js new file mode 100644 index 00000000000000..20f85de3f4a42e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z" +}), 'HomeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeSharp.js b/packages/material-ui-icons/lib/esm/HomeSharp.js new file mode 100644 index 00000000000000..77037775c5d7bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z" +}), 'HomeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeTwoTone.js b/packages/material-ui-icons/lib/esm/HomeTwoTone.js new file mode 100644 index 00000000000000..2d5abd6777bb3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3 2 12h3v8h6v-6h2v6h6v-8h3L12 3zm5 15h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 10.19V18h2v-6h6v6h2v-7.81l-5-4.5z", + opacity: ".3" +}, "1")], 'HomeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeWork.js b/packages/material-ui-icons/lib/esm/HomeWork.js new file mode 100644 index 00000000000000..507555d6057d89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeWork.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.17 5.7 1 10.48V21h5v-8h4v8h5V10.25z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.51l2 1.33L13.73 7H15v.85l2 1.34V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" +}, "1")], 'HomeWork'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeWorkOutlined.js b/packages/material-ui-icons/lib/esm/HomeWorkOutlined.js new file mode 100644 index 00000000000000..9c1b88ce858540 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeWorkOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm-3.26 0 1.26.84V7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.17 5.7 15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z" +}, "2")], 'HomeWorkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeWorkRounded.js b/packages/material-ui-icons/lib/esm/HomeWorkRounded.js new file mode 100644 index 00000000000000..d96bf767b5b699 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeWorkRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 3h-8c-.55 0-1 .45-1 1v1.61l.01.01 5 4.5c.63.56.99 1.38.99 2.23V13h2v2h-2v2h2v2h-2v2h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-5 4h-2V5h2v2zm4 4h-2V9h2v2zm0-4h-2V5h2v2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 20v-7.65c0-.28-.12-.55-.33-.74l-5-4.5c-.19-.18-.43-.26-.67-.26-.24 0-.48.09-.67.26l-5 4.5c-.21.18-.33.45-.33.74V20c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-4h4v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1z" +}, "1")], 'HomeWorkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeWorkSharp.js b/packages/material-ui-icons/lib/esm/HomeWorkSharp.js new file mode 100644 index 00000000000000..eea437d5d7f9c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeWorkSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.17 5.7 1 10.48V21h5v-8h4v8h5V10.25z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.51l2 1.33L13.73 7H15v.85l2 1.34V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" +}, "1")], 'HomeWorkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HomeWorkTwoTone.js b/packages/material-ui-icons/lib/esm/HomeWorkTwoTone.js new file mode 100644 index 00000000000000..6c60c181c74381 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HomeWorkTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm-3.26 0 1.26.84V7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.17 5.7 15 10.25V21H1V10.48L8.17 5.7zM10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4v6z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M10 19h3v-7.84L8.17 8.09 3 11.38V19h3v-6h4z", + opacity: ".3" +}, "3")], 'HomeWorkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalRule.js b/packages/material-ui-icons/lib/esm/HorizontalRule.js new file mode 100644 index 00000000000000..fa37c92c5c0a85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalRule.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M4 11h16v2H4z" +}), 'HorizontalRule'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalRuleOutlined.js b/packages/material-ui-icons/lib/esm/HorizontalRuleOutlined.js new file mode 100644 index 00000000000000..925f5273bc271a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalRuleOutlined.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M4 11h16v2H4z" +}), 'HorizontalRuleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalRuleRounded.js b/packages/material-ui-icons/lib/esm/HorizontalRuleRounded.js new file mode 100644 index 00000000000000..1ec88f02757966 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalRuleRounded.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M19 13H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'HorizontalRuleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalRuleSharp.js b/packages/material-ui-icons/lib/esm/HorizontalRuleSharp.js new file mode 100644 index 00000000000000..2125f4ace097d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalRuleSharp.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M4 11h16v2H4z" +}), 'HorizontalRuleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalRuleTwoTone.js b/packages/material-ui-icons/lib/esm/HorizontalRuleTwoTone.js new file mode 100644 index 00000000000000..2eaee06ff991e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalRuleTwoTone.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M4 11h16v2H4z" +}), 'HorizontalRuleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalSplit.js b/packages/material-ui-icons/lib/esm/HorizontalSplit.js new file mode 100644 index 00000000000000..f44406967d42e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalSplit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z" +}), 'HorizontalSplit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalSplitOutlined.js b/packages/material-ui-icons/lib/esm/HorizontalSplitOutlined.js new file mode 100644 index 00000000000000..74c774e8e86ce0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalSplitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z" +}), 'HorizontalSplitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalSplitRounded.js b/packages/material-ui-icons/lib/esm/HorizontalSplitRounded.js new file mode 100644 index 00000000000000..be9eec5758ba5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalSplitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 19h16c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'HorizontalSplitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalSplitSharp.js b/packages/material-ui-icons/lib/esm/HorizontalSplitSharp.js new file mode 100644 index 00000000000000..52df7bc5e39182 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalSplitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z" +}), 'HorizontalSplitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HorizontalSplitTwoTone.js b/packages/material-ui-icons/lib/esm/HorizontalSplitTwoTone.js new file mode 100644 index 00000000000000..cc10371b3e513f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HorizontalSplitTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 15h14v2H5z", + opacity: ".3" +}, "1")], 'HorizontalSplitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotTub.js b/packages/material-ui-icons/lib/esm/HotTub.js new file mode 100644 index 00000000000000..29f7a873050768 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotTub.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" +}, "1")], 'HotTub'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotTubOutlined.js b/packages/material-ui-icons/lib/esm/HotTubOutlined.js new file mode 100644 index 00000000000000..8b31e64d3e7ed0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotTubOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zm-4 0c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z" +}, "1")], 'HotTubOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotTubRounded.js b/packages/material-ui-icons/lib/esm/HotTubRounded.js new file mode 100644 index 00000000000000..d536310c2be35d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotTubRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 12h-9.85c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H3c-.55 0-1 .45-1 1v7c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-7c0-.55-.45-1-1-1zM7 19c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm-3.94-9c.5 0 .93-.39.94-.89.04-1.4-.58-2.48-1.35-3.25-.65-.72-.8-1.27-.77-1.91.02-.52-.41-.95-.94-.95-.5 0-.93.4-.94.9-.03 1.29.5 2.43 1.35 3.25.61.59.78 1.27.78 1.89-.01.52.4.96.93.96zm4 0c.5 0 .93-.39.94-.89.04-1.4-.58-2.48-1.35-3.25-.65-.72-.8-1.27-.77-1.91.02-.52-.41-.95-.94-.95-.5 0-.93.4-.94.9-.03 1.29.5 2.43 1.35 3.25.61.59.78 1.27.78 1.89-.01.52.4.96.93.96z" +}, "1")], 'HotTubRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotTubSharp.js b/packages/material-ui-icons/lib/esm/HotTubSharp.js new file mode 100644 index 00000000000000..e159cc5aeddc11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotTubSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v10h20V12H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" +}, "1")], 'HotTubSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotTubTwoTone.js b/packages/material-ui-icons/lib/esm/HotTubTwoTone.js new file mode 100644 index 00000000000000..0b4074aef8bcb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotTubTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zM11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM13.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z" +}, "1")], 'HotTubTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hotel.js b/packages/material-ui-icons/lib/esm/Hotel.js new file mode 100644 index 00000000000000..f92e93d802adf4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hotel.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z" +}), 'Hotel'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotelOutlined.js b/packages/material-ui-icons/lib/esm/HotelOutlined.js new file mode 100644 index 00000000000000..643fe2256766b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotelOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" +}), 'HotelOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotelRounded.js b/packages/material-ui-icons/lib/esm/HotelRounded.js new file mode 100644 index 00000000000000..8f18121f89af1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotelRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V6c0-.55-.45-1-1-1s-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1v-2h18v2c0 .55.45 1 1 1s1-.45 1-1v-8c0-2.21-1.79-4-4-4z" +}), 'HotelRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotelSharp.js b/packages/material-ui-icons/lib/esm/HotelSharp.js new file mode 100644 index 00000000000000..7b73ab404e80df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotelSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z" +}), 'HotelSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HotelTwoTone.js b/packages/material-ui-icons/lib/esm/HotelTwoTone.js new file mode 100644 index 00000000000000..83e5e2e26ede37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HotelTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "11", + r: "1", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" +}, "2")], 'HotelTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassBottom.js b/packages/material-ui-icons/lib/esm/HourglassBottom.js new file mode 100644 index 00000000000000..4a4bd495c36298 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassBottom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z" +}), 'HourglassBottom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassBottomOutlined.js b/packages/material-ui-icons/lib/esm/HourglassBottomOutlined.js new file mode 100644 index 00000000000000..e4b8cf9bd98a5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassBottomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z" +}), 'HourglassBottomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassBottomRounded.js b/packages/material-ui-icons/lib/esm/HourglassBottomRounded.js new file mode 100644 index 00000000000000..a3f7eade80c564 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassBottomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 22c1.1 0 2-.9 2-2l-.01-3.18c0-.53-.21-1.03-.58-1.41L14 12l3.41-3.43c.37-.37.58-.88.58-1.41L18 4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3.16c0 .53.21 1.04.58 1.42L10 12l-3.41 3.4c-.38.38-.59.89-.59 1.42V20c0 1.1.9 2 2 2h8zM8 7.09V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.09c0 .27-.11.52-.29.71L12 11.5 8.29 7.79c-.18-.18-.29-.44-.29-.7z" +}), 'HourglassBottomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassBottomSharp.js b/packages/material-ui-icons/lib/esm/HourglassBottomSharp.js new file mode 100644 index 00000000000000..f8c545abce0d23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassBottomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z" +}), 'HourglassBottomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassBottomTwoTone.js b/packages/material-ui-icons/lib/esm/HourglassBottomTwoTone.js new file mode 100644 index 00000000000000..8394d7e98d7f18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassBottomTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16 16.5-4-4-4 4V20h8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m16 16.5-4-4-4 4V20h8z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6 22h12v-6l-4-4 3.99-4.01L18 2H6l.01 5.99L10 12l-4 3.99V22zM8 7.5V4h8v3.5l-4 4-4-4zm0 9 4-4 4 4V20H8v-3.5z" +}, "2")], 'HourglassBottomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassDisabled.js b/packages/material-ui-icons/lib/esm/HourglassDisabled.js new file mode 100644 index 00000000000000..91d4d0c3bf5c94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" +}), 'HourglassDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassDisabledOutlined.js b/packages/material-ui-icons/lib/esm/HourglassDisabledOutlined.js new file mode 100644 index 00000000000000..f2943bc3e3fd97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" +}), 'HourglassDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassDisabledRounded.js b/packages/material-ui-icons/lib/esm/HourglassDisabledRounded.js new file mode 100644 index 00000000000000..3bc89d9500f112 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l8.19 8.19-3 3.01c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c.86 0 1.58-.54 1.87-1.3l1.91 1.91c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.81 2.81zM16 19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.5l2.84-2.84L16 18.83V19zM8 5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.5l-2.84 2.84 1.25 1.25 3-2.99c.38-.38.59-.89.59-1.42V4c0-1.11-.9-2-2-2H8c-.86 0-1.58.54-1.87 1.3L8 5.17V5z" +}), 'HourglassDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassDisabledSharp.js b/packages/material-ui-icons/lib/esm/HourglassDisabledSharp.js new file mode 100644 index 00000000000000..fa90a03352a518 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" +}), 'HourglassDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/HourglassDisabledTwoTone.js new file mode 100644 index 00000000000000..2b4381a1ca1194 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassDisabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" +}), 'HourglassDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassEmpty.js b/packages/material-ui-icons/lib/esm/HourglassEmpty.js new file mode 100644 index 00000000000000..4041a2abbb3ce5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassEmpty.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z" +}), 'HourglassEmpty'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassEmptyOutlined.js b/packages/material-ui-icons/lib/esm/HourglassEmptyOutlined.js new file mode 100644 index 00000000000000..e3a6f9e681b9d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassEmptyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z" +}), 'HourglassEmptyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassEmptyRounded.js b/packages/material-ui-icons/lib/esm/HourglassEmptyRounded.js new file mode 100644 index 00000000000000..553898a7e20c59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassEmptyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 2c-1.1 0-2 .9-2 2v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8zm8 14.5V19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.5l4-4 4 4zm-4-5-4-4V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.5l-4 4z" +}), 'HourglassEmptyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassEmptySharp.js b/packages/material-ui-icons/lib/esm/HourglassEmptySharp.js new file mode 100644 index 00000000000000..5de32da0aeb6c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassEmptySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z" +}), 'HourglassEmptySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassEmptyTwoTone.js b/packages/material-ui-icons/lib/esm/HourglassEmptyTwoTone.js new file mode 100644 index 00000000000000..4bfadfdc11ef1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassEmptyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9-4 4-4-4V4h8v3.5z" +}), 'HourglassEmptyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassFull.js b/packages/material-ui-icons/lib/esm/HourglassFull.js new file mode 100644 index 00000000000000..54166ff5e6a75e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassFull.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" +}), 'HourglassFull'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassFullOutlined.js b/packages/material-ui-icons/lib/esm/HourglassFullOutlined.js new file mode 100644 index 00000000000000..ecaf92069dcd58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassFullOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" +}), 'HourglassFullOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassFullRounded.js b/packages/material-ui-icons/lib/esm/HourglassFullRounded.js new file mode 100644 index 00000000000000..effd09551a9dd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassFullRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 4v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2z" +}), 'HourglassFullRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassFullSharp.js b/packages/material-ui-icons/lib/esm/HourglassFullSharp.js new file mode 100644 index 00000000000000..146e563187c319 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassFullSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" +}), 'HourglassFullSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassFullTwoTone.js b/packages/material-ui-icons/lib/esm/HourglassFullTwoTone.js new file mode 100644 index 00000000000000..689d45058df016 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassFullTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8 7.5 4 4 4-4V4H8zm0 9V20h8v-3.5l-4-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9-4 4-4-4V4h8v3.5z" +}, "1")], 'HourglassFullTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassTop.js b/packages/material-ui-icons/lib/esm/HourglassTop.js new file mode 100644 index 00000000000000..2e197619889a4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassTop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z" +}), 'HourglassTop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassTopOutlined.js b/packages/material-ui-icons/lib/esm/HourglassTopOutlined.js new file mode 100644 index 00000000000000..fd3e24ad38cbed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassTopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z" +}), 'HourglassTopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassTopRounded.js b/packages/material-ui-icons/lib/esm/HourglassTopRounded.js new file mode 100644 index 00000000000000..2b0d9bf6107e4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassTopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 2c-1.1 0-2 .9-2 2l.01 3.18c0 .53.21 1.03.58 1.41L10 12l-3.41 3.43c-.37.37-.58.88-.58 1.41L6 20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8zm8 14.91V19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.09c0-.27.11-.52.29-.71L12 12.5l3.71 3.71c.18.18.29.44.29.7z" +}), 'HourglassTopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassTopSharp.js b/packages/material-ui-icons/lib/esm/HourglassTopSharp.js new file mode 100644 index 00000000000000..55df4520c18974 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassTopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z" +}), 'HourglassTopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HourglassTopTwoTone.js b/packages/material-ui-icons/lib/esm/HourglassTopTwoTone.js new file mode 100644 index 00000000000000..d510ccbb6f9509 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HourglassTopTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8 7.5 4 4 4-4V4H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m8 7.5 4 4 4-4V4H8z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 2H6v6l4 4-3.99 4.01L6 22h12l-.01-5.99L14 12l4-3.99V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9-4 4-4-4V4h8v3.5z" +}, "2")], 'HourglassTopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/House.js b/packages/material-ui-icons/lib/esm/House.js new file mode 100644 index 00000000000000..4efaa40707160b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/House.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h5v-6h4v6h5v-8h3l-3-2.7zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z" +}), 'House'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseOutlined.js b/packages/material-ui-icons/lib/esm/HouseOutlined.js new file mode 100644 index 00000000000000..ade49dac9fdce0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h6v-6h2v6h6v-8h3l-3-2.7zM17 18h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 10h4c0-1.1-.9-2-2-2s-2 .9-2 2z" +}, "1")], 'HouseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseRounded.js b/packages/material-ui-icons/lib/esm/HouseRounded.js new file mode 100644 index 00000000000000..45b87e82c41a02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9.3V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1.6l-3.33-3c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L19 9.3zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z" +}), 'HouseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseSharp.js b/packages/material-ui-icons/lib/esm/HouseSharp.js new file mode 100644 index 00000000000000..dded7849bca158 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h5v-6h4v6h5v-8h3l-3-2.7zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z" +}), 'HouseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseSiding.js b/packages/material-ui-icons/lib/esm/HouseSiding.js new file mode 100644 index 00000000000000..99c76bf8fd0bf4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseSiding.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" +}), 'HouseSiding'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseSidingOutlined.js b/packages/material-ui-icons/lib/esm/HouseSidingOutlined.js new file mode 100644 index 00000000000000..f2bb82f2b4c5b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseSidingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" +}), 'HouseSidingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseSidingRounded.js b/packages/material-ui-icons/lib/esm/HouseSidingRounded.js new file mode 100644 index 00000000000000..0a84692ab61785 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseSidingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1s1-.45 1-1v-1h10v1c0 .55.45 1 1 1s1-.45 1-1v-7zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" +}), 'HouseSidingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseSidingSharp.js b/packages/material-ui-icons/lib/esm/HouseSidingSharp.js new file mode 100644 index 00000000000000..2180bd59b30593 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseSidingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" +}), 'HouseSidingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseSidingTwoTone.js b/packages/material-ui-icons/lib/esm/HouseSidingTwoTone.js new file mode 100644 index 00000000000000..2f1d779fe9f4ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseSidingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" +}, "1")], 'HouseSidingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseTwoTone.js b/packages/material-ui-icons/lib/esm/HouseTwoTone.js new file mode 100644 index 00000000000000..d837741f135dc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 10.19V18h2v-6h6v6h2v-7.81l-5-4.5-5 4.5zm7-.19h-4c0-1.1.9-2 2-2s2 .9 2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h6v-6h2v6h6v-8h3l-3-2.7zM17 18h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 10h4c0-1.1-.9-2-2-2s-2 .9-2 2z" +}, "2")], 'HouseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Houseboat.js b/packages/material-ui-icons/lib/esm/Houseboat.js new file mode 100644 index 00000000000000..2ca67911b92862 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Houseboat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66-1.37 1.37c-.19.18-.45.29-.71.29H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-1.37-1.37-1.41 1.41 1.37 1.37c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l1.37-1.37-1.4-1.41zM13 13h-2v-2h2v2z" +}), 'Houseboat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseboatOutlined.js b/packages/material-ui-icons/lib/esm/HouseboatOutlined.js new file mode 100644 index 00000000000000..35aecfc447585e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseboatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66-1.37 1.37c-.19.18-.45.29-.71.29H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-1.37-1.37-1.41 1.41 1.37 1.37c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l1.37-1.37-1.4-1.41zM13 13v-2h-2v2H9V8.18l3-2.2 3 2.2V13h-2z" +}), 'HouseboatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseboatRounded.js b/packages/material-ui-icons/lib/esm/HouseboatRounded.js new file mode 100644 index 00000000000000..edd9897b3912b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseboatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 17.83c0-.42-.27-.8-.67-.94-.71-.27-1.12-.89-2.66-.89-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1s-2.1 1-3.34 1c-1.19 0-1.42-1-3.33-1-1.54 0-1.95.62-2.66.88-.4.15-.67.52-.67.95 0 .7.69 1.19 1.35.95.8-.29 1.18-.78 2-.78 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 .83 0 1.21.49 2 .78.66.24 1.35-.26 1.35-.95zm-3.09-8.02c.33-.45.23-1.07-.22-1.4l-6.1-4.47a.99.99 0 0 0-1.18 0l-6.1 4.47c-.45.33-.54.95-.22 1.4.33.45.95.54 1.4.22L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-.66-.66a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.66.66c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l.66-.66c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.66.66c-.18.18-.44.29-.7.29H17V9.65l.51.37c.45.33 1.07.23 1.4-.21zM13 13h-2v-2h2v2z" +}), 'HouseboatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseboatSharp.js b/packages/material-ui-icons/lib/esm/HouseboatSharp.js new file mode 100644 index 00000000000000..56e7a53904fa93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseboatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66L18.67 13H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.33l-1.66-1.66-1.41 1.41L4.5 15h15l2.25-2.25-1.41-1.41zM13 13h-2v-2h2v2z" +}), 'HouseboatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HouseboatTwoTone.js b/packages/material-ui-icons/lib/esm/HouseboatTwoTone.js new file mode 100644 index 00000000000000..de3e8f39359a34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HouseboatTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 13v-2h-2v2H9V8.18l3-2.2 3 2.2V13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66-1.37 1.37c-.19.18-.45.29-.71.29H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.74c-.27 0-.52-.11-.71-.29l-1.37-1.37-1.41 1.41 1.37 1.37c.56.56 1.33.88 2.12.88h12.51c.8 0 1.56-.32 2.12-.88l1.37-1.37-1.4-1.41zM13 13v-2h-2v2H9V8.18l3-2.2 3 2.2V13h-2z" +}, "1")], 'HouseboatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToReg.js b/packages/material-ui-icons/lib/esm/HowToReg.js new file mode 100644 index 00000000000000..81f313797c7f80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToReg.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "m9 17 3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m4.47 8.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z" +}), 'HowToReg'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToRegOutlined.js b/packages/material-ui-icons/lib/esm/HowToRegOutlined.js new file mode 100644 index 00000000000000..ad6686e61a24cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToRegOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z" +}), 'HowToRegOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToRegRounded.js b/packages/material-ui-icons/lib/esm/HowToRegRounded.js new file mode 100644 index 00000000000000..03655a9c284747 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToRegRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 20-.86-.86c-1.18-1.18-1.17-3.1.02-4.26l.84-.82c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9zm-1-8c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m5.18 7.78c-.39.39-1.03.39-1.42 0l-2.07-2.09c-.38-.39-.38-1.01 0-1.39l.01-.01c.39-.39 1.02-.39 1.4 0l1.37 1.37 4.43-4.46c.39-.39 1.02-.39 1.41 0l.01.01c.38.39.38 1.01 0 1.39l-5.14 5.18z" +}), 'HowToRegRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToRegSharp.js b/packages/material-ui-icons/lib/esm/HowToRegSharp.js new file mode 100644 index 00000000000000..baa64cdb779449 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToRegSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 17 3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m4.47 8.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41-6.53 6.59z" +}), 'HowToRegSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToRegTwoTone.js b/packages/material-ui-icons/lib/esm/HowToRegTwoTone.js new file mode 100644 index 00000000000000..30bc0f6cfdc1ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToRegTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "8", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 18h4.99L9 17l.93-.94C7.55 16.33 5.2 17.37 5 18z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-1 12H5c.2-.63 2.55-1.67 4.93-1.94h.03l.46-.45L12 14.06c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2zm10.6-5.5-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z" +}, "2")], 'HowToRegTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToVote.js b/packages/material-ui-icons/lib/esm/HowToVote.js new file mode 100644 index 00000000000000..dbb1113c93dbc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToVote.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm-1-5.05-4.95 4.95-3.54-3.54 4.95-4.95L17 7.95zm-4.24-5.66L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01z" +}), 'HowToVote'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToVoteOutlined.js b/packages/material-ui-icons/lib/esm/HowToVoteOutlined.js new file mode 100644 index 00000000000000..b3d963f04ff097 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToVoteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1zm-7.66-4.98c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95zm2.12-10.61L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z" +}), 'HowToVoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToVoteRounded.js b/packages/material-ui-icons/lib/esm/HowToVoteRounded.js new file mode 100644 index 00000000000000..d82c5d0197c618 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToVoteRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m18 12.18-1.5 1.64 2 2.18h-13l2-2.18L6 12.18l-3 3.27V20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4.54l-3-3.28z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.59 14.42c.78.79 2.05.8 2.84.01l4.98-4.98c.78-.78.78-2.05 0-2.83l-3.54-3.53c-.78-.78-2.05-.78-2.83 0L7.09 8.04c-.78.78-.78 2.03-.01 2.82l3.51 3.56zm2.87-9.92 3.53 3.53-4.94 4.94-3.53-3.53 4.94-4.94z" +}, "1")], 'HowToVoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToVoteSharp.js b/packages/material-ui-icons/lib/esm/HowToVoteSharp.js new file mode 100644 index 00000000000000..2eb5f71eb204be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToVoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v6h18v-6zm1.81-5.04L13.45 1.6 5.68 9.36l6.36 6.36 7.77-7.76zm-6.35-3.55L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z" +}), 'HowToVoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HowToVoteTwoTone.js b/packages/material-ui-icons/lib/esm/HowToVoteTwoTone.js new file mode 100644 index 00000000000000..ff2a8c02d4e336 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HowToVoteTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14v1H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.048 12.905 8.505 9.362l4.95-4.95 3.543 3.543z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19.11 7.25 14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41zm-7.06 5.65L8.51 9.36l4.95-4.95L17 7.95l-4.95 4.95z" +}, "3")], 'HowToVoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Http.js b/packages/material-ui-icons/lib/esm/Http.js new file mode 100644 index 00000000000000..eb6b74ec330c0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Http.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" +}), 'Http'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpOutlined.js b/packages/material-ui-icons/lib/esm/HttpOutlined.js new file mode 100644 index 00000000000000..2346868a5ea2a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" +}), 'HttpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpRounded.js b/packages/material-ui-icons/lib/esm/HttpRounded.js new file mode 100644 index 00000000000000..aacb419d833431 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 11h-2V9.75c0-.41-.34-.75-.75-.75S1 9.34 1 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C6 9.34 5.66 9 5.25 9s-.75.34-.75.75V11zm3.25-.5h.75v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h.75c.41 0 .75-.34.75-.75S11.16 9 10.75 9h-3c-.41 0-.75.34-.75.75s.34.75.75.75zm5.5 0H14v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h.75c.41 0 .75-.34.75-.75S16.66 9 16.25 9h-3c-.41 0-.75.34-.75.75s.34.75.75.75zM21.5 9H19c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h2c.83 0 1.5-.68 1.5-1.5v-1c0-.82-.67-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" +}), 'HttpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpSharp.js b/packages/material-ui-icons/lib/esm/HttpSharp.js new file mode 100644 index 00000000000000..98c3b14b61e69f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zM23 9h-5v6h1.5v-2H23V9zm-1.5 2.5h-2v-1h2v1z" +}), 'HttpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpTwoTone.js b/packages/material-ui-icons/lib/esm/HttpTwoTone.js new file mode 100644 index 00000000000000..45d83a1923e945 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z" +}), 'HttpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Https.js b/packages/material-ui-icons/lib/esm/Https.js new file mode 100644 index 00000000000000..2c967bcb2f57b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Https.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z" +}), 'Https'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpsOutlined.js b/packages/material-ui-icons/lib/esm/HttpsOutlined.js new file mode 100644 index 00000000000000..c119f22acaee03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'HttpsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpsRounded.js b/packages/material-ui-icons/lib/esm/HttpsRounded.js new file mode 100644 index 00000000000000..e77c02e2fa4158 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" +}), 'HttpsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpsSharp.js b/packages/material-ui-icons/lib/esm/HttpsSharp.js new file mode 100644 index 00000000000000..3eb0e470e6213c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" +}), 'HttpsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HttpsTwoTone.js b/packages/material-ui-icons/lib/esm/HttpsTwoTone.js new file mode 100644 index 00000000000000..c4cf636be0c95f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HttpsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}, "1")], 'HttpsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Hvac.js b/packages/material-ui-icons/lib/esm/Hvac.js new file mode 100644 index 00000000000000..3c52719e92c354 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Hvac.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm-3.44-2h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}, "1")], 'Hvac'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HvacOutlined.js b/packages/material-ui-icons/lib/esm/HvacOutlined.js new file mode 100644 index 00000000000000..a18d00d0c8c1dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HvacOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm3.44-8c.26.45.44.96.51 1.5h-7.9c.07-.54.24-1.05.51-1.5h6.88zm.51 2.5c-.07.54-.24 1.05-.51 1.5H8.56c-.26-.45-.44-.96-.51-1.5h7.9zM9.38 15h5.24c-.7.61-1.61 1-2.62 1s-1.91-.39-2.62-1zm5.24-6H9.38c.7-.61 1.61-1 2.62-1s1.91.39 2.62 1z" +}, "1")], 'HvacOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HvacRounded.js b/packages/material-ui-icons/lib/esm/HvacRounded.js new file mode 100644 index 00000000000000..1c54c4763341b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HvacRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm-3.44-2h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}, "1")], 'HvacRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HvacSharp.js b/packages/material-ui-icons/lib/esm/HvacSharp.js new file mode 100644 index 00000000000000..603f5e3976b203 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HvacSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.56 14h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm0-8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}, "1")], 'HvacSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/HvacTwoTone.js b/packages/material-ui-icons/lib/esm/HvacTwoTone.js new file mode 100644 index 00000000000000..22473fa4cb7f17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/HvacTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm7-13c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm0-2c-1.01 0-1.91-.39-2.62-1h5.24c-.71.61-1.61 1-2.62 1zm0-8c1.01 0 1.91.39 2.62 1H9.38c.71-.61 1.61-1 2.62-1zm-3.44 2h6.89c.26.45.44.96.51 1.5h-7.9c.06-.54.23-1.05.5-1.5zm7.39 2.5c-.07.54-.24 1.05-.51 1.5H8.56c-.26-.45-.44-.96-.51-1.5h7.9z" +}, "2")], 'HvacTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IceSkating.js b/packages/material-ui-icons/lib/esm/IceSkating.js new file mode 100644 index 00000000000000..24f80e6f8cf433 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IceSkating.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 8.5c0-.28.22-.5.5-.5h2.52L11 7H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H11V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2c0 1.66-1.34 3-3 3h-2v-2h3v-2.88c0-2.1-1.55-3.53-3.03-3.88l-2.7-.67c-.87-.22-1.57-.81-1.95-1.57H8.5c-.28 0-.5-.22-.5-.5zM14 20H8v-2h6v2z" +}), 'IceSkating'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IceSkatingOutlined.js b/packages/material-ui-icons/lib/esm/IceSkatingOutlined.js new file mode 100644 index 00000000000000..b744e3386e854a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IceSkatingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-.74C12.62 9.19 12 8.39 12 7.5V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zM5 16V5h5v1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5H10l.1 1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5h1.81c.45 1.12 1.4 2.01 2.6 2.36l2.62.73C16.4 12.33 17 13.1 17 14v2H5zm9 4H8v-2h6v2z" +}), 'IceSkatingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IceSkatingRounded.js b/packages/material-ui-icons/lib/esm/IceSkatingRounded.js new file mode 100644 index 00000000000000..3101831a475ed7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IceSkatingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.87 17c-.47 0-.85.34-.98.8-.35 1.27-1.51 2.2-2.89 2.2h-2v-2h1c1.1 0 2-.9 2-2v-.88c0-2.1-1.55-3.53-3.03-3.88l-2.7-.67c-.87-.22-1.57-.81-1.95-1.57H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h2.52L11 7H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H11V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h1v2H3c-.55 0-1 .45-1 1s.45 1 1 1h15c2.33 0 4.29-1.6 4.84-3.75.17-.63-.32-1.25-.97-1.25zM14 20H8v-2h6v2z" +}), 'IceSkatingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IceSkatingSharp.js b/packages/material-ui-icons/lib/esm/IceSkatingSharp.js new file mode 100644 index 00000000000000..b862016a8ab8ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IceSkatingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3l-.01-6-5.71-1.43c-.88-.22-1.58-.81-1.96-1.57H8V8h3.02L11 7H8V6h3V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zm-7 3H8v-2h6v2z" +}), 'IceSkatingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IceSkatingTwoTone.js b/packages/material-ui-icons/lib/esm/IceSkatingTwoTone.js new file mode 100644 index 00000000000000..d69baf73df28b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IceSkatingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 16V5h5v1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5H10l.1 1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5h1.81c.45 1.12 1.4 2.01 2.6 2.36l2.62.73C16.4 12.33 17 13.1 17 14v2H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-.74C12.62 9.19 12 8.39 12 7.5V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zM5 16V5h5v1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5H10l.1 1H8.5c-.28 0-.5.22-.5.5s.22.5.5.5h1.81c.45 1.12 1.4 2.01 2.6 2.36l2.62.73C16.4 12.33 17 13.1 17 14v2H5zm9 4H8v-2h6v2z" +}, "1")], 'IceSkatingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Icecream.js b/packages/material-ui-icons/lib/esm/Icecream.js new file mode 100644 index 00000000000000..6b313f8b1cefdf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Icecream.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "m8.79 12.4 3.26 6.22 3.17-6.21c-.11-.08-.21-.16-.3-.25-.84.53-1.85.84-2.92.84s-2.08-.31-2.92-.84c-.09.09-.19.17-.29.24zm-1.96.59C5.25 12.9 4 11.6 4 10c0-1.49 1.09-2.73 2.52-2.96C6.75 4.22 9.12 2 12 2s5.25 2.22 5.48 5.04C18.91 7.27 20 8.51 20 10c0 1.59-1.24 2.9-2.81 2.99L12.07 23 6.83 12.99z" +}), 'Icecream'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IcecreamOutlined.js b/packages/material-ui-icons/lib/esm/IcecreamOutlined.js new file mode 100644 index 00000000000000..40032affe4ded2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IcecreamOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23zM17 12c-.52 0-1.01-.2-1.39-.56l-.56-.54-.66.42c-.71.44-1.53.68-2.39.68s-1.68-.24-2.39-.69l-.66-.41-.56.54c-.38.35-.87.56-1.39.56-1.1 0-2-.89-2-2 0-.98.72-1.82 1.68-1.97l.77-.13.06-.78C7.71 4.8 9.66 3 12 3s4.29 1.8 4.48 4.12l.06.78.77.12c.97.16 1.69.99 1.69 1.98 0 1.1-.9 2-2 2z" +}), 'IcecreamOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IcecreamRounded.js b/packages/material-ui-icons/lib/esm/IcecreamRounded.js new file mode 100644 index 00000000000000..2a38cae836f64c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IcecreamRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02l3.83 7.31c.38.72 1.41.71 1.78-.01l3.73-7.31c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23z" +}), 'IcecreamRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IcecreamSharp.js b/packages/material-ui-icons/lib/esm/IcecreamSharp.js new file mode 100644 index 00000000000000..d8c8cd2787b913 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IcecreamSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23z" +}), 'IcecreamSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IcecreamTwoTone.js b/packages/material-ui-icons/lib/esm/IcecreamTwoTone.js new file mode 100644 index 00000000000000..f8c200954d72c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IcecreamTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m9.32 13.42 2.73 5.21 2.67-5.23c-.84.39-1.77.6-2.72.6-.94 0-1.85-.21-2.68-.58zm7.99-5.4-.77-.12-.06-.78C16.29 4.8 14.34 3 12 3S7.71 4.8 7.51 7.12l-.06.78-.77.13C5.72 8.18 5 9.02 5 10c0 1.11.9 2 2 2 .52 0 1.01-.21 1.39-.56l.56-.54.66.41c.71.45 1.53.69 2.39.69s1.68-.24 2.39-.68l.66-.42.56.54c.38.36.87.56 1.39.56 1.1 0 2-.9 2-2 0-.99-.72-1.82-1.69-1.98z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24C4.08 6.81 3 8.29 3 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39-2.73-5.21c.83.37 1.74.58 2.68.58.95 0 1.88-.21 2.72-.6l-2.67 5.23zM17 12c-.52 0-1.01-.2-1.39-.56l-.56-.54-.66.42c-.71.44-1.53.68-2.39.68s-1.68-.24-2.39-.69l-.66-.41-.56.54c-.38.35-.87.56-1.39.56-1.1 0-2-.89-2-2 0-.98.72-1.82 1.68-1.97l.77-.13.06-.78C7.71 4.8 9.66 3 12 3s4.29 1.8 4.48 4.12l.06.78.77.12c.97.16 1.69.99 1.69 1.98 0 1.1-.9 2-2 2z" +}, "1")], 'IcecreamTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Image.js b/packages/material-ui-icons/lib/esm/Image.js new file mode 100644 index 00000000000000..8bd14dad7613b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Image.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" +}), 'Image'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageAspectRatio.js b/packages/material-ui-icons/lib/esm/ImageAspectRatio.js new file mode 100644 index 00000000000000..7d5414f28e530c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageAspectRatio.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}), 'ImageAspectRatio'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageAspectRatioOutlined.js b/packages/material-ui-icons/lib/esm/ImageAspectRatioOutlined.js new file mode 100644 index 00000000000000..8c8fb1e95ab865 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageAspectRatioOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}), 'ImageAspectRatioOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageAspectRatioRounded.js b/packages/material-ui-icons/lib/esm/ImageAspectRatioRounded.js new file mode 100644 index 00000000000000..a5272fa82ced11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageAspectRatioRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'ImageAspectRatioRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageAspectRatioSharp.js b/packages/material-ui-icons/lib/esm/ImageAspectRatioSharp.js new file mode 100644 index 00000000000000..ea5f122a692099 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageAspectRatioSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm10-6H2v16h20V4zm-2 14H4V6h16v12z" +}), 'ImageAspectRatioSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageAspectRatioTwoTone.js b/packages/material-ui-icons/lib/esm/ImageAspectRatioTwoTone.js new file mode 100644 index 00000000000000..6b4ee8a2024cf5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageAspectRatioTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zm10-8h2v2h-2v-2zm0 4h2v2h-2v-2zm-4-4h2v2h-2v-2zm-4 0h2v2H6v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 10h2v2h-2zm0 4h2v2h-2zm-8-4h2v2H6zm4 0h2v2h-2zm10-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "1")], 'ImageAspectRatioTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageNotSupported.js b/packages/material-ui-icons/lib/esm/ImageNotSupported.js new file mode 100644 index 00000000000000..6dc61144f756c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageNotSupported.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.9 21.9-8.49-8.49-9.82-9.82L2.1 2.1.69 3.51 3 5.83V19c0 1.1.9 2 2 2h13.17l2.31 2.31 1.42-1.41zM5 18l3.5-4.5 2.5 3.01L12.17 15l3 3H5zm16 .17L5.83 3H19c1.1 0 2 .9 2 2v13.17z" +}), 'ImageNotSupported'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageNotSupportedOutlined.js b/packages/material-ui-icons/lib/esm/ImageNotSupportedOutlined.js new file mode 100644 index 00000000000000..7d4dc7cee646ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageNotSupportedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.9 21.9-6.1-6.1-2.69-2.69L5 5 3.59 3.59 2.1 2.1.69 3.51 3 5.83V19c0 1.1.9 2 2 2h13.17l2.31 2.31 1.42-1.41zM5 19V7.83l6.84 6.84-.84 1.05L9 13l-3 4h8.17l2 2H5zM7.83 5l-2-2H19c1.1 0 2 .9 2 2v13.17l-2-2V5H7.83z" +}), 'ImageNotSupportedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageNotSupportedRounded.js b/packages/material-ui-icons/lib/esm/ImageNotSupportedRounded.js new file mode 100644 index 00000000000000..dff438233e24f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageNotSupportedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.19 21.19-.78-.78L18 18l-4.59-4.59-9.82-9.82-.78-.78a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22L3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42zM6.02 18c-.42 0-.65-.48-.39-.81l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53L12.17 15l3 3H6.02zm14.98.17L5.83 3H19c1.1 0 2 .9 2 2v13.17z" +}), 'ImageNotSupportedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageNotSupportedSharp.js b/packages/material-ui-icons/lib/esm/ImageNotSupportedSharp.js new file mode 100644 index 00000000000000..e0272775f8ae37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageNotSupportedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.9 21.9-8.49-8.49L3 3l-.9-.9L.69 3.51 3 5.83V21h15.17l2.31 2.31 1.42-1.41zM5 18l3.5-4.5 2.5 3.01L12.17 15l3 3H5zm16 .17L5.83 3H21v15.17z" +}), 'ImageNotSupportedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageNotSupportedTwoTone.js b/packages/material-ui-icons/lib/esm/ImageNotSupportedTwoTone.js new file mode 100644 index 00000000000000..f57fe30ab8b9f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageNotSupportedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.83 5H19v11.17L7.83 5zm8.34 14-2-2H6l3-4 2 2.72.84-1.05L5 7.83V19h11.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5H7.83l-2-2zm14.66 20.31L18.17 21H5c-1.1 0-2-.9-2-2V5.83L.69 3.51 2.1 2.1l1.49 1.49L5 5l8.11 8.11 2.69 2.69L19 19l1.41 1.41 1.49 1.49-1.41 1.41zM16.17 19l-2-2H6l3-4 2 2.72.84-1.05L5 7.83V19h11.17z" +}, "1")], 'ImageNotSupportedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageOutlined.js b/packages/material-ui-icons/lib/esm/ImageOutlined.js new file mode 100644 index 00000000000000..ed89083efbb12e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86-3 3.87L9 13.14 6 17h12l-3.86-5.14z" +}), 'ImageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageRounded.js b/packages/material-ui-icons/lib/esm/ImageRounded.js new file mode 100644 index 00000000000000..91576da7d3c4af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z" +}), 'ImageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageSearch.js b/packages/material-ui-icons/lib/esm/ImageSearch.js new file mode 100644 index 00000000000000..05ec67a3b95017 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageSearch.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" +}), 'ImageSearch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageSearchOutlined.js b/packages/material-ui-icons/lib/esm/ImageSearchOutlined.js new file mode 100644 index 00000000000000..2daf0baddfc70f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageSearchOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" +}), 'ImageSearchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageSearchRounded.js b/packages/material-ui-icons/lib/esm/ImageSearchRounded.js new file mode 100644 index 00000000000000..11d47661faf2ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageSearchRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 15v4c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h3.02c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5c0-.55-.45-1-1-1s-1 .45-1 1zm-2.5 3H6.52c-.42 0-.65-.48-.39-.81l1.74-2.23c.2-.25.58-.26.78-.01l1.56 1.88 2.35-3.02c.2-.26.6-.26.79.01l2.55 3.39c.25.32.01.79-.4.79zm3.8-9.11c.48-.77.75-1.67.69-2.66-.13-2.15-1.84-3.97-3.97-4.2C13.3 1.73 11 3.84 11 6.5c0 2.49 2.01 4.5 4.49 4.5.88 0 1.7-.26 2.39-.7l2.41 2.41c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-2.41-2.4zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" +}), 'ImageSearchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageSearchSharp.js b/packages/material-ui-icons/lib/esm/ImageSearchSharp.js new file mode 100644 index 00000000000000..bea999d3acaab2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageSearchSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H2v18h18v-7l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z" +}), 'ImageSearchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageSearchTwoTone.js b/packages/material-ui-icons/lib/esm/ImageSearchTwoTone.js new file mode 100644 index 00000000000000..eef2e7bef8323d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageSearchTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.7 11.53c-.7.31-1.45.47-2.21.47C12.46 12 10 9.53 10 6.5c0-.17.01-.34.03-.5H4v14h14v-8.17l-.3-.3zM5.5 18l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18h-11z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m10.21 16.83-1.96-2.36L5.5 18h11l-3.54-4.71zM20 6.5C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89c.44-.7.7-1.51.7-2.39zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9zM18 20H4V6h6.03c.06-.72.27-1.39.58-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.17l-2-2V20z" +}, "1")], 'ImageSearchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageSharp.js b/packages/material-ui-icons/lib/esm/ImageSharp.js new file mode 100644 index 00000000000000..d7bc425c35bc74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" +}), 'ImageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImageTwoTone.js b/packages/material-ui-icons/lib/esm/ImageTwoTone.js new file mode 100644 index 00000000000000..1e6fe4438bf474 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm4-5.86 2.14 2.58 3-3.87L18 17H6l3-3.86z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4.86-7.14-3 3.86L9 13.14 6 17h12z" +}, "1")], 'ImageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImagesearchRoller.js b/packages/material-ui-icons/lib/esm/ImagesearchRoller.js new file mode 100644 index 00000000000000..44bb226e0c4826 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImagesearchRoller.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2" +}), 'ImagesearchRoller'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImagesearchRollerOutlined.js b/packages/material-ui-icons/lib/esm/ImagesearchRollerOutlined.js new file mode 100644 index 00000000000000..ba80a288576b78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImagesearchRollerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7V3c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h8v3h-1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-1v-3c0-1.1-.9-2-2-2H4V6h2v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1zM8 4h10v2H8V4zm6 17h-2v-4h2v4z" +}), 'ImagesearchRollerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImagesearchRollerRounded.js b/packages/material-ui-icons/lib/esm/ImagesearchRollerRounded.js new file mode 100644 index 00000000000000..3937eed4ef3b70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImagesearchRollerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3v4c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1V6H4v4h8c1.1 0 2 .9 2 2v3h1c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1h1v-3H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h2V3c0-.55.45-1 1-1h12c.55 0 1 .45 1 1z" +}), 'ImagesearchRollerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImagesearchRollerSharp.js b/packages/material-ui-icons/lib/esm/ImagesearchRollerSharp.js new file mode 100644 index 00000000000000..40e15a80a6d434 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImagesearchRollerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2h14z" +}), 'ImagesearchRollerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImagesearchRollerTwoTone.js b/packages/material-ui-icons/lib/esm/ImagesearchRollerTwoTone.js new file mode 100644 index 00000000000000..08530553e01658 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImagesearchRollerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 4h10v2H8zm4 13h2v4h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 7V3c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h8v3h-1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-1v-3c0-1.1-.9-2-2-2H4V6h2v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1zM8 4h10v2H8V4zm6 17h-2v-4h2v4z" +}, "1")], 'ImagesearchRollerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportContacts.js b/packages/material-ui-icons/lib/esm/ImportContacts.js new file mode 100644 index 00000000000000..9a354c35acff53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportContacts.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 4.5c-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .65.73.45.75.45C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.41.21.75-.19.75-.45V6c-1.49-1.12-3.63-1.5-5.5-1.5zm3.5 14c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" +}), 'ImportContacts'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportContactsOutlined.js b/packages/material-ui-icons/lib/esm/ImportContactsOutlined.js new file mode 100644 index 00000000000000..9bc26fc752191c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportContactsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" +}), 'ImportContactsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportContactsRounded.js b/packages/material-ui-icons/lib/esm/ImportContactsRounded.js new file mode 100644 index 00000000000000..604013b57c0d3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportContactsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 4.5c-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5-1.45 0-2.99.22-4.28.79C1.49 5.62 1 6.33 1 7.14v11.28c0 1.3 1.22 2.26 2.48 1.94.98-.25 2.02-.36 3.02-.36 1.56 0 3.22.26 4.56.92.6.3 1.28.3 1.87 0 1.34-.67 3-.92 4.56-.92 1 0 2.04.11 3.02.36 1.26.33 2.48-.63 2.48-1.94V7.14c0-.81-.49-1.52-1.22-1.85-1.28-.57-2.82-.79-4.27-.79zM21 17.23c0 .63-.58 1.09-1.2.98-.75-.14-1.53-.2-2.3-.2-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5.92 0 1.83.09 2.7.28.46.1.8.51.8.98v9.47z" +}), 'ImportContactsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportContactsSharp.js b/packages/material-ui-icons/lib/esm/ImportContactsSharp.js new file mode 100644 index 00000000000000..328c1c56bb1328 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportContactsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" +}), 'ImportContactsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportContactsTwoTone.js b/packages/material-ui-icons/lib/esm/ImportContactsTwoTone.js new file mode 100644 index 00000000000000..dbd4567f8c81c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportContactsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zM3 18.5V7c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99v11.5C9.63 18.41 7.84 18 6.5 18c-1.2 0-2.4.15-3.5.5zm18 0c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.13.41-4.5.99V7.49c1.37-.59 3.16-.99 4.5-.99 1.2 0 2.4.15 3.5.5v11.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 7.49c-1.37-.58-3.16-.99-4.5-.99-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99V7.49z", + opacity: ".3" +}, "1")], 'ImportContactsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportExport.js b/packages/material-ui-icons/lib/esm/ImportExport.js new file mode 100644 index 00000000000000..dfa54cefa27140 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportExport.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" +}), 'ImportExport'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportExportOutlined.js b/packages/material-ui-icons/lib/esm/ImportExportOutlined.js new file mode 100644 index 00000000000000..335e8b81a03a4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportExportOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" +}), 'ImportExportOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportExportRounded.js b/packages/material-ui-icons/lib/esm/ImportExportRounded.js new file mode 100644 index 00000000000000..9b33a6072a1bca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportExportRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.65 3.35 5.86 6.14c-.32.31-.1.85.35.85H8V13c0 .55.45 1 1 1s1-.45 1-1V6.99h1.79c.45 0 .67-.54.35-.85L9.35 3.35c-.19-.19-.51-.19-.7 0zM16 17.01V11c0-.55-.45-1-1-1s-1 .45-1 1v6.01h-1.79c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H16z" +}), 'ImportExportRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportExportSharp.js b/packages/material-ui-icons/lib/esm/ImportExportSharp.js new file mode 100644 index 00000000000000..c99cb0113221d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportExportSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" +}), 'ImportExportSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportExportTwoTone.js b/packages/material-ui-icons/lib/esm/ImportExportTwoTone.js new file mode 100644 index 00000000000000..e4d17e58544ac1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportExportTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 6.99h3V14h2V6.99h3L9 3zM14 10v7.01h-3L15 21l4-3.99h-3V10z" +}), 'ImportExportTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportantDevices.js b/packages/material-ui-icons/lib/esm/ImportantDevices.js new file mode 100644 index 00000000000000..e89f19f8f760c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportantDevices.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" +}), 'ImportantDevices'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportantDevicesOutlined.js b/packages/material-ui-icons/lib/esm/ImportantDevicesOutlined.js new file mode 100644 index 00000000000000..826182d7e02d9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportantDevicesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" +}), 'ImportantDevicesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportantDevicesRounded.js b/packages/material-ui-icons/lib/esm/ImportantDevicesRounded.js new file mode 100644 index 00000000000000..0169ddb39a0323 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportantDevicesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.9 2 0 2.9 0 4v12c0 1.1.9 2 2 2h7v2H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V4c0-1.1-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" +}), 'ImportantDevicesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportantDevicesSharp.js b/packages/material-ui-icons/lib/esm/ImportantDevicesSharp.js new file mode 100644 index 00000000000000..ac39321a9f7a03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportantDevicesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 11.01 17 11v11h7V11.01zM23 20h-5v-7h5v7zM22 2H0v16h9v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V2zM11.97 9 11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" +}), 'ImportantDevicesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ImportantDevicesTwoTone.js b/packages/material-ui-icons/lib/esm/ImportantDevicesTwoTone.js new file mode 100644 index 00000000000000..2d7703ec501cba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ImportantDevicesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13h5v7h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23 11.01 18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM2 4h18v5h2V4c0-1.11-.9-2-2-2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4zm9 2-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" +}, "1")], 'ImportantDevicesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Inbox.js b/packages/material-ui-icons/lib/esm/Inbox.js new file mode 100644 index 00000000000000..6b8b9d894a2337 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Inbox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H4.99c-1.11 0-1.98.89-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10z" +}), 'Inbox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InboxOutlined.js b/packages/material-ui-icons/lib/esm/InboxOutlined.js new file mode 100644 index 00000000000000..487d02e9a8f63b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InboxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z" +}), 'InboxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InboxRounded.js b/packages/material-ui-icons/lib/esm/InboxRounded.js new file mode 100644 index 00000000000000..6e00c537a8cffa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InboxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v9h-3.56c-.36 0-.68.19-.86.5-.52.9-1.47 1.5-2.58 1.5s-2.06-.6-2.58-1.5c-.18-.31-.51-.5-.86-.5H5V5h14z" +}), 'InboxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InboxSharp.js b/packages/material-ui-icons/lib/esm/InboxSharp.js new file mode 100644 index 00000000000000..1695162f791ed6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InboxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3.01v18H21V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H5V5h14v10z" +}), 'InboxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InboxTwoTone.js b/packages/material-ui-icons/lib/esm/InboxTwoTone.js new file mode 100644 index 00000000000000..57a6671a646699 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InboxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-5c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z" +}, "1")], 'InboxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IndeterminateCheckBox.js b/packages/material-ui-icons/lib/esm/IndeterminateCheckBox.js new file mode 100644 index 00000000000000..7be9aaf4ee9b6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IndeterminateCheckBox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10H7v-2h10v2z" +}), 'IndeterminateCheckBox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxOutlined.js b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxOutlined.js new file mode 100644 index 00000000000000..13e62d8b92b643 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z" +}), 'IndeterminateCheckBoxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxRounded.js b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxRounded.js new file mode 100644 index 00000000000000..1d63878bb8815d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'IndeterminateCheckBoxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxSharp.js b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxSharp.js new file mode 100644 index 00000000000000..8fcbc664fe927b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-4 10H7v-2h10v2z" +}), 'IndeterminateCheckBoxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxTwoTone.js b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxTwoTone.js new file mode 100644 index 00000000000000..c9ff4634e714c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IndeterminateCheckBoxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm2-8h10v2H7v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z" +}, "1")], 'IndeterminateCheckBoxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Info.js b/packages/material-ui-icons/lib/esm/Info.js new file mode 100644 index 00000000000000..60a6bbad686504 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Info.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z" +}), 'Info'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InfoOutlined.js b/packages/material-ui-icons/lib/esm/InfoOutlined.js new file mode 100644 index 00000000000000..cf313fcd3f8a29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InfoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'InfoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InfoRounded.js b/packages/material-ui-icons/lib/esm/InfoRounded.js new file mode 100644 index 00000000000000..f3f694d9af8176 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InfoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1-8h-2V7h2v2z" +}), 'InfoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InfoSharp.js b/packages/material-ui-icons/lib/esm/InfoSharp.js new file mode 100644 index 00000000000000..049e0fb447d5b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InfoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z" +}), 'InfoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InfoTwoTone.js b/packages/material-ui-icons/lib/esm/InfoTwoTone.js new file mode 100644 index 00000000000000..8a743c02799847 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InfoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 13h-2v-6h2v6zm0-8h-2V7h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'InfoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Input.js b/packages/material-ui-icons/lib/esm/Input.js new file mode 100644 index 00000000000000..d330190876d2c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Input.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" +}), 'Input'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InputOutlined.js b/packages/material-ui-icons/lib/esm/InputOutlined.js new file mode 100644 index 00000000000000..35e29e7c00f0cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InputOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" +}), 'InputOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InputRounded.js b/packages/material-ui-icons/lib/esm/InputRounded.js new file mode 100644 index 00000000000000..26729902f85e52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InputRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3.01H3c-1.1 0-2 .9-2 2V8c0 .55.45 1 1 1s1-.45 1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V16c0-.55-.45-1-1-1s-1 .45-1 1v3.01c0 1.09.89 1.98 1.98 1.98H21c1.1 0 2-.9 2-2V5.01c0-1.1-.9-2-2-2zm-9.15 12.14 2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.32-.85-.1-.85.35V11H2c-.55 0-1 .45-1 1s.45 1 1 1h9v1.79c0 .45.54.67.85.36z" +}), 'InputRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InputSharp.js b/packages/material-ui-icons/lib/esm/InputSharp.js new file mode 100644 index 00000000000000..ab9f5e00700253 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InputSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM23 3.01H1V9h2V4.99h18v14.03H3V15H1v5.99h22V3.01zM11 16l4-4-4-4v3H1v2h10v3z" +}), 'InputSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InputTwoTone.js b/packages/material-ui-icons/lib/esm/InputTwoTone.js new file mode 100644 index 00000000000000..fa2aed3c22e67b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InputTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z" +}), 'InputTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChart.js b/packages/material-ui-icons/lib/esm/InsertChart.js new file mode 100644 index 00000000000000..4266d703a0c88a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" +}), 'InsertChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartOutlined.js b/packages/material-ui-icons/lib/esm/InsertChartOutlined.js new file mode 100644 index 00000000000000..c36fa9d657b34a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2.5 2.1h-15V5h15v14.1zm0-16.1h-15c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'InsertChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartOutlinedOutlined.js b/packages/material-ui-icons/lib/esm/InsertChartOutlinedOutlined.js new file mode 100644 index 00000000000000..2c467071754bc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartOutlinedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'InsertChartOutlinedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartOutlinedRounded.js b/packages/material-ui-icons/lib/esm/InsertChartOutlinedRounded.js new file mode 100644 index 00000000000000..8ff189c8b92fc5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartOutlinedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm2 2H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'InsertChartOutlinedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartOutlinedSharp.js b/packages/material-ui-icons/lib/esm/InsertChartOutlinedSharp.js new file mode 100644 index 00000000000000..1f447eb583a8d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartOutlinedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm2-16H3v18h18V3z" +}), 'InsertChartOutlinedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartOutlinedTwoTone.js b/packages/material-ui-icons/lib/esm/InsertChartOutlinedTwoTone.js new file mode 100644 index 00000000000000..600e8a94e47975 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartOutlinedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'InsertChartOutlinedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartRounded.js b/packages/material-ui-icons/lib/esm/InsertChartRounded.js new file mode 100644 index 00000000000000..2a38a99ab479bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'InsertChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartSharp.js b/packages/material-ui-icons/lib/esm/InsertChartSharp.js new file mode 100644 index 00000000000000..5ddd5aed206d44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" +}), 'InsertChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertChartTwoTone.js b/packages/material-ui-icons/lib/esm/InsertChartTwoTone.js new file mode 100644 index 00000000000000..314326200d4866 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertChartTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v14h14V5zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm2 0h14v14H5V5zm2 5h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" +}, "1")], 'InsertChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertComment.js b/packages/material-ui-icons/lib/esm/InsertComment.js new file mode 100644 index 00000000000000..c77324b68b7677 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertComment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" +}), 'InsertComment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertCommentOutlined.js b/packages/material-ui-icons/lib/esm/InsertCommentOutlined.js new file mode 100644 index 00000000000000..a465066ed10294 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertCommentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4v13.17L18.83 16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 10H6v2h12v-2zm0-3H6v2h12V9zm0-3H6v2h12V6z" +}), 'InsertCommentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertCommentRounded.js b/packages/material-ui-icons/lib/esm/InsertCommentRounded.js new file mode 100644 index 00000000000000..41c833f6b5e8c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertCommentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-3 12H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'InsertCommentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertCommentSharp.js b/packages/material-ui-icons/lib/esm/InsertCommentSharp.js new file mode 100644 index 00000000000000..2dd87a60ef435d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertCommentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v16h16l4 4V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" +}), 'InsertCommentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertCommentTwoTone.js b/packages/material-ui-icons/lib/esm/InsertCommentTwoTone.js new file mode 100644 index 00000000000000..15ad67ba57b80d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertCommentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 16h14.83L20 17.17V4H4v12zM6 6h12v2H6V6zm0 3h12v2H6V9zm0 3h12v2H6v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 2v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" +}, "1")], 'InsertCommentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertDriveFile.js b/packages/material-ui-icons/lib/esm/InsertDriveFile.js new file mode 100644 index 00000000000000..b6c75a97aba358 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertDriveFile.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z" +}), 'InsertDriveFile'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertDriveFileOutlined.js b/packages/material-ui-icons/lib/esm/InsertDriveFileOutlined.js new file mode 100644 index 00000000000000..387cd82029417a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertDriveFileOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z" +}), 'InsertDriveFileOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertDriveFileRounded.js b/packages/material-ui-icons/lib/esm/InsertDriveFileRounded.js new file mode 100644 index 00000000000000..dcfa6416fcdb23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertDriveFileRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6zm7 6V3.5L18.5 9H14c-.55 0-1-.45-1-1z" +}), 'InsertDriveFileRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertDriveFileSharp.js b/packages/material-ui-icons/lib/esm/InsertDriveFileSharp.js new file mode 100644 index 00000000000000..290b7b0977d8b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertDriveFileSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.01 2 4 22h16V8l-6-6H4.01zM13 9V3.5L18.5 9H13z" +}), 'InsertDriveFileSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertDriveFileTwoTone.js b/packages/material-ui-icons/lib/esm/InsertDriveFileTwoTone.js new file mode 100644 index 00000000000000..7e7548bd510747 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertDriveFileTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 4H6v16h12V9h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20 8-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zm-2 12H6V4h7v5h5v11z" +}, "1")], 'InsertDriveFileTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertEmoticon.js b/packages/material-ui-icons/lib/esm/InsertEmoticon.js new file mode 100644 index 00000000000000..522cfb6969b008 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertEmoticon.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'InsertEmoticon'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertEmoticonOutlined.js b/packages/material-ui-icons/lib/esm/InsertEmoticonOutlined.js new file mode 100644 index 00000000000000..473bd26e6163ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertEmoticonOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'InsertEmoticonOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertEmoticonRounded.js b/packages/material-ui-icons/lib/esm/InsertEmoticonRounded.js new file mode 100644 index 00000000000000..ec5ebf7abf271a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertEmoticonRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm8.25 6.75c-.95 1.64-2.72 2.75-4.75 2.75s-3.8-1.11-4.75-2.75c-.19-.33.06-.75.44-.75h8.62c.39 0 .63.42.44.75zM15.5 11c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'InsertEmoticonRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertEmoticonSharp.js b/packages/material-ui-icons/lib/esm/InsertEmoticonSharp.js new file mode 100644 index 00000000000000..aceb3b77108f19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertEmoticonSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'InsertEmoticonSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertEmoticonTwoTone.js b/packages/material-ui-icons/lib/esm/InsertEmoticonTwoTone.js new file mode 100644 index 00000000000000..6c8be9f0141ac6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertEmoticonTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}, "4")], 'InsertEmoticonTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertInvitation.js b/packages/material-ui-icons/lib/esm/InsertInvitation.js new file mode 100644 index 00000000000000..62cd26038205c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertInvitation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z" +}), 'InsertInvitation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertInvitationOutlined.js b/packages/material-ui-icons/lib/esm/InsertInvitationOutlined.js new file mode 100644 index 00000000000000..535ee6da7b9b99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertInvitationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2 5h-5v5h5v-5z" +}), 'InsertInvitationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertInvitationRounded.js b/packages/material-ui-icons/lib/esm/InsertInvitationRounded.js new file mode 100644 index 00000000000000..d049c9fa4557f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertInvitationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 12h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-10v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm2 17H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z" +}), 'InsertInvitationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertInvitationSharp.js b/packages/material-ui-icons/lib/esm/InsertInvitationSharp.js new file mode 100644 index 00000000000000..91e0c1a2457450 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertInvitationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H3.01v18H21V3h-3V1h-2zm3 18H5V8h14v11z" +}), 'InsertInvitationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertInvitationTwoTone.js b/packages/material-ui-icons/lib/esm/InsertInvitationTwoTone.js new file mode 100644 index 00000000000000..66fd95d66acf67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertInvitationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v2h14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2zM5 7V5h14v2H5zm0 2h14v10H5V9zm7 3h5v5h-5z" +}, "1")], 'InsertInvitationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertLink.js b/packages/material-ui-icons/lib/esm/InsertLink.js new file mode 100644 index 00000000000000..7de774014f463d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertLink.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" +}), 'InsertLink'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertLinkOutlined.js b/packages/material-ui-icons/lib/esm/InsertLinkOutlined.js new file mode 100644 index 00000000000000..422083af6b9968 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertLinkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" +}), 'InsertLinkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertLinkRounded.js b/packages/material-ui-icons/lib/esm/InsertLinkRounded.js new file mode 100644 index 00000000000000..a11406af58f956 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertLinkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.96 11.38C4.24 9.91 5.62 8.9 7.12 8.9h2.93c.52 0 .95-.43.95-.95S10.57 7 10.05 7H7.22c-2.61 0-4.94 1.91-5.19 4.51C1.74 14.49 4.08 17 7 17h3.05c.52 0 .95-.43.95-.95s-.43-.95-.95-.95H7c-1.91 0-3.42-1.74-3.04-3.72zM9 13h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm7.78-6h-2.83c-.52 0-.95.43-.95.95s.43.95.95.95h2.93c1.5 0 2.88 1.01 3.16 2.48.38 1.98-1.13 3.72-3.04 3.72h-3.05c-.52 0-.95.43-.95.95s.43.95.95.95H17c2.92 0 5.26-2.51 4.98-5.49-.25-2.6-2.59-4.51-5.2-4.51z" +}), 'InsertLinkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertLinkSharp.js b/packages/material-ui-icons/lib/esm/InsertLinkSharp.js new file mode 100644 index 00000000000000..07f5aa8882f2c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertLinkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" +}), 'InsertLinkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertLinkTwoTone.js b/packages/material-ui-icons/lib/esm/InsertLinkTwoTone.js new file mode 100644 index 00000000000000..dfb130029074ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertLinkTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" +}), 'InsertLinkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertPhoto.js b/packages/material-ui-icons/lib/esm/InsertPhoto.js new file mode 100644 index 00000000000000..82d55eefdb96a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertPhoto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" +}), 'InsertPhoto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertPhotoOutlined.js b/packages/material-ui-icons/lib/esm/InsertPhotoOutlined.js new file mode 100644 index 00000000000000..f980ba1f323a18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertPhotoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86-3 3.87L9 13.14 6 17h12l-3.86-5.14z" +}), 'InsertPhotoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertPhotoRounded.js b/packages/material-ui-icons/lib/esm/InsertPhotoRounded.js new file mode 100644 index 00000000000000..85907905a815a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertPhotoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z" +}), 'InsertPhotoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertPhotoSharp.js b/packages/material-ui-icons/lib/esm/InsertPhotoSharp.js new file mode 100644 index 00000000000000..8db295345dc4c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertPhotoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" +}), 'InsertPhotoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsertPhotoTwoTone.js b/packages/material-ui-icons/lib/esm/InsertPhotoTwoTone.js new file mode 100644 index 00000000000000..1dac254da351e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsertPhotoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm4-5.86 2.14 2.58 3-3.87L18 17H6l3-3.86z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14zm-4.86-7.14-3 3.86L9 13.14 6 17h12z" +}, "1")], 'InsertPhotoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Insights.js b/packages/material-ui-icons/lib/esm/Insights.js new file mode 100644 index 00000000000000..d89ecc47cbf6c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Insights.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" +}, "1")], 'Insights'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsightsOutlined.js b/packages/material-ui-icons/lib/esm/InsightsOutlined.js new file mode 100644 index 00000000000000..5bc9f8a12b860c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsightsOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" +}, "1")], 'InsightsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsightsRounded.js b/packages/material-ui-icons/lib/esm/InsightsRounded.js new file mode 100644 index 00000000000000..b05342e583641c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsightsRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" +}, "1")], 'InsightsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsightsSharp.js b/packages/material-ui-icons/lib/esm/InsightsSharp.js new file mode 100644 index 00000000000000..333a7e842de064 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsightsSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" +}, "1")], 'InsightsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InsightsTwoTone.js b/packages/material-ui-icons/lib/esm/InsightsTwoTone.js new file mode 100644 index 00000000000000..dc0027c5f8e385 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InsightsTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15 9 .94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11 4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" +}, "1")], 'InsightsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Instagram.js b/packages/material-ui-icons/lib/esm/Instagram.js new file mode 100644 index 00000000000000..7137a55ec7edae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Instagram.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z" +}), 'Instagram'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IntegrationInstructions.js b/packages/material-ui-icons/lib/esm/IntegrationInstructions.js new file mode 100644 index 00000000000000..092c7728e9a4aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IntegrationInstructions.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11.17-1.41 1.42L6 12l3.59-3.59L11 9.83 8.83 12 11 14.17zm1-9.92c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm2.41 11.34L13 14.17 15.17 12 13 9.83l1.41-1.42L18 12l-3.59 3.59z" +}), 'IntegrationInstructions'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IntegrationInstructionsOutlined.js b/packages/material-ui-icons/lib/esm/IntegrationInstructionsOutlined.js new file mode 100644 index 00000000000000..7a660257f58a8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IntegrationInstructionsOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 14.17 8.83 12 11 9.83 9.59 8.41 6 12l3.59 3.59zm3.41 1.42L18 12l-3.59-3.59L13 9.83 15.17 12 13 14.17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 15v4H5V5h14v10z" +}, "1")], 'IntegrationInstructionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IntegrationInstructionsRounded.js b/packages/material-ui-icons/lib/esm/IntegrationInstructionsRounded.js new file mode 100644 index 00000000000000..ebe910e5ce61d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IntegrationInstructionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.7 11.88c-.39.39-1.03.39-1.42 0l-2.17-2.17a.9959.9959 0 0 1 0-1.41l2.17-2.17c.39-.39 1.03-.39 1.42 0 .39.39.39 1.02 0 1.41L8.83 12l1.46 1.46c.39.39.4 1.03.01 1.42zM12 4.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm1.7 10.63a.9959.9959 0 0 1 0-1.41L15.17 12l-1.47-1.47a.9959.9959 0 0 1 0-1.41c.39-.39 1.03-.39 1.42 0l2.17 2.17c.39.39.39 1.02 0 1.41l-2.17 2.17c-.39.4-1.03.4-1.42.01z" +}), 'IntegrationInstructionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IntegrationInstructionsSharp.js b/packages/material-ui-icons/lib/esm/IntegrationInstructionsSharp.js new file mode 100644 index 00000000000000..4f44f93a19dbf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IntegrationInstructionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zM11 14.17l-1.41 1.42L6 12l3.59-3.59L11 9.83 8.83 12 11 14.17zm1-9.92c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm2.41 11.34L13 14.17 15.17 12 13 9.83l1.41-1.42L18 12l-3.59 3.59z" +}), 'IntegrationInstructionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IntegrationInstructionsTwoTone.js b/packages/material-ui-icons/lib/esm/IntegrationInstructionsTwoTone.js new file mode 100644 index 00000000000000..cfdd9cc1866666 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IntegrationInstructionsTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 14.17 8.83 12 11 9.83 9.59 8.41 6 12l3.59 3.59zm3.41 1.42L18 12l-3.59-3.59L13 9.83 15.17 12 13 14.17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 5h14v14H5z", + opacity: ".3" +}, "2")], 'IntegrationInstructionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Inventory.js b/packages/material-ui-icons/lib/esm/Inventory.js new file mode 100644 index 00000000000000..92cebd29dfa810 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Inventory.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4l16-.02V7z" +}), 'Inventory'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Inventory2.js b/packages/material-ui-icons/lib/esm/Inventory2.js new file mode 100644 index 00000000000000..e4af846706e4fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Inventory2.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4h16v3z" +}), 'Inventory2'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Inventory2Outlined.js b/packages/material-ui-icons/lib/esm/Inventory2Outlined.js new file mode 100644 index 00000000000000..972abc250deb66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Inventory2Outlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-1 18H5V9h14v11zm1-13H4V4h16v3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 12h6v2H9z" +}, "1")], 'Inventory2Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Inventory2Rounded.js b/packages/material-ui-icons/lib/esm/Inventory2Rounded.js new file mode 100644 index 00000000000000..2de0749c7df268 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Inventory2Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-6 12h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm6-7H4V4h16v3z" +}), 'Inventory2Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Inventory2Sharp.js b/packages/material-ui-icons/lib/esm/Inventory2Sharp.js new file mode 100644 index 00000000000000..64f1cc83f4bcbf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Inventory2Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 2v6.7h1V22h18V8.7h1V2H2zm13 12H9v-2h6v2zm5-7H4V4h16v3z" +}), 'Inventory2Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Inventory2TwoTone.js b/packages/material-ui-icons/lib/esm/Inventory2TwoTone.js new file mode 100644 index 00000000000000..1ff11206b4afcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Inventory2TwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 7h16V3.98L4 4zm1 13h14V9H5v11zm4-8h6v2H9v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-1 18H5V9h14v11zm1-13H4V4l16-.02V7z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 12h6v2H9z" +}, "2")], 'Inventory2TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InventoryOutlined.js b/packages/material-ui-icons/lib/esm/InventoryOutlined.js new file mode 100644 index 00000000000000..d11d760c8a62f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InventoryOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h2v3h10V5h2v5h2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 11.5 15.51 17l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z" +}, "1")], 'InventoryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InventoryRounded.js b/packages/material-ui-icons/lib/esm/InventoryRounded.js new file mode 100644 index 00000000000000..9c7635db97d339 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InventoryRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h2v1c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5h2v5h2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.75 12.25c-.41-.41-1.09-.41-1.5 0L15.51 17l-2.26-2.25c-.41-.41-1.08-.41-1.5 0-.41.41-.41 1.09 0 1.5l3.05 3.04c.39.39 1.02.39 1.41 0l5.53-5.54c.42-.41.42-1.09.01-1.5z" +}, "1")], 'InventoryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InventorySharp.js b/packages/material-ui-icons/lib/esm/InventorySharp.js new file mode 100644 index 00000000000000..762b89e7e557c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InventorySharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h2v3h10V5h2v5h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h8v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 11.5 15.51 17l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z" +}, "1")], 'InventorySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InventoryTwoTone.js b/packages/material-ui-icons/lib/esm/InventoryTwoTone.js new file mode 100644 index 00000000000000..aeb706dc79ca7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InventoryTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21 11.5 1.5 1.5-6.99 7L11 15.5l1.5-1.5 3.01 3L21 11.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 5v3H7V5H5v14h6.68l-3.51-3.5 4.33-4.33 3.01 3 3.49-3.5V5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 19V5h2v3h10V5h2v5.67l2-2V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8.68l-2-2H5zm7-16c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "2")], 'InventoryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColors.js b/packages/material-ui-icons/lib/esm/InvertColors.js new file mode 100644 index 00000000000000..c9c684420e6184 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColors.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2 6.35 7.56z" +}), 'InvertColors'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsOff.js b/packages/material-ui-icons/lib/esm/InvertColorsOff.js new file mode 100644 index 00000000000000..0f5fc1cdc79c2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" +}), 'InvertColorsOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsOffOutlined.js b/packages/material-ui-icons/lib/esm/InvertColorsOffOutlined.js new file mode 100644 index 00000000000000..33f3076b2a1350 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" +}), 'InvertColorsOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsOffRounded.js b/packages/material-ui-icons/lib/esm/InvertColorsOffRounded.js new file mode 100644 index 00000000000000..c488c688612a70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.5 3.5c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l2.4 2.4c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56l2.91-2.87c.39-.38 1.01-.38 1.4 0l4.95 4.87C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" +}), 'InvertColorsOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsOffSharp.js b/packages/material-ui-icons/lib/esm/InvertColorsOffSharp.js new file mode 100644 index 00000000000000..b95b075c8a8e2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" +}), 'InvertColorsOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsOffTwoTone.js b/packages/material-ui-icons/lib/esm/InvertColorsOffTwoTone.js new file mode 100644 index 00000000000000..7545d93d96d727 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 14.83V19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83zm0-10.02v4.37l-2.2-2.2L12 4.81", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l4.2 4.2c-1 1.31-1.6 2.94-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56 12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" +}, "1")], 'InvertColorsOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsOutlined.js b/packages/material-ui-icons/lib/esm/InvertColorsOutlined.js new file mode 100644 index 00000000000000..6563a24c4dfbc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M12 2 6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2z" +}), 'InvertColorsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsRounded.js b/packages/material-ui-icons/lib/esm/InvertColorsRounded.js new file mode 100644 index 00000000000000..fb4ae0f31e2985 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12.7 2.69c-.39-.38-1.01-.38-1.4 0L6.35 7.56z" +}), 'InvertColorsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsSharp.js b/packages/material-ui-icons/lib/esm/InvertColorsSharp.js new file mode 100644 index 00000000000000..836633521a30be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2 6.35 7.56z" +}), 'InvertColorsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/InvertColorsTwoTone.js b/packages/material-ui-icons/lib/esm/InvertColorsTwoTone.js new file mode 100644 index 00000000000000..cc1aa61882245a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/InvertColorsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.75 8.99C6.62 10.1 6 11.57 6 13.13 6 16.37 8.69 19 12 19V4.81L7.75 8.99z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.65 7.56 12 2 6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57zM6 13.13c0-1.56.62-3.03 1.75-4.14L12 4.81V19c-3.31 0-6-2.63-6-5.87z" +}, "1")], 'InvertColorsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IosShare.js b/packages/material-ui-icons/lib/esm/IosShare.js new file mode 100644 index 00000000000000..de644e5e0b62ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IosShare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 5-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z" +}), 'IosShare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IosShareOutlined.js b/packages/material-ui-icons/lib/esm/IosShareOutlined.js new file mode 100644 index 00000000000000..504f4b7ddc2cde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IosShareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 5-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z" +}), 'IosShareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IosShareRounded.js b/packages/material-ui-icons/lib/esm/IosShareRounded.js new file mode 100644 index 00000000000000..d8e1a8a86ac18f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IosShareRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 8h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v11H6V10h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 16c.55 0 1-.45 1-1V5h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0L8.85 4.15c-.31.31-.09.85.36.85H11v10c0 .55.45 1 1 1z" +}, "1")], 'IosShareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IosShareSharp.js b/packages/material-ui-icons/lib/esm/IosShareSharp.js new file mode 100644 index 00000000000000..f62489aec71edb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IosShareSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 8h-5v2h3v11H6V10h3V8H4v15h16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 16h2V5h3l-4-4-4 4h3z" +}, "1")], 'IosShareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IosShareTwoTone.js b/packages/material-ui-icons/lib/esm/IosShareTwoTone.js new file mode 100644 index 00000000000000..b981b0c3ae657f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IosShareTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 8h-3v2h3v11H6V10h3V8H6c-1.11 0-2 .89-2 2v11c0 1.1.89 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.11-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 16h2V5h3l-4-4-4 4h3z" +}, "1")], 'IosShareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Iron.js b/packages/material-ui-icons/lib/esm/Iron.js new file mode 100644 index 00000000000000..94b12bc44bb7b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Iron.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6h-1z" +}), 'Iron'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IronOutlined.js b/packages/material-ui-icons/lib/esm/IronOutlined.js new file mode 100644 index 00000000000000..8fa4c409fe22ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IronOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6h-1zm-6 10H4v-1c0-1.1.9-2 2-2h9v3z" +}), 'IronOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IronRounded.js b/packages/material-ui-icons/lib/esm/IronRounded.js new file mode 100644 index 00000000000000..71eed8bde43119 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IronRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.27 10c.34 0 .68-.16.84-.47.17-.31.51-.53.89-.53h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v2c0 .55.45 1 1 1h13c.55 0 1-.45 1-1v-1c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1s1-.45 1-1-.45-1-1-1c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.13 0-2.11.62-2.63 1.55-.36.65.16 1.45.9 1.45z" +}), 'IronRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IronSharp.js b/packages/material-ui-icons/lib/esm/IronSharp.js new file mode 100644 index 00000000000000..0b005df82698df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IronSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6v8h-1V7H7v3h2V9h6v2H6c-2.21 0-4 1.79-4 4v3h15v-2h3V8h2V6h-4z" +}), 'IronSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IronTwoTone.js b/packages/material-ui-icons/lib/esm/IronTwoTone.js new file mode 100644 index 00000000000000..a70519ec82483e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IronTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 16H4v-1c0-1.1.9-2 2-2h9v3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 6c-1.66 0-3 1.34-3 3v4c0 .55-.45 1-1 1v-4c0-1.66-1.34-3-3-3h-4c-1.66 0-3 1.34-3 3h2c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1H6c-2.21 0-4 1.79-4 4v3h15v-2c1.66 0 3-1.34 3-3V9c0-.55.45-1 1-1h1V6h-1zm-6 10H4v-1c0-1.1.9-2 2-2h9v3z" +}, "1")], 'IronTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Iso.js b/packages/material-ui-icons/lib/esm/Iso.js new file mode 100644 index 00000000000000..230385441bb8fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Iso.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" +}), 'Iso'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IsoOutlined.js b/packages/material-ui-icons/lib/esm/IsoOutlined.js new file mode 100644 index 00000000000000..0d58a7d13b6135 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IsoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" +}), 'IsoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IsoRounded.js b/packages/material-ui-icons/lib/esm/IsoRounded.js new file mode 100644 index 00000000000000..19e581f0af15a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IsoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.25 7.5H7.5V6.25c0-.41.34-.75.75-.75s.75.34.75.75V7.5h1.25c.41 0 .75.34.75.75s-.34.75-.75.75H9v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V9H6.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM18 19H5L19 5v13c0 .55-.45 1-1 1zm-1-2.75c0-.41-.34-.75-.75-.75h-3.5c-.41 0-.75.34-.75.75s.34.75.75.75h3.5c.41 0 .75-.34.75-.75z" +}), 'IsoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IsoSharp.js b/packages/material-ui-icons/lib/esm/IsoSharp.js new file mode 100644 index 00000000000000..a3089ddcd4b1cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IsoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" +}), 'IsoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/IsoTwoTone.js b/packages/material-ui-icons/lib/esm/IsoTwoTone.js new file mode 100644 index 00000000000000..f1fa305f368edc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/IsoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 19V5L5 19h14zm-2-3.5V17h-5v-1.5h5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 15.5h5V17h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14z" +}, "1")], 'IsoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Kayaking.js b/packages/material-ui-icons/lib/esm/Kayaking.js new file mode 100644 index 00000000000000..bb35ee021272c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Kayaking.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" +}), 'Kayaking'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KayakingOutlined.js b/packages/material-ui-icons/lib/esm/KayakingOutlined.js new file mode 100644 index 00000000000000..1ea82d73c2bc01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KayakingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" +}), 'KayakingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KayakingRounded.js b/packages/material-ui-icons/lib/esm/KayakingRounded.js new file mode 100644 index 00000000000000..11f4ba88b89314 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KayakingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22c0-.55.45-1 1-1 .87 0 1.73-.24 2.53-.7.29-.16.65-.17.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 .8.46 1.66.7 2.53.7.55 0 1 .45 1 1s-.45 1-1 1c-1.03 0-2.06-.25-3-.75-1.92 1.02-4.18 1-6.09-.05-1.79.87-3.92.98-5.58-.14C5.3 22.69 4.15 23 3 23c-.55 0-1-.45-1-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9.47 12.95c-.42.14-.9.28-1.41.42-.53-.15-1.03-.43-1.45-.77-.35-.29-.87-.29-1.23 0-.66.53-1.48.9-2.38.9s-1.72-.37-2.39-.91c-.35-.28-.87-.28-1.22 0-.67.54-1.49.91-2.39.91s-1.72-.37-2.39-.91c-.35-.29-.87-.28-1.23 0-.43.35-.92.62-1.45.77-.51-.14-.98-.28-1.4-.42-.92-.3-.92-1.6 0-1.9 1.21-.39 2.79-.82 4.6-1.13l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.36-.93c-.1-.25-.09-.52.02-.76l.74-1.68c.22-.51.82-.73 1.32-.51l1.37.61c.5.23.73.82.5 1.32l-.75 1.68c-.11.24-.31.43-.56.53l-.9.36-3.72 8.34c2.33.3 4.35.84 5.82 1.31.93.3.94 1.6.01 1.9zm-6.45-5.49-.59.31c-.58.31-1.28.31-1.86 0l-.81-.43-.71 2.17c.31 0 .63-.01.95-.01.71 0 1.4.03 2.07.08l.95-2.12z" +}), 'KayakingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KayakingSharp.js b/packages/material-ui-icons/lib/esm/KayakingSharp.js new file mode 100644 index 00000000000000..f4cf8d12dacb7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KayakingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" +}), 'KayakingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KayakingTwoTone.js b/packages/material-ui-icons/lib/esm/KayakingTwoTone.js new file mode 100644 index 00000000000000..a10fbfb731abb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KayakingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" +}), 'KayakingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Keyboard.js b/packages/material-ui-icons/lib/esm/Keyboard.js new file mode 100644 index 00000000000000..26ac5c45868a3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Keyboard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" +}), 'Keyboard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardAlt.js b/packages/material-ui-icons/lib/esm/KeyboardAlt.js new file mode 100644 index 00000000000000..3fb590c94e7dbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6v1H8v-1h8zm-1-4v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z" +}), 'KeyboardAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardAltOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardAltOutlined.js new file mode 100644 index 00000000000000..52ab7386466397 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15H3V6h18v13zM9 8h2v2H9V8zM5 8h2v2H5V8zm3 8h8v1H8v-1zm5-8h2v2h-2V8zm-4 4h2v2H9v-2zm-4 0h2v2H5v-2zm8 0h2v2h-2v-2zm4-4h2v2h-2V8zm0 4h2v2h-2v-2z" +}), 'KeyboardAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardAltRounded.js b/packages/material-ui-icons/lib/esm/KeyboardAltRounded.js new file mode 100644 index 00000000000000..54b7da843afc94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6.5c0 .28-.22.5-.5.5h-7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7c.28 0 .5.22.5.5zM15 12v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z" +}), 'KeyboardAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardAltSharp.js b/packages/material-ui-icons/lib/esm/KeyboardAltSharp.js new file mode 100644 index 00000000000000..ce78688b68af84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 4H1v17h22V4zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6v1H8v-1h8zm-1-4v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z" +}), 'KeyboardAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardAltTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardAltTwoTone.js new file mode 100644 index 00000000000000..04313b2024aaf3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardAltTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V6H3v13zM17 8h2v2h-2V8zm0 4h2v2h-2v-2zm-4-4h2v2h-2V8zm0 4h2v2h-2v-2zM9 8h2v2H9V8zm0 4h2v2H9v-2zm-1 4h8v1H8v-1zM5 8h2v2H5V8zm0 4h2v2H5v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15H3V6h18v13z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 8h2v2H9zM5 8h2v2H5zm3 8h8v1H8zm5-8h2v2h-2zm-4 4h2v2H9zm-4 0h2v2H5zm8 0h2v2h-2zm4-4h2v2h-2zm0 4h2v2h-2z" +}, "2")], 'KeyboardAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowDown.js b/packages/material-ui-icons/lib/esm/KeyboardArrowDown.js new file mode 100644 index 00000000000000..3943141a758fea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" +}), 'KeyboardArrowDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowDownOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardArrowDownOutlined.js new file mode 100644 index 00000000000000..20fde6b4d5ffde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" +}), 'KeyboardArrowDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowDownRounded.js b/packages/material-ui-icons/lib/esm/KeyboardArrowDownRounded.js new file mode 100644 index 00000000000000..718f5fdbcea8ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.12 9.29 12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7a.9959.9959 0 0 1 0-1.41c.39-.38 1.03-.39 1.42 0z" +}), 'KeyboardArrowDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowDownSharp.js b/packages/material-ui-icons/lib/esm/KeyboardArrowDownSharp.js new file mode 100644 index 00000000000000..48d7990c8b4526 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" +}), 'KeyboardArrowDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowDownTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardArrowDownTwoTone.js new file mode 100644 index 00000000000000..df656e5c7f6bf5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowDownTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" +}), 'KeyboardArrowDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowLeft.js b/packages/material-ui-icons/lib/esm/KeyboardArrowLeft.js new file mode 100644 index 00000000000000..9d17ac18e2bb5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" +}), 'KeyboardArrowLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowLeftOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftOutlined.js new file mode 100644 index 00000000000000..02976deb37bfbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" +}), 'KeyboardArrowLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowLeftRounded.js b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftRounded.js new file mode 100644 index 00000000000000..dc91cee96689d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.71 15.88 10.83 12l3.88-3.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.39.39-1.03 0-1.42z" +}), 'KeyboardArrowLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowLeftSharp.js b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftSharp.js new file mode 100644 index 00000000000000..22cbb56d355bcc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" +}), 'KeyboardArrowLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowLeftTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftTwoTone.js new file mode 100644 index 00000000000000..d5354f0d8bed4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 16.59 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" +}), 'KeyboardArrowLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowRight.js b/packages/material-ui-icons/lib/esm/KeyboardArrowRight.js new file mode 100644 index 00000000000000..ef7b25e88e230f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" +}), 'KeyboardArrowRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowRightOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardArrowRightOutlined.js new file mode 100644 index 00000000000000..dd047484fb8da9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" +}), 'KeyboardArrowRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowRightRounded.js b/packages/material-ui-icons/lib/esm/KeyboardArrowRightRounded.js new file mode 100644 index 00000000000000..80914685a7f50c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.29 15.88 13.17 12 9.29 8.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l4.59 4.59c.39.39.39 1.02 0 1.41L10.7 17.3c-.39.39-1.02.39-1.41 0-.38-.39-.39-1.03 0-1.42z" +}), 'KeyboardArrowRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowRightSharp.js b/packages/material-ui-icons/lib/esm/KeyboardArrowRightSharp.js new file mode 100644 index 00000000000000..d79197e2d69e96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" +}), 'KeyboardArrowRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowRightTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardArrowRightTwoTone.js new file mode 100644 index 00000000000000..14895bfc759c05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" +}), 'KeyboardArrowRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowUp.js b/packages/material-ui-icons/lib/esm/KeyboardArrowUp.js new file mode 100644 index 00000000000000..72d348a8b512e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowUp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6z" +}), 'KeyboardArrowUp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowUpOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardArrowUpOutlined.js new file mode 100644 index 00000000000000..0e54a778ce2e93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowUpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" +}), 'KeyboardArrowUpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowUpRounded.js b/packages/material-ui-icons/lib/esm/KeyboardArrowUpRounded.js new file mode 100644 index 00000000000000..1c7a9fe84157c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowUpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.12 14.71 12 10.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 8.71a.9959.9959 0 0 0-1.41 0L6.7 13.3c-.39.39-.39 1.02 0 1.41.39.38 1.03.39 1.42 0z" +}), 'KeyboardArrowUpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowUpSharp.js b/packages/material-ui-icons/lib/esm/KeyboardArrowUpSharp.js new file mode 100644 index 00000000000000..97baa75dccea68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowUpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" +}), 'KeyboardArrowUpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardArrowUpTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardArrowUpTwoTone.js new file mode 100644 index 00000000000000..700ab1c5b77c55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardArrowUpTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" +}), 'KeyboardArrowUpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardBackspace.js b/packages/material-ui-icons/lib/esm/KeyboardBackspace.js new file mode 100644 index 00000000000000..9f7ff119d9b30c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardBackspace.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21z" +}), 'KeyboardBackspace'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardBackspaceOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardBackspaceOutlined.js new file mode 100644 index 00000000000000..d74b1dd1f33d41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardBackspaceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" +}), 'KeyboardBackspaceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardBackspaceRounded.js b/packages/material-ui-icons/lib/esm/KeyboardBackspaceRounded.js new file mode 100644 index 00000000000000..4e5f29970d79e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardBackspaceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11H6.83l2.88-2.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L3.71 11.3c-.39.39-.39 1.02 0 1.41L8.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.83 13H20c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'KeyboardBackspaceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardBackspaceSharp.js b/packages/material-ui-icons/lib/esm/KeyboardBackspaceSharp.js new file mode 100644 index 00000000000000..249f058455ff07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardBackspaceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" +}), 'KeyboardBackspaceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardBackspaceTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardBackspaceTwoTone.js new file mode 100644 index 00000000000000..1163b40df75938 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardBackspaceTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" +}), 'KeyboardBackspaceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardCapslock.js b/packages/material-ui-icons/lib/esm/KeyboardCapslock.js new file mode 100644 index 00000000000000..76cf3a17fba290 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardCapslock.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" +}), 'KeyboardCapslock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardCapslockOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardCapslockOutlined.js new file mode 100644 index 00000000000000..48e25cc4ea6cd4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardCapslockOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" +}), 'KeyboardCapslockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardCapslockRounded.js b/packages/material-ui-icons/lib/esm/KeyboardCapslockRounded.js new file mode 100644 index 00000000000000..045e5c857e4640 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardCapslockRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.41 3.89 3.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.71 6.3a.9959.9959 0 0 0-1.41 0l-4.6 4.59c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 8.41zM7 18h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'KeyboardCapslockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardCapslockSharp.js b/packages/material-ui-icons/lib/esm/KeyboardCapslockSharp.js new file mode 100644 index 00000000000000..cd3ccb8cd11a36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardCapslockSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" +}), 'KeyboardCapslockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardCapslockTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardCapslockTwoTone.js new file mode 100644 index 00000000000000..8bc4de342a94cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardCapslockTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8.41 16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" +}), 'KeyboardCapslockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardHide.js b/packages/material-ui-icons/lib/esm/KeyboardHide.js new file mode 100644 index 00000000000000..452b5babd93959 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardHide.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15 4-4H8l4 4z" +}), 'KeyboardHide'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardHideOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardHideOutlined.js new file mode 100644 index 00000000000000..6b658f34d6a901 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardHideOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17 4-4H8z" +}), 'KeyboardHideOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardHideRounded.js b/packages/material-ui-icons/lib/esm/KeyboardHideRounded.js new file mode 100644 index 00000000000000..48cdad49f58f3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardHideRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm8 7H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm1-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-6.65 14.65 2.79-2.79c.31-.31.09-.85-.35-.85H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.19.19.51.19.7 0z" +}), 'KeyboardHideRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardHideSharp.js b/packages/material-ui-icons/lib/esm/KeyboardHideSharp.js new file mode 100644 index 00000000000000..9c8f92745ee4dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardHideSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H2.01L2 17h20V3zM11 6h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15 4-4H8l4 4z" +}), 'KeyboardHideSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardHideTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardHideTwoTone.js new file mode 100644 index 00000000000000..73c18ceb03ff01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardHideTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 15h16V5H4v10zm13-9h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm0 3h8v2H8v-2zM5 6h2v2H5V6zm0 3h2v2H5V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17 4-4H8l4 4z" +}, "1")], 'KeyboardHideTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardOutlined.js new file mode 100644 index 00000000000000..d7f43d50596042 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7v10H4V7h16m0-2H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z" +}), 'KeyboardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardReturn.js b/packages/material-ui-icons/lib/esm/KeyboardReturn.js new file mode 100644 index 00000000000000..e319bd6f192551 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardReturn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7z" +}), 'KeyboardReturn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardReturnOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardReturnOutlined.js new file mode 100644 index 00000000000000..02fc7453740bc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardReturnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" +}), 'KeyboardReturnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardReturnRounded.js b/packages/material-ui-icons/lib/esm/KeyboardReturnRounded.js new file mode 100644 index 00000000000000..85d6e9ae01d045 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardReturnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8v3H5.83l2.88-2.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L2.71 11.3c-.39.39-.39 1.02 0 1.41L7.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.83 13H20c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'KeyboardReturnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardReturnSharp.js b/packages/material-ui-icons/lib/esm/KeyboardReturnSharp.js new file mode 100644 index 00000000000000..5f264ba9ba7f79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardReturnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" +}), 'KeyboardReturnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardReturnTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardReturnTwoTone.js new file mode 100644 index 00000000000000..490adbf71d4b48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardReturnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" +}), 'KeyboardReturnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardRounded.js b/packages/material-ui-icons/lib/esm/KeyboardRounded.js new file mode 100644 index 00000000000000..f16a1752175524 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm8 7H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm1-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" +}), 'KeyboardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardSharp.js b/packages/material-ui-icons/lib/esm/KeyboardSharp.js new file mode 100644 index 00000000000000..2de674ff67ad10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5H2.01L2 19h20V5zM11 8h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" +}), 'KeyboardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardTab.js b/packages/material-ui-icons/lib/esm/KeyboardTab.js new file mode 100644 index 00000000000000..7360dde37a0a7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardTab.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" +}), 'KeyboardTab'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardTabOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardTabOutlined.js new file mode 100644 index 00000000000000..841bc2ace139c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardTabOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" +}), 'KeyboardTabOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardTabRounded.js b/packages/material-ui-icons/lib/esm/KeyboardTabRounded.js new file mode 100644 index 00000000000000..86a02a5c2b40b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardTabRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.29 8.12 15.17 11H2c-.55 0-1 .45-1 1s.45 1 1 1h13.17l-2.88 2.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L13.7 6.7a.9959.9959 0 0 0-1.41 0c-.38.39-.39 1.03 0 1.42zM20 7v10c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'KeyboardTabRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardTabSharp.js b/packages/material-ui-icons/lib/esm/KeyboardTabSharp.js new file mode 100644 index 00000000000000..f17d6b01a58304 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardTabSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" +}), 'KeyboardTabSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardTabTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardTabTwoTone.js new file mode 100644 index 00000000000000..73ad5cd7ff1b6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardTabTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.59 7.41 15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" +}), 'KeyboardTabTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardTwoTone.js new file mode 100644 index 00000000000000..cd9c7919364246 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17h16V7H4v10zm13-9h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm0 3h8v2H8v-2zM5 8h2v2H5V8zm0 3h2v2H5v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H4V7h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z" +}, "1")], 'KeyboardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardVoice.js b/packages/material-ui-icons/lib/esm/KeyboardVoice.js new file mode 100644 index 00000000000000..b1c1cfffac9ec9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardVoice.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" +}), 'KeyboardVoice'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardVoiceOutlined.js b/packages/material-ui-icons/lib/esm/KeyboardVoiceOutlined.js new file mode 100644 index 00000000000000..1c7e6a3360c5f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardVoiceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" +}), 'KeyboardVoiceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardVoiceRounded.js b/packages/material-ui-icons/lib/esm/KeyboardVoiceRounded.js new file mode 100644 index 00000000000000..84d1f832f0a497 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardVoiceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm6.08-3c-.42 0-.77.3-.83.71-.37 2.61-2.72 4.39-5.25 4.39s-4.88-1.77-5.25-4.39c-.06-.41-.42-.71-.83-.71-.52 0-.92.46-.85.97.46 2.97 2.96 5.3 5.93 5.75V21c0 .55.45 1 1 1s1-.45 1-1v-2.28c2.96-.43 5.47-2.78 5.93-5.75.07-.51-.33-.97-.85-.97z" +}), 'KeyboardVoiceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardVoiceSharp.js b/packages/material-ui-icons/lib/esm/KeyboardVoiceSharp.js new file mode 100644 index 00000000000000..fb0d4b6f588b56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardVoiceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" +}), 'KeyboardVoiceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KeyboardVoiceTwoTone.js b/packages/material-ui-icons/lib/esm/KeyboardVoiceTwoTone.js new file mode 100644 index 00000000000000..e4bebf36dbb967 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KeyboardVoiceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 13.3c.66 0 1.19-.54 1.19-1.2l.01-6.2c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v6.2c0 .66.54 1.2 1.2 1.2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" +}, "1")], 'KeyboardVoiceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KingBed.js b/packages/material-ui-icons/lib/esm/KingBed.js new file mode 100644 index 00000000000000..ddec6dd8512b43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KingBed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5c0-1.1-.9-2-2-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z" +}), 'KingBed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KingBedOutlined.js b/packages/material-ui-icons/lib/esm/KingBedOutlined.js new file mode 100644 index 00000000000000..9ca24b3365f09c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KingBedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-1.1-.9-2-2-2V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5zm-4-2h-5V7h5v3zM6 7h5v3H6V7zm-2 5h16v3H4v-3z" +}), 'KingBedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KingBedRounded.js b/packages/material-ui-icons/lib/esm/KingBedRounded.js new file mode 100644 index 00000000000000..f71569887787f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KingBedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33l.51 1.53c.1.28.36.47.66.47.3 0 .56-.19.66-.47L5.67 17h12.67l.51 1.53c.09.28.35.47.65.47.3 0 .56-.19.66-.47l.51-1.53H22v-5c0-1.1-.9-2-2-2zm-9 0H6V8c0-.55.45-1 1-1h4v3zm7 0h-5V7h4c.55 0 1 .45 1 1v2z" +}), 'KingBedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KingBedSharp.js b/packages/material-ui-icons/lib/esm/KingBedSharp.js new file mode 100644 index 00000000000000..7bb04be7f76dd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KingBedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V5H4v5H2v7h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-7h-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z" +}), 'KingBedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KingBedTwoTone.js b/packages/material-ui-icons/lib/esm/KingBedTwoTone.js new file mode 100644 index 00000000000000..a6537cd73e9082 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KingBedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 12h16v3H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 10V7c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-5c0-1.1-.9-2-2-2zm-7-3h5v3h-5V7zM6 7h5v3H6V7zm14 8H4v-3h16v3z" +}, "1")], 'KingBedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Kitchen.js b/packages/material-ui-icons/lib/esm/Kitchen.js new file mode 100644 index 00000000000000..bfb6af89cb9563 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Kitchen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2.01 6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z" +}), 'Kitchen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitchenOutlined.js b/packages/material-ui-icons/lib/esm/KitchenOutlined.js new file mode 100644 index 00000000000000..80c307091aba10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitchenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 5h2v3H8zm0 7h2v5H8zm10-9.99L6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5z" +}), 'KitchenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitchenRounded.js b/packages/material-ui-icons/lib/esm/KitchenRounded.js new file mode 100644 index 00000000000000..2b6df278c80bea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitchenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2.01 6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM17 20H7c-.55 0-1-.45-1-1v-7.02c0-.55.45-1 1-1h10c.55 0 1 .45 1 1V19c0 .55-.45 1-1 1zm0-11H7c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zM9 5c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm0 7c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1z" +}), 'KitchenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitchenSharp.js b/packages/material-ui-icons/lib/esm/KitchenSharp.js new file mode 100644 index 00000000000000..cc756434b0e429 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitchenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2.01 4 2v20h16V2.01zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8V5zm0 7h2v5H8v-5z" +}), 'KitchenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitchenTwoTone.js b/packages/material-ui-icons/lib/esm/KitchenTwoTone.js new file mode 100644 index 00000000000000..eb378d416a2d93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitchenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 5h2v3H8zm0 7h2v5H8zm-2 8h12v-9.02H6V20zm2-8h2v5H8v-5zM6 9h12V4H6v5zm2-4h2v3H8V5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2.01 6 2c-1.1 0-2 .89-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z" +}, "1")], 'KitchenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Kitesurfing.js b/packages/material-ui-icons/lib/esm/Kitesurfing.js new file mode 100644 index 00000000000000..8fc04a889386b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Kitesurfing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17l-1.55-2.97C6.15 13.3 6 12.64 6 12V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" +}), 'Kitesurfing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitesurfingOutlined.js b/packages/material-ui-icons/lib/esm/KitesurfingOutlined.js new file mode 100644 index 00000000000000..b445af7be699dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitesurfingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17l-1.55-2.97C6.15 13.3 6 12.64 6 12V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" +}), 'KitesurfingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitesurfingRounded.js b/packages/material-ui-icons/lib/esm/KitesurfingRounded.js new file mode 100644 index 00000000000000..293d34823d3bf3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitesurfingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm10.03.97c.29.29.77.29 1.06 0L20.06 1h-2.12l-1.91 1.91c-.29.29-.29.77 0 1.06zM19.15 12c-1.29 0-3.11.53-5.06 1.38L13 12.16c-.38-.42-.92-.66-1.49-.66H9.6V8H11c1.52 0 2.94-.49 4.09-1.32.49-.35.52-1.07.09-1.5-.35-.35-.9-.38-1.3-.09-.82.57-1.81.91-2.88.91H8c-1.1 0-2 .9-2 2v4.04c0 .64.15 1.27.45 1.83L8 16.84c-.53.38-1.03.78-1.49 1.17.68.58 1.55.99 2.49.99 1.2 0 2.27-.66 3-1.5.73.84 1.8 1.5 3 1.5.33 0 .65-.05.96-.14C18.81 16.9 21 14.72 21 13.28c0-1.03-1.01-1.28-1.85-1.28zm-9.32 3.61L9 13.6l2.5-.1.7.77c-.56.28-1.78.96-2.37 1.34zM22 22c0-.55-.45-1-1-1-.87 0-1.73-.24-2.53-.7-.29-.16-.65-.17-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-.8.46-1.66.7-2.53.7-.55 0-1 .45-1 1s.45 1 1 1c1.15 0 2.3-.31 3.33-.94 1.66 1.11 3.78 1.01 5.58.14 1.91 1.05 4.17 1.07 6.09.05.95.5 1.97.75 3 .75.55 0 1-.45 1-1z" +}), 'KitesurfingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitesurfingSharp.js b/packages/material-ui-icons/lib/esm/KitesurfingSharp.js new file mode 100644 index 00000000000000..f27d089881786f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitesurfingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17L6 13V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" +}), 'KitesurfingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/KitesurfingTwoTone.js b/packages/material-ui-icons/lib/esm/KitesurfingTwoTone.js new file mode 100644 index 00000000000000..e22ba90dad16b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/KitesurfingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17l-1.55-2.97C6.15 13.3 6 12.64 6 12V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41C14.68 7.21 12.93 8 11 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" +}), 'KitesurfingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Label.js b/packages/material-ui-icons/lib/esm/Label.js new file mode 100644 index 00000000000000..a6a33f4cc25b71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Label.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16z" +}), 'Label'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelImportant.js b/packages/material-ui-icons/lib/esm/LabelImportant.js new file mode 100644 index 00000000000000..fa3deac1d8a3a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelImportant.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.5 18.99 11 .01c.67 0 1.27-.33 1.63-.84L20.5 12l-4.37-6.16c-.36-.51-.96-.84-1.63-.84l-11 .01L8.34 12 3.5 18.99z" +}), 'LabelImportant'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelImportantOutlined.js b/packages/material-ui-icons/lib/esm/LabelImportantOutlined.js new file mode 100644 index 00000000000000..1b569b968f8b8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelImportantOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z" +}), 'LabelImportantOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelImportantRounded.js b/packages/material-ui-icons/lib/esm/LabelImportantRounded.js new file mode 100644 index 00000000000000..ffa6d4e331419e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelImportantRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.94 18.99H15c.65 0 1.26-.31 1.63-.84l3.95-5.57c.25-.35.25-.81 0-1.16l-3.96-5.58C16.26 5.31 15.65 5 15 5H5.94c-.81 0-1.28.93-.81 1.59L9 12l-3.87 5.41c-.47.66 0 1.58.81 1.58z" +}), 'LabelImportantRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelImportantSharp.js b/packages/material-ui-icons/lib/esm/LabelImportantSharp.js new file mode 100644 index 00000000000000..83d2b454960b1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelImportantSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 18.99h12.04L21 12l-4.97-7H4l5 7-5 6.99z" +}), 'LabelImportantSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelImportantTwoTone.js b/packages/material-ui-icons/lib/esm/LabelImportantTwoTone.js new file mode 100644 index 00000000000000..386fad4df1610b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelImportantTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 7H7.89l3.57 5-3.57 5H15l3.55-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.63 5.84C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16zM15 17H7.89l3.57-5-3.57-5H15l3.55 5L15 17z" +}, "1")], 'LabelImportantTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelOff.js b/packages/material-ui-icons/lib/esm/LabelOff.js new file mode 100644 index 00000000000000..a3562b0430cca4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.25 2.75 17 17L19 21l-2-2H5c-1.1 0-2-.9-2-2V7c0-.55.23-1.05.59-1.41L2 4l1.25-1.25zM22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5H8l11 11 3-4z" +}), 'LabelOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelOffOutlined.js b/packages/material-ui-icons/lib/esm/LabelOffOutlined.js new file mode 100644 index 00000000000000..af02f0e3830f8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 7 3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z" +}), 'LabelOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelOffRounded.js b/packages/material-ui-icons/lib/esm/LabelOffRounded.js new file mode 100644 index 00000000000000..d6824bcbe90d76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.59 12.58c.25-.35.25-.81 0-1.16l-3.96-5.58C17.27 5.33 16.67 5 16 5H8.66l10.7 10.73 2.23-3.15zM2.72 4.72l.87.87C3.23 5.95 3 6.45 3 7v10c0 1.1.9 2 2 2h12l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.14 3.31c-.38-.38-1.01-.39-1.4-.01-.41.38-.41 1.03-.02 1.42z" +}), 'LabelOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelOffSharp.js b/packages/material-ui-icons/lib/esm/LabelOffSharp.js new file mode 100644 index 00000000000000..c9ac0e56e4ea29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 12-4.97-7H8.66l10.7 10.73zM2 4l1 1v14h14l2 2 1.41-1.41L3.44 2.62z" +}), 'LabelOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelOffTwoTone.js b/packages/material-ui-icons/lib/esm/LabelOffTwoTone.js new file mode 100644 index 00000000000000..052e4e385cb2e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 7.03V17h9.97zM16 7h-5.37l7.29 7.29L19.55 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m16 7 3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zm3 3L14.97 17H5V7.03z" +}, "1")], 'LabelOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelOutlined.js b/packages/material-ui-icons/lib/esm/LabelOutlined.js new file mode 100644 index 00000000000000..13a19bf9191a46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z" +}), 'LabelOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelRounded.js b/packages/material-ui-icons/lib/esm/LabelRounded.js new file mode 100644 index 00000000000000..6e9a96af4cf99b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58c.25-.35.25-.81 0-1.16l-3.96-5.58z" +}), 'LabelRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelSharp.js b/packages/material-ui-icons/lib/esm/LabelSharp.js new file mode 100644 index 00000000000000..14dd93b43d4636 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.03 5 3 5.01v13.98l14.03.01L22 12l-4.97-7z" +}), 'LabelSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LabelTwoTone.js b/packages/material-ui-icons/lib/esm/LabelTwoTone.js new file mode 100644 index 00000000000000..cacde380ae6b3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LabelTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 7H5v10h11l3.55-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z" +}, "1")], 'LabelTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Landscape.js b/packages/material-ui-icons/lib/esm/Landscape.js new file mode 100644 index 00000000000000..a2b552c8e65462 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Landscape.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" +}), 'Landscape'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LandscapeOutlined.js b/packages/material-ui-icons/lib/esm/LandscapeOutlined.js new file mode 100644 index 00000000000000..61deaf801a2253 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LandscapeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" +}), 'LandscapeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LandscapeRounded.js b/packages/material-ui-icons/lib/esm/LandscapeRounded.js new file mode 100644 index 00000000000000..8673ee3895388f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LandscapeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.2 7.07 10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z" +}), 'LandscapeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LandscapeSharp.js b/packages/material-ui-icons/lib/esm/LandscapeSharp.js new file mode 100644 index 00000000000000..52cf69c006e938 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LandscapeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" +}), 'LandscapeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LandscapeTwoTone.js b/packages/material-ui-icons/lib/esm/LandscapeTwoTone.js new file mode 100644 index 00000000000000..24f2f48e1a4abb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LandscapeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 16h3.04l-1.52-2.03z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m9.78 11.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" +}, "1")], 'LandscapeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Language.js b/packages/material-ui-icons/lib/esm/Language.js new file mode 100644 index 00000000000000..e0c2ab8ba5ef6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Language.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" +}), 'Language'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LanguageOutlined.js b/packages/material-ui-icons/lib/esm/LanguageOutlined.js new file mode 100644 index 00000000000000..71ff16f11431d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LanguageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" +}), 'LanguageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LanguageRounded.js b/packages/material-ui-icons/lib/esm/LanguageRounded.js new file mode 100644 index 00000000000000..55321a7ab1cff4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LanguageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" +}), 'LanguageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LanguageSharp.js b/packages/material-ui-icons/lib/esm/LanguageSharp.js new file mode 100644 index 00000000000000..3f7907ae85a56a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LanguageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" +}), 'LanguageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LanguageTwoTone.js b/packages/material-ui-icons/lib/esm/LanguageTwoTone.js new file mode 100644 index 00000000000000..0821ef1517ec98 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LanguageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.08 8h2.95c.32-1.25.78-2.45 1.38-3.56-1.84.63-3.37 1.9-4.33 3.56zm2.42 4c0-.68.06-1.34.14-2H4.26c-.16.64-.26 1.31-.26 2s.1 1.36.26 2h3.38c-.08-.66-.14-1.32-.14-2zm-2.42 4c.96 1.66 2.49 2.93 4.33 3.56-.6-1.11-1.06-2.31-1.38-3.56H5.08zM12 4.04c-.83 1.2-1.48 2.53-1.91 3.96h3.82c-.43-1.43-1.08-2.76-1.91-3.96zM18.92 8c-.96-1.65-2.49-2.93-4.33-3.56.6 1.11 1.06 2.31 1.38 3.56h2.95zM12 19.96c.83-1.2 1.48-2.53 1.91-3.96h-3.82c.43 1.43 1.08 2.76 1.91 3.96zm2.59-.4c1.84-.63 3.37-1.91 4.33-3.56h-2.95c-.32 1.25-.78 2.45-1.38 3.56zM19.74 10h-3.38c.08.66.14 1.32.14 2s-.06 1.34-.14 2h3.38c.16-.64.26-1.31.26-2s-.1-1.36-.26-2zM9.66 10c-.09.65-.16 1.32-.16 2s.07 1.34.16 2h4.68c.09-.66.16-1.32.16-2s-.07-1.35-.16-2H9.66z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" +}, "1")], 'LanguageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Laptop.js b/packages/material-ui-icons/lib/esm/Laptop.js new file mode 100644 index 00000000000000..0e30feaf36c377 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Laptop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}), 'Laptop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopChromebook.js b/packages/material-ui-icons/lib/esm/LaptopChromebook.js new file mode 100644 index 00000000000000..2748367d4fa775 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopChromebook.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" +}), 'LaptopChromebook'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopChromebookOutlined.js b/packages/material-ui-icons/lib/esm/LaptopChromebookOutlined.js new file mode 100644 index 00000000000000..b6cc77cfcdf357 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopChromebookOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" +}), 'LaptopChromebookOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopChromebookRounded.js b/packages/material-ui-icons/lib/esm/LaptopChromebookRounded.js new file mode 100644 index 00000000000000..42327e7761bcb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopChromebookRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 18h-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1zm-9.5 0h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm6.5-3H4V6c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v9z" +}), 'LaptopChromebookRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopChromebookSharp.js b/packages/material-ui-icons/lib/esm/LaptopChromebookSharp.js new file mode 100644 index 00000000000000..3b2fe1f6acf933 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopChromebookSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" +}), 'LaptopChromebookSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopChromebookTwoTone.js b/packages/material-ui-icons/lib/esm/LaptopChromebookTwoTone.js new file mode 100644 index 00000000000000..743a25c2212ba4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopChromebookTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 5h16v10H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" +}, "1")], 'LaptopChromebookTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopMac.js b/packages/material-ui-icons/lib/esm/LaptopMac.js new file mode 100644 index 00000000000000..1b3c63ef32abcc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopMac.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LaptopMac'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopMacOutlined.js b/packages/material-ui-icons/lib/esm/LaptopMacOutlined.js new file mode 100644 index 00000000000000..c2c09a7884fb33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopMacOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LaptopMacOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopMacRounded.js b/packages/material-ui-icons/lib/esm/LaptopMacRounded.js new file mode 100644 index 00000000000000..fc2265c9a0cfa0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopMacRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM5 5h14c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1zm7 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LaptopMacRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopMacSharp.js b/packages/material-ui-icons/lib/esm/LaptopMacSharp.js new file mode 100644 index 00000000000000..f835d8f0c2faed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopMacSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 18 1.99-2L22 3H2v13l2 2H0v2h24v-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LaptopMacSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopMacTwoTone.js b/packages/material-ui-icons/lib/esm/LaptopMacTwoTone.js new file mode 100644 index 00000000000000..6d691dd2f9e66e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopMacTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 5h16v11H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'LaptopMacTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopOutlined.js b/packages/material-ui-icons/lib/esm/LaptopOutlined.js new file mode 100644 index 00000000000000..3da0a985a25eb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}), 'LaptopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopRounded.js b/packages/material-ui-icons/lib/esm/LaptopRounded.js new file mode 100644 index 00000000000000..5d82b5389c263e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 6h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z" +}), 'LaptopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopSharp.js b/packages/material-ui-icons/lib/esm/LaptopSharp.js new file mode 100644 index 00000000000000..8a0ff899775128 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 18 2-2V4H2v12l2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}), 'LaptopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopTwoTone.js b/packages/material-ui-icons/lib/esm/LaptopTwoTone.js new file mode 100644 index 00000000000000..af7990ea3de45e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6h16v10H4V6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" +}, "1")], 'LaptopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopWindows.js b/packages/material-ui-icons/lib/esm/LaptopWindows.js new file mode 100644 index 00000000000000..76d90df3e8a06c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopWindows.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" +}), 'LaptopWindows'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopWindowsOutlined.js b/packages/material-ui-icons/lib/esm/LaptopWindowsOutlined.js new file mode 100644 index 00000000000000..f64f75e6f8b88b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopWindowsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" +}), 'LaptopWindowsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopWindowsRounded.js b/packages/material-ui-icons/lib/esm/LaptopWindowsRounded.js new file mode 100644 index 00000000000000..fc82505bdd1509 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopWindowsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 5h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z" +}), 'LaptopWindowsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopWindowsSharp.js b/packages/material-ui-icons/lib/esm/LaptopWindowsSharp.js new file mode 100644 index 00000000000000..32ca621cbb54c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopWindowsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v-1h1.99L22 3H2v14h2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" +}), 'LaptopWindowsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaptopWindowsTwoTone.js b/packages/material-ui-icons/lib/esm/LaptopWindowsTwoTone.js new file mode 100644 index 00000000000000..534f3c447e65a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaptopWindowsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 5h16v10H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" +}, "1")], 'LaptopWindowsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LastPage.js b/packages/material-ui-icons/lib/esm/LastPage.js new file mode 100644 index 00000000000000..62260a39a4d71a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LastPage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z" +}), 'LastPage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LastPageOutlined.js b/packages/material-ui-icons/lib/esm/LastPageOutlined.js new file mode 100644 index 00000000000000..0bb5a8e0446316 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LastPageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" +}), 'LastPageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LastPageRounded.js b/packages/material-ui-icons/lib/esm/LastPageRounded.js new file mode 100644 index 00000000000000..9221e5986474ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LastPageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.29 8.11 10.18 12l-3.89 3.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L7.7 6.7a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41zM17 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1z" +}), 'LastPageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LastPageSharp.js b/packages/material-ui-icons/lib/esm/LastPageSharp.js new file mode 100644 index 00000000000000..b096398fbbbd99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LastPageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" +}), 'LastPageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LastPageTwoTone.js b/packages/material-ui-icons/lib/esm/LastPageTwoTone.js new file mode 100644 index 00000000000000..625527ff249c0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LastPageTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.59 7.41 10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" +}), 'LastPageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Launch.js b/packages/material-ui-icons/lib/esm/Launch.js new file mode 100644 index 00000000000000..3c7d77689a1e84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Launch.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'Launch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaunchOutlined.js b/packages/material-ui-icons/lib/esm/LaunchOutlined.js new file mode 100644 index 00000000000000..13033fda3b6c36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaunchOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'LaunchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaunchRounded.js b/packages/material-ui-icons/lib/esm/LaunchRounded.js new file mode 100644 index 00000000000000..d706974226d974 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaunchRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V3h-6c-.55 0-1 .45-1 1z" +}), 'LaunchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaunchSharp.js b/packages/material-ui-icons/lib/esm/LaunchSharp.js new file mode 100644 index 00000000000000..1b1cbae363070b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaunchSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'LaunchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LaunchTwoTone.js b/packages/material-ui-icons/lib/esm/LaunchTwoTone.js new file mode 100644 index 00000000000000..07aa862033acbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LaunchTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'LaunchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Layers.js b/packages/material-ui-icons/lib/esm/Layers.js new file mode 100644 index 00000000000000..38adcede5e14e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Layers.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.99 18.54-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" +}), 'Layers'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersClear.js b/packages/material-ui-icons/lib/esm/LayersClear.js new file mode 100644 index 00000000000000..0bd1a60e8ecb9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersClear.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.81 14.99 1.19-.92-1.43-1.43-1.19.92 1.43 1.43zm-.45-4.72L21 9l-9-7-2.91 2.27 7.87 7.88 2.4-1.88zM3.27 1 2 2.27l4.22 4.22L3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73 3.27 1z" +}), 'LayersClear'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersClearOutlined.js b/packages/material-ui-icons/lib/esm/LayersClearOutlined.js new file mode 100644 index 00000000000000..b52fc7e3815519 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersClearOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.53 17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54-1.63-1.27-.67.52 1.43 1.43zM3.41.86 2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47 6.26 9l1.39-1.08 5.02 5.02-.67.53z" +}), 'LayersClearOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersClearRounded.js b/packages/material-ui-icons/lib/esm/LayersClearRounded.js new file mode 100644 index 00000000000000..4a68d712fbc4d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersClearRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.99 9.79c.51-.4.51-1.18 0-1.58l-6.76-5.26c-.72-.56-1.73-.56-2.46 0L9.41 4.02l7.88 7.88 2.7-2.11zm0 3.49-.01-.01a.991.991 0 0 0-1.22 0l-.05.04 1.4 1.4c.37-.41.34-1.07-.12-1.43zm1.45 5.6L4.12 1.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.52 3.52-2.22 1.72c-.51.4-.51 1.18 0 1.58l6.76 5.26c.72.56 1.73.56 2.46 0l.87-.68 1.42 1.42-2.92 2.27c-.36.28-.87.28-1.23 0l-6.15-4.78a.991.991 0 0 0-1.22 0c-.51.4-.51 1.17 0 1.57l6.76 5.26c.72.56 1.73.56 2.46 0l3.72-2.89 3.07 3.07c.39.39 1.02.39 1.41 0 .41-.39.41-1.02.02-1.41z" +}), 'LayersClearRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersClearSharp.js b/packages/material-ui-icons/lib/esm/LayersClearSharp.js new file mode 100644 index 00000000000000..172702beee8800 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersClearSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 9-9-7-2.59 2.02 7.87 7.87zm0 5.07-1.63-1.27-.67.52 1.43 1.43zM3.41.86 2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41z" +}), 'LayersClearSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersClearTwoTone.js b/packages/material-ui-icons/lib/esm/LayersClearTwoTone.js new file mode 100644 index 00000000000000..8ec816d4238112 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersClearTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 13.47.67-.53-5.02-5.02L6.26 9zm0-8.94-1.17.91 5.02 5.03L17.74 9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4.53 17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54-1.63-1.27-.67.52 1.43 1.43zM3.41.86 2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47 6.26 9l1.39-1.08 5.02 5.02-.67.53z" +}, "1")], 'LayersClearTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersOutlined.js b/packages/material-ui-icons/lib/esm/LayersOutlined.js new file mode 100644 index 00000000000000..3357b3a9bc8588 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.99 18.54-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z" +}), 'LayersOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersRounded.js b/packages/material-ui-icons/lib/esm/LayersRounded.js new file mode 100644 index 00000000000000..eae761ebe5d86d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.6 18.06c-.36.28-.87.28-1.23 0l-6.15-4.78a.991.991 0 0 0-1.22 0c-.51.4-.51 1.17 0 1.57l6.76 5.26c.72.56 1.73.56 2.46 0l6.76-5.26c.51-.4.51-1.17 0-1.57l-.01-.01a.991.991 0 0 0-1.22 0l-6.15 4.79zm.63-3.02 6.76-5.26c.51-.4.51-1.18 0-1.58l-6.76-5.26c-.72-.56-1.73-.56-2.46 0L4.01 8.21c-.51.4-.51 1.18 0 1.58l6.76 5.26c.72.56 1.74.56 2.46-.01z" +}), 'LayersRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersSharp.js b/packages/material-ui-icons/lib/esm/LayersSharp.js new file mode 100644 index 00000000000000..6c0e42babc619c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.99 18.54-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" +}), 'LayersSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LayersTwoTone.js b/packages/material-ui-icons/lib/esm/LayersTwoTone.js new file mode 100644 index 00000000000000..cf9b4630d8ffac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LayersTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.26 9 12 13.47 17.74 9 12 4.53z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m19.37 12.8-7.38 5.74-7.37-5.73L3 14.07l9 7 9-7zM12 2 3 9l1.63 1.27L12 16l7.36-5.73L21 9l-9-7zm0 11.47L6.26 9 12 4.53 17.74 9 12 13.47z" +}, "1")], 'LayersTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Leaderboard.js b/packages/material-ui-icons/lib/esm/Leaderboard.js new file mode 100644 index 00000000000000..e5aef762229fbb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Leaderboard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 21H2V9h5.5v12zm7.25-18h-5.5v18h5.5V3zM22 11h-5.5v10H22V11z" +}), 'Leaderboard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeaderboardOutlined.js b/packages/material-ui-icons/lib/esm/LeaderboardOutlined.js new file mode 100644 index 00000000000000..de9a046c6895e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeaderboardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11V3H8v6H2v12h20V11h-6zm-6-6h4v14h-4V5zm-6 6h4v8H4v-8zm16 8h-4v-6h4v6z" +}), 'LeaderboardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeaderboardRounded.js b/packages/material-ui-icons/lib/esm/LeaderboardRounded.js new file mode 100644 index 00000000000000..0ff086a7b56e75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeaderboardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 21H3c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm7.25-18h-3.5c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h3.5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM21 11h-3.5c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1H21c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1z" +}), 'LeaderboardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeaderboardSharp.js b/packages/material-ui-icons/lib/esm/LeaderboardSharp.js new file mode 100644 index 00000000000000..e1a864950c760a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeaderboardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 21H2V9h5.5v12zm7.25-18h-5.5v18h5.5V3zM22 11h-5.5v10H22V11z" +}), 'LeaderboardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeaderboardTwoTone.js b/packages/material-ui-icons/lib/esm/LeaderboardTwoTone.js new file mode 100644 index 00000000000000..411d4bc9883bef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeaderboardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 5h4v14h-4V5zm-6 6h4v8H4v-8zm16 8h-4v-6h4v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 11V3H8v6H2v12h20V11h-6zm-6-6h4v14h-4V5zm-6 6h4v8H4v-8zm16 8h-4v-6h4v6z" +}, "1")], 'LeaderboardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakAdd.js b/packages/material-ui-icons/lib/esm/LeakAdd.js new file mode 100644 index 00000000000000..270bcc2053a237 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" +}), 'LeakAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakAddOutlined.js b/packages/material-ui-icons/lib/esm/LeakAddOutlined.js new file mode 100644 index 00000000000000..1375da6ae7b32a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" +}), 'LeakAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakAddRounded.js b/packages/material-ui-icons/lib/esm/LeakAddRounded.js new file mode 100644 index 00000000000000..5d8cca9f563d80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.05 21c.5 0 .94-.37.99-.87.41-4.27 3.81-7.67 8.08-8.08.5-.05.88-.48.88-.99 0-.59-.51-1.06-1.1-1-5.19.52-9.32 4.65-9.84 9.83-.06.59.4 1.11.99 1.11zM18 21h3v-3c-1.66 0-3 1.34-3 3zm-2.91 0c.49 0 .9-.36.98-.85.36-2.08 2-3.72 4.08-4.08.49-.08.85-.49.85-.98 0-.61-.54-1.09-1.14-1-2.96.48-5.29 2.81-5.77 5.77-.1.6.39 1.14 1 1.14zM12.97 3.02c-.5 0-.94.37-.99.87-.41 4.27-3.81 7.67-8.08 8.08-.5.05-.88.48-.88.99 0 .59.51 1.06 1.1 1 5.19-.52 9.32-4.65 9.84-9.83.07-.58-.39-1.11-.99-1.11zm-6.94 0h-3v3c1.66 0 3-1.34 3-3zm2.91 0c-.49 0-.9.36-.98.85-.36 2.08-2 3.72-4.08 4.08-.49.09-.85.49-.85.99 0 .61.54 1.09 1.14 1 2.96-.48 5.29-2.81 5.77-5.77.09-.61-.4-1.15-1-1.15z" +}), 'LeakAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakAddSharp.js b/packages/material-ui-icons/lib/esm/LeakAddSharp.js new file mode 100644 index 00000000000000..75b331f5eb6545 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" +}), 'LeakAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakAddTwoTone.js b/packages/material-ui-icons/lib/esm/LeakAddTwoTone.js new file mode 100644 index 00000000000000..f9cdd472f7c4b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakAddTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 21h3v-3c-1.66 0-3 1.34-3 3zM3 14c6.08 0 11-4.93 11-11h-2c0 4.97-4.03 9-9 9v2zm11 7h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7zM3 10c3.87 0 7-3.13 7-7H8c0 2.76-2.24 5-5 5v2zm7 11h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zM3 3v3c1.66 0 3-1.34 3-3H3z" +}), 'LeakAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakRemove.js b/packages/material-ui-icons/lib/esm/LeakRemove.js new file mode 100644 index 00000000000000..e5226a5f192cde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakRemove.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3zM3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.71 0 5.19-.99 7.11-2.62l2.5 2.5C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3 3 4.27zM14 3h-2c0 1.5-.37 2.91-1.02 4.16l1.46 1.46C13.42 6.98 14 5.06 14 3zm5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.52l1.6 1.6zm-4.56-4.56 1.46 1.46C18.09 12.37 19.5 12 21 12v-2c-2.06 0-3.98.58-5.62 1.56z" +}), 'LeakRemove'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakRemoveOutlined.js b/packages/material-ui-icons/lib/esm/LeakRemoveOutlined.js new file mode 100644 index 00000000000000..041675af018fbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakRemoveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" +}), 'LeakRemoveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakRemoveRounded.js b/packages/material-ui-icons/lib/esm/LeakRemoveRounded.js new file mode 100644 index 00000000000000..2c685e60b9bf15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakRemoveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.12 12.04c.5-.05.88-.48.88-.99 0-.59-.51-1.06-1.1-1-1.5.15-2.9.61-4.16 1.3l1.48 1.48c.9-.41 1.87-.69 2.9-.79zm.88 3.05c0-.61-.54-1.09-1.14-1-.38.06-.75.16-1.11.28l1.62 1.62c.37-.15.63-.49.63-.9zM13.97 4.14c.06-.59-.4-1.11-1-1.11-.5 0-.94.37-.99.87-.1 1.03-.38 2.01-.79 2.91l1.48 1.48c.69-1.26 1.15-2.66 1.3-4.15zm-4.04.02c.1-.6-.39-1.14-1-1.14-.41 0-.75.26-.9.62l1.62 1.62c.13-.35.22-.72.28-1.1zm10.51 14.72L5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.15 2.15c-.59.41-1.26.7-1.99.82-.48.1-.84.5-.84 1 0 .61.54 1.09 1.14 1 1.17-.19 2.23-.68 3.13-1.37L8.73 10c-1.34 1.1-3 1.82-4.81 1.99-.5.05-.88.48-.88.99 0 .59.51 1.06 1.1 1 2.28-.23 4.36-1.15 6.01-2.56l2.48 2.48c-1.4 1.65-2.33 3.72-2.56 6-.06.59.4 1.11 1 1.11.5 0 .94-.37.99-.87.18-1.82.9-3.48 1.99-4.82l1.43 1.43c-.69.9-1.18 1.96-1.37 3.13-.1.6.39 1.14 1 1.14.49 0 .9-.36.98-.85.12-.73.42-1.4.82-1.99l2.13 2.13c.39.39 1.02.39 1.41 0 .38-.41.38-1.04-.01-1.43z" +}), 'LeakRemoveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakRemoveSharp.js b/packages/material-ui-icons/lib/esm/LeakRemoveSharp.js new file mode 100644 index 00000000000000..25fa63fc9d3676 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakRemoveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" +}), 'LeakRemoveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LeakRemoveTwoTone.js b/packages/material-ui-icons/lib/esm/LeakRemoveTwoTone.js new file mode 100644 index 00000000000000..fd3de1cff9b312 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LeakRemoveTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" +}), 'LeakRemoveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LegendToggle.js b/packages/material-ui-icons/lib/esm/LegendToggle.js new file mode 100644 index 00000000000000..f364ed3a9d598b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LegendToggle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" +}), 'LegendToggle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LegendToggleOutlined.js b/packages/material-ui-icons/lib/esm/LegendToggleOutlined.js new file mode 100644 index 00000000000000..eac5d3f16aaa7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LegendToggleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" +}), 'LegendToggleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LegendToggleRounded.js b/packages/material-ui-icons/lib/esm/LegendToggleRounded.js new file mode 100644 index 00000000000000..49c17b5421df99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LegendToggleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 15H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1zm0 2H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-4-6 4.58-3.25c.26-.19.42-.49.42-.81 0-.81-.92-1.29-1.58-.82L15 8.55 10 5 4.48 8.36c-.3.19-.48.51-.48.86 0 .78.85 1.26 1.52.85l4.4-2.68L15 11z" +}), 'LegendToggleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LegendToggleSharp.js b/packages/material-ui-icons/lib/esm/LegendToggleSharp.js new file mode 100644 index 00000000000000..2768ba009893f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LegendToggleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" +}), 'LegendToggleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LegendToggleTwoTone.js b/packages/material-ui-icons/lib/esm/LegendToggleTwoTone.js new file mode 100644 index 00000000000000..5dd1b1d583b1de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LegendToggleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6 5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" +}), 'LegendToggleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Lens.js b/packages/material-ui-icons/lib/esm/Lens.js new file mode 100644 index 00000000000000..737db8d4dc289c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Lens.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'Lens'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensBlur.js b/packages/material-ui-icons/lib/esm/LensBlur.js new file mode 100644 index 00000000000000..f28871957d5a0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensBlur.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'LensBlur'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensBlurOutlined.js b/packages/material-ui-icons/lib/esm/LensBlurOutlined.js new file mode 100644 index 00000000000000..14257f0ff58417 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensBlurOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'LensBlurOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensBlurRounded.js b/packages/material-ui-icons/lib/esm/LensBlurRounded.js new file mode 100644 index 00000000000000..6344c6ba084cb2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensBlurRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'LensBlurRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensBlurSharp.js b/packages/material-ui-icons/lib/esm/LensBlurSharp.js new file mode 100644 index 00000000000000..e1ef4b737441eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensBlurSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'LensBlurSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensBlurTwoTone.js b/packages/material-ui-icons/lib/esm/LensBlurTwoTone.js new file mode 100644 index 00000000000000..115d5abca74dd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensBlurTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'LensBlurTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensOutlined.js b/packages/material-ui-icons/lib/esm/LensOutlined.js new file mode 100644 index 00000000000000..27108e93c8695b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'LensOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensRounded.js b/packages/material-ui-icons/lib/esm/LensRounded.js new file mode 100644 index 00000000000000..3bf3c5624d1fe0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'LensRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensSharp.js b/packages/material-ui-icons/lib/esm/LensSharp.js new file mode 100644 index 00000000000000..b46ed0a013fbc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'LensSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LensTwoTone.js b/packages/material-ui-icons/lib/esm/LensTwoTone.js new file mode 100644 index 00000000000000..6ed8000be5b71c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LensTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'LensTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAdd.js b/packages/material-ui-icons/lib/esm/LibraryAdd.js new file mode 100644 index 00000000000000..4223a906d28899 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" +}), 'LibraryAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddCheck.js b/packages/material-ui-icons/lib/esm/LibraryAddCheck.js new file mode 100644 index 00000000000000..e60a3fd2fd5e53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddCheck.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" +}), 'LibraryAddCheck'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddCheckOutlined.js b/packages/material-ui-icons/lib/esm/LibraryAddCheckOutlined.js new file mode 100644 index 00000000000000..c856e6d1228c3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddCheckOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" +}), 'LibraryAddCheckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddCheckRounded.js b/packages/material-ui-icons/lib/esm/LibraryAddCheckRounded.js new file mode 100644 index 00000000000000..292b43b9d2d2ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddCheckRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.24 11.28L9.69 11.2c-.38-.39-.38-1.01 0-1.4.39-.39 1.02-.39 1.41 0l1.36 1.37 4.42-4.46c.39-.39 1.02-.39 1.41 0 .38.39.38 1.01 0 1.4l-5.13 5.17c-.37.4-1.01.4-1.4 0zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1z" +}), 'LibraryAddCheckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddCheckSharp.js b/packages/material-ui-icons/lib/esm/LibraryAddCheckSharp.js new file mode 100644 index 00000000000000..da8df12c0e8a19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddCheckSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H6v16h16V2zm-9.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v16h16v-2H4V6z" +}), 'LibraryAddCheckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddCheckTwoTone.js b/packages/material-ui-icons/lib/esm/LibraryAddCheckTwoTone.js new file mode 100644 index 00000000000000..464b279c818f09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddCheckTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm2.4-6.91 2.07 2.08L17.6 6 19 7.41 12.47 14 9 10.5l1.4-1.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.53-2L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 20h14v2H4c-1.1 0-2-.9-2-2V6h2v14z" +}, "1")], 'LibraryAddCheckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddOutlined.js b/packages/material-ui-icons/lib/esm/LibraryAddOutlined.js new file mode 100644 index 00000000000000..a36dfb3dc5e97d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z" +}), 'LibraryAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddRounded.js b/packages/material-ui-icons/lib/esm/LibraryAddRounded.js new file mode 100644 index 00000000000000..764a66d12b8a99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'LibraryAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddSharp.js b/packages/material-ui-icons/lib/esm/LibraryAddSharp.js new file mode 100644 index 00000000000000..1dd6118812e62d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" +}), 'LibraryAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryAddTwoTone.js b/packages/material-ui-icons/lib/esm/LibraryAddTwoTone.js new file mode 100644 index 00000000000000..e653a8eea65739 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryAddTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm2-7h3V6h2v3h3v2h-3v3h-2v-3h-3V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z" +}, "1")], 'LibraryAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryBooks.js b/packages/material-ui-icons/lib/esm/LibraryBooks.js new file mode 100644 index 00000000000000..8100209efacdc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryBooks.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z" +}), 'LibraryBooks'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryBooksOutlined.js b/packages/material-ui-icons/lib/esm/LibraryBooksOutlined.js new file mode 100644 index 00000000000000..3ae59a6ae5b7c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryBooksOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z" +}), 'LibraryBooksOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryBooksRounded.js b/packages/material-ui-icons/lib/esm/LibraryBooksRounded.js new file mode 100644 index 00000000000000..82aff0fc2f4a36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryBooksRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-4 4h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm4-8h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'LibraryBooksRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryBooksSharp.js b/packages/material-ui-icons/lib/esm/LibraryBooksSharp.js new file mode 100644 index 00000000000000..dc433506c6f6e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryBooksSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z" +}), 'LibraryBooksSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryBooksTwoTone.js b/packages/material-ui-icons/lib/esm/LibraryBooksTwoTone.js new file mode 100644 index 00000000000000..82c7d64ab1ab53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryBooksTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm2-10h8v2h-8V6zm0 3h8v2h-8V9zm0 3h4v2h-4v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM6 4v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm14 12H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z" +}, "1")], 'LibraryBooksTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryMusic.js b/packages/material-ui-icons/lib/esm/LibraryMusic.js new file mode 100644 index 00000000000000..215474229dde1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryMusic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" +}), 'LibraryMusic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryMusicOutlined.js b/packages/material-ui-icons/lib/esm/LibraryMusicOutlined.js new file mode 100644 index 00000000000000..1fbe08ae23cf1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryMusicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" +}), 'LibraryMusicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryMusicRounded.js b/packages/material-ui-icons/lib/esm/LibraryMusicRounded.js new file mode 100644 index 00000000000000..60a8c2c7e59e73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryMusicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 5h-2v5.37c0 1.27-.9 2.44-2.16 2.6-1.69.23-3.11-1.25-2.8-2.95.2-1.1 1.18-1.95 2.3-2.02.63-.04 1.2.16 1.66.51V6c0-.55.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1z" +}), 'LibraryMusicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryMusicSharp.js b/packages/material-ui-icons/lib/esm/LibraryMusicSharp.js new file mode 100644 index 00000000000000..43bd1ff8c79431 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryMusicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H6v16h16V2zm-4 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v16h16v-2H4V6z" +}), 'LibraryMusicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LibraryMusicTwoTone.js b/packages/material-ui-icons/lib/esm/LibraryMusicTwoTone.js new file mode 100644 index 00000000000000..c18780067c3741 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LibraryMusicTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm4.5-6c.57 0 1.08.19 1.5.51V5h4v2h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" +}, "1")], 'LibraryMusicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Light.js b/packages/material-ui-icons/lib/esm/Light.js new file mode 100644 index 00000000000000..f14a689ed886ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Light.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.06V3h-2v3.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" +}), 'Light'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightMode.js b/packages/material-ui-icons/lib/esm/LightMode.js new file mode 100644 index 00000000000000..3b73a9990c03a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightMode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" +}), 'LightMode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightModeOutlined.js b/packages/material-ui-icons/lib/esm/LightModeOutlined.js new file mode 100644 index 00000000000000..69297229ac4e79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightModeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 9c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" +}), 'LightModeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightModeRounded.js b/packages/material-ui-icons/lib/esm/LightModeRounded.js new file mode 100644 index 00000000000000..cebfc8aeeded1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightModeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" +}), 'LightModeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightModeSharp.js b/packages/material-ui-icons/lib/esm/LightModeSharp.js new file mode 100644 index 00000000000000..3fd9a8d2e03498 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightModeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1-6v4h2V1h-2zm0 18v4h2v-4h-2zm12-8h-4v2h4v-2zM5 11H1v2h4v-2zm11.24 6.66 2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zM3.87 5.28l2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zm2.47 10.96-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41zM18.72 3.87l-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41z" +}), 'LightModeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightModeTwoTone.js b/packages/material-ui-icons/lib/esm/LightModeTwoTone.js new file mode 100644 index 00000000000000..ff0045bd0ab895 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightModeTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 9c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z" +}, "1")], 'LightModeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightOutlined.js b/packages/material-ui-icons/lib/esm/LightOutlined.js new file mode 100644 index 00000000000000..411b4ae4236d71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.06V3h-2v3.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 19c-1.1 0-2-.9-2-2h4c0 1.1-.9 2-2 2zm0-4H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" +}), 'LightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightRounded.js b/packages/material-ui-icons/lib/esm/LightRounded.js new file mode 100644 index 00000000000000..14bc0c81fba100 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.06V4c0-.55-.45-1-1-1s-1 .45-1 1v2.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" +}), 'LightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightSharp.js b/packages/material-ui-icons/lib/esm/LightSharp.js new file mode 100644 index 00000000000000..07b0897d6e19d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 6.06V3h-2v3.06C5.87 6.63 2.03 11.51 3.22 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h4.78A9.0056 9.0056 0 0 0 13 6.06zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" +}), 'LightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightTwoTone.js b/packages/material-ui-icons/lib/esm/LightTwoTone.js new file mode 100644 index 00000000000000..bb52d11cfb15f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 17c0 1.1.9 2 2 2s2-.9 2-2h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 6.06V3h-2v3.06c-4.5.5-8 4.31-8 8.93C3 16.1 3.9 17 5.01 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h2.99c1.11 0 2.01-.9 2.01-2.01 0-4.62-3.5-8.43-8-8.93zM12 19c-1.1 0-2-.9-2-2h4c0 1.1-.9 2-2 2zm0-4H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" +}, "1")], 'LightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Lightbulb.js b/packages/material-ui-icons/lib/esm/Lightbulb.js new file mode 100644 index 00000000000000..c02082dab7d0ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Lightbulb.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7z" +}), 'Lightbulb'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightbulbOutlined.js b/packages/material-ui-icons/lib/esm/LightbulbOutlined.js new file mode 100644 index 00000000000000..dcd164947e8a2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightbulbOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z" +}), 'LightbulbOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightbulbRounded.js b/packages/material-ui-icons/lib/esm/LightbulbRounded.js new file mode 100644 index 00000000000000..66c698a346b81f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightbulbRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm-3-3h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm3-17C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2z" +}), 'LightbulbRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightbulbSharp.js b/packages/material-ui-icons/lib/esm/LightbulbSharp.js new file mode 100644 index 00000000000000..bbde5568ad48fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightbulbSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm-4-5h8v2H8zm4-15C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2z" +}), 'LightbulbSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LightbulbTwoTone.js b/packages/material-ui-icons/lib/esm/LightbulbTwoTone.js new file mode 100644 index 00000000000000..f0638f94125846 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LightbulbTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4C8.97 4 6.5 6.47 6.5 9.5c0 2.47 1.49 3.89 2.35 4.5h6.3c.86-.61 2.35-2.03 2.35-4.5C17.5 6.47 15.03 4 12 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm-4-5h8v2H8zm4-15C7.86 2 4.5 5.36 4.5 9.5c0 3.82 2.66 5.86 3.77 6.5h7.46c1.11-.64 3.77-2.68 3.77-6.5C19.5 5.36 16.14 2 12 2zm3.15 12h-6.3c-.86-.61-2.35-2.03-2.35-4.5C6.5 6.47 8.97 4 12 4s5.5 2.47 5.5 5.5c0 2.47-1.49 3.89-2.35 4.5z" +}, "1")], 'LightbulbTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineStyle.js b/packages/material-ui-icons/lib/esm/LineStyle.js new file mode 100644 index 00000000000000..6b909f46461540 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineStyle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" +}), 'LineStyle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineStyleOutlined.js b/packages/material-ui-icons/lib/esm/LineStyleOutlined.js new file mode 100644 index 00000000000000..74249cf2da4c70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineStyleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" +}), 'LineStyleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineStyleRounded.js b/packages/material-ui-icons/lib/esm/LineStyleRounded.js new file mode 100644 index 00000000000000..0206fcf043e338 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineStyleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 16h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6.5 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm6.5 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zM4 20c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4 12h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm10 0h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zM3 5v2c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'LineStyleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineStyleSharp.js b/packages/material-ui-icons/lib/esm/LineStyleSharp.js new file mode 100644 index 00000000000000..4461605e6d09e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineStyleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" +}), 'LineStyleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineStyleTwoTone.js b/packages/material-ui-icons/lib/esm/LineStyleTwoTone.js new file mode 100644 index 00000000000000..aa03e5ce002434 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineStyleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" +}), 'LineStyleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineWeight.js b/packages/material-ui-icons/lib/esm/LineWeight.js new file mode 100644 index 00000000000000..37f9e23d815253 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineWeight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" +}), 'LineWeight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineWeightOutlined.js b/packages/material-ui-icons/lib/esm/LineWeightOutlined.js new file mode 100644 index 00000000000000..28cd3307d43c92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineWeightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" +}), 'LineWeightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineWeightRounded.js b/packages/material-ui-icons/lib/esm/LineWeightRounded.js new file mode 100644 index 00000000000000..f04cc4946bd7b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineWeightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0-6H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm.5 15h-17c-.28 0-.5.22-.5.5s.22.5.5.5h17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z" +}), 'LineWeightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineWeightSharp.js b/packages/material-ui-icons/lib/esm/LineWeightSharp.js new file mode 100644 index 00000000000000..447d0ec2e8d6e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineWeightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" +}), 'LineWeightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LineWeightTwoTone.js b/packages/material-ui-icons/lib/esm/LineWeightTwoTone.js new file mode 100644 index 00000000000000..9a2b492111adc9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LineWeightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" +}), 'LineWeightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinearScale.js b/packages/material-ui-icons/lib/esm/LinearScale.js new file mode 100644 index 00000000000000..f55719aa7dbb49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinearScale.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" +}), 'LinearScale'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinearScaleOutlined.js b/packages/material-ui-icons/lib/esm/LinearScaleOutlined.js new file mode 100644 index 00000000000000..d7ad905d4145a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinearScaleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" +}), 'LinearScaleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinearScaleRounded.js b/packages/material-ui-icons/lib/esm/LinearScaleRounded.js new file mode 100644 index 00000000000000..9c43f0fdf7e710 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinearScaleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7c-2.41 0-4.43 1.72-4.9 4H6.79c-.39-.88-1.27-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.02 0 1.9-.62 2.29-1.5h5.31c.46 2.28 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}), 'LinearScaleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinearScaleSharp.js b/packages/material-ui-icons/lib/esm/LinearScaleSharp.js new file mode 100644 index 00000000000000..35cb3d97b156d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinearScaleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" +}), 'LinearScaleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinearScaleTwoTone.js b/packages/material-ui-icons/lib/esm/LinearScaleTwoTone.js new file mode 100644 index 00000000000000..72b382bde9abba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinearScaleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z" +}), 'LinearScaleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Link.js b/packages/material-ui-icons/lib/esm/Link.js new file mode 100644 index 00000000000000..c58e2f5270ec13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Link.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" +}), 'Link'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkOff.js b/packages/material-ui-icons/lib/esm/LinkOff.js new file mode 100644 index 00000000000000..b8091439385209 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z" +}), 'LinkOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkOffOutlined.js b/packages/material-ui-icons/lib/esm/LinkOffOutlined.js new file mode 100644 index 00000000000000..a7956e7abbdb56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.39 11 16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" +}), 'LinkOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkOffRounded.js b/packages/material-ui-icons/lib/esm/LinkOffRounded.js new file mode 100644 index 00000000000000..e859e9d4a13265 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9h2.87c1.46 0 2.8.98 3.08 2.42.31 1.64-.74 3.11-2.22 3.48l1.53 1.53c1.77-.91 2.95-2.82 2.7-5.01C21.68 8.86 19.37 7 16.79 7H14c-.55 0-1 .45-1 1s.45 1 1 1zM3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.64 2.64c-1.77.91-2.95 2.82-2.7 5.01C2.32 15.14 4.63 17 7.21 17H10c.55 0 1-.45 1-1s-.45-1-1-1H7.13c-1.46 0-2.8-.98-3.08-2.42-.31-1.64.75-3.11 2.22-3.48l2.12 2.12c-.23.19-.39.46-.39.78 0 .55.45 1 1 1h1.17l8.9 8.9c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51zM14 11l1.71 1.71c.18-.18.29-.43.29-.71 0-.55-.45-1-1-1h-1z" +}), 'LinkOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkOffSharp.js b/packages/material-ui-icons/lib/esm/LinkOffSharp.js new file mode 100644 index 00000000000000..8cdc961993cf7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.39 11 16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" +}), 'LinkOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkOffTwoTone.js b/packages/material-ui-icons/lib/esm/LinkOffTwoTone.js new file mode 100644 index 00000000000000..69967c0e283477 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.39 11 16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" +}), 'LinkOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkOutlined.js b/packages/material-ui-icons/lib/esm/LinkOutlined.js new file mode 100644 index 00000000000000..9b4a1264123a26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z" +}), 'LinkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkRounded.js b/packages/material-ui-icons/lib/esm/LinkRounded.js new file mode 100644 index 00000000000000..f6bb0776e627fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.65 0 3 1.35 3 3s-1.35 3-3 3h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-9 5c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1zm2 3H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h3c.55 0 1-.45 1-1s-.45-1-1-1H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h3c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'LinkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkSharp.js b/packages/material-ui-icons/lib/esm/LinkSharp.js new file mode 100644 index 00000000000000..93f530dc735a6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8zm9-4h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z" +}), 'LinkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkTwoTone.js b/packages/material-ui-icons/lib/esm/LinkTwoTone.js new file mode 100644 index 00000000000000..f68c459b283f64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkTwoTone.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z", + opacity: ".87" +}), 'LinkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkedCamera.js b/packages/material-ui-icons/lib/esm/LinkedCamera.js new file mode 100644 index 00000000000000..24ce93d7f4a4d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkedCamera.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "14", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 3.33c2.58 0 4.67 2.09 4.67 4.67H22c0-3.31-2.69-6-6-6v1.33M16 6c1.11 0 2 .89 2 2h1.33c0-1.84-1.49-3.33-3.33-3.33V6" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 9c0-1.11-.89-2-2-2V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-5zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "2")], 'LinkedCamera'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkedCameraOutlined.js b/packages/material-ui-icons/lib/esm/LinkedCameraOutlined.js new file mode 100644 index 00000000000000..26da07cad084a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkedCameraOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2zm.67-1.01H22C21.99 4.68 19.31 2 16 2v1.33c2.58 0 4.66 2.08 4.67 4.66zm-2.67 0h1.33c-.01-1.84-1.49-3.32-3.33-3.32V6c1.11 0 1.99.89 2 1.99zM7 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.34 3 3z" +}), 'LinkedCameraOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkedCameraRounded.js b/packages/material-ui-icons/lib/esm/LinkedCameraRounded.js new file mode 100644 index 00000000000000..c4f504d1b1f989 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkedCameraRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "13", + r: "2.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.6 2.37c2.1.27 3.77 1.93 4.03 4.03.04.34.32.6.66.6.39 0 .71-.34.66-.73-.33-2.72-2.5-4.89-5.22-5.22-.39-.05-.73.27-.73.66 0 .34.26.62.6.66zm2.63 3.82a3.338 3.338 0 0 0-2.42-2.42c-.41-.1-.81.22-.81.65 0 .29.19.57.48.64.72.18 1.29.74 1.46 1.46.07.29.34.48.64.48.43 0 .75-.4.65-.81z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 8c0-1.1-.9-2-2-2V4c0-.55-.45-1-1-1H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2h-3zm-5 9.5c-2.48 0-4.5-2.02-4.5-4.5S9.52 8.5 12 8.5s4.5 2.02 4.5 4.5-2.02 4.5-4.5 4.5z" +}, "2")], 'LinkedCameraRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkedCameraSharp.js b/packages/material-ui-icons/lib/esm/LinkedCameraSharp.js new file mode 100644 index 00000000000000..1f87d2232a6614 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkedCameraSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "14", + r: "3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 8h1.33c0-1.84-1.49-3.33-3.33-3.33V6c1.11 0 2 .89 2 2zm2.67 0H22c0-3.31-2.69-6-6-6v1.33c2.58 0 4.67 2.09 4.67 4.67zM15 7V4H9L7.17 6H2v16h20V9h-5c0-1.1-.9-2-2-2zm-3 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'LinkedCameraSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkedCameraTwoTone.js b/packages/material-ui-icons/lib/esm/LinkedCameraTwoTone.js new file mode 100644 index 00000000000000..6ae56d6f8fac60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkedCameraTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 20H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2v11zM16 2v1.33c2.58 0 4.66 2.09 4.67 4.66H22C21.99 4.68 19.31 2 16 2zm0 2.67V6c1.11 0 1.99.89 2 1.99h1.33c-.01-1.84-1.49-3.32-3.33-3.32z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.98 10.01c-.13-.09-.26-.18-.39-.26.14.08.27.17.39.26zM17 9c0-.37-.11-.71-.28-1.01-.18-.3-.43-.55-.73-.72C15.7 7.1 15.36 7 15 7V6H9.88L8.05 8H4v12h16V9h-3zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}, "2")], 'LinkedCameraTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LinkedIn.js b/packages/material-ui-icons/lib/esm/LinkedIn.js new file mode 100644 index 00000000000000..ea5cbac4377a1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LinkedIn.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z" +}), 'LinkedIn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Liquor.js b/packages/material-ui-icons/lib/esm/Liquor.js new file mode 100644 index 00000000000000..383131a564ef04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Liquor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm15.63.54-.95-.32c-.4-.13-.68-.51-.68-.94V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.28.81-.68.95l-.95.32c-.82.27-1.37 1.03-1.37 1.89V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.37-1.9zM16 4h1v1h-1V4zm-3 6.44.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12h-7v-1.56zM20 20h-7v-2h7v2z" +}), 'Liquor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiquorOutlined.js b/packages/material-ui-icons/lib/esm/LiquorOutlined.js new file mode 100644 index 00000000000000..3da8c659cd45a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiquorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm0 5h2v1c0 .55-.45 1-1 1s-1-.45-1-1v-1zm15.64-4.46-.96-.32c-.41-.14-.68-.52-.68-.95V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.27.81-.68.95l-.96.32c-.81.28-1.36 1.04-1.36 1.9V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.36-1.9zM16 4h1v1h-1V4zm4 16h-7v-2h7v2zm0-4h-7v-2h7v2zm0-4h-7v-1.56l.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12z" +}), 'LiquorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiquorRounded.js b/packages/material-ui-icons/lib/esm/LiquorRounded.js new file mode 100644 index 00000000000000..5df026d08e63e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiquorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14c0 1.3.84 2.4 2 2.82V20H4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H7v-3.18C8.16 16.4 9 15.3 9 14V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v7zm2-6h2v3H5V8zm15.64.54-.96-.32c-.41-.14-.68-.52-.68-.95V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.27.81-.68.95l-.96.32c-.81.28-1.36 1.04-1.36 1.9V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.36-1.9zM16 4h1v1h-1V4zm-3 6.44.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12h-7v-1.56zM20 20h-7v-2h7v2z" +}), 'LiquorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiquorSharp.js b/packages/material-ui-icons/lib/esm/LiquorSharp.js new file mode 100644 index 00000000000000..529c4c771f1aa5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiquorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm17 1-3-1.01V2h-5v6l-3 1.01V22h11V9zm-6-5h1v1h-1V4zm-3 6.44 3-.98V7h1v2.46l3 .98V12h-7v-1.56zM20 20h-7v-2h7v2z" +}), 'LiquorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiquorTwoTone.js b/packages/material-ui-icons/lib/esm/LiquorTwoTone.js new file mode 100644 index 00000000000000..5052836367e57b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiquorTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 4h1v1h-1zM6 15c.55 0 1-.45 1-1v-1H5v1c0 .55.45 1 1 1zm7-1h7v2h-7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm0 5h2v1c0 .55-.45 1-1 1s-1-.45-1-1v-1zm15.64-4.46-.96-.32c-.41-.14-.68-.52-.68-.95V3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4.28c0 .43-.27.81-.68.95l-.96.32c-.81.28-1.36 1.04-1.36 1.9V20c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2v-9.56c0-.86-.55-1.62-1.36-1.9zM16 4h1v1h-1V4zm4 16h-7v-2h7v2zm0-4h-7v-2h7v2zm0-4h-7v-1.56l.95-.32C15.18 9.72 16 8.57 16 7.28V7h1v.28c0 1.29.82 2.44 2.05 2.85l.95.31V12z" +}, "1")], 'LiquorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/List.js b/packages/material-ui-icons/lib/esm/List.js new file mode 100644 index 00000000000000..4d1f7cfa9d8436 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/List.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" +}), 'List'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListAlt.js b/packages/material-ui-icons/lib/esm/ListAlt.js new file mode 100644 index 00000000000000..d45b87efb541f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m1.1-2H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM11 7h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7z" +}), 'ListAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListAltOutlined.js b/packages/material-ui-icons/lib/esm/ListAltOutlined.js new file mode 100644 index 00000000000000..52d85d608741b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z" +}), 'ListAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListAltRounded.js b/packages/material-ui-icons/lib/esm/ListAltRounded.js new file mode 100644 index 00000000000000..e01594c8ce6300 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 9h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20 3H4c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 16H5V5h14v14z" +}), 'ListAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListAltSharp.js b/packages/material-ui-icons/lib/esm/ListAltSharp.js new file mode 100644 index 00000000000000..4d5136c1e0f227 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM3 3v18h18V3H3zm16 16H5V5h14v14z" +}), 'ListAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListAltTwoTone.js b/packages/material-ui-icons/lib/esm/ListAltTwoTone.js new file mode 100644 index 00000000000000..6edb9fab81a446 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm6-12h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2zm0 4h2v2H7v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z" +}, "1")], 'ListAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListOutlined.js b/packages/material-ui-icons/lib/esm/ListOutlined.js new file mode 100644 index 00000000000000..533350f9e657ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" +}), 'ListOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListRounded.js b/packages/material-ui-icons/lib/esm/ListRounded.js new file mode 100644 index 00000000000000..bf572b70daad83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm-3 5c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z" +}), 'ListRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListSharp.js b/packages/material-ui-icons/lib/esm/ListSharp.js new file mode 100644 index 00000000000000..76c919cc230399 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" +}), 'ListSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ListTwoTone.js b/packages/material-ui-icons/lib/esm/ListTwoTone.js new file mode 100644 index 00000000000000..2d1212bf5a34d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ListTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" +}), 'ListTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveHelp.js b/packages/material-ui-icons/lib/esm/LiveHelp.js new file mode 100644 index 00000000000000..34808d2294d20f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveHelp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" +}), 'LiveHelp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveHelpOutlined.js b/packages/material-ui-icons/lib/esm/LiveHelpOutlined.js new file mode 100644 index 00000000000000..256d0ffd5b15a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveHelpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z" +}), 'LiveHelpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveHelpRounded.js b/packages/material-ui-icons/lib/esm/LiveHelpRounded.js new file mode 100644 index 00000000000000..65db2f2c514a03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveHelpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75-.9.92c-.58.59-.99 1.1-1.12 2.06-.06.43-.41.76-.85.76h-.31c-.52 0-.92-.46-.85-.98.11-.91.53-1.72 1.14-2.34l1.24-1.26c.36-.36.58-.86.58-1.41 0-1.1-.9-2-2-2-.87 0-1.62.57-1.89 1.35-.13.37-.44.64-.83.64h-.3c-.58 0-.98-.56-.82-1.12C8.65 5.21 10.18 4 12 4c2.21 0 4 1.79 4 4 0 .88-.36 1.68-.93 2.25z" +}), 'LiveHelpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveHelpSharp.js b/packages/material-ui-icons/lib/esm/LiveHelpSharp.js new file mode 100644 index 00000000000000..b026426d0f5de4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveHelpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3v18h6l3 3 3-3h6V2zm-8 16h-2v-2h2v2zm2.07-7.75-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" +}), 'LiveHelpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveHelpTwoTone.js b/packages/material-ui-icons/lib/esm/LiveHelpTwoTone.js new file mode 100644 index 00000000000000..94949770535d48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveHelpTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 18h4.83l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14zm8-1h-2v-2h2v2zM12 5c2.21 0 4 1.79 4 4 0 2.5-3 2.75-3 5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4zm-2 14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z" +}, "1")], 'LiveHelpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveTv.js b/packages/material-ui-icons/lib/esm/LiveTv.js new file mode 100644 index 00000000000000..82bb01cdecb1f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveTv.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6h-7.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm0 14H3V8h18v12zM9 10v8l7-4z" +}), 'LiveTv'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveTvOutlined.js b/packages/material-ui-icons/lib/esm/LiveTvOutlined.js new file mode 100644 index 00000000000000..9e0e9a408d91d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveTvOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z" +}), 'LiveTvOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveTvRounded.js b/packages/material-ui-icons/lib/esm/LiveTvRounded.js new file mode 100644 index 00000000000000..1057d5a2f224b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveTvRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.5 17.15 3.98-2.28c.67-.38.67-1.35 0-1.74l-3.98-2.28c-.67-.38-1.5.11-1.5.87v4.55c0 .77.83 1.26 1.5.88zM21 6h-7.59l2.94-2.94c.2-.2.2-.51 0-.71s-.51-.2-.71 0L12 5.99 8.36 2.35c-.2-.2-.51-.2-.71 0s-.2.51 0 .71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'LiveTvRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveTvSharp.js b/packages/material-ui-icons/lib/esm/LiveTvSharp.js new file mode 100644 index 00000000000000..90cefb2eb400ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveTvSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 6h-9.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H1v16h22V6zm-2 14H3V8h18v12zM9 10v8l7-4-7-4z" +}), 'LiveTvSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LiveTvTwoTone.js b/packages/material-ui-icons/lib/esm/LiveTvTwoTone.js new file mode 100644 index 00000000000000..b323ff5d6406b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LiveTvTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 20h18V8H3v12zm6-10 7 4-7 4v-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z" +}, "1")], 'LiveTvTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Living.js b/packages/material-ui-icons/lib/esm/Living.js new file mode 100644 index 00000000000000..fb412c54734829 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Living.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 11.5c-.55 0-1 .45-1 1v2h-7v-2c0-.55-.45-1-1-1s-1 .45-1 1V16c0 .28.22.5.5.5h10c.28 0 .5-.22.5-.5v-3.5c0-.55-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 12.5v.5h4v-.5c0-1.3.99-2.35 2.25-2.47V9c0-.83-.67-1.5-1.5-1.5h-5.5c-.83 0-1.5.67-1.5 1.5v1.03C9.01 10.15 10 11.2 10 12.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 14c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-3.5c0-.92.51-1.72 1.25-2.15V9c0-1.66 1.34-3 3-3h5.5c1.66 0 3 1.34 3 3v1.35c.74.43 1.25 1.23 1.25 2.15V16z" +}, "2")], 'Living'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LivingOutlined.js b/packages/material-ui-icons/lib/esm/LivingOutlined.js new file mode 100644 index 00000000000000..e1a0be1a0cb1ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LivingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.75 10.35V9c0-1.66-1.34-3-3-3h-5.5c-1.66 0-3 1.34-3 3v1.35C5.51 10.78 5 11.58 5 12.5V16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-3.5c0-.92-.51-1.72-1.25-2.15zM9.25 7.5h5.5c.83 0 1.5.67 1.5 1.5v1.03C14.99 10.15 14 11.2 14 12.5v.5h-4v-.5c0-1.3-.99-2.35-2.25-2.47V9c0-.83.67-1.5 1.5-1.5zM17.5 16c0 .28-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5v-3.5c0-.55.45-1 1-1s1 .45 1 1v2h7v-2c0-.55.45-1 1-1s1 .45 1 1V16zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'LivingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LivingRounded.js b/packages/material-ui-icons/lib/esm/LivingRounded.js new file mode 100644 index 00000000000000..e36e6aff4ba62f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LivingRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.5 11.5c-.55 0-1 .45-1 1v2h-7v-2c0-.55-.45-1-1-1s-1 .45-1 1V16c0 .28.22.5.5.5h10c.28 0 .5-.22.5-.5v-3.5c0-.55-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 12.5v.5h4v-.5c0-1.3.99-2.35 2.25-2.47V9c0-.83-.67-1.5-1.5-1.5h-5.5c-.83 0-1.5.67-1.5 1.5v1.03C9.01 10.15 10 11.2 10 12.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 14c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-3.5c0-.92.51-1.72 1.25-2.15V9c0-1.66 1.34-3 3-3h5.5c1.66 0 3 1.34 3 3v1.35c.74.43 1.25 1.23 1.25 2.15V16z" +}, "2")], 'LivingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LivingSharp.js b/packages/material-ui-icons/lib/esm/LivingSharp.js new file mode 100644 index 00000000000000..b1fa900c3945e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LivingSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 12v2.5h-7V12h-2v4.5h11V12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 10v3h4v-3l2.25-.01V7.5h-8.5v2.49z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zm-3 7.99V18H5v-8l1.25-.01V6h11.5v3.99H19z" +}, "2")], 'LivingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LivingTwoTone.js b/packages/material-ui-icons/lib/esm/LivingTwoTone.js new file mode 100644 index 00000000000000..13c9c3b655fdb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LivingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zm1-7.5c0-.92.51-1.72 1.25-2.15V9c0-1.66 1.34-3 3-3h5.5c1.66 0 3 1.34 3 3v1.35c.74.43 1.25 1.23 1.25 2.15V16c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2v-3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM7 18h10c1.1 0 2-.9 2-2v-3.5c0-.92-.51-1.72-1.25-2.15V9c0-1.66-1.34-3-3-3h-5.5c-1.66 0-3 1.34-3 3v1.35C5.51 10.78 5 11.58 5 12.5V16c0 1.1.9 2 2 2zm.75-9c0-.83.67-1.5 1.5-1.5h5.5c.83 0 1.5.67 1.5 1.5v1.03C14.99 10.15 14 11.2 14 12.5v.5h-4v-.5c0-1.3-.99-2.35-2.25-2.47V9zM6.5 12.5c0-.55.45-1 1-1s1 .45 1 1v2h7v-2c0-.55.45-1 1-1s1 .45 1 1V16c0 .28-.22.5-.5.5H7c-.28 0-.5-.22-.5-.5v-3.5z" +}, "1")], 'LivingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalActivity.js b/packages/material-ui-icons/lib/esm/LocalActivity.js new file mode 100644 index 00000000000000..78da5cfde0c976 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalActivity.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" +}), 'LocalActivity'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalActivityOutlined.js b/packages/material-ui-icons/lib/esm/LocalActivityOutlined.js new file mode 100644 index 00000000000000..6ecd81ec507bab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalActivityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" +}), 'LocalActivityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalActivityRounded.js b/packages/material-ui-icons/lib/esm/LocalActivityRounded.js new file mode 100644 index 00000000000000..db5049b7dddc78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalActivityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-.76.43-1.42 1.06-1.76.6-.33.94-1.01.94-1.7V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 1.99v2.55c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7V18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76zm-5.5 4.1L12 14.5l-2.5 1.61c-.38.24-.87-.11-.75-.55l.75-2.88-2.3-1.88c-.35-.29-.17-.86.29-.89l2.96-.17 1.08-2.75c.17-.42.77-.42.93 0l1.08 2.76 2.96.17c.45.03.64.6.29.89l-2.3 1.88.76 2.86c.12.45-.37.8-.75.55z" +}), 'LocalActivityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalActivitySharp.js b/packages/material-ui-icons/lib/esm/LocalActivitySharp.js new file mode 100644 index 00000000000000..1597b9b28186b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalActivitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" +}), 'LocalActivitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalActivityTwoTone.js b/packages/material-ui-icons/lib/esm/LocalActivityTwoTone.js new file mode 100644 index 00000000000000..cce8da34e4d97b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalActivityTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" +}, "1")], 'LocalActivityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAirport.js b/packages/material-ui-icons/lib/esm/LocalAirport.js new file mode 100644 index 00000000000000..7bdde72df5a617 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAirport.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'LocalAirport'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAirportOutlined.js b/packages/material-ui-icons/lib/esm/LocalAirportOutlined.js new file mode 100644 index 00000000000000..e75b1a157081a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAirportOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'LocalAirportOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAirportRounded.js b/packages/material-ui-icons/lib/esm/LocalAirportRounded.js new file mode 100644 index 00000000000000..b3d56351d87c3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAirportRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.48 13.7 13.5 9V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9l-7.98 4.7c-.32.18-.52.53-.52.9 0 .7.67 1.2 1.34 1.01l7.16-2.1V19l-2.26 1.35c-.15.09-.24.26-.24.43v.58c0 .33.31.57.62.49l2.92-.73L12 21l.38.09.42.11 1.9.48.67.17c.32.08.62-.16.62-.49v-.58c0-.18-.09-.34-.24-.43L13.5 19v-5.5l7.16 2.1c.67.2 1.34-.3 1.34-1 0-.37-.2-.72-.52-.9z" +}), 'LocalAirportRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAirportSharp.js b/packages/material-ui-icons/lib/esm/LocalAirportSharp.js new file mode 100644 index 00000000000000..30d589d3882501 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAirportSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'LocalAirportSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAirportTwoTone.js b/packages/material-ui-icons/lib/esm/LocalAirportTwoTone.js new file mode 100644 index 00000000000000..1ef06a7d759571 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAirportTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" +}), 'LocalAirportTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAtm.js b/packages/material-ui-icons/lib/esm/LocalAtm.js new file mode 100644 index 00000000000000..04adc845bed547 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAtm.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" +}), 'LocalAtm'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAtmOutlined.js b/packages/material-ui-icons/lib/esm/LocalAtmOutlined.js new file mode 100644 index 00000000000000..1b5a4167da3e01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAtmOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" +}), 'LocalAtmOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAtmRounded.js b/packages/material-ui-icons/lib/esm/LocalAtmRounded.js new file mode 100644 index 00000000000000..356932cd88f87f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAtmRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 13c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10zm-6-7c.55 0 1-.45 1-1s-.45-1-1-1h-1v-.01c0-.55-.45-1-1-1s-1 .45-1 1V8h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1h-3c-.55 0-1 .45-1 1s.45 1 1 1h1c0 .55.45 1 1 1s1-.45 1-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h3z" +}), 'LocalAtmRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAtmSharp.js b/packages/material-ui-icons/lib/esm/LocalAtmSharp.js new file mode 100644 index 00000000000000..772d4acd00b69e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAtmSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17h2v-1h2v-5h-4v-1h4V8h-2V7h-2v1H9v5h4v1H9v2h2v1zM22 4H2.01L2 20h20V4zm-2 14H4V6h16v12z" +}), 'LocalAtmSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalAtmTwoTone.js b/packages/material-ui-icons/lib/esm/LocalAtmTwoTone.js new file mode 100644 index 00000000000000..96a0ae1382ad91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalAtmTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zm5-4h4v-1h-3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12zm-9-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z" +}, "1")], 'LocalAtmTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalBar.js b/packages/material-ui-icons/lib/esm/LocalBar.js new file mode 100644 index 00000000000000..2d8b0d52ad5a92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalBar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" +}), 'LocalBar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalBarOutlined.js b/packages/material-ui-icons/lib/esm/LocalBarOutlined.js new file mode 100644 index 00000000000000..2f7fa8b77e7457 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalBarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.77 9 12 12.11 9.23 9h5.54M21 3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9V3zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" +}), 'LocalBarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalBarRounded.js b/packages/material-ui-icons/lib/esm/LocalBarRounded.js new file mode 100644 index 00000000000000..c6c56fe318b83a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalBarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4.45c0-.8-.65-1.45-1.45-1.45H4.45C3.65 3 3 3.65 3 4.45c0 .35.13.7.37.96L11 14v5H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1h-4v-5l7.63-8.59c.24-.26.37-.61.37-.96zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" +}), 'LocalBarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalBarSharp.js b/packages/material-ui-icons/lib/esm/LocalBarSharp.js new file mode 100644 index 00000000000000..69fc22d8459f90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalBarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7 5.66 5h12.69l-1.78 2H7.43z" +}), 'LocalBarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalBarTwoTone.js b/packages/material-ui-icons/lib/esm/LocalBarTwoTone.js new file mode 100644 index 00000000000000..ca8371ef6dbce2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalBarTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.23 9 12 12.11 14.77 9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM5.66 5h12.69l-1.78 2H7.43L5.66 5zM12 12.11 9.23 9h5.54L12 12.11z" +}, "1")], 'LocalBarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCafe.js b/packages/material-ui-icons/lib/esm/LocalCafe.js new file mode 100644 index 00000000000000..876ead50010dd5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCafe.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z" +}), 'LocalCafe'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCafeOutlined.js b/packages/material-ui-icons/lib/esm/LocalCafeOutlined.js new file mode 100644 index 00000000000000..c61f96a6867001 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCafeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 5v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10m4-2H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-2 5V5h2v3h-2zm2 11H2v2h18v-2z" +}), 'LocalCafeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCafeRounded.js b/packages/material-ui-icons/lib/esm/LocalCafeRounded.js new file mode 100644 index 00000000000000..6369086a456719 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCafeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM3 21h16c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'LocalCafeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCafeSharp.js b/packages/material-ui-icons/lib/esm/LocalCafeSharp.js new file mode 100644 index 00000000000000..ee0867fe7398d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCafeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM2 21h18v-2H2v2z" +}), 'LocalCafeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCafeTwoTone.js b/packages/material-ui-icons/lib/esm/LocalCafeTwoTone.js new file mode 100644 index 00000000000000..19232086c76ae1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCafeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 15h6c1.1 0 2-.9 2-2V5H6v8c0 1.1.9 2 2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 19h18v2H2zm2-6c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2H4v10zm14-8h2v3h-2V5zM6 5h10v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5z" +}, "1")], 'LocalCafeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCarWash.js b/packages/material-ui-icons/lib/esm/LocalCarWash.js new file mode 100644 index 00000000000000..edf512736c75c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCarWash.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5z" +}), 'LocalCarWash'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCarWashOutlined.js b/packages/material-ui-icons/lib/esm/LocalCarWashOutlined.js new file mode 100644 index 00000000000000..7a4a76bf5caee5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCarWashOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "16.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "16.5", + r: "1.5" +}, "2")], 'LocalCarWashOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCarWashRounded.js b/packages/material-ui-icons/lib/esm/LocalCarWashRounded.js new file mode 100644 index 00000000000000..8ab524479d5bd4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCarWashRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22 0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22 0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 22.33 6 21.5V21h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 13H5z" +}), 'LocalCarWashRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCarWashSharp.js b/packages/material-ui-icons/lib/esm/LocalCarWashSharp.js new file mode 100644 index 00000000000000..7409ac713a930c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCarWashSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.58 7H5.43L3 14v9h3v-2h12v2h3v-9l-2.42-7zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5zm12-8c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5z" +}), 'LocalCarWashSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalCarWashTwoTone.js b/packages/material-ui-icons/lib/esm/LocalCarWashTwoTone.js new file mode 100644 index 00000000000000..8fcd6e090df0c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalCarWashTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5.12 14-.12.34V19h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.5 3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7zm-2 0c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5zm-5 0C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5s1.5-.67 1.5-1.5zM21 14l-2.08-5.99C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "16.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "16.5", + r: "1.5" +}, "3")], 'LocalCarWashTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalConvenienceStore.js b/packages/material-ui-icons/lib/esm/LocalConvenienceStore.js new file mode 100644 index 00000000000000..f928d2817ee458 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalConvenienceStore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z" +}), 'LocalConvenienceStore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalConvenienceStoreOutlined.js b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreOutlined.js new file mode 100644 index 00000000000000..3f1f3b8c1d345d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm1 11h-4v-4H8v4H4V9h3V6h10v3h3v9zM8 8h2v1H8v3h3v-1H9v-1h2V7H8zm7 1h-1V7h-1v3h2v2h1V7h-1z" +}), 'LocalConvenienceStoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalConvenienceStoreRounded.js b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreRounded.js new file mode 100644 index 00000000000000..b3b87e5d086555 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.9 7.89-1.05-3.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 7.89c-.46 1.97.85 3.11.9 3.17V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7.94c1.12-1.12 1.09-2.41.9-3.17zM13 5h1.96l.54 3.52c.09.71-.39 1.48-1.28 1.48-.67 0-1.22-.59-1.22-1.31V5zM6.44 8.86c-.08.65-.6 1.14-1.21 1.14-.93 0-1.35-.97-1.19-1.64L5.05 5h1.97l-.58 3.86zM10.5 16H9v1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5H10v-1H8.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h2c.28 0 .5.22.5.5v2c0 .28-.22.5-.5.5zm.5-7.31c0 .72-.55 1.31-1.29 1.31-.75 0-1.3-.7-1.22-1.48L9.04 5H11v3.69zM15.5 18c-.28 0-.5-.22-.5-.5V16h-1.5c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5s.5.22.5.5V15h1v-1.5c0-.28.22-.5.5-.5s.5.22.5.5v4c0 .28-.22.5-.5.5zm3.27-8c-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01 1.05 3.37c.16.67-.25 1.64-1.19 1.64z" +}), 'LocalConvenienceStoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalConvenienceStoreSharp.js b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreSharp.js new file mode 100644 index 00000000000000..e224cfe24dca7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z" +}), 'LocalConvenienceStoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalConvenienceStoreTwoTone.js b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreTwoTone.js new file mode 100644 index 00000000000000..8a098d3ec81d16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalConvenienceStoreTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 14h2v4h4V9h-3V6H7v3H4v9h4v-4h6zm-1-7h1v2h1V7h1v5h-1v-2h-2V7zM8 9h2V8H8V7h3v3H9v1h2v1H8V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 16h4v4h8V7h-3V4H5v3H2v13h8v-4zm-2 0v2H4V9h3V6h10v3h3v9h-4v-4H8v2zm3-5H9v-1h2V7H8v1h2v1H8v3h3zm4 1h1V7h-1v2h-1V7h-1v3h2z" +}, "1")], 'LocalConvenienceStoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDining.js b/packages/material-ui-icons/lib/esm/LocalDining.js new file mode 100644 index 00000000000000..85b2eb90f4526c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDining.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" +}), 'LocalDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDiningOutlined.js b/packages/material-ui-icons/lib/esm/LocalDiningOutlined.js new file mode 100644 index 00000000000000..814bdb10af2e4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" +}), 'LocalDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDiningRounded.js b/packages/material-ui-icons/lib/esm/LocalDiningRounded.js new file mode 100644 index 00000000000000..57d2b58031f573 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83-6.19-6.18c-.48-.48-1.31-.35-1.61.27-.71 1.49-.45 3.32.78 4.56l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27l-9.05 9.05c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 14.41l6.18 6.18c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 13l1.47-1.47z" +}), 'LocalDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDiningSharp.js b/packages/material-ui-icons/lib/esm/LocalDiningSharp.js new file mode 100644 index 00000000000000..d405ef82bbb019 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" +}), 'LocalDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDiningTwoTone.js b/packages/material-ui-icons/lib/esm/LocalDiningTwoTone.js new file mode 100644 index 00000000000000..5ffecf26b3a457 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDiningTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.11 21.28 12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41zM3.91 9.16l4.19 4.18 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66z" +}), 'LocalDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDrink.js b/packages/material-ui-icons/lib/esm/LocalDrink.js new file mode 100644 index 00000000000000..6af8cbc59f55dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDrink.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3 2 2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z" +}), 'LocalDrink'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDrinkOutlined.js b/packages/material-ui-icons/lib/esm/LocalDrinkOutlined.js new file mode 100644 index 00000000000000..b472ef93b106ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDrinkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3 2 2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm14 18-10 .01L5.89 10H18.1L17 20zm1.33-12H5.67l-.44-4h13.53l-.43 4zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z" +}), 'LocalDrinkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDrinkRounded.js b/packages/material-ui-icons/lib/esm/LocalDrinkRounded.js new file mode 100644 index 00000000000000..f4bda669f9ca68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDrinkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.23 2C4.04 2 3.11 3.04 3.24 4.22l1.77 16.01C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77l1.77-16.01c.13-1.18-.8-2.22-1.99-2.22H5.23zM12 19c-1.66 0-3-1.34-3-3 0-1.55 1.81-3.95 2.62-4.94.2-.25.57-.25.77 0 .81 1 2.62 3.39 2.62 4.94-.01 1.66-1.35 3-3.01 3zm6.33-11H5.67l-.32-2.89c-.06-.59.4-1.11 1-1.11h11.3c.59 0 1.06.52.99 1.11L18.33 8z" +}), 'LocalDrinkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDrinkSharp.js b/packages/material-ui-icons/lib/esm/LocalDrinkSharp.js new file mode 100644 index 00000000000000..bf91e6299cd936 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDrinkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3 2 2.21 20H18.8L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z" +}), 'LocalDrinkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalDrinkTwoTone.js b/packages/material-ui-icons/lib/esm/LocalDrinkTwoTone.js new file mode 100644 index 00000000000000..4ae425e392ec22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalDrinkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 20.01 17 20l1.1-10H5.89L7 20.01zm5-9.41s3 3.4 3 5.4c0 1.66-1.34 3-3 3s-3-1.34-3-3c0-2 3-5.4 3-5.4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5.01 20.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3l2.01 18.23zM17 20l-10 .01L5.89 10H18.1L17 20zm1.76-16-.43 4H5.67l-.44-4h13.53zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z" +}, "1")], 'LocalDrinkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFireDepartment.js b/packages/material-ui-icons/lib/esm/LocalFireDepartment.js new file mode 100644 index 00000000000000..a86cc4147c4b53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFireDepartment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" +}), 'LocalFireDepartment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFireDepartmentOutlined.js b/packages/material-ui-icons/lib/esm/LocalFireDepartmentOutlined.js new file mode 100644 index 00000000000000..df1f43bb0033ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFireDepartmentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" +}), 'LocalFireDepartmentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFireDepartmentRounded.js b/packages/material-ui-icons/lib/esm/LocalFireDepartmentRounded.js new file mode 100644 index 00000000000000..d705ee06cfe57e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFireDepartmentRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" +}, "1")], 'LocalFireDepartmentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFireDepartmentSharp.js b/packages/material-ui-icons/lib/esm/LocalFireDepartmentSharp.js new file mode 100644 index 00000000000000..f042383f00c949 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFireDepartmentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.48 12.37C17.82 8.05 11.65 8 13.99.99 9.52 3 5.98 8.17 9.48 15 4.53 12.92 6.7 7.71 6.7 7.71S4 9.37 4 14.39c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zM10.2 17.4c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" +}), 'LocalFireDepartmentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFireDepartmentTwoTone.js b/packages/material-ui-icons/lib/esm/LocalFireDepartmentTwoTone.js new file mode 100644 index 00000000000000..1c153fc4a4b87e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFireDepartmentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.58 15.07c-.2.92-.94 1.96-2.38 2.31 2.9 2.37 5.64.2 5.56-2.32 0-2.05-2.95-3.21-3.27-5.08-.87 2.26.41 3.66.09 5.09z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.48 12.35c-1.57-4.08-7.16-4.3-5.81-10.23.1-.44-.37-.78-.75-.55C9.29 3.71 6.68 8 8.87 13.62c.18.46-.36.89-.75.59-1.81-1.37-2-3.34-1.84-4.75.06-.52-.62-.77-.91-.34C4.69 10.16 4 11.84 4 14.37c.38 5.6 5.11 7.32 6.81 7.54 2.43.31 5.06-.14 6.95-1.87 2.08-1.93 2.84-5.01 1.72-7.69zm-9.28 5.03c1.44-.35 2.18-1.39 2.38-2.31.33-1.43-.96-2.83-.09-5.09.33 1.87 3.27 3.04 3.27 5.08.08 2.53-2.66 4.7-5.56 2.32z" +}, "1")], 'LocalFireDepartmentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFlorist.js b/packages/material-ui-icons/lib/esm/LocalFlorist.js new file mode 100644 index 00000000000000..5270e0c13043c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFlorist.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z" +}), 'LocalFlorist'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFloristOutlined.js b/packages/material-ui-icons/lib/esm/LocalFloristOutlined.js new file mode 100644 index 00000000000000..900b389f967a83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFloristOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zM12 13c-.62 0-1.12-.49-1.14-1.1l.12-1.09c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1zm3.34-1.93c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm2.44-2.44c.71-1.9 2.22-3.42 4.12-4.12-.71 1.9-2.22 3.41-4.12 4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z" +}), 'LocalFloristOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFloristRounded.js b/packages/material-ui-icons/lib/esm/LocalFloristRounded.js new file mode 100644 index 00000000000000..1575f010c0fa21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFloristRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c4.56 0 8.33-3.4 8.92-7.8.09-.64-.48-1.21-1.12-1.12-4.4.59-7.8 4.36-7.8 8.92zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zm-8.92 8.7C3.67 18.6 7.44 22 12 22c0-4.56-3.4-8.33-7.8-8.92-.64-.09-1.21.48-1.12 1.12z" +}), 'LocalFloristRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFloristSharp.js b/packages/material-ui-icons/lib/esm/LocalFloristSharp.js new file mode 100644 index 00000000000000..6090f83abe6591 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFloristSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z" +}), 'LocalFloristSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalFloristTwoTone.js b/packages/material-ui-icons/lib/esm/LocalFloristTwoTone.js new file mode 100644 index 00000000000000..7ca815304f8225 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalFloristTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 13c.62 0 1.12-.49 1.14-1.1l-.11-1.09c-.32.12-.67.19-1.03.19s-.7-.07-1.02-.19l-.12 1.09c.02.61.52 1.1 1.14 1.1zM8.17 7.1l.88.42c.12-.73.51-1.37 1.06-1.83l-.81-.56c-.18-.13-.41-.2-.64-.2-.63 0-1.14.51-1.14 1.14-.01.44.25.83.65 1.03zm7.66 1.8-.88-.42c-.12.73-.51 1.37-1.06 1.83l.81.57c.18.13.41.2.64.2.63 0 1.14-.51 1.14-1.14.01-.45-.25-.84-.65-1.04zm-.88-1.38.88-.42c.4-.19.66-.59.66-1.03 0-.63-.51-1.14-1.14-1.14-.24 0-.46.07-.65.2l-.81.55c.55.46.94 1.1 1.06 1.84zM12 5c.36 0 .71.07 1.03.19l.11-1.09C13.12 3.49 12.62 3 12 3s-1.12.49-1.14 1.1l.12 1.09C11.3 5.07 11.64 5 12 5zm-3.34 6.07c.24 0 .46-.07.65-.2l.81-.55c-.56-.46-.95-1.1-1.07-1.84l-.88.42c-.4.2-.66.59-.66 1.03 0 .63.52 1.14 1.15 1.14zm9.9 4.37c-1.9.71-3.42 2.22-4.12 4.12 1.9-.71 3.41-2.22 4.12-4.12zm-13.12 0c.71 1.9 2.22 3.42 4.12 4.12-.71-1.9-2.22-3.41-4.12-4.12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zm6.68-2c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zm1 5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-2.02 2.81c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1s-1.12-.49-1.14-1.1l.12-1.09zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm6.56-6.56c-.71 1.9-2.22 3.42-4.12 4.12.71-1.9 2.22-3.41 4.12-4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z" +}, "1")], 'LocalFloristTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGasStation.js b/packages/material-ui-icons/lib/esm/LocalGasStation.js new file mode 100644 index 00000000000000..57b97f124f79a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGasStation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalGasStation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGasStationOutlined.js b/packages/material-ui-icons/lib/esm/LocalGasStationOutlined.js new file mode 100644 index 00000000000000..ede95d5ee13edc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGasStationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 13.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalGasStationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGasStationRounded.js b/packages/material-ui-icons/lib/esm/LocalGasStationRounded.js new file mode 100644 index 00000000000000..d064010e5eb4ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGasStationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.19-3.19c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.58 1.58c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v15c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-6.5h1.5v4.86c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V9c0-.69-.28-1.32-.73-1.77zM12 10H6V6c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalGasStationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGasStationSharp.js b/packages/material-ui-icons/lib/esm/LocalGasStationSharp.js new file mode 100644 index 00000000000000..11b208d0eb4e77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGasStationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5v7.49h5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalGasStationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGasStationTwoTone.js b/packages/material-ui-icons/lib/esm/LocalGasStationTwoTone.js new file mode 100644 index 00000000000000..46ee94fcdd6f1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGasStationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 19h6v-7H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 10.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'LocalGasStationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGroceryStore.js b/packages/material-ui-icons/lib/esm/LocalGroceryStore.js new file mode 100644 index 00000000000000..4039ddc19a1aac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGroceryStore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" +}), 'LocalGroceryStore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGroceryStoreOutlined.js b/packages/material-ui-icons/lib/esm/LocalGroceryStoreOutlined.js new file mode 100644 index 00000000000000..54306e56c15ae3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGroceryStoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z" +}), 'LocalGroceryStoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGroceryStoreRounded.js b/packages/material-ui-icons/lib/esm/LocalGroceryStoreRounded.js new file mode 100644 index 00000000000000..3b865d10663f9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGroceryStoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM2 4h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.67-1.43c-.16-.35-.52-.57-.9-.57H2c-.55 0-1 .45-1 1s.45 1 1 1zm15 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" +}), 'LocalGroceryStoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGroceryStoreSharp.js b/packages/material-ui-icons/lib/esm/LocalGroceryStoreSharp.js new file mode 100644 index 00000000000000..fbf6519e06ca43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGroceryStoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 4h2l3.6 7.59L3.62 17H19v-2H7l1.1-2h8.64l4.97-9H5.21l-.94-2H1v2zm16 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" +}), 'LocalGroceryStoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalGroceryStoreTwoTone.js b/packages/material-ui-icons/lib/esm/LocalGroceryStoreTwoTone.js new file mode 100644 index 00000000000000..b0273d1ade9665 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalGroceryStoreTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.53 11h7.02l2.76-5H6.16z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z" +}, "1")], 'LocalGroceryStoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHospital.js b/packages/material-ui-icons/lib/esm/LocalHospital.js new file mode 100644 index 00000000000000..5b173c4b4e87f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHospital.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z" +}), 'LocalHospital'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHospitalOutlined.js b/packages/material-ui-icons/lib/esm/LocalHospitalOutlined.js new file mode 100644 index 00000000000000..633fa7ac0680a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHospitalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z" +}), 'LocalHospitalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHospitalRounded.js b/packages/material-ui-icons/lib/esm/LocalHospitalRounded.js new file mode 100644 index 00000000000000..bf7640ff90c9ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHospitalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 11h-3v3c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1v-3H7c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1h3V7c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v3h3c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'LocalHospitalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHospitalSharp.js b/packages/material-ui-icons/lib/esm/LocalHospitalSharp.js new file mode 100644 index 00000000000000..a099429704bd72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHospitalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3.01L3 21h18V3zm-3 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z" +}), 'LocalHospitalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHospitalTwoTone.js b/packages/material-ui-icons/lib/esm/LocalHospitalTwoTone.js new file mode 100644 index 00000000000000..8b578017d8a06e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHospitalTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm2-8.5h3.5V7h3v3.5H17v3h-3.5V17h-3v-3.5H7v-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 5c0-1.1-.9-2-2-2H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5zm-2 14H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z" +}, "1")], 'LocalHospitalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHotel.js b/packages/material-ui-icons/lib/esm/LocalHotel.js new file mode 100644 index 00000000000000..0b4fad5c900bfb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHotel.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z" +}), 'LocalHotel'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHotelOutlined.js b/packages/material-ui-icons/lib/esm/LocalHotelOutlined.js new file mode 100644 index 00000000000000..3c21fb9e5a789b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHotelOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" +}), 'LocalHotelOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHotelRounded.js b/packages/material-ui-icons/lib/esm/LocalHotelRounded.js new file mode 100644 index 00000000000000..423ebd2b8df8de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHotelRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V6c0-.55-.45-1-1-1s-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1v-2h18v2c0 .55.45 1 1 1s1-.45 1-1v-8c0-2.21-1.79-4-4-4z" +}), 'LocalHotelRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHotelSharp.js b/packages/material-ui-icons/lib/esm/LocalHotelSharp.js new file mode 100644 index 00000000000000..1b8424a5212fe0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHotelSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z" +}), 'LocalHotelSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalHotelTwoTone.js b/packages/material-ui-icons/lib/esm/LocalHotelTwoTone.js new file mode 100644 index 00000000000000..76ccd0044e9c77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalHotelTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "11", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z" +}, "2")], 'LocalHotelTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLaundryService.js b/packages/material-ui-icons/lib/esm/LocalLaundryService.js new file mode 100644 index 00000000000000..0127691bc1d75f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLaundryService.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0 1.56-1.56 1.56-4.1 0-5.66l-5.66 5.66zM18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'LocalLaundryService'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLaundryServiceOutlined.js b/packages/material-ui-icons/lib/esm/LocalLaundryServiceOutlined.js new file mode 100644 index 00000000000000..d504d98052b8e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLaundryServiceOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "6", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "6", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z" +}, "3")], 'LocalLaundryServiceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLaundryServiceRounded.js b/packages/material-ui-icons/lib/esm/LocalLaundryServiceRounded.js new file mode 100644 index 00000000000000..cd2d096377c156 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLaundryServiceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.64 16.36c1.3 1.3 3.42 1.3 4.72 0 1.3-1.3 1.3-3.42 0-4.72l-4.72 4.72zM18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM11 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 14c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}), 'LocalLaundryServiceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLaundryServiceSharp.js b/packages/material-ui-icons/lib/esm/LocalLaundryServiceSharp.js new file mode 100644 index 00000000000000..4989b4254dd81d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLaundryServiceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0s1.56-4.1 0-5.66l-5.66 5.66zM20 2.01 4 2v20h16V2.01zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'LocalLaundryServiceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLaundryServiceTwoTone.js b/packages/material-ui-icons/lib/esm/LocalLaundryServiceTwoTone.js new file mode 100644 index 00000000000000..e472ac436d4ad4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLaundryServiceTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.99 4 6 20h12V4H5.99c.01 0 0 0 0 0zM11 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 4c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2.01 6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "6", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z" +}, "4")], 'LocalLaundryServiceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLibrary.js b/packages/material-ui-icons/lib/esm/LocalLibrary.js new file mode 100644 index 00000000000000..41cb964b51c3b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLibrary.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" +}), 'LocalLibrary'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLibraryOutlined.js b/packages/material-ui-icons/lib/esm/LocalLibraryOutlined.js new file mode 100644 index 00000000000000..8007c084fd5b18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLibraryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 9c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zm7 5.58c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.95c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95z" +}), 'LocalLibraryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLibraryRounded.js b/packages/material-ui-icons/lib/esm/LocalLibraryRounded.js new file mode 100644 index 00000000000000..61a395f7946c29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLibraryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11.55c-1.82-1.7-4.12-2.89-6.68-3.35C4.11 7.99 3 8.95 3 10.18v6.24c0 1.68.72 2.56 1.71 2.69 2.5.32 4.77 1.35 6.63 2.87.35.29.92.32 1.27.04 1.87-1.53 4.16-2.58 6.68-2.9.94-.13 1.71-1.06 1.71-2.02v-6.92c0-1.23-1.11-2.19-2.32-1.98-2.56.46-4.86 1.65-6.68 3.35zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" +}), 'LocalLibraryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLibrarySharp.js b/packages/material-ui-icons/lib/esm/LocalLibrarySharp.js new file mode 100644 index 00000000000000..a472f519a6137f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLibrarySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" +}), 'LocalLibrarySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalLibraryTwoTone.js b/packages/material-ui-icons/lib/esm/LocalLibraryTwoTone.js new file mode 100644 index 00000000000000..5ab669d03f12ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalLibraryTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 17.13v-6.95c-2.1.38-4.05 1.35-5.64 2.83L12 14.28l-1.36-1.27C9.05 11.53 7.1 10.56 5 10.18v6.95c2.53.34 4.94 1.3 7 2.83 2.07-1.52 4.47-2.49 7-2.83z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "5", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16 5c0-2.21-1.79-4-4-4S8 2.79 8 5s1.79 4 4 4 4-1.79 4-4zm-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM3 19c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55C9.64 9.35 6.48 8 3 8v11zm2-8.82c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.94z" +}, "2")], 'LocalLibraryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMall.js b/packages/material-ui-icons/lib/esm/LocalMall.js new file mode 100644 index 00000000000000..1c8b45fecf4c02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMall.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z" +}), 'LocalMall'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMallOutlined.js b/packages/material-ui-icons/lib/esm/LocalMallOutlined.js new file mode 100644 index 00000000000000..64dc06a1a89512 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMallOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z" +}), 'LocalMallOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMallRounded.js b/packages/material-ui-icons/lib/esm/LocalMallRounded.js new file mode 100644 index 00000000000000..26772667288016 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMallRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.33 0-4.29-1.59-4.84-3.75-.17-.63.32-1.25.97-1.25.47 0 .85.34.98.8.35 1.27 1.51 2.2 2.89 2.2s2.54-.93 2.89-2.2c.13-.46.51-.8.98-.8.65 0 1.13.62.97 1.25C16.29 11.41 14.33 13 12 13z" +}), 'LocalMallRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMallSharp.js b/packages/material-ui-icons/lib/esm/LocalMallSharp.js new file mode 100644 index 00000000000000..fe018a0270a65b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMallSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6h-4c0-2.76-2.24-5-5-5S7 3.24 7 6H3v16h18V6zm-9-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z" +}), 'LocalMallSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMallTwoTone.js b/packages/material-ui-icons/lib/esm/LocalMallTwoTone.js new file mode 100644 index 00000000000000..612d65f36a0e7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMallTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 8v12h14V8H5zm7 6c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 6c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-2zm-5-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z" +}, "1")], 'LocalMallTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMovies.js b/packages/material-ui-icons/lib/esm/LocalMovies.js new file mode 100644 index 00000000000000..57bec929c1b35d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMovies.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'LocalMovies'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMoviesOutlined.js b/packages/material-ui-icons/lib/esm/LocalMoviesOutlined.js new file mode 100644 index 00000000000000..05a0ce657063d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMoviesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5v14h-4V5h4m6-2h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3zm-4 6V7h2v2h-2zM6 9V7h2v2H6zm10 4v-2h2v2h-2zM6 13v-2h2v2H6zm10 4v-2h2v2h-2zM6 17v-2h2v2H6z" +}), 'LocalMoviesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMoviesRounded.js b/packages/material-ui-icons/lib/esm/LocalMoviesRounded.js new file mode 100644 index 00000000000000..adbd702835fe38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMoviesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'LocalMoviesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMoviesSharp.js b/packages/material-ui-icons/lib/esm/LocalMoviesSharp.js new file mode 100644 index 00000000000000..e971f33098a451 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMoviesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'LocalMoviesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalMoviesTwoTone.js b/packages/material-ui-icons/lib/esm/LocalMoviesTwoTone.js new file mode 100644 index 00000000000000..01b70c53ec3b11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalMoviesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 5h4v14h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 21V3h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm2-12h2v2h-2V7zm0 4h2v2h-2v-2zm0 6v-2h2v2h-2z" +}, "1")], 'LocalMoviesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalOffer.js b/packages/material-ui-icons/lib/esm/LocalOffer.js new file mode 100644 index 00000000000000..731a3dd4ba6fbb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalOffer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" +}), 'LocalOffer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalOfferOutlined.js b/packages/material-ui-icons/lib/esm/LocalOfferOutlined.js new file mode 100644 index 00000000000000..7bd8af21805db1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalOfferOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "6.5", + r: "1.5" +}, "1")], 'LocalOfferOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalOfferRounded.js b/packages/material-ui-icons/lib/esm/LocalOfferRounded.js new file mode 100644 index 00000000000000..9aea37910558ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalOfferRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" +}), 'LocalOfferRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalOfferSharp.js b/packages/material-ui-icons/lib/esm/LocalOfferSharp.js new file mode 100644 index 00000000000000..12d11813d55d73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalOfferSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.83 12.99 11.83 2H2v9.83l10.99 10.99 9.84-9.83zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" +}), 'LocalOfferSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalOfferTwoTone.js b/packages/material-ui-icons/lib/esm/LocalOfferTwoTone.js new file mode 100644 index 00000000000000..172cbb15fbc4fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalOfferTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.41 2.58C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42l-9-9zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "6.5", + r: "1.5" +}, "2")], 'LocalOfferTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalParking.js b/packages/material-ui-icons/lib/esm/LocalParking.js new file mode 100644 index 00000000000000..cbfaccceda8bd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalParking.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" +}), 'LocalParking'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalParkingOutlined.js b/packages/material-ui-icons/lib/esm/LocalParkingOutlined.js new file mode 100644 index 00000000000000..f369f9d4854e23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalParkingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" +}), 'LocalParkingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalParkingRounded.js b/packages/material-ui-icons/lib/esm/LocalParkingRounded.js new file mode 100644 index 00000000000000..7d6f8853559a25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalParkingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.79 3H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2s2-.9 2-2v-4h3c3.57 0 6.42-3.13 5.95-6.79C18.56 5.19 15.84 3 12.79 3zm.41 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" +}), 'LocalParkingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalParkingSharp.js b/packages/material-ui-icons/lib/esm/LocalParkingSharp.js new file mode 100644 index 00000000000000..94d1e07ce6499b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalParkingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" +}), 'LocalParkingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalParkingTwoTone.js b/packages/material-ui-icons/lib/esm/LocalParkingTwoTone.js new file mode 100644 index 00000000000000..75d1e4b4389938 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalParkingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" +}), 'LocalParkingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPharmacy.js b/packages/material-ui-icons/lib/esm/LocalPharmacy.js new file mode 100644 index 00000000000000..62404c805ccfc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPharmacy.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z" +}), 'LocalPharmacy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPharmacyOutlined.js b/packages/material-ui-icons/lib/esm/LocalPharmacyOutlined.js new file mode 100644 index 00000000000000..0661d2e1e57e5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPharmacyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-3.9 8.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63zM13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}), 'LocalPharmacyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPharmacyRounded.js b/packages/material-ui-icons/lib/esm/LocalPharmacyRounded.js new file mode 100644 index 00000000000000..444dca29bc557a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPharmacyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.89 5h-.53l.71-1.97c.24-.65-.1-1.37-.75-1.6-.65-.24-1.37.1-1.61.75L15.69 5H5.1C3.73 5 2.77 6.34 3.2 7.63L5 13l-1.79 5.37C2.77 19.66 3.74 21 5.1 21h13.78c1.36 0 2.33-1.34 1.9-2.63L19 13l1.78-5.37C21.21 6.34 20.25 5 18.89 5zM15 14h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'LocalPharmacyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPharmacySharp.js b/packages/material-ui-icons/lib/esm/LocalPharmacySharp.js new file mode 100644 index 00000000000000..32b9ab1b9788d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPharmacySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z" +}), 'LocalPharmacySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPharmacyTwoTone.js b/packages/material-ui-icons/lib/esm/LocalPharmacyTwoTone.js new file mode 100644 index 00000000000000..3fec55dbc7dd83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPharmacyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.11 19h13.78l-1.79-5.37-.21-.63.21-.63L18.89 7H5.11l1.79 5.37.21.63-.21.63L5.11 19zM8 12h3V9h2v3h3v2h-3v3h-2v-3H8v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 21h18v-2l-2-6 2-6V5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2zm3.9-8.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63zM11 17h2v-3h3v-2h-3V9h-2v3H8v2h3z" +}, "1")], 'LocalPharmacyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPhone.js b/packages/material-ui-icons/lib/esm/LocalPhone.js new file mode 100644 index 00000000000000..db37427f6dba7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPhone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z" +}), 'LocalPhone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPhoneOutlined.js b/packages/material-ui-icons/lib/esm/LocalPhoneOutlined.js new file mode 100644 index 00000000000000..a8f5f468611bc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPhoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" +}), 'LocalPhoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPhoneRounded.js b/packages/material-ui-icons/lib/esm/LocalPhoneRounded.js new file mode 100644 index 00000000000000..7d3378c44a96c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPhoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" +}), 'LocalPhoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPhoneSharp.js b/packages/material-ui-icons/lib/esm/LocalPhoneSharp.js new file mode 100644 index 00000000000000..af8694dd53d135 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPhoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 15.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" +}), 'LocalPhoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPhoneTwoTone.js b/packages/material-ui-icons/lib/esm/LocalPhoneTwoTone.js new file mode 100644 index 00000000000000..8b1aa8d94d56ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPhoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.99 7.59c-.24-.83-.39-1.7-.45-2.59h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.21z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 4c0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm13.4 13.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51z" +}, "1")], 'LocalPhoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPizza.js b/packages/material-ui-icons/lib/esm/LocalPizza.js new file mode 100644 index 00000000000000..2e5e2f32c459f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPizza.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'LocalPizza'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPizzaOutlined.js b/packages/material-ui-icons/lib/esm/LocalPizzaOutlined.js new file mode 100644 index 00000000000000..7b0446d549efce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPizzaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z" +}), 'LocalPizzaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPizzaRounded.js b/packages/material-ui-icons/lib/esm/LocalPizzaRounded.js new file mode 100644 index 00000000000000..90f4c6f1372cd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPizzaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C9.01 2 6.28 3.08 4.17 4.88c-.71.61-.86 1.65-.4 2.46l7.36 13.11c.38.68 1.36.68 1.74 0l7.36-13.11c.46-.81.31-1.86-.4-2.46C17.73 3.09 14.99 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'LocalPizzaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPizzaSharp.js b/packages/material-ui-icons/lib/esm/LocalPizzaSharp.js new file mode 100644 index 00000000000000..89ecf55b02a83b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPizzaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'LocalPizzaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPizzaTwoTone.js b/packages/material-ui-icons/lib/esm/LocalPizzaTwoTone.js new file mode 100644 index 00000000000000..43eca4b3dc8575 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPizzaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.51 6.36 12 17.92l6.49-11.55C16.68 4.85 14.38 4 12 4s-4.68.85-6.49 2.36zM9 8.5c-.83 0-1.5-.67-1.5-1.5S8.17 5.5 9 5.5s1.5.67 1.5 1.5S9.82 8.5 9 8.5zm4.5 4.5c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z" +}, "1")], 'LocalPizzaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPlay.js b/packages/material-ui-icons/lib/esm/LocalPlay.js new file mode 100644 index 00000000000000..17d2aec44957aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPlay.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" +}), 'LocalPlay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPlayOutlined.js b/packages/material-ui-icons/lib/esm/LocalPlayOutlined.js new file mode 100644 index 00000000000000..843c2492d20b01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPlayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" +}), 'LocalPlayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPlayRounded.js b/packages/material-ui-icons/lib/esm/LocalPlayRounded.js new file mode 100644 index 00000000000000..ccc1b36da9644b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPlayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-.76.43-1.42 1.06-1.76.6-.33.94-1.01.94-1.7V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 1.99v2.55c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7v2.25C2 19.1 2.9 20 4 20h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76zm-5.5 4.1L12 14.5l-2.5 1.61c-.38.24-.87-.11-.75-.55l.75-2.88-2.3-1.88c-.35-.29-.17-.86.29-.89l2.96-.17 1.08-2.75c.17-.42.77-.42.93 0l1.08 2.76 2.96.17c.45.03.64.6.29.89l-2.3 1.88.76 2.86c.12.45-.37.8-.75.55z" +}), 'LocalPlayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPlaySharp.js b/packages/material-ui-icons/lib/esm/LocalPlaySharp.js new file mode 100644 index 00000000000000..7899b6ad52cc5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPlaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" +}), 'LocalPlaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPlayTwoTone.js b/packages/material-ui-icons/lib/esm/LocalPlayTwoTone.js new file mode 100644 index 00000000000000..2121f3342df741 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPlayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16 12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z" +}, "1")], 'LocalPlayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPolice.js b/packages/material-ui-icons/lib/esm/LocalPolice.js new file mode 100644 index 00000000000000..cc32bea7def3cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPolice.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm2.5 11.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59z" +}), 'LocalPolice'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPoliceOutlined.js b/packages/material-ui-icons/lib/esm/LocalPoliceOutlined.js new file mode 100644 index 00000000000000..7462f5c648047d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPoliceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.5 12.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM12 3.19l7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" +}), 'LocalPoliceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPoliceRounded.js b/packages/material-ui-icons/lib/esm/LocalPoliceRounded.js new file mode 100644 index 00000000000000..c794214adf441b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPoliceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.5 12.59.63 2.73c.1.43-.37.77-.75.54L12 14.42l-2.39 1.44c-.38.23-.85-.11-.75-.54l.64-2.72-2.1-1.81c-.34-.29-.16-.84.28-.88l2.78-.24 1.08-2.56c.17-.41.75-.41.92 0l1.08 2.55 2.78.24c.44.04.62.59.28.88l-2.1 1.81zM4.19 4.47C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.52-.23-1.11-.23-1.62 0l-7 3.11z" +}), 'LocalPoliceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPoliceSharp.js b/packages/material-ui-icons/lib/esm/LocalPoliceSharp.js new file mode 100644 index 00000000000000..e1c9c00f9885f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPoliceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.5 12.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4-9 4z" +}), 'LocalPoliceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPoliceTwoTone.js b/packages/material-ui-icons/lib/esm/LocalPoliceTwoTone.js new file mode 100644 index 00000000000000..0609924b5ab23d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPoliceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3.19 5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11zm2.5 9.4.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m14.5 12.59.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM12 3.19l7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" +}, "1")], 'LocalPoliceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPostOffice.js b/packages/material-ui-icons/lib/esm/LocalPostOffice.js new file mode 100644 index 00000000000000..ac9ff8a7b0f451 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPostOffice.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" +}), 'LocalPostOffice'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPostOfficeOutlined.js b/packages/material-ui-icons/lib/esm/LocalPostOfficeOutlined.js new file mode 100644 index 00000000000000..384a908269fbc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPostOfficeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" +}), 'LocalPostOfficeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPostOfficeRounded.js b/packages/material-ui-icons/lib/esm/LocalPostOfficeRounded.js new file mode 100644 index 00000000000000..f3370571d5b5cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPostOfficeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" +}), 'LocalPostOfficeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPostOfficeSharp.js b/packages/material-ui-icons/lib/esm/LocalPostOfficeSharp.js new file mode 100644 index 00000000000000..eee383ece16e80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPostOfficeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2.01v16H22V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" +}), 'LocalPostOfficeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPostOfficeTwoTone.js b/packages/material-ui-icons/lib/esm/LocalPostOfficeTwoTone.js new file mode 100644 index 00000000000000..9be23048572643 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPostOfficeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 11 8-5H4zM4 8v10h16V8l-8 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" +}, "1")], 'LocalPostOfficeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPrintshop.js b/packages/material-ui-icons/lib/esm/LocalPrintshop.js new file mode 100644 index 00000000000000..c2bac75c0088a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPrintshop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" +}), 'LocalPrintshop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPrintshopOutlined.js b/packages/material-ui-icons/lib/esm/LocalPrintshopOutlined.js new file mode 100644 index 00000000000000..1db6c66a32e546 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPrintshopOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm2-4v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "11.5", + r: "1" +}, "1")], 'LocalPrintshopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPrintshopRounded.js b/packages/material-ui-icons/lib/esm/LocalPrintshopRounded.js new file mode 100644 index 00000000000000..13b2d6955bb24e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPrintshopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7V4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3h12zm1 1H5c-1.66 0-3 1.34-3 3v5c0 .55.45 1 1 1h3v2c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h3c.55 0 1-.45 1-1v-5c0-1.66-1.34-3-3-3zm-3 11H8v-4h8v4zm2-6.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalPrintshopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPrintshopSharp.js b/packages/material-ui-icons/lib/esm/LocalPrintshopSharp.js new file mode 100644 index 00000000000000..d18825589cdfe9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPrintshopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 8v9h4v4h12v-4h4V8H2zm14 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" +}), 'LocalPrintshopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalPrintshopTwoTone.js b/packages/material-ui-icons/lib/esm/LocalPrintshopTwoTone.js new file mode 100644 index 00000000000000..0019edb6ebf63a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalPrintshopTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 5h8v3H8zm11 5H5c-.55 0-1 .45-1 1v4h2v-2h12v2h2v-4c0-.55-.45-1-1-1zm-1 2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "11.5", + r: "1" +}, "2")], 'LocalPrintshopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalSee.js b/packages/material-ui-icons/lib/esm/LocalSee.js new file mode 100644 index 00000000000000..f3dfeaf970e358 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalSee.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 2 7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'LocalSee'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalSeeOutlined.js b/packages/material-ui-icons/lib/esm/LocalSeeOutlined.js new file mode 100644 index 00000000000000..a32243f99c6097 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalSeeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z" +}), 'LocalSeeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalSeeRounded.js b/packages/material-ui-icons/lib/esm/LocalSeeRounded.js new file mode 100644 index 00000000000000..39ec447bfcd75a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalSeeRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.5 14c0 1.38 1.12 2.5 2.5 2.5 1.23 0 2.25-.9 2.46-2.07-1-1.01-1.83-1.98-2.48-2.93-1.37.02-2.48 1.13-2.48 2.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.65 17.08c-.37.32-.92.32-1.3 0-1.26-1.08-.7-.61-1.3-1.14-.83 1.74-2.73 2.87-4.85 2.5-1.83-.32-3.31-1.8-3.63-3.63-.42-2.44 1.13-4.58 3.31-5.14C10.3 8.45 10 7.28 10 6.15c0-.75.1-1.47.28-2.15h-.4c-.56 0-1.1.24-1.48.65L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-6.03c-1.41 1.49-2.65 2.51-3.35 3.11z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17.34 14.42c.37.33.95.33 1.33 0C22.22 11.25 24 8.5 24 6.15 24 2.42 21.15 0 18 0s-6 2.42-6 6.15c0 2.35 1.78 5.1 5.34 8.27zm-.07-9.17L18 3l.73 2.25H21l-1.85 1.47.7 2.28L18 7.59 16.15 9l.7-2.28L15 5.25h2.27z" +}, "2")], 'LocalSeeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalSeeSharp.js b/packages/material-ui-icons/lib/esm/LocalSeeSharp.js new file mode 100644 index 00000000000000..5cadd89bf10183 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalSeeSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'LocalSeeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalSeeTwoTone.js b/packages/material-ui-icons/lib/esm/LocalSeeTwoTone.js new file mode 100644 index 00000000000000..807a7553f9ac89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalSeeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6h-4.05l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z" +}, "1")], 'LocalSeeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalShipping.js b/packages/material-ui-icons/lib/esm/LocalShipping.js new file mode 100644 index 00000000000000..ac7fe17a7fdbc9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalShipping.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9 1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'LocalShipping'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalShippingOutlined.js b/packages/material-ui-icons/lib/esm/LocalShippingOutlined.js new file mode 100644 index 00000000000000..2647b34878e85b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalShippingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-.5 1.5 1.96 2.5H17V9.5h2.5zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.22-3c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9H8.22zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalShippingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalShippingRounded.js b/packages/material-ui-icons/lib/esm/LocalShippingRounded.js new file mode 100644 index 00000000000000..c37320653cbe71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalShippingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 8H17V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2 0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h1c.55 0 1-.45 1-1v-3.33c0-.43-.14-.85-.4-1.2L20.3 8.4c-.19-.25-.49-.4-.8-.4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5 1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalShippingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalShippingSharp.js b/packages/material-ui-icons/lib/esm/LocalShippingSharp.js new file mode 100644 index 00000000000000..b964cf95e217cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalShippingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V4H1v13h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5 1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'LocalShippingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalShippingTwoTone.js b/packages/material-ui-icons/lib/esm/LocalShippingTwoTone.js new file mode 100644 index 00000000000000..83e11ef59be74f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalShippingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 15h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H15V6H3v9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 8V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4h-3zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9-3H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-6V9.5h2.5l1.96 2.5H17z" +}, "1")], 'LocalShippingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalTaxi.js b/packages/material-ui-icons/lib/esm/LocalTaxi.js new file mode 100644 index 00000000000000..8ecd2f842a4a94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalTaxi.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" +}), 'LocalTaxi'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalTaxiOutlined.js b/packages/material-ui-icons/lib/esm/LocalTaxiOutlined.js new file mode 100644 index 00000000000000..554d64d5fdf5ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalTaxiOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "14.5", + r: "1.5" +}, "2")], 'LocalTaxiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalTaxiRounded.js b/packages/material-ui-icons/lib/esm/LocalTaxiRounded.js new file mode 100644 index 00000000000000..a716e73bf4befc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalTaxiRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v1H6.5c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" +}), 'LocalTaxiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalTaxiSharp.js b/packages/material-ui-icons/lib/esm/LocalTaxiSharp.js new file mode 100644 index 00000000000000..19fec7f1d4102a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalTaxiSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.58 5H15V3H9v2H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" +}), 'LocalTaxiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocalTaxiTwoTone.js b/packages/material-ui-icons/lib/esm/LocalTaxiTwoTone.js new file mode 100644 index 00000000000000..a6ee5a1348c086 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocalTaxiTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5.12 12-.12.34V17h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99C18.72 5.42 18.16 5 17.5 5zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "14.5", + r: "1.5" +}, "3")], 'LocalTaxiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationCity.js b/packages/material-ui-icons/lib/esm/LocationCity.js new file mode 100644 index 00000000000000..b84866d9cc1ac2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationCity.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'LocationCity'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationCityOutlined.js b/packages/material-ui-icons/lib/esm/LocationCityOutlined.js new file mode 100644 index 00000000000000..03c2cd1fd44aee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationCityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'LocationCityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationCityRounded.js b/packages/material-ui-icons/lib/esm/LocationCityRounded.js new file mode 100644 index 00000000000000..3314ce747b5099 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationCityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11V5.83c0-.53-.21-1.04-.59-1.41L12.7 2.71a.9959.9959 0 0 0-1.41 0l-1.7 1.7C9.21 4.79 9 5.3 9 5.83V7H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-4zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'LocationCityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationCitySharp.js b/packages/material-ui-icons/lib/esm/LocationCitySharp.js new file mode 100644 index 00000000000000..a9f9ca513ef12e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationCitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'LocationCitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationCityTwoTone.js b/packages/material-ui-icons/lib/esm/LocationCityTwoTone.js new file mode 100644 index 00000000000000..e2bcd8af45b59f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationCityTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" +}), 'LocationCityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationDisabled.js b/packages/material-ui-icons/lib/esm/LocationDisabled.js new file mode 100644 index 00000000000000..b0a37332fc79e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z" +}), 'LocationDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationDisabledOutlined.js b/packages/material-ui-icons/lib/esm/LocationDisabledOutlined.js new file mode 100644 index 00000000000000..527bddaef632bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86 3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" +}), 'LocationDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationDisabledRounded.js b/packages/material-ui-icons/lib/esm/LocationDisabledRounded.js new file mode 100644 index 00000000000000..41d9b5ff4f4262 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13c.55 0 1-.45 1-1s-.45-1-1-1h-1.06c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H22zm-1.56 5.88L5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.04 6.3C3.97 7.62 3.26 9.23 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c1.77-.2 3.38-.91 4.69-1.98l1.33 1.33c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" +}), 'LocationDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationDisabledSharp.js b/packages/material-ui-icons/lib/esm/LocationDisabledSharp.js new file mode 100644 index 00000000000000..aec5cc9f928e92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86 3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" +}), 'LocationDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/LocationDisabledTwoTone.js new file mode 100644 index 00000000000000..230d0d764d3741 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationDisabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86 3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z" +}), 'LocationDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOff.js b/packages/material-ui-icons/lib/esm/LocationOff.js new file mode 100644 index 00000000000000..aaff6e66567d7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.5c1.38 0 2.5 1.12 2.5 2.5 0 .74-.33 1.39-.83 1.85l3.63 3.63c.98-1.86 1.7-3.8 1.7-5.48 0-3.87-3.13-7-7-7-1.98 0-3.76.83-5.04 2.15l3.19 3.19c.46-.52 1.11-.84 1.85-.84zm4.37 9.6-4.63-4.63-.11-.11L3.27 3 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21 20 19.73l-3.63-3.63z" +}), 'LocationOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOffOutlined.js b/packages/material-ui-icons/lib/esm/LocationOffOutlined.js new file mode 100644 index 00000000000000..1916735ba2d142 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c2.76 0 5 2.24 5 5 0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4zm0 2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z" +}), 'LocationOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOffRounded.js b/packages/material-ui-icons/lib/esm/LocationOffRounded.js new file mode 100644 index 00000000000000..cd3f1ac70a4dd0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.71 3.56c-.39.39-.39 1.02 0 1.41l2.47 2.47C5.07 7.95 5 8.47 5 9c0 4.17 4.42 9.92 6.23 12.11.4.48 1.13.48 1.53 0 .65-.78 1.62-2.01 2.61-3.46l2.65 2.65c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 3.56a.9959.9959 0 0 0-1.41 0zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55 1.38 0 2.5 1.12 2.5 2.5 0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z" +}), 'LocationOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOffSharp.js b/packages/material-ui-icons/lib/esm/LocationOffSharp.js new file mode 100644 index 00000000000000..ec43bef2eea69d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.41 2.86 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55 1.38 0 2.5 1.12 2.5 2.5 0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z" +}), 'LocationOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOffTwoTone.js b/packages/material-ui-icons/lib/esm/LocationOffTwoTone.js new file mode 100644 index 00000000000000..60e15fa0ab9dd0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 9c0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4c2.76 0 5 2.24 5 5zm-5-2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z" +}), 'LocationOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOn.js b/packages/material-ui-icons/lib/esm/LocationOn.js new file mode 100644 index 00000000000000..7596e10c03e86b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'LocationOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOnOutlined.js b/packages/material-ui-icons/lib/esm/LocationOnOutlined.js new file mode 100644 index 00000000000000..0ee096cfa7e121 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOnOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9", + r: "2.5" +}, "1")], 'LocationOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOnRounded.js b/packages/material-ui-icons/lib/esm/LocationOnRounded.js new file mode 100644 index 00000000000000..ad6a85d79bd541 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'LocationOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOnSharp.js b/packages/material-ui-icons/lib/esm/LocationOnSharp.js new file mode 100644 index 00000000000000..6a589fd9e96418 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'LocationOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationOnTwoTone.js b/packages/material-ui-icons/lib/esm/LocationOnTwoTone.js new file mode 100644 index 00000000000000..4f8ff00308dbc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationOnTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9", + r: "2.5" +}, "2")], 'LocationOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationSearching.js b/packages/material-ui-icons/lib/esm/LocationSearching.js new file mode 100644 index 00000000000000..e5ff88e8be712d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationSearching.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'LocationSearching'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationSearchingOutlined.js b/packages/material-ui-icons/lib/esm/LocationSearchingOutlined.js new file mode 100644 index 00000000000000..9ec9aad5eb52fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationSearchingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'LocationSearchingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationSearchingRounded.js b/packages/material-ui-icons/lib/esm/LocationSearchingRounded.js new file mode 100644 index 00000000000000..4637ab8f2f98c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationSearchingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'LocationSearchingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationSearchingSharp.js b/packages/material-ui-icons/lib/esm/LocationSearchingSharp.js new file mode 100644 index 00000000000000..3f05ed4d4468f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationSearchingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'LocationSearchingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LocationSearchingTwoTone.js b/packages/material-ui-icons/lib/esm/LocationSearchingTwoTone.js new file mode 100644 index 00000000000000..30270f7d2cd36f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LocationSearchingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'LocationSearchingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Lock.js b/packages/material-ui-icons/lib/esm/Lock.js new file mode 100644 index 00000000000000..538c4e78c9461f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Lock.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z" +}), 'Lock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockClock.js b/packages/material-ui-icons/lib/esm/LockClock.js new file mode 100644 index 00000000000000..9567e2194a18dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockClock.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.5 14.2 2.9 1.7-.8 1.3L13 15v-5h1.5v4.2zM22 14c0 4.41-3.59 8-8 8-2.02 0-3.86-.76-5.27-2H4c-1.15 0-2-.85-2-2V9c0-1.12.89-1.96 2-2v-.5C4 4.01 6.01 2 8.5 2c2.34 0 4.24 1.79 4.46 4.08.34-.05.69-.08 1.04-.08 4.41 0 8 3.59 8 8zM6 7h5v-.74C10.88 4.99 9.8 4 8.5 4 7.12 4 6 5.12 6 6.5V7zm14 7c0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6 6-2.69 6-6z" +}), 'LockClock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockClockOutlined.js b/packages/material-ui-icons/lib/esm/LockClockOutlined.js new file mode 100644 index 00000000000000..14cdbdf60d6e49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockClockOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20V10h12v1c.7 0 1.37.1 2 .29V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6.26c-.42-.6-.75-1.28-.97-2H6zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" +}, "1")], 'LockClockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockClockRounded.js b/packages/material-ui-icons/lib/esm/LockClockRounded.js new file mode 100644 index 00000000000000..2efafc382b7e03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockClockRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 11c.7 0 1.37.1 2 .29V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm2 7c-.2.2-.51.2-.71 0l-1.65-1.65c-.09-.09-.15-.22-.15-.35v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v2.29l1.5 1.5c.21.2.21.51.01.71z" +}, "1")], 'LockClockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockClockSharp.js b/packages/material-ui-icons/lib/esm/LockClockSharp.js new file mode 100644 index 00000000000000..d232d8201fa6bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockClockSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 11c.7 0 1.37.1 2 .29V8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h8.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" +}), 'LockClockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockClockTwoTone.js b/packages/material-ui-icons/lib/esm/LockClockTwoTone.js new file mode 100644 index 00000000000000..22a38de1453824 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockClockTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.29 20H6V10h12v1c.7 0 1.37.1 2 .29V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6.26c-.42-.6-.75-1.28-.97-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 18c0-3.87 3.13-7 7-7v-1H6v10h5.29c-.19-.63-.29-1.3-.29-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" +}, "2")], 'LockClockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockOpen.js b/packages/material-ui-icons/lib/esm/LockOpen.js new file mode 100644 index 00000000000000..329ecee8087e70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockOpen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z" +}), 'LockOpen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockOpenOutlined.js b/packages/material-ui-icons/lib/esm/LockOpenOutlined.js new file mode 100644 index 00000000000000..3db1eb418969dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockOpenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'LockOpenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockOpenRounded.js b/packages/material-ui-icons/lib/esm/LockOpenRounded.js new file mode 100644 index 00000000000000..f34c762eb62eb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockOpenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-5h-1V6c0-2.76-2.24-5-5-5-2.28 0-4.27 1.54-4.84 3.75-.14.54.18 1.08.72 1.22.53.14 1.08-.18 1.22-.72C9.44 3.93 10.63 3 12 3c1.65 0 3 1.35 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 11c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v8z" +}), 'LockOpenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockOpenSharp.js b/packages/material-ui-icons/lib/esm/LockOpenSharp.js new file mode 100644 index 00000000000000..89ca6c4b7816ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockOpenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6h2c0-1.13.6-2.24 1.64-2.7C12.85 2.31 15 3.9 15 6v2H4v14h16V8zm-2 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'LockOpenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockOpenTwoTone.js b/packages/material-ui-icons/lib/esm/LockOpenTwoTone.js new file mode 100644 index 00000000000000..fcb6ed48f66561 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockOpenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}, "1")], 'LockOpenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockOutlined.js b/packages/material-ui-icons/lib/esm/LockOutlined.js new file mode 100644 index 00000000000000..05d6c77c26c79b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}), 'LockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockRounded.js b/packages/material-ui-icons/lib/esm/LockRounded.js new file mode 100644 index 00000000000000..814437f22e6dac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" +}), 'LockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockSharp.js b/packages/material-ui-icons/lib/esm/LockSharp.js new file mode 100644 index 00000000000000..5da90b24e6ae95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" +}), 'LockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LockTwoTone.js b/packages/material-ui-icons/lib/esm/LockTwoTone.js new file mode 100644 index 00000000000000..48dc6729dbe65b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LockTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" +}, "1")], 'LockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Login.js b/packages/material-ui-icons/lib/esm/Login.js new file mode 100644 index 00000000000000..fefe93b9ff1941 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Login.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z" +}), 'Login'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoginOutlined.js b/packages/material-ui-icons/lib/esm/LoginOutlined.js new file mode 100644 index 00000000000000..ebc1016dc4cb1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoginOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z" +}), 'LoginOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoginRounded.js b/packages/material-ui-icons/lib/esm/LoginRounded.js new file mode 100644 index 00000000000000..2b6415c2155d10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoginRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.3 7.7c-.39.39-.39 1.01 0 1.4l1.9 1.9H3c-.55 0-1 .45-1 1s.45 1 1 1h9.2l-1.9 1.9c-.39.39-.39 1.01 0 1.4.39.39 1.01.39 1.4 0l3.59-3.59c.39-.39.39-1.02 0-1.41L11.7 7.7a.9839.9839 0 0 0-1.4 0zM20 19h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-7c-.55 0-1 .45-1 1s.45 1 1 1h7v14z" +}), 'LoginRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoginSharp.js b/packages/material-ui-icons/lib/esm/LoginSharp.js new file mode 100644 index 00000000000000..9a2e5bebd75efd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoginSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h10V3H12v2h8v14z" +}), 'LoginSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoginTwoTone.js b/packages/material-ui-icons/lib/esm/LoginTwoTone.js new file mode 100644 index 00000000000000..7860e06f4a266a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoginTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7 9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z" +}), 'LoginTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Logout.js b/packages/material-ui-icons/lib/esm/Logout.js new file mode 100644 index 00000000000000..c17ad12d4bdf53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Logout.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 7-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z" +}), 'Logout'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LogoutOutlined.js b/packages/material-ui-icons/lib/esm/LogoutOutlined.js new file mode 100644 index 00000000000000..ea0dc08eb46da6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LogoutOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 8-1.41 1.41L17.17 11H9v2h8.17l-1.58 1.58L17 16l4-4-4-4zM5 5h7V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7v-2H5V5z" +}), 'LogoutOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LogoutRounded.js b/packages/material-ui-icons/lib/esm/LogoutRounded.js new file mode 100644 index 00000000000000..f43ed8125888b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LogoutRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h6c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6c.55 0 1-.45 1-1s-.45-1-1-1H5V5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.65 11.65-2.79-2.79c-.32-.32-.86-.1-.86.35V11h-7c-.55 0-1 .45-1 1s.45 1 1 1h7v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" +}, "1")], 'LogoutRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LogoutSharp.js b/packages/material-ui-icons/lib/esm/LogoutSharp.js new file mode 100644 index 00000000000000..b7336ff3a19724 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LogoutSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h7V3H3v18h9v-2H5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21 12-4-4v3H9v2h8v3z" +}, "1")], 'LogoutSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LogoutTwoTone.js b/packages/material-ui-icons/lib/esm/LogoutTwoTone.js new file mode 100644 index 00000000000000..294bdddae7ecca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LogoutTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 5h7V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h7v-2H5V5zm16 7-4-4v3H9v2h8v3l4-4z" +}), 'LogoutTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks.js b/packages/material-ui-icons/lib/esm/Looks.js new file mode 100644 index 00000000000000..73015e94c5a640 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" +}), 'Looks'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks3.js b/packages/material-ui-icons/lib/esm/Looks3.js new file mode 100644 index 00000000000000..2d056560bc774e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks3.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.01 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4c1.1 0 2 .89 2 2v1.5z" +}), 'Looks3'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks3Outlined.js b/packages/material-ui-icons/lib/esm/Looks3Outlined.js new file mode 100644 index 00000000000000..34e86bd9ff5473 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks3Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z" +}), 'Looks3Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks3Rounded.js b/packages/material-ui-icons/lib/esm/Looks3Rounded.js new file mode 100644 index 00000000000000..fb0fab36c196cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks3Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5.01c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3.99 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H10c-.55 0-1-.45-1-1s.45-1 1-1h3.01L13 13h-1c-.55 0-1-.45-1-1s.45-1 1-1h1l.01-2H10c-.55 0-.99-.45-.99-1s.44-1 .99-1h3.01c1.1 0 2 .9 2 2v1.5z" +}), 'Looks3Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks3Sharp.js b/packages/material-ui-icons/lib/esm/Looks3Sharp.js new file mode 100644 index 00000000000000..783cd21abccdb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks3Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3.01v18H21V3zm-5.99 14H9v-2h4v-2h-2v-2h2V9H9V7h6.01v10z" +}), 'Looks3Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks3TwoTone.js b/packages/material-ui-icons/lib/esm/Looks3TwoTone.js new file mode 100644 index 00000000000000..3b7061e8eac22a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks3TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm4-4h4v-2h-2v-2h2V9H9V7h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H9v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z" +}, "1")], 'Looks3TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks4.js b/packages/material-ui-icons/lib/esm/Looks4.js new file mode 100644 index 00000000000000..738918d7f7cb5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks4.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 14h-2v-4H9V7h2v4h2V7h2v10z" +}), 'Looks4'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks4Outlined.js b/packages/material-ui-icons/lib/esm/Looks4Outlined.js new file mode 100644 index 00000000000000..dbdbf9f789b42b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks4Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z" +}), 'Looks4Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks4Rounded.js b/packages/material-ui-icons/lib/esm/Looks4Rounded.js new file mode 100644 index 00000000000000..3c0a6619ad2e0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks4Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14c-.55 0-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3h2V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1z" +}), 'Looks4Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks4Sharp.js b/packages/material-ui-icons/lib/esm/Looks4Sharp.js new file mode 100644 index 00000000000000..0f7fbc53ba8a7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks4Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.04 3h-18v18h18V3zm-6 14h-2v-4h-4V7h2v4h2V7h2v10z" +}), 'Looks4Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks4TwoTone.js b/packages/material-ui-icons/lib/esm/Looks4TwoTone.js new file mode 100644 index 00000000000000..b4b318a2ac3094 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks4TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.04 19h14V5h-14v14zm4-12h2v4h2V7h2v10h-2v-4h-4V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z" +}, "1")], 'Looks4TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks5.js b/packages/material-ui-icons/lib/esm/Looks5.js new file mode 100644 index 00000000000000..f4eeef5af04164 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks5.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z" +}), 'Looks5'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks5Outlined.js b/packages/material-ui-icons/lib/esm/Looks5Outlined.js new file mode 100644 index 00000000000000..32ab5302e959a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks5Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6h4v2H9v2h4c1.1 0 2-.89 2-2z" +}), 'Looks5Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks5Rounded.js b/packages/material-ui-icons/lib/esm/Looks5Rounded.js new file mode 100644 index 00000000000000..a464471382f8ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks5Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h2c1.1 0 2 .9 2 2v2c0 1.11-.9 2-2 2h-3c-.55 0-1-.45-1-1s.45-1 1-1h3v-2h-3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'Looks5Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks5Sharp.js b/packages/material-ui-icons/lib/esm/Looks5Sharp.js new file mode 100644 index 00000000000000..8cb2b070040a94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks5Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-6 6h-4v2h4v6H9v-2h4v-2H9V7h6v2z" +}), 'Looks5Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks5TwoTone.js b/packages/material-ui-icons/lib/esm/Looks5TwoTone.js new file mode 100644 index 00000000000000..2a18adf0202bd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks5TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm4 8h4v2H9v2h4c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6z" +}, "1")], 'Looks5TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks6.js b/packages/material-ui-icons/lib/esm/Looks6.js new file mode 100644 index 00000000000000..3801d09b0a530c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks6.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z" +}), 'Looks6'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks6Outlined.js b/packages/material-ui-icons/lib/esm/Looks6Outlined.js new file mode 100644 index 00000000000000..383fc3dd3c2279 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks6Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 17h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zm8-10H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'Looks6Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks6Rounded.js b/packages/material-ui-icons/lib/esm/Looks6Rounded.js new file mode 100644 index 00000000000000..5e8969ea728039 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks6Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h2c1.1 0 2 .9 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.1.9-2 2-2h3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'Looks6Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks6Sharp.js b/packages/material-ui-icons/lib/esm/Looks6Sharp.js new file mode 100644 index 00000000000000..8bbad256554528 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks6Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 15h2v-2h-2v2zM21 3H3v18h18V3zm-6 6h-4v2h4v6H9V7h6v2z" +}), 'Looks6Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Looks6TwoTone.js b/packages/material-ui-icons/lib/esm/Looks6TwoTone.js new file mode 100644 index 00000000000000..0f8ef5660ed3e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Looks6TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 13h2v2h-2zm8-8H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 9v6c0 1.11.9 2 2 2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2zm4 4v2h-2v-2h2zm-8 8h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5z" +}, "1")], 'Looks6TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksOne.js b/packages/material-ui-icons/lib/esm/LooksOne.js new file mode 100644 index 00000000000000..bec715b8d24666 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksOne.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z" +}), 'LooksOne'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksOneOutlined.js b/packages/material-ui-icons/lib/esm/LooksOneOutlined.js new file mode 100644 index 00000000000000..d65ac4ebff1304 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksOneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-7-2h2V7h-4v2h2z" +}), 'LooksOneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksOneRounded.js b/packages/material-ui-icons/lib/esm/LooksOneRounded.js new file mode 100644 index 00000000000000..b6f21c7fb4aab1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksOneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 14c-.55 0-1-.45-1-1V9h-1c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" +}), 'LooksOneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksOneSharp.js b/packages/material-ui-icons/lib/esm/LooksOneSharp.js new file mode 100644 index 00000000000000..212dd7a8a2a701 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksOneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-7 14h-2V9h-2V7h4v10z" +}), 'LooksOneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksOneTwoTone.js b/packages/material-ui-icons/lib/esm/LooksOneTwoTone.js new file mode 100644 index 00000000000000..59634f105b5e2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksOneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v14h14V5zm-5 12h-2V9h-2V7h4v10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm5 4h2v8h2V7h-4z" +}, "1")], 'LooksOneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksOutlined.js b/packages/material-ui-icons/lib/esm/LooksOutlined.js new file mode 100644 index 00000000000000..94eaebc15e536e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" +}), 'LooksOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksRounded.js b/packages/material-ui-icons/lib/esm/LooksRounded.js new file mode 100644 index 00000000000000..f0c3687ea10633 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10c-3.47 0-6.36 2.54-6.91 5.86-.1.6.39 1.14 1 1.14.49 0 .9-.36.98-.85C7.48 13.79 9.53 12 12 12s4.52 1.79 4.93 4.15c.08.49.49.85.98.85.61 0 1.09-.54.99-1.14C18.36 12.54 15.47 10 12 10zm0-4C6.3 6 1.61 10.34 1.05 15.9c-.05.59.41 1.1 1.01 1.1.51 0 .94-.38.99-.88C3.49 11.57 7.34 8 12 8s8.51 3.57 8.96 8.12c.05.5.48.88.99.88.59 0 1.06-.51 1-1.1C22.39 10.34 17.7 6 12 6z" +}), 'LooksRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksSharp.js b/packages/material-ui-icons/lib/esm/LooksSharp.js new file mode 100644 index 00000000000000..2ebc45c34f5212 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" +}), 'LooksSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksTwo.js b/packages/material-ui-icons/lib/esm/LooksTwo.js new file mode 100644 index 00000000000000..2a3212a14b2c92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksTwo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z" +}), 'LooksTwo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksTwoOutlined.js b/packages/material-ui-icons/lib/esm/LooksTwoOutlined.js new file mode 100644 index 00000000000000..c3f562bb66f697 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksTwoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z" +}), 'LooksTwoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksTwoRounded.js b/packages/material-ui-icons/lib/esm/LooksTwoRounded.js new file mode 100644 index 00000000000000..03bc76fbff2020 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksTwoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.1-.9 2-2 2h-2v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3c0-1.1.9-2 2-2h2V9h-3c-.55 0-1-.45-1-1s.45-1 1-1h3c1.1 0 2 .9 2 2v2z" +}), 'LooksTwoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksTwoSharp.js b/packages/material-ui-icons/lib/esm/LooksTwoSharp.js new file mode 100644 index 00000000000000..36958b0a71c196 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksTwoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-6 10h-4v2h4v2H9v-6h4V9H9V7h6v6z" +}), 'LooksTwoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksTwoTone.js b/packages/material-ui-icons/lib/esm/LooksTwoTone.js new file mode 100644 index 00000000000000..8e3581d87a00fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11zm0 6c2.76 0 5 2.24 5 5h2c0-3.86-3.14-7-7-7s-7 3.14-7 7h2c0-2.76 2.24-5 5-5z" +}), 'LooksTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LooksTwoTwoTone.js b/packages/material-ui-icons/lib/esm/LooksTwoTwoTone.js new file mode 100644 index 00000000000000..b76afc76302d72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LooksTwoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v14h14V5zm-4 6c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm8 2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2z" +}, "1")], 'LooksTwoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Loop.js b/packages/material-ui-icons/lib/esm/Loop.js new file mode 100644 index 00000000000000..40a7bca9b8e30f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Loop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" +}), 'Loop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoopOutlined.js b/packages/material-ui-icons/lib/esm/LoopOutlined.js new file mode 100644 index 00000000000000..6d9d94b7e869f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" +}), 'LoopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoopRounded.js b/packages/material-ui-icons/lib/esm/LoopRounded.js new file mode 100644 index 00000000000000..e33ded9ebe5c76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z" +}), 'LoopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoopSharp.js b/packages/material-ui-icons/lib/esm/LoopSharp.js new file mode 100644 index 00000000000000..bee7228a0d92b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" +}), 'LoopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoopTwoTone.js b/packages/material-ui-icons/lib/esm/LoopTwoTone.js new file mode 100644 index 00000000000000..41d36fd27536f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoopTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 18c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3zm0-14V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8z" +}), 'LoopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Loupe.js b/packages/material-ui-icons/lib/esm/Loupe.js new file mode 100644 index 00000000000000..b77e8cb6b0d2f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Loupe.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'Loupe'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoupeOutlined.js b/packages/material-ui-icons/lib/esm/LoupeOutlined.js new file mode 100644 index 00000000000000..892911ad3a4a2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoupeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'LoupeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoupeRounded.js b/packages/material-ui-icons/lib/esm/LoupeRounded.js new file mode 100644 index 00000000000000..4a5373731cda43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoupeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'LoupeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoupeSharp.js b/packages/material-ui-icons/lib/esm/LoupeSharp.js new file mode 100644 index 00000000000000..35f82e7301e18b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoupeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-.27-4.97c-6.08-.44-11.14 4.62-10.7 10.7.38 5.28 5 9.27 10.29 9.27H22v-9.68c0-5.3-3.98-9.91-9.27-10.29zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'LoupeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoupeTwoTone.js b/packages/material-ui-icons/lib/esm/LoupeTwoTone.js new file mode 100644 index 00000000000000..ddd563a052fd29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoupeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zm-5-9h4V7h2v4h4v2h-4v4h-2v-4H7v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 17h2v-4h4v-2h-4V7h-2v4H7v2h4zm1 5h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10S2 6.49 2 12s4.49 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" +}, "1")], 'LoupeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LowPriority.js b/packages/material-ui-icons/lib/esm/LowPriority.js new file mode 100644 index 00000000000000..50aae702fc777f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LowPriority.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5h8v2h-8zm0 5.5h8v2h-8zm0 5.5h8v2h-8zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" +}), 'LowPriority'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LowPriorityOutlined.js b/packages/material-ui-icons/lib/esm/LowPriorityOutlined.js new file mode 100644 index 00000000000000..2c8e60c042738f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LowPriorityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" +}), 'LowPriorityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LowPriorityRounded.js b/packages/material-ui-icons/lib/esm/LowPriorityRounded.js new file mode 100644 index 00000000000000..a442589487eafe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LowPriorityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm0 5.5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm0 5.5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm-5.15 3.15 1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79c-.31-.32-.85-.1-.85.35v3.59c0 .44.54.66.85.35zM9 16h-.3c-2.35 0-4.45-1.71-4.68-4.05C3.76 9.27 5.87 7 8.5 7H11c.55 0 1-.45 1-1s-.45-1-1-1H8.5c-3.86 0-6.96 3.4-6.44 7.36C2.48 15.64 5.43 18 8.73 18H9" +}), 'LowPriorityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LowPrioritySharp.js b/packages/material-ui-icons/lib/esm/LowPrioritySharp.js new file mode 100644 index 00000000000000..89d6a582605d89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LowPrioritySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" +}), 'LowPrioritySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LowPriorityTwoTone.js b/packages/material-ui-icons/lib/esm/LowPriorityTwoTone.js new file mode 100644 index 00000000000000..4043acaa48884f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LowPriorityTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" +}), 'LowPriorityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Loyalty.js b/packages/material-ui-icons/lib/esm/Loyalty.js new file mode 100644 index 00000000000000..48d69f2f451076 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Loyalty.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z" +}), 'Loyalty'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoyaltyOutlined.js b/packages/material-ui-icons/lib/esm/LoyaltyOutlined.js new file mode 100644 index 00000000000000..af08f755ba57cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoyaltyOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "6.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z" +}, "2")], 'LoyaltyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoyaltyRounded.js b/packages/material-ui-icons/lib/esm/LoyaltyRounded.js new file mode 100644 index 00000000000000..46027e2a23b8c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoyaltyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27-3.92 3.92c-.2.2-.51.2-.71 0l-3.92-3.92c-.57-.58-.87-1.43-.67-2.34.19-.88.89-1.61 1.76-1.84.94-.25 1.85.04 2.44.65l.75.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z" +}), 'LoyaltyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoyaltySharp.js b/packages/material-ui-icons/lib/esm/LoyaltySharp.js new file mode 100644 index 00000000000000..9fcf536a483050 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoyaltySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.83 2H2v9.83l10.99 11s1.05-1.05 1.41-1.42L22.82 13 11.83 2zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zM13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77L13 19.54z" +}), 'LoyaltySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LoyaltyTwoTone.js b/packages/material-ui-icons/lib/esm/LoyaltyTwoTone.js new file mode 100644 index 00000000000000..e8dbf73d3950b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LoyaltyTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8zm6.5 3.7.6-.6c.37-.37.89-.6 1.45-.6 1.13 0 2.05.92 2.05 2.05 0 .57-.23 1.08-.6 1.45L13 17.5 9.5 14c-.37-.38-.6-.89-.6-1.45 0-1.13.92-2.05 2.05-2.05.57 0 1.08.23 1.45.61l.6.59z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "6.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z" +}, "3")], 'LoyaltyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LteMobiledata.js b/packages/material-ui-icons/lib/esm/LteMobiledata.js new file mode 100644 index 00000000000000..f48bad98ff8832 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LteMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" +}), 'LteMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LteMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/LteMobiledataOutlined.js new file mode 100644 index 00000000000000..b37239ae6f5c93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LteMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" +}), 'LteMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LteMobiledataRounded.js b/packages/material-ui-icons/lib/esm/LteMobiledataRounded.js new file mode 100644 index 00000000000000..0ac1c798a92485 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LteMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 14h2c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v5zm4-4h1v5c0 .55.45 1 1 1s1-.45 1-1v-5h1c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm11-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1z" +}), 'LteMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LteMobiledataSharp.js b/packages/material-ui-icons/lib/esm/LteMobiledataSharp.js new file mode 100644 index 00000000000000..32c91143a50827 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LteMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" +}), 'LteMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LteMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/LteMobiledataTwoTone.js new file mode 100644 index 00000000000000..7525e5929a3833 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LteMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" +}), 'LteMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LtePlusMobiledata.js b/packages/material-ui-icons/lib/esm/LtePlusMobiledata.js new file mode 100644 index 00000000000000..2e5ab877f7a14d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LtePlusMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'LtePlusMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LtePlusMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/LtePlusMobiledataOutlined.js new file mode 100644 index 00000000000000..1fe1b5add22ca9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LtePlusMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'LtePlusMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LtePlusMobiledataRounded.js b/packages/material-ui-icons/lib/esm/LtePlusMobiledataRounded.js new file mode 100644 index 00000000000000..445eb9b15a7571 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LtePlusMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14h2c.55 0 1 .45 1 1s-.45 1-1 1H2c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v5zm3-4h1v5c0 .55.45 1 1 1s1-.45 1-1v-5h1c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm7 6h3c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-1h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm10-5h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'LtePlusMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LtePlusMobiledataSharp.js b/packages/material-ui-icons/lib/esm/LtePlusMobiledataSharp.js new file mode 100644 index 00000000000000..fd7f63d841fa92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LtePlusMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'LtePlusMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LtePlusMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/LtePlusMobiledataTwoTone.js new file mode 100644 index 00000000000000..6104e8aa8be79b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LtePlusMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" +}), 'LtePlusMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Luggage.js b/packages/material-ui-icons/lib/esm/Luggage.js new file mode 100644 index 00000000000000..b8b687f7f963fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Luggage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zm.75-12h-3V3.5h3V6zM16 18h-1.5V9H16v9z" +}), 'Luggage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LuggageOutlined.js b/packages/material-ui-icons/lib/esm/LuggageOutlined.js new file mode 100644 index 00000000000000..f774ba1b84de6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LuggageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zM16 18h-1.5V9H16v9zm1-12h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6.5-2.5h3V6h-3V3.5zM17 19H7V8h10v11z" +}), 'LuggageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LuggageRounded.js b/packages/material-ui-icons/lib/esm/LuggageRounded.js new file mode 100644 index 00000000000000..8fb22c10f9035b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LuggageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8.75 18c-.41 0-.75-.34-.75-.75v-7.5c0-.41.34-.75.75-.75s.75.34.75.75v7.5c0 .41-.34.75-.75.75zM12 18c-.41 0-.75-.34-.75-.75v-7.5c0-.41.34-.75.75-.75s.75.34.75.75v7.5c0 .41-.34.75-.75.75zm1.5-12h-3V3.5h3V6zm1.75 12c-.41 0-.75-.34-.75-.75v-7.5c0-.41.34-.75.75-.75s.75.34.75.75v7.5c0 .41-.34.75-.75.75z" +}), 'LuggageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LuggageSharp.js b/packages/material-ui-icons/lib/esm/LuggageSharp.js new file mode 100644 index 00000000000000..2a0e2b5433a5fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LuggageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 6h-4V2H9v4H5v15h2c0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1h2V6zM9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zm.75-12h-3V3.5h3V6zM16 18h-1.5V9H16v9z" +}), 'LuggageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LuggageTwoTone.js b/packages/material-ui-icons/lib/esm/LuggageTwoTone.js new file mode 100644 index 00000000000000..82ac4869740f6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LuggageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 8v11h10V8H7zm2.5 10H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zM16 18h-1.5V9H16v9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zM16 18h-1.5V9H16v9zm1-12h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6.5-2.5h3V6h-3V3.5zM17 19H7V8h10v11z" +}, "1")], 'LuggageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LunchDining.js b/packages/material-ui-icons/lib/esm/LunchDining.js new file mode 100644 index 00000000000000..2f6d47ab7c086d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LunchDining.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M22 10c.32-3.28-4.28-6-9.99-6S1.7 6.72 2.02 10H22zM5.35 13.5c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.63 2.17.64v-1.98s-.79-.16-1.16-.38c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.21-.64.37-.23.59-.36 1.14-.36zM2 16v2c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2H2z" +}), 'LunchDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LunchDiningOutlined.js b/packages/material-ui-icons/lib/esm/LunchDiningOutlined.js new file mode 100644 index 00000000000000..6fc9d2e2d85831 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LunchDiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 19c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-3H2v3zm2-1h16v1H4v-1zm14.66-6.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9zM4.18 8C5.01 5.81 8.61 5 12 5c3.31 0 5.93.73 7.19 1.99.3.31.52.64.65 1.01H4.18z" +}), 'LunchDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LunchDiningRounded.js b/packages/material-ui-icons/lib/esm/LunchDiningRounded.js new file mode 100644 index 00000000000000..259d25bb6a9109 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LunchDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.37 14.28c.79-.29 1.17-.78 1.99-.78 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 .81 0 1.17.46 1.93.76.67.26 1.39-.25 1.39-.96 0-.43-.28-.81-.69-.96-.97-.35-1.22-.83-2.65-.83-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.55 0-1.96.63-2.68.89-.39.14-.65.52-.65.94 0 .69.7 1.18 1.36.94zM2 19c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-1c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v1zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9c0 .55.45 1 1 1h18c.55 0 1-.45 1-1z" +}), 'LunchDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LunchDiningSharp.js b/packages/material-ui-icons/lib/esm/LunchDiningSharp.js new file mode 100644 index 00000000000000..91e39e01ea40c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LunchDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16h20v5H2zm16.66-4.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9z" +}), 'LunchDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/LunchDiningTwoTone.js b/packages/material-ui-icons/lib/esm/LunchDiningTwoTone.js new file mode 100644 index 00000000000000..877e82b4b1bb3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/LunchDiningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M4 18h16v1H4zm8-13c-3.39 0-6.99.81-7.82 3h15.66c-.13-.37-.35-.7-.66-1.01C17.93 5.73 15.31 5 12 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 19c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-3H2v3zm2-1h16v1H4v-1zm14.66-6.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9zM4.18 8C5.01 5.81 8.61 5 12 5c3.31 0 5.93.73 7.19 1.99.3.31.52.64.65 1.01H4.18z" +}, "1")], 'LunchDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mail.js b/packages/material-ui-icons/lib/esm/Mail.js new file mode 100644 index 00000000000000..a83d68356a1105 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mail.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" +}), 'Mail'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailOutline.js b/packages/material-ui-icons/lib/esm/MailOutline.js new file mode 100644 index 00000000000000..f6f4e26bc7ba80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" +}), 'MailOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailOutlineOutlined.js b/packages/material-ui-icons/lib/esm/MailOutlineOutlined.js new file mode 100644 index 00000000000000..a9b170b70d4cc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" +}), 'MailOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailOutlineRounded.js b/packages/material-ui-icons/lib/esm/MailOutlineRounded.js new file mode 100644 index 00000000000000..d2e30a42447ff0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H5c-.55 0-1-.45-1-1V8l6.94 4.34c.65.41 1.47.41 2.12 0L20 8v9c0 .55-.45 1-1 1zm-7-7L4 6h16l-8 5z" +}), 'MailOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailOutlineSharp.js b/packages/material-ui-icons/lib/esm/MailOutlineSharp.js new file mode 100644 index 00000000000000..4c4eb1aa917137 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2.01L2 20h20V4zm-2 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" +}), 'MailOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/MailOutlineTwoTone.js new file mode 100644 index 00000000000000..c298daafe64e3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" +}), 'MailOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailOutlined.js b/packages/material-ui-icons/lib/esm/MailOutlined.js new file mode 100644 index 00000000000000..2c6cd4928ac3c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z" +}), 'MailOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailRounded.js b/packages/material-ui-icons/lib/esm/MailRounded.js new file mode 100644 index 00000000000000..3da692ed6e69ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" +}), 'MailRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailSharp.js b/packages/material-ui-icons/lib/esm/MailSharp.js new file mode 100644 index 00000000000000..54b947c8788691 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" +}), 'MailSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MailTwoTone.js b/packages/material-ui-icons/lib/esm/MailTwoTone.js new file mode 100644 index 00000000000000..81836c64eeec00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MailTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6H4l8 4.99zM4 8v10h16V8l-8 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z" +}, "1")], 'MailTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Male.js b/packages/material-ui-icons/lib/esm/Male.js new file mode 100644 index 00000000000000..a789e0d4a07df5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Male.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" +}), 'Male'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaleOutlined.js b/packages/material-ui-icons/lib/esm/MaleOutlined.js new file mode 100644 index 00000000000000..0755b33069339f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" +}), 'MaleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaleRounded.js b/packages/material-ui-icons/lib/esm/MaleRounded.js new file mode 100644 index 00000000000000..edcf3da64cccc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9 6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V9c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zM9.5 18C7.57 18 6 16.43 6 14.5S7.57 11 9.5 11s3.5 1.57 3.5 3.5S11.43 18 9.5 18z" +}), 'MaleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaleSharp.js b/packages/material-ui-icons/lib/esm/MaleSharp.js new file mode 100644 index 00000000000000..3569eb7d5b7d2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" +}), 'MaleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaleTwoTone.js b/packages/material-ui-icons/lib/esm/MaleTwoTone.js new file mode 100644 index 00000000000000..873330140af5f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" +}), 'MaleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageAccounts.js b/packages/material-ui-icons/lib/esm/ManageAccounts.js new file mode 100644 index 00000000000000..5c5c938e462c5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageAccounts.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.79-1.13-1.26-2.51-1.26-4 0-1.07.25-2.07.67-2.98zM20.75 16c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'ManageAccounts'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageAccountsOutlined.js b/packages/material-ui-icons/lib/esm/ManageAccountsOutlined.js new file mode 100644 index 00000000000000..c5516d538b7d67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageAccountsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 18v-.65c0-.34.16-.66.41-.81C6.1 15.53 8.03 15 10 15c.03 0 .05 0 .08.01.1-.7.3-1.37.59-1.98-.22-.02-.44-.03-.67-.03-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.42-.6-.75-1.28-.97-2H4zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm10.75 10c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'ManageAccountsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageAccountsRounded.js b/packages/material-ui-icons/lib/esm/ManageAccountsRounded.js new file mode 100644 index 00000000000000..6f76e9c7f6dccf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageAccountsRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V19c0 .55.45 1 1 1h8.26c-.79-1.13-1.26-2.51-1.26-4 0-1.07.25-2.07.67-2.98z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "4" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20.75 16c0-.22-.03-.42-.06-.63l.84-.73c.18-.16.22-.42.1-.63l-.59-1.02c-.12-.21-.37-.3-.59-.22l-1.06.36c-.32-.27-.68-.48-1.08-.63l-.22-1.09c-.05-.23-.25-.4-.49-.4h-1.18c-.24 0-.44.17-.49.4l-.22 1.09c-.4.15-.76.36-1.08.63l-1.06-.36c-.23-.08-.47.02-.59.22l-.59 1.02c-.12.21-.08.47.1.63l.84.73c-.03.21-.06.41-.06.63s.03.42.06.63l-.84.73c-.18.16-.22.42-.1.63l.59 1.02c.12.21.37.3.59.22l1.06-.36c.32.27.68.48 1.08.63l.22 1.09c.05.23.25.4.49.4h1.18c.24 0 .44-.17.49-.4l.22-1.09c.4-.15.76-.36 1.08-.63l1.06.36c.23.08.47-.02.59-.22l.59-1.02c.12-.21.08-.47-.1-.63l-.84-.73c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "2")], 'ManageAccountsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageAccountsSharp.js b/packages/material-ui-icons/lib/esm/ManageAccountsSharp.js new file mode 100644 index 00000000000000..1af39097240181 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageAccountsSharp.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.79-1.13-1.26-2.51-1.26-4 0-1.07.25-2.07.67-2.98z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "4" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20.75 16c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "2")], 'ManageAccountsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageAccountsTwoTone.js b/packages/material-ui-icons/lib/esm/ManageAccountsTwoTone.js new file mode 100644 index 00000000000000..e2c245387634df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageAccountsTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 16c0-.34.03-.67.08-.99-.03-.01-.05-.01-.08-.01-1.97 0-3.9.53-5.59 1.54-.25.14-.41.46-.41.81V18h6.29c-.19-.63-.29-1.3-.29-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M4 18v-.65c0-.34.16-.66.41-.81C6.1 15.53 8.03 15 10 15c.03 0 .05 0 .08.01.1-.7.3-1.37.59-1.98-.22-.02-.44-.03-.67-.03-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.42-.6-.75-1.28-.97-2H4zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm10.83 6.63-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.03-.21.06-.41.06-.63s-.03-.42-.06-.63l1.14-1-1-1.75zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "2")], 'ManageAccountsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageSearch.js b/packages/material-ui-icons/lib/esm/ManageSearch.js new file mode 100644 index 00000000000000..7d549044365b36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageSearch.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z" +}), 'ManageSearch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageSearchOutlined.js b/packages/material-ui-icons/lib/esm/ManageSearchOutlined.js new file mode 100644 index 00000000000000..394990c81e4542 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageSearchOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z" +}), 'ManageSearchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageSearchRounded.js b/packages/material-ui-icons/lib/esm/ManageSearchRounded.js new file mode 100644 index 00000000000000..e4cb038b883e20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageSearchRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 9H3c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm0 3H3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm13.88 6.29-3.12-3.12c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31-.44-3.35 2.45-6.18 5.83-5.61 1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9l3.13 3.13c.39.39.39 1.02 0 1.41-.39.39-1.03.39-1.42 0zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM3 19h8c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'ManageSearchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageSearchSharp.js b/packages/material-ui-icons/lib/esm/ManageSearchSharp.js new file mode 100644 index 00000000000000..7dd747b1a9bb0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageSearchSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z" +}), 'ManageSearchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ManageSearchTwoTone.js b/packages/material-ui-icons/lib/esm/ManageSearchTwoTone.js new file mode 100644 index 00000000000000..9dfbc1cc69ec35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ManageSearchTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 12h5v2H2zm16.17 1.75c.52-.79.83-1.73.83-2.75 0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.02 0 1.96-.31 2.76-.83L20.59 19 22 17.59l-3.83-3.84zM14 14c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zM2 7h5v2H2zm0 10h10v2H2z" +}), 'ManageSearchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Map.js b/packages/material-ui-icons/lib/esm/Map.js new file mode 100644 index 00000000000000..92b0ee851886eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Map.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM15 19l-6-2.11V5l6 2.11V19z" +}), 'Map'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapOutlined.js b/packages/material-ui-icons/lib/esm/MapOutlined.js new file mode 100644 index 00000000000000..ad81e0709730ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99 3-1.01v11.7l-3 1.16V6.46zm14 11.08-3 1.01V6.86l3-1.16v11.84z" +}), 'MapOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapRounded.js b/packages/material-ui-icons/lib/esm/MapRounded.js new file mode 100644 index 00000000000000..a6e59762e57db9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.65 4.98-5-1.75c-.42-.15-.88-.15-1.3-.01L4.36 4.56C3.55 4.84 3 5.6 3 6.46v11.85c0 1.41 1.41 2.37 2.72 1.86l2.93-1.14c.22-.09.47-.09.69-.01l5 1.75c.42.15.88.15 1.3.01l3.99-1.34c.81-.27 1.36-1.04 1.36-1.9V5.69c0-1.41-1.41-2.37-2.72-1.86l-2.93 1.14c-.22.08-.46.09-.69.01zM15 18.89l-6-2.11V5.11l6 2.11v11.67z" +}), 'MapRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapSharp.js b/packages/material-ui-icons/lib/esm/MapSharp.js new file mode 100644 index 00000000000000..5c281613a28eb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 5.1 9 3 3 5.02v16.2l6-2.33 6 2.1 6-2.02V2.77L15 5.1zm0 13.79-6-2.11V5.11l6 2.11v11.67z" +}), 'MapSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapTwoTone.js b/packages/material-ui-icons/lib/esm/MapTwoTone.js new file mode 100644 index 00000000000000..ade387331118c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5 18.31 3-1.16V5.45L5 6.46zm11 .24 3-1.01V5.69l-3 1.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM8 17.15l-3 1.16V6.46l3-1.01v11.7zm6 1.38-4-1.4V5.47l4 1.4v11.66zm5-.99-3 1.01V6.86l3-1.16v11.84z" +}, "1")], 'MapTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsHomeWork.js b/packages/material-ui-icons/lib/esm/MapsHomeWork.js new file mode 100644 index 00000000000000..d0856aec1fb61e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsHomeWork.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1 11v10h5v-6h4v6h5V11L8 6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" +}, "1")], 'MapsHomeWork'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsHomeWorkOutlined.js b/packages/material-ui-icons/lib/esm/MapsHomeWorkOutlined.js new file mode 100644 index 00000000000000..7cd50d4366cfc5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsHomeWorkOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 7h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM1 11v10h6v-5h2v5h6V11L8 6l-7 5zm12 8h-2v-5H5v5H3v-7l5-3.5 5 3.5v7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.97l2 1.43V5h9v14h-4v2h6V3z" +}, "1")], 'MapsHomeWorkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsHomeWorkRounded.js b/packages/material-ui-icons/lib/esm/MapsHomeWorkRounded.js new file mode 100644 index 00000000000000..bb6b8f7775583a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsHomeWorkRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m14.16 10.4-5-3.57c-.7-.5-1.63-.5-2.32 0l-5 3.57c-.53.38-.84.98-.84 1.63V20c0 .55.45 1 1 1h4v-6h4v6h4c.55 0 1-.45 1-1v-7.97c0-.65-.31-1.25-.84-1.63z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.03 3h-9.06C10.88 3 10 3.88 10 4.97l.09.09c.08.05.16.09.24.14l5 3.57c.76.54 1.3 1.34 1.54 2.23H19v2h-2v2h2v2h-2v4h4.03c1.09 0 1.97-.88 1.97-1.97V4.97C23 3.88 22.12 3 21.03 3zM19 9h-2V7h2v2z" +}, "1")], 'MapsHomeWorkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsHomeWorkSharp.js b/packages/material-ui-icons/lib/esm/MapsHomeWorkSharp.js new file mode 100644 index 00000000000000..81793c79da16ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsHomeWorkSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1 11v10h5v-6h4v6h5V11L8 6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" +}, "1")], 'MapsHomeWorkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsHomeWorkTwoTone.js b/packages/material-ui-icons/lib/esm/MapsHomeWorkTwoTone.js new file mode 100644 index 00000000000000..4da6b463e89cf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsHomeWorkTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 11h2v2h-2v2h2v2h-2v2h4V5h-9v1.4l5 3.57V11zm0-4h2v2h-2V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3v1.97l.96.69L12 6.4V5h9v14h-4v2h6V3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M3 12v7h2v-5h6v5h2v-7L8 8.5z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M17 7h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM1 11v10h6v-5h2v5h6V11L8 6l-7 5zm12 8h-2v-5H5v5H3v-7l5-3.5 5 3.5v7z" +}, "3")], 'MapsHomeWorkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsUgc.js b/packages/material-ui-icons/lib/esm/MapsUgc.js new file mode 100644 index 00000000000000..8e6a3bfaadfd0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsUgc.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M12 2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2zm4 11h-3v3h-2v-3H8v-2h3V8h2v3h3v2z" +}), 'MapsUgc'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsUgcOutlined.js b/packages/material-ui-icons/lib/esm/MapsUgcOutlined.js new file mode 100644 index 00000000000000..1aeecf4a69aff6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsUgcOutlined.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}, "1")], 'MapsUgcOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsUgcRounded.js b/packages/material-ui-icons/lib/esm/MapsUgcRounded.js new file mode 100644 index 00000000000000..c105cf83bf1f32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsUgcRounded.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c4.97 0 8.9 4.56 7.82 9.72-.68 3.23-3.4 5.74-6.67 6.2-1.59.22-3.14-.01-4.58-.7-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-2.31.68c-.38.11-.74-.24-.63-.63l.7-2.39c.13-.45.07-.92-.14-1.35C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29l-1.46 4.96c-.22.75.49 1.46 1.25 1.23l4.96-1.46c1.66.79 3.56 1.15 5.58.89 4.56-.59 8.21-4.35 8.66-8.92C22.53 7.03 17.85 2 12 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M12 8c-.55 0-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V9c0-.55-.45-1-1-1z" +}, "1")], 'MapsUgcRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsUgcSharp.js b/packages/material-ui-icons/lib/esm/MapsUgcSharp.js new file mode 100644 index 00000000000000..e40ce475ce0c58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsUgcSharp.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}, "1")], 'MapsUgcSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MapsUgcTwoTone.js b/packages/material-ui-icons/lib/esm/MapsUgcTwoTone.js new file mode 100644 index 00000000000000..368f6dae786d56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MapsUgcTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42C4.26 14.34 4 13.18 4 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z" +}, "1"), /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}, "2")], 'MapsUgcTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Margin.js b/packages/material-ui-icons/lib/esm/Margin.js new file mode 100644 index 00000000000000..93a3aa96ae295a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Margin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" +}), 'Margin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarginOutlined.js b/packages/material-ui-icons/lib/esm/MarginOutlined.js new file mode 100644 index 00000000000000..61d266df8a1034 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarginOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2V7zM7 7h2v2H7V7zm8 0h2v2h-2V7zm-8 4h2v2H7v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z" +}), 'MarginOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarginRounded.js b/packages/material-ui-icons/lib/esm/MarginRounded.js new file mode 100644 index 00000000000000..715e9d7df24cea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarginRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm6 3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm0 4c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}), 'MarginRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarginSharp.js b/packages/material-ui-icons/lib/esm/MarginSharp.js new file mode 100644 index 00000000000000..85880615e1f9da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarginSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm6 10H7v-2h2v2zm0-4H7V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'MarginSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarginTwoTone.js b/packages/material-ui-icons/lib/esm/MarginTwoTone.js new file mode 100644 index 00000000000000..6d3e4de457eab1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarginTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zM15 7h2v2h-2V7zm0 4h2v2h-2v-2zm-4-4h2v2h-2V7zm0 4h2v2h-2v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 7h2v2H7zm0 4h2v2H7z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm16 16H5V5h14v14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v2h-2zm4 4h2v2h-2zm-4 0h2v2h-2zm4-4h2v2h-2z" +}, "3")], 'MarginTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkAsUnread.js b/packages/material-ui-icons/lib/esm/MarkAsUnread.js new file mode 100644 index 00000000000000..db817a22e529fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkAsUnread.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.83 7h-2.6L10.5 4 4 7.4V17c-1.1 0-2-.9-2-2V7.17c0-.53.32-1.09.8-1.34L10.5 2l7.54 3.83c.43.23.73.7.79 1.17zM20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.67L13.5 15 7 11.67V10l6.5 3.33L20 10v1.67z" +}), 'MarkAsUnread'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkAsUnreadOutlined.js b/packages/material-ui-icons/lib/esm/MarkAsUnreadOutlined.js new file mode 100644 index 00000000000000..e5ad4c32814b78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkAsUnreadOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.23 7h2.6c-.06-.47-.36-.94-.79-1.17L10.5 2 2.8 5.83c-.48.26-.8.81-.8 1.34V15c0 1.1.9 2 2 2V7.4L10.5 4l5.73 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11H7v-7l6.5 3.33L20 12v7zm-6.5-5.67L7 10h13l-6.5 3.33z" +}, "1")], 'MarkAsUnreadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkAsUnreadRounded.js b/packages/material-ui-icons/lib/esm/MarkAsUnreadRounded.js new file mode 100644 index 00000000000000..5f041bf06c2400 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkAsUnreadRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.23 7h2.6c-.06-.47-.36-.94-.79-1.17L11.4 2.45c-.56-.29-1.23-.29-1.8-.01L2.8 5.83c-.48.26-.8.81-.8 1.34V15c0 1.1.9 2 2 2V7.4L10.5 4l5.73 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.46c0 .33-.19.64-.48.79l-5.61 2.88c-.25.13-.56.13-.81 0l-5.61-2.88c-.3-.15-.49-.46-.49-.79 0-.67.7-1.1 1.3-.79l5.2 2.67 5.2-2.67c.6-.31 1.3.12 1.3.79z" +}, "1")], 'MarkAsUnreadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkAsUnreadSharp.js b/packages/material-ui-icons/lib/esm/MarkAsUnreadSharp.js new file mode 100644 index 00000000000000..70d9854d3bfcff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkAsUnreadSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.23 7h4.12L10.5 2 2 6.21V17h2V7.4L10.5 4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 8v13h17V8H5zm15 4-6.5 3.33L7 12v-2l6.5 3.33L20 10v2z" +}, "1")], 'MarkAsUnreadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkAsUnreadTwoTone.js b/packages/material-ui-icons/lib/esm/MarkAsUnreadTwoTone.js new file mode 100644 index 00000000000000..25135f70cb218e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkAsUnreadTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 13.33 20 10H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 12v7h13v-7l-6.5 3.33z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16.23 7h2.6c-.06-.47-.36-.94-.79-1.17L10.5 2 2.8 5.83c-.48.26-.8.81-.8 1.34V15c0 1.1.9 2 2 2V7.4L10.5 4l5.73 3z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11H7v-7l6.5 3.33L20 12v7zm-6.5-5.67L7 10h13l-6.5 3.33z" +}, "3")], 'MarkAsUnreadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatRead.js b/packages/material-ui-icons/lib/esm/MarkChatRead.js new file mode 100644 index 00000000000000..d8bf1789ebcff9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatRead.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.34 20-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 14.34 17.34 20zM12 17c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.17.01-.33.03-.5-.02-.16-.03-.33-.03-.5z" +}), 'MarkChatRead'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatReadOutlined.js b/packages/material-ui-icons/lib/esm/MarkChatReadOutlined.js new file mode 100644 index 00000000000000..32c7026aa6aaaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatReadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 18H6l-4 4V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v7h-2V4H4v12h8v2zm11-3.66-1.41-1.41-4.24 4.24-2.12-2.12-1.41 1.41L17.34 20 23 14.34z" +}), 'MarkChatReadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatReadRounded.js b/packages/material-ui-icons/lib/esm/MarkChatReadRounded.js new file mode 100644 index 00000000000000..01063ffcf0551a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatReadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.05 19.29c-.39.39-1.02.39-1.41 0l-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.25zM12 17c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.17.01-.33.03-.5-.02-.17-.03-.33-.03-.5z" +}), 'MarkChatReadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatReadSharp.js b/packages/material-ui-icons/lib/esm/MarkChatReadSharp.js new file mode 100644 index 00000000000000..ffc1d71ac6ea84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatReadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.03 17.5c-.02.17-.03.33-.03.5H6l-4 4V2h20v8.68c-.91-.43-1.92-.68-3-.68-3.87 0-7 3.13-7 7 0 .17.01.33.03.5zM23 14.34l-1.41-1.41-4.24 4.24-2.12-2.12-1.41 1.41L17.34 20 23 14.34z" +}), 'MarkChatReadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatReadTwoTone.js b/packages/material-ui-icons/lib/esm/MarkChatReadTwoTone.js new file mode 100644 index 00000000000000..9f5a4608de9892 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatReadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 10c.34 0 .67.03 1 .08V4H4v12h8.08c.49-3.39 3.39-6 6.92-6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.34 20-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 14.34 17.34 20zm-5.26-4H4V4h16v6.08c.71.1 1.38.31 2 .6V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.14.02-.27.03-.4-.02-.2-.03-.4-.03-.6 0-.34.03-.67.08-1z" +}, "1")], 'MarkChatReadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatUnread.js b/packages/material-ui-icons/lib/esm/MarkChatUnread.js new file mode 100644 index 00000000000000..d9ee4912f17f54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatUnread.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6.98V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 2.76 2.24 5 5 5 1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkChatUnread'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatUnreadOutlined.js b/packages/material-ui-icons/lib/esm/MarkChatUnreadOutlined.js new file mode 100644 index 00000000000000..52ce58fdc251e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatUnreadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6.98V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4v12h16V7.9c.74-.15 1.42-.48 2-.92zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkChatUnreadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatUnreadRounded.js b/packages/material-ui-icons/lib/esm/MarkChatUnreadRounded.js new file mode 100644 index 00000000000000..f80dea0fcb2860 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatUnreadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6.98V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 2.76 2.24 5 5 5 1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkChatUnreadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatUnreadSharp.js b/packages/material-ui-icons/lib/esm/MarkChatUnreadSharp.js new file mode 100644 index 00000000000000..6ff28e26afea97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatUnreadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6.98V18H6l-4 4V2h12.1c-.06.32-.1.66-.1 1 0 2.76 2.24 5 5 5 1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkChatUnreadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkChatUnreadTwoTone.js b/packages/material-ui-icons/lib/esm/MarkChatUnreadTwoTone.js new file mode 100644 index 00000000000000..2ece3f0b1699b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkChatUnreadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 16h16V7.9c-.32.06-.66.1-1 .1-2.42 0-4.44-1.72-4.9-4H4v12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 7.9c.74-.15 1.42-.48 2-.92V16c0 1.1-.9 2-2 2H6l-4 4V4c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4v12h16V7.9zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}, "1")], 'MarkChatUnreadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailRead.js b/packages/material-ui-icons/lib/esm/MarkEmailRead.js new file mode 100644 index 00000000000000..34a4ecafb14273 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailRead.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h8.08c-.05-.33-.08-.66-.08-1zM4 6l8 5 8-5v2l-8 5-8-5V6zm13.34 16-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" +}), 'MarkEmailRead'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailReadOutlined.js b/packages/material-ui-icons/lib/esm/MarkEmailReadOutlined.js new file mode 100644 index 00000000000000..9f504325f2a3c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailReadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h8v-2H4V8l8 5 8-5v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm5.34 11-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" +}), 'MarkEmailReadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailReadRounded.js b/packages/material-ui-icons/lib/esm/MarkEmailReadRounded.js new file mode 100644 index 00000000000000..7d9590e0d82da8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailReadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.05 21.29c-.39.39-1.02.39-1.41 0l-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.25zM12.08 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v6.68c-.91-.43-1.92-.68-3-.68-3.87 0-7 3.13-7 7 0 .34.03.67.08 1zm-.61-7.33c.32.2.74.2 1.06 0l7.07-4.42c.25-.16.4-.43.4-.72 0-.67-.73-1.07-1.3-.72L12 11 5.3 6.81c-.57-.35-1.3.05-1.3.72 0 .29.15.56.4.72l7.07 4.42z" +}), 'MarkEmailReadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailReadSharp.js b/packages/material-ui-icons/lib/esm/MarkEmailReadSharp.js new file mode 100644 index 00000000000000..77eca10f92ca39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailReadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c0-3.87 3.13-7 7-7 1.08 0 2.09.25 3 .68V4H2v16h10.08c-.05-.33-.08-.66-.08-1zM4 6l8 5 8-5v2l-8 5-8-5V6zm13.34 16-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" +}), 'MarkEmailReadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailReadTwoTone.js b/packages/material-ui-icons/lib/esm/MarkEmailReadTwoTone.js new file mode 100644 index 00000000000000..2e15ee1f054f74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailReadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 8v4.08c-.33-.05-.66-.08-1-.08-3.53 0-6.43 2.61-6.92 6H4V8l8 5 8-5zm0-2H4l8 5 8-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.08 18H4V8l8 5 8-5v4.08c.71.1 1.38.31 2 .6V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h8.08c-.05-.33-.08-.66-.08-1s.03-.67.08-1zM20 6l-8 5-8-5h16zm-2.66 16-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" +}, "1")], 'MarkEmailReadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailUnread.js b/packages/material-ui-icons/lib/esm/MarkEmailUnread.js new file mode 100644 index 00000000000000..d7cde2f6876cab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailUnread.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 8.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 4 6v2l8 5 5.3-3.32c.54.2 1.1.32 1.7.32 1.13 0 2.16-.39 3-1.02zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkEmailUnread'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailUnreadOutlined.js b/packages/material-ui-icons/lib/esm/MarkEmailUnreadOutlined.js new file mode 100644 index 00000000000000..15176de0c4e9a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailUnreadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 8.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4l8 5 3.67-2.29c.47.43 1.02.76 1.63.98L12 13 4 8v10h16V9.9c.74-.15 1.42-.48 2-.92zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkEmailUnreadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailUnreadRounded.js b/packages/material-ui-icons/lib/esm/MarkEmailUnreadRounded.js new file mode 100644 index 00000000000000..9ca2be28977dbf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailUnreadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 10c1.13 0 2.16-.39 3-1.02V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 5.3 6.81c-.57-.35-1.3.05-1.3.72 0 .29.15.56.4.72l7.07 4.42c.32.2.74.2 1.06 0l4.77-2.98c.54.19 1.1.31 1.7.31zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkEmailUnreadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailUnreadSharp.js b/packages/material-ui-icons/lib/esm/MarkEmailUnreadSharp.js new file mode 100644 index 00000000000000..8335491f590c26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailUnreadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 8.98V20H2V4h12.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 4 6v2l8 5 5.3-3.32c.54.2 1.1.32 1.7.32 1.13 0 2.16-.39 3-1.02zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'MarkEmailUnreadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkEmailUnreadTwoTone.js b/packages/material-ui-icons/lib/esm/MarkEmailUnreadTwoTone.js new file mode 100644 index 00000000000000..6a968141e0a55e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkEmailUnreadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6h10.1c.22 1.07.79 2 1.57 2.71L12 11 4 6zm0 2v10h16V9.9c-.32.07-.66.1-1 .1-.6 0-1.16-.12-1.7-.32L12 13 4 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 9.9c.74-.15 1.42-.48 2-.92V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1s.04.68.1 1H4l8 5 3.67-2.29c.47.43 1.02.76 1.63.98L12 13 4 8v10h16V9.9zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}, "1")], 'MarkEmailUnreadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Markunread.js b/packages/material-ui-icons/lib/esm/Markunread.js new file mode 100644 index 00000000000000..02b3570743e2ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Markunread.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z" +}), 'Markunread'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadMailbox.js b/packages/material-ui-icons/lib/esm/MarkunreadMailbox.js new file mode 100644 index 00000000000000..2ae8d74163d1ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadMailbox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6H10v6H8V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" +}), 'MarkunreadMailbox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadMailboxOutlined.js b/packages/material-ui-icons/lib/esm/MarkunreadMailboxOutlined.js new file mode 100644 index 00000000000000..b679e28b824057 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadMailboxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" +}), 'MarkunreadMailboxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadMailboxRounded.js b/packages/material-ui-icons/lib/esm/MarkunreadMailboxRounded.js new file mode 100644 index 00000000000000..97529392617579 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadMailboxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6H10v5c0 .55-.45 1-1 1s-1-.45-1-1V4h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" +}), 'MarkunreadMailboxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadMailboxSharp.js b/packages/material-ui-icons/lib/esm/MarkunreadMailboxSharp.js new file mode 100644 index 00000000000000..6874420cd3d04b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadMailboxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H10v6H8V4h6V0H6v6H2v16h20V6z" +}), 'MarkunreadMailboxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadMailboxTwoTone.js b/packages/material-ui-icons/lib/esm/MarkunreadMailboxTwoTone.js new file mode 100644 index 00000000000000..0f97abdfdb4327 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadMailboxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 12H6V8H4v12h16V8H10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" +}, "1")], 'MarkunreadMailboxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadOutlined.js b/packages/material-ui-icons/lib/esm/MarkunreadOutlined.js new file mode 100644 index 00000000000000..3b95d7152f6dc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" +}), 'MarkunreadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadRounded.js b/packages/material-ui-icons/lib/esm/MarkunreadRounded.js new file mode 100644 index 00000000000000..e73045a67e1dfd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z" +}), 'MarkunreadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadSharp.js b/packages/material-ui-icons/lib/esm/MarkunreadSharp.js new file mode 100644 index 00000000000000..d58fafbd70e934 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zm-2 4-8 5-8-5V6l8 5 8-5v2z" +}), 'MarkunreadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MarkunreadTwoTone.js b/packages/material-ui-icons/lib/esm/MarkunreadTwoTone.js new file mode 100644 index 00000000000000..52e9d13b98e4ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MarkunreadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6H4l8 5zM4 8v10h16V8l-8 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z" +}, "1")], 'MarkunreadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Masks.js b/packages/material-ui-icons/lib/esm/Masks.js new file mode 100644 index 00000000000000..6e70163ab0c103 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Masks.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm17 0c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" +}), 'Masks'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MasksOutlined.js b/packages/material-ui-icons/lib/esm/MasksOutlined.js new file mode 100644 index 00000000000000..704bfb282e7a1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MasksOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zM7 11.5V9.85c1.12-.23 1.95-.69 2.66-1.08C10.48 8.33 11.07 8 12 8c.93 0 1.52.33 2.34.78.71.39 1.54.84 2.66 1.08v1.65c0 2.76-2.24 5-5 5s-5-2.25-5-5.01zM20.5 9c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" +}), 'MasksOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MasksRounded.js b/packages/material-ui-icons/lib/esm/MasksRounded.js new file mode 100644 index 00000000000000..f2ba3e34ad389d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MasksRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm10.8 2.01c-.4-.17-.72-.36-1.01-.53-.46-.28-.8-.48-1.29-.48s-.84.2-1.31.48c-.28.17-.6.35-.98.51-.34.15-.71-.08-.71-.45 0-.2.11-.38.29-.45.34-.14.62-.31.88-.46C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.27.16.55.33.9.48.18.08.29.26.29.45.01.36-.36.6-.69.46zM20.5 9c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9z" +}), 'MasksRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MasksSharp.js b/packages/material-ui-icons/lib/esm/MasksSharp.js new file mode 100644 index 00000000000000..40b92bee5efd88 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MasksSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm17 0c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" +}), 'MasksSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MasksTwoTone.js b/packages/material-ui-icons/lib/esm/MasksTwoTone.js new file mode 100644 index 00000000000000..01a0153850cf21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MasksTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.34 8.78C13.52 8.33 12.93 8 12 8c-.93 0-1.52.33-2.34.77-.71.39-1.54.85-2.66 1.08v1.65c0 2.76 2.24 5 5 5s5-2.24 5-5V9.85c-1.12-.23-1.95-.69-2.66-1.07zm.66 2.47c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6 3.12 6 2 7.12 2 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5C22 7.12 20.88 6 19.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zM7 11.5V9.85c1.12-.23 1.95-.69 2.66-1.08C10.48 8.33 11.07 8 12 8c.93 0 1.52.33 2.34.78.71.39 1.54.84 2.66 1.08v1.65c0 2.76-2.24 5-5 5s-5-2.25-5-5.01zM20.5 9c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" +}, "1")], 'MasksTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Maximize.js b/packages/material-ui-icons/lib/esm/Maximize.js new file mode 100644 index 00000000000000..819d6695acc336 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Maximize.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3z" +}), 'Maximize'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaximizeOutlined.js b/packages/material-ui-icons/lib/esm/MaximizeOutlined.js new file mode 100644 index 00000000000000..42750b25bf6d1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaximizeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3V3z" +}), 'MaximizeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaximizeRounded.js b/packages/material-ui-icons/lib/esm/MaximizeRounded.js new file mode 100644 index 00000000000000..f5386d1385fc89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaximizeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 3h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'MaximizeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaximizeSharp.js b/packages/material-ui-icons/lib/esm/MaximizeSharp.js new file mode 100644 index 00000000000000..13d16048590dba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaximizeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3V3z" +}), 'MaximizeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MaximizeTwoTone.js b/packages/material-ui-icons/lib/esm/MaximizeTwoTone.js new file mode 100644 index 00000000000000..9f36b77fc945cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MaximizeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3h18v2H3V3z" +}), 'MaximizeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOff.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOff.js new file mode 100644 index 00000000000000..0a308fce74e72d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm2.02 7.64-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l18.39 18.38z" +}), 'MediaBluetoothOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOffOutlined.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOffOutlined.js new file mode 100644 index 00000000000000..7454b2b58129ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm2.02 7.64-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l18.39 18.38z" +}), 'MediaBluetoothOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOffRounded.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOffRounded.js new file mode 100644 index 00000000000000..26ac0f2a3e5bc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V5c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2s-.9 2-2 2h-2v1.17l-2-2zM19.42 15l2.18 2.17c.22.22.22.58 0 .8-.22.22-.58.22-.8 0l-5.98-5.98c-.22-.22-.22-.58 0-.8.22-.22.58-.22.8 0l2.35 2.35V9.61c0-.45.54-.67.85-.35l2.82 2.82c.2.2.2.51 0 .71L19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm1.32 6.94c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-3.28-3.28-.16.16c-.23.23-.62.23-.85 0-.23-.23-.23-.62 0-.85l.16-.16L11 13.83v3.02c0 2.07-1.68 4.01-3.74 4.14C4.94 21.13 3 19.29 3 17c0-2.21 1.79-4 4.01-4 .73 0 1.41.21 2 .55v-1.72L2.1 4.92a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.98 16.98z" +}), 'MediaBluetoothOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOffSharp.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOffSharp.js new file mode 100644 index 00000000000000..ad054616a34b99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm-1.96 3.66 3.98 3.98-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l13.56 13.56.85.84z" +}), 'MediaBluetoothOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOffTwoTone.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOffTwoTone.js new file mode 100644 index 00000000000000..bf88606cead5ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15 22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45 1.13-1.13-1.13-1.13v2.26zm-1.96 3.66 3.98 3.98-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l13.56 13.56.85.84z" +}), 'MediaBluetoothOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOn.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOn.js new file mode 100644 index 00000000000000..f09633ddc5ce12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" +}), 'MediaBluetoothOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOnOutlined.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOnOutlined.js new file mode 100644 index 00000000000000..cab423f3a4e56d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" +}), 'MediaBluetoothOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOnRounded.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOnRounded.js new file mode 100644 index 00000000000000..d56f81c22ff811 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 5 .01 8.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2zm11.29 6.72-2.47-2.47c-.32-.31-.85-.09-.85.35v3.94l-2.33-2.33c-.23-.23-.61-.23-.85 0-.23.23-.23.62 0 .85L16.73 15l-2.93 2.93c-.23.23-.23.61 0 .85.23.23.61.23.85 0l2.33-2.33v3.94c0 .45.54.67.85.35l2.46-2.46c.39-.39.39-1.02 0-1.41L18.42 15l1.87-1.86c.39-.39.39-1.03 0-1.42zm-2.12-.42 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" +}), 'MediaBluetoothOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOnSharp.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOnSharp.js new file mode 100644 index 00000000000000..006d9aefdc75d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" +}), 'MediaBluetoothOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediaBluetoothOnTwoTone.js b/packages/material-ui-icons/lib/esm/MediaBluetoothOnTwoTone.js new file mode 100644 index 00000000000000..e067bea04865f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediaBluetoothOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 3 .01 10.55c-.6-.34-1.28-.55-2-.55C4.79 13 3 14.79 3 17s1.79 4 4.01 4S11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13 1.13 1.13-1.13 1.13V11.3zm1.13 6.27-1.13 1.13v-2.26l1.13 1.13z" +}), 'MediaBluetoothOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mediation.js b/packages/material-ui-icons/lib/esm/Mediation.js new file mode 100644 index 00000000000000..9bc5105126e1ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mediation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 12-4 4-1.41-1.41L18.17 13h-5.23c-.34 3.1-2.26 5.72-4.94 7.05C7.96 21.69 6.64 23 5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05h5.23l-1.58-1.59L18 8l4 4z" +}), 'Mediation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediationOutlined.js b/packages/material-ui-icons/lib/esm/MediationOutlined.js new file mode 100644 index 00000000000000..a0615561d294a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 16 4-4-4-4v3h-5.06C12.6 7.9 10.68 5.28 8 3.95 7.96 2.31 6.64 1 5 1 3.34 1 2 2.34 2 4s1.34 3 3 3c.95 0 1.78-.45 2.33-1.14C9.23 6.9 10.6 8.77 10.92 11h-3.1C7.4 9.84 6.3 9 5 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2h3.1c-.32 2.23-1.69 4.1-3.58 5.14C6.78 17.45 5.95 17 5 17c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.64 0 2.96-1.31 2.99-2.95 2.68-1.33 4.6-3.95 4.94-7.05H18v3z" +}), 'MediationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediationRounded.js b/packages/material-ui-icons/lib/esm/MediationRounded.js new file mode 100644 index 00000000000000..e21eccd9aa67df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13h-5.06c-.34 3.1-2.26 5.72-4.94 7.05-.03 1.81-1.66 3.23-3.55 2.9-1.2-.21-2.19-1.2-2.4-2.4C1.71 18.65 3.16 17 5 17c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1c-.48 1.34-1.86 2.24-3.42 1.94-1.18-.23-2.13-1.2-2.35-2.38C1.7 10.66 3.16 9 5 9c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14-.64.8-1.67 1.28-2.81 1.1-1.23-.19-2.26-1.19-2.47-2.42C1.72 2.65 3.17 1 5 1c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05H18V9.21c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36V13z" +}), 'MediationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediationSharp.js b/packages/material-ui-icons/lib/esm/MediationSharp.js new file mode 100644 index 00000000000000..96308634d45ae8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13h-5.06c-.34 3.1-2.26 5.72-4.94 7.05C7.96 21.69 6.64 23 5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05H18V8l4 4-4 4v-3z" +}), 'MediationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MediationTwoTone.js b/packages/material-ui-icons/lib/esm/MediationTwoTone.js new file mode 100644 index 00000000000000..d9e72f643a4b3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MediationTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 16 4-4-4-4v3h-5.06C12.6 7.9 10.68 5.28 8 3.95 7.96 2.31 6.64 1 5 1 3.34 1 2 2.34 2 4s1.34 3 3 3c.95 0 1.78-.45 2.33-1.14C9.23 6.9 10.6 8.77 10.92 11h-3.1C7.4 9.84 6.3 9 5 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2h3.1c-.32 2.23-1.69 4.1-3.58 5.14C6.78 17.45 5.95 17 5 17c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.64 0 2.96-1.31 2.99-2.95 2.68-1.33 4.6-3.95 4.94-7.05H18v3z" +}), 'MediationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicalServices.js b/packages/material-ui-icons/lib/esm/MedicalServices.js new file mode 100644 index 00000000000000..3701faf50664bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicalServices.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm6 11h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" +}), 'MedicalServices'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicalServicesOutlined.js b/packages/material-ui-icons/lib/esm/MedicalServicesOutlined.js new file mode 100644 index 00000000000000..7afa3c1cc9aadc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicalServicesOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 10h-2v3H8v2h3v3h2v-3h3v-2h-3z" +}, "1")], 'MedicalServicesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicalServicesRounded.js b/packages/material-ui-icons/lib/esm/MedicalServicesRounded.js new file mode 100644 index 00000000000000..76a470e338c8d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicalServicesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm5 11h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'MedicalServicesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicalServicesSharp.js b/packages/material-ui-icons/lib/esm/MedicalServicesSharp.js new file mode 100644 index 00000000000000..097c171a9660a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicalServicesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6V2H8v4H2v16h20V6h-6zm-6-2h4v2h-4V4zm6 11h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" +}), 'MedicalServicesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicalServicesTwoTone.js b/packages/material-ui-icons/lib/esm/MedicalServicesTwoTone.js new file mode 100644 index 00000000000000..fe5bd356ee8749 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicalServicesTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V8H4v12zm4-7h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 18h2v-3h3v-2h-3v-3h-2v3H8v2h3z" +}, "2")], 'MedicalServicesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Medication.js b/packages/material-ui-icons/lib/esm/Medication.js new file mode 100644 index 00000000000000..10e0e446f9755a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Medication.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3h12v2H6zm11 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16v3z" +}), 'Medication'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicationOutlined.js b/packages/material-ui-icons/lib/esm/MedicationOutlined.js new file mode 100644 index 00000000000000..d01b1504ad092a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 15H8v-3h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15zM19 8v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2zm-2 0H7v11h10V8zm1-5H6v2h12V3z" +}), 'MedicationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicationRounded.js b/packages/material-ui-icons/lib/esm/MedicationRounded.js new file mode 100644 index 00000000000000..4367c2cbd35132 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.5 9h-1v1c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-1h-1c-.83 0-1.5-.67-1.5-1.5S8.67 12 9.5 12h1v-1c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1h1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" +}), 'MedicationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicationSharp.js b/packages/material-ui-icons/lib/esm/MedicationSharp.js new file mode 100644 index 00000000000000..bf868717f73a3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3h12v2H6zm13 3H5v15h14V6zm-3 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16v3z" +}), 'MedicationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MedicationTwoTone.js b/packages/material-ui-icons/lib/esm/MedicationTwoTone.js new file mode 100644 index 00000000000000..4c4d5071568c4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MedicationTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h10V8H7v11zm1-7h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15H8v-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 3h12v2H6zm11 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 13H7V8h10v11z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10.5 17.5h3V15H16v-3h-2.5V9.5h-3V12H8v3h2.5z" +}, "2")], 'MedicationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MeetingRoom.js b/packages/material-ui-icons/lib/esm/MeetingRoom.js new file mode 100644 index 00000000000000..0fe5da7d9c22c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MeetingRoom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z" +}), 'MeetingRoom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MeetingRoomOutlined.js b/packages/material-ui-icons/lib/esm/MeetingRoomOutlined.js new file mode 100644 index 00000000000000..020d857fe616d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MeetingRoomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z" +}), 'MeetingRoomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MeetingRoomRounded.js b/packages/material-ui-icons/lib/esm/MeetingRoomRounded.js new file mode 100644 index 00000000000000..f70d404805155b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MeetingRoomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 19h-1V5c0-.55-.45-1-1-1h-4c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v15H4c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1V6h3v14c0 .55.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1zm-9-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'MeetingRoomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MeetingRoomSharp.js b/packages/material-ui-icons/lib/esm/MeetingRoomSharp.js new file mode 100644 index 00000000000000..ae5a5ea09f4bac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MeetingRoomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z" +}), 'MeetingRoomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MeetingRoomTwoTone.js b/packages/material-ui-icons/lib/esm/MeetingRoomTwoTone.js new file mode 100644 index 00000000000000..e1efb99609e48c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MeetingRoomTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h6V5H7v14zm3-8h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z" +}, "1")], 'MeetingRoomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Memory.js b/packages/material-ui-icons/lib/esm/Memory.js new file mode 100644 index 00000000000000..8e8b5e88817154 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Memory.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z" +}), 'Memory'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MemoryOutlined.js b/packages/material-ui-icons/lib/esm/MemoryOutlined.js new file mode 100644 index 00000000000000..2a9232d916aac5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MemoryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z" +}), 'MemoryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MemoryRounded.js b/packages/material-ui-icons/lib/esm/MemoryRounded.js new file mode 100644 index 00000000000000..9e4459a5905476 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MemoryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 4h-2v-2h2v2zm8-3c0-.55-.45-1-1-1h-1V7c0-1.1-.9-2-2-2h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v1H7c-1.1 0-2 .9-2 2v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2c0 1.1.9 2 2 2h2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2c1.1 0 2-.9 2-2v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1zm-5 7H8c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z" +}), 'MemoryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MemorySharp.js b/packages/material-ui-icons/lib/esm/MemorySharp.js new file mode 100644 index 00000000000000..dde50f005a71c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MemorySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V5h-4V3h-2v2h-2V3H9v2H5v4H3v2h2v2H3v2h2v4h4v2h2v-2h2v2h2v-2h4v-4h2v-2h-2v-2h2zm-4 6H7V7h10v10z" +}), 'MemorySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MemoryTwoTone.js b/packages/material-ui-icons/lib/esm/MemoryTwoTone.js new file mode 100644 index 00000000000000..ac0211a212cfa1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MemoryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h10V7H7v10zm2-8h6v6H9V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 11V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10zm-2-8H9v6h6V9zm-2 4h-2v-2h2v2z" +}, "1")], 'MemoryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Menu.js b/packages/material-ui-icons/lib/esm/Menu.js new file mode 100644 index 00000000000000..030ec7cced3f5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Menu.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" +}), 'Menu'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuBook.js b/packages/material-ui-icons/lib/esm/MenuBook.js new file mode 100644 index 00000000000000..0e1ebc4df4d750 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuBook.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z" +}, "1")], 'MenuBook'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuBookOutlined.js b/packages/material-ui-icons/lib/esm/MenuBookOutlined.js new file mode 100644 index 00000000000000..1e3e6d5600d8ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuBookOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z" +}, "1")], 'MenuBookOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuBookRounded.js b/packages/material-ui-icons/lib/esm/MenuBookRounded.js new file mode 100644 index 00000000000000..723bc12ecd4fda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuBookRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.5 4.5c-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5-1.45 0-2.99.22-4.28.79C1.49 5.62 1 6.33 1 7.14v11.28c0 1.3 1.22 2.26 2.48 1.94.98-.25 2.02-.36 3.02-.36 1.56 0 3.22.26 4.56.92.6.3 1.28.3 1.87 0 1.34-.67 3-.92 4.56-.92 1 0 2.04.11 3.02.36 1.26.33 2.48-.63 2.48-1.94V7.14c0-.81-.49-1.52-1.22-1.85-1.28-.57-2.82-.79-4.27-.79zM21 17.23c0 .63-.58 1.09-1.2.98-.75-.14-1.53-.2-2.3-.2-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5.92 0 1.83.09 2.7.28.46.1.8.51.8.98v9.47z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.98 11.01c-.32 0-.61-.2-.71-.52-.13-.39.09-.82.48-.94 1.54-.5 3.53-.66 5.36-.45.41.05.71.42.66.83-.05.41-.42.71-.83.66-1.62-.19-3.39-.04-4.73.39-.08.01-.16.03-.23.03zm0 2.66c-.32 0-.61-.2-.71-.52-.13-.39.09-.82.48-.94 1.53-.5 3.53-.66 5.36-.45.41.05.71.42.66.83-.05.41-.42.71-.83.66-1.62-.19-3.39-.04-4.73.39-.08.02-.16.03-.23.03zm0 2.66c-.32 0-.61-.2-.71-.52-.13-.39.09-.82.48-.94 1.53-.5 3.53-.66 5.36-.45.41.05.71.42.66.83-.05.41-.42.7-.83.66-1.62-.19-3.39-.04-4.73.39-.08.02-.16.03-.23.03z" +}, "1")], 'MenuBookRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuBookSharp.js b/packages/material-ui-icons/lib/esm/MenuBookSharp.js new file mode 100644 index 00000000000000..7c9dcb47363c4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuBookSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z" +}, "1")], 'MenuBookSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuBookTwoTone.js b/packages/material-ui-icons/lib/esm/MenuBookTwoTone.js new file mode 100644 index 00000000000000..0f3644b9023425 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuBookTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zM3 18.5V7c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99v11.5C9.63 18.41 7.84 18 6.5 18c-1.2 0-2.4.15-3.5.5zm18 0c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.13.41-4.5.99V7.49c1.37-.59 3.16-.99 4.5-.99 1.2 0 2.4.15 3.5.5v11.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 7.49c-1.37-.58-3.16-.99-4.5-.99-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99V7.49z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.28 0-2.46.16-3.5.47v1.57c.99-.35 2.18-.54 3.5-.54zm0 2.66c.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.28 0-2.46.16-3.5.47v1.57c.99-.34 2.18-.54 3.5-.54zm0 2.67c.88 0 1.73.09 2.5.26v-1.52c-.79-.15-1.64-.24-2.5-.24-1.28 0-2.46.16-3.5.47v1.57c.99-.35 2.18-.54 3.5-.54z" +}, "2")], 'MenuBookTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuOpen.js b/packages/material-ui-icons/lib/esm/MenuOpen.js new file mode 100644 index 00000000000000..1703dabdf04ff8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuOpen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" +}), 'MenuOpen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuOpenOutlined.js b/packages/material-ui-icons/lib/esm/MenuOpenOutlined.js new file mode 100644 index 00000000000000..d8867da3612621 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuOpenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" +}), 'MenuOpenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuOpenRounded.js b/packages/material-ui-icons/lib/esm/MenuOpenRounded.js new file mode 100644 index 00000000000000..1dbc7f8abc3a83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuOpenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 18h11c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h8c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm17.3 7.88L17.42 12l2.88-2.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L15.3 11.3c-.39.39-.39 1.02 0 1.41l3.59 3.59c.39.39 1.02.39 1.41 0 .38-.39.39-1.03 0-1.42z" +}), 'MenuOpenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuOpenSharp.js b/packages/material-ui-icons/lib/esm/MenuOpenSharp.js new file mode 100644 index 00000000000000..a4a02f50a955d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuOpenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" +}), 'MenuOpenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuOpenTwoTone.js b/packages/material-ui-icons/lib/esm/MenuOpenTwoTone.js new file mode 100644 index 00000000000000..f524d75e67db1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuOpenTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" +}), 'MenuOpenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuOutlined.js b/packages/material-ui-icons/lib/esm/MenuOutlined.js new file mode 100644 index 00000000000000..328253c037a32c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" +}), 'MenuOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuRounded.js b/packages/material-ui-icons/lib/esm/MenuRounded.js new file mode 100644 index 00000000000000..c9b4e509235082 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'MenuRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuSharp.js b/packages/material-ui-icons/lib/esm/MenuSharp.js new file mode 100644 index 00000000000000..bbadcd54807827 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" +}), 'MenuSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MenuTwoTone.js b/packages/material-ui-icons/lib/esm/MenuTwoTone.js new file mode 100644 index 00000000000000..bed9576605d3ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MenuTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" +}), 'MenuTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MergeType.js b/packages/material-ui-icons/lib/esm/MergeType.js new file mode 100644 index 00000000000000..8037f7b4ea6c22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MergeType.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" +}), 'MergeType'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MergeTypeOutlined.js b/packages/material-ui-icons/lib/esm/MergeTypeOutlined.js new file mode 100644 index 00000000000000..24b2a7a519d802 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MergeTypeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" +}), 'MergeTypeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MergeTypeRounded.js b/packages/material-ui-icons/lib/esm/MergeTypeRounded.js new file mode 100644 index 00000000000000..ae5deb9077d0dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MergeTypeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.7 19.7c.39-.39.39-1.02 0-1.41l-2.7-2.7L13.59 17l2.7 2.7c.39.39 1.03.39 1.41 0zM8.71 8H11v5.59l-4.71 4.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.71-4.7c.38-.38.59-.88.59-1.41V8h2.29c.45 0 .67-.54.35-.85l-3.29-3.29c-.2-.2-.51-.2-.71 0L8.35 7.15c-.31.31-.09.85.36.85z" +}), 'MergeTypeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MergeTypeSharp.js b/packages/material-ui-icons/lib/esm/MergeTypeSharp.js new file mode 100644 index 00000000000000..42954e7c58b899 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MergeTypeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20.41 18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" +}), 'MergeTypeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MergeTypeTwoTone.js b/packages/material-ui-icons/lib/esm/MergeTypeTwoTone.js new file mode 100644 index 00000000000000..7e55c88108aba3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MergeTypeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59zm11.407 1.41-3.408-3.407 1.4-1.407 3.41 3.408z" +}), 'MergeTypeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Message.js b/packages/material-ui-icons/lib/esm/Message.js new file mode 100644 index 00000000000000..6a0e9137b33c58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Message.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" +}), 'Message'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MessageOutlined.js b/packages/material-ui-icons/lib/esm/MessageOutlined.js new file mode 100644 index 00000000000000..348e8ce89614a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MessageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h12v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z" +}), 'MessageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MessageRounded.js b/packages/material-ui-icons/lib/esm/MessageRounded.js new file mode 100644 index 00000000000000..b332407d8d6964 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MessageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 12H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'MessageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MessageSharp.js b/packages/material-ui-icons/lib/esm/MessageSharp.js new file mode 100644 index 00000000000000..fa3bb504f1f24b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MessageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2.01L2 22l4-4h16V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" +}), 'MessageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MessageTwoTone.js b/packages/material-ui-icons/lib/esm/MessageTwoTone.js new file mode 100644 index 00000000000000..94f34f94fcc72d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MessageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4H4v13.17L5.17 16H20V4zm-2 10H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z" +}, "1")], 'MessageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mic.js b/packages/material-ui-icons/lib/esm/Mic.js new file mode 100644 index 00000000000000..6ab334c0d08434 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" +}), 'Mic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOff.js b/packages/material-ui-icons/lib/esm/MicExternalOff.js new file mode 100644 index 00000000000000..5c9b98eaa08e12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l5.78 5.78 1.41-1.42zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18zm2-12v5.17l-2-2V6c0-2.21 1.79-4 4-4s4 1.79 4 4v11.17l-2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2zm-4-1c0 .62-.2 1.18-.52 1.66L5.33 2.51C5.81 2.19 6.38 2 7 2c1.66 0 3 1.34 3 3z" +}), 'MicExternalOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOffOutlined.js b/packages/material-ui-icons/lib/esm/MicExternalOffOutlined.js new file mode 100644 index 00000000000000..8cc37bba64a30a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4 1c0-1.1.9-2 2-2s2 .9 2 2v9.17l2 2V6c0-2.21-1.79-4-4-4s-4 1.79-4 4v3.17l2 2V6zM2.1 2.1.69 3.51 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l6.49 6.49 1.41-1.41L2.1 2.1zM7.19 16h-.38l-.6-6h.96l.56.56L7.19 16zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18z" +}), 'MicExternalOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOffRounded.js b/packages/material-ui-icons/lib/esm/MicExternalOffRounded.js new file mode 100644 index 00000000000000..effda55616a608 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6c0-1.24 1.14-2.22 2.42-1.96.94.2 1.58 1.09 1.58 2.05v9.08l2 2V6.16c0-2.08-1.68-4.03-3.76-4.15C13.92 1.87 12 3.71 12 6v3.17l2 2V6zm-4-1c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zM1.39 2.81C1 3.2 1 3.83 1.39 4.22L5.17 8H5.1c-.59 0-1.05.51-1 1.1l.85 8.45c.03.26.25.45.5.45H6c0 2.34 2.01 4.21 4.39 3.98 2.08-.2 3.61-2.06 3.61-4.15v-1l5.78 5.78c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.81 2.81c-.39-.39-1.03-.39-1.42 0zM12 17.91c0 .96-.64 1.86-1.58 2.05C9.14 20.22 8 19.24 8 18h.55c.26 0 .47-.19.5-.45l.52-5.16L12 14.83v3.08z" +}), 'MicExternalOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOffSharp.js b/packages/material-ui-icons/lib/esm/MicExternalOffSharp.js new file mode 100644 index 00000000000000..ed5087692fb1df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4-1h4v11.17l2 2V2h-8v7.17l2 2zM2.1 2.1.69 3.51 5.17 8H4l1 10h1v4h8v-5.17l6.49 6.49 1.41-1.41L2.1 2.1zM12 20H8v-2h1l.56-5.61L12 14.83V20z" +}), 'MicExternalOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOffTwoTone.js b/packages/material-ui-icons/lib/esm/MicExternalOffTwoTone.js new file mode 100644 index 00000000000000..7047d5b567172e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m6.21 10 .6 6h.38l.54-5.44-.56-.56z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4 1c0-1.1.9-2 2-2s2 .9 2 2v9.17l2 2V6c0-2.21-1.79-4-4-4s-4 1.79-4 4v3.17l2 2V6zM2.1 2.1.69 3.51 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l6.49 6.49 1.41-1.41L2.1 2.1zM7.19 16h-.38l-.6-6h.96l.56.56L7.19 16zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18z" +}, "1")], 'MicExternalOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOn.js b/packages/material-ui-icons/lib/esm/MicExternalOn.js new file mode 100644 index 00000000000000..0cafae87838016 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM16 2c2.21 0 4 1.79 4 4v16h-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 2.21-1.79 4-4 4s-4-1.79-4-4H5L4 8h6L9 18H8c0 1.1.9 2 2 2s2-.9 2-2V6c0-2.21 1.79-4 4-4z" +}), 'MicExternalOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOnOutlined.js b/packages/material-ui-icons/lib/esm/MicExternalOnOutlined.js new file mode 100644 index 00000000000000..6b85b67769170d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOnOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.22 7c.48-.53.78-1.23.78-2 0-1.66-1.34-3-3-3S4 3.34 4 5c0 .77.3 1.47.78 2h4.44z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 2c-2.21 0-4 1.79-4 4v12c0 1.1-.9 2-2 2s-2-.9-2-2h1l1-10H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4V6c0-1.1.9-2 2-2s2 .9 2 2v16h2V6c0-2.21-1.79-4-4-4zM7.19 16h-.38l-.6-6h1.58l-.6 6z" +}, "1")], 'MicExternalOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOnRounded.js b/packages/material-ui-icons/lib/esm/MicExternalOnRounded.js new file mode 100644 index 00000000000000..0bad94bc118678 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zm7.02-4.99C18.32 2.13 20 4.08 20 6.16V21c0 .55-.45 1-1 1s-1-.45-1-1V6.09c0-.96-.64-1.86-1.58-2.05C15.14 3.78 14 4.76 14 6v11.84c0 2.08-1.68 4.03-3.76 4.15C7.92 22.13 6 20.29 6 18h-.55c-.26 0-.47-.19-.5-.45L4.11 9.1c-.06-.59.4-1.1.99-1.1h3.8c.59 0 1.05.51 1 1.1l-.85 8.45c-.03.26-.25.45-.5.45H8c0 1.24 1.14 2.22 2.42 1.96.94-.19 1.58-1.09 1.58-2.05V6c0-2.29 1.92-4.13 4.24-3.99z" +}), 'MicExternalOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOnSharp.js b/packages/material-ui-icons/lib/esm/MicExternalOnSharp.js new file mode 100644 index 00000000000000..de478120ac7beb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM20 2v20h-2V4h-4v18H6v-4H5L4 8h6L9 18H8v2h4V2h8z" +}), 'MicExternalOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicExternalOnTwoTone.js b/packages/material-ui-icons/lib/esm/MicExternalOnTwoTone.js new file mode 100644 index 00000000000000..104c457baf54df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicExternalOnTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.81 16h.38l.6-6H6.21z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.22 7c.48-.53.78-1.23.78-2 0-1.66-1.34-3-3-3S4 3.34 4 5c0 .77.3 1.47.78 2h4.44z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16 2c-2.21 0-4 1.79-4 4v12c0 1.1-.9 2-2 2s-2-.9-2-2h1l1-10H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4V6c0-1.1.9-2 2-2s2 .9 2 2v16h2V6c0-2.21-1.79-4-4-4zM7.19 16h-.38l-.6-6h1.58l-.6 6z" +}, "2")], 'MicExternalOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicNone.js b/packages/material-ui-icons/lib/esm/MicNone.js new file mode 100644 index 00000000000000..1dbc8fba2a87ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicNone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2V4.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" +}), 'MicNone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicNoneOutlined.js b/packages/material-ui-icons/lib/esm/MicNoneOutlined.js new file mode 100644 index 00000000000000..524e9ffe2de969 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicNoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" +}), 'MicNoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicNoneRounded.js b/packages/material-ui-icons/lib/esm/MicNoneRounded.js new file mode 100644 index 00000000000000..4ed419e21c4514 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicNoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6.91 6c-.49 0-.9.36-.98.85C16.52 14.2 14.47 16 12 16s-4.52-1.8-4.93-4.15c-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14.49 3 2.89 5.35 5.91 5.78V20c0 .55.45 1 1 1s1-.45 1-1v-2.08c3.02-.43 5.42-2.78 5.91-5.78.1-.6-.39-1.14-1-1.14z" +}), 'MicNoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicNoneSharp.js b/packages/material-ui-icons/lib/esm/MicNoneSharp.js new file mode 100644 index 00000000000000..ef864c822e925c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicNoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" +}), 'MicNoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicNoneTwoTone.js b/packages/material-ui-icons/lib/esm/MicNoneTwoTone.js new file mode 100644 index 00000000000000..454adc3d404b1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicNoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" +}, "1")], 'MicNoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicOff.js b/packages/material-ui-icons/lib/esm/MicOff.js new file mode 100644 index 00000000000000..ba1bd81b0dd508 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18l5.98 5.99zM4.27 3 3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z" +}), 'MicOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicOffOutlined.js b/packages/material-ui-icons/lib/esm/MicOffOutlined.js new file mode 100644 index 00000000000000..c077381f855358 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9zM19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86 3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z" +}), 'MicOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicOffRounded.js b/packages/material-ui-icons/lib/esm/MicOffRounded.js new file mode 100644 index 00000000000000..6de6b6b69d1074 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm3.08.4c-.41 0-.77.3-.83.71-.05.32-.12.64-.22.93l1.27 1.27c.3-.6.52-1.25.63-1.94.07-.51-.33-.97-.85-.97zM3.71 3.56c-.39.39-.39 1.02 0 1.41L9 10.27v.43c0 1.19.6 2.32 1.63 2.91.75.43 1.41.44 2.02.31l1.66 1.66c-.71.33-1.5.52-2.31.52-2.54 0-4.88-1.77-5.25-4.39-.06-.41-.42-.71-.83-.71-.52 0-.92.46-.85.97.46 2.96 2.96 5.3 5.93 5.75V20c0 .55.45 1 1 1s1-.45 1-1v-2.28c.91-.13 1.77-.45 2.55-.9l3.49 3.49c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56a.9959.9959 0 0 0-1.41 0z" +}), 'MicOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicOffSharp.js b/packages/material-ui-icons/lib/esm/MicOffSharp.js new file mode 100644 index 00000000000000..4d173dc2e92ff9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm4 .4h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86 3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z" +}), 'MicOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicOffTwoTone.js b/packages/material-ui-icons/lib/esm/MicOffTwoTone.js new file mode 100644 index 00000000000000..b9dd50eedb2802 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3.7c-.66 0-1.2.54-1.2 1.2v1.51l2.39 2.39.01-3.9c0-.66-.54-1.2-1.2-1.2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86 3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86zM10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9z" +}, "1")], 'MicOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicOutlined.js b/packages/material-ui-icons/lib/esm/MicOutlined.js new file mode 100644 index 00000000000000..3997e0d5bb31bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" +}, "1")], 'MicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicRounded.js b/packages/material-ui-icons/lib/esm/MicRounded.js new file mode 100644 index 00000000000000..a1f998f2df70e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.91-3c-.49 0-.9.36-.98.85C16.52 14.2 14.47 16 12 16s-4.52-1.8-4.93-4.15c-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14.49 3 2.89 5.35 5.91 5.78V20c0 .55.45 1 1 1s1-.45 1-1v-2.08c3.02-.43 5.42-2.78 5.91-5.78.1-.6-.39-1.14-1-1.14z" +}), 'MicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicSharp.js b/packages/material-ui-icons/lib/esm/MicSharp.js new file mode 100644 index 00000000000000..ddc41a62aaf60c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" +}, "1")], 'MicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicTwoTone.js b/packages/material-ui-icons/lib/esm/MicTwoTone.js new file mode 100644 index 00000000000000..af10e85199d6c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" +}, "2")], 'MicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Microwave.js b/packages/material-ui-icons/lib/esm/Microwave.js new file mode 100644 index 00000000000000..b85563e3f5e89f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Microwave.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.8 10.61 5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66 1.16 0 2.01-.79 2.37-1.19l-1.42-1.42c-.15.2-.59.61-.95.61-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-1.16 0-2.02.79-2.38 1.19l1.42 1.42c.16-.2.59-.61.96-.61zM22 6v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-8 0H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z" +}), 'Microwave'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicrowaveOutlined.js b/packages/material-ui-icons/lib/esm/MicrowaveOutlined.js new file mode 100644 index 00000000000000..e735dcdfff8860 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicrowaveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 6h10v12H4V6zm16 12h-4V6h4v12zm-1-9h-2V7h2v2zm-1 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-7.75-1c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61l-1.42-1.42c.35-.4 1.21-1.19 2.37-1.19.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19zm0-5c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19z" +}), 'MicrowaveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicrowaveRounded.js b/packages/material-ui-icons/lib/esm/MicrowaveRounded.js new file mode 100644 index 00000000000000..261ea79491b462 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicrowaveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.15 9.97c-.46-.46-.38-1.24.18-1.57.4-.22.88-.4 1.42-.4.8 0 1.39.39 1.81.67.31.21.51.33.69.33.13 0 .26-.05.39-.12.39-.22.88-.16 1.2.16.46.46.38 1.24-.18 1.56-.39.23-.87.4-1.41.4-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.13 0-.26.05-.39.12-.4.23-.89.16-1.21-.15zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66.54 0 1.02-.17 1.41-.4.56-.32.64-1.1.18-1.56-.32-.32-.81-.38-1.2-.16-.13.07-.26.12-.39.12-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-.54 0-1.02.18-1.42.4-.56.33-.64 1.11-.18 1.56.32.32.81.38 1.2.16.14-.07.27-.12.4-.12zM22 6v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-8 0H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z" +}), 'MicrowaveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicrowaveSharp.js b/packages/material-ui-icons/lib/esm/MicrowaveSharp.js new file mode 100644 index 00000000000000..ffa0919e427366 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicrowaveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.8 10.61 5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66 1.16 0 2.01-.79 2.37-1.19l-1.42-1.42c-.15.2-.59.61-.95.61-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-1.16 0-2.02.79-2.38 1.19l1.42 1.42c.16-.2.59-.61.96-.61zM22 4v16H2V4h20zm-8 2H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z" +}), 'MicrowaveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MicrowaveTwoTone.js b/packages/material-ui-icons/lib/esm/MicrowaveTwoTone.js new file mode 100644 index 00000000000000..14221d8d216d10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MicrowaveTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h10V6H4v12zM7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8zm0 5c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61l-1.42-1.42c.35-.4 1.21-1.19 2.37-1.19zM16 6v12h4V6h-4zm2 11c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-4h-2V7h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 6h10v12H4V6zm16 12h-4V6h4v12zm-1-9h-2V7h2v2zm-1 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-7.75-1c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61l-1.42-1.42c.35-.4 1.21-1.19 2.37-1.19.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19zm0-5c-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.21 1.19-2.37 1.19z" +}, "1")], 'MicrowaveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MilitaryTech.js b/packages/material-ui-icons/lib/esm/MilitaryTech.js new file mode 100644 index 00000000000000..93a2c6ba8ab05a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MilitaryTech.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.43V2H7v8.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34 4.18-2.51c.3-.18.48-.5.48-.86zm-4 1.8-1 .6-1-.6V3h2v9.23z" +}), 'MilitaryTech'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MilitaryTechOutlined.js b/packages/material-ui-icons/lib/esm/MilitaryTechOutlined.js new file mode 100644 index 00000000000000..0672a285a22f18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MilitaryTechOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.43V2H7v8.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34 4.18-2.51c.3-.18.48-.5.48-.86zm-6 .64-2-1.2V4h2v7.07zm4-1.2-2 1.2V4h2v5.87z" +}), 'MilitaryTechOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MilitaryTechRounded.js b/packages/material-ui-icons/lib/esm/MilitaryTechRounded.js new file mode 100644 index 00000000000000..7bdb2a0808003d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MilitaryTechRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.43V3c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v7.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-2.22.19c-.46.04-.64.59-.3.88l1.69 1.46-.51 2.18c-.1.43.37.77.75.54L12 20.23l1.91 1.15c.38.23.85-.11.75-.54l-.51-2.18 1.69-1.46c.33-.29.16-.84-.29-.88l-2.22-.19-.99-2.34 4.18-2.51c.3-.17.48-.49.48-.85zm-4 1.8-1 .6-1-.6V3h2v9.23z" +}), 'MilitaryTechRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MilitaryTechSharp.js b/packages/material-ui-icons/lib/esm/MilitaryTechSharp.js new file mode 100644 index 00000000000000..3d7336c8cf9852 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MilitaryTechSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 11V2H7v9l4.66 2.8-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34L17 11zm-4 1.23-1 .6-1-.6V3h2v9.23z" +}), 'MilitaryTechSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MilitaryTechTwoTone.js b/packages/material-ui-icons/lib/esm/MilitaryTechTwoTone.js new file mode 100644 index 00000000000000..4f07c5e0f67f59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MilitaryTechTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13 11.07 2-1.2V4h-2zM9 4v5.87l2 1.2V4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 10.43V2H7v8.43c0 .35.18.68.49.86l4.18 2.51-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34 4.18-2.51c.3-.18.48-.5.48-.86zm-6 .64-2-1.2V4h2v7.07zm4-1.2-2 1.2V4h2v5.87z" +}, "1")], 'MilitaryTechTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Minimize.js b/packages/material-ui-icons/lib/esm/Minimize.js new file mode 100644 index 00000000000000..530eff87ef7771 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Minimize.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19h12v2H6z" +}), 'Minimize'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MinimizeOutlined.js b/packages/material-ui-icons/lib/esm/MinimizeOutlined.js new file mode 100644 index 00000000000000..22633047bf684d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MinimizeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19h12v2H6v-2z" +}), 'MinimizeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MinimizeRounded.js b/packages/material-ui-icons/lib/esm/MinimizeRounded.js new file mode 100644 index 00000000000000..b97638997ad6dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MinimizeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 19h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'MinimizeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MinimizeSharp.js b/packages/material-ui-icons/lib/esm/MinimizeSharp.js new file mode 100644 index 00000000000000..8517a9f5165be7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MinimizeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19h12v2H6v-2z" +}), 'MinimizeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MinimizeTwoTone.js b/packages/material-ui-icons/lib/esm/MinimizeTwoTone.js new file mode 100644 index 00000000000000..e03a521d3759bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MinimizeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19h12v2H6v-2z" +}), 'MinimizeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MiscellaneousServices.js b/packages/material-ui-icons/lib/esm/MiscellaneousServices.js new file mode 100644 index 00000000000000..2a41392635c2e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MiscellaneousServices.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" +}), 'MiscellaneousServices'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MiscellaneousServicesOutlined.js b/packages/material-ui-icons/lib/esm/MiscellaneousServicesOutlined.js new file mode 100644 index 00000000000000..049f43ca6c6a4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MiscellaneousServicesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" +}), 'MiscellaneousServicesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MiscellaneousServicesRounded.js b/packages/material-ui-icons/lib/esm/MiscellaneousServicesRounded.js new file mode 100644 index 00000000000000..46ee035620cce8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MiscellaneousServicesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" +}), 'MiscellaneousServicesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MiscellaneousServicesSharp.js b/packages/material-ui-icons/lib/esm/MiscellaneousServicesSharp.js new file mode 100644 index 00000000000000..834cf28bb3dd8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MiscellaneousServicesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.02 13.97 1.7-2.94s-.09-.08-.23-.18l-1.47-1.16-.01.02c.03-.24.05-.47.05-.71s-.02-.47-.06-.69l.01.01 1.71-1.34-1.7-2.95-2.01.81v.01c-.37-.28-.77-.52-1.2-.7h.01L10.52 2H7.11L6.8 4.15h.01c-.43.18-.83.42-1.2.7v-.01L3.6 4.03 1.9 6.98l1.7 1.34.01-.01c-.03.22-.05.45-.05.69s.02.47.05.71l-.01-.02-1.47 1.16c-.13.1-.23.18-.23.18l1.7 2.94 2.02-.8-.02-.03c.37.29.77.53 1.21.71H6.8L7.11 16h3.4s.02-.13.04-.3l.27-1.85h-.01c.44-.18.84-.42 1.21-.71l-.02.03 2.02.8zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm12.17 6.94-.01.01c.02-.15.03-.3.03-.45 0-.15-.01-.3-.04-.44l.01.01 1.1-.86-1.09-1.9-1.29.52v.01c-.24-.18-.49-.33-.77-.45h.01l-.2-1.39h-2.19l-.2 1.38h.01c-.28.12-.53.27-.77.45v-.01l-1.29-.52-1.09 1.9 1.09.86.01-.01c-.02.14-.03.29-.03.44 0 .15.01.3.03.46l-.01-.01-.94.75c-.08.06-.15.12-.15.12l1.09 1.89 1.3-.51-.01-.02c.24.19.5.34.78.46h-.01l.2 1.38h2.19s.01-.08.03-.19l.17-1.19h-.01c.28-.12.54-.27.78-.46l-.01.02 1.3.51 1.09-1.89s-.06-.05-.15-.12l-.96-.75zm-3.35.85c-.71 0-1.29-.58-1.29-1.29s.58-1.29 1.29-1.29 1.29.58 1.29 1.29-.58 1.29-1.29 1.29z" +}), 'MiscellaneousServicesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MiscellaneousServicesTwoTone.js b/packages/material-ui-icons/lib/esm/MiscellaneousServicesTwoTone.js new file mode 100644 index 00000000000000..2a52fa1ea5ae21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MiscellaneousServicesTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.17 13.71 1.4-2.42c.09-.15.05-.34-.08-.45l-1.48-1.16c.03-.22.05-.45.05-.68s-.02-.46-.05-.69l1.48-1.16c.13-.11.17-.3.08-.45l-1.4-2.42c-.09-.15-.27-.21-.43-.15l-1.74.7c-.36-.28-.75-.51-1.18-.69l-.26-1.85c-.03-.16-.18-.29-.35-.29h-2.8c-.17 0-.32.13-.35.3L6.8 4.15c-.42.18-.82.41-1.18.69l-1.74-.7c-.16-.06-.34 0-.43.15l-1.4 2.42c-.09.15-.05.34.08.45l1.48 1.16c-.03.22-.05.45-.05.68s.02.46.05.69l-1.48 1.16c-.13.11-.17.3-.08.45l1.4 2.42c.09.15.27.21.43.15l1.74-.7c.36.28.75.51 1.18.69l.26 1.85c.03.16.18.29.35.29h2.8c.17 0 .32-.13.35-.3l.26-1.85c.42-.18.82-.41 1.18-.69l1.74.7c.16.06.34 0 .43-.15zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm13.11 7.67-.96-.74c.02-.14.04-.29.04-.44 0-.15-.01-.3-.04-.44l.95-.74c.08-.07.11-.19.05-.29l-.9-1.55c-.05-.1-.17-.13-.28-.1l-1.11.45c-.23-.18-.48-.33-.76-.44l-.17-1.18c-.01-.12-.11-.2-.21-.2h-1.79c-.11 0-.21.08-.22.19l-.17 1.18c-.27.12-.53.26-.76.44l-1.11-.45c-.1-.04-.22 0-.28.1l-.9 1.55c-.05.1-.04.22.05.29l.95.74c-.02.14-.03.29-.03.44 0 .15.01.3.03.44l-.95.74c-.08.07-.11.19-.05.29l.9 1.55c.05.1.17.13.28.1l1.11-.45c.23.18.48.33.76.44l.17 1.18c.02.11.11.19.22.19h1.79c.11 0 .21-.08.22-.19l.17-1.18c.27-.12.53-.26.75-.44l1.12.45c.1.04.22 0 .28-.1l.9-1.55c.06-.09.03-.21-.05-.28zm-4.29.16c-.74 0-1.35-.6-1.35-1.35s.6-1.35 1.35-1.35 1.35.6 1.35 1.35-.61 1.35-1.35 1.35z" +}), 'MiscellaneousServicesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MissedVideoCall.js b/packages/material-ui-icons/lib/esm/MissedVideoCall.js new file mode 100644 index 00000000000000..5913f2d3cb9109 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MissedVideoCall.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z" +}), 'MissedVideoCall'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MissedVideoCallOutlined.js b/packages/material-ui-icons/lib/esm/MissedVideoCallOutlined.js new file mode 100644 index 00000000000000..59379d920c4c49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MissedVideoCallOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zm-2-1.83V16H5V8h10v.67zm-7.89 2.44L11 15l3.77-3.79-.78-.79L11 13.43l-3.11-3.1h2.55V9.22H6v4.44h1.11z" +}), 'MissedVideoCallOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MissedVideoCallRounded.js b/packages/material-ui-icons/lib/esm/MissedVideoCallRounded.js new file mode 100644 index 00000000000000..38fa36bdce748c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MissedVideoCallRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5zm-6.29 3.79c-.39.39-1.02.39-1.41 0l-3.18-3.18v2.55H5V9.72c0-.28.22-.5.5-.5h3.94v1.11H6.89l3.11 3.1 4.22-4.22.78.79-4.29 4.29z" +}), 'MissedVideoCallRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MissedVideoCallSharp.js b/packages/material-ui-icons/lib/esm/MissedVideoCallSharp.js new file mode 100644 index 00000000000000..ae7460952b9b56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MissedVideoCallSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z" +}), 'MissedVideoCallSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MissedVideoCallTwoTone.js b/packages/material-ui-icons/lib/esm/MissedVideoCallTwoTone.js new file mode 100644 index 00000000000000..542c3172a2d47d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MissedVideoCallTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 13.5V8H5v8h10v-2.5zM11 15l-3.89-3.89v2.55H6V9.22h4.44v1.11H7.89l3.11 3.1 2.99-3.01.78.79L11 15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 17c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10zm2-9h10v8H5V8zm6 5.43-3.11-3.1h2.55V9.22H6v4.44h1.11v-2.55L11 15l3.77-3.79-.78-.79z" +}, "1")], 'MissedVideoCallTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mms.js b/packages/material-ui-icons/lib/esm/Mms.js new file mode 100644 index 00000000000000..2174a6e6298d79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mms.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z" +}), 'Mms'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MmsOutlined.js b/packages/material-ui-icons/lib/esm/MmsOutlined.js new file mode 100644 index 00000000000000..e5fb0b37715ca7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MmsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z" +}), 'MmsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MmsRounded.js b/packages/material-ui-icons/lib/esm/MmsRounded.js new file mode 100644 index 00000000000000..4eb8c5712dc45f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MmsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5.63 13.19l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z" +}), 'MmsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MmsSharp.js b/packages/material-ui-icons/lib/esm/MmsSharp.js new file mode 100644 index 00000000000000..77defd61976cf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MmsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z" +}), 'MmsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MmsTwoTone.js b/packages/material-ui-icons/lib/esm/MmsTwoTone.js new file mode 100644 index 00000000000000..5486ec8abff887 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MmsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17 5.17 16H20V4H4v13.17zM8.5 9.5l2.5 3.01L14.5 8l4.5 6H5l3.5-4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z" +}, "1")], 'MmsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileFriendly.js b/packages/material-ui-icons/lib/esm/MobileFriendly.js new file mode 100644 index 00000000000000..2f46e406fb87e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileFriendly.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27z" +}), 'MobileFriendly'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileFriendlyOutlined.js b/packages/material-ui-icons/lib/esm/MobileFriendlyOutlined.js new file mode 100644 index 00000000000000..75d7bc0e66ee08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileFriendlyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" +}), 'MobileFriendlyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileFriendlyRounded.js b/packages/material-ui-icons/lib/esm/MobileFriendlyRounded.js new file mode 100644 index 00000000000000..6d73ae7375e895 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileFriendlyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H9c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-1.92-1.92c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l2.47 2.47c.39.39 1.02.39 1.41 0l5.85-5.85c.35-.35.35-.92 0-1.27s-.92-.35-1.27 0l-5.27 5.3z" +}), 'MobileFriendlyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileFriendlySharp.js b/packages/material-ui-icons/lib/esm/MobileFriendlySharp.js new file mode 100644 index 00000000000000..59a3cf99f806f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileFriendlySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" +}), 'MobileFriendlySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileFriendlyTwoTone.js b/packages/material-ui-icons/lib/esm/MobileFriendlyTwoTone.js new file mode 100644 index 00000000000000..bfa57f14e4c0c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileFriendlyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" +}), 'MobileFriendlyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileOff.js b/packages/material-ui-icons/lib/esm/MobileOff.js new file mode 100644 index 00000000000000..3c4f78250feb7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.76 2.49 1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.27-1.27L2.76 2.49zM7 19V9.27L16.73 19H7zM17 5v9.17l2 2V3c0-1.1-.9-2-2-2H7c-.85 0-1.58.54-1.87 1.3L7.83 5H17z" +}), 'MobileOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileOffOutlined.js b/packages/material-ui-icons/lib/esm/MobileOffOutlined.js new file mode 100644 index 00000000000000..8f3fac30aef2b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27 16.73 19H7V9.27z" +}), 'MobileOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileOffRounded.js b/packages/material-ui-icons/lib/esm/MobileOffRounded.js new file mode 100644 index 00000000000000..12e38c105bb800 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 16.44 3.61 3.05a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75L20 22.27c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L19 18.44l-2-2zM7 19V9.27L16.73 19H7zM17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17z" +}), 'MobileOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileOffSharp.js b/packages/material-ui-icons/lib/esm/MobileOffSharp.js new file mode 100644 index 00000000000000..fdb9b30390a6c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5v8.61l2 2V1H5v.61L8.39 5zM2.9 2.35 1.49 3.76 5 7.27V23h14v-1.73l1.7 1.7 1.41-1.41L2.9 2.35zM7 19V9.27L16.73 19H7z" +}), 'MobileOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileOffTwoTone.js b/packages/material-ui-icons/lib/esm/MobileOffTwoTone.js new file mode 100644 index 00000000000000..eb775acd1b834a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27 16.73 19H7V9.27z" +}), 'MobileOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileScreenShare.js b/packages/material-ui-icons/lib/esm/MobileScreenShare.js new file mode 100644 index 00000000000000..be69766de15543 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileScreenShare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.2-5.78v1.75l3.2-2.99L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" +}), 'MobileScreenShare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileScreenShareOutlined.js b/packages/material-ui-icons/lib/esm/MobileScreenShareOutlined.js new file mode 100644 index 00000000000000..86b5928b18f2f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileScreenShareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05v-18C19 1.85 18.1 1 17 1zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" +}), 'MobileScreenShareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileScreenShareRounded.js b/packages/material-ui-icons/lib/esm/MobileScreenShareRounded.js new file mode 100644 index 00000000000000..ab781a74e0a3ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileScreenShareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.78v1.75l2.81-2.62c.21-.2.21-.53 0-.73L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" +}), 'MobileScreenShareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileScreenShareSharp.js b/packages/material-ui-icons/lib/esm/MobileScreenShareSharp.js new file mode 100644 index 00000000000000..5c54f517463d83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileScreenShareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" +}), 'MobileScreenShareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobileScreenShareTwoTone.js b/packages/material-ui-icons/lib/esm/MobileScreenShareTwoTone.js new file mode 100644 index 00000000000000..72b54d7d8b1cf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobileScreenShareTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h10V5H7v14zm5.8-8.28v-1.7L16 12l-3.2 2.99v-1.75c-2.22 0-3.69.68-4.8 2.18.45-2.14 1.69-4.27 4.8-4.7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" +}, "1")], 'MobileScreenShareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobiledataOff.js b/packages/material-ui-icons/lib/esm/MobiledataOff.js new file mode 100644 index 00000000000000..a397b05c5c6313 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobiledataOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81 1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z" +}), 'MobiledataOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobiledataOffOutlined.js b/packages/material-ui-icons/lib/esm/MobiledataOffOutlined.js new file mode 100644 index 00000000000000..d7550b84dd8588 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobiledataOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 6.82 1.59 1.59L19 7l-4-4-4 4 1.41 1.41L14 6.82v4.35l2 2zM1.39 4.22 8 10.83v6.35l-1.59-1.59L5 17l4 4 4-4-1.41-1.41L10 17.18v-4.35l9.78 9.78 1.41-1.42L2.81 2.81z" +}), 'MobiledataOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobiledataOffRounded.js b/packages/material-ui-icons/lib/esm/MobiledataOffRounded.js new file mode 100644 index 00000000000000..5639368ebd0ffa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobiledataOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85H14v4.17l2 2V7zM2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9V17H6.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.79c.32-.32.09-.85-.35-.85h-1.79v-4.18l9.07 9.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0z" +}), 'MobiledataOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobiledataOffSharp.js b/packages/material-ui-icons/lib/esm/MobiledataOffSharp.js new file mode 100644 index 00000000000000..8a46d46651b8a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobiledataOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81 1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z" +}), 'MobiledataOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MobiledataOffTwoTone.js b/packages/material-ui-icons/lib/esm/MobiledataOffTwoTone.js new file mode 100644 index 00000000000000..5534c5c82ca017 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MobiledataOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81 1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z" +}), 'MobiledataOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mode.js b/packages/material-ui-icons/lib/esm/Mode.js new file mode 100644 index 00000000000000..3941f6a0a3bba4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}), 'Mode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeComment.js b/packages/material-ui-icons/lib/esm/ModeComment.js new file mode 100644 index 00000000000000..489b66a8d74662 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeComment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18z" +}), 'ModeComment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeCommentOutlined.js b/packages/material-ui-icons/lib/esm/ModeCommentOutlined.js new file mode 100644 index 00000000000000..1fa354fab5c991 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeCommentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 17.17 18.83 16H4V4h16v13.17zM20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2z" +}), 'ModeCommentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeCommentRounded.js b/packages/material-ui-icons/lib/esm/ModeCommentRounded.js new file mode 100644 index 00000000000000..e7169b298a702b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeCommentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4z" +}), 'ModeCommentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeCommentSharp.js b/packages/material-ui-icons/lib/esm/ModeCommentSharp.js new file mode 100644 index 00000000000000..51049c1660d350 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeCommentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v16h16l4 4z" +}), 'ModeCommentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeCommentTwoTone.js b/packages/material-ui-icons/lib/esm/ModeCommentTwoTone.js new file mode 100644 index 00000000000000..a9f826d1b4eec7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeCommentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4v12h14.83L20 17.17V4z", + opacity: ".3" +}, "1")], 'ModeCommentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEdit.js b/packages/material-ui-icons/lib/esm/ModeEdit.js new file mode 100644 index 00000000000000..7c7efa56233e6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEdit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'ModeEdit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditOutline.js b/packages/material-ui-icons/lib/esm/ModeEditOutline.js new file mode 100644 index 00000000000000..3c852879789579 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}), 'ModeEditOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditOutlineOutlined.js b/packages/material-ui-icons/lib/esm/ModeEditOutlineOutlined.js new file mode 100644 index 00000000000000..4114377c83b29d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h3.75L17.81 9.94l-3.75-3.75L3 17.25V21zm2-2.92 9.06-9.06.92.92L5.92 19H5v-.92zM18.37 3.29a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34z" +}), 'ModeEditOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditOutlineRounded.js b/packages/material-ui-icons/lib/esm/ModeEditOutlineRounded.js new file mode 100644 index 00000000000000..53cdff29b21442 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}), 'ModeEditOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditOutlineSharp.js b/packages/material-ui-icons/lib/esm/ModeEditOutlineSharp.js new file mode 100644 index 00000000000000..3de7892e548f43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" +}), 'ModeEditOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/ModeEditOutlineTwoTone.js new file mode 100644 index 00000000000000..22ab35a16d5aec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditOutlineTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}, "1")], 'ModeEditOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditOutlined.js b/packages/material-ui-icons/lib/esm/ModeEditOutlined.js new file mode 100644 index 00000000000000..fbe3656859166c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h3.75L17.81 9.94l-3.75-3.75L3 17.25V21zm2-2.92 9.06-9.06.92.92L5.92 19H5v-.92zM18.37 3.29a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34z" +}), 'ModeEditOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditRounded.js b/packages/material-ui-icons/lib/esm/ModeEditRounded.js new file mode 100644 index 00000000000000..09d8f46a699550 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}), 'ModeEditRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditSharp.js b/packages/material-ui-icons/lib/esm/ModeEditSharp.js new file mode 100644 index 00000000000000..666c7b2930d7fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" +}), 'ModeEditSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeEditTwoTone.js b/packages/material-ui-icons/lib/esm/ModeEditTwoTone.js new file mode 100644 index 00000000000000..e5acf256bcc1bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeEditTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 18.08V19h.92l9.06-9.06-.92-.92z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z" +}, "1")], 'ModeEditTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeNight.js b/packages/material-ui-icons/lib/esm/ModeNight.js new file mode 100644 index 00000000000000..968655c8f066e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeNight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z" +}), 'ModeNight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeNightOutlined.js b/packages/material-ui-icons/lib/esm/ModeNightOutlined.js new file mode 100644 index 00000000000000..150df813e37354 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeNightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07 1.91-2.16 3.01-4.98 3.01-7.93s-1.1-5.77-3.01-7.93C8.82 4.02 9.16 4 9.5 4m0-2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z" +}), 'ModeNightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeNightRounded.js b/packages/material-ui-icons/lib/esm/ModeNightRounded.js new file mode 100644 index 00000000000000..fd374b07e4c56a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeNightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.93 2.3c-2.04-.5-4.02-.35-5.77.28-.72.26-.91 1.22-.31 1.71C8.08 6.12 9.5 8.89 9.5 12c0 3.11-1.42 5.88-3.65 7.71-.59.49-.42 1.45.31 1.7 1.04.38 2.17.59 3.34.59 6.05 0 10.85-5.38 9.87-11.6-.61-3.92-3.59-7.16-7.44-8.1z" +}), 'ModeNightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeNightSharp.js b/packages/material-ui-icons/lib/esm/ModeNightSharp.js new file mode 100644 index 00000000000000..036139e6682ead --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeNightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z" +}), 'ModeNightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeNightTwoTone.js b/packages/material-ui-icons/lib/esm/ModeNightTwoTone.js new file mode 100644 index 00000000000000..b61b395b5c3342 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeNightTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.5 4c-.34 0-.68.02-1.01.07C10.4 6.23 11.5 9.05 11.5 12s-1.1 5.77-3.01 7.93c.33.05.67.07 1.01.07 4.41 0 8-3.59 8-8s-3.59-8-8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2zm0 18c-.34 0-.68-.02-1.01-.07 1.91-2.16 3.01-4.98 3.01-7.93s-1.1-5.77-3.01-7.93C8.82 4.02 9.16 4 9.5 4c4.41 0 8 3.59 8 8s-3.59 8-8 8z" +}, "1")], 'ModeNightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeOutlined.js b/packages/material-ui-icons/lib/esm/ModeOutlined.js new file mode 100644 index 00000000000000..80ca2864ac4521 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.06 9.02.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" +}), 'ModeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeRounded.js b/packages/material-ui-icons/lib/esm/ModeRounded.js new file mode 100644 index 00000000000000..1f37067f98d045 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.9959.9959 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" +}), 'ModeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeSharp.js b/packages/material-ui-icons/lib/esm/ModeSharp.js new file mode 100644 index 00000000000000..900bdd0c6b5d3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" +}), 'ModeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeStandby.js b/packages/material-ui-icons/lib/esm/ModeStandby.js new file mode 100644 index 00000000000000..58733c07fda862 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeStandby.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'ModeStandby'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeStandbyOutlined.js b/packages/material-ui-icons/lib/esm/ModeStandbyOutlined.js new file mode 100644 index 00000000000000..95f7bb0c24e311 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeStandbyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'ModeStandbyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeStandbyRounded.js b/packages/material-ui-icons/lib/esm/ModeStandbyRounded.js new file mode 100644 index 00000000000000..4fb0de82c2a172 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeStandbyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'ModeStandbyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeStandbySharp.js b/packages/material-ui-icons/lib/esm/ModeStandbySharp.js new file mode 100644 index 00000000000000..42d97bd98d0a50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeStandbySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'ModeStandbySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeStandbyTwoTone.js b/packages/material-ui-icons/lib/esm/ModeStandbyTwoTone.js new file mode 100644 index 00000000000000..8ceda398dc7a23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeStandbyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}), 'ModeStandbyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModeTwoTone.js b/packages/material-ui-icons/lib/esm/ModeTwoTone.js new file mode 100644 index 00000000000000..1bd82429512c0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.06 9.02 5 18.08V19h.92l9.06-9.06z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.37 3.29c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34zm-.56 6.65-3.75-3.75L3 17.25V21h3.75L17.81 9.94zM5 19v-.92l9.06-9.06.92.92L5.92 19H5z" +}, "1")], 'ModeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModelTraining.js b/packages/material-ui-icons/lib/esm/ModelTraining.js new file mode 100644 index 00000000000000..625aa8522fe2b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModelTraining.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" +}), 'ModelTraining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModelTrainingOutlined.js b/packages/material-ui-icons/lib/esm/ModelTrainingOutlined.js new file mode 100644 index 00000000000000..50c13cd96ea9a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModelTrainingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" +}), 'ModelTrainingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModelTrainingRounded.js b/packages/material-ui-icons/lib/esm/ModelTrainingRounded.js new file mode 100644 index 00000000000000..e21f8ec750536e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModelTrainingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2v.5c0 .55.45 1 1 1s1-.45 1-1v-.5zm6-6.5c0 1.39-.41 2.69-1.12 3.78-.25.39-.19.91.14 1.24.44.44 1.2.38 1.54-.15C20.47 16.47 21 14.8 21 13c0-2.36-.91-4.51-2.4-6.12-.39-.42-1.05-.43-1.45-.03-.38.38-.38.99-.02 1.39C18.29 9.49 19 11.16 19 13zm-3.35-8.35-2.79-2.79c-.32-.32-.86-.1-.86.35V4c-4.97 0-9 4.03-9 9 0 1.8.53 3.47 1.44 4.88.34.53 1.1.59 1.54.15.33-.33.39-.84.14-1.23-1.39-2.15-1.64-5.1.13-8C7.45 6.85 9.71 5.81 12 6v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" +}), 'ModelTrainingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModelTrainingSharp.js b/packages/material-ui-icons/lib/esm/ModelTrainingSharp.js new file mode 100644 index 00000000000000..bf666b4363280e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModelTrainingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" +}), 'ModelTrainingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ModelTrainingTwoTone.js b/packages/material-ui-icons/lib/esm/ModelTrainingTwoTone.js new file mode 100644 index 00000000000000..671299e4084e5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ModelTrainingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42C20.18 17.27 21 15.23 21 13c0-2.74-1.23-5.19-3.16-6.84l-1.42 1.42C17.99 8.86 19 10.82 19 13zm-3-8-4-4v3c-4.97 0-9 4.03-9 9 0 2.23.82 4.27 2.16 5.84l1.42-1.42C5.59 16.21 5 14.68 5 13c0-3.86 3.14-7 7-7v3l4-4z" +}), 'ModelTrainingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonetizationOn.js b/packages/material-ui-icons/lib/esm/MonetizationOn.js new file mode 100644 index 00000000000000..32917bee34fadb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonetizationOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z" +}), 'MonetizationOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonetizationOnOutlined.js b/packages/material-ui-icons/lib/esm/MonetizationOnOutlined.js new file mode 100644 index 00000000000000..0575442793c904 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonetizationOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z" +}), 'MonetizationOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonetizationOnRounded.js b/packages/material-ui-icons/lib/esm/MonetizationOnRounded.js new file mode 100644 index 00000000000000..978cf49626cecf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonetizationOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09v.58c0 .73-.6 1.33-1.33 1.33h-.01c-.73 0-1.33-.6-1.33-1.33v-.6c-1.33-.28-2.51-1.01-3.01-2.24-.23-.55.2-1.16.8-1.16h.24c.37 0 .67.25.81.6.29.75 1.05 1.27 2.51 1.27 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21v-.6c0-.73.6-1.33 1.33-1.33h.01c.73 0 1.33.6 1.33 1.33v.62c1.38.34 2.25 1.2 2.63 2.26.2.55-.22 1.13-.81 1.13h-.26c-.37 0-.67-.26-.77-.62-.23-.76-.86-1.25-2.12-1.25-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.02 1.83-1.39 2.83-3.13 3.16z" +}), 'MonetizationOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonetizationOnSharp.js b/packages/material-ui-icons/lib/esm/MonetizationOnSharp.js new file mode 100644 index 00000000000000..7409d2a14d4fb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonetizationOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z" +}), 'MonetizationOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonetizationOnTwoTone.js b/packages/material-ui-icons/lib/esm/MonetizationOnTwoTone.js new file mode 100644 index 00000000000000..02ee6b4201d9f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonetizationOnTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1.23 13.33V19H10.9v-1.69c-1.5-.31-2.77-1.28-2.86-2.97h1.71c.09.92.72 1.64 2.32 1.64 1.71 0 2.1-.86 2.1-1.39 0-.73-.39-1.41-2.34-1.87-2.17-.53-3.66-1.42-3.66-3.21 0-1.51 1.22-2.48 2.72-2.81V5h2.34v1.71c1.63.39 2.44 1.63 2.49 2.97h-1.71c-.04-.97-.56-1.64-1.94-1.64-1.31 0-2.1.59-2.1 1.43 0 .73.57 1.22 2.34 1.67 1.77.46 3.66 1.22 3.66 3.42-.01 1.6-1.21 2.48-2.74 2.77z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z" +}, "1")], 'MonetizationOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Money.js b/packages/material-ui-icons/lib/esm/Money.js new file mode 100644 index 00000000000000..45619e3a89f089 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Money.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 8h2v8H5zm7 0H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4zm7-6h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 4v16h20V4H2zm2 14V6h16v12H4z" +}, "1")], 'Money'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOff.js b/packages/material-ui-icons/lib/esm/MoneyOff.js new file mode 100644 index 00000000000000..2d6d989fabf461 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.53.12-1.03.3-1.48.54l1.47 1.47c.41-.17.91-.27 1.51-.27zM5.33 4.06 4.06 5.33 7.5 8.77c0 2.08 1.56 3.21 3.91 3.91l3.51 3.51c-.34.48-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.82-.55 2.45-1.12l2.22 2.22 1.27-1.27L5.33 4.06z" +}), 'MoneyOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffCsred.js b/packages/material-ui-icons/lib/esm/MoneyOffCsred.js new file mode 100644 index 00000000000000..e93d812b064f99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffCsred.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.53 7.43c.42-.31.93-.47 1.54-.47s1.11.16 1.5.49c.39.32.65.7.79 1.12l1.89-.8c-.24-.71-.71-1.35-1.4-1.92-.5-.4-1.12-.65-1.85-.77V3h-2v2.11c-.41.08-.79.21-1.14.39-.35.18-.64.39-.9.63l1.43 1.43c.04-.04.09-.09.14-.13zM2.81 2.81 1.39 4.22l12.35 12.35c-.43.28-.95.43-1.55.43-.71 0-1.32-.23-1.83-.7-.5-.47-.86-1.07-1.06-1.81l-1.98.8c.34 1.17.95 2.08 1.83 2.73.57.42 1.19.68 1.85.83V21h2v-2.08c.44-.07.87-.17 1.29-.35.34-.14.64-.32.92-.53l4.57 4.57 1.41-1.41L2.81 2.81z" +}), 'MoneyOffCsred'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffCsredOutlined.js b/packages/material-ui-icons/lib/esm/MoneyOffCsredOutlined.js new file mode 100644 index 00000000000000..343c9e434d927f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffCsredOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" +}), 'MoneyOffCsredOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffCsredRounded.js b/packages/material-ui-icons/lib/esm/MoneyOffCsredRounded.js new file mode 100644 index 00000000000000..d522263795f183 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffCsredRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.42 0 2.13.54 2.39 1.4.13.43.56.7 1.01.7h.06c.7 0 1.22-.71.97-1.36-.44-1.15-1.41-2.08-2.93-2.45V4.5c0-.83-.67-1.5-1.5-1.5S11 3.67 11 4.5v.66c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM4.77 4.62c-.39.39-.39 1.02 0 1.41L7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67H8.6c-.72 0-1.24.74-.95 1.39.59 1.33 1.89 2.12 3.36 2.44v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c.96-.18 1.83-.55 2.46-1.12l1.51 1.51c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.18 4.62a.9959.9959 0 0 0-1.41 0z" +}), 'MoneyOffCsredRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffCsredSharp.js b/packages/material-ui-icons/lib/esm/MoneyOffCsredSharp.js new file mode 100644 index 00000000000000..c5925166678bc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffCsredSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" +}), 'MoneyOffCsredSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffCsredTwoTone.js b/packages/material-ui-icons/lib/esm/MoneyOffCsredTwoTone.js new file mode 100644 index 00000000000000..8e26cdcddb6c33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffCsredTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" +}), 'MoneyOffCsredTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffOutlined.js b/packages/material-ui-icons/lib/esm/MoneyOffOutlined.js new file mode 100644 index 00000000000000..9021ef87c9e7b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" +}), 'MoneyOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffRounded.js b/packages/material-ui-icons/lib/esm/MoneyOffRounded.js new file mode 100644 index 00000000000000..e3c3a51a09f344 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.42 0 2.13.54 2.39 1.4.13.43.56.7 1.01.7h.06c.7 0 1.22-.71.97-1.36-.44-1.15-1.41-2.08-2.93-2.45V4.5c0-.83-.67-1.5-1.5-1.5S11 3.67 11 4.5v.66c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM4.77 4.62c-.39.39-.39 1.02 0 1.41L7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67H8.6c-.72 0-1.24.74-.95 1.39.59 1.33 1.89 2.12 3.36 2.44v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c.96-.18 1.83-.55 2.46-1.12l1.51 1.51c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.18 4.62a.9959.9959 0 0 0-1.41 0z" +}), 'MoneyOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffSharp.js b/packages/material-ui-icons/lib/esm/MoneyOffSharp.js new file mode 100644 index 00000000000000..a62a9d57193efa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" +}), 'MoneyOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOffTwoTone.js b/packages/material-ui-icons/lib/esm/MoneyOffTwoTone.js new file mode 100644 index 00000000000000..a8a0309c9082b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92 4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" +}), 'MoneyOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyOutlined.js b/packages/material-ui-icons/lib/esm/MoneyOutlined.js new file mode 100644 index 00000000000000..c13940fe1d059f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" +}), 'MoneyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyRounded.js b/packages/material-ui-icons/lib/esm/MoneyRounded.js new file mode 100644 index 00000000000000..e2d2e9832ae669 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM6 8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1zM2 6v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2zm17 12H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'MoneyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneySharp.js b/packages/material-ui-icons/lib/esm/MoneySharp.js new file mode 100644 index 00000000000000..c83c52cd214470 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 16h5V8h-5v8zm2-6h1v4h-1v-4zm-8 6h5V8H8v8zm2-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" +}), 'MoneySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoneyTwoTone.js b/packages/material-ui-icons/lib/esm/MoneyTwoTone.js new file mode 100644 index 00000000000000..52b2791dae5a9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoneyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 10h1v4h-1zm6 0h1v4h-1zM4 18h16V6H4v12zm10-9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1V9zM8 9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V9zM5 8h2v8H5V8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z" +}, "1")], 'MoneyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Monitor.js b/packages/material-ui-icons/lib/esm/Monitor.js new file mode 100644 index 00000000000000..b0bb78a8b93824 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Monitor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z" +}), 'Monitor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorOutlined.js b/packages/material-ui-icons/lib/esm/MonitorOutlined.js new file mode 100644 index 00000000000000..8175eded3f960d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z" +}), 'MonitorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorRounded.js b/packages/material-ui-icons/lib/esm/MonitorRounded.js new file mode 100644 index 00000000000000..7006d21952e809 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3c-.55.55-1 .87-1 1.59 0 .78.63 1.41 1.41 1.41h9.17c.78 0 1.41-.63 1.41-1.41 0-.72-.44-1.03-1-1.59h3c1.1 0 2-.9 2-2V5C22 3.9 21.1 3 20 3zm0 13H4V5h16v11z" +}), 'MonitorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorSharp.js b/packages/material-ui-icons/lib/esm/MonitorSharp.js new file mode 100644 index 00000000000000..eab1c234dd308f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H2v15h5l-1 1v2h12v-2l-1-1h5V3zm-2 13H4V5h16v11z" +}), 'MonitorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorTwoTone.js b/packages/material-ui-icons/lib/esm/MonitorTwoTone.js new file mode 100644 index 00000000000000..a301233837c5d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 5h16v11H4z", + opacity: ".3" +}, "1")], 'MonitorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorWeight.js b/packages/material-ui-icons/lib/esm/MonitorWeight.js new file mode 100644 index 00000000000000..69089860d36a48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorWeight.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 8.5h1v1h-1zm1.5 0h1v1h-1zm1.5 0h1v1h-1z" +}, "1")], 'MonitorWeight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorWeightOutlined.js b/packages/material-ui-icons/lib/esm/MonitorWeightOutlined.js new file mode 100644 index 00000000000000..f536ae1c03f06d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorWeightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM12 6c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-1 3.5h-1v-1h1v1zm1.5 0h-1v-1h1v1zm1.5 0h-1v-1h1v1z" +}), 'MonitorWeightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorWeightRounded.js b/packages/material-ui-icons/lib/esm/MonitorWeightRounded.js new file mode 100644 index 00000000000000..ba82ab445934b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorWeightRounded.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10.5", + cy: "9", + r: ".5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "13.5", + cy: "9", + r: ".5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9", + r: ".5" +}, "3")], 'MonitorWeightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorWeightSharp.js b/packages/material-ui-icons/lib/esm/MonitorWeightSharp.js new file mode 100644 index 00000000000000..555f6d8cb10cbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorWeightSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-6.8 8.2c-3.23 2.43-6.84-1.18-4.4-4.41 3.23-2.42 6.83 1.19 4.4 4.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 8.5h1v1h-1zm1.5 0h1v1h-1zm1.5 0h1v1h-1z" +}, "1")], 'MonitorWeightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonitorWeightTwoTone.js b/packages/material-ui-icons/lib/esm/MonitorWeightTwoTone.js new file mode 100644 index 00000000000000..3aa71abfdb0969 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonitorWeightTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 8.5h1v1h-1zm-3 0h1v1h-1zm1.5 0h1v1h-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm7-13c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 12c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm1-3.5h1v1h-1v-1zm-1.5 0h1v1h-1v-1zm-1.5 0h1v1h-1v-1z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3")], 'MonitorWeightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonochromePhotos.js b/packages/material-ui-icons/lib/esm/MonochromePhotos.js new file mode 100644 index 00000000000000..439612fa70fa62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonochromePhotos.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" +}), 'MonochromePhotos'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonochromePhotosOutlined.js b/packages/material-ui-icons/lib/esm/MonochromePhotosOutlined.js new file mode 100644 index 00000000000000..23a45981458634 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonochromePhotosOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" +}), 'MonochromePhotosOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonochromePhotosRounded.js b/packages/material-ui-icons/lib/esm/MonochromePhotosRounded.js new file mode 100644 index 00000000000000..536ceda6b1bcf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonochromePhotosRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.2l-1.2-1.34c-.38-.42-.92-.66-1.49-.66H9.89c-.57 0-1.11.24-1.49.66L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 13c0 .55-.45 1-1 1h-7v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h7c.55 0 1 .45 1 1v10zm-3-5c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" +}), 'MonochromePhotosRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonochromePhotosSharp.js b/packages/material-ui-icons/lib/esm/MonochromePhotosSharp.js new file mode 100644 index 00000000000000..4db62cd54c8f65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonochromePhotosSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5h-5.2L15 3H9L7.2 5H2v16h20V5zm-2 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" +}), 'MonochromePhotosSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MonochromePhotosTwoTone.js b/packages/material-ui-icons/lib/esm/MonochromePhotosTwoTone.js new file mode 100644 index 00000000000000..67e8681e1ebc7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MonochromePhotosTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 18v-1.8c-1.8 0-3.2-1.4-3.2-3.2s1.4-3.2 3.2-3.2V8c-2.8 0-5 2.2-5 5s2.2 5 5 5zm5-5c0 2.8-2.2 5-5 5v1h8V7h-8v1c2.8 0 5 2.2 5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 21h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zm8-13V7h8v12h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5zm3.2 5c0 1.8-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5s-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2zm-6.4 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" +}, "1")], 'MonochromePhotosTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mood.js b/packages/material-ui-icons/lib/esm/Mood.js new file mode 100644 index 00000000000000..897803ed349836 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mood.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'Mood'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodBad.js b/packages/material-ui-icons/lib/esm/MoodBad.js new file mode 100644 index 00000000000000..bfde6f8bac79f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodBad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 3c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" +}), 'MoodBad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodBadOutlined.js b/packages/material-ui-icons/lib/esm/MoodBadOutlined.js new file mode 100644 index 00000000000000..4b11482f19a230 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodBadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" +}), 'MoodBadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodBadRounded.js b/packages/material-ui-icons/lib/esm/MoodBadRounded.js new file mode 100644 index 00000000000000..6699c8342096fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodBadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.03 0-3.8 1.11-4.75 2.75-.19.33.06.75.44.75h8.62c.38 0 .63-.42.44-.75-.95-1.64-2.72-2.75-4.75-2.75z" +}), 'MoodBadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodBadSharp.js b/packages/material-ui-icons/lib/esm/MoodBadSharp.js new file mode 100644 index 00000000000000..04e00dbfb23cdb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodBadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" +}), 'MoodBadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodBadTwoTone.js b/packages/material-ui-icons/lib/esm/MoodBadTwoTone.js new file mode 100644 index 00000000000000..0f70118bf407e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodBadTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm-1.61 9c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "3")], 'MoodBadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodOutlined.js b/packages/material-ui-icons/lib/esm/MoodOutlined.js new file mode 100644 index 00000000000000..c2f96ca77c04ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'MoodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodRounded.js b/packages/material-ui-icons/lib/esm/MoodRounded.js new file mode 100644 index 00000000000000..92d486a82ff8c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.03 0 3.8-1.11 4.75-2.75.19-.33-.05-.75-.44-.75H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75z" +}), 'MoodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodSharp.js b/packages/material-ui-icons/lib/esm/MoodSharp.js new file mode 100644 index 00000000000000..c606e3a9e8c1cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'MoodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoodTwoTone.js b/packages/material-ui-icons/lib/esm/MoodTwoTone.js new file mode 100644 index 00000000000000..19848bd68971d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoodTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}, "4")], 'MoodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Moped.js b/packages/material-ui-icons/lib/esm/Moped.js new file mode 100644 index 00000000000000..b66cb5daf4700b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Moped.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'Moped'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MopedOutlined.js b/packages/material-ui-icons/lib/esm/MopedOutlined.js new file mode 100644 index 00000000000000..e62c2fd6407dc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MopedOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM4 14v-1c0-1.1.9-2 2-2h2v3H4zm3 3c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'MopedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MopedRounded.js b/packages/material-ui-icons/lib/esm/MopedRounded.js new file mode 100644 index 00000000000000..2b0cb05ebbd8df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MopedRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2.65L13.52 14H10v-4c0-.55-.45-1-1-1H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 6H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm10 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'MopedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MopedSharp.js b/packages/material-ui-icons/lib/esm/MopedSharp.js new file mode 100644 index 00000000000000..28d8f42ea85f80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MopedSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'MopedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MopedTwoTone.js b/packages/material-ui-icons/lib/esm/MopedTwoTone.js new file mode 100644 index 00000000000000..6a778a9203cd01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MopedTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 13v1h4v-3H6c-1.1 0-2 .9-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 7c0-1.1-.9-2-2-2h-3v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35V7zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm1-3H4v-1c0-1.1.9-2 2-2h2v3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "2")], 'MopedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/More.js b/packages/material-ui-icons/lib/esm/More.js new file mode 100644 index 00000000000000..8f3b84b31b743b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/More.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'More'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreHoriz.js b/packages/material-ui-icons/lib/esm/MoreHoriz.js new file mode 100644 index 00000000000000..6ba104f37d6a6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreHoriz.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreHoriz'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreHorizOutlined.js b/packages/material-ui-icons/lib/esm/MoreHorizOutlined.js new file mode 100644 index 00000000000000..abce648c444bc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreHorizOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreHorizOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreHorizRounded.js b/packages/material-ui-icons/lib/esm/MoreHorizRounded.js new file mode 100644 index 00000000000000..4513233e6ea0e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreHorizRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreHorizRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreHorizSharp.js b/packages/material-ui-icons/lib/esm/MoreHorizSharp.js new file mode 100644 index 00000000000000..b20139e949d47a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreHorizSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreHorizSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreHorizTwoTone.js b/packages/material-ui-icons/lib/esm/MoreHorizTwoTone.js new file mode 100644 index 00000000000000..be528aa95257d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreHorizTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreHorizTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreOutlined.js b/packages/material-ui-icons/lib/esm/MoreOutlined.js new file mode 100644 index 00000000000000..a1dc36a31a6e47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreOutlined.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "12", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "12", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "19", + cy: "12", + r: "1.5" +}, "3")], 'MoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreRounded.js b/packages/material-ui-icons/lib/esm/MoreRounded.js new file mode 100644 index 00000000000000..9331446db48f15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L.37 11.45c-.22.34-.22.77 0 1.11l5.04 7.56c.36.52.97.88 1.66.88H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'MoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreSharp.js b/packages/material-ui-icons/lib/esm/MoreSharp.js new file mode 100644 index 00000000000000..19c94359efffa7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 3H6l-6 9 6 9h18V3zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'MoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreTime.js b/packages/material-ui-icons/lib/esm/MoreTime.js new file mode 100644 index 00000000000000..72bb3e03b2c83f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreTime.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" +}, "2")], 'MoreTime'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreTimeOutlined.js b/packages/material-ui-icons/lib/esm/MoreTimeOutlined.js new file mode 100644 index 00000000000000..423e75e7e0eb0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreTimeOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" +}, "2")], 'MoreTimeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreTimeRounded.js b/packages/material-ui-icons/lib/esm/MoreTimeRounded.js new file mode 100644 index 00000000000000..ba81fdab64ba0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreTimeRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.75 8c-.41 0-.75.34-.75.75v4.69c0 .35.18.67.47.85l3.64 2.24c.33.2.76.11.97-.21.23-.34.12-.8-.23-1.01L11.5 13.3V8.75c0-.41-.34-.75-.75-.75z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22 5h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1z" +}, "2")], 'MoreTimeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreTimeSharp.js b/packages/material-ui-icons/lib/esm/MoreTimeSharp.js new file mode 100644 index 00000000000000..56968e8d55cfc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreTimeSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" +}, "2")], 'MoreTimeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreTimeTwoTone.js b/packages/material-ui-icons/lib/esm/MoreTimeTwoTone.js new file mode 100644 index 00000000000000..050c19ec6e6bdf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreTimeTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.92 12c.05.33.08.66.08 1 0 3.9-3.1 7-7 7s-7-3.1-7-7 3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9 9-4 9-9c0-.34-.02-.67-.06-1h-2.02z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" +}, "2")], 'MoreTimeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreTwoTone.js b/packages/material-ui-icons/lib/esm/MoreTwoTone.js new file mode 100644 index 00000000000000..74ff63c7737bb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.06 5 2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM19 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "12", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "12", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "19", + cy: "12", + r: "1.5" +}, "4")], 'MoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreVert.js b/packages/material-ui-icons/lib/esm/MoreVert.js new file mode 100644 index 00000000000000..686fb265d0b70e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreVert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreVert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreVertOutlined.js b/packages/material-ui-icons/lib/esm/MoreVertOutlined.js new file mode 100644 index 00000000000000..26e321f8c384e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreVertOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreVertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreVertRounded.js b/packages/material-ui-icons/lib/esm/MoreVertRounded.js new file mode 100644 index 00000000000000..103a3e5388cc62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreVertRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreVertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreVertSharp.js b/packages/material-ui-icons/lib/esm/MoreVertSharp.js new file mode 100644 index 00000000000000..aecff5c26da184 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreVertSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreVertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoreVertTwoTone.js b/packages/material-ui-icons/lib/esm/MoreVertTwoTone.js new file mode 100644 index 00000000000000..f3ad1e409aa524 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoreVertTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'MoreVertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosAuto.js b/packages/material-ui-icons/lib/esm/MotionPhotosAuto.js new file mode 100644 index 00000000000000..4bb79a313c2b4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosAuto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.71-10.5h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" +}), 'MotionPhotosAuto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosAutoOutlined.js b/packages/material-ui-icons/lib/esm/MotionPhotosAutoOutlined.js new file mode 100644 index 00000000000000..fdf90e89b0484d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosAutoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zm-.74-1.49h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" +}), 'MotionPhotosAutoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosAutoRounded.js b/packages/material-ui-icons/lib/esm/MotionPhotosAutoRounded.js new file mode 100644 index 00000000000000..db68661e904ee5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosAutoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9c.26.26.34.63.25.98-.35 1.36-.36 2.87.1 4.38.88 2.91 3.44 5.1 6.44 5.55 5.52.81 10.19-4.06 9.03-9.62-.65-3.13-3.23-5.61-6.37-6.16-1.21-.21-2.38-.15-3.46.13-.35.09-.73 0-.98-.25-.56-.56-.28-1.49.47-1.69 1.47-.38 3.06-.44 4.7-.09 3.98.86 7.09 4.18 7.7 8.2 1.04 6.81-4.82 12.58-11.64 11.42-4.01-.69-7.26-3.86-8.04-7.85-.31-1.59-.24-3.12.12-4.53C2.52 8.72 3.45 8.45 4 9zm3-3.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-3.39-3.37 2.43-6.46c.15-.4.53-.67.96-.67s.82.27.97.67l2.43 6.46c.16.42-.15.87-.6.87-.27 0-.52-.17-.61-.43l-.56-1.61H10.4l-.57 1.62c-.09.26-.33.43-.61.43-.46-.01-.77-.46-.61-.88z" +}), 'MotionPhotosAutoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosAutoSharp.js b/packages/material-ui-icons/lib/esm/MotionPhotosAutoSharp.js new file mode 100644 index 00000000000000..ebcf0b49b38f77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosAutoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.71-10.5h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" +}), 'MotionPhotosAutoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosAutoTwoTone.js b/packages/material-ui-icons/lib/esm/MotionPhotosAutoTwoTone.js new file mode 100644 index 00000000000000..c8757a59287e09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosAutoTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.88 7.88 1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zm-.74-1.49h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" +}), 'MotionPhotosAutoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosOff.js b/packages/material-ui-icons/lib/esm/MotionPhotosOff.js new file mode 100644 index 00000000000000..40b364849f913e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.84 20.84 3.16 3.16 1.89 4.43l1.89 1.89C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.77l1.89 1.89 1.27-1.28zM12 20c-4.41 0-8-3.59-8-8 0-1.55.45-3 1.22-4.23l1.46 1.46C6.25 10.06 6 11 6 12c0 3.31 2.69 6 6 6 1 0 1.94-.25 2.77-.68l1.46 1.46C15 19.55 13.55 20 12 20zM6.32 3.77C7.93 2.66 9.89 2 12 2c5.52 0 10 4.48 10 10 0 2.11-.66 4.07-1.77 5.68l-1.45-1.45C19.55 15 20 13.55 20 12c0-4.41-3.59-8-8-8-1.55 0-3 .45-4.23 1.22L6.32 3.77zM18 12c0 1-.25 1.94-.68 2.77L9.23 6.68C10.06 6.25 11 6 12 6c3.31 0 6 2.69 6 6z" +}), 'MotionPhotosOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosOffOutlined.js b/packages/material-ui-icons/lib/esm/MotionPhotosOffOutlined.js new file mode 100644 index 00000000000000..c441e3cd800541 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.93 10.94C14.86 19.59 13.48 20 12 20zm0-16c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" +}), 'MotionPhotosOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosOffRounded.js b/packages/material-ui-icons/lib/esm/MotionPhotosOffRounded.js new file mode 100644 index 00000000000000..75bb1bffd12b7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosOffRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-.92 0-1.8.22-2.58.59l7.99 7.99c.37-.78.59-1.66.59-2.58 0-3.31-2.69-6-6-6zM2.1 3.51c-.39.39-.39 1.03 0 1.42l1.56 1.56c-1.25 1.88-1.88 4.21-1.59 6.7.52 4.54 4.21 8.23 8.75 8.75 2.49.28 4.81-.34 6.69-1.59l1.56 1.56c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41L3.51 3.51c-.38-.38-1.02-.39-1.41 0zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l1.47 1.47C6.22 10.2 6 11.08 6 12c0 3.31 2.69 6 6 6 .92 0 1.8-.22 2.58-.59l1.47 1.47C14.86 19.59 13.48 20 12 20z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" +}, "1")], 'MotionPhotosOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosOffSharp.js b/packages/material-ui-icons/lib/esm/MotionPhotosOffSharp.js new file mode 100644 index 00000000000000..08c38e94453e3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosOffSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-.92 0-1.8.22-2.58.59l7.99 7.99c.37-.78.59-1.66.59-2.58 0-3.31-2.69-6-6-6zM2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l1.47 1.47C6.22 10.2 6 11.08 6 12c0 3.31 2.69 6 6 6 .92 0 1.8-.22 2.58-.59l1.47 1.47C14.86 19.59 13.48 20 12 20z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" +}, "1")], 'MotionPhotosOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MotionPhotosOffTwoTone.js b/packages/material-ui-icons/lib/esm/MotionPhotosOffTwoTone.js new file mode 100644 index 00000000000000..64f6360a3feb46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MotionPhotosOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.93 10.94C14.86 19.59 13.48 20 12 20zm0-16c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" +}), 'MotionPhotosOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mouse.js b/packages/material-ui-icons/lib/esm/Mouse.js new file mode 100644 index 00000000000000..c6e795f31cde4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mouse.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" +}), 'Mouse'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MouseOutlined.js b/packages/material-ui-icons/lib/esm/MouseOutlined.js new file mode 100644 index 00000000000000..4da2be28f41b49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MouseOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-2 0h-5V3.16c2.81.47 4.96 2.9 5 5.84zm-7-5.84V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z" +}), 'MouseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MouseRounded.js b/packages/material-ui-icons/lib/esm/MouseRounded.js new file mode 100644 index 00000000000000..f1a50c1faa41c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MouseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" +}), 'MouseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MouseSharp.js b/packages/material-ui-icons/lib/esm/MouseSharp.js new file mode 100644 index 00000000000000..868de4ffc5241b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MouseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" +}), 'MouseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MouseTwoTone.js b/packages/material-ui-icons/lib/esm/MouseTwoTone.js new file mode 100644 index 00000000000000..0cba4af1fefea2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MouseTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 3.16V9h5c-.04-2.94-2.19-5.37-5-5.84zm-2 0C8.19 3.63 6.04 6.06 6 9h5V3.16zM11 11H6v4c0 3.31 2.69 6 6 6s6-2.69 6-6v-4h-7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-7-5.84c2.81.47 4.96 2.9 5 5.84h-5V3.16zm-2 0V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z" +}, "1")], 'MouseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoveToInbox.js b/packages/material-ui-icons/lib/esm/MoveToInbox.js new file mode 100644 index 00000000000000..96d85aa4bdc76e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoveToInbox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z" +}), 'MoveToInbox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoveToInboxOutlined.js b/packages/material-ui-icons/lib/esm/MoveToInboxOutlined.js new file mode 100644 index 00000000000000..0052065775a84d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoveToInboxOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z" +}), 'MoveToInboxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoveToInboxRounded.js b/packages/material-ui-icons/lib/esm/MoveToInboxRounded.js new file mode 100644 index 00000000000000..2dfe02880806ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoveToInboxRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 11h-3.56c-.36 0-.68.19-.86.5-.52.9-1.47 1.5-2.58 1.5s-2.06-.6-2.58-1.5c-.18-.31-.51-.5-.86-.5H5V5h14v9zm-4.21-4H13V7c0-.55-.45-1-1-1s-1 .45-1 1v3H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" +}), 'MoveToInboxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoveToInboxSharp.js b/packages/material-ui-icons/lib/esm/MoveToInboxSharp.js new file mode 100644 index 00000000000000..75fd3753f0412a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoveToInboxSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z" +}), 'MoveToInboxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MoveToInboxTwoTone.js b/packages/material-ui-icons/lib/esm/MoveToInboxTwoTone.js new file mode 100644 index 00000000000000..851d3e395d8b59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MoveToInboxTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z" +}, "1")], 'MoveToInboxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Movie.js b/packages/material-ui-icons/lib/esm/Movie.js new file mode 100644 index 00000000000000..c5f8dd46b6d830 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Movie.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" +}), 'Movie'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieCreation.js b/packages/material-ui-icons/lib/esm/MovieCreation.js new file mode 100644 index 00000000000000..742469e629f975 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieCreation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" +}), 'MovieCreation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieCreationOutlined.js b/packages/material-ui-icons/lib/esm/MovieCreationOutlined.js new file mode 100644 index 00000000000000..222daa738882dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieCreationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" +}), 'MovieCreationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieCreationRounded.js b/packages/material-ui-icons/lib/esm/MovieCreationRounded.js new file mode 100644 index 00000000000000..bea29af1ba8c5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieCreationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L15 4h-2l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L10 4H8l1.82 3.64c.08.16-.04.36-.22.36H7.62c-.38 0-.73-.21-.9-.55L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1h-3z" +}), 'MovieCreationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieCreationSharp.js b/packages/material-ui-icons/lib/esm/MovieCreationSharp.js new file mode 100644 index 00000000000000..fc11276a6d401b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieCreationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" +}), 'MovieCreationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieCreationTwoTone.js b/packages/material-ui-icons/lib/esm/MovieCreationTwoTone.js new file mode 100644 index 00000000000000..71569d7c59977f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieCreationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6.47V18h16v-8H5.76z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm2 14H4V6.47L5.76 10H20v8z" +}, "1")], 'MovieCreationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieFilter.js b/packages/material-ui-icons/lib/esm/MovieFilter.js new file mode 100644 index 00000000000000..a292eaf4be0e80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieFilter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" +}), 'MovieFilter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieFilterOutlined.js b/packages/material-ui-icons/lib/esm/MovieFilterOutlined.js new file mode 100644 index 00000000000000..6b7fdc530b1666 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieFilterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 11-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7 2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z" +}), 'MovieFilterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieFilterRounded.js b/packages/material-ui-icons/lib/esm/MovieFilterRounded.js new file mode 100644 index 00000000000000..bd55fa84af4661 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieFilterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.5 4H18l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.65-.17-.83-.45L15 4h-2l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.65-.17-.83-.45L10 4H8l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.64-.17-.83-.45L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4.5c0-.28-.22-.5-.5-.5zM11.25 15.25 10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" +}), 'MovieFilterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieFilterSharp.js b/packages/material-ui-icons/lib/esm/MovieFilterSharp.js new file mode 100644 index 00000000000000..879888d4108f6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieFilterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" +}), 'MovieFilterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieFilterTwoTone.js b/packages/material-ui-icons/lib/esm/MovieFilterTwoTone.js new file mode 100644 index 00000000000000..f84e95d3815d28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieFilterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.63 11.37 18 12l-1.37.63L16 14l-.63-1.37L14 12l1.37-.63L16 10H5.77L4.01 6.47V18h16v-8H16l.63 1.37zm-5.69 3.57L10 17l-.94-2.06L7 14l2.06-.94L10 11l.94 2.06L13 14l-2.06.94z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m10 11-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7 2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z" +}, "1")], 'MovieFilterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieOutlined.js b/packages/material-ui-icons/lib/esm/MovieOutlined.js new file mode 100644 index 00000000000000..eb7897b4ad3084 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6.47 5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" +}), 'MovieOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieRounded.js b/packages/material-ui-icons/lib/esm/MovieRounded.js new file mode 100644 index 00000000000000..0f1cfaab5bc01f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L15 4h-2l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L10 4H8l1.82 3.64c.08.16-.04.36-.22.36H7.62c-.38 0-.73-.21-.9-.55L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1h-3z" +}), 'MovieRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieSharp.js b/packages/material-ui-icons/lib/esm/MovieSharp.js new file mode 100644 index 00000000000000..19f079e19b73a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4 2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" +}), 'MovieSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovieTwoTone.js b/packages/material-ui-icons/lib/esm/MovieTwoTone.js new file mode 100644 index 00000000000000..6b559079eb2d99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovieTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 10H5.76L4 6.47V18h16z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2.01 6 2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2zM4 6.47 5.76 10H20v8H4V6.47z" +}, "1")], 'MovieTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Moving.js b/packages/material-ui-icons/lib/esm/Moving.js new file mode 100644 index 00000000000000..022f893a3336fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Moving.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.71 9.71 22 12V6h-6l2.29 2.29-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0l4.19-4.17z" +}), 'Moving'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovingOutlined.js b/packages/material-ui-icons/lib/esm/MovingOutlined.js new file mode 100644 index 00000000000000..18b7484c487e1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9.42V12h2V6h-6v2h2.58l-4.46 4.46c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0L20 9.42z" +}), 'MovingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovingRounded.js b/packages/material-ui-icons/lib/esm/MovingRounded.js new file mode 100644 index 00000000000000..7034963a501192 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.7 17.29c.39.39 1.02.39 1.41 0L8.7 12.7c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0L19.7 9.7l1.44 1.44c.31.31.85.09.85-.35V6.5c.01-.28-.21-.5-.49-.5h-4.29c-.45 0-.67.54-.35.85l1.44 1.44-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2.7 15.88c-.38.39-.38 1.03 0 1.41z" +}), 'MovingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovingSharp.js b/packages/material-ui-icons/lib/esm/MovingSharp.js new file mode 100644 index 00000000000000..6db51a004774fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.71 9.71 22 12V6h-6l2.29 2.29-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0l4.19-4.17z" +}), 'MovingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MovingTwoTone.js b/packages/material-ui-icons/lib/esm/MovingTwoTone.js new file mode 100644 index 00000000000000..372c3aaaaa4c1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MovingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.71 9.71 22 12V6h-6l2.29 2.29-4.17 4.17c-.39.39-1.02.39-1.41 0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24 0L2 16.59 3.41 18l5.29-5.29c.39-.39 1.02-.39 1.41 0l1.17 1.17c1.17 1.17 3.07 1.17 4.24 0l4.19-4.17z" +}), 'MovingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Mp.js b/packages/material-ui-icons/lib/esm/Mp.js new file mode 100644 index 00000000000000..dbda975cdd0705 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Mp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9H11c.55 0 1 .45 1 1v5h-1.5v-4.5h-1v3H8v-3H7V15H5.5v-5c0-.55.45-1 1-1zm9 6H14V9h3.5c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2V15zm0-3H17v-1.5h-1.5V12z" +}), 'Mp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MpOutlined.js b/packages/material-ui-icons/lib/esm/MpOutlined.js new file mode 100644 index 00000000000000..0117d9ba2783e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MpOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 9h-3.5v6H15v-1.5h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-.5 3H15v-1.5h1.5V12zm-5-3H7c-.55 0-1 .45-1 1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5c0-.55-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 19V5h14v14H5z" +}, "1")], 'MpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MpRounded.js b/packages/material-ui-icons/lib/esm/MpRounded.js new file mode 100644 index 00000000000000..8cc8e0673b991e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7 9h4.5c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10.5h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10.5h-1v3.75c0 .41-.34.75-.75.75S6 14.66 6 14.25V10c0-.55.45-1 1-1zm7.25 6c-.41 0-.75-.33-.75-.75V10c0-.55.45-1 1-1H17c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75zm.75-3h1.5v-1.5H15V12z" +}), 'MpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MpSharp.js b/packages/material-ui-icons/lib/esm/MpSharp.js new file mode 100644 index 00000000000000..cc44d680a8e66d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM6 9h6.5v6H11v-4.5h-1v3H8.5v-3h-1V15H6V9zm9 6h-1.5V9H18v4.5h-3V15zm0-3h1.5v-1.5H15V12z" +}), 'MpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MpTwoTone.js b/packages/material-ui-icons/lib/esm/MpTwoTone.js new file mode 100644 index 00000000000000..a39baf245e3350 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MpTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 10.5h1.5V12H15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V5H5zm7.5 10H11v-4.5h-1v3H8.5v-3h-1V15H6v-5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5zm5.5-2.5c0 .55-.45 1-1 1h-2V15h-1.5V9H17c.55 0 1 .45 1 1v2.5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 9h-3.5v6H15v-1.5h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-.5 3H15v-1.5h1.5V12zm-5-3H7c-.55 0-1 .45-1 1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5c0-.55-.45-1-1-1z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 19V5h14v14H5z" +}, "3")], 'MpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultilineChart.js b/packages/material-ui-icons/lib/esm/MultilineChart.js new file mode 100644 index 00000000000000..ae627fb8c5fe8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultilineChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" +}), 'MultilineChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultilineChartOutlined.js b/packages/material-ui-icons/lib/esm/MultilineChartOutlined.js new file mode 100644 index 00000000000000..1b7beb5a7c3cbe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultilineChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" +}), 'MultilineChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultilineChartRounded.js b/packages/material-ui-icons/lib/esm/MultilineChartRounded.js new file mode 100644 index 00000000000000..aa1430892b79b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultilineChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.36 6.28-.06-.06c-.39-.39-1.03-.37-1.39.04l-2.18 2.45C15.68 6.4 12.83 5 9.61 5c-2.5 0-4.83.87-6.75 2.3-.47.35-.52 1.04-.11 1.45l.06.06c.33.33.86.39 1.23.11C5.63 7.72 7.54 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.12 6.13c-.37.37-.37.98 0 1.35l.15.15c.37.37.98.37 1.35 0l5.32-5.33 3.25 3.25c.41.41 1.07.39 1.45-.04l3.35-3.76c.62 1.12 1.08 2.39 1.32 3.73.08.47.47.82.95.82h.09c.6 0 1.05-.55.94-1.14-.32-1.85-.98-3.54-1.89-5L21.4 7.6c.34-.38.32-.96-.04-1.32z" +}), 'MultilineChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultilineChartSharp.js b/packages/material-ui-icons/lib/esm/MultilineChartSharp.js new file mode 100644 index 00000000000000..aa9c36e9cf7ead --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultilineChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" +}), 'MultilineChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultilineChartTwoTone.js b/packages/material-ui-icons/lib/esm/MultilineChartTwoTone.js new file mode 100644 index 00000000000000..aac2afe54f8d14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultilineChartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 6.92-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" +}), 'MultilineChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultipleStop.js b/packages/material-ui-icons/lib/esm/MultipleStop.js new file mode 100644 index 00000000000000..e905076ba91fb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultipleStop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 4 4 4-4 4V9h-4V7h4V4zm-7 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h4v-2H7v-3l-4 4 4 4v-3zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'MultipleStop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultipleStopOutlined.js b/packages/material-ui-icons/lib/esm/MultipleStopOutlined.js new file mode 100644 index 00000000000000..8b48187d25671c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultipleStopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 4 4 4-4 4V9h-4V7h4V4zm-7 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h4v-2H7v-3l-4 4 4 4v-3zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'MultipleStopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultipleStopRounded.js b/packages/material-ui-icons/lib/esm/MultipleStopRounded.js new file mode 100644 index 00000000000000..cf47939247cc6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultipleStopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 5.21c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79c-.31.31-.85.09-.85-.36V9h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V5.21zM10 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h3c.55 0 1-.45 1-1s-.45-1-1-1H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V17zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'MultipleStopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultipleStopSharp.js b/packages/material-ui-icons/lib/esm/MultipleStopSharp.js new file mode 100644 index 00000000000000..859dd1d881a82d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultipleStopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 4 4 4-4 4V9h-4V7h4V4zM7 17h4v-2H7v-3l-4 4 4 4v-3zm12-2h-2v2h2v-2zm-4 0h-2v2h2v-2zm-4-8H9v2h2V7zM7 7H5v2h2V7z" +}), 'MultipleStopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MultipleStopTwoTone.js b/packages/material-ui-icons/lib/esm/MultipleStopTwoTone.js new file mode 100644 index 00000000000000..e5b8d16186f7e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MultipleStopTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17 4 4 4-4 4V9h-4V7h4V4zm-7 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm1 10h4v-2H7v-3l-4 4 4 4v-3zm7 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'MultipleStopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Museum.js b/packages/material-ui-icons/lib/esm/Museum.js new file mode 100644 index 00000000000000..1147d1e459da48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Museum.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-6 7h-2v-4l-2 3-2-3v4H8v-7h2l2 3 2-3h2v7z" +}), 'Museum'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MuseumOutlined.js b/packages/material-ui-icons/lib/esm/MuseumOutlined.js new file mode 100644 index 00000000000000..0a3cfd013bc208 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MuseumOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-4 9H6V9h12v11z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m10 14 2 3 2-3v4h2v-7h-2l-2 3-2-3H8v7h2z" +}, "1")], 'MuseumOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MuseumRounded.js b/packages/material-ui-icons/lib/esm/MuseumRounded.js new file mode 100644 index 00000000000000..0ebaf07ca2916d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MuseumRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.5 11c.28 0 .5-.22.5-.5V9.26c0-.16-.08-.32-.21-.41L12.57 2.4c-.34-.24-.8-.24-1.15 0L2.21 8.85c-.13.09-.21.25-.21.41v1.24c0 .28.22.5.5.5H4v9H3c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1h-1v-9h1.5zM16 17c0 .55-.45 1-1 1s-1-.45-1-1v-3l-1.17 1.75c-.4.59-1.27.59-1.66 0L10 14v3c0 .55-.45 1-1 1s-1-.45-1-1v-4.7c0-.72.58-1.3 1.3-1.3.43 0 .84.22 1.08.58L12 14l1.61-2.42c.25-.36.65-.58 1.09-.58.72 0 1.3.58 1.3 1.3V17z" +}), 'MuseumRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MuseumSharp.js b/packages/material-ui-icons/lib/esm/MuseumSharp.js new file mode 100644 index 00000000000000..39abbb667b4e9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MuseumSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-6 7h-2v-4l-2 3-2-3v4H8v-7h2l2 3 2-3h2v7z" +}), 'MuseumSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MuseumTwoTone.js b/packages/material-ui-icons/lib/esm/MuseumTwoTone.js new file mode 100644 index 00000000000000..750769f33f22b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MuseumTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20h12V9H6v11zm2-9h2l2 3 2-3h2v7h-2v-4l-2 3-2-3v4H8v-7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-4 9H6V9h12v11z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m10 14 2 3 2-3v4h2v-7h-2l-2 3-2-3H8v7h2z" +}, "2")], 'MuseumTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicNote.js b/packages/material-ui-icons/lib/esm/MusicNote.js new file mode 100644 index 00000000000000..17f9b066498098 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicNote.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" +}), 'MusicNote'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicNoteOutlined.js b/packages/material-ui-icons/lib/esm/MusicNoteOutlined.js new file mode 100644 index 00000000000000..275c57349af68d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicNoteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 3 .01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'MusicNoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicNoteRounded.js b/packages/material-ui-icons/lib/esm/MusicNoteRounded.js new file mode 100644 index 00000000000000..f4fca935046dea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicNoteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z" +}), 'MusicNoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicNoteSharp.js b/packages/material-ui-icons/lib/esm/MusicNoteSharp.js new file mode 100644 index 00000000000000..8bd15f6208bf42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicNoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" +}), 'MusicNoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicNoteTwoTone.js b/packages/material-ui-icons/lib/esm/MusicNoteTwoTone.js new file mode 100644 index 00000000000000..b346a74b61d5e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicNoteTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10.01", + cy: "17", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 3 .01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'MusicNoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicOff.js b/packages/material-ui-icons/lib/esm/MusicOff.js new file mode 100644 index 00000000000000..fb5f32090bb7d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.27 3 3 4.27l9 9v.28c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4v-1.73L19.73 21 21 19.73 4.27 3zM14 7h4V3h-6v5.18l2 2z" +}), 'MusicOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicOffOutlined.js b/packages/material-ui-icons/lib/esm/MusicOffOutlined.js new file mode 100644 index 00000000000000..e373bc9d6f4e09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'MusicOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicOffRounded.js b/packages/material-ui-icons/lib/esm/MusicOffRounded.js new file mode 100644 index 00000000000000..9cca06d30c3261 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9.61V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-3c-.55 0-1 .45-1 1v3.61l2 2zM5.12 3.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l8.29 8.3v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58l5.02 5.02c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56z" +}), 'MusicOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicOffSharp.js b/packages/material-ui-icons/lib/esm/MusicOffSharp.js new file mode 100644 index 00000000000000..6bb7dd07224525 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9.61V7h4V3h-6v4.61zM4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44 4.41 2.86z" +}), 'MusicOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicOffTwoTone.js b/packages/material-ui-icons/lib/esm/MusicOffTwoTone.js new file mode 100644 index 00000000000000..3496f485c2be61 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicOffTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "17", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'MusicOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicVideo.js b/packages/material-ui-icons/lib/esm/MusicVideo.js new file mode 100644 index 00000000000000..a57ce1f087e644 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicVideo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" +}), 'MusicVideo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicVideoOutlined.js b/packages/material-ui-icons/lib/esm/MusicVideoOutlined.js new file mode 100644 index 00000000000000..076c9277be5603 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicVideoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" +}), 'MusicVideoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicVideoRounded.js b/packages/material-ui-icons/lib/esm/MusicVideoRounded.js new file mode 100644 index 00000000000000..6a7789ab609a0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicVideoRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.84 16.98c1.26-.17 2.16-1.33 2.16-2.6V9h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1v4.51c-.46-.35-1.02-.54-1.66-.51-1.11.07-2.09.92-2.3 2.02-.31 1.71 1.11 3.18 2.8 2.96z" +}, "1")], 'MusicVideoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicVideoSharp.js b/packages/material-ui-icons/lib/esm/MusicVideoSharp.js new file mode 100644 index 00000000000000..8c3222eeefc607 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicVideoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-2 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z" +}), 'MusicVideoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MusicVideoTwoTone.js b/packages/material-ui-icons/lib/esm/MusicVideoTwoTone.js new file mode 100644 index 00000000000000..9dae1d7a415487 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MusicVideoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V5H3v14zm8-7c.35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3s1.34-3 3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-1c1.65 0 2.98-1.33 3-2.97V8h3V6h-5v6.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3z" +}, "1")], 'MusicVideoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MyLocation.js b/packages/material-ui-icons/lib/esm/MyLocation.js new file mode 100644 index 00000000000000..4afb37d64d74c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MyLocation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'MyLocation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MyLocationOutlined.js b/packages/material-ui-icons/lib/esm/MyLocationOutlined.js new file mode 100644 index 00000000000000..416e017fc58f09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MyLocationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'MyLocationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MyLocationRounded.js b/packages/material-ui-icons/lib/esm/MyLocationRounded.js new file mode 100644 index 00000000000000..b72d26efa6d324 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MyLocationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'MyLocationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MyLocationSharp.js b/packages/material-ui-icons/lib/esm/MyLocationSharp.js new file mode 100644 index 00000000000000..0473103193383a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MyLocationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'MyLocationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/MyLocationTwoTone.js b/packages/material-ui-icons/lib/esm/MyLocationTwoTone.js new file mode 100644 index 00000000000000..ec406a645b8a07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/MyLocationTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 3.06V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "2")], 'MyLocationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Nat.js b/packages/material-ui-icons/lib/esm/Nat.js new file mode 100644 index 00000000000000..af6cc265ac1853 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Nat.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" +}, "1")], 'Nat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatOutlined.js b/packages/material-ui-icons/lib/esm/NatOutlined.js new file mode 100644 index 00000000000000..81bf76f6b94b50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" +}, "1")], 'NatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatRounded.js b/packages/material-ui-icons/lib/esm/NatRounded.js new file mode 100644 index 00000000000000..b3a580a07f0595 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22.47 12.4c.27-.2.27-.6 0-.8L19 9v2h-4.05c-.47-4.69-4.16-8.42-8.83-8.94-.6-.06-1.12.4-1.12 1 0 .5.37.93.87.99C9.88 4.48 13 7.87 13 12s-3.12 7.52-7.13 7.95c-.5.06-.87.49-.87.99 0 .6.52 1.07 1.11 1 4.67-.52 8.37-4.25 8.83-8.94H19v2l3.47-2.6z" +}, "1")], 'NatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatSharp.js b/packages/material-ui-icons/lib/esm/NatSharp.js new file mode 100644 index 00000000000000..21fa2f3c1cfe16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" +}, "1")], 'NatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatTwoTone.js b/packages/material-ui-icons/lib/esm/NatTwoTone.js new file mode 100644 index 00000000000000..ecf92674f9a8f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "12", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m23 12-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" +}, "2")], 'NatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Nature.js b/packages/material-ui-icons/lib/esm/Nature.js new file mode 100644 index 00000000000000..2670580906b021 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Nature.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z" +}), 'Nature'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatureOutlined.js b/packages/material-ui-icons/lib/esm/NatureOutlined.js new file mode 100644 index 00000000000000..db7edffba9dc01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatureOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z" +}), 'NatureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NaturePeople.js b/packages/material-ui-icons/lib/esm/NaturePeople.js new file mode 100644 index 00000000000000..955f07a3596ab4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NaturePeople.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z" +}), 'NaturePeople'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NaturePeopleOutlined.js b/packages/material-ui-icons/lib/esm/NaturePeopleOutlined.js new file mode 100644 index 00000000000000..16c47ab3147afe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NaturePeopleOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'NaturePeopleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NaturePeopleRounded.js b/packages/material-ui-icons/lib/esm/NaturePeopleRounded.js new file mode 100644 index 00000000000000..dfcf71eb6423eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NaturePeopleRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19.09 3.38 2.58 6.16 5.83 6.7V20H6v-3h.5c.28 0 .5-.22.5-.5V13c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3.5c0 .28.22.5.5.5H3v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1h-2v-3.88c3.47-.41 6.17-3.36 6.17-6.95z" +}, "1")], 'NaturePeopleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NaturePeopleSharp.js b/packages/material-ui-icons/lib/esm/NaturePeopleSharp.js new file mode 100644 index 00000000000000..0046aa3d45a771 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NaturePeopleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19.09 3.38 2.58 6.16 5.83 6.7V20H6v-3h1v-5H2v5h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z" +}), 'NaturePeopleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NaturePeopleTwoTone.js b/packages/material-ui-icons/lib/esm/NaturePeopleTwoTone.js new file mode 100644 index 00000000000000..ab58962837cf87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NaturePeopleTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.17", + cy: "9.17", + r: "5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15.17 2.17c-3.87 0-7 3.13-7 7 0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "2")], 'NaturePeopleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatureRounded.js b/packages/material-ui-icons/lib/esm/NatureRounded.js new file mode 100644 index 00000000000000..f5fa16a22ca1ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatureRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 16.12c3.37-.4 6.01-3.19 6.16-6.64.17-3.87-3.02-7.25-6.89-7.31-3.92-.05-7.1 3.1-7.1 7 0 3.47 2.52 6.34 5.83 6.89V20H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-5v-3.88z" +}), 'NatureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatureSharp.js b/packages/material-ui-icons/lib/esm/NatureSharp.js new file mode 100644 index 00000000000000..362c4e9e369234 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatureSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z" +}), 'NatureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NatureTwoTone.js b/packages/material-ui-icons/lib/esm/NatureTwoTone.js new file mode 100644 index 00000000000000..f14a03c9bb06a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NatureTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.17 4.17c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.25-5-5-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88h-.03c3.49-.4 6.2-3.36 6.2-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.25 5-5 5z" +}, "1")], 'NatureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateBefore.js b/packages/material-ui-icons/lib/esm/NavigateBefore.js new file mode 100644 index 00000000000000..18fe45dc223601 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateBefore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z" +}), 'NavigateBefore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateBeforeOutlined.js b/packages/material-ui-icons/lib/esm/NavigateBeforeOutlined.js new file mode 100644 index 00000000000000..798939d267628e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateBeforeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.61 7.41 14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" +}), 'NavigateBeforeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateBeforeRounded.js b/packages/material-ui-icons/lib/esm/NavigateBeforeRounded.js new file mode 100644 index 00000000000000..2602d2e778c870 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateBeforeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.91 6.71a.9959.9959 0 0 0-1.41 0L8.91 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L11.03 12l3.88-3.88c.38-.39.38-1.03 0-1.41z" +}), 'NavigateBeforeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateBeforeSharp.js b/packages/material-ui-icons/lib/esm/NavigateBeforeSharp.js new file mode 100644 index 00000000000000..6ed0792dd8b7b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateBeforeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.61 7.41 14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" +}), 'NavigateBeforeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateBeforeTwoTone.js b/packages/material-ui-icons/lib/esm/NavigateBeforeTwoTone.js new file mode 100644 index 00000000000000..1604363085f206 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateBeforeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.2 6-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" +}), 'NavigateBeforeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateNext.js b/packages/material-ui-icons/lib/esm/NavigateNext.js new file mode 100644 index 00000000000000..ded1bf3bb969aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateNext.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" +}), 'NavigateNext'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateNextOutlined.js b/packages/material-ui-icons/lib/esm/NavigateNextOutlined.js new file mode 100644 index 00000000000000..eb6b59988aa86f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateNextOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.02 6 8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z" +}), 'NavigateNextOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateNextRounded.js b/packages/material-ui-icons/lib/esm/NavigateNextRounded.js new file mode 100644 index 00000000000000..d73327315b8019 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateNextRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.31 6.71c-.39.39-.39 1.02 0 1.41L13.19 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L10.72 6.7c-.38-.38-1.02-.38-1.41.01z" +}), 'NavigateNextRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateNextSharp.js b/packages/material-ui-icons/lib/esm/NavigateNextSharp.js new file mode 100644 index 00000000000000..bc1e919ae17e9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateNextSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.02 6 8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z" +}), 'NavigateNextSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigateNextTwoTone.js b/packages/material-ui-icons/lib/esm/NavigateNextTwoTone.js new file mode 100644 index 00000000000000..f022d2d1082370 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigateNextTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.02 18 6-6-6-6-1.41 1.41L13.19 12l-4.58 4.59z" +}), 'NavigateNextTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Navigation.js b/packages/material-ui-icons/lib/esm/Navigation.js new file mode 100644 index 00000000000000..65f94761b64320 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Navigation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4.5 20.29l.71.71L12 18l6.79 3 .71-.71z" +}), 'Navigation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigationOutlined.js b/packages/material-ui-icons/lib/esm/NavigationOutlined.js new file mode 100644 index 00000000000000..0d682d765247c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 7.27 4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2 4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z" +}), 'NavigationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigationRounded.js b/packages/material-ui-icons/lib/esm/NavigationRounded.js new file mode 100644 index 00000000000000..0e1db7a6e084ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.93 4.26 6.15 14.99c.34.83-.51 1.66-1.33 1.29l-5.34-2.36c-.26-.11-.55-.11-.81 0l-5.34 2.36c-.82.36-1.67-.46-1.33-1.29l6.15-14.99c.33-.83 1.51-.83 1.85 0z" +}), 'NavigationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigationSharp.js b/packages/material-ui-icons/lib/esm/NavigationSharp.js new file mode 100644 index 00000000000000..0bb8ab85964158 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z" +}), 'NavigationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NavigationTwoTone.js b/packages/material-ui-icons/lib/esm/NavigationTwoTone.js new file mode 100644 index 00000000000000..3b69eba293b1e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NavigationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m7.72 17.7 3.47-1.53.81-.36.81.36 3.47 1.53L12 7.27z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m4.5 20.29.71.71L12 18l6.79 3 .71-.71L12 2 4.5 20.29zm8.31-4.12-.81-.36-.81.36-3.47 1.53L12 7.27l4.28 10.43-3.47-1.53z" +}, "1")], 'NavigationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMe.js b/packages/material-ui-icons/lib/esm/NearMe.js new file mode 100644 index 00000000000000..8c49cff15bc001 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMe.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" +}), 'NearMe'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeDisabled.js b/packages/material-ui-icons/lib/esm/NearMeDisabled.js new file mode 100644 index 00000000000000..7ea2bb0e62f062 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.34 21 3l-3.34 9L12 6.34zm10.61 13.44L4.22 1.39 2.81 2.81l5.07 5.07L3 9.69v1.41l7.07 2.83L12.9 21h1.41l1.81-4.88 5.07 5.07 1.42-1.41z" +}), 'NearMeDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeDisabledOutlined.js b/packages/material-ui-icons/lib/esm/NearMeDisabledOutlined.js new file mode 100644 index 00000000000000..52e00b1a687f5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.34 21 3l-3.34 9-1.56-1.56 1.5-4.05-4.05 1.5L12 6.34zm9.19 14.85-5.07-5.07L14.31 21H12.9l-2.83-7.07L3 11.1V9.69l4.88-1.81-5.07-5.07L4.22 1.4 22.6 19.78l-1.41 1.41zm-6.62-6.62L9.43 9.43l-2.71 1.01 4.89 1.95 1.95 4.89 1.01-2.71z" +}), 'NearMeDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeDisabledRounded.js b/packages/material-ui-icons/lib/esm/NearMeDisabledRounded.js new file mode 100644 index 00000000000000..ef6115907438d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 6.34 6.95-2.58c.8-.3 1.58.48 1.29 1.29L17.66 12 12 6.34zm9.9 12.73L4.93 2.1a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.36 4.36-4.2 1.56c-.41.16-.68.54-.68.97 0 .42.26.8.65.96l6.42 2.57 2.57 6.42c.16.39.54.65.96.65.43 0 .82-.27.97-.67l1.56-4.2 4.36 4.36c.39.39 1.02.39 1.41 0 .39-.4.39-1.03 0-1.42z" +}), 'NearMeDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeDisabledSharp.js b/packages/material-ui-icons/lib/esm/NearMeDisabledSharp.js new file mode 100644 index 00000000000000..b636608cb9e59c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.34 21 3l-3.34 9L12 6.34zm10.61 13.44L4.22 1.39 2.81 2.81l5.07 5.07L3 9.69v1.41l7.07 2.83L12.9 21h1.41l1.81-4.88 5.07 5.07 1.42-1.41z" +}), 'NearMeDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/NearMeDisabledTwoTone.js new file mode 100644 index 00000000000000..9f9c36f8c702d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeDisabledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.1 10.44 1.5-4.05-4.05 1.5 2.55 2.55zm-1.53 4.13L9.43 9.43l-2.71 1.01 4.89 1.95 1.95 4.89 1.01-2.71z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 6.34 21 3l-3.34 9-1.56-1.56 1.5-4.05-4.05 1.5L12 6.34zm9.19 14.85-5.07-5.07L14.31 21H12.9l-2.83-7.07L3 11.1V9.69l4.88-1.81-5.07-5.07L4.22 1.4 22.6 19.78l-1.41 1.41zm-6.62-6.62L9.43 9.43l-2.71 1.01 4.89 1.95 1.95 4.89 1.01-2.71z" +}, "1")], 'NearMeDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeOutlined.js b/packages/material-ui-icons/lib/esm/NearMeOutlined.js new file mode 100644 index 00000000000000..08b0e7e54c6a29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.27 6.73-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" +}), 'NearMeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeRounded.js b/packages/material-ui-icons/lib/esm/NearMeRounded.js new file mode 100644 index 00000000000000..9f6c59d027c768 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.75 3.94 4.07 10.08c-.83.35-.81 1.53.02 1.85L9.43 14c.26.1.47.31.57.57l2.06 5.33c.32.84 1.51.86 1.86.03l6.15-14.67c.33-.83-.5-1.66-1.32-1.32z" +}), 'NearMeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeSharp.js b/packages/material-ui-icons/lib/esm/NearMeSharp.js new file mode 100644 index 00000000000000..d208018d1f100c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3 3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" +}), 'NearMeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearMeTwoTone.js b/packages/material-ui-icons/lib/esm/NearMeTwoTone.js new file mode 100644 index 00000000000000..9136f4b62231c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearMeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.39 12.61.32.83 1.32 3.42 4.24-10.13-10.13 4.24 3.42 1.33z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m3 11.51 6.84 2.65L12.48 21h.98L21 3 3 10.53v.98zm14.27-4.78-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23z" +}, "1")], 'NearMeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyError.js b/packages/material-ui-icons/lib/esm/NearbyError.js new file mode 100644 index 00000000000000..2ade7f29d528b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyError.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 7.57 4.42 4.42L12 16.41l-4.42-4.42L12 7.57zm0 11.62-7.2-7.2 7.2-7.2 6 6V7.16l-4.58-4.58c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L18 16.82v-3.63l-6 6zm8 .81h2v2h-2v-2zm2-10h-2v8h2v-8" +}), 'NearbyError'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyErrorOutlined.js b/packages/material-ui-icons/lib/esm/NearbyErrorOutlined.js new file mode 100644 index 00000000000000..a08b90faceee66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyErrorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 7.57 4.42 4.42L12 16.41l-4.42-4.42L12 7.57zm0 11.62-7.2-7.2 7.2-7.2 6 6V7.16l-4.58-4.58c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L18 16.82v-3.63l-6 6zm8 .81h2v2h-2v-2zm2-10h-2v8h2v-8" +}), 'NearbyErrorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyErrorRounded.js b/packages/material-ui-icons/lib/esm/NearbyErrorRounded.js new file mode 100644 index 00000000000000..3992672948f83e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyErrorRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.29 8.28-3.01 3.01c-.39.39-.39 1.02 0 1.41l3.01 3.01c.39.39 1.02.39 1.41 0l3.01-3.01c.39-.39.39-1.02 0-1.41L12.7 8.28c-.38-.39-1.02-.39-1.41 0z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m10.59 2.59-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0l4.58-4.6V13.2l-6 6L4.79 12 12 4.79l6 6V7.17l-4.58-4.58c-.78-.79-2.05-.79-2.83 0zM20 11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "21", + cy: "21", + r: "1" +}, "2")], 'NearbyErrorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyErrorSharp.js b/packages/material-ui-icons/lib/esm/NearbyErrorSharp.js new file mode 100644 index 00000000000000..cef458ff1a0639 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyErrorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7.58 16.42 12 12 16.42 7.58 12 12 7.58zm0 11.62L4.8 12 12 4.8l6 6V7.17l-5.99-5.99L1.18 12.01l10.83 10.83L18 16.83V13.2l-6 6zm8 .8h2v2h-2v-2zm2-10h-2v8h2v-8" +}), 'NearbyErrorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyErrorTwoTone.js b/packages/material-ui-icons/lib/esm/NearbyErrorTwoTone.js new file mode 100644 index 00000000000000..ee8f0d860ad053 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyErrorTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 7.57 4.42 4.42L12 16.41l-4.42-4.42L12 7.57zm0 11.62-7.2-7.2 7.2-7.2 6 6V7.16l-4.58-4.58c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L18 16.82v-3.63l-6 6zm8 .81h2v2h-2v-2zm2-10h-2v8h2v-8" +}), 'NearbyErrorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyOff.js b/packages/material-ui-icons/lib/esm/NearbyOff.js new file mode 100644 index 00000000000000..14891974118d2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.22 7.77-1.41 1.41L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" +}), 'NearbyOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyOffOutlined.js b/packages/material-ui-icons/lib/esm/NearbyOffOutlined.js new file mode 100644 index 00000000000000..0d4cd196700f18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.22 7.77-1.41 1.41L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" +}), 'NearbyOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyOffRounded.js b/packages/material-ui-icons/lib/esm/NearbyOffRounded.js new file mode 100644 index 00000000000000..7df9274b402474 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.93 8.48c-.39.39-1.02.39-1.41 0L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.98 16.97c.38.38.38 1.02-.01 1.41zm-6.29-4.88-1.39-1.39-.09.09c-.39.39-1.02.39-1.42 0l-3.01-3.01a.9959.9959 0 0 1 0-1.41l.09-.09-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zm1.52-5.73L12.7 8.28a.9959.9959 0 0 0-1.41 0l-.09.1 4.42 4.42.09-.09c.39-.39.39-1.03 0-1.42z" +}), 'NearbyOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyOffSharp.js b/packages/material-ui-icons/lib/esm/NearbyOffSharp.js new file mode 100644 index 00000000000000..cbf524f6e6f315 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.82 12.01 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l3.99-3.99 10.83 10.83zm-1.63 9.18-1.41 1.41L16 18.83l-3.99 3.99L1.18 11.99 5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" +}), 'NearbyOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NearbyOffTwoTone.js b/packages/material-ui-icons/lib/esm/NearbyOffTwoTone.js new file mode 100644 index 00000000000000..2ad53b5de0ed39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NearbyOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.41 13.42 18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l2.58-2.58c.78-.78 2.05-.78 2.83 0l8 8c.79.78.79 2.04 0 2.83zm-.22 7.77-1.41 1.41L16 18.83l-2.58 2.58c-.78.78-2.05.78-2.83 0l-8-8c-.78-.78-.78-2.05 0-2.83L5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12 12 7.58l-.8.8 4.42 4.42.8-.8z" +}), 'NearbyOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCell.js b/packages/material-ui-icons/lib/esm/NetworkCell.js new file mode 100644 index 00000000000000..e9051d9968e2fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCell.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" +}), 'NetworkCell'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCellOutlined.js b/packages/material-ui-icons/lib/esm/NetworkCellOutlined.js new file mode 100644 index 00000000000000..d3be7300cbc666 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCellOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" +}), 'NetworkCellOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCellRounded.js b/packages/material-ui-icons/lib/esm/NetworkCellRounded.js new file mode 100644 index 00000000000000..159f776559e0d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCellRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.41 22H21c.55 0 1-.45 1-1V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71zM20 20h-3V9.83l3-3V20z" +}), 'NetworkCellRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCellSharp.js b/packages/material-ui-icons/lib/esm/NetworkCellSharp.js new file mode 100644 index 00000000000000..1193b63d4d2e90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCellSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" +}), 'NetworkCellSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCellTwoTone.js b/packages/material-ui-icons/lib/esm/NetworkCellTwoTone.js new file mode 100644 index 00000000000000..f993c2b6f021d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCellTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" +}), 'NetworkCellTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCheck.js b/packages/material-ui-icons/lib/esm/NetworkCheck.js new file mode 100644 index 00000000000000..5922f106c79280 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCheck.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" +}), 'NetworkCheck'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCheckOutlined.js b/packages/material-ui-icons/lib/esm/NetworkCheckOutlined.js new file mode 100644 index 00000000000000..ea694b3dcbc1f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCheckOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" +}), 'NetworkCheckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCheckRounded.js b/packages/material-ui-icons/lib/esm/NetworkCheckRounded.js new file mode 100644 index 00000000000000..7ca2465d78d6a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCheckRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM2.06 10.06c.51.51 1.33.55 1.89.09 2.76-2.26 6.24-3.18 9.58-2.76l1.19-2.68c-4.35-.78-8.96.3-12.57 3.25-.64.53-.68 1.51-.09 2.1zm19.88 0c.59-.59.55-1.57-.1-2.1-1.36-1.11-2.86-1.95-4.44-2.53l-.53 2.82c1.13.47 2.19 1.09 3.17 1.89.58.46 1.39.43 1.9-.08zm-4.03 4.03c.6-.6.56-1.63-.14-2.12-.46-.33-.94-.61-1.44-.86l-.55 2.92c.11.07.22.14.32.22.57.4 1.33.32 1.81-.16zm-11.83-.01c.5.5 1.27.54 1.85.13.94-.66 2.01-1.06 3.1-1.22l1.28-2.88c-2.13-.06-4.28.54-6.09 1.84-.69.51-.74 1.53-.14 2.13z" +}), 'NetworkCheckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCheckSharp.js b/packages/material-ui-icons/lib/esm/NetworkCheckSharp.js new file mode 100644 index 00000000000000..bd8bb454e5d668 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCheckSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" +}), 'NetworkCheckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkCheckTwoTone.js b/packages/material-ui-icons/lib/esm/NetworkCheckTwoTone.js new file mode 100644 index 00000000000000..0852a8f70049c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkCheckTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2 2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4 2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" +}), 'NetworkCheckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkLocked.js b/packages/material-ui-icons/lib/esm/NetworkLocked.js new file mode 100644 index 00000000000000..19eee065800c82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkLocked.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 10c.17 0 .33.03.5.05V1L1 20h13v-3c0-.89.39-1.68 1-2.23v-.27c0-2.48 2.02-4.5 4.5-4.5zm2.5 6v-1.5c0-1.38-1.12-2.5-2.5-2.5S17 13.12 17 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z" +}), 'NetworkLocked'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkLockedOutlined.js b/packages/material-ui-icons/lib/esm/NetworkLockedOutlined.js new file mode 100644 index 00000000000000..33a5ec437d1399 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkLockedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z" +}), 'NetworkLockedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkLockedRounded.js b/packages/material-ui-icons/lib/esm/NetworkLockedRounded.js new file mode 100644 index 00000000000000..9f5866d0e0cc81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkLockedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12V4.42c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H15v-6c0-2.21 1.79-4 4-4h3zm0 5v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-3-1c0-.55.45-1 1-1s1 .45 1 1v1h-2v-1z" +}), 'NetworkLockedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkLockedSharp.js b/packages/material-ui-icons/lib/esm/NetworkLockedSharp.js new file mode 100644 index 00000000000000..4a4b93b02bbd60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkLockedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-.36c0-1.31-.94-2.5-2.24-2.63-1.5-.15-2.76 1.02-2.76 2.49v.5h-1v6h7v-6h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zm-1.5-5c.15 0 .3.01.46.02.01 0 .03.01.04.01V1L1 20h13v-6h1.26c.22-.63.58-1.2 1.06-1.68.85-.85 1.98-1.32 3.18-1.32z" +}), 'NetworkLockedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkLockedTwoTone.js b/packages/material-ui-icons/lib/esm/NetworkLockedTwoTone.js new file mode 100644 index 00000000000000..73e3c9cef4eb30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkLockedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z" +}), 'NetworkLockedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkWifi.js b/packages/material-ui-icons/lib/esm/NetworkWifi.js new file mode 100644 index 00000000000000..5f6df91a226378 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkWifi.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21 24 8.98zm-21.08.09C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8s-5.5.94-7.65 2.51L2.92 9.07z" +}), 'NetworkWifi'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkWifiOutlined.js b/packages/material-ui-icons/lib/esm/NetworkWifiOutlined.js new file mode 100644 index 00000000000000..ded5a80d9364fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkWifiOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" +}), 'NetworkWifiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkWifiRounded.js b/packages/material-ui-icons/lib/esm/NetworkWifiRounded.js new file mode 100644 index 00000000000000..f3ef3d0acc643e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkWifiRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" +}), 'NetworkWifiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkWifiSharp.js b/packages/material-ui-icons/lib/esm/NetworkWifiSharp.js new file mode 100644 index 00000000000000..47658f5c458244 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkWifiSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" +}), 'NetworkWifiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NetworkWifiTwoTone.js b/packages/material-ui-icons/lib/esm/NetworkWifiTwoTone.js new file mode 100644 index 00000000000000..6ecc9c60e1133e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NetworkWifiTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43C17.5 8.94 14.86 8 12 8z" +}), 'NetworkWifiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NewReleases.js b/packages/material-ui-icons/lib/esm/NewReleases.js new file mode 100644 index 00000000000000..59778aadd5b183 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NewReleases.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z" +}), 'NewReleases'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NewReleasesOutlined.js b/packages/material-ui-icons/lib/esm/NewReleasesOutlined.js new file mode 100644 index 00000000000000..bcd361f936c449 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NewReleasesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-4.51 2.11.26 2.79-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11zM11 15h2v2h-2zm0-8h2v6h-2z" +}), 'NewReleasesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NewReleasesRounded.js b/packages/material-ui-icons/lib/esm/NewReleasesRounded.js new file mode 100644 index 00000000000000..5c543ffe5d4bf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NewReleasesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.42 11.34-1.86-2.12.26-2.81c.05-.5-.29-.96-.77-1.07l-2.76-.63-1.44-2.43c-.26-.43-.79-.61-1.25-.41L12 3 9.41 1.89c-.46-.2-1-.02-1.25.41L6.71 4.72l-2.75.62c-.49.11-.83.56-.78 1.07l.26 2.8-1.86 2.13c-.33.38-.33.94 0 1.32l1.86 2.12-.26 2.82c-.05.5.29.96.77 1.07l2.76.63 1.44 2.42c.26.43.79.61 1.26.41L12 21l2.59 1.11c.46.2 1 .02 1.25-.41l1.44-2.43 2.76-.63c.49-.11.82-.57.77-1.07l-.26-2.81 1.86-2.12c.34-.36.34-.92.01-1.3zM13 17h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z" +}), 'NewReleasesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NewReleasesSharp.js b/packages/material-ui-icons/lib/esm/NewReleasesSharp.js new file mode 100644 index 00000000000000..db72657b22867d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NewReleasesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z" +}), 'NewReleasesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NewReleasesTwoTone.js b/packages/material-ui-icons/lib/esm/NewReleasesTwoTone.js new file mode 100644 index 00000000000000..f3f8e5109894a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NewReleasesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m18.49 9.89.26-2.79-2.74-.62-1.43-2.41L12 5.18 9.42 4.07 7.99 6.48l-2.74.62.26 2.78L3.66 12l1.85 2.11-.26 2.8 2.74.62 1.43 2.41L12 18.82l2.58 1.11 1.43-2.41 2.74-.62-.26-2.79L20.34 12l-1.85-2.11zM13 17h-2v-2h2v2zm0-4h-2V7h2v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.9 5.54-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12l-2.44-2.78.34-3.68zM18.75 16.9l-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11.26 2.79zM11 15h2v2h-2zm0-8h2v6h-2z" +}, "1")], 'NewReleasesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextPlan.js b/packages/material-ui-icons/lib/esm/NextPlan.js new file mode 100644 index 00000000000000..4425edc14d6d84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextPlan.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26c-.91-1.06-2.25-1.74-3.76-1.74-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z" +}), 'NextPlan'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextPlanOutlined.js b/packages/material-ui-icons/lib/esm/NextPlanOutlined.js new file mode 100644 index 00000000000000..0637a23776f457 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextPlanOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.97 11.03C14.87 9.79 13.28 9 11.5 9c-2.82 0-5.18 1.95-5.82 4.56l.96.32C7.15 11.66 9.13 10 11.5 10c1.51 0 2.85.68 3.76 1.74L13 14h5V9l-2.03 2.03z" +}, "1")], 'NextPlanOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextPlanRounded.js b/packages/material-ui-icons/lib/esm/NextPlanRounded.js new file mode 100644 index 00000000000000..c7f471231ea734 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextPlanRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26c-.91-1.06-2.25-1.74-3.76-1.74-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z" +}), 'NextPlanRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextPlanSharp.js b/packages/material-ui-icons/lib/esm/NextPlanSharp.js new file mode 100644 index 00000000000000..1e6172019375c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextPlanSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26c-.91-1.06-2.25-1.74-3.76-1.74-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z" +}), 'NextPlanSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextPlanTwoTone.js b/packages/material-ui-icons/lib/esm/NextPlanTwoTone.js new file mode 100644 index 00000000000000..a75728d2103532 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextPlanTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 10 2.26-2.26C14.35 10.68 13.01 10 11.5 10c-2.37 0-4.35 1.66-4.86 3.88l-.96-.32C6.32 10.95 8.68 9 11.5 9c1.78 0 3.37.79 4.47 2.03L18 9v5h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15.97 11.03C14.87 9.79 13.28 9 11.5 9c-2.82 0-5.18 1.95-5.82 4.56l.96.32C7.15 11.66 9.13 10 11.5 10c1.51 0 2.85.68 3.76 1.74L13 14h5V9l-2.03 2.03z" +}, "2")], 'NextPlanTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextWeek.js b/packages/material-ui-icons/lib/esm/NextWeek.js new file mode 100644 index 00000000000000..e951cc72ccbbfe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextWeek.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm1 13.5-1-1 3-3-3-3 1-1 4 4-4 4z" +}), 'NextWeek'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextWeekOutlined.js b/packages/material-ui-icons/lib/esm/NextWeekOutlined.js new file mode 100644 index 00000000000000..c9a1b434496c76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextWeekOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11 18.5 4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z" +}), 'NextWeekOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextWeekRounded.js b/packages/material-ui-icons/lib/esm/NextWeekRounded.js new file mode 100644 index 00000000000000..541180fa16ed63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextWeekRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm.5 13c-.28-.28-.28-.72 0-1l2.5-2.5-2.5-2.5c-.28-.28-.28-.72 0-1s.72-.28 1 0l3.15 3.15c.2.2.2.51 0 .71L11.5 18c-.28.28-.72.28-1 0z" +}), 'NextWeekRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextWeekSharp.js b/packages/material-ui-icons/lib/esm/NextWeekSharp.js new file mode 100644 index 00000000000000..898ac3cf0fad09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextWeekSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7h-6V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H2v15h20V7zM10 5h4v2h-4V5zm1 13.5-1-1 3-3-3-3 1-1 4 4-4 4z" +}), 'NextWeekSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NextWeekTwoTone.js b/packages/material-ui-icons/lib/esm/NextWeekTwoTone.js new file mode 100644 index 00000000000000..8b21b288dfca38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NextWeekTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V9H4v11zm6-8.5 1-1 4 4-4 4-1-1 3-3-3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 18.5 4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z" +}, "1")], 'NextWeekTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Nfc.js b/packages/material-ui-icons/lib/esm/Nfc.js new file mode 100644 index 00000000000000..bdbb31ffd113e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Nfc.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" +}), 'Nfc'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NfcOutlined.js b/packages/material-ui-icons/lib/esm/NfcOutlined.js new file mode 100644 index 00000000000000..e556e8b7399c42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NfcOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" +}), 'NfcOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NfcRounded.js b/packages/material-ui-icons/lib/esm/NfcRounded.js new file mode 100644 index 00000000000000..bc03e362ff2c16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NfcRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 18H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1zM16 6h-3c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v7c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V8h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z" +}), 'NfcRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NfcSharp.js b/packages/material-ui-icons/lib/esm/NfcSharp.js new file mode 100644 index 00000000000000..96fcf0cada9781 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NfcSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zm-2 18H4V4h16v16zM18 6h-7v4.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" +}), 'NfcSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NfcTwoTone.js b/packages/material-ui-icons/lib/esm/NfcTwoTone.js new file mode 100644 index 00000000000000..3e3e3bf653c8e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NfcTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" +}), 'NfcTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightShelter.js b/packages/material-ui-icons/lib/esm/NightShelter.js new file mode 100644 index 00000000000000..c3418ce9f19183 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightShelter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm-2.25 9.5c.69 0 1.25.56 1.25 1.25S10.44 15 9.75 15s-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM17 18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H15c1.1 0 2 .9 2 2v4z" +}), 'NightShelter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightShelterOutlined.js b/packages/material-ui-icons/lib/esm/NightShelterOutlined.js new file mode 100644 index 00000000000000..e37e56a1041077 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightShelterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm3 9h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4c0-1.1-.9-2-2-2zm-5.25.5c-.69 0-1.25.56-1.25 1.25S9.06 15 9.75 15 11 14.44 11 13.75s-.56-1.25-1.25-1.25z" +}), 'NightShelterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightShelterRounded.js b/packages/material-ui-icons/lib/esm/NightShelterRounded.js new file mode 100644 index 00000000000000..956751146e619f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightShelterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.8 3.9-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5c-.71-.53-1.69-.53-2.4 0zm-1.05 8.6c.69 0 1.25.56 1.25 1.25S10.44 15 9.75 15s-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM16.5 18c-.28 0-.5-.22-.5-.5v-1H8v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5s.5.22.5.5v4h3.5v-3c0-.28.22-.5.5-.5h3c1.1 0 2 .9 2 2v3.5c0 .28-.22.5-.5.5z" +}), 'NightShelterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightShelterSharp.js b/packages/material-ui-icons/lib/esm/NightShelterSharp.js new file mode 100644 index 00000000000000..7ccf4f9d178093 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightShelterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 4 9v12h16V9l-8-6zm-2.25 9.5c.69 0 1.25.56 1.25 1.25S10.44 15 9.75 15s-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM17 18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H17v6z" +}), 'NightShelterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightShelterTwoTone.js b/packages/material-ui-icons/lib/esm/NightShelterTwoTone.js new file mode 100644 index 00000000000000..b366e3899fff10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightShelterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 5.5 6 4.5v9H6v-9l6-4.5m3 6.5h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4c0-1.1-.9-2-2-2zm-5.25.5c-.69 0-1.25.56-1.25 1.25S9.06 15 9.75 15 11 14.44 11 13.75s-.56-1.25-1.25-1.25z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm3 9h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4c0-1.1-.9-2-2-2zm-5.25.5c-.69 0-1.25.56-1.25 1.25S9.06 15 9.75 15 11 14.44 11 13.75s-.56-1.25-1.25-1.25z" +}, "1")], 'NightShelterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Nightlife.js b/packages/material-ui-icons/lib/esm/Nightlife.js new file mode 100644 index 00000000000000..ba863866afd492 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Nightlife.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" +}), 'Nightlife'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlifeOutlined.js b/packages/material-ui-icons/lib/esm/NightlifeOutlined.js new file mode 100644 index 00000000000000..154eafc1d7848c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlifeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" +}), 'NightlifeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlifeRounded.js b/packages/material-ui-icons/lib/esm/NightlifeRounded.js new file mode 100644 index 00000000000000..5bc5d0ec898597 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlifeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.87 5h10.26c.8 0 1.28.89.83 1.55L9 14v4h1c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1h1v-4L2.04 6.55C1.59 5.89 2.07 5 2.87 5zm7.23 4 1.4-2H4.49l1.4 2h4.21zM19 5h1.5c.83 0 1.5.67 1.5 1.5S21.33 8 20.5 8H19v9c0 1.84-1.64 3.28-3.54 2.95-1.21-.21-2.2-1.2-2.41-2.41C12.72 15.64 14.16 14 16 14c.35 0 .69.06 1 .17V7c0-1.1.9-2 2-2z" +}), 'NightlifeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlifeSharp.js b/packages/material-ui-icons/lib/esm/NightlifeSharp.js new file mode 100644 index 00000000000000..be00d06b98d2b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlifeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" +}), 'NightlifeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlifeTwoTone.js b/packages/material-ui-icons/lib/esm/NightlifeTwoTone.js new file mode 100644 index 00000000000000..c5c4d8dc35a496 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlifeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4 1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.35 0 .69.06 1 .17V5z" +}), 'NightlifeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Nightlight.js b/packages/material-ui-icons/lib/esm/Nightlight.js new file mode 100644 index 00000000000000..0c294c11582e4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Nightlight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2c1.82 0 3.53.5 5 1.35-2.99 1.73-5 4.95-5 8.65s2.01 6.92 5 8.65c-1.47.85-3.18 1.35-5 1.35-5.52 0-10-4.48-10-10S8.48 2 14 2z" +}), 'Nightlight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightOutlined.js b/packages/material-ui-icons/lib/esm/NightlightOutlined.js new file mode 100644 index 00000000000000..ccd58ebff4a52c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4c.34 0 .68.02 1.01.07C13.1 6.23 12 9.05 12 12s1.1 5.77 3.01 7.93c-.33.05-.67.07-1.01.07-4.41 0-8-3.59-8-8s3.59-8 8-8m0-2C8.48 2 4 6.48 4 12s4.48 10 10 10c1.82 0 3.53-.5 5-1.35-2.99-1.73-5-4.95-5-8.65s2.01-6.92 5-8.65C17.53 2.5 15.82 2 14 2z" +}), 'NightlightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightRound.js b/packages/material-ui-icons/lib/esm/NightlightRound.js new file mode 100644 index 00000000000000..ba5a203f93392a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightRound.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 12c0-3.57 2.2-6.62 5.31-7.87.89-.36.75-1.69-.19-1.9-1.1-.24-2.27-.3-3.48-.14-4.51.6-8.12 4.31-8.59 8.83C4.44 16.93 9.13 22 15.01 22c.73 0 1.43-.08 2.12-.23.95-.21 1.1-1.53.2-1.9-3.22-1.29-5.33-4.41-5.32-7.87z" +}), 'NightlightRound'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightRoundOutlined.js b/packages/material-ui-icons/lib/esm/NightlightRoundOutlined.js new file mode 100644 index 00000000000000..2430ee6c7b50bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightRoundOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z" +}), 'NightlightRoundOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightRoundRounded.js b/packages/material-ui-icons/lib/esm/NightlightRoundRounded.js new file mode 100644 index 00000000000000..bb8af94b7699e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightRoundRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 22h.21c.84-.02 1.12-1.11.41-1.56-2.78-1.77-4.63-4.89-4.63-8.43 0-3.55 1.85-6.66 4.63-8.44.7-.45.44-1.54-.39-1.56h-.13c-4.9-.05-9.21 3.53-9.98 8.37C4.64 16.61 9.45 22 15.5 22z" +}), 'NightlightRoundRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightRoundSharp.js b/packages/material-ui-icons/lib/esm/NightlightRoundSharp.js new file mode 100644 index 00000000000000..4834e0a9087010 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightRoundSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z" +}), 'NightlightRoundSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightRoundTwoTone.js b/packages/material-ui-icons/lib/esm/NightlightRoundTwoTone.js new file mode 100644 index 00000000000000..1e116b2c11235f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightRoundTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z" +}), 'NightlightRoundTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightRounded.js b/packages/material-ui-icons/lib/esm/NightlightRounded.js new file mode 100644 index 00000000000000..2fa28411ec6db1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.57 2.3c2.38-.59 4.68-.27 6.63.64.35.16.41.64.1.86C15.7 5.6 14 8.6 14 12s1.7 6.4 4.3 8.2c.32.22.26.7-.09.86-1.28.6-2.71.94-4.21.94-6.05 0-10.85-5.38-9.87-11.6.61-3.92 3.59-7.16 7.44-8.1z" +}), 'NightlightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightSharp.js b/packages/material-ui-icons/lib/esm/NightlightSharp.js new file mode 100644 index 00000000000000..4bc13aaca6cdb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2c1.82 0 3.53.5 5 1.35-2.99 1.73-5 4.95-5 8.65s2.01 6.92 5 8.65c-1.47.85-3.18 1.35-5 1.35-5.52 0-10-4.48-10-10S8.48 2 14 2z" +}), 'NightlightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightlightTwoTone.js b/packages/material-ui-icons/lib/esm/NightlightTwoTone.js new file mode 100644 index 00000000000000..037fc9641881c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightlightTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 12c0-4.41 3.59-8 8-8 .34 0 .68.02 1.01.07C13.1 6.23 12 9.05 12 12s1.1 5.77 3.01 7.93c-.33.05-.67.07-1.01.07-4.41 0-8-3.59-8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 12c0-3.7 2.01-6.92 5-8.65C17.53 2.5 15.82 2 14 2 8.48 2 4 6.48 4 12s4.48 10 10 10c1.82 0 3.53-.5 5-1.35-2.99-1.73-5-4.95-5-8.65zm1.01 7.93c-.33.05-.67.07-1.01.07-4.41 0-8-3.59-8-8s3.59-8 8-8c.34 0 .68.02 1.01.07C13.1 6.23 12 9.05 12 12s1.1 5.77 3.01 7.93z" +}, "1")], 'NightlightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightsStay.js b/packages/material-ui-icons/lib/esm/NightsStay.js new file mode 100644 index 00000000000000..e859f986310be1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightsStay.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" +}, "1")], 'NightsStay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightsStayOutlined.js b/packages/material-ui-icons/lib/esm/NightsStayOutlined.js new file mode 100644 index 00000000000000..0b6e6b6b7377b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightsStayOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.78 17.51c-2.47 0-6.57-1.33-8.68-5.43-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.61-.26 1.28-.42 1.98-.42 0-3.09 1.73-5.77 4.3-7.1-.5 2.19-.54 5.04 1.04 8.1 1.57 3.04 4.18 4.95 6.8 5.86-1.23.74-2.65 1.15-4.13 1.15-.5 0-1-.05-1.48-.14-.37.7-.94 1.27-1.64 1.64.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-.17.01-.37.02-.57.02z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" +}, "1")], 'NightsStayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightsStayRounded.js b/packages/material-ui-icons/lib/esm/NightsStayRounded.js new file mode 100644 index 00000000000000..c89d166d3c16f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightsStayRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.1 12.08c-2-3.88-.92-7.36.07-9.27.19-.36-.12-.77-.53-.72-5.02.68-8.86 5.07-8.65 10.32.01 0 .01 0 .01.01.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.13 0 5.92-1.44 7.76-3.69.26-.32.04-.79-.37-.82-2.49-.13-6.28-1.53-8.28-5.42z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" +}, "1")], 'NightsStayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightsStaySharp.js b/packages/material-ui-icons/lib/esm/NightsStaySharp.js new file mode 100644 index 00000000000000..232e75fce1edc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightsStaySharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" +}, "1")], 'NightsStaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NightsStayTwoTone.js b/packages/material-ui-icons/lib/esm/NightsStayTwoTone.js new file mode 100644 index 00000000000000..934eb2fdd2ae20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NightsStayTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.1 14.15c1.67.48 2.9 2.02 2.9 3.85 0 .68-.19 1.31-.48 1.87.48.09.97.14 1.48.14 1.48 0 2.9-.41 4.13-1.15-2.62-.92-5.23-2.82-6.8-5.86-1.59-3.06-1.55-5.91-1.04-8.1-2.57 1.33-4.3 4.01-4.3 7.1h.02c1.65 0 3.17.83 4.09 2.15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.78 17.51c-2.47 0-6.57-1.33-8.68-5.43-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.61-.26 1.28-.42 1.98-.42 0-3.09 1.73-5.77 4.3-7.1-.5 2.19-.54 5.04 1.04 8.1 1.57 3.04 4.18 4.95 6.8 5.86-1.23.74-2.65 1.15-4.13 1.15-.5 0-1-.05-1.48-.14-.37.7-.94 1.27-1.64 1.64.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-.17.01-.37.02-.57.02z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" +}, "2")], 'NightsStayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineK.js b/packages/material-ui-icons/lib/esm/NineK.js new file mode 100644 index 00000000000000..9fc81464c8a59c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'NineK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKOutlined.js b/packages/material-ui-icons/lib/esm/NineKOutlined.js new file mode 100644 index 00000000000000..6545ba31958af1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 14v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2v1h-3V15H10c.55 0 1-.45 1-1zm-1.5-2.5H8V10h1.5v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "2")], 'NineKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKPlus.js b/packages/material-ui-icons/lib/esm/NineKPlus.js new file mode 100644 index 00000000000000..37aa11a67e2a59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 10H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'NineKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKPlusOutlined.js b/packages/material-ui-icons/lib/esm/NineKPlusOutlined.js new file mode 100644 index 00000000000000..9d66fa60ac537a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKPlusOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 14v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h1.5v1H6V15h3c.55 0 1-.45 1-1zm-1.5-2.5h-1V10h1v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "2")], 'NineKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKPlusRounded.js b/packages/material-ui-icons/lib/esm/NineKPlusRounded.js new file mode 100644 index 00000000000000..7aadb6bec0ca08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 10h1v1.5h-1V10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 11c0 .55-.45 1-1 1H6.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'NineKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKPlusSharp.js b/packages/material-ui-icons/lib/esm/NineKPlusSharp.js new file mode 100644 index 00000000000000..62db14c4bf98c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 10h1v1.5h-1V10zM21 3H3v18h18V3zM10 9v6H6v-1.5h2.5v-1H6V9h4zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'NineKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/NineKPlusTwoTone.js new file mode 100644 index 00000000000000..c9a4d7a4495b12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKPlusTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 10h1v1.5h-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 4.5h2.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H6v-1.5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 14v-4c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h1.5v1H6V15h3c.55 0 1-.45 1-1zm-1.5-2.5h-1V10h1v1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "4")], 'NineKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKRounded.js b/packages/material-ui-icons/lib/esm/NineKRounded.js new file mode 100644 index 00000000000000..fb58c1d3df1a5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 10h1.5v1.5H8V10zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H9.5v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm5.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'NineKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKSharp.js b/packages/material-ui-icons/lib/esm/NineKSharp.js new file mode 100644 index 00000000000000..f2fb7ebdac2d91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 10h1.5v1.5H8V10zm13-7H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'NineKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineKTwoTone.js b/packages/material-ui-icons/lib/esm/NineKTwoTone.js new file mode 100644 index 00000000000000..4ea291b1a28d38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineKTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 4.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H6.5v-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 10h1.5v1.5H8z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 14v-4c0-.55-.45-1-1-1H7.5c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2v1h-3V15H10c.55 0 1-.45 1-1zm-1.5-2.5H8V10h1.5v1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "4")], 'NineKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineMp.js b/packages/material-ui-icons/lib/esm/NineMp.js new file mode 100644 index 00000000000000..4f88afd980bc71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 6.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" +}), 'NineMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineMpOutlined.js b/packages/material-ui-icons/lib/esm/NineMpOutlined.js new file mode 100644 index 00000000000000..bf768b15ff568e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10.5v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM13 8h-1.5V6.5H13V8z" +}, "2")], 'NineMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineMpRounded.js b/packages/material-ui-icons/lib/esm/NineMpRounded.js new file mode 100644 index 00000000000000..6d31ba7a95524a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineMpRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 6c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H13V9h-2zm1.5 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 6.5H13V8h-1.5z" +}, "2")], 'NineMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineMpSharp.js b/packages/material-ui-icons/lib/esm/NineMpSharp.js new file mode 100644 index 00000000000000..bd4346866e74cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineMpSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5v6H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 6.5H13V8h-1.5z" +}, "2")], 'NineMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineMpTwoTone.js b/packages/material-ui-icons/lib/esm/NineMpTwoTone.js new file mode 100644 index 00000000000000..b84035660cc364 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H10V10zm-4 3.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10.5v-4c0-.55-.45-1-1-1H11c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM13 8h-1.5V6.5H13V8z" +}, "4")], 'NineMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineteenMp.js b/packages/material-ui-icons/lib/esm/NineteenMp.js new file mode 100644 index 00000000000000..968f998a9cb075 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineteenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 7h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zm1.5-2H15V6.5h-1.5V8zM7 5.5h3v6H8.5V7H7V5.5zm5 13h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm6.5-2.5c0 .55-.45 1-1 1h-2v1.5H14v-6h3.5c.55 0 1 .45 1 1V16zm-3-2H17v1.5h-1.5z" +}), 'NineteenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineteenMpOutlined.js b/packages/material-ui-icons/lib/esm/NineteenMpOutlined.js new file mode 100644 index 00000000000000..06831545096138 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineteenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm8-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM15 8h-1.5V6.5H15V8z" +}, "2")], 'NineteenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineteenMpRounded.js b/packages/material-ui-icons/lib/esm/NineteenMpRounded.js new file mode 100644 index 00000000000000..c699257b53c06e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineteenMpRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 6.5H15V8h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.5-7c0-.41.34-.75.75-.75H15V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "2")], 'NineteenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineteenMpSharp.js b/packages/material-ui-icons/lib/esm/NineteenMpSharp.js new file mode 100644 index 00000000000000..9907d781664db9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineteenMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'NineteenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NineteenMpTwoTone.js b/packages/material-ui-icons/lib/esm/NineteenMpTwoTone.js new file mode 100644 index 00000000000000..644512dedff2e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NineteenMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M16.5 10.5v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1V8c0 .55.45 1 1 1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM15 8h-1.5V6.5H15V8zm-6.5 3.5H10v-6H7V7h1.5z" +}, "4")], 'NineteenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoAccounts.js b/packages/material-ui-icons/lib/esm/NoAccounts.js new file mode 100644 index 00000000000000..7e04a747493e72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoAccounts.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" +}, "1")], 'NoAccounts'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoAccountsOutlined.js b/packages/material-ui-icons/lib/esm/NoAccountsOutlined.js new file mode 100644 index 00000000000000..dbe1b6e03b2bd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoAccountsOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12zm8 8c-1.74 0-3.34-.56-4.65-1.5C8.66 17.56 10.26 17 12 17s3.34.56 4.65 1.5c-1.31.94-2.91 1.5-4.65 1.5zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" +}, "1")], 'NoAccountsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoAccountsRounded.js b/packages/material-ui-icons/lib/esm/NoAccountsRounded.js new file mode 100644 index 00000000000000..d27553e70b1939 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoAccountsRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" +}, "1")], 'NoAccountsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoAccountsSharp.js b/packages/material-ui-icons/lib/esm/NoAccountsSharp.js new file mode 100644 index 00000000000000..37cb573475ab09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoAccountsSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" +}, "1")], 'NoAccountsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoAccountsTwoTone.js b/packages/material-ui-icons/lib/esm/NoAccountsTwoTone.js new file mode 100644 index 00000000000000..57d7456a51621c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoAccountsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-.52 0-1 .12-1.44.32l4.62 4.62c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6zm0-4C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86c.21 1.56 1.43 2.79 2.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15-2.32 0-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12zm8 8c-1.74 0-3.34-.56-4.65-1.5C8.66 17.56 10.26 17 12 17s3.34.56 4.65 1.5c-1.31.94-2.91 1.5-4.65 1.5zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.35 18.5c1.31.94 2.91 1.5 4.65 1.5s3.34-.56 4.65-1.5C15.34 17.56 13.74 17 12 17s-3.34.56-4.65 1.5zm7.83-7.56-4.62-4.62C11 6.12 11.48 6 12 6c1.93 0 3.5 1.57 3.5 3.5 0 .52-.12 1-.32 1.44z", + opacity: ".3" +}, "1")], 'NoAccountsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoBackpack.js b/packages/material-ui-icons/lib/esm/NoBackpack.js new file mode 100644 index 00000000000000..8de9f3e7fcc4a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoBackpack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.76 2.76C4.06 7.31 4 7.64 4 8v12c0 1.1.9 2 2 2h12c.34 0 .65-.09.93-.24l.85.85 1.41-1.42zM6 14v-2h3.17l2 2H6zm8.83-2L6.98 4.15c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V12h-3.17z" +}), 'NoBackpack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoBackpackOutlined.js b/packages/material-ui-icons/lib/esm/NoBackpackOutlined.js new file mode 100644 index 00000000000000..60901d68379fa2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoBackpackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.98 4.15c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V8c0-1.1-.9-2-2-2H8.83L6.98 4.15zM14.83 12l1.67 1.67V12h-1.67zm4.95 10.61-.85-.85c-.28.15-.59.24-.93.24H6c-1.1 0-2-.9-2-2V8c0-.36.06-.69.15-1.02L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM17.17 20l-6-6H7.5v-2h1.67L6 8.83V20h11.17z" +}), 'NoBackpackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoBackpackRounded.js b/packages/material-ui-icons/lib/esm/NoBackpackRounded.js new file mode 100644 index 00000000000000..8b341fcf2a139a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoBackpackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.98 4.15c.01 0 .01-.01.02-.01V3.5C7 2.67 7.67 2 8.5 2s1.5.67 1.5 1.5V4h4v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.64c1.72.45 3 2 3 3.86v9.17l-2.03-2.03c.01-.05.03-.09.03-.14v-2c0-.55-.45-1-1-1h-2.17L6.98 4.15zM20.49 21.9c-.39.39-1.02.39-1.41 0l-.14-.14c-.29.15-.6.24-.94.24H6c-1.1 0-2-.9-2-2V8c0-.36.06-.69.15-1.02L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11.17 14l-2-2H7c-.55 0-1 .45-1 1s.45 1 1 1h4.17z" +}), 'NoBackpackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoBackpackSharp.js b/packages/material-ui-icons/lib/esm/NoBackpackSharp.js new file mode 100644 index 00000000000000..676eb380779f06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoBackpackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.76 2.76C4.06 7.31 4 7.64 4 8v14h15.17l.61.61 1.41-1.42zM6 14v-2h3.17l2 2H6zm.98-9.85c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V12h-3.17L6.98 4.15z" +}), 'NoBackpackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoBackpackTwoTone.js b/packages/material-ui-icons/lib/esm/NoBackpackTwoTone.js new file mode 100644 index 00000000000000..04ceadd0341620 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoBackpackTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 15.17V8c0-1.1-.9-2-2-2H8.83l6 6h1.67v1.67l1.5 1.5zM17.17 20l-6-6H7.5v-2h1.67L6 8.83V20h11.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.98 4.15c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V8c0-1.1-.9-2-2-2H8.83L6.98 4.15zM14.83 12l1.67 1.67V12h-1.67zm4.95 10.61-.85-.85c-.28.15-.59.24-.93.24H6c-1.1 0-2-.9-2-2V8c0-.36.06-.69.15-1.02L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM17.17 20l-6-6H7.5v-2h1.67L6 8.83V20h11.17z" +}, "1")], 'NoBackpackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoCell.js b/packages/material-ui-icons/lib/esm/NoCell.js new file mode 100644 index 00000000000000..5483f1553030ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoCell.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.83 6-3.7-3.7C5.42 1.55 6.15 1 7 1l10 .01c1.1 0 2 .89 2 1.99v13.17l-2-2V6H8.83zm10.95 16.61-.91-.91c-.29.75-1.02 1.3-1.87 1.3H7c-1.1 0-2-.9-2-2V7.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM15.17 18 7 9.83V18h8.17z" +}), 'NoCell'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoCellOutlined.js b/packages/material-ui-icons/lib/esm/NoCellOutlined.js new file mode 100644 index 00000000000000..c7bdd2999eb5e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoCellOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6v8.17l2 2V3c0-1.1-.9-1.99-2-1.99L7 1c-.85 0-1.58.55-1.87 1.3L8.83 6H17zM7 3h10v1H7V3zm14.19 18.19L19 19l-2-2L7 7 5 5 2.81 2.81 1.39 4.22 5 7.83V21c0 1.1.9 2 2 2h10c.85 0 1.58-.55 1.87-1.3l.91.91 1.41-1.42zM17 21H7v-1h10v1zM7 18V9.83L15.17 18H7z" +}), 'NoCellOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoCellRounded.js b/packages/material-ui-icons/lib/esm/NoCellRounded.js new file mode 100644 index 00000000000000..f1e9ac6cd5e61f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoCellRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.83 6-3.7-3.7C5.42 1.55 6.15 1 7 1l10 .01c1.1 0 2 .89 2 1.99v13.17l-2-2V6H8.83zm11.66 15.9c-.39.39-1.02.39-1.41 0l-.2-.2c-.3.75-1.03 1.3-1.88 1.3H7c-1.1 0-2-.9-2-2V7.83l-2.9-2.9a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM15.17 18 7 9.83V18h8.17z" +}), 'NoCellRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoCellSharp.js b/packages/material-ui-icons/lib/esm/NoCellSharp.js new file mode 100644 index 00000000000000..b9ff7840d25cca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoCellSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 5 7.83V23h14v-1.17l.78.78 1.41-1.42zM7 18V9.83L15.17 18H7zM8.83 6 5 2.17V1h14v15.17l-2-2V6H8.83z" +}), 'NoCellSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoCellTwoTone.js b/packages/material-ui-icons/lib/esm/NoCellTwoTone.js new file mode 100644 index 00000000000000..2877cc949eb6f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoCellTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 6v8.17l2 2V3c0-1.1-.9-1.99-2-1.99L7 1c-.85 0-1.58.55-1.87 1.3L8.83 6H17zM7 3h10v1H7V3zm14.19 18.19L2.81 2.81 1.39 4.22 5 7.83V21c0 1.1.9 2 2 2h10c.85 0 1.58-.55 1.87-1.3l.91.91 1.41-1.42zM17 21H7v-1h10v1zM7 18V9.83L15.17 18H7z" +}, "1")], 'NoCellTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoDrinks.js b/packages/material-ui-icons/lib/esm/NoDrinks.js new file mode 100644 index 00000000000000..3aef205778d63d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoDrinks.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.83 3H21v2l-6.2 6.97L9.83 7h6.74l1.78-2H7.83l-2-2zm13.95 19.61L18 20.83V21H6v-2h5v-5l-1.37-1.54-8.24-8.24L2.8 2.81 3 3l18.19 18.19-1.41 1.42zM16.17 19 13 15.83V19h3.17z" +}), 'NoDrinks'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoDrinksOutlined.js b/packages/material-ui-icons/lib/esm/NoDrinksOutlined.js new file mode 100644 index 00000000000000..9dab8bfabd4220 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoDrinksOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97-1.42-1.42L14.77 9h-2.94l-2-2h6.74l1.78-2H7.83z" +}), 'NoDrinksOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoDrinksRounded.js b/packages/material-ui-icons/lib/esm/NoDrinksRounded.js new file mode 100644 index 00000000000000..731600c5d94204 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoDrinksRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l7.54 7.54L11 14v5H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.32 0 .59-.16.78-.4l1.3 1.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2h13.72c.8 0 1.45.65 1.45 1.45 0 .35-.13.7-.37.96l-5.83 6.56L9.83 7h6.74l1.78-2H7.83z" +}), 'NoDrinksRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoDrinksSharp.js b/packages/material-ui-icons/lib/esm/NoDrinksSharp.js new file mode 100644 index 00000000000000..bc1b083fa5ad89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoDrinksSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97L9.83 7h6.74l1.78-2H7.83z" +}), 'NoDrinksSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoDrinksTwoTone.js b/packages/material-ui-icons/lib/esm/NoDrinksTwoTone.js new file mode 100644 index 00000000000000..32d4819e439ca7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoDrinksTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.77 9h-2.94l1.55 1.56z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97-1.42-1.42L14.77 9h-2.94l-2-2h6.74l1.78-2H7.83z" +}, "1")], 'NoDrinksTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryption.js b/packages/material-ui-icons/lib/esm/NoEncryption.js new file mode 100644 index 00000000000000..1e0e46ee89dfdd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryption.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 21.78 4.22 5 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12c.23 0 .45-.05.66-.12L19.78 23 21 21.78zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H9.66L20 18.34V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.56 0-4.64 1.93-4.94 4.4L8.9 7.24V6z" +}), 'NoEncryption'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorred.js b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorred.js new file mode 100644 index 00000000000000..fa8024850af341 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorred.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.27L20 17.17V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.21 0-4.07 1.45-4.73 3.44L8.9 6.07V6zM2.1 2.1.69 3.51 5.3 8.13C4.55 8.42 4 9.15 4 10v10c0 1.1.9 2 2 2h12c.34 0 .65-.09.93-.24l1.56 1.56 1.41-1.41L2.1 2.1zM12 17c-1.1 0-2-.9-2-2 0-.59.27-1.12.68-1.49l2.81 2.81c-.37.41-.9.68-1.49.68z" +}), 'NoEncryptionGmailerrorred'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredOutlined.js b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredOutlined.js new file mode 100644 index 00000000000000..8ed0234a8568db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" +}), 'NoEncryptionGmailerrorredOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredRounded.js b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredRounded.js new file mode 100644 index 00000000000000..41c4ef5c21c5f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zm-3.78-.49a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.33 1.33C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l.29.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 5.51z" +}), 'NoEncryptionGmailerrorredRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredSharp.js b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredSharp.js new file mode 100644 index 00000000000000..43a0a31806009e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81 3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z" +}), 'NoEncryptionGmailerrorredSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredTwoTone.js b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredTwoTone.js new file mode 100644 index 00000000000000..ca564f52a3a151 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionGmailerrorredTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" +}, "1")], 'NoEncryptionGmailerrorredTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionOutlined.js b/packages/material-ui-icons/lib/esm/NoEncryptionOutlined.js new file mode 100644 index 00000000000000..7fd382f616322d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" +}), 'NoEncryptionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionRounded.js b/packages/material-ui-icons/lib/esm/NoEncryptionRounded.js new file mode 100644 index 00000000000000..af3f0962316f10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zm-3.78-.49a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.33 1.33C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l.29.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 5.51z" +}), 'NoEncryptionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionSharp.js b/packages/material-ui-icons/lib/esm/NoEncryptionSharp.js new file mode 100644 index 00000000000000..f6edc12817e9bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81 3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z" +}), 'NoEncryptionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoEncryptionTwoTone.js b/packages/material-ui-icons/lib/esm/NoEncryptionTwoTone.js new file mode 100644 index 00000000000000..27886ca2944dd1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoEncryptionTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z" +}, "1")], 'NoEncryptionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFlash.js b/packages/material-ui-icons/lib/esm/NoFlash.js new file mode 100644 index 00000000000000..0bfaf249662cdb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFlash.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.93 13.93 2.45 2.45 1.04 3.87l5.3 5.3-.2.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l2.18 2.18 1.41-1.41L18 18l-4.07-4.07zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57C13.57 18.6 11.95 20 10 20zm8-4.83L10.83 8h1.75l1.28 1.4h2.54c.88 0 1.6.72 1.6 1.6v4.17zm2.4-9.57H22L19 11V7h-1V2h4l-1.6 3.6z" +}), 'NoFlash'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFlashOutlined.js b/packages/material-ui-icons/lib/esm/NoFlashOutlined.js new file mode 100644 index 00000000000000..23d05d31a7ad20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFlashOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.4 5.6H22L19 11V7h-1V2h4l-1.6 3.6zM16 11.4v1.77l2 2V11c0-.88-.72-1.6-1.6-1.6h-2.54L12.58 8h-1.75l3.4 3.4H16zM2.1 2.1.69 3.51l5.66 5.66-.21.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l2.54 2.54 1.41-1.41L2.1 2.1zm9.4 13.4c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5zm4.46 4.5H4v-8.6h3.02l.59-.65.15-.16 1.5 1.5c-1.58.34-2.76 1.73-2.76 3.41 0 1.93 1.57 3.5 3.5 3.5 1.68 0 3.07-1.18 3.42-2.76l2.55 2.55-.01 1.21z" +}), 'NoFlashOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFlashRounded.js b/packages/material-ui-icons/lib/esm/NoFlashRounded.js new file mode 100644 index 00000000000000..0f0a710ee1cce9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFlashRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.16 3.16a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.6 4.6-.21.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l1.47 1.47c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.16 3.16zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57C13.57 18.6 11.95 20 10 20zm8-4.83L10.83 8h.87c.56 0 1.1.24 1.48.65l.69.75h2.54c.88 0 1.6.72 1.6 1.6v4.17zm2.4-9.57h.75c.38 0 .62.41.44.74L19 11V7h-.5c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5h2.73c.36 0 .6.37.46.7L20.4 5.6z" +}), 'NoFlashRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFlashSharp.js b/packages/material-ui-icons/lib/esm/NoFlashSharp.js new file mode 100644 index 00000000000000..8535b8754b5761 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFlashSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.45 2.45 1.04 3.87l5.3 5.3-.2.23H2V22h16v-1.17l2.13 2.13 1.41-1.41L2.45 2.45zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57C13.57 18.6 11.95 20 10 20zm8-4.83L10.83 8h1.75l1.28 1.4H18v5.77zm2.4-9.57H22L19 11V7h-1V2h4l-1.6 3.6z" +}), 'NoFlashSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFlashTwoTone.js b/packages/material-ui-icons/lib/esm/NoFlashTwoTone.js new file mode 100644 index 00000000000000..df1f4726445593 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFlashTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13.42 16.24 2.55 2.55-.01 1.21H4v-8.6h3.02l.59-.65.15-.16 1.5 1.5c-1.58.34-2.76 1.73-2.76 3.41 0 1.93 1.57 3.5 3.5 3.5 1.68 0 3.07-1.18 3.42-2.76zM16 13.17V11.4h-1.77L16 13.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.4 5.6H22L19 11V7h-1V2h4l-1.6 3.6zM16 11.4v1.77l2 2V11c0-.88-.72-1.6-1.6-1.6h-2.54L12.58 8h-1.75l3.4 3.4H16zm1.97 6.57L2.1 2.1.69 3.51l5.66 5.66-.21.23H3.6c-.88 0-1.6.72-1.6 1.6v9.4c0 .88.72 1.6 1.6 1.6h12.8c.75 0 1.38-.52 1.55-1.22l2.54 2.54 1.41-1.41-3.93-3.94zM11.5 15.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5zm4.46 4.5H4v-8.6h3.02l.59-.65.15-.16 1.5 1.5c-1.58.34-2.76 1.73-2.76 3.41 0 1.93 1.57 3.5 3.5 3.5 1.68 0 3.07-1.18 3.42-2.76l2.55 2.55-.01 1.21z" +}, "1")], 'NoFlashTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFood.js b/packages/material-ui-icons/lib/esm/NoFood.js new file mode 100644 index 00000000000000..0b317a57d895dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFood.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.35 8.52 11 5h5V1h2v4h5l-1.38 13.79L11.35 8.52zM1 21v1c0 .55.45 1 1 1h13c.55 0 1-.45 1-1v-1H1zm20.9.9L2.1 2.1.69 3.51l5.7 5.7C3.28 9.87 1 11.99 1 15h11.17l2 2H1v2h15v-.17l4.49 4.49 1.41-1.42z" +}), 'NoFood'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFoodOutlined.js b/packages/material-ui-icons/lib/esm/NoFoodOutlined.js new file mode 100644 index 00000000000000..84ed966f217181 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFoodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h15.01v.98c0 .56-.45 1.01-1.01 1.01H2.01c-.56 0-1.01-.45-1.01-1.01V21zm19.49 2.31L16 18.83V19H1v-2h13.17l-2-2H1c0-3.24 2.46-5.17 5.38-5.79l-5.7-5.7L2.1 2.1 13 13l2 2 6.9 6.9-1.41 1.41zM10.17 13l-2-2c-1.42.06-3.52.56-4.55 2h6.55zM23 5h-5V1h-2v4h-5l.23 2h9.56l-1 9.97 1.83 1.83L23 5z" +}), 'NoFoodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFoodRounded.js b/packages/material-ui-icons/lib/esm/NoFoodRounded.js new file mode 100644 index 00000000000000..2b1b2f7daea0e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFoodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 22c0 .55-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1h13c.55 0 1 .45 1 1zm6.89-15.9c.06-.59-.4-1.1-.99-1.1H18V2c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.9c-.59 0-1.05.51-1 1.1l.24 2.41L18 15.17l3.62 3.62L22.89 6.1zm-1.7 16.51c.39-.39.39-1.02 0-1.41L12 12 9.01 9.01l-6.2-6.2a.9959.9959 0 0 0-1.41 0C1 3.2 1 3.83 1.39 4.22l4.99 4.99c-2.56.54-4.76 2.08-5.28 4.63-.11.61.39 1.16 1 1.16h10.07l2 2H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.32 0 .59-.16.78-.4l4 4c.39.4 1.02.4 1.41.01z" +}), 'NoFoodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFoodSharp.js b/packages/material-ui-icons/lib/esm/NoFoodSharp.js new file mode 100644 index 00000000000000..18e4253476827a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFoodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.35 8.52 11 5h5V1h2v4h5l-1.38 13.79L18 15.17l-6.65-6.65zM21.9 21.9 2.1 2.1.69 3.51l5.7 5.7C3.46 9.83 1 11.76 1 15h11.17l2 2H1v2h15v-.17l4.49 4.49 1.41-1.42zM1 23h15v-2H1v2z" +}), 'NoFoodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoFoodTwoTone.js b/packages/material-ui-icons/lib/esm/NoFoodTwoTone.js new file mode 100644 index 00000000000000..d8d4d18ac46647 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoFoodTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.16 11c-1.43.07-3.52.57-4.54 2h6.55l-2.01-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1 21h15.01v.98c0 .56-.45 1.01-1.01 1.01H2.01c-.56 0-1.01-.45-1.01-1.01V21zm19.49 2.31L16 18.83V19H1v-2h13.17l-2-2H1c0-3.24 2.46-5.17 5.38-5.79l-5.7-5.7L2.1 2.1 13 13l2 2 6.9 6.9-1.41 1.41zM10.17 13l-2-2c-1.42.06-3.52.56-4.55 2h6.55zM23 5h-5V1h-2v4h-5l.23 2h9.56l-1 9.97 1.83 1.83L23 5z" +}, "1")], 'NoFoodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoLuggage.js b/packages/material-ui-icons/lib/esm/NoLuggage.js new file mode 100644 index 00000000000000..a507794ddb4cd8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoLuggage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.75 9v.92l1.75 1.75V9H16v4.17l3 3V8c0-1.1-.9-2-2-2h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3h-.17l3 3h.92zM10.5 3.5h3V6h-3V3.5zm10.69 17.69L2.81 2.81 1.39 4.22l3.63 3.63c0 .05-.02.1-.02.15v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c.34 0 .65-.09.93-.24l1.85 1.85 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm4.75 0h-1.5v-3.92l1.5 1.5V18z" +}), 'NoLuggage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoLuggageOutlined.js b/packages/material-ui-icons/lib/esm/NoLuggageOutlined.js new file mode 100644 index 00000000000000..7991025c10314c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoLuggageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 13.17-1.5-1.5V9H16v4.17zm3.78 9.44-1.85-1.85c-.28.15-.59.24-.93.24 0 .55-.45 1-1 1s-1-.45-1-1H9c0 .55-.45 1-1 1s-1-.45-1-1c-1.1 0-2-.9-2-2V8c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-3.42-3.42V18h-1.5v-3.92L9.5 12.33V18H8v-7.17l-1-1V19h9.17zM12.75 9h-.92l.92.92V9zM19 8v8.17l-2-2V8h-6.17l-.99-.99L9 6.17V3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3h2c1.1 0 2 .9 2 2zm-8.5-2h3V3.5h-3V6z" +}), 'NoLuggageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoLuggageRounded.js b/packages/material-ui-icons/lib/esm/NoLuggageRounded.js new file mode 100644 index 00000000000000..ef34e5936a9f9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoLuggageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.92 2.92c0 .06-.02.11-.02.16v11c0 1.1.9 2 2 2 0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1c.34 0 .65-.09.93-.24l1.14 1.14c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM8.75 18c-.41 0-.75-.34-.75-.75v-6.42l1.5 1.5v4.92c0 .41-.34.75-.75.75zM12 18c-.41 0-.75-.34-.75-.75v-3.17l1.5 1.5v1.67c0 .41-.34.75-.75.75zm0-9c.41 0 .75.34.75.75v.17l1.75 1.75V9.75c0-.41.34-.75.75-.75s.75.34.75.75v3.42l3 3V8c0-1.1-.9-2-2-2h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3h-.17l3.03 3.03c.05-.01.09-.03.14-.03zm-1.5-5.5h3V6h-3V3.5z" +}), 'NoLuggageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoLuggageSharp.js b/packages/material-ui-icons/lib/esm/NoLuggageSharp.js new file mode 100644 index 00000000000000..9f96739db8e4b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoLuggageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.75 9v.92l1.75 1.75V9H16v4.17l3 3V6h-4V2H9v4h-.17l3 3h.92zM10.5 3.5h3V6h-3V3.5zm10.69 17.69L2.81 2.81 1.39 4.22 5 7.83V21h2v1h2v-1h6v1h2v-1h1.17l1.61 1.61 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm3.25 0v-3.92l1.5 1.5V18h-1.5z" +}), 'NoLuggageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoLuggageTwoTone.js b/packages/material-ui-icons/lib/esm/NoLuggageTwoTone.js new file mode 100644 index 00000000000000..78b8558d66948b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoLuggageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.17 19-3.42-3.42V18h-1.5v-3.92L9.5 12.33V18H8v-7.17l-1-1V19h9.17zM17 8v6.17l-1-1V9h-1.5v2.67l-1.75-1.75V9h-.92l-1-1H17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m16 13.17-1.5-1.5V9H16v4.17zm3.78 9.44-1.85-1.85c-.28.15-.59.24-.93.24 0 .55-.45 1-1 1s-1-.45-1-1H9c0 .55-.45 1-1 1s-1-.45-1-1c-1.1 0-2-.9-2-2V8c0-.05.02-.1.02-.15L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-3.42-3.42V18h-1.5v-3.92L9.5 12.33V18H8v-7.17l-1-1V19h9.17zM12.75 9h-.92l.92.92V9zM19 8v8.17l-2-2V8h-6.17l-.99-.99L9 6.17V3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3h2c1.1 0 2 .9 2 2zm-8.5-2h3V3.5h-3V6z" +}, "1")], 'NoLuggageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMeals.js b/packages/material-ui-icons/lib/esm/NoMeals.js new file mode 100644 index 00000000000000..4ad44de147ee7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMeals.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" +}), 'NoMeals'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMealsOutlined.js b/packages/material-ui-icons/lib/esm/NoMealsOutlined.js new file mode 100644 index 00000000000000..961b532b9a4e1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMealsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" +}), 'NoMealsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMealsRounded.js b/packages/material-ui-icons/lib/esm/NoMealsRounded.js new file mode 100644 index 00000000000000..457bad98cf1fa5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMealsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 18.17-2-2V14h-1c-1.1 0-2-.9-2-2V6c0-1.49 1.6-3.32 3.76-3.85.63-.15 1.24.33 1.24.98v15.04zm.19 4.44c-.39.39-1.02.39-1.41 0l-9.76-9.76c-.33.09-.66.15-1.02.15v8c0 .55-.45 1-1 1s-1-.45-1-1v-8c-2.21 0-4-1.79-4-4V5.83L1.39 4.22a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.4.39.4 1.03.01 1.42zM6.17 9 5 7.83V9h1.17zM13 9V3c0-.55-.45-1-1-1s-1 .45-1 1v5.17l1.85 1.85c.09-.33.15-.66.15-1.02zM9 3c0-.55-.45-1-1-1s-1 .45-1 1v1.17l2 2V3z" +}), 'NoMealsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMealsSharp.js b/packages/material-ui-icons/lib/esm/NoMealsSharp.js new file mode 100644 index 00000000000000..d727af5086fb1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMealsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" +}), 'NoMealsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMealsTwoTone.js b/packages/material-ui-icons/lib/esm/NoMealsTwoTone.js new file mode 100644 index 00000000000000..84058ee78c67ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMealsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9 5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" +}), 'NoMealsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMeetingRoom.js b/packages/material-ui-icons/lib/esm/NoMeetingRoom.js new file mode 100644 index 00000000000000..c38c3d09cb6e7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMeetingRoom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 11h-1v2h2v-1l9.73 9.73L20.46 23 14 16.54V21H3v-2h2V7.54l-4-4 1.27-1.27L11 11zm3 .49L5.51 3H14v1h5v12.49l-2-2V6h-3v5.49z" +}), 'NoMeetingRoom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMeetingRoomOutlined.js b/packages/material-ui-icons/lib/esm/NoMeetingRoomOutlined.js new file mode 100644 index 00000000000000..25c4105333450c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMeetingRoomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z" +}), 'NoMeetingRoomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMeetingRoomRounded.js b/packages/material-ui-icons/lib/esm/NoMeetingRoomRounded.js new file mode 100644 index 00000000000000..d02b39626bfa12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMeetingRoomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6h3v7.88l2 2V5c0-.55-.45-1-1-1h-4c0-.55-.45-1-1-1H6.12L14 10.88V6zm7.17 14.88L12 11.71V13h-2v-2h1.29L3.12 2.83a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5 7.54V19H4c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1v-3.46l5.75 5.75c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" +}), 'NoMeetingRoomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMeetingRoomSharp.js b/packages/material-ui-icons/lib/esm/NoMeetingRoomSharp.js new file mode 100644 index 00000000000000..ca94cd9529d075 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMeetingRoomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6h3v7.88l2 2V4h-5V3H6.12L14 10.88zm-2 5.71V13h-2v-2h1.29L2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41z" +}), 'NoMeetingRoomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoMeetingRoomTwoTone.js b/packages/material-ui-icons/lib/esm/NoMeetingRoomTwoTone.js new file mode 100644 index 00000000000000..7302b36df57eb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoMeetingRoomTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5H8.12L12 8.88V6zM7 19h5v-4.46l-5-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z" +}, "1")], 'NoMeetingRoomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoPhotography.js b/packages/material-ui-icons/lib/esm/NoPhotography.js new file mode 100644 index 00000000000000..716f75e87bb4e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoPhotography.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.94 8.12 7.48 4.66 9 3h6l1.83 2H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-5.1-5.1c.08-.35.12-.7.12-1.06 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm9.55 15.19L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49l-2-2L2.1 2.1l19.8 19.8-1.41 1.41zm-6-5.99-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5C7.25 11.24 7 12.09 7 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z" +}), 'NoPhotography'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoPhotographyOutlined.js b/packages/material-ui-icons/lib/esm/NoPhotographyOutlined.js new file mode 100644 index 00000000000000..b695d8a2528650 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoPhotographyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.9 6.07 7.48 4.66 9 3h6l1.83 2H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16L20 17.17V7h-4.05l-1.83-2H9.88L8.9 6.07zm11.59 17.24L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49l-2-2L2.1 2.1l19.8 19.8-1.41 1.41zM9.19 12.02c-.11.31-.19.63-.19.98 0 1.66 1.34 3 3 3 .35 0 .67-.08.98-.19l-3.79-3.79zM16.17 19l-1.68-1.68c-.73.43-1.58.68-2.49.68-2.76 0-5-2.24-5-5 0-.91.25-1.76.68-2.49L4.17 7H4v12h12.17zm-1.36-7.02 2.07 2.07c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12l2.07 2.07c.84.3 1.5.96 1.8 1.79z" +}), 'NoPhotographyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoPhotographyRounded.js b/packages/material-ui-icons/lib/esm/NoPhotographyRounded.js new file mode 100644 index 00000000000000..6ad7b3b70ea201 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoPhotographyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.94 8.12 7.48 4.66l.92-1.01c.38-.41.92-.65 1.48-.65h4.24c.56 0 1.1.24 1.47.65L16.83 5H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16l-5.1-5.1c.08-.35.12-.7.12-1.06 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm8.84 14.49L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49L1.39 4.22a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.39.39.39 1.02 0 1.41-.38.4-1.01.4-1.4.01zm-5.29-5.29-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5C7.25 11.24 7 12.09 7 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z" +}), 'NoPhotographyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoPhotographySharp.js b/packages/material-ui-icons/lib/esm/NoPhotographySharp.js new file mode 100644 index 00000000000000..32e47c3b44e00c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoPhotographySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.94 8.12 7.48 4.66 9 3h6l1.83 2H22v14.17l-5.12-5.12c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm9.55 15.19L18.17 21H2V5h.17L.69 3.51 2.1 2.1 21 21l.9.9-1.41 1.41zm-6-5.99-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5C7.25 11.24 7 12.09 7 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z" +}), 'NoPhotographySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoPhotographyTwoTone.js b/packages/material-ui-icons/lib/esm/NoPhotographyTwoTone.js new file mode 100644 index 00000000000000..84f5600845242f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoPhotographyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.94 8.12 8.9 6.07 9.88 5h4.24l1.83 2H20v10.17l-3.12-3.12c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zM12 18c-2.76 0-5-2.24-5-5 0-.91.25-1.76.68-2.49L4.17 7H4v12h12.17l-1.68-1.68c-.73.43-1.58.68-2.49.68z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.9 6.07 7.48 4.66 9 3h6l1.83 2H20c1.1 0 2 .9 2 2v12c0 .05-.01.1-.02.16L20 17.17V7h-4.05l-1.83-2H9.88L8.9 6.07zm11.59 17.24L18.17 21H4c-1.1 0-2-.9-2-2V7c0-.59.27-1.12.68-1.49l-2-2L2.1 2.1 7 7l2.01 2.01 1.43 1.43 4.1 4.1 1.43 1.43L19 19l1.82 1.82 1.08 1.08-1.41 1.41zM9.19 12.02c-.11.31-.19.63-.19.98 0 1.65 1.35 3 3 3 .35 0 .67-.08.98-.19l-3.79-3.79zM16.17 19l-1.68-1.68c-.73.43-1.58.68-2.49.68-2.76 0-5-2.24-5-5 0-.91.25-1.76.68-2.49L4.17 7H4v12h12.17zm-1.36-7.02 2.08 2.08c.07-.35.11-.7.11-1.06 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12l2.08 2.08c.83.3 1.48.95 1.79 1.78z" +}, "1")], 'NoPhotographyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoSim.js b/packages/material-ui-icons/lib/esm/NoSim.js new file mode 100644 index 00000000000000..fef0946c36bda9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoSim.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88 2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z" +}), 'NoSim'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoSimOutlined.js b/packages/material-ui-icons/lib/esm/NoSimOutlined.js new file mode 100644 index 00000000000000..083ccb32881b65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoSimOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.26 21.21 3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41zM7 19V9.77L16.23 19H7zm3.84-14H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z" +}), 'NoSimOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoSimRounded.js b/packages/material-ui-icons/lib/esm/NoSimRounded.js new file mode 100644 index 00000000000000..d523a4a039514f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoSimRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.09 4.44c-.39.39-.39 1.02 0 1.41l2.03 2.03-.12.13V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.17 1.17c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.5 4.44a.9959.9959 0 0 0-1.41 0zM19 16.11V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06 19 16.11z" +}), 'NoSimRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoSimSharp.js b/packages/material-ui-icons/lib/esm/NoSimSharp.js new file mode 100644 index 00000000000000..7e42c6d0069a38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoSimSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.79 3.74 2.38 5.15l2.74 2.74-.12.12V21h13.27l1.58 1.62 1.41-1.41zM19 16.11V3h-8.99L7.95 5.06z" +}), 'NoSimSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoSimTwoTone.js b/packages/material-ui-icons/lib/esm/NoSimTwoTone.js new file mode 100644 index 00000000000000..91ea7c8576ae40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoSimTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h9.23L7 9.77z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41L3.79 3.74zM7 19V9.77L16.23 19H7z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10.84 5 9.36 6.47 17 14.11V5z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M10.84 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z" +}, "3")], 'NoSimTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoStroller.js b/packages/material-ui-icons/lib/esm/NoStroller.js new file mode 100644 index 00000000000000..bdd7b59a68fb72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoStroller.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3zm-7.98 7.67L2.81 2.81 1.39 4.22l7.97 7.97-2.66 3.12c-.55.65-.09 1.65.76 1.65h6.66l1.17 1.17C14.54 18.42 14 19.14 14 20c0 1.1.9 2 2 2 .86 0 1.58-.54 1.87-1.3l1.91 1.91 1.41-1.41-4.8-4.8-5.72-5.73zm2.8-5.64c.27-.32.58-.72.98-1.09-2.46-1.19-5.32-1.22-7.81-.13l4.25 4.25 2.58-3.03z" +}), 'NoStroller'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoStrollerOutlined.js b/packages/material-ui-icons/lib/esm/NoStrollerOutlined.js new file mode 100644 index 00000000000000..0bf90b37933587 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoStrollerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm7-11.34v3.51l2 2v-7.9c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11 1.42 1.42L15 8.66zm4.78 13.95-1.91-1.91c-.29.76-1.01 1.3-1.87 1.3-1.1 0-2-.9-2-2 0-.86.54-1.58 1.3-1.87L14.17 17H7.43c-.85 0-1.31-1-.76-1.65l2.69-3.16-7.97-7.97L2.8 2.81l7.86 7.86 1.42 1.42 9.11 9.11-1.41 1.41zM12.17 15l-1.39-1.39L9.6 15h2.57zM10 5c.29 0 .58.02.86.05L9.49 6.67l1.42 1.42L14.3 4.1C13.03 3.4 11.56 3 10 3c-1.23 0-2.4.25-3.47.7L8.1 5.27C8.71 5.1 9.35 5 10 5z" +}), 'NoStrollerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoStrollerRounded.js b/packages/material-ui-icons/lib/esm/NoStrollerRounded.js new file mode 100644 index 00000000000000..ada97b842b6697 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoStrollerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm6.3-15.9C13.03 3.4 11.56 3 10 3c-1.23 0-2.39.26-3.46.71l4.37 4.37L14.3 4.1zm6.19 17.8c.39-.39.39-1.02 0-1.41l-9.82-9.82-7.16-7.16a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l7.26 7.26L6.7 15.3c-.55.65-.09 1.65.76 1.65h6.66l1.17 1.17c-.88.33-1.47 1.25-1.26 2.28.15.76.78 1.39 1.54 1.54 1.03.21 1.95-.38 2.28-1.26l1.2 1.2c.41.41 1.04.41 1.44.02zM17 6.27c.58-.68.97-1.27 1.65-1.27.68 0 1.22.52 1.33 1.21.1.45.5.79.98.79.55 0 1-.45 1-1 0-.06 0-.11-.01-.16v-.01C21.65 4.22 20.3 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9z" +}), 'NoStrollerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoStrollerSharp.js b/packages/material-ui-icons/lib/esm/NoStrollerSharp.js new file mode 100644 index 00000000000000..0e04ff399078c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoStrollerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.91 8.08 6.53 3.7C7.6 3.25 8.77 3 10 3c1.56 0 3.03.4 4.3 1.1l-3.39 3.98zm10.28 13.11-4.78-4.78-5.75-5.75-7.85-7.85-1.42 1.41 7.97 7.97L5.27 17h8.9l1.13 1.13c-.88.33-1.47 1.25-1.26 2.28.15.76.78 1.39 1.54 1.54 1.03.21 1.95-.38 2.28-1.26l1.91 1.91 1.42-1.41zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM17 6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9z" +}), 'NoStrollerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoStrollerTwoTone.js b/packages/material-ui-icons/lib/esm/NoStrollerTwoTone.js new file mode 100644 index 00000000000000..5ffb732952d8ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoStrollerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.1 5.27C8.71 5.1 9.35 5 10 5c.29 0 .58.02.86.05L9.49 6.67 8.1 5.27zm6.9 6.9V8.66l-1.61 1.89L15 12.17zM12.17 15l-1.39-1.39L9.6 15h2.57z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm7-11.34v3.51l2 2v-7.9c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11 1.42 1.42L15 8.66zm4.78 13.95-1.91-1.91c-.29.76-1.01 1.3-1.87 1.3-1.1 0-2-.9-2-2 0-.86.54-1.58 1.3-1.87L14.17 17H7.43c-.85 0-1.31-1-.76-1.65l2.69-3.16-7.97-7.97L2.8 2.81l7.86 7.86 1.42 1.42 9.11 9.11-1.41 1.41zM12.17 15l-1.39-1.39L9.6 15h2.57zM10 5c.29 0 .58.02.86.05L9.49 6.67l1.42 1.42L14.3 4.1C13.03 3.4 11.56 3 10 3c-1.23 0-2.4.25-3.47.7L8.1 5.27C8.71 5.1 9.35 5 10 5z" +}, "1")], 'NoStrollerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoTransfer.js b/packages/material-ui-icons/lib/esm/NoTransfer.js new file mode 100644 index 00000000000000..95f74858c8af9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoTransfer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 4 6.83V16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.05 0 .09-.02.14-.03l1.64 1.64 1.41-1.42zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zM6 11V8.83L8.17 11H6zm2.83-5L5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83z" +}), 'NoTransfer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoTransferOutlined.js b/packages/material-ui-icons/lib/esm/NoTransferOutlined.js new file mode 100644 index 00000000000000..f76f2b5161bfcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoTransferOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 13c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13zm11.28 9.61-1.64-1.64c-.05.01-.09.03-.14.03h-1c-.55 0-1-.45-1-1v-1H8v1c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-1.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM6 8.83V10h1.17L6 8.83zM14.17 17l-5-5H6v4c0 .37.21.62.34.73l.29.27h7.54zM12 4c3.69 0 5.11.46 5.66.99H7.82l2 2H18V10h-5.17l2 2H18v3.17l1.81 1.81c.11-.31.19-.63.19-.98V6c0-3.5-3.58-4-8-4-2.52 0-4.76.16-6.22.95l1.53 1.53C8.17 4.2 9.6 4 12 4z" +}), 'NoTransferOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoTransferRounded.js b/packages/material-ui-icons/lib/esm/NoTransferRounded.js new file mode 100644 index 00000000000000..3e3a301f9eb393 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoTransferRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83L5.78 2.95zM20.49 21.9c-.39.39-1.02.39-1.41 0l-1.01-1.01c-.18.07-.37.11-.57.11-.83 0-1.5-.68-1.5-1.5V19H8v.5c0 .83-.67 1.5-1.5 1.5S5 20.33 5 19.5v-1.28c-.61-.55-1-1.34-1-2.22V6.83l-1.9-1.9a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM9 15.5c0-.83-.67-1.5-1.5-1.5S6 14.67 6 15.5 6.67 17 7.5 17 9 16.33 9 15.5zM8.17 11 6 8.83V11h2.17z" +}), 'NoTransferRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoTransferSharp.js b/packages/material-ui-icons/lib/esm/NoTransferSharp.js new file mode 100644 index 00000000000000..547a4df4161e0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoTransferSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83L5.78 2.95zm14 19.66L18.17 21H16v-2H8v2H5v-2.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM9 15.5c0-.83-.67-1.5-1.5-1.5S6 14.67 6 15.5 6.67 17 7.5 17 9 16.33 9 15.5zM8.17 11 6 8.83V11h2.17z" +}), 'NoTransferSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoTransferTwoTone.js b/packages/material-ui-icons/lib/esm/NoTransferTwoTone.js new file mode 100644 index 00000000000000..65f806edc5fee3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoTransferTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.83 12H18v3.17L14.83 12zm-5.66 0 5 5H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h3.17zm.83 2.5c0-.83-.67-1.5-1.5-1.5S7 13.67 7 14.5 7.67 16 8.5 16s1.5-.67 1.5-1.5zM7.82 4.99h9.83C17.11 4.46 15.69 4 12 4c-2.4 0-3.83.2-4.69.48l.51.51z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 13c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13zM7.31 4.48C8.17 4.2 9.6 4 12 4c3.69 0 5.11.46 5.66.99H7.82l2 2H18V10h-5.17l2 2H18v3.17l1.81 1.81c.11-.31.19-.63.19-.98V6c0-3.5-3.58-4-8-4-2.52 0-4.76.16-6.22.95l1.53 1.53zm12.47 18.13-1.64-1.64c-.05.01-.09.03-.14.03h-1c-.55 0-1-.45-1-1v-1H8v1c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-1.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM6 8.83V10h1.17L6 8.83zM14.17 17l-5-5H6v4c0 .37.21.62.34.73l.29.27h7.54z" +}, "1")], 'NoTransferTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NordicWalking.js b/packages/material-ui-icons/lib/esm/NordicWalking.js new file mode 100644 index 00000000000000..0d5059a79f0e67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NordicWalking.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" +}), 'NordicWalking'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NordicWalkingOutlined.js b/packages/material-ui-icons/lib/esm/NordicWalkingOutlined.js new file mode 100644 index 00000000000000..544edc9c63c2f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NordicWalkingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" +}), 'NordicWalkingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NordicWalkingRounded.js b/packages/material-ui-icons/lib/esm/NordicWalkingRounded.js new file mode 100644 index 00000000000000..fb7e59caae472b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NordicWalkingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.25 23c-.41 0-.75-.34-.75-.75V14H19v8.25c0 .41-.34.75-.75.75zM4.93 23c.35 0 .66-.24.73-.59L7.53 14H6l-1.8 8.09c-.1.47.25.91.73.91zM13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM14 23c.55 0 1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45L12.9 13.5l.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.1 1.14-.38 1.14-.99 0-.49-.35-.91-.83-.98-1.53-.24-2.79-1.14-3.47-2.33l-1-1.6c-.56-.89-1.68-1.25-2.66-.84L7.22 7.78C6.48 8.1 6 8.82 6 9.62V12c0 .55.45 1 1 1s1-.45 1-1V9.6l1.8-.7-2.55 12.86c-.13.64.36 1.24 1.02 1.24.49 0 .91-.34 1.02-.81L10.9 15l2.1 2v5c0 .55.45 1 1 1z" +}), 'NordicWalkingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NordicWalkingSharp.js b/packages/material-ui-icons/lib/esm/NordicWalkingSharp.js new file mode 100644 index 00000000000000..e5a7b285413fd1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NordicWalkingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" +}), 'NordicWalkingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NordicWalkingTwoTone.js b/packages/material-ui-icons/lib/esm/NordicWalkingTwoTone.js new file mode 100644 index 00000000000000..165fc2e7284822 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NordicWalkingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" +}), 'NordicWalkingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/North.js b/packages/material-ui-icons/lib/esm/North.js new file mode 100644 index 00000000000000..c3ff183216158d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/North.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" +}), 'North'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthEast.js b/packages/material-ui-icons/lib/esm/NorthEast.js new file mode 100644 index 00000000000000..d4655aa2fe6f58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthEast.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" +}), 'NorthEast'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthEastOutlined.js b/packages/material-ui-icons/lib/esm/NorthEastOutlined.js new file mode 100644 index 00000000000000..2af1db1e83f625 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthEastOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" +}), 'NorthEastOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthEastRounded.js b/packages/material-ui-icons/lib/esm/NorthEastRounded.js new file mode 100644 index 00000000000000..ddfb85fcdda5e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthEastRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6c0 .56.45 1 1 1h5.59L4.7 17.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17 8.41V14c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-8c-.55 0-1 .45-1 1z" +}), 'NorthEastRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthEastSharp.js b/packages/material-ui-icons/lib/esm/NorthEastSharp.js new file mode 100644 index 00000000000000..6a302c96d7efb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthEastSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" +}), 'NorthEastSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthEastTwoTone.js b/packages/material-ui-icons/lib/esm/NorthEastTwoTone.js new file mode 100644 index 00000000000000..49665463acdc81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthEastTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" +}), 'NorthEastTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthOutlined.js b/packages/material-ui-icons/lib/esm/NorthOutlined.js new file mode 100644 index 00000000000000..9745003025296b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" +}), 'NorthOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthRounded.js b/packages/material-ui-icons/lib/esm/NorthRounded.js new file mode 100644 index 00000000000000..ba2e524dfda7fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.71 9.7c.39.39 1.02.39 1.41 0L11 5.83V21c0 .55.45 1 1 1s1-.45 1-1V5.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 2.7a.9959.9959 0 0 0-1.41 0L5.71 8.29c-.39.39-.39 1.03 0 1.41z" +}), 'NorthRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthSharp.js b/packages/material-ui-icons/lib/esm/NorthSharp.js new file mode 100644 index 00000000000000..2148706bd91897 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" +}), 'NorthSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthTwoTone.js b/packages/material-ui-icons/lib/esm/NorthTwoTone.js new file mode 100644 index 00000000000000..d3c39c5ac32c84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5 9 1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" +}), 'NorthTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthWest.js b/packages/material-ui-icons/lib/esm/NorthWest.js new file mode 100644 index 00000000000000..2d169726377e74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthWest.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" +}), 'NorthWest'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthWestOutlined.js b/packages/material-ui-icons/lib/esm/NorthWestOutlined.js new file mode 100644 index 00000000000000..49d687b183a78b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthWestOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" +}), 'NorthWestOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthWestRounded.js b/packages/material-ui-icons/lib/esm/NorthWestRounded.js new file mode 100644 index 00000000000000..f424e2658dcfe7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthWestRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 15c.56 0 1-.45 1-1V8.41L17.89 19.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L8.41 7H14c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1z" +}), 'NorthWestRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthWestSharp.js b/packages/material-ui-icons/lib/esm/NorthWestSharp.js new file mode 100644 index 00000000000000..5edf8ff6e4f1ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthWestSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" +}), 'NorthWestSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NorthWestTwoTone.js b/packages/material-ui-icons/lib/esm/NorthWestTwoTone.js new file mode 100644 index 00000000000000..c46a7789a2aefb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NorthWestTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" +}), 'NorthWestTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotAccessible.js b/packages/material-ui-icons/lib/esm/NotAccessible.js new file mode 100644 index 00000000000000..03ccce48bfa900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotAccessible.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 11.05-3.42-3.42c.32-.34.74-.57 1.23-.61.48-.04.84.07 1.2.26.19.1.39.22.63.46l1.29 1.43c.98 1.08 2.53 1.85 4.07 1.83v2c-1.75-.01-3.71-.88-5-1.95zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2.81 2.81 1.39 4.22 10 12.83V15c0 1.1.9 2 2 2h2.17l5.61 5.61 1.41-1.41L2.81 2.81zM10 20c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z" +}), 'NotAccessible'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotAccessibleOutlined.js b/packages/material-ui-icons/lib/esm/NotAccessibleOutlined.js new file mode 100644 index 00000000000000..570d41ac32a9b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotAccessibleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9 9v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zM2.81 2.81 1.39 4.22 10 12.83V15c0 1.1.9 2 2 2h2.17l5.61 5.61 1.41-1.41L2.81 2.81z" +}), 'NotAccessibleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotAccessibleRounded.js b/packages/material-ui-icons/lib/esm/NotAccessibleRounded.js new file mode 100644 index 00000000000000..7907bf5eb969ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotAccessibleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-2 18c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zm10.49.49L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l7.9 7.9V15c0 1.1.9 2 2 2h2.17l4.9 4.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zm-2.33-9.56c-1.25-.21-2.43-.88-3.23-1.76l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1 .83 2.4 1.54 3.8 1.82.62.13 1.2-.34 1.2-.97 0-.48-.36-.89-.84-.97z" +}), 'NotAccessibleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotAccessibleSharp.js b/packages/material-ui-icons/lib/esm/NotAccessibleSharp.js new file mode 100644 index 00000000000000..b8d280dcadd96f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotAccessibleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-2 18c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zm11.19 1.19L2.81 2.81 1.39 4.22 10 12.83V17h4.17l5.61 5.61 1.41-1.42zM19 11c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95v-2z" +}), 'NotAccessibleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotAccessibleTwoTone.js b/packages/material-ui-icons/lib/esm/NotAccessibleTwoTone.js new file mode 100644 index 00000000000000..7f751d2fd91c75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotAccessibleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9 9v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2zM2.81 2.81 1.39 4.22 10 12.83V15c0 1.1.9 2 2 2h2.17l5.61 5.61 1.41-1.41L2.81 2.81z" +}), 'NotAccessibleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotInterested.js b/packages/material-ui-icons/lib/esm/NotInterested.js new file mode 100644 index 00000000000000..511c1685b8857e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotInterested.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'NotInterested'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotInterestedOutlined.js b/packages/material-ui-icons/lib/esm/NotInterestedOutlined.js new file mode 100644 index 00000000000000..d86aa50dc8d8b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotInterestedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'NotInterestedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotInterestedRounded.js b/packages/material-ui-icons/lib/esm/NotInterestedRounded.js new file mode 100644 index 00000000000000..cc156a10e26572 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotInterestedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'NotInterestedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotInterestedSharp.js b/packages/material-ui-icons/lib/esm/NotInterestedSharp.js new file mode 100644 index 00000000000000..40afcce1152559 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotInterestedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" +}), 'NotInterestedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotInterestedTwoTone.js b/packages/material-ui-icons/lib/esm/NotInterestedTwoTone.js new file mode 100644 index 00000000000000..206760b6abf046 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotInterestedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9L7.1 5.69C8.45 4.63 10.15 4 12 4zM5.69 7.1 16.9 18.31C15.55 19.37 13.85 20 12 20c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9z" +}), 'NotInterestedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotListedLocation.js b/packages/material-ui-icons/lib/esm/NotListedLocation.js new file mode 100644 index 00000000000000..76c431a7aedf8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotListedLocation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm.88 13.75h-1.75V14h1.75v1.75zm0-2.87h-1.75c0-2.84 2.62-2.62 2.62-4.38 0-.96-.79-1.75-1.75-1.75s-1.75.79-1.75 1.75H8.5C8.5 6.57 10.07 5 12 5s3.5 1.57 3.5 3.5c0 2.19-2.62 2.41-2.62 4.38z" +}), 'NotListedLocation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotListedLocationOutlined.js b/packages/material-ui-icons/lib/esm/NotListedLocationOutlined.js new file mode 100644 index 00000000000000..8398a88fbf8f8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotListedLocationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 16c-.27 0-.52-.1-.71-.29-.2-.2-.29-.43-.29-.71-.01-.55.43-.99.98-1h.02c.28 0 .51.1.71.29.18.19.28.43.28.7s-.1.51-.29.71-.43.3-.7.3zm-.88-3.66c0-.45.1-.84.29-1.16.19-.33.53-.7 1-1.12.28-.25.48-.47.61-.66s.19-.4.19-.64c0-.29-.11-.53-.32-.74-.21-.2-.5-.3-.85-.3-.37 0-.74.1-.96.3-.21.2-.4.45-.4.98H9c0-1.01.46-1.73.97-2.21C10.53 6.28 11.25 6 12 6c.59 0 1.11.12 1.57.35s.79.55 1.05.96.38.86.38 1.35-.1.9-.31 1.25-.48.71-.89 1.09c-.32.3-.53.56-.65.77s-.18.49-.18.81V13h-1.85v-.66h.01zM18 10.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'NotListedLocationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotListedLocationRounded.js b/packages/material-ui-icons/lib/esm/NotListedLocationRounded.js new file mode 100644 index 00000000000000..221b86feeca33f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotListedLocationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.22.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm.01 14c-.59 0-1.05-.47-1.05-1.05 0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05zm2.51-6.17c-.63.93-1.23 1.21-1.56 1.81-.08.14-.13.26-.16.49-.05.39-.36.68-.75.68h-.03c-.44 0-.79-.38-.75-.82.03-.27.09-.57.25-.84.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.61 0-1.01.32-1.26.7-.19.29-.57.39-.89.25-.42-.18-.6-.7-.34-1.07C10.03 6.55 10.88 6 12 6c1.23 0 2.08.56 2.51 1.26.36.61.58 1.73.01 2.57z" +}), 'NotListedLocationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotListedLocationSharp.js b/packages/material-ui-icons/lib/esm/NotListedLocationSharp.js new file mode 100644 index 00000000000000..14acadde1ab351 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotListedLocationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 16a.99.99 0 0 0 1-1 .99.99 0 0 0-1-1c-.28 0-.51.1-.71.29-.2.19-.3.43-.3.7s.1.51.29.71c.2.2.44.3.72.3zm-.88-3.66V13h1.85v-.42c0-.33.06-.6.18-.81.12-.21.33-.47.65-.77.4-.38.68-.75.89-1.09.19-.35.3-.76.3-1.25s-.13-.94-.39-1.35a2.57 2.57 0 0 0-1.05-.96C13.11 6.12 12.58 6 12 6c-.78 0-1.51.32-2.03.79C9.46 7.27 9 7.99 9 9h1.68c0-.52.19-.77.4-.98.21-.2.58-.3.96-.3.35 0 .64.1.85.3.21.2.32.45.32.74 0 .24-.06.46-.19.64-.13.19-.33.41-.61.66-.48.42-.81.79-1 1.12-.19.33-.28.71-.28 1.16zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'NotListedLocationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotListedLocationTwoTone.js b/packages/material-ui-icons/lib/esm/NotListedLocationTwoTone.js new file mode 100644 index 00000000000000..60036e303a88b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotListedLocationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.01 16c-.27 0-.52-.1-.71-.29-.2-.2-.29-.43-.29-.71-.01-.55.43-.99.98-1h.02c.28 0 .51.1.71.29.18.19.28.43.28.7s-.1.51-.29.71-.43.3-.7.3zm-.88-3.66c0-.45.1-.84.29-1.16.19-.33.53-.7 1-1.12.28-.25.48-.47.61-.66s.19-.4.19-.64c0-.29-.11-.53-.32-.74-.21-.2-.5-.3-.85-.3-.37 0-.74.1-.96.3-.21.2-.4.45-.4.98H9c0-1.01.46-1.73.97-2.21C10.53 6.28 11.25 6 12 6c.59 0 1.11.12 1.57.35.88.43 1.43 1.33 1.43 2.31 0 .49-.1.9-.31 1.25s-.48.71-.89 1.09c-.32.3-.53.56-.65.77s-.18.49-.18.81V13h-1.85v-.66h.01zM18 10.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}, "1")], 'NotListedLocationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotStarted.js b/packages/material-ui-icons/lib/esm/NotStarted.js new file mode 100644 index 00000000000000..b5a4fbfe6720cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotStarted.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm1 0V8l5 4-5 4z" +}), 'NotStarted'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotStartedOutlined.js b/packages/material-ui-icons/lib/esm/NotStartedOutlined.js new file mode 100644 index 00000000000000..d30d6cc31a6828 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotStartedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 6H9v8h2V8zm6 4-5-4v8l5-4z" +}), 'NotStartedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotStartedRounded.js b/packages/material-ui-icons/lib/esm/NotStartedRounded.js new file mode 100644 index 00000000000000..56a5c91709aeb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotStartedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 13c0 .55-.45 1-1 1s-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6zm5.02-2.22-2.4 1.92c-.65.52-1.62.06-1.62-.78v-3.84c0-.84.97-1.3 1.62-.78l2.4 1.92c.5.4.5 1.16 0 1.56z" +}), 'NotStartedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotStartedSharp.js b/packages/material-ui-icons/lib/esm/NotStartedSharp.js new file mode 100644 index 00000000000000..cc339684c0921a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotStartedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm1 0V8l5 4-5 4z" +}), 'NotStartedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotStartedTwoTone.js b/packages/material-ui-icons/lib/esm/NotStartedTwoTone.js new file mode 100644 index 00000000000000..1a1fd19b76f9de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotStartedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 12H9V8h2v8zm1 0V8l5 4-5 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 6H9v8h2V8zm6 4-5-4v8l5-4z" +}, "1")], 'NotStartedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Note.js b/packages/material-ui-icons/lib/esm/Note.js new file mode 100644 index 00000000000000..64b432f0fec4a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Note.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 10-6-6H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99l16-.01c1.1 0 2-.89 2-1.99v-8zm-7-4.5 5.5 5.5H15V5.5z" +}), 'Note'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAdd.js b/packages/material-ui-icons/lib/esm/NoteAdd.js new file mode 100644 index 00000000000000..af980d1f9f7480 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z" +}), 'NoteAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAddOutlined.js b/packages/material-ui-icons/lib/esm/NoteAddOutlined.js new file mode 100644 index 00000000000000..9a52a6e41d9044 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" +}), 'NoteAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAddRounded.js b/packages/material-ui-icons/lib/esm/NoteAddRounded.js new file mode 100644 index 00000000000000..3c14dbcdae550c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.59 2.59c-.38-.38-.89-.59-1.42-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15 16h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1zm-2-8V3.5L18.5 9H14c-.55 0-1-.45-1-1z" +}), 'NoteAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAddSharp.js b/packages/material-ui-icons/lib/esm/NoteAddSharp.js new file mode 100644 index 00000000000000..ce0a0dd7ff46c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z" +}), 'NoteAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAddTwoTone.js b/packages/material-ui-icons/lib/esm/NoteAddTwoTone.js new file mode 100644 index 00000000000000..cb0b7da1018d9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAddTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 4H6v16h12V9h-5V4zm3 10v2h-3v3h-2v-3H8v-2h3v-3h2v3h3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" +}, "1")], 'NoteAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAlt.js b/packages/material-ui-icons/lib/esm/NoteAlt.js new file mode 100644 index 00000000000000..3d1ac62c3139ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM9.1 17H7v-2.14l5.96-5.96 2.12 2.12L9.1 17zm7.75-7.73-1.06 1.06-2.12-2.12 1.06-1.06c.2-.2.51-.2.71 0l1.41 1.41c.2.2.2.51 0 .71z" +}), 'NoteAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAltOutlined.js b/packages/material-ui-icons/lib/esm/NoteAltOutlined.js new file mode 100644 index 00000000000000..ed396a9dcb7059 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAltOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.08 11.03-2.12-2.12L7 14.86V17h2.1zm1.77-1.76c.2-.2.2-.51 0-.71l-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06z" +}, "1")], 'NoteAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAltRounded.js b/packages/material-ui-icons/lib/esm/NoteAltRounded.js new file mode 100644 index 00000000000000..e655b911386fea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM8.9 17H7.5c-.28 0-.5-.22-.5-.5v-1.43c0-.13.05-.26.15-.35l5.81-5.81 2.12 2.12-5.83 5.83c-.09.09-.22.14-.35.14zm7.95-7.73-1.06 1.06-2.12-2.12 1.06-1.06c.2-.2.51-.2.71 0l1.41 1.41c.2.2.2.51 0 .71z" +}), 'NoteAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAltSharp.js b/packages/material-ui-icons/lib/esm/NoteAltSharp.js new file mode 100644 index 00000000000000..a8089854c246f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM9.1 17H7v-2.14l5.96-5.96 2.12 2.12L9.1 17zm8.1-8.09-1.41 1.41-2.13-2.12 1.41-1.41 2.13 2.12z" +}), 'NoteAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteAltTwoTone.js b/packages/material-ui-icons/lib/esm/NoteAltTwoTone.js new file mode 100644 index 00000000000000..10a8f7ee11884c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteAltTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm9.73-11.85c.2-.2.51-.2.71 0l1.41 1.41c.2.2.2.51 0 .71l-1.06 1.06-2.12-2.12 1.06-1.06zM7 14.86l5.96-5.96 2.12 2.12L9.1 17H7v-2.14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m15.08 11.03-2.12-2.12L7 14.86V17h2.1zm1.77-1.76c.2-.2.2-.51 0-.71l-1.41-1.41c-.2-.2-.51-.2-.71 0l-1.06 1.06 2.12 2.12 1.06-1.06z" +}, "2")], 'NoteAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteOutlined.js b/packages/material-ui-icons/lib/esm/NoteOutlined.js new file mode 100644 index 00000000000000..6d2edaeaf5276c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6zM4 18.01V6h11v5h5v7.01H4z" +}), 'NoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteRounded.js b/packages/material-ui-icons/lib/esm/NoteRounded.js new file mode 100644 index 00000000000000..03ab5db02417ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 9.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v12.01c0 1.1.89 1.99 1.99 1.99H20c1.1 0 2-.9 2-2v-7.17c0-.53-.21-1.04-.59-1.42zM15 5.5l5.5 5.5H16c-.55 0-1-.45-1-1V5.5z" +}), 'NoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteSharp.js b/packages/material-ui-icons/lib/esm/NoteSharp.js new file mode 100644 index 00000000000000..ac5fec7d0d2a38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 10-6-6H2v16h20V10zm-7-4.5 5.5 5.5H15V5.5z" +}), 'NoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NoteTwoTone.js b/packages/material-ui-icons/lib/esm/NoteTwoTone.js new file mode 100644 index 00000000000000..c02457c342c6d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NoteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 6H4v12.01h16V11h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6H4zm16 14.01H4V6h11v5h5v7.01z" +}, "1")], 'NoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Notes.js b/packages/material-ui-icons/lib/esm/Notes.js new file mode 100644 index 00000000000000..cea0fd450c40a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Notes.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h12v-2H3v2zM3 6v2h18V6H3zm0 7h18v-2H3v2z" +}), 'Notes'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotesOutlined.js b/packages/material-ui-icons/lib/esm/NotesOutlined.js new file mode 100644 index 00000000000000..67fe5e09bfc053 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.01 3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" +}), 'NotesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotesRounded.js b/packages/material-ui-icons/lib/esm/NotesRounded.js new file mode 100644 index 00000000000000..dc656e9d65ecbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zM4 18h10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM20 6H4c-.55 0-1 .45-1 1v.01c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z" +}), 'NotesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotesSharp.js b/packages/material-ui-icons/lib/esm/NotesSharp.js new file mode 100644 index 00000000000000..2360107fbdfd0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.01 3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" +}), 'NotesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotesTwoTone.js b/packages/material-ui-icons/lib/esm/NotesTwoTone.js new file mode 100644 index 00000000000000..6446d444b83dcd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotesTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11.01 3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" +}), 'NotesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationAdd.js b/packages/material-ui-icons/lib/esm/NotificationAdd.js new file mode 100644 index 00000000000000..e0f5bdfe282860 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.71.18 1.36.49 1.95.9C14.54 6.14 14 7.51 14 9zm10-1h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" +}), 'NotificationAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationAddOutlined.js b/packages/material-ui-icons/lib/esm/NotificationAddOutlined.js new file mode 100644 index 00000000000000..5faecee38df29f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 14v3H8v-7c0-2.21 1.79-4 4-4 .85 0 1.64.26 2.28.72l1.43-1.43c-.64-.51-1.39-.88-2.21-1.09v-.7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.7C7.91 4.86 6 7.21 6 10v7H4v2h16v-2h-2v-3h-2zm-4 8c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zM24 8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" +}), 'NotificationAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationAddRounded.js b/packages/material-ui-icons/lib/esm/NotificationAddRounded.js new file mode 100644 index 00000000000000..aaf60b1cc4a14f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h1c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h1v-7c0-2.79 1.91-5.14 4.5-5.8v-.7c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.7c.71.18 1.36.49 1.95.9C14.54 6.14 14 7.51 14 9zm9-1h-2V6c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'NotificationAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationAddSharp.js b/packages/material-ui-icons/lib/esm/NotificationAddSharp.js new file mode 100644 index 00000000000000..ca75f92b9f72e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.71.18 1.36.49 1.95.9C14.54 6.14 14 7.51 14 9zm10-1h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" +}), 'NotificationAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationAddTwoTone.js b/packages/material-ui-icons/lib/esm/NotificationAddTwoTone.js new file mode 100644 index 00000000000000..4906690db8a56b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationAddTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 14v3H8v-7c0-2.21 1.79-4 4-4 .85 0 1.64.26 2.28.72l1.43-1.43c-.64-.51-1.39-.88-2.21-1.09v-.7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.7C7.91 4.86 6 7.21 6 10v7H4v2h16v-2h-2v-3h-2zm-4 8c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zM24 8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" +}), 'NotificationAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationImportant.js b/packages/material-ui-icons/lib/esm/NotificationImportant.js new file mode 100644 index 00000000000000..04367be0e2495c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationImportant.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-5 0h-2v-2h2v2zm0-4h-2V8h2v4zm-1 10c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z" +}), 'NotificationImportant'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationImportantOutlined.js b/packages/material-ui-icons/lib/esm/NotificationImportantOutlined.js new file mode 100644 index 00000000000000..826b03d70f3db6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationImportantOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM11 8h2v4h-2zm0 6h2v2h-2z" +}), 'NotificationImportantOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationImportantRounded.js b/packages/material-ui-icons/lib/esm/NotificationImportantRounded.js new file mode 100644 index 00000000000000..09a6a3ea2ea8ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationImportantRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm8.29-4.71L19 17v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-1.29 1.29c-.63.63-.19 1.71.7 1.71h15.17c.9 0 1.34-1.08.71-1.71zM13 16h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v2z" +}), 'NotificationImportantRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationImportantSharp.js b/packages/material-ui-icons/lib/esm/NotificationImportantSharp.js new file mode 100644 index 00000000000000..7d66abd0231ee2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationImportantSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-6-1h-2v-2h2v2zm0-4h-2V8h2v4z" +}), 'NotificationImportantSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationImportantTwoTone.js b/packages/material-ui-icons/lib/esm/NotificationImportantTwoTone.js new file mode 100644 index 00000000000000..613ea43750e93b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationImportantTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm1 10h-2v-2h2v2zm0-4h-2V8h2v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zM11 8h2v4h-2zm0 6h2v2h-2z" +}, "1")], 'NotificationImportantTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Notifications.js b/packages/material-ui-icons/lib/esm/Notifications.js new file mode 100644 index 00000000000000..cdfec7a992ce33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Notifications.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z" +}), 'Notifications'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsActive.js b/packages/material-ui-icons/lib/esm/NotificationsActive.js new file mode 100644 index 00000000000000..8e3729bb11b1cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsActive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z" +}), 'NotificationsActive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsActiveOutlined.js b/packages/material-ui-icons/lib/esm/NotificationsActiveOutlined.js new file mode 100644 index 00000000000000..f99aa19615d341 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsActiveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z" +}), 'NotificationsActiveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsActiveRounded.js b/packages/material-ui-icons/lib/esm/NotificationsActiveRounded.js new file mode 100644 index 00000000000000..2a14e3d5691290 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsActiveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.68-1.5-1.51-1.5S10.5 3.17 10.5 4v.68C7.63 5.36 6 7.92 6 11v5l-1.3 1.29c-.63.63-.19 1.71.7 1.71h13.17c.89 0 1.34-1.08.71-1.71L18 16zm-6.01 6c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zM6.77 4.73c.42-.38.43-1.03.03-1.43-.38-.38-1-.39-1.39-.02C3.7 4.84 2.52 6.96 2.14 9.34c-.09.61.38 1.16 1 1.16.48 0 .9-.35.98-.83.3-1.94 1.26-3.67 2.65-4.94zM18.6 3.28c-.4-.37-1.02-.36-1.4.02-.4.4-.38 1.04.03 1.42 1.38 1.27 2.35 3 2.65 4.94.07.48.49.83.98.83.61 0 1.09-.55.99-1.16-.38-2.37-1.55-4.48-3.25-6.05z" +}), 'NotificationsActiveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsActiveSharp.js b/packages/material-ui-icons/lib/esm/NotificationsActiveSharp.js new file mode 100644 index 00000000000000..ad7c13c38c6c2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsActiveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z" +}), 'NotificationsActiveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsActiveTwoTone.js b/packages/material-ui-icons/lib/esm/NotificationsActiveTwoTone.js new file mode 100644 index 00000000000000..03e6254c77c885 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsActiveTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-2 6H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08 6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z" +}, "1")], 'NotificationsActiveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsNone.js b/packages/material-ui-icons/lib/esm/NotificationsNone.js new file mode 100644 index 00000000000000..70dcf96292b155 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsNone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" +}), 'NotificationsNone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsNoneOutlined.js b/packages/material-ui-icons/lib/esm/NotificationsNoneOutlined.js new file mode 100644 index 00000000000000..e4c3a7ffbc2a49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsNoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" +}), 'NotificationsNoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsNoneRounded.js b/packages/material-ui-icons/lib/esm/NotificationsNoneRounded.js new file mode 100644 index 00000000000000..1edc62cc573d3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsNoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.29 17.29 18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.9 0 1.34-1.08.71-1.71zM16 17H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z" +}), 'NotificationsNoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsNoneSharp.js b/packages/material-ui-icons/lib/esm/NotificationsNoneSharp.js new file mode 100644 index 00000000000000..c35ae452c946bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsNoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V2.5h-3v2.18C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" +}), 'NotificationsNoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsNoneTwoTone.js b/packages/material-ui-icons/lib/esm/NotificationsNoneTwoTone.js new file mode 100644 index 00000000000000..0cd1a1e3b6440c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsNoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" +}, "1")], 'NotificationsNoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsOff.js b/packages/material-ui-icons/lib/esm/NotificationsOff.js new file mode 100644 index 00000000000000..fdbfce910ec1bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18.69 7.84 6.14 5.27 3.49 4 4.76l2.8 2.8v.01c-.52.99-.8 2.16-.8 3.42v5l-2 2v1h13.73l2 2L21 19.72l-1-1.03zM12 22c1.11 0 2-.89 2-2h-4c0 1.11.89 2 2 2zm6-7.32V11c0-3.08-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.15.03-.29.08-.42.12-.1.03-.2.07-.3.11h-.01c-.01 0-.01 0-.02.01-.23.09-.46.2-.68.31 0 0-.01 0-.01.01L18 14.68z" +}), 'NotificationsOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsOffOutlined.js b/packages/material-ui-icons/lib/esm/NotificationsOffOutlined.js new file mode 100644 index 00000000000000..317251245d080c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z" +}), 'NotificationsOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsOffRounded.js b/packages/material-ui-icons/lib/esm/NotificationsOffRounded.js new file mode 100644 index 00000000000000..9bb64e17080769 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h12.83l1.74 1.74 1.41-1.41L5.41 3.35z" +}), 'NotificationsOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsOffSharp.js b/packages/material-ui-icons/lib/esm/NotificationsOffSharp.js new file mode 100644 index 00000000000000..2768914d7e5688 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35z" +}), 'NotificationsOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsOffTwoTone.js b/packages/material-ui-icons/lib/esm/NotificationsOffTwoTone.js new file mode 100644 index 00000000000000..e025292d91e0d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 17h8v-.24L8.34 9.1C8.12 9.68 8 10.32 8 11v6zm4-10.5c-.19 0-.37.03-.55.06L16 11.1V11c0-2.48-1.51-4.5-4-4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35 4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z" +}, "1")], 'NotificationsOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsOutlined.js b/packages/material-ui-icons/lib/esm/NotificationsOutlined.js new file mode 100644 index 00000000000000..c10de5dfcf6203 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" +}), 'NotificationsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsPaused.js b/packages/material-ui-icons/lib/esm/NotificationsPaused.js new file mode 100644 index 00000000000000..46913fd01fe497 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsPaused.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z" +}), 'NotificationsPaused'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsPausedOutlined.js b/packages/material-ui-icons/lib/esm/NotificationsPausedOutlined.js new file mode 100644 index 00000000000000..367f928d54b14c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsPausedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" +}), 'NotificationsPausedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsPausedRounded.js b/packages/material-ui-icons/lib/esm/NotificationsPausedRounded.js new file mode 100644 index 00000000000000..b5baf1e18449ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsPausedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm7.29-4.71L18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.9 0 1.34-1.08.71-1.71zM14.5 9.33c0 .31-.11.6-.3.84l-2.5 3.03h1.9c.5 0 .9.4.9.9s-.4.9-.9.9h-2.78c-.73 0-1.32-.59-1.32-1.32v-.01c0-.31.11-.6.3-.84l2.5-3.03h-1.9c-.5 0-.9-.4-.9-.9s.4-.9.9-.9h2.78c.73 0 1.32.59 1.32 1.33z" +}), 'NotificationsPausedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsPausedSharp.js b/packages/material-ui-icons/lib/esm/NotificationsPausedSharp.js new file mode 100644 index 00000000000000..bafeff9b0f8955 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsPausedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z" +}), 'NotificationsPausedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsPausedTwoTone.js b/packages/material-ui-icons/lib/esm/NotificationsPausedTwoTone.js new file mode 100644 index 00000000000000..d766a11e4c8954 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsPausedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5zm2.5 3.3-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z" +}, "1")], 'NotificationsPausedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsRounded.js b/packages/material-ui-icons/lib/esm/NotificationsRounded.js new file mode 100644 index 00000000000000..e0a6f358def4b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.89 0 1.34-1.08.71-1.71L18 16z" +}), 'NotificationsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsSharp.js b/packages/material-ui-icons/lib/esm/NotificationsSharp.js new file mode 100644 index 00000000000000..c318194e91f13b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z" +}), 'NotificationsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/NotificationsTwoTone.js b/packages/material-ui-icons/lib/esm/NotificationsTwoTone.js new file mode 100644 index 00000000000000..9559bd1e2a8c36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/NotificationsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" +}, "1")], 'NotificationsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineBolt.js b/packages/material-ui-icons/lib/esm/OfflineBolt.js new file mode 100644 index 00000000000000..ad1a02d94c574c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineBolt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z" +}), 'OfflineBolt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineBoltOutlined.js b/packages/material-ui-icons/lib/esm/OfflineBoltOutlined.js new file mode 100644 index 00000000000000..3d279e214d06a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineBoltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3z" +}), 'OfflineBoltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineBoltRounded.js b/packages/material-ui-icons/lib/esm/OfflineBoltRounded.js new file mode 100644 index 00000000000000..e8d89f7a3bb7ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineBoltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm-.52 15.86v-4.14H8.82c-.37 0-.62-.4-.44-.73l3.68-7.17c.23-.47.94-.3.94.23v4.19h2.54c.37 0 .61.39.45.72l-3.56 7.12c-.24.48-.95.31-.95-.22z" +}), 'OfflineBoltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineBoltSharp.js b/packages/material-ui-icons/lib/esm/OfflineBoltSharp.js new file mode 100644 index 00000000000000..add20c0577db28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineBoltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z" +}), 'OfflineBoltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineBoltTwoTone.js b/packages/material-ui-icons/lib/esm/OfflineBoltTwoTone.js new file mode 100644 index 00000000000000..72d0f7b6eb6b28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineBoltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4.02C7.6 4.02 4.02 7.6 4.02 12S7.6 19.98 12 19.98s7.98-3.58 7.98-7.98S16.4 4.02 12 4.02zM11.39 19v-5.5H8.25l4.5-8.5v5.5h3L11.39 19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3V5z" +}, "1")], 'OfflineBoltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflinePin.js b/packages/material-ui-icons/lib/esm/OfflinePin.js new file mode 100644 index 00000000000000..b791ea82646f3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflinePin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z" +}), 'OfflinePin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflinePinOutlined.js b/packages/material-ui-icons/lib/esm/OfflinePinOutlined.js new file mode 100644 index 00000000000000..1b8e1b60a837f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflinePinOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z" +}), 'OfflinePinOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflinePinRounded.js b/packages/material-ui-icons/lib/esm/OfflinePinRounded.js new file mode 100644 index 00000000000000..e9708a1aca5410 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflinePinRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4 16H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-6.41-4.71L7.7 11.4a.9839.9839 0 0 1 0-1.4c.39-.39 1.01-.39 1.4 0l1.2 1.2 4.6-4.6c.39-.39 1.01-.39 1.4 0 .39.39.39 1.01 0 1.4l-5.29 5.29c-.39.39-1.03.39-1.42 0z" +}), 'OfflinePinRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflinePinSharp.js b/packages/material-ui-icons/lib/esm/OfflinePinSharp.js new file mode 100644 index 00000000000000..0274edd4b2f8bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflinePinSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z" +}), 'OfflinePinSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflinePinTwoTone.js b/packages/material-ui-icons/lib/esm/OfflinePinTwoTone.js new file mode 100644 index 00000000000000..5db916091fa2b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflinePinTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 13H7v-2h10v2zm-6.7-3L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z" +}, "1")], 'OfflinePinTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineShare.js b/packages/material-ui-icons/lib/esm/OfflineShare.js new file mode 100644 index 00000000000000..58924284fda643 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineShare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.6 10.26v1.31L17 9.33 14.6 7.1v1.28c-2.33.32-3.26 1.92-3.6 3.52.83-1.13 1.93-1.64 3.6-1.64zM16 23H6c-1.1 0-2-.9-2-2V5h2v16h10v2zm2-22h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 15h-8V4h8v12z" +}), 'OfflineShare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineShareOutlined.js b/packages/material-ui-icons/lib/esm/OfflineShareOutlined.js new file mode 100644 index 00000000000000..c3adfaa1b7e175 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineShareOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 5H4v16c0 1.1.9 2 2 2h10v-2H6V5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16h-8v-1h8v1zm0-3h-8V6h8v8zm0-10h-8V3h8v1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 10.25h1.63l-.69.69L14.5 12 17 9.5 14.5 7l-1.06 1.06.69.69H12c-.55 0-1 .45-1 1V12h1.5v-1.75z" +}, "2")], 'OfflineShareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineShareRounded.js b/packages/material-ui-icons/lib/esm/OfflineShareRounded.js new file mode 100644 index 00000000000000..d2a773f00bd282 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineShareRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h9c.55 0 1-.45 1-1s-.45-1-1-1H6V6c0-.55-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 14h-8V5h8v10z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 10.25h2v.54c0 .45.54.67.85.35l1.29-1.29c.2-.2.2-.51 0-.71l-1.29-1.29c-.31-.31-.85-.09-.85.35v.54H12c-.55 0-1 .45-1 1v1.5c0 .41.34.75.75.75s.75-.34.75-.75v-.99z" +}, "2")], 'OfflineShareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineShareSharp.js b/packages/material-ui-icons/lib/esm/OfflineShareSharp.js new file mode 100644 index 00000000000000..6c1d4ab21a2a6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineShareSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 5H4v18h12v-2H6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 1H8v18h12V1zm-2 14h-8V5h8v10z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 10.25h2V12L17 9.5 14.5 7v1.75H11V12h1.5z" +}, "2")], 'OfflineShareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OfflineShareTwoTone.js b/packages/material-ui-icons/lib/esm/OfflineShareTwoTone.js new file mode 100644 index 00000000000000..fefd2f406c90b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OfflineShareTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 5H4v16c0 1.1.9 2 2 2h10v-2H6V5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16h-8v-1h8v1zm0-3h-8V6h8v8zm0-10h-8V3h8v1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 10.25h2V12L17 9.5 14.5 7v1.75H12c-.55 0-1 .45-1 1V12h1.5v-1.75z" +}, "2")], 'OfflineShareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OndemandVideo.js b/packages/material-ui-icons/lib/esm/OndemandVideo.js new file mode 100644 index 00000000000000..987169d6800efe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OndemandVideo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-6-7 4V7z" +}), 'OndemandVideo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OndemandVideoOutlined.js b/packages/material-ui-icons/lib/esm/OndemandVideoOutlined.js new file mode 100644 index 00000000000000..39396040a56643 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OndemandVideoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" +}), 'OndemandVideoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OndemandVideoRounded.js b/packages/material-ui-icons/lib/esm/OndemandVideoRounded.js new file mode 100644 index 00000000000000..a839440189c065 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OndemandVideoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-5.52-5.13-3.98 2.28c-.67.38-1.5-.11-1.5-.87V8.72c0-.77.83-1.25 1.5-.87l3.98 2.28c.67.39.67 1.35 0 1.74z" +}), 'OndemandVideoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OndemandVideoSharp.js b/packages/material-ui-icons/lib/esm/OndemandVideoSharp.js new file mode 100644 index 00000000000000..2f682d19a56640 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OndemandVideoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12zm-5-6-7 4V7l7 4z" +}), 'OndemandVideoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OndemandVideoTwoTone.js b/packages/material-ui-icons/lib/esm/OndemandVideoTwoTone.js new file mode 100644 index 00000000000000..f32b79fc111094 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OndemandVideoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 17h18V5H3v12zM9 7l7 4-7 4V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" +}, "1")], 'OndemandVideoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneK.js b/packages/material-ui-icons/lib/esm/OneK.js new file mode 100644 index 00000000000000..c96b15e1c81482 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 12H9v-4.5H7.5V9h3v6zm7 0h-1.75L14 12.75V15h-1.5V9H14v2.25L15.75 9h1.75l-2.25 3 2.25 3z" +}), 'OneK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKOutlined.js b/packages/material-ui-icons/lib/esm/OneKOutlined.js new file mode 100644 index 00000000000000..8fab52e6603682 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 15H10V9H7v1.5h1.5zm5-2.25L15.25 15H17l-2.25-3L17 9h-1.75l-1.75 2.25V9H12v6h1.5z" +}, "1")], 'OneKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKPlus.js b/packages/material-ui-icons/lib/esm/OneKPlus.js new file mode 100644 index 00000000000000..dc831b12551407 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zm5.75-2.5H18V14h-1v-1.5h-1.5v-1H17V10h1v1.5h1.5v1z" +}), 'OneKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKPlusOutlined.js b/packages/material-ui-icons/lib/esm/OneKPlusOutlined.js new file mode 100644 index 00000000000000..f1eb051d1c9b59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKPlusOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.5 15H9V9H6v1.5h1.5zm4.5-2.25L13.75 15h1.75l-2.25-3 2.25-3h-1.75L12 11.25V9h-1.5v6H12z" +}, "1")], 'OneKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKPlusRounded.js b/packages/material-ui-icons/lib/esm/OneKPlusRounded.js new file mode 100644 index 00000000000000..41a53c8b3c405c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.25 15c-.41 0-.75-.34-.75-.75V10.5h-.75c-.41 0-.75-.34-.75-.75S6.34 9 6.75 9H8c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zm5.29-.27L12 12.75v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.4 0 .71.31.71.7v1.55l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.25 12l1.41 1.88c.34.46.01 1.12-.57 1.12-.21 0-.42-.1-.55-.27zm4.96-2.23h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'OneKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKPlusSharp.js b/packages/material-ui-icons/lib/esm/OneKPlusSharp.js new file mode 100644 index 00000000000000..fb482ca513c9a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'OneKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/OneKPlusTwoTone.js new file mode 100644 index 00000000000000..14ea6e9a0754f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKPlusTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm5.5-10H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75L12 12.75V15h-1.5V9zM6 9h3v6H7.5v-4.5H6V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 15H9V9H6v1.5h1.5zm4.5-2.25L13.75 15h1.75l-2.25-3 2.25-3h-1.75L12 11.25V9h-1.5v6H12z" +}, "2")], 'OneKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKRounded.js b/packages/material-ui-icons/lib/esm/OneKRounded.js new file mode 100644 index 00000000000000..a92bab2f757e76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.25 15c-.41 0-.75-.34-.75-.75V10.5h-.75c-.41 0-.75-.34-.75-.75S7.34 9 7.75 9H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zm6.34 0c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L14.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'OneKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKSharp.js b/packages/material-ui-icons/lib/esm/OneKSharp.js new file mode 100644 index 00000000000000..f6cd2bced7ae6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM10 15H8.5v-4.5H7V9h3v6zm7 0h-1.75l-1.75-2.25V15H12V9h1.5v2.25L15.25 9H17l-2.25 3L17 15z" +}), 'OneKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKTwoTone.js b/packages/material-ui-icons/lib/esm/OneKTwoTone.js new file mode 100644 index 00000000000000..baf029742b3d88 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm7-10h1.5v2.25L15.25 9H17l-2.25 3L17 15h-1.75l-1.75-2.25V15H12V9zM7 9h3v6H8.5v-4.5H7V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 15H10V9H7v1.5h1.5zm5-2.25L15.25 15H17l-2.25-3L17 9h-1.75l-1.75 2.25V9H12v6h1.5z" +}, "2")], 'OneKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKk.js b/packages/material-ui-icons/lib/esm/OneKk.js new file mode 100644 index 00000000000000..5a0000a60dda18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKk.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10.5h1.5v3H10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 15H6v-4.5H4.5V9h3v6zm5.5-1c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm6.5 1h-1.75L16 12.75V15h-1.5V9H16v2.25L17.75 9h1.75l-2.25 3 2.25 3z" +}), 'OneKk'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKkOutlined.js b/packages/material-ui-icons/lib/esm/OneKkOutlined.js new file mode 100644 index 00000000000000..832bdcfa9d7731 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKkOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6v10H5v-8.5h1V15h1.5V9H5V5h14v4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.5 11.25V9H14v6h1.5v-2.25L17.25 15H19l-2.25-3L19 9h-1.75zM9.5 15H12c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H9.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h1.5v3H10v-3z" +}, "1")], 'OneKkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKkRounded.js b/packages/material-ui-icons/lib/esm/OneKkRounded.js new file mode 100644 index 00000000000000..2c558d90a6adda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10.5h1.5v3H10v-3zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.75 15c-.41 0-.75-.34-.75-.75V10.5h-.75c-.41 0-.75-.34-.75-.75S4.84 9 5.25 9H6.5c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zM13 14c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L16.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'OneKkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKkSharp.js b/packages/material-ui-icons/lib/esm/OneKkSharp.js new file mode 100644 index 00000000000000..37ab8432295bd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10.5h1.5v3H10v-3zM21 3H3v18h18V3zM7.5 15H6v-4.5H4.5V9h3v6zM13 9v6H8.5V9H13zm6 6h-1.75l-1.75-2.25V15H14V9h1.5v2.25L17.25 9H19l-2.25 3L19 15z" +}), 'OneKkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OneKkTwoTone.js b/packages/material-ui-icons/lib/esm/OneKkTwoTone.js new file mode 100644 index 00000000000000..9a0263f0a0c85f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OneKkTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 10.5h1.5v3H10zm9 4.5V9l-2.25 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 9h2.5v6H6v-4.5H5V19h14v-4h-1.75l-1.75-2.25V15H14V9h1.5v2.25L17.25 9H19V5H5v4zm3.5 1c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6v10H5v-8.5h1V15h1.5V9H5V5h14v4z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M15.5 11.25V9H14v6h1.5v-2.25L17.25 15H19l-2.25-3L19 9h-1.75zM9.5 15H12c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H9.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h1.5v3H10v-3z" +}, "3")], 'OneKkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OnlinePrediction.js b/packages/material-ui-icons/lib/esm/OnlinePrediction.js new file mode 100644 index 00000000000000..1e460f347ef09f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OnlinePrediction.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" +}), 'OnlinePrediction'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OnlinePredictionOutlined.js b/packages/material-ui-icons/lib/esm/OnlinePredictionOutlined.js new file mode 100644 index 00000000000000..e13e6715783208 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OnlinePredictionOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" +}), 'OnlinePredictionOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OnlinePredictionRounded.js b/packages/material-ui-icons/lib/esm/OnlinePredictionRounded.js new file mode 100644 index 00000000000000..19a624f8be08ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OnlinePredictionRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2v.5c0 .55.45 1 1 1s1-.45 1-1v-.5zm9-5.5c0-2.46-.89-4.71-2.36-6.45-.29-.34-.8-.38-1.12-.06-.27.27-.3.71-.06 1C19.73 7.97 20.5 9.9 20.5 12c0 2.1-.77 4.03-2.04 5.52-.25.29-.21.73.06 1 .32.32.83.28 1.12-.06 1.47-1.75 2.36-4 2.36-6.46zM3.5 12c0-2.1.77-4.03 2.04-5.52.25-.29.21-.73-.06-1-.31-.31-.83-.28-1.12.06C2.89 7.29 2 9.54 2 12s.89 4.71 2.36 6.46c.29.34.8.38 1.12.06.27-.27.3-.71.06-1C4.27 16.03 3.5 14.1 3.5 12zm14 0c0 1.28-.44 2.47-1.18 3.41-.23.29-.2.71.07.98.32.32.85.29 1.13-.07C18.44 15.13 19 13.63 19 12c0-1.63-.56-3.13-1.49-4.31-.28-.36-.81-.39-1.13-.07-.26.26-.3.68-.07.98.75.93 1.19 2.12 1.19 3.4zm-9.88 4.38c.26-.26.3-.68.07-.98-.75-.93-1.19-2.12-1.19-3.4 0-1.28.44-2.47 1.18-3.41.23-.29.2-.71-.07-.98-.31-.31-.84-.28-1.12.07C5.56 8.87 5 10.37 5 12c0 1.63.56 3.13 1.49 4.32.28.35.81.38 1.13.06z" +}), 'OnlinePredictionRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OnlinePredictionSharp.js b/packages/material-ui-icons/lib/esm/OnlinePredictionSharp.js new file mode 100644 index 00000000000000..94edb79e662d0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OnlinePredictionSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" +}), 'OnlinePredictionSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OnlinePredictionTwoTone.js b/packages/material-ui-icons/lib/esm/OnlinePredictionTwoTone.js new file mode 100644 index 00000000000000..04cfd1b811dcde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OnlinePredictionTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06C19.55 7.53 20.5 9.66 20.5 12s-.95 4.47-2.49 6.01l1.06 1.06C20.88 17.26 22 14.76 22 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93C3.12 6.74 2 9.24 2 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06C4.45 16.47 3.5 14.34 3.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06C18.22 15.68 19 13.93 19 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05C5.78 8.32 5 10.07 5 12c0 1.93.78 3.68 2.05 4.95z" +}), 'OnlinePredictionTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Opacity.js b/packages/material-ui-icons/lib/esm/Opacity.js new file mode 100644 index 00000000000000..e18fb5d2631370 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Opacity.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" +}), 'Opacity'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpacityOutlined.js b/packages/material-ui-icons/lib/esm/OpacityOutlined.js new file mode 100644 index 00000000000000..8ef7b5d96ab02a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpacityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" +}), 'OpacityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpacityRounded.js b/packages/material-ui-icons/lib/esm/OpacityRounded.js new file mode 100644 index 00000000000000..86969cd4655179 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpacityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.65 7.56 12.7 2.69c-.39-.38-1.01-.38-1.4 0L6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57zm-9.9 1.43L12 4.81l4.25 4.18c.88.87 2.04 2.59 1.67 5.01H6.07c-.37-2.42.8-4.15 1.68-5.01z" +}), 'OpacityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpacitySharp.js b/packages/material-ui-icons/lib/esm/OpacitySharp.js new file mode 100644 index 00000000000000..7b599dd0679412 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpacitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" +}), 'OpacitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpacityTwoTone.js b/packages/material-ui-icons/lib/esm/OpacityTwoTone.js new file mode 100644 index 00000000000000..b118c5f67b1a16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpacityTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.24 9.65 12 5.27 7.76 9.6C6.62 10.73 6.01 12 6 14h12c-.01-2-.62-3.23-1.76-4.35z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.66 8 12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" +}, "1")], 'OpacityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInBrowser.js b/packages/material-ui-icons/lib/esm/OpenInBrowser.js new file mode 100644 index 00000000000000..3ae736bcdf9521 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInBrowser.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6-4 4h3v6h2v-6h3l-4-4z" +}), 'OpenInBrowser'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInBrowserOutlined.js b/packages/material-ui-icons/lib/esm/OpenInBrowserOutlined.js new file mode 100644 index 00000000000000..bfedd6ebf29162 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInBrowserOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6-4 4h3v6h2v-6h3l-4-4z" +}), 'OpenInBrowserOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInBrowserRounded.js b/packages/material-ui-icons/lib/esm/OpenInBrowserRounded.js new file mode 100644 index 00000000000000..30069e73cc7d1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInBrowserRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H5V8h14v10h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7.35 6.35-2.79 2.79c-.32.32-.1.86.35.86H11v5c0 .55.45 1 1 1s1-.45 1-1v-5h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z" +}), 'OpenInBrowserRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInBrowserSharp.js b/packages/material-ui-icons/lib/esm/OpenInBrowserSharp.js new file mode 100644 index 00000000000000..43f82a34a716c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInBrowserSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 4v16h6v-2H5V8h14v10h-4v2h6V4H3zm9 6-4 4h3v6h2v-6h3l-4-4z" +}), 'OpenInBrowserSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInBrowserTwoTone.js b/packages/material-ui-icons/lib/esm/OpenInBrowserTwoTone.js new file mode 100644 index 00000000000000..876a3d5ef39de3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInBrowserTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6-4 4h3v6h2v-6h3l-4-4z" +}), 'OpenInBrowserTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInFull.js b/packages/material-ui-icons/lib/esm/OpenInFull.js new file mode 100644 index 00000000000000..2e99761da55f9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInFull.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" +}), 'OpenInFull'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInFullOutlined.js b/packages/material-ui-icons/lib/esm/OpenInFullOutlined.js new file mode 100644 index 00000000000000..6162cb7be55b08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInFullOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" +}), 'OpenInFullOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInFullRounded.js b/packages/material-ui-icons/lib/esm/OpenInFullRounded.js new file mode 100644 index 00000000000000..9108654f793451 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInFullRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8.59V4c0-.55-.45-1-1-1h-4.59c-.89 0-1.34 1.08-.71 1.71l1.59 1.59-10 10-1.59-1.59c-.62-.63-1.7-.19-1.7.7V20c0 .55.45 1 1 1h4.59c.89 0 1.34-1.08.71-1.71L7.71 17.7l10-10 1.59 1.59c.62.63 1.7.19 1.7-.7z" +}), 'OpenInFullRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInFullSharp.js b/packages/material-ui-icons/lib/esm/OpenInFullSharp.js new file mode 100644 index 00000000000000..8f4f13535fec45 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInFullSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" +}), 'OpenInFullSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInFullTwoTone.js b/packages/material-ui-icons/lib/esm/OpenInFullTwoTone.js new file mode 100644 index 00000000000000..a8603af4b7f31e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInFullTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" +}), 'OpenInFullTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNew.js b/packages/material-ui-icons/lib/esm/OpenInNew.js new file mode 100644 index 00000000000000..2ad445de8b6c60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNew.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'OpenInNew'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewOff.js b/packages/material-ui-icons/lib/esm/OpenInNewOff.js new file mode 100644 index 00000000000000..7425deb3a889bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H5c-1.11 0-2-.9-2-2V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" +}), 'OpenInNewOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewOffOutlined.js b/packages/material-ui-icons/lib/esm/OpenInNewOffOutlined.js new file mode 100644 index 00000000000000..5535c953c18216 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H5c-1.11 0-2-.9-2-2V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" +}), 'OpenInNewOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewOffRounded.js b/packages/material-ui-icons/lib/esm/OpenInNewOffRounded.js new file mode 100644 index 00000000000000..00b399b1933afc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.79 5.8-1.94-1.94c-.31-.32-.09-.86.36-.86h5.29c.28 0 .5.22.5.5v5.29c0 .45-.54.67-.85.35L18.21 7.2l-4.09 4.09-1.41-1.41 4.08-4.08zM19 13v3.17l2 2V13c0-.55-.45-1-1-1s-1 .45-1 1zm.07 8.9-.9-.9H5c-1.11 0-2-.9-2-2V5.83l-.9-.9a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0zm-2.9-2.9-4.88-4.88-.88.88c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41l.88-.88L5 7.83V19h11.17zM7.83 5H11c.55 0 1-.45 1-1s-.45-1-1-1H5.83l2 2z" +}), 'OpenInNewOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewOffSharp.js b/packages/material-ui-icons/lib/esm/OpenInNewOffSharp.js new file mode 100644 index 00000000000000..59373296be1791 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" +}), 'OpenInNewOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewOffTwoTone.js b/packages/material-ui-icons/lib/esm/OpenInNewOffTwoTone.js new file mode 100644 index 00000000000000..8e753dcacec5b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.79 5.8 14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H5c-1.11 0-2-.9-2-2V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" +}), 'OpenInNewOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewOutlined.js b/packages/material-ui-icons/lib/esm/OpenInNewOutlined.js new file mode 100644 index 00000000000000..5b5934a966493f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'OpenInNewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewRounded.js b/packages/material-ui-icons/lib/esm/OpenInNewRounded.js new file mode 100644 index 00000000000000..ba6bc06eb5c5a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1h-5c-.55 0-1 .45-1 1z" +}), 'OpenInNewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewSharp.js b/packages/material-ui-icons/lib/esm/OpenInNewSharp.js new file mode 100644 index 00000000000000..515f4d0b72417b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'OpenInNewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenInNewTwoTone.js b/packages/material-ui-icons/lib/esm/OpenInNewTwoTone.js new file mode 100644 index 00000000000000..1a9488258dd6e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenInNewTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" +}), 'OpenInNewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenWith.js b/packages/material-ui-icons/lib/esm/OpenWith.js new file mode 100644 index 00000000000000..88ec901e7c4146 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenWith.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" +}), 'OpenWith'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenWithOutlined.js b/packages/material-ui-icons/lib/esm/OpenWithOutlined.js new file mode 100644 index 00000000000000..124773091c8a6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenWithOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" +}), 'OpenWithOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenWithRounded.js b/packages/material-ui-icons/lib/esm/OpenWithRounded.js new file mode 100644 index 00000000000000..8ae080501685c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenWithRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.5 9h3c.28 0 .5-.22.5-.5V6h1.79c.45 0 .67-.54.35-.85l-3.79-3.79c-.2-.2-.51-.2-.71 0L7.85 5.15c-.31.31-.09.85.36.85H10v2.5c0 .28.22.5.5.5zm-2 1H6V8.21c0-.45-.54-.67-.85-.35l-3.79 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.31.31.85.09.85-.36V14h2.5c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm14.15 1.65-3.79-3.79c-.32-.32-.86-.1-.86.35V10h-2.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5H18v1.79c0 .45.54.67.85.35l3.79-3.79c.2-.19.2-.51.01-.7zM13.5 15h-3c-.28 0-.5.22-.5.5V18H8.21c-.45 0-.67.54-.35.85l3.79 3.79c.2.2.51.2.71 0l3.79-3.79c.31-.31.09-.85-.35-.85H14v-2.5c0-.28-.22-.5-.5-.5z" +}), 'OpenWithRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenWithSharp.js b/packages/material-ui-icons/lib/esm/OpenWithSharp.js new file mode 100644 index 00000000000000..b455ab67a4ad10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenWithSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" +}), 'OpenWithSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OpenWithTwoTone.js b/packages/material-ui-icons/lib/esm/OpenWithTwoTone.js new file mode 100644 index 00000000000000..fef8c42e41b650 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OpenWithTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" +}), 'OpenWithTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OtherHouses.js b/packages/material-ui-icons/lib/esm/OtherHouses.js new file mode 100644 index 00000000000000..fbe1d04be5c777 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OtherHouses.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'OtherHouses'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OtherHousesOutlined.js b/packages/material-ui-icons/lib/esm/OtherHousesOutlined.js new file mode 100644 index 00000000000000..4b7775ada819ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OtherHousesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16H6v-8.9l6-4.58 6 4.58V19zm-9-5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm3-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm3 1c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" +}), 'OtherHousesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OtherHousesRounded.js b/packages/material-ui-icons/lib/esm/OtherHousesRounded.js new file mode 100644 index 00000000000000..34d6bd8696cad0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OtherHousesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.61 12.19c.34.44.96.52 1.4.19l.99-.76V20c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-8.38l.99.76c.44.34 1.07.25 1.4-.19.34-.44.25-1.07-.19-1.4l-9.6-7.33c-.36-.27-.86-.27-1.21 0l-9.6 7.33c-.43.34-.52.97-.18 1.4zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'OtherHousesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OtherHousesSharp.js b/packages/material-ui-icons/lib/esm/OtherHousesSharp.js new file mode 100644 index 00000000000000..4630800d9de389 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OtherHousesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'OtherHousesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OtherHousesTwoTone.js b/packages/material-ui-icons/lib/esm/OtherHousesTwoTone.js new file mode 100644 index 00000000000000..48679acb6da58c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OtherHousesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5.52 6 10.1V19h12v-8.9l-6-4.58zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3 1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm6 16H6v-8.9l6-4.58 6 4.58V19zm-9-5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm3-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm3 1c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" +}, "1")], 'OtherHousesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Outbound.js b/packages/material-ui-icons/lib/esm/Outbound.js new file mode 100644 index 00000000000000..b332f95c014a25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Outbound.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" +}), 'Outbound'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboundOutlined.js b/packages/material-ui-icons/lib/esm/OutboundOutlined.js new file mode 100644 index 00000000000000..4e01a95b5d6d2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboundOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" +}), 'OutboundOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboundRounded.js b/packages/material-ui-icons/lib/esm/OutboundRounded.js new file mode 100644 index 00000000000000..2122d5d6007bf7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboundRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54-4.25 4.25c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41l4.25-4.25-1.27-1.27c-.32-.32-.09-.86.35-.86h3.94c.28 0 .5.22.5.5v3.94c0 .45-.54.67-.85.35l-1.26-1.25z" +}), 'OutboundRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboundSharp.js b/packages/material-ui-icons/lib/esm/OutboundSharp.js new file mode 100644 index 00000000000000..9a78e54d82f965 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboundSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" +}), 'OutboundSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboundTwoTone.js b/packages/material-ui-icons/lib/esm/OutboundTwoTone.js new file mode 100644 index 00000000000000..09e43feb4e7cac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboundTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1.88 7.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" +}, "1")], 'OutboundTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Outbox.js b/packages/material-ui-icons/lib/esm/Outbox.js new file mode 100644 index 00000000000000..15805b443e5e58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Outbox.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zM8 11h2v3h4v-3h2l-4-4-4 4z" +}), 'Outbox'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboxOutlined.js b/packages/material-ui-icons/lib/esm/OutboxOutlined.js new file mode 100644 index 00000000000000..931c7b3d675f74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboxOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 9.83V14h2V9.83l1.59 1.58L16 10l-4-4-4 4 1.41 1.41z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H19v3zm0-5h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z" +}, "1")], 'OutboxOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboxRounded.js b/packages/material-ui-icons/lib/esm/OutboxRounded.js new file mode 100644 index 00000000000000..5db5850d7bceb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboxRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.21 11H11v2c0 .55.45 1 1 1s1-.45 1-1v-2h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 11h-3.02c-.63 0-1.22.3-1.6.8-.54.73-1.4 1.2-2.38 1.2s-1.84-.47-2.38-1.2c-.38-.5-.97-.8-1.6-.8H5V5h14v9z" +}, "1")], 'OutboxRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboxSharp.js b/packages/material-ui-icons/lib/esm/OutboxSharp.js new file mode 100644 index 00000000000000..ba3ee783dbbf81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboxSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 14h2v-3h3l-4-4-4 4h3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm16 11h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z" +}, "1")], 'OutboxSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutboxTwoTone.js b/packages/material-ui-icons/lib/esm/OutboxTwoTone.js new file mode 100644 index 00000000000000..ba47a01a24e5f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutboxTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 18c-1.63 0-3.06-.79-3.98-2H5v3h14v-3h-3.02c-.92 1.21-2.35 2-3.98 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 14h2v-3h3l-4-4-4 4h3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H19v3zm0-5h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z" +}, "2")], 'OutboxTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutdoorGrill.js b/packages/material-ui-icons/lib/esm/OutdoorGrill.js new file mode 100644 index 00000000000000..ce0125d49b90da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutdoorGrill.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34C14.6 21.16 15.7 22 17 22zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" +}), 'OutdoorGrill'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutdoorGrillOutlined.js b/packages/material-ui-icons/lib/esm/OutdoorGrillOutlined.js new file mode 100644 index 00000000000000..2dc66620423116 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutdoorGrillOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34C14.6 21.16 15.7 22 17 22zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-9.58-8h9.16c-.77 1.76-2.54 3-4.58 3s-3.81-1.24-4.58-3zm1.99-3h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" +}), 'OutdoorGrillOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutdoorGrillRounded.js b/packages/material-ui-icons/lib/esm/OutdoorGrillRounded.js new file mode 100644 index 00000000000000..e9c8a7fecccaaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutdoorGrillRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93c2.1-.95 3.64-2.9 4.02-5.24.1-.59-.39-1.13-.99-1.13H6.08c-.6 0-1.09.54-.99 1.14.38 2.34 1.93 4.29 4.02 5.24l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34c.43 1.16 1.53 2 2.83 2zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.5 6.47c-.02.28.18.53.46.53H10c.24 0 .44-.18.46-.42.1-.87.04-1.39-.94-2.54-.36-.43-.6-.69-.53-1.55.03-.26-.19-.49-.46-.49h-.05c-.24 0-.45.19-.47.43-.08.93.2 1.74.95 2.53.19.21.64.56.54 1.51zm2.49 0c-.03.28.18.53.46.53h.03c.24 0 .44-.18.46-.42.1-.87.04-1.39-.94-2.54-.36-.43-.61-.69-.53-1.55.03-.26-.19-.49-.46-.49h-.05c-.24 0-.45.19-.47.43-.08.93.2 1.74.95 2.53.19.21.64.56.55 1.51zm2.51 0c-.02.28.18.53.46.53H15c.24 0 .44-.18.46-.42.1-.87.04-1.39-.94-2.54-.36-.43-.61-.69-.53-1.55.03-.26-.19-.49-.46-.49h-.05c-.24 0-.45.19-.47.43-.08.93.2 1.74.95 2.53.19.21.64.56.54 1.51z" +}), 'OutdoorGrillRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutdoorGrillSharp.js b/packages/material-ui-icons/lib/esm/OutdoorGrillSharp.js new file mode 100644 index 00000000000000..226b86a9b9b9f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutdoorGrillSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06.29 0 .58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-4.5 6.92 1.68 1.09L7.84 20h6.34c.42 1.16 1.52 2 2.82 2zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" +}), 'OutdoorGrillSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutdoorGrillTwoTone.js b/packages/material-ui-icons/lib/esm/OutdoorGrillTwoTone.js new file mode 100644 index 00000000000000..9b62b0b4696609 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutdoorGrillTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.58 10H7.42c.77 1.76 2.54 3 4.58 3s3.81-1.24 4.58-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06c.29.04.58.06.87.06s.58-.02.87-.06l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93C17.31 13.27 19 10.84 19 8H5c0 2.84 1.69 5.27 4.12 6.37l-3.95 6.08c-.3.46-.17 1.08.29 1.38.46.3 1.08.17 1.38-.29l1-1.55h6.34C14.6 21.16 15.7 22 17 22zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-9.58-8h9.16c-.77 1.76-2.54 3-4.58 3s-3.81-1.24-4.58-3z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "19", + r: "1", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" +}, "3")], 'OutdoorGrillTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Outlet.js b/packages/material-ui-icons/lib/esm/Outlet.js new file mode 100644 index 00000000000000..efcb76313812f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Outlet.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9 12c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm5 6h-4v-2c0-1.1.9-2 2-2s2 .9 2 2v2zm2-7c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3z" +}), 'Outlet'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutletOutlined.js b/packages/material-ui-icons/lib/esm/OutletOutlined.js new file mode 100644 index 00000000000000..101e459ff6b3e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutletOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 9V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm6 0V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm-2 5c0-1.1-.9-2-2-2s-2 .9-2 2v2h4v-2z" +}), 'OutletOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutletRounded.js b/packages/material-ui-icons/lib/esm/OutletRounded.js new file mode 100644 index 00000000000000..a790522c693d94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutletRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9 12c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 6h-2c-.55 0-1-.45-1-1v-.89c0-1 .68-1.92 1.66-2.08 1.26-.21 2.34.76 2.34 1.97v1c0 .55-.45 1-1 1zm3-7c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3z" +}), 'OutletRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutletSharp.js b/packages/material-ui-icons/lib/esm/OutletSharp.js new file mode 100644 index 00000000000000..bb18523b80cb73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutletSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 12V7h2v5H8zm6 6h-4v-1.89c0-1 .68-1.92 1.66-2.08 1.26-.21 2.34.76 2.34 1.97v2zm2-6h-2V7h2v5z" +}), 'OutletSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutletTwoTone.js b/packages/material-ui-icons/lib/esm/OutletTwoTone.js new file mode 100644 index 00000000000000..4d04ead7009baf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutletTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m-2 7V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm6 0V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm-2 5c0-1.1-.9-2-2-2s-2 .9-2 2v2h4v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 9V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm6 0V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1zm-2 5c0-1.1-.9-2-2-2s-2 .9-2 2v2h4v-2z" +}, "1")], 'OutletTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutlinedFlag.js b/packages/material-ui-icons/lib/esm/OutlinedFlag.js new file mode 100644 index 00000000000000..ffbddab4a0a4ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutlinedFlag.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" +}), 'OutlinedFlag'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutlinedFlagOutlined.js b/packages/material-ui-icons/lib/esm/OutlinedFlagOutlined.js new file mode 100644 index 00000000000000..7c150a4b22e3aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutlinedFlagOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" +}), 'OutlinedFlagOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutlinedFlagRounded.js b/packages/material-ui-icons/lib/esm/OutlinedFlagRounded.js new file mode 100644 index 00000000000000..7b6cdb02cdc6db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutlinedFlagRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-.72-1.45c-.17-.34-.52-.55-.9-.55H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5l.72 1.45c.17.34.52.55.89.55H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-5zm4 8h-4l-1-2H7V6h5l1 2h5v6z" +}), 'OutlinedFlagRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutlinedFlagSharp.js b/packages/material-ui-icons/lib/esm/OutlinedFlagSharp.js new file mode 100644 index 00000000000000..c4f60fde51f1fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutlinedFlagSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" +}), 'OutlinedFlagSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/OutlinedFlagTwoTone.js b/packages/material-ui-icons/lib/esm/OutlinedFlagTwoTone.js new file mode 100644 index 00000000000000..f499d2d8d0ff06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/OutlinedFlagTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" +}), 'OutlinedFlagTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Padding.js b/packages/material-ui-icons/lib/esm/Padding.js new file mode 100644 index 00000000000000..8014a1beee7187 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Padding.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2z" +}), 'Padding'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaddingOutlined.js b/packages/material-ui-icons/lib/esm/PaddingOutlined.js new file mode 100644 index 00000000000000..e2e8d310ef43cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaddingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14zM11 7h2v2h-2V7zM7 7h2v2H7V7zm8 0h2v2h-2V7z" +}), 'PaddingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaddingRounded.js b/packages/material-ui-icons/lib/esm/PaddingRounded.js new file mode 100644 index 00000000000000..7438171be1afde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaddingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm6 3c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}), 'PaddingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaddingSharp.js b/packages/material-ui-icons/lib/esm/PaddingSharp.js new file mode 100644 index 00000000000000..a4512e471faa9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaddingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm6 6H7V7h2v2zm4 0h-2V7h2v2zm4 0h-2V7h2v2z" +}), 'PaddingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaddingTwoTone.js b/packages/material-ui-icons/lib/esm/PaddingTwoTone.js new file mode 100644 index 00000000000000..14d1982ba1ce50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaddingTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zM15 7h2v2h-2V7zm-4 0h2v2h-2V7zM7 7h2v2H7V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 7h2v2h-2zM7 7h2v2H7zm4 0h2v2h-2z" +}, "2")], 'PaddingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pages.js b/packages/material-ui-icons/lib/esm/Pages.js new file mode 100644 index 00000000000000..296d95ce4507a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pages.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v6h5L7 7l4 1V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-4 1 1-4zm9 4-4-1v5h6c1.1 0 2-.9 2-2v-6h-5l1 4zm2-14h-6v5l4-1-1 4h5V5c0-1.1-.9-2-2-2z" +}), 'Pages'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PagesOutlined.js b/packages/material-ui-icons/lib/esm/PagesOutlined.js new file mode 100644 index 00000000000000..1e4461edc84745 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PagesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 2h6v6h-3l1-4-4 1V5zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm8 0h-6v-3l4 1-1-4h3v6zm-4.37-4.37L12 13.72l-2.63.91.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63z" +}), 'PagesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PagesRounded.js b/packages/material-ui-icons/lib/esm/PagesRounded.js new file mode 100644 index 00000000000000..c793a2acd58301 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PagesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v6h5l-.6-2.38c-.18-.74.48-1.4 1.22-1.22L11 8V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-2.38.6c-.73.18-1.4-.48-1.21-1.21L8 13zm7.38 3.6L13 16v5h6c1.1 0 2-.9 2-2v-6h-5l.6 2.38c.18.74-.48 1.4-1.22 1.22zM19 3h-6v5l2.38-.6c.73-.18 1.4.48 1.21 1.21L16 11h5V5c0-1.1-.9-2-2-2z" +}), 'PagesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PagesSharp.js b/packages/material-ui-icons/lib/esm/PagesSharp.js new file mode 100644 index 00000000000000..8ab940bc66a305 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PagesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v8h5L7 7l4 1V3H3zm5 10H3v8h8v-5l-4 1 1-4zm9 4-4-1v5h8v-8h-5l1 4zm4-14h-8v5l4-1-1 4h5V3z" +}), 'PagesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PagesTwoTone.js b/packages/material-ui-icons/lib/esm/PagesTwoTone.js new file mode 100644 index 00000000000000..c00ee7eb14b401 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PagesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m7 7 4 1V5H5v6h3zm1 6H5v6h6v-3l-4 1zm9 4-4-1v3h6v-6h-3zm-4-9 4-1-1 4h3V5h-6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm-1.63-4.37.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63-2.63-.91-2.63.91zM19 19h-6v-3l4 1-1-4h3v6zm0-8h-3l1-4-4 1V5h6v6z" +}, "1")], 'PagesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pageview.js b/packages/material-ui-icons/lib/esm/Pageview.js new file mode 100644 index 00000000000000..c8a502c1143b82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pageview.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.21 14.21-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z" +}), 'Pageview'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PageviewOutlined.js b/packages/material-ui-icons/lib/esm/PageviewOutlined.js new file mode 100644 index 00000000000000..0a43b581cceca5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PageviewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}), 'PageviewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PageviewRounded.js b/packages/material-ui-icons/lib/esm/PageviewRounded.js new file mode 100644 index 00000000000000..9798f27f50e7b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PageviewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.92 13.5-2.2-2.2c-.9.58-2.03.84-3.22.62-1.88-.35-3.38-1.93-3.62-3.83-.38-3.01 2.18-5.52 5.21-5.04 1.88.3 3.39 1.84 3.7 3.71.19 1.16-.08 2.23-.64 3.12l2.2 2.19c.39.39.39 1.03 0 1.42-.4.4-1.04.4-1.43.01z" +}), 'PageviewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PageviewSharp.js b/packages/material-ui-icons/lib/esm/PageviewSharp.js new file mode 100644 index 00000000000000..844a8838930bed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PageviewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM22 4H2v16h20V4zm-5.21 14.21-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z" +}), 'PageviewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PageviewTwoTone.js b/packages/material-ui-icons/lib/esm/PageviewTwoTone.js new file mode 100644 index 00000000000000..e9514be89eff82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PageviewTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zm7.5-11c2.49 0 4.5 2.01 4.5 4.5 0 .88-.26 1.69-.7 2.39l2.44 2.43-1.42 1.42-2.44-2.44c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "1")], 'PageviewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Paid.js b/packages/material-ui-icons/lib/esm/Paid.js new file mode 100644 index 00000000000000..fba0a9665c0abc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Paid.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z" +}), 'Paid'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaidOutlined.js b/packages/material-ui-icons/lib/esm/PaidOutlined.js new file mode 100644 index 00000000000000..95afc5021faebf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaidOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.89-8.9c-1.78-.59-2.64-.96-2.64-1.9 0-1.02 1.11-1.39 1.81-1.39 1.31 0 1.79.99 1.9 1.34l1.58-.67c-.15-.44-.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6.56-2.62 2.85-2.62 2.96 0 2.27 2.25 2.91 3.35 3.31 1.58.56 2.28 1.07 2.28 2.03 0 1.13-1.05 1.61-1.98 1.61-1.82 0-2.34-1.87-2.4-2.09l-1.66.67c.63 2.19 2.28 2.78 3.02 2.96V19h1.75v-1.24c.52-.09 3.02-.59 3.02-3.22.01-1.39-.6-2.61-3-3.44z" +}), 'PaidOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaidRounded.js b/packages/material-ui-icons/lib/esm/PaidRounded.js new file mode 100644 index 00000000000000..6ce41a548117a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaidRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76v.36c0 .48-.39.88-.88.88-.48 0-.88-.39-.88-.88v-.42c-.63-.15-1.93-.61-2.69-2.1-.23-.44-.01-.99.45-1.18l.07-.03c.41-.17.87 0 1.08.39.32.61.95 1.37 2.12 1.37.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96v-.36c0-.49.4-.88.88-.88s.88.39.88.88v.37c1.07.19 1.75.76 2.16 1.3.34.44.16 1.08-.36 1.3-.36.15-.78.03-1.02-.28-.28-.38-.78-.77-1.6-.77-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z" +}), 'PaidRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaidSharp.js b/packages/material-ui-icons/lib/esm/PaidSharp.js new file mode 100644 index 00000000000000..ec8e2748a9fb05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaidSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z" +}), 'PaidSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaidTwoTone.js b/packages/material-ui-icons/lib/esm/PaidTwoTone.js new file mode 100644 index 00000000000000..9b5481c31418c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaidTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm.88 13.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.89 11.1c-1.78-.59-2.64-.96-2.64-1.9 0-1.02 1.11-1.39 1.81-1.39 1.31 0 1.79.99 1.9 1.34l1.58-.67c-.15-.44-.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6.56-2.62 2.85-2.62 2.96 0 2.27 2.25 2.91 3.35 3.31 1.58.56 2.28 1.07 2.28 2.03 0 1.13-1.05 1.61-1.98 1.61-1.82 0-2.34-1.87-2.4-2.09l-1.66.67c.63 2.19 2.28 2.78 3.02 2.96V19h1.75v-1.24c.52-.09 3.02-.59 3.02-3.22.01-1.39-.6-2.61-3-3.44z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "2")], 'PaidTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Palette.js b/packages/material-ui-icons/lib/esm/Palette.js new file mode 100644 index 00000000000000..405dad025dccf5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Palette.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.2-.64-1.67-.08-.1-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z" +}), 'Palette'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaletteOutlined.js b/packages/material-ui-icons/lib/esm/PaletteOutlined.js new file mode 100644 index 00000000000000..883d0d5603064b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaletteOutlined.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "11.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "7.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "7.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "11.5", + r: "1.5" +}, "4")], 'PaletteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaletteRounded.js b/packages/material-ui-icons/lib/esm/PaletteRounded.js new file mode 100644 index 00000000000000..fe057f9117623c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaletteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.2-.64-1.67-.08-.1-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z" +}), 'PaletteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaletteSharp.js b/packages/material-ui-icons/lib/esm/PaletteSharp.js new file mode 100644 index 00000000000000..4e978b36ce43fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaletteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.2-.64-1.67-.08-.1-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z" +}), 'PaletteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaletteTwoTone.js b/packages/material-ui-icons/lib/esm/PaletteTwoTone.js new file mode 100644 index 00000000000000..353c88cf957f19 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaletteTwoTone.js @@ -0,0 +1,24 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "11.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "7.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "7.5", + r: "1.5" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "11.5", + r: "1.5" +}, "5")], 'PaletteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanTool.js b/packages/material-ui-icons/lib/esm/PanTool.js new file mode 100644 index 00000000000000..8862a35492fe31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanTool.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 5.5V20c0 2.2-1.8 4-4 4h-7.3c-1.08 0-2.1-.43-2.85-1.19L1 14.83s1.26-1.23 1.3-1.25c.22-.19.49-.29.79-.29.22 0 .42.06.6.16.04.01 4.31 2.46 4.31 2.46V4c0-.83.67-1.5 1.5-1.5S11 3.17 11 4v7h1V1.5c0-.83.67-1.5 1.5-1.5S15 .67 15 1.5V11h1V2.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V11h1V5.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5z" +}), 'PanTool'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanToolOutlined.js b/packages/material-ui-icons/lib/esm/PanToolOutlined.js new file mode 100644 index 00000000000000..b8160b812737de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanToolOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 24h-6.55c-1.08 0-2.14-.45-2.89-1.23l-7.3-7.61 2.07-1.83c.62-.55 1.53-.66 2.26-.27L8 14.34V4.79c0-1.38 1.12-2.5 2.5-2.5.17 0 .34.02.51.05.09-1.3 1.17-2.33 2.49-2.33.86 0 1.61.43 2.06 1.09.29-.12.61-.18.94-.18 1.38 0 2.5 1.12 2.5 2.5v.28c.16-.03.33-.05.5-.05 1.38 0 2.5 1.12 2.5 2.5V20c0 2.21-1.79 4-4 4zM4.14 15.28l5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45z" +}), 'PanToolOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanToolRounded.js b/packages/material-ui-icons/lib/esm/PanToolRounded.js new file mode 100644 index 00000000000000..ed980f7355e22a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanToolRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.5 4c-.83 0-1.5.67-1.5 1.5v5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-8c0-.83-.67-1.5-1.5-1.5S16 1.67 16 2.5v8c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-9c0-.83-.67-1.5-1.5-1.5S12 .67 12 1.5v8.99c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.5c0-.83-.67-1.5-1.5-1.5S8 3.67 8 4.5v11.41l-4.12-2.35c-.58-.33-1.3-.24-1.78.22-.6.58-.62 1.54-.03 2.13l6.78 6.89c.75.77 1.77 1.2 2.85 1.2H19c2.21 0 4-1.79 4-4V5.5c0-.83-.67-1.5-1.5-1.5z" +}), 'PanToolRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanToolSharp.js b/packages/material-ui-icons/lib/esm/PanToolSharp.js new file mode 100644 index 00000000000000..579b401282fbb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanToolSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 4v20H10.02L1 14.83 2.9 13 8 15.91V3h3v8h1V0h3v11h1V1h3v10h1V4h3z" +}), 'PanToolSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanToolTwoTone.js b/packages/material-ui-icons/lib/esm/PanToolTwoTone.js new file mode 100644 index 00000000000000..47471c7487d5b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanToolTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.5 5.65c-.28 0-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45 5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 3.65c-.17 0-.34.02-.5.05v-.28c0-1.38-1.12-2.5-2.5-2.5-.33 0-.65.06-.94.18C15.11.44 14.35.01 13.5.01c-1.32 0-2.41 1.03-2.49 2.33-.16-.03-.33-.05-.51-.05-1.38 0-2.5 1.12-2.5 2.5v9.55l-2.41-1.28c-.73-.39-1.64-.28-2.26.27l-2.07 1.83 7.3 7.61c.75.78 1.8 1.23 2.89 1.23H18c2.21 0 4-1.79 4-4V6.15c0-1.38-1.12-2.5-2.5-2.5zM20 20c0 1.1-.9 2-2 2h-6.55c-.54 0-1.07-.22-1.44-.62l-5.86-6.11.51-.45L10 17.66V4.79c0-.28.22-.5.5-.5s.5.23.5.5V12h2V2.51c0-.28.22-.5.5-.5s.5.22.5.5V12h2V3.42c0-.28.22-.5.5-.5s.5.22.5.5V12h2V6.15c0-.28.22-.5.5-.5s.5.22.5.5V20z" +}, "1")], 'PanToolTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Panorama.js b/packages/material-ui-icons/lib/esm/Panorama.js new file mode 100644 index 00000000000000..c5b949f981fc75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Panorama.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z" +}), 'Panorama'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaFishEye.js b/packages/material-ui-icons/lib/esm/PanoramaFishEye.js new file mode 100644 index 00000000000000..9acd504c3c3bfb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaFishEye.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PanoramaFishEye'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaFishEyeOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaFishEyeOutlined.js new file mode 100644 index 00000000000000..379f8beb4aa4b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaFishEyeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PanoramaFishEyeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaFishEyeRounded.js b/packages/material-ui-icons/lib/esm/PanoramaFishEyeRounded.js new file mode 100644 index 00000000000000..d29968205b7dae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaFishEyeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PanoramaFishEyeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaFishEyeSharp.js b/packages/material-ui-icons/lib/esm/PanoramaFishEyeSharp.js new file mode 100644 index 00000000000000..ab61d21d1b6cef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaFishEyeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PanoramaFishEyeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaFishEyeTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaFishEyeTwoTone.js new file mode 100644 index 00000000000000..005ca00abd24fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaFishEyeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'PanoramaFishEyeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontal.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontal.js new file mode 100644 index 00000000000000..ff921faeaeadd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontal.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7c-3.09 0-6.18-.55-9.12-1.64-.11-.04-.22-.06-.31-.06-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64 3.09 0 6.18.55 9.12 1.64.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" +}), 'PanoramaHorizontal'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalOutlined.js new file mode 100644 index 00000000000000..af6353b8525728 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" +}), 'PanoramaHorizontalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalRounded.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalRounded.js new file mode 100644 index 00000000000000..b83e6af0d6d3d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" +}), 'PanoramaHorizontalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelect.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelect.js new file mode 100644 index 00000000000000..193e8e64d5199c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z" +}), 'PanoramaHorizontalSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectOutlined.js new file mode 100644 index 00000000000000..e2418d5c1e26ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.17-1.31-.95-2.03.68-4.83 1.45-8.69 1.45z" +}), 'PanoramaHorizontalSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectRounded.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectRounded.js new file mode 100644 index 00000000000000..fd6e32b991e0b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.17-1.31-.95-2.03.68-4.83 1.45-8.69 1.45z" +}), 'PanoramaHorizontalSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectSharp.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectSharp.js new file mode 100644 index 00000000000000..4d8adb8387febc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9z" +}), 'PanoramaHorizontalSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectTwoTone.js new file mode 100644 index 00000000000000..527209e82c4f04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSelectTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6.38v11.25c2.01-.59 4.61-1.13 8-1.13 3.38 0 5.99.54 8 1.13V6.37c-2.01.59-4.62 1.13-8 1.13-2.68 0-5.42-.39-8-1.12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.01 4C20.45 4 17.4 5.5 12 5.5c-5.31 0-8.49-1.49-9.01-1.49-.53 0-.99.44-.99 1.01V19c0 .57.46 1 .99 1 .57 0 3.55-1.5 9.01-1.5 5.42 0 8.44 1.5 9.01 1.5.53 0 .99-.43.99-1V5c0-.57-.46-1-.99-1zM20 17.63c-2.01-.59-4.62-1.13-8-1.13-3.39 0-5.99.54-8 1.13V6.38c2.58.73 5.32 1.12 8 1.12 3.38 0 5.99-.54 8-1.13v11.26z" +}, "1")], 'PanoramaHorizontalSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalSharp.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSharp.js new file mode 100644 index 00000000000000..82945413b40338 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6.55c2.6.77 5.28 1.16 8 1.16 2.72 0 5.41-.39 8-1.16v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.41.39-8 1.16V6.55M2 3.77v16.47s.77-.26.88-.3C5.82 18.85 8.91 18.3 12 18.3c3.09 0 6.18.55 9.12 1.64.11.04.88.3.88.3V3.77s-.77.26-.88.3C18.18 5.15 15.09 5.71 12 5.71s-6.18-.56-9.12-1.64c-.11-.05-.88-.3-.88-.3z" +}), 'PanoramaHorizontalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaHorizontalTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaHorizontalTwoTone.js new file mode 100644 index 00000000000000..4584afd67922f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaHorizontalTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6.54v10.91c2.6-.77 5.28-1.16 8-1.16s5.4.39 8 1.16V6.54c-2.6.78-5.28 1.17-8 1.16-2.72 0-5.4-.39-8-1.16z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63zM20 17.45c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16v10.91z" +}, "1")], 'PanoramaHorizontalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaOutlined.js new file mode 100644 index 00000000000000..ae3b6840ba6c6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z" +}), 'PanoramaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphere.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphere.js new file mode 100644 index 00000000000000..34c271d7370309 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphere.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.4 11.32v2.93c-.1.05-2.17.85-3.33 1.17-.94.26-3.84.73-6.07.73-3.7 0-7-.7-9.16-1.8-.08-.04-.16-.06-.24-.1V9.76c6.02-2.84 12.6-2.92 18.8 0v1.56zm-9.39 8.88c-2.5 0-4.87-1.15-6.41-3.12 4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zm10.49 4.71c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83z" +}), 'PanoramaPhotosphere'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereOutlined.js new file mode 100644 index 00000000000000..c05d78c2aac366 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM21 9.91v4.19c-2.19 1.21-5.47 1.9-9 1.9-3.53 0-6.81-.7-9-1.91V9.91C5.2 8.69 8.47 8 12 8c3.53 0 6.81.7 9 1.91zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" +}), 'PanoramaPhotosphereOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereRounded.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereRounded.js new file mode 100644 index 00000000000000..8671058f2ae5c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" +}), 'PanoramaPhotosphereRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelect.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelect.js new file mode 100644 index 00000000000000..271a67705d5815 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.49 8.51c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zM5.6 17.08c4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13-2.5 0-4.87-1.15-6.41-3.12z" +}), 'PanoramaPhotosphereSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectOutlined.js new file mode 100644 index 00000000000000..b208788bd10651 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" +}), 'PanoramaPhotosphereSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectRounded.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectRounded.js new file mode 100644 index 00000000000000..ae6f20987bd1cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" +}), 'PanoramaPhotosphereSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectSharp.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectSharp.js new file mode 100644 index 00000000000000..44695ede66a50e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" +}), 'PanoramaPhotosphereSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectTwoTone.js new file mode 100644 index 00000000000000..1b7d993f679be2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" +}), 'PanoramaPhotosphereSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSharp.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSharp.js new file mode 100644 index 00000000000000..44f30515c7e8f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20z" +}), 'PanoramaPhotosphereSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaPhotosphereTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereTwoTone.js new file mode 100644 index 00000000000000..b082181a01e90c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaPhotosphereTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 9.91v4.18C5.19 15.3 8.47 16 12 16c3.53 0 6.81-.69 9-1.91V9.91C18.81 8.7 15.53 8 12 8c-3.53 0-6.8.69-9 1.91z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.95 8.15c-.29-.16-.61-.31-.93-.46C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.33.15-.64.3-.93.46C1.41 8.5 1 9.17 1 9.91v4.18c0 .74.41 1.41 1.05 1.77.29.16.61.31.93.46C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.33-.15.64-.3.93-.46.65-.36 1.06-1.03 1.06-1.77V9.91c0-.74-.41-1.41-1.05-1.76zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68C7.51 5.04 9.63 4 12 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68C16.49 18.96 14.37 20 12 20zm9-10.09v4.18C18.81 15.31 15.53 16 12 16c-3.53 0-6.81-.7-9-1.91V9.91C5.2 8.69 8.47 8 12 8c3.53 0 6.81.7 9 1.91z" +}, "1")], 'PanoramaPhotosphereTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaRounded.js b/packages/material-ui-icons/lib/esm/PanoramaRounded.js new file mode 100644 index 00000000000000..2d13f41c75fe21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.9 12.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 13c.19-.26.57-.27.78-.02z" +}), 'PanoramaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaSharp.js b/packages/material-ui-icons/lib/esm/PanoramaSharp.js new file mode 100644 index 00000000000000..ae95e4d7da5f8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 20V4H1v16h22zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z" +}), 'PanoramaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaTwoTone.js new file mode 100644 index 00000000000000..d1f8a8429762e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 18h18V6H3v12zm5.5-5.5 2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z" +}, "1")], 'PanoramaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVertical.js b/packages/material-ui-icons/lib/esm/PanoramaVertical.js new file mode 100644 index 00000000000000..927c3b7726a97a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVertical.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8H6.54z" +}), 'PanoramaVertical'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalOutlined.js new file mode 100644 index 00000000000000..07dd9adce15e9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z" +}), 'PanoramaVerticalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalRounded.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalRounded.js new file mode 100644 index 00000000000000..887f69c310913a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z" +}), 'PanoramaVerticalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalSelect.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelect.js new file mode 100644 index 00000000000000..8e2dc9fedb236b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.93 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.05-.11.07-.22.07-.31 0-.34-.24-.57-.64-.57H4.62c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.7 8.91 5.7 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57 0-.1-.02-.2-.07-.31z" +}), 'PanoramaVerticalSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectOutlined.js new file mode 100644 index 00000000000000..d1e376e7fd14f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 12c0-3.89.84-6.95 1.43-8.69.22-.64-.26-1.31-.95-1.31H5c-.68 0-1.16.66-.95 1.31C4.74 5.36 5.5 8.1 5.5 12c0 3.87-.76 6.66-1.45 8.69-.21.65.27 1.31.95 1.31h14c.68 0 1.17-.66.95-1.31-.68-2.03-1.45-4.83-1.45-8.69z" +}), 'PanoramaVerticalSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectRounded.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectRounded.js new file mode 100644 index 00000000000000..f0630234388377 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 12c0-3.89.84-6.95 1.43-8.69.22-.64-.26-1.31-.95-1.31H5c-.68 0-1.16.66-.95 1.31C4.74 5.36 5.5 8.1 5.5 12c0 3.87-.76 6.66-1.45 8.69-.21.65.27 1.31.95 1.31h14c.68 0 1.17-.66.95-1.31-.68-2.03-1.45-4.83-1.45-8.69z" +}), 'PanoramaVerticalSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectSharp.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectSharp.js new file mode 100644 index 00000000000000..9497da803796e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.49 11.99c0-5.25 1.54-9.01 1.92-10H3.59c.76 2.16 1.9 5.21 1.9 10 0 4.78-1.17 7.91-1.9 10H20.4c-.74-2.08-1.91-5.23-1.91-10z" +}), 'PanoramaVerticalSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectTwoTone.js new file mode 100644 index 00000000000000..8c6c85778bf9e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalSelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 12c0-3.89.84-6.95 1.43-8.69.22-.64-.26-1.31-.95-1.31H5c-.68 0-1.16.66-.95 1.31C4.74 5.36 5.5 8.1 5.5 12c0 3.87-.76 6.66-1.45 8.69-.21.65.27 1.31.95 1.31h14c.68 0 1.17-.66.95-1.31-.68-2.03-1.45-4.83-1.45-8.69z" +}), 'PanoramaVerticalSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalSharp.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalSharp.js new file mode 100644 index 00000000000000..cb2a9c10864677 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.46 4c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.41 1.16 8H6.55c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.41-1.16-8h10.91m2.78-2H3.77s.26.77.3.88C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.04.11-.3.88-.3.88h16.47s-.26-.77-.3-.88c-1.09-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.3-.88.3-.88z" +}), 'PanoramaVerticalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaVerticalTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaVerticalTwoTone.js new file mode 100644 index 00000000000000..3fa8577bd647d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaVerticalTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.54 4c.77 2.6 1.16 5.28 1.16 8 0 2.72-.39 5.4-1.16 8h10.91c-.77-2.6-1.16-5.28-1.16-8 0-2.72.39-5.4 1.16-8H6.54z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM17.45 20H6.54c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8z" +}, "1")], 'PanoramaVerticalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngle.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngle.js new file mode 100644 index 00000000000000..e41738facde85f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" +}), 'PanoramaWideAngle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleOutlined.js new file mode 100644 index 00000000000000..61fb7dd5bb33b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" +}), 'PanoramaWideAngleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleRounded.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleRounded.js new file mode 100644 index 00000000000000..a9a2b3ac6b50d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" +}), 'PanoramaWideAngleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelect.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelect.js new file mode 100644 index 00000000000000..182537b29e6d29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" +}), 'PanoramaWideAngleSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectOutlined.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectOutlined.js new file mode 100644 index 00000000000000..4647413d68ba74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z" +}), 'PanoramaWideAngleSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectRounded.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectRounded.js new file mode 100644 index 00000000000000..4226ecb0cbf8cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.06 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.06-1-7-2.15-.37-4.98-1-9-1z" +}), 'PanoramaWideAngleSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectSharp.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectSharp.js new file mode 100644 index 00000000000000..9c2849d329b45d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z" +}), 'PanoramaWideAngleSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectTwoTone.js new file mode 100644 index 00000000000000..f6e4ea87daae31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z" +}), 'PanoramaWideAngleSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleSharp.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSharp.js new file mode 100644 index 00000000000000..e27c7c8d1f870f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" +}), 'PanoramaWideAngleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PanoramaWideAngleTwoTone.js b/packages/material-ui-icons/lib/esm/PanoramaWideAngleTwoTone.js new file mode 100644 index 00000000000000..b7ca25a8d71a10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PanoramaWideAngleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-2.45 0-4.71.2-7.29.64C4.24 8.42 4 10.22 4 12c0 1.78.24 3.58.71 5.36 2.58.44 4.84.64 7.29.64s4.71-.2 7.29-.64c.47-1.78.71-3.58.71-5.36 0-1.78-.24-3.58-.71-5.36C16.71 6.2 14.45 6 12 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.13 5.78-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4s-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22zm-1.84 11.58c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6s4.71.2 7.29.64c.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36z" +}, "1")], 'PanoramaWideAngleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Paragliding.js b/packages/material-ui-icons/lib/esm/Paragliding.js new file mode 100644 index 00000000000000..f0451f99b98fe7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Paragliding.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-3.48.94C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28c1.1-.14 2.28-.22 3.5-.22s2.4.08 3.5.22L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24 4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z" +}), 'Paragliding'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParaglidingOutlined.js b/packages/material-ui-icons/lib/esm/ParaglidingOutlined.js new file mode 100644 index 00000000000000..32005a6fb11b51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParaglidingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.48.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94zM23 4.25v3.49c0 .8-.88 1.26-1.56.83-.14-.09-.28-.18-.44-.26L19 13h-2l-1.5-6.28c-1.1-.14-2.28-.22-3.5-.22s-2.4.08-3.5.22L7 13H5L3 8.31c-.16.08-.3.17-.44.26C1.88 9 1 8.55 1 7.74V4.25C1 1.9 5.92 0 12 0s11 1.9 11 4.25zM6.9 6.98c-.93.19-1.78.43-2.53.71l1.51 3.55L6.9 6.98zm12.73.71c-.75-.28-1.6-.52-2.53-.71l1.02 4.25 1.51-3.54zM21 4.31C20.65 3.63 17.57 2 12 2S3.35 3.63 3 4.31v1.77C5.34 5.07 8.56 4.5 12 4.5s6.66.57 9 1.58V4.31z" +}), 'ParaglidingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParaglidingRounded.js b/packages/material-ui-icons/lib/esm/ParaglidingRounded.js new file mode 100644 index 00000000000000..af7ee10985256a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParaglidingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.95-3c-.52 0-.94.4-.99.92-.2 2.03-1.05 2.68-1.48 3.02C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06c-.43-.34-1.28-.99-1.48-3.02-.05-.52-.47-.92-.99-.92-.59 0-1.06.51-1 1.09.22 2.08 1.07 3.47 2.24 4.41.5.4 1.1.7 1.7.9L9 24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.17-.94 2.03-2.32 2.24-4.41.07-.58-.41-1.09-.99-1.09zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28c1.1-.14 2.28-.22 3.5-.22s2.4.08 3.5.22L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24 4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z" +}), 'ParaglidingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParaglidingSharp.js b/packages/material-ui-icons/lib/esm/ParaglidingSharp.js new file mode 100644 index 00000000000000..81a9acd1572661 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParaglidingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-3.48.94C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28c1.1-.14 2.28-.22 3.5-.22s2.4.08 3.5.22L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24 4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z" +}), 'ParaglidingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParaglidingTwoTone.js b/packages/material-ui-icons/lib/esm/ParaglidingTwoTone.js new file mode 100644 index 00000000000000..8558feb83a0f59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParaglidingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 4.31C20.65 3.63 17.57 2 12 2S3.35 3.63 3 4.31v1.77C5.34 5.07 8.56 4.5 12 4.5s6.66.57 9 1.58V4.31z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.48.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94zM23 4.25v3.49c0 .8-.88 1.26-1.56.83-.14-.09-.28-.18-.44-.26L19 13h-2l-1.5-6.28c-1.1-.14-2.28-.22-3.5-.22s-2.4.08-3.5.22L7 13H5L3 8.31c-.16.08-.3.17-.44.26C1.88 9 1 8.55 1 7.74V4.25C1 1.9 5.92 0 12 0s11 1.9 11 4.25zM6.9 6.98c-.93.19-1.78.43-2.53.71l1.51 3.55L6.9 6.98zm12.73.71c-.75-.28-1.6-.52-2.53-.71l1.02 4.25 1.51-3.54zM21 4.31C20.65 3.63 17.57 2 12 2S3.35 3.63 3 4.31v1.77C5.34 5.07 8.56 4.5 12 4.5s6.66.57 9 1.58V4.31z" +}, "1")], 'ParaglidingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Park.js b/packages/material-ui-icons/lib/esm/Park.js new file mode 100644 index 00000000000000..f4c4870be7c704 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Park.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.96v-4H21z" +}), 'Park'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParkOutlined.js b/packages/material-ui-icons/lib/esm/ParkOutlined.js new file mode 100644 index 00000000000000..646d6ec5c1d643 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.95v-4H21l-4-6zM6.79 16l3.9-6H8.88l3.13-4.5 3.15 4.5h-1.9l4 6H6.79z" +}), 'ParkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParkRounded.js b/packages/material-ui-icons/lib/esm/ParkRounded.js new file mode 100644 index 00000000000000..1541594ec8b084 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.96 12h.08c.81 0 1.28-.91.82-1.57l-5.08-7.25c-.4-.57-1.24-.57-1.64 0L6.1 10.43c-.46.66.02 1.57.83 1.57h.04l-2.9 4.46c-.44.66.04 1.54.84 1.54h5.08v2.02c0 1.09.89 1.98 1.98 1.98 1.09 0 1.98-.89 1.98-1.98V18h5.15c.8 0 1.28-.89.83-1.55L16.96 12z" +}), 'ParkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParkSharp.js b/packages/material-ui-icons/lib/esm/ParkSharp.js new file mode 100644 index 00000000000000..130106d3a633aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.96v-4H21z" +}), 'ParkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ParkTwoTone.js b/packages/material-ui-icons/lib/esm/ParkTwoTone.js new file mode 100644 index 00000000000000..c082aaf9dbfea0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ParkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.26 10h1.9l-3.15-4.5L8.88 10h1.81l-3.9 6h10.47z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.95v-4H21l-4-6zM6.79 16l3.9-6H8.88l3.13-4.5 3.15 4.5h-1.9l4 6H6.79z" +}, "1")], 'ParkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PartyMode.js b/packages/material-ui-icons/lib/esm/PartyMode.js new file mode 100644 index 00000000000000..49c070908ce85f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PartyMode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z" +}), 'PartyMode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PartyModeOutlined.js b/packages/material-ui-icons/lib/esm/PartyModeOutlined.js new file mode 100644 index 00000000000000..30e3948c332449 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PartyModeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z" +}), 'PartyModeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PartyModeRounded.js b/packages/material-ui-icons/lib/esm/PartyModeRounded.js new file mode 100644 index 00000000000000..3b9d5fbe26e81b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PartyModeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z" +}), 'PartyModeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PartyModeSharp.js b/packages/material-ui-icons/lib/esm/PartyModeSharp.js new file mode 100644 index 00000000000000..586e13bd2e1351 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PartyModeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 7c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z" +}), 'PartyModeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PartyModeTwoTone.js b/packages/material-ui-icons/lib/esm/PartyModeTwoTone.js new file mode 100644 index 00000000000000..77d36d8aabcc6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PartyModeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.95 6-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6h-4.05zM7 12c0-2.76 2.24-5 5-5 1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1zm10 0c0 2.76-2.24 5-5 5-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z" +}, "1")], 'PartyModeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Password.js b/packages/material-ui-icons/lib/esm/Password.js new file mode 100644 index 00000000000000..72e7b5c5bc8ea7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Password.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" +}), 'Password'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PasswordOutlined.js b/packages/material-ui-icons/lib/esm/PasswordOutlined.js new file mode 100644 index 00000000000000..0ae4713f71c468 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PasswordOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" +}), 'PasswordOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PasswordRounded.js b/packages/material-ui-icons/lib/esm/PasswordRounded.js new file mode 100644 index 00000000000000..cb49931041c450 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PasswordRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1zm-.5-4.43c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.49-.84h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H5.3l.47-.82c.21-.36.09-.82-.27-1.03-.36-.2-.82-.08-1.03.28L4 8.47l-.47-.82c-.21-.36-.67-.48-1.03-.28-.36.21-.48.67-.27 1.03l.47.82h-.95c-.41 0-.75.34-.75.75s.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02zm8 0c.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-.96l.47-.82c.21-.36.08-.82-.27-1.03-.36-.21-.82-.08-1.02.27l-.48.82-.47-.82c-.21-.36-.67-.48-1.02-.27-.36.21-.48.67-.27 1.03l.47.82h-.96c-.41-.01-.75.33-.75.74s.34.75.75.75h.95l-.48.83c-.2.36-.08.82.28 1.02zM23 9.97c0-.41-.34-.75-.75-.75h-.95l.47-.82c.21-.36.08-.82-.27-1.03-.36-.21-.82-.08-1.02.27l-.48.83-.47-.82c-.21-.36-.67-.48-1.02-.27-.36.21-.48.67-.27 1.03l.47.82h-.95c-.42-.01-.76.33-.76.74s.34.75.75.75h.95l-.48.83c-.21.36-.08.82.28 1.02.36.21.82.08 1.03-.28l.47-.82.48.83c.21.36.67.48 1.03.28.36-.21.48-.66.28-1.02l-.48-.83h.95c.4-.01.74-.35.74-.76z" +}), 'PasswordRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PasswordSharp.js b/packages/material-ui-icons/lib/esm/PasswordSharp.js new file mode 100644 index 00000000000000..ac7154221a05bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PasswordSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" +}), 'PasswordSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PasswordTwoTone.js b/packages/material-ui-icons/lib/esm/PasswordTwoTone.js new file mode 100644 index 00000000000000..dbbe98eb18d95e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PasswordTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" +}), 'PasswordTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pattern.js b/packages/material-ui-icons/lib/esm/Pattern.js new file mode 100644 index 00000000000000..05a3db734abd74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pattern.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" +}), 'Pattern'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PatternOutlined.js b/packages/material-ui-icons/lib/esm/PatternOutlined.js new file mode 100644 index 00000000000000..438cc24fb76d68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PatternOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" +}), 'PatternOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PatternRounded.js b/packages/material-ui-icons/lib/esm/PatternRounded.js new file mode 100644 index 00000000000000..32d01628da0866 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PatternRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" +}), 'PatternRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PatternSharp.js b/packages/material-ui-icons/lib/esm/PatternSharp.js new file mode 100644 index 00000000000000..ac32fbe127e3b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PatternSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" +}), 'PatternSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PatternTwoTone.js b/packages/material-ui-icons/lib/esm/PatternTwoTone.js new file mode 100644 index 00000000000000..1dc7eb37e0d301 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PatternTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54c-.34-.6-.98-1-1.72-1s-1.37.4-1.72 1H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57c.34.6.98 1 1.72 1s1.37-.4 1.72-1h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" +}), 'PatternTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pause.js b/packages/material-ui-icons/lib/esm/Pause.js new file mode 100644 index 00000000000000..457dffc1942849 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pause.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" +}), 'Pause'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircle.js b/packages/material-ui-icons/lib/esm/PauseCircle.js new file mode 100644 index 00000000000000..2890bd183a9182 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" +}), 'PauseCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleFilled.js b/packages/material-ui-icons/lib/esm/PauseCircleFilled.js new file mode 100644 index 00000000000000..e6a4986c9cb572 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" +}), 'PauseCircleFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleFilledOutlined.js b/packages/material-ui-icons/lib/esm/PauseCircleFilledOutlined.js new file mode 100644 index 00000000000000..39cb18adce0f1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleFilledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" +}), 'PauseCircleFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleFilledRounded.js b/packages/material-ui-icons/lib/esm/PauseCircleFilledRounded.js new file mode 100644 index 00000000000000..1a91a1d5e1205d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1z" +}), 'PauseCircleFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleFilledSharp.js b/packages/material-ui-icons/lib/esm/PauseCircleFilledSharp.js new file mode 100644 index 00000000000000..ce775164fd4018 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" +}), 'PauseCircleFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleFilledTwoTone.js b/packages/material-ui-icons/lib/esm/PauseCircleFilledTwoTone.js new file mode 100644 index 00000000000000..56db0323af3574 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleFilledTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 12H9V8h2v8zm4 0h-2V8h2v8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 8h2v8h-2zM9 8h2v8H9z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "2")], 'PauseCircleFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleOutline.js b/packages/material-ui-icons/lib/esm/PauseCircleOutline.js new file mode 100644 index 00000000000000..13b9ce2cb476ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" +}), 'PauseCircleOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleOutlineOutlined.js b/packages/material-ui-icons/lib/esm/PauseCircleOutlineOutlined.js new file mode 100644 index 00000000000000..0b32e162e26ea7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" +}), 'PauseCircleOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleOutlineRounded.js b/packages/material-ui-icons/lib/esm/PauseCircleOutlineRounded.js new file mode 100644 index 00000000000000..212403cb75494e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 16c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1zm2-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm2-4c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z" +}), 'PauseCircleOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleOutlineSharp.js b/packages/material-ui-icons/lib/esm/PauseCircleOutlineSharp.js new file mode 100644 index 00000000000000..f3ad7383a89b97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" +}), 'PauseCircleOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/PauseCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..9ae9c4381ddc4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8h2v8h-2zM9 8h2v8H9zm3 14c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z" +}), 'PauseCircleOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleOutlined.js b/packages/material-ui-icons/lib/esm/PauseCircleOutlined.js new file mode 100644 index 00000000000000..709edc3562ce7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" +}), 'PauseCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleRounded.js b/packages/material-ui-icons/lib/esm/PauseCircleRounded.js new file mode 100644 index 00000000000000..f85ff279f36214 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1z" +}), 'PauseCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleSharp.js b/packages/material-ui-icons/lib/esm/PauseCircleSharp.js new file mode 100644 index 00000000000000..df08f45baf624e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" +}), 'PauseCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseCircleTwoTone.js b/packages/material-ui-icons/lib/esm/PauseCircleTwoTone.js new file mode 100644 index 00000000000000..03131db0119043 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseCircleTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1 12H9V8h2v8zm4 0h-2V8h2v8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 8h2v8h-2zM9 8h2v8H9z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "2")], 'PauseCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseOutlined.js b/packages/material-ui-icons/lib/esm/PauseOutlined.js new file mode 100644 index 00000000000000..798e568d8dba16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" +}), 'PauseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PausePresentation.js b/packages/material-ui-icons/lib/esm/PausePresentation.js new file mode 100644 index 00000000000000..4ece5302891e8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PausePresentation.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 8h2v8H9zm4 0h2v8h-2z" +}, "1")], 'PausePresentation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PausePresentationOutlined.js b/packages/material-ui-icons/lib/esm/PausePresentationOutlined.js new file mode 100644 index 00000000000000..077554cf0c1dc1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PausePresentationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .85-2 1.95v14c0 1.1.9 2.05 2 2.05h18c1.1 0 2-.95 2-2.05v-14C23 3.85 22.1 3 21 3zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" +}), 'PausePresentationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PausePresentationRounded.js b/packages/material-ui-icons/lib/esm/PausePresentationRounded.js new file mode 100644 index 00000000000000..704226ef6567f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PausePresentationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12zM10 8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1zm4 0c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1z" +}), 'PausePresentationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PausePresentationSharp.js b/packages/material-ui-icons/lib/esm/PausePresentationSharp.js new file mode 100644 index 00000000000000..20756594e1f380 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PausePresentationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" +}), 'PausePresentationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PausePresentationTwoTone.js b/packages/material-ui-icons/lib/esm/PausePresentationTwoTone.js new file mode 100644 index 00000000000000..6269a6c0995924 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PausePresentationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V5H3v14zM13 8h2v8h-2V8zM9 8h2v8H9V8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" +}, "1")], 'PausePresentationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseRounded.js b/packages/material-ui-icons/lib/esm/PauseRounded.js new file mode 100644 index 00000000000000..d1bd81b0e1bcc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 19c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2v10c0 1.1.9 2 2 2zm6-12v10c0 1.1.9 2 2 2s2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2z" +}), 'PauseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseSharp.js b/packages/material-ui-icons/lib/esm/PauseSharp.js new file mode 100644 index 00000000000000..47f923aed1ab26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" +}), 'PauseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PauseTwoTone.js b/packages/material-ui-icons/lib/esm/PauseTwoTone.js new file mode 100644 index 00000000000000..de50f412a9bf09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PauseTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 5h4v14H6zm8 0h4v14h-4z" +}), 'PauseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Payment.js b/packages/material-ui-icons/lib/esm/Payment.js new file mode 100644 index 00000000000000..7ac9c5ff1db493 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Payment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" +}), 'Payment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentOutlined.js b/packages/material-ui-icons/lib/esm/PaymentOutlined.js new file mode 100644 index 00000000000000..61c819731fc35a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" +}), 'PaymentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentRounded.js b/packages/material-ui-icons/lib/esm/PaymentRounded.js new file mode 100644 index 00000000000000..47a9518abc6fd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v1z" +}), 'PaymentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentSharp.js b/packages/material-ui-icons/lib/esm/PaymentSharp.js new file mode 100644 index 00000000000000..60a9a6e4f612a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z" +}), 'PaymentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentTwoTone.js b/packages/material-ui-icons/lib/esm/PaymentTwoTone.js new file mode 100644 index 00000000000000..ba43554446ea97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6h16v2H4zm0 6h16v6H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" +}, "1")], 'PaymentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Payments.js b/packages/material-ui-icons/lib/esm/Payments.js new file mode 100644 index 00000000000000..3b3db55a2d55a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Payments.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9-1c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-6v11c0 1.1-.9 2-2 2H4v-2h17V7h2z" +}), 'Payments'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentsOutlined.js b/packages/material-ui-icons/lib/esm/PaymentsOutlined.js new file mode 100644 index 00000000000000..bbd49911f0f524 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H3V6h14v8zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm13 0v11c0 1.1-.9 2-2 2H4v-2h17V7h2z" +}), 'PaymentsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentsRounded.js b/packages/material-ui-icons/lib/esm/PaymentsRounded.js new file mode 100644 index 00000000000000..e74d5fae1a12db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8v10c0 1.1-.9 2-2 2H5c-.55 0-1-.45-1-1s.45-1 1-1h16V8c0-.55.45-1 1-1s1 .45 1 1zM4 16c-1.66 0-3-1.34-3-3V7c0-1.66 1.34-3 3-3h12c1.66 0 3 1.34 3 3v7c0 1.1-.9 2-2 2H4zm3-6c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" +}), 'PaymentsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentsSharp.js b/packages/material-ui-icons/lib/esm/PaymentsSharp.js new file mode 100644 index 00000000000000..2f5d77748e4d89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 7v13H4v-2h17V7h2zm-4 9H1V4h18v12zm-6-6c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" +}), 'PaymentsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PaymentsTwoTone.js b/packages/material-ui-icons/lib/esm/PaymentsTwoTone.js new file mode 100644 index 00000000000000..b489e0542af1ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PaymentsTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 6H3v8h14V6zm-7 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 4H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 14V6h14v8H3z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm13 0v11c0 1.1-.9 2-2 2H4v-2h17V7h2z" +}, "2")], 'PaymentsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PedalBike.js b/packages/material-ui-icons/lib/esm/PedalBike.js new file mode 100644 index 00000000000000..684af876071335 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PedalBike.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H12v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}), 'PedalBike'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PedalBikeOutlined.js b/packages/material-ui-icons/lib/esm/PedalBikeOutlined.js new file mode 100644 index 00000000000000..76a0a83a36df88 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PedalBikeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H12v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}), 'PedalBikeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PedalBikeRounded.js b/packages/material-ui-icons/lib/esm/PedalBikeRounded.js new file mode 100644 index 00000000000000..b9d066b78c1c47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PedalBikeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H13c-.55 0-1 .45-1 1s.45 1 1 1h1.6l1.46 4h-4.81l-.36-1h.09c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1h.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.42 1.23-1.6 2.08-3.02 1.99-1.49-.09-2.73-1.35-2.8-2.85C1.93 13.39 3.27 12 5 12c1.33 0 2.42.83 2.82 2H6c-.55 0-1 .45-1 1s.45 1 1 1h1.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.78 4c-1.54-.06-2.84-1.37-2.88-2.92-.02-.96.39-1.8 1.05-2.36l.62 1.7c.19.52.76.79 1.28.6.52-.19.79-.76.6-1.28l-.63-1.73.01-.01c1.72-.04 3.08 1.29 3.08 3-.01 1.72-1.39 3.06-3.13 3z" +}), 'PedalBikeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PedalBikeSharp.js b/packages/material-ui-icons/lib/esm/PedalBikeSharp.js new file mode 100644 index 00000000000000..32b8e04f16112c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PedalBikeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.18 10 16 4h-4v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}), 'PedalBikeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PedalBikeTwoTone.js b/packages/material-ui-icons/lib/esm/PedalBikeTwoTone.js new file mode 100644 index 00000000000000..c0150a6d907b79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PedalBikeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.18 10-1.7-4.68C16.19 4.53 15.44 4 14.6 4H12v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" +}), 'PedalBikeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pending.js b/packages/material-ui-icons/lib/esm/Pending.js new file mode 100644 index 00000000000000..08af5467ba1be6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pending.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'Pending'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingActions.js b/packages/material-ui-icons/lib/esm/PendingActions.js new file mode 100644 index 00000000000000..447a0ec8aa8540 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingActions.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PendingActions'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingActionsOutlined.js b/packages/material-ui-icons/lib/esm/PendingActionsOutlined.js new file mode 100644 index 00000000000000..9f66913180d1f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingActionsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PendingActionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingActionsRounded.js b/packages/material-ui-icons/lib/esm/PendingActionsRounded.js new file mode 100644 index 00000000000000..a4f59dc3727b2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingActionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v1c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.29 7-1.65-1.65c-.09-.09-.15-.22-.15-.35v-2.49c0-.28.22-.5.5-.5s.5.22.5.5v2.29l1.5 1.5c.2.2.2.51 0 .71-.19.19-.5.19-.7-.01z" +}), 'PendingActionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingActionsSharp.js b/packages/material-ui-icons/lib/esm/PendingActionsSharp.js new file mode 100644 index 00000000000000..bc980afd08888f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingActionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM20 3h-5.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H4v19h8.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V3zm-8 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PendingActionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingActionsTwoTone.js b/packages/material-ui-icons/lib/esm/PendingActionsTwoTone.js new file mode 100644 index 00000000000000..d835f623f4e031 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingActionsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.65 19.35 16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM17 10c.34 0 .67.03 1 .08V5h-2v3H8V5H6v15h4.68c-.43-.91-.68-1.92-.68-3 0-3.87 3.13-7 7-7zm-5-5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM18 3h-3.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H6c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h6.11c-.59-.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V5c0-1.1-.9-2-2-2zm-6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'PendingActionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingOutlined.js b/packages/material-ui-icons/lib/esm/PendingOutlined.js new file mode 100644 index 00000000000000..38ec9e0bf983d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingOutlined.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "12", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "12", + r: "1.5" +}, "3")], 'PendingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingRounded.js b/packages/material-ui-icons/lib/esm/PendingRounded.js new file mode 100644 index 00000000000000..bdbd760f8b9ef5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PendingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingSharp.js b/packages/material-ui-icons/lib/esm/PendingSharp.js new file mode 100644 index 00000000000000..d9a715ef8c483a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PendingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PendingTwoTone.js b/packages/material-ui-icons/lib/esm/PendingTwoTone.js new file mode 100644 index 00000000000000..e7d722c14c849f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PendingTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-5 9.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "12", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "12", + r: "1.5" +}, "4")], 'PendingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/People.js b/packages/material-ui-icons/lib/esm/People.js new file mode 100644 index 00000000000000..3f3f2d4623668c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/People.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" +}), 'People'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleAlt.js b/packages/material-ui-icons/lib/esm/PeopleAlt.js new file mode 100644 index 00000000000000..4147a536575ea2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleAlt.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "4", + fillRule: "evenodd" +}, "1"), /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" +}, "2")], 'PeopleAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleAltOutlined.js b/packages/material-ui-icons/lib/esm/PeopleAltOutlined.js new file mode 100644 index 00000000000000..565b8e4bcf1067 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87zM15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 0c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H3v-.99C3.2 16.29 6.3 15 9 15s5.8 1.29 6 2v1z" +}), 'PeopleAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleAltRounded.js b/packages/material-ui-icons/lib/esm/PeopleAltRounded.js new file mode 100644 index 00000000000000..154ab72c80be90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleAltRounded.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h3c.55 0 1-.45 1-1v-2c0-2.18-3.57-3.47-6.33-3.87z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "4", + fillRule: "evenodd" +}, "1"), /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4z" +}, "2")], 'PeopleAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleAltSharp.js b/packages/material-ui-icons/lib/esm/PeopleAltSharp.js new file mode 100644 index 00000000000000..4a16b90f696443 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleAltSharp.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "4", + fillRule: "evenodd" +}, "1"), /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" +}, "2")], 'PeopleAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleAltTwoTone.js b/packages/material-ui-icons/lib/esm/PeopleAltTwoTone.js new file mode 100644 index 00000000000000..0b5c81b1c3e8d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleAltTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87zM15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24zm-6 0c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H3v-.99C3.2 16.29 6.3 15 9 15s5.8 1.29 6 2v1z" +}, "2")], 'PeopleAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleOutline.js b/packages/material-ui-icons/lib/esm/PeopleOutline.js new file mode 100644 index 00000000000000..2ceaef0ddb3865 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 13c-1.2 0-3.07.34-4.5 1-1.43-.67-3.3-1-4.5-1C5.33 13 1 14.08 1 16.25V19h22v-2.75c0-2.17-4.33-3.25-6.5-3.25zm-4 4.5h-10v-1.25c0-.54 2.56-1.75 5-1.75s5 1.21 5 1.75v1.25zm9 0H14v-1.25c0-.46-.2-.86-.52-1.22.88-.3 1.96-.53 3.02-.53 2.44 0 5 1.21 5 1.75v1.25zM7.5 12c1.93 0 3.5-1.57 3.5-3.5S9.43 5 7.5 5 4 6.57 4 8.5 5.57 12 7.5 12zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 5.5c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" +}), 'PeopleOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleOutlineOutlined.js b/packages/material-ui-icons/lib/esm/PeopleOutlineOutlined.js new file mode 100644 index 00000000000000..1e9587c23cda30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}), 'PeopleOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleOutlineRounded.js b/packages/material-ui-icons/lib/esm/PeopleOutlineRounded.js new file mode 100644 index 00000000000000..46f2b97af50d21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h3c.55 0 1-.45 1-1v-.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}), 'PeopleOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleOutlineSharp.js b/packages/material-ui-icons/lib/esm/PeopleOutlineSharp.js new file mode 100644 index 00000000000000..d68aaafcae0070 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}), 'PeopleOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/PeopleOutlineTwoTone.js new file mode 100644 index 00000000000000..d11bdcd104f4e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleOutlineTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8.5", + r: "1.5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}, "2")], 'PeopleOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleOutlined.js b/packages/material-ui-icons/lib/esm/PeopleOutlined.js new file mode 100644 index 00000000000000..7319fd5bac0020 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}), 'PeopleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleRounded.js b/packages/material-ui-icons/lib/esm/PeopleRounded.js new file mode 100644 index 00000000000000..acb89081193c5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z" +}), 'PeopleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleSharp.js b/packages/material-ui-icons/lib/esm/PeopleSharp.js new file mode 100644 index 00000000000000..2e96abf8ee9a68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" +}), 'PeopleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PeopleTwoTone.js b/packages/material-ui-icons/lib/esm/PeopleTwoTone.js new file mode 100644 index 00000000000000..528335424b7b38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PeopleTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8.5", + r: "1.5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" +}, "2")], 'PeopleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermCameraMic.js b/packages/material-ui-icons/lib/esm/PermCameraMic.js new file mode 100644 index 00000000000000..67bb29550a169c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermCameraMic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" +}), 'PermCameraMic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermCameraMicOutlined.js b/packages/material-ui-icons/lib/esm/PermCameraMicOutlined.js new file mode 100644 index 00000000000000..cc0c6665e42986 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermCameraMicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z" +}), 'PermCameraMicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermCameraMicRounded.js b/packages/material-ui-icons/lib/esm/PermCameraMicRounded.js new file mode 100644 index 00000000000000..7903a9c5f2a478 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermCameraMicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.45-.42-4.41-2.32-4.89-4.75-.12-.61.38-1.16.99-1.16.49 0 .88.35.98.83C8.47 15.64 10.07 17 12 17s3.53-1.36 3.91-3.17c.1-.48.5-.83.98-.83.61 0 1.11.55.99 1.16-.48 2.43-2.44 4.34-4.89 4.75V21h7c1.1 0 2-.9 2-2V7C22 5.9 21.1 5 20 5zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" +}), 'PermCameraMicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermCameraMicSharp.js b/packages/material-ui-icons/lib/esm/PermCameraMicSharp.js new file mode 100644 index 00000000000000..669165335b273b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermCameraMicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5h-5.17L15 3H9L7.17 5H2v16h9v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h9V5zm-8 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" +}), 'PermCameraMicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermCameraMicTwoTone.js b/packages/material-ui-icons/lib/esm/PermCameraMicTwoTone.js new file mode 100644 index 00000000000000..0c394c13905aeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermCameraMicTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.11 7-.59-.65L14.28 5h-4.24L8.81 6.35l-.6.65H4v12h7v-1.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V19h7V7h-3.89zM14 12c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-1.1.9-2 2-2s2 .9 2 2v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z" +}, "1")], 'PermCameraMicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermContactCalendar.js b/packages/material-ui-icons/lib/esm/PermContactCalendar.js new file mode 100644 index 00000000000000..fad5be0896750b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermContactCalendar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" +}), 'PermContactCalendar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermContactCalendarOutlined.js b/packages/material-ui-icons/lib/esm/PermContactCalendarOutlined.js new file mode 100644 index 00000000000000..5db7429bce47a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermContactCalendarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM5 19V5h14v14H5zm7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'PermContactCalendarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermContactCalendarRounded.js b/packages/material-ui-icons/lib/esm/PermContactCalendarRounded.js new file mode 100644 index 00000000000000..c73bb2dd834061 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermContactCalendarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" +}), 'PermContactCalendarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermContactCalendarSharp.js b/packages/material-ui-icons/lib/esm/PermContactCalendarSharp.js new file mode 100644 index 00000000000000..3faf6363f31ea0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermContactCalendarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-9 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" +}), 'PermContactCalendarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermContactCalendarTwoTone.js b/packages/material-ui-icons/lib/esm/PermContactCalendarTwoTone.js new file mode 100644 index 00000000000000..d4ac4d7fa011c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermContactCalendarTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 5H5v14h14V5h-3zm-4 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM19 19H5V5h14v14zm-7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "1")], 'PermContactCalendarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDataSetting.js b/packages/material-ui-icons/lib/esm/PermDataSetting.js new file mode 100644 index 00000000000000..db67492df578ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDataSetting.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PermDataSetting'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDataSettingOutlined.js b/packages/material-ui-icons/lib/esm/PermDataSettingOutlined.js new file mode 100644 index 00000000000000..9daf4a69d2a9c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDataSettingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PermDataSettingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDataSettingRounded.js b/packages/material-ui-icons/lib/esm/PermDataSettingRounded.js new file mode 100644 index 00000000000000..37d1b3a1b9022a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDataSettingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.99 11.5c.34 0 .68.03 1.01.07V2.42c0-.89-1.08-1.34-1.71-.71L1.71 18.29c-.63.63-.19 1.71.7 1.71h9.15c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49s.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PermDataSettingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDataSettingSharp.js b/packages/material-ui-icons/lib/esm/PermDataSettingSharp.js new file mode 100644 index 00000000000000..d516d886d1d4c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDataSettingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49s.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PermDataSettingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDataSettingTwoTone.js b/packages/material-ui-icons/lib/esm/PermDataSettingTwoTone.js new file mode 100644 index 00000000000000..d633361e889433 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDataSettingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PermDataSettingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDeviceInformation.js b/packages/material-ui-icons/lib/esm/PermDeviceInformation.js new file mode 100644 index 00000000000000..f657f1f7d5c46e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDeviceInformation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v2h2V7zm0 4h-2v6h2v-6zm4-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'PermDeviceInformation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDeviceInformationOutlined.js b/packages/material-ui-icons/lib/esm/PermDeviceInformationOutlined.js new file mode 100644 index 00000000000000..a774c1baeaaefb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDeviceInformationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7z" +}), 'PermDeviceInformationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDeviceInformationRounded.js b/packages/material-ui-icons/lib/esm/PermDeviceInformationRounded.js new file mode 100644 index 00000000000000..1160403bda83ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDeviceInformationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v2h2V7zm-1 4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm5-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'PermDeviceInformationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDeviceInformationSharp.js b/packages/material-ui-icons/lib/esm/PermDeviceInformationSharp.js new file mode 100644 index 00000000000000..994ca535162ad3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDeviceInformationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v2h2V7zm0 4h-2v6h2v-6zM5 1v22h14V1H5zm12 18H7V5h10v14z" +}), 'PermDeviceInformationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermDeviceInformationTwoTone.js b/packages/material-ui-icons/lib/esm/PermDeviceInformationTwoTone.js new file mode 100644 index 00000000000000..8251b2b8408fd4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermDeviceInformationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 20h10v1H7zM7 3h10v1H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" +}, "1")], 'PermDeviceInformationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermIdentity.js b/packages/material-ui-icons/lib/esm/PermIdentity.js new file mode 100644 index 00000000000000..123bdfd73a5a3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermIdentity.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" +}), 'PermIdentity'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermIdentityOutlined.js b/packages/material-ui-icons/lib/esm/PermIdentityOutlined.js new file mode 100644 index 00000000000000..213b9e0bfed204 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermIdentityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 9c2.7 0 5.8 1.29 6 2v1H6v-.99c.2-.72 3.3-2.01 6-2.01m0-11C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" +}), 'PermIdentityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermIdentityRounded.js b/packages/material-ui-icons/lib/esm/PermIdentityRounded.js new file mode 100644 index 00000000000000..bfdf54a4413a3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermIdentityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" +}), 'PermIdentityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermIdentitySharp.js b/packages/material-ui-icons/lib/esm/PermIdentitySharp.js new file mode 100644 index 00000000000000..4b63ed4034c8ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermIdentitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" +}), 'PermIdentitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermIdentityTwoTone.js b/packages/material-ui-icons/lib/esm/PermIdentityTwoTone.js new file mode 100644 index 00000000000000..84350d8994b96c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermIdentityTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "8", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" +}, "2")], 'PermIdentityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermMedia.js b/packages/material-ui-icons/lib/esm/PermMedia.js new file mode 100644 index 00000000000000..f54e20def17492 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermMedia.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm20-2h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z" +}), 'PermMedia'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermMediaOutlined.js b/packages/material-ui-icons/lib/esm/PermMediaOutlined.js new file mode 100644 index 00000000000000..0ea9e17db3bb01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermMediaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z" +}), 'PermMediaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermMediaRounded.js b/packages/material-ui-icons/lib/esm/PermMediaRounded.js new file mode 100644 index 00000000000000..6c16ac98cf0b69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermMediaRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 19H3V7c0-.55-.45-1-1-1s-1 .45-1 1v12c0 1.1.9 2 2 2h16c.55 0 1-.45 1-1s-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 4h-7l-1.41-1.41c-.38-.38-.89-.59-1.42-.59H7c-1.1 0-1.99.9-1.99 2L5 15c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3 9h-8c-.41 0-.65-.47-.4-.8l1.38-1.83c.2-.27.6-.27.8 0L13 12l2.22-2.97c.2-.27.6-.27.8 0l2.38 3.17c.25.33.01.8-.4.8z" +}, "1")], 'PermMediaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermMediaSharp.js b/packages/material-ui-icons/lib/esm/PermMediaSharp.js new file mode 100644 index 00000000000000..8bba41304865b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermMediaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 6H0v16h20v-2H2V6zm22-2H14l-2-2H4v16h20V4zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z" +}), 'PermMediaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermMediaTwoTone.js b/packages/material-ui-icons/lib/esm/PermMediaTwoTone.js new file mode 100644 index 00000000000000..cad39c4baadbf7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermMediaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13.17 6-.59-.59L11.17 4H6v12h16V6h-8.83zm4.33 4.5L21 15H7l4.5-6 3.5 4.51 2.5-3.01z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z" +}, "1")], 'PermMediaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermPhoneMsg.js b/packages/material-ui-icons/lib/esm/PermPhoneMsg.js new file mode 100644 index 00000000000000..ae0994fb8f65d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermPhoneMsg.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM12 3v10l3-3h6V3h-9z" +}), 'PermPhoneMsg'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermPhoneMsgOutlined.js b/packages/material-ui-icons/lib/esm/PermPhoneMsgOutlined.js new file mode 100644 index 00000000000000..f5691d83a8cec6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermPhoneMsgOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z" +}), 'PermPhoneMsgOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermPhoneMsgRounded.js b/packages/material-ui-icons/lib/esm/PermPhoneMsgRounded.js new file mode 100644 index 00000000000000..2bc7a5fa215d7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermPhoneMsgRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3h-7c-.55 0-1 .45-1 1v9l3-3h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-.77 12.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" +}), 'PermPhoneMsgRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermPhoneMsgSharp.js b/packages/material-ui-icons/lib/esm/PermPhoneMsgSharp.js new file mode 100644 index 00000000000000..070f2f12794c0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermPhoneMsgSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3v10l3-3h6V3zm1.21 14.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" +}), 'PermPhoneMsgSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermPhoneMsgTwoTone.js b/packages/material-ui-icons/lib/esm/PermPhoneMsgTwoTone.js new file mode 100644 index 00000000000000..feb654db41c377 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermPhoneMsgTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zM14 8h5V5h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z" +}, "1")], 'PermPhoneMsgTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermScanWifi.js b/packages/material-ui-icons/lib/esm/PermScanWifi.js new file mode 100644 index 00000000000000..43de00b5a6ab6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermScanWifi.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z" +}), 'PermScanWifi'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermScanWifiOutlined.js b/packages/material-ui-icons/lib/esm/PermScanWifiOutlined.js new file mode 100644 index 00000000000000..c4e5871141ceec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermScanWifiOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z" +}), 'PermScanWifiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermScanWifiRounded.js b/packages/material-ui-icons/lib/esm/PermScanWifiRounded.js new file mode 100644 index 00000000000000..bc30544cb898c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermScanWifiRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3C7.41 3 3.86 4.53.89 6.59c-.49.33-.59 1-.22 1.46l9.78 12.04c.8.98 2.3.99 3.1 0l9.78-12.02c.37-.46.27-1.13-.22-1.46C20.14 4.54 16.59 3 12 3zm0 13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm-1-8V6h2v2h-2z" +}), 'PermScanWifiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermScanWifiSharp.js b/packages/material-ui-icons/lib/esm/PermScanWifiSharp.js new file mode 100644 index 00000000000000..12fc79a2c003f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermScanWifiSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z" +}), 'PermScanWifiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PermScanWifiTwoTone.js b/packages/material-ui-icons/lib/esm/PermScanWifiTwoTone.js new file mode 100644 index 00000000000000..06ea8b6caf0d58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PermScanWifiTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5c-3.26 0-6.2.85-9.08 2.65L12 18.83l9.08-11.16C18.18 5.85 15.25 5 12 5zm1 11h-2v-6h2v6zm-2-8V6h2v2h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z" +}, "1")], 'PermScanWifiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Person.js b/packages/material-ui-icons/lib/esm/Person.js new file mode 100644 index 00000000000000..21d9576c2762f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Person.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" +}), 'Person'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAdd.js b/packages/material-ui-icons/lib/esm/PersonAdd.js new file mode 100644 index 00000000000000..ddd692db0c2720 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" +}), 'PersonAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAlt.js b/packages/material-ui-icons/lib/esm/PersonAddAlt.js new file mode 100644 index 00000000000000..576c2ff9e37905 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.78 1.28 6 2H3zm17-3v-3h3v-2h-3V7h-2v3h-3v2h3v3h2z" +}), 'PersonAddAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAlt1.js b/packages/material-ui-icons/lib/esm/PersonAddAlt1.js new file mode 100644 index 00000000000000..67744767238b28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAlt1.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm2 2v2h3v3h2v-3h3v-2h-3V7h-2v3h-3zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" +}), 'PersonAddAlt1'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAlt1Outlined.js b/packages/material-ui-icons/lib/esm/PersonAddAlt1Outlined.js new file mode 100644 index 00000000000000..c29170d3d1ef49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAlt1Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.78 1.28 6 2H3zm17-3v-3h3v-2h-3V7h-2v3h-3v2h3v3h2z" +}), 'PersonAddAlt1Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAlt1Rounded.js b/packages/material-ui-icons/lib/esm/PersonAddAlt1Rounded.js new file mode 100644 index 00000000000000..d3ddd4c3b030e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAlt1Rounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 14c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zm11-4V7h-2v3h-3v2h3v3h2v-3h3v-2z" +}, "1")], 'PersonAddAlt1Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAlt1Sharp.js b/packages/material-ui-icons/lib/esm/PersonAddAlt1Sharp.js new file mode 100644 index 00000000000000..600df64afc3bc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAlt1Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm2 2v2h3v3h2v-3h3v-2h-3V7h-2v3h-3zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" +}), 'PersonAddAlt1Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAlt1TwoTone.js b/packages/material-ui-icons/lib/esm/PersonAddAlt1TwoTone.js new file mode 100644 index 00000000000000..08e53a4c3a7e49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAlt1TwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 16c-2.7 0-5.8 1.29-6 2h12c-.22-.72-3.31-2-6-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 14c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.2-.71 3.3-2 6-2 2.69 0 5.78 1.28 6 2H3zm17-8V7h-2v3h-3v2h3v3h2v-3h3v-2zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" +}, "2")], 'PersonAddAlt1TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAltOutlined.js b/packages/material-ui-icons/lib/esm/PersonAddAltOutlined.js new file mode 100644 index 00000000000000..ef271e4c25033a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9V6h-2v3h-3v2h3v3h2v-3h3V9h-3zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm6.39 8.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM15 18H3v-.78c0-.38.2-.72.52-.88C4.71 15.73 6.63 15 9 15c2.37 0 4.29.73 5.48 1.34.32.16.52.5.52.88V18z" +}), 'PersonAddAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAltRounded.js b/packages/material-ui-icons/lib/esm/PersonAddAltRounded.js new file mode 100644 index 00000000000000..87d3140f1e4820 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.39 14.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm11-3V7c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2z" +}), 'PersonAddAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAltSharp.js b/packages/material-ui-icons/lib/esm/PersonAddAltSharp.js new file mode 100644 index 00000000000000..568ed4e99ff21d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.39 14.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm11-3V6h-2v3h-3v2h3v3h2v-3h3V9h-3z" +}), 'PersonAddAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddAltTwoTone.js b/packages/material-ui-icons/lib/esm/PersonAddAltTwoTone.js new file mode 100644 index 00000000000000..e86efee9781d3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddAltTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.48 16.34C13.29 15.73 11.37 15 9 15c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h12v-.78c0-.38-.2-.72-.52-.88z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm11 3V6h-2v3h-3v2h3v3h2v-3h3V9zm-4.61 5.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56C1.61 15.07 1 16.1 1 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM15 18H3v-.78c0-.38.2-.72.52-.88C4.71 15.73 6.63 15 9 15c2.37 0 4.29.73 5.48 1.34.32.16.52.5.52.88V18z" +}, "2")], 'PersonAddAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddDisabled.js b/packages/material-ui-icons/lib/esm/PersonAddDisabled.js new file mode 100644 index 00000000000000..c43e3a01c489c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddDisabled.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "8", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23 20v-2c0-2.3-4.1-3.7-6.9-3.9l6 5.9h.9zm-11.6-5.5C9.2 15.1 7 16.3 7 18v2h9.9l4 4 1.3-1.3-21-20.9L0 3.1l4 4V10H1v2h3v3h2v-3h2.9l2.5 2.5zM6 10v-.9l.9.9H6z" +}, "1")], 'PersonAddDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddDisabledOutlined.js b/packages/material-ui-icons/lib/esm/PersonAddDisabledOutlined.js new file mode 100644 index 00000000000000..933b9d225bffe1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6m0-2c-2.21 0-4 1.79-4 4 0 .18.03.35.05.52l3.43 3.43c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4zm1.69 10.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zm-3.68 1.97L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3M1.41 1.71 0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71zM6 10v-.88l.88.88H6z" +}), 'PersonAddDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddDisabledRounded.js b/packages/material-ui-icons/lib/esm/PersonAddDisabledRounded.js new file mode 100644 index 00000000000000..88aaee2264a1d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21 5.74 5.74c.33-.17.57-.5.57-.9v-1c0-2.14-3.56-3.5-6.31-3.84zM2.12 2.42a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4 7.12V10H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v1c0 .55.45 1 1 1h8.88l3.29 3.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.42zM6 10v-.88l.88.88H6z" +}), 'PersonAddDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddDisabledSharp.js b/packages/material-ui-icons/lib/esm/PersonAddDisabledSharp.js new file mode 100644 index 00000000000000..136dc0aee3681e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zM6.88 10H6v-.88l.88.88z" +}), 'PersonAddDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/PersonAddDisabledTwoTone.js new file mode 100644 index 00000000000000..ab9477e0b3c395 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddDisabledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 18h5.87L13 16.13l-1.1.3C9.89 16.99 9.08 17.76 9 18zm8-10c0-1.1-.9-2-2-2-.99 0-1.81.72-1.97 1.67l2.31 2.31C16.27 9.82 17 8.99 17 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zM15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6zm1.69 8.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zm13.01 13.01L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3zM6 9.12l.88.88H6v-.88z" +}, "1")], 'PersonAddDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddOutlined.js b/packages/material-ui-icons/lib/esm/PersonAddOutlined.js new file mode 100644 index 00000000000000..e217279c4fd0e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z" +}), 'PersonAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddRounded.js b/packages/material-ui-icons/lib/esm/PersonAddRounded.js new file mode 100644 index 00000000000000..b2613c07eb9028 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V8c0-.55-.45-1-1-1s-1 .45-1 1v2H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H6zm9 4c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z" +}), 'PersonAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddSharp.js b/packages/material-ui-icons/lib/esm/PersonAddSharp.js new file mode 100644 index 00000000000000..fb45cc9c18203a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" +}), 'PersonAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonAddTwoTone.js b/packages/material-ui-icons/lib/esm/PersonAddTwoTone.js new file mode 100644 index 00000000000000..b6e17799d9a3ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonAddTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "8", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z" +}, "2")], 'PersonAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOff.js b/packages/material-ui-icons/lib/esm/PersonOff.js new file mode 100644 index 00000000000000..091fecfae9521b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.65 5.82C9.36 4.72 10.6 4 12 4c2.21 0 4 1.79 4 4 0 1.4-.72 2.64-1.82 3.35L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm1.19 4.02L2.81 2.81 1.39 4.22l8.89 8.89c-1.81.23-3.39.79-4.67 1.45-1 .51-1.61 1.54-1.61 2.66V20h13.17l2.61 2.61 1.41-1.42z" +}), 'PersonOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOffOutlined.js b/packages/material-ui-icons/lib/esm/PersonOffOutlined.js new file mode 100644 index 00000000000000..87c4c2791b7fd8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 17.17-3.37-3.38c.64.22 1.23.48 1.77.76.97.51 1.58 1.52 1.6 2.62zm1.19 4.02-1.41 1.41-2.61-2.6H4v-2.78c0-1.12.61-2.15 1.61-2.66 1.29-.66 2.87-1.22 4.67-1.45L1.39 4.22 2.8 2.81l18.39 18.38zM15.17 18l-3-3H12c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h9.17zM12 6c1.1 0 2 .9 2 2 0 .86-.54 1.59-1.3 1.87l1.48 1.48C15.28 10.64 16 9.4 16 8c0-2.21-1.79-4-4-4-1.4 0-2.64.72-3.35 1.82l1.48 1.48C10.41 6.54 11.14 6 12 6z" +}), 'PersonOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOffRounded.js b/packages/material-ui-icons/lib/esm/PersonOffRounded.js new file mode 100644 index 00000000000000..42fa6885757ce3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.65 5.82C9.36 4.72 10.6 4 12 4c2.21 0 4 1.79 4 4 0 1.4-.72 2.64-1.82 3.35L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm.49 3.32L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l8.18 8.18c-1.82.23-3.41.8-4.7 1.46C4.6 15.08 4 16.11 4 17.22V20h13.17l1.9 1.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" +}), 'PersonOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOffSharp.js b/packages/material-ui-icons/lib/esm/PersonOffSharp.js new file mode 100644 index 00000000000000..703b4767c3b09d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.65 5.82C9.36 4.72 10.6 4 12 4c2.21 0 4 1.79 4 4 0 1.4-.72 2.64-1.82 3.35L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm1.19 4.02L2.81 2.81 1.39 4.22l8.89 8.89c-1.81.23-3.39.79-4.67 1.45-1 .51-1.61 1.54-1.61 2.66V20h13.17l2.61 2.61 1.41-1.42z" +}), 'PersonOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOffTwoTone.js b/packages/material-ui-icons/lib/esm/PersonOffTwoTone.js new file mode 100644 index 00000000000000..26589763c1bbee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.17 18-3-3H12c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h9.17zM10.13 7.3C10.41 6.54 11.14 6 12 6c1.1 0 2 .9 2 2 0 .86-.54 1.59-1.3 1.87", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20 17.17-3.37-3.38c.64.22 1.23.48 1.77.76.97.51 1.58 1.52 1.6 2.62zm1.19 4.02-1.41 1.41-2.61-2.6H4v-2.78c0-1.12.61-2.15 1.61-2.66 1.29-.66 2.87-1.22 4.67-1.45L1.39 4.22 2.8 2.81l18.39 18.38zM15.17 18l-3-3H12c-2.37 0-4.29.73-5.48 1.34-.32.16-.52.5-.52.88V18h9.17zM12 6c1.1 0 2 .9 2 2 0 .86-.54 1.59-1.3 1.87l1.48 1.48C15.28 10.64 16 9.4 16 8c0-2.21-1.79-4-4-4-1.4 0-2.64.72-3.35 1.82l1.48 1.48C10.41 6.54 11.14 6 12 6z" +}, "1")], 'PersonOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOutline.js b/packages/material-ui-icons/lib/esm/PersonOutline.js new file mode 100644 index 00000000000000..b545abef7e49be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" +}), 'PersonOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOutlineOutlined.js b/packages/material-ui-icons/lib/esm/PersonOutlineOutlined.js new file mode 100644 index 00000000000000..058c9c4b726c65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" +}), 'PersonOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOutlineRounded.js b/packages/material-ui-icons/lib/esm/PersonOutlineRounded.js new file mode 100644 index 00000000000000..295542d4898d66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4z" +}), 'PersonOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOutlineSharp.js b/packages/material-ui-icons/lib/esm/PersonOutlineSharp.js new file mode 100644 index 00000000000000..6693a5ef95737d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" +}), 'PersonOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/PersonOutlineTwoTone.js new file mode 100644 index 00000000000000..d1dfa239d3adb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOutlineTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "8", + r: "2.1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 14.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6.1 5.1H5.9V17c0-.64 3.13-2.1 6.1-2.1s6.1 1.46 6.1 2.1v1.1zM12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6.1c1.16 0 2.1.94 2.1 2.1 0 1.16-.94 2.1-2.1 2.1S9.9 9.16 9.9 8c0-1.16.94-2.1 2.1-2.1z" +}, "2")], 'PersonOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonOutlined.js b/packages/material-ui-icons/lib/esm/PersonOutlined.js new file mode 100644 index 00000000000000..a8320395411711 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" +}), 'PersonOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPin.js b/packages/material-ui-icons/lib/esm/PersonPin.js new file mode 100644 index 00000000000000..6db9b90ab909a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.97 0-9 4.03-9 9 0 4.17 2.84 7.67 6.69 8.69L12 22l2.31-2.31C18.16 18.67 21 15.17 21 11c0-4.97-4.03-9-9-9zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.3c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" +}), 'PersonPin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinCircle.js b/packages/material-ui-icons/lib/esm/PersonPinCircle.js new file mode 100644 index 00000000000000..c9bead1560ab7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 2c1.1 0 2 .9 2 2 0 1.11-.9 2-2 2s-2-.89-2-2c0-1.1.9-2 2-2zm0 10c-1.67 0-3.14-.85-4-2.15.02-1.32 2.67-2.05 4-2.05s3.98.73 4 2.05c-.86 1.3-2.33 2.15-4 2.15z" +}), 'PersonPinCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinCircleOutlined.js b/packages/material-ui-icons/lib/esm/PersonPinCircleOutlined.js new file mode 100644 index 00000000000000..99220850fef086 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'PersonPinCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinCircleRounded.js b/packages/material-ui-icons/lib/esm/PersonPinCircleRounded.js new file mode 100644 index 00000000000000..c3a2e2c88bdc95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.22.36.32.97.32 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zM7.69 12.49C8.88 11.56 10.37 11 12 11s3.12.56 4.31 1.49C15.45 13.98 13.85 15 12 15s-3.45-1.02-4.31-2.51zM12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" +}), 'PersonPinCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinCircleSharp.js b/packages/material-ui-icons/lib/esm/PersonPinCircleSharp.js new file mode 100644 index 00000000000000..ced36524c0b846 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11c-1.33 0-4 .67-4 2v.16c.97 1.12 2.4 1.84 4 1.84s3.03-.72 4-1.84V13c0-1.33-2.67-2-4-2zm0-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-8c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'PersonPinCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinCircleTwoTone.js b/packages/material-ui-icons/lib/esm/PersonPinCircleTwoTone.js new file mode 100644 index 00000000000000..9da52f6cea2333 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}, "1")], 'PersonPinCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinOutlined.js b/packages/material-ui-icons/lib/esm/PersonPinOutlined.js new file mode 100644 index 00000000000000..7aa2d49fddaa44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z" +}), 'PersonPinOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinRounded.js b/packages/material-ui-icons/lib/esm/PersonPinRounded.js new file mode 100644 index 00000000000000..f8ab28387db860 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z" +}), 'PersonPinRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinSharp.js b/packages/material-ui-icons/lib/esm/PersonPinSharp.js new file mode 100644 index 00000000000000..1eb00dee2af9fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2H3v18h6l3 3 3-3h6V2zm-9 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z" +}), 'PersonPinSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonPinTwoTone.js b/packages/material-ui-icons/lib/esm/PersonPinTwoTone.js new file mode 100644 index 00000000000000..982bdaa5d44880 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonPinTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m9.83 18 .59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zM12 5c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 15.58C6 13.08 9.97 12 12 12s6 1.08 6 3.58V17H6v-1.42z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m9 20 3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z" +}, "1")], 'PersonPinTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemove.js b/packages/material-ui-icons/lib/esm/PersonRemove.js new file mode 100644 index 00000000000000..32db0b409ce7f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemove.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" +}), 'PersonRemove'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveAlt1.js b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1.js new file mode 100644 index 00000000000000..9b2886d8a3b3a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" +}), 'PersonRemoveAlt1'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Outlined.js b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Outlined.js new file mode 100644 index 00000000000000..6046fc75455630 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" +}), 'PersonRemoveAlt1Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Rounded.js b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Rounded.js new file mode 100644 index 00000000000000..b5c03773fedd30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zM2 18v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4s-8 1.34-8 4zm16-8h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'PersonRemoveAlt1Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Sharp.js b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Sharp.js new file mode 100644 index 00000000000000..6284f9bd5ae1ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" +}), 'PersonRemoveAlt1Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveAlt1TwoTone.js b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1TwoTone.js new file mode 100644 index 00000000000000..0425b2cb13f586 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveAlt1TwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 16c2.69 0 5.77 1.28 6 2H4c.2-.71 3.3-2 6-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" +}, "2")], 'PersonRemoveAlt1TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveOutlined.js b/packages/material-ui-icons/lib/esm/PersonRemoveOutlined.js new file mode 100644 index 00000000000000..d1141a10b2d585 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" +}), 'PersonRemoveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveRounded.js b/packages/material-ui-icons/lib/esm/PersonRemoveRounded.js new file mode 100644 index 00000000000000..188af86ad7471c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zM2 18v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4s-8 1.34-8 4zm16-8h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'PersonRemoveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveSharp.js b/packages/material-ui-icons/lib/esm/PersonRemoveSharp.js new file mode 100644 index 00000000000000..36f2940d05c88f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" +}), 'PersonRemoveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRemoveTwoTone.js b/packages/material-ui-icons/lib/esm/PersonRemoveTwoTone.js new file mode 100644 index 00000000000000..f3176c052e77e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRemoveTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 16c2.69 0 5.77 1.28 6 2H4c.2-.71 3.3-2 6-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm-2 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4zm2 0c.2-.71 3.3-2 6-2 2.69 0 5.77 1.28 6 2H4zm13-8h6v2h-6z" +}, "2")], 'PersonRemoveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonRounded.js b/packages/material-ui-icons/lib/esm/PersonRounded.js new file mode 100644 index 00000000000000..46ae428027d339 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z" +}), 'PersonRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonSearch.js b/packages/material-ui-icons/lib/esm/PersonSearch.js new file mode 100644 index 00000000000000..f94ea52290d44c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonSearch.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v2h9.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59l-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'PersonSearch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonSearchOutlined.js b/packages/material-ui-icons/lib/esm/PersonSearchOutlined.js new file mode 100644 index 00000000000000..aedced4675eb7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonSearchOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM4 18c.22-.72 3.31-2 6-2 0-.7.13-1.37.35-1.99C7.62 13.91 2 15.27 2 18v2h9.54c-.52-.58-.93-1.25-1.19-2H4zm15.43.02c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59c-1.5-1.5-.79-.8-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'PersonSearchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonSearchRounded.js b/packages/material-ui-icons/lib/esm/PersonSearchRounded.js new file mode 100644 index 00000000000000..d369c3578be203 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonSearchRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v1c0 .55.45 1 1 1h8.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.47-.8.7-1.77.48-2.82-.34-1.64-1.72-2.95-3.38-3.16-2.63-.34-4.85 1.87-4.5 4.5.22 1.66 1.52 3.04 3.16 3.38 1.05.22 2.02-.01 2.82-.48l1.86 1.86c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.85-1.87zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'PersonSearchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonSearchSharp.js b/packages/material-ui-icons/lib/esm/PersonSearchSharp.js new file mode 100644 index 00000000000000..68449aa0b90690 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonSearchSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v2h9.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59l-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'PersonSearchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonSearchTwoTone.js b/packages/material-ui-icons/lib/esm/PersonSearchTwoTone.js new file mode 100644 index 00000000000000..e77a09a2d16235 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonSearchTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18c.22-.72 3.31-2 6-2 0-.7.13-1.37.35-1.99C7.62 13.91 2 15.27 2 18v2h9.54c-.52-.58-.93-1.25-1.19-2H4zm6-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .89 2 2 0 1.1-.9 2-2 2s-2-.9-2-2c0-1.11.9-2 2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.35 18s-.35-.79-.35-2c-2.69 0-5.77 1.28-6 2h6.35z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19.43 18.02c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59c-1.5-1.5-.79-.8-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "9", + r: "2", + opacity: ".3" +}, "3")], 'PersonSearchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonSharp.js b/packages/material-ui-icons/lib/esm/PersonSharp.js new file mode 100644 index 00000000000000..8323a5bda14692 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" +}), 'PersonSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonTwoTone.js b/packages/material-ui-icons/lib/esm/PersonTwoTone.js new file mode 100644 index 00000000000000..a75f943f798cbb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "8", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 14c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H6zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z" +}, "2")], 'PersonTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonalVideo.js b/packages/material-ui-icons/lib/esm/PersonalVideo.js new file mode 100644 index 00000000000000..5b29f0f2e30ce7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonalVideo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" +}), 'PersonalVideo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonalVideoOutlined.js b/packages/material-ui-icons/lib/esm/PersonalVideoOutlined.js new file mode 100644 index 00000000000000..873864c8c8836d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonalVideoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" +}), 'PersonalVideoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonalVideoRounded.js b/packages/material-ui-icons/lib/esm/PersonalVideoRounded.js new file mode 100644 index 00000000000000..eacf7e38e6ad37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonalVideoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'PersonalVideoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonalVideoSharp.js b/packages/material-ui-icons/lib/esm/PersonalVideoSharp.js new file mode 100644 index 00000000000000..b733d03c47bee5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonalVideoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z" +}), 'PersonalVideoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PersonalVideoTwoTone.js b/packages/material-ui-icons/lib/esm/PersonalVideoTwoTone.js new file mode 100644 index 00000000000000..c939b63020abf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PersonalVideoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 5h18v12H3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z" +}, "1")], 'PersonalVideoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControl.js b/packages/material-ui-icons/lib/esm/PestControl.js new file mode 100644 index 00000000000000..c448bfe06d3cc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControl.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65C8.24 6.45 8 7.2 8 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-8 2h-2v-6h2v6z" +}), 'PestControl'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlOutlined.js b/packages/material-ui-icons/lib/esm/PestControlOutlined.js new file mode 100644 index 00000000000000..63b9ebd0a756cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.1-.56.2-1.69-.58-2.89L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65c-.78 1.2-.68 2.34-.58 2.89-.37.39-.71.82-.99 1.29L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-9-9c.88 0 1.62.57 1.88 1.36C13.29 7.13 12.66 7 12 7s-1.29.13-1.88.36C10.38 6.57 11.12 6 12 6zm0 13c-2.21 0-4-2.24-4-5s1.79-5 4-5 4 2.24 4 5-1.79 5-4 5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 11h2v6h-2z" +}, "1")], 'PestControlOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlRodent.js b/packages/material-ui-icons/lib/esm/PestControlRodent.js new file mode 100644 index 00000000000000..5e7751d050afb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlRodent.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.31 17.38-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .97.39 1.84 1.03 2.47l-.71.71C11.5 16.87 11 15.74 11 14.5c0-1.7.96-3.17 2.35-3.93-.7-.36-1.48-.57-2.28-.57-2.38 0-4.37 1.65-4.91 3.87C4.91 13.5 4 12.36 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H8c-.55 0-1 .45-1 1s.45 1 1 1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.42 1.72 4.44 4 4.9v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PestControlRodent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlRodentOutlined.js b/packages/material-ui-icons/lib/esm/PestControlRodentOutlined.js new file mode 100644 index 00000000000000..9d6039fb3141d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlRodentOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "17", + r: "1" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.86 14.97-.93-.84c.48-3.45-2.87-6.04-6.05-4.82C13.3 9.11 12.66 9 12 9c-4.26 0-5.65 3.58-5.89 4.85C4.89 13.47 4 12.35 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H8c-.55 0-1 .45-1 1s.45 1 1 1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.44 1.76 4.47 4.07 4.91C6.51 18.79 8.99 21 12 21h6.53c3.11 0 4.7-3.89 2.33-6.03zM18.53 19H12c-1.21 0-2.34-.54-3.11-1.48-.78-.95-1.06-2.16-.8-3.41.31-1.48 1.51-2.69 2.99-3.01.22-.05.45-.06.67-.07-.47.71-.75 1.55-.75 2.47 0 1.24.5 2.37 1.32 3.18l1.41-1.41c-.45-.45-.73-1.08-.73-1.77 0-1.42 1.2-2.5 2.5-2.5 1.38 0 2.5 1.12 2.5 2.5 0 .46-.13.88-.35 1.25l1.87 1.7c.31.28.48.67.48 1.09 0 .8-.66 1.46-1.47 1.46z" +}, "1")], 'PestControlRodentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlRodentRounded.js b/packages/material-ui-icons/lib/esm/PestControlRodentRounded.js new file mode 100644 index 00000000000000..a9ad651d031127 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlRodentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.31 17.38-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .81.27 1.55.74 2.15.15.2.14.48-.04.66-.21.21-.56.19-.75-.04-.6-.77-.95-1.73-.95-2.77 0-1.7.96-3.17 2.35-3.93-.7-.36-1.48-.57-2.28-.57-2.38 0-4.37 1.65-4.91 3.87-1.33-.39-2.28-1.66-2.15-3.14C4.15 9.16 5.54 8 7.11 8h2c1.58 0 2.75-.95 2.87-2.25C12.13 4.25 10.96 3 9.5 3H8.05c-.5 0-.96.34-1.04.83C6.91 4.46 7.39 5 8 5h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7.16c-2.67 0-4.99 2.03-5.15 4.7-.15 2.55 1.61 4.72 3.99 5.2v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PestControlRodentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlRodentSharp.js b/packages/material-ui-icons/lib/esm/PestControlRodentSharp.js new file mode 100644 index 00000000000000..27c9b6ab7e029f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlRodentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.31 17.38-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .97.39 1.84 1.03 2.47l-.71.71C11.5 16.87 11 15.74 11 14.5c0-1.7.96-3.17 2.35-3.93-.7-.36-1.48-.57-2.28-.57-2.38 0-4.37 1.65-4.91 3.87C4.91 13.5 4 12.36 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H7v2h2.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.42 1.72 4.44 4 4.9v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PestControlRodentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlRodentTwoTone.js b/packages/material-ui-icons/lib/esm/PestControlRodentTwoTone.js new file mode 100644 index 00000000000000..5072bd734f66c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlRodentTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17.65 14.75c.22-.37.35-.79.35-1.25 0-1.38-1.12-2.5-2.5-2.5-1.3 0-2.5 1.08-2.5 2.5 0 .69.28 1.32.73 1.77l-1.41 1.41C11.5 15.87 11 14.74 11 13.5c0-.92.28-1.76.75-2.47-.22.01-.44.02-.67.07-1.48.32-2.68 1.53-2.99 3.01-.26 1.24.02 2.45.8 3.41.77.94 1.9 1.48 3.11 1.48h6.53c.81 0 1.47-.66 1.47-1.47 0-.41-.17-.81-.48-1.09l-1.87-1.69zM17 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "17", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m20.86 14.97-.93-.84c.48-3.45-2.87-6.04-6.05-4.82C13.3 9.11 12.66 9 12 9c-4.26 0-5.65 3.58-5.89 4.85C4.89 13.47 4 12.35 4 11c0-1.66 1.34-3 3-3h2.5C10.88 8 12 6.88 12 5.5S10.88 3 9.5 3H8c-.55 0-1 .45-1 1s.45 1 1 1h1.5c.28 0 .5.22.5.5s-.22.5-.5.5H7c-2.76 0-5 2.24-5 5 0 2.44 1.76 4.47 4.07 4.91C6.51 18.79 8.99 21 12 21h6.53c3.11 0 4.7-3.89 2.33-6.03zM18.53 19H12c-1.21 0-2.34-.54-3.11-1.48-.78-.95-1.06-2.16-.8-3.41.31-1.48 1.51-2.69 2.99-3.01.22-.05.45-.06.67-.07-.47.71-.75 1.55-.75 2.47 0 1.24.5 2.37 1.32 3.18l1.41-1.41c-.45-.45-.73-1.08-.73-1.77 0-1.42 1.2-2.5 2.5-2.5 1.38 0 2.5 1.12 2.5 2.5 0 .46-.13.88-.35 1.25l1.87 1.7c.31.28.48.67.48 1.09 0 .8-.66 1.46-1.47 1.46z" +}, "2")], 'PestControlRodentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlRounded.js b/packages/material-ui-icons/lib/esm/PestControlRounded.js new file mode 100644 index 00000000000000..b9406c8bb00f2b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 14c0-.55-.45-1-1-1h-2.07c-.05-.39-.12-.77-.22-1.14l1.72-.99c.48-.28.64-.89.37-1.37-.28-.48-.89-.64-1.37-.37l-1.51.87c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18l.94-.94c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-1.02 1.02c-1.68-.89-3.1-.33-3.73 0L9.12 3.46a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.94.94C8.24 6.45 8 7.2 8 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28l-1.51-.87c-.48-.27-1.09-.11-1.36.37-.28.48-.11 1.09.37 1.37l1.72.99c-.1.37-.17.75-.22 1.14H4c-.55 0-1 .45-1 1s.45 1 1 1h2.07c.05.39.12.77.22 1.14l-1.72.99c-.48.28-.64.89-.37 1.37.28.48.89.64 1.37.37L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l1.51.87c.48.28 1.09.11 1.37-.37s.11-1.09-.37-1.37l-1.72-.99c.1-.37.17-.75.22-1.14H20c.55 0 1-.45 1-1zm-9 3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z" +}), 'PestControlRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlSharp.js b/packages/material-ui-icons/lib/esm/PestControlSharp.js new file mode 100644 index 00000000000000..4af0c0b6906b2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65C8.24 6.45 8 7.2 8 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-8 2h-2v-6h2v6z" +}), 'PestControlSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PestControlTwoTone.js b/packages/material-ui-icons/lib/esm/PestControlTwoTone.js new file mode 100644 index 00000000000000..745965c12bfce2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PestControlTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 9c-2.21 0-4 2.24-4 5s1.79 5 4 5 4-2.24 4-5-1.79-5-4-5zm1 8h-2v-6h2v6zm.88-9.64C13.62 6.57 12.88 6 12 6s-1.62.57-1.88 1.36C10.71 7.13 11.34 7 12 7s1.29.13 1.88.36z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.1-.56.2-1.69-.58-2.89L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65c-.78 1.2-.68 2.34-.58 2.89-.37.39-.71.82-.99 1.29L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-9-9c.88 0 1.62.57 1.88 1.36C13.29 7.13 12.66 7 12 7s-1.29.13-1.88.36C10.38 6.57 11.12 6 12 6zm0 13c-2.21 0-4-2.24-4-5s1.79-5 4-5 4 2.24 4 5-1.79 5-4 5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 11h2v6h-2z" +}, "2")], 'PestControlTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pets.js b/packages/material-ui-icons/lib/esm/Pets.js new file mode 100644 index 00000000000000..0f8db0a8dede27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pets.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "2.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "5.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "5.5", + r: "2.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "9.5", + r: "2.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" +}, "4")], 'Pets'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PetsOutlined.js b/packages/material-ui-icons/lib/esm/PetsOutlined.js new file mode 100644 index 00000000000000..a2606f275687bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PetsOutlined.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "2.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "5.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "5.5", + r: "2.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "9.5", + r: "2.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" +}, "4")], 'PetsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PetsRounded.js b/packages/material-ui-icons/lib/esm/PetsRounded.js new file mode 100644 index 00000000000000..9de7b33a2452f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PetsRounded.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "2.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "5.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "5.5", + r: "2.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "9.5", + r: "2.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" +}, "4")], 'PetsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PetsSharp.js b/packages/material-ui-icons/lib/esm/PetsSharp.js new file mode 100644 index 00000000000000..dfea78de9ce994 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PetsSharp.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "2.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "5.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "5.5", + r: "2.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "9.5", + r: "2.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" +}, "4")], 'PetsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PetsTwoTone.js b/packages/material-ui-icons/lib/esm/PetsTwoTone.js new file mode 100644 index 00000000000000..d9df3d5e9814f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PetsTwoTone.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "4.5", + cy: "9.5", + r: "2.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "5.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "5.5", + r: "2.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "19.5", + cy: "9.5", + r: "2.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" +}, "4")], 'PetsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Phone.js b/packages/material-ui-icons/lib/esm/Phone.js new file mode 100644 index 00000000000000..c1f8b4d9de17f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Phone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z" +}), 'Phone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneAndroid.js b/packages/material-ui-icons/lib/esm/PhoneAndroid.js new file mode 100644 index 00000000000000..7d7748f5fe874f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneAndroid.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3.25-3H6.75V4h10.5v14z" +}), 'PhoneAndroid'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneAndroidOutlined.js b/packages/material-ui-icons/lib/esm/PhoneAndroidOutlined.js new file mode 100644 index 00000000000000..7a0a0a2d706f5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneAndroidOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm1 17H7V4h10v14zm-3 3h-4v-1h4v1z" +}), 'PhoneAndroidOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneAndroidRounded.js b/packages/material-ui-icons/lib/esm/PhoneAndroidRounded.js new file mode 100644 index 00000000000000..48904398aa9ea1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneAndroidRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2.5 20h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm3.5-3H7V4h10v14z" +}), 'PhoneAndroidRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneAndroidSharp.js b/packages/material-ui-icons/lib/esm/PhoneAndroidSharp.js new file mode 100644 index 00000000000000..f9f00245f30ba2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneAndroidSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H5v22h14V1zm-5 20h-4v-1h4v1zm3-3H7V4h10v14z" +}), 'PhoneAndroidSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneAndroidTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneAndroidTwoTone.js new file mode 100644 index 00000000000000..7d6b695333e0f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneAndroidTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 4h10v14H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3-3H7V4h10v14z" +}, "1")], 'PhoneAndroidTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeaker.js b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeaker.js new file mode 100644 index 00000000000000..cee23a3d0a538e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeaker.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21zm2 8.29c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" +}), 'PhoneBluetoothSpeaker'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerOutlined.js b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerOutlined.js new file mode 100644 index 00000000000000..24dfb92f33a385 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21z" +}), 'PhoneBluetoothSpeakerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerRounded.js b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerRounded.js new file mode 100644 index 00000000000000..d558614cb39feb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98zm-2.44-9.25-2.45 2.45c-.2.2-.2.52 0 .71.2.2.52.2.71 0L17 7.23v3.15c0 .2.12.39.31.47.06.03.13.04.19.04.13 0 .26-.05.36-.15l2.18-2.18c.2-.2.2-.52 0-.71l-1.83-1.83 1.83-1.83c.09-.09.15-.22.15-.36s-.05-.26-.15-.36l-2.18-2.18c-.14-.14-.36-.19-.55-.11-.19.08-.31.26-.31.46v3.15l-1.95-1.95c-.2-.2-.52-.2-.71 0-.2.2-.2.52 0 .71l2.45 2.46zm1.22-3.15.96.96-.96.96V2.86zm0 4.37.96.96-.96.96V7.23z" +}), 'PhoneBluetoothSpeakerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerSharp.js b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerSharp.js new file mode 100644 index 00000000000000..25831749cbc852 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21zm3 8.25-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" +}), 'PhoneBluetoothSpeakerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerTwoTone.js new file mode 100644 index 00000000000000..386d87933bbcb2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneBluetoothSpeakerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5 17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3.94.94-.94.94V7.21z" +}, "1")], 'PhoneBluetoothSpeakerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneCallback.js b/packages/material-ui-icons/lib/esm/PhoneCallback.js new file mode 100644 index 00000000000000..274d4264dd0880 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneCallback.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2zm13.54-7.1-.71-.7L13 9.29V5h-1v6h6v-1h-4.15z" +}), 'PhoneCallback'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneCallbackOutlined.js b/packages/material-ui-icons/lib/esm/PhoneCallbackOutlined.js new file mode 100644 index 00000000000000..41a38f05176903 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneCallbackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" +}), 'PhoneCallbackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneCallbackRounded.js b/packages/material-ui-icons/lib/esm/PhoneCallbackRounded.js new file mode 100644 index 00000000000000..41455bc522c9fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneCallbackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98zM13 11h4c.55 0 1-.45 1-1s-.45-1-1-1h-1.59l4.31-4.31c.39-.39.39-1.02 0-1.41s-1.02-.39-1.41 0L14 7.59V6c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" +}), 'PhoneCallbackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneCallbackSharp.js b/packages/material-ui-icons/lib/esm/PhoneCallbackSharp.js new file mode 100644 index 00000000000000..5ff6ef0379c613 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneCallbackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.73 14.85-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" +}), 'PhoneCallbackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneCallbackTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneCallbackTwoTone.js new file mode 100644 index 00000000000000..b4269bfae22909 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneCallbackTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6zm8.66 13.21c1.2.41 2.48.67 3.8.75v-1.49c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" +}, "1")], 'PhoneCallbackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneDisabled.js b/packages/material-ui-icons/lib/esm/PhoneDisabled.js new file mode 100644 index 00000000000000..bca5f3079dd10f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.34 14.54-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26z" +}), 'PhoneDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneDisabledOutlined.js b/packages/material-ui-icons/lib/esm/PhoneDisabledOutlined.js new file mode 100644 index 00000000000000..9ce8e8cb237aa9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.34 14.54-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zm-6.92-.33c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19zM17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51z" +}), 'PhoneDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneDisabledRounded.js b/packages/material-ui-icons/lib/esm/PhoneDisabledRounded.js new file mode 100644 index 00000000000000..3b97342e1ff4c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.54 17.37c-2.63 2.08-5.89 3.39-9.45 3.61-1.13.07-2.07-.87-2.07-2v-1.73c-.01-1.01.75-1.86 1.76-1.98l2.54-.29c.61-.07 1.21.14 1.64.57l1.84 1.84c.81-.41 1.59-.9 2.31-1.45L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.03-.39 1.42 0L20.49 20.5c.39.39.39 1.02 0 1.41s-1.02.39-1.41 0l-4.54-4.54zm2.85-6.57-1.85-1.85c-.43-.43-.64-1.03-.57-1.64l.29-2.52c.12-1.01.97-1.77 1.99-1.77h1.73c1.13 0 2.07.94 2 2.07-.22 3.57-1.54 6.83-3.62 9.47l-1.43-1.43c.55-.73 1.04-1.51 1.46-2.33z" +}), 'PhoneDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneDisabledSharp.js b/packages/material-ui-icons/lib/esm/PhoneDisabledSharp.js new file mode 100644 index 00000000000000..65d105e09eb10d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.52 17.35C11.39 19.83 7.36 21.22 3 20.97v-5.51l5.27-.61 2.52 2.52c.81-.41 1.58-.9 2.3-1.45L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zm1.39-4.24c.56-.73 1.05-1.51 1.47-2.33l-2.53-2.53.61-5.25h5.51c.25 4.37-1.15 8.4-3.63 11.54l-1.43-1.43z" +}), 'PhoneDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneDisabledTwoTone.js new file mode 100644 index 00000000000000..94195682f8cdae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneDisabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.34 14.54-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zM17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51zM7.6 17.02c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19z" +}), 'PhoneDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneEnabled.js b/packages/material-ui-icons/lib/esm/PhoneEnabled.js new file mode 100644 index 00000000000000..9fe47746f08c41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneEnabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.38 10.79-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59z" +}), 'PhoneEnabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneEnabledOutlined.js b/packages/material-ui-icons/lib/esm/PhoneEnabledOutlined.js new file mode 100644 index 00000000000000..6c6eaa25436b9b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneEnabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51zM7.6 17.02c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19zM16.5 3H20c.55 0 1 .45 1 1 0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1z" +}), 'PhoneEnabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneEnabledRounded.js b/packages/material-ui-icons/lib/esm/PhoneEnabledRounded.js new file mode 100644 index 00000000000000..8000ae5da8c747 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneEnabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4.78 15.27 2.54-.29c.61-.07 1.21.14 1.64.57l1.84 1.84c2.83-1.44 5.15-3.75 6.59-6.59l-1.85-1.85c-.43-.43-.64-1.03-.57-1.64l.29-2.52c.12-1.01.97-1.77 1.99-1.77h1.73c1.13 0 2.07.94 2 2.07-.53 8.54-7.36 15.36-15.89 15.89-1.13.07-2.07-.87-2.07-2v-1.73c-.01-1.01.75-1.86 1.76-1.98z" +}), 'PhoneEnabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneEnabledSharp.js b/packages/material-ui-icons/lib/esm/PhoneEnabledSharp.js new file mode 100644 index 00000000000000..6dca0cd75c0883 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneEnabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3 15.46 5.27-.61 2.52 2.52c2.83-1.44 5.15-3.75 6.59-6.59l-2.53-2.53.61-5.25h5.51C21.55 13.18 13.18 21.55 3 20.97v-5.51z" +}), 'PhoneEnabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneEnabledTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneEnabledTwoTone.js new file mode 100644 index 00000000000000..a331775703f950 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneEnabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4c0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.1-.04.21-.05.31-.05.26 0 .51.1.71.29l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1zM7.6 17.02c-.85.24-1.72.39-2.6.45v1.49c1.32-.09 2.59-.35 3.8-.75l-1.2-1.19zM17.46 5c-.06.89-.21 1.76-.45 2.59l1.2 1.2c.41-1.2.67-2.47.76-3.79h-1.51z" +}), 'PhoneEnabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneForwarded.js b/packages/material-ui-icons/lib/esm/PhoneForwarded.js new file mode 100644 index 00000000000000..eac8847d2a0b49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneForwarded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 11 5-5-5-5v3h-4v4h4v3zm2 4.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z" +}), 'PhoneForwarded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneForwardedOutlined.js b/packages/material-ui-icons/lib/esm/PhoneForwardedOutlined.js new file mode 100644 index 00000000000000..5f9d048b2fe3da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneForwardedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z" +}), 'PhoneForwardedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneForwardedRounded.js b/packages/material-ui-icons/lib/esm/PhoneForwardedRounded.js new file mode 100644 index 00000000000000..c2a2c12d6a6efb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneForwardedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.65 5.65-3.79-3.79c-.32-.32-.86-.1-.86.35V4h-3.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5H18v1.79c0 .45.54.67.85.35l3.79-3.79c.2-.19.2-.51.01-.7zm-3.42 9.61-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" +}), 'PhoneForwardedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneForwardedSharp.js b/packages/material-ui-icons/lib/esm/PhoneForwardedSharp.js new file mode 100644 index 00000000000000..bfd60c6104794b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneForwardedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 11 5-5-5-5v3h-4v4h4zm-4.79 6.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" +}), 'PhoneForwardedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneForwardedTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneForwardedTwoTone.js new file mode 100644 index 00000000000000..f1b98c883ca208 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneForwardedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z" +}, "1")], 'PhoneForwardedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneInTalk.js b/packages/material-ui-icons/lib/esm/PhoneInTalk.js new file mode 100644 index 00000000000000..296a5b1b2d89ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneInTalk.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3z" +}), 'PhoneInTalk'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneInTalkOutlined.js b/packages/material-ui-icons/lib/esm/PhoneInTalkOutlined.js new file mode 100644 index 00000000000000..80d5a86945cc51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneInTalkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z" +}), 'PhoneInTalkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneInTalkRounded.js b/packages/material-ui-icons/lib/esm/PhoneInTalkRounded.js new file mode 100644 index 00000000000000..c9f08339e96d79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneInTalkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.88 5.05c3.18.4 5.67 2.89 6.07 6.07.06.51.49.88.99.88.04 0 .08 0 .12-.01.55-.07.94-.57.87-1.12-.51-4.09-3.72-7.3-7.81-7.81-.55-.06-1.05.33-1.11.88-.07.55.32 1.05.87 1.11zm.38 2.11c-.53-.14-1.08.18-1.22.72s.18 1.08.72 1.22c1.05.27 1.87 1.09 2.15 2.15.12.45.52.75.97.75.08 0 .17-.01.25-.03.53-.14.85-.69.72-1.22-.47-1.77-1.84-3.14-3.59-3.59zm5.97 8.1-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" +}), 'PhoneInTalkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneInTalkSharp.js b/packages/material-ui-icons/lib/esm/PhoneInTalkSharp.js new file mode 100644 index 00000000000000..1445e12f916f1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneInTalkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm-1.79 5.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" +}), 'PhoneInTalkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneInTalkTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneInTalkTwoTone.js new file mode 100644 index 00000000000000..d5cfd5b8a34462 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneInTalkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z" +}, "1")], 'PhoneInTalkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneIphone.js b/packages/material-ui-icons/lib/esm/PhoneIphone.js new file mode 100644 index 00000000000000..57eb5455b02414 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneIphone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" +}), 'PhoneIphone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneIphoneOutlined.js b/packages/material-ui-icons/lib/esm/PhoneIphoneOutlined.js new file mode 100644 index 00000000000000..d1cc69d2e7761d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneIphoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" +}), 'PhoneIphoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneIphoneRounded.js b/packages/material-ui-icons/lib/esm/PhoneIphoneRounded.js new file mode 100644 index 00000000000000..9f50e1d417463b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneIphoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" +}), 'PhoneIphoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneIphoneSharp.js b/packages/material-ui-icons/lib/esm/PhoneIphoneSharp.js new file mode 100644 index 00000000000000..d7b46615694a96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneIphoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 1H5v22h13V1zm-6.5 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" +}), 'PhoneIphoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneIphoneTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneIphoneTwoTone.js new file mode 100644 index 00000000000000..f19bfe7b3cd996 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneIphoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 4h9v14H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z" +}, "1")], 'PhoneIphoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneLocked.js b/packages/material-ui-icons/lib/esm/PhoneLocked.js new file mode 100644 index 00000000000000..74f00b2b572126 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneLocked.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4z" +}), 'PhoneLocked'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneLockedOutlined.js b/packages/material-ui-icons/lib/esm/PhoneLockedOutlined.js new file mode 100644 index 00000000000000..4b7c12100575cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneLockedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" +}), 'PhoneLockedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneLockedRounded.js b/packages/material-ui-icons/lib/esm/PhoneLockedRounded.js new file mode 100644 index 00000000000000..330da76317cfbe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneLockedRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 5v-.89c0-1-.68-1.92-1.66-2.08C17.08 1.82 16 2.79 16 4v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 0h-2V4c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" +}, "1")], 'PhoneLockedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneLockedSharp.js b/packages/material-ui-icons/lib/esm/PhoneLockedSharp.js new file mode 100644 index 00000000000000..626e25d2eb98a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneLockedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.21 17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52zM20 4v-.36c0-1.31-.94-2.5-2.24-2.63C16.26.86 15 2.03 15 3.5V4h-1v6h7V4h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" +}), 'PhoneLockedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneLockedTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneLockedTwoTone.js new file mode 100644 index 00000000000000..3c0afa2d12d30b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneLockedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM20 4v-.5C20 2.12 18.88 1 17.5 1S15 2.12 15 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" +}, "1")], 'PhoneLockedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneMissed.js b/packages/material-ui-icons/lib/esm/PhoneMissed.js new file mode 100644 index 00000000000000..b392e5e36bf594 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneMissed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 5.5 12 11l7-7-1-1-6 6-4.5-4.5H11V3H5v6h1.5V5.5zm17.21 11.17C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z" +}), 'PhoneMissed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneMissedOutlined.js b/packages/material-ui-icons/lib/esm/PhoneMissedOutlined.js new file mode 100644 index 00000000000000..392f46456518ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneMissedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" +}), 'PhoneMissedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneMissedRounded.js b/packages/material-ui-icons/lib/esm/PhoneMissedRounded.js new file mode 100644 index 00000000000000..3d3bafd4ca30ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneMissedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.09 16.2c-6.33-5.59-15.86-5.59-22.18 0-.84.74-.84 2.05-.05 2.84l1.2 1.2c.71.71 1.84.77 2.62.15l1.97-1.57c.47-.37.75-.94.75-1.55V14.7c2.98-.97 6.21-.98 9.2 0v2.58c0 .6.28 1.17.75 1.55l1.96 1.56c.79.62 1.91.56 2.62-.15l1.2-1.2c.8-.79.79-2.1-.04-2.84zM6 9c.55 0 1-.45 1-1V6.43l4.24 4.24c.39.39 1.02.39 1.41 0l5.66-5.66c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-4.95 4.95L8.4 5H10c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z" +}), 'PhoneMissedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneMissedSharp.js b/packages/material-ui-icons/lib/esm/PhoneMissedSharp.js new file mode 100644 index 00000000000000..2c0e2224ab22a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneMissedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.32 16.67c-2.95-2.79-6.93-4.51-11.31-4.51-4.39 0-8.37 1.72-11.31 4.51l-.69.69L3.65 21l3.93-2.72-.01-3.49c1.4-.45 2.9-.7 4.44-.7 1.55 0 3.04.24 4.44.7l-.01 3.49L20.37 21l3.64-3.64c0-.01-.52-.52-.69-.69zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" +}), 'PhoneMissedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneMissedTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneMissedTwoTone.js new file mode 100644 index 00000000000000..d8090ca122f97e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneMissedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.6 17.22c.66.37 1.28.79 1.88 1.27l1.07-1.07c-.91-.75-1.9-1.39-2.95-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" +}, "1")], 'PhoneMissedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneOutlined.js b/packages/material-ui-icons/lib/esm/PhoneOutlined.js new file mode 100644 index 00000000000000..3c9d428b45a3b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" +}), 'PhoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonePaused.js b/packages/material-ui-icons/lib/esm/PhonePaused.js new file mode 100644 index 00000000000000..6af388cbefbe13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonePaused.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3h-2v7h2V3zm3 12.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 3v7h2V3h-2z" +}), 'PhonePaused'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonePausedOutlined.js b/packages/material-ui-icons/lib/esm/PhonePausedOutlined.js new file mode 100644 index 00000000000000..9560edb5de6eb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonePausedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.54 5c.06.88.21 1.75.44 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79h1.51m9.86 12.01c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1zM15 3h2v7h-2zm4 0h2v7h-2z" +}), 'PhonePausedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonePausedRounded.js b/packages/material-ui-icons/lib/esm/PhonePausedRounded.js new file mode 100644 index 00000000000000..a427ab7fbfdd60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonePausedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 3c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm3 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zm.23 11.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" +}), 'PhonePausedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonePausedSharp.js b/packages/material-ui-icons/lib/esm/PhonePausedSharp.js new file mode 100644 index 00000000000000..dae0f5a9cac07e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonePausedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3h2v7h-2zm4 0h2v7h-2zm-5.79 14.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" +}), 'PhonePausedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonePausedTwoTone.js b/packages/material-ui-icons/lib/esm/PhonePausedTwoTone.js new file mode 100644 index 00000000000000..7c533a7db8057f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonePausedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM15 3h2v7h-2zm4 0h2v7h-2z" +}, "1")], 'PhonePausedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneRounded.js b/packages/material-ui-icons/lib/esm/PhoneRounded.js new file mode 100644 index 00000000000000..274cd760c7ff09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.23 15.26-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z" +}), 'PhoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneSharp.js b/packages/material-ui-icons/lib/esm/PhoneSharp.js new file mode 100644 index 00000000000000..bba8561b51e594 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 15.46-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" +}), 'PhoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhoneTwoTone.js b/packages/material-ui-icons/lib/esm/PhoneTwoTone.js new file mode 100644 index 00000000000000..11ccbff4d029b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM5.03 5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.23-.84-.38-1.71-.44-2.6H5.03z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.07 7.57C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02zm7.33 9.45c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.79 8.8c-.41-1.21-.67-2.48-.76-3.8h1.5c.07.89.22 1.76.46 2.59L5.79 8.8z" +}, "1")], 'PhoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Phonelink.js b/packages/material-ui-icons/lib/esm/Phonelink.js new file mode 100644 index 00000000000000..a53d40c28aceb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Phonelink.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" +}), 'Phonelink'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkErase.js b/packages/material-ui-icons/lib/esm/PhonelinkErase.js new file mode 100644 index 00000000000000..5d3c9ff0a29f12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkErase.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 8.2-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" +}), 'PhonelinkErase'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkEraseOutlined.js b/packages/material-ui-icons/lib/esm/PhonelinkEraseOutlined.js new file mode 100644 index 00000000000000..1576206bebf917 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkEraseOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 8.2-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" +}), 'PhonelinkEraseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkEraseRounded.js b/packages/material-ui-icons/lib/esm/PhonelinkEraseRounded.js new file mode 100644 index 00000000000000..79014efa532409 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkEraseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 7.7c-.28-.28-.72-.28-1 0L8 11.2 4.5 7.7c-.28-.28-.72-.28-1 0s-.28.72 0 1L7 12.2l-3.5 3.5c-.28.28-.28.72 0 1s.72.28 1 0L8 13.2l3.5 3.5c.28.28.72.28 1 0s.28-.72 0-1L9 12.2l3.5-3.5c.28-.28.28-.72 0-1zM19 1H9c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z" +}), 'PhonelinkEraseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkEraseSharp.js b/packages/material-ui-icons/lib/esm/PhonelinkEraseSharp.js new file mode 100644 index 00000000000000..0fc050ade2c8a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkEraseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 8.2-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM21 1H7v5h2V4h10v16H9v-2H7v5h14V1z" +}), 'PhonelinkEraseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkEraseTwoTone.js b/packages/material-ui-icons/lib/esm/PhonelinkEraseTwoTone.js new file mode 100644 index 00000000000000..02184b25651ed3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkEraseTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4 17.2 4-4 4 4 1-1-4-4 4-4-1-1-4 4-4-4-1 1 4 4-4 4zM9 23h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2z" +}), 'PhonelinkEraseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkLock.js b/packages/material-ui-icons/lib/esm/PhonelinkLock.js new file mode 100644 index 00000000000000..cde8af4830f344 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkLock.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" +}), 'PhonelinkLock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkLockOutlined.js b/packages/material-ui-icons/lib/esm/PhonelinkLockOutlined.js new file mode 100644 index 00000000000000..96c45808a47d75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkLockOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" +}), 'PhonelinkLockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkLockRounded.js b/packages/material-ui-icons/lib/esm/PhonelinkLockRounded.js new file mode 100644 index 00000000000000..d17384c48197f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkLockRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 11v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'PhonelinkLockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkLockSharp.js b/packages/material-ui-icons/lib/esm/PhonelinkLockSharp.js new file mode 100644 index 00000000000000..48edcdbd756cd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkLockSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM10.8 11V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11H4v6h8v-6h-1.2zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" +}), 'PhonelinkLockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkLockTwoTone.js b/packages/material-ui-icons/lib/esm/PhonelinkLockTwoTone.js new file mode 100644 index 00000000000000..bbf77996fdcbf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkLockTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 7C6.6 7 5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3V9.5C10.8 8.1 9.4 7 8 7zm1.5 4h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11zM21 21V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2z" +}), 'PhonelinkLockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkOff.js b/packages/material-ui-icons/lib/esm/PhonelinkOff.js new file mode 100644 index 00000000000000..7b2ee14fd3fdef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6V4H6.82l2 2H22zM1.92 1.65.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.27-1.27L3.89 3.62 1.92 1.65zM4 6.27 14.73 17H4V6.27zM23 8h-6c-.55 0-1 .45-1 1v4.18l2 2V10h4v7h-2.18l3 3H23c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z" +}), 'PhonelinkOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkOffOutlined.js b/packages/material-ui-icons/lib/esm/PhonelinkOffOutlined.js new file mode 100644 index 00000000000000..1b7a0c9efce9c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6V4H7.39l2 2zm2 13V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM2.06 1.51.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z" +}), 'PhonelinkOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkOffRounded.js b/packages/material-ui-icons/lib/esm/PhonelinkOffRounded.js new file mode 100644 index 00000000000000..85bd2e1a8d56ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 19V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM21 6c.55 0 1-.45 1-1s-.45-1-1-1H7.39l2 2H21zM1.36 2.21c-.39.39-.39 1.02 0 1.41l1.11 1.11C2.18 5.08 2 5.52 2 6v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20h16.23l1.64 1.64c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.77 2.21a.9959.9959 0 0 0-1.41 0zM4 17V6.27L14.73 17H4z" +}), 'PhonelinkOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkOffSharp.js b/packages/material-ui-icons/lib/esm/PhonelinkOffSharp.js new file mode 100644 index 00000000000000..2f3c18f889de8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4.56 4-2.5-2.49L4.56 4zM24 8h-8v4.61l2 2V10h4v7h-1.61l3 3H24zm-2-2V4H7.39l2 2zM2.06 1.51.65 2.92 2 4.27V17H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z" +}), 'PhonelinkOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkOffTwoTone.js b/packages/material-ui-icons/lib/esm/PhonelinkOffTwoTone.js new file mode 100644 index 00000000000000..c29c8ca981372b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 17v-7h-4v4.61L20.39 17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23 8h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93V9c0-.55-.45-1-1-1zm-1-2V4H7.39l2 2zM.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51.65 2.92zM4 6.27 14.73 17H4V6.27z" +}, "1")], 'PhonelinkOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkOutlined.js b/packages/material-ui-icons/lib/esm/PhonelinkOutlined.js new file mode 100644 index 00000000000000..4c1177d4c5da07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" +}), 'PhonelinkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkRing.js b/packages/material-ui-icons/lib/esm/PhonelinkRing.js new file mode 100644 index 00000000000000..088d933600bb58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkRing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.1 7.7-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z" +}), 'PhonelinkRing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkRingOutlined.js b/packages/material-ui-icons/lib/esm/PhonelinkRingOutlined.js new file mode 100644 index 00000000000000..cdb3de3db2e595 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkRingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.1 7.7-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z" +}), 'PhonelinkRingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkRingRounded.js b/packages/material-ui-icons/lib/esm/PhonelinkRingRounded.js new file mode 100644 index 00000000000000..5462cbe18234fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkRingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.63-11.74c-.26-.32-.74-.36-1.04-.06l-.03.03c-.25.25-.26.65-.05.93 1.26 1.64 1.25 3.87-.02 5.57-.21.28-.19.67.05.92l.05.05c.29.29.76.26 1.03-.05 1.8-2.13 1.8-5.19.01-7.39zm-3.21 2.11-.06.06c-.2.2-.26.5-.15.76.21.49.21 1.03 0 1.52-.11.26-.05.56.15.76l.08.08c.32.32.87.25 1.09-.15.49-.89.49-1.94-.01-2.86a.687.687 0 0 0-1.1-.17z" +}), 'PhonelinkRingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkRingSharp.js b/packages/material-ui-icons/lib/esm/PhonelinkRingSharp.js new file mode 100644 index 00000000000000..bdb09cec6311cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkRingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.1 7.7-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM16 1H2v22h14V1zm-2 19H4V4h10v16z" +}), 'PhonelinkRingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkRingTwoTone.js b/packages/material-ui-icons/lib/esm/PhonelinkRingTwoTone.js new file mode 100644 index 00000000000000..5b398f6b37ef89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkRingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 4h10v16H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.1-12.3-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM17 10.8c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3l-1 1z" +}, "1")], 'PhonelinkRingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkRounded.js b/packages/material-ui-icons/lib/esm/PhonelinkRounded.js new file mode 100644 index 00000000000000..05f224f2b88c7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20h11c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H4V7zm19 1h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" +}), 'PhonelinkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkSetup.js b/packages/material-ui-icons/lib/esm/PhonelinkSetup.js new file mode 100644 index 00000000000000..39d7c674fc0276 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkSetup.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.82 12.49c.02-.16.04-.32.04-.49 0-.17-.02-.33-.04-.49l1.08-.82c.1-.07.12-.21.06-.32l-1.03-1.73c-.06-.11-.2-.15-.31-.11l-1.28.5c-.27-.2-.56-.36-.87-.49l-.2-1.33c0-.12-.11-.21-.24-.21H5.98c-.13 0-.24.09-.26.21l-.2 1.32c-.31.12-.6.3-.87.49l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.73c-.06.12-.03.25.07.33l1.08.82c-.02.16-.03.33-.03.49 0 .17.02.33.04.49l-1.09.83c-.1.07-.12.21-.06.32l1.03 1.73c.06.11.2.15.31.11l1.28-.5c.27.2.56.36.87.49l.2 1.32c.01.12.12.21.25.21h2.06c.13 0 .24-.09.25-.21l.2-1.32c.31-.12.6-.3.87-.49l1.28.5c.12.05.25 0 .31-.11l1.03-1.73c.06-.11.04-.24-.06-.32l-1.1-.83zM7 13.75c-.99 0-1.8-.78-1.8-1.75s.81-1.75 1.8-1.75 1.8.78 1.8 1.75S8 13.75 7 13.75zM18 1.01 8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" +}), 'PhonelinkSetup'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkSetupOutlined.js b/packages/material-ui-icons/lib/esm/PhonelinkSetupOutlined.js new file mode 100644 index 00000000000000..15a752d9d7df37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkSetupOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" +}), 'PhonelinkSetupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkSetupRounded.js b/packages/material-ui-icons/lib/esm/PhonelinkSetupRounded.js new file mode 100644 index 00000000000000..df811b4911fa14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkSetupRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" +}), 'PhonelinkSetupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkSetupSharp.js b/packages/material-ui-icons/lib/esm/PhonelinkSetupSharp.js new file mode 100644 index 00000000000000..c22bf9a87de3b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkSetupSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 1v5h2V4h10v16H9v-2H7v5h14V1zm2.5 14.5c.29-.12.55-.29.8-.48l-.02.03 1.41.55 1.27-2.2-1.18-.95-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03 1.18-.95-1.26-2.2-1.41.55.02.03c-.26-.19-.52-.36-.81-.48L9.27 7H6.73L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03L4.3 8.4l-1.27 2.2 1.18.95.02-.03c-.01.16-.04.32-.04.48s.03.32.05.48l-.02-.03-1.18.95 1.27 2.2 1.41-.55-.02-.03c.25.19.51.36.8.48l.23 1.5h2.54l.23-1.5zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" +}), 'PhonelinkSetupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkSetupTwoTone.js b/packages/material-ui-icons/lib/esm/PhonelinkSetupTwoTone.js new file mode 100644 index 00000000000000..bf1e8742fea2be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkSetupTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" +}), 'PhonelinkSetupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkSharp.js b/packages/material-ui-icons/lib/esm/PhonelinkSharp.js new file mode 100644 index 00000000000000..59844fd242f250 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z" +}), 'PhonelinkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhonelinkTwoTone.js b/packages/material-ui-icons/lib/esm/PhonelinkTwoTone.js new file mode 100644 index 00000000000000..8b2719c97011cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhonelinkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 10h4v7h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z" +}, "1")], 'PhonelinkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Photo.js b/packages/material-ui-icons/lib/esm/Photo.js new file mode 100644 index 00000000000000..600b510b43786c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Photo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" +}), 'Photo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoAlbum.js b/packages/material-ui-icons/lib/esm/PhotoAlbum.js new file mode 100644 index 00000000000000..9faac7982b2ed4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoAlbum.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4zm0 15 3-3.86 2.14 2.58 3-3.86L18 19H6z" +}), 'PhotoAlbum'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoAlbumOutlined.js b/packages/material-ui-icons/lib/esm/PhotoAlbumOutlined.js new file mode 100644 index 00000000000000..be735bbce3bbaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoAlbumOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 2v5l-1-.75L9 9V4h2zm7 16H6V4h1v9l3-2.25L13 13V4h5v16zm-6.72-2.04L9.5 15.81 7 19h10l-3.22-4.26z" +}), 'PhotoAlbumOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoAlbumRounded.js b/packages/material-ui-icons/lib/esm/PhotoAlbumRounded.js new file mode 100644 index 00000000000000..569007302d6608 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoAlbumRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4zm.63 14.19 1.99-2.56c.2-.25.58-.26.78-.01l1.74 2.1 2.6-3.34c.2-.26.6-.26.79.01l2.87 3.82c.25.33.01.8-.4.8H7.02c-.41-.01-.65-.49-.39-.82z" +}), 'PhotoAlbumRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoAlbumSharp.js b/packages/material-ui-icons/lib/esm/PhotoAlbumSharp.js new file mode 100644 index 00000000000000..30cc808f237da0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoAlbumSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4zm0 15 3-3.86 2.14 2.58 3-3.86L18 19H6z" +}), 'PhotoAlbumSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoAlbumTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoAlbumTwoTone.js new file mode 100644 index 00000000000000..326a8e97aa2650 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoAlbumTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13 13-3-2.25L7 13V4H6v16h12V4h-5v9zm4 6H7l2.5-3.19 1.78 2.15 2.5-3.22L17 19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16zm-8.5-4.19L7 19h10l-3.22-4.26-2.5 3.22z" +}, "1")], 'PhotoAlbumTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCamera.js b/packages/material-ui-icons/lib/esm/PhotoCamera.js new file mode 100644 index 00000000000000..43a76c8ed36cf3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCamera.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3.2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 2 7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'PhotoCamera'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraBack.js b/packages/material-ui-icons/lib/esm/PhotoCameraBack.js new file mode 100644 index 00000000000000..17907031804916 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraBack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm0 14V7H4v12h16zm-6-7-3 3.72L9 13l-3 4h12l-4-5z" +}), 'PhotoCameraBack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraBackOutlined.js b/packages/material-ui-icons/lib/esm/PhotoCameraBackOutlined.js new file mode 100644 index 00000000000000..a65b8310824097 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraBackOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.25 16 9 13l-3 4h12l-3.75-5z" +}, "1")], 'PhotoCameraBackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraBackRounded.js b/packages/material-ui-icons/lib/esm/PhotoCameraBackRounded.js new file mode 100644 index 00000000000000..bfd7a41f2863df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraBackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.47.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 12H7c-.41 0-.65-.47-.4-.8l2-2.67c.2-.27.6-.27.8 0L11.25 16l2.6-3.47c.2-.27.6-.27.8 0l2.75 3.67c.25.33.01.8-.4.8z" +}), 'PhotoCameraBackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraBackSharp.js b/packages/material-ui-icons/lib/esm/PhotoCameraBackSharp.js new file mode 100644 index 00000000000000..bb13e76d4a5ac6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraBackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM6 17l3-4 2.25 3 3-4L18 17H6z" +}), 'PhotoCameraBackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraBackTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoCameraBackTwoTone.js new file mode 100644 index 00000000000000..2a12afa4db1e9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraBackTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.95 7-1.83-2H9.88L8.05 7H4v12h16V7h-4.05zM6 17l3-4 2.25 3 3-4L18 17H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12zm-8.75-3L9 13l-3 4h12l-3.75-5-3 4z" +}, "1")], 'PhotoCameraBackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraFront.js b/packages/material-ui-icons/lib/esm/PhotoCameraFront.js new file mode 100644 index 00000000000000..97c3c983b972d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraFront.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 10.48 4-3.98v11l-4-3.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v4.48zm-2-.79V6H4v12h12V9.69zM10 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0 1c1.34 0 4 .67 4 2v1H6v-1c0-1.33 2.66-2 4-2z" +}), 'PhotoCameraFront'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraFrontOutlined.js b/packages/material-ui-icons/lib/esm/PhotoCameraFrontOutlined.js new file mode 100644 index 00000000000000..1bde8fc363d4f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraFrontOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "11", + r: "2" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14.78 14.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58C8.48 14.9 8 15.62 8 16.43V17h8v-.57c0-.81-.48-1.53-1.22-1.85z" +}, "2")], 'PhotoCameraFrontOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraFrontRounded.js b/packages/material-ui-icons/lib/esm/PhotoCameraFrontRounded.js new file mode 100644 index 00000000000000..770dd1abd02321 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraFrontRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.47.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58s1.93.21 2.78.58c.74.32 1.22 1.04 1.22 1.85V17z" +}), 'PhotoCameraFrontRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraFrontSharp.js b/packages/material-ui-icons/lib/esm/PhotoCameraFrontSharp.js new file mode 100644 index 00000000000000..0dab27cf93b4d2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraFrontSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.83 5 15 3H9L7.17 5H2v16h20V5h-5.17zM12 9c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58s1.93.21 2.78.58c.74.32 1.22 1.04 1.22 1.85V17z" +}), 'PhotoCameraFrontSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraFrontTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoCameraFrontTwoTone.js new file mode 100644 index 00000000000000..78c0780927c414 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraFrontTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.95 7-1.83-2H9.88L8.05 7H4v12h16V7h-4.05zM12 9c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58s1.93.21 2.78.58c.74.32 1.22 1.04 1.22 1.85V17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l1.83-2h4.24l1.83 2H20v12zm-8-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58C8.48 14.9 8 15.62 8 16.43V17h8v-.57c0-.81-.48-1.53-1.22-1.85z" +}, "1")], 'PhotoCameraFrontTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraOutlined.js b/packages/material-ui-icons/lib/esm/PhotoCameraOutlined.js new file mode 100644 index 00000000000000..6b8fd06aaec819 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.12 4 1.83 2H20v12H4V6h4.05l1.83-2h4.24M15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm-3 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z" +}), 'PhotoCameraOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraRounded.js b/packages/material-ui-icons/lib/esm/PhotoCameraRounded.js new file mode 100644 index 00000000000000..8544af33f608ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'PhotoCameraRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraSharp.js b/packages/material-ui-icons/lib/esm/PhotoCameraSharp.js new file mode 100644 index 00000000000000..6594507b38bacd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 2 7.17 4H2v16h20V4h-5.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" +}, "1")], 'PhotoCameraSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoCameraTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoCameraTwoTone.js new file mode 100644 index 00000000000000..30cd89f438687b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoCameraTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6h-4.05l-1.83-2H9.88L8.05 6H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l1.83-2h4.24l1.83 2H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}, "1")], 'PhotoCameraTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoFilter.js b/packages/material-ui-icons/lib/esm/PhotoFilter.js new file mode 100644 index 00000000000000..07440b6c5fc25c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoFilter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.02 10v9H5V5h9V3H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zM17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12z" +}), 'PhotoFilter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoFilterOutlined.js b/packages/material-ui-icons/lib/esm/PhotoFilterOutlined.js new file mode 100644 index 00000000000000..7d043f65d6a4d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoFilterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" +}), 'PhotoFilterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoFilterRounded.js b/packages/material-ui-icons/lib/esm/PhotoFilterRounded.js new file mode 100644 index 00000000000000..b78a63e1eedb35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoFilterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.02 10.99V18c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h7c.55 0 1-.45 1-1s-.45-1-1-1H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2H19c1.1 0 2-.89 2-2v-8.01c0-.55-.44-.99-.99-.99s-.99.44-.99.99zm-5.77-.24L12.46 9c-.18-.39-.73-.39-.91 0l-.79 1.75-1.76.79c-.39.18-.39.73 0 .91l1.75.79.79 1.76c.18.39.73.39.91 0l.79-1.75 1.76-.79c.39-.18.39-.73 0-.91l-1.75-.8zm4.69-4.69-.6-1.32c-.13-.29-.55-.29-.69 0l-.6 1.32-1.32.6c-.29.13-.29.55 0 .69l1.32.6.6 1.32c.13.29.55.29.69 0l.6-1.32 1.32-.6c.29-.13.29-.55 0-.69l-1.32-.6z" +}), 'PhotoFilterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoFilterSharp.js b/packages/material-ui-icons/lib/esm/PhotoFilterSharp.js new file mode 100644 index 00000000000000..71bb62c1621719 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoFilterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 10v9H4.98V5h9V3H3v18h18V10h-2zm-2 0 .94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94L17 10zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" +}), 'PhotoFilterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoFilterTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoFilterTwoTone.js new file mode 100644 index 00000000000000..f04d584822c023 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoFilterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" +}), 'PhotoFilterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoLibrary.js b/packages/material-ui-icons/lib/esm/PhotoLibrary.js new file mode 100644 index 00000000000000..abc887385d43a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoLibrary.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4 2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" +}), 'PhotoLibrary'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoLibraryOutlined.js b/packages/material-ui-icons/lib/esm/PhotoLibraryOutlined.js new file mode 100644 index 00000000000000..a7f81a6f5bd0ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoLibraryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67 1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z" +}), 'PhotoLibraryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoLibraryRounded.js b/packages/material-ui-icons/lib/esm/PhotoLibraryRounded.js new file mode 100644 index 00000000000000..e60bd97e5d786d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoLibraryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-10.6-3.47 1.63 2.18 2.58-3.22c.2-.25.58-.25.78 0l2.96 3.7c.26.33.03.81-.39.81H9c-.41 0-.65-.47-.4-.8l2-2.67c.2-.26.6-.26.8 0zM2 7v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'PhotoLibraryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoLibrarySharp.js b/packages/material-ui-icons/lib/esm/PhotoLibrarySharp.js new file mode 100644 index 00000000000000..ce25bba171d4c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoLibrarySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18V2H6v16h16zm-11-6 2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z" +}), 'PhotoLibrarySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoLibraryTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoLibraryTwoTone.js new file mode 100644 index 00000000000000..73f253827aea83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoLibraryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm3.5-4.33 1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-2 0H8V4h12v12zm-4.33-5.17-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z" +}, "1")], 'PhotoLibraryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoOutlined.js b/packages/material-ui-icons/lib/esm/PhotoOutlined.js new file mode 100644 index 00000000000000..1b396081bdb880 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86-3 3.87L9 13.14 6 17h12l-3.86-5.14z" +}), 'PhotoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoRounded.js b/packages/material-ui-icons/lib/esm/PhotoRounded.js new file mode 100644 index 00000000000000..4c83ac7fa2a101 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z" +}), 'PhotoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSharp.js b/packages/material-ui-icons/lib/esm/PhotoSharp.js new file mode 100644 index 00000000000000..0be4999445fb2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" +}), 'PhotoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectActual.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActual.js new file mode 100644 index 00000000000000..9c4d3bb3c2d52d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActual.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z" +}), 'PhotoSizeSelectActual'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualOutlined.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualOutlined.js new file mode 100644 index 00000000000000..23478173aaa5f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z" +}), 'PhotoSizeSelectActualOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualRounded.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualRounded.js new file mode 100644 index 00000000000000..c6e71ce5113374 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5.63 16.19l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z" +}), 'PhotoSizeSelectActualRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualSharp.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualSharp.js new file mode 100644 index 00000000000000..19b11e6a571c94 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z" +}), 'PhotoSizeSelectActualSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualTwoTone.js new file mode 100644 index 00000000000000..ca08823cf4ff24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectActualTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3.08 5 3 5.08V19h17.92c.03-.02.06-.06.08-.08V5.08L20.92 5H3.08zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z" +}, "1")], 'PhotoSizeSelectActualTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectLarge.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLarge.js new file mode 100644 index 00000000000000..67786c288eeff2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLarge.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8 2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" +}), 'PhotoSizeSelectLarge'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeOutlined.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeOutlined.js new file mode 100644 index 00000000000000..bdab70216ba236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8 2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" +}), 'PhotoSizeSelectLargeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeRounded.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeRounded.js new file mode 100644 index 00000000000000..93b5848b3ba15c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12v-8c0-1.1-.9-2-2-2H1zm2.63 7.19 1.49-1.91c.2-.25.57-.26.78-.01l1.39 1.67 2.1-2.7c.2-.26.6-.26.79.01l2.22 2.96c.25.33.01.8-.4.8H4.02c-.41-.01-.65-.49-.39-.82z" +}), 'PhotoSizeSelectLargeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeSharp.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeSharp.js new file mode 100644 index 00000000000000..e2e1508284197b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 15h2v2h-2v-2zm0 4h2v2h-2v-2zm0-8h2v2h-2v-2zm-8-8h2v2h-2V3zm8 4h2v2h-2V7zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3H1v2h2V3zm20 0h-2v2h2V3zM9 3h2v2H9V3zM5 3h2v2H5V3zm-4 8v10h14V11H1zm2 8 2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" +}), 'PhotoSizeSelectLargeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeTwoTone.js new file mode 100644 index 00000000000000..d52c7c8712b57c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectLargeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 19h2v2h-2zM1 19c0 1.1.9 2 2 2h12V11H1v8zm4.5-3.21 1.79 2.15 2.5-3.22L13 19H3l2.5-3.21zM17 3h2v2h-2zm4 8h2v2h-2zm0 4h2v2h-2zM3 3C2 3 1 4 1 5h2V3zm18 4h2v2h-2zm-8-4h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zM1 7h2v2H1zm8-4h2v2H9zM5 3h2v2H5zm16 0v2h2c0-1-1-2-2-2z" +}), 'PhotoSizeSelectLargeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmall.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmall.js new file mode 100644 index 00000000000000..301d00e24d6752 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmall.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" +}), 'PhotoSizeSelectSmall'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallOutlined.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallOutlined.js new file mode 100644 index 00000000000000..073a8551146299 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" +}), 'PhotoSizeSelectSmallOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallRounded.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallRounded.js new file mode 100644 index 00000000000000..aefa7965a4ccb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-4c0-1.1-.9-2-2-2H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z" +}), 'PhotoSizeSelectSmallRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallSharp.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallSharp.js new file mode 100644 index 00000000000000..3259bf0287a2bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 15h-2v2h2v-2zm0 4h-2v2h2v-2zm0-8h-2v2h2v-2zm-8-8h-2v2h2V3zm8 4h-2v2h2V7zM1 21h10v-6H1v6zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm4 0h-2v2h2V3zm-4 16h-2v2h2v-2zM3 11H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3zM3 3H1v2h2V3z" +}), 'PhotoSizeSelectSmallSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallTwoTone.js new file mode 100644 index 00000000000000..422eabed6927e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoSizeSelectSmallTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 19h2v2h-2zm-4 0h2v2h-2zM1 19c0 1.1.9 2 2 2h8v-6H1v4zM9 3h2v2H9zM5 3h2v2H5zm12 0h2v2h-2zM1 11h2v2H1zm0-4h2v2H1zm2-4C2 3 1 4 1 5h2V3zm10 0h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zm0-10h2v2h-2zm0-8v2h2c0-1-1-2-2-2zm0 12h2v2h-2zm0-8h2v2h-2z" +}), 'PhotoSizeSelectSmallTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PhotoTwoTone.js b/packages/material-ui-icons/lib/esm/PhotoTwoTone.js new file mode 100644 index 00000000000000..6d5bdb8a29b7a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PhotoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5H5v14h14V5zM6 17l3-3.86 2.14 2.58 3-3.87L18 17H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm6.14 10.72L9 13.14 6 17h12l-3.86-5.14z" +}, "1")], 'PhotoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Piano.js b/packages/material-ui-icons/lib/esm/Piano.js new file mode 100644 index 00000000000000..6f4713950f5d64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Piano.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" +}), 'Piano'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoOff.js b/packages/material-ui-icons/lib/esm/PianoOff.js new file mode 100644 index 00000000000000..9e66935a8271cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" +}), 'PianoOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoOffOutlined.js b/packages/material-ui-icons/lib/esm/PianoOffOutlined.js new file mode 100644 index 00000000000000..20ec6454bc6fc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" +}), 'PianoOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoOffRounded.js b/packages/material-ui-icons/lib/esm/PianoOffRounded.js new file mode 100644 index 00000000000000..e2cbf80370ba80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 21.9c.39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.9.91V19c0 1.1.9 2 2 2h13.17l.9.9c.39.39 1.02.39 1.42 0zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" +}), 'PianoOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoOffSharp.js b/packages/material-ui-icons/lib/esm/PianoOffSharp.js new file mode 100644 index 00000000000000..046ec31229c8a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v4.67h1.25V19zm1.5 0v-4.5H11v-.67l3.25 3.25V19h-4.5zM5.83 3H21v15.17l-2-2V5h-2v9.17l-4-4V5h-2v3.17L5.83 3z" +}), 'PianoOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoOffTwoTone.js b/packages/material-ui-icons/lib/esm/PianoOffTwoTone.js new file mode 100644 index 00000000000000..a8046c78792a01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM13 10.17V5h-2v3.17l2 2zm6 6V5h-2v8.5c0 .19-.07.36-.16.51L19 16.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3 5.83V19c0 1.1.9 2 2 2h13.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v3.67c0 .55.45 1 1 1h.25V19zm1.5 0v-4.5H10c.46 0 .82-.31.94-.73l3.31 3.31V19h-4.5zM11 8.17 5.83 3H19c1.1 0 2 .9 2 2v13.17l-2-2V5h-2v8.5c0 .19-.07.36-.16.51L13 10.17V5h-2v3.17z" +}, "1")], 'PianoOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoOutlined.js b/packages/material-ui-icons/lib/esm/PianoOutlined.js new file mode 100644 index 00000000000000..1df5ba1120f301 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" +}), 'PianoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoRounded.js b/packages/material-ui-icons/lib/esm/PianoRounded.js new file mode 100644 index 00000000000000..e3af3cb174db96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" +}), 'PianoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoSharp.js b/packages/material-ui-icons/lib/esm/PianoSharp.js new file mode 100644 index 00000000000000..a37467cdd0d9b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-8 11.5h1.25V19h-4.5v-4.5H11V5h2v9.5zM5 5h2v9.5h1.25V19H5V5zm14 14h-3.25v-4.5H17V5h2v14z" +}), 'PianoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PianoTwoTone.js b/packages/material-ui-icons/lib/esm/PianoTwoTone.js new file mode 100644 index 00000000000000..344d226a0b2365 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PianoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 14.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 11.5h.25V19h-4.5v-4.5H10c.55 0 1-.45 1-1V5h2v8.5c0 .55.45 1 1 1zM5 5h2v8.5c0 .55.45 1 1 1h.25V19H5V5zm14 14h-3.25v-4.5H16c.55 0 1-.45 1-1V5h2v14z" +}, "1")], 'PianoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureAsPdf.js b/packages/material-ui-icons/lib/esm/PictureAsPdf.js new file mode 100644 index 00000000000000..95c9b176a07eb0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureAsPdf.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z" +}), 'PictureAsPdf'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureAsPdfOutlined.js b/packages/material-ui-icons/lib/esm/PictureAsPdfOutlined.js new file mode 100644 index 00000000000000..202719ef47a137 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureAsPdfOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm12 6V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z" +}), 'PictureAsPdfOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureAsPdfRounded.js b/packages/material-ui-icons/lib/esm/PictureAsPdfRounded.js new file mode 100644 index 00000000000000..07d43e6491fb29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureAsPdfRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V8c0-.55.45-1 1-1H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h2c.83 0 1.5.67 1.5 1.5v3zm4-3.75c0 .41-.34.75-.75.75H19v1h.75c.41 0 .75.34.75.75s-.34.75-.75.75H19v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V8c0-.55.45-1 1-1h1.25c.41 0 .75.34.75.75zM9 9.5h1v-1H9v1zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm11 5.5h1v-3h-1v3z" +}), 'PictureAsPdfRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureAsPdfSharp.js b/packages/material-ui-icons/lib/esm/PictureAsPdfSharp.js new file mode 100644 index 00000000000000..0ab888ebcc38fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureAsPdfSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H6v16h16V2zm-10.5 9H9v2H7.5V7h4v4zm5 .5c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v16h16v-2H4V6zm10 5.5h1v-3h-1v3z" +}), 'PictureAsPdfSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureAsPdfTwoTone.js b/packages/material-ui-icons/lib/esm/PictureAsPdfTwoTone.js new file mode 100644 index 00000000000000..bb4f530cb20306 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureAsPdfTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 9h1v1h-1zm4 0h1v3h-1zm-6 7h12V4H8v12zm9-8h2v1h-1v1h1v1h-1v2h-1V8zm-4 0h2c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-2V8zM9 8h2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v2H9V8z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-4-4V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z" +}, "2")], 'PictureAsPdfTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPicture.js b/packages/material-ui-icons/lib/esm/PictureInPicture.js new file mode 100644 index 00000000000000..d5972055f10b5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPicture.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-8v6h8V7zm2-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" +}), 'PictureInPicture'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureAlt.js b/packages/material-ui-icons/lib/esm/PictureInPictureAlt.js new file mode 100644 index 00000000000000..5fa6e474c8f08f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11h-8v6h8v-6zm4 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 .02H3V4.97h18v14.05z" +}), 'PictureInPictureAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureAltOutlined.js b/packages/material-ui-icons/lib/esm/PictureInPictureAltOutlined.js new file mode 100644 index 00000000000000..c7f54e07006900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z" +}), 'PictureInPictureAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureAltRounded.js b/packages/material-ui-icons/lib/esm/PictureInPictureAltRounded.js new file mode 100644 index 00000000000000..efc6397ea89f4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 11h-6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm5 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-3 .02H4c-.55 0-1-.45-1-1V5.97c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.05c0 .55-.45 1-1 1z" +}), 'PictureInPictureAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureAltSharp.js b/packages/material-ui-icons/lib/esm/PictureInPictureAltSharp.js new file mode 100644 index 00000000000000..42deedbcfbd48c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 11h-8v6h8v-6zm4 10V3H1v18h22zm-2-1.98H3V4.97h18v14.05z" +}), 'PictureInPictureAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureAltTwoTone.js b/packages/material-ui-icons/lib/esm/PictureInPictureAltTwoTone.js new file mode 100644 index 00000000000000..8a195cb5ab804f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 13h4v2h-4z", + opacity: ".3" +}, "1")], 'PictureInPictureAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureOutlined.js b/packages/material-ui-icons/lib/esm/PictureInPictureOutlined.js new file mode 100644 index 00000000000000..64d1e5975ff36c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-8v6h8V7zm-2 4h-4V9h4v2zm4-8H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" +}), 'PictureInPictureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureRounded.js b/packages/material-ui-icons/lib/esm/PictureInPictureRounded.js new file mode 100644 index 00000000000000..375dc022141286 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7h-6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm3-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.98c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1z" +}), 'PictureInPictureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureSharp.js b/packages/material-ui-icons/lib/esm/PictureInPictureSharp.js new file mode 100644 index 00000000000000..c4ba100b27b65b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7h-8v6h8V7zm4-4H1v17.98h22V3zm-2 16.01H3V4.98h18v14.03z" +}), 'PictureInPictureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PictureInPictureTwoTone.js b/packages/material-ui-icons/lib/esm/PictureInPictureTwoTone.js new file mode 100644 index 00000000000000..740a01038c7cb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PictureInPictureTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 7h-8v6h8V7zm-2 4h-4V9h4v2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 9h4v2h-4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z" +}, "2")], 'PictureInPictureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChart.js b/packages/material-ui-icons/lib/esm/PieChart.js new file mode 100644 index 00000000000000..700ec80703047d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z" +}), 'PieChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartOutline.js b/packages/material-ui-icons/lib/esm/PieChartOutline.js new file mode 100644 index 00000000000000..18703114f5c15a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" +}), 'PieChartOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartOutlineOutlined.js b/packages/material-ui-icons/lib/esm/PieChartOutlineOutlined.js new file mode 100644 index 00000000000000..1538cad52c5a41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" +}), 'PieChartOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartOutlineRounded.js b/packages/material-ui-icons/lib/esm/PieChartOutlineRounded.js new file mode 100644 index 00000000000000..a05c03c027f257 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H14c-.55 0-1-.45-1-1V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V14c0-.55.45-1 1-1h5.93c-.45 3.61-3.32 6.48-6.93 6.93z" +}), 'PieChartOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartOutlineSharp.js b/packages/material-ui-icons/lib/esm/PieChartOutlineSharp.js new file mode 100644 index 00000000000000..5eaf244a79119f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" +}), 'PieChartOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/PieChartOutlineTwoTone.js new file mode 100644 index 00000000000000..7d067e1e71886a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-1 17.94c-3.93-.5-7-3.88-7-7.94s3.07-7.44 7-7.93v15.87zm2-.01V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.33 6.93 6.93H13z" +}), 'PieChartOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartOutlined.js b/packages/material-ui-icons/lib/esm/PieChartOutlined.js new file mode 100644 index 00000000000000..8adbceae8f8886 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93zM4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z" +}), 'PieChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartRounded.js b/packages/material-ui-icons/lib/esm/PieChartRounded.js new file mode 100644 index 00000000000000..d06cfbf03f1227 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 3.18v17.64c0 .64-.59 1.12-1.21.98C5.32 20.8 2 16.79 2 12s3.32-8.8 7.79-9.8c.62-.14 1.21.34 1.21.98zm2.03 0v6.81c0 .55.45 1 1 1h6.79c.64 0 1.12-.59.98-1.22-.85-3.76-3.8-6.72-7.55-7.57-.63-.14-1.22.34-1.22.98zm0 10.83v6.81c0 .64.59 1.12 1.22.98 3.76-.85 6.71-3.82 7.56-7.58.14-.62-.35-1.22-.98-1.22h-6.79c-.56.01-1.01.46-1.01 1.01z" +}), 'PieChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartSharp.js b/packages/material-ui-icons/lib/esm/PieChartSharp.js new file mode 100644 index 00000000000000..5d36971ebc85c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z" +}), 'PieChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PieChartTwoTone.js b/packages/material-ui-icons/lib/esm/PieChartTwoTone.js new file mode 100644 index 00000000000000..fc339bafcfb112 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PieChartTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 12c0 4.07 3.06 7.44 7 7.93V4.07C7.06 4.56 4 7.93 4 12zm9 7.93c3.61-.45 6.48-3.32 6.93-6.93H13v6.93zm0-15.86V11h6.93c-.45-3.61-3.32-6.48-6.93-6.93z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.86-7-7.93s3.06-7.44 7-7.93v15.86zm2 0V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.32 6.93 6.93H13z" +}, "1")], 'PieChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pin.js b/packages/material-ui-icons/lib/esm/Pin.js new file mode 100644 index 00000000000000..af4aa8035b7429 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.64 15H6.49v-4.5l-.9.66-.58-.89L6.77 9h.87v6zm5.86 0H9.61v-1.02c1.07-1.07 1.77-1.77 2.13-2.15.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.52 0-.8.39-.9.72l-1.01-.42c.01-.02.18-.76 1-1.15.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h2.37V15zm5.25-.85c-.08.13-.56.85-1.76.85-.04 0-1.6.08-2.05-1.51l1.03-.41c.03.1.19.86 1.02.86.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79h-.5v-1h.46c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.5 0-.74.32-.85.64l-.99-.41C15.2 9.9 15.68 9 16.94 9c1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76z" +}), 'Pin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinDrop.js b/packages/material-ui-icons/lib/esm/PinDrop.js new file mode 100644 index 00000000000000..64067f473ec548 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinDrop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 8c0-3.31-2.69-6-6-6S6 4.69 6 8c0 4.5 6 11 6 11s6-6.5 6-11zm-8 0c0-1.1.9-2 2-2s2 .9 2 2-.89 2-2 2c-1.1 0-2-.9-2-2zM5 20v2h14v-2H5z" +}), 'PinDrop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinDropOutlined.js b/packages/material-ui-icons/lib/esm/PinDropOutlined.js new file mode 100644 index 00000000000000..f2c752ee26d740 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinDropOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zM5 20h14v2H5v-2z" +}, "1")], 'PinDropOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinDropRounded.js b/packages/material-ui-icons/lib/esm/PinDropRounded.js new file mode 100644 index 00000000000000..3c393e9f218cd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinDropRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 20h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm6-13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-5c3.27 0 7 2.46 7 7.15 0 2.98-2.13 6.12-6.39 9.39-.36.28-.86.28-1.22 0C7.13 15.26 5 12.13 5 9.15 5 4.46 8.73 2 12 2z" +}), 'PinDropRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinDropSharp.js b/packages/material-ui-icons/lib/esm/PinDropSharp.js new file mode 100644 index 00000000000000..d2e2719898bc21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinDropSharp.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M5 20h14v2H5v-2zm7-13c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 1 0 0-4zm0-5c3.27 0 7 2.46 7 7.15 0 3.12-2.33 6.41-7 9.85-4.67-3.44-7-6.73-7-9.85C5 4.46 8.73 2 12 2z" +}), 'PinDropSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinDropTwoTone.js b/packages/material-ui-icons/lib/esm/PinDropTwoTone.js new file mode 100644 index 00000000000000..8069e114de68aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinDropTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12 3C9.19 3 6 5.11 6 9.13c0 2.68 2 5.49 6 8.44 4-2.95 6-5.77 6-8.44C18 5.11 14.81 3 12 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM5 20h14v2H5v-2z" +}, "2")], 'PinDropTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinOutlined.js b/packages/material-ui-icons/lib/esm/PinOutlined.js new file mode 100644 index 00000000000000..d9f7a24b434885 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.49 10.5V15h1.15V9h-.87l-1.76 1.27.58.89zm4.98-.45c.5 0 .81.32.81.72 0 .37-.14.64-.54 1.06-.36.38-1.06 1.08-2.13 2.15V15h3.89v-.99h-2.37l-.03-.05c.68-.68 1.15-1.14 1.4-1.39.61-.6.92-1.22.92-1.86 0-.24-.05-1.04-.91-1.48-.47-.23-1.26-.36-1.95-.03-.82.39-.99 1.13-1 1.15l1.01.42c.1-.33.38-.72.9-.72zm5.52 3.89c-.83 0-.99-.76-1.02-.86l-1.03.41c.45 1.59 2.01 1.51 2.05 1.51 1.2 0 1.68-.72 1.76-.85.32-.49.36-1.24-.01-1.76-.17-.24-.4-.41-.68-.52v-.07c.2-.1.37-.26.52-.48.26-.41.31-1.07-.02-1.57-.08-.11-.53-.75-1.62-.75-1.26 0-1.74.9-1.85 1.24l.99.41c.11-.32.35-.64.85-.64.44 0 .75.26.75.65 0 .58-.55.72-.88.72h-.46v1h.5c.56 0 1.04.24 1.04.79 0 .49-.48.77-.89.77z" +}, "1")], 'PinOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinRounded.js b/packages/material-ui-icons/lib/esm/PinRounded.js new file mode 100644 index 00000000000000..b6d0d208b3e756 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.64 14.47c0 .29-.24.53-.53.53h-.09c-.29 0-.53-.24-.53-.53V10.5l-.45.33c-.24.18-.59.12-.76-.14-.15-.24-.1-.55.13-.72l1.19-.85c.11-.08.24-.12.38-.12.36 0 .66.29.66.66v4.81zm5.37.53h-2.67c-.4 0-.72-.32-.72-.72 0-.19.08-.38.21-.51.95-.95 1.58-1.58 1.92-1.94.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.34 0-.57.16-.72.37-.15.2-.41.26-.64.16-.34-.14-.45-.57-.22-.85.15-.19.37-.38.67-.53.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h1.88c.27 0 .49.22.49.49s-.23.5-.5.5zm5.74-.85c-.08.13-.56.85-1.76.85-.03 0-1.23.06-1.83-.98-.15-.26-.04-.6.24-.71l.12-.05c.22-.09.47-.01.59.19.14.24.39.49.88.49.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79-.27 0-.49-.23-.49-.5 0-.26.2-.47.45-.49v-.01c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.32 0-.53.13-.67.3-.14.18-.37.26-.58.17l-.08-.03c-.3-.12-.4-.5-.2-.75.27-.35.76-.7 1.54-.7 1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76z" +}), 'PinRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinSharp.js b/packages/material-ui-icons/lib/esm/PinSharp.js new file mode 100644 index 00000000000000..e715f79ef7418b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zM7.64 15H6.49v-4.5l-.9.66-.58-.89L6.77 9h.87v6zm5.86 0H9.61v-1.02c1.07-1.07 1.77-1.77 2.13-2.15.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.52 0-.8.39-.9.72l-1.01-.42c.01-.02.18-.76 1-1.15.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h2.37V15zm5.25-.85c-.08.13-.56.85-1.76.85-.04 0-1.6.08-2.05-1.51l1.03-.41c.03.1.19.86 1.02.86.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79h-.5v-1h.46c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.5 0-.74.32-.85.64l-.99-.41C15.2 9.9 15.68 9 16.94 9c1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76z" +}), 'PinSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PinTwoTone.js b/packages/material-ui-icons/lib/esm/PinTwoTone.js new file mode 100644 index 00000000000000..95d52391005a39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PinTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zm12.84-5.62h-.5v-1h.46c.33 0 .88-.14.88-.72 0-.39-.31-.65-.75-.65-.5 0-.74.32-.85.64l-.99-.41C15.2 9.9 15.68 9 16.94 9c1.09 0 1.54.64 1.62.75.33.5.28 1.16.02 1.57-.15.22-.32.38-.52.48v.07c.28.11.51.28.68.52.37.52.33 1.27.01 1.76-.08.13-.56.85-1.76.85-.04 0-1.6.08-2.05-1.51l1.03-.41c.02.1.19.86 1.02.86.41 0 .89-.28.89-.77 0-.55-.48-.79-1.04-.79zM10.56 9.2c.69-.33 1.48-.2 1.95.03.86.44.91 1.24.91 1.48 0 .64-.31 1.26-.92 1.86-.25.25-.72.71-1.4 1.39l.03.05h2.37V15H9.61v-1.02c1.07-1.07 1.77-1.77 2.13-2.15.4-.42.54-.69.54-1.06 0-.4-.31-.72-.81-.72-.52 0-.8.39-.9.72l-1.01-.42c.01-.02.18-.76 1-1.15zM6.77 9h.87v6H6.49v-4.5l-.9.66-.58-.89L6.77 9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6.49 10.5V15h1.15V9h-.87l-1.76 1.27.58.89zm4.98-.45c.5 0 .81.32.81.72 0 .37-.14.64-.54 1.06-.36.38-1.06 1.08-2.13 2.15V15h3.89v-.99h-2.37l-.03-.05c.68-.68 1.15-1.14 1.4-1.39.61-.6.92-1.22.92-1.86 0-.24-.05-1.04-.91-1.48-.47-.23-1.26-.36-1.95-.03-.82.39-.99 1.13-1 1.15l1.01.42c.1-.33.38-.72.9-.72zm5.52 3.89c-.83 0-.99-.76-1.02-.86l-1.03.41c.45 1.59 2.01 1.51 2.05 1.51 1.2 0 1.68-.72 1.76-.85.32-.49.36-1.24-.01-1.76-.17-.24-.4-.41-.68-.52v-.07c.2-.1.37-.26.52-.48.26-.41.31-1.07-.02-1.57-.08-.11-.53-.75-1.62-.75-1.26 0-1.74.9-1.85 1.24l.99.41c.11-.32.35-.64.85-.64.44 0 .75.26.75.65 0 .58-.55.72-.88.72h-.46v1h.5c.56 0 1.04.24 1.04.79 0 .49-.48.77-.89.77z" +}, "2")], 'PinTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pinterest.js b/packages/material-ui-icons/lib/esm/Pinterest.js new file mode 100644 index 00000000000000..eba127001ca101 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pinterest.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.04 21.54c.96.29 1.93.46 2.96.46a10 10 0 0 0 10-10A10 10 0 0 0 12 2 10 10 0 0 0 2 12c0 4.25 2.67 7.9 6.44 9.34-.09-.78-.18-2.07 0-2.96l1.15-4.94s-.29-.58-.29-1.5c0-1.38.86-2.41 1.84-2.41.86 0 1.26.63 1.26 1.44 0 .86-.57 2.09-.86 3.27-.17.98.52 1.84 1.52 1.84 1.78 0 3.16-1.9 3.16-4.58 0-2.4-1.72-4.04-4.19-4.04-2.82 0-4.48 2.1-4.48 4.31 0 .86.28 1.73.74 2.3.09.06.09.14.06.29l-.29 1.09c0 .17-.11.23-.28.11-1.28-.56-2.02-2.38-2.02-3.85 0-3.16 2.24-6.03 6.56-6.03 3.44 0 6.12 2.47 6.12 5.75 0 3.44-2.13 6.2-5.18 6.2-.97 0-1.92-.52-2.26-1.13l-.67 2.37c-.23.86-.86 2.01-1.29 2.7v-.03z" +}), 'Pinterest'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PivotTableChart.js b/packages/material-ui-icons/lib/esm/PivotTableChart.js new file mode 100644 index 00000000000000..8693bd6e6900aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PivotTableChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8h11V5c0-1.1-.9-2-2-2h-9v5zM3 8h5V3H5c-1.1 0-2 .9-2 2v3zm2 13h3V10H3v9c0 1.1.9 2 2 2zm8 1-4-4 4-4zm1-9 4-4 4 4zm.58 6H13v-2h1.58c1.33 0 2.42-1.08 2.42-2.42V13h2v1.58c0 2.44-1.98 4.42-4.42 4.42z" +}), 'PivotTableChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PivotTableChartOutlined.js b/packages/material-ui-icons/lib/esm/PivotTableChartOutlined.js new file mode 100644 index 00000000000000..eaab608e9d28f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PivotTableChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5c0-1.1-.9-2-2-2h-9v5h11V5zM3 19c0 1.1.9 2 2 2h3V10H3v9zM3 5v3h5V3H5c-1.1 0-2 .9-2 2zm15 3.99L14 13l1.41 1.41 1.59-1.6V15c0 1.1-.9 2-2 2h-2.17l1.59-1.59L13 14l-4 4 4 4 1.41-1.41L12.83 19H15c2.21 0 4-1.79 4-4v-2.18l1.59 1.6L22 13l-4-4.01z" +}), 'PivotTableChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PivotTableChartRounded.js b/packages/material-ui-icons/lib/esm/PivotTableChartRounded.js new file mode 100644 index 00000000000000..522737807a5439 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PivotTableChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5c0-1.1-.9-2-2-2h-9v5h11V5zM3 19c0 1.1.9 2 2 2h3V10H3v9zM3 5v3h5V3H5c-1.1 0-2 .9-2 2zm14.65 4.35-2.79 2.79c-.32.32-.1.86.35.86H17v2c0 1.1-.9 2-2 2h-2v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.35V19h2c2.21 0 4-1.79 4-4v-2h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z" +}), 'PivotTableChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PivotTableChartSharp.js b/packages/material-ui-icons/lib/esm/PivotTableChartSharp.js new file mode 100644 index 00000000000000..2d66c0f4d2f219 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PivotTableChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3h11v5H10zm-7 7h5v11H3zm0-7h5v5H3zm15 6-4 4h3v4h-4v-3l-4 4 4 4v-3h6v-6h3z" +}), 'PivotTableChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PivotTableChartTwoTone.js b/packages/material-ui-icons/lib/esm/PivotTableChartTwoTone.js new file mode 100644 index 00000000000000..6ee97827a54fa7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PivotTableChartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5c0-1.1-.9-2-2-2h-9v5h11V5zM3 19c0 1.1.9 2 2 2h3V10H3v9zM3 5v3h5V3H5c-1.1 0-2 .9-2 2zm15 4-4 4h3v2c0 1.1-.9 2-2 2h-2v-3l-4 4 4 4v-3h2c2.21 0 4-1.79 4-4v-2h3l-4-4z" +}), 'PivotTableChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Place.js b/packages/material-ui-icons/lib/esm/Place.js new file mode 100644 index 00000000000000..7d95202caa3167 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Place.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'Place'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaceOutlined.js b/packages/material-ui-icons/lib/esm/PlaceOutlined.js new file mode 100644 index 00000000000000..a0e768eae37ee3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" +}), 'PlaceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaceRounded.js b/packages/material-ui-icons/lib/esm/PlaceRounded.js new file mode 100644 index 00000000000000..359683eeebc4fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'PlaceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaceSharp.js b/packages/material-ui-icons/lib/esm/PlaceSharp.js new file mode 100644 index 00000000000000..1ef1ed672bf54b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0-10c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2z" +}), 'PlaceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaceTwoTone.js b/packages/material-ui-icons/lib/esm/PlaceTwoTone.js new file mode 100644 index 00000000000000..aee11e5d9650a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2zm6 8.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'PlaceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Plagiarism.js b/packages/material-ui-icons/lib/esm/Plagiarism.js new file mode 100644 index 00000000000000..da0050a662bdd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Plagiarism.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm1.04 17.45-1.88-1.88c-1.33.71-3.01.53-4.13-.59-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.12 1.12 1.31 2.8.59 4.13l1.88 1.88-1.41 1.41zM13 9V3.5L18.5 9H13z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11.5", + cy: "14.5", + r: "1.5" +}, "1")], 'Plagiarism'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlagiarismOutlined.js b/packages/material-ui-icons/lib/esm/PlagiarismOutlined.js new file mode 100644 index 00000000000000..fc89d3ea3f7cfd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlagiarismOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.03 11.03c-1.37 1.37-1.37 3.58 0 4.95 1.12 1.12 2.8 1.31 4.13.59l1.88 1.88 1.41-1.41-1.88-1.88c.71-1.33.53-3.01-.59-4.13-1.37-1.37-3.59-1.37-4.95 0zm3.53 3.53c-.59.59-1.54.59-2.12 0-.59-.59-.59-1.54 0-2.12.59-.59 1.54-.59 2.12 0 .59.59.59 1.53 0 2.12z" +}, "1")], 'PlagiarismOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlagiarismRounded.js b/packages/material-ui-icons/lib/esm/PlagiarismRounded.js new file mode 100644 index 00000000000000..3e6b776bc1a5ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlagiarismRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zm-3.67 11.33c-.39.39-1.02.39-1.41 0l-1.18-1.18c-1.33.71-3.01.53-4.13-.59-1.52-1.52-1.35-4.08.5-5.37 1.16-.81 2.78-.81 3.95 0 1.55 1.08 1.9 3.04 1.09 4.55l1.18 1.18c.39.39.39 1.02 0 1.41zM14 9c-.55 0-1-.45-1-1V3.5L18.5 9H14z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11.5", + cy: "14.5", + r: "1.5" +}, "1")], 'PlagiarismRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlagiarismSharp.js b/packages/material-ui-icons/lib/esm/PlagiarismSharp.js new file mode 100644 index 00000000000000..38786d8fe001ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlagiarismSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "11.5", + cy: "14.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm1.04 17.45-1.88-1.88c-1.33.71-3.01.53-4.13-.59-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.12 1.12 1.31 2.8.59 4.13l1.88 1.88-1.41 1.41zM13 9V3.5L18.5 9H13z" +}, "1")], 'PlagiarismSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlagiarismTwoTone.js b/packages/material-ui-icons/lib/esm/PlagiarismTwoTone.js new file mode 100644 index 00000000000000..a88968e4041a8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlagiarismTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 4H6v16h12V9h-5V4zm.97 7.03c1.12 1.12 1.31 2.8.59 4.13l1.88 1.88-1.41 1.41-1.88-1.88c-1.33.71-3.01.53-4.13-.59-1.37-1.37-1.37-3.58 0-4.95s3.59-1.37 4.95 0z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11.5", + cy: "13.5", + r: "1.5", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M9.03 11.03c-1.37 1.37-1.37 3.58 0 4.95 1.12 1.12 2.8 1.31 4.13.59l1.88 1.88 1.41-1.41-1.88-1.88c.71-1.33.53-3.01-.59-4.13-1.37-1.37-3.59-1.37-4.95 0zm3.53 3.53c-.59.59-1.54.59-2.12 0-.59-.59-.59-1.54 0-2.12.59-.59 1.54-.59 2.12 0 .59.59.59 1.53 0 2.12z" +}, "3")], 'PlagiarismTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayArrow.js b/packages/material-ui-icons/lib/esm/PlayArrow.js new file mode 100644 index 00000000000000..c01ed3d69f5062 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayArrow.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 5v14l11-7z" +}), 'PlayArrow'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayArrowOutlined.js b/packages/material-ui-icons/lib/esm/PlayArrowOutlined.js new file mode 100644 index 00000000000000..382e20d2a07198 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayArrowOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8.64 15.27 12 10 15.36V8.64M8 5v14l11-7L8 5z" +}), 'PlayArrowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayArrowRounded.js b/packages/material-ui-icons/lib/esm/PlayArrowRounded.js new file mode 100644 index 00000000000000..f978865453a065 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayArrowRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 6.82v10.36c0 .79.87 1.27 1.54.84l8.14-5.18c.62-.39.62-1.29 0-1.69L9.54 5.98C8.87 5.55 8 6.03 8 6.82z" +}), 'PlayArrowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayArrowSharp.js b/packages/material-ui-icons/lib/esm/PlayArrowSharp.js new file mode 100644 index 00000000000000..d119302fce4d50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayArrowSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 5v14l11-7L8 5z" +}), 'PlayArrowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayArrowTwoTone.js b/packages/material-ui-icons/lib/esm/PlayArrowTwoTone.js new file mode 100644 index 00000000000000..f8fc73a2eb8884 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayArrowTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 8.64v6.72L15.27 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m8 19 11-7L8 5v14zm2-10.36L15.27 12 10 15.36V8.64z" +}, "1")], 'PlayArrowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircle.js b/packages/material-ui-icons/lib/esm/PlayCircle.js new file mode 100644 index 00000000000000..05388ff7aeaf10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 16.5v-9l7 4.5-7 4.5z" +}), 'PlayCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilled.js b/packages/material-ui-icons/lib/esm/PlayCircleFilled.js new file mode 100644 index 00000000000000..c7826c56912dc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" +}), 'PlayCircleFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledOutlined.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledOutlined.js new file mode 100644 index 00000000000000..6579f07f7b2fd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" +}), 'PlayCircleFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledRounded.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledRounded.js new file mode 100644 index 00000000000000..8b7d93cb918a22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 13.5v-7c0-.41.47-.65.8-.4l4.67 3.5c.27.2.27.6 0 .8l-4.67 3.5c-.33.25-.8.01-.8-.4z" +}), 'PlayCircleFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledSharp.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledSharp.js new file mode 100644 index 00000000000000..6dfd009e4a948f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" +}), 'PlayCircleFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledTwoTone.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledTwoTone.js new file mode 100644 index 00000000000000..55676986ea5bd8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zM10 7.5l6 4.5-6 4.5v-9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8zm-2 3.5v9l6-4.5z" +}, "1")], 'PlayCircleFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledWhite.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhite.js new file mode 100644 index 00000000000000..394f3323044a98 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhite.js @@ -0,0 +1,7 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + transform: "scale(0.5, 0.5)", + d: "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm-4 29V15l12 9-12 9z" +}), 'PlayCircleFilledWhite'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteOutlined.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteOutlined.js new file mode 100644 index 00000000000000..4e59cd4a4726f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteOutlined.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-2-3.5l6-4.5-6-4.5z" +}), 'PlayCircleFilledWhiteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteRounded.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteRounded.js new file mode 100644 index 00000000000000..0bcdaf9cab358c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteRounded.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 13.5v-7c0-.41.47-.65.8-.4l4.67 3.5c.27.2.27.6 0 .8l-4.67 3.5c-.33.25-.8.01-.8-.4z" +}), 'PlayCircleFilledWhiteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteSharp.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteSharp.js new file mode 100644 index 00000000000000..862e7ac9ae65bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteSharp.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" +}), 'PlayCircleFilledWhiteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteTwoTone.js b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteTwoTone.js new file mode 100644 index 00000000000000..c1ffc85adefa5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleFilledWhiteTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zM10 7.5l6 4.5-6 4.5v-9z", + opacity: ".3" + }), /*#__PURE__*/_jsx("path", { + d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8zm-2 3.5v9l6-4.5z" + })] +}), 'PlayCircleFilledWhiteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleOutline.js b/packages/material-ui-icons/lib/esm/PlayCircleOutline.js new file mode 100644 index 00000000000000..115ff052fcd9ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 16.5 6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PlayCircleOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleOutlineOutlined.js b/packages/material-ui-icons/lib/esm/PlayCircleOutlineOutlined.js new file mode 100644 index 00000000000000..4fcb9408f5f0a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 16.5 6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PlayCircleOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleOutlineRounded.js b/packages/material-ui-icons/lib/esm/PlayCircleOutlineRounded.js new file mode 100644 index 00000000000000..e75cfc822f3cb0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.8 15.9 4.67-3.5c.27-.2.27-.6 0-.8L10.8 8.1c-.33-.25-.8-.01-.8.4v7c0 .41.47.65.8.4zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PlayCircleOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleOutlineSharp.js b/packages/material-ui-icons/lib/esm/PlayCircleOutlineSharp.js new file mode 100644 index 00000000000000..fe4dd17b185a6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 16.5 6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PlayCircleOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/PlayCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..af89a25096cd9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10 16.5 6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'PlayCircleOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleOutlined.js b/packages/material-ui-icons/lib/esm/PlayCircleOutlined.js new file mode 100644 index 00000000000000..5cd5be0d5ffb3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-2.5-3.5 7-4.5-7-4.5v9z" +}), 'PlayCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleRounded.js b/packages/material-ui-icons/lib/esm/PlayCircleRounded.js new file mode 100644 index 00000000000000..4e4928afd41bc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 14.67V9.33c0-.79.88-1.27 1.54-.84l4.15 2.67c.61.39.61 1.29 0 1.68l-4.15 2.67c-.66.43-1.54-.05-1.54-.84z" +}), 'PlayCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleSharp.js b/packages/material-ui-icons/lib/esm/PlayCircleSharp.js new file mode 100644 index 00000000000000..ee93043c300252 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 16.5v-9l7 4.5-7 4.5z" +}), 'PlayCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayCircleTwoTone.js b/packages/material-ui-icons/lib/esm/PlayCircleTwoTone.js new file mode 100644 index 00000000000000..e4c55d33f25461 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayCircleTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM9.5 16.5v-9l7 4.5-7 4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m9.5 16.5 7-4.5-7-4.5z" +}, "2")], 'PlayCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayDisabled.js b/packages/material-ui-icons/lib/esm/PlayDisabled.js new file mode 100644 index 00000000000000..bb0c29038000a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 5.19V5l11 7-2.55 1.63L8 5.19zm12 14.54-5.11-5.11L8 7.73 4.27 4 3 5.27l5 5V19l5.33-3.4 5.4 5.4L20 19.73z" +}), 'PlayDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayDisabledOutlined.js b/packages/material-ui-icons/lib/esm/PlayDisabledOutlined.js new file mode 100644 index 00000000000000..4b1d443d7effbb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.45 13.62 19 12 8 5v.17zM2.81 2.81 1.39 4.22 8 10.83V19l4.99-3.18 6.78 6.78 1.41-1.41L2.81 2.81zM10 15.36v-2.53l1.55 1.55-1.55.98z" +}), 'PlayDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayDisabledRounded.js b/packages/material-ui-icons/lib/esm/PlayDisabledRounded.js new file mode 100644 index 00000000000000..ac998641882209 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.1 3.51c-.39.39-.39 1.02 0 1.41l5.9 5.9v6.35c0 .79.87 1.27 1.54.84l3.45-2.2 6.08 6.08c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51a.9959.9959 0 0 0-1.41 0zm15.58 9.33c.62-.39.62-1.29 0-1.69L9.54 5.98c-.27-.17-.57-.19-.84-.11l7.75 7.75 1.23-.78z" +}), 'PlayDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayDisabledSharp.js b/packages/material-ui-icons/lib/esm/PlayDisabledSharp.js new file mode 100644 index 00000000000000..af4d6e6504978d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.45 13.62 19 12 8 5v.17zM2.81 2.81 1.39 4.22 8 10.83V19l4.99-3.18 6.79 6.79 1.41-1.42z" +}), 'PlayDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/PlayDisabledTwoTone.js new file mode 100644 index 00000000000000..58b7ebe1183f7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayDisabledTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 12.83v2.53l1.55-.99z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22 8 10.83V19l4.99-3.18 6.78 6.78 1.41-1.41L2.81 2.81zM10 15.36v-2.53l1.55 1.55-1.55.98zM19 12 8 5v.17l8.45 8.45L19 12z" +}, "1")], 'PlayDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayForWork.js b/packages/material-ui-icons/lib/esm/PlayForWork.js new file mode 100644 index 00000000000000..d66959a001a85a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayForWork.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" +}), 'PlayForWork'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayForWorkOutlined.js b/packages/material-ui-icons/lib/esm/PlayForWorkOutlined.js new file mode 100644 index 00000000000000..37eb2bc555d08d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayForWorkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" +}), 'PlayForWorkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayForWorkRounded.js b/packages/material-ui-icons/lib/esm/PlayForWorkRounded.js new file mode 100644 index 00000000000000..5d6674eb9096b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayForWorkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6v4.59H8.71c-.45 0-.67.54-.35.85l3.29 3.29c.2.2.51.2.71 0l3.29-3.29c.31-.31.09-.85-.35-.85H13V6c0-.55-.45-1-1-1s-1 .45-1 1zm-3.9 8c-.61 0-1.11.55-.99 1.15C6.65 17.91 9.08 20 12 20s5.35-2.09 5.89-4.85c.12-.6-.38-1.15-.99-1.15-.49 0-.88.35-.98.83C15.53 16.64 13.93 18 12 18s-3.53-1.36-3.91-3.17c-.1-.48-.5-.83-.99-.83z" +}), 'PlayForWorkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayForWorkSharp.js b/packages/material-ui-icons/lib/esm/PlayForWorkSharp.js new file mode 100644 index 00000000000000..27402aa624360e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayForWorkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" +}), 'PlayForWorkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayForWorkTwoTone.js b/packages/material-ui-icons/lib/esm/PlayForWorkTwoTone.js new file mode 100644 index 00000000000000..6ef0a366ebb329 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayForWorkTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" +}), 'PlayForWorkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayLesson.js b/packages/material-ui-icons/lib/esm/PlayLesson.js new file mode 100644 index 00000000000000..b4cf37ccb0ebba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayLesson.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 11c.34 0 .67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM7 11V4h5v7L9.5 9.5 7 11z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" +}, "1")], 'PlayLesson'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayLessonOutlined.js b/packages/material-ui-icons/lib/esm/PlayLessonOutlined.js new file mode 100644 index 00000000000000..8408c2ff426636 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayLessonOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 20V4h2v7l2.5-1.5L12 11V4h5v7.08c.33-.05.66-.08 1-.08s.67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.42-.6-.75-1.28-.97-2H5zm13-7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" +}), 'PlayLessonOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayLessonRounded.js b/packages/material-ui-icons/lib/esm/PlayLessonRounded.js new file mode 100644 index 00000000000000..bd2e22bf912be5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayLessonRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 11c.34 0 .67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zm-10.24-.45c-.34.2-.76-.04-.76-.43V4h5v6.12c0 .39-.42.63-.76.43L9.5 9.5l-1.74 1.05z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 6.6v-3.2c0-.39.43-.63.76-.42l2.56 1.6c.31.2.31.65 0 .85l-2.56 1.6c-.33.2-.76-.04-.76-.43z" +}, "1")], 'PlayLessonRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayLessonSharp.js b/packages/material-ui-icons/lib/esm/PlayLessonSharp.js new file mode 100644 index 00000000000000..226aee12108e03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayLessonSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 11c.34 0 .67.03 1 .08V2H3v20h9.26c-.79-1.13-1.26-2.51-1.26-4 0-3.87 3.13-7 7-7zM7 11V4h5v7L9.5 9.5 7 11z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" +}, "1")], 'PlayLessonSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlayLessonTwoTone.js b/packages/material-ui-icons/lib/esm/PlayLessonTwoTone.js new file mode 100644 index 00000000000000..07985650fcb458 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlayLessonTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4v7L9.5 9.5 7 11V4H5v16h6.29c-.19-.63-.29-1.3-.29-2 0-3.53 2.61-6.43 6-6.92V4h-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 20V4h2v7l2.5-1.5L12 11V4h5v7.08c.33-.05.66-.08 1-.08s.67.03 1 .08V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h7.26c-.42-.6-.75-1.28-.97-2H5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" +}, "2")], 'PlayLessonTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAdd.js b/packages/material-ui-icons/lib/esm/PlaylistAdd.js new file mode 100644 index 00000000000000..b85c5ed8c680ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAdd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" +}), 'PlaylistAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddCheck.js b/packages/material-ui-icons/lib/esm/PlaylistAddCheck.js new file mode 100644 index 00000000000000..444e318ebcf26d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddCheck.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" +}), 'PlaylistAddCheck'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddCheckOutlined.js b/packages/material-ui-icons/lib/esm/PlaylistAddCheckOutlined.js new file mode 100644 index 00000000000000..36434a0645f74a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddCheckOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" +}), 'PlaylistAddCheckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddCheckRounded.js b/packages/material-ui-icons/lib/esm/PlaylistAddCheckRounded.js new file mode 100644 index 00000000000000..130df572cad55c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddCheckRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 10H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM3 16h6c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm19.21-3.79.09.09c.39.39.39 1.02 0 1.41l-5.58 5.59c-.39.39-1.02.39-1.41 0l-3.09-3.09a.9959.9959 0 0 1 0-1.41l.09-.09c.39-.39 1.02-.39 1.41 0l2.3 2.3 4.78-4.79c.38-.4 1.02-.4 1.41-.01z" +}), 'PlaylistAddCheckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddCheckSharp.js b/packages/material-ui-icons/lib/esm/PlaylistAddCheckSharp.js new file mode 100644 index 00000000000000..7378838cd69b49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddCheckSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" +}), 'PlaylistAddCheckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddCheckTwoTone.js b/packages/material-ui-icons/lib/esm/PlaylistAddCheckTwoTone.js new file mode 100644 index 00000000000000..171b4b8574c1b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddCheckTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" +}), 'PlaylistAddCheckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddOutlined.js b/packages/material-ui-icons/lib/esm/PlaylistAddOutlined.js new file mode 100644 index 00000000000000..d7073ef05c0d67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" +}), 'PlaylistAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddRounded.js b/packages/material-ui-icons/lib/esm/PlaylistAddRounded.js new file mode 100644 index 00000000000000..4d4e7b020eff9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 10H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm5 8v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3zM3 16h6c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'PlaylistAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddSharp.js b/packages/material-ui-icons/lib/esm/PlaylistAddSharp.js new file mode 100644 index 00000000000000..3f67cd94239227 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" +}), 'PlaylistAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistAddTwoTone.js b/packages/material-ui-icons/lib/esm/PlaylistAddTwoTone.js new file mode 100644 index 00000000000000..7656e5d39a8977 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistAddTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" +}), 'PlaylistAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistPlay.js b/packages/material-ui-icons/lib/esm/PlaylistPlay.js new file mode 100644 index 00000000000000..6d4b77719b94f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistPlay.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" +}), 'PlaylistPlay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistPlayOutlined.js b/packages/material-ui-icons/lib/esm/PlaylistPlayOutlined.js new file mode 100644 index 00000000000000..17c729da0d9ffd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistPlayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" +}), 'PlaylistPlayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistPlayRounded.js b/packages/material-ui-icons/lib/esm/PlaylistPlayRounded.js new file mode 100644 index 00000000000000..173f4f5a8b4a12 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistPlayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 10h10c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0-4h10c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 8h6c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm9 .88v4.23c0 .39.42.63.76.43l3.53-2.12c.32-.19.32-.66 0-.86l-3.53-2.12c-.34-.19-.76.05-.76.44z" +}), 'PlaylistPlayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistPlaySharp.js b/packages/material-ui-icons/lib/esm/PlaylistPlaySharp.js new file mode 100644 index 00000000000000..a42862cbe63c57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistPlaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" +}), 'PlaylistPlaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlaylistPlayTwoTone.js b/packages/material-ui-icons/lib/esm/PlaylistPlayTwoTone.js new file mode 100644 index 00000000000000..3e0ab6f5ed9c28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlaylistPlayTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" +}), 'PlaylistPlayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Plumbing.js b/packages/material-ui-icons/lib/esm/Plumbing.js new file mode 100644 index 00000000000000..d9980b26b635a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Plumbing.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.04 7.76-.71.71-.71.71L10.44 6c-.59-.6-1.54-.6-2.12-.01-.59.59-.59 1.54 0 2.12l3.18 3.18-.71.71-6.36 6.36c-.78.78-.78 2.05 0 2.83.78.78 2.05.78 2.83 0L16.45 12c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.82-2.83z" +}, "1")], 'Plumbing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlumbingOutlined.js b/packages/material-ui-icons/lib/esm/PlumbingOutlined.js new file mode 100644 index 00000000000000..9badfc28a1bfbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlumbingOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.04 7.76-.71.71-.71.71L10.44 6c-.59-.6-1.54-.6-2.12-.01-.59.59-.59 1.54 0 2.12l3.18 3.18-.71.71-6.36 6.36c-.78.78-.78 2.05 0 2.83.78.78 2.05.78 2.83 0L16.45 12c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.82-2.83z" +}, "1")], 'PlumbingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlumbingRounded.js b/packages/material-ui-icons/lib/esm/PlumbingRounded.js new file mode 100644 index 00000000000000..f956d972b35433 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlumbingRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m14.33 8.46-.71.71-3.18-3.18c-.59-.59-1.54-.59-2.12 0-.59.59-.59 1.54 0 2.12l3.18 3.18-7 7c-.7.7-.88 1.84-.29 2.65.74 1.03 2.19 1.12 3.05.26l9.19-9.2c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.12-2.12a.987.987 0 0 0-1.41-.01z" +}, "1")], 'PlumbingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlumbingSharp.js b/packages/material-ui-icons/lib/esm/PlumbingSharp.js new file mode 100644 index 00000000000000..1eb5cf8631a5f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlumbingSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m16.16 5.64 3.54 3.54c1.17-1.17 1.17-3.07 0-4.24L16.16 1.4l-4.24 4.24 2.12 2.12 2.12-2.12zM4.842 12.7081l3.5355-3.5355 2.1213 2.1213-3.5355 3.5355z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.45 7.76-1.41 1.41-4.25-4.24-2.12 2.12 4.24 4.24-8.49 8.49 2.83 2.83L16.86 12l.71.71 1.41-1.41-3.53-3.54z" +}, "1")], 'PlumbingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlumbingTwoTone.js b/packages/material-ui-icons/lib/esm/PlumbingTwoTone.js new file mode 100644 index 00000000000000..2c83163c193710 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlumbingTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.28 4.93-2.12-2.12c-.78-.78-2.05-.78-2.83 0L11.5 5.64l2.12 2.12 2.12-2.12 3.54 3.54c1.17-1.18 1.17-3.08 0-4.25zM5.49 13.77c.59.59 1.54.59 2.12 0l2.47-2.47-2.12-2.13-2.47 2.47c-.59.59-.59 1.54 0 2.13z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.04 7.76-.71.71-.71.71L10.44 6c-.59-.6-1.54-.6-2.12-.01-.59.59-.59 1.54 0 2.12l3.18 3.18-.71.71-6.36 6.36c-.78.78-.78 2.05 0 2.83.78.78 2.05.78 2.83 0L16.45 12c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-2.82-2.83z" +}, "1")], 'PlumbingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlusOne.js b/packages/material-ui-icons/lib/esm/PlusOne.js new file mode 100644 index 00000000000000..8e8c7da34cac8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlusOne.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4zm4.5-1.92V7.9l2.5-.5V18h2V5z" +}), 'PlusOne'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlusOneOutlined.js b/packages/material-ui-icons/lib/esm/PlusOneOutlined.js new file mode 100644 index 00000000000000..d1309184b7fefc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlusOneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" +}), 'PlusOneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlusOneRounded.js b/packages/material-ui-icons/lib/esm/PlusOneRounded.js new file mode 100644 index 00000000000000..234d3282980ed3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlusOneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 8c-.55 0-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V9c0-.55-.45-1-1-1zm5.5-1.21c0 .57.52 1 1.08.89L17 7.4V17c0 .55.45 1 1 1s1-.45 1-1V6.27c0-.65-.6-1.12-1.23-.97l-2.57.62c-.41.09-.7.46-.7.87z" +}), 'PlusOneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlusOneSharp.js b/packages/material-ui-icons/lib/esm/PlusOneSharp.js new file mode 100644 index 00000000000000..69b7ecd5765a58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlusOneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" +}), 'PlusOneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PlusOneTwoTone.js b/packages/material-ui-icons/lib/esm/PlusOneTwoTone.js new file mode 100644 index 00000000000000..66f67d5c97fdb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PlusOneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" +}), 'PlusOneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Podcasts.js b/packages/material-ui-icons/lib/esm/Podcasts.js new file mode 100644 index 00000000000000..3e146a7e51c040 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Podcasts.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" +}), 'Podcasts'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PodcastsOutlined.js b/packages/material-ui-icons/lib/esm/PodcastsOutlined.js new file mode 100644 index 00000000000000..41a3f016bb426e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PodcastsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" +}), 'PodcastsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PodcastsRounded.js b/packages/material-ui-icons/lib/esm/PodcastsRounded.js new file mode 100644 index 00000000000000..a5571e678375a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PodcastsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0 .74-.4 1.38-1 1.72V21c0 .55-.45 1-1 1s-1-.45-1-1v-7.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-3.25-5.87c-2.27.46-4.12 2.28-4.61 4.55-.4 1.86.07 3.62 1.08 4.94.35.45 1.03.47 1.43.07l.07-.07c.34-.34.34-.87.06-1.25-.68-.9-.98-2.1-.66-3.37.35-1.42 1.52-2.57 2.95-2.88C13.69 7.52 16 9.49 16 12c0 .87-.28 1.67-.76 2.32-.3.41-.29.97.07 1.33.44.44 1.17.37 1.54-.14.72-.98 1.15-2.2 1.15-3.51 0-3.72-3.39-6.65-7.25-5.87zm.08-4.06c-4.53.51-8.22 4.18-8.76 8.71-.35 2.95.59 5.67 2.32 7.7.37.43 1.03.46 1.43.06l.05-.05c.35-.35.38-.92.05-1.3-1.56-1.83-2.33-4.37-1.7-7.06.7-3.01 3.18-5.39 6.22-5.97C15.53 3.18 20 7.08 20 12c0 1.96-.72 3.76-1.9 5.16-.34.4-.31.98.05 1.35.42.42 1.11.39 1.49-.07C21.11 16.7 22 14.46 22 12c0-5.91-5.13-10.62-11.17-9.93z" +}), 'PodcastsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PodcastsSharp.js b/packages/material-ui-icons/lib/esm/PodcastsSharp.js new file mode 100644 index 00000000000000..6b5357ddfb7eda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PodcastsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" +}), 'PodcastsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PodcastsTwoTone.js b/packages/material-ui-icons/lib/esm/PodcastsTwoTone.js new file mode 100644 index 00000000000000..c28aa315daebaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PodcastsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42C8.53 14.25 8 13.19 8 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42C17.25 15.31 18 13.74 18 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42C4.98 16.36 4 14.29 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" +}), 'PodcastsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PointOfSale.js b/packages/material-ui-icons/lib/esm/PointOfSale.js new file mode 100644 index 00000000000000..5024f5be81b4de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PointOfSale.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 4H7V4h10v2zm3 16H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'PointOfSale'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PointOfSaleOutlined.js b/packages/material-ui-icons/lib/esm/PointOfSaleOutlined.js new file mode 100644 index 00000000000000..8bffa54da1611d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PointOfSaleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 4H7V4h10v2zm3 16H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'PointOfSaleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PointOfSaleRounded.js b/packages/material-ui-icons/lib/esm/PointOfSaleRounded.js new file mode 100644 index 00000000000000..a3c824cee77437 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PointOfSaleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-.5 4h-9c-.28 0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5h9c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5zM20 22H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'PointOfSaleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PointOfSaleSharp.js b/packages/material-ui-icons/lib/esm/PointOfSaleSharp.js new file mode 100644 index 00000000000000..8817e1d78f5e69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PointOfSaleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5v6h14V2zm-2 4H7V4h10v2zm5 16H2v-3h20v3zM18 9H6l-4 9h20l-4-9zm-8 7H8v-1h2v1zm0-2H8v-1h2v1zm0-2H8v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1z" +}), 'PointOfSaleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PointOfSaleTwoTone.js b/packages/material-ui-icons/lib/esm/PointOfSaleTwoTone.js new file mode 100644 index 00000000000000..df890c526e6058 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PointOfSaleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm.5-2.5c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm3 4c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm3 4c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zm0-2c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5h1c.28 0 .5-.22.5-.5zM17 4H7v2h10V4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 4H7V4h10v2zm3 16H4c-1.1 0-2-.9-2-2v-1h20v1c0 1.1-.9 2-2 2zm-1.47-11.81C18.21 9.47 17.49 9 16.7 9H7.3c-.79 0-1.51.47-1.83 1.19L2 18h20l-3.47-7.81zM9.5 16h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm3 4h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}, "1")], 'PointOfSaleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Policy.js b/packages/material-ui-icons/lib/esm/Policy.js new file mode 100644 index 00000000000000..f2b3ee994d266a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Policy.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21 5-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'Policy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PolicyOutlined.js b/packages/material-ui-icons/lib/esm/PolicyOutlined.js new file mode 100644 index 00000000000000..6c68fca334287b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PolicyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 1.85-.51 3.65-1.38 5.21l-1.45-1.45c1.29-1.94 1.07-4.58-.64-6.29-1.95-1.95-5.12-1.95-7.07 0-1.95 1.95-1.95 5.12 0 7.07 1.71 1.71 4.35 1.92 6.29.64l1.72 1.72c-1.19 1.42-2.73 2.51-4.47 3.04-4.02-1.25-7-5.42-7-9.94V6.3l7-3.11 7 3.11V11zm-7 4c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'PolicyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PolicyRounded.js b/packages/material-ui-icons/lib/esm/PolicyRounded.js new file mode 100644 index 00000000000000..f2ad48b6e58d67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PolicyRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.52-.23-1.11-.23-1.62 0l-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V6.3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'PolicyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PolicySharp.js b/packages/material-ui-icons/lib/esm/PolicySharp.js new file mode 100644 index 00000000000000..b11be602c7c202 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PolicySharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21 5-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "3" +}, "1")], 'PolicySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PolicyTwoTone.js b/packages/material-ui-icons/lib/esm/PolicyTwoTone.js new file mode 100644 index 00000000000000..f6f6e0dc3f11ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PolicyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 6.3V11c0 4.52 2.98 8.69 7 9.93 1.74-.53 3.28-1.62 4.47-3.04l-1.72-1.72c-1.94 1.29-4.58 1.07-6.29-.64-1.95-1.95-1.95-5.12 0-7.07 1.95-1.95 5.12-1.95 7.07 0 1.71 1.71 1.92 4.35.64 6.29l1.45 1.45C18.49 14.65 19 12.85 19 11V6.3l-7-3.11L5 6.3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 .65-.16 1.27-.38 1.87-.65 1.8-.82 3.36-2.13 4.57-3.74C20.04 16.46 21 13.77 21 11V5l-9-4zm7 10c0 1.85-.51 3.65-1.38 5.21l-1.45-1.45c1.29-1.94 1.07-4.58-.64-6.29-1.95-1.95-5.12-1.95-7.07 0-1.95 1.95-1.95 5.12 0 7.07 1.71 1.71 4.35 1.92 6.29.64l1.72 1.72c-1.19 1.42-2.73 2.51-4.47 3.04-4.02-1.25-7-5.42-7-9.94V6.3l7-3.11 7 3.11V11zm-4 1c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" +}, "1")], 'PolicyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Poll.js b/packages/material-ui-icons/lib/esm/Poll.js new file mode 100644 index 00000000000000..d6b8639fc3d70f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Poll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" +}), 'Poll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PollOutlined.js b/packages/material-ui-icons/lib/esm/PollOutlined.js new file mode 100644 index 00000000000000..7c80642ec92853 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PollOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" +}), 'PollOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PollRounded.js b/packages/material-ui-icons/lib/esm/PollRounded.js new file mode 100644 index 00000000000000..f0157021efc63e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PollRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'PollRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PollSharp.js b/packages/material-ui-icons/lib/esm/PollSharp.js new file mode 100644 index 00000000000000..5b39a1d782c7b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PollSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm6 14H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" +}), 'PollSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PollTwoTone.js b/packages/material-ui-icons/lib/esm/PollTwoTone.js new file mode 100644 index 00000000000000..369ea4b815a8f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PollTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm10-6h2v4h-2v-4zm-4-6h2v10h-2V7zm-4 3h2v7H7v-7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z" +}, "1")], 'PollTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Pool.js b/packages/material-ui-icons/lib/esm/Pool.js new file mode 100644 index 00000000000000..4e3f86bfd78405 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Pool.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64-1.11 0-1.73-.37-2.18-.64-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "5.5", + r: "2.5" +}, "1")], 'Pool'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PoolOutlined.js b/packages/material-ui-icons/lib/esm/PoolOutlined.js new file mode 100644 index 00000000000000..c6e2231ece7023 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PoolOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m10 8-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "5.5", + r: "2.5" +}, "1")], 'PoolOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PoolRounded.js b/packages/material-ui-icons/lib/esm/PoolRounded.js new file mode 100644 index 00000000000000..4808e75f0f3e2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PoolRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.11 5.56C7.3 5.7 8.14 6.14 9 7l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C9.22 3.74 8.04 3.2 6.3 3.05 5.6 2.99 5 3.56 5 4.26v.09c0 .63.49 1.13 1.11 1.21zm15.24 13.35c-.17-.06-.32-.15-.5-.27-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.18.11-.33.2-.5.27-.38.13-.65.45-.65.85v.12c0 .67.66 1.13 1.3.91.37-.13.65-.3.89-.44.37-.22.6-.35 1.15-.35.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.23.14.51.31.88.44.63.22 1.3-.24 1.3-.91v-.12c0-.41-.27-.73-.65-.86zM3.11 16.35c.47-.13.81-.33 1.09-.49.37-.23.6-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.23.14.5.3.85.43.63.23 1.31-.24 1.31-.91v-.12c0-.4-.27-.72-.64-.86-.17-.06-.32-.15-.51-.26-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.18.11-.33.2-.5.27-.38.13-.65.45-.65.85v.23c0 .58.55 1.02 1.11.86z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "5.5", + r: "2.5" +}, "1")], 'PoolRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PoolSharp.js b/packages/material-ui-icons/lib/esm/PoolSharp.js new file mode 100644 index 00000000000000..e80576c20efc92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PoolSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m10 8-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5 5 3v2.5L9 7l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "5.5", + r: "2.5" +}, "1")], 'PoolSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PoolTwoTone.js b/packages/material-ui-icons/lib/esm/PoolTwoTone.js new file mode 100644 index 00000000000000..93a84123e011f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PoolTwoTone.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64s-1.73-.37-2.18-.64c-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2H22zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "5.5", + r: "2.5", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22 16.5h-.02.02zM10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm-4.65 7.5c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "5.5", + r: "2.5" +}, "3")], 'PoolTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortableWifiOff.js b/packages/material-ui-icons/lib/esm/PortableWifiOff.js new file mode 100644 index 00000000000000..15f72fb97ec5c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortableWifiOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.56 14.24c.28-.69.44-1.45.44-2.24 0-3.31-2.69-6-6-6-.79 0-1.55.16-2.24.44l1.62 1.62c.2-.03.41-.06.62-.06 2.21 0 4 1.79 4 4 0 .21-.02.42-.05.63l1.61 1.61zM12 4c4.42 0 8 3.58 8 8 0 1.35-.35 2.62-.95 3.74l1.47 1.47C21.46 15.69 22 13.91 22 12c0-5.52-4.48-10-10-10-1.91 0-3.69.55-5.21 1.47l1.46 1.46C9.37 4.34 10.65 4 12 4zM3.27 2.5 2 3.77l2.1 2.1C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02.01.01 7.51 7.51L21 20.23 4.27 3.5l-1-1z" +}), 'PortableWifiOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortableWifiOffOutlined.js b/packages/material-ui-icons/lib/esm/PortableWifiOffOutlined.js new file mode 100644 index 00000000000000..31f4738a7ee8bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortableWifiOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.42 2.36 2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" +}), 'PortableWifiOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortableWifiOffRounded.js b/packages/material-ui-icons/lib/esm/PortableWifiOffRounded.js new file mode 100644 index 00000000000000..7569ef0d777188 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortableWifiOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.71 3.07c-.39.39-.39 1.02 0 1.41L4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.3 1.6 6.22 4.06 8.04.48.35 1.16.21 1.46-.31.25-.43.14-.99-.26-1.29C5.29 16.98 4 14.65 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 1.8.8 3.41 2.06 4.51.46.4 1.19.25 1.5-.28l.01-.01c.24-.42.13-.94-.23-1.26C8.52 14.23 8 13.18 8 12c0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 6.81 6.81c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.07c-.39-.39-1.03-.39-1.42 0zm15 10.75c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" +}), 'PortableWifiOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortableWifiOffSharp.js b/packages/material-ui-icons/lib/esm/PortableWifiOffSharp.js new file mode 100644 index 00000000000000..289faf732ef8ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortableWifiOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.42 2.36 2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" +}), 'PortableWifiOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortableWifiOffTwoTone.js b/packages/material-ui-icons/lib/esm/PortableWifiOffTwoTone.js new file mode 100644 index 00000000000000..26c741340ae744 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortableWifiOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.42 2.36 2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" +}), 'PortableWifiOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Portrait.js b/packages/material-ui-icons/lib/esm/Portrait.js new file mode 100644 index 00000000000000..f76c062e8aa46a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Portrait.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'Portrait'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortraitOutlined.js b/packages/material-ui-icons/lib/esm/PortraitOutlined.js new file mode 100644 index 00000000000000..9f2d7e84b1a128 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortraitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'PortraitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortraitRounded.js b/packages/material-ui-icons/lib/esm/PortraitRounded.js new file mode 100644 index 00000000000000..0a5e71bfd70a31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortraitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'PortraitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortraitSharp.js b/packages/material-ui-icons/lib/esm/PortraitSharp.js new file mode 100644 index 00000000000000..aa5d4617be3e27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortraitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM21 3H3v18h18V3zm-2 16H5V5h14v14z" +}), 'PortraitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PortraitTwoTone.js b/packages/material-ui-icons/lib/esm/PortraitTwoTone.js new file mode 100644 index 00000000000000..2057340470cb72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PortraitTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.58C6 14.08 9.97 13 12 13s6 1.08 6 3.58V18H6v-1.42z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1")], 'PortraitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PostAdd.js b/packages/material-ui-icons/lib/esm/PostAdd.js new file mode 100644 index 00000000000000..d2139776141d28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PostAdd.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 19.22H5V7h7V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h-2v7.22z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" +}, "1")], 'PostAdd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PostAddOutlined.js b/packages/material-ui-icons/lib/esm/PostAddOutlined.js new file mode 100644 index 00000000000000..c29150ed6322e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PostAddOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 19.22H5V7h7V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h-2v7.22z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" +}, "1")], 'PostAddOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PostAddRounded.js b/packages/material-ui-icons/lib/esm/PostAddRounded.js new file mode 100644 index 00000000000000..c6ee87ad734bfa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PostAddRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 12c-.55 0-1 .45-1 1v5.22c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1zm3.02-7H19V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V5h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V7h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 9H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z" +}, "1")], 'PostAddRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PostAddSharp.js b/packages/material-ui-icons/lib/esm/PostAddSharp.js new file mode 100644 index 00000000000000..08e7c5f8e8410c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PostAddSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 19.22H5V7h7V5H3v16h16v-9h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" +}, "1")], 'PostAddSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PostAddTwoTone.js b/packages/material-ui-icons/lib/esm/PostAddTwoTone.js new file mode 100644 index 00000000000000..7ac68454286b00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PostAddTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 19.22H5V7h7V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h-2v7.22z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" +}, "1")], 'PostAddTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Power.js b/packages/material-ui-icons/lib/esm/Power.js new file mode 100644 index 00000000000000..43a844a3df8918 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Power.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.01 7 16 3h-2v4h-4V3H8v4h-.01C7 6.99 6 7.99 6 8.99v5.49L9.5 18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z" +}), 'Power'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerInput.js b/packages/material-ui-icons/lib/esm/PowerInput.js new file mode 100644 index 00000000000000..4b164d2e70dd0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerInput.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" +}), 'PowerInput'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerInputOutlined.js b/packages/material-ui-icons/lib/esm/PowerInputOutlined.js new file mode 100644 index 00000000000000..ac21c89620c933 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerInputOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" +}), 'PowerInputOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerInputRounded.js b/packages/material-ui-icons/lib/esm/PowerInputRounded.js new file mode 100644 index 00000000000000..906bfb597b51e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerInputRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 10c0 .55.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm1 5h3c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm7 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm7 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'PowerInputRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerInputSharp.js b/packages/material-ui-icons/lib/esm/PowerInputSharp.js new file mode 100644 index 00000000000000..7e51da7a57c405 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerInputSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" +}), 'PowerInputSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerInputTwoTone.js b/packages/material-ui-icons/lib/esm/PowerInputTwoTone.js new file mode 100644 index 00000000000000..d9e46c487d9e52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerInputTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" +}), 'PowerInputTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerOff.js b/packages/material-ui-icons/lib/esm/PowerOff.js new file mode 100644 index 00000000000000..b2903c95950d57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 14.49V9c0-1-1.01-2.01-2-2V3h-2v4h-4V3H8v2.48l9.51 9.5.49-.49zm-1.76 1.77L7.2 7.2l-.01.01L3.98 4 2.71 5.25l3.36 3.36C6.04 8.74 6 8.87 6 9v5.48L9.5 18v3h5v-3l.48-.48L19.45 22l1.26-1.28-4.47-4.46z" +}), 'PowerOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerOffOutlined.js b/packages/material-ui-icons/lib/esm/PowerOffOutlined.js new file mode 100644 index 00000000000000..2c70dcc2d38bba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84 2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z" +}), 'PowerOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerOffRounded.js b/packages/material-ui-icons/lib/esm/PowerOffRounded.js new file mode 100644 index 00000000000000..d55866bc05c558 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13.66V8.99c0-1-1.01-2-2-1.99V4c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.88l7.63 7.63c.15-.3.25-.63.25-.97zM10 4c0-.55-.45-1-1-1s-1 .45-1 1v.88l2 2V4zm10.15 15.86-7.66-7.66-5.1-5.1-2.56-2.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.63 2.63c-.03.13-.05.27-.05.41v4.66c0 .53.21 1.04.58 1.41L9.5 18v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2l.48-.48 3.76 3.76c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42z" +}), 'PowerOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerOffSharp.js b/packages/material-ui-icons/lib/esm/PowerOffSharp.js new file mode 100644 index 00000000000000..acd8fdef54ec22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 14.49V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l7.69 7.69.19-.2zM10 3H8v1.88l2 2zm-5.88.84L2.71 5.25l3.34 3.34c-.03.13-.05.27-.05.4v5.51L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84z" +}), 'PowerOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerOffTwoTone.js b/packages/material-ui-icons/lib/esm/PowerOffTwoTone.js new file mode 100644 index 00000000000000..7f3ce49313fcfa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.12 9 16 12.88V9zm-.62 8.17V19h1v-1.83l1.07-1.06L8 10.54v3.11z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84 2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z" +}, "1")], 'PowerOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerOutlined.js b/packages/material-ui-icons/lib/esm/PowerOutlined.js new file mode 100644 index 00000000000000..f316ab321f9450 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z" +}), 'PowerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerRounded.js b/packages/material-ui-icons/lib/esm/PowerRounded.js new file mode 100644 index 00000000000000..3ee1648021955a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.01 7 16 4c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V4c0-.55-.45-1-1-1s-1 .45-1 1v3h-.01C6.9 7 6 7.9 6 8.99v4.66c0 .53.21 1.04.58 1.41L9.5 18v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2l2.92-2.92c.37-.38.58-.89.58-1.42V8.99C18 7.89 17.11 7 16.01 7z" +}), 'PowerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerSettingsNew.js b/packages/material-ui-icons/lib/esm/PowerSettingsNew.js new file mode 100644 index 00000000000000..896ed12e2166ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerSettingsNew.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" +}), 'PowerSettingsNew'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerSettingsNewOutlined.js b/packages/material-ui-icons/lib/esm/PowerSettingsNewOutlined.js new file mode 100644 index 00000000000000..0c2c309ef36ba9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerSettingsNewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" +}), 'PowerSettingsNewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerSettingsNewRounded.js b/packages/material-ui-icons/lib/esm/PowerSettingsNewRounded.js new file mode 100644 index 00000000000000..1a61c01c7179d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerSettingsNewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm5.14 2.86c-.39.39-.38 1-.01 1.39 1.13 1.2 1.83 2.8 1.87 4.57.09 3.83-3.08 7.13-6.91 7.17C8.18 19.05 5 15.9 5 12c0-1.84.71-3.51 1.87-4.76.37-.39.37-1-.01-1.38-.4-.4-1.05-.39-1.43.02C3.98 7.42 3.07 9.47 3 11.74c-.14 4.88 3.83 9.1 8.71 9.25 5.1.16 9.29-3.93 9.29-9 0-2.37-.92-4.51-2.42-6.11-.38-.41-1.04-.42-1.44-.02z" +}), 'PowerSettingsNewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerSettingsNewSharp.js b/packages/material-ui-icons/lib/esm/PowerSettingsNewSharp.js new file mode 100644 index 00000000000000..d5a17772c8ef61 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerSettingsNewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" +}), 'PowerSettingsNewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerSettingsNewTwoTone.js b/packages/material-ui-icons/lib/esm/PowerSettingsNewTwoTone.js new file mode 100644 index 00000000000000..cf2226f9ecaeec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerSettingsNewTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3h-2v10h2V3zm4.83 2.17-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z" +}), 'PowerSettingsNewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerSharp.js b/packages/material-ui-icons/lib/esm/PowerSharp.js new file mode 100644 index 00000000000000..b9481e96da1d39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7V3h-2v4h-4V3H8v4H6v7.5L9.5 18v3h5v-3l3.5-3.51V7h-2z" +}), 'PowerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PowerTwoTone.js b/packages/material-ui-icons/lib/esm/PowerTwoTone.js new file mode 100644 index 00000000000000..a32749128caaa5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PowerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8 13.65 3.5 3.52V19h1v-1.83l3.5-3.51V9H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 7V3h-2v4h-4V3H8v4h-.01C6.89 7 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.5V9c0-1.1-.9-2-2-2zm0 6.66-3.5 3.51V19h-1v-1.83L8 13.65V9h8v4.66z" +}, "1")], 'PowerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrecisionManufacturing.js b/packages/material-ui-icons/lib/esm/PrecisionManufacturing.js new file mode 100644 index 00000000000000..8f776c012090d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrecisionManufacturing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.93 8.21-3.6 1.68L14 7.7V6.3l2.33-2.19 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1L16.65 2.6c-.38-.18-.83-.1-1.13.2l-1.74 1.6c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.34 4.65 6.98 3.73 5.4 4.07c-1.16.25-2.15 1.25-2.36 2.43-.22 1.32.46 2.47 1.48 3.08L7.08 18H4v3h13v-3h-3.62L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.6c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PrecisionManufacturing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrecisionManufacturingOutlined.js b/packages/material-ui-icons/lib/esm/PrecisionManufacturingOutlined.js new file mode 100644 index 00000000000000..bc974b7d72524b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrecisionManufacturingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.93 8.35-3.6 1.68L14 7.7V6.3l2.33-2.33 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1l-3.92-1.83c-.38-.18-.83-.1-1.13.2L13.78 4.4c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H6c-1.1 0-2 .9-2 2v1h13v-1c0-1.1-.9-2-2-2h-1.62L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.74c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5.11 10H9.17l-2.46-8h.1l4.3 8z" +}), 'PrecisionManufacturingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrecisionManufacturingRounded.js b/packages/material-ui-icons/lib/esm/PrecisionManufacturingRounded.js new file mode 100644 index 00000000000000..8d20887408e3ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrecisionManufacturingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.93 8.35-3.6 1.68L14 7.7V6.3l2.33-2.33 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1l-3.92-1.83c-.38-.18-.83-.1-1.13.2L13.78 4.4c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.34 4.66 6.96 3.75 5.4 4.06c-1.17.23-2.13 1.19-2.35 2.36-.25 1.34.4 2.54 1.43 3.16L7.08 18H5.5c-.83 0-1.5.67-1.5 1.5S4.67 21 5.5 21h10c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-2.12L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.74c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PrecisionManufacturingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrecisionManufacturingSharp.js b/packages/material-ui-icons/lib/esm/PrecisionManufacturingSharp.js new file mode 100644 index 00000000000000..95a1391711294c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrecisionManufacturingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 10v-.18l2.01 2.01 5.23-2.44-.63-1.36-4.28 2L14 7.7V6.3l2.33-2.33 4.28 2 .63-1.36-5.23-2.44L14 4.18V4h-2v2H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H4v3h13v-3h-3.62L8.41 8.76c.17-.23.31-.48.41-.76H12v2h2zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'PrecisionManufacturingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrecisionManufacturingTwoTone.js b/packages/material-ui-icons/lib/esm/PrecisionManufacturingTwoTone.js new file mode 100644 index 00000000000000..3cdd209d5556ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrecisionManufacturingTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m6.71 10 2.46 8h1.94l-4.3-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "7", + r: "1", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m19.93 8.35-3.6 1.68L14 7.7V6.3l2.33-2.33 3.6 1.68c.38.18.82.01 1-.36.18-.38.01-.82-.36-1l-3.92-1.83c-.38-.18-.83-.1-1.13.2L13.78 4.4c-.18-.24-.46-.4-.78-.4-.55 0-1 .45-1 1v1H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H6c-1.1 0-2 .9-2 2v1h13v-1c0-1.1-.9-2-2-2h-1.62L8.41 8.77c.17-.24.31-.49.41-.77H12v1c0 .55.45 1 1 1 .32 0 .6-.16.78-.4l1.74 1.74c.3.3.75.38 1.13.2l3.92-1.83c.38-.18.54-.62.36-1-.18-.37-.62-.54-1-.36zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5.11 10H9.17l-2.46-8h.1l4.3 8z" +}, "2")], 'PrecisionManufacturingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PregnantWoman.js b/packages/material-ui-icons/lib/esm/PregnantWoman.js new file mode 100644 index 00000000000000..19a20a3780fe1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PregnantWoman.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" +}), 'PregnantWoman'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PregnantWomanOutlined.js b/packages/material-ui-icons/lib/esm/PregnantWomanOutlined.js new file mode 100644 index 00000000000000..977eb5d668e60e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PregnantWomanOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" +}), 'PregnantWomanOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PregnantWomanRounded.js b/packages/material-ui-icons/lib/esm/PregnantWomanRounded.js new file mode 100644 index 00000000000000..33d5d78fea7b4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PregnantWomanRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.71-1.42-3.08-3.16-3C9.22 7.09 8 8.54 8 10.16V16c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V17h2c.55 0 1-.45 1-1v-3z" +}), 'PregnantWomanRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PregnantWomanSharp.js b/packages/material-ui-icons/lib/esm/PregnantWomanSharp.js new file mode 100644 index 00000000000000..4820faf781cc0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PregnantWomanSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" +}), 'PregnantWomanSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PregnantWomanTwoTone.js b/packages/material-ui-icons/lib/esm/PregnantWomanTwoTone.js new file mode 100644 index 00000000000000..fced390eb9532e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PregnantWomanTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" +}), 'PregnantWomanTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PresentToAll.js b/packages/material-ui-icons/lib/esm/PresentToAll.js new file mode 100644 index 00000000000000..459613928e3dad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PresentToAll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" +}), 'PresentToAll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PresentToAllOutlined.js b/packages/material-ui-icons/lib/esm/PresentToAllOutlined.js new file mode 100644 index 00000000000000..342b487b55fb3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PresentToAllOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" +}), 'PresentToAllOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PresentToAllRounded.js b/packages/material-ui-icons/lib/esm/PresentToAllRounded.js new file mode 100644 index 00000000000000..56a132824ea4c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PresentToAllRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-1 16.02H4c-.55 0-1-.45-1-1V5.98c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.04c0 .55-.45 1-1 1zM10 12H8l3.65-3.65c.2-.2.51-.2.71 0L16 12h-2v4h-4v-4z" +}), 'PresentToAllRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PresentToAllSharp.js b/packages/material-ui-icons/lib/esm/PresentToAllSharp.js new file mode 100644 index 00000000000000..33858d8ada602d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PresentToAllSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-2 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" +}), 'PresentToAllSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PresentToAllTwoTone.js b/packages/material-ui-icons/lib/esm/PresentToAllTwoTone.js new file mode 100644 index 00000000000000..1196e3d537735f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PresentToAllTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19.02h18V4.98H3v14.04zM12 8l4 4h-2v4h-4v-4H8l4-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 16h4v-4h2l-4-4-4 4h2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04z" +}, "1")], 'PresentToAllTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Preview.js b/packages/material-ui-icons/lib/esm/Preview.js new file mode 100644 index 00000000000000..554814b3958ce6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Preview.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'Preview'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PreviewOutlined.js b/packages/material-ui-icons/lib/esm/PreviewOutlined.js new file mode 100644 index 00000000000000..04aa764d4d676d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PreviewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-7-8.5c1.84 0 3.48.96 4.34 2.5-.86 1.54-2.5 2.5-4.34 2.5s-3.48-.96-4.34-2.5c.86-1.54 2.5-2.5 4.34-2.5M12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'PreviewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PreviewRounded.js b/packages/material-ui-icons/lib/esm/PreviewRounded.js new file mode 100644 index 00000000000000..46c23d15e55d07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PreviewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'PreviewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PreviewSharp.js b/packages/material-ui-icons/lib/esm/PreviewSharp.js new file mode 100644 index 00000000000000..22bbff12a134e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PreviewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm16 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'PreviewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PreviewTwoTone.js b/packages/material-ui-icons/lib/esm/PreviewTwoTone.js new file mode 100644 index 00000000000000..311245448c8702 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PreviewTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 19H5V7h14v12zm-7-8.5c1.84 0 3.48.96 4.34 2.5-.86 1.54-2.5 2.5-4.34 2.5s-3.48-.96-4.34-2.5c.86-1.54 2.5-2.5 4.34-2.5M12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-7-8.5c1.84 0 3.48.96 4.34 2.5-.86 1.54-2.5 2.5-4.34 2.5s-3.48-.96-4.34-2.5c.86-1.54 2.5-2.5 4.34-2.5M12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'PreviewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceChange.js b/packages/material-ui-icons/lib/esm/PriceChange.js new file mode 100644 index 00000000000000..a6217de738c916 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceChange.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-8 6H8v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1H8v-1H6v-2h4v-1H7c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2zm4 6.25-2-2h4l-2 2zM14 10l2-2 2 2h-4z" +}), 'PriceChange'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceChangeOutlined.js b/packages/material-ui-icons/lib/esm/PriceChangeOutlined.js new file mode 100644 index 00000000000000..fe5ee4a44647e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceChangeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H8v-1h4V8h-2V7H8v1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H6v2h2v1zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12zm-6-8 2-2 2 2m0 4.25-2 2-2-2" +}), 'PriceChangeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceChangeRounded.js b/packages/material-ui-icons/lib/esm/PriceChangeRounded.js new file mode 100644 index 00000000000000..505cb505a0a981 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceChangeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-9 6H8v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1c0 .55-.45 1-1 1s-1-.45-1-1H7c-.55 0-1-.45-1-1s.45-1 1-1h3v-1H7c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1c0-.55.45-1 1-1s1 .45 1 1h1c.55 0 1 .45 1 1s-.45 1-1 1zm4.65 5.9L14 14.25h4l-1.65 1.65c-.19.19-.51.19-.7 0zM14 10l1.65-1.65c.2-.2.51-.2.71 0L18 10h-4z" +}), 'PriceChangeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceChangeSharp.js b/packages/material-ui-icons/lib/esm/PriceChangeSharp.js new file mode 100644 index 00000000000000..e1b148af855710 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceChangeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 4v16h20V4H2zm10 6H8v1h4v5h-2v1H8v-1H6v-2h4v-1H6V8h2V7h2v1h2v2zm4 6.25-2-2h4l-2 2zM14 10l2-2 2 2h-4z" +}), 'PriceChangeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceChangeTwoTone.js b/packages/material-ui-icons/lib/esm/PriceChangeTwoTone.js new file mode 100644 index 00000000000000..94a0ef9481b312 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceChangeTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zM16 8l2 2h-4l2-2zm2 6.25-2 2-2-2h4zM6 14h4v-1H7c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2H8v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1H8v-1H6v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H8v-1h4V8h-2V7H8v1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H6v2h2v1zm8-9-2 2h4zm2 6.25h-4l2 2z" +}, "2")], 'PriceChangeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceCheck.js b/packages/material-ui-icons/lib/esm/PriceCheck.js new file mode 100644 index 00000000000000..3481d93d7cd435 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceCheck.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 13V9c0-.55-.45-1-1-1H7V6h5V4H9.5V3h-2v1H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H5v2h2.5v1h2v-1H11c.55 0 1-.45 1-1zm7.59-.48-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" +}), 'PriceCheck'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceCheckOutlined.js b/packages/material-ui-icons/lib/esm/PriceCheckOutlined.js new file mode 100644 index 00000000000000..60294a40df3e6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceCheckOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 13V9c0-.55-.45-1-1-1H6V6h5V4H8.5V3h-2v1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H4v2h2.5v1h2v-1H10c.55 0 1-.45 1-1zm8.59-.48-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" +}), 'PriceCheckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceCheckRounded.js b/packages/material-ui-icons/lib/esm/PriceCheckRounded.js new file mode 100644 index 00000000000000..e0893f5d561591 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceCheckRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 13V9c0-.55-.45-1-1-1H6V6h4c.55 0 1-.45 1-1s-.45-1-1-1H8.5c0-.55-.45-1-1-1s-1 .45-1 1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H5c-.55 0-1 .45-1 1s.45 1 1 1h1.5c0 .55.45 1 1 1s1-.45 1-1H10c.55 0 1-.45 1-1zm7.88.22-4.95 4.95-2.12-2.12a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0l5.66-5.66c.39-.39.39-1.02 0-1.41-.4-.39-1.03-.39-1.42 0z" +}), 'PriceCheckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceCheckSharp.js b/packages/material-ui-icons/lib/esm/PriceCheckSharp.js new file mode 100644 index 00000000000000..c48a60ef616947 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceCheckSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8H6V6h5V4H8.5V3h-2v1H4v6h5v2H4v2h2.5v1h2v-1H11zm8.59 4.52-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" +}), 'PriceCheckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriceCheckTwoTone.js b/packages/material-ui-icons/lib/esm/PriceCheckTwoTone.js new file mode 100644 index 00000000000000..9e0234ca11886f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriceCheckTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 13V9c0-.55-.45-1-1-1H6V6h5V4H8.5V3h-2v1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4v2H4v2h2.5v1h2v-1H10c.55 0 1-.45 1-1zm8.59-.48-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" +}), 'PriceCheckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Print.js b/packages/material-ui-icons/lib/esm/Print.js new file mode 100644 index 00000000000000..33b6b052d71bf9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Print.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" +}), 'Print'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintDisabled.js b/packages/material-ui-icons/lib/esm/PrintDisabled.js new file mode 100644 index 00000000000000..12c6d5782e8f1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.1 17H22v-6c0-1.7-1.3-3-3-3h-9l9.1 9zm-.1-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1-3V3H6v1.1L9 7zM1.2 1.8 0 3l4.9 5C3.3 8.1 2 9.4 2 11v6h4v4h11.9l3 3 1.3-1.3-21-20.9zM8 19v-5h2.9l5 5H8z" +}), 'PrintDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintDisabledOutlined.js b/packages/material-ui-icons/lib/esm/PrintDisabledOutlined.js new file mode 100644 index 00000000000000..3654557644edbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintDisabledOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1.41 1.6 0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8zM8 5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3h-1V3H6v.36l2 2V5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "11.51", + r: "1" +}, "1")], 'PrintDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintDisabledRounded.js b/packages/material-ui-icons/lib/esm/PrintDisabledRounded.js new file mode 100644 index 00000000000000..5e68b6d6a6bb38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.12 2.32a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4.98 8C3.33 8.01 2 9.35 2 11v4c0 1.1.9 2 2 2h2v2c0 1.1.9 2 2 2h8c.55 0 1.04-.22 1.4-.58l2.83 2.83c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.32zM15 19H9c-.55 0-1-.45-1-1v-4h2.98l4.72 4.72c-.19.17-.43.28-.7.28zm4-11h-8.37l9 9H20c1.1 0 2-.9 2-2v-4c0-1.66-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2-5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H7c-.37 0-.68.21-.85.51L9.63 7H17z" +}), 'PrintDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintDisabledSharp.js b/packages/material-ui-icons/lib/esm/PrintDisabledSharp.js new file mode 100644 index 00000000000000..07905ed70d8bd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.65 7H18V3.01H6v.35zm1.01 1.01 9 8.99H22v-5.99c0-1.66-1.34-3-3-3h-8.34zM19 10c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM1.41 1.6 0 3.01l5 5c-1.66 0-3 1.33-3 2.99v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM8 19.01V15h4l4 4-8 .01z" +}), 'PrintDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/PrintDisabledTwoTone.js new file mode 100644 index 00000000000000..1067a873e4e24e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintDisabledTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 10H5c-.55 0-1 .45-1 1v4h2v-2h4l-3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1.41 1.6 0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m18 15.01 2-.01v-4c0-.55-.45-1-1-1h-6.34l3 3H18v2.01zm-1-3.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "11.51", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M16 5H8v.35L10.66 8H16z", + opacity: ".3" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M19 8h-1V3H6v.36l2 2V5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3z" +}, "5")], 'PrintDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintOutlined.js b/packages/material-ui-icons/lib/esm/PrintOutlined.js new file mode 100644 index 00000000000000..61b8ba5a0ed6e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12v2H8v-4h8v2zm2-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "11.5", + r: "1" +}, "1")], 'PrintOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintRounded.js b/packages/material-ui-icons/lib/esm/PrintRounded.js new file mode 100644 index 00000000000000..d574ffeab1709e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8H5c-1.66 0-3 1.34-3 3v4c0 1.1.9 2 2 2h2v2c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h2c1.1 0 2-.9 2-2v-4c0-1.66-1.34-3-3-3zm-4 11H9c-.55 0-1-.45-1-1v-4h8v4c0 .55-.45 1-1 1zm4-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2-9H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z" +}), 'PrintRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintSharp.js b/packages/material-ui-icons/lib/esm/PrintSharp.js new file mode 100644 index 00000000000000..5a9aedbfd8a036 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 8H2v9h4v4h12v-4h4V8zm-6 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" +}), 'PrintSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrintTwoTone.js b/packages/material-ui-icons/lib/esm/PrintTwoTone.js new file mode 100644 index 00000000000000..5b343c30b3bcc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrintTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 5h8v3H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "11.5", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M6 13h12v2h2v-4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4h2v-2zm12-2.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + opacity: ".3" +}, "3")], 'PrintTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriorityHigh.js b/packages/material-ui-icons/lib/esm/PriorityHigh.js new file mode 100644 index 00000000000000..ad5c410f74d776 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriorityHigh.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "19", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3h4v12h-4z" +}, "1")], 'PriorityHigh'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriorityHighOutlined.js b/packages/material-ui-icons/lib/esm/PriorityHighOutlined.js new file mode 100644 index 00000000000000..63b98bfd6ac022 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriorityHighOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "19", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3h4v12h-4z" +}, "1")], 'PriorityHighOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriorityHighRounded.js b/packages/material-ui-icons/lib/esm/PriorityHighRounded.js new file mode 100644 index 00000000000000..7356f76b6092da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriorityHighRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "19", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" +}, "1")], 'PriorityHighRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriorityHighSharp.js b/packages/material-ui-icons/lib/esm/PriorityHighSharp.js new file mode 100644 index 00000000000000..1c82d5fa1f9532 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriorityHighSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "19", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3h4v12h-4z" +}, "1")], 'PriorityHighSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PriorityHighTwoTone.js b/packages/material-ui-icons/lib/esm/PriorityHighTwoTone.js new file mode 100644 index 00000000000000..1171be158404b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PriorityHighTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "19", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 3h4v12h-4z" +}, "1")], 'PriorityHighTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrivacyTip.js b/packages/material-ui-icons/lib/esm/PrivacyTip.js new file mode 100644 index 00000000000000..f4faa14bac4be0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrivacyTip.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" +}), 'PrivacyTip'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrivacyTipOutlined.js b/packages/material-ui-icons/lib/esm/PrivacyTipOutlined.js new file mode 100644 index 00000000000000..06b8d84aeacd22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrivacyTipOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 3.19 7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" +}), 'PrivacyTipOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrivacyTipRounded.js b/packages/material-ui-icons/lib/esm/PrivacyTipRounded.js new file mode 100644 index 00000000000000..fef63244622821 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrivacyTipRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.19 4.47C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.52-.23-1.11-.23-1.62 0l-7 3.11zM12 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1z" +}), 'PrivacyTipRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrivacyTipSharp.js b/packages/material-ui-icons/lib/esm/PrivacyTipSharp.js new file mode 100644 index 00000000000000..f92bc334d5a572 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrivacyTipSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" +}), 'PrivacyTipSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PrivacyTipTwoTone.js b/packages/material-ui-icons/lib/esm/PrivacyTipTwoTone.js new file mode 100644 index 00000000000000..8e6aaad21f0f84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PrivacyTipTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3.19 5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11zM13 17h-2v-6h2v6zm0-8h-2V7h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 3.19 7 3.11V11c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" +}, "1")], 'PrivacyTipTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ProductionQuantityLimits.js b/packages/material-ui-icons/lib/esm/ProductionQuantityLimits.js new file mode 100644 index 00000000000000..f68f92318eae9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ProductionQuantityLimits.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" +}), 'ProductionQuantityLimits'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsOutlined.js b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsOutlined.js new file mode 100644 index 00000000000000..2bae6eee5814b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" +}), 'ProductionQuantityLimitsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsRounded.js b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsRounded.js new file mode 100644 index 00000000000000..5e6e912c7395ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.24-6.14c.25-.48.08-1.08-.4-1.34-.49-.27-1.1-.08-1.36.41L15.55 11H8.53L4.27 2H2c-.55 0-1 .45-1 1s.45 1 1 1h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2z" +}), 'ProductionQuantityLimitsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsSharp.js b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsSharp.js new file mode 100644 index 00000000000000..0be477ec6cc36b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" +}), 'ProductionQuantityLimitsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsTwoTone.js b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsTwoTone.js new file mode 100644 index 00000000000000..572dcee852aa6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ProductionQuantityLimitsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" +}), 'ProductionQuantityLimitsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Psychology.js b/packages/material-ui-icons/lib/esm/Psychology.js new file mode 100644 index 00000000000000..2d65742bac756c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Psychology.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 8.57c-.79 0-1.43.64-1.43 1.43s.64 1.43 1.43 1.43 1.43-.64 1.43-1.43-.64-1.43-1.43-1.43z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 3C9.25 3 6.2 5.94 6.02 9.64L4.1 12.2c-.25.33-.01.8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.68c2.36-1.12 4-3.53 4-6.32 0-3.87-3.13-7-7-7zm3 7c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.05.26l-.85.66c.03.12.04.25.04.39z" +}, "1")], 'Psychology'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PsychologyOutlined.js b/packages/material-ui-icons/lib/esm/PsychologyOutlined.js new file mode 100644 index 00000000000000..7966fa190fe5cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PsychologyOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.82 7.22-1 .4c-.21-.16-.43-.29-.67-.39L14 6.17c-.02-.1-.1-.17-.2-.17h-1.6c-.1 0-.18.07-.19.17l-.15 1.06c-.24.1-.47.23-.67.39l-1-.4c-.09-.03-.2 0-.24.09l-.8 1.38c-.05.09-.03.2.05.26l.85.66c-.03.12-.05.26-.05.39s.01.26.03.39l-.84.66c-.08.06-.1.17-.05.25l.8 1.39c.05.09.15.12.25.09l.99-.4c.21.16.43.29.68.39l.14 1.06c.02.1.1.17.2.17h1.6c.1 0 .18-.07.2-.17l.15-1.06c.24-.1.47-.23.67-.39l.99.4c.09.04.2 0 .24-.09l.8-1.39c.05-.09.03-.19-.05-.25l-.83-.66c.02-.13.03-.26.03-.39 0-.14-.01-.27-.03-.39l.85-.66c.08-.06.1-.17.05-.26l-.8-1.38c-.05-.09-.16-.12-.25-.09zM13 11.43c-.79 0-1.43-.64-1.43-1.43s.64-1.43 1.43-1.43 1.43.64 1.43 1.43-.64 1.43-1.43 1.43z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.94 9.06c-.43-3.27-3.23-5.86-6.53-6.05C13.27 3 13.14 3 13 3 9.47 3 6.57 5.61 6.08 9l-1.93 3.48c-.41.66.07 1.52.85 1.52h1v2c0 1.1.9 2 2 2h1v3h7v-4.68c2.62-1.25 4.35-4.08 3.94-7.26zm-5.05 5.57-.89.42V19h-3v-3H8v-4H6.7l1.33-2.33C8.21 7.06 10.35 5 13 5c2.76 0 5 2.24 5 5 0 2.09-1.29 3.88-3.11 4.63z" +}, "1")], 'PsychologyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PsychologyRounded.js b/packages/material-ui-icons/lib/esm/PsychologyRounded.js new file mode 100644 index 00000000000000..234137edf70ff5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PsychologyRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 8.57c-.79 0-1.43.64-1.43 1.43s.64 1.43 1.43 1.43 1.43-.64 1.43-1.43-.64-1.43-1.43-1.43z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.21 3c-3.84-.11-7 2.87-7.19 6.64L4.1 12.2c-.25.33-.01.8.4.8H6v3c0 1.1.9 2 2 2h1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3.68c2.44-1.16 4.1-3.68 4-6.58-.14-3.62-3.18-6.63-6.79-6.74zM16 10c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.05.26l-.85.66c.03.12.04.25.04.39z" +}, "1")], 'PsychologyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PsychologySharp.js b/packages/material-ui-icons/lib/esm/PsychologySharp.js new file mode 100644 index 00000000000000..3f4d0466d0a8b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PsychologySharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 8.57c-.79 0-1.43.64-1.43 1.43s.64 1.43 1.43 1.43 1.43-.64 1.43-1.43-.64-1.43-1.43-1.43z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 3C9.25 3 6.2 5.94 6.02 9.64L4.1 12.2c-.25.33-.01.8.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.68c2.36-1.12 4-3.53 4-6.32 0-3.87-3.13-7-7-7zm3 7c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.05.26l-.85.66c.03.12.04.25.04.39z" +}, "1")], 'PsychologySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PsychologyTwoTone.js b/packages/material-ui-icons/lib/esm/PsychologyTwoTone.js new file mode 100644 index 00000000000000..b7395d1f5b3957 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PsychologyTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 5c-2.65 0-4.79 2.06-4.97 4.67L6.7 12H8v4h3v3h3v-3.95l.89-.43C16.71 13.88 18 12.09 18 10c0-2.76-2.24-5-5-5zm3.82 3.95-.85.66c.02.12.03.25.03.39 0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39c-.05-.08-.03-.19.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38c.05.09.03.2-.04.26z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m15.82 7.22-1 .4c-.21-.16-.43-.29-.67-.39L14 6.17c-.02-.1-.1-.17-.2-.17h-1.6c-.1 0-.18.07-.19.17l-.15 1.06c-.24.1-.47.23-.67.39l-1-.4c-.09-.03-.2 0-.24.09l-.8 1.38c-.05.09-.03.2.05.26l.85.66c-.03.12-.05.26-.05.39s.01.26.03.39l-.84.66c-.08.06-.1.17-.05.25l.8 1.39c.05.09.15.12.25.09l.99-.4c.21.16.43.29.68.39l.14 1.06c.02.1.1.17.2.17h1.6c.1 0 .18-.07.2-.17l.15-1.06c.24-.1.47-.23.67-.39l.99.4c.09.04.2 0 .24-.09l.8-1.39c.05-.09.03-.19-.05-.25l-.83-.66c.02-.13.03-.26.03-.39 0-.14-.01-.27-.03-.39l.85-.66c.08-.06.1-.17.05-.26l-.8-1.38c-.05-.09-.16-.12-.25-.09zM13 11.43c-.79 0-1.43-.64-1.43-1.43s.64-1.43 1.43-1.43 1.43.64 1.43 1.43-.64 1.43-1.43 1.43z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19.94 9.06c-.43-3.27-3.23-5.86-6.53-6.05C13.27 3 13.14 3 13 3 9.47 3 6.57 5.61 6.08 9l-1.93 3.48c-.41.66.07 1.52.85 1.52h1v2c0 1.1.9 2 2 2h1v3h7v-4.68c2.62-1.25 4.35-4.08 3.94-7.26zm-5.05 5.57-.89.42V19h-3v-3H8v-4H6.7l1.33-2.33C8.21 7.06 10.35 5 13 5c2.76 0 5 2.24 5 5 0 2.09-1.29 3.88-3.11 4.63z" +}, "2")], 'PsychologyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Public.js b/packages/material-ui-icons/lib/esm/Public.js new file mode 100644 index 00000000000000..9f4028781a9be1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Public.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" +}), 'Public'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicOff.js b/packages/material-ui-icons/lib/esm/PublicOff.js new file mode 100644 index 00000000000000..c9ce6e54844b9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" +}), 'PublicOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicOffOutlined.js b/packages/material-ui-icons/lib/esm/PublicOffOutlined.js new file mode 100644 index 00000000000000..9fdc2f3b44720a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" +}), 'PublicOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicOffRounded.js b/packages/material-ui-icons/lib/esm/PublicOffRounded.js new file mode 100644 index 00000000000000..89f18a7b456891 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm9.49 13.73c-.39.39-1.02.39-1.41 0l-1.56-1.56c-2.07 1.37-4.68 2-7.45 1.48-3.95-.75-7.13-3.92-7.88-7.88-.52-2.77.1-5.38 1.48-7.45L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" +}), 'PublicOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicOffSharp.js b/packages/material-ui-icons/lib/esm/PublicOffSharp.js new file mode 100644 index 00000000000000..5b20c786cde9b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" +}), 'PublicOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicOffTwoTone.js b/packages/material-ui-icons/lib/esm/PublicOffTwoTone.js new file mode 100644 index 00000000000000..053510be22edeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11 8.17 7.88 7.88C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 8.17 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.87 20 13.48 20 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02-1.41 1.41-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" +}, "1")], 'PublicOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicOutlined.js b/packages/material-ui-icons/lib/esm/PublicOutlined.js new file mode 100644 index 00000000000000..ce27bad912ddd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93C7.06 19.43 4 16.07 4 12zm13.89 5.4c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z" +}), 'PublicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicRounded.js b/packages/material-ui-icons/lib/esm/PublicRounded.js new file mode 100644 index 00000000000000..ed3e6a6c07c1a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" +}), 'PublicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicSharp.js b/packages/material-ui-icons/lib/esm/PublicSharp.js new file mode 100644 index 00000000000000..e7ac1cce7c4e48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" +}), 'PublicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublicTwoTone.js b/packages/material-ui-icons/lib/esm/PublicTwoTone.js new file mode 100644 index 00000000000000..2f3361787a7b7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublicTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.99 4.59V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1h-2v2h6c.55 0 1 .45 1 1v3h1c.89 0 1.64.59 1.9 1.4C19.19 15.98 20 14.08 20 12c0-3.35-2.08-6.23-5.01-7.41zM8.99 16v-1l-4.78-4.78C4.08 10.79 4 11.39 4 12c0 4.07 3.06 7.43 6.99 7.93V18c-1.1 0-2-.9-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1.01 17.93C7.06 19.43 4 16.07 4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.53c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z" +}, "1")], 'PublicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Publish.js b/packages/material-ui-icons/lib/esm/Publish.js new file mode 100644 index 00000000000000..9b195e2a0c4668 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Publish.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z" +}), 'Publish'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishOutlined.js b/packages/material-ui-icons/lib/esm/PublishOutlined.js new file mode 100644 index 00000000000000..12b419f7f91837 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 4h14v2H5zm0 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2v-6H9.83L12 9.83 14.17 12H13z" +}), 'PublishOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishRounded.js b/packages/material-ui-icons/lib/esm/PublishRounded.js new file mode 100644 index 00000000000000..32d07e2a939cf6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1zm2.41 9H9v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.71 7.7a.9959.9959 0 0 0-1.41 0l-4.59 4.59c-.63.63-.19 1.71.7 1.71z" +}), 'PublishRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishSharp.js b/packages/material-ui-icons/lib/esm/PublishSharp.js new file mode 100644 index 00000000000000..a0f79ed9dc5d91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z" +}), 'PublishSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishTwoTone.js b/packages/material-ui-icons/lib/esm/PublishTwoTone.js new file mode 100644 index 00000000000000..efe76f95cf1e80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.83 12H11v6h2v-6h1.17L12 9.83z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 4h14v2H5zm7 3-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2v-6H9.83L12 9.83 14.17 12H13z" +}, "1")], 'PublishTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishedWithChanges.js b/packages/material-ui-icons/lib/esm/PublishedWithChanges.js new file mode 100644 index 00000000000000..fe59fa4ee61b35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishedWithChanges.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 9.53-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z" +}), 'PublishedWithChanges'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishedWithChangesOutlined.js b/packages/material-ui-icons/lib/esm/PublishedWithChangesOutlined.js new file mode 100644 index 00000000000000..6fc24ac92337dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishedWithChangesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.6 19.5H21v2h-6v-6h2v2.73c1.83-1.47 3-3.71 3-6.23 0-4.07-3.06-7.44-7-7.93V2.05c5.05.5 9 4.76 9 9.95 0 2.99-1.32 5.67-3.4 7.5zM4 12c0-2.52 1.17-4.77 3-6.23V8.5h2v-6H3v2h2.4C3.32 6.33 2 9.01 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm12.24-3.89-5.66 5.66-2.83-2.83-1.41 1.41 4.24 4.24 7.07-7.07-1.41-1.41z" +}), 'PublishedWithChangesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishedWithChangesRounded.js b/packages/material-ui-icons/lib/esm/PublishedWithChangesRounded.js new file mode 100644 index 00000000000000..820006ddbda69e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishedWithChangesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.95 10.23-5.66 5.66c-.39.39-1.02.39-1.41 0l-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12 4.95-4.95c.39-.39 1.02-.39 1.41 0 .4.39.4 1.02.01 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88l1.53 1.53c.31.31.85.09.85-.36V3c0-.28-.22-.5-.5-.5H4.21c-.45 0-.67.54-.35.85L5.2 4.7C3.24 6.52 2 9.11 2 12c0 4.75 3.32 8.73 7.76 9.75.63.14 1.24-.33 1.24-.98 0-.47-.33-.87-.79-.98C6.66 18.98 4 15.8 4 12zm18 0c0-4.75-3.32-8.73-7.76-9.75-.63-.14-1.24.33-1.24.98 0 .47.33.87.79.98C17.34 5.02 20 8.2 20 12c0 2.33-1.02 4.42-2.62 5.88l-1.53-1.53c-.31-.31-.85-.09-.85.36V21c0 .28.22.5.5.5h4.29c.45 0 .67-.54.35-.85L18.8 19.3c1.96-1.82 3.2-4.41 3.2-7.3z" +}), 'PublishedWithChangesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishedWithChangesSharp.js b/packages/material-ui-icons/lib/esm/PublishedWithChangesSharp.js new file mode 100644 index 00000000000000..0067d169d6dee1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishedWithChangesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 9.53-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z" +}), 'PublishedWithChangesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PublishedWithChangesTwoTone.js b/packages/material-ui-icons/lib/esm/PublishedWithChangesTwoTone.js new file mode 100644 index 00000000000000..8b8194e7b10bfe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PublishedWithChangesTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 9.53-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z" +}), 'PublishedWithChangesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PushPin.js b/packages/material-ui-icons/lib/esm/PushPin.js new file mode 100644 index 00000000000000..6eaae5e552b32e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PushPin.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M16 9V4h1c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3z" +}), 'PushPin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PushPinOutlined.js b/packages/material-ui-icons/lib/esm/PushPinOutlined.js new file mode 100644 index 00000000000000..115475bad7e58f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PushPinOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4v5c0 1.12.37 2.16 1 3H9c.65-.86 1-1.9 1-3V4h4m3-2H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3V4h1c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'PushPinOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PushPinRounded.js b/packages/material-ui-icons/lib/esm/PushPinRounded.js new file mode 100644 index 00000000000000..f6f68b568d23dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PushPinRounded.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M19 12.87c0-.47-.34-.85-.8-.98C16.93 11.54 16 10.38 16 9V4h1c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.38-.93 2.54-2.2 2.89-.46.13-.8.51-.8.98V13c0 .55.45 1 1 1h4.98l.02 7c0 .55.45 1 1 1s1-.45 1-1l-.02-7H18c.55 0 1-.45 1-1v-.13z" +}), 'PushPinRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PushPinSharp.js b/packages/material-ui-icons/lib/esm/PushPinSharp.js new file mode 100644 index 00000000000000..e4f32f30760c86 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PushPinSharp.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M16 9V4h2V2H6v2h2v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3z" +}), 'PushPinSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/PushPinTwoTone.js b/packages/material-ui-icons/lib/esm/PushPinTwoTone.js new file mode 100644 index 00000000000000..fe1bf799f20a01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/PushPinTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 4h-4v5c0 1.1-.35 2.14-1 3h6c-.63-.84-1-1.88-1-3V4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 12c-1.66 0-3-1.34-3-3V4h1c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2zM9 12c.65-.86 1-1.9 1-3V4h4v5c0 1.12.37 2.16 1 3H9z" +}, "1")], 'PushPinTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCode.js b/packages/material-ui-icons/lib/esm/QrCode.js new file mode 100644 index 00000000000000..ba24a2ad8ad7f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCode.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" +}), 'QrCode'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCode2.js b/packages/material-ui-icons/lib/esm/QrCode2.js new file mode 100644 index 00000000000000..9fa07169a4b007 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCode2.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" +}), 'QrCode2'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCode2Outlined.js b/packages/material-ui-icons/lib/esm/QrCode2Outlined.js new file mode 100644 index 00000000000000..826f8b3d069715 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCode2Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" +}), 'QrCode2Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCode2Rounded.js b/packages/material-ui-icons/lib/esm/QrCode2Rounded.js new file mode 100644 index 00000000000000..080d304d6db38a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCode2Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM8 9H4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1zm-3.5 7.5v3h3v-3h-3zM8 21H4c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1zm8.5-16.5v3h3v-3h-3zM20 9h-4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1zm-1 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" +}), 'QrCode2Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCode2Sharp.js b/packages/material-ui-icons/lib/esm/QrCode2Sharp.js new file mode 100644 index 00000000000000..9c8ff01363801a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCode2Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" +}), 'QrCode2Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCode2TwoTone.js b/packages/material-ui-icons/lib/esm/QrCode2TwoTone.js new file mode 100644 index 00000000000000..90ee684baa6f4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCode2TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" +}), 'QrCode2TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeOutlined.js b/packages/material-ui-icons/lib/esm/QrCodeOutlined.js new file mode 100644 index 00000000000000..b5250d74a194b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" +}), 'QrCodeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeRounded.js b/packages/material-ui-icons/lib/esm/QrCodeRounded.js new file mode 100644 index 00000000000000..78a8b8dd68ef59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 11h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm0-6h4v4H5V5zm0 16h4c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2zm0-6h4v4H5v-4zm8-10v4c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2zm6 4h-4V5h4v4zm2 11.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5zm-8-7v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5zm3.5 1.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5zM13 17.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5zm2.5 3.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm2-2h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5zm1-6h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5zm1 4h1c.28 0 .5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5v1c0 .28.22.5.5.5z" +}), 'QrCodeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeScanner.js b/packages/material-ui-icons/lib/esm/QrCodeScanner.js new file mode 100644 index 00000000000000..9fad9438d06dc9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeScanner.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" +}), 'QrCodeScanner'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeScannerOutlined.js b/packages/material-ui-icons/lib/esm/QrCodeScannerOutlined.js new file mode 100644 index 00000000000000..d5cd2ade7d83da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeScannerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" +}), 'QrCodeScannerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeScannerRounded.js b/packages/material-ui-icons/lib/esm/QrCodeScannerRounded.js new file mode 100644 index 00000000000000..18d3f310d13e39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeScannerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM21 7c-.55 0-1-.45-1-1V4h-2c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zm1 14v-3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1zM3 22h3c.55 0 1-.45 1-1s-.45-1-1-1H4v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zM2 3v3c0 .55.45 1 1 1s1-.45 1-1V4h2c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z" +}), 'QrCodeScannerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeScannerSharp.js b/packages/material-ui-icons/lib/esm/QrCodeScannerSharp.js new file mode 100644 index 00000000000000..bac4ce7c03f080 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeScannerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" +}), 'QrCodeScannerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeScannerTwoTone.js b/packages/material-ui-icons/lib/esm/QrCodeScannerTwoTone.js new file mode 100644 index 00000000000000..badcad8ee0f595 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeScannerTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" +}), 'QrCodeScannerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeSharp.js b/packages/material-ui-icons/lib/esm/QrCodeSharp.js new file mode 100644 index 00000000000000..9ab86116551c82 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" +}), 'QrCodeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QrCodeTwoTone.js b/packages/material-ui-icons/lib/esm/QrCodeTwoTone.js new file mode 100644 index 00000000000000..4cd4111dd3e166 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QrCodeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 15h4v4H5zM5 5h4v4H5zm10 0h4v4h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" +}, "1")], 'QrCodeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryBuilder.js b/packages/material-ui-icons/lib/esm/QueryBuilder.js new file mode 100644 index 00000000000000..1fafdc7165d726 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryBuilder.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}, "1")], 'QueryBuilder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryBuilderOutlined.js b/packages/material-ui-icons/lib/esm/QueryBuilderOutlined.js new file mode 100644 index 00000000000000..31759d2afdccec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryBuilderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}), 'QueryBuilderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryBuilderRounded.js b/packages/material-ui-icons/lib/esm/QueryBuilderRounded.js new file mode 100644 index 00000000000000..dc722480ff00f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryBuilderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z" +}), 'QueryBuilderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryBuilderSharp.js b/packages/material-ui-icons/lib/esm/QueryBuilderSharp.js new file mode 100644 index 00000000000000..cf626a8d610650 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryBuilderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}), 'QueryBuilderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryBuilderTwoTone.js b/packages/material-ui-icons/lib/esm/QueryBuilderTwoTone.js new file mode 100644 index 00000000000000..a51bcf4dc062a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryBuilderTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}, "1")], 'QueryBuilderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryStats.js b/packages/material-ui-icons/lib/esm/QueryStats.js new file mode 100644 index 00000000000000..caa0840c6346e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryStats.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" +}), 'QueryStats'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryStatsOutlined.js b/packages/material-ui-icons/lib/esm/QueryStatsOutlined.js new file mode 100644 index 00000000000000..9b8df747c4a8ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryStatsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" +}), 'QueryStatsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryStatsRounded.js b/packages/material-ui-icons/lib/esm/QueryStatsRounded.js new file mode 100644 index 00000000000000..55280da005380e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryStatsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.88 18.47c.48-.77.75-1.67.69-2.66-.13-2.15-1.84-3.97-3.97-4.2-2.72-.3-5.02 1.81-5.02 4.47 0 2.49 2.01 4.5 4.49 4.5.88 0 1.7-.26 2.39-.7l2.41 2.41c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-2.41-2.4zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.08 5.01c-.36.58-1.17.64-1.61.13l-2.12-2.47-3.06 4.9c-.31.49-.97.62-1.44.28-.42-.31-.54-.89-.26-1.34l3.78-6.05c.36-.57 1.17-.63 1.61-.12L9 12.5l3.18-5.17c.38-.62 1.28-.64 1.68-.03l1.86 2.78zm2.59.5c-.64-.28-1.33-.45-2.05-.49L20.8 2.9c.31-.49.97-.61 1.43-.27.43.31.54.9.26 1.34l-4.18 6.61z" +}), 'QueryStatsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryStatsSharp.js b/packages/material-ui-icons/lib/esm/QueryStatsSharp.js new file mode 100644 index 00000000000000..66c2a4b13312eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryStatsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" +}), 'QueryStatsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueryStatsTwoTone.js b/packages/material-ui-icons/lib/esm/QueryStatsTwoTone.js new file mode 100644 index 00000000000000..b26096f1139b5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueryStatsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" +}), 'QueryStatsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuestionAnswer.js b/packages/material-ui-icons/lib/esm/QuestionAnswer.js new file mode 100644 index 00000000000000..11ccbcaecd2bcd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuestionAnswer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z" +}), 'QuestionAnswer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuestionAnswerOutlined.js b/packages/material-ui-icons/lib/esm/QuestionAnswerOutlined.js new file mode 100644 index 00000000000000..2c4f295615638d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuestionAnswerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z" +}), 'QuestionAnswerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuestionAnswerRounded.js b/packages/material-ui-icons/lib/esm/QuestionAnswerRounded.js new file mode 100644 index 00000000000000..86a91b6a930e74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuestionAnswerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2zm-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2z" +}), 'QuestionAnswerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuestionAnswerSharp.js b/packages/material-ui-icons/lib/esm/QuestionAnswerSharp.js new file mode 100644 index 00000000000000..8573d1b147a724 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuestionAnswerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z" +}), 'QuestionAnswerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuestionAnswerTwoTone.js b/packages/material-ui-icons/lib/esm/QuestionAnswerTwoTone.js new file mode 100644 index 00000000000000..3fe7db7cac413b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuestionAnswerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 11V4H4v8.17l.59-.58.58-.59H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-5 7c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zM4.59 11.59l-.59.58V4h11v7H5.17l-.58.59z" +}, "1")], 'QuestionAnswerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Queue.js b/packages/material-ui-icons/lib/esm/Queue.js new file mode 100644 index 00000000000000..5405d9e0d6b7b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Queue.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" +}), 'Queue'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueMusic.js b/packages/material-ui-icons/lib/esm/QueueMusic.js new file mode 100644 index 00000000000000..a68f8cebf3e177 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueMusic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z" +}), 'QueueMusic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueMusicOutlined.js b/packages/material-ui-icons/lib/esm/QueueMusicOutlined.js new file mode 100644 index 00000000000000..02422b7b42f393 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueMusicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6h-5v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6zm-7 0H3v2h12V6zm0 4H3v2h12v-2zm-4 4H3v2h8v-2z" +}), 'QueueMusicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueMusicRounded.js b/packages/material-ui-icons/lib/esm/QueueMusicRounded.js new file mode 100644 index 00000000000000..f2151c7236ff77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueMusicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM4 16h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 6c-1.1 0-2 .9-2 2v6.18c-.31-.11-.65-.18-1-.18-1.84 0-3.28 1.64-2.95 3.54.21 1.21 1.2 2.2 2.41 2.41 1.9.33 3.54-1.11 3.54-2.95V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2z" +}), 'QueueMusicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueMusicSharp.js b/packages/material-ui-icons/lib/esm/QueueMusicSharp.js new file mode 100644 index 00000000000000..0fc3c7fcc3fa72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueMusicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z" +}), 'QueueMusicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueMusicTwoTone.js b/packages/material-ui-icons/lib/esm/QueueMusicTwoTone.js new file mode 100644 index 00000000000000..ac915b56675ce8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueMusicTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "17", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 10h12v2H3v-2zm0 4h8v2H3v-2zm0-8h12v2H3V6zm14 8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5v8.18z" +}, "1")], 'QueueMusicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueOutlined.js b/packages/material-ui-icons/lib/esm/QueueOutlined.js new file mode 100644 index 00000000000000..66e9dbec00b2db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" +}), 'QueueOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueuePlayNext.js b/packages/material-ui-icons/lib/esm/QueuePlayNext.js new file mode 100644 index 00000000000000..26e67135373392 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueuePlayNext.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" +}), 'QueuePlayNext'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueuePlayNextOutlined.js b/packages/material-ui-icons/lib/esm/QueuePlayNextOutlined.js new file mode 100644 index 00000000000000..de82a00cec4848 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueuePlayNextOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" +}), 'QueuePlayNextOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueuePlayNextRounded.js b/packages/material-ui-icons/lib/esm/QueuePlayNextRounded.js new file mode 100644 index 00000000000000..581ee5b834fb70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueuePlayNextRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v6c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm-8 7V8c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zm10.29 8.71-3.04 3.04c-.41.41-1.09.41-1.5 0-.41-.41-.41-1.09 0-1.5L21 18l-2.25-2.25c-.41-.41-.41-1.09 0-1.5.41-.41 1.09-.41 1.5 0l3.04 3.04c.39.39.39 1.03 0 1.42z" +}), 'QueuePlayNextRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueuePlayNextSharp.js b/packages/material-ui-icons/lib/esm/QueuePlayNextSharp.js new file mode 100644 index 00000000000000..e9d44d139a5e6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueuePlayNextSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v16h7v2h8v-2h2v-2H3V5h18v8h2V3zm-10 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" +}), 'QueuePlayNextSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueuePlayNextTwoTone.js b/packages/material-ui-icons/lib/esm/QueuePlayNextTwoTone.js new file mode 100644 index 00000000000000..c8ac0c696711d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueuePlayNextTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 15v-3h3v-2h-3V7h-2v3H8v2h3v3zm5 0 3 3-3 3 1.5 1.5L24 18l-4.5-4.5zM8 19v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5z" +}), 'QueuePlayNextTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueRounded.js b/packages/material-ui-icons/lib/esm/QueueRounded.js new file mode 100644 index 00000000000000..1b3ba1e423dd40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'QueueRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueSharp.js b/packages/material-ui-icons/lib/esm/QueueSharp.js new file mode 100644 index 00000000000000..f0c3b04daf75e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" +}), 'QueueSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QueueTwoTone.js b/packages/material-ui-icons/lib/esm/QueueTwoTone.js new file mode 100644 index 00000000000000..68786ecea20598 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QueueTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm1-7h4V5h2v4h4v2h-4v4h-2v-4H9V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 20c0 1.1.9 2 2 2h14v-2H4V6H2v14zM20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z" +}, "1")], 'QueueTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Quickreply.js b/packages/material-ui-icons/lib/esm/Quickreply.js new file mode 100644 index 00000000000000..538e3e1c3a3e0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Quickreply.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-8h7V4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z" +}, "1")], 'Quickreply'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuickreplyOutlined.js b/packages/material-ui-icons/lib/esm/QuickreplyOutlined.js new file mode 100644 index 00000000000000..404f7359c832ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuickreplyOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17V4h16v6h2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-2H5.17L4 17.17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z" +}, "1")], 'QuickreplyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuickreplyRounded.js b/packages/material-ui-icons/lib/esm/QuickreplyRounded.js new file mode 100644 index 00000000000000..8ef54a92c5f29d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuickreplyRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-7c0-.55.45-1 1-1h6V4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.69 16H20.3l1.4-3.3c.14-.33-.1-.7-.46-.7H17.5c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5H19v3.94c0 .26.36.35.47.11l2.66-5.33c.17-.33-.07-.72-.44-.72z" +}, "1")], 'QuickreplyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuickreplySharp.js b/packages/material-ui-icons/lib/esm/QuickreplySharp.js new file mode 100644 index 00000000000000..4f68eeb041ca47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuickreplySharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h9v-8h7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z" +}, "1")], 'QuickreplySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuickreplyTwoTone.js b/packages/material-ui-icons/lib/esm/QuickreplyTwoTone.js new file mode 100644 index 00000000000000..188920833534cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuickreplyTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 4v13.17L5.17 16H15v-6h5V4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5.17 16 4 17.17V4h16v6h2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9v-2H5.17z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m19 23 3.5-7h-2.2l1.7-4h-5v6h2z" +}, "2")], 'QuickreplyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Quiz.js b/packages/material-ui-icons/lib/esm/Quiz.js new file mode 100644 index 00000000000000..8be62e2c189732 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Quiz.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.99 13c-.59 0-1.05-.47-1.05-1.05 0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04-.01.58-.45 1.05-1.04 1.05zm2.5-6.17c-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c0-.41-.06-1.08.26-1.65.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.61.58 1.73.01 2.57z" +}, "1")], 'Quiz'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuizOutlined.js b/packages/material-ui-icons/lib/esm/QuizOutlined.js new file mode 100644 index 00000000000000..8888a8826735b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuizOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-6.49-5.84c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z" +}), 'QuizOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuizRounded.js b/packages/material-ui-icons/lib/esm/QuizRounded.js new file mode 100644 index 00000000000000..1d5b752e9b6cc1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuizRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 20H4V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.99 13c-.59 0-1.05-.47-1.05-1.05 0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04-.01.58-.45 1.05-1.04 1.05zm2.5-6.17c-.63.93-1.23 1.21-1.56 1.81-.08.14-.13.26-.16.49-.05.39-.36.68-.75.68h-.03c-.44 0-.79-.38-.75-.82.03-.28.09-.57.25-.84.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.61 0-1.01.32-1.26.7-.19.29-.57.39-.89.25-.42-.18-.6-.7-.34-1.07.51-.74 1.36-1.29 2.48-1.29 1.23 0 2.08.56 2.51 1.26.37.61.58 1.73.01 2.57z" +}, "1")], 'QuizRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuizSharp.js b/packages/material-ui-icons/lib/esm/QuizSharp.js new file mode 100644 index 00000000000000..84f5d92bff7775 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuizSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 2v16h16V2H6zm7.51 8.16c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z" +}, "1")], 'QuizSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/QuizTwoTone.js b/packages/material-ui-icons/lib/esm/QuizTwoTone.js new file mode 100644 index 00000000000000..a055cc31abe70d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/QuizTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 4v12h12V4H8zm6.74 10.69c-.2.21-.44.31-.73.31s-.54-.1-.74-.31c-.21-.21-.31-.45-.31-.74s.1-.54.31-.74c.21-.2.45-.3.74-.3s.54.1.74.3c.2.2.3.45.3.74s-.11.54-.31.74zm1.77-5.86c-.23.34-.54.69-.92 1.06-.3.27-.51.52-.64.75-.12.23-.18.49-.18.78v.4h-1.52v-.56c0-.42.09-.78.26-1.09.18-.32.49-.67.95-1.07.32-.29.55-.54.69-.74.14-.2.21-.44.21-.72 0-.36-.12-.65-.36-.87-.24-.23-.57-.34-.99-.34-.4 0-.72.12-.97.36s-.42.53-.53.87l-1.37-.57c.18-.55.52-1.03 1-1.45.49-.43 1.11-.64 1.85-.64.56 0 1.05.11 1.49.33.44.22.78.53 1.02.93s.36.84.36 1.33c0 .49-.11.9-.35 1.24z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-6.49-5.84c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z" +}, "1")], 'QuizTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RMobiledata.js b/packages/material-ui-icons/lib/esm/RMobiledata.js new file mode 100644 index 00000000000000..187a0d3a60195a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h5c1.13 0 2 .87 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" +}), 'RMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/RMobiledataOutlined.js new file mode 100644 index 00000000000000..20c841e171dded --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h5c1.13 0 2 .87 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" +}), 'RMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RMobiledataRounded.js b/packages/material-ui-icons/lib/esm/RMobiledataRounded.js new file mode 100644 index 00000000000000..a45dfce5f7f237 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7.8 7.2.65 1.52c.26.61-.18 1.28-.84 1.28-.37 0-.7-.22-.85-.56l-.89-2.11H4v1.75c0 .51-.41.92-.92.92h-.16C2.41 10 2 9.59 2 9.08V3c0-.55.45-1 1-1h4c1.1 0 2 .9 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" +}), 'RMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RMobiledataSharp.js b/packages/material-ui-icons/lib/esm/RMobiledataSharp.js new file mode 100644 index 00000000000000..ef8fbbcdb5363b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h7v5.2H7.8zM7 4H4v1.33h3V4z" +}), 'RMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/RMobiledataTwoTone.js new file mode 100644 index 00000000000000..534cc60510e95a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.8 7.2 9 10H7L5.87 7.33H4V10H2V2h5c1.13 0 2 .87 2 2v1.33c0 .8-.53 1.54-1.2 1.87zM7 4H4v1.33h3V4z" +}), 'RMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Radar.js b/packages/material-ui-icons/lib/esm/Radar.js new file mode 100644 index 00000000000000..5558b3cccd3e68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Radar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" +}), 'Radar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadarOutlined.js b/packages/material-ui-icons/lib/esm/RadarOutlined.js new file mode 100644 index 00000000000000..e5311b74fd10b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" +}), 'RadarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadarRounded.js b/packages/material-ui-icons/lib/esm/RadarRounded.js new file mode 100644 index 00000000000000..c9a2112e47bc5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" +}), 'RadarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadarSharp.js b/packages/material-ui-icons/lib/esm/RadarSharp.js new file mode 100644 index 00000000000000..88192285734743 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" +}), 'RadarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadarTwoTone.js b/packages/material-ui-icons/lib/esm/RadarTwoTone.js new file mode 100644 index 00000000000000..4909ff3fc07f71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.74 18.33C21.15 16.6 22 14.4 22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10c2.4 0 4.6-.85 6.33-2.26.27-.22.53-.46.78-.71.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42C15.54 19.37 13.85 20 12 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" +}), 'RadarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Radio.js b/packages/material-ui-icons/lib/esm/Radio.js new file mode 100644 index 00000000000000..ab626e556541d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Radio.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z" +}), 'Radio'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonChecked.js b/packages/material-ui-icons/lib/esm/RadioButtonChecked.js new file mode 100644 index 00000000000000..7d8cf5b51b8efc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonChecked.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'RadioButtonChecked'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonCheckedOutlined.js b/packages/material-ui-icons/lib/esm/RadioButtonCheckedOutlined.js new file mode 100644 index 00000000000000..1fee69369ac315 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonCheckedOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "5" +}, "1")], 'RadioButtonCheckedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonCheckedRounded.js b/packages/material-ui-icons/lib/esm/RadioButtonCheckedRounded.js new file mode 100644 index 00000000000000..4dde052d1abf74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonCheckedRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "5" +}, "1")], 'RadioButtonCheckedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonCheckedSharp.js b/packages/material-ui-icons/lib/esm/RadioButtonCheckedSharp.js new file mode 100644 index 00000000000000..d737ceae2c14a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonCheckedSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "5" +}, "1")], 'RadioButtonCheckedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonCheckedTwoTone.js b/packages/material-ui-icons/lib/esm/RadioButtonCheckedTwoTone.js new file mode 100644 index 00000000000000..9f4881ea200482 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonCheckedTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "5" +}, "1")], 'RadioButtonCheckedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonUnchecked.js b/packages/material-ui-icons/lib/esm/RadioButtonUnchecked.js new file mode 100644 index 00000000000000..458c3814cea4c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonUnchecked.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'RadioButtonUnchecked'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonUncheckedOutlined.js b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedOutlined.js new file mode 100644 index 00000000000000..c65f39715952d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'RadioButtonUncheckedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonUncheckedRounded.js b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedRounded.js new file mode 100644 index 00000000000000..9cba926f4919a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'RadioButtonUncheckedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonUncheckedSharp.js b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedSharp.js new file mode 100644 index 00000000000000..bdac7fe24760d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'RadioButtonUncheckedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioButtonUncheckedTwoTone.js b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedTwoTone.js new file mode 100644 index 00000000000000..5654de8b2dd56e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioButtonUncheckedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'RadioButtonUncheckedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioOutlined.js b/packages/material-ui-icons/lib/esm/RadioOutlined.js new file mode 100644 index 00000000000000..75da030f410e25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 6H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2zm0 2v3h-2V9h-2v2H4V8h16zM4 20v-7h16v7H4z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "16.48", + r: "2.5" +}, "1")], 'RadioOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioRounded.js b/packages/material-ui-icons/lib/esm/RadioRounded.js new file mode 100644 index 00000000000000..be214bf75f7f70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.9 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.1-.9-2-2-2H8.3l7.43-3c.46-.19.68-.71.49-1.17-.19-.46-.71-.68-1.17-.49L3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-1c0-.55-.45-1-1-1s-1 .45-1 1v1H4V9c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v3z" +}), 'RadioRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioSharp.js b/packages/material-ui-icons/lib/esm/RadioSharp.js new file mode 100644 index 00000000000000..adc695523f4604 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 6.67V22h20V6H8.3l8.26-3.34L15.88 1 2 6.67zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z" +}), 'RadioSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RadioTwoTone.js b/packages/material-ui-icons/lib/esm/RadioTwoTone.js new file mode 100644 index 00000000000000..e35b46e03c5d1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RadioTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 13H4v7h16v-7zM8 18.98c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 20c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12zM4 8h16v3h-2V9h-2v2H4V8zm0 5h16v7H4v-7z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "16.48", + r: "2.5" +}, "2")], 'RadioTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RailwayAlert.js b/packages/material-ui-icons/lib/esm/RailwayAlert.js new file mode 100644 index 00000000000000..c849b5c91f0bca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RailwayAlert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8a7 7 0 0 0-11.95-4.95A33.8 33.8 0 0 0 9 3c-4.42 0-8 .5-8 4v10.5A3.5 3.5 0 0 0 4.5 21L3 22.5v.5h12v-.5L13.5 21a3.5 3.5 0 0 0 3.5-3.5v-2.58A7 7 0 0 0 23 8zM3 12V7h6.08a6.96 6.96 0 0 0 1.18 5H3zm6 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7.71-6.06-.2.03L16 13l-.47-.02-.16-.02-.29-.04-.2-.04-.22-.06a1.55 1.55 0 0 1-.23-.07l-.13-.05A4.99 4.99 0 0 1 11.1 7c.04-.19.09-.37.15-.54l.05-.14.15-.38.07-.15.2-.36.07-.12.3-.42.02-.02c.24-.3.52-.57.82-.81l.01-.01.46-.32.03-.02A5.25 5.25 0 0 1 16 3a5 5 0 0 1 .71 9.94zM15 4h2v5h-2zm0 6h2v2h-2z" +}), 'RailwayAlert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RailwayAlertOutlined.js b/packages/material-ui-icons/lib/esm/RailwayAlertOutlined.js new file mode 100644 index 00000000000000..fa7f6a2e40fb4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RailwayAlertOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "15.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.9-.77 3.28-1.08 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm12 5.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V13h12v3.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "2")], 'RailwayAlertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RailwayAlertRounded.js b/packages/material-ui-icons/lib/esm/RailwayAlertRounded.js new file mode 100644 index 00000000000000..a24313809e637c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RailwayAlertRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20l-1.21.81c-.18.12-.29.32-.29.54 0 .36.29.65.65.65h10.7c.36 0 .65-.29.65-.65 0-.22-.11-.42-.29-.54L14.5 20c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm6 6c-.83 0-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5S10.83 17 10 17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm.5-2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5s.5.22.5.5v3z" +}, "1")], 'RailwayAlertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RailwayAlertSharp.js b/packages/material-ui-icons/lib/esm/RailwayAlertSharp.js new file mode 100644 index 00000000000000..b4736310dd8af4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RailwayAlertSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm6 6c-.83 0-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5S10.83 17 10 17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "1")], 'RailwayAlertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RailwayAlertTwoTone.js b/packages/material-ui-icons/lib/esm/RailwayAlertTwoTone.js new file mode 100644 index 00000000000000..4cae0e3ddb12da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RailwayAlertTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 16.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V13H4v3.5zm6-2.5c.83 0 1.5.67 1.5 1.5S10.83 17 10 17s-1.5-.67-1.5-1.5S9.17 14 10 14zM4.43 6H11c0-.33.03-.66.08-.98-3.37-.1-5.75.21-6.65.98z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 11V8h7.29C11.1 7.37 11 6.7 11 6H4.43c.9-.77 3.28-1.08 6.65-.98.1-.7.3-1.37.59-1.99C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm12 5.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V13h12v3.5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "15.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "3")], 'RailwayAlertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RamenDining.js b/packages/material-ui-icons/lib/esm/RamenDining.js new file mode 100644 index 00000000000000..a429fbe9743782 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RamenDining.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 6H8V4.65l1-.12V6zm0 6H8V7h1v5zM6 7h1v5H6V7zm0-2.12 1-.12V6H6V4.88zM22 3V2L5 4v8H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10V7h12V6H10V4.41L22 3z" +}), 'RamenDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RamenDiningOutlined.js b/packages/material-ui-icons/lib/esm/RamenDiningOutlined.js new file mode 100644 index 00000000000000..09f812ad42cf8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RamenDiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.5V20h-4v-1.11l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33M22 2 4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51V2zM8 6.5V5.06l1-.11V6.5H8zm-2.5 0V5.34l1-.11V6.5h-1zM8 12V8h1v4H8zm-2.5 0V8h1v4h-1z" +}), 'RamenDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RamenDiningRounded.js b/packages/material-ui-icons/lib/esm/RamenDiningRounded.js new file mode 100644 index 00000000000000..53d89570af14f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RamenDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2.84c0-.45-.39-.79-.83-.75L4.89 3.9c-.51.05-.89.48-.89.99V12h-.92c-.6 0-1.08.53-1 1.13.44 3.2 2.75 5.87 5.92 7.12V21c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-.75c3.17-1.25 5.48-3.92 5.92-7.12.08-.6-.4-1.13-1-1.13H10.5V8h10.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H10.5V4.78l10.83-1.19c.38-.05.67-.37.67-.75zM6.5 5.22V6.5h-1V5.34l1-.12zM5.5 8h1v4h-1V8zM9 12H8V8h1v4zm0-5.5H8V5.06l1-.11V6.5z" +}), 'RamenDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RamenDiningSharp.js b/packages/material-ui-icons/lib/esm/RamenDiningSharp.js new file mode 100644 index 00000000000000..06bba2373d0cb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RamenDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 3.51V2L4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51zM6.5 5.22V6.5h-1V5.34l1-.12zM5.5 8h1v4h-1V8zM9 12H8V8h1v4zm0-5.5H8V5.06l1-.11V6.5z" +}), 'RamenDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RamenDiningTwoTone.js b/packages/material-ui-icons/lib/esm/RamenDiningTwoTone.js new file mode 100644 index 00000000000000..54184dc305220b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RamenDiningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8.73 18.39 1.27.5V20h4v-1.11l1.27-.5c2.16-.85 3.74-2.47 4.4-4.39H4.34c.65 1.92 2.24 3.54 4.39 4.39z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 3.51V2L4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51zM8 5.06l1-.11V6.5H8V5.06zM8 8h1v4H8V8zM5.5 5.34l1-.11V6.5h-1V5.34zM5.5 8h1v4h-1V8zm14.16 6c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.5V20h-4v-1.11l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33z" +}, "1")], 'RamenDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RateReview.js b/packages/material-ui-icons/lib/esm/RateReview.js new file mode 100644 index 00000000000000..e6cf40b2adc45c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RateReview.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z" +}), 'RateReview'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RateReviewOutlined.js b/packages/material-ui-icons/lib/esm/RateReviewOutlined.js new file mode 100644 index 00000000000000..69b0d7340d9106 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RateReviewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z" +}), 'RateReviewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RateReviewRounded.js b/packages/material-ui-icons/lib/esm/RateReviewRounded.js new file mode 100644 index 00000000000000..1cc5cbf596de5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RateReviewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm11 0h-6.5l2-2H17c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'RateReviewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RateReviewSharp.js b/packages/material-ui-icons/lib/esm/RateReviewSharp.js new file mode 100644 index 00000000000000..417cee12799107 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RateReviewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z" +}), 'RateReviewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RateReviewTwoTone.js b/packages/material-ui-icons/lib/esm/RateReviewTwoTone.js new file mode 100644 index 00000000000000..f9e971f103d350 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RateReviewTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4 17.17.59-.59.58-.58H20V4H4v13.17zM18 14h-7.5l2-2H18v2zM6 11.53l5.88-5.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6v-2.47z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z" +}, "1")], 'RateReviewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOff.js b/packages/material-ui-icons/lib/esm/RawOff.js new file mode 100644 index 00000000000000..66c7988f7976e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" +}), 'RawOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOffOutlined.js b/packages/material-ui-icons/lib/esm/RawOffOutlined.js new file mode 100644 index 00000000000000..b0979d69fd73f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" +}), 'RawOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOffRounded.js b/packages/material-ui-icons/lib/esm/RawOffRounded.js new file mode 100644 index 00000000000000..454e23a91a7fe1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.55 9c-.33 0-.63.23-.71.55l-.6 2.45-.56-2.26c-.1-.44-.49-.74-.94-.74s-.84.3-.94.74L16.24 12l-.6-2.45c-.08-.32-.37-.55-.71-.55-.47 0-.82.44-.71.9l.5 1.99 2.42 2.42c0-.01.01-.02.01-.03l.58-2.32.58 2.32c.12.42.5.72.93.72s.81-.3.92-.72l1.09-4.38c.12-.46-.23-.9-.7-.9zM3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L6.17 9H4c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V13h1.1l.72 1.59c.12.25.37.41.64.41.5 0 .83-.51.64-.97L7.1 12.9c.5-.3.9-.8.9-1.4v-.67l1.43 1.43-.45 1.84c-.12.46.23.9.7.9.33 0 .62-.23.7-.55l.24-.95h.04l8.4 8.4c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51zM6.5 11.5h-2v-1h2v1z" +}), 'RawOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOffSharp.js b/packages/material-ui-icons/lib/esm/RawOffSharp.js new file mode 100644 index 00000000000000..3febb98a81319b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" +}), 'RawOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOffTwoTone.js b/packages/material-ui-icons/lib/esm/RawOffTwoTone.js new file mode 100644 index 00000000000000..9e6bdd1c854f4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.15 14.32.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22 6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" +}), 'RawOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOn.js b/packages/material-ui-icons/lib/esm/RawOn.js new file mode 100644 index 00000000000000..5fd121071913ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" +}), 'RawOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOnOutlined.js b/packages/material-ui-icons/lib/esm/RawOnOutlined.js new file mode 100644 index 00000000000000..04d74248aab543 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" +}), 'RawOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOnRounded.js b/packages/material-ui-icons/lib/esm/RawOnRounded.js new file mode 100644 index 00000000000000..94c51ad4449b17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 9H4c-.55 0-1 .45-1 1v4.31c0 .38.31.69.69.69h.11c.38 0 .69-.31.69-.69V13h1.1l.72 1.59c.12.25.37.41.64.41.5 0 .83-.51.64-.97L7.1 12.9c.5-.3.9-.8.9-1.4v-1C8 9.68 7.32 9 6.5 9zm0 2.5h-2v-1h2v1zm5-2.5c-.73 0-1.37.5-1.55 1.21l-.97 3.89c-.12.46.23.9.7.9.33 0 .62-.23.7-.55l.24-.95h1.75l.23.95c.08.32.37.55.71.55.47 0 .82-.44.71-.9l-.97-3.88C12.87 9.5 12.23 9 11.5 9zm-.5 3 .25-1h.5l.25 1h-1zm8.84-2.45-.6 2.45-.56-2.26c-.1-.44-.49-.74-.94-.74-.45 0-.84.3-.94.74L16.24 12l-.6-2.45c-.08-.32-.37-.55-.71-.55-.47 0-.82.44-.71.9l1.09 4.38c.12.42.5.72.93.72.43 0 .81-.3.92-.72l.58-2.32.58 2.32c.11.42.49.72.92.72.43 0 .81-.3.92-.72l1.09-4.38c.12-.46-.23-.9-.7-.9-.34 0-.63.23-.71.55z" +}), 'RawOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOnSharp.js b/packages/material-ui-icons/lib/esm/RawOnSharp.js new file mode 100644 index 00000000000000..6f975a3e06c47f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" +}), 'RawOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RawOnTwoTone.js b/packages/material-ui-icons/lib/esm/RawOnTwoTone.js new file mode 100644 index 00000000000000..c23dce404fdb63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RawOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3 .25-1h.5l.25 1h-1zm8.98-3-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" +}), 'RawOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReadMore.js b/packages/material-ui-icons/lib/esm/ReadMore.js new file mode 100644 index 00000000000000..e136076e76345f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReadMore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" +}), 'ReadMore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReadMoreOutlined.js b/packages/material-ui-icons/lib/esm/ReadMoreOutlined.js new file mode 100644 index 00000000000000..d87027ab2cc145 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReadMoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" +}), 'ReadMoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReadMoreRounded.js b/packages/material-ui-icons/lib/esm/ReadMoreRounded.js new file mode 100644 index 00000000000000..0477ad32de2416 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReadMoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9h7c.55 0 1-.45 1-1s-.45-1-1-1h-7c-.55 0-1 .45-1 1s.45 1 1 1zm7 6h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0-4h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zM8.85 7.85c-.31-.31-.85-.09-.85.36V11H3c-.55 0-1 .45-1 1s.45 1 1 1h5v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71L8.85 7.85z" +}), 'ReadMoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReadMoreSharp.js b/packages/material-ui-icons/lib/esm/ReadMoreSharp.js new file mode 100644 index 00000000000000..05387e91f304ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReadMoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" +}), 'ReadMoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReadMoreTwoTone.js b/packages/material-ui-icons/lib/esm/ReadMoreTwoTone.js new file mode 100644 index 00000000000000..7ee5fdc3f34d5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReadMoreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" +}), 'ReadMoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Receipt.js b/packages/material-ui-icons/lib/esm/Receipt.js new file mode 100644 index 00000000000000..e49eeebf2bb8e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Receipt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z" +}), 'Receipt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptLong.js b/packages/material-ui-icons/lib/esm/ReceiptLong.js new file mode 100644 index 00000000000000..3457cba01cfeb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptLong.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM19 19c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 7h6v2H9zm7 0h2v2h-2zm-7 3h6v2H9zm7 0h2v2h-2z" +}, "1")], 'ReceiptLong'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptLongOutlined.js b/packages/material-ui-icons/lib/esm/ReceiptLongOutlined.js new file mode 100644 index 00000000000000..e423f22e93a2c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptLongOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 7h6v2H9zm7 0h2v2h-2zm-7 3h6v2H9zm7 0h2v2h-2z" +}, "1")], 'ReceiptLongOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptLongRounded.js b/packages/material-ui-icons/lib/esm/ReceiptLongRounded.js new file mode 100644 index 00000000000000..4794fe7ac9508a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptLongRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 9h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm0 3h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H4c-.55 0-1 .45-1 1v2c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-2c0-.55-.45-1-1-1H8V5h11v14z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "8", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "11", + r: "1" +}, "3")], 'ReceiptLongRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptLongSharp.js b/packages/material-ui-icons/lib/esm/ReceiptLongSharp.js new file mode 100644 index 00000000000000..492b6f53dfddde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptLongSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 7h6v2H9zm0 3h6v2H9zm7-3h2v2h-2zm0 3h2v2h-2z" +}, "1")], 'ReceiptLongSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptLongTwoTone.js b/packages/material-ui-icons/lib/esm/ReceiptLongTwoTone.js new file mode 100644 index 00000000000000..3a9d2e40d0a56a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptLongTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 19c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM19 19c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 7h6v2H9zm7 0h2v2h-2zm-7 3h6v2H9zm7 0h2v2h-2z" +}, "2")], 'ReceiptLongTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptOutlined.js b/packages/material-ui-icons/lib/esm/ReceiptOutlined.js new file mode 100644 index 00000000000000..df226e70102c86 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z" +}), 'ReceiptOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptRounded.js b/packages/material-ui-icons/lib/esm/ReceiptRounded.js new file mode 100644 index 00000000000000..0594b6ec8fe387 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 2.21c-.13 0-.26.05-.35.15l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.8-.8c-.2-.2-.51-.2-.71 0l-.79.8c-.2.2-.51.2-.71 0l-.79-.8c-.2-.2-.51-.2-.71 0l-.79.8c-.2.2-.51.2-.71 0l-.79-.8c-.09-.09-.22-.14-.35-.14V21.8c.13 0 .26-.05.35-.15l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.1.1.23.15.35.15V2.21zM17 17H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'ReceiptRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptSharp.js b/packages/material-ui-icons/lib/esm/ReceiptSharp.js new file mode 100644 index 00000000000000..9e914c69749daa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z" +}), 'ReceiptSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReceiptTwoTone.js b/packages/material-ui-icons/lib/esm/ReceiptTwoTone.js new file mode 100644 index 00000000000000..9113a9a5551892 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReceiptTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19.09h14V4.91H5v14.18zM6 7h12v2H6V7zm0 4h12v2H6v-2zm0 4h12v2H6v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z" +}, "1")], 'ReceiptTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecentActors.js b/packages/material-ui-icons/lib/esm/RecentActors.js new file mode 100644 index 00000000000000..d007c5ef7dcbe5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecentActors.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" +}), 'RecentActors'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecentActorsOutlined.js b/packages/material-ui-icons/lib/esm/RecentActorsOutlined.js new file mode 100644 index 00000000000000..5689702b2828ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecentActorsOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 5h2v14h-2zm-4 0h2v14h-2zm-3 0H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H3V7h10v10z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "9.94", + r: "1.95" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.89 15.35c0-1.3-2.59-1.95-3.89-1.95s-3.89.65-3.89 1.95V16h7.78v-.65z" +}, "2")], 'RecentActorsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecentActorsRounded.js b/packages/material-ui-icons/lib/esm/RecentActorsRounded.js new file mode 100644 index 00000000000000..6bfff6ebc9df13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecentActorsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6v12c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1zm-3 13c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55.45 1 1 1zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" +}), 'RecentActorsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecentActorsSharp.js b/packages/material-ui-icons/lib/esm/RecentActorsSharp.js new file mode 100644 index 00000000000000..b48b7047e6b896 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecentActorsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM15 5H1v14h14V5zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" +}), 'RecentActorsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecentActorsTwoTone.js b/packages/material-ui-icons/lib/esm/RecentActorsTwoTone.js new file mode 100644 index 00000000000000..62089eded8c804 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecentActorsTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 7H3v10h10V7zM8 8c1.07 0 1.95.87 1.95 1.95 0 1.07-.87 1.95-1.95 1.95s-1.95-.87-1.95-1.95S6.93 8 8 8zm3.89 8H4.11v-.65c0-1.3 2.59-1.95 3.89-1.95s3.89.65 3.89 1.95V16z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 5h2v14h-2zm-4 0h2v14h-2zm-3 14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12zM3 7h10v10H3V7z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "9.94", + r: "1.95" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M8 13.4c-1.3 0-3.89.65-3.89 1.95V16h7.78v-.65c0-1.3-2.59-1.95-3.89-1.95z" +}, "3")], 'RecentActorsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Recommend.js b/packages/material-ui-icons/lib/esm/Recommend.js new file mode 100644 index 00000000000000..2f684d274777c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Recommend.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z" +}), 'Recommend'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecommendOutlined.js b/packages/material-ui-icons/lib/esm/RecommendOutlined.js new file mode 100644 index 00000000000000..3b6af09a4c9a57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecommendOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 10h-4.59l.58-3.41v-.2c-.01-.26-.12-.51-.3-.7L12 5l-4.6 5c-.27.26-.42.62-.4 1v5c0 1.1.9 2 2 2h5.5c.56.03 1.08-.29 1.3-.8l2.1-4.9c.08-.15.12-.33.1-.5V11c0-.55-.45-1-1-1z" +}, "1")], 'RecommendOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecommendRounded.js b/packages/material-ui-icons/lib/esm/RecommendRounded.js new file mode 100644 index 00000000000000..6a30a0f221e03d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecommendRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 9.8c.02.17-.02.35-.1.5l-2.1 4.9c-.22.51-.74.83-1.3.8H9c-1.1 0-2-.9-2-2v-5c-.02-.38.13-.74.4-1L12 5l.69.69c.18.19.29.44.3.7v.2L12.41 10H17c.55 0 1 .45 1 1v.8z" +}), 'RecommendRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecommendSharp.js b/packages/material-ui-icons/lib/esm/RecommendSharp.js new file mode 100644 index 00000000000000..7622e37c39006f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecommendSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.05L15.46 18H7v-7.56L12 5l1 1v.53L12.41 10H18v2.05z" +}), 'RecommendSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecommendTwoTone.js b/packages/material-ui-icons/lib/esm/RecommendTwoTone.js new file mode 100644 index 00000000000000..13deef6cc04d2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecommendTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5.9 8.3-2.1 4.9c-.22.51-.74.83-1.3.8H9c-1.1 0-2-.9-2-2v-5c-.02-.38.13-.74.4-1L12 5l.69.69c.18.19.29.44.3.7v.2L12.41 10H17c.55 0 1 .45 1 1v.8c.02.17-.02.35-.1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 10h-4.59l.58-3.41v-.2c-.01-.26-.12-.51-.3-.7L12 5l-4.6 5c-.27.26-.42.62-.4 1v5c0 1.1.9 2 2 2h5.5c.56.03 1.08-.29 1.3-.8l2.1-4.9c.08-.15.12-.33.1-.5V11c0-.55-.45-1-1-1z" +}, "2")], 'RecommendTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecordVoiceOver.js b/packages/material-ui-icons/lib/esm/RecordVoiceOver.js new file mode 100644 index 00000000000000..c5d901c376f4ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecordVoiceOver.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "9", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" +}, "1")], 'RecordVoiceOver'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecordVoiceOverOutlined.js b/packages/material-ui-icons/lib/esm/RecordVoiceOverOutlined.js new file mode 100644 index 00000000000000..74342d73eef098 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecordVoiceOverOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM15.08 7.05c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" +}), 'RecordVoiceOverOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecordVoiceOverRounded.js b/packages/material-ui-icons/lib/esm/RecordVoiceOverRounded.js new file mode 100644 index 00000000000000..77df9a28c68eaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecordVoiceOverRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "9", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zm6.47-7.23c.32.79.32 1.67 0 2.46-.19.47-.11 1 .25 1.36l.03.03c.58.58 1.57.46 1.95-.27.76-1.45.76-3.15-.02-4.66-.38-.74-1.38-.88-1.97-.29l-.01.01c-.34.35-.42.89-.23 1.36zm3.71-4.88c-.4.4-.46 1.02-.13 1.48 1.97 2.74 1.96 6.41-.03 9.25-.32.45-.25 1.07.14 1.46l.03.03c.49.49 1.32.45 1.74-.1 2.75-3.54 2.76-8.37 0-12.02-.42-.55-1.26-.59-1.75-.1z" +}, "1")], 'RecordVoiceOverRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecordVoiceOverSharp.js b/packages/material-ui-icons/lib/esm/RecordVoiceOverSharp.js new file mode 100644 index 00000000000000..87002fd71b28d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecordVoiceOverSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "9", + r: "4" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm6.08-7.95c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" +}, "1")], 'RecordVoiceOverSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RecordVoiceOverTwoTone.js b/packages/material-ui-icons/lib/esm/RecordVoiceOverTwoTone.js new file mode 100644 index 00000000000000..db1a78ae83aa4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RecordVoiceOverTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsxs("g", { + opacity: ".3", + children: [/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "9", + r: "2" + }), /*#__PURE__*/_jsx("path", { + d: "M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z" + })] +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM16.76 5.36l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" +}, "1")], 'RecordVoiceOverTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Reddit.js b/packages/material-ui-icons/lib/esm/Reddit.js new file mode 100644 index 00000000000000..91051fdb54a253 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Reddit.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12.14a2.19 2.19 0 0 0-3.71-1.57 10.93 10.93 0 0 0-5.86-1.87l1-4.7 3.27.71a1.56 1.56 0 1 0 .16-.76l-3.64-.77c-.11-.02-.22 0-.29.06-.09.05-.14.14-.16.26l-1.11 5.22c-2.33.07-4.43.78-5.95 1.86A2.2 2.2 0 0 0 4.19 10a2.16 2.16 0 0 0-.9 4.15 3.6 3.6 0 0 0-.05.66c0 3.37 3.92 6.12 8.76 6.12s8.76-2.73 8.76-6.12c0-.21-.01-.44-.05-.66A2.21 2.21 0 0 0 22 12.14M7 13.7c0-.86.68-1.56 1.54-1.56s1.56.7 1.56 1.56a1.56 1.56 0 0 1-1.56 1.56c-.86.02-1.54-.7-1.54-1.56m8.71 4.14C14.63 18.92 12.59 19 12 19c-.61 0-2.65-.1-3.71-1.16a.4.4 0 0 1 0-.57.4.4 0 0 1 .57 0c.68.68 2.14.91 3.14.91s2.47-.23 3.14-.91a.4.4 0 0 1 .57 0c.14.16.14.41 0 .57m-.29-2.56c-.86 0-1.56-.7-1.56-1.56a1.56 1.56 0 0 1 1.56-1.56c.86 0 1.58.7 1.58 1.56a1.6 1.6 0 0 1-1.58 1.56z" +}), 'Reddit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Redeem.js b/packages/material-ui-icons/lib/esm/Redeem.js new file mode 100644 index 00000000000000..3a72543457ae22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Redeem.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" +}), 'Redeem'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedeemOutlined.js b/packages/material-ui-icons/lib/esm/RedeemOutlined.js new file mode 100644 index 00000000000000..3ee0044f717715 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedeemOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" +}), 'RedeemOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedeemRounded.js b/packages/material-ui-icons/lib/esm/RedeemRounded.js new file mode 100644 index 00000000000000..dd95b16cbf530a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedeemRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm10 15H5c-.55 0-1-.45-1-1v-1h16v1c0 .55-.45 1-1 1zm1-5H4V9c0-.55.45-1 1-1h4.08L7.6 10.02c-.33.45-.23 1.08.22 1.4.44.32 1.07.22 1.39-.22L12 7.4l2.79 3.8c.32.44.95.54 1.39.22.45-.32.55-.95.22-1.4L14.92 8H19c.55 0 1 .45 1 1v5z" +}), 'RedeemRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedeemSharp.js b/packages/material-ui-icons/lib/esm/RedeemSharp.js new file mode 100644 index 00000000000000..26d72326b0e8da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedeemSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6h-4.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2v15h20V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" +}), 'RedeemSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedeemTwoTone.js b/packages/material-ui-icons/lib/esm/RedeemTwoTone.js new file mode 100644 index 00000000000000..effedc8614a8b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedeemTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17h16v2H4zm13-6.17L15.38 12 13 8.76 12 7.4l-1 1.36L8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z" +}, "1")], 'RedeemTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Redo.js b/packages/material-ui-icons/lib/esm/Redo.js new file mode 100644 index 00000000000000..c40b9e34531267 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Redo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" +}), 'Redo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedoOutlined.js b/packages/material-ui-icons/lib/esm/RedoOutlined.js new file mode 100644 index 00000000000000..d60aea5e34552a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" +}), 'RedoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedoRounded.js b/packages/material-ui-icons/lib/esm/RedoRounded.js new file mode 100644 index 00000000000000..e3f4944af668fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.16 0-7.74 2.42-9.44 5.93-.32.67.04 1.47.75 1.71.59.2 1.23-.08 1.5-.64 1.3-2.66 4.03-4.5 7.19-4.5 1.95 0 3.73.72 5.12 1.88l-1.91 1.91c-.63.63-.19 1.71.7 1.71H21c.55 0 1-.45 1-1V9.41c0-.89-1.08-1.34-1.71-.71l-1.89 1.9z" +}), 'RedoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedoSharp.js b/packages/material-ui-icons/lib/esm/RedoSharp.js new file mode 100644 index 00000000000000..b83937e7f3a808 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" +}), 'RedoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RedoTwoTone.js b/packages/material-ui-icons/lib/esm/RedoTwoTone.js new file mode 100644 index 00000000000000..18dc76432613e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RedoTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" +}), 'RedoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReduceCapacity.js b/packages/material-ui-icons/lib/esm/ReduceCapacity.js new file mode 100644 index 00000000000000..f8712d785fabb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReduceCapacity.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" +}), 'ReduceCapacity'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReduceCapacityOutlined.js b/packages/material-ui-icons/lib/esm/ReduceCapacityOutlined.js new file mode 100644 index 00000000000000..1b56aaf0e948b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReduceCapacityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" +}), 'ReduceCapacityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReduceCapacityRounded.js b/packages/material-ui-icons/lib/esm/ReduceCapacityRounded.js new file mode 100644 index 00000000000000..06049eab2d85a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReduceCapacityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm2.79-9h-1.04v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75V13h-1.04c-.45 0-.67.54-.35.85l1.79 1.79c.2.2.51.2.71 0l1.79-1.79c.31-.31.09-.85-.36-.85z" +}), 'ReduceCapacityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReduceCapacitySharp.js b/packages/material-ui-icons/lib/esm/ReduceCapacitySharp.js new file mode 100644 index 00000000000000..e6009fe889ad37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReduceCapacitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" +}), 'ReduceCapacitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReduceCapacityTwoTone.js b/packages/material-ui-icons/lib/esm/ReduceCapacityTwoTone.js new file mode 100644 index 00000000000000..7fe0c30b9ee6b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReduceCapacityTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C19.93 7.21 18.99 7 18 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58C2.48 7.9 2 8.62 2 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85C10.07 7.21 11.01 7 12 7c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85C5.07 19.21 6.01 19 7 19c.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" +}), 'ReduceCapacityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Refresh.js b/packages/material-ui-icons/lib/esm/Refresh.js new file mode 100644 index 00000000000000..86287572494cf2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Refresh.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" +}), 'Refresh'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RefreshOutlined.js b/packages/material-ui-icons/lib/esm/RefreshOutlined.js new file mode 100644 index 00000000000000..0f974dfe423a07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RefreshOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" +}), 'RefreshOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RefreshRounded.js b/packages/material-ui-icons/lib/esm/RefreshRounded.js new file mode 100644 index 00000000000000..e21b53dc43140c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RefreshRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.65 6.35c-1.63-1.63-3.94-2.57-6.48-2.31-3.67.37-6.69 3.35-7.1 7.02C3.52 15.91 7.27 20 12 20c3.19 0 5.93-1.87 7.21-4.56.32-.67-.16-1.44-.9-1.44-.37 0-.72.2-.88.53-1.13 2.43-3.84 3.97-6.8 3.31-2.22-.49-4.01-2.3-4.48-4.52C5.31 9.44 8.26 6 12 6c1.66 0 3.14.69 4.22 1.78l-1.51 1.51c-.63.63-.19 1.71.7 1.71H19c.55 0 1-.45 1-1V6.41c0-.89-1.08-1.34-1.71-.71l-.64.65z" +}), 'RefreshRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RefreshSharp.js b/packages/material-ui-icons/lib/esm/RefreshSharp.js new file mode 100644 index 00000000000000..df712acb6c9af8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RefreshSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" +}), 'RefreshSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RefreshTwoTone.js b/packages/material-ui-icons/lib/esm/RefreshTwoTone.js new file mode 100644 index 00000000000000..29b55b299ff510 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RefreshTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" +}), 'RefreshTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RememberMe.js b/packages/material-ui-icons/lib/esm/RememberMe.js new file mode 100644 index 00000000000000..6b9bfd781eadd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RememberMe.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "10", + r: "3" +}, "1")], 'RememberMe'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RememberMeOutlined.js b/packages/material-ui-icons/lib/esm/RememberMeOutlined.js new file mode 100644 index 00000000000000..d30052de78a7f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RememberMeOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 20H7v-1h10v1zm0-3H7v-.48c1.47-.99 3.22-1.52 5-1.52s3.53.53 5 1.52V18zm0-2.79c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21zM17 4H7V3h10v1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 13c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "1")], 'RememberMeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RememberMeRounded.js b/packages/material-ui-icons/lib/esm/RememberMeRounded.js new file mode 100644 index 00000000000000..764b3dfd3727ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RememberMeRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "10", + r: "3" +}, "1")], 'RememberMeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RememberMeSharp.js b/packages/material-ui-icons/lib/esm/RememberMeSharp.js new file mode 100644 index 00000000000000..332653e75072ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RememberMeSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 1H5v22h14V1zm-2 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "10", + r: "3" +}, "1")], 'RememberMeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RememberMeTwoTone.js b/packages/material-ui-icons/lib/esm/RememberMeTwoTone.js new file mode 100644 index 00000000000000..785d15b415968d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RememberMeTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 20h10v1H7zm0-2.48V18h10v-.48c-1.47-.99-3.22-1.52-5-1.52s-3.53.53-5 1.52z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "10", + r: "1", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 3h10v1H7z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 20H7v-1h10v1zm0-3H7v-.48c1.47-.99 3.22-1.52 5-1.52s3.53.53 5 1.52V18zm0-2.79c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21zM17 4H7V3h10v1z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12 13c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "4")], 'RememberMeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Remove.js b/packages/material-ui-icons/lib/esm/Remove.js new file mode 100644 index 00000000000000..3bdbc601c448d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Remove.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13H5v-2h14v2z" +}), 'Remove'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircle.js b/packages/material-ui-icons/lib/esm/RemoveCircle.js new file mode 100644 index 00000000000000..fd35533efc8cb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" +}), 'RemoveCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleOutline.js b/packages/material-ui-icons/lib/esm/RemoveCircleOutline.js new file mode 100644 index 00000000000000..654e2c57d2ae51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'RemoveCircleOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleOutlineOutlined.js b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineOutlined.js new file mode 100644 index 00000000000000..c593a45e3ce81a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'RemoveCircleOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleOutlineRounded.js b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineRounded.js new file mode 100644 index 00000000000000..79ffa36aa87310 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 12c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm5-10C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'RemoveCircleOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleOutlineSharp.js b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineSharp.js new file mode 100644 index 00000000000000..482367656f0d52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'RemoveCircleOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..28a931330ed7e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}), 'RemoveCircleOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleOutlined.js b/packages/material-ui-icons/lib/esm/RemoveCircleOutlined.js new file mode 100644 index 00000000000000..5b3443e5932dd5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" +}), 'RemoveCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleRounded.js b/packages/material-ui-icons/lib/esm/RemoveCircleRounded.js new file mode 100644 index 00000000000000..d5d3b63717690b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'RemoveCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleSharp.js b/packages/material-ui-icons/lib/esm/RemoveCircleSharp.js new file mode 100644 index 00000000000000..3cf03d2fb2b0e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" +}), 'RemoveCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveCircleTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveCircleTwoTone.js new file mode 100644 index 00000000000000..1a35287e6ca093 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'RemoveCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveDone.js b/packages/material-ui-icons/lib/esm/RemoveDone.js new file mode 100644 index 00000000000000..9886b8f4f68dd0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveDone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1.79 12 5.58 5.59L5.96 19 .37 13.41 1.79 12zm.45-7.78L12.9 14.89l-1.28 1.28L7.44 12l-1.41 1.41L11.62 19l2.69-2.69 4.89 4.89 1.41-1.41L3.65 2.81 2.24 4.22zm14.9 9.27L23.62 7 22.2 5.59l-6.48 6.48 1.42 1.42zM17.96 7l-1.41-1.41-3.65 3.66 1.41 1.41L17.96 7z" +}), 'RemoveDone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveDoneOutlined.js b/packages/material-ui-icons/lib/esm/RemoveDoneOutlined.js new file mode 100644 index 00000000000000..337b97ae5b6d2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveDoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.84 1.98 3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z" +}), 'RemoveDoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveDoneRounded.js b/packages/material-ui-icons/lib/esm/RemoveDoneRounded.js new file mode 100644 index 00000000000000..339cdbaa57c03c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveDoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.14 2.69c-.39.39-.39 1.02 0 1.41l9.67 9.67-1.41 1.41-3.54-3.53a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.24 4.24c.39.39 1.02.39 1.41 0l2.12-2.12 5.89 5.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.55 2.69a.9959.9959 0 0 0-1.41 0zm13.91 9.67 4.24-4.24c.39-.39.39-1.03-.01-1.42-.39-.38-1.02-.38-1.41.01l-4.24 4.24 1.42 1.41zM16.64 6.7a.9959.9959 0 0 0-1.41 0l-1.42 1.42 1.41 1.41 1.42-1.42c.39-.39.39-1.02 0-1.41zM1.79 13.06l4.95 4.95 1.41-1.41-4.95-4.95a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41z" +}), 'RemoveDoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveDoneSharp.js b/packages/material-ui-icons/lib/esm/RemoveDoneSharp.js new file mode 100644 index 00000000000000..3e3fe2125680b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveDoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.84 1.98 3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z" +}), 'RemoveDoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveDoneTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveDoneTwoTone.js new file mode 100644 index 00000000000000..a91ec060b471a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveDoneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.84 1.98 3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z" +}), 'RemoveDoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveFromQueue.js b/packages/material-ui-icons/lib/esm/RemoveFromQueue.js new file mode 100644 index 00000000000000..2fa183561f2e6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveFromQueue.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z" +}), 'RemoveFromQueue'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveFromQueueOutlined.js b/packages/material-ui-icons/lib/esm/RemoveFromQueueOutlined.js new file mode 100644 index 00000000000000..9f6f13d8d18fc3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveFromQueueOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z" +}), 'RemoveFromQueueOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveFromQueueRounded.js b/packages/material-ui-icons/lib/esm/RemoveFromQueueRounded.js new file mode 100644 index 00000000000000..ffc70732727bde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveFromQueueRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-4-6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1z" +}), 'RemoveFromQueueRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveFromQueueSharp.js b/packages/material-ui-icons/lib/esm/RemoveFromQueueSharp.js new file mode 100644 index 00000000000000..fb48f2195b2111 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveFromQueueSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2H8v-2h8z" +}), 'RemoveFromQueueSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveFromQueueTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveFromQueueTwoTone.js new file mode 100644 index 00000000000000..5511889df4eeea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveFromQueueTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 17h18V5H3v12zm5-7h8v2H8v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zM8 10h8v2H8z" +}, "1")], 'RemoveFromQueueTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveModerator.js b/packages/material-ui-icons/lib/esm/RemoveModerator.js new file mode 100644 index 00000000000000..b54f732b4759e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveModerator.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.27 21.73-3.54-3.55L5.78 5.23 2.27 1.72 1 2.99 3.01 5H3v6c0 5.55 3.84 10.74 9 12 2.16-.53 4.08-1.76 5.6-3.41L21 23l1.27-1.27zM13 9.92l6.67 6.67C20.51 14.87 21 12.96 21 11V5l-9-4-5.48 2.44L11 7.92l2 2z" +}), 'RemoveModerator'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveModeratorOutlined.js b/packages/material-ui-icons/lib/esm/RemoveModeratorOutlined.js new file mode 100644 index 00000000000000..546a5b8ac03b41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveModeratorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 4.14 6 2.25v4.7c0 1.19-.23 2.36-.64 3.44l1.51 1.51c.72-1.53 1.13-3.22 1.13-4.95V5l-8-3-5.22 1.96 1.55 1.55L12 4.14zM2.81 2.81 1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81zM12 19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14 9.14c-.9.88-1.97 1.57-3.14 1.95z" +}), 'RemoveModeratorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveModeratorRounded.js b/packages/material-ui-icons/lib/esm/RemoveModeratorRounded.js new file mode 100644 index 00000000000000..7662bc032e674c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveModeratorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11.09v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.17-.95-.17-1.4 0L6.78 3.96l12.09 12.09c.72-1.53 1.13-3.22 1.13-4.96zm.49 9.4L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4 6.83v4.26c0 4.83 3.13 9.37 7.43 10.75.37.12.77.12 1.14 0 1.49-.48 2.84-1.35 3.97-2.47l2.53 2.53c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" +}), 'RemoveModeratorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveModeratorSharp.js b/packages/material-ui-icons/lib/esm/RemoveModeratorSharp.js new file mode 100644 index 00000000000000..d906ad50856904 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveModeratorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11.09V5l-8-3-5.22 1.96 12.09 12.09c.72-1.53 1.13-3.22 1.13-4.96zM2.81 2.81 1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81z" +}), 'RemoveModeratorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveModeratorTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveModeratorTwoTone.js new file mode 100644 index 00000000000000..8f55133c6dbdc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveModeratorTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 11.09c0 4 2.55 7.7 6 8.83 1.17-.38 2.24-1.07 3.14-1.95L6 8.83v2.26zm6-6.95L8.34 5.51l9.02 9.02c.41-1.08.64-2.25.64-3.44v-4.7l-6-2.25z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 4.14 6 2.25v4.7c0 1.19-.23 2.36-.64 3.44l1.51 1.51c.72-1.53 1.13-3.22 1.13-4.95V5l-8-3-5.22 1.96 1.55 1.55L12 4.14zM2.81 2.81 1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81zM12 19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14 9.14c-.9.88-1.97 1.57-3.14 1.95z" +}, "1")], 'RemoveModeratorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveOutlined.js b/packages/material-ui-icons/lib/esm/RemoveOutlined.js new file mode 100644 index 00000000000000..2f8f5846359a28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13H5v-2h14v2z" +}), 'RemoveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveRedEye.js b/packages/material-ui-icons/lib/esm/RemoveRedEye.js new file mode 100644 index 00000000000000..584db882f8fa40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveRedEye.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'RemoveRedEye'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveRedEyeOutlined.js b/packages/material-ui-icons/lib/esm/RemoveRedEyeOutlined.js new file mode 100644 index 00000000000000..55e228ed260a72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveRedEyeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.5c3.79 0 7.17 2.13 8.82 5.5-1.65 3.37-5.02 5.5-8.82 5.5S4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5m0-2C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5m0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z" +}), 'RemoveRedEyeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveRedEyeRounded.js b/packages/material-ui-icons/lib/esm/RemoveRedEyeRounded.js new file mode 100644 index 00000000000000..5f3d5394d46255 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveRedEyeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'RemoveRedEyeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveRedEyeSharp.js b/packages/material-ui-icons/lib/esm/RemoveRedEyeSharp.js new file mode 100644 index 00000000000000..834b14ad752c59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveRedEyeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'RemoveRedEyeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveRedEyeTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveRedEyeTwoTone.js new file mode 100644 index 00000000000000..518efccaca4727 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveRedEyeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6.5c-3.79 0-7.17 2.13-8.82 5.5 1.65 3.37 5.02 5.5 8.82 5.5s7.17-2.13 8.82-5.5C19.17 8.63 15.79 6.5 12 6.5zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7.5 12 7.5s4.5 2.02 4.5 4.5-2.02 4.5-4.5 4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.63 8.21 6.5 12 6.5s7.17 2.13 8.82 5.5c-1.65 3.37-5.03 5.5-8.82 5.5zm0-10c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}, "1")], 'RemoveRedEyeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveRounded.js b/packages/material-ui-icons/lib/esm/RemoveRounded.js new file mode 100644 index 00000000000000..b521233915274d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13H6c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'RemoveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveSharp.js b/packages/material-ui-icons/lib/esm/RemoveSharp.js new file mode 100644 index 00000000000000..59618ac2e84db5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13H5v-2h14v2z" +}), 'RemoveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveShoppingCart.js b/packages/material-ui-icons/lib/esm/RemoveShoppingCart.js new file mode 100644 index 00000000000000..b72368edfe1b30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveShoppingCart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.73 22.73 2.77 2.77 2 2l-.73-.73L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.27-1.27zM7.42 15c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h2.36l2 2H7.42zm8.13-2c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H6.54l9.01 9zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" +}), 'RemoveShoppingCart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveShoppingCartOutlined.js b/packages/material-ui-icons/lib/esm/RemoveShoppingCartOutlined.js new file mode 100644 index 00000000000000..ec148bf90434d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveShoppingCartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.41 1.13 0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zM20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" +}), 'RemoveShoppingCartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveShoppingCartRounded.js b/packages/material-ui-icons/lib/esm/RemoveShoppingCartRounded.js new file mode 100644 index 00000000000000..c3423ebdb8917d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveShoppingCartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M.71 1.83c-.39.39-.39 1.02 0 1.41l3.68 3.68 2.21 4.66-1.35 2.45c-.19.33-.28.73-.24 1.15.1 1.06 1.06 1.82 2.12 1.82h7.33l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84l2.13 2.13c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 1.83a.9959.9959 0 0 0-1.41 0zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" +}), 'RemoveShoppingCartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveShoppingCartSharp.js b/packages/material-ui-icons/lib/esm/RemoveShoppingCartSharp.js new file mode 100644 index 00000000000000..7a4128b2d19921 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveShoppingCartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.41 1.13 0 2.54l4.39 4.39 2.21 4.66L3.62 17h10.84l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06h.73L21.7 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" +}), 'RemoveShoppingCartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveShoppingCartTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveShoppingCartTwoTone.js new file mode 100644 index 00000000000000..264496194e7a7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveShoppingCartTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1.41 1.13 0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.31 6H9.12l4.99 5h1.44z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" +}, "2")], 'RemoveShoppingCartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RemoveTwoTone.js b/packages/material-ui-icons/lib/esm/RemoveTwoTone.js new file mode 100644 index 00000000000000..7ff4979dcfdac7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RemoveTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13H5v-2h14v2z" +}), 'RemoveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Reorder.js b/packages/material-ui-icons/lib/esm/Reorder.js new file mode 100644 index 00000000000000..df49cc96a8773d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Reorder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" +}), 'Reorder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReorderOutlined.js b/packages/material-ui-icons/lib/esm/ReorderOutlined.js new file mode 100644 index 00000000000000..d0615d1d5946c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReorderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" +}), 'ReorderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReorderRounded.js b/packages/material-ui-icons/lib/esm/ReorderRounded.js new file mode 100644 index 00000000000000..b6f84c33e5a506 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReorderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z" +}), 'ReorderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReorderSharp.js b/packages/material-ui-icons/lib/esm/ReorderSharp.js new file mode 100644 index 00000000000000..9d49d68c4fad85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReorderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" +}), 'ReorderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReorderTwoTone.js b/packages/material-ui-icons/lib/esm/ReorderTwoTone.js new file mode 100644 index 00000000000000..98f95914fcf898 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReorderTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" +}), 'ReorderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Repeat.js b/packages/material-ui-icons/lib/esm/Repeat.js new file mode 100644 index 00000000000000..433e7d5c85ce2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Repeat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" +}), 'Repeat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOn.js b/packages/material-ui-icons/lib/esm/RepeatOn.js new file mode 100644 index 00000000000000..f218a516cb1829 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOn.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" +}), 'RepeatOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOnOutlined.js b/packages/material-ui-icons/lib/esm/RepeatOnOutlined.js new file mode 100644 index 00000000000000..565ecdb637b9c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H6.83l1.58 1.58L7 22l-4-4 4-4 1.41 1.42L6.83 17H17v-4h2v6zm-2-9-1.41-1.42L17.17 7H7v4H5V5h12.17l-1.58-1.58L17 2l4 4-4 4z" +}), 'RepeatOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOnRounded.js b/packages/material-ui-icons/lib/esm/RepeatOnRounded.js new file mode 100644 index 00000000000000..f8bc46dfe1abdc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 17c0 .55-.45 1-1 1H7v1.79c0 .45-.54.67-.85.36l-2.79-2.79c-.2-.2-.2-.51 0-.71l2.79-2.79c.31-.32.85-.1.85.35V17h10v-3c0-.55.45-1 1-1s1 .45 1 1v4zm1.64-11.65-2.79 2.79c-.31.32-.85.1-.85-.35V7H7v3c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1h11V3.21c0-.45.54-.67.85-.36l2.79 2.79c.2.2.2.51 0 .71z" +}), 'RepeatOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOnSharp.js b/packages/material-ui-icons/lib/esm/RepeatOnSharp.js new file mode 100644 index 00000000000000..08658ac11e4135 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-2-9V7H7v4H5V5h12V2l4 4-4 4z" +}), 'RepeatOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOnTwoTone.js b/packages/material-ui-icons/lib/esm/RepeatOnTwoTone.js new file mode 100644 index 00000000000000..bd5fbde1c3d745 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-2-9V7H7v4H5V5h12V2l4 4-4 4z" +}), 'RepeatOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOne.js b/packages/material-ui-icons/lib/esm/RepeatOne.js new file mode 100644 index 00000000000000..fa1c7d61f524d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOne.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" +}), 'RepeatOne'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneOn.js b/packages/material-ui-icons/lib/esm/RepeatOneOn.js new file mode 100644 index 00000000000000..4ef2d92a48ca3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneOn.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" +}), 'RepeatOneOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneOnOutlined.js b/packages/material-ui-icons/lib/esm/RepeatOneOnOutlined.js new file mode 100644 index 00000000000000..892f5ee1f3d6be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H6.83l1.58 1.58L7 22l-4-4 4-4 1.41 1.42L6.83 17H17v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5-1.41-1.42L17.17 7H7v4H5V5h12.17l-1.58-1.58L17 2l4 4-4 4z" +}), 'RepeatOneOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneOnRounded.js b/packages/material-ui-icons/lib/esm/RepeatOneOnRounded.js new file mode 100644 index 00000000000000..b04cae1e33d1b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 17c0 .55-.45 1-1 1H7v1.79c0 .45-.54.67-.85.36l-2.79-2.79c-.2-.2-.2-.51 0-.71l2.79-2.79c.31-.32.85-.1.85.35V17h10v-3c0-.55.45-1 1-1s1 .45 1 1v4zm-8.25-7.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.5c.41 0 .75.34.75.75v4.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10.5h-.75zm9.89-4.15-2.79 2.79c-.31.32-.85.1-.85-.35V7H7v3c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1h11V3.21c0-.45.54-.67.85-.36l2.79 2.79c.2.2.2.51 0 .71z" +}), 'RepeatOneOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneOnSharp.js b/packages/material-ui-icons/lib/esm/RepeatOneOnSharp.js new file mode 100644 index 00000000000000..b9f879b499e1e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5V7H7v4H5V5h12V2l4 4-4 4z" +}), 'RepeatOneOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneOnTwoTone.js b/packages/material-ui-icons/lib/esm/RepeatOneOnTwoTone.js new file mode 100644 index 00000000000000..8d02111f85d1b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5V7H7v4H5V5h12V2l4 4-4 4z" +}), 'RepeatOneOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneOutlined.js b/packages/material-ui-icons/lib/esm/RepeatOneOutlined.js new file mode 100644 index 00000000000000..edf9c61d345dd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" +}), 'RepeatOneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneRounded.js b/packages/material-ui-icons/lib/esm/RepeatOneRounded.js new file mode 100644 index 00000000000000..ec9fc99a4fa279 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V5H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V7zm10 10H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v3zm-4-2.75V9.81c0-.45-.36-.81-.81-.81-.13 0-.25.03-.36.09l-1.49.74c-.21.1-.34.32-.34.55 0 .34.28.62.62.62h.88v3.25c0 .41.34.75.75.75s.75-.34.75-.75z" +}), 'RepeatOneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneSharp.js b/packages/material-ui-icons/lib/esm/RepeatOneSharp.js new file mode 100644 index 00000000000000..44fde8786fed79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" +}), 'RepeatOneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOneTwoTone.js b/packages/material-ui-icons/lib/esm/RepeatOneTwoTone.js new file mode 100644 index 00000000000000..428ee78ba1bc1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 15V9h-1l-2 1v1h1.5v4zm6-2h-2v4H7v-3l-4 4 4 4v-3h12zM17 2v3H5v6h2V7h10v3l4-4z" +}), 'RepeatOneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatOutlined.js b/packages/material-ui-icons/lib/esm/RepeatOutlined.js new file mode 100644 index 00000000000000..60c4aebac4ffdd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" +}), 'RepeatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatRounded.js b/packages/material-ui-icons/lib/esm/RepeatRounded.js new file mode 100644 index 00000000000000..379ead0ac632e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V5H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V7zm10 10H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v3z" +}), 'RepeatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatSharp.js b/packages/material-ui-icons/lib/esm/RepeatSharp.js new file mode 100644 index 00000000000000..42de7be0623174 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" +}), 'RepeatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RepeatTwoTone.js b/packages/material-ui-icons/lib/esm/RepeatTwoTone.js new file mode 100644 index 00000000000000..cf5d5a19a7d9e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RepeatTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 22v-3h12v-6h-2v4H7v-3l-4 4zM21 6l-4-4v3H5v6h2V7h10v3z" +}), 'RepeatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay.js b/packages/material-ui-icons/lib/esm/Replay.js new file mode 100644 index 00000000000000..0b0beed1286361 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" +}), 'Replay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay10.js b/packages/material-ui-icons/lib/esm/Replay10.js new file mode 100644 index 00000000000000..4d2d4a22e57814 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay10.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.89 16h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" +}, "1")], 'Replay10'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay10Outlined.js b/packages/material-ui-icons/lib/esm/Replay10Outlined.js new file mode 100644 index 00000000000000..f7632dacfe4507 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay10Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" +}), 'Replay10Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay10Rounded.js b/packages/material-ui-icons/lib/esm/Replay10Rounded.js new file mode 100644 index 00000000000000..e69cca0e4e2628 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay10Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 5V2.21c0-.45-.54-.67-.85-.35L7.35 5.65c-.2.2-.2.51 0 .71l3.79 3.79c.31.31.85.09.85-.35V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.06-.48-.48-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24.99-5.13-2.9-9.61-7.85-9.61zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" +}), 'Replay10Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay10Sharp.js b/packages/material-ui-icons/lib/esm/Replay10Sharp.js new file mode 100644 index 00000000000000..352390e465cd91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay10Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" +}), 'Replay10Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay10TwoTone.js b/packages/material-ui-icons/lib/esm/Replay10TwoTone.js new file mode 100644 index 00000000000000..b2075231e1efec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay10TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" +}), 'Replay10TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay30.js b/packages/material-ui-icons/lib/esm/Replay30.js new file mode 100644 index 00000000000000..080c6b8573c8ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay30.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.56 13.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" +}, "1")], 'Replay30'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay30Outlined.js b/packages/material-ui-icons/lib/esm/Replay30Outlined.js new file mode 100644 index 00000000000000..55331127775ae4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay30Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" +}), 'Replay30Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay30Rounded.js b/packages/material-ui-icons/lib/esm/Replay30Rounded.js new file mode 100644 index 00000000000000..2c3cc353e8f036 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay30Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.07-.48-.49-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24C20.84 9.48 16.94 5 12 5zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" +}), 'Replay30Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay30Sharp.js b/packages/material-ui-icons/lib/esm/Replay30Sharp.js new file mode 100644 index 00000000000000..71064009d57cff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay30Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" +}), 'Replay30Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay30TwoTone.js b/packages/material-ui-icons/lib/esm/Replay30TwoTone.js new file mode 100644 index 00000000000000..382d816b83ef3d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay30TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" +}), 'Replay30TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay5.js b/packages/material-ui-icons/lib/esm/Replay5.js new file mode 100644 index 00000000000000..a643d25f004cd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay5.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m10.69 13.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" +}, "1")], 'Replay5'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay5Outlined.js b/packages/material-ui-icons/lib/esm/Replay5Outlined.js new file mode 100644 index 00000000000000..3c377c8974a5d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay5Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" +}), 'Replay5Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay5Rounded.js b/packages/material-ui-icons/lib/esm/Replay5Rounded.js new file mode 100644 index 00000000000000..cf349ea20fc087 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay5Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.26-2.14 3.99-4.39 4.53-3.64.88-6.93-1.6-7.42-4.96-.06-.49-.48-.86-.97-.86-.6 0-1.08.53-1 1.13.63 4.47 4.94 7.75 9.77 6.67 3.09-.69 5.39-3.08 5.99-6.19C20.84 9.48 16.94 5 12 5zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" +}), 'Replay5Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay5Sharp.js b/packages/material-ui-icons/lib/esm/Replay5Sharp.js new file mode 100644 index 00000000000000..c42d624332c02d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay5Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" +}), 'Replay5Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Replay5TwoTone.js b/packages/material-ui-icons/lib/esm/Replay5TwoTone.js new file mode 100644 index 00000000000000..ed3a283da4319c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Replay5TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" +}), 'Replay5TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayCircleFilled.js b/packages/material-ui-icons/lib/esm/ReplayCircleFilled.js new file mode 100644 index 00000000000000..5dc253a7923058 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayCircleFilled.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3L8 7l4-4v3c3.31 0 6 2.69 6 6z" +}), 'ReplayCircleFilled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayCircleFilledOutlined.js b/packages/material-ui-icons/lib/esm/ReplayCircleFilledOutlined.js new file mode 100644 index 00000000000000..de33feeaece786 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayCircleFilledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-3.31 0-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4c0-2.24-1.85-4.09-4.16-3.99l1.57 1.57L12 11.5l-4-4 4-4 1.41 1.41-1.6 1.6C15.28 6.4 18 9.18 18 12.5c0 3.31-2.69 6-6 6z" +}), 'ReplayCircleFilledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayCircleFilledRounded.js b/packages/material-ui-icons/lib/esm/ReplayCircleFilledRounded.js new file mode 100644 index 00000000000000..8503dcf61274e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayCircleFilledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.74c-.12 3.09-2.67 5.64-5.76 5.76-3.01.12-5.56-1.99-6.12-4.82-.13-.61.36-1.18.98-1.18.47 0 .88.33.98.8.42 2.07 2.44 3.57 4.72 3.12 1.56-.3 2.82-1.56 3.12-3.12.5-2.56-1.45-4.8-3.92-4.8v1.79c0 .45-.54.67-.85.35l-2.8-2.79c-.2-.2-.2-.51 0-.71l2.79-2.79c.32-.31.86-.09.86.36V6.5c3.39 0 6.13 2.82 6 6.24z" +}), 'ReplayCircleFilledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayCircleFilledSharp.js b/packages/material-ui-icons/lib/esm/ReplayCircleFilledSharp.js new file mode 100644 index 00000000000000..57fde066f28770 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayCircleFilledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.5c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3l-4-4 4-4v3c3.31 0 6 2.69 6 6z" +}), 'ReplayCircleFilledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayCircleFilledTwoTone.js b/packages/material-ui-icons/lib/esm/ReplayCircleFilledTwoTone.js new file mode 100644 index 00000000000000..01b5a7f0d2cb68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayCircleFilledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.5c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3l-4-4 4-4v3c3.31 0 6 2.69 6 6z" +}), 'ReplayCircleFilledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayOutlined.js b/packages/material-ui-icons/lib/esm/ReplayOutlined.js new file mode 100644 index 00000000000000..3bca7aef2b99b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" +}), 'ReplayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayRounded.js b/packages/material-ui-icons/lib/esm/ReplayRounded.js new file mode 100644 index 00000000000000..96821e30411e4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.07-.48-.49-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24C20.84 9.48 16.94 5 12 5z" +}), 'ReplayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplaySharp.js b/packages/material-ui-icons/lib/esm/ReplaySharp.js new file mode 100644 index 00000000000000..f0de7650de7e85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" +}), 'ReplaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplayTwoTone.js b/packages/material-ui-icons/lib/esm/ReplayTwoTone.js new file mode 100644 index 00000000000000..95e723b4981c9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplayTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 6 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8V1L7 6z" +}), 'ReplayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Reply.js b/packages/material-ui-icons/lib/esm/Reply.js new file mode 100644 index 00000000000000..2906c7f2eca639 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Reply.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'Reply'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyAll.js b/packages/material-ui-icons/lib/esm/ReplyAll.js new file mode 100644 index 00000000000000..1f6e94cb5e7408 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyAll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyAll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyAllOutlined.js b/packages/material-ui-icons/lib/esm/ReplyAllOutlined.js new file mode 100644 index 00000000000000..c3e9f6fb34f003 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyAllOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyAllOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyAllRounded.js b/packages/material-ui-icons/lib/esm/ReplyAllRounded.js new file mode 100644 index 00000000000000..f1510142dddde0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyAllRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7.56c0-.94-1.14-1.42-1.81-.75L.71 11.29c-.39.39-.39 1.02 0 1.41l4.48 4.48c.67.68 1.81.2 1.81-.74 0-.28-.11-.55-.31-.75L3 12l3.69-3.69c.2-.2.31-.47.31-.75zM13 9V7.41c0-.89-1.08-1.34-1.71-.71L6.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.18 1.71-.71V14.9c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyAllRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyAllSharp.js b/packages/material-ui-icons/lib/esm/ReplyAllSharp.js new file mode 100644 index 00000000000000..d85e4fc4c29012 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyAllSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyAllSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyAllTwoTone.js b/packages/material-ui-icons/lib/esm/ReplyAllTwoTone.js new file mode 100644 index 00000000000000..d356360273dab6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyAllTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyAllTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyOutlined.js b/packages/material-ui-icons/lib/esm/ReplyOutlined.js new file mode 100644 index 00000000000000..56997a4d5251e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyRounded.js b/packages/material-ui-icons/lib/esm/ReplyRounded.js new file mode 100644 index 00000000000000..64ff2552109f15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7V14.9c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplySharp.js b/packages/material-ui-icons/lib/esm/ReplySharp.js new file mode 100644 index 00000000000000..f347e88eecfbaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReplyTwoTone.js b/packages/material-ui-icons/lib/esm/ReplyTwoTone.js new file mode 100644 index 00000000000000..ac371af9993135 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReplyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" +}), 'ReplyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Report.js b/packages/material-ui-icons/lib/esm/Report.js new file mode 100644 index 00000000000000..ef89312e1627ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Report.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z" +}), 'Report'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportGmailerrorred.js b/packages/material-ui-icons/lib/esm/ReportGmailerrorred.js new file mode 100644 index 00000000000000..f5bb05d6a5929c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportGmailerrorred.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v6h-2zm0 8h2v2h-2z" +}, "1")], 'ReportGmailerrorred'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportGmailerrorredOutlined.js b/packages/material-ui-icons/lib/esm/ReportGmailerrorredOutlined.js new file mode 100644 index 00000000000000..a3e5a73f0a6262 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportGmailerrorredOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v7h-2z" +}, "2")], 'ReportGmailerrorredOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportGmailerrorredRounded.js b/packages/material-ui-icons/lib/esm/ReportGmailerrorredRounded.js new file mode 100644 index 00000000000000..066cc9a5da87c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportGmailerrorredRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.71 7.98 16.03 3.3c-.19-.19-.45-.3-.71-.3H8.68c-.26 0-.52.11-.7.29L3.29 7.98c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l4.68-4.68c.19-.19.29-.44.29-.71V8.68c.01-.26-.1-.52-.28-.7zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 7c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1z" +}, "2")], 'ReportGmailerrorredRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportGmailerrorredSharp.js b/packages/material-ui-icons/lib/esm/ReportGmailerrorredSharp.js new file mode 100644 index 00000000000000..b287eb7495c6c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportGmailerrorredSharp.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v7h-2z" +}, "2")], 'ReportGmailerrorredSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportGmailerrorredTwoTone.js b/packages/material-ui-icons/lib/esm/ReportGmailerrorredTwoTone.js new file mode 100644 index 00000000000000..686c7bf1b10c65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportGmailerrorredTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v7h-2z" +}, "2")], 'ReportGmailerrorredTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportOff.js b/packages/material-ui-icons/lib/esm/ReportOff.js new file mode 100644 index 00000000000000..1f85637b92951b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7h2v2.92l6.91 6.91 1.09-1.1V8.27L15.73 3H8.27L7.18 4.1 11 7.92zm11.27 14.73-20-20.01L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.63L21 23l1.27-1.27zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3z" +}), 'ReportOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportOffOutlined.js b/packages/material-ui-icons/lib/esm/ReportOffOutlined.js new file mode 100644 index 00000000000000..129549014090d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportOffOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13 9.33V7h-2v.33zM2.41 1.58 1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z" +}, "2")], 'ReportOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportOffRounded.js b/packages/material-ui-icons/lib/esm/ReportOffRounded.js new file mode 100644 index 00000000000000..0d0a2a758bf5f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c.55 0 1 .45 1 1v1.33l7.2 7.2.51-.51c.19-.19.29-.44.29-.71V8.68c0-.27-.11-.52-.29-.71l-4.68-4.68c-.19-.18-.45-.29-.71-.29H8.68c-.26 0-.52.11-.7.29l-.51.51 3.69 3.69c.17-.29.48-.49.84-.49zM2.41 1.58 1 2.99l3.64 3.64-1.35 1.35c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l1.35-1.35L21.01 23l1.41-1.41L2.41 1.58zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z" +}), 'ReportOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportOffSharp.js b/packages/material-ui-icons/lib/esm/ReportOffSharp.js new file mode 100644 index 00000000000000..df97eccd642529 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 7h2v2.33l7.2 7.2.8-.8V8.27L15.73 3H8.27l-.8.8L11 7.33zM2.41 1.58 1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM11 12.99l.01.01H11v-.01zm1 4.31c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z" +}), 'ReportOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportOffTwoTone.js b/packages/material-ui-icons/lib/esm/ReportOffTwoTone.js new file mode 100644 index 00000000000000..514ba2b2b0dce0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportOffTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 9.1 14.9 5H9.1l-.22.22L11 7.33V7h2v2.33l5.78 5.79.22-.22zM6.05 8.04 5 9.1v5.8L9.1 19h5.8l1.05-1.05-9.9-9.91zM13 16c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M13 7h-2v.33l2 2zM2.41 1.58 1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z" +}, "3")], 'ReportOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportOutlined.js b/packages/material-ui-icons/lib/esm/ReportOutlined.js new file mode 100644 index 00000000000000..897d4ba4d2fdbb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v7h-2z" +}, "2")], 'ReportOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportProblem.js b/packages/material-ui-icons/lib/esm/ReportProblem.js new file mode 100644 index 00000000000000..b9fdfcd9d9946f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportProblem.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" +}), 'ReportProblem'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportProblemOutlined.js b/packages/material-ui-icons/lib/esm/ReportProblemOutlined.js new file mode 100644 index 00000000000000..e104019fbe94a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportProblemOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" +}), 'ReportProblemOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportProblemRounded.js b/packages/material-ui-icons/lib/esm/ReportProblemRounded.js new file mode 100644 index 00000000000000..58e3e934a3210b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportProblemRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.73 21h18.53c.77 0 1.25-.83.87-1.5l-9.27-16c-.39-.67-1.35-.67-1.73 0l-9.27 16c-.38.67.1 1.5.87 1.5zM13 18h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'ReportProblemRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportProblemSharp.js b/packages/material-ui-icons/lib/esm/ReportProblemSharp.js new file mode 100644 index 00000000000000..19cc65fff31077 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportProblemSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" +}), 'ReportProblemSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportProblemTwoTone.js b/packages/material-ui-icons/lib/esm/ReportProblemTwoTone.js new file mode 100644 index 00000000000000..533fdfa4728aa1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportProblemTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5.99 4.47 19h15.06L12 5.99zM13 18h-2v-2h2v2zm-2-4v-4h2v4h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2 1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM11 16h2v2h-2zm0-6h2v4h-2z" +}, "1")], 'ReportProblemTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportRounded.js b/packages/material-ui-icons/lib/esm/ReportRounded.js new file mode 100644 index 00000000000000..2a8f057047621b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.32 3H8.68c-.26 0-.52.11-.7.29L3.29 7.98c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l4.68-4.68c.19-.19.29-.44.29-.71V8.68c0-.27-.11-.52-.29-.71l-4.68-4.68c-.18-.18-.44-.29-.7-.29zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3zm0-4.3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z" +}), 'ReportRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportSharp.js b/packages/material-ui-icons/lib/esm/ReportSharp.js new file mode 100644 index 00000000000000..5d671c3be9f7c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z" +}), 'ReportSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReportTwoTone.js b/packages/material-ui-icons/lib/esm/ReportTwoTone.js new file mode 100644 index 00000000000000..fd2f744218297f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReportTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.1 5 5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5H9.1zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3h-2V7h2v7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9 14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11 7h2v7h-2z" +}, "3")], 'ReportTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestPage.js b/packages/material-ui-icons/lib/esm/RequestPage.js new file mode 100644 index 00000000000000..f03bbcd9faf00b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestPage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm1 9h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z" +}), 'RequestPage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestPageOutlined.js b/packages/material-ui-icons/lib/esm/RequestPageOutlined.js new file mode 100644 index 00000000000000..9f2c6a3f7f5eb8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestPageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm1 9h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z" +}), 'RequestPageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestPageRounded.js b/packages/material-ui-icons/lib/esm/RequestPageRounded.js new file mode 100644 index 00000000000000..8e3978d5203953 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestPageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM14 12c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1c0 .55-.45 1-1 1s-1-.45-1-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h3v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-.55.45-1 1-1s1 .45 1 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-3v1h3z" +}), 'RequestPageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestPageSharp.js b/packages/material-ui-icons/lib/esm/RequestPageSharp.js new file mode 100644 index 00000000000000..98aa328640b0df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestPageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4.01L4 22h16V8l-6-6zm1 9h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9V9h2V8h2v1h2v2z" +}), 'RequestPageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestPageTwoTone.js b/packages/material-ui-icons/lib/esm/RequestPageTwoTone.js new file mode 100644 index 00000000000000..a6e369e22b6816 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestPageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.17 4H6v16h12V8.83L13.17 4zM15 11h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.17 4 18 8.83V20H6V4h7.17M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm1 9h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V8h2v1h2v2z" +}, "1")], 'RequestPageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestQuote.js b/packages/material-ui-icons/lib/esm/RequestQuote.js new file mode 100644 index 00000000000000..f16731ddd819d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestQuote.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm1 10h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2h4v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1V9h2v1h2v2zm-2-4V3.5L17.5 8H13z" +}), 'RequestQuote'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestQuoteOutlined.js b/packages/material-ui-icons/lib/esm/RequestQuoteOutlined.js new file mode 100644 index 00000000000000..022cca51597c5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestQuoteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v4h5v12H6zm5-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z" +}), 'RequestQuoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestQuoteRounded.js b/packages/material-ui-icons/lib/esm/RequestQuoteRounded.js new file mode 100644 index 00000000000000..2a51f0ea89999e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestQuoteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM14 13c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1c0 .55-.45 1-1 1s-1-.45-1-1h-1c-.55 0-1-.45-1-1s.45-1 1-1h3v-1h-3c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h1c0-.55.45-1 1-1s1 .45 1 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-3v1h3zm0-5c-.55 0-1-.45-1-1V3.5L17.5 8H14z" +}), 'RequestQuoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestQuoteSharp.js b/packages/material-ui-icons/lib/esm/RequestQuoteSharp.js new file mode 100644 index 00000000000000..8de9f49c5010f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestQuoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm1 10h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9v-5h2V9h2v1h2v2zm-2-4V3.5L17.5 8H13z" +}), 'RequestQuoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RequestQuoteTwoTone.js b/packages/material-ui-icons/lib/esm/RequestQuoteTwoTone.js new file mode 100644 index 00000000000000..366f5bcd51992b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RequestQuoteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 20V4h7v4h5v12H6zm5-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v4h5v12H6zm5-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z" +}, "1")], 'RequestQuoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ResetTv.js b/packages/material-ui-icons/lib/esm/ResetTv.js new file mode 100644 index 00000000000000..2ff5e9b31cc835 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ResetTv.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10h-8.01V7L9 11l3.99 4v-3H21v5H3V5h18v3h2V5c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2v-5H23c0-1.1-.9-2-2-2z" +}), 'ResetTv'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ResetTvOutlined.js b/packages/material-ui-icons/lib/esm/ResetTvOutlined.js new file mode 100644 index 00000000000000..57b8d12f0547b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ResetTvOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 8V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2v-5H22c0-1.1-.9-2-2-2h-7.17l1.83-1.83-1.41-1.41C9.69 10.31 10.88 9.12 9 11l4.24 4.24 1.41-1.41L12.83 12H20v5H4V5h16v3h2z" +}), 'ResetTvOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ResetTvRounded.js b/packages/material-ui-icons/lib/esm/ResetTvRounded.js new file mode 100644 index 00000000000000..08f45fee3487af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ResetTvRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10h-7.01V8.21c0-.45-.54-.67-.85-.35l-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.32.85.09.85-.35V12H20v5H4V5h16v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h4c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" +}), 'ResetTvRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ResetTvSharp.js b/packages/material-ui-icons/lib/esm/ResetTvSharp.js new file mode 100644 index 00000000000000..5456567ef96b11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ResetTvSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10h-9.01V7L9 11l3.99 4v-3H20v5H4V5h16v3h2V3H2v16h6v2h8v-2h6z" +}), 'ResetTvSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ResetTvTwoTone.js b/packages/material-ui-icons/lib/esm/ResetTvTwoTone.js new file mode 100644 index 00000000000000..e897ea14e2cd26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ResetTvTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10h-7.01V7L9 11l3.99 4v-3H20v5H4V5h16v3h2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2v-5H22c0-1.1-.9-2-2-2z" +}), 'ResetTvTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestartAlt.js b/packages/material-ui-icons/lib/esm/RestartAlt.js new file mode 100644 index 00000000000000..64da1ec6088ac8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestartAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z" +}), 'RestartAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestartAltOutlined.js b/packages/material-ui-icons/lib/esm/RestartAltOutlined.js new file mode 100644 index 00000000000000..f865fe9d11e4f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestartAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91zm14 0c0-4.42-3.58-8-8-8-.06 0-.12.01-.18.01l1.09-1.09L11.5 2.5 8 6l3.5 3.5 1.41-1.41-1.08-1.08c.06 0 .12-.01.17-.01 3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93z" +}), 'RestartAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestartAltRounded.js b/packages/material-ui-icons/lib/esm/RestartAltRounded.js new file mode 100644 index 00000000000000..30101944923a42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestartAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V3.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V7c3.31 0 6 2.69 6 6 0 2.72-1.83 5.02-4.31 5.75-.42.12-.69.52-.69.95 0 .65.62 1.16 1.25.97C17.57 19.7 20 16.64 20 13c0-4.42-3.58-8-8-8zm-6 8c0-1.34.44-2.58 1.19-3.59.3-.4.26-.95-.09-1.31-.42-.42-1.14-.38-1.5.1-1 1.34-1.6 3-1.6 4.8 0 3.64 2.43 6.7 5.75 7.67.63.19 1.25-.32 1.25-.97 0-.43-.27-.83-.69-.95C7.83 18.02 6 15.72 6 13z" +}), 'RestartAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestartAltSharp.js b/packages/material-ui-icons/lib/esm/RestartAltSharp.js new file mode 100644 index 00000000000000..3d62fd4e9cc7cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestartAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z" +}), 'RestartAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestartAltTwoTone.js b/packages/material-ui-icons/lib/esm/RestartAltTwoTone.js new file mode 100644 index 00000000000000..b9a2bb2a39445a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestartAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z" +}), 'RestartAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Restaurant.js b/packages/material-ui-icons/lib/esm/Restaurant.js new file mode 100644 index 00000000000000..de7a464a72d246 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Restaurant.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z" +}), 'Restaurant'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantMenu.js b/packages/material-ui-icons/lib/esm/RestaurantMenu.js new file mode 100644 index 00000000000000..e4af440505f7fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantMenu.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" +}), 'RestaurantMenu'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantMenuOutlined.js b/packages/material-ui-icons/lib/esm/RestaurantMenuOutlined.js new file mode 100644 index 00000000000000..82c865a1bebb4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantMenuOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" +}), 'RestaurantMenuOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantMenuRounded.js b/packages/material-ui-icons/lib/esm/RestaurantMenuRounded.js new file mode 100644 index 00000000000000..55d0c9e623ae0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantMenuRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83-6.19-6.18c-.48-.48-1.31-.35-1.61.27-.71 1.49-.45 3.32.78 4.56l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L4.4 19.17c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 14.41l6.18 6.18c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 13l1.47-1.47z" +}), 'RestaurantMenuRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantMenuSharp.js b/packages/material-ui-icons/lib/esm/RestaurantMenuSharp.js new file mode 100644 index 00000000000000..76392c1306419d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantMenuSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" +}), 'RestaurantMenuSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantMenuTwoTone.js b/packages/material-ui-icons/lib/esm/RestaurantMenuTwoTone.js new file mode 100644 index 00000000000000..620e15d0b05072 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantMenuTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.1 13.34 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm12.05-3.19c1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38z" +}), 'RestaurantMenuTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantOutlined.js b/packages/material-ui-icons/lib/esm/RestaurantOutlined.js new file mode 100644 index 00000000000000..ca6a2864d783c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" +}), 'RestaurantOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantRounded.js b/packages/material-ui-icons/lib/esm/RestaurantRounded.js new file mode 100644 index 00000000000000..39e4ec8d72172d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6v6c0 1.1.9 2 2 2h1v7c0 .55.45 1 1 1s1-.45 1-1V3.13c0-.65-.61-1.13-1.24-.98C17.6 2.68 16 4.51 16 6zm-5 3H9V3c0-.55-.45-1-1-1s-1 .45-1 1v6H5V3c0-.55-.45-1-1-1s-1 .45-1 1v6c0 2.21 1.79 4 4 4v8c0 .55.45 1 1 1s1-.45 1-1v-8c2.21 0 4-1.79 4-4V3c0-.55-.45-1-1-1s-1 .45-1 1v6z" +}), 'RestaurantRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantSharp.js b/packages/material-ui-icons/lib/esm/RestaurantSharp.js new file mode 100644 index 00000000000000..4834e2b6f1cb42 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" +}), 'RestaurantSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestaurantTwoTone.js b/packages/material-ui-icons/lib/esm/RestaurantTwoTone.js new file mode 100644 index 00000000000000..4c632e2ab38dd0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestaurantTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" +}), 'RestaurantTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Restore.js b/packages/material-ui-icons/lib/esm/Restore.js new file mode 100644 index 00000000000000..0eeacf420609b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Restore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z" +}), 'Restore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreFromTrash.js b/packages/material-ui-icons/lib/esm/RestoreFromTrash.js new file mode 100644 index 00000000000000..d09a4b8c58e825 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreFromTrash.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4h-3.5l-1-1h-5l-1 1H5v2h14zM6 7v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6zm8 7v4h-4v-4H8l4-4 4 4h-2z" +}), 'RestoreFromTrash'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreFromTrashOutlined.js b/packages/material-ui-icons/lib/esm/RestoreFromTrashOutlined.js new file mode 100644 index 00000000000000..2509573e8a5eb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreFromTrashOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.5 4-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm2 4h4v-4h2l-4-4-4 4h2z" +}), 'RestoreFromTrashOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreFromTrashRounded.js b/packages/material-ui-icons/lib/esm/RestoreFromTrashRounded.js new file mode 100644 index 00000000000000..84787a97c30eaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreFromTrashRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zm5.65-8.65c.2-.2.51-.2.71 0L16 14h-2v4h-4v-4H8l3.65-3.65zM15.5 4l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z" +}), 'RestoreFromTrashRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreFromTrashSharp.js b/packages/material-ui-icons/lib/esm/RestoreFromTrashSharp.js new file mode 100644 index 00000000000000..b9756c9e615697 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreFromTrashSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 21h12V7H6v14zm6-11 4 4h-2v4h-4v-4H8l4-4zm3.5-6-1-1h-5l-1 1H5v2h14V4z" +}), 'RestoreFromTrashSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreFromTrashTwoTone.js b/packages/material-ui-icons/lib/esm/RestoreFromTrashTwoTone.js new file mode 100644 index 00000000000000..4b27065c878017 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreFromTrashTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 14h-2v4h-4v-4H8v5h8zm0 0V9H8v5l4-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm7.5-10-1-1h-5l-1 1H5v2h14V4zM10 18h4v-4h2l-4-4-4 4h2z" +}, "1")], 'RestoreFromTrashTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreOutlined.js b/packages/material-ui-icons/lib/esm/RestoreOutlined.js new file mode 100644 index 00000000000000..b49ac590be74d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" +}), 'RestoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestorePage.js b/packages/material-ui-icons/lib/esm/RestorePage.js new file mode 100644 index 00000000000000..477549bf62d55b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestorePage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" +}), 'RestorePage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestorePageOutlined.js b/packages/material-ui-icons/lib/esm/RestorePageOutlined.js new file mode 100644 index 00000000000000..d24099b447e0ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestorePageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z" +}), 'RestorePageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestorePageRounded.js b/packages/material-ui-icons/lib/esm/RestorePageRounded.js new file mode 100644 index 00000000000000..c60ef1d33ff83f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestorePageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM12 18c-1.65 0-3.19-.81-4.12-2.17-.23-.34-.15-.81.19-1.04.34-.24.81-.15 1.04.19.65.95 1.73 1.52 2.88 1.52 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.33 0-2.52.74-3.11 1.89L10.5 13H7c-.28 0-.5-.22-.5-.5V9l1.3 1.3C8.71 8.89 10.26 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" +}), 'RestorePageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestorePageSharp.js b/packages/material-ui-icons/lib/esm/RestorePageSharp.js new file mode 100644 index 00000000000000..1596b5e2b5f0bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestorePageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" +}), 'RestorePageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestorePageTwoTone.js b/packages/material-ui-icons/lib/esm/RestorePageTwoTone.js new file mode 100644 index 00000000000000..f076d727c40cb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestorePageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 4v16h12V8.83L13.17 4H6zm10.72 9c0 2.48-2.02 4.5-4.5 4.5-1.84 0-3.43-1.12-4.12-2.7h1.54c.57.81 1.51 1.35 2.58 1.35 1.74 0 3.15-1.41 3.15-3.15s-1.41-3.15-3.15-3.15c-1.21 0-2.27.7-2.79 1.71L10.88 13h-3.6V9.4l1.17 1.17c.8-1.24 2.19-2.07 3.78-2.07 2.48 0 4.49 2.02 4.49 4.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z" +}, "1")], 'RestorePageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreRounded.js b/packages/material-ui-icons/lib/esm/RestoreRounded.js new file mode 100644 index 00000000000000..01e973d7bef114 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.25 3c-5.09-.14-9.26 3.94-9.26 9H2.2c-.45 0-.67.54-.35.85l2.79 2.8c.2.2.51.2.71 0l2.79-2.8c.32-.31.09-.85-.35-.85h-1.8c0-3.9 3.18-7.05 7.1-7 3.72.05 6.85 3.18 6.9 6.9.05 3.91-3.1 7.1-7 7.1-1.61 0-3.1-.55-4.28-1.48-.4-.31-.96-.28-1.32.08-.42.43-.39 1.13.08 1.5 1.52 1.19 3.44 1.9 5.52 1.9 5.05 0 9.14-4.17 9-9.26-.13-4.69-4.05-8.61-8.74-8.74zm-.51 5c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.09-.82-.26-1.03l-2.88-1.71v-3.4c0-.4-.33-.74-.75-.74z" +}), 'RestoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreSharp.js b/packages/material-ui-icons/lib/esm/RestoreSharp.js new file mode 100644 index 00000000000000..a18c336507a91b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" +}), 'RestoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RestoreTwoTone.js b/packages/material-ui-icons/lib/esm/RestoreTwoTone.js new file mode 100644 index 00000000000000..c88c4e77b14304 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RestoreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" +}), 'RestoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Reviews.js b/packages/material-ui-icons/lib/esm/Reviews.js new file mode 100644 index 00000000000000..08b5a804991e51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Reviews.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" +}), 'Reviews'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReviewsOutlined.js b/packages/material-ui-icons/lib/esm/ReviewsOutlined.js new file mode 100644 index 00000000000000..84765eb48f3069 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReviewsOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" +}, "1")], 'ReviewsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReviewsRounded.js b/packages/material-ui-icons/lib/esm/ReviewsRounded.js new file mode 100644 index 00000000000000..0c4d96ec54e44b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReviewsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57-1.12 2.44c-.18.39-.73.39-.91 0l-1.12-2.44-2.44-1.12c-.39-.18-.39-.73 0-.91l2.44-1.12 1.12-2.44c.18-.39.73-.39.91 0l1.12 2.44 2.44 1.12c.39.18.39.73 0 .91l-2.44 1.12z" +}), 'ReviewsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReviewsSharp.js b/packages/material-ui-icons/lib/esm/ReviewsSharp.js new file mode 100644 index 00000000000000..8904851b88ec6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReviewsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" +}), 'ReviewsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ReviewsTwoTone.js b/packages/material-ui-icons/lib/esm/ReviewsTwoTone.js new file mode 100644 index 00000000000000..3c557a8720af39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ReviewsTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17 5.17 16H20V4H4v13.17zm6.43-8.74L12 5l1.57 3.43L17 10l-3.43 1.57L12 15l-1.57-3.43L7 10l3.43-1.57z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" +}, "2")], 'ReviewsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RiceBowl.js b/packages/material-ui-icons/lib/esm/RiceBowl.js new file mode 100644 index 00000000000000..430106fb615fab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RiceBowl.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" +}), 'RiceBowl'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RiceBowlOutlined.js b/packages/material-ui-icons/lib/esm/RiceBowlOutlined.js new file mode 100644 index 00000000000000..ed47fb2e4c324b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RiceBowlOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.49V20h-4v-1.12l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33M12 2C6.48 2 2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25 0-5.52-4.48-10-10-10zm-2 10V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26V12h-4zm6 0V5.08c2.39 1.39 4 3.96 4 6.92h-4zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" +}), 'RiceBowlOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RiceBowlRounded.js b/packages/material-ui-icons/lib/esm/RiceBowlRounded.js new file mode 100644 index 00000000000000..c2d9355414a47c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RiceBowlRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.48-4.4-9.93-9.86-10-3.62-.05-6.85 2.03-8.71 5.14C.1 12.69 2.98 18.27 8 20.25v.25c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-.25c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" +}), 'RiceBowlRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RiceBowlSharp.js b/packages/material-ui-icons/lib/esm/RiceBowlSharp.js new file mode 100644 index 00000000000000..5bc92446b4a1fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RiceBowlSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" +}), 'RiceBowlSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RiceBowlTwoTone.js b/packages/material-ui-icons/lib/esm/RiceBowlTwoTone.js new file mode 100644 index 00000000000000..df1f3387b7a937 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RiceBowlTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.49V20h-4v-1.12l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.66 14c-.66 1.92-2.24 3.54-4.4 4.39l-1.26.49V20h-4v-1.12l-1.27-.5c-2.16-.85-3.74-2.47-4.4-4.39h15.33M12 2C6.48 2 2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25 0-5.52-4.48-10-10-10zm-2 10V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26V12h-4zm6 0V5.08c2.39 1.39 4 3.96 4 6.92h-4zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" +}, "1")], 'RiceBowlTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RingVolume.js b/packages/material-ui-icons/lib/esm/RingVolume.js new file mode 100644 index 00000000000000..f226183211d279 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RingVolume.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zM21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM13 2h-2v5h2V2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" +}), 'RingVolume'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RingVolumeOutlined.js b/packages/material-ui-icons/lib/esm/RingVolumeOutlined.js new file mode 100644 index 00000000000000..ba9b13a716bda4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RingVolumeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zm.69-12.23-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" +}), 'RingVolumeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RingVolumeRounded.js b/packages/material-ui-icons/lib/esm/RingVolumeRounded.js new file mode 100644 index 00000000000000..df71c85019cdf3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RingVolumeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.98 7h.03c.55 0 .99-.44.99-.98V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98v3.03c0 .55.44.99.98.99zm4.92 2.11c.39.39 1.01.39 1.4 0 .62-.63 1.52-1.54 2.15-2.17.39-.38.39-1.01 0-1.39-.38-.38-1.01-.38-1.39 0L16.89 7.7c-.39.38-.39 1.01 0 1.39l.01.02zM5.71 9.1c.38.39 1.01.39 1.4 0 .38-.38.38-1.01 0-1.39L4.96 5.54c-.38-.39-1.01-.39-1.39 0l-.02.01c-.39.39-.39 1.01 0 1.39.63.62 1.54 1.53 2.16 2.16zm17.58 7.13c-6.41-5.66-16.07-5.66-22.48 0-.85.75-.85 2.08-.05 2.88l1.22 1.22c.72.72 1.86.78 2.66.15l2-1.59c.48-.38.76-.96.76-1.57v-2.6c3.02-.98 6.29-.99 9.32 0v2.61c0 .61.28 1.19.76 1.57l1.99 1.58c.8.63 1.94.57 2.66-.15l1.22-1.22c.79-.8.79-2.13-.06-2.88z" +}), 'RingVolumeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RingVolumeSharp.js b/packages/material-ui-icons/lib/esm/RingVolumeSharp.js new file mode 100644 index 00000000000000..7bcac7518ffdbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RingVolumeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.16 6.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55zM0 17.39l3.68 3.68 3.92-3.11v-3.37c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 17.39c-6.41-7.19-17.59-7.19-24 0z" +}), 'RingVolumeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RingVolumeTwoTone.js b/packages/material-ui-icons/lib/esm/RingVolumeTwoTone.js new file mode 100644 index 00000000000000..32379fc143347d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RingVolumeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.6 17.22c.66.37 1.28.79 1.87 1.27l1.07-1.07c-.91-.75-1.9-1.38-2.94-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 12C7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7C20.66 13.78 16.54 12 12 12zm-6.6 5.23c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zM16.19 8.4l1.41 1.41s3.45-3.52 3.56-3.55l-1.41-1.41-3.56 3.55zM11 2h2v5h-2zM6.4 9.81 7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z" +}, "1")], 'RingVolumeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Roofing.js b/packages/material-ui-icons/lib/esm/Roofing.js new file mode 100644 index 00000000000000..422fd0cd293115 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Roofing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" +}), 'Roofing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoofingOutlined.js b/packages/material-ui-icons/lib/esm/RoofingOutlined.js new file mode 100644 index 00000000000000..873ff93d0e9b4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoofingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" +}), 'RoofingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoofingRounded.js b/packages/material-ui-icons/lib/esm/RoofingRounded.js new file mode 100644 index 00000000000000..22a2d6015f5d72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoofingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 18h-2v-2h2v2zm-4-3v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1zm10-5.7V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v1.6l-3.33-3c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87h1.31c.25 0 .49-.09.67-.26L12 5.69l6.71 6.05c.19.17.43.26.67.26h1.31c.46 0 .68-.57.33-.87L19 9.3z" +}), 'RoofingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoofingSharp.js b/packages/material-ui-icons/lib/esm/RoofingSharp.js new file mode 100644 index 00000000000000..dfffa6f1590aaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoofingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" +}), 'RoofingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoofingTwoTone.js b/packages/material-ui-icons/lib/esm/RoofingTwoTone.js new file mode 100644 index 00000000000000..94f668e34f7004 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoofingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 16h2v2h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" +}, "1")], 'RoofingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Room.js b/packages/material-ui-icons/lib/esm/Room.js new file mode 100644 index 00000000000000..15d830fb274834 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Room.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'Room'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomOutlined.js b/packages/material-ui-icons/lib/esm/RoomOutlined.js new file mode 100644 index 00000000000000..87174b2cf01eb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9", + r: "2.5" +}, "1")], 'RoomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomPreferences.js b/packages/material-ui-icons/lib/esm/RoomPreferences.js new file mode 100644 index 00000000000000..1290f70ded680f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomPreferences.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26c-.79-1.13-1.26-2.51-1.26-4 0-2.38 1.19-4.47 3-5.74zM10 11h2v2h-2v-2zm11.69 5.37 1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'RoomPreferences'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomPreferencesOutlined.js b/packages/material-ui-icons/lib/esm/RoomPreferencesOutlined.js new file mode 100644 index 00000000000000..fb2556e2c132fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomPreferencesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.69 16.37 1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-15v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1h4zm-7 9h-2v-2h2v2z" +}), 'RoomPreferencesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomPreferencesRounded.js b/packages/material-ui-icons/lib/esm/RoomPreferencesRounded.js new file mode 100644 index 00000000000000..ed89232a7ebf18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomPreferencesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.75 17c0-.22-.03-.42-.06-.63l.84-.73c.18-.16.22-.42.1-.63l-.59-1.02c-.12-.21-.37-.3-.59-.22l-1.06.36c-.32-.27-.68-.48-1.08-.63l-.22-1.09c-.05-.23-.25-.4-.49-.4h-1.18c-.24 0-.44.17-.49.4l-.22 1.09c-.4.15-.76.36-1.08.63l-1.06-.36c-.23-.08-.47.02-.59.22l-.59 1.02c-.12.21-.08.47.1.63l.84.73c-.03.21-.06.41-.06.63s.03.42.06.63l-.84.73c-.18.16-.22.42-.1.63l.59 1.02c.12.21.37.3.59.22l1.06-.36c.32.27.68.48 1.08.63l.22 1.09c.05.23.25.4.49.4h1.18c.24 0 .44-.17.49-.4l.22-1.09c.4-.15.76-.36 1.08-.63l1.06.36c.23.08.47-.02.59-.22l.59-1.02c.12-.21.08-.47-.1-.63l-.84-.73c.03-.21.06-.41.06-.63zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-4-7.74V6h3v4h2V5c0-.55-.45-1-1-1h-4c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v15H4c-.55 0-1 .45-1 1s.45 1 1 1h8.26c-.79-1.13-1.26-2.51-1.26-4 0-2.38 1.19-4.47 3-5.74zM10 12c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z" +}), 'RoomPreferencesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomPreferencesSharp.js b/packages/material-ui-icons/lib/esm/RoomPreferencesSharp.js new file mode 100644 index 00000000000000..30c5fd9222a877 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomPreferencesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26c-.79-1.13-1.26-2.51-1.26-4 0-2.38 1.19-4.47 3-5.74zM10 11h2v2h-2v-2zm11.69 5.37 1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'RoomPreferencesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomPreferencesTwoTone.js b/packages/material-ui-icons/lib/esm/RoomPreferencesTwoTone.js new file mode 100644 index 00000000000000..4f36a9f8cfb97c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomPreferencesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 12.11V5H7v14h4.29c-.19-.63-.29-1.3-.29-2 0-1.91.76-3.63 2-4.89zM10 11h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 13h-2v-2h2v2zm-5 6V5h6v7.11c.57-.59 1.25-1.07 2-1.42V6h2v4h2V4h-4V3H5v16H3v2h9.26c-.42-.6-.75-1.28-.97-2H7zm14.69-1.37 1.14 1-1 1.73-1.45-.49c-.32.27-.68.48-1.08.63L19 22h-2l-.3-1.49c-.4-.15-.76-.36-1.08-.63l-1.45.49-1-1.73 1.14-1c-.08-.5-.08-.76 0-1.26l-1.14-1 1-1.73 1.45.49c.32-.27.68-.48 1.08-.63L17 12h2l.3 1.49c.4.15.76.36 1.08.63l1.45-.49 1 1.73-1.14 1c.08.51.08.77 0 1.27zM20 17c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z" +}, "1")], 'RoomPreferencesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomRounded.js b/packages/material-ui-icons/lib/esm/RoomRounded.js new file mode 100644 index 00000000000000..f7fe53c007cab8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'RoomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomService.js b/packages/material-ui-icons/lib/esm/RoomService.js new file mode 100644 index 00000000000000..f77305cdfdf521 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomService.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" +}), 'RoomService'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomServiceOutlined.js b/packages/material-ui-icons/lib/esm/RoomServiceOutlined.js new file mode 100644 index 00000000000000..1d2beeab1746d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomServiceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.98 17H2v2h20v-2zM21 16c-.27-4.07-3.25-7.4-7.16-8.21.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18zm-9-6.42c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z" +}), 'RoomServiceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomServiceRounded.js b/packages/material-ui-icons/lib/esm/RoomServiceRounded.js new file mode 100644 index 00000000000000..e44463c89b928d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomServiceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1zm10.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" +}), 'RoomServiceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomServiceSharp.js b/packages/material-ui-icons/lib/esm/RoomServiceSharp.js new file mode 100644 index 00000000000000..8bde0185a766f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomServiceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17h20v2H2v-2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" +}), 'RoomServiceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomServiceTwoTone.js b/packages/material-ui-icons/lib/esm/RoomServiceTwoTone.js new file mode 100644 index 00000000000000..34c3ebb5531712 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomServiceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 9.58c-2.95 0-5.47 1.83-6.5 4.41h13c-1.03-2.58-3.55-4.41-6.5-4.41z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21zM12 9.58c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z" +}, "1")], 'RoomServiceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomSharp.js b/packages/material-ui-icons/lib/esm/RoomSharp.js new file mode 100644 index 00000000000000..96f6eb4e91e6c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z" +}), 'RoomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoomTwoTone.js b/packages/material-ui-icons/lib/esm/RoomTwoTone.js new file mode 100644 index 00000000000000..8834ae69f398d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoomTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9", + r: "2.5" +}, "2")], 'RoomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rotate90DegreesCcw.js b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcw.js new file mode 100644 index 00000000000000..318ace7be92040 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcw.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" +}), 'Rotate90DegreesCcw'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwOutlined.js b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwOutlined.js new file mode 100644 index 00000000000000..7f37fe544ee8a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" +}), 'Rotate90DegreesCcwOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwRounded.js b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwRounded.js new file mode 100644 index 00000000000000..be6b192b888fcc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5.93 7.83-3.65 3.66c-.78.78-.78 2.05 0 2.83l3.66 3.66c.78.78 2.05.78 2.83 0l3.66-3.65c.78-.78.78-2.05 0-2.83L8.76 7.82c-.79-.78-2.05-.78-2.83.01zM4.4 12.19l2.25-2.25c.39-.39 1.02-.39 1.42 0l2.24 2.24c.39.39.39 1.02 0 1.41l-2.25 2.25c-.39.39-1.02.39-1.42 0L4.4 13.61c-.39-.39-.39-1.03 0-1.42zm14.96-5.55C17.61 4.88 15.3 4 13 4v-.83c0-.89-1.08-1.34-1.71-.71L9.47 4.29c-.39.39-.39 1.02 0 1.41l1.83 1.83c.62.63 1.7.19 1.7-.7V6c2.02 0 4.03.86 5.45 2.61 2.05 2.52 2.05 6.27 0 8.79C17.03 19.14 15.02 20 13 20c-.78 0-1.55-.13-2.29-.39-.36-.12-.75-.01-1.02.26-.5.5-.34 1.39.34 1.62.96.34 1.96.51 2.97.51 2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" +}), 'Rotate90DegreesCcwRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwSharp.js b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwSharp.js new file mode 100644 index 00000000000000..600dacb97646f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" +}), 'Rotate90DegreesCcwSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwTwoTone.js b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwTwoTone.js new file mode 100644 index 00000000000000..a5de41e3272014 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rotate90DegreesCcwTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.35 9.24 3.69 12.9l3.65 3.66L11 12.9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.34 6.41.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zm0 10.15L3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66zm12.02-9.92C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z" +}, "1")], 'Rotate90DegreesCcwTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateLeft.js b/packages/material-ui-icons/lib/esm/RotateLeft.js new file mode 100644 index 00000000000000..b3a335f553d937 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.11 8.53 5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" +}), 'RotateLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateLeftOutlined.js b/packages/material-ui-icons/lib/esm/RotateLeftOutlined.js new file mode 100644 index 00000000000000..01910a6aa12564 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.11 8.53 5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" +}), 'RotateLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateLeftRounded.js b/packages/material-ui-icons/lib/esm/RotateLeftRounded.js new file mode 100644 index 00000000000000..2ac84db6ceaea0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.56 7.98C6.1 7.52 5.31 7.6 5 8.17c-.28.51-.5 1.03-.67 1.58-.19.63.31 1.25.96 1.25h.01c.43 0 .82-.28.94-.7.12-.4.28-.79.48-1.17.22-.37.15-.84-.16-1.15zM5.31 13h-.02c-.65 0-1.15.62-.96 1.25.16.54.38 1.07.66 1.58.31.57 1.11.66 1.57.2.3-.31.38-.77.17-1.15-.2-.37-.36-.76-.48-1.16-.12-.44-.51-.72-.94-.72zm2.85 6.02c.51.28 1.04.5 1.59.66.62.18 1.24-.32 1.24-.96v-.03c0-.43-.28-.82-.7-.94-.4-.12-.78-.28-1.15-.48-.38-.21-.86-.14-1.16.17l-.03.03c-.45.45-.36 1.24.21 1.55zM13 4.07v-.66c0-.89-1.08-1.34-1.71-.71L9.17 4.83c-.4.4-.4 1.04 0 1.43l2.13 2.08c.63.62 1.7.17 1.7-.72V6.09c2.84.48 5 2.94 5 5.91 0 2.73-1.82 5.02-4.32 5.75-.41.12-.68.51-.68.94v.02c0 .65.61 1.14 1.23.96C17.57 18.71 20 15.64 20 12c0-4.08-3.05-7.44-7-7.93z" +}), 'RotateLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateLeftSharp.js b/packages/material-ui-icons/lib/esm/RotateLeftSharp.js new file mode 100644 index 00000000000000..ce271612f6d965 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.11 8.53 5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" +}), 'RotateLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateLeftTwoTone.js b/packages/material-ui-icons/lib/esm/RotateLeftTwoTone.js new file mode 100644 index 00000000000000..7d669e488d0034 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 17.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91zm-7.31-1.02 1.41-1.42c-.52-.75-.87-1.59-1.01-2.47H4.07c.17 1.39.72 2.73 1.62 3.89zm1.42-8.36L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM11 17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32c1.16.9 2.51 1.44 3.9 1.61V17.9z" +}), 'RotateLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateRight.js b/packages/material-ui-icons/lib/esm/RotateRight.js new file mode 100644 index 00000000000000..e4042ad0ab2b2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.55 5.55 11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42 1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" +}), 'RotateRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateRightOutlined.js b/packages/material-ui-icons/lib/esm/RotateRightOutlined.js new file mode 100644 index 00000000000000..9f3d74fedf2907 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.55 5.55 11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42 1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" +}), 'RotateRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateRightRounded.js b/packages/material-ui-icons/lib/esm/RotateRightRounded.js new file mode 100644 index 00000000000000..7026e83a290126 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.83 4.83 12.7 2.7c-.62-.62-1.7-.18-1.7.71v.66C7.06 4.56 4 7.92 4 12c0 3.64 2.43 6.71 5.77 7.68.62.18 1.23-.32 1.23-.96v-.03c0-.43-.27-.82-.68-.94C7.82 17.03 6 14.73 6 12c0-2.97 2.16-5.43 5-5.91v1.53c0 .89 1.07 1.33 1.7.71l2.13-2.08c.4-.38.4-1.02 0-1.42zm4.84 4.93c-.16-.55-.38-1.08-.66-1.59-.31-.57-1.1-.66-1.56-.2l-.01.01c-.31.31-.38.78-.17 1.16.2.37.36.76.48 1.16.12.42.51.7.94.7h.02c.65 0 1.15-.62.96-1.24zM13 18.68v.02c0 .65.62 1.14 1.24.96.55-.16 1.08-.38 1.59-.66.57-.31.66-1.1.2-1.56l-.02-.02c-.31-.31-.78-.38-1.16-.17-.37.21-.76.37-1.16.49-.41.12-.69.51-.69.94zm4.44-2.65c.46.46 1.25.37 1.56-.2.28-.51.5-1.04.67-1.59.18-.62-.31-1.24-.96-1.24h-.02c-.44 0-.82.28-.94.7-.12.4-.28.79-.48 1.17-.21.38-.13.86.17 1.16z" +}), 'RotateRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateRightSharp.js b/packages/material-ui-icons/lib/esm/RotateRightSharp.js new file mode 100644 index 00000000000000..a24e67283b236a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.55 5.55 11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42 1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" +}), 'RotateRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RotateRightTwoTone.js b/packages/material-ui-icons/lib/esm/RotateRightTwoTone.js new file mode 100644 index 00000000000000..29be9e2ed913ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RotateRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45L11 1zm4.46 15.87c-.75.54-1.59.89-2.46 1.03v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44zm2.85.02c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48l1.42 1.41z" +}), 'RotateRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoundedCorner.js b/packages/material-ui-icons/lib/esm/RoundedCorner.js new file mode 100644 index 00000000000000..ca21da4bd8b3f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoundedCorner.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" +}), 'RoundedCorner'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoundedCornerOutlined.js b/packages/material-ui-icons/lib/esm/RoundedCornerOutlined.js new file mode 100644 index 00000000000000..fe1279f139749a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoundedCornerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" +}), 'RoundedCornerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoundedCornerRounded.js b/packages/material-ui-icons/lib/esm/RoundedCornerRounded.js new file mode 100644 index 00000000000000..39689e6e186309 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoundedCornerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" +}), 'RoundedCornerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoundedCornerSharp.js b/packages/material-ui-icons/lib/esm/RoundedCornerSharp.js new file mode 100644 index 00000000000000..f8cd3ff3d74b41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoundedCornerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 3H11v2h8v8h2V3z" +}), 'RoundedCornerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RoundedCornerTwoTone.js b/packages/material-ui-icons/lib/esm/RoundedCornerTwoTone.js new file mode 100644 index 00000000000000..d3813209eeac80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RoundedCornerTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z" +}), 'RoundedCornerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Router.js b/packages/material-ui-icons/lib/esm/Router.js new file mode 100644 index 00000000000000..3361be60d2433e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Router.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.2 5.9.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1 .9 0 1.8.3 2.5 1l.8-.8zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" +}), 'Router'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RouterOutlined.js b/packages/material-ui-icons/lib/esm/RouterOutlined.js new file mode 100644 index 00000000000000..1ee4eb056e271b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RouterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z" +}), 'RouterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RouterRounded.js b/packages/material-ui-icons/lib/esm/RouterRounded.js new file mode 100644 index 00000000000000..314bea81b03f3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RouterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.45 5.55c.19.19.5.21.72.04C13.3 4.69 14.65 4.2 16 4.2s2.7.49 3.84 1.39c.21.17.52.15.72-.04l.04-.05c.22-.22.21-.59-.03-.8C19.24 3.57 17.62 3 16 3s-3.24.57-4.57 1.7c-.24.21-.26.57-.03.8l.05.05zm1.7.76c-.25.2-.26.58-.04.8l.04.04c.2.2.5.2.72.04.63-.48 1.38-.69 2.13-.69s1.5.21 2.13.68c.22.17.53.16.72-.04l.04-.04c.23-.23.21-.6-.04-.8-.83-.64-1.84-1-2.85-1s-2.02.36-2.85 1.01zM19 13h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" +}), 'RouterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RouterSharp.js b/packages/material-ui-icons/lib/esm/RouterSharp.js new file mode 100644 index 00000000000000..bd8ac7bf946d15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RouterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.2 5.9.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8zM21 13h-4V9h-2v4H3v8h18v-8zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" +}), 'RouterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RouterTwoTone.js b/packages/material-ui-icons/lib/esm/RouterTwoTone.js new file mode 100644 index 00000000000000..efb4e3c65dcc8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RouterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 15H5v4h14v-4h-4zm-7 3H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z" +}, "1")], 'RouterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rowing.js b/packages/material-ui-icons/lib/esm/Rowing.js new file mode 100644 index 00000000000000..a26ef8e6c138e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rowing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.35-.39.99-.73 1.65-.73h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" +}), 'Rowing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RowingOutlined.js b/packages/material-ui-icons/lib/esm/RowingOutlined.js new file mode 100644 index 00000000000000..b9f1f0565293e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RowingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" +}), 'RowingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RowingRounded.js b/packages/material-ui-icons/lib/esm/RowingRounded.js new file mode 100644 index 00000000000000..191a47c6d55a68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RowingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.75 18.25c-.41.41-.41 1.09 0 1.5.41.41 1.09.41 1.5 0L9 17h2l-2.5-2.5-3.75 3.75zM15 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm5.29 15.3-2-2.01c-.18-.18-.44-.29-.71-.29H16.5l-6.29-6.29c.79-.33 1.66-.87 2.29-1.39v2.27l3.58 3.58c.57-.55.92-1.32.92-2.16V8.26C17 7.02 15.98 6 14.74 6h-.02c-.34 0-.67.09-.96.23-.26.12-.5.29-.69.5l-1.4 1.55C10.61 9.45 8.66 10.35 7 10.32c-.6 0-1.08.48-1.08 1.08 0 .6.48 1.08 1.08 1.08.31 0 .61-.03.9-.07l7.11 7.09v1.08c0 .26.1.52.29.7l1.99 2.01c.39.39 1.02.39 1.42 0l1.58-1.58c.39-.38.39-1.02 0-1.41z" +}), 'RowingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RowingSharp.js b/packages/material-ui-icons/lib/esm/RowingSharp.js new file mode 100644 index 00000000000000..711b106a507120 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RowingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6 17 7.01 17 8.25V17l-.92-.83-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" +}), 'RowingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RowingTwoTone.js b/packages/material-ui-icons/lib/esm/RowingTwoTone.js new file mode 100644 index 00000000000000..4edb43c8063faf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RowingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 14.5 4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" +}), 'RowingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RssFeed.js b/packages/material-ui-icons/lib/esm/RssFeed.js new file mode 100644 index 00000000000000..bd6e02edf6593b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RssFeed.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.18", + cy: "17.82", + r: "2.18" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" +}, "1")], 'RssFeed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RssFeedOutlined.js b/packages/material-ui-icons/lib/esm/RssFeedOutlined.js new file mode 100644 index 00000000000000..c8f44dd12edb46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RssFeedOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.18", + cy: "17.82", + r: "2.18" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" +}, "1")], 'RssFeedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RssFeedRounded.js b/packages/material-ui-icons/lib/esm/RssFeedRounded.js new file mode 100644 index 00000000000000..03bd98266b8dbf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RssFeedRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.18", + cy: "17.82", + r: "2.18" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5.59 10.23c-.84-.14-1.59.55-1.59 1.4 0 .71.53 1.28 1.23 1.4 2.92.51 5.22 2.82 5.74 5.74.12.7.69 1.23 1.4 1.23.85 0 1.54-.75 1.41-1.59-.68-4.2-3.99-7.51-8.19-8.18zm-.03-5.71C4.73 4.43 4 5.1 4 5.93c0 .73.55 1.33 1.27 1.4 6.01.6 10.79 5.38 11.39 11.39.07.73.67 1.28 1.4 1.28.84 0 1.5-.73 1.42-1.56-.73-7.34-6.57-13.19-13.92-13.92z" +}, "1")], 'RssFeedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RssFeedSharp.js b/packages/material-ui-icons/lib/esm/RssFeedSharp.js new file mode 100644 index 00000000000000..2e048a4ec1a1da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RssFeedSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.18", + cy: "17.82", + r: "2.18" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 10.1v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9zm0-5.66v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56z" +}, "1")], 'RssFeedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RssFeedTwoTone.js b/packages/material-ui-icons/lib/esm/RssFeedTwoTone.js new file mode 100644 index 00000000000000..2a8f193e6e0a39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RssFeedTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.18", + cy: "17.82", + r: "2.18" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z" +}, "1")], 'RssFeedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rsvp.js b/packages/material-ui-icons/lib/esm/Rsvp.js new file mode 100644 index 00000000000000..7747bdc32b7bcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rsvp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.1 12.9 6 15H4.5l-.85-2H2.5v2H1V9h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v2H18V9h3.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7v-1.5h3v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h3.5z" +}), 'Rsvp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RsvpOutlined.js b/packages/material-ui-icons/lib/esm/RsvpOutlined.js new file mode 100644 index 00000000000000..5d5b5064cc7aba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RsvpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.1 12.9 6 15H4.5l-.85-2H2.5v2H1V9h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v2H18V9h3.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7v-1.5h3v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h3.5z" +}), 'RsvpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RsvpRounded.js b/packages/material-ui-icons/lib/esm/RsvpRounded.js new file mode 100644 index 00000000000000..e95aa566aa3b9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RsvpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.54 9c.48 0 .83.46.69.92l-1.27 4.36c-.12.43-.52.72-.96.72-.44 0-.84-.29-.96-.72l-1.27-4.36c-.14-.46.21-.92.69-.92.32 0 .6.21.69.52l.85 2.91.85-2.91c.09-.31.37-.52.69-.52zM5.1 12.9l.49 1.14c.19.45-.14.96-.63.96-.28 0-.53-.17-.63-.42L3.65 13H2.5v1.31c0 .38-.31.69-.69.69h-.12c-.38 0-.69-.31-.69-.69V10c0-.55.45-1 1-1h2.5c.83 0 1.5.67 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10c0-.55.45-1 1-1h2.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zm-10-.75c0 .41-.34.75-.75.75H8.5v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75z" +}), 'RsvpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RsvpSharp.js b/packages/material-ui-icons/lib/esm/RsvpSharp.js new file mode 100644 index 00000000000000..92317f4a267319 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RsvpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.14 13 6 15H4.5l-.85-2H2.5v2H1V9h5v4h-.86zm-.64-2.5h-2v1h2v-1zM23 13h-3.5v2H18V9h5v4zm-1.5-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h3V15H7v-1.5h3v-.75H7V9h4.5z" +}), 'RsvpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RsvpTwoTone.js b/packages/material-ui-icons/lib/esm/RsvpTwoTone.js new file mode 100644 index 00000000000000..dacfe410f40cd5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RsvpTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.1 12.9 6 15H4.5l-.85-2H2.5v2H1V9h3.5c.85 0 1.5.65 1.5 1.5v1c0 .6-.4 1.15-.9 1.4zm-.6-2.4h-2v1h2v-1zm17 2.5h-2v2H18V9h3.5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5zm0-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7v-1.5h3v-.75H7.75c-.41 0-.75-.34-.75-.75v-2c0-.55.45-1 1-1h3.5z" +}), 'RsvpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rtt.js b/packages/material-ui-icons/lib/esm/Rtt.js new file mode 100644 index 00000000000000..eaeb7098e7040c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rtt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" +}), 'Rtt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RttOutlined.js b/packages/material-ui-icons/lib/esm/RttOutlined.js new file mode 100644 index 00000000000000..5b51c715dec1dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RttOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" +}), 'RttOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RttRounded.js b/packages/material-ui-icons/lib/esm/RttRounded.js new file mode 100644 index 00000000000000..94cd0335ee2364 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RttRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.76 4.69-.61 3.89c-.12.78.48 1.49 1.28 1.49.64 0 1.18-.46 1.28-1.09l.53-3.41h2.58L11.8 18.43h-1.24c-.63 0-1.16.46-1.26 1.08v.01c-.13.78.47 1.48 1.26 1.48h4.67c.63 0 1.17-.46 1.26-1.08v-.01c.12-.78-.48-1.48-1.26-1.48h-.86l2-12.86h2.58l-.47 3.01c-.12.78.48 1.49 1.28 1.49h.03c.64 0 1.18-.46 1.28-1.09l.57-3.67C21.83 4.09 20.89 3 19.66 3h-8.92c-.98 0-1.82.72-1.98 1.69zM8 5H4.86c-.5 0-.92.36-.99.85-.1.6.37 1.15.99 1.15h2.83L8 5zm-.61 4H4.25c-.5 0-.92.36-.99.85-.1.6.37 1.15.99 1.15h2.83l.31-2zm.92 8H3.17c-.49 0-.91.36-.99.85-.1.6.37 1.15.99 1.15H8l.31-2zm.62-4H3.79c-.49 0-.91.36-.99.85-.1.6.37 1.15.99 1.15h4.84l.3-2z" +}), 'RttRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RttSharp.js b/packages/material-ui-icons/lib/esm/RttSharp.js new file mode 100644 index 00000000000000..11f14e4837c427 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RttSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" +}), 'RttSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RttTwoTone.js b/packages/material-ui-icons/lib/esm/RttTwoTone.js new file mode 100644 index 00000000000000..017e5517c1c277 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RttTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.03 3-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" +}), 'RttTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Rule.js b/packages/material-ui-icons/lib/esm/Rule.js new file mode 100644 index 00000000000000..aba0ffb8aaa378 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Rule.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" +}), 'Rule'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleFolder.js b/packages/material-ui-icons/lib/esm/RuleFolder.js new file mode 100644 index 00000000000000..ce401a3c6d0aba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleFolder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13z" +}), 'RuleFolder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleFolderOutlined.js b/packages/material-ui-icons/lib/esm/RuleFolderOutlined.js new file mode 100644 index 00000000000000..4ed48e682e8c8f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleFolderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13zM20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10z" +}), 'RuleFolderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleFolderRounded.js b/packages/material-ui-icons/lib/esm/RuleFolderRounded.js new file mode 100644 index 00000000000000..a9e5fe08d10d3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleFolderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM7.12 15.29l-1.41-1.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.83-2.83c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L8.53 15.3c-.39.38-1.02.38-1.41-.01zM17.41 13l.88.88c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-.88-.88-.88.88c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41l.88-.88-.88-.88a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.88.88.88-.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-.88.88z" +}), 'RuleFolderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleFolderSharp.js b/packages/material-ui-icons/lib/esm/RuleFolderSharp.js new file mode 100644 index 00000000000000..c58edc0816d8f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleFolderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6H12l-2-2H2v16h20V6zM7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13z" +}), 'RuleFolderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleFolderTwoTone.js b/packages/material-ui-icons/lib/esm/RuleFolderTwoTone.js new file mode 100644 index 00000000000000..3780708408039b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleFolderTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11.17 8-2-2H4v12h16V8h-8.83zm-3.34 8L5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zM19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13 19 14.59z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.83 16 5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13zM20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10z" +}, "1")], 'RuleFolderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleOutlined.js b/packages/material-ui-icons/lib/esm/RuleOutlined.js new file mode 100644 index 00000000000000..b304695d01088b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" +}), 'RuleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleRounded.js b/packages/material-ui-icons/lib/esm/RuleRounded.js new file mode 100644 index 00000000000000..f38dfb0de74a57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.83 10.29-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.24c-.39.4-1.02.4-1.41.01zM10 7H3c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm10.29 5.71a.9959.9959 0 0 0-1.41 0L17 14.59l-1.88-1.88a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L15.59 16l-1.88 1.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17 17.41l1.88 1.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L18.41 16l1.88-1.88c.39-.39.39-1.02 0-1.41zM10 15H3c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'RuleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleSharp.js b/packages/material-ui-icons/lib/esm/RuleSharp.js new file mode 100644 index 00000000000000..2d84b4c9e39193 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" +}), 'RuleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RuleTwoTone.js b/packages/material-ui-icons/lib/esm/RuleTwoTone.js new file mode 100644 index 00000000000000..169d2dbfdb1f0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RuleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.54 11 13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" +}), 'RuleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunCircle.js b/packages/material-ui-icons/lib/esm/RunCircle.js new file mode 100644 index 00000000000000..f47ba90c476223 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z" +}), 'RunCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunCircleOutlined.js b/packages/material-ui-icons/lib/esm/RunCircleOutlined.js new file mode 100644 index 00000000000000..f2727618c9e05b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunCircleOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.54 8.97c-.23-.47-.76-.71-1.26-.53L9 9.65V12h1v-1.65l1.54-.57-.96 4.89-2.78-.57-.2.98 3.76.77.52-2.64L13 14.42V18h1v-3.97l-1.32-1.44.41-2.35C13.99 11.46 15.3 12 16 12v-1c-.41 0-1.63-.33-2.46-2.03z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "13.5", + cy: "7", + r: "1" +}, "2")], 'RunCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunCircleRounded.js b/packages/material-ui-icons/lib/esm/RunCircleRounded.js new file mode 100644 index 00000000000000..0a0d16a53ff468 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm1.91 5.91c-.71-.2-1.63-.74-2.32-1.66l-.41 2.35 1.19 1.3c.08.08.13.2.13.32v3.28c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.08l-1.11-1.21-.43 2.15c-.05.27-.32.45-.59.39l-2.78-.57c-.27-.06-.45-.32-.39-.59.06-.27.32-.44.59-.39l2.29.47.96-4.89-1.54.57v1.15c0 .28-.22.5-.5.5s-.5-.22-.5-.5V10c0-.21.13-.4.33-.47l2.95-1.09c.49-.18 1.02.04 1.25.51.65 1.35 1.55 1.85 2.1 2 .22.05.37.23.37.45v.04c0 .31-.29.55-.59.47z" +}), 'RunCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunCircleSharp.js b/packages/material-ui-icons/lib/esm/RunCircleSharp.js new file mode 100644 index 00000000000000..790342f2b67af2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z" +}), 'RunCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunCircleTwoTone.js b/packages/material-ui-icons/lib/esm/RunCircleTwoTone.js new file mode 100644 index 00000000000000..7cd36b5b665a47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunCircleTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1.5 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13.54 8.97c-.23-.47-.76-.71-1.26-.53L9 9.65V12h1v-1.65l1.54-.57-.96 4.89-2.78-.57-.2.98 3.76.77.52-2.64L13 14.42V18h1v-3.97l-1.32-1.44.41-2.35C13.99 11.46 15.3 12 16 12v-1c-.41 0-1.63-.33-2.46-2.03z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "13.5", + cy: "7", + r: "1" +}, "3")], 'RunCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunningWithErrors.js b/packages/material-ui-icons/lib/esm/RunningWithErrors.js new file mode 100644 index 00000000000000..d0fad802b66d93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunningWithErrors.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" +}), 'RunningWithErrors'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunningWithErrorsOutlined.js b/packages/material-ui-icons/lib/esm/RunningWithErrorsOutlined.js new file mode 100644 index 00000000000000..8d97a748a437d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunningWithErrorsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" +}), 'RunningWithErrorsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunningWithErrorsRounded.js b/packages/material-ui-icons/lib/esm/RunningWithErrorsRounded.js new file mode 100644 index 00000000000000..756ac3a7969150 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunningWithErrorsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 18c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" +}), 'RunningWithErrorsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunningWithErrorsSharp.js b/packages/material-ui-icons/lib/esm/RunningWithErrorsSharp.js new file mode 100644 index 00000000000000..dc2cac4aa61697 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunningWithErrorsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" +}), 'RunningWithErrorsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RunningWithErrorsTwoTone.js b/packages/material-ui-icons/lib/esm/RunningWithErrorsTwoTone.js new file mode 100644 index 00000000000000..16171e712ed91b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RunningWithErrorsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71C16.53 18.95 14.39 20 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55C17.72 3.34 15.02 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" +}), 'RunningWithErrorsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RvHookup.js b/packages/material-ui-icons/lib/esm/RvHookup.js new file mode 100644 index 00000000000000..854723155d4b06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RvHookup.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3z" +}), 'RvHookup'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RvHookupOutlined.js b/packages/material-ui-icons/lib/esm/RvHookupOutlined.js new file mode 100644 index 00000000000000..86aede1499a0b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RvHookupOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" +}), 'RvHookupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RvHookupRounded.js b/packages/material-ui-icons/lib/esm/RvHookupRounded.js new file mode 100644 index 00000000000000..65fe1831c089e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RvHookupRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 17h-1v-6c0-1.1-.9-2-2-2H7v-.74c0-.46-.56-.7-.89-.37L4.37 9.63c-.2.2-.2.53 0 .74l1.74 1.74c.33.33.89.1.89-.37V11h4v3H5c-.55 0-1 .45-1 1v2c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h7c.55 0 1-.45 1-1s-.45-1-1-1zm-10 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h3c.55 0 1 .45 1 1v2zm-8-8h7v.74c0 .46.56.7.89.37l1.74-1.74c.2-.2.2-.53 0-.74l-1.74-1.74c-.33-.33-.89-.1-.89.37V4h-7c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'RvHookupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RvHookupSharp.js b/packages/material-ui-icons/lib/esm/RvHookupSharp.js new file mode 100644 index 00000000000000..2586ca43ce60e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RvHookupSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 17V9H7V7l-3 3 3 3v-2h4v3H4v5h4c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" +}), 'RvHookupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/RvHookupTwoTone.js b/packages/material-ui-icons/lib/esm/RvHookupTwoTone.js new file mode 100644 index 00000000000000..6663c2065aea90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/RvHookupTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" +}, "1")], 'RvHookupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SafetyDivider.js b/packages/material-ui-icons/lib/esm/SafetyDivider.js new file mode 100644 index 00000000000000..8abcb2217e9919 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SafetyDivider.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" +}), 'SafetyDivider'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SafetyDividerOutlined.js b/packages/material-ui-icons/lib/esm/SafetyDividerOutlined.js new file mode 100644 index 00000000000000..cfc7d8a85d1ba5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SafetyDividerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" +}), 'SafetyDividerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SafetyDividerRounded.js b/packages/material-ui-icons/lib/esm/SafetyDividerRounded.js new file mode 100644 index 00000000000000..67094e086c0694 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SafetyDividerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" +}), 'SafetyDividerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SafetyDividerSharp.js b/packages/material-ui-icons/lib/esm/SafetyDividerSharp.js new file mode 100644 index 00000000000000..91c00e35a8e657 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SafetyDividerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" +}), 'SafetyDividerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SafetyDividerTwoTone.js b/packages/material-ui-icons/lib/esm/SafetyDividerTwoTone.js new file mode 100644 index 00000000000000..50f5392704a08b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SafetyDividerTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C6.93 13.21 5.99 13 5 13s-1.93.21-2.78.58C1.48 13.9 1 14.62 1 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58c-.85-.37-1.79-.58-2.78-.58s-1.93.21-2.78.58c-.74.32-1.22 1.04-1.22 1.85V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" +}), 'SafetyDividerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sailing.js b/packages/material-ui-icons/lib/esm/Sailing.js new file mode 100644 index 00000000000000..02da9655ad51cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sailing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 13.5V2L3 13.5h8zm10 0C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm1 1.5H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" +}), 'Sailing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SailingOutlined.js b/packages/material-ui-icons/lib/esm/SailingOutlined.js new file mode 100644 index 00000000000000..1f19d0241cc074 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SailingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 13.5V2L3 13.5h8zm-2-2H6.83L9 8.38v3.12zm12 2C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm-5.62-8.26c1.42 1.52 2.88 3.72 3.41 6.26h-3.68c.21-1.1.39-2.46.39-4 0-.79-.05-1.55-.12-2.26zM22 15H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" +}), 'SailingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SailingRounded.js b/packages/material-ui-icons/lib/esm/SailingRounded.js new file mode 100644 index 00000000000000..2f301c54e143b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SailingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 13V3.59c0-.49-.63-.69-.91-.29l-6.54 9.41c-.23.33.01.79.41.79h6.54c.28 0 .5-.22.5-.5zm9.99-.02C20.72 7.07 15.9 2.32 13.4 1.23c-.37-.16-.77.2-.67.59.3 1.13.76 3.28.76 5.68 0 2.44-.49 4.39-.78 5.35-.1.32.14.65.48.65h7.28c.29 0 .53-.24.52-.52zM20.62 15H3.38c-.73 0-1.22.76-.92 1.42.43.92 1.07 1.71 1.86 2.31.38-.16.74-.38 1.06-.63.35-.29.87-.29 1.23 0 .67.53 1.49.9 2.39.9.9 0 1.72-.37 2.39-.91.35-.28.87-.28 1.22 0 .67.54 1.49.91 2.39.91.9 0 1.72-.37 2.39-.91.35-.29.87-.28 1.23 0 .32.26.67.48 1.06.63.79-.6 1.43-1.39 1.86-2.31.3-.65-.19-1.41-.92-1.41zM22 22c0-.55-.45-1-1-1-.87 0-1.73-.24-2.53-.7-.29-.16-.65-.17-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-1.59.9-3.47.9-5.06 0-.29-.16-.65-.16-.94 0-.8.46-1.66.7-2.53.7-.55 0-1 .45-1 1s.45 1 1 1c1.15 0 2.3-.31 3.33-.94 1.66 1.11 3.78 1.01 5.58.14 1.91 1.05 4.17 1.07 6.09.05.95.5 1.97.75 3 .75.55 0 1-.45 1-1z" +}), 'SailingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SailingSharp.js b/packages/material-ui-icons/lib/esm/SailingSharp.js new file mode 100644 index 00000000000000..668c3ddb1d52b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SailingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 13.5V2L3 13.5h8zm10 0C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm1 1.5H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" +}), 'SailingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SailingTwoTone.js b/packages/material-ui-icons/lib/esm/SailingTwoTone.js new file mode 100644 index 00000000000000..a721208cf94da5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SailingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 11.5H6.83L9 8.38v3.12zm6.38-6.26c1.42 1.52 2.88 3.72 3.41 6.26h-3.68c.21-1.1.39-2.46.39-4 0-.79-.05-1.55-.12-2.26z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 13.5V2L3 13.5h8zm-2-2H6.83L9 8.38v3.12zm12 2C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm-5.62-8.26c1.42 1.52 2.88 3.72 3.41 6.26h-3.68c.21-1.1.39-2.46.39-4 0-.79-.05-1.55-.12-2.26zM22 15H2c.31 1.53 1.16 2.84 2.33 3.73.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" +}, "1")], 'SailingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sanitizer.js b/packages/material-ui-icons/lib/esm/Sanitizer.js new file mode 100644 index 00000000000000..8e23fc213f639f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sanitizer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91z" +}), 'Sanitizer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SanitizerOutlined.js b/packages/material-ui-icons/lib/esm/SanitizerOutlined.js new file mode 100644 index 00000000000000..f002191a6a5470 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SanitizerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91zm-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4v8h8v-8z" +}), 'SanitizerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SanitizerRounded.js b/packages/material-ui-icons/lib/esm/SanitizerRounded.js new file mode 100644 index 00000000000000..c618fd5c82fa6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SanitizerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 6.5c0-.56.67-1.49 1.11-2.04.2-.25.58-.25.77 0 .44.55 1.11 1.48 1.11 2.04.01.83-.66 1.5-1.49 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.25-1.41-3.16-2.11-4.04a.489.489 0 0 0-.77 0c-.71.88-2.12 2.79-2.12 4.04 0 1.38 1.12 2.5 2.5 2.5zM12 14h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1H8c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zm4-2v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H8c-.55 0-1-.45-1-1s.45-1 1-1h5c.61 0 1.19.11 1.72.31.67.25.83 1.13.33 1.64-.28.28-.69.36-1.05.23-.32-.12-.65-.18-1-.18h-2v2.09c2.84.48 5 2.94 5 5.91z" +}), 'SanitizerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SanitizerSharp.js b/packages/material-ui-icons/lib/esm/SanitizerSharp.js new file mode 100644 index 00000000000000..2bdf2611c59295 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SanitizerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91z" +}), 'SanitizerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SanitizerTwoTone.js b/packages/material-ui-icons/lib/esm/SanitizerTwoTone.js new file mode 100644 index 00000000000000..d0e752f6413b79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SanitizerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 8c-2.21 0-4 1.79-4 4v8h8v-8c0-2.21-1.79-4-4-4zm3 8h-2v2H9v-2H7v-2h2v-2h2v2h2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5c1.38 0 2.5-1.12 2.5-2.5 0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5c0 1.38 1.12 2.5 2.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v8c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-8c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91zm-2 0c0-2.21-1.79-4-4-4s-4 1.79-4 4v8h8v-8z" +}, "1")], 'SanitizerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Satellite.js b/packages/material-ui-icons/lib/esm/Satellite.js new file mode 100644 index 00000000000000..d1e3e95081353b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Satellite.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6 3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z" +}), 'Satellite'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SatelliteOutlined.js b/packages/material-ui-icons/lib/esm/SatelliteOutlined.js new file mode 100644 index 00000000000000..8404c7b22b1315 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SatelliteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.71c0 2.36-1.92 4.29-4.29 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86-3 3.87L9 13.15 6 17h12z" +}), 'SatelliteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SatelliteRounded.js b/packages/material-ui-icons/lib/esm/SatelliteRounded.js new file mode 100644 index 00000000000000..b28db0e8592ed0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SatelliteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h3c0 1.66-1.34 3-3 3V5zm0 5.91c0-.49.36-.9.85-.98 2.08-.36 3.72-2 4.08-4.08.08-.49.49-.85.98-.85.61 0 1.09.53 1 1.13-.48 2.96-2.81 5.3-5.77 5.78-.6.1-1.14-.39-1.14-1zm.63 6.28 2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z" +}), 'SatelliteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SatelliteSharp.js b/packages/material-ui-icons/lib/esm/SatelliteSharp.js new file mode 100644 index 00000000000000..b764829d4371b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SatelliteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6 3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z" +}), 'SatelliteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SatelliteTwoTone.js b/packages/material-ui-icons/lib/esm/SatelliteTwoTone.js new file mode 100644 index 00000000000000..f24baf550e5a9e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SatelliteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zM6 6h2.57c0 1.42-1.15 2.58-2.57 2.58V6zm0 4.29c2.37 0 4.28-1.93 4.28-4.29H12c0 3.31-2.68 6-6 6v-1.71zm3 2.86 2.14 2.58 3-3.86L18 17H6l3-3.85z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.72c0 2.36-1.91 4.29-4.28 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86-3 3.87L9 13.15 6 17h12z" +}, "1")], 'SatelliteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Save.js b/packages/material-ui-icons/lib/esm/Save.js new file mode 100644 index 00000000000000..48b36626925470 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Save.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z" +}), 'Save'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveAlt.js b/packages/material-ui-icons/lib/esm/SaveAlt.js new file mode 100644 index 00000000000000..054fe4bea748ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z" +}), 'SaveAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveAltOutlined.js b/packages/material-ui-icons/lib/esm/SaveAltOutlined.js new file mode 100644 index 00000000000000..6e405ca7809981 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" +}), 'SaveAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveAltRounded.js b/packages/material-ui-icons/lib/esm/SaveAltRounded.js new file mode 100644 index 00000000000000..1ad5f22f4d3dba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13v5c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1zm-6-.33 1.88-1.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-3.59 3.59c-.39.39-1.02.39-1.41 0L7.7 12.2a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L11 12.67V4c0-.55.45-1 1-1s1 .45 1 1v8.67z" +}), 'SaveAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveAltSharp.js b/packages/material-ui-icons/lib/esm/SaveAltSharp.js new file mode 100644 index 00000000000000..adb58d246c5fac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12v7H5v-7H3v9h18v-9h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" +}), 'SaveAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveAltTwoTone.js b/packages/material-ui-icons/lib/esm/SaveAltTwoTone.js new file mode 100644 index 00000000000000..6a2abd331d95bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67 2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" +}), 'SaveAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveOutlined.js b/packages/material-ui-icons/lib/esm/SaveOutlined.js new file mode 100644 index 00000000000000..bb38bca55edfad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z" +}), 'SaveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveRounded.js b/packages/material-ui-icons/lib/esm/SaveRounded.js new file mode 100644 index 00000000000000..df8a8205d2e12f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.59 3.59c-.38-.38-.89-.59-1.42-.59H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7.83c0-.53-.21-1.04-.59-1.41l-2.82-2.83zM12 19c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm1-10H7c-1.1 0-2-.9-2-2s.9-2 2-2h6c1.1 0 2 .9 2 2s-.9 2-2 2z" +}), 'SaveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveSharp.js b/packages/material-ui-icons/lib/esm/SaveSharp.js new file mode 100644 index 00000000000000..050eebef043061 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H3v18h18V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z" +}), 'SaveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SaveTwoTone.js b/packages/material-ui-icons/lib/esm/SaveTwoTone.js new file mode 100644 index 00000000000000..7a0c814ee30f35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SaveTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h14V7.83L16.17 5H5zm7 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-8H6V6h9v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z" +}, "1")], 'SaveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavedSearch.js b/packages/material-ui-icons/lib/esm/SavedSearch.js new file mode 100644 index 00000000000000..aadaf4a0bf3d9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavedSearch.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2.17-1.5 2.14-1.53 2.14 1.53-.83-2.46 2.15-1.5h-2.62L9.47 6l-.84 2.54H6l2.14 1.49z" +}), 'SavedSearch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavedSearchOutlined.js b/packages/material-ui-icons/lib/esm/SavedSearchOutlined.js new file mode 100644 index 00000000000000..1cfbfe8ba25852 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavedSearchOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.73 13.31C15.52 12.24 16 10.93 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.29 8.44 9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z" +}, "1")], 'SavedSearchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavedSearchRounded.js b/packages/material-ui-icons/lib/esm/SavedSearchRounded.js new file mode 100644 index 00000000000000..ba3d061b7e56cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavedSearchRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.73 13.31c1.13-1.55 1.63-3.58.98-5.74-.68-2.23-2.57-3.98-4.85-4.44-4.65-.93-8.66 3.09-7.72 7.73.46 2.29 2.21 4.18 4.44 4.85 2.16.65 4.19.15 5.74-.98l5.56 5.56c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-5.56-5.57zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.29 8.44 9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z" +}, "1")], 'SavedSearchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavedSearchSharp.js b/packages/material-ui-icons/lib/esm/SavedSearchSharp.js new file mode 100644 index 00000000000000..ef0212a20be84f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavedSearchSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.73 13.31C15.52 12.24 16 10.93 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.29 8.44 9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z" +}, "1")], 'SavedSearchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavedSearchTwoTone.js b/packages/material-ui-icons/lib/esm/SavedSearchTwoTone.js new file mode 100644 index 00000000000000..53645dfb067b36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavedSearchTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.73 13.31C15.52 12.24 16 10.93 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m9.5 6-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59h-2.46z" +}, "1")], 'SavedSearchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Savings.js b/packages/material-ui-icons/lib/esm/Savings.js new file mode 100644 index 00000000000000..91c79a56320c7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Savings.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15.08-.18.12-.37.12-.58 0-.83-.67-1.5-1.5-1.5-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5h-2.17zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'Savings'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavingsOutlined.js b/packages/material-ui-icons/lib/esm/SavingsOutlined.js new file mode 100644 index 00000000000000..634d6a9c428dc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavingsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 10c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zM8 9h5V7H8v2zm14-1.5v6.97l-2.82.94L17.5 21H12v-2h-2v2H4.5S2 12.54 2 9.5 4.46 4 7.5 4h5c.91-1.21 2.36-2 4-2 .83 0 1.5.67 1.5 1.5 0 .21-.04.4-.12.58-.14.34-.26.73-.32 1.15l2.27 2.27H22zm-2 2h-1L15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2.01 9.5H8v-2h6v2h2.01l1.55-5.15 2.44-.82V9.5z" +}), 'SavingsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavingsRounded.js b/packages/material-ui-icons/lib/esm/SavingsRounded.js new file mode 100644 index 00000000000000..0f906b5ac29bb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavingsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15.11-.26.15-.56.09-.87-.13-.72-.83-1.22-1.57-1.21-1.59.03-3 .81-3.9 2h-5C4.46 4 2 6.46 2 9.5c0 2.25 1.37 7.48 2.08 10.04.24.86 1.03 1.46 1.93 1.46H8c1.1 0 2-.9 2-2h2c0 1.1.9 2 2 2h2.01c.88 0 1.66-.58 1.92-1.43l1.25-4.16 2.14-.72c.41-.14.68-.52.68-.95V8.5c0-.55-.45-1-1-1h-1.17zM12 9H9c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm4 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'SavingsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavingsSharp.js b/packages/material-ui-icons/lib/esm/SavingsSharp.js new file mode 100644 index 00000000000000..ae0feaa3e2ba36 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavingsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.83 7.5-2.27-2.27c.07-.42.18-.81.32-1.15.23-.56.56-1.06.97-1.5-.7-.37-1.5-.58-2.35-.58-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5h-2.17zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'SavingsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SavingsTwoTone.js b/packages/material-ui-icons/lib/esm/SavingsTwoTone.js new file mode 100644 index 00000000000000..77f7b1508de2e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SavingsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 9.5 15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2.01 9.5H8v-2h6v2h2.01l1.55-5.15 2.44-.82V9.5h-1zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 10c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zM8 9h5V7H8v2zm14-1.5v6.97l-2.82.94L17.5 21H12v-2h-2v2H4.5S2 12.54 2 9.5 4.46 4 7.5 4h5c.91-1.21 2.36-2 4-2 .83 0 1.5.67 1.5 1.5 0 .21-.04.4-.12.58-.14.34-.26.73-.32 1.15l2.27 2.27H22zm-2 2h-1L15.5 6c0-.65.09-1.29.26-1.91-.97.25-1.76.97-2.09 1.91H7.5C5.57 6 4 7.57 4 9.5c0 1.88 1.22 6.65 2.01 9.5H8v-2h6v2h2.01l1.55-5.15 2.44-.82V9.5z" +}, "1")], 'SavingsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Scanner.js b/packages/material-ui-icons/lib/esm/Scanner.js new file mode 100644 index 00000000000000..3c4205e04d0c4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Scanner.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.8 10.7 4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm12 0H9v-2h10v2z" +}), 'Scanner'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScannerOutlined.js b/packages/material-ui-icons/lib/esm/ScannerOutlined.js new file mode 100644 index 00000000000000..a1822d341b4c85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScannerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.8 10.7 4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z" +}), 'ScannerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScannerRounded.js b/packages/material-ui-icons/lib/esm/ScannerRounded.js new file mode 100644 index 00000000000000..3f5a2cdb4b4b29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScannerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.8 10.7 5.15 5.35c-.52-.19-1.1.08-1.3.6-.19.53.08 1.11.6 1.3L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm11 0h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'ScannerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScannerSharp.js b/packages/material-ui-icons/lib/esm/ScannerSharp.js new file mode 100644 index 00000000000000..2b68834b114a5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScannerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4.2 5-.7 1.9L17.6 12H3v8h18v-8.86L4.2 5zM7 17H5v-2h2v2zm12 0H9v-2h10v2z" +}), 'ScannerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScannerTwoTone.js b/packages/material-ui-icons/lib/esm/ScannerTwoTone.js new file mode 100644 index 00000000000000..0e9b4b5a83c58c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScannerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 14v4h14v-4H5zm3 3H6v-2h2v2zm10 0h-8v-2h8v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.8 10.7 4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z" +}, "1")], 'ScannerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScatterPlot.js b/packages/material-ui-icons/lib/esm/ScatterPlot.js new file mode 100644 index 00000000000000..38d1763504c0e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScatterPlot.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "14", + r: "3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "6", + r: "3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.6", + cy: "17.6", + r: "3" +}, "2")], 'ScatterPlot'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScatterPlotOutlined.js b/packages/material-ui-icons/lib/esm/ScatterPlotOutlined.js new file mode 100644 index 00000000000000..e0af01358d821c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScatterPlotOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-2c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5.6 17.6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'ScatterPlotOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScatterPlotRounded.js b/packages/material-ui-icons/lib/esm/ScatterPlotRounded.js new file mode 100644 index 00000000000000..5f494a5bd44e04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScatterPlotRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "14", + r: "3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "6", + r: "3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.6", + cy: "17.6", + r: "3" +}, "2")], 'ScatterPlotRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScatterPlotSharp.js b/packages/material-ui-icons/lib/esm/ScatterPlotSharp.js new file mode 100644 index 00000000000000..d87e14e4631924 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScatterPlotSharp.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "14", + r: "3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "6", + r: "3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.6", + cy: "17.6", + r: "3" +}, "2")], 'ScatterPlotSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScatterPlotTwoTone.js b/packages/material-ui-icons/lib/esm/ScatterPlotTwoTone.js new file mode 100644 index 00000000000000..1e1efeb518e112 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScatterPlotTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "6", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16.6", + cy: "17.6", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7", + cy: "14", + r: "2", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M7 10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm8-10c0-2.21-1.79-4-4-4S7 3.79 7 6s1.79 4 4 4 4-1.79 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.6 5.6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "3")], 'ScatterPlotTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Schedule.js b/packages/material-ui-icons/lib/esm/Schedule.js new file mode 100644 index 00000000000000..1509798817b0a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Schedule.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}, "1")], 'Schedule'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleOutlined.js b/packages/material-ui-icons/lib/esm/ScheduleOutlined.js new file mode 100644 index 00000000000000..bc4af2142574a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}), 'ScheduleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleRounded.js b/packages/material-ui-icons/lib/esm/ScheduleRounded.js new file mode 100644 index 00000000000000..00baed7cbd58ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z" +}), 'ScheduleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleSend.js b/packages/material-ui-icons/lib/esm/ScheduleSend.js new file mode 100644 index 00000000000000..1cd3109eacff6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleSend.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 12.5H15v4l3 2 .75-1.23-2.25-1.52V12.5zM16 9 2 3v7l9 2-9 2v7l7.27-3.11C10.09 20.83 12.79 23 16 23c3.86 0 7-3.14 7-7s-3.14-7-7-7zm0 12c-2.75 0-4.98-2.22-5-4.97v-.07c.02-2.74 2.25-4.97 5-4.97 2.76 0 5 2.24 5 5S18.76 21 16 21z" +}), 'ScheduleSend'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleSendOutlined.js b/packages/material-ui-icons/lib/esm/ScheduleSendOutlined.js new file mode 100644 index 00000000000000..6f048ff01a5c9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleSendOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 12-6-1.5V7.01l8.87 3.74c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" +}, "1")], 'ScheduleSendOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleSendRounded.js b/packages/material-ui-icons/lib/esm/ScheduleSendRounded.js new file mode 100644 index 00000000000000..5c130243be9efc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleSendRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 10c.1 0 .19.01.28.01L4.39 4.58C3.73 4.31 3 4.79 3 5.51v3.71c0 .46.31.86.76.97L11 12l-7.24 1.81c-.45.11-.76.51-.76.97v3.71c0 .72.73 1.2 1.39.92L10 17.05V17c0-3.86 3.14-7 7-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.29 7-1.65-1.65c-.09-.09-.15-.22-.15-.35v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v2.29l1.5 1.5c.2.2.2.51 0 .71-.19.2-.5.2-.7 0z" +}, "1")], 'ScheduleSendRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleSendSharp.js b/packages/material-ui-icons/lib/esm/ScheduleSendSharp.js new file mode 100644 index 00000000000000..737421d2934efb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleSendSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.86 3.14-7 7-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z" +}, "1")], 'ScheduleSendSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleSendTwoTone.js b/packages/material-ui-icons/lib/esm/ScheduleSendTwoTone.js new file mode 100644 index 00000000000000..fd9fe82614e8b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleSendTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5 10.5 6 1.5-6 1.5v3.49l5.39-2.27c.6-1.73 1.86-3.16 3.48-3.97L5 7.01v3.49z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 12-6-1.5V7.01l8.87 3.74c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z" +}, "2")], 'ScheduleSendTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleSharp.js b/packages/material-ui-icons/lib/esm/ScheduleSharp.js new file mode 100644 index 00000000000000..1a66465adf2e57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}), 'ScheduleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScheduleTwoTone.js b/packages/material-ui-icons/lib/esm/ScheduleTwoTone.js new file mode 100644 index 00000000000000..36eb1a24184a91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScheduleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" +}, "1")], 'ScheduleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Schema.js b/packages/material-ui-icons/lib/esm/Schema.js new file mode 100644 index 00000000000000..e1e14b847b19a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Schema.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7z" +}), 'Schema'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchemaOutlined.js b/packages/material-ui-icons/lib/esm/SchemaOutlined.js new file mode 100644 index 00000000000000..5e06cf5c850419 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchemaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7zM6 3h3v2H6V3zm3 18H6v-2h3v2zm0-8H6v-2h3v2zm10 0h-3v-2h3v2z" +}), 'SchemaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchemaRounded.js b/packages/material-ui-icons/lib/esm/SchemaRounded.js new file mode 100644 index 00000000000000..f8c8780e642e5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchemaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 10.5v.5h-3v-.5c0-.83-.67-1.5-1.5-1.5h-1V7h1c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-4C4.67 1 4 1.67 4 2.5v3C4 6.33 4.67 7 5.5 7h1v2h-1C4.67 9 4 9.67 4 10.5v3c0 .83.67 1.5 1.5 1.5h1v2h-1c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h4c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-1v-2h1c.83 0 1.5-.67 1.5-1.5V13h3v.5c0 .83.67 1.5 1.5 1.5h4c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5z" +}), 'SchemaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchemaSharp.js b/packages/material-ui-icons/lib/esm/SchemaSharp.js new file mode 100644 index 00000000000000..ab48eb4052cf4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchemaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7z" +}), 'SchemaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchemaTwoTone.js b/packages/material-ui-icons/lib/esm/SchemaTwoTone.js new file mode 100644 index 00000000000000..70e4211eec05b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchemaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 3h3v2H6V3zm3 18H6v-2h3v2zm0-8H6v-2h3v2zm10 0h-3v-2h3v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7zM6 3h3v2H6V3zm3 18H6v-2h3v2zm0-8H6v-2h3v2zm10 0h-3v-2h3v2z" +}, "1")], 'SchemaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/School.js b/packages/material-ui-icons/lib/esm/School.js new file mode 100644 index 00000000000000..0061940b9f954a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/School.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3 1 9l11 6 9-4.91V17h2V9L12 3z" +}), 'School'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchoolOutlined.js b/packages/material-ui-icons/lib/esm/SchoolOutlined.js new file mode 100644 index 00000000000000..fcd409a292b54e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchoolOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z" +}), 'SchoolOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchoolRounded.js b/packages/material-ui-icons/lib/esm/SchoolRounded.js new file mode 100644 index 00000000000000..81b163f33170b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchoolRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13.18v2.81c0 .73.4 1.41 1.04 1.76l5 2.73c.6.33 1.32.33 1.92 0l5-2.73c.64-.35 1.04-1.03 1.04-1.76v-2.81l-6.04 3.3c-.6.33-1.32.33-1.92 0L5 13.18zm6.04-9.66-8.43 4.6c-.69.38-.69 1.38 0 1.76l8.43 4.6c.6.33 1.32.33 1.92 0L21 10.09V16c0 .55.45 1 1 1s1-.45 1-1V9.59c0-.37-.2-.7-.52-.88l-9.52-5.19a2.04 2.04 0 0 0-1.92 0z" +}), 'SchoolRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchoolSharp.js b/packages/material-ui-icons/lib/esm/SchoolSharp.js new file mode 100644 index 00000000000000..ce4c5f1f57dca2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchoolSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3 1 9l11 6 9-4.91V17h2V9L12 3z" +}), 'SchoolSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SchoolTwoTone.js b/packages/material-ui-icons/lib/esm/SchoolTwoTone.js new file mode 100644 index 00000000000000..d40ca6b89f3257 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SchoolTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 12.27v3.72l5 2.73 5-2.73v-3.72L12 15zM5.18 9 12 12.72 18.82 9 12 5.28z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3 1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm5 12.99-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72zm-5-3.27L5.18 9 12 5.28 18.82 9 12 12.72z" +}, "1")], 'SchoolTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Science.js b/packages/material-ui-icons/lib/esm/Science.js new file mode 100644 index 00000000000000..3c3d37cbd95455 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Science.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.8 18.4 14 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H9.04c-.42 0-.65.48-.39.81L10 6.5v4.17L4.2 18.4c-.49.66-.02 1.6.8 1.6h14c.82 0 1.29-.94.8-1.6z" +}), 'Science'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScienceOutlined.js b/packages/material-ui-icons/lib/esm/ScienceOutlined.js new file mode 100644 index 00000000000000..817d2dd82e2e52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScienceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 11.33 18 18H6l5-6.67V6h2m2.96-2H8.04c-.42 0-.65.48-.39.81L9 6.5v4.17L3.2 18.4c-.49.66-.02 1.6.8 1.6h16c.82 0 1.29-.94.8-1.6L15 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81z" +}), 'ScienceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScienceRounded.js b/packages/material-ui-icons/lib/esm/ScienceRounded.js new file mode 100644 index 00000000000000..4fc87bfa927d46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScienceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.54 17.73 15 11V5h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1h1v6l-5.54 6.73c-.32.39-.46.83-.46 1.27.01 1.03.82 2 2 2h14c1.19 0 2-.97 2-2 0-.44-.14-.88-.46-1.27z" +}), 'ScienceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScienceSharp.js b/packages/material-ui-icons/lib/esm/ScienceSharp.js new file mode 100644 index 00000000000000..61deb535e01def --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScienceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.8 18.4 14 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H9.04c-.42 0-.65.48-.39.81L10 6.5v4.17L4.2 18.4c-.49.66-.02 1.6.8 1.6h14c.82 0 1.29-.94.8-1.6z" +}), 'ScienceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScienceTwoTone.js b/packages/material-ui-icons/lib/esm/ScienceTwoTone.js new file mode 100644 index 00000000000000..7c0ea0981a14f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScienceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 6h-2v5.33L6 18h12l-5-6.67z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.8 18.4 15 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H8.04c-.42 0-.65.48-.39.81L9 6.5v4.17L3.2 18.4c-.49.66-.02 1.6.8 1.6h16c.82 0 1.29-.94.8-1.6zM6 18l5-6.67V6h2v5.33L18 18H6z" +}, "1")], 'ScienceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Score.js b/packages/material-ui-icons/lib/esm/Score.js new file mode 100644 index 00000000000000..02d88aff2809a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Score.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z" +}), 'Score'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScoreOutlined.js b/packages/material-ui-icons/lib/esm/ScoreOutlined.js new file mode 100644 index 00000000000000..248327fa29d701 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z" +}), 'ScoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScoreRounded.js b/packages/material-ui-icons/lib/esm/ScoreRounded.js new file mode 100644 index 00000000000000..67d9c96f1443be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2.75c0-.41.34-.75.75-.75s.75.34.75.75V8l1.79-2.69c.13-.19.35-.31.59-.31.56 0 .9.63.59 1.1L15.2 8l1.27 1.9c.31.47-.02 1.1-.59 1.1-.24 0-.46-.12-.59-.31L13.5 8v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5zm-5 2.5c0-.55.45-1 1-1h1.5V6.5H7.75c-.41 0-.75-.34-.75-.75S7.34 5 7.75 5H10c.55 0 1 .45 1 1v1.75c0 .55-.45 1-1 1H8.5v.75h1.75c.41 0 .75.34.75.75s-.34.75-.75.75H8c-.55 0-1-.45-1-1V8.25zm11.74 5.01-5.03 5.03c-.39.39-1.02.39-1.41 0L9 15l-2.49 2.49c-.56.56-1.51.16-1.51-.62 0-.23.09-.46.26-.62l3.03-3.03c.39-.39 1.02-.39 1.41 0L13 16.5l4.49-4.49c.56-.56 1.51-.16 1.51.62 0 .24-.09.46-.26.63z" +}), 'ScoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScoreSharp.js b/packages/material-ui-icons/lib/esm/ScoreSharp.js new file mode 100644 index 00000000000000..14a436fdb661b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-9 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z" +}), 'ScoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScoreTwoTone.js b/packages/material-ui-icons/lib/esm/ScoreTwoTone.js new file mode 100644 index 00000000000000..8e08eb6055a30f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScoreTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h8l-4-4zm0-2.5 4-4 4 4 6-6V5H5v11.5zM12 6h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V6zM7 8.25h2.5V7.5H7V6h4v3.75H8.5v.75H11V12H7V8.25zM19 19v-6l-6 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z" +}, "1")], 'ScoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockLandscape.js b/packages/material-ui-icons/lib/esm/ScreenLockLandscape.js new file mode 100644 index 00000000000000..31db1a9b1ec97f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockLandscape.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1z" +}), 'ScreenLockLandscape'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockLandscapeOutlined.js b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeOutlined.js new file mode 100644 index 00000000000000..03a818b89f3c47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z" +}), 'ScreenLockLandscapeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockLandscapeRounded.js b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeRounded.js new file mode 100644 index 00000000000000..a53e23bafc0928 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 12H6V7h12v10zm-4-6v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}), 'ScreenLockLandscapeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockLandscapeSharp.js b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeSharp.js new file mode 100644 index 00000000000000..6f1ca8e36660fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 5H1v14h22V5zm-4 12H5V7h14v10zM9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z" +}), 'ScreenLockLandscapeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockLandscapeTwoTone.js b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeTwoTone.js new file mode 100644 index 00000000000000..220d5b4675323b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockLandscapeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM5 17h14V7H5v10zm4-5c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" +}, "1")], 'ScreenLockLandscapeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockPortrait.js b/packages/material-ui-icons/lib/esm/ScreenLockPortrait.js new file mode 100644 index 00000000000000..91b0543a715979 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockPortrait.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" +}), 'ScreenLockPortrait'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockPortraitOutlined.js b/packages/material-ui-icons/lib/esm/ScreenLockPortraitOutlined.js new file mode 100644 index 00000000000000..15a1ce456ad3cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockPortraitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" +}), 'ScreenLockPortraitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockPortraitRounded.js b/packages/material-ui-icons/lib/esm/ScreenLockPortraitRounded.js new file mode 100644 index 00000000000000..2d6f270ecb985f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockPortraitRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 1.99 2 1.99L17 23c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 11v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'ScreenLockPortraitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockPortraitSharp.js b/packages/material-ui-icons/lib/esm/ScreenLockPortraitSharp.js new file mode 100644 index 00000000000000..d87ebbc89716b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockPortraitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM19 1H5v22h14V1zm-2 18H7V5h10v14z" +}), 'ScreenLockPortraitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockPortraitTwoTone.js b/packages/material-ui-icons/lib/esm/ScreenLockPortraitTwoTone.js new file mode 100644 index 00000000000000..1943733095753f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockPortraitTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM7 19h10V5H7v14zm2-7c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z" +}, "1")], 'ScreenLockPortraitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockRotation.js b/packages/material-ui-icons/lib/esm/ScreenLockRotation.js new file mode 100644 index 00000000000000..2b06968aa44604 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockRotation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23.25 12.77-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L4.51 8.17l5.66-5.66 2.1 2.1 1.41-1.41L11.23.75c-.59-.59-1.54-.59-2.12 0L2.75 7.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM8.47 20.48C5.2 18.94 2.86 15.76 2.5 12H1c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.82-1.33 1.33zM16 9h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1v-.5C21 1.12 19.88 0 18.5 0S16 1.12 16 2.5V3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V3h-3.4v-.5z" +}), 'ScreenLockRotation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockRotationOutlined.js b/packages/material-ui-icons/lib/esm/ScreenLockRotationOutlined.js new file mode 100644 index 00000000000000..3620a2c3f5c50e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockRotationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.3 13.77-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z" +}), 'ScreenLockRotationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockRotationRounded.js b/packages/material-ui-icons/lib/esm/ScreenLockRotationRounded.js new file mode 100644 index 00000000000000..d933b0df6e5836 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockRotationRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m20.41 11.36-.35-.35a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.35.35-4.24 4.24-7.78-7.78 4.24-4.24.35.35c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.35-.36c-.79-.79-2.03-.79-2.82 0L5.57 7.82c-.78.78-.78 2.05 0 2.83l7.78 7.78c.79.79 2.03.79 2.82 0l4.24-4.24c.79-.78.79-2.05 0-2.83zm-9.56 6.49c-.31-.31-.85-.09-.85.36v1.53c-3.17-.82-5.59-3.54-5.95-6.86-.06-.51-.49-.88-.99-.88-.6 0-1.07.53-1 1.12C2.62 18.11 6.87 22 12 22c.59 0 1.17-.06 1.73-.16.4-.07.55-.56.27-.85l-3.15-3.14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 9h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.89c0-1-.68-1.92-1.66-2.08C17.08.82 16 1.79 16 3v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm1-6c0-.55.45-1 1-1s1 .45 1 1v1h-2V3z" +}, "1")], 'ScreenLockRotationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockRotationSharp.js b/packages/material-ui-icons/lib/esm/ScreenLockRotationSharp.js new file mode 100644 index 00000000000000..a1c0277056e160 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockRotationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM20.05 4v-.36c0-1.31-.94-2.5-2.24-2.63-1.5-.15-2.76 1.02-2.76 2.49V4h-1v6h7V4h-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm.48 7.2-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41L9.22.69.74 9.17l14.14 14.14 8.48-8.48z" +}), 'ScreenLockRotationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenLockRotationTwoTone.js b/packages/material-ui-icons/lib/esm/ScreenLockRotationTwoTone.js new file mode 100644 index 00000000000000..147217a0fa56c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenLockRotationTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22.3 13.77-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z" +}), 'ScreenLockRotationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenRotation.js b/packages/material-ui-icons/lib/esm/ScreenRotation.js new file mode 100644 index 00000000000000..5df0a438f220e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenRotation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" +}), 'ScreenRotation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenRotationOutlined.js b/packages/material-ui-icons/lib/esm/ScreenRotationOutlined.js new file mode 100644 index 00000000000000..71a26f94dd9e2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenRotationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" +}), 'ScreenRotationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenRotationRounded.js b/packages/material-ui-icons/lib/esm/ScreenRotationRounded.js new file mode 100644 index 00000000000000..f88010a1b32828 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenRotationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.23 1.75c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm3.89 18.73L3.52 9.88a.9959.9959 0 0 1 0-1.41l4.95-4.95c.39-.39 1.02-.39 1.41 0l10.61 10.61c.39.39.39 1.02 0 1.41l-4.95 4.95c-.39.38-1.03.38-1.42-.01zM17.61 1.4C16.04.57 14.06-.03 11.81.02c-.18 0-.26.22-.14.35l3.48 3.48 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.8-2.96-7-6.24-8.74zM8.85 20.16l-1.33 1.33c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.57.83 3.55 1.43 5.8 1.38.18 0 .26-.22.14-.35l-3.48-3.49z" +}), 'ScreenRotationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenRotationSharp.js b/packages/material-ui-icons/lib/esm/ScreenRotationSharp.js new file mode 100644 index 00000000000000..89b9dd568971b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenRotationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zM9.17.69.69 9.17l14.14 14.14 8.48-8.48L9.17.69zm5.66 20.5L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36z" +}), 'ScreenRotationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenRotationTwoTone.js b/packages/material-ui-icons/lib/esm/ScreenRotationTwoTone.js new file mode 100644 index 00000000000000..a479afc5914b33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenRotationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.828 21.192 2.808 9.172l6.357-6.357 12.02 12.02z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z" +}, "1")], 'ScreenRotationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenSearchDesktop.js b/packages/material-ui-icons/lib/esm/ScreenSearchDesktop.js new file mode 100644 index 00000000000000..5f20bbab184f91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenSearchDesktop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm5.0967-6.0469c0-1.027.836-1.864 1.864-1.864 1.027 0 1.864.837 1.864 1.864 0 1.027-.837 1.864-1.864 1.864-1.028 0-1.864-.837-1.864-1.864zm7.032 4.236-2.482-2.482c.331-.505.527-1.107.527-1.754 0-1.772-1.441-3.213-3.213-3.213s-3.214 1.441-3.214 3.213 1.442 3.214 3.214 3.214c.636 0 1.225-.192 1.724-.511l2.489 2.488.955-.955z" +}), 'ScreenSearchDesktop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenSearchDesktopOutlined.js b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopOutlined.js new file mode 100644 index 00000000000000..df880101b4dc4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2zM4 5h16v11H4V5zM1 19h22v2H1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.97 7.53c-1.37-1.37-3.58-1.37-4.95 0s-1.37 3.58 0 4.95c1.18 1.18 3 1.34 4.36.47l2.09 2.09 1.06-1.06-2.09-2.09c.87-1.36.72-3.18-.47-4.36zm-1.06 3.88c-.78.78-2.05.78-2.83 0-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0c.78.79.78 2.05 0 2.83z" +}, "1")], 'ScreenSearchDesktopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenSearchDesktopRounded.js b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopRounded.js new file mode 100644 index 00000000000000..56e126604ea64c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 19H2c-.55 0-1 .45-1 1s.45 1 1 1h20c.55 0 1-.45 1-1s-.45-1-1-1zM4 18h16c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2zm4.59-9.95c1.28-1.87 3.86-2.05 5.38-.52 1.18 1.18 1.34 3 .47 4.36L16 13.44c.29.29.29.77 0 1.06-.29.29-.77.29-1.06 0l-1.55-1.55c-1.57 1-3.76.64-4.87-1.11-.73-1.14-.69-2.67.07-3.79z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11.5", + cy: "10", + r: "2" +}, "1")], 'ScreenSearchDesktopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenSearchDesktopSharp.js b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopSharp.js new file mode 100644 index 00000000000000..54d6562d15f67f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1 19h22v2H1zM22 3H2v15h19.99L22 3zm-6.53 12.03-2.09-2.09c-1.35.87-3.17.71-4.36-.47-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.18 1.18 1.34 3 .47 4.36l2.09 2.09-1.06 1.06z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11.5", + cy: "10", + r: "2" +}, "1")], 'ScreenSearchDesktopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenSearchDesktopTwoTone.js b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopTwoTone.js new file mode 100644 index 00000000000000..315b930ff73550 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenSearchDesktopTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 5H4v11h16V5zm-4.53 10.03-2.09-2.09c-1.35.87-3.17.71-4.36-.47-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.18 1.18 1.34 3 .47 4.36l2.09 2.09-1.06 1.06z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 18h16c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2zM4 5h16v11H4V5zM1 19h22v2H1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13.97 7.53c-1.37-1.37-3.58-1.37-4.95 0s-1.37 3.58 0 4.95c1.18 1.18 3 1.34 4.36.47l2.09 2.09 1.06-1.06-2.09-2.09c.87-1.36.72-3.18-.47-4.36zm-1.06 3.88c-.78.78-2.05.78-2.83 0-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0c.78.79.78 2.05 0 2.83z" +}, "2")], 'ScreenSearchDesktopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenShare.js b/packages/material-ui-icons/lib/esm/ScreenShare.js new file mode 100644 index 00000000000000..18b7e46e1dcc01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenShare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z" +}), 'ScreenShare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenShareOutlined.js b/packages/material-ui-icons/lib/esm/ScreenShareOutlined.js new file mode 100644 index 00000000000000..e8daa2c521da81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenShareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z" +}), 'ScreenShareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenShareRounded.js b/packages/material-ui-icons/lib/esm/ScreenShareRounded.js new file mode 100644 index 00000000000000..1c340d648a606f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenShareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.89 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l3.61 3.36c.21.2.21.53 0 .73L13 14.47z" +}), 'ScreenShareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenShareSharp.js b/packages/material-ui-icons/lib/esm/ScreenShareSharp.js new file mode 100644 index 00000000000000..bab16d58ee3a64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenShareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20 18 2-2V4H2v12l2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z" +}), 'ScreenShareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenShareTwoTone.js b/packages/material-ui-icons/lib/esm/ScreenShareTwoTone.js new file mode 100644 index 00000000000000..4554ccf31d07b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenShareTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 16V6H4v10.01L20 16zm-7-1.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z" +}, "1")], 'ScreenShareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Screenshot.js b/packages/material-ui-icons/lib/esm/Screenshot.js new file mode 100644 index 00000000000000..29a5147c6cce30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Screenshot.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" +}), 'Screenshot'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenshotOutlined.js b/packages/material-ui-icons/lib/esm/ScreenshotOutlined.js new file mode 100644 index 00000000000000..bb3eb4c19726e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenshotOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" +}), 'ScreenshotOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenshotRounded.js b/packages/material-ui-icons/lib/esm/ScreenshotRounded.js new file mode 100644 index 00000000000000..4aa5e09d3442d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenshotRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zM9.5 8.5h1.75c.41 0 .75-.34.75-.75S11.66 7 11.25 7h-2.5c-.41 0-.75.34-.75.75v2.5c0 .41.34.75.75.75s.75-.34.75-.75V8.5zm3.25 8.5h2.5c.41 0 .75-.34.75-.75v-2.5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.75h-1.75c-.41 0-.75.34-.75.75s.34.75.75.75z" +}), 'ScreenshotRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenshotSharp.js b/packages/material-ui-icons/lib/esm/ScreenshotSharp.js new file mode 100644 index 00000000000000..bd91020c194f14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenshotSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" +}), 'ScreenshotSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ScreenshotTwoTone.js b/packages/material-ui-icons/lib/esm/ScreenshotTwoTone.js new file mode 100644 index 00000000000000..ce8e2a1a03c7e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ScreenshotTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 3h10v1H7zm0 17h10v1H7z", + opacity: ".3" +}, "1")], 'ScreenshotTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sd.js b/packages/material-ui-icons/lib/esm/Sd.js new file mode 100644 index 00000000000000..1779808173d0fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sd.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1h1.5v.5h2zm5 0h2v-3h-2v3z" +}), 'Sd'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCard.js b/packages/material-ui-icons/lib/esm/SdCard.js new file mode 100644 index 00000000000000..75099a71bd78f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" +}), 'SdCard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardAlert.js b/packages/material-ui-icons/lib/esm/SdCardAlert.js new file mode 100644 index 00000000000000..7cb623c1e98289 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardAlert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z" +}), 'SdCardAlert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardAlertOutlined.js b/packages/material-ui-icons/lib/esm/SdCardAlertOutlined.js new file mode 100644 index 00000000000000..9cb8a6b349c06b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardAlertOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z" +}), 'SdCardAlertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardAlertRounded.js b/packages/material-ui-icons/lib/esm/SdCardAlertRounded.js new file mode 100644 index 00000000000000..8a9532ea63b9ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardAlertRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.58.88-.58 1.4L4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" +}), 'SdCardAlertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardAlertSharp.js b/packages/material-ui-icons/lib/esm/SdCardAlertSharp.js new file mode 100644 index 00000000000000..dc69a632dc9a4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardAlertSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z" +}), 'SdCardAlertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardAlertTwoTone.js b/packages/material-ui-icons/lib/esm/SdCardAlertTwoTone.js new file mode 100644 index 00000000000000..a7f5fedea56082 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardAlertTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 8.83V20h12V4h-7.17L6 8.83zM11 8h2v5h-2V8zm0 7h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z" +}, "1")], 'SdCardAlertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardOutlined.js b/packages/material-ui-icons/lib/esm/SdCardOutlined.js new file mode 100644 index 00000000000000..739f13ce465e5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" +}), 'SdCardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardRounded.js b/packages/material-ui-icons/lib/esm/SdCardRounded.js new file mode 100644 index 00000000000000..993d11d9b30f51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.6.88-.6 1.4V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'SdCardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardSharp.js b/packages/material-ui-icons/lib/esm/SdCardSharp.js new file mode 100644 index 00000000000000..dde169eb900e5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" +}), 'SdCardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdCardTwoTone.js b/packages/material-ui-icons/lib/esm/SdCardTwoTone.js new file mode 100644 index 00000000000000..8a827f0186ca07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdCardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" +}, "1")], 'SdCardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdOutlined.js b/packages/material-ui-icons/lib/esm/SdOutlined.js new file mode 100644 index 00000000000000..bf5d5a1e2453df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 15h3c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2.5v1h-2V13H6v1c0 .55.45 1 1 1zm11-1v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "1")], 'SdOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdRounded.js b/packages/material-ui-icons/lib/esm/SdRounded.js new file mode 100644 index 00000000000000..73abc1bcdf8c6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 5h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1h1.5v.5h2zm5 0h2v-3h-2v3z" +}), 'SdRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdSharp.js b/packages/material-ui-icons/lib/esm/SdSharp.js new file mode 100644 index 00000000000000..9b5ca46d250501 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 4v16h20V4H2zm11 5h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H6V9h5v2H9.5v-.5h-2v1H11V15H6v-2h1.5v.5h2zm5 0h2v-3h-2v3z" +}), 'SdSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdStorage.js b/packages/material-ui-icons/lib/esm/SdStorage.js new file mode 100644 index 00000000000000..5cf5e630064073 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdStorage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" +}), 'SdStorage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdStorageOutlined.js b/packages/material-ui-icons/lib/esm/SdStorageOutlined.js new file mode 100644 index 00000000000000..b27d8d35c44285 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdStorageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v16H6V8.83L10.83 4H18m0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" +}), 'SdStorageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdStorageRounded.js b/packages/material-ui-icons/lib/esm/SdStorageRounded.js new file mode 100644 index 00000000000000..b0763583c7b420 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdStorageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.6.88-.6 1.4V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'SdStorageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdStorageSharp.js b/packages/material-ui-icons/lib/esm/SdStorageSharp.js new file mode 100644 index 00000000000000..5d62b04baf3b4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdStorageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" +}), 'SdStorageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdStorageTwoTone.js b/packages/material-ui-icons/lib/esm/SdStorageTwoTone.js new file mode 100644 index 00000000000000..bd7eff85f14f73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdStorageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z" +}, "1")], 'SdStorageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SdTwoTone.js b/packages/material-ui-icons/lib/esm/SdTwoTone.js new file mode 100644 index 00000000000000..d7e3cc8ee8969d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SdTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zm9-9h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-7 4h1.5v.5h2v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10.5h2v3h-2z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7 15h3c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v1.5c0 .55.45 1 1 1h2.5v1h-2V13H6v1c0 .55.45 1 1 1zm11-1v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "3")], 'SdTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Search.js b/packages/material-ui-icons/lib/esm/Search.js new file mode 100644 index 00000000000000..42560bce05853c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Search.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}), 'Search'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchOff.js b/packages/material-ui-icons/lib/esm/SearchOff.js new file mode 100644 index 00000000000000..f2ffdd53264272 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchOff.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" +}, "1")], 'SearchOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchOffOutlined.js b/packages/material-ui-icons/lib/esm/SearchOffOutlined.js new file mode 100644 index 00000000000000..b3d068196c1ac6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchOffOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" +}, "1")], 'SearchOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchOffRounded.js b/packages/material-ui-icons/lib/esm/SearchOffRounded.js new file mode 100644 index 00000000000000..92c9aff9826149 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchOffRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-4.99-5.58-5.34C6.54 2.58 3.3 5.38 3.03 9h2.02c.24-2.12 1.92-3.8 4.06-3.98C11.65 4.8 14 6.95 14 9.5c0 2.49-2.01 4.5-4.5 4.5-.17 0-.33-.03-.5-.05v2.02l.01.01c1.8.13 3.47-.47 4.72-1.55l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.12 11.17 4 13.29l-2.12-2.12c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71L3.29 14l-2.12 2.12c-.2.2-.2.51 0 .71.2.2.51.2.71 0L4 14.71l2.12 2.12c.2.2.51.2.71 0 .2-.2.2-.51 0-.71L4.71 14l2.12-2.12c.2-.2.2-.51 0-.71-.2-.19-.51-.19-.71 0z" +}, "1")], 'SearchOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchOffSharp.js b/packages/material-ui-icons/lib/esm/SearchOffSharp.js new file mode 100644 index 00000000000000..822cee0f62249f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchOffSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" +}, "1")], 'SearchOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchOffTwoTone.js b/packages/material-ui-icons/lib/esm/SearchOffTwoTone.js new file mode 100644 index 00000000000000..be1974243b5ce9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchOffTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3 6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.47 10.82 4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" +}, "1")], 'SearchOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchOutlined.js b/packages/material-ui-icons/lib/esm/SearchOutlined.js new file mode 100644 index 00000000000000..e643caab0d5e2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}), 'SearchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchRounded.js b/packages/material-ui-icons/lib/esm/SearchRounded.js new file mode 100644 index 00000000000000..d9a9636bd5dc4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}), 'SearchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchSharp.js b/packages/material-ui-icons/lib/esm/SearchSharp.js new file mode 100644 index 00000000000000..487e9bbefbd648 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}), 'SearchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SearchTwoTone.js b/packages/material-ui-icons/lib/esm/SearchTwoTone.js new file mode 100644 index 00000000000000..15e74c6d83fafd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SearchTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}), 'SearchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Security.js b/packages/material-ui-icons/lib/esm/Security.js new file mode 100644 index 00000000000000..545237ee15f0eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Security.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" +}), 'Security'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityOutlined.js b/packages/material-ui-icons/lib/esm/SecurityOutlined.js new file mode 100644 index 00000000000000..352882591ec358 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" +}), 'SecurityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityRounded.js b/packages/material-ui-icons/lib/esm/SecurityRounded.js new file mode 100644 index 00000000000000..a06f23450e4df6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.19 1.36-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62 0zM12 11.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" +}), 'SecurityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecuritySharp.js b/packages/material-ui-icons/lib/esm/SecuritySharp.js new file mode 100644 index 00000000000000..e9f49b83baf11d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecuritySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" +}), 'SecuritySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityTwoTone.js b/packages/material-ui-icons/lib/esm/SecurityTwoTone.js new file mode 100644 index 00000000000000..2ea6f208cc3930 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3.19 5 6.3V12h7v8.93c3.72-1.15 6.47-4.82 7-8.94h-7v-8.8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 19.93V12H5V6.3l7-3.11v8.8h7c-.53 4.12-3.28 7.79-7 8.94z" +}, "1")], 'SecurityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdate.js b/packages/material-ui-icons/lib/esm/SecurityUpdate.js new file mode 100644 index 00000000000000..aa18e8c072705b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2zm12 15H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" +}), 'SecurityUpdate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateGood.js b/packages/material-ui-icons/lib/esm/SecurityUpdateGood.js new file mode 100644 index 00000000000000..f9e9eef8218b3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateGood.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}), 'SecurityUpdateGood'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateGoodOutlined.js b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodOutlined.js new file mode 100644 index 00000000000000..da4f2907df98f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}), 'SecurityUpdateGoodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateGoodRounded.js b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodRounded.js new file mode 100644 index 00000000000000..bbdb4820d47630 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-6.66-3.71c.39.39 1.02.39 1.41 0l3.54-3.54c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2.83 2.83-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.41 1.42z" +}), 'SecurityUpdateGoodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateGoodSharp.js b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodSharp.js new file mode 100644 index 00000000000000..4ded3b28485e6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}), 'SecurityUpdateGoodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateGoodTwoTone.js b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodTwoTone.js new file mode 100644 index 00000000000000..39f702ae001c1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateGoodTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}, "1")], 'SecurityUpdateGoodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateOutlined.js b/packages/material-ui-icons/lib/esm/SecurityUpdateOutlined.js new file mode 100644 index 00000000000000..405572abf1ae40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7zm9 8-4 4-4-4 1.41-1.41L11 12.17V8h2v4.17l1.59-1.59L16 12z" +}), 'SecurityUpdateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateRounded.js b/packages/material-ui-icons/lib/esm/SecurityUpdateRounded.js new file mode 100644 index 00000000000000..0bbb0a48296b5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-2.21-5.79H13V9c0-.55-.45-1-1-1s-1 .45-1 1v3.21H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" +}), 'SecurityUpdateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateSharp.js b/packages/material-ui-icons/lib/esm/SecurityUpdateSharp.js new file mode 100644 index 00000000000000..967fe8fd708f46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" +}), 'SecurityUpdateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateTwoTone.js b/packages/material-ui-icons/lib/esm/SecurityUpdateTwoTone.js new file mode 100644 index 00000000000000..1894dc84cf01c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 20h10v1H7zM7 3h10v1H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 8h-3V8h-2v4H8l4 4 4-4z" +}, "1")], 'SecurityUpdateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateWarning.js b/packages/material-ui-icons/lib/esm/SecurityUpdateWarning.js new file mode 100644 index 00000000000000..eacabaa616696b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateWarning.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" +}, "1")], 'SecurityUpdateWarning'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateWarningOutlined.js b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningOutlined.js new file mode 100644 index 00000000000000..153bf5c5f67668 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" +}, "1")], 'SecurityUpdateWarningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateWarningRounded.js b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningRounded.js new file mode 100644 index 00000000000000..d1cc1a7854890e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" +}, "2")], 'SecurityUpdateWarningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateWarningSharp.js b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningSharp.js new file mode 100644 index 00000000000000..8afaa39f1bcda8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z" +}, "1")], 'SecurityUpdateWarningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SecurityUpdateWarningTwoTone.js b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningTwoTone.js new file mode 100644 index 00000000000000..e0c6347cd0e918 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SecurityUpdateWarningTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 7h2v6h-2V7zm0 8h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", + opacity: ".3" +}, "3")], 'SecurityUpdateWarningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Segment.js b/packages/material-ui-icons/lib/esm/Segment.js new file mode 100644 index 00000000000000..5b4a39b9bbc253 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Segment.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" +}), 'Segment'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SegmentOutlined.js b/packages/material-ui-icons/lib/esm/SegmentOutlined.js new file mode 100644 index 00000000000000..2a021e754e5db3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SegmentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" +}), 'SegmentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SegmentRounded.js b/packages/material-ui-icons/lib/esm/SegmentRounded.js new file mode 100644 index 00000000000000..31272bfa925e6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SegmentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 18h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm7 6h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'SegmentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SegmentSharp.js b/packages/material-ui-icons/lib/esm/SegmentSharp.js new file mode 100644 index 00000000000000..fe92d4d8a4dbeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SegmentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" +}), 'SegmentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SegmentTwoTone.js b/packages/material-ui-icons/lib/esm/SegmentTwoTone.js new file mode 100644 index 00000000000000..1522118947b57a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SegmentTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" +}), 'SegmentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelectAll.js b/packages/material-ui-icons/lib/esm/SelectAll.js new file mode 100644 index 00000000000000..f6ece53a393f61 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelectAll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" +}), 'SelectAll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelectAllOutlined.js b/packages/material-ui-icons/lib/esm/SelectAllOutlined.js new file mode 100644 index 00000000000000..4632b02befef22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelectAllOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" +}), 'SelectAllOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelectAllRounded.js b/packages/material-ui-icons/lib/esm/SelectAllRounded.js new file mode 100644 index 00000000000000..f8c92d6d00c804 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelectAllRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM8 17h8c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zm1-8h6v6H9V9z" +}), 'SelectAllRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelectAllSharp.js b/packages/material-ui-icons/lib/esm/SelectAllSharp.js new file mode 100644 index 00000000000000..d798a1a97776c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelectAllSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm6 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0-4h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zm4 0h2V3h-2v2zm0 16h2v-2h-2v2zM3 21h2v-2H3v2zm4-4h10V7H7v10zm2-8h6v6H9V9z" +}), 'SelectAllSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelectAllTwoTone.js b/packages/material-ui-icons/lib/esm/SelectAllTwoTone.js new file mode 100644 index 00000000000000..6c4dd69457c15f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelectAllTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z" +}), 'SelectAllTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelfImprovement.js b/packages/material-ui-icons/lib/esm/SelfImprovement.js new file mode 100644 index 00000000000000..2eabe30c8120de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelfImprovement.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" +}, "1")], 'SelfImprovement'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelfImprovementOutlined.js b/packages/material-ui-icons/lib/esm/SelfImprovementOutlined.js new file mode 100644 index 00000000000000..40a0e4cca044da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelfImprovementOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" +}, "1")], 'SelfImprovementOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelfImprovementRounded.js b/packages/material-ui-icons/lib/esm/SelfImprovementRounded.js new file mode 100644 index 00000000000000..b0c3db81611815 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelfImprovementRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 14.94c0-.5-.36-.93-.85-.98-1.88-.21-3.49-1.13-4.75-2.63l-1.34-1.6c-.38-.47-.94-.73-1.53-.73h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6c-1.25 1.5-2.87 2.42-4.75 2.63-.5.06-.86.49-.86.99 0 .6.53 1.07 1.13 1 2.3-.27 4.32-1.39 5.87-3.19V15l-3.76 1.5c-.65.26-1.16.83-1.23 1.53-.1 1.07.73 1.97 1.78 1.97H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.1c.85 0 1.65-.54 1.85-1.37.21-.89-.27-1.76-1.08-2.08L14 15v-2.25c1.56 1.8 3.57 2.91 5.87 3.19.6.06 1.13-.4 1.13-1z" +}, "1")], 'SelfImprovementRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelfImprovementSharp.js b/packages/material-ui-icons/lib/esm/SelfImprovementSharp.js new file mode 100644 index 00000000000000..2435af50ca74f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelfImprovementSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" +}, "1")], 'SelfImprovementSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SelfImprovementTwoTone.js b/packages/material-ui-icons/lib/esm/SelfImprovementTwoTone.js new file mode 100644 index 00000000000000..9535ba4beee315 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SelfImprovementTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6c-.38-.46-.94-.72-1.53-.72h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5c0-1.38 1.12-2.5 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" +}, "1")], 'SelfImprovementTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sell.js b/packages/material-ui-icons/lib/esm/Sell.js new file mode 100644 index 00000000000000..48175cadc40e4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sell.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z" +}), 'Sell'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SellOutlined.js b/packages/material-ui-icons/lib/esm/SellOutlined.js new file mode 100644 index 00000000000000..cef13990bbe05b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SellOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM12.83 20 4 11.17V4h7.17L20 12.83 12.83 20z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "6.5", + r: "1.5" +}, "1")], 'SellOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SellRounded.js b/packages/material-ui-icons/lib/esm/SellRounded.js new file mode 100644 index 00000000000000..16ceaebcb861c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SellRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z" +}), 'SellRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SellSharp.js b/packages/material-ui-icons/lib/esm/SellSharp.js new file mode 100644 index 00000000000000..dc8be43f0351b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SellSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.83 12.83 12 2H2v10l10.83 10.83 10-10zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z" +}), 'SellSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SellTwoTone.js b/packages/material-ui-icons/lib/esm/SellTwoTone.js new file mode 100644 index 00000000000000..eae2ebfd85bd7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SellTwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 4v7.17L12.83 20 20 12.83 11.17 4H4zm2.5 4C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.41 11.41-8.83-8.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v7.17c0 .53.21 1.04.59 1.41l8.83 8.83c.78.78 2.05.78 2.83 0l7.17-7.17c.78-.78.78-2.04-.01-2.83zM12.83 20 4 11.17V4h7.17L20 12.83 12.83 20z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "6.5", + r: "1.5" +}, "2")], 'SellTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Send.js b/packages/material-ui-icons/lib/esm/Send.js new file mode 100644 index 00000000000000..970b9742af8274 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Send.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.01 21 23 12 2.01 3 2 10l15 2-15 2z" +}), 'Send'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendAndArchive.js b/packages/material-ui-icons/lib/esm/SendAndArchive.js new file mode 100644 index 00000000000000..41832f2cbdc5f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendAndArchive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10h-3L2 3v7l9 2-9 2v7l8-3.5V21c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11h-9v-9h9v9zm-4.5-1L13 16h2v-3h3v3h2l-3.5 4z" +}), 'SendAndArchive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendAndArchiveOutlined.js b/packages/material-ui-icons/lib/esm/SendAndArchiveOutlined.js new file mode 100644 index 00000000000000..727f72ce38bd5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendAndArchiveOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m11 12-6-1.5V7.01l8.87 3.73c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3 .71-.71 1.79 1.79V14h1v4.09l1.79-1.79.71.7-3 3z" +}, "1")], 'SendAndArchiveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendAndArchiveRounded.js b/packages/material-ui-icons/lib/esm/SendAndArchiveRounded.js new file mode 100644 index 00000000000000..e4972504747d4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendAndArchiveRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm2.15 5.85-1.79 1.79c-.2.2-.51.2-.71 0l-1.79-1.79c-.32-.31-.1-.85.35-.85h1.29v-2.5c0-.28.22-.5.5-.5s.5.22.5.5V17h1.29c.45 0 .67.54.36.85z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.87 3.13-7 7-7z" +}, "1")], 'SendAndArchiveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendAndArchiveSharp.js b/packages/material-ui-icons/lib/esm/SendAndArchiveSharp.js new file mode 100644 index 00000000000000..162fbb3e1d8d56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendAndArchiveSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.87 3.13-7 7-7z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3h2.5v-3h1v3H20l-3 3z" +}, "1")], 'SendAndArchiveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendAndArchiveTwoTone.js b/packages/material-ui-icons/lib/esm/SendAndArchiveTwoTone.js new file mode 100644 index 00000000000000..64a97b15d25b66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendAndArchiveTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 7.01v3.49l6 1.5-6 1.5v3.49l5.39-2.27c.6-1.74 1.86-3.16 3.48-3.97L5 7.01z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m11 12-6-1.5V7.01l8.87 3.73c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3h2.5v-3h1v3H20l-3 3z" +}, "2")], 'SendAndArchiveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendOutlined.js b/packages/material-ui-icons/lib/esm/SendOutlined.js new file mode 100644 index 00000000000000..d839a5595a0795 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4.01 6.03 7.51 3.22-7.52-1 .01-2.22m7.5 8.72L4 17.97v-2.22l7.51-1M2.01 3 2 10l15 2-15 2 .01 7L23 12 2.01 3z" +}), 'SendOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendRounded.js b/packages/material-ui-icons/lib/esm/SendRounded.js new file mode 100644 index 00000000000000..ce85129609f0b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.4 20.4 17.45-7.48c.81-.35.81-1.49 0-1.84L3.4 3.6c-.66-.29-1.39.2-1.39.91L2 9.12c0 .5.37.93.87.99L17 12 2.87 13.88c-.5.07-.87.5-.87 1l.01 4.61c0 .71.73 1.2 1.39.91z" +}), 'SendRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendSharp.js b/packages/material-ui-icons/lib/esm/SendSharp.js new file mode 100644 index 00000000000000..ec00aea3ca4ed3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.01 21 23 12 2.01 3 2 10l15 2-15 2 .01 7z" +}), 'SendSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendToMobile.js b/packages/material-ui-icons/lib/esm/SendToMobile.js new file mode 100644 index 00000000000000..4129f2bbe8a372 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendToMobile.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-1.99 2-1.99L17 1c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1zm5-5-4-4v3h-5v2h5v3l4-4z" +}), 'SendToMobile'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendToMobileOutlined.js b/packages/material-ui-icons/lib/esm/SendToMobileOutlined.js new file mode 100644 index 00000000000000..fbcc0527a4af80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendToMobileOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 8 4 4-4 4-1.41-1.41L18.17 13H13v-2h5.17l-1.59-1.59L18 8zM7 1.01 17 1c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-1.99 2-1.99zM7 21h10v-1H7v1zM7 4h10V3H7v1z" +}), 'SendToMobileOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendToMobileRounded.js b/packages/material-ui-icons/lib/esm/SendToMobileRounded.js new file mode 100644 index 00000000000000..00ae2451903e29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendToMobileRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 18H7V6h10c0 .55.45 1 1 1s1-.45 1-1V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.65 11.65-2.79-2.79c-.32-.32-.86-.1-.86.35V11h-4c-.55 0-1 .45-1 1s.45 1 1 1h4v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" +}, "1")], 'SendToMobileRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendToMobileSharp.js b/packages/material-ui-icons/lib/esm/SendToMobileSharp.js new file mode 100644 index 00000000000000..b48dea64eaa9ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendToMobileSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 18H7V6h10v1h2V1H5v22h14v-6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m22 12-4-4v3h-5v2h5v3z" +}, "1")], 'SendToMobileSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendToMobileTwoTone.js b/packages/material-ui-icons/lib/esm/SendToMobileTwoTone.js new file mode 100644 index 00000000000000..aca5eec8f57390 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendToMobileTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 3h10v1H7zm0 17h10v1H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m22 12-4-4v3h-5v2h5v3l4-4zm-5 6H7V6h10v1h2V3c0-1.1-.9-2-2-2L7 1.01C5.9 1.01 5 1.9 5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1zM7 3h10v1H7V3zm10 18H7v-1h10v1z" +}, "1")], 'SendToMobileTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SendTwoTone.js b/packages/material-ui-icons/lib/esm/SendTwoTone.js new file mode 100644 index 00000000000000..275b03fb12b6b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SendTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4 8.25 7.51 1-7.5-3.22zm.01 9.72 7.5-3.22-7.51 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2.01 3 2 10l15 2-15 2 .01 7L23 12 2.01 3zM4 8.25V6.03l7.51 3.22-7.51-1zm.01 9.72v-2.22l7.51-1-7.51 3.22z" +}, "1")], 'SendTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorDoor.js b/packages/material-ui-icons/lib/esm/SensorDoor.js new file mode 100644 index 00000000000000..9b7555de931ad0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorDoor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v18h16V4c0-1.1-.9-2-2-2zm-2.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'SensorDoor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorDoorOutlined.js b/packages/material-ui-icons/lib/esm/SensorDoorOutlined.js new file mode 100644 index 00000000000000..4028984029530e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorDoorOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v18h16V4c0-1.1-.9-2-2-2zm-2.5 8.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S17 12.83 17 12s-.67-1.5-1.5-1.5z" +}), 'SensorDoorOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorDoorRounded.js b/packages/material-ui-icons/lib/esm/SensorDoorRounded.js new file mode 100644 index 00000000000000..67feaae01a2df0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorDoorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'SensorDoorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorDoorSharp.js b/packages/material-ui-icons/lib/esm/SensorDoorSharp.js new file mode 100644 index 00000000000000..a952eee98bd1af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorDoorSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4v20h16V2zm-4.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'SensorDoorSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorDoorTwoTone.js b/packages/material-ui-icons/lib/esm/SensorDoorTwoTone.js new file mode 100644 index 00000000000000..930975fbd3c985 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorDoorTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 4v16H6V4h12m-2.5 6.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S17 12.83 17 12s-.67-1.5-1.5-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v18h16V4c0-1.1-.9-2-2-2zm-2.5 8.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5S17 12.83 17 12s-.67-1.5-1.5-1.5z" +}, "1")], 'SensorDoorTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorWindow.js b/packages/material-ui-icons/lib/esm/SensorWindow.js new file mode 100644 index 00000000000000..1bd9d2132372e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorWindow.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 19h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z" +}), 'SensorWindow'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorWindowOutlined.js b/packages/material-ui-icons/lib/esm/SensorWindowOutlined.js new file mode 100644 index 00000000000000..ad783e51809821 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorWindowOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v7h-4v-1h-4v1H6V4h12zM6 20v-7h12v7H6z" +}), 'SensorWindowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorWindowRounded.js b/packages/material-ui-icons/lib/esm/SensorWindowRounded.js new file mode 100644 index 00000000000000..e46a25528c967d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorWindowRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v16H6V4h12m0-2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 19h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z" +}), 'SensorWindowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorWindowSharp.js b/packages/material-ui-icons/lib/esm/SensorWindowSharp.js new file mode 100644 index 00000000000000..4c1cd834a54545 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorWindowSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v16H6V4h12M4 2v20h16V2H4zm3 17h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z" +}), 'SensorWindowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorWindowTwoTone.js b/packages/material-ui-icons/lib/esm/SensorWindowTwoTone.js new file mode 100644 index 00000000000000..4f33a8d6c81a32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorWindowTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 4v7h-4v-1h-4v1H6V4h12zM6 20v-7h12v7H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v7h-4v-1h-4v1H6V4h12zM6 20v-7h12v7H6z" +}, "1")], 'SensorWindowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sensors.js b/packages/material-ui-icons/lib/esm/Sensors.js new file mode 100644 index 00000000000000..9e91a75447fef0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sensors.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" +}), 'Sensors'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsOff.js b/packages/material-ui-icons/lib/esm/SensorsOff.js new file mode 100644 index 00000000000000..c8f578e025f6a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" +}), 'SensorsOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsOffOutlined.js b/packages/material-ui-icons/lib/esm/SensorsOffOutlined.js new file mode 100644 index 00000000000000..04f840dc168823 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" +}), 'SensorsOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsOffRounded.js b/packages/material-ui-icons/lib/esm/SensorsOffRounded.js new file mode 100644 index 00000000000000..4b34b5f7180167 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.68 18.32c-.42.42-1.12.39-1.5-.08C2.82 16.53 2 14.36 2 12c0-2.04.61-3.93 1.66-5.51L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.39.39.39 1.02 0 1.41s-1.02.39-1.41 0L8.14 10.96c-.09.33-.14.68-.14 1.04 0 .8.24 1.55.64 2.17.27.41.24.94-.1 1.29-.43.43-1.17.4-1.51-.11C6.38 14.4 6 13.24 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 1.89.66 3.63 1.76 5 .32.39.28.96-.08 1.32zm9.78-9.78c-.35.35-.37.88-.11 1.29.41.62.65 1.37.65 2.17 0 .36-.05.71-.14 1.04l1.55 1.55c.38-.79.59-1.66.59-2.59 0-1.24-.38-2.4-1.03-3.36-.34-.5-1.07-.54-1.51-.1zm2.86-2.86c-.36.36-.4.92-.08 1.32 1.1 1.37 1.76 3.11 1.76 5 0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.36-.82-4.53-2.18-6.24-.38-.47-1.08-.5-1.5-.08z" +}), 'SensorsOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsOffSharp.js b/packages/material-ui-icons/lib/esm/SensorsOffSharp.js new file mode 100644 index 00000000000000..4d1c079a38bdf8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" +}), 'SensorsOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsOffTwoTone.js b/packages/material-ui-icons/lib/esm/SensorsOffTwoTone.js new file mode 100644 index 00000000000000..f1e79ba1416e14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42C6.67 15.16 6 13.66 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42C3.12 17.26 2 14.76 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 .36-.05.71-.14 1.04l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12z" +}), 'SensorsOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsOutlined.js b/packages/material-ui-icons/lib/esm/SensorsOutlined.js new file mode 100644 index 00000000000000..2af53e5df3cbaa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" +}), 'SensorsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsRounded.js b/packages/material-ui-icons/lib/esm/SensorsRounded.js new file mode 100644 index 00000000000000..dc21ee16c0070b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.54 8.54c.35.35.37.88.1 1.29C8.24 10.45 8 11.2 8 12c0 .8.24 1.55.64 2.17.27.41.24.95-.11 1.29-.43.43-1.17.4-1.51-.11C6.38 14.4 6 13.24 6 12c0-1.21.36-2.33.97-3.28.36-.54 1.11-.64 1.57-.18zm6.92 6.92c.43.43 1.17.4 1.51-.11C17.62 14.4 18 13.24 18 12c0-1.24-.38-2.4-1.03-3.36-.34-.5-1.08-.54-1.51-.11-.35.35-.37.88-.11 1.29.41.63.65 1.38.65 2.18 0 .8-.24 1.55-.64 2.17-.27.41-.24.95.1 1.29zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6.32 8.32c.42.42 1.12.39 1.5-.08C21.18 16.53 22 14.36 22 12s-.82-4.53-2.18-6.24c-.37-.47-1.07-.5-1.5-.08-.36.36-.4.92-.08 1.32 1.1 1.37 1.76 3.11 1.76 5s-.66 3.63-1.76 5c-.32.39-.28.96.08 1.32zM5.68 5.68c-.42-.42-1.12-.39-1.5.08C2.82 7.47 2 9.64 2 12s.82 4.53 2.18 6.24c.37.47 1.07.5 1.5.08.36-.36.4-.92.08-1.32C4.66 15.63 4 13.89 4 12s.66-3.63 1.76-5c.32-.39.28-.96-.08-1.32z" +}), 'SensorsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsSharp.js b/packages/material-ui-icons/lib/esm/SensorsSharp.js new file mode 100644 index 00000000000000..5ae87ed1af7b2b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" +}), 'SensorsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SensorsTwoTone.js b/packages/material-ui-icons/lib/esm/SensorsTwoTone.js new file mode 100644 index 00000000000000..57f843aa780199 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SensorsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42C19.1 7.79 20 9.79 20 12zM6.35 6.35 4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" +}), 'SensorsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentDissatisfied.js b/packages/material-ui-icons/lib/esm/SentimentDissatisfied.js new file mode 100644 index 00000000000000..d3464ff8332e7e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentDissatisfied.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-3.5c.73 0 1.39.19 1.97.53.12-.14.86-.98 1.01-1.14-.85-.56-1.87-.89-2.98-.89-1.11 0-2.13.33-2.99.88.97 1.09.01.02 1.01 1.14.59-.33 1.25-.52 1.98-.52z" +}, "2")], 'SentimentDissatisfied'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentDissatisfiedOutlined.js b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedOutlined.js new file mode 100644 index 00000000000000..f6b50fe226f2e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "2")], 'SentimentDissatisfiedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentDissatisfiedRounded.js b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedRounded.js new file mode 100644 index 00000000000000..50fc7aa6cd6ec7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedRounded.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-1.9 0-3.63.97-4.65 2.58-.22.35-.11.81.24 1.03.35.22.81.11 1.03-.24.74-1.18 2-1.88 3.38-1.88s2.64.7 3.38 1.88c.14.23.39.35.64.35.14 0 .27-.04.4-.11.35-.22.46-.68.24-1.03C15.63 14.96 13.9 14 12 14z" +}, "2")], 'SentimentDissatisfiedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentDissatisfiedSharp.js b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedSharp.js new file mode 100644 index 00000000000000..8550f5696a7c64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedSharp.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "2")], 'SentimentDissatisfiedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentDissatisfiedTwoTone.js b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedTwoTone.js new file mode 100644 index 00000000000000..1a77ef0364c7b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentDissatisfiedTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm6.95 9.5c-.7-1.19-1.97-2-3.45-2s-2.76.81-3.45 2H6.88C7.68 15.45 9.67 14 12 14s4.32 1.45 5.12 3.5h-1.67z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z" +}, "3")], 'SentimentDissatisfiedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentNeutral.js b/packages/material-ui-icons/lib/esm/SentimentNeutral.js new file mode 100644 index 00000000000000..9e0063c2da3ec9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentNeutral.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 15.5h6v1H9v-1z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "3")], 'SentimentNeutral'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentNeutralOutlined.js b/packages/material-ui-icons/lib/esm/SentimentNeutralOutlined.js new file mode 100644 index 00000000000000..2cf8a179633556 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentNeutralOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 14h6v1.5H9z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "3")], 'SentimentNeutralOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentNeutralRounded.js b/packages/material-ui-icons/lib/esm/SentimentNeutralRounded.js new file mode 100644 index 00000000000000..f376bf9d520fef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentNeutralRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.75 15.5h4.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-4.5c-.41 0-.75.34-.75.75s.34.75.75.75z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "3")], 'SentimentNeutralRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentNeutralSharp.js b/packages/material-ui-icons/lib/esm/SentimentNeutralSharp.js new file mode 100644 index 00000000000000..20aa4021b83bcc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentNeutralSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'SentimentNeutralSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentNeutralTwoTone.js b/packages/material-ui-icons/lib/esm/SentimentNeutralTwoTone.js new file mode 100644 index 00000000000000..a0b2c779cb38ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentNeutralTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 14h6v1.5H9z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "4")], 'SentimentNeutralTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfied.js b/packages/material-ui-icons/lib/esm/SentimentSatisfied.js new file mode 100644 index 00000000000000..1b8489ab71096c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfied.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-.73 0-1.38-.18-1.96-.52-.12.14-.86.98-1.01 1.15.86.55 1.87.87 2.97.87 1.11 0 2.12-.33 2.98-.88-.97-1.09-.01-.02-1.01-1.15-.59.35-1.24.53-1.97.53z" +}, "2")], 'SentimentSatisfied'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedAlt.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAlt.js new file mode 100644 index 00000000000000..e15b949195bb13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAlt.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2s-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5z" +}, "4")], 'SentimentSatisfiedAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltOutlined.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltOutlined.js new file mode 100644 index 00000000000000..3895949c89b0db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "2")], 'SentimentSatisfiedAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltRounded.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltRounded.js new file mode 100644 index 00000000000000..4980a114bc18b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltRounded.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.41-6.11c-.35-.22-.82-.11-1.03.24-.74 1.17-2 1.87-3.38 1.87s-2.64-.7-3.38-1.88c-.22-.35-.68-.46-1.03-.24-.35.22-.46.68-.24 1.03C8.37 16.54 10.1 17.5 12 17.5s3.63-.97 4.65-2.58c.22-.35.11-.81-.24-1.03z" +}, "2")], 'SentimentSatisfiedAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltSharp.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltSharp.js new file mode 100644 index 00000000000000..ed4d6b4948a575 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltSharp.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2z" +}, "2")], 'SentimentSatisfiedAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltTwoTone.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltTwoTone.js new file mode 100644 index 00000000000000..5bcfcbc17baa99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedAltTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.76-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "3")], 'SentimentSatisfiedAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedOutlined.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedOutlined.js new file mode 100644 index 00000000000000..2da9fd9ce37e05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "2")], 'SentimentSatisfiedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedRounded.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedRounded.js new file mode 100644 index 00000000000000..5793e00810e579 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedRounded.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.41-6.11c-.35-.22-.82-.11-1.03.24-.74 1.17-2 1.87-3.38 1.87s-2.64-.7-3.38-1.88c-.22-.35-.68-.46-1.03-.24-.35.22-.46.68-.24 1.03C8.37 16.54 10.1 17.5 12 17.5s3.63-.97 4.65-2.58c.22-.35.11-.81-.24-1.03z" +}, "2")], 'SentimentSatisfiedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedSharp.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedSharp.js new file mode 100644 index 00000000000000..6b6217731c08a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedSharp.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2z" +}, "2")], 'SentimentSatisfiedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentSatisfiedTwoTone.js b/packages/material-ui-icons/lib/esm/SentimentSatisfiedTwoTone.js new file mode 100644 index 00000000000000..a18e422f3ff3a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentSatisfiedTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.75-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "3")], 'SentimentSatisfiedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfied.js b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfied.js new file mode 100644 index 00000000000000..130c41fade1e80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfied.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z" +}, "2")], 'SentimentVeryDissatisfied'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedOutlined.js b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedOutlined.js new file mode 100644 index 00000000000000..e0e97e2e49282a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" +}), 'SentimentVeryDissatisfiedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedRounded.js b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedRounded.js new file mode 100644 index 00000000000000..d9c71787ad4c7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 13.5c-2.03 0-3.8 1.11-4.75 2.75-.19.33.06.75.44.75h8.62c.38 0 .63-.42.44-.75-.95-1.64-2.72-2.75-4.75-2.75zm-3.65-2.03.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-.53.53-.53-.53c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l.53.53-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.65-11.71-.53.53-.53-.53c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l.53.53-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0z" +}), 'SentimentVeryDissatisfiedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedSharp.js b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedSharp.js new file mode 100644 index 00000000000000..a308c9c134f071 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" +}), 'SentimentVeryDissatisfiedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedTwoTone.js b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedTwoTone.js new file mode 100644 index 00000000000000..5e23d8f846b771 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVeryDissatisfiedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM6.76 8.82l1.06-1.06 1.06 1.06 1.06-1.06L11 8.82 9.94 9.88 11 10.94 9.94 12l-1.06-1.06L7.82 12l-1.06-1.06 1.06-1.06-1.06-1.06zM6.89 17c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89zm10.35-6.06L16.18 12l-1.06-1.06L14.06 12 13 10.94l1.06-1.06L13 8.82l1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06-1.06 1.06 1.06 1.06z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" +}, "1")], 'SentimentVeryDissatisfiedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVerySatisfied.js b/packages/material-ui-icons/lib/esm/SentimentVerySatisfied.js new file mode 100644 index 00000000000000..14a2015d9be343 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVerySatisfied.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-5-6c.78 2.34 2.72 4 5 4s4.22-1.66 5-4H7z" +}, "2")], 'SentimentVerySatisfied'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedOutlined.js b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedOutlined.js new file mode 100644 index 00000000000000..588e86a2f2cf50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12L13 9.94zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11l1.06-1.06zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'SentimentVerySatisfiedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedRounded.js b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedRounded.js new file mode 100644 index 00000000000000..8650d6906e3edd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m8.88 9.94.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.88-.88a.9959.9959 0 0 0-1.41 0l-.89.88c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.53-.53zM12 17.5c2.03 0 3.8-1.11 4.75-2.75.19-.33-.05-.75-.44-.75H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75zm1.53-7.03c.29.29.77.29 1.06 0l.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.88-.88a.9959.9959 0 0 0-1.41 0l-.88.88c-.3.29-.3.77-.01 1.06zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'SentimentVerySatisfiedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedSharp.js b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedSharp.js new file mode 100644 index 00000000000000..0655f5ebe23f9b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.88 9.94 9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm1-7.56L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'SentimentVerySatisfiedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedTwoTone.js b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedTwoTone.js new file mode 100644 index 00000000000000..b05a795e70704c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SentimentVerySatisfiedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM8.88 7.82 11 9.94 9.94 11 8.88 9.94 7.82 11 6.76 9.94l2.12-2.12zM12 17.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zm4.18-6.5-1.06-1.06L14.06 11 13 9.94l2.12-2.12 2.12 2.12L16.18 11z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.88 9.94 9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zm4.12 0L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}, "1")], 'SentimentVerySatisfiedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SetMeal.js b/packages/material-ui-icons/lib/esm/SetMeal.js new file mode 100644 index 00000000000000..3f621fdf3e0f6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SetMeal.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM22 5v7c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-2 1c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" +}), 'SetMeal'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SetMealOutlined.js b/packages/material-ui-icons/lib/esm/SetMealOutlined.js new file mode 100644 index 00000000000000..e4c2b1e0fa1090 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SetMealOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM23 13V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 0H3V4h18v9zm-1-7c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" +}), 'SetMealOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SetMealRounded.js b/packages/material-ui-icons/lib/esm/SetMealRounded.js new file mode 100644 index 00000000000000..f0582bd0afc7b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SetMealRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.3 17.6-16.47.86c-.41.02-.77-.3-.79-.71-.02-.41.3-.77.71-.79l16.48-.86c.41-.02.77.3.79.71.02.41-.3.77-.72.79zm-.05 1.88H3.75c-.41 0-.75.34-.75.75s.34.75.75.75h16.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zM22 5v7c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-2.88 1.09c-1.25.27-2.19 1.11-2.33 2.14-.64-.73-2.73-2.73-6.54-2.73-3.44 0-5.48 1.63-6.31 2.49-.28.29-.28.74 0 1.03.83.86 2.87 2.49 6.31 2.49 3.81 0 5.9-2 6.54-2.73.14 1.02 1.08 1.86 2.33 2.14.46.1.88-.28.88-.74V6.84c0-.47-.43-.85-.88-.75z" +}), 'SetMealRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SetMealSharp.js b/packages/material-ui-icons/lib/esm/SetMealSharp.js new file mode 100644 index 00000000000000..32c413f7a69841 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SetMealSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM22 3v11H2V3h20zm-2 3c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" +}), 'SetMealSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SetMealTwoTone.js b/packages/material-ui-icons/lib/esm/SetMealTwoTone.js new file mode 100644 index 00000000000000..8e7442b053a901 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SetMealTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 13H3V4h18v9zm-1-7c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.05 17.56-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM23 13V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 0H3V4h18v9zm-1-7c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" +}, "1")], 'SetMealTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Settings.js b/packages/material-ui-icons/lib/esm/Settings.js new file mode 100644 index 00000000000000..e01798fc614a11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Settings.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94s.02.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z" +}), 'Settings'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsAccessibility.js b/packages/material-ui-icons/lib/esm/SettingsAccessibility.js new file mode 100644 index 00000000000000..5533486817bfb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsAccessibility.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'SettingsAccessibility'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsAccessibilityOutlined.js b/packages/material-ui-icons/lib/esm/SettingsAccessibilityOutlined.js new file mode 100644 index 00000000000000..8a7e47e8dda9a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsAccessibilityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'SettingsAccessibilityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsAccessibilityRounded.js b/packages/material-ui-icons/lib/esm/SettingsAccessibilityRounded.js new file mode 100644 index 00000000000000..5a70fd4bfc1315 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsAccessibilityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.74 4.96c-.13-.53-.67-.85-1.2-.73-2.38.54-5.05.77-7.54.77s-5.16-.23-7.54-.76c-.54-.12-1.07.19-1.2.73l-.02.05c-.13.54.19 1.1.73 1.22 1.62.37 3.37.62 5.03.76v11c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V7c1.66-.14 3.41-.39 5.03-.76.54-.12.86-.68.73-1.22l-.02-.06zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'SettingsAccessibilityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsAccessibilitySharp.js b/packages/material-ui-icons/lib/esm/SettingsAccessibilitySharp.js new file mode 100644 index 00000000000000..b4ad7181270b4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsAccessibilitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'SettingsAccessibilitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsAccessibilityTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsAccessibilityTwoTone.js new file mode 100644 index 00000000000000..6874a09958291e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsAccessibilityTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'SettingsAccessibilityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsApplications.js b/packages/material-ui-icons/lib/esm/SettingsApplications.js new file mode 100644 index 00000000000000..938da00e63d00f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsApplications.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .23-.02.46-.05.68l1.48 1.16c.13.11.17.3.08.45l-1.4 2.42c-.09.15-.27.21-.43.15l-1.74-.7c-.36.28-.76.51-1.18.69l-.26 1.85c-.03.17-.18.3-.35.3h-2.8c-.17 0-.32-.13-.35-.29l-.26-1.85c-.43-.18-.82-.41-1.18-.69l-1.74.7c-.16.06-.34 0-.43-.15l-1.4-2.42c-.09-.15-.05-.34.08-.45l1.48-1.16c-.03-.23-.05-.46-.05-.69 0-.23.02-.46.05-.68l-1.48-1.16c-.13-.11-.17-.3-.08-.45l1.4-2.42c.09-.15.27-.21.43-.15l1.74.7c.36-.28.76-.51 1.18-.69l.26-1.85c.03-.17.18-.3.35-.3h2.8c.17 0 .32.13.35.29l.26 1.85c.43.18.82.41 1.18.69l1.74-.7c.16-.06.34 0 .43.15l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.16c.03.23.05.46.05.69z" +}), 'SettingsApplications'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsApplicationsOutlined.js b/packages/material-ui-icons/lib/esm/SettingsApplicationsOutlined.js new file mode 100644 index 00000000000000..a126517696d4cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsApplicationsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.21 13.97 1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z" +}), 'SettingsApplicationsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsApplicationsRounded.js b/packages/material-ui-icons/lib/esm/SettingsApplicationsRounded.js new file mode 100644 index 00000000000000..274cc272308544 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsApplicationsRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-3.25 9c0 .22-.03.42-.06.63l.84.73c.18.16.22.42.1.63l-.59 1.02c-.12.21-.37.3-.59.22l-1.06-.36c-.32.27-.68.48-1.08.63l-.22 1.09c-.05.23-.25.4-.49.4h-1.18c-.24 0-.44-.17-.49-.4l-.22-1.09c-.4-.15-.76-.36-1.08-.63l-1.06.36c-.23.08-.47-.02-.59-.22l-.59-1.02c-.12-.21-.08-.47.1-.63l.84-.73c-.05-.21-.08-.41-.08-.63s.03-.42.06-.63l-.84-.73c-.18-.16-.22-.42-.1-.63l.59-1.02c.12-.21.37-.3.59-.22l1.06.36c.32-.27.68-.48 1.08-.63l.22-1.09c.06-.24.26-.41.5-.41h1.18c.24 0 .44.17.49.4l.22 1.09c.4.15.76.36 1.08.63l1.06-.36c.23-.08.47.02.59.22l.59 1.02c.12.21.08.47-.1.63l-.84.73c.04.22.07.42.07.64z" +}, "1")], 'SettingsApplicationsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsApplicationsSharp.js b/packages/material-ui-icons/lib/esm/SettingsApplicationsSharp.js new file mode 100644 index 00000000000000..75aa3862b3d016 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsApplicationsSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .24-.02.47-.05.71l.01-.02 1.47 1.16c.14.1.23.18.23.18l-1.7 2.94-2.02-.8.02-.03c-.37.29-.77.53-1.21.71h.01l-.27 1.85c-.02.17-.04.3-.04.3h-3.4l-.31-2.15H10c-.44-.18-.84-.42-1.21-.71l.02.03-2.02.8-1.7-2.94s.1-.08.23-.18l1.47-1.16.01.02c-.03-.24-.05-.47-.05-.71s.02-.47.05-.69l-.01.01-1.7-1.34 1.7-2.95 2.01.81v.01c.37-.28.77-.52 1.2-.7h-.01L10.3 5h3.41l.3 2.15H14c.43.18.83.42 1.2.7v-.01l2.01-.81 1.7 2.95-1.71 1.34-.01-.01c.04.22.06.45.06.69z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2.45" +}, "1")], 'SettingsApplicationsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsApplicationsTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsApplicationsTwoTone.js new file mode 100644 index 00000000000000..15a2df84d11f56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsApplicationsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm2.5-7c0-.2.02-.39.04-.58l-1.27-.99c-.11-.09-.15-.26-.07-.39l1.2-2.07c.08-.13.23-.18.37-.13l1.49.6c.31-.25.66-.44 1.02-.6l.22-1.59c.03-.14.15-.25.3-.25h2.4c.15 0 .27.11.3.25l.22 1.59c.37.15.7.35 1.01.59l1.49-.6c.14-.05.29 0 .37.13l1.2 2.07c.08.13.04.29-.07.39l-1.27.99c.03.2.04.39.04.59 0 .2-.02.39-.04.58l1.27.99c.11.09.15.26.07.39l-1.2 2.07c-.08.13-.23.18-.37.13l-1.49-.6c-.31.24-.65.44-1.01.59l-.22 1.59c-.03.15-.15.26-.3.26h-2.4c-.15 0-.27-.11-.3-.25l-.22-1.59c-.37-.15-.7-.35-1.01-.59l-1.49.6c-.14.05-.29 0-.37-.13l-1.2-2.07c-.08-.13-.04-.29.07-.39l1.27-.99c-.03-.2-.05-.39-.05-.59z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m6.21 13.97 1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z" +}, "1")], 'SettingsApplicationsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBackupRestore.js b/packages/material-ui-icons/lib/esm/SettingsBackupRestore.js new file mode 100644 index 00000000000000..3007c326bc7784 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBackupRestore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" +}), 'SettingsBackupRestore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBackupRestoreOutlined.js b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreOutlined.js new file mode 100644 index 00000000000000..2aba1a97634020 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" +}), 'SettingsBackupRestoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBackupRestoreRounded.js b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreRounded.js new file mode 100644 index 00000000000000..cd6f8df7e3eb5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.77 3c-2.65.07-5 1.28-6.6 3.16L3.85 4.85c-.31-.31-.85-.09-.85.36V9.5c0 .28.22.5.5.5h4.29c.45 0 .67-.54.35-.85L6.59 7.59C7.88 6.02 9.82 5 12 5c4.32 0 7.74 3.94 6.86 8.41-.54 2.77-2.81 4.98-5.58 5.47-3.8.68-7.18-1.74-8.05-5.16-.12-.42-.52-.72-.96-.72-.65 0-1.14.61-.98 1.23C4.28 18.12 7.8 21 12 21c5.06 0 9.14-4.17 9-9.26-.14-4.88-4.35-8.86-9.23-8.74zM14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z" +}), 'SettingsBackupRestoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBackupRestoreSharp.js b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreSharp.js new file mode 100644 index 00000000000000..35e397732eb011 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" +}), 'SettingsBackupRestoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBackupRestoreTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreTwoTone.js new file mode 100644 index 00000000000000..480932e353cbae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBackupRestoreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" +}), 'SettingsBackupRestoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBluetooth.js b/packages/material-ui-icons/lib/esm/SettingsBluetooth.js new file mode 100644 index 00000000000000..6042b8cb374487 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBluetooth.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" +}), 'SettingsBluetooth'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBluetoothOutlined.js b/packages/material-ui-icons/lib/esm/SettingsBluetoothOutlined.js new file mode 100644 index 00000000000000..7198c32ee4944a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBluetoothOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" +}), 'SettingsBluetoothOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBluetoothRounded.js b/packages/material-ui-icons/lib/esm/SettingsBluetoothRounded.js new file mode 100644 index 00000000000000..bfcc219e9901a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBluetoothRounded.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "23", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "23", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "23", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M13.41 10 17 6.42c.39-.39.39-1.02 0-1.42L12.21.21c-.14-.14-.32-.21-.5-.21-.39 0-.71.32-.71.71v6.88L7.11 3.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 10 5.7 14.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 12.41v6.88c0 .39.32.71.71.71.19 0 .37-.07.5-.21L17 15c.39-.39.39-1.02 0-1.42L13.41 10zM13 3.83l1.88 1.88L13 7.59V3.83zm0 12.34v-3.76l1.88 1.88L13 16.17z" +}, "3")], 'SettingsBluetoothRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBluetoothSharp.js b/packages/material-ui-icons/lib/esm/SettingsBluetoothSharp.js new file mode 100644 index 00000000000000..e1c821633ebd54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBluetoothSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" +}), 'SettingsBluetoothSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBluetoothTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsBluetoothTwoTone.js new file mode 100644 index 00000000000000..288de4022db483 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBluetoothTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" +}), 'SettingsBluetoothTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBrightness.js b/packages/material-ui-icons/lib/esm/SettingsBrightness.js new file mode 100644 index 00000000000000..1c1b292ffa580b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBrightness.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" +}), 'SettingsBrightness'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBrightnessOutlined.js b/packages/material-ui-icons/lib/esm/SettingsBrightnessOutlined.js new file mode 100644 index 00000000000000..d0013d340336a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBrightnessOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" +}), 'SettingsBrightnessOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBrightnessRounded.js b/packages/material-ui-icons/lib/esm/SettingsBrightnessRounded.js new file mode 100644 index 00000000000000..3acd6abd0559c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBrightnessRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-2.85 8.35L16 13.5v2c0 .28-.22.5-.5.5h-2l-1.15 1.15c-.2.2-.51.2-.71 0L10.5 16h-2c-.28 0-.5-.22-.5-.5v-2l-1.15-1.15c-.2-.2-.2-.51 0-.71L8 10.5v-2c0-.28.22-.5.5-.5h2l1.15-1.15c.2-.2.51-.2.71 0L13.5 8h2c.28 0 .5.22.5.5v2l1.15 1.15c.19.19.19.51 0 .7zM12 9v6c1.66 0 3-1.34 3-3s-1.34-3-3-3z" +}), 'SettingsBrightnessRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBrightnessSharp.js b/packages/material-ui-icons/lib/esm/SettingsBrightnessSharp.js new file mode 100644 index 00000000000000..873f97513b93cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBrightnessSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" +}), 'SettingsBrightnessSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsBrightnessTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsBrightnessTwoTone.js new file mode 100644 index 00000000000000..1b4c55d0c2dca4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsBrightnessTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19.01h18V4.99H3v14.02zm5-8.51V8h2.5L12 6.5 13.5 8H16v2.5l1.5 1.5-1.5 1.5V16h-2.5L12 17.5 10.5 16H8v-2.5L6.5 12 8 10.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9zm9-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}, "1")], 'SettingsBrightnessTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsCell.js b/packages/material-ui-icons/lib/esm/SettingsCell.js new file mode 100644 index 00000000000000..ebe640a0def5fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsCell.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z" +}), 'SettingsCell'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsCellOutlined.js b/packages/material-ui-icons/lib/esm/SettingsCellOutlined.js new file mode 100644 index 00000000000000..f36e790033242e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsCellOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z" +}), 'SettingsCellOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsCellRounded.js b/packages/material-ui-icons/lib/esm/SettingsCellRounded.js new file mode 100644 index 00000000000000..72847ba90ee026 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsCellRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z" +}), 'SettingsCellRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsCellSharp.js b/packages/material-ui-icons/lib/esm/SettingsCellSharp.js new file mode 100644 index 00000000000000..3d0bbb166248e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsCellSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM6 0v20h12V0H6zm10 16H8V4h8v12z" +}), 'SettingsCellSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsCellTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsCellTwoTone.js new file mode 100644 index 00000000000000..ec2c41244b5c4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsCellTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 17h8v1H8zM8 2h8v1H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01 8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z" +}, "1")], 'SettingsCellTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsEthernet.js b/packages/material-ui-icons/lib/esm/SettingsEthernet.js new file mode 100644 index 00000000000000..9aa61a363de548 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsEthernet.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" +}), 'SettingsEthernet'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsEthernetOutlined.js b/packages/material-ui-icons/lib/esm/SettingsEthernetOutlined.js new file mode 100644 index 00000000000000..1bb074f9f66410 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsEthernetOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" +}), 'SettingsEthernetOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsEthernetRounded.js b/packages/material-ui-icons/lib/esm/SettingsEthernetRounded.js new file mode 100644 index 00000000000000..eba03b2c56b6d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsEthernetRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.71 6.71a.9959.9959 0 0 0-1.41 0L1.71 11.3c-.39.39-.39 1.02 0 1.41L6.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.83 12l3.88-3.88c.38-.39.38-1.03 0-1.41zm8.58 0c-.39.39-.39 1.02 0 1.41L20.17 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L17.7 6.7c-.38-.38-1.02-.38-1.41.01zM8 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4-2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'SettingsEthernetRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsEthernetSharp.js b/packages/material-ui-icons/lib/esm/SettingsEthernetSharp.js new file mode 100644 index 00000000000000..f5fb9862c4a160 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsEthernetSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" +}), 'SettingsEthernetSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsEthernetTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsEthernetTwoTone.js new file mode 100644 index 00000000000000..8708009ffd5bef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsEthernetTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.77 6.76 6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" +}), 'SettingsEthernetTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputAntenna.js b/packages/material-ui-icons/lib/esm/SettingsInputAntenna.js new file mode 100644 index 00000000000000..2c487a140ef61d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputAntenna.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" +}), 'SettingsInputAntenna'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputAntennaOutlined.js b/packages/material-ui-icons/lib/esm/SettingsInputAntennaOutlined.js new file mode 100644 index 00000000000000..f2fd2874c1b02a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputAntennaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" +}), 'SettingsInputAntennaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputAntennaRounded.js b/packages/material-ui-icons/lib/esm/SettingsInputAntennaRounded.js new file mode 100644 index 00000000000000..c6e38108a1d694 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputAntennaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5c-3.48 0-6.37 2.54-6.91 5.87-.1.59.39 1.13 1 1.13.49 0 .9-.36.98-.85C7.48 8.79 9.53 7 12 7s4.52 1.79 4.93 4.15c.08.49.49.85.98.85.61 0 1.09-.54.99-1.13C18.37 7.54 15.48 5 12 5zm1 9.29c1.07-.48 1.76-1.66 1.41-2.99-.22-.81-.87-1.47-1.68-1.7-1.69-.48-3.23.78-3.23 2.4 0 1.02.62 1.9 1.5 2.29v3.3l-2.71 2.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l2.3-2.3 2.3 2.3c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L13 17.59v-3.3zM12 1C6.3 1 1.61 5.34 1.05 10.9c-.05.59.41 1.1 1 1.1.51 0 .94-.38.99-.88C3.48 6.56 7.33 3 12 3s8.52 3.56 8.96 8.12c.05.5.48.88.99.88.59 0 1.06-.51 1-1.1C22.39 5.34 17.7 1 12 1z" +}), 'SettingsInputAntennaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputAntennaSharp.js b/packages/material-ui-icons/lib/esm/SettingsInputAntennaSharp.js new file mode 100644 index 00000000000000..60ca9b6288ec55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputAntennaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" +}), 'SettingsInputAntennaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputAntennaTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsInputAntennaTwoTone.js new file mode 100644 index 00000000000000..381599e7c85844 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputAntennaTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z" +}), 'SettingsInputAntennaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputComponent.js b/packages/material-ui-icons/lib/esm/SettingsInputComponent.js new file mode 100644 index 00000000000000..0a04eeffeb3ae7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputComponent.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" +}), 'SettingsInputComponent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputComponentOutlined.js b/packages/material-ui-icons/lib/esm/SettingsInputComponentOutlined.js new file mode 100644 index 00000000000000..4c9ffbb6b713ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputComponentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z" +}), 'SettingsInputComponentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputComponentRounded.js b/packages/material-ui-icons/lib/esm/SettingsInputComponentRounded.js new file mode 100644 index 00000000000000..420cb51ac1e3fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputComponentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H2c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1H5V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" +}), 'SettingsInputComponentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputComponentSharp.js b/packages/material-ui-icons/lib/esm/SettingsInputComponentSharp.js new file mode 100644 index 00000000000000..07b9aed7b4add8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputComponentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z" +}), 'SettingsInputComponentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputComponentTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsInputComponentTwoTone.js new file mode 100644 index 00000000000000..bce598f2b9d2e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputComponentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 16c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm-8 0c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm16 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z" +}, "1")], 'SettingsInputComponentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputComposite.js b/packages/material-ui-icons/lib/esm/SettingsInputComposite.js new file mode 100644 index 00000000000000..a1bdb1d4652c96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputComposite.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" +}), 'SettingsInputComposite'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputCompositeOutlined.js b/packages/material-ui-icons/lib/esm/SettingsInputCompositeOutlined.js new file mode 100644 index 00000000000000..a8c17777ce4cfc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputCompositeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z" +}), 'SettingsInputCompositeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputCompositeRounded.js b/packages/material-ui-icons/lib/esm/SettingsInputCompositeRounded.js new file mode 100644 index 00000000000000..66859720f1bc60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputCompositeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H2c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1H5V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4h-1c-.55 0-1 .45-1 1v5h6V7c0-.55-.45-1-1-1h-1V2zm4 14c0 1.3.84 2.4 2 2.82V22c0 .55.45 1 1 1s1-.45 1-1v-3.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z" +}), 'SettingsInputCompositeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputCompositeSharp.js b/packages/material-ui-icons/lib/esm/SettingsInputCompositeSharp.js new file mode 100644 index 00000000000000..af6eb026adb9c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputCompositeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z" +}), 'SettingsInputCompositeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputCompositeTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsInputCompositeTwoTone.js new file mode 100644 index 00000000000000..f34abd1e70790f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputCompositeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 16c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z" +}, "1")], 'SettingsInputCompositeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputHdmi.js b/packages/material-ui-icons/lib/esm/SettingsInputHdmi.js new file mode 100644 index 00000000000000..962a67fa729494 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputHdmi.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z" +}), 'SettingsInputHdmi'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputHdmiOutlined.js b/packages/material-ui-icons/lib/esm/SettingsInputHdmiOutlined.js new file mode 100644 index 00000000000000..887aae3765f22b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputHdmiOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53-3 6V20h-4v-1.47l-3-6V9h10v3.53z" +}), 'SettingsInputHdmiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputHdmiRounded.js b/packages/material-ui-icons/lib/esm/SettingsInputHdmiRounded.js new file mode 100644 index 00000000000000..beb3c508ce9569 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputHdmiRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-.55 0-1 .45-1 1v4.7c0 .2.06.39.17.55L8 19v2c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2l2.83-5.75c.11-.16.17-.36.17-.55V8c0-.55-.45-1-1-1zm-2 0h-2V5.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V7h-2V5.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V7H8V4h8v3z" +}), 'SettingsInputHdmiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputHdmiSharp.js b/packages/material-ui-icons/lib/esm/SettingsInputHdmiSharp.js new file mode 100644 index 00000000000000..2e4484938f2959 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputHdmiSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7V2H6v5H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z" +}), 'SettingsInputHdmiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputHdmiTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsInputHdmiTwoTone.js new file mode 100644 index 00000000000000..fc520ef69ba8a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputHdmiTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 9H7v3.53l2.79 5.58.21.42V20h4v-1.47l.21-.42L17 12.53V9h-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53-3 6V20h-4v-1.47l-3-6V9h10v3.53z" +}, "1")], 'SettingsInputHdmiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputSvideo.js b/packages/material-ui-icons/lib/esm/SettingsInputSvideo.js new file mode 100644 index 00000000000000..56bf3f21e41012 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputSvideo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'SettingsInputSvideo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputSvideoOutlined.js b/packages/material-ui-icons/lib/esm/SettingsInputSvideoOutlined.js new file mode 100644 index 00000000000000..8c0c66f743b06d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputSvideoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'SettingsInputSvideoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputSvideoRounded.js b/packages/material-ui-icons/lib/esm/SettingsInputSvideoRounded.js new file mode 100644 index 00000000000000..0d735c1bbd3e22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputSvideoRounded.js @@ -0,0 +1,23 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "11.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "11.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "16", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "16", + r: "1.5" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M15 7.5c0-.83-.67-1.5-1.5-1.5h-3C9.67 6 9 6.67 9 7.5S9.67 9 10.5 9h3c.83 0 1.5-.67 1.5-1.5z" +}, "5")], 'SettingsInputSvideoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputSvideoSharp.js b/packages/material-ui-icons/lib/esm/SettingsInputSvideoSharp.js new file mode 100644 index 00000000000000..c6740a1e7bdbe3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputSvideoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" +}), 'SettingsInputSvideoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsInputSvideoTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsInputSvideoTwoTone.js new file mode 100644 index 00000000000000..903ced52f58d2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsInputSvideoTwoTone.js @@ -0,0 +1,26 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm-7 8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zM8.5 18c-.83 0-1.5-.67-1.5-1.5S7.67 15 8.5 15s1.5.67 1.5 1.5S9.33 18 8.5 18zm2-10C9.67 8 9 7.33 9 6.5S9.67 5 10.5 5h3c.83 0 1.5.67 1.5 1.5S14.33 8 13.5 8h-3zm5 10c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 6.5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "16.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "17.5", + cy: "11.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9z" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "11.5", + r: "1.5" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "16.5", + r: "1.5" +}, "6")], 'SettingsInputSvideoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsOutlined.js b/packages/material-ui-icons/lib/esm/SettingsOutlined.js new file mode 100644 index 00000000000000..b4b50bad914a37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'SettingsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsOverscan.js b/packages/material-ui-icons/lib/esm/SettingsOverscan.js new file mode 100644 index 00000000000000..1178b140d114e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsOverscan.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 5.5 10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}), 'SettingsOverscan'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsOverscanOutlined.js b/packages/material-ui-icons/lib/esm/SettingsOverscanOutlined.js new file mode 100644 index 00000000000000..2694984b67fa34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsOverscanOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 5.5 10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}), 'SettingsOverscanOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsOverscanRounded.js b/packages/material-ui-icons/lib/esm/SettingsOverscanRounded.js new file mode 100644 index 00000000000000..78dfe9c1a66a6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsOverscanRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 7 10 9h4l-1.99-2zM17 10v4l2-1.99L17 10zM7 10l-2 2.01L7 14v-4zm7 5h-4l2.01 2L14 15zm6-11H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14.01H4V5.99h16v12.02z" +}), 'SettingsOverscanRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsOverscanSharp.js b/packages/material-ui-icons/lib/esm/SettingsOverscanSharp.js new file mode 100644 index 00000000000000..af4650500370a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsOverscanSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 5.5 10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm9-13H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" +}), 'SettingsOverscanSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsOverscanTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsOverscanTwoTone.js new file mode 100644 index 00000000000000..2833f96a9b5160 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsOverscanTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19.01h18V4.99H3v14.02zM18 10l2.5 2.01L18 14v-4zm-5.99-4.5L14 8h-4l2.01-2.5zM14 16l-1.99 2.5L10 16h4zm-8-6v4l-2.5-1.99L6 10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 16h-4l2.01 2.5zm4-6v4l2.5-1.99zm3-7H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM6 10l-2.5 2.01L6 14zm6.01-4.5L10 8h4z" +}, "1")], 'SettingsOverscanTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPhone.js b/packages/material-ui-icons/lib/esm/SettingsPhone.js new file mode 100644 index 00000000000000..bf1771c2ef2de3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPhone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 9h-2v2h2V9zm4 0h-2v2h2V9zm3 6.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 9v2h2V9h-2z" +}), 'SettingsPhone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPhoneOutlined.js b/packages/material-ui-icons/lib/esm/SettingsPhoneOutlined.js new file mode 100644 index 00000000000000..efe05deec014ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPhoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z" +}), 'SettingsPhoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPhoneRounded.js b/packages/material-ui-icons/lib/esm/SettingsPhoneRounded.js new file mode 100644 index 00000000000000..92e835ee7d00d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPhoneRounded.js @@ -0,0 +1,17 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "10", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "10", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "20", + cy: "10", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" +}, "3")], 'SettingsPhoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPhoneSharp.js b/packages/material-ui-icons/lib/esm/SettingsPhoneSharp.js new file mode 100644 index 00000000000000..efb32d9301896e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPhoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.21 17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52zM11 9h2v2h-2zm4 0h2v2h-2zm4 0h2v2h-2z" +}), 'SettingsPhoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPhoneTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsPhoneTwoTone.js new file mode 100644 index 00000000000000..e67d715ef58e48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPhoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z" +}, "1")], 'SettingsPhoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPower.js b/packages/material-ui-icons/lib/esm/SettingsPower.js new file mode 100644 index 00000000000000..64b25982731dfc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPower.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" +}), 'SettingsPower'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPowerOutlined.js b/packages/material-ui-icons/lib/esm/SettingsPowerOutlined.js new file mode 100644 index 00000000000000..132fe05aa3d443 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPowerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" +}), 'SettingsPowerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPowerRounded.js b/packages/material-ui-icons/lib/esm/SettingsPowerRounded.js new file mode 100644 index 00000000000000..27333419555651 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPowerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-22c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1zm3.94 3.06-.02.02c-.41.41-.36 1.08.08 1.46 1.51 1.34 2.33 3.43 1.88 5.7-.46 2.28-2.29 4.14-4.56 4.62C9.43 17.69 6 14.74 6 11c0-1.78.78-3.37 2.01-4.47.43-.39.47-1.04.07-1.45l-.02-.02c-.37-.37-.96-.39-1.36-.04-2.01 1.77-3.12 4.53-2.56 7.52.59 3.15 3.11 5.7 6.26 6.31 5.12.99 9.6-2.9 9.6-7.85 0-2.38-1.05-4.52-2.71-5.99-.39-.34-.98-.32-1.35.05zM16 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" +}), 'SettingsPowerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPowerSharp.js b/packages/material-ui-icons/lib/esm/SettingsPowerSharp.js new file mode 100644 index 00000000000000..1b26104851624a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPowerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" +}), 'SettingsPowerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsPowerTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsPowerTwoTone.js new file mode 100644 index 00000000000000..8ed1f8c652bbc7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsPowerTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" +}), 'SettingsPowerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsRemote.js b/packages/material-ui-icons/lib/esm/SettingsRemote.js new file mode 100644 index 00000000000000..86cf19eede6e3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsRemote.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" +}), 'SettingsRemote'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsRemoteOutlined.js b/packages/material-ui-icons/lib/esm/SettingsRemoteOutlined.js new file mode 100644 index 00000000000000..0b1ff4625e8d3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsRemoteOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m7.05 6.05 1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" +}, "2")], 'SettingsRemoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsRemoteRounded.js b/packages/material-ui-icons/lib/esm/SettingsRemoteRounded.js new file mode 100644 index 00000000000000..5cbeed4f5e7141 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsRemoteRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 5.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM7.82 6.82c.35.35.9.38 1.3.1C9.93 6.34 10.93 6 12 6c1.07 0 2.07.34 2.88.91.4.28.95.26 1.3-.09.43-.43.39-1.15-.09-1.5C14.94 4.49 13.53 4 12 4c-1.53 0-2.94.49-4.09 1.32-.49.35-.52 1.07-.09 1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 0C9.36 0 6.94.93 5.05 2.47c-.46.38-.5 1.07-.08 1.49.36.36.93.39 1.32.07C7.84 2.77 9.83 2 12 2s4.16.77 5.7 2.04c.39.32.96.29 1.32-.07.42-.42.38-1.11-.08-1.49C17.06.93 14.64 0 12 0z" +}, "1")], 'SettingsRemoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsRemoteSharp.js b/packages/material-ui-icons/lib/esm/SettingsRemoteSharp.js new file mode 100644 index 00000000000000..1a6694dab0ba6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsRemoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 9H8v14h8V9zm-4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" +}), 'SettingsRemoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsRemoteTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsRemoteTwoTone.js new file mode 100644 index 00000000000000..36ef65e1f75084 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsRemoteTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 21h4V11h-4v10zm2-9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "13", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m7.05 6.05 1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" +}, "3")], 'SettingsRemoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsRounded.js b/packages/material-ui-icons/lib/esm/SettingsRounded.js new file mode 100644 index 00000000000000..df23f4fcd3f7e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 12c0-.23-.01-.45-.03-.68l1.86-1.41c.4-.3.51-.86.26-1.3l-1.87-3.23c-.25-.44-.79-.62-1.25-.42l-2.15.91c-.37-.26-.76-.49-1.17-.68l-.29-2.31c-.06-.5-.49-.88-.99-.88h-3.73c-.51 0-.94.38-1 .88l-.29 2.31c-.41.19-.8.42-1.17.68l-2.15-.91c-.46-.2-1-.02-1.25.42L2.41 8.62c-.25.44-.14.99.26 1.3l1.86 1.41c-.02.22-.03.44-.03.67s.01.45.03.68l-1.86 1.41c-.4.3-.51.86-.26 1.3l1.87 3.23c.25.44.79.62 1.25.42l2.15-.91c.37.26.76.49 1.17.68l.29 2.31c.06.5.49.88.99.88h3.73c.5 0 .93-.38.99-.88l.29-2.31c.41-.19.8-.42 1.17-.68l2.15.91c.46.2 1 .02 1.25-.42l1.87-3.23c.25-.44.14-.99-.26-1.3l-1.86-1.41c.03-.23.04-.45.04-.68zm-7.46 3.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" +}), 'SettingsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSharp.js b/packages/material-ui-icons/lib/esm/SettingsSharp.js new file mode 100644 index 00000000000000..34e3de84092616 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.44 12.99-.01.02c.04-.33.08-.67.08-1.01 0-.34-.03-.66-.07-.99l.01.02 2.44-1.92-2.43-4.22-2.87 1.16.01.01c-.52-.4-1.09-.74-1.71-1h.01L14.44 2H9.57l-.44 3.07h.01c-.62.26-1.19.6-1.71 1l.01-.01-2.88-1.17-2.44 4.22 2.44 1.92.01-.02c-.04.33-.07.65-.07.99 0 .34.03.68.08 1.01l-.01-.02-2.1 1.65-.33.26 2.43 4.2 2.88-1.15-.02-.04c.53.41 1.1.75 1.73 1.01h-.03L9.58 22h4.85s.03-.18.06-.42l.38-2.65h-.01c.62-.26 1.2-.6 1.73-1.01l-.02.04 2.88 1.15 2.43-4.2s-.14-.12-.33-.26l-2.11-1.66zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" +}), 'SettingsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSuggest.js b/packages/material-ui-icons/lib/esm/SettingsSuggest.js new file mode 100644 index 00000000000000..d0629109318e6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSuggest.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.41 6.59 15 5.5l2.41-1.09L18.5 2l1.09 2.41L22 5.5l-2.41 1.09L18.5 9l-1.09-2.41zm3.87 6.13L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zm-5.04 1.65 1.94 1.47-2.5 4.33-2.24-.94c-.2.13-.42.26-.64.37l-.3 2.4h-5l-.3-2.41c-.22-.11-.43-.23-.64-.37l-2.24.94-2.5-4.33 1.94-1.47c-.01-.11-.01-.24-.01-.36s0-.25.01-.37l-1.94-1.47 2.5-4.33 2.24.94c.2-.13.42-.26.64-.37L7.5 6h5l.3 2.41c.22.11.43.23.64.37l2.24-.94 2.5 4.33-1.94 1.47c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" +}), 'SettingsSuggest'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSuggestOutlined.js b/packages/material-ui-icons/lib/esm/SettingsSuggestOutlined.js new file mode 100644 index 00000000000000..510686a491cddf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSuggestOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 13c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm8.5-2 1.09-2.41L22 5.5l-2.41-1.09L18.5 2l-1.09 2.41L15 5.5l2.41 1.09L18.5 9zm2.78 3.72L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zM16.25 14c0-.12 0-.25-.01-.37l1.94-1.47-2.5-4.33-2.24.94c-.2-.13-.42-.26-.64-.37L12.5 6h-5l-.3 2.41c-.22.11-.43.24-.64.37l-2.24-.95-2.5 4.33 1.94 1.47c-.01.12-.01.25-.01.37s0 .25.01.37l-1.94 1.47 2.5 4.33 2.24-.94c.2.13.42.26.64.37l.3 2.4h5l.3-2.41c.22-.11.43-.23.64-.37l2.24.94 2.5-4.33-1.94-1.47c.01-.11.01-.24.01-.36zm-1.42 3.64-1.73-.73c-.56.6-1.3 1.04-2.13 1.23L10.73 20H9.27l-.23-1.86c-.83-.19-1.57-.63-2.13-1.23l-1.73.73-.73-1.27 1.49-1.13c-.12-.39-.18-.8-.18-1.23 0-.43.06-.84.18-1.23l-1.49-1.13.73-1.27 1.73.73c.56-.6 1.3-1.04 2.13-1.23L9.27 8h1.47l.23 1.86c.83.19 1.57.63 2.13 1.23l1.73-.73.73 1.27-1.49 1.13c.12.39.18.8.18 1.23 0 .43-.06.84-.18 1.23l1.49 1.13-.73 1.29z" +}), 'SettingsSuggestOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSuggestRounded.js b/packages/material-ui-icons/lib/esm/SettingsSuggestRounded.js new file mode 100644 index 00000000000000..4fcd33f5726cd2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSuggestRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.04 7.99-.63-1.4-1.4-.63c-.39-.18-.39-.73 0-.91l1.4-.63.63-1.4c.18-.39.73-.39.91 0l.63 1.4 1.4.63c.39.18.39.73 0 .91l-1.4.63-.63 1.4c-.17.39-.73.39-.91 0zm3.24 4.73-.32-.72c-.18-.39-.73-.39-.91 0l-.32.72-.73.32c-.39.18-.39.73 0 .91l.72.32.32.73c.18.39.73.39.91 0l.32-.72.73-.32c.39-.18.39-.73 0-.91l-.72-.33zm-5.04 1.65 1.23.93c.4.3.51.86.26 1.3l-1.62 2.8c-.25.44-.79.62-1.25.42l-1.43-.6c-.2.13-.42.26-.64.37l-.19 1.54c-.06.5-.49.88-.99.88H8.38c-.5 0-.93-.38-.99-.88l-.19-1.54c-.22-.11-.43-.23-.64-.37l-1.43.6c-.46.2-1 .02-1.25-.42l-1.62-2.8c-.25-.44-.14-.99.26-1.3l1.23-.93V14c0-.12 0-.25.01-.37l-1.23-.93c-.4-.3-.51-.86-.26-1.3l1.62-2.8c.25-.44.79-.62 1.25-.42l1.43.6c.2-.13.42-.26.64-.37l.19-1.54c.05-.49.48-.87.98-.87h3.23c.5 0 .93.38.99.88l.19 1.54c.22.11.43.23.64.37l1.43-.6c.46-.2 1-.02 1.25.42l1.62 2.8c.25.44.14.99-.26 1.3l-1.23.93c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" +}), 'SettingsSuggestRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSuggestSharp.js b/packages/material-ui-icons/lib/esm/SettingsSuggestSharp.js new file mode 100644 index 00000000000000..56a85b4c5c22ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSuggestSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.41 6.59 15 5.5l2.41-1.09L18.5 2l1.09 2.41L22 5.5l-2.41 1.09L18.5 9l-1.09-2.41zm3.87 6.13L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zm-5.04 1.65 1.94 1.47-2.5 4.33-2.24-.94c-.2.13-.42.26-.64.37l-.3 2.4h-5l-.3-2.41c-.22-.11-.43-.23-.64-.37l-2.24.94-2.5-4.33 1.94-1.47c-.01-.11-.01-.24-.01-.36s0-.25.01-.37l-1.94-1.47 2.5-4.33 2.24.94c.2-.13.42-.26.64-.37L7.5 6h5l.3 2.41c.22.11.43.23.64.37l2.24-.94 2.5 4.33-1.94 1.47c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" +}), 'SettingsSuggestSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSuggestTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsSuggestTwoTone.js new file mode 100644 index 00000000000000..ec1bcea5e3d794 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSuggestTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.07 15.23c.12-.39.18-.8.18-1.23 0-.43-.06-.84-.18-1.23l1.49-1.13-.73-1.27-1.73.73c-.56-.6-1.3-1.04-2.13-1.23L10.73 8H9.27l-.24 1.86c-.83.19-1.57.63-2.13 1.23l-1.73-.73-.73 1.27 1.49 1.13c-.12.39-.18.8-.18 1.23 0 .43.06.84.18 1.23l-1.49 1.13.73 1.27 1.73-.73c.56.6 1.3 1.04 2.13 1.23L9.27 20h1.47l.23-1.86c.83-.19 1.57-.63 2.13-1.23l1.73.73.73-1.27-1.49-1.14zM10 17c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 13c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m0-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm8.5-2 1.09-2.41L22 5.5l-2.41-1.09L18.5 2l-1.09 2.41L15 5.5l2.41 1.09L18.5 9zm2.78 3.72L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zM16.25 14c0-.12 0-.25-.01-.37l1.94-1.47-2.5-4.33-2.24.94c-.2-.13-.42-.26-.64-.37L12.5 6h-5l-.3 2.41c-.22.11-.43.24-.64.37l-2.24-.95-2.5 4.33 1.94 1.47c-.01.12-.01.25-.01.37s0 .25.01.37l-1.94 1.47 2.5 4.33 2.24-.94c.2.13.42.26.64.37l.3 2.4h5l.3-2.41c.22-.11.43-.23.64-.37l2.24.94 2.5-4.33-1.94-1.47c.01-.11.01-.24.01-.36zm-1.42 3.64-1.73-.73c-.56.6-1.3 1.04-2.13 1.23L10.73 20H9.27l-.23-1.86c-.83-.19-1.57-.63-2.13-1.23l-1.73.73-.73-1.27 1.49-1.13c-.12-.39-.18-.8-.18-1.23 0-.43.06-.84.18-1.23l-1.49-1.13.73-1.27 1.73.73c.56-.6 1.3-1.04 2.13-1.23L9.27 8h1.47l.23 1.86c.83.19 1.57.63 2.13 1.23l1.73-.73.73 1.27-1.49 1.13c.12.39.18.8.18 1.23 0 .43-.06.84-.18 1.23l1.49 1.13-.73 1.29z" +}, "1")], 'SettingsSuggestTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSystemDaydream.js b/packages/material-ui-icons/lib/esm/SettingsSystemDaydream.js new file mode 100644 index 00000000000000..f2a01ef9d0cb28 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSystemDaydream.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}), 'SettingsSystemDaydream'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamOutlined.js b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamOutlined.js new file mode 100644 index 00000000000000..9aec6a7215c24d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 17H9c-2.21 0-4-1.79-4-4 0-1.93 1.36-3.56 3.22-3.92C9.04 7.8 10.47 7 12 7c1.95 0 3.66 1.28 4.26 3.09 1.58.36 2.74 1.75 2.74 3.41 0 1.93-1.57 3.5-3.5 3.5zm-6.76-5.98C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}), 'SettingsSystemDaydreamOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamRounded.js b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamRounded.js new file mode 100644 index 00000000000000..bdd7af602fc478 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.02c0 .55-.45 1-1 1z" +}), 'SettingsSystemDaydreamRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamSharp.js b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamSharp.js new file mode 100644 index 00000000000000..4a7d823949d3c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" +}), 'SettingsSystemDaydreamSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamTwoTone.js new file mode 100644 index 00000000000000..7397c226048183 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsSystemDaydreamTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 15h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 17h6.5c1.93 0 3.5-1.57 3.5-3.5 0-1.66-1.16-3.05-2.74-3.41C15.66 8.28 13.95 7 12 7c-1.53 0-2.96.8-3.78 2.08C6.36 9.44 5 11.07 5 13c0 2.21 1.79 4 4 4zm-.26-5.98h.74l.27-.57C10.16 9.57 11.04 9 12 9c1.23 0 2.29.92 2.46 2.14l.17.86h.87c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H9c-1.1 0-2-.9-2-2 0-1.01.74-1.85 1.74-1.98zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z" +}, "1")], 'SettingsSystemDaydreamTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsTwoTone.js new file mode 100644 index 00000000000000..3a6a10ff4f3253 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.28 8.6-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'SettingsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsVoice.js b/packages/material-ui-icons/lib/esm/SettingsVoice.js new file mode 100644 index 00000000000000..1d977d42f3a622 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsVoice.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" +}), 'SettingsVoice'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsVoiceOutlined.js b/packages/material-ui-icons/lib/esm/SettingsVoiceOutlined.js new file mode 100644 index 00000000000000..2da047f24f0532 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsVoiceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 22h2v2H7zm5-9c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" +}), 'SettingsVoiceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsVoiceRounded.js b/packages/material-ui-icons/lib/esm/SettingsVoiceRounded.js new file mode 100644 index 00000000000000..16cc16662bdf47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsVoiceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM9 10V4c0-1.66 1.34-3 3-3s3 1.34 3 3v6c0 1.66-1.34 3-3 3s-3-1.34-3-3zm8.91 0c.61 0 1.09.54 1 1.14-.49 3-2.89 5.34-5.91 5.78V19c0 .55-.45 1-1 1s-1-.45-1-1v-2.08c-3.02-.44-5.42-2.78-5.91-5.78-.1-.6.39-1.14 1-1.14.49 0 .9.36.98.85C7.48 13.21 9.53 15 12 15s4.52-1.79 4.93-4.15c.08-.49.49-.85.98-.85z" +}), 'SettingsVoiceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsVoiceSharp.js b/packages/material-ui-icons/lib/esm/SettingsVoiceSharp.js new file mode 100644 index 00000000000000..316f6bcb696d0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsVoiceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" +}), 'SettingsVoiceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SettingsVoiceTwoTone.js b/packages/material-ui-icons/lib/esm/SettingsVoiceTwoTone.js new file mode 100644 index 00000000000000..4213f77e614b80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SettingsVoiceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 11c.56 0 .99-.44.99-1L13 4c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 22h2v2H7zm5-9c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" +}, "1")], 'SettingsVoiceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenK.js b/packages/material-ui-icons/lib/esm/SevenK.js new file mode 100644 index 00000000000000..fc7f88380ee166 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 15H7.75l1.38-4.5H6.5V9H10c.67 0 1.15.65.96 1.29L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'SevenK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKOutlined.js b/packages/material-ui-icons/lib/esm/SevenKOutlined.js new file mode 100644 index 00000000000000..9995a6ee9bde8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.75 15H9.5l1.46-4.71C11.15 9.65 10.67 9 10 9H6.5v1.5h2.63L7.75 15zm6.75-2.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "1")], 'SevenKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKPlus.js b/packages/material-ui-icons/lib/esm/SevenKPlus.js new file mode 100644 index 00000000000000..dff06f0279023a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 15H6.25l1.38-4.5H5V9h3.5c.67 0 1.15.65.96 1.29L8 15zm8 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'SevenKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKPlusOutlined.js b/packages/material-ui-icons/lib/esm/SevenKPlusOutlined.js new file mode 100644 index 00000000000000..e16cd2172586ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKPlusOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.75 15H8.5l1.46-4.71C10.15 9.65 9.67 9 9 9H5.5v1.5h2.63L6.75 15zm5.75-2.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "1")], 'SevenKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKPlusRounded.js b/packages/material-ui-icons/lib/esm/SevenKPlusRounded.js new file mode 100644 index 00000000000000..736f8bc5073514 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.95 15h-.19c-.5 0-.86-.49-.72-.97l1.08-3.53H6.25c-.41 0-.75-.34-.75-.75S5.83 9 6.25 9H9c.67 0 1.15.65.96 1.29l-1.3 4.18c-.1.32-.39.53-.71.53zm6.64 0c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'SevenKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKPlusSharp.js b/packages/material-ui-icons/lib/esm/SevenKPlusSharp.js new file mode 100644 index 00000000000000..ce7684cffa85a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM8.5 15H6.75l1.38-4.5H5.5V9h4.86L8.5 15zm7.5 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'SevenKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/SevenKPlusTwoTone.js new file mode 100644 index 00000000000000..15656f4d294f05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKPlusTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zM5.5 9H9c.67 0 1.15.65.96 1.29L8.5 15H6.75l1.38-4.5H5.5V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6.75 15H8.5l1.46-4.71C10.15 9.65 9.67 9 9 9H5.5v1.5h2.63L6.75 15zm5.75-2.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "2")], 'SevenKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKRounded.js b/packages/material-ui-icons/lib/esm/SevenKRounded.js new file mode 100644 index 00000000000000..b266b68e6ad8c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8.95 15h-.19c-.5 0-.86-.49-.72-.97l1.08-3.53H7.25c-.41 0-.75-.34-.75-.75S6.84 9 7.25 9H10c.67 0 1.15.65.96 1.29l-1.3 4.18c-.09.32-.38.53-.71.53zm7.64 0c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'SevenKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKSharp.js b/packages/material-ui-icons/lib/esm/SevenKSharp.js new file mode 100644 index 00000000000000..4090da5b486527 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM9.5 15H7.75l1.38-4.5H6.5V9h4.86L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'SevenKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenKTwoTone.js b/packages/material-ui-icons/lib/esm/SevenKTwoTone.js new file mode 100644 index 00000000000000..f076757aeb6e02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenKTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zM6.5 9H10c.67 0 1.15.65.96 1.29L9.5 15H7.75l1.38-4.5H6.5V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.75 15H9.5l1.46-4.71C11.15 9.65 10.67 9 10 9H6.5v1.5h2.63L7.75 15zm6.75-2.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "2")], 'SevenKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenMp.js b/packages/material-ui-icons/lib/esm/SevenMp.js new file mode 100644 index 00000000000000..6fbd00c2ed4013 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2.5-7h-1.75L12.62 7H10V5.5h3.5c.67 0 1.15.65.96 1.29L13 11.5zm2.5 2.5H17v1.5h-1.5z" +}), 'SevenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenMpOutlined.js b/packages/material-ui-icons/lib/esm/SevenMpOutlined.js new file mode 100644 index 00000000000000..7de28c25eca12a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.25 11.5H13l1.46-4.71c.19-.64-.29-1.29-.96-1.29H10V7h2.62l-1.37 4.5z" +}, "2")], 'SevenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenMpRounded.js b/packages/material-ui-icons/lib/esm/SevenMpRounded.js new file mode 100644 index 00000000000000..6b99a51943666d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.5 14.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.12-6.25c-.56 0-.97-.54-.8-1.08L12.62 7h-1.87c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.67 0 1.15.65.96 1.29l-1.28 4.12c-.11.35-.43.59-.8.59zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'SevenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenMpSharp.js b/packages/material-ui-icons/lib/esm/SevenMpSharp.js new file mode 100644 index 00000000000000..18b84b2844de2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-1.25-7L12.62 7H10V5.5h4.87l-1.87 6h-1.75zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'SevenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SevenMpTwoTone.js b/packages/material-ui-icons/lib/esm/SevenMpTwoTone.js new file mode 100644 index 00000000000000..006a5efca15b5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SevenMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8-8h3.5c.67 0 1.15.65.96 1.29L13 11.5h-1.75L12.62 7H10V5.5zm-4 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11.25 11.5H13l1.46-4.71c.19-.64-.29-1.29-.96-1.29H10V7h2.62l-1.37 4.5z" +}, "4")], 'SevenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SeventeenMp.js b/packages/material-ui-icons/lib/esm/SeventeenMp.js new file mode 100644 index 00000000000000..d3eff42b576b17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SeventeenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm5 6h-1.75L14.62 7H12V5.5h3.5c.67 0 1.15.65.96 1.29L15 11.5zm.5 2.5H17v1.5h-1.5z" +}), 'SeventeenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SeventeenMpOutlined.js b/packages/material-ui-icons/lib/esm/SeventeenMpOutlined.js new file mode 100644 index 00000000000000..182fe227d58540 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SeventeenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm4.75 0H15l1.46-4.71c.19-.64-.29-1.29-.96-1.29H12V7h2.62l-1.37 4.5z" +}, "2")], 'SeventeenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SeventeenMpRounded.js b/packages/material-ui-icons/lib/esm/SeventeenMpRounded.js new file mode 100644 index 00000000000000..83a89fea5c77d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SeventeenMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 6.25c0-.41.34-.75.75-.75h2.75c.67 0 1.15.65.96 1.29l-1.28 4.12c-.11.35-.43.59-.8.59-.56 0-.97-.54-.8-1.08L14.62 7h-1.87c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'SeventeenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SeventeenMpSharp.js b/packages/material-ui-icons/lib/esm/SeventeenMpSharp.js new file mode 100644 index 00000000000000..9d31407b34254b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SeventeenMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm4 2.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM12 7V5.5h4.87l-1.87 6h-1.75L14.62 7H12zm6 10h-3v1.5h-1.5v-6H18V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'SeventeenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SeventeenMpTwoTone.js b/packages/material-ui-icons/lib/esm/SeventeenMpTwoTone.js new file mode 100644 index 00000000000000..3e7e72e6d58408 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SeventeenMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-8h3.5c.67 0 1.15.65.96 1.29L15 11.5h-1.75L14.62 7H12V5.5zm-5 0h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm4.75 0H15l1.46-4.71c.19-.64-.29-1.29-.96-1.29H12V7h2.62l-1.37 4.5z" +}, "4")], 'SeventeenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Share.js b/packages/material-ui-icons/lib/esm/Share.js new file mode 100644 index 00000000000000..19a224d8d364d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Share.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z" +}), 'Share'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareLocation.js b/packages/material-ui-icons/lib/esm/ShareLocation.js new file mode 100644 index 00000000000000..7840f625d852a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareLocation.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" +}, "1")], 'ShareLocation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareLocationOutlined.js b/packages/material-ui-icons/lib/esm/ShareLocationOutlined.js new file mode 100644 index 00000000000000..e838156660a354 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareLocationOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" +}, "1")], 'ShareLocationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareLocationRounded.js b/packages/material-ui-icons/lib/esm/ShareLocationRounded.js new file mode 100644 index 00000000000000..2d3e72250970f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareLocationRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.02 20.77c0 .64.59 1.13 1.21.99 1.12-.26 2.18-.7 3.12-1.3.53-.34.61-1.1.16-1.55-.32-.32-.83-.4-1.21-.16-.77.49-1.62.85-2.53 1.05-.45.1-.75.51-.75.97zM4.03 12c0-3.79 2.65-6.97 6.2-7.79.44-.1.75-.51.75-.96 0-.64-.6-1.13-1.22-.98C5.33 3.29 2.03 7.26 2.03 12s3.3 8.71 7.73 9.74c.62.15 1.22-.34 1.22-.98 0-.46-.31-.86-.75-.96-3.55-.83-6.2-4.01-6.2-7.8zm16.76-1c.64 0 1.13-.59.99-1.21-.26-1.12-.7-2.17-1.3-3.12-.34-.54-1.1-.61-1.55-.16-.32.32-.4.83-.15 1.21.49.76.85 1.61 1.05 2.53.09.45.5.75.96.75zm-3.44-7.45c-.95-.6-2-1.04-3.12-1.3-.62-.14-1.21.35-1.21.98 0 .45.3.87.74.96.91.2 1.77.57 2.53 1.05.39.24.89.17 1.21-.16.46-.44.39-1.19-.15-1.53zm1.57 13.94c.45.45 1.21.38 1.55-.16.6-.94 1.04-2 1.3-3.12.14-.62-.35-1.21-.98-1.21-.45 0-.87.3-.96.74-.2.91-.57 1.77-1.05 2.53-.26.39-.18.9.14 1.22z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.51 1.1 3.28 3.31 5.3.39.36.98.36 1.38 0C14.9 14.37 16 12.61 16 11.1zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" +}, "1")], 'ShareLocationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareLocationSharp.js b/packages/material-ui-icons/lib/esm/ShareLocationSharp.js new file mode 100644 index 00000000000000..1f6a2614a8bcbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareLocationSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" +}, "1")], 'ShareLocationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareLocationTwoTone.js b/packages/material-ui-icons/lib/esm/ShareLocationTwoTone.js new file mode 100644 index 00000000000000..0951b9329f00eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareLocationTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43c-1.11.86-2.44 1.44-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64 1.43 1.42c1.21-1.48 2.01-3.31 2.21-5.32h-2.02c-.18 1.46-.76 2.79-1.62 3.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9c-.59 0-1.07-.48-1.07-1.07 0-.59.48-1.07 1.07-1.07s1.07.48 1.07 1.07c0 .59-.48 1.07-1.07 1.07z" +}, "1")], 'ShareLocationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareOutlined.js b/packages/material-ui-icons/lib/esm/ShareOutlined.js new file mode 100644 index 00000000000000..6a0f7faa3a1194 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'ShareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareRounded.js b/packages/material-ui-icons/lib/esm/ShareRounded.js new file mode 100644 index 00000000000000..3cfefba6599773 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z" +}), 'ShareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareSharp.js b/packages/material-ui-icons/lib/esm/ShareSharp.js new file mode 100644 index 00000000000000..c54f8cc1072cea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z" +}), 'ShareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShareTwoTone.js b/packages/material-ui-icons/lib/esm/ShareTwoTone.js new file mode 100644 index 00000000000000..99ad00595a1368 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShareTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "5", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "12", + r: "1", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "19.02", + r: "1", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "3")], 'ShareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shield.js b/packages/material-ui-icons/lib/esm/Shield.js new file mode 100644 index 00000000000000..70903a8b7a70a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shield.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" +}), 'Shield'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShieldOutlined.js b/packages/material-ui-icons/lib/esm/ShieldOutlined.js new file mode 100644 index 00000000000000..eb6606567ea862 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShieldOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" +}), 'ShieldOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShieldRounded.js b/packages/material-ui-icons/lib/esm/ShieldRounded.js new file mode 100644 index 00000000000000..180ca26ea109cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShieldRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.3 2.26-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 4.83 3.13 9.37 7.43 10.75.37.12.77.12 1.14 0 4.3-1.38 7.43-5.91 7.43-10.75v-4.7c0-.83-.52-1.58-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01z" +}), 'ShieldRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShieldSharp.js b/packages/material-ui-icons/lib/esm/ShieldSharp.js new file mode 100644 index 00000000000000..14970f50a8801c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShieldSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" +}), 'ShieldSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShieldTwoTone.js b/packages/material-ui-icons/lib/esm/ShieldTwoTone.js new file mode 100644 index 00000000000000..43c5da42c78be9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShieldTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 6.39v4.7c0 4 2.55 7.7 6 8.83 3.45-1.13 6-4.82 6-8.83v-4.7l-6-2.25-6 2.25z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm6 9.09c0 4-2.55 7.7-6 8.83-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25 6 2.25v4.7z" +}, "1")], 'ShieldTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shop.js b/packages/material-ui-icons/lib/esm/Shop.js new file mode 100644 index 00000000000000..e87909741d12b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z" +}), 'Shop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shop2.js b/packages/material-ui-icons/lib/esm/Shop2.js new file mode 100644 index 00000000000000..e7eb5154df43e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shop2.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z" +}, "1")], 'Shop2'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shop2Outlined.js b/packages/material-ui-icons/lib/esm/Shop2Outlined.js new file mode 100644 index 00000000000000..0d0204bbc24e32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shop2Outlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 8v7l5.5-3.5z" +}, "2")], 'Shop2Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shop2Rounded.js b/packages/material-ui-icons/lib/esm/Shop2Rounded.js new file mode 100644 index 00000000000000..5f4cc9bc9cb7a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shop2Rounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H3V10c0-.55-.45-1-1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 11.09V8.91c0-.39.44-.63.77-.42l4.07 2.59c.31.2.31.65 0 .84l-4.07 2.59c-.33.21-.77-.03-.77-.42z" +}, "1")], 'Shop2Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shop2Sharp.js b/packages/material-ui-icons/lib/esm/Shop2Sharp.js new file mode 100644 index 00000000000000..21b7a2e3486b4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shop2Sharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 9H1v13h18v-2H3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 5V1h-8v4H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z" +}, "1")], 'Shop2Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shop2TwoTone.js b/packages/material-ui-icons/lib/esm/Shop2TwoTone.js new file mode 100644 index 00000000000000..d443d7fae391bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shop2TwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 16h14V7H7v9zm5-8 5.5 3.5L12 15V8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h16v-2H3V9z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 5V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 8v7l5.5-3.5z" +}, "3")], 'Shop2TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopOutlined.js b/packages/material-ui-icons/lib/esm/ShopOutlined.js new file mode 100644 index 00000000000000..924881de126703 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z" +}), 'ShopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopRounded.js b/packages/material-ui-icons/lib/esm/ShopRounded.js new file mode 100644 index 00000000000000..c5fc95d273963a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-4zm-6-2h4v2h-4V4zM9 17.07V9.83c0-.38.4-.62.74-.44l6.03 3.21c.33.18.36.65.04.86l-6.03 4.02c-.33.22-.78-.01-.78-.41z" +}), 'ShopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopSharp.js b/packages/material-ui-icons/lib/esm/ShopSharp.js new file mode 100644 index 00000000000000..fede6d698dbf93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z" +}), 'ShopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopTwo.js b/packages/material-ui-icons/lib/esm/ShopTwo.js new file mode 100644 index 00000000000000..0c4ff9e6e59a7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopTwo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z" +}), 'ShopTwo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopTwoOutlined.js b/packages/material-ui-icons/lib/esm/ShopTwoOutlined.js new file mode 100644 index 00000000000000..4730fcde455130 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopTwoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1 5.5-4L12 8z" +}), 'ShopTwoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopTwoRounded.js b/packages/material-ui-icons/lib/esm/ShopTwoRounded.js new file mode 100644 index 00000000000000..b8a73f23aa7171 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopTwoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h14c1.11 0 2-.89 2-2H4c-.55 0-1-.45-1-1v-9c0-.55-.45-1-1-1zm16-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3zm-6-2h4v2h-4V3zm0 11.02V8.84c0-.38.41-.62.74-.44l4.07 2.22c.32.18.35.63.05.84l-4.07 2.96c-.33.24-.79.01-.79-.4z" +}), 'ShopTwoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopTwoSharp.js b/packages/material-ui-icons/lib/esm/ShopTwoSharp.js new file mode 100644 index 00000000000000..61951af70ed062 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopTwoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9H1v13h18v-2H3V9zm15-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z" +}), 'ShopTwoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopTwoTone.js b/packages/material-ui-icons/lib/esm/ShopTwoTone.js new file mode 100644 index 00000000000000..74a51942e97c39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 19h16V8H4v11zM9 9l7.5 4L9 18V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 9v9l7.5-5z" +}, "1")], 'ShopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShopTwoTwoTone.js b/packages/material-ui-icons/lib/esm/ShopTwoTwoTone.js new file mode 100644 index 00000000000000..e39da4e464ed14 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShopTwoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 7v9h14V7H7zm5 8V8l5.5 3-5.5 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1 5.5-4L12 8z" +}, "1")], 'ShopTwoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBag.js b/packages/material-ui-icons/lib/esm/ShoppingBag.js new file mode 100644 index 00000000000000..1d8848f30c58b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBag.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 4c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2zm2-6c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 6c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2z" +}), 'ShoppingBag'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBagOutlined.js b/packages/material-ui-icons/lib/esm/ShoppingBagOutlined.js new file mode 100644 index 00000000000000..578b0f63553e8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBagOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6-2c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm6 16H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z" +}), 'ShoppingBagOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBagRounded.js b/packages/material-ui-icons/lib/esm/ShoppingBagRounded.js new file mode 100644 index 00000000000000..8fe651daf02039 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBagRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 4c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2zm2-6c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 6c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2z" +}), 'ShoppingBagRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBagSharp.js b/packages/material-ui-icons/lib/esm/ShoppingBagSharp.js new file mode 100644 index 00000000000000..14015eed4f140b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBagSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-4c0-2.21-1.79-4-4-4S8 3.79 8 6H4v16h16V6zm-10 5H8V8h2v3zm2-7c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 7h-2V8h2v3z" +}), 'ShoppingBagSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBagTwoTone.js b/packages/material-ui-icons/lib/esm/ShoppingBagTwoTone.js new file mode 100644 index 00000000000000..aa351798567d15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBagTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 20H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6-2c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm6 16H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z" +}, "1")], 'ShoppingBagTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBasket.js b/packages/material-ui-icons/lib/esm/ShoppingBasket.js new file mode 100644 index 00000000000000..5e8b5bfb045ad2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBasket.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.21 9-4.38-6.56c-.19-.28-.51-.42-.83-.42-.32 0-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1h-4.79zM9 9l3-4.4L15 9H9zm3 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'ShoppingBasket'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBasketOutlined.js b/packages/material-ui-icons/lib/esm/ShoppingBasketOutlined.js new file mode 100644 index 00000000000000..667de8f0f89510 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBasketOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8 14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'ShoppingBasketOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBasketRounded.js b/packages/material-ui-icons/lib/esm/ShoppingBasketRounded.js new file mode 100644 index 00000000000000..857e270c171e91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBasketRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9h-4.79l-4.39-6.57c-.4-.59-1.27-.59-1.66 0L6.77 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM11.99 4.79 14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'ShoppingBasketRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBasketSharp.js b/packages/material-ui-icons/lib/esm/ShoppingBasketSharp.js new file mode 100644 index 00000000000000..4ae410a36bb930 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBasketSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.21 9-4.39-6.57c-.4-.59-1.27-.59-1.66 0L6.77 9H.69L4 21h16.02l3.29-12h-6.1zm-5.22-4.21L14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'ShoppingBasketSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingBasketTwoTone.js b/packages/material-ui-icons/lib/esm/ShoppingBasketTwoTone.js new file mode 100644 index 00000000000000..f48a206dafa3d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingBasketTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m3.31 11 2.2 8.01L18.5 19l2.2-8H3.31zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8 14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}, "1")], 'ShoppingBasketTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingCart.js b/packages/material-ui-icons/lib/esm/ShoppingCart.js new file mode 100644 index 00000000000000..e7e6fa9fdbd074 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingCart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" +}), 'ShoppingCart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingCartOutlined.js b/packages/material-ui-icons/lib/esm/ShoppingCartOutlined.js new file mode 100644 index 00000000000000..cf0cacadfcf243 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingCartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" +}), 'ShoppingCartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingCartRounded.js b/packages/material-ui-icons/lib/esm/ShoppingCartRounded.js new file mode 100644 index 00000000000000..f019d7a94da5bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingCartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 3c0 .55.45 1 1 1h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.67-1.43c-.16-.35-.52-.57-.9-.57H2c-.55 0-1 .45-1 1zm16 15c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" +}), 'ShoppingCartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingCartSharp.js b/packages/material-ui-icons/lib/esm/ShoppingCartSharp.js new file mode 100644 index 00000000000000..038a87e8a5a3f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingCartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 18c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm0-3 1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21.7 4H5.21l-.94-2H1v2h2l3.6 7.59L3.62 17H19v-2H7z" +}), 'ShoppingCartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShoppingCartTwoTone.js b/packages/material-ui-icons/lib/esm/ShoppingCartTwoTone.js new file mode 100644 index 00000000000000..96d5ac55b7a00d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShoppingCartTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m15.55 11 2.76-5H6.16l2.37 5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" +}, "1")], 'ShoppingCartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortText.js b/packages/material-ui-icons/lib/esm/ShortText.js new file mode 100644 index 00000000000000..7c2fd38c0e1493 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortText.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z" +}), 'ShortText'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortTextOutlined.js b/packages/material-ui-icons/lib/esm/ShortTextOutlined.js new file mode 100644 index 00000000000000..b1bc1853fcb024 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortTextOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z" +}), 'ShortTextOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortTextRounded.js b/packages/material-ui-icons/lib/esm/ShortTextRounded.js new file mode 100644 index 00000000000000..8079dd0157110d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortTextRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 9h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 4h8c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'ShortTextRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortTextSharp.js b/packages/material-ui-icons/lib/esm/ShortTextSharp.js new file mode 100644 index 00000000000000..5561a94c49a5bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortTextSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z" +}), 'ShortTextSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortTextTwoTone.js b/packages/material-ui-icons/lib/esm/ShortTextTwoTone.js new file mode 100644 index 00000000000000..242657712edb57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortTextTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h16v2H4zm0 4h10v2H4z" +}), 'ShortTextTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shortcut.js b/packages/material-ui-icons/lib/esm/Shortcut.js new file mode 100644 index 00000000000000..2bc0ed129a905e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shortcut.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 11-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z" +}), 'Shortcut'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortcutOutlined.js b/packages/material-ui-icons/lib/esm/ShortcutOutlined.js new file mode 100644 index 00000000000000..72c2b69d49666a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortcutOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 5-1.41 1.41L15 7.83 17.17 10H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h9.17L15 14.17l-1.41 1.41L15 17l6-6-6-6z" +}), 'ShortcutOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortcutRounded.js b/packages/material-ui-icons/lib/esm/ShortcutRounded.js new file mode 100644 index 00000000000000..0d9b343b2b4cf2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortcutRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.29 10.29 16.7 6.7c-.62-.62-1.7-.18-1.7.71V10H8c-2.76 0-5 2.24-5 5v3c0 .55.45 1 1 1s1-.45 1-1v-3c0-1.65 1.35-3 3-3h7v2.59c0 .89 1.08 1.34 1.71.71l3.59-3.59c.38-.39.38-1.03-.01-1.42z" +}), 'ShortcutRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortcutSharp.js b/packages/material-ui-icons/lib/esm/ShortcutSharp.js new file mode 100644 index 00000000000000..f3adbc9227c058 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortcutSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 11-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z" +}), 'ShortcutSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShortcutTwoTone.js b/packages/material-ui-icons/lib/esm/ShortcutTwoTone.js new file mode 100644 index 00000000000000..a104dcae543f31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShortcutTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 11-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z" +}), 'ShortcutTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowChart.js b/packages/material-ui-icons/lib/esm/ShowChart.js new file mode 100644 index 00000000000000..88e23d6573229c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z" +}), 'ShowChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowChartOutlined.js b/packages/material-ui-icons/lib/esm/ShowChartOutlined.js new file mode 100644 index 00000000000000..d2c3ba8f9f0bd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z" +}), 'ShowChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowChartRounded.js b/packages/material-ui-icons/lib/esm/ShowChartRounded.js new file mode 100644 index 00000000000000..71c668ae1074ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4.2 17.78 5.3-5.3 3.25 3.25c.41.41 1.07.39 1.45-.04l7.17-8.07c.35-.39.33-.99-.04-1.37-.4-.4-1.07-.39-1.45.04l-6.39 7.18-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.09 6.1c-.39.39-.39 1.02 0 1.41l.09.09c.39.39 1.03.39 1.41 0z" +}), 'ShowChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowChartSharp.js b/packages/material-ui-icons/lib/esm/ShowChartSharp.js new file mode 100644 index 00000000000000..42a4db3ccbca1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z" +}), 'ShowChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowChartTwoTone.js b/packages/material-ui-icons/lib/esm/ShowChartTwoTone.js new file mode 100644 index 00000000000000..ec60ffae4f3c52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowChartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.5 13.48-4-4L2 16.99l1.5 1.5 6-6.01 4 4L22 6.92l-1.41-1.41z" +}), 'ShowChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shower.js b/packages/material-ui-icons/lib/esm/Shower.js new file mode 100644 index 00000000000000..dfec3370546041 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shower.js @@ -0,0 +1,29 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "17", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "17", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "20", + r: "1" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "20", + r: "1" +}, "6")], 'Shower'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowerOutlined.js b/packages/material-ui-icons/lib/esm/ShowerOutlined.js new file mode 100644 index 00000000000000..0ab5e5b21b8bc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 17c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-4v2H5v-2c0-3.53 2.61-6.43 6-6.92V3h2v2.08c3.39.49 6 3.39 6 6.92zm-2 0c0-2.76-2.24-5-5-5s-5 2.24-5 5h10zm-9 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'ShowerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowerRounded.js b/packages/material-ui-icons/lib/esm/ShowerRounded.js new file mode 100644 index 00000000000000..6cf16471d8bf2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowerRounded.js @@ -0,0 +1,29 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "17", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "17", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M13 5.08V4c0-.55-.45-1-1-1s-1 .45-1 1v1.08C7.61 5.57 5 8.47 5 12v1c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1c0-3.53-2.61-6.43-6-6.92z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "20", + r: "1" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "20", + r: "1" +}, "6")], 'ShowerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowerSharp.js b/packages/material-ui-icons/lib/esm/ShowerSharp.js new file mode 100644 index 00000000000000..8361c2d2e23190 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowerSharp.js @@ -0,0 +1,29 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "17", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "17", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "20", + r: "1" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "20", + r: "1" +}, "6")], 'ShowerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShowerTwoTone.js b/packages/material-ui-icons/lib/esm/ShowerTwoTone.js new file mode 100644 index 00000000000000..224b793b7b3bf1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShowerTwoTone.js @@ -0,0 +1,32 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 7c-2.76 0-5 2.24-5 5h10c0-2.76-2.24-5-5-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "20", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "17", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92zM7 12c0-2.76 2.24-5 5-5s5 2.24 5 5H7z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "20", + r: "1" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "17", + r: "1" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "17", + r: "1" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "1" +}, "7")], 'ShowerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Shuffle.js b/packages/material-ui-icons/lib/esm/Shuffle.js new file mode 100644 index 00000000000000..17b87f0f45fc48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Shuffle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" +}), 'Shuffle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleOn.js b/packages/material-ui-icons/lib/esm/ShuffleOn.js new file mode 100644 index 00000000000000..1a9d55f237bbce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleOn.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" +}), 'ShuffleOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleOnOutlined.js b/packages/material-ui-icons/lib/esm/ShuffleOnOutlined.js new file mode 100644 index 00000000000000..752246d5c5b05e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM5.41 4l5.18 5.17-1.41 1.42L4 5.42 5.41 4zM20 20h-6v-2h2.61l-3.2-3.2 1.42-1.42 3.13 3.13.04.04V14h2v6zm0-10h-2V7.42L5.41 20 4 18.59 16.58 6H14V4h6v6z" +}), 'ShuffleOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleOnRounded.js b/packages/material-ui-icons/lib/esm/ShuffleOnRounded.js new file mode 100644 index 00000000000000..bb578f7274a610 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM4.3 4.7c.39-.39 1.02-.39 1.41 0l4.47 4.47-1.42 1.4L4.3 6.11a.9959.9959 0 0 1 0-1.41zm15.29 14.8c0 .28-.22.5-.5.5H15.3c-.45 0-.67-.54-.36-.85l1.2-1.2-3.13-3.13 1.41-1.41 3.13 3.14 1.19-1.19c.31-.32.85-.1.85.35v3.79zm0-11.21c0 .45-.54.67-.85.36l-1.19-1.19L5.7 19.29c-.39.39-1.02.39-1.41 0a.9959.9959 0 0 1 0-1.41L16.13 6.04l-1.19-1.19c-.31-.31-.09-.85.36-.85h3.79c.28 0 .5.22.5.5v3.79z" +}), 'ShuffleOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleOnSharp.js b/packages/material-ui-icons/lib/esm/ShuffleOnSharp.js new file mode 100644 index 00000000000000..0748967bf9a8b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 1v22h22V1H1zm4.41 3 5.18 5.17-1.42 1.41L4 5.41 5.41 4zM20 20h-5.5l2.05-2.05-3.13-3.13 1.41-1.41 3.13 3.13L20 14.5V20zm0-10.5-2.04-2.04L5.41 20 4 18.59 16.54 6.04 14.5 4H20v5.5z" +}), 'ShuffleOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleOnTwoTone.js b/packages/material-ui-icons/lib/esm/ShuffleOnTwoTone.js new file mode 100644 index 00000000000000..69b7bd2de1f19b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleOnTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM5.41 4l5.18 5.17-1.42 1.41L4 5.41 5.41 4zM20 20h-5.5l2.05-2.05-3.13-3.13 1.41-1.41 3.13 3.13L20 14.5V20zm0-10.5-2.04-2.04L5.41 20 4 18.59 16.54 6.04 14.5 4H20v5.5z" +}), 'ShuffleOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleOutlined.js b/packages/material-ui-icons/lib/esm/ShuffleOutlined.js new file mode 100644 index 00000000000000..2c63c361df1e65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" +}), 'ShuffleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleRounded.js b/packages/material-ui-icons/lib/esm/ShuffleRounded.js new file mode 100644 index 00000000000000..f284494c3a9e44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.59 9.17 6.12 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l4.46 4.46 1.42-1.4zm4.76-4.32 1.19 1.19L4.7 17.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17.96 7.46l1.19 1.19c.31.31.85.09.85-.36V4.5c0-.28-.22-.5-.5-.5h-3.79c-.45 0-.67.54-.36.85zm-.52 8.56-1.41 1.41 3.13 3.13-1.2 1.2c-.31.31-.09.85.36.85h3.79c.28 0 .5-.22.5-.5v-3.79c0-.45-.54-.67-.85-.35l-1.19 1.19-3.13-3.14z" +}), 'ShuffleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleSharp.js b/packages/material-ui-icons/lib/esm/ShuffleSharp.js new file mode 100644 index 00000000000000..21665b9e3de5cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.59 9.17 5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" +}), 'ShuffleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShuffleTwoTone.js b/packages/material-ui-icons/lib/esm/ShuffleTwoTone.js new file mode 100644 index 00000000000000..0d59bd800cbc03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShuffleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-5.5l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5zM5.41 4 4 5.41l5.17 5.17 1.42-1.41zM20 20v-5.5l-2.04 2.04-3.13-3.13-1.41 1.41 3.13 3.13L14.5 20z" +}), 'ShuffleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShutterSpeed.js b/packages/material-ui-icons/lib/esm/ShutterSpeed.js new file mode 100644 index 00000000000000..d50e7feefe9f53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShutterSpeed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 1H9v2h6V1zm4.03 6.39 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" +}), 'ShutterSpeed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShutterSpeedOutlined.js b/packages/material-ui-icons/lib/esm/ShutterSpeedOutlined.js new file mode 100644 index 00000000000000..bfe3f98176be2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShutterSpeedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 1H9v2h6V1zm4.03 6.39 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" +}), 'ShutterSpeedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShutterSpeedRounded.js b/packages/material-ui-icons/lib/esm/ShutterSpeedRounded.js new file mode 100644 index 00000000000000..762d5aef93d004 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShutterSpeedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm9.03 4.39.75-.75c.38-.38.39-1.01 0-1.4l-.01-.01c-.39-.39-1.01-.38-1.4 0l-.75.75C16.07 4.74 14.12 4 12 4c-4.8 0-8.88 3.96-9 8.76C2.87 17.84 6.94 22 12 22c4.98 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.19-5h-3.7c-.38 0-.62.4-.45.74.56 1.12 1.44 2.01 2.57 2.57.23.11.52.02.65-.21l1.37-2.35c.19-.33-.05-.75-.44-.75zm3.92-7.35c-.23-.12-.52-.02-.65.2l-1.38 2.39c-.2.34.04.76.43.76h3.76c.38 0 .62-.4.45-.73-.58-1.13-1.49-2.04-2.61-2.62zm-.85 7.05c-.19-.34-.68-.35-.87-.01l-2.04 3.52c-.18.32.02.72.39.75 1.34.14 2.69-.18 3.83-.89.22-.14.28-.43.16-.66l-1.47-2.71zm-3.57-1.47L7.93 9.57c-.2-.3-.64-.3-.84 0-.81 1.16-1.17 2.57-1.05 3.98.02.26.24.45.5.45h3.35c.39 0 .63-.44.42-.77zm3.66-.49 2.02 3.74c.18.33.64.35.86.05.86-1.18 1.24-2.62 1.12-4.08-.02-.26-.25-.45-.5-.45h-3.05c-.39 0-.63.4-.45.74zm-3.8-1.57c.2.31.66.3.85-.02l1.94-3.35c.19-.32-.03-.72-.4-.76-1.36-.12-2.73.21-3.88.97-.22.15-.27.46-.13.68l1.62 2.48z" +}), 'ShutterSpeedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShutterSpeedSharp.js b/packages/material-ui-icons/lib/esm/ShutterSpeedSharp.js new file mode 100644 index 00000000000000..fe104ff868e3b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShutterSpeedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 1H9v2h6V1zm4.03 6.39 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" +}), 'ShutterSpeedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ShutterSpeedTwoTone.js b/packages/material-ui-icons/lib/esm/ShutterSpeedTwoTone.js new file mode 100644 index 00000000000000..eb3b863c6c24d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ShutterSpeedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm0 1c.46 0 .9.06 1.33.15l-2.72 4.7-2.32-3.56C9.31 7.49 10.6 7 12 7zm-6 6c0-1.54.59-2.95 1.55-4.01L10.81 14H6.09c-.05-.33-.09-.66-.09-1zm.35 2h5.33l-2.03 3.5.11.06c-1.59-.64-2.84-1.94-3.41-3.56zM12 19c-.48 0-.94-.06-1.39-.17l2.85-4.92 2.11 3.9c-1 .74-2.23 1.19-3.57 1.19zm6-6c0 1.6-.63 3.06-1.66 4.13L13.57 12h4.34c.05.33.09.66.09 1zm-5.74-2 2.05-3.54c1.56.65 2.77 1.94 3.34 3.54h-5.39z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm6.76-1.53L12.26 11h5.39c-.57-1.6-1.78-2.89-3.34-3.54zm-.98-.31C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7zM11.68 15H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm7.35-7.61 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zM9 1h6v2H9zm7.34 16.13C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-5.73 1.7c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92z" +}, "1")], 'ShutterSpeedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sick.js b/packages/material-ui-icons/lib/esm/Sick.js new file mode 100644 index 00000000000000..87ff0fa4223584 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sick.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 9c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2zm-3.5-2c0-.73.41-1.71.92-2.66C16.68 2.88 14.44 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12-1.93 0-3.5-1.57-3.5-3.5zm-1.88.38 1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06L13.5 9.5l2.12-2.12zm-8.3 1.06 1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06L8.38 9.5 7.32 8.44zM15.44 17c-.69-1.19-1.97-2-3.44-2s-2.75.81-3.44 2H6.88c.3-.76.76-1.43 1.34-1.99L5.24 13.3c-.45.26-1.01.28-1.49 0-.72-.41-.96-1.33-.55-2.05.41-.72 1.33-.96 2.05-.55.48.28.74.78.74 1.29l3.58 2.07c.73-.36 1.55-.56 2.43-.56 2.33 0 4.32 1.45 5.12 3.5h-1.68z" +}), 'Sick'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SickOutlined.js b/packages/material-ui-icons/lib/esm/SickOutlined.js new file mode 100644 index 00000000000000..315fb9a4383654 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SickOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.32 10.56 8.38 9.5 7.32 8.44l1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06zM4.5 9c.03 0 .05.01.08.01C5.77 6.07 8.64 4 12 4c2.19 0 4.16.88 5.61 2.3.15-.6.45-1.29.81-1.96C16.68 2.88 14.44 2 11.99 2c-4.88 0-8.94 3.51-9.81 8.14C2.74 9.44 3.59 9 4.5 9zM21 10.5c-.42 0-.82-.09-1.19-.22.12.55.19 1.13.19 1.72 0 4.42-3.58 8-8 8-3.36 0-6.23-2.07-7.42-5.01-.03 0-.05.01-.08.01-.52 0-1.04-.14-1.5-.4-.32-.18-.59-.42-.82-.7.89 4.61 4.93 8.1 9.8 8.1C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12zM21 3s-2 2.9-2 4 .9 2 2 2 2-.9 2-2-2-4-2-4zm-5.38 4.38L13.5 9.5l2.12 2.12 1.06-1.06-1.06-1.06 1.06-1.06-1.06-1.06zM8.56 17c.69-1.19 1.97-2 3.44-2s2.75.81 3.44 2h1.68c-.8-2.05-2.79-3.5-5.12-3.5-.87 0-1.7.2-2.43.57L5.99 12c0-.52-.26-1.02-.74-1.29-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.63.55 2.05.48.28 1.05.25 1.49 0l2.97 1.72c-.57.53-1.03 1.21-1.33 1.97h1.68z" +}), 'SickOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SickRounded.js b/packages/material-ui-icons/lib/esm/SickRounded.js new file mode 100644 index 00000000000000..16ee8ba3ed09bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SickRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 7c0 1.1-.9 2-2 2s-2-.9-2-2c0-.78.99-2.44 1.58-3.36.2-.31.64-.31.84 0C22.01 4.56 23 6.22 23 7zm-1.14 3.38c.08.53.14 1.07.14 1.62 0 5.52-4.48 10-10.01 10C6.47 22 2 17.52 2 12S6.47 2 11.99 2c2.45 0 4.69.88 6.43 2.34-.51.95-.92 1.93-.92 2.66 0 1.93 1.57 3.5 3.5 3.5.3 0 .58-.05.86-.12zm-7.83-.35 1.06 1.06c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06s-.77-.29-1.06 0l-1.06 1.06c-.29.29-.29.77 0 1.06zM8.38 9.5l-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l1.06-1.06c.29-.29.29-.77 0-1.06L8.91 7.91c-.29-.29-.77-.29-1.06 0s-.29.77 0 1.06l.53.53zm8.09 6.3c-1-1.39-2.62-2.3-4.47-2.3-.87 0-1.69.2-2.43.56L5.99 12c0-.52-.26-1.02-.74-1.29-.8-.46-1.84-.11-2.17.8-.21.57-.03 1.25.44 1.64.52.44 1.2.45 1.72.16l2.97 1.72c-.25.24-.48.5-.68.78-.36.49 0 1.19.62 1.19.23 0 .46-.1.6-.3.72-1.02 1.9-1.7 3.25-1.7s2.53.68 3.25 1.7c.14.19.36.3.6.3.62 0 .98-.7.62-1.2z" +}), 'SickRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SickSharp.js b/packages/material-ui-icons/lib/esm/SickSharp.js new file mode 100644 index 00000000000000..b2ad76b39b8ef2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SickSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 9c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2zm-3.5-2c0-.73.41-1.71.92-2.66C16.68 2.88 14.44 2 11.99 2 6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12-1.93 0-3.5-1.57-3.5-3.5zm-1.88.38 1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06L13.5 9.5l2.12-2.12zm-8.3 1.06 1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06L8.38 9.5 7.32 8.44zM15.44 17c-.69-1.19-1.97-2-3.44-2s-2.75.81-3.44 2H6.88c.3-.76.76-1.43 1.34-1.99L5.24 13.3c-.45.26-1.01.28-1.49 0-.72-.41-.96-1.33-.55-2.05.41-.72 1.33-.96 2.05-.55.48.28.74.78.74 1.29l3.58 2.07c.73-.36 1.55-.56 2.43-.56 2.33 0 4.32 1.45 5.12 3.5h-1.68z" +}), 'SickSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SickTwoTone.js b/packages/material-ui-icons/lib/esm/SickTwoTone.js new file mode 100644 index 00000000000000..375be5ddc55538 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SickTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.32 10.56 8.38 9.5 7.32 8.44l1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06zM4.5 9c.03 0 .05.01.08.01C5.77 6.07 8.64 4 12 4c2.19 0 4.16.88 5.61 2.3.15-.6.45-1.29.81-1.96C16.68 2.88 14.44 2 11.99 2c-4.88 0-8.94 3.51-9.81 8.14C2.74 9.44 3.59 9 4.5 9zM21 10.5c-.42 0-.82-.09-1.19-.22.12.55.19 1.13.19 1.72 0 4.42-3.58 8-8 8-3.36 0-6.23-2.07-7.42-5.01-.03 0-.05.01-.08.01-.52 0-1.04-.14-1.5-.4-.32-.18-.59-.42-.82-.7.89 4.61 4.93 8.1 9.8 8.1C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62-.28.07-.56.12-.86.12zM21 3s-2 2.9-2 4 .9 2 2 2 2-.9 2-2-2-4-2-4zm-5.38 4.38L13.5 9.5l2.12 2.12 1.06-1.06-1.06-1.06 1.06-1.06-1.06-1.06zM8.56 17c.69-1.19 1.97-2 3.44-2s2.75.81 3.44 2h1.68c-.8-2.05-2.79-3.5-5.12-3.5-.87 0-1.7.2-2.43.57L5.99 12c0-.52-.26-1.02-.74-1.29-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.63.55 2.05.48.28 1.05.25 1.49 0l2.97 1.72c-.57.53-1.03 1.21-1.33 1.97h1.68z" +}), 'SickTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular0Bar.js b/packages/material-ui-icons/lib/esm/SignalCellular0Bar.js new file mode 100644 index 00000000000000..81e76f4de9669f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular0Bar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" +}), 'SignalCellular0Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular0BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellular0BarOutlined.js new file mode 100644 index 00000000000000..1f75f8d11354ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular0BarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z" +}), 'SignalCellular0BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular0BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellular0BarRounded.js new file mode 100644 index 00000000000000..2e08fdeb933f27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular0BarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.41 22H21c.55 0 1-.45 1-1V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71zM20 20H6.83L20 6.83V20z" +}), 'SignalCellular0BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular0BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellular0BarSharp.js new file mode 100644 index 00000000000000..49daf31087a69f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular0BarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z" +}), 'SignalCellular0BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular0BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellular0BarTwoTone.js new file mode 100644 index 00000000000000..1f24ee1a2edbe9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular0BarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z" +}), 'SignalCellular0BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular1Bar.js b/packages/material-ui-icons/lib/esm/SignalCellular1Bar.js new file mode 100644 index 00000000000000..aceaadcf250a2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular1Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2z" + }), /*#__PURE__*/_jsx("path", { + d: "M12 12L2 22h10z" + })] +}), 'SignalCellular1Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular1BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellular1BarOutlined.js new file mode 100644 index 00000000000000..622a67e3519414 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular1BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M12 12L2 22h10V12z" + })] +}), 'SignalCellular1BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular1BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellular1BarRounded.js new file mode 100644 index 00000000000000..f88e53de5d4a7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular1BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" + }), /*#__PURE__*/_jsx("path", { + d: "M12 12l-8.29 8.29c-.63.63-.19 1.71.7 1.71H12V12z" + })] +}), 'SignalCellular1BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular1BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellular1BarSharp.js new file mode 100644 index 00000000000000..1c7a036e940c79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular1BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M12 12L2 22h10V12z" + })] +}), 'SignalCellular1BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular1BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellular1BarTwoTone.js new file mode 100644 index 00000000000000..60e7e01cbc01e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular1BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M12 12L2 22h10V12z" + })] +}), 'SignalCellular1BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular2Bar.js b/packages/material-ui-icons/lib/esm/SignalCellular2Bar.js new file mode 100644 index 00000000000000..cc9cdb60cc0ed6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular2Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 10L2 22h12z" + })] +}), 'SignalCellular2Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular2BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellular2BarOutlined.js new file mode 100644 index 00000000000000..1b655aa457646b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular2BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 10L2 22h12V10z" + })] +}), 'SignalCellular2BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular2BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellular2BarRounded.js new file mode 100644 index 00000000000000..2ebfe8736d8ebc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular2BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 10L3.71 20.29c-.63.63-.19 1.71.7 1.71H14V10z" + })] +}), 'SignalCellular2BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular2BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellular2BarSharp.js new file mode 100644 index 00000000000000..2cb8b704d0d944 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular2BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 10L2 22h12V10z" + })] +}), 'SignalCellular2BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular2BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellular2BarTwoTone.js new file mode 100644 index 00000000000000..2f172e701bf852 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular2BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 10L2 22h12V10z" + })] +}), 'SignalCellular2BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular3Bar.js b/packages/material-ui-icons/lib/esm/SignalCellular3Bar.js new file mode 100644 index 00000000000000..3081235fed1b7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular3Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2z" + }), /*#__PURE__*/_jsx("path", { + d: "M17 7L2 22h15z" + })] +}), 'SignalCellular3Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular3BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellular3BarOutlined.js new file mode 100644 index 00000000000000..02fd50ce1d6173 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular3BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M17 7L2 22h15V7z" + })] +}), 'SignalCellular3BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular3BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellular3BarRounded.js new file mode 100644 index 00000000000000..06099e7bb57582 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular3BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" + }), /*#__PURE__*/_jsx("path", { + d: "M17 7L3.71 20.29c-.63.63-.19 1.71.7 1.71H17V7z" + })] +}), 'SignalCellular3BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular3BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellular3BarSharp.js new file mode 100644 index 00000000000000..79aaa9d688cc84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular3BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M17 7L2 22h15V7z" + })] +}), 'SignalCellular3BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular3BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellular3BarTwoTone.js new file mode 100644 index 00000000000000..412093ffd3549d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular3BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M2 22h20V2L2 22z" + }), /*#__PURE__*/_jsx("path", { + d: "M17 7L2 22h15V7z" + })] +}), 'SignalCellular3BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular4Bar.js b/packages/material-ui-icons/lib/esm/SignalCellular4Bar.js new file mode 100644 index 00000000000000..e658d93ba66f88 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular4Bar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2z" +}), 'SignalCellular4Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular4BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellular4BarOutlined.js new file mode 100644 index 00000000000000..e1431a037aa3e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular4BarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22z" +}), 'SignalCellular4BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular4BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellular4BarRounded.js new file mode 100644 index 00000000000000..1a2158bde50050 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular4BarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" +}), 'SignalCellular4BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular4BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellular4BarSharp.js new file mode 100644 index 00000000000000..09ed6c82a473b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular4BarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22z" +}), 'SignalCellular4BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellular4BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellular4BarTwoTone.js new file mode 100644 index 00000000000000..c538317b960b64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellular4BarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 22h20V2L2 22z" +}), 'SignalCellular4BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularAlt.js b/packages/material-ui-icons/lib/esm/SignalCellularAlt.js new file mode 100644 index 00000000000000..ef2560788016fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h3v16h-3zM5 14h3v6H5zm6-5h3v11h-3z" +}), 'SignalCellularAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularAltOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularAltOutlined.js new file mode 100644 index 00000000000000..5005b6664ff99e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" +}), 'SignalCellularAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularAltRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularAltRounded.js new file mode 100644 index 00000000000000..5c128c1a8083b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 4c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-13c0-.83.67-1.5 1.5-1.5zm-12 10c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5S5 19.33 5 18.5v-3c0-.83.67-1.5 1.5-1.5zm6-5c.83 0 1.5.67 1.5 1.5v8c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-8c0-.83.67-1.5 1.5-1.5z" +}), 'SignalCellularAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularAltSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularAltSharp.js new file mode 100644 index 00000000000000..27fdd580b2eaa7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" +}), 'SignalCellularAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularAltTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularAltTwoTone.js new file mode 100644 index 00000000000000..171cd4e7ee47d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" +}), 'SignalCellularAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0Bar.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0Bar.js new file mode 100644 index 00000000000000..4e7e930c44bf83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0Bar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" +}), 'SignalCellularConnectedNoInternet0Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarOutlined.js new file mode 100644 index 00000000000000..7a485eef2a4758 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" +}), 'SignalCellularConnectedNoInternet0BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarRounded.js new file mode 100644 index 00000000000000..20ff5078d7323a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 18c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-3-2v2H2L22 2v6h-2V6.83L6.83 20H18z" +}), 'SignalCellularConnectedNoInternet0BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarSharp.js new file mode 100644 index 00000000000000..b4cfc357112998 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" +}), 'SignalCellularConnectedNoInternet0BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarTwoTone.js new file mode 100644 index 00000000000000..6c81fdb5ed4c73 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet0BarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" +}), 'SignalCellularConnectedNoInternet0BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1Bar.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1Bar.js new file mode 100644 index 00000000000000..6a7772b1c1e55b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8z" + }), /*#__PURE__*/_jsx("path", { + d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet1Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarOutlined.js new file mode 100644 index 00000000000000..15258885943f15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet1BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarRounded.js new file mode 100644 index 00000000000000..8fff198362b5f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H18V11c0-1.66 1.34-3 3-3h1z" + }), /*#__PURE__*/_jsx("path", { + d: "M20 11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1zm-8 11V12l-8.29 8.29c-.63.63-.19 1.71.7 1.71H12zm8 0h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet1BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarSharp.js new file mode 100644 index 00000000000000..becd293f7cf92c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet1BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarTwoTone.js new file mode 100644 index 00000000000000..2f6c9fc973d8c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet1BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet1BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2Bar.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2Bar.js new file mode 100644 index 00000000000000..ec5c12e02be11e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet2Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarOutlined.js new file mode 100644 index 00000000000000..622b95333f8ff5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet2BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarRounded.js new file mode 100644 index 00000000000000..993ba4a6e72153 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H18V11c0-1.66 1.34-3 3-3h1z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 22V10L3.71 20.29c-.63.63-.19 1.71.7 1.71H14zm6-11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1zm0 11h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet2BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarSharp.js new file mode 100644 index 00000000000000..a6065b98ba51d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet2BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarTwoTone.js new file mode 100644 index 00000000000000..6976a586047f61 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet2BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet2BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3Bar.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3Bar.js new file mode 100644 index 00000000000000..c2d26c11a1279c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8z" + }), /*#__PURE__*/_jsx("path", { + d: "M17 22V7L2 22h15zm3-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet3Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarOutlined.js new file mode 100644 index 00000000000000..6e03aa01b4bd6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet3BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarRounded.js new file mode 100644 index 00000000000000..eab6c4e6ca834e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71H18V11c0-1.66 1.34-3 3-3h1z" + }), /*#__PURE__*/_jsx("path", { + d: "M18 22V6L3.71 20.29c-.63.63-.19 1.71.7 1.71H18zm2-11v6c0 .55.45 1 1 1s1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1zm0 11h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet3BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarSharp.js new file mode 100644 index 00000000000000..79254f2dcbbde9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet3BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarTwoTone.js new file mode 100644 index 00000000000000..b9c2cd9ac989e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet3BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M22 8V2L2 22h16V8h4z" + }), /*#__PURE__*/_jsx("path", { + d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + })] +}), 'SignalCellularConnectedNoInternet3BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4Bar.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4Bar.js new file mode 100644 index 00000000000000..1804b9113e4363 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4Bar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" +}), 'SignalCellularConnectedNoInternet4Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarOutlined.js new file mode 100644 index 00000000000000..d5b6ea4de9019d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" +}), 'SignalCellularConnectedNoInternet4BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarRounded.js new file mode 100644 index 00000000000000..e4e0a5b7e9767b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 18c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4.41 22H18V11c0-1.66 1.34-3 3-3h1V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z" +}), 'SignalCellularConnectedNoInternet4BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarSharp.js new file mode 100644 index 00000000000000..bb1848fe0d067b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" +}), 'SignalCellularConnectedNoInternet4BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarTwoTone.js new file mode 100644 index 00000000000000..462e2079d9ec62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularConnectedNoInternet4BarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" +}), 'SignalCellularConnectedNoInternet4BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNoSim.js b/packages/material-ui-icons/lib/esm/SignalCellularNoSim.js new file mode 100644 index 00000000000000..9e7bcbdf85da6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNoSim.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88 2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z" +}), 'SignalCellularNoSim'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNoSimOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularNoSimOutlined.js new file mode 100644 index 00000000000000..c98051547a19ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNoSimOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z" +}), 'SignalCellularNoSimOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNoSimRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularNoSimRounded.js new file mode 100644 index 00000000000000..7a11088ed2f869 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNoSimRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5c0-1.1-.9-2-2-2h-6.17c-.53 0-1.04.21-1.42.59L7.95 5.06 19 16.11V5zM3.09 4.44c-.39.39-.39 1.02 0 1.41L5 7.78V19c0 1.11.9 2 2 2h11.23l.91.91c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.5 4.44a.9959.9959 0 0 0-1.41 0z" +}), 'SignalCellularNoSimRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNoSimSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularNoSimSharp.js new file mode 100644 index 00000000000000..d6dcea64c24abc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNoSimSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-9L7.95 5.06 19 16.11zm-15.21.74L2.38 5.15 5 7.77V21h13.23l1.62 1.62 1.41-1.41z" +}), 'SignalCellularNoSimSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNoSimTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularNoSimTwoTone.js new file mode 100644 index 00000000000000..1381ad5fad2f23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNoSimTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.83 5 9.36 6.47 17 14.11V5zM7 9.79V19h9.23z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z" +}, "1")], 'SignalCellularNoSimTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNodata.js b/packages/material-ui-icons/lib/esm/SignalCellularNodata.js new file mode 100644 index 00000000000000..7957875a0fd2f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNodata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" +}), 'SignalCellularNodata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNodataOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularNodataOutlined.js new file mode 100644 index 00000000000000..2b519b458d24c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNodataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" +}), 'SignalCellularNodataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNodataRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularNodataRounded.js new file mode 100644 index 00000000000000..834c9c6d508550 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNodataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-7c-1.1 0-2 .9-2 2v7H4.41c-.89 0-1.34-1.08-.71-1.71L20.29 3.71c.63-.63 1.71-.19 1.71.7V13zm-1.7 1.71a.9959.9959 0 0 0-1.41 0L17.5 16.1l-1.39-1.39a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.39 1.39-1.39 1.39c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.39-1.38 1.39 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.38-1.39 1.38-1.39c.39-.39.39-1.02 0-1.41z" +}), 'SignalCellularNodataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNodataSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularNodataSharp.js new file mode 100644 index 00000000000000..be7c2c9cddc4c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNodataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" +}), 'SignalCellularNodataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNodataTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularNodataTwoTone.js new file mode 100644 index 00000000000000..c5f7eb6b3cc1b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNodataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" +}), 'SignalCellularNodataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNull.js b/packages/material-ui-icons/lib/esm/SignalCellularNull.js new file mode 100644 index 00000000000000..231ff4eda255f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNull.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" +}), 'SignalCellularNull'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNullOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularNullOutlined.js new file mode 100644 index 00000000000000..23a3a3e9aae730 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNullOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" +}), 'SignalCellularNullOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNullRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularNullRounded.js new file mode 100644 index 00000000000000..c6f0a455e1a910 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNullRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.83V19c0 .55-.45 1-1 1H6.83L20 6.83m.29-3.12L3.71 20.29c-.63.63-.19 1.71.7 1.71H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.33-1.71-.7z" +}), 'SignalCellularNullRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNullSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularNullSharp.js new file mode 100644 index 00000000000000..71ee5a3ccb5e98 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNullSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" +}), 'SignalCellularNullSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularNullTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularNullTwoTone.js new file mode 100644 index 00000000000000..730aa6047b873a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularNullTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6.83V20H6.83L20 6.83M22 2 2 22h20V2z" +}), 'SignalCellularNullTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularOff.js b/packages/material-ui-icons/lib/esm/SignalCellularOff.js new file mode 100644 index 00000000000000..1f079406053f00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 1-8.59 8.59L21 18.18V1zM4.77 4.5 3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73 4.77 4.5z" +}), 'SignalCellularOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularOffOutlined.js b/packages/material-ui-icons/lib/esm/SignalCellularOffOutlined.js new file mode 100644 index 00000000000000..06b4d7b838f3f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 1-8.31 8.31 8.31 8.3zM4.91 4.36 3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" +}), 'SignalCellularOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularOffRounded.js b/packages/material-ui-icons/lib/esm/SignalCellularOffRounded.js new file mode 100644 index 00000000000000..90d2b2d67bc118 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3.41c0-.89-1.08-1.34-1.71-.71l-6.6 6.6L21 17.61V3.41zm.44 17.47L5.62 5.06a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l5.66 5.66-7.16 7.16c-.63.63-.19 1.71.7 1.71h15.32l1.29 1.29c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z" +}), 'SignalCellularOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularOffSharp.js b/packages/material-ui-icons/lib/esm/SignalCellularOffSharp.js new file mode 100644 index 00000000000000..a8c34084921fa1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 1-8.31 8.31 8.31 8.3zM4.91 4.36 3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" +}), 'SignalCellularOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalCellularOffTwoTone.js b/packages/material-ui-icons/lib/esm/SignalCellularOffTwoTone.js new file mode 100644 index 00000000000000..267e2a038920de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalCellularOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 1-8.31 8.31 8.31 8.3zM4.91 4.36 3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" +}), 'SignalCellularOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi0Bar.js b/packages/material-ui-icons/lib/esm/SignalWifi0Bar.js new file mode 100644 index 00000000000000..f971f5d95ffc03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi0Bar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c3.33 0 6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1C5.51 7.08 8.67 6 12 6m0-2C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" +}), 'SignalWifi0Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi0BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi0BarOutlined.js new file mode 100644 index 00000000000000..10efc347047559 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi0BarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifi0BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi0BarRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi0BarRounded.js new file mode 100644 index 00000000000000..81e5e3b42af5a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi0BarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifi0BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi0BarSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi0BarSharp.js new file mode 100644 index 00000000000000..f41b19307d9839 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi0BarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifi0BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi0BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi0BarTwoTone.js new file mode 100644 index 00000000000000..b26a8269fc8107 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi0BarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifi0BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1Bar.js b/packages/material-ui-icons/lib/esm/SignalWifi1Bar.js new file mode 100644 index 00000000000000..b3652370120e81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }), /*#__PURE__*/_jsx("path", { + d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + })] +}), 'SignalWifi1Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarLock.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarLock.js new file mode 100644 index 00000000000000..a3d61480bc8d48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarLock.js @@ -0,0 +1,14 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z", + opacity: ".3" + }), /*#__PURE__*/_jsx("path", { + d: "M6.7 14.9l5.3 6.6 3.5-4.3v-2.6c0-.2 0-.5.1-.7-.9-.5-2.2-.9-3.6-.9-3 0-5.1 1.7-5.3 1.9z" + })] +}), 'SignalWifi1BarLock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarLockOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockOutlined.js new file mode 100644 index 00000000000000..3116ae1070aad0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + })] +}), 'SignalWifi1BarLockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarLockRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockRounded.js new file mode 100644 index 00000000000000..cab6f35a7ae04a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l1.94-2.42V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l3.74 4.66c.8 1 2.32 1 3.12 0l1.94-2.42V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + })] +}), 'SignalWifi1BarLockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarLockSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockSharp.js new file mode 100644 index 00000000000000..d796b2ed489886 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockSharp.js @@ -0,0 +1,14 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66-1.33.09-2.34 1.16-2.34 2.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5z" + })] +}), 'SignalWifi1BarLockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarLockTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockTwoTone.js new file mode 100644 index 00000000000000..8eb97d29a7ba6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarLockTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + })] +}), 'SignalWifi1BarLockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarOutlined.js new file mode 100644 index 00000000000000..b37e8c1c632ffb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }), /*#__PURE__*/_jsx("path", { + d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + })] +}), 'SignalWifi1BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarRounded.js new file mode 100644 index 00000000000000..d45c43f998bb2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M6.67 14.86l3.77 4.7c.8 1 2.32 1 3.12 0l3.78-4.7C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" + })] +}), 'SignalWifi1BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarSharp.js new file mode 100644 index 00000000000000..3ad32be1c12095 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }), /*#__PURE__*/_jsx("path", { + d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + })] +}), 'SignalWifi1BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi1BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi1BarTwoTone.js new file mode 100644 index 00000000000000..9537f26a5f81e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi1BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }), /*#__PURE__*/_jsx("path", { + d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + })] +}), 'SignalWifi1BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2Bar.js b/packages/material-ui-icons/lib/esm/SignalWifi2Bar.js new file mode 100644 index 00000000000000..07614400183a5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }), /*#__PURE__*/_jsx("path", { + d: "M4.79 12.52l7.2 8.98H12l.01-.01 7.2-8.98C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + })] +}), 'SignalWifi2Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarLock.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarLock.js new file mode 100644 index 00000000000000..d5601ee02d0d18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarLock.js @@ -0,0 +1,14 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z", + opacity: ".3" + }), /*#__PURE__*/_jsx("path", { + d: "M4.8 12.5l7.2 9 3.5-4.4v-2.6c0-1.3.5-2.5 1.4-3.4C15.6 10.5 14 10 12 10c-4.1 0-6.8 2.2-7.2 2.5z" + })] +}), 'SignalWifi2BarLock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarLockOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockOutlined.js new file mode 100644 index 00000000000000..85d37f5bcec721 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + })] +}), 'SignalWifi2BarLockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarLockRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockRounded.js new file mode 100644 index 00000000000000..595c16a8d138c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l1.94-2.42V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l5.64 7.05c.8 1 2.32 1 3.12 0l1.94-2.42V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + })] +}), 'SignalWifi2BarLockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarLockSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockSharp.js new file mode 100644 index 00000000000000..a6a0604809ed16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockSharp.js @@ -0,0 +1,14 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + }), /*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5z" + })] +}), 'SignalWifi2BarLockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarLockTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockTwoTone.js new file mode 100644 index 00000000000000..c7c12bab965136 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarLockTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + })] +}), 'SignalWifi2BarLockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarOutlined.js new file mode 100644 index 00000000000000..8cd6db5c22530f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + })] +}), 'SignalWifi2BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarRounded.js new file mode 100644 index 00000000000000..b4f2f7aacd4a18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M4.79 12.52l5.65 7.04c.8 1 2.32 1 3.12 0l5.65-7.05C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + })] +}), 'SignalWifi2BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarSharp.js new file mode 100644 index 00000000000000..1f571839c68c3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + })] +}), 'SignalWifi2BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi2BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi2BarTwoTone.js new file mode 100644 index 00000000000000..48053280f7b50d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi2BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + })] +}), 'SignalWifi2BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3Bar.js b/packages/material-ui-icons/lib/esm/SignalWifi3Bar.js new file mode 100644 index 00000000000000..d628d59c5197dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3Bar.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + }), /*#__PURE__*/_jsx("path", { + d: "M3.53 10.95l8.46 10.54.01.01.01-.01 8.46-10.54C20.04 10.62 16.81 8 12 8c-4.81 0-8.04 2.62-8.47 2.95z" + })] +}), 'SignalWifi3Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarLock.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarLock.js new file mode 100644 index 00000000000000..f5618c351b1207 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarLock.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + d: "M12 3C5.3 3 .8 6.7.4 7l3.2 3.9L12 21.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7.3-.1.5-.2.8-.2.3-.1.6-.1.9-.1.4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4z", + opacity: ".3" + }), /*#__PURE__*/_jsx("path", { + d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-10 5.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7C17.3 9 14.9 8 12 8c-4.8 0-8 2.6-8.5 2.9" + })] +}), 'SignalWifi3BarLock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarLockOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockOutlined.js new file mode 100644 index 00000000000000..28ad5cddf9c95e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" + })] +}), 'SignalWifi3BarLockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarLockRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockRounded.js new file mode 100644 index 00000000000000..c66454a45e5391 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l1.94-2.42V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M15.5 14.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95l6.91 8.61c.8 1 2.32 1 3.12 0l1.94-2.42V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + })] +}), 'SignalWifi3BarLockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarLockSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockSharp.js new file mode 100644 index 00000000000000..1b2aa71afd3685 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66-1.33.09-2.34 1.16-2.34 2.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" + })] +}), 'SignalWifi3BarLockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarLockTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockTwoTone.js new file mode 100644 index 00000000000000..e04e281bcb3892 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarLockTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + }), /*#__PURE__*/_jsx("path", { + d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" + })] +}), 'SignalWifi3BarLockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarOutlined.js new file mode 100644 index 00000000000000..c662de301e6c65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarOutlined.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" + })] +}), 'SignalWifi3BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarRounded.js new file mode 100644 index 00000000000000..a9a8a64bb94354 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarRounded.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M3.53 10.95l6.91 8.61c.8 1 2.32 1 3.12 0l6.91-8.61C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" + })] +}), 'SignalWifi3BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarSharp.js new file mode 100644 index 00000000000000..24b8263e5e4015 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarSharp.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" + })] +}), 'SignalWifi3BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi3BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi3BarTwoTone.js new file mode 100644 index 00000000000000..7d022bceb030ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi3BarTwoTone.js @@ -0,0 +1,12 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +import { jsxs as _jsxs } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsxs(React.Fragment, { + children: [/*#__PURE__*/_jsx("path", { + fillOpacity: ".3", + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + }), /*#__PURE__*/_jsx("path", { + d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" + })] +}), 'SignalWifi3BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4Bar.js b/packages/material-ui-icons/lib/esm/SignalWifi4Bar.js new file mode 100644 index 00000000000000..25d3a555290dcd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4Bar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" +}), 'SignalWifi4Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarLock.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarLock.js new file mode 100644 index 00000000000000..52bbe4ad358aa1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarLock.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'SignalWifi4BarLock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarLockOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockOutlined.js new file mode 100644 index 00000000000000..7c69aa994bedda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'SignalWifi4BarLockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarLockRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockRounded.js new file mode 100644 index 00000000000000..413ddbe24f5e54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M23.21 8.24C20.22 5.6 16.3 4 12 4S3.78 5.6.79 8.24C.35 8.63.32 9.3.73 9.71l5.62 5.63 4.94 4.95c.39.39 1.02.39 1.42 0l2.34-2.34V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.94l1.29-1.29c.4-.41.37-1.08-.07-1.47z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'SignalWifi4BarLockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarLockSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockSharp.js new file mode 100644 index 00000000000000..d955e5520c41d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'SignalWifi4BarLockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarLockTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockTwoTone.js new file mode 100644 index 00000000000000..ef5d5c7c635391 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarLockTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'SignalWifi4BarLockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarOutlined.js new file mode 100644 index 00000000000000..a01652ed6e94f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" +}), 'SignalWifi4BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarRounded.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarRounded.js new file mode 100644 index 00000000000000..f819f5aea6e4ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z" +}), 'SignalWifi4BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarSharp.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarSharp.js new file mode 100644 index 00000000000000..6726fe88a2f7a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" +}), 'SignalWifi4BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifi4BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifi4BarTwoTone.js new file mode 100644 index 00000000000000..105ab8715e695d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifi4BarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 21.49 23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" +}), 'SignalWifi4BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiBad.js b/packages/material-ui-icons/lib/esm/SignalWifiBad.js new file mode 100644 index 00000000000000..b0ea98caf4411a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiBad.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiBad'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiBadOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifiBadOutlined.js new file mode 100644 index 00000000000000..e1b8e84e1896c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiBadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiBadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiBadRounded.js b/packages/material-ui-icons/lib/esm/SignalWifiBadRounded.js new file mode 100644 index 00000000000000..b5c81b419fcadb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiBadRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M23.21 8.24C20.22 5.6 16.3 4 12 4 7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.19.19.45.29.7.29V14c0-1.1.9-2 2-2h6.99l2.29-2.29c.41-.41.38-1.08-.06-1.47z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.3 14.71a.9959.9959 0 0 0-1.41 0l-1.39 1.38-1.39-1.38a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.39 1.39-1.39 1.39c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.39-1.38 1.39 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.38-1.39 1.38-1.39c.39-.39.39-1.02 0-1.41z" +}, "1")], 'SignalWifiBadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiBadSharp.js b/packages/material-ui-icons/lib/esm/SignalWifiBadSharp.js new file mode 100644 index 00000000000000..2a2c01b8c0a729 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiBadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiBadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiBadTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifiBadTwoTone.js new file mode 100644 index 00000000000000..4b8cf0aa5f7ee3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiBadTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiBadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4.js b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4.js new file mode 100644 index 00000000000000..87e8af45e2c3dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiConnectedNoInternet4'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Outlined.js b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Outlined.js new file mode 100644 index 00000000000000..5036d41576111e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiConnectedNoInternet4Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Rounded.js b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Rounded.js new file mode 100644 index 00000000000000..afa31b71a37857 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Rounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M23.21 8.24C20.22 5.6 16.3 4 12 4 7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.19.19.45.29.7.29V14c0-1.1.9-2 2-2h6.99l2.29-2.29c.41-.41.38-1.08-.06-1.47z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.3 14.71a.9959.9959 0 0 0-1.41 0l-1.39 1.38-1.39-1.38a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.39 1.39-1.39 1.39c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l1.39-1.38 1.39 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.38-1.39 1.38-1.39c.39-.39.39-1.02 0-1.41z" +}, "1")], 'SignalWifiConnectedNoInternet4Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Sharp.js b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Sharp.js new file mode 100644 index 00000000000000..2f42dafff7bc02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiConnectedNoInternet4Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4TwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4TwoTone.js new file mode 100644 index 00000000000000..64806c742d7f64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiConnectedNoInternet4TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" +}), 'SignalWifiConnectedNoInternet4TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiOff.js b/packages/material-ui-icons/lib/esm/SignalWifiOff.js new file mode 100644 index 00000000000000..65f9d156d99206 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.5 0-2.89.19-4.15.48L18.18 13.8 23.64 7zm-6.6 8.22L3.27 1.44 2 2.72l2.05 2.06C1.91 5.76.59 6.82.36 7l11.63 14.49.01.01.01-.01 3.9-4.86 3.32 3.32 1.27-1.27-3.46-3.46z" +}), 'SignalWifiOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiOffOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifiOffOutlined.js new file mode 100644 index 00000000000000..aa1e2549a6d622 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31 2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" +}), 'SignalWifiOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiOffRounded.js b/packages/material-ui-icons/lib/esm/SignalWifiOffRounded.js new file mode 100644 index 00000000000000..7eda392671fa18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM4.12 2.01a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.35 1.35C1.91 5.76.59 6.82.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l2.35-2.93 2.61 2.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 2.01z" +}), 'SignalWifiOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiOffSharp.js b/packages/material-ui-icons/lib/esm/SignalWifiOffSharp.js new file mode 100644 index 00000000000000..46f61d1ccca66c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31 2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" +}), 'SignalWifiOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiOffTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifiOffTwoTone.js new file mode 100644 index 00000000000000..e11a2b8bb65727 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31 2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" +}), 'SignalWifiOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4Bar.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4Bar.js new file mode 100644 index 00000000000000..d1e9f7a8e3f47d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4Bar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" +}), 'SignalWifiStatusbar4Bar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarOutlined.js new file mode 100644 index 00000000000000..4ae13c1f46559b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" +}), 'SignalWifiStatusbar4BarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarRounded.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarRounded.js new file mode 100644 index 00000000000000..43811a02a20beb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4z" +}), 'SignalWifiStatusbar4BarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarSharp.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarSharp.js new file mode 100644 index 00000000000000..6f4cd17fe020e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" +}), 'SignalWifiStatusbar4BarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarTwoTone.js new file mode 100644 index 00000000000000..2d46feea3652af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbar4BarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4z" +}), 'SignalWifiStatusbar4BarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4.js new file mode 100644 index 00000000000000..e6e266e588b6cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4zm7 14h2v2h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 10h2v6h-2z" +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Outlined.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Outlined.js new file mode 100644 index 00000000000000..9a1e5b24344a8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Outlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4zm7 14h2v2h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 10h2v6h-2z" +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Rounded.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Rounded.js new file mode 100644 index 00000000000000..3338f7fab314e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.92 8H17v7.99l-4.29 4.3c-.39.39-1.02.39-1.42 0L.73 9.71C.32 9.3.35 8.63.79 8.24 3.78 5.6 7.7 4 12 4c4.16 0 7.97 1.51 10.92 4zM20 18c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1z" +}), 'SignalWifiStatusbarConnectedNoInternet4Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Sharp.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Sharp.js new file mode 100644 index 00000000000000..1d42f5635638df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4Sharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 18h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4z" +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4TwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4TwoTone.js new file mode 100644 index 00000000000000..74cccfd000e9d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarConnectedNoInternet4TwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 18h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4z" +}, "1")], 'SignalWifiStatusbarConnectedNoInternet4TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNull.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNull.js new file mode 100644 index 00000000000000..ae7fe95fa15749 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNull.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifiStatusbarNull'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullOutlined.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullOutlined.js new file mode 100644 index 00000000000000..3f88913fbceba2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifiStatusbarNullOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullRounded.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullRounded.js new file mode 100644 index 00000000000000..717c97d1f15b46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47C20.22 5.6 16.3 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifiStatusbarNullRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullSharp.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullSharp.js new file mode 100644 index 00000000000000..827de4978e784d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifiStatusbarNullSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullTwoTone.js b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullTwoTone.js new file mode 100644 index 00000000000000..c305c07f116f29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SignalWifiStatusbarNullTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98C20.93 5.9 16.69 4 12 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" +}), 'SignalWifiStatusbarNullTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCard.js b/packages/material-ui-icons/lib/esm/SimCard.js new file mode 100644 index 00000000000000..ddd04e8ef1ea29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCard.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.99 4c0-1.1-.89-2-1.99-2h-8L4 8v12c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z" +}), 'SimCard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardAlert.js b/packages/material-ui-icons/lib/esm/SimCardAlert.js new file mode 100644 index 00000000000000..b07885bbec0d7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardAlert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z" +}), 'SimCardAlert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardAlertOutlined.js b/packages/material-ui-icons/lib/esm/SimCardAlertOutlined.js new file mode 100644 index 00000000000000..03f75db319cfc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardAlertOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-7h2v5h-2z" +}, "1")], 'SimCardAlertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardAlertRounded.js b/packages/material-ui-icons/lib/esm/SimCardAlertRounded.js new file mode 100644 index 00000000000000..f6a9eb9580dea8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardAlertRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.58.88-.58 1.4L4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z" +}), 'SimCardAlertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardAlertSharp.js b/packages/material-ui-icons/lib/esm/SimCardAlertSharp.js new file mode 100644 index 00000000000000..cac316603e7aa6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardAlertSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z" +}), 'SimCardAlertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardAlertTwoTone.js b/packages/material-ui-icons/lib/esm/SimCardAlertTwoTone.js new file mode 100644 index 00000000000000..0d46818c6173a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardAlertTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 8.83V20h12V4h-7.17L6 8.83zM11 8h2v5h-2V8zm0 7h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-7h2v5h-2z" +}, "2")], 'SimCardAlertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardDownload.js b/packages/material-ui-icons/lib/esm/SimCardDownload.js new file mode 100644 index 00000000000000..b7c179363390a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardDownload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 15-4-4h3V9.02L13 9v4h3l-4 4z" +}), 'SimCardDownload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardDownloadOutlined.js b/packages/material-ui-icons/lib/esm/SimCardDownloadOutlined.js new file mode 100644 index 00000000000000..b479b5cac00a7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardDownloadOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m16 13-4 4-4-4 1.41-1.41L11 13.17V9.02L13 9v4.17l1.59-1.59L16 13z" +}, "1")], 'SimCardDownloadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardDownloadRounded.js b/packages/material-ui-icons/lib/esm/SimCardDownloadRounded.js new file mode 100644 index 00000000000000..267f6b2aa059c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardDownloadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.59 7.41C4.21 7.79 4 8.3 4 8.83V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.35 14.65-2.79-2.79c-.32-.32-.1-.86.35-.86H11v-2.99c0-.55.44-.99.99-1 .56-.01 1.01.44 1.01 1V13h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.19.2-.51.2-.7.01z" +}), 'SimCardDownloadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardDownloadSharp.js b/packages/material-ui-icons/lib/esm/SimCardDownloadSharp.js new file mode 100644 index 00000000000000..719fe9eb584155 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardDownloadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H10L4 8v14h16V2zm-8 15-4-4h3V9.02L13 9v4h3l-4 4z" +}), 'SimCardDownloadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardDownloadTwoTone.js b/packages/material-ui-icons/lib/esm/SimCardDownloadTwoTone.js new file mode 100644 index 00000000000000..e75c7a30082f54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardDownloadTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 8.83V20h12V4h-7.17L6 8.83zm5 .19L13 9v4h3l-4 4-4-4h3V9.02z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m12 17 4-4h-3V9l-2 .02V13H8z" +}, "2")], 'SimCardDownloadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardOutlined.js b/packages/material-ui-icons/lib/esm/SimCardOutlined.js new file mode 100644 index 00000000000000..e500722a83fbe8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z" +}), 'SimCardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardRounded.js b/packages/material-ui-icons/lib/esm/SimCardRounded.js new file mode 100644 index 00000000000000..133c604743f36f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.99 4c0-1.1-.89-2-1.99-2h-7.17c-.53 0-1.04.21-1.42.59L4.59 7.41C4.21 7.79 4 8.3 4 8.83V20c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM8 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm4 4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm0-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 2c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'SimCardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardSharp.js b/packages/material-ui-icons/lib/esm/SimCardSharp.js new file mode 100644 index 00000000000000..49e8bb31ba944d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.99 2H10L4 8v14h16l-.01-20zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z" +}), 'SimCardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SimCardTwoTone.js b/packages/material-ui-icons/lib/esm/SimCardTwoTone.js new file mode 100644 index 00000000000000..b6328e1fc25c7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SimCardTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 8.83V20h12V4h-7.17L6 8.83zM9 19H7v-2h2v2zm0-4H7v-4h2v4zm6-4h2v4h-2v-4zm0 6h2v2h-2v-2zm-4-6h2v2h-2v-2zm0 4h2v4h-2v-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z" +}, "1")], 'SimCardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SingleBed.js b/packages/material-ui-icons/lib/esm/SingleBed.js new file mode 100644 index 00000000000000..3bb3f458dbd67f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SingleBed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-1.1-.9-2-2-2V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-5zm-4-2h-3V7h3v3zM8 7h3v3H8V7zm-2 5h12v3H6v-3z" +}), 'SingleBed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SingleBedOutlined.js b/packages/material-ui-icons/lib/esm/SingleBedOutlined.js new file mode 100644 index 00000000000000..f81b3dbdb6f8f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SingleBedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-1.1-.9-2-2-2V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-5zm-4-2h-3V7h3v3zM8 7h3v3H8V7zm-2 5h12v3H6v-3z" +}), 'SingleBedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SingleBedRounded.js b/packages/material-ui-icons/lib/esm/SingleBedRounded.js new file mode 100644 index 00000000000000..0c81ea3a1a1366 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SingleBedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33l.51 1.53c.1.28.36.47.66.47.3 0 .56-.19.66-.47L7.67 17h8.67l.51 1.53c.09.28.35.47.65.47.3 0 .56-.19.66-.47l.51-1.53H20v-5c0-1.1-.9-2-2-2zm-7 0H8V8c0-.55.45-1 1-1h2v3zm5 0h-3V7h2c.55 0 1 .45 1 1v2z" +}), 'SingleBedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SingleBedSharp.js b/packages/material-ui-icons/lib/esm/SingleBedSharp.js new file mode 100644 index 00000000000000..9ec6e677e583f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SingleBedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10V5H6v5H4v7h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-7h-2zm-7 0H8V7h3v3zm5 0h-3V7h3v3z" +}), 'SingleBedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SingleBedTwoTone.js b/packages/material-ui-icons/lib/esm/SingleBedTwoTone.js new file mode 100644 index 00000000000000..3b24d9897d1f1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SingleBedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 12h12v3H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 10V7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3c-1.1 0-2 .9-2 2v5h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-5c0-1.1-.9-2-2-2zm-5-3h3v3h-3V7zM8 7h3v3H8V7zm10 8H6v-3h12v3z" +}, "1")], 'SingleBedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sip.js b/packages/material-ui-icons/lib/esm/Sip.js new file mode 100644 index 00000000000000..64128c45ad9d04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sip.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 10.5h2v1h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-10 6.5H6.5v.75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h4v1.5zm3 4.5h-2V9h2v6zm6-3c0 .55-.45 1-1 1h-2.5v2H14V9h4c.55 0 1 .45 1 1v2z" +}, "1")], 'Sip'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SipOutlined.js b/packages/material-ui-icons/lib/esm/SipOutlined.js new file mode 100644 index 00000000000000..e3a0e3c06e4de7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SipOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm0 2v12h16V6H4zm7 3h2v6h-2V9zm3 0h4c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1h-2.5v2H14V9zm3.5 1.5h-2v1h2v-1zm-11 .75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h4v1.5H6.5v.75z" +}), 'SipOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SipRounded.js b/packages/material-ui-icons/lib/esm/SipRounded.js new file mode 100644 index 00000000000000..d48a931a754390 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SipRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 10.5h2v1h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM10 9.75c0 .41-.34.75-.75.75H6.5v.75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3.25c.41 0 .75.34.75.75zM12 15c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm7-3c0 .55-.45 1-1 1h-2.5v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v2z" +}, "1")], 'SipRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SipSharp.js b/packages/material-ui-icons/lib/esm/SipSharp.js new file mode 100644 index 00000000000000..7ca9904170f714 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SipSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 10.5h2v1h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-10 6.5H6.5v.75H10V15H5v-1.5h3.5v-.75H5V9h5v1.5zm3 4.5h-2V9h2v6zm6-6v4h-3.5v2H14V9h5z" +}, "1")], 'SipSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SipTwoTone.js b/packages/material-ui-icons/lib/esm/SipTwoTone.js new file mode 100644 index 00000000000000..e7c23fe469cd44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SipTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 10.5h2v1h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zm10-9h4c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1h-2.5v2H14V9zm-3 0h2v6h-2V9zm-6 4.5h3.5v-.75H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h4v1.5H6.5v.75H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 14v-1.75c0-.55-.45-1-1-1H6.5v-.75H10V9H6c-.55 0-1 .45-1 1v1.75c0 .55.45 1 1 1h2.5v.75H5V15h4c.55 0 1-.45 1-1z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11 9h2v6h-2zm4.5 4H18c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1h-4v6h1.5v-2zm0-2.5h2v1h-2v-1z" +}, "4")], 'SipTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixK.js b/packages/material-ui-icons/lib/esm/SixK.js new file mode 100644 index 00000000000000..707e34597e5830 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 12.5h1.5V14H8zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'SixK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKOutlined.js b/packages/material-ui-icons/lib/esm/SixKOutlined.js new file mode 100644 index 00000000000000..f9cefcbc13a236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5zM7.5 15H10c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H8v-1h3V9H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1.5V14H8v-1.5z" +}, "1")], 'SixKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKPlus.js b/packages/material-ui-icons/lib/esm/SixKPlus.js new file mode 100644 index 00000000000000..af02f9ff390d00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.5 12.5H8V14H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'SixKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKPlusOutlined.js b/packages/material-ui-icons/lib/esm/SixKPlusOutlined.js new file mode 100644 index 00000000000000..bcee1f172934ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKPlusOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5zM7 15h2c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1V14h-1v-1.5z" +}, "1")], 'SixKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKPlusRounded.js b/packages/material-ui-icons/lib/esm/SixKPlusRounded.js new file mode 100644 index 00000000000000..045b261b3bdbcd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 12.5h1V14h-1v-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.75 7.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75zm5.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'SixKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKPlusSharp.js b/packages/material-ui-icons/lib/esm/SixKPlusSharp.js new file mode 100644 index 00000000000000..d4bdc37173b395 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.5 12.5h1V14h-1v-1.5zM21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'SixKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/SixKPlusTwoTone.js new file mode 100644 index 00000000000000..3d789676d861b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKPlusTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 12.5h1V14h-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 1c0-.55.45-1 1-1h3v1.5H7.5v1H9c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12.5 12.75 14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5zM7 15h2c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H7.5v-1H10V9H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1V14h-1v-1.5z" +}, "3")], 'SixKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKRounded.js b/packages/material-ui-icons/lib/esm/SixKRounded.js new file mode 100644 index 00000000000000..3c2de51c5bfb65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 12.5h1.5V14H8v-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75zm6.34 4.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'SixKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKSharp.js b/packages/material-ui-icons/lib/esm/SixKSharp.js new file mode 100644 index 00000000000000..c24359806777d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 12.5h1.5V14H8v-1.5zM21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'SixKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixKTwoTone.js b/packages/material-ui-icons/lib/esm/SixKTwoTone.js new file mode 100644 index 00000000000000..3348f12f9acd06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixKTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 12.5h1.5V14H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 1c0-.55.45-1 1-1H11v1.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12.75 16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5zM7.5 15H10c.55 0 1-.45 1-1v-1.5c0-.55-.45-1-1-1H8v-1h3V9H7.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5h1.5V14H8v-1.5z" +}, "3")], 'SixKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixMp.js b/packages/material-ui-icons/lib/esm/SixMp.js new file mode 100644 index 00000000000000..50943db1224da6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm-1-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11zm4.5 7H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z" +}), 'SixMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixMpOutlined.js b/packages/material-ui-icons/lib/esm/SixMpOutlined.js new file mode 100644 index 00000000000000..28fe33c03b38d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H13v1.5h-1.5V9z" +}, "2")], 'SixMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixMpRounded.js b/packages/material-ui-icons/lib/esm/SixMpRounded.js new file mode 100644 index 00000000000000..e340b22f57aeda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixMpRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3.5c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H11.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm2.5 11.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v1.5h-1.5z" +}, "2")], 'SixMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixMpSharp.js b/packages/material-ui-icons/lib/esm/SixMpSharp.js new file mode 100644 index 00000000000000..4b35ecf63cea6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixMpSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm7 2.5h4.5V7h-3v1h3v3.5H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 9H13v1.5h-1.5z" +}, "2")], 'SixMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixMpTwoTone.js b/packages/material-ui-icons/lib/esm/SixMpTwoTone.js new file mode 100644 index 00000000000000..a31e331e6e99f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15zm-3.5-5H13v1.5h-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-8-7c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4zm-4 7c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H11c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H13v1.5h-1.5V9z" +}, "4")], 'SixMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixteenMp.js b/packages/material-ui-icons/lib/esm/SixteenMp.js new file mode 100644 index 00000000000000..31d0b35db290c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixteenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 9H15v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm3 6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13zm2.5 2.5H17v1.5h-1.5z" +}), 'SixteenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixteenMpOutlined.js b/packages/material-ui-icons/lib/esm/SixteenMpOutlined.js new file mode 100644 index 00000000000000..8f2679a9d278a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixteenMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H15v1.5h-1.5V9zm-5 2.5H10v-6H7V7h1.5z" +}, "2")], 'SixteenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixteenMpRounded.js b/packages/material-ui-icons/lib/esm/SixteenMpRounded.js new file mode 100644 index 00000000000000..24e92e20c09b7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixteenMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 9H15v1.5h-1.5zm1.5 5h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM12 10.5v-4c0-.55.45-1 1-1h2.75c.41 0 .75.34.75.75s-.34.75-.75.75H13.5v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1zm6 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'SixteenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixteenMpSharp.js b/packages/material-ui-icons/lib/esm/SixteenMpSharp.js new file mode 100644 index 00000000000000..c0df632918620b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixteenMpSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 2.5h4.5V7h-3v1h3v3.5H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13.5 9H15v1.5h-1.5z" +}, "2")], 'SixteenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixteenMpTwoTone.js b/packages/material-ui-icons/lib/esm/SixteenMpTwoTone.js new file mode 100644 index 00000000000000..f08bd551770023 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixteenMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-7c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4zm-5-1h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13.5 9H15v1.5h-1.5zm1.5 5h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M13 11.5h2.5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-2V7h3V5.5H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-2.5H15v1.5h-1.5V9zm-5 2.5H10v-6H7V7h1.5z" +}, "4")], 'SixteenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFps.js b/packages/material-ui-icons/lib/esm/SixtyFps.js new file mode 100644 index 00000000000000..703f1aa43a108b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFps.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 3V5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h5zm-2 5v3H5v-3h3z" +}), 'SixtyFps'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsOutlined.js b/packages/material-ui-icons/lib/esm/SixtyFpsOutlined.js new file mode 100644 index 00000000000000..51dcf59b4cb838 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 3V5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h5zm-2 5v3H5v-3h3z" +}), 'SixtyFpsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsRounded.js b/packages/material-ui-icons/lib/esm/SixtyFpsRounded.js new file mode 100644 index 00000000000000..5d7e97716ddb0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 1.5C10 5.67 9.33 5 8.5 5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h3.5c.83 0 1.5-.67 1.5-1.5zM8 13v3H5v-3h3z" +}), 'SixtyFpsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsSelect.js b/packages/material-ui-icons/lib/esm/SixtyFpsSelect.js new file mode 100644 index 00000000000000..8ee266f47cc7e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2V4H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'SixtyFpsSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsSelectOutlined.js b/packages/material-ui-icons/lib/esm/SixtyFpsSelectOutlined.js new file mode 100644 index 00000000000000..9eaa8dbe7a5a41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2V4H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'SixtyFpsSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsSelectRounded.js b/packages/material-ui-icons/lib/esm/SixtyFpsSelectRounded.js new file mode 100644 index 00000000000000..00cca68b67a23e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 1c0-.55-.45-1-1-1H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h4c.55 0 1-.45 1-1zm-2 5v2H6v-2h3zM4 22c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm8 0h-4c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1z" +}), 'SixtyFpsSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsSelectSharp.js b/packages/material-ui-icons/lib/esm/SixtyFpsSelectSharp.js new file mode 100644 index 00000000000000..cd6c65aa1403fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6v6h-3V6h3zm2-2h-7v10h7V4zm-9 2V4H4v10h7V8H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'SixtyFpsSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsSelectTwoTone.js b/packages/material-ui-icons/lib/esm/SixtyFpsSelectTwoTone.js new file mode 100644 index 00000000000000..db1241f9ae7f5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsSelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 6v6h-3V6h3zm0-2h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-7 2V4H6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'SixtyFpsSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsSharp.js b/packages/material-ui-icons/lib/esm/SixtyFpsSharp.js new file mode 100644 index 00000000000000..2bc707edb5ec21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8v8h-4V8h4m3-3H12v14h10V5zM10 8V5H2v14h9v-9H5V8h5zm-2 5v3H5v-3h3z" +}), 'SixtyFpsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SixtyFpsTwoTone.js b/packages/material-ui-icons/lib/esm/SixtyFpsTwoTone.js new file mode 100644 index 00000000000000..6b14e444f32be6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SixtyFpsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zm-9 3V5H5C3.34 5 2 6.34 2 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3v-3c0-1.66-1.34-3-3-3H5V8h5zm-2 5v3H5v-3h3z" +}), 'SixtyFpsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Skateboarding.js b/packages/material-ui-icons/lib/esm/Skateboarding.js new file mode 100644 index 00000000000000..6d507f40bd689a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Skateboarding.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.15-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" +}), 'Skateboarding'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkateboardingOutlined.js b/packages/material-ui-icons/lib/esm/SkateboardingOutlined.js new file mode 100644 index 00000000000000..387a3e88f8dd11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkateboardingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.15-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" +}), 'SkateboardingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkateboardingRounded.js b/packages/material-ui-icons/lib/esm/SkateboardingRounded.js new file mode 100644 index 00000000000000..befa3588a315b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkateboardingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-4.88c0-.69-.36-1.34-.95-1.7l-3.37-2.08 1.8-2.89c.96 1.53 2.54 2.64 4.39 2.96.6.11 1.13-.39 1.13-.99 0-.48-.35-.89-.83-.98-1.49-.28-2.72-1.29-3.3-2.64l-.52-1.21C14.16 5.64 13.61 5 12.7 5H8.11c-.69 0-1.33.36-1.7.94L5.03 8.15c-.29.47-.15 1.09.32 1.38.47.29 1.09.15 1.38-.32L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.15-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.21-2.67c.43-.52.57-1.21.37-1.86l-.68-2.27 3.5 2.2v4.6z" +}), 'SkateboardingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkateboardingSharp.js b/packages/material-ui-icons/lib/esm/SkateboardingSharp.js new file mode 100644 index 00000000000000..5fb882f68f5e80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkateboardingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.89 4.63 1.62 5.03-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.19-.36-.3-.6-.3-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" +}), 'SkateboardingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkateboardingTwoTone.js b/packages/material-ui-icons/lib/esm/SkateboardingTwoTone.js new file mode 100644 index 00000000000000..d9a4f5a4b83a46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkateboardingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5c-.24 0-.45.11-.59.3-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89C14.63 10.78 16.68 12 19 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.4 3.84c-.31.5-.39 1.11-.21 1.67l1.34 4.14-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12-.14-.18-.36-.29-.6-.29-.44 0-.75.36-.75.75 0 .15.05.31.15.45.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" +}), 'SkateboardingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipNext.js b/packages/material-ui-icons/lib/esm/SkipNext.js new file mode 100644 index 00000000000000..b88252e03e8f8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipNext.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 18 8.5-6L6 6v12zM16 6v12h2V6h-2z" +}), 'SkipNext'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipNextOutlined.js b/packages/material-ui-icons/lib/esm/SkipNextOutlined.js new file mode 100644 index 00000000000000..4ee793a6a39d33 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipNextOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 18 8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z" +}), 'SkipNextOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipNextRounded.js b/packages/material-ui-icons/lib/esm/SkipNextRounded.js new file mode 100644 index 00000000000000..addfad274ada53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipNextRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7.58 16.89 5.77-4.07c.56-.4.56-1.24 0-1.63L7.58 7.11C6.91 6.65 6 7.12 6 7.93v8.14c0 .81.91 1.28 1.58.82zM16 7v10c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'SkipNextRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipNextSharp.js b/packages/material-ui-icons/lib/esm/SkipNextSharp.js new file mode 100644 index 00000000000000..4d8a7e03c87d9b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipNextSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 18 8.5-6L6 6v12zM16 6v12h2V6h-2z" +}), 'SkipNextSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipNextTwoTone.js b/packages/material-ui-icons/lib/esm/SkipNextTwoTone.js new file mode 100644 index 00000000000000..cb4ac571b88371 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipNextTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 9.86v4.28L11.03 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12 6 6v12l8.5-6zM8 9.86 11.03 12 8 14.14V9.86zM16 6h2v12h-2z" +}, "1")], 'SkipNextTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipPrevious.js b/packages/material-ui-icons/lib/esm/SkipPrevious.js new file mode 100644 index 00000000000000..b016ea0b6a1328 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipPrevious.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 6h2v12H6zm3.5 6 8.5 6V6z" +}), 'SkipPrevious'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipPreviousOutlined.js b/packages/material-ui-icons/lib/esm/SkipPreviousOutlined.js new file mode 100644 index 00000000000000..f89eadd33f6718 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipPreviousOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 6h2v12H6zm3.5 6 8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z" +}), 'SkipPreviousOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipPreviousRounded.js b/packages/material-ui-icons/lib/esm/SkipPreviousRounded.js new file mode 100644 index 00000000000000..4e8d52ad60a20d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipPreviousRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1zm3.66 6.82 5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.57.4-.57 1.24 0 1.64z" +}), 'SkipPreviousRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipPreviousSharp.js b/packages/material-ui-icons/lib/esm/SkipPreviousSharp.js new file mode 100644 index 00000000000000..10cc47811b4598 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipPreviousSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 6h2v12H6V6zm3.5 6 8.5 6V6l-8.5 6z" +}), 'SkipPreviousSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SkipPreviousTwoTone.js b/packages/material-ui-icons/lib/esm/SkipPreviousTwoTone.js new file mode 100644 index 00000000000000..d5a17a749493d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SkipPreviousTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 14.14V9.86L12.97 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 6h2v12H6zm12 12V6l-8.5 6 8.5 6zm-2-3.86L12.97 12 16 9.86v4.28z" +}, "1")], 'SkipPreviousTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sledding.js b/packages/material-ui-icons/lib/esm/Sledding.js new file mode 100644 index 00000000000000..b07e0f8af2d1c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sledding.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm8.8 15.74c-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24 2.14-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.11.69 3.27 2.95 2.58 5.05zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" +}), 'Sledding'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SleddingOutlined.js b/packages/material-ui-icons/lib/esm/SleddingOutlined.js new file mode 100644 index 00000000000000..89d9a435e7fdc5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SleddingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm8.8 15.74c-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24 2.14-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.11.69 3.27 2.95 2.58 5.05zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" +}), 'SleddingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SleddingRounded.js b/packages/material-ui-icons/lib/esm/SleddingRounded.js new file mode 100644 index 00000000000000..854643c24414e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SleddingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm4.92 14.74c-.13.39-.55.61-.95.48l-2.61-.85-.46 1.43 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.36-1.12-.11-2.32-1.07-2.91-.32-.2-.45-.6-.3-.95.2-.44.71-.57 1.12-.31 1.52.95 2.25 2.85 1.68 4.62-.68 2.1-2.94 3.25-5.04 2.57L1.74 17.6c-.39-.13-.63-.54-.52-.93.12-.41.55-.63.95-.5l3.22 1.05.46-1.43-3.19-1.04c-.39-.13-.63-.54-.52-.93.12-.41.55-.63.95-.5l.91.28v-2.78c0-.8.48-1.52 1.21-1.84.75-.32 4.11-1.76 4.26-1.83.41-.18.89-.21 1.35-.04.91.34 1.37 1.36 1.07 2.28l-1.04 3.2 2.15-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.22.4c.4.12.61.54.48.94zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" +}), 'SleddingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SleddingSharp.js b/packages/material-ui-icons/lib/esm/SleddingSharp.js new file mode 100644 index 00000000000000..ecda7904715baf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SleddingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm3.22 13.4 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.1.68 3.25 2.94 2.57 5.04-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24L14.5 12l2.72 5.9zM6 14.25l.48.16.75-2.31.69-2.1-1.92.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" +}), 'SleddingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SleddingTwoTone.js b/packages/material-ui-icons/lib/esm/SleddingTwoTone.js new file mode 100644 index 00000000000000..e6f7a3adf4b990 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SleddingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm8.8 15.74c-.68 2.1-2.94 3.25-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24 2.14-.34c.89-.15 1.76.32 2.14 1.14l2.08 4.51 1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.11.69 3.27 2.95 2.58 5.05zM6 14.25l1.01.33c-.22-.42-.28-.92-.12-1.4L7.92 10 6 10.82v3.43zm7.94 4.16-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36-1.18-2.56-3.97.89 5.15 1.67z" +}), 'SleddingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Slideshow.js b/packages/material-ui-icons/lib/esm/Slideshow.js new file mode 100644 index 00000000000000..be5cf990e462bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Slideshow.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'Slideshow'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlideshowOutlined.js b/packages/material-ui-icons/lib/esm/SlideshowOutlined.js new file mode 100644 index 00000000000000..ac1ae64824e61f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlideshowOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}), 'SlideshowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlideshowRounded.js b/packages/material-ui-icons/lib/esm/SlideshowRounded.js new file mode 100644 index 00000000000000..c8ef0a59745442 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlideshowRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 9.04v5.92c0 .42.48.65.81.39l3.7-2.96c.25-.2.25-.58 0-.78l-3.7-2.96c-.33-.26-.81-.03-.81.39zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z" +}), 'SlideshowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlideshowSharp.js b/packages/material-ui-icons/lib/esm/SlideshowSharp.js new file mode 100644 index 00000000000000..76cbcaecb6bbb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlideshowSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8v8l5-4-5-4zm11-5H3v18h18V3zm-2 16H5V5h14v14z" +}), 'SlideshowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlideshowTwoTone.js b/packages/material-ui-icons/lib/esm/SlideshowTwoTone.js new file mode 100644 index 00000000000000..d22473bdddaec6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlideshowTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm5-11 5 4-5 4V8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM10 8v8l5-4z" +}, "1")], 'SlideshowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlowMotionVideo.js b/packages/material-ui-icons/lib/esm/SlowMotionVideo.js new file mode 100644 index 00000000000000..af90bb0dd94346 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlowMotionVideo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.05 9.79 10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" +}), 'SlowMotionVideo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlowMotionVideoOutlined.js b/packages/material-ui-icons/lib/esm/SlowMotionVideoOutlined.js new file mode 100644 index 00000000000000..916bf95c51e04f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlowMotionVideoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.05 9.79 10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" +}), 'SlowMotionVideoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlowMotionVideoRounded.js b/packages/material-ui-icons/lib/esm/SlowMotionVideoRounded.js new file mode 100644 index 00000000000000..1d99bd1cad6837 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlowMotionVideoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 8.5v7c0 .41.47.65.8.4l4.67-3.5c.27-.2.27-.6 0-.8L10.8 8.1c-.33-.25-.8-.01-.8.4zm1-5.27c0-.64-.59-1.13-1.21-.99-1.12.26-2.18.7-3.12 1.3-.53.34-.61 1.1-.16 1.55.32.32.83.4 1.21.16.77-.49 1.62-.85 2.54-1.05.44-.1.74-.51.74-.97zM5.1 6.51c-.46-.45-1.21-.38-1.55.16-.6.94-1.04 2-1.3 3.12-.14.62.34 1.21.98 1.21.45 0 .87-.3.96-.74.2-.91.57-1.77 1.05-2.53.26-.39.18-.9-.14-1.22zM3.23 13c-.64 0-1.13.59-.99 1.21.26 1.12.7 2.17 1.3 3.12.34.54 1.1.61 1.55.16.32-.32.4-.83.15-1.21-.49-.76-.85-1.61-1.05-2.53-.09-.45-.5-.75-.96-.75zm3.44 7.45c.95.6 2 1.04 3.12 1.3.62.14 1.21-.35 1.21-.98 0-.45-.3-.87-.74-.96-.91-.2-1.77-.57-2.53-1.05-.39-.24-.89-.17-1.21.16-.46.44-.39 1.19.15 1.53zM22 12c0 4.73-3.3 8.71-7.73 9.74-.62.15-1.22-.34-1.22-.98 0-.46.31-.86.75-.97 3.55-.82 6.2-4 6.2-7.79s-2.65-6.97-6.2-7.79c-.44-.1-.75-.51-.75-.97 0-.64.6-1.13 1.22-.98C18.7 3.29 22 7.27 22 12z" +}), 'SlowMotionVideoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlowMotionVideoSharp.js b/packages/material-ui-icons/lib/esm/SlowMotionVideoSharp.js new file mode 100644 index 00000000000000..c085a0c35c8e9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlowMotionVideoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.05 9.79 10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1 4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" +}), 'SlowMotionVideoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SlowMotionVideoTwoTone.js b/packages/material-ui-icons/lib/esm/SlowMotionVideoTwoTone.js new file mode 100644 index 00000000000000..13b44a660e14c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SlowMotionVideoTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m4.26 18.32 1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm11-8.95v2.02C16.97 4.59 20 7.95 20 12s-3.03 7.41-6.95 7.93v2.02C18.08 21.42 22 17.16 22 12c0-5.16-3.92-9.42-8.95-9.95zM16 12l-2.95-2.21L10 7.5v9l3.05-2.29zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z" +}), 'SlowMotionVideoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartButton.js b/packages/material-ui-icons/lib/esm/SmartButton.js new file mode 100644 index 00000000000000..9b64a5ecf4c8bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartButton.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.5 10 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14zm-2.5 5 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" +}), 'SmartButton'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartButtonOutlined.js b/packages/material-ui-icons/lib/esm/SmartButtonOutlined.js new file mode 100644 index 00000000000000..eaed929b7bf174 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartButtonOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.5 10 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14zm-2.5 5 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" +}), 'SmartButtonOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartButtonRounded.js b/packages/material-ui-icons/lib/esm/SmartButtonRounded.js new file mode 100644 index 00000000000000..a080160ebe48c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartButtonRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.96 8.99c.18.39.73.39.91 0l.63-1.4 1.4-.63c.39-.18.39-.73 0-.91l-1.4-.63-.63-1.4c-.18-.39-.73-.39-.91 0l-.63 1.4-1.4.63c-.39.18-.39.73 0 .91l1.4.63.63 1.4zm2.7-4.56c.1.22.42.22.52 0l.36-.8.8-.36c.22-.1.22-.42 0-.52l-.8-.36-.36-.8c-.1-.22-.42-.22-.52 0l-.36.8-.8.36c-.22.1-.22.42 0 .52l.8.36.36.8z" +}), 'SmartButtonRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartButtonSharp.js b/packages/material-ui-icons/lib/esm/SmartButtonSharp.js new file mode 100644 index 00000000000000..0b61a3faf799d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartButtonSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 17h-3v-2h1V9H4v6h6v2H2V7h20v10zm-7.5 2 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" +}), 'SmartButtonSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartButtonTwoTone.js b/packages/material-ui-icons/lib/esm/SmartButtonTwoTone.js new file mode 100644 index 00000000000000..dc66b4875f797f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartButtonTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 9v6c0 1.1-.9 2-2 2h-1v-2h1V9H4v6h6v2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-7.5 10 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14zm-2.5 5 1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5 .62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" +}), 'SmartButtonTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartDisplay.js b/packages/material-ui-icons/lib/esm/SmartDisplay.js new file mode 100644 index 00000000000000..a0661aecf2a171 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartDisplay.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.5 16.5v-9l7 4.5-7 4.5z" +}), 'SmartDisplay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartDisplayOutlined.js b/packages/material-ui-icons/lib/esm/SmartDisplayOutlined.js new file mode 100644 index 00000000000000..6534118d4e7d58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartDisplayOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.5 7.5v9l7-4.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14.01H4V5.99h16v12.02z" +}, "1")], 'SmartDisplayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartDisplayRounded.js b/packages/material-ui-icons/lib/esm/SmartDisplayRounded.js new file mode 100644 index 00000000000000..358ef840576910 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartDisplayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.5 14.67V9.33c0-.79.88-1.27 1.54-.84l4.15 2.67c.61.39.61 1.29 0 1.68l-4.15 2.67c-.66.43-1.54-.05-1.54-.84z" +}), 'SmartDisplayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartDisplaySharp.js b/packages/material-ui-icons/lib/esm/SmartDisplaySharp.js new file mode 100644 index 00000000000000..e8a0ce33b368ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartDisplaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zM9.5 16.5v-9l7 4.5-7 4.5z" +}), 'SmartDisplaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartDisplayTwoTone.js b/packages/material-ui-icons/lib/esm/SmartDisplayTwoTone.js new file mode 100644 index 00000000000000..74d02b1666ba51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartDisplayTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18.01h16V5.99H4v12.02zM9.5 7.5l7 4.5-7 4.5v-9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.5 7.5v9l7-4.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14.01H4V5.99h16v12.02z" +}, "2")], 'SmartDisplayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartScreen.js b/packages/material-ui-icons/lib/esm/SmartScreen.js new file mode 100644 index 00000000000000..3eef10bbc5cd8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartScreen.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 12H6V7h12v10z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 11.25h1.5v1.5H15zm-2.5 0H14v1.5h-1.5zm-2.5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z" +}, "1")], 'SmartScreen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartScreenOutlined.js b/packages/material-ui-icons/lib/esm/SmartScreenOutlined.js new file mode 100644 index 00000000000000..73d616058f44fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartScreenOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.5 11.25H14v1.5h-1.5zm2.5 0h1.5v1.5H15zm-5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM4 17H3V7h1v10zm14 0H6V7h12v10zm3 0h-1V7h1v10z" +}, "1")], 'SmartScreenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartScreenRounded.js b/packages/material-ui-icons/lib/esm/SmartScreenRounded.js new file mode 100644 index 00000000000000..d2d32b97a7ff0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartScreenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-3 2v10H6V7h12zm-4 5c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75zm-5 0c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75S9 12.41 9 12zm7.5 0c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75zm-5 0c0-.41-.34-.75-.75-.75s-.75.34-.75.75.34.75.75.75.75-.34.75-.75z" +}), 'SmartScreenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartScreenSharp.js b/packages/material-ui-icons/lib/esm/SmartScreenSharp.js new file mode 100644 index 00000000000000..44ef1bfe1e4a6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartScreenSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M1 5v14h22V5H1zm17 12H6V7h12v10z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12.5 11.25H14v1.5h-1.5zm2.5 0h1.5v1.5H15zm-5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z" +}, "1")], 'SmartScreenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartScreenTwoTone.js b/packages/material-ui-icons/lib/esm/SmartScreenTwoTone.js new file mode 100644 index 00000000000000..04bfcdfa185d03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartScreenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 17h1V7H3v10zM20 7v10h1V7h-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 11.25h-1.5v1.5H14v-1.5zm2.5 0H15v1.5h1.5v-1.5zm-5 0H10v1.5h1.5v-1.5zm-2.5 0H7.5v1.5H9v-1.5zM21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM4 17H3V7h1v10zm14 0H6V7h12v10zm3 0h-1V7h1v10z" +}, "1")], 'SmartScreenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartToy.js b/packages/material-ui-icons/lib/esm/SmartToy.js new file mode 100644 index 00000000000000..9b98c8c50722b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartToy.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z" +}), 'SmartToy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartToyOutlined.js b/packages/material-ui-icons/lib/esm/SmartToyOutlined.js new file mode 100644 index 00000000000000..633f2fb7ad9287 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartToyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zm-2 10H6V7h12v12zm-9-6c-.83 0-1.5-.67-1.5-1.5S8.17 10 9 10s1.5.67 1.5 1.5S9.83 13 9 13zm7.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM8 15h8v2H8v-2z" +}), 'SmartToyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartToyRounded.js b/packages/material-ui-icons/lib/esm/SmartToyRounded.js new file mode 100644 index 00000000000000..3d216f60c5f307 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartToyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM15 17H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z" +}), 'SmartToyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartToySharp.js b/packages/material-ui-icons/lib/esm/SmartToySharp.js new file mode 100644 index 00000000000000..b2207916b15814 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartToySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9V5h-5V2H9v3H4v4H1v6h3v6h16v-6h3V9h-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z" +}), 'SmartToySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartToyTwoTone.js b/packages/material-ui-icons/lib/esm/SmartToyTwoTone.js new file mode 100644 index 00000000000000..5aef230989f4ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartToyTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 7H6v12h12V7zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 15h8v2H8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 9V7c0-1.1-.9-2-2-2h-3c0-1.66-1.34-3-3-3S9 3.34 9 5H6c-1.1 0-2 .9-2 2v2c-1.66 0-3 1.34-3 3s1.34 3 3 3v4c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4c1.66 0 3-1.34 3-3s-1.34-3-3-3zm-2 10H6V7h12v12z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "11.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "11.5", + r: "1.5" +}, "4")], 'SmartToyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Smartphone.js b/packages/material-ui-icons/lib/esm/Smartphone.js new file mode 100644 index 00000000000000..d2b44d6b95c928 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Smartphone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'Smartphone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartphoneOutlined.js b/packages/material-ui-icons/lib/esm/SmartphoneOutlined.js new file mode 100644 index 00000000000000..f8890353bb5a0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartphoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'SmartphoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartphoneRounded.js b/packages/material-ui-icons/lib/esm/SmartphoneRounded.js new file mode 100644 index 00000000000000..67981dd78b1bc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartphoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'SmartphoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartphoneSharp.js b/packages/material-ui-icons/lib/esm/SmartphoneSharp.js new file mode 100644 index 00000000000000..eceffdceb7f2d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartphoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 1v22h14V1H5zm12 18H7V5h10v14z" +}), 'SmartphoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmartphoneTwoTone.js b/packages/material-ui-icons/lib/esm/SmartphoneTwoTone.js new file mode 100644 index 00000000000000..42fafc33894715 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmartphoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 5h10v14H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}, "1")], 'SmartphoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokeFree.js b/packages/material-ui-icons/lib/esm/SmokeFree.js new file mode 100644 index 00000000000000..6392774abcc9c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokeFree.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 6 6.99 7H2v3h9.99l7 7 1.26-1.25-17-17zm18.5 7H22v3h-1.5zM18 13h1.5v3H18zm.85-8.12c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.92c0-2.23-1.28-4.15-3.15-5.04zM14.5 8.7h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.59c0-1.8-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75V2c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm2.5 7.23V13h-2.93z" +}), 'SmokeFree'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokeFreeOutlined.js b/packages/material-ui-icons/lib/esm/SmokeFreeOutlined.js new file mode 100644 index 00000000000000..dc76e91a3a8f55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokeFreeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 0h-2.34L17 15.34zm-2.5-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm4.35-3.92c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM3.41 4.59 2 6l7 7H2v3h10l7 7 1.41-1.41z" +}), 'SmokeFreeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokeFreeRounded.js b/packages/material-ui-icons/lib/esm/SmokeFreeRounded.js new file mode 100644 index 00000000000000..bf98b6ae05114f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokeFreeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 1.5c0-.83-.67-1.5-1.5-1.5h-.84l2.18 2.18c.1-.21.16-.44.16-.68zm1.96-12.15H19h-.04zm-.11 2.38c.38-.38.67-.84.84-1.35.16-.5-.19-1.01-.71-1.02-.34.01-.61.25-.72.58-.18.55-.62.99-1.17 1.17-.34.11-.59.39-.59.74V5c0 .37.27.69.64.75 1.93.31 3.36 2 3.36 4.02v1.48c0 .41.34.75.75.75s.75-.34.75-.75V9.76c0-2.22-1.28-4.14-3.15-5.03zm-4.24 3.92h1.42c1.05 0 1.97.74 1.97 2.05v.55c0 .41.33.75.75.75h.01c.41 0 .75-.33.75-.75v-.89c0-1.81-1.6-3.16-3.47-3.16h-1.3c-1.02 0-1.94-.73-2.07-1.75-.12-.95.46-1.7 1.3-1.93.32-.09.54-.38.54-.72 0-.49-.46-.86-.93-.72-1.42.41-2.45 1.73-2.42 3.28.02 1.85 1.61 3.29 3.45 3.29zM4.12 5.29a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L9 13H3.5c-.83 0-1.5.67-1.5 1.5S2.67 16 3.5 16H12l6.29 6.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 5.29z" +}), 'SmokeFreeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokeFreeSharp.js b/packages/material-ui-icons/lib/esm/SmokeFreeSharp.js new file mode 100644 index 00000000000000..6e7634462461aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokeFreeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 13H22v3h-1.5zm-6-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zm1.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM18 13h1.5v3H18zM3.41 4.59 2 6l7 7H2v3h10l7 7 1.41-1.41z" +}), 'SmokeFreeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokeFreeTwoTone.js b/packages/material-ui-icons/lib/esm/SmokeFreeTwoTone.js new file mode 100644 index 00000000000000..1e22b68e80d147 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokeFreeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM14.5 8.65h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zM3.41 4.59 2 6l7 7H2v3h10l7 7 1.41-1.41z" +}), 'SmokeFreeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokingRooms.js b/packages/material-ui-icons/lib/esm/SmokingRooms.js new file mode 100644 index 00000000000000..bd79bb8e1bed62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokingRooms.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16h15v3H2zm18.5 0H22v3h-1.5zM18 16h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" +}), 'SmokingRooms'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokingRoomsOutlined.js b/packages/material-ui-icons/lib/esm/SmokingRoomsOutlined.js new file mode 100644 index 00000000000000..d762dfa033317b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokingRoomsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 16h1.5v3H18zM2 16h15v3H2zm14.03-5.8H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16zM20.5 16H22v3h-1.5zm-1.65-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03z" +}), 'SmokingRoomsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokingRoomsRounded.js b/packages/material-ui-icons/lib/esm/SmokingRoomsRounded.js new file mode 100644 index 00000000000000..f42e749838dcc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokingRoomsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 16h-12c-.83 0-1.5.67-1.5 1.5S2.67 19 3.5 19h12c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zm3.35-8.27c.62-.61 1-1.45 1-2.38 0-1.51-1-2.79-2.38-3.21-.48-.14-.97.22-.97.72 0 .33.21.62.52.71.77.23 1.33.94 1.33 1.78 0 .82-.53 1.51-1.27 1.76-.33.11-.58.39-.58.74V8c0 .37.27.69.64.75 1.93.31 3.36 2 3.36 4.02v1.48c0 .41.34.75.75.75s.75-.34.75-.75v-1.49c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47h-1.3c-1.02 0-1.94-.73-2.07-1.75-.12-.95.46-1.7 1.3-1.93.32-.09.54-.38.54-.72 0-.49-.46-.86-.93-.72-1.42.41-2.45 1.73-2.42 3.28.03 1.84 1.62 3.29 3.46 3.29h1.42c1.05 0 1.97.74 1.97 2.05v.55c0 .41.33.75.75.75h.01c.41 0 .75-.33.75-.75v-.89c-.01-1.81-1.61-3.16-3.48-3.16zM18 16h1.5v3H18zm2.5 0H22v3h-1.5z" +}), 'SmokingRoomsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokingRoomsSharp.js b/packages/material-ui-icons/lib/esm/SmokingRoomsSharp.js new file mode 100644 index 00000000000000..b97f32020299b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokingRoomsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" +}), 'SmokingRoomsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmokingRoomsTwoTone.js b/packages/material-ui-icons/lib/esm/SmokingRoomsTwoTone.js new file mode 100644 index 00000000000000..e8714439b78b65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmokingRoomsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" +}, "1")], 'SmokingRoomsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sms.js b/packages/material-ui-icons/lib/esm/Sms.js new file mode 100644 index 00000000000000..ddcb844a032aa1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sms.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" +}), 'Sms'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsFailed.js b/packages/material-ui-icons/lib/esm/SmsFailed.js new file mode 100644 index 00000000000000..aabe662991a730 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsFailed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z" +}), 'SmsFailed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsFailedOutlined.js b/packages/material-ui-icons/lib/esm/SmsFailedOutlined.js new file mode 100644 index 00000000000000..9ffbc05c265c52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsFailedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" +}), 'SmsFailedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsFailedRounded.js b/packages/material-ui-icons/lib/esm/SmsFailedRounded.js new file mode 100644 index 00000000000000..7d49149996a5d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsFailedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z" +}), 'SmsFailedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsFailedSharp.js b/packages/material-ui-icons/lib/esm/SmsFailedSharp.js new file mode 100644 index 00000000000000..0b4ea548e35633 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsFailedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z" +}), 'SmsFailedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsFailedTwoTone.js b/packages/material-ui-icons/lib/esm/SmsFailedTwoTone.js new file mode 100644 index 00000000000000..e16d26f794d7ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsFailedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17 5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" +}, "1")], 'SmsFailedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsOutlined.js b/packages/material-ui-icons/lib/esm/SmsOutlined.js new file mode 100644 index 00000000000000..67b19dc6da39ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z" +}), 'SmsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsRounded.js b/packages/material-ui-icons/lib/esm/SmsRounded.js new file mode 100644 index 00000000000000..27f23436c075df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" +}), 'SmsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsSharp.js b/packages/material-ui-icons/lib/esm/SmsSharp.js new file mode 100644 index 00000000000000..67a08f58fa6ffa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" +}), 'SmsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SmsTwoTone.js b/packages/material-ui-icons/lib/esm/SmsTwoTone.js new file mode 100644 index 00000000000000..95dd6ba62e4f1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SmsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17 5.17 16H20V4H4v13.17zM15 9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z" +}, "1")], 'SmsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnippetFolder.js b/packages/material-ui-icons/lib/esm/SnippetFolder.js new file mode 100644 index 00000000000000..d3a466b77cab1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnippetFolder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.88 10.5 1.62 1.62v3.38h-3v-5h1.38zM22 8v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h6l2 2h8c1.1 0 2 .9 2 2zm-3 3.5L16.5 9H13v8h6v-5.5z" +}), 'SnippetFolder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnippetFolderOutlined.js b/packages/material-ui-icons/lib/esm/SnippetFolderOutlined.js new file mode 100644 index 00000000000000..745363ae743fe3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnippetFolderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2.5-5.88v3.38h-3v-5h1.38l1.62 1.62zM13 9v8h6v-5.5L16.5 9H13z" +}), 'SnippetFolderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnippetFolderRounded.js b/packages/material-ui-icons/lib/esm/SnippetFolderRounded.js new file mode 100644 index 00000000000000..e3c1c45e099f45 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnippetFolderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.88 10.5 1.62 1.62v3.38h-3v-5h1.38zM22 8v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2h5.17c.53 0 1.04.21 1.41.59L12 6h8c1.1 0 2 .9 2 2zm-3 3.91c0-.27-.11-.52-.29-.71L16.8 9.29c-.19-.18-.45-.29-.71-.29H14c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.09z" +}), 'SnippetFolderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnippetFolderSharp.js b/packages/material-ui-icons/lib/esm/SnippetFolderSharp.js new file mode 100644 index 00000000000000..51c8cc355580f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnippetFolderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 6-2-2H2v16h20V6H12zm7 11h-6V9h3.5l2.5 2.5V17zm-3.12-6.5 1.62 1.62v3.38h-3v-5h1.38z" +}), 'SnippetFolderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnippetFolderTwoTone.js b/packages/material-ui-icons/lib/esm/SnippetFolderTwoTone.js new file mode 100644 index 00000000000000..307b19f5daeebc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnippetFolderTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.17 6H4v12h16V8h-8.83l-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2.5-5.88v3.38h-3v-5h1.38l1.62 1.62zM16.5 9H13v8h6v-5.5L16.5 9z" +}, "1")], 'SnippetFolderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Snooze.js b/packages/material-ui-icons/lib/esm/Snooze.js new file mode 100644 index 00000000000000..55d3b29c3ee4ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Snooze.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-3-9h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2z" +}), 'Snooze'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnoozeOutlined.js b/packages/material-ui-icons/lib/esm/SnoozeOutlined.js new file mode 100644 index 00000000000000..dab6d1ba1a1568 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnoozeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654 1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z" +}), 'SnoozeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnoozeRounded.js b/packages/material-ui-icons/lib/esm/SnoozeRounded.js new file mode 100644 index 00000000000000..aaf54c38b3ba84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnoozeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 11h2.63l-3.72 4.35C8.36 16 8.82 17 9.67 17H14c.55 0 1-.45 1-1s-.45-1-1-1h-2.63l3.72-4.35c.55-.65.09-1.65-.76-1.65H10c-.55 0-1 .45-1 1s.45 1 1 1zm11.3-4.58c-.35.42-.98.48-1.41.13l-3.07-2.56c-.42-.36-.48-.99-.12-1.41.35-.42.98-.48 1.41-.13l3.07 2.56c.42.36.48.99.12 1.41zm-18.6 0c.35.43.98.48 1.4.13l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z" +}), 'SnoozeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnoozeSharp.js b/packages/material-ui-icons/lib/esm/SnoozeSharp.js new file mode 100644 index 00000000000000..c715a389dee55d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnoozeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654 1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z" +}), 'SnoozeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnoozeTwoTone.js b/packages/material-ui-icons/lib/esm/SnoozeTwoTone.js new file mode 100644 index 00000000000000..567ac4c3606fba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnoozeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9zm8.337-9.19 4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0 1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" +}), 'SnoozeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Snowboarding.js b/packages/material-ui-icons/lib/esm/Snowboarding.js new file mode 100644 index 00000000000000..9de4faeb551747 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Snowboarding.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" +}), 'Snowboarding'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowboardingOutlined.js b/packages/material-ui-icons/lib/esm/SnowboardingOutlined.js new file mode 100644 index 00000000000000..fe30d5d0dfd49a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowboardingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" +}), 'SnowboardingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowboardingRounded.js b/packages/material-ui-icons/lib/esm/SnowboardingRounded.js new file mode 100644 index 00000000000000..04f43058a05bc7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowboardingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.35 9.53c.47.29 1.09.15 1.38-.32L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.08-.38-.16-.8-.59-.89-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-.88-5.43c-.08-.49-.34-.93-.72-1.24l-2.72-2.19 1.8-2.89c.96 1.53 2.54 2.64 4.39 2.96.6.11 1.13-.39 1.13-1 0-.48-.35-.89-.83-.98-1.49-.28-2.72-1.29-3.3-2.64l-.52-1.21C15.16 5.64 14.61 5 13.7 5H9.11c-.69 0-1.33.36-1.7.94L6.03 8.15c-.29.47-.15 1.09.32 1.38zm2.38 9.4 2.25-1.51c.47-.32.73-.88.65-1.44l-.32-2.4 2.84 2.02.75 4.64-6.17-1.31z" +}), 'SnowboardingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowboardingSharp.js b/packages/material-ui-icons/lib/esm/SnowboardingSharp.js new file mode 100644 index 00000000000000..a6f65bcee2d0a7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowboardingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35L8.5 11.7l1 4.3L6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" +}), 'SnowboardingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowboardingTwoTone.js b/packages/material-ui-icons/lib/esm/SnowboardingTwoTone.js new file mode 100644 index 00000000000000..bda462558261be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowboardingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09c-.23-.05-.46.02-.64.17-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89C15.63 10.78 17.68 12 20 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35l-2.51 3.99c-.28.45-.37 1-.25 1.52L9.5 16 6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67-.1-.21-.28-.37-.51-.42-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" +}), 'SnowboardingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Snowmobile.js b/packages/material-ui-icons/lib/esm/Snowmobile.js new file mode 100644 index 00000000000000..15ea357149c79a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Snowmobile.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-1-8-8-8-8h-3v2h2.25l1.45 1.3L11 11l-9.5-1L0 13l4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2z" +}), 'Snowmobile'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowmobileOutlined.js b/packages/material-ui-icons/lib/esm/SnowmobileOutlined.js new file mode 100644 index 00000000000000..eb5b87ffc5d8ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowmobileOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-1-8-8-8-8h-3v2h2.25l.8.72L11 10 2 9l-2 4 4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2zm9-4h-6.7l-7.45-2.23.31-.62 8.44.85 3.93-2.94s3.77 3.44 4.27 4.14c0 0-1.1.8-2.8.8z" +}), 'SnowmobileOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowmobileRounded.js b/packages/material-ui-icons/lib/esm/SnowmobileRounded.js new file mode 100644 index 00000000000000..31b4076a78aad3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowmobileRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6c0 .55.45 1 1 1h1.25l1.45 1.3L11 11l-9.12-.96c-1-.11-1.88.68-1.88 1.69 0 .75.49 1.41 1.21 1.63l3.33 1-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-2c-.55 0-1 .45-1 1s.45 1 1 1h5c1.13 0 2.11-.62 2.63-1.55.36-.65-.15-1.45-.9-1.45-.34 0-.68.16-.84.47-.17.31-.51.53-.89.53h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-.89-7.72-7.75-7.72-7.75-.18-.16-.41-.25-.66-.25H12c-.55 0-1 .45-1 1zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2z" +}), 'SnowmobileRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowmobileSharp.js b/packages/material-ui-icons/lib/esm/SnowmobileSharp.js new file mode 100644 index 00000000000000..d1004c7f607721 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowmobileSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C21.6 15.18 23 13 23 13l-9-8h-3v2h2.25l1.45 1.3L11 11l-9.5-1L0 13l4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2z" +}), 'SnowmobileSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowmobileTwoTone.js b/packages/material-ui-icons/lib/esm/SnowmobileTwoTone.js new file mode 100644 index 00000000000000..59b583b2e593e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowmobileTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 14h-6.7l-7.45-2.23.31-.62 8.44.85 3.93-2.94s3.77 3.44 4.27 4.14c0 0-1.1.8-2.8.8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C20.58 15.37 22 14.4 22 13c0-1-8-8-8-8h-3v2h2.25l.8.72L11 10 2 9l-2 4 4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16c0 1.1-.89 2-2 2zm9-4h-6.7l-7.45-2.23.31-.62 8.44.85 3.93-2.94s3.77 3.44 4.27 4.14c0 0-1.1.8-2.8.8z" +}, "1")], 'SnowmobileTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Snowshoeing.js b/packages/material-ui-icons/lib/esm/Snowshoeing.js new file mode 100644 index 00000000000000..ae0e7cf4b54006 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Snowshoeing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" +}), 'Snowshoeing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowshoeingOutlined.js b/packages/material-ui-icons/lib/esm/SnowshoeingOutlined.js new file mode 100644 index 00000000000000..218701e095124a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowshoeingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" +}), 'SnowshoeingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowshoeingRounded.js b/packages/material-ui-icons/lib/esm/SnowshoeingRounded.js new file mode 100644 index 00000000000000..08d049553ece35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowshoeingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.5 8.41c0-.49-.36-.9-.84-.98-1.53-.25-2.79-1.16-3.47-2.35l-1-1.58c-.4-.6-1-1-1.7-1-.68 0-1.28.28-4.77 1.76C7.49 8.07 7 8.8 7 9.6V12c0 .55.45 1 1 1s1-.45 1-1V9.58l1.79-.7L9.2 17l-2.88 2.03-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1 2.85-2.01c.38-.27.65-.66.77-1.1l.7-2.53 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-5.16c0-.55-.23-1.07-.62-1.45l-1.49-1.41.6-3c1.07 1.24 2.63 2.15 4.37 2.43.6.1 1.14-.39 1.14-1z" +}), 'SnowshoeingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowshoeingSharp.js b/packages/material-ui-icons/lib/esm/SnowshoeingSharp.js new file mode 100644 index 00000000000000..99c1280f8a0317 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowshoeingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" +}), 'SnowshoeingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SnowshoeingTwoTone.js b/packages/material-ui-icons/lib/esm/SnowshoeingTwoTone.js new file mode 100644 index 00000000000000..e85242a61108a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SnowshoeingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07-.08-.1-.2-.17-.31-.22-.43-.18-.82-.45-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" +}), 'SnowshoeingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Soap.js b/packages/material-ui-icons/lib/esm/Soap.js new file mode 100644 index 00000000000000..e9da54fd39de5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Soap.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.12 5-7.18 6.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25S19.44 10 18.75 10H8.86c.64-1.11 1.48-2.58 1.49-2.61.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7C10.22 6.12 9.12 5 9.12 5zM14 6.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5c-1.24 0-2.25 1.01-2.25 2.25S12.76 9.25 14 9.25 16.25 8.24 16.25 7 15.24 4.75 14 4.75zm5.75.75c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5m0-1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM16.5 1c-.83 0-1.5.67-1.5 1.5S15.67 4 16.5 4 18 3.33 18 2.5 17.33 1 16.5 1z" +}), 'Soap'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SoapOutlined.js b/packages/material-ui-icons/lib/esm/SoapOutlined.js new file mode 100644 index 00000000000000..4943a071d0e9ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SoapOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5-3c-.83 0-1.5.67-1.5 1.5S15.67 4 16.5 4 18 3.33 18 2.5 17.33 1 16.5 1zm4.25 15c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z" +}), 'SoapOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SoapRounded.js b/packages/material-ui-icons/lib/esm/SoapRounded.js new file mode 100644 index 00000000000000..9dcce3cfbb42bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SoapRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2-1.5c0 .83-.67 1.5-1.5 1.5S15 3.33 15 2.5 15.67 1 16.5 1s1.5.67 1.5 1.5zM1.94 11.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.68c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h8.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38h-9.9l1.49-2.61c.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7l-.42-.45c-.38-.39-1.01-.41-1.41-.03l-6.46 6.11z" +}), 'SoapRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SoapSharp.js b/packages/material-ui-icons/lib/esm/SoapSharp.js new file mode 100644 index 00000000000000..ac21aba9642064 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SoapSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2-1.5c0 .83-.67 1.5-1.5 1.5S15 3.33 15 2.5 15.67 1 16.5 1s1.5.67 1.5 1.5zM1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68z" +}), 'SoapSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SoapTwoTone.js b/packages/material-ui-icons/lib/esm/SoapTwoTone.js new file mode 100644 index 00000000000000..392abf5fa87ca5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SoapTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75M20 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5-3c-.83 0-1.5.67-1.5 1.5S15.67 4 16.5 4 18 3.33 18 2.5 17.33 1 16.5 1zm4.25 15c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9z" +}, "1")], 'SoapTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SocialDistance.js b/packages/material-ui-icons/lib/esm/SocialDistance.js new file mode 100644 index 00000000000000..5dae39d7519769 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SocialDistance.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z" +}), 'SocialDistance'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SocialDistanceOutlined.js b/packages/material-ui-icons/lib/esm/SocialDistanceOutlined.js new file mode 100644 index 00000000000000..8547bb8ba387f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SocialDistanceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zm-2.77 4.43-1.41 1.41L18.17 16H5.83l1.58-1.59L6 13l-4 4 3.99 3.99 1.41-1.41L5.83 18h12.34l-1.58 1.58L18 20.99 22 17l-3.99-3.99z" +}), 'SocialDistanceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SocialDistanceRounded.js b/packages/material-ui-icons/lib/esm/SocialDistanceRounded.js new file mode 100644 index 00000000000000..5444d878b0afaf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SocialDistanceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zm.87 8.07-2.79-2.79c-.32-.32-.86-.1-.86.35V16H6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V18h12v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" +}), 'SocialDistanceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SocialDistanceSharp.js b/packages/material-ui-icons/lib/esm/SocialDistanceSharp.js new file mode 100644 index 00000000000000..fd955a42316d3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SocialDistanceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z" +}), 'SocialDistanceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SocialDistanceTwoTone.js b/packages/material-ui-icons/lib/esm/SocialDistanceTwoTone.js new file mode 100644 index 00000000000000..4b423636e2664e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SocialDistanceTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58C7.93 8.21 6.99 8 6 8s-1.93.21-2.78.58C2.48 8.9 2 9.62 2 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58C19.93 8.21 18.99 8 18 8c-.99 0-1.93.21-2.78.58-.74.32-1.22 1.04-1.22 1.85V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z" +}), 'SocialDistanceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sort.js b/packages/material-ui-icons/lib/esm/Sort.js new file mode 100644 index 00000000000000..42d5050860036b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sort.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" +}), 'Sort'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortByAlpha.js b/packages/material-ui-icons/lib/esm/SortByAlpha.js new file mode 100644 index 00000000000000..c2d0c9c4508ede --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortByAlpha.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.94 4.66h-4.72l2.36-2.36zm-4.69 14.71h4.66l-2.33 2.33zM6.1 6.27 1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37 1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" +}), 'SortByAlpha'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortByAlphaOutlined.js b/packages/material-ui-icons/lib/esm/SortByAlphaOutlined.js new file mode 100644 index 00000000000000..b85e47c7302ce0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortByAlphaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27 1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37 1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" +}), 'SortByAlphaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortByAlphaRounded.js b/packages/material-ui-icons/lib/esm/SortByAlphaRounded.js new file mode 100644 index 00000000000000..743c6af0e57d07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortByAlphaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.93 2.65c-.2-.2-.51-.2-.71 0l-2.01 2.01h4.72l-2-2.01zm-.7 18.7c.2.2.51.2.71 0l1.98-1.98h-4.66l1.97 1.98zm-1.25-3.62c.6 0 1.01-.6.79-1.16L8.04 7.03c-.18-.46-.63-.76-1.12-.76-.49 0-.94.3-1.12.76l-3.74 9.53c-.22.56.19 1.16.79 1.16.35 0 .67-.22.8-.55l.71-1.9h5.11l.71 1.9c.13.34.45.56.8.56zm-6.01-4.09 1.94-5.18 1.94 5.18H4.97zm16.08 2.5h-5.33l5.72-8.29c.46-.66-.02-1.57-.82-1.57h-6.48c-.44 0-.79.36-.79.8v.01c0 .44.36.8.79.8h5.09l-5.73 8.28c-.46.66.02 1.57.82 1.57h6.72c.44 0 .79-.36.79-.79.02-.45-.34-.81-.78-.81z" +}), 'SortByAlphaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortByAlphaSharp.js b/packages/material-ui-icons/lib/esm/SortByAlphaSharp.js new file mode 100644 index 00000000000000..67d4c291da69a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortByAlphaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27 1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37 1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" +}), 'SortByAlphaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortByAlphaTwoTone.js b/packages/material-ui-icons/lib/esm/SortByAlphaTwoTone.js new file mode 100644 index 00000000000000..509e6afc1ba5f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortByAlphaTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.94 4.66 12.58 2.3l-2.36 2.36zm-4.55 13.07h1.84L7.74 6.27H6.1L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45zm-5.42-4.09 1.94-5.18 1.94 5.18H4.97zm7.61 8.06 2.33-2.33h-4.66zm9.08-14.16V6.28h-8.3v1.6h5.88l-5.92 8.56v1.29h8.53v-1.59h-6.12z" +}), 'SortByAlphaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortOutlined.js b/packages/material-ui-icons/lib/esm/SortOutlined.js new file mode 100644 index 00000000000000..3f84275c1700e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" +}), 'SortOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortRounded.js b/packages/material-ui-icons/lib/esm/SortRounded.js new file mode 100644 index 00000000000000..5760a68d0ff90d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 18h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm1 6h10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'SortRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortSharp.js b/packages/material-ui-icons/lib/esm/SortSharp.js new file mode 100644 index 00000000000000..71c40db4788ed6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" +}), 'SortSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SortTwoTone.js b/packages/material-ui-icons/lib/esm/SortTwoTone.js new file mode 100644 index 00000000000000..e650e5f18ab306 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SortTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" +}), 'SortTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Source.js b/packages/material-ui-icons/lib/esm/Source.js new file mode 100644 index 00000000000000..7de9933aeb081b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Source.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 10H6v-2h8v2zm4-4H6v-2h12v2z" +}), 'Source'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SourceOutlined.js b/packages/material-ui-icons/lib/esm/SourceOutlined.js new file mode 100644 index 00000000000000..781a4610d739fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SourceOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" +}), 'SourceOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SourceRounded.js b/packages/material-ui-icons/lib/esm/SourceRounded.js new file mode 100644 index 00000000000000..1ed6b34caf88e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SourceRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 10H6v-2h8v2zm4-4H6v-2h12v2z" +}), 'SourceRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SourceSharp.js b/packages/material-ui-icons/lib/esm/SourceSharp.js new file mode 100644 index 00000000000000..f6ade37fd445b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SourceSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 6-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z" +}), 'SourceSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SourceTwoTone.js b/packages/material-ui-icons/lib/esm/SourceTwoTone.js new file mode 100644 index 00000000000000..d8bafe8db9a217 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SourceTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.17 6H4v12h16V8h-8.83l-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" +}, "1")], 'SourceTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/South.js b/packages/material-ui-icons/lib/esm/South.js new file mode 100644 index 00000000000000..d390371259574b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/South.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" +}), 'South'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthEast.js b/packages/material-ui-icons/lib/esm/SouthEast.js new file mode 100644 index 00000000000000..06684bedc0e7c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthEast.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" +}), 'SouthEast'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthEastOutlined.js b/packages/material-ui-icons/lib/esm/SouthEastOutlined.js new file mode 100644 index 00000000000000..fc1a2a274ba63e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthEastOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" +}), 'SouthEastOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthEastRounded.js b/packages/material-ui-icons/lib/esm/SouthEastRounded.js new file mode 100644 index 00000000000000..8eccb33a47eb07 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthEastRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9c-.56 0-1 .45-1 1v5.59L6.12 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L15.59 17H10c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1z" +}), 'SouthEastRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthEastSharp.js b/packages/material-ui-icons/lib/esm/SouthEastSharp.js new file mode 100644 index 00000000000000..2f006e968aec53 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthEastSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" +}), 'SouthEastSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthEastTwoTone.js b/packages/material-ui-icons/lib/esm/SouthEastTwoTone.js new file mode 100644 index 00000000000000..c7655126f86d51 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthEastTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" +}), 'SouthEastTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthOutlined.js b/packages/material-ui-icons/lib/esm/SouthOutlined.js new file mode 100644 index 00000000000000..0d8917d1616beb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" +}), 'SouthOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthRounded.js b/packages/material-ui-icons/lib/esm/SouthRounded.js new file mode 100644 index 00000000000000..0ee88e78e32b13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.3 14.29a.9959.9959 0 0 0-1.41 0L13 18.17V3c0-.55-.45-1-1-1s-1 .45-1 1v15.18L7.12 14.3a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l5.59 5.59c.39.39 1.02.39 1.41 0l5.59-5.59c.38-.39.38-1.03 0-1.42z" +}), 'SouthRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthSharp.js b/packages/material-ui-icons/lib/esm/SouthSharp.js new file mode 100644 index 00000000000000..4f998b19b00d3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" +}), 'SouthSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthTwoTone.js b/packages/material-ui-icons/lib/esm/SouthTwoTone.js new file mode 100644 index 00000000000000..78045c8956feb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" +}), 'SouthTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthWest.js b/packages/material-ui-icons/lib/esm/SouthWest.js new file mode 100644 index 00000000000000..82417280e60cf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthWest.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" +}), 'SouthWest'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthWestOutlined.js b/packages/material-ui-icons/lib/esm/SouthWestOutlined.js new file mode 100644 index 00000000000000..ed3864290c9fb7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthWestOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" +}), 'SouthWestOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthWestRounded.js b/packages/material-ui-icons/lib/esm/SouthWestRounded.js new file mode 100644 index 00000000000000..19123133ee2194 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthWestRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 18c0-.56-.45-1-1-1H8.41L19.3 6.11c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L7 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1z" +}), 'SouthWestRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthWestSharp.js b/packages/material-ui-icons/lib/esm/SouthWestSharp.js new file mode 100644 index 00000000000000..67c578b8934bcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthWestSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" +}), 'SouthWestSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SouthWestTwoTone.js b/packages/material-ui-icons/lib/esm/SouthWestTwoTone.js new file mode 100644 index 00000000000000..c3ac0786eb0c2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SouthWestTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" +}), 'SouthWestTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Spa.js b/packages/material-ui-icons/lib/esm/Spa.js new file mode 100644 index 00000000000000..e62cece34dbaec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Spa.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z" +}, "1")], 'Spa'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaOutlined.js b/packages/material-ui-icons/lib/esm/SpaOutlined.js new file mode 100644 index 00000000000000..2c5c57784c675d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z" +}), 'SpaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaRounded.js b/packages/material-ui-icons/lib/esm/SpaRounded.js new file mode 100644 index 00000000000000..93d1a6493297cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.49 9.63c-.16-2.42-1.03-4.79-2.64-6.76-.41-.5-1.16-.5-1.57 0-1.65 1.98-2.57 4.35-2.77 6.76 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45c-1.95-2.97-5.14-5.03-8.83-5.39-.64-.06-1.17.47-1.11 1.11.45 4.8 3.65 8.78 7.98 10.33.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51 4.33-1.55 7.53-5.52 7.98-10.33.06-.64-.48-1.17-1.11-1.11-3.71.36-6.9 2.42-8.85 5.39z" +}), 'SpaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaSharp.js b/packages/material-ui-icons/lib/esm/SpaSharp.js new file mode 100644 index 00000000000000..87d108a39c3f3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64zm-3.49-.76c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z" +}), 'SpaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaTwoTone.js b/packages/material-ui-icons/lib/esm/SpaTwoTone.js new file mode 100644 index 00000000000000..5cc0225ed392aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.94 12.25c0-.01 0-.01 0 0-.13-.09-.27-.17-.4-.26.13.1.27.17.4.26zm4.41-3.67c-.22-1.21-.66-2.35-1.3-3.38-.66 1.04-1.12 2.19-1.37 3.39.46.3.9.62 1.33.97.42-.35.87-.68 1.34-.98zm3.19 5.08.01.02c-.09.06-.18.12-.27.17l-.07.05c-.98.71-1.84 1.61-2.53 2.66L12 19.1l-1.67-2.55c-.68-1.03-1.52-1.92-2.51-2.65l-.07-.04c-.13-.08-.26-.16-.39-.25l.01-.01c-.96-.63-2.01-1.07-3.12-1.33.75 3.36 3.16 6.17 6.45 7.35.42.15.84.27 1.28.36.45-.09.89-.21 1.33-.37 3.27-1.17 5.67-3.98 6.43-7.34-1.14.26-2.23.73-3.2 1.39zm-7.55-1.38", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm2.17-9.97c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M8.99 12.28c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z", + opacity: ".3" +}, "3")], 'SpaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaceBar.js b/packages/material-ui-icons/lib/esm/SpaceBar.js new file mode 100644 index 00000000000000..12c2784ded827e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaceBar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9v4H6V9H4v6h16V9z" +}), 'SpaceBar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaceBarOutlined.js b/packages/material-ui-icons/lib/esm/SpaceBarOutlined.js new file mode 100644 index 00000000000000..c0818804ef3b76 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaceBarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9v4H6V9H4v6h16V9h-2z" +}), 'SpaceBarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaceBarRounded.js b/packages/material-ui-icons/lib/esm/SpaceBarRounded.js new file mode 100644 index 00000000000000..844615bb3cbc1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaceBarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10v3H6v-3c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1z" +}), 'SpaceBarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaceBarSharp.js b/packages/material-ui-icons/lib/esm/SpaceBarSharp.js new file mode 100644 index 00000000000000..a77e03c37d8a09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaceBarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9v4H6V9H4v6h16V9h-2z" +}), 'SpaceBarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpaceBarTwoTone.js b/packages/material-ui-icons/lib/esm/SpaceBarTwoTone.js new file mode 100644 index 00000000000000..0a72d9cbc2275a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpaceBarTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13H6V9H4v6h16V9h-2z" +}), 'SpaceBarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Speaker.js b/packages/material-ui-icons/lib/esm/Speaker.js new file mode 100644 index 00000000000000..4c5975aac4344a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Speaker.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'Speaker'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerGroup.js b/packages/material-ui-icons/lib/esm/SpeakerGroup.js new file mode 100644 index 00000000000000..373869f334d3fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerGroup.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "12.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" +}, "2")], 'SpeakerGroup'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerGroupOutlined.js b/packages/material-ui-icons/lib/esm/SpeakerGroupOutlined.js new file mode 100644 index 00000000000000..6f8ad4c11572c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerGroupOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" +}), 'SpeakerGroupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerGroupRounded.js b/packages/material-ui-icons/lib/esm/SpeakerGroupRounded.js new file mode 100644 index 00000000000000..c054e0581fc647 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerGroupRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "12.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5 5c-.55 0-1 .45-1 1v15c0 1.1.89 2 2 2h9c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1z" +}, "2")], 'SpeakerGroupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerGroupSharp.js b/packages/material-ui-icons/lib/esm/SpeakerGroupSharp.js new file mode 100644 index 00000000000000..d35d508133371e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerGroupSharp.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 1H8v17.99h12V1zm-6 2c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "12.5", + r: "2.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M6 5H4v18h12v-2H6z" +}, "2")], 'SpeakerGroupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerGroupTwoTone.js b/packages/material-ui-icons/lib/esm/SpeakerGroupTwoTone.js new file mode 100644 index 00000000000000..5b10c15818b89a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerGroupTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m10 16.99 8 .01V3h-8v13.99zM14 4c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 5c1.93 0 3.5 1.57 3.5 3.5S15.93 16 14 16s-3.5-1.57-3.5-3.5S12.07 9 14 9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z" +}, "1")], 'SpeakerGroupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotes.js b/packages/material-ui-icons/lib/esm/SpeakerNotes.js new file mode 100644 index 00000000000000..3f6d4f739ccb87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotes.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z" +}), 'SpeakerNotes'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesOff.js b/packages/material-ui-icons/lib/esm/SpeakerNotesOff.js new file mode 100644 index 00000000000000..efc5ea893d977a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.54 11-.54-.54L7.54 8 6 6.46 2.38 2.84 1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 17.54 18l-7-7zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm14-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2z" +}), 'SpeakerNotesOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesOffOutlined.js b/packages/material-ui-icons/lib/esm/SpeakerNotesOffOutlined.js new file mode 100644 index 00000000000000..6b5a2f004a091f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-3h-6.34l2 2H18zm0-3h-8v1.34l.66.66H18zM1.41 1.59 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16 4 17.17V7l2 2v2h2l5 5H5.17z" +}), 'SpeakerNotesOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesOffRounded.js b/packages/material-ui-icons/lib/esm/SpeakerNotesOffRounded.js new file mode 100644 index 00000000000000..af99f5801ba28f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.91 2.36c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l1.38 1.38L2 22l4-4h9l5.09 5.09c.35.35.92.35 1.27 0s.35-.92 0-1.27L1.91 2.36zM7 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13-9H4.08l7 7H17c.55 0 1 .45 1 1s-.45 1-1 1h-3.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2zm-3 6h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'SpeakerNotesOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesOffSharp.js b/packages/material-ui-icons/lib/esm/SpeakerNotesOffSharp.js new file mode 100644 index 00000000000000..fdf146ce16d5b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 1.27 1.73zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm16-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99H22V2z" +}), 'SpeakerNotesOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesOffTwoTone.js b/packages/material-ui-icons/lib/esm/SpeakerNotesOffTwoTone.js new file mode 100644 index 00000000000000..c60847417f5835 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 11V9L4 7v10.17L5.17 16H13l-5-5H6zm2 3H6v-2h2v2zM20 4H6.66L10 7.34V6h8v2h-7.34l1 1H18v2h-4.34l5 5H20z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-1V9h-6.34l2 2zm0-3V6h-8v1.34l.66.66zM1.41 1.59 0 3l2 2.01V22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16 4 17.17V7l2 2v2h2l5 5H5.17z" +}, "1")], 'SpeakerNotesOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesOutlined.js b/packages/material-ui-icons/lib/esm/SpeakerNotesOutlined.js new file mode 100644 index 00000000000000..bce30b1b7775a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z" +}), 'SpeakerNotesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesRounded.js b/packages/material-ui-icons/lib/esm/SpeakerNotesRounded.js new file mode 100644 index 00000000000000..91326aefd7c2e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm6 6h-3c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm3-3h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-3h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'SpeakerNotesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesSharp.js b/packages/material-ui-icons/lib/esm/SpeakerNotesSharp.js new file mode 100644 index 00000000000000..aeb18cb593aecc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2.01L2 22l4-4h16V2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z" +}), 'SpeakerNotesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerNotesTwoTone.js b/packages/material-ui-icons/lib/esm/SpeakerNotesTwoTone.js new file mode 100644 index 00000000000000..519d7f0929a099 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerNotesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4 17.17.59-.59.58-.58H20V4H4v13.17zM10 6h8v2h-8V6zm0 3h8v2h-8V9zm0 3h5v2h-5v-2zM6 6h2v2H6V6zm0 3h2v2H6V9zm0 3h2v2H6v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z" +}, "1")], 'SpeakerNotesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerOutlined.js b/packages/material-ui-icons/lib/esm/SpeakerOutlined.js new file mode 100644 index 00000000000000..8c3c5b480cecf3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'SpeakerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerPhone.js b/packages/material-ui-icons/lib/esm/SpeakerPhone.js new file mode 100644 index 00000000000000..762a4e8bd2f6d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerPhone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" +}), 'SpeakerPhone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerPhoneOutlined.js b/packages/material-ui-icons/lib/esm/SpeakerPhoneOutlined.js new file mode 100644 index 00000000000000..c50f21904774d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerPhoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" +}), 'SpeakerPhoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerPhoneRounded.js b/packages/material-ui-icons/lib/esm/SpeakerPhoneRounded.js new file mode 100644 index 00000000000000..4b095b1865bb65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerPhoneRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m7.76 7.83.02.02c.35.35.89.38 1.3.09.83-.57 1.84-.92 2.92-.92s2.09.35 2.92.93c.4.29.95.26 1.3-.09l.02-.02c.42-.42.39-1.14-.09-1.49C14.98 5.5 13.55 5 12 5s-2.98.5-4.14 1.34c-.49.35-.52 1.07-.1 1.49z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1c-2.62 0-5.03.93-6.92 2.47-.46.37-.51 1.06-.08 1.49.36.36.93.39 1.32.07C7.86 3.76 9.85 3 12 3s4.14.76 5.69 2.03c.39.32.96.29 1.32-.07.42-.42.38-1.11-.08-1.49C17.03 1.93 14.62 1 12 1zm3 9H9c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h5.99c.55 0 1-.45 1-1L16 11c0-.55-.45-1-1-1zm0 10H9v-8h6v8z" +}, "1")], 'SpeakerPhoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerPhoneSharp.js b/packages/material-ui-icons/lib/esm/SpeakerPhoneSharp.js new file mode 100644 index 00000000000000..5392ad98d5df40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerPhoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm3.99 9.01L8 10v11.99h7.99V10.01zM15 20H9v-8h6v8z" +}), 'SpeakerPhoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerPhoneTwoTone.js b/packages/material-ui-icons/lib/esm/SpeakerPhoneTwoTone.js new file mode 100644 index 00000000000000..7d7e5215fa88ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerPhoneTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 12h6v8H9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zM7 7.07 8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zm7.86 2.94L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z" +}, "1")], 'SpeakerPhoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerRounded.js b/packages/material-ui-icons/lib/esm/SpeakerRounded.js new file mode 100644 index 00000000000000..9ff4b0fa48624b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'SpeakerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerSharp.js b/packages/material-ui-icons/lib/esm/SpeakerSharp.js new file mode 100644 index 00000000000000..55b634b261dd4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 2H5v19.99h14V2zm-7 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'SpeakerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeakerTwoTone.js b/packages/material-ui-icons/lib/esm/SpeakerTwoTone.js new file mode 100644 index 00000000000000..7c7302ba35ddba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeakerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 4v16h10V4H7zm5 1c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 14c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'SpeakerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Speed.js b/packages/material-ui-icons/lib/esm/Speed.js new file mode 100644 index 00000000000000..fec920edde116a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Speed.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.38 8.57-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44zm-9.79 6.84a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" +}), 'Speed'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeedOutlined.js b/packages/material-ui-icons/lib/esm/SpeedOutlined.js new file mode 100644 index 00000000000000..ab61c28be7e5ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeedOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m20.38 8.57-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" +}, "1")], 'SpeedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeedRounded.js b/packages/material-ui-icons/lib/esm/SpeedRounded.js new file mode 100644 index 00000000000000..c4ec31f783d866 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeedRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.46 10a1 1 0 0 0-.07 1 7.55 7.55 0 0 1 .52 1.81 8 8 0 0 1-.69 4.73 1 1 0 0 1-.89.53H5.68a1 1 0 0 1-.89-.54A8 8 0 0 1 13 6.06a7.69 7.69 0 0 1 2.11.56 1 1 0 0 0 1-.07 1 1 0 0 0-.17-1.76A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0 .55-8.89 1 1 0 0 0-1.75-.11z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.59 12.59a2 2 0 0 0 2.83 2.83l5.66-8.49z" +}, "1")], 'SpeedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeedSharp.js b/packages/material-ui-icons/lib/esm/SpeedSharp.js new file mode 100644 index 00000000000000..aae9e45f41d248 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeedSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m20.39 8.56-1.24 1.86a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.86-1.24A10 10 0 0 0 4 20h16a10 10 0 0 0 .38-11.44z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" +}, "1")], 'SpeedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpeedTwoTone.js b/packages/material-ui-icons/lib/esm/SpeedTwoTone.js new file mode 100644 index 00000000000000..0faf3a0ad3cecc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpeedTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m20.38 8.57-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z" +}, "1")], 'SpeedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Spellcheck.js b/packages/material-ui-icons/lib/esm/Spellcheck.js new file mode 100644 index 00000000000000..b6e181c561870d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Spellcheck.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" +}), 'Spellcheck'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpellcheckOutlined.js b/packages/material-ui-icons/lib/esm/SpellcheckOutlined.js new file mode 100644 index 00000000000000..d5544a1a5a5d3e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpellcheckOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" +}), 'SpellcheckOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpellcheckRounded.js b/packages/material-ui-icons/lib/esm/SpellcheckRounded.js new file mode 100644 index 00000000000000..73e35a665003c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpellcheckRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.12 16c.69 0 1.15-.69.9-1.32L9.77 3.87C9.56 3.34 9.06 3 8.5 3s-1.06.34-1.27.87L2.98 14.68c-.25.63.22 1.32.9 1.32.4 0 .76-.25.91-.63L5.67 13h5.64l.9 2.38c.15.37.51.62.91.62zm-6.69-5L8.5 5.48 10.57 11H6.43zm14.46 1.29-7.39 7.39-2.97-2.97a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.68 3.68c.39.39 1.02.39 1.41 0l8.08-8.09c.39-.39.39-1.02 0-1.41-.38-.39-1.02-.39-1.4-.01z" +}), 'SpellcheckRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpellcheckSharp.js b/packages/material-ui-icons/lib/esm/SpellcheckSharp.js new file mode 100644 index 00000000000000..2fade09862b822 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpellcheckSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" +}), 'SpellcheckSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SpellcheckTwoTone.js b/packages/material-ui-icons/lib/esm/SpellcheckTwoTone.js new file mode 100644 index 00000000000000..6cb98546c5e501 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SpellcheckTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" +}), 'SpellcheckTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Splitscreen.js b/packages/material-ui-icons/lib/esm/Splitscreen.js new file mode 100644 index 00000000000000..90c990db92a865 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Splitscreen.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v5H6V4h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 13v5H6v-5h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" +}), 'Splitscreen'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SplitscreenOutlined.js b/packages/material-ui-icons/lib/esm/SplitscreenOutlined.js new file mode 100644 index 00000000000000..df34641c984484 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SplitscreenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v5H6V4h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 13v5H6v-5h12m0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" +}), 'SplitscreenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SplitscreenRounded.js b/packages/material-ui-icons/lib/esm/SplitscreenRounded.js new file mode 100644 index 00000000000000..e868ea9188e4bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SplitscreenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v5H6V4h12zm0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 13v5H6v-5h12zm0-2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" +}), 'SplitscreenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SplitscreenSharp.js b/packages/material-ui-icons/lib/esm/SplitscreenSharp.js new file mode 100644 index 00000000000000..8809422c9fb0c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SplitscreenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v5H6V4h12m2-2H4v9h16V2zm-2 13v5H6v-5h12m2-2H4v9h16v-9z" +}), 'SplitscreenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SplitscreenTwoTone.js b/packages/material-ui-icons/lib/esm/SplitscreenTwoTone.js new file mode 100644 index 00000000000000..efae9bb6e243a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SplitscreenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 4h12v5H6zm0 11h12v5H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 2H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 7H6V4h12v5zm0 4H6c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm0 7H6v-5h12v5z" +}, "1")], 'SplitscreenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sports.js b/packages/material-ui-icons/lib/esm/Sports.js new file mode 100644 index 00000000000000..4e6d27204f0fd5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sports.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "12", + r: "2" +}, "1")], 'Sports'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBar.js b/packages/material-ui-icons/lib/esm/SportsBar.js new file mode 100644 index 00000000000000..af38328f911238 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-1.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z" +}), 'SportsBar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBarOutlined.js b/packages/material-ui-icons/lib/esm/SportsBarOutlined.js new file mode 100644 index 00000000000000..a9e7b0b625cd4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 19H8v-6.63c1.26-.34 2.11-1.27 2.77-1.99C11.6 9.47 12.08 9 13 9h2v10zM10 2.02c-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-1.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM17 17v-6h2v6h-2z" +}), 'SportsBarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBarRounded.js b/packages/material-ui-icons/lib/esm/SportsBarRounded.js new file mode 100644 index 00000000000000..8fb4f1553d5883 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 9h-1.56c.33-.55.53-1.18.55-1.86.04-1.03-.43-1.99-1.16-2.71-1.54-1.54-2.74-1.56-3.82-1.29-.81-.69-1.85-1.12-3.01-1.12-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V19c0 1.1.9 2 2 2h7c1.1 0 2-.9 2-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z" +}), 'SportsBarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBarSharp.js b/packages/material-ui-icons/lib/esm/SportsBarSharp.js new file mode 100644 index 00000000000000..c175d8bb07b80d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 9h-3.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h4V9zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z" +}), 'SportsBarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBarTwoTone.js b/packages/material-ui-icons/lib/esm/SportsBarTwoTone.js new file mode 100644 index 00000000000000..380d1c5d1ec720 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBarTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 19H8v-6.63c1.26-.34 2.11-1.27 2.77-1.99C11.6 9.47 12.08 9 13 9h2v10zm-8-8.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 19H8v-6.63c1.26-.34 2.11-1.27 2.77-1.99C11.6 9.47 12.08 9 13 9h2v10zM10 2.02c-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-1.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13-.82-.68-1.86-1.11-3.02-1.11zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM17 17v-6h2v6h-2z" +}, "1")], 'SportsBarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBaseball.js b/packages/material-ui-icons/lib/esm/SportsBaseball.js new file mode 100644 index 00000000000000..41265b15df6912 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBaseball.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67C15.97 18.09 14 15.28 14 12z" +}, "1")], 'SportsBaseball'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBaseballOutlined.js b/packages/material-ui-icons/lib/esm/SportsBaseballOutlined.js new file mode 100644 index 00000000000000..f10f5a2ed302b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBaseballOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.61 16.78C4.6 15.45 4 13.8 4 12s.6-3.45 1.61-4.78C7.06 8.31 8 10.05 8 12s-.94 3.69-2.39 4.78zM12 20c-1.89 0-3.63-.66-5-1.76 1.83-1.47 3-3.71 3-6.24S8.83 7.23 7 5.76C8.37 4.66 10.11 4 12 4s3.63.66 5 1.76c-1.83 1.47-3 3.71-3 6.24s1.17 4.77 3 6.24c-1.37 1.1-3.11 1.76-5 1.76zm6.39-3.22C16.94 15.69 16 13.95 16 12s.94-3.69 2.39-4.78C19.4 8.55 20 10.2 20 12s-.6 3.45-1.61 4.78z" +}), 'SportsBaseballOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBaseballRounded.js b/packages/material-ui-icons/lib/esm/SportsBaseballRounded.js new file mode 100644 index 00000000000000..98081000be2811 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBaseballRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67C15.97 18.09 14 15.28 14 12z" +}, "1")], 'SportsBaseballRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBaseballSharp.js b/packages/material-ui-icons/lib/esm/SportsBaseballSharp.js new file mode 100644 index 00000000000000..864ad3b7bcc737 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBaseballSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67C15.97 18.09 14 15.28 14 12z" +}, "1")], 'SportsBaseballSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBaseballTwoTone.js b/packages/material-ui-icons/lib/esm/SportsBaseballTwoTone.js new file mode 100644 index 00000000000000..55062b75f9e0c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBaseballTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5.61 7.22C4.6 8.55 4 10.2 4 12s.6 3.45 1.61 4.78C7.06 15.69 8 13.95 8 12s-.94-3.69-2.39-4.78z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 12c0-2.52 1.17-4.77 3-6.24C15.63 4.66 13.89 4 12 4s-3.63.66-5 1.76c1.83 1.47 3 3.71 3 6.24s-1.17 4.77-3 6.24c1.37 1.1 3.11 1.76 5 1.76s3.63-.66 5-1.76c-1.83-1.47-3-3.72-3-6.24z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18.39 7.22C16.94 8.31 16 10.05 16 12s.94 3.69 2.39 4.78C19.4 15.45 20 13.8 20 12s-.6-3.45-1.61-4.78z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.61 16.78C4.6 15.45 4 13.8 4 12s.6-3.45 1.61-4.78C7.06 8.31 8 10.05 8 12s-.94 3.69-2.39 4.78zM12 20c-1.89 0-3.63-.66-5-1.76 1.83-1.47 3-3.71 3-6.24S8.83 7.23 7 5.76C8.37 4.66 10.11 4 12 4s3.63.66 5 1.76c-1.83 1.47-3 3.71-3 6.24s1.17 4.77 3 6.24c-1.37 1.1-3.11 1.76-5 1.76zm6.39-3.22C16.94 15.69 16 13.95 16 12s.94-3.69 2.39-4.78C19.4 8.55 20 10.2 20 12s-.6 3.45-1.61 4.78z" +}, "3")], 'SportsBaseballTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBasketball.js b/packages/material-ui-icons/lib/esm/SportsBasketball.js new file mode 100644 index 00000000000000..24eb5f4a347267 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBasketball.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.09 11h4.86c-.16-1.61-.71-3.11-1.54-4.4-1.73.83-2.99 2.45-3.32 4.4zM6.91 11c-.33-1.95-1.59-3.57-3.32-4.4-.83 1.29-1.38 2.79-1.54 4.4h4.86zm8.16 0c.32-2.59 1.88-4.79 4.06-6-1.6-1.63-3.74-2.71-6.13-2.95V11h2.07zm-6.14 0H11V2.05C8.61 2.29 6.46 3.37 4.87 5c2.18 1.21 3.74 3.41 4.06 6zm6.14 2H13v8.95c2.39-.24 4.54-1.32 6.13-2.95-2.18-1.21-3.74-3.41-4.06-6zM3.59 17.4c1.72-.83 2.99-2.46 3.32-4.4H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4c.33 1.95 1.59 3.57 3.32 4.4.83-1.29 1.38-2.79 1.54-4.4h-4.86zm-8.16 0c-.32 2.59-1.88 4.79-4.06 6 1.6 1.63 3.74 2.71 6.13 2.95V13H8.93z" +}), 'SportsBasketball'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBasketballOutlined.js b/packages/material-ui-icons/lib/esm/SportsBasketballOutlined.js new file mode 100644 index 00000000000000..7ca85325d1e67b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBasketballOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.23 7.75C6.1 8.62 6.7 9.74 6.91 11H4.07c.15-1.18.56-2.28 1.16-3.25zM4.07 13h2.84c-.21 1.26-.81 2.38-1.68 3.25-.6-.97-1.01-2.07-1.16-3.25zM11 19.93c-1.73-.22-3.29-1-4.49-2.14 1.3-1.24 2.19-2.91 2.42-4.79H11v6.93zM11 11H8.93C8.69 9.12 7.81 7.44 6.5 6.2 7.71 5.06 9.27 4.29 11 4.07V11zm8.93 0h-2.84c.21-1.26.81-2.38 1.68-3.25.6.97 1.01 2.07 1.16 3.25zM13 4.07c1.73.22 3.29.99 4.5 2.13-1.31 1.24-2.19 2.92-2.43 4.8H13V4.07zm0 15.86V13h2.07c.24 1.88 1.12 3.55 2.42 4.79-1.2 1.14-2.76 1.92-4.49 2.14zm5.77-3.68c-.87-.86-1.46-1.99-1.68-3.25h2.84c-.15 1.18-.56 2.28-1.16 3.25z" +}), 'SportsBasketballOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBasketballRounded.js b/packages/material-ui-icons/lib/esm/SportsBasketballRounded.js new file mode 100644 index 00000000000000..5b4e20148bc745 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBasketballRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.09 11h4.86c-.16-1.61-.71-3.11-1.54-4.4-1.73.83-2.99 2.45-3.32 4.4zM6.91 11c-.33-1.95-1.59-3.57-3.32-4.4-.83 1.29-1.38 2.79-1.54 4.4h4.86zm8.16 0c.32-2.59 1.88-4.79 4.06-6-1.6-1.63-3.74-2.71-6.13-2.95V11h2.07zm-6.14 0H11V2.05C8.61 2.29 6.46 3.37 4.87 5c2.18 1.21 3.74 3.41 4.06 6zm6.14 2H13v8.95c2.39-.24 4.54-1.32 6.13-2.95-2.18-1.21-3.74-3.41-4.06-6zM3.59 17.4c1.72-.83 2.99-2.46 3.32-4.4H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4c.33 1.95 1.59 3.57 3.32 4.4.83-1.29 1.38-2.79 1.54-4.4h-4.86zm-8.16 0c-.32 2.59-1.88 4.79-4.06 6 1.6 1.63 3.74 2.71 6.13 2.95V13H8.93z" +}), 'SportsBasketballRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBasketballSharp.js b/packages/material-ui-icons/lib/esm/SportsBasketballSharp.js new file mode 100644 index 00000000000000..5356c61d34e11f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBasketballSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.09 11h4.86c-.16-1.61-.71-3.11-1.54-4.4-1.73.83-2.99 2.45-3.32 4.4zM6.91 11c-.33-1.95-1.59-3.57-3.32-4.4-.83 1.29-1.38 2.79-1.54 4.4h4.86zm8.16 0c.32-2.59 1.88-4.79 4.06-6-1.6-1.63-3.74-2.71-6.13-2.95V11h2.07zm-6.14 0H11V2.05C8.61 2.29 6.46 3.37 4.87 5c2.18 1.21 3.74 3.41 4.06 6zm6.14 2H13v8.95c2.39-.24 4.54-1.32 6.13-2.95-2.18-1.21-3.74-3.41-4.06-6zM3.59 17.4c1.72-.83 2.99-2.46 3.32-4.4H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4c.33 1.95 1.59 3.57 3.32 4.4.83-1.29 1.38-2.79 1.54-4.4h-4.86zm-8.16 0c-.32 2.59-1.88 4.79-4.06 6 1.6 1.63 3.74 2.71 6.13 2.95V13H8.93z" +}), 'SportsBasketballSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsBasketballTwoTone.js b/packages/material-ui-icons/lib/esm/SportsBasketballTwoTone.js new file mode 100644 index 00000000000000..cfc4ddeb7ab6eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsBasketballTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.93 11H11V4.07c-1.73.22-3.29.99-4.5 2.13C7.81 7.44 8.69 9.12 8.93 11zm11 0c-.15-1.18-.56-2.28-1.16-3.25-.87.87-1.47 1.99-1.68 3.25h2.84zM5.23 7.75c-.6.97-1.01 2.07-1.16 3.25h2.84C6.7 9.74 6.1 8.62 5.23 7.75zM4.07 13c.15 1.18.56 2.28 1.16 3.25.87-.87 1.47-1.99 1.68-3.25H4.07zm2.44 4.79c1.2 1.14 2.76 1.92 4.49 2.14V13H8.93c-.23 1.88-1.12 3.55-2.42 4.79zM17.5 6.2c-1.21-1.14-2.77-1.92-4.5-2.13V11h2.07c.24-1.88 1.12-3.56 2.43-4.8zm1.27 10.05c.61-.96 1.02-2.07 1.16-3.25h-2.84c.21 1.26.81 2.38 1.68 3.25zM13 13v6.93c1.73-.22 3.29-1 4.49-2.14-1.3-1.24-2.19-2.91-2.42-4.79H13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM5.23 7.75C6.1 8.62 6.7 9.74 6.91 11H4.07c.15-1.18.56-2.28 1.16-3.25zM4.07 13h2.84c-.21 1.26-.81 2.38-1.68 3.25-.6-.97-1.01-2.07-1.16-3.25zM11 19.93c-1.73-.22-3.29-1-4.49-2.14 1.3-1.24 2.19-2.91 2.42-4.79H11v6.93zM11 11H8.93C8.69 9.12 7.81 7.44 6.5 6.2 7.71 5.06 9.27 4.29 11 4.07V11zm8.93 0h-2.84c.21-1.26.81-2.38 1.68-3.25.6.97 1.01 2.07 1.16 3.25zM13 4.07c1.73.22 3.29.99 4.5 2.13-1.31 1.24-2.19 2.92-2.43 4.8H13V4.07zm0 15.86V13h2.07c.24 1.88 1.12 3.55 2.42 4.79-1.2 1.14-2.76 1.92-4.49 2.14zm5.77-3.68c-.87-.86-1.46-1.99-1.68-3.25h2.84c-.15 1.18-.56 2.28-1.16 3.25z" +}, "1")], 'SportsBasketballTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsCricket.js b/packages/material-ui-icons/lib/esm/SportsCricket.js new file mode 100644 index 00000000000000..7dc6bfa865fce4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsCricket.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.05 12.81 6.56 4.32a.9959.9959 0 0 0-1.41 0L2.32 7.15c-.39.39-.39 1.02 0 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83c.39-.39.39-1.02 0-1.41zm-.7088 4.9462 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18.5", + cy: "5.5", + r: "3.5" +}, "1")], 'SportsCricket'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsCricketOutlined.js b/packages/material-ui-icons/lib/esm/SportsCricketOutlined.js new file mode 100644 index 00000000000000..761b12bb7039a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsCricketOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15.04 12.79-8.5-8.5C6.35 4.1 6.09 4 5.83 4s-.51.1-.7.29L2.29 7.13c-.39.39-.39 1.03 0 1.42l8.5 8.5c.2.2.45.29.71.29.26 0 .51-.1.71-.29l2.83-2.83c.39-.4.39-1.04 0-1.43zm-3.54 2.13L4.41 7.83l1.42-1.42 7.09 7.09-1.42 1.42zm2.8412 2.8362 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142zM18.5 2C16.57 2 15 3.57 15 5.5S16.57 9 18.5 9 22 7.43 22 5.5 20.43 2 18.5 2zm0 5c-.83 0-1.5-.67-1.5-1.5S17.67 4 18.5 4s1.5.67 1.5 1.5S19.33 7 18.5 7z" +}), 'SportsCricketOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsCricketRounded.js b/packages/material-ui-icons/lib/esm/SportsCricketRounded.js new file mode 100644 index 00000000000000..457c3490e0d307 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsCricketRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.05 12.81 6.56 4.32a.9959.9959 0 0 0-1.41 0L2.32 7.15c-.39.39-.39 1.02 0 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83c.39-.39.39-1.02 0-1.41zm-.71 4.95 3.53 3.53c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-3.53-3.53-1.42 1.42z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18.5", + cy: "5.5", + r: "3.5" +}, "1")], 'SportsCricketRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsCricketSharp.js b/packages/material-ui-icons/lib/esm/SportsCricketSharp.js new file mode 100644 index 00000000000000..e629fdef60d717 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsCricketSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.05 12.81 6.56 4.32a.9959.9959 0 0 0-1.41 0L2.32 7.15c-.39.39-.39 1.02 0 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83c.39-.39.39-1.02 0-1.41zm-.7088 4.9462 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18.5", + cy: "5.5", + r: "3.5" +}, "1")], 'SportsCricketSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsCricketTwoTone.js b/packages/material-ui-icons/lib/esm/SportsCricketTwoTone.js new file mode 100644 index 00000000000000..ad6ca50c206478 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsCricketTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4.414 7.8394 1.4213-1.4213 7.0852 7.0853-1.4213 1.4212z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18.5", + cy: "5.5", + r: "1.5", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m15.04 12.79-8.5-8.5C6.35 4.1 6.09 4 5.83 4s-.51.1-.7.29L2.29 7.13c-.39.39-.39 1.03 0 1.42l8.5 8.5c.2.2.45.29.71.29.26 0 .51-.1.71-.29l2.83-2.83c.39-.4.39-1.04 0-1.43zm-3.54 2.13L4.41 7.83l1.42-1.42 7.09 7.09-1.42 1.42zm2.8412 2.8362 1.4142-1.4142 4.2426 4.2426-1.4142 1.4142zM18.5 2C16.57 2 15 3.57 15 5.5S16.57 9 18.5 9 22 7.43 22 5.5 20.43 2 18.5 2zm0 5c-.83 0-1.5-.67-1.5-1.5S17.67 4 18.5 4s1.5.67 1.5 1.5S19.33 7 18.5 7z" +}, "2")], 'SportsCricketTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsEsports.js b/packages/material-ui-icons/lib/esm/SportsEsports.js new file mode 100644 index 00000000000000..61609b53463fcd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsEsports.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zM11 11H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'SportsEsports'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsEsportsOutlined.js b/packages/material-ui-icons/lib/esm/SportsEsportsOutlined.js new file mode 100644 index 00000000000000..8ab974067d5282 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsEsportsOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zm-2.1.72c-.08.09-.21.19-.42.19-.15 0-.29-.06-.39-.16L15.83 14H8.17l-2.84 2.84c-.1.1-.24.16-.39.16-.21 0-.34-.1-.42-.19-.08-.09-.16-.23-.13-.44l1.09-7.66C5.63 7.74 6.48 7 7.47 7h9.06c.99 0 1.84.74 1.98 1.72l1.09 7.66c.03.2-.05.34-.12.43z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 8H8v2H6v1h2v2h1v-2h2v-1H9z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "12", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "9", + r: "1" +}, "3")], 'SportsEsportsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsEsportsRounded.js b/packages/material-ui-icons/lib/esm/SportsEsportsRounded.js new file mode 100644 index 00000000000000..fe74b558f321d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsEsportsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zM11 11H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'SportsEsportsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsEsportsSharp.js b/packages/material-ui-icons/lib/esm/SportsEsportsSharp.js new file mode 100644 index 00000000000000..db69a8aadf6e7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsEsportsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5H4L2 19h4l3-3h6l3 3h4L20 5zm-9 6H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'SportsEsportsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsEsportsTwoTone.js b/packages/material-ui-icons/lib/esm/SportsEsportsTwoTone.js new file mode 100644 index 00000000000000..9e8d796c1dcaeb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsEsportsTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.53 7H7.47c-.99 0-1.84.74-1.98 1.72L4.4 16.37c-.03.21.05.35.13.44.07.09.2.19.41.19.15 0 .29-.06.39-.16L8.17 14h7.66l2.84 2.84c.1.1.24.16.39.16.21 0 .34-.1.42-.19.08-.09.16-.23.13-.44l-1.09-7.66c-.15-.97-1-1.71-1.99-1.71zM11 11H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.58 16.09-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75 1.56 0 2.75-1.37 2.53-2.91zm-2.1.72c-.08.09-.21.19-.42.19-.15 0-.29-.06-.39-.16L15.83 14H8.17l-2.84 2.84c-.1.1-.24.16-.39.16-.21 0-.34-.1-.42-.19-.08-.09-.16-.23-.13-.44l1.09-7.66C5.63 7.74 6.48 7 7.47 7h9.06c.99 0 1.84.74 1.98 1.72l1.09 7.66c.03.2-.05.34-.12.43z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 8H8v2H6v1h2v2h1v-2h2v-1H9z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "17", + cy: "12", + r: "1" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "9", + r: "1" +}, "4")], 'SportsEsportsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsFootball.js b/packages/material-ui-icons/lib/esm/SportsFootball.js new file mode 100644 index 00000000000000..4e67b9f29eb5aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsFootball.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zM9.9 15.5l-1.4-1.4 5.6-5.6 1.4 1.4-5.6 5.6zm11.08-7.12c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z" +}), 'SportsFootball'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsFootballOutlined.js b/packages/material-ui-icons/lib/esm/SportsFootballOutlined.js new file mode 100644 index 00000000000000..b7818edbe4ea2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsFootballOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.31 3.69c-.32-.33-1.94-.69-4.05-.69-3.03 0-7.09.75-9.8 3.46-4.59 4.59-3.56 13.06-2.77 13.85.32.33 1.94.69 4.05.69 3.03 0 7.09-.75 9.8-3.46 4.59-4.59 3.56-13.06 2.77-13.85zM7.74 19c-1.14 0-2.02-.12-2.53-.23-.18-.79-.3-2.21-.17-3.83l4.01 4.01c-.52.04-.97.05-1.31.05zm8.39-2.87c-1.33 1.33-3.06 2.05-4.66 2.44l-6.04-6.04c.42-1.68 1.16-3.37 2.45-4.65 1.32-1.32 3.05-2.04 4.64-2.43l6.05 6.05c-.42 1.67-1.17 3.35-2.44 4.63zm2.83-7.04-4.03-4.03c.52-.05.98-.06 1.33-.06 1.14 0 2.02.12 2.53.23.18.79.3 2.22.17 3.86z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.4996 14.1002 14.1 8.4999l1.4 1.4-5.6002 5.6004z" +}, "1")], 'SportsFootballOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsFootballRounded.js b/packages/material-ui-icons/lib/esm/SportsFootballRounded.js new file mode 100644 index 00000000000000..af2a9c2b59f775 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsFootballRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zm1.72 7.32-4.2 4.2c-.39.39-1.01.39-1.4 0s-.39-1.01 0-1.4l4.2-4.2c.39-.39 1.01-.39 1.4 0s.39 1.01 0 1.4zm6.18-2.22c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z" +}), 'SportsFootballRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsFootballSharp.js b/packages/material-ui-icons/lib/esm/SportsFootballSharp.js new file mode 100644 index 00000000000000..607c27915bd754 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsFootballSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zM9.9 15.5l-1.4-1.4 5.6-5.6 1.4 1.4-5.6 5.6zm11.08-7.12c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z" +}), 'SportsFootballSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsFootballTwoTone.js b/packages/material-ui-icons/lib/esm/SportsFootballTwoTone.js new file mode 100644 index 00000000000000..8f14935b1fb1f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsFootballTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.26 5c-.35 0-.8.01-1.33.06l4.03 4.03c.14-1.63.01-3.07-.17-3.86-.51-.11-1.39-.23-2.53-.23zM5.21 18.77c.51.11 1.39.23 2.53.23.34 0 .79-.01 1.3-.05l-4.01-4.01c-.12 1.62 0 3.04.18 3.83zm2.66-10.9c-1.28 1.28-2.03 2.97-2.45 4.65l6.04 6.04c1.6-.39 3.33-1.11 4.66-2.44 1.28-1.28 2.03-2.95 2.44-4.63l-6.05-6.05c-1.59.39-3.31 1.11-4.64 2.43zM15.5 9.9l-5.6 5.6-1.4-1.4 5.6-5.6 1.4 1.4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.31 3.69c-.32-.33-1.94-.69-4.05-.69-3.03 0-7.09.75-9.8 3.46-4.59 4.59-3.56 13.06-2.77 13.85.32.33 1.94.69 4.05.69 3.03 0 7.09-.75 9.8-3.46 4.59-4.59 3.56-13.06 2.77-13.85zM7.74 19c-1.14 0-2.02-.12-2.53-.23-.18-.79-.3-2.21-.17-3.83l4.01 4.01c-.52.04-.97.05-1.31.05zm8.39-2.87c-1.33 1.33-3.06 2.05-4.66 2.44l-6.04-6.04c.42-1.68 1.16-3.37 2.45-4.65 1.32-1.32 3.05-2.04 4.64-2.43l6.05 6.05c-.42 1.67-1.17 3.35-2.44 4.63zm2.83-7.04-4.03-4.03c.52-.05.98-.06 1.33-.06 1.14 0 2.02.12 2.53.23.18.79.3 2.22.17 3.86z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.4996 14.1002 14.1 8.4999l1.4 1.4-5.6002 5.6004z" +}, "2")], 'SportsFootballTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsGolf.js b/packages/material-ui-icons/lib/esm/SportsGolf.js new file mode 100644 index 00000000000000..2a67058238d151 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsGolf.js @@ -0,0 +1,19 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "8", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" +}, "4")], 'SportsGolf'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsGolfOutlined.js b/packages/material-ui-icons/lib/esm/SportsGolfOutlined.js new file mode 100644 index 00000000000000..39a53fffff9022 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsGolfOutlined.js @@ -0,0 +1,19 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "8", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" +}, "4")], 'SportsGolfOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsGolfRounded.js b/packages/material-ui-icons/lib/esm/SportsGolfRounded.js new file mode 100644 index 00000000000000..270c5ea0080e1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsGolfRounded.js @@ -0,0 +1,19 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "8", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M16 17H8c-.55 0-1 .45-1 1s.45 1 1 1h1c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h1c.55 0 1-.45 1-1s-.45-1-1-1z" +}, "4")], 'SportsGolfRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsGolfSharp.js b/packages/material-ui-icons/lib/esm/SportsGolfSharp.js new file mode 100644 index 00000000000000..9e22881db061cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsGolfSharp.js @@ -0,0 +1,19 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "8", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" +}, "4")], 'SportsGolfSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsGolfTwoTone.js b/packages/material-ui-icons/lib/esm/SportsGolfTwoTone.js new file mode 100644 index 00000000000000..9bdf3849d741c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsGolfTwoTone.js @@ -0,0 +1,22 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 14c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "8", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "14", + cy: "8", + r: "1" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "6", + r: "1" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" +}, "5")], 'SportsGolfTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHandball.js b/packages/material-ui-icons/lib/esm/SportsHandball.js new file mode 100644 index 00000000000000..6d3c941f089b3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHandball.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" +}, "2")], 'SportsHandball'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHandballOutlined.js b/packages/material-ui-icons/lib/esm/SportsHandballOutlined.js new file mode 100644 index 00000000000000..7730cd0e1d271a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHandballOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" +}, "2")], 'SportsHandballOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHandballRounded.js b/packages/material-ui-icons/lib/esm/SportsHandballRounded.js new file mode 100644 index 00000000000000..d672dab979d5b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHandballRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.13-1.24-3.01-3.83-2.18-6.07.17-.46-.01-.97-.43-1.21-.53-.3-1.22-.07-1.43.5-.95 2.51-.35 5.35 1.46 7.27l-4.65 8.05c-.28.48-.11 1.09.37 1.37s1.09.11 1.37-.37l1-1.73 1.73 1-2.5 4.33c-.28.48-.11 1.09.37 1.37s1.09.11 1.37-.37l5.79-10.02c.98 1.34 1.26 3.12.66 4.72-.17.45.02.96.43 1.2.53.31 1.22.08 1.44-.5.97-2.62.41-5.84-2.2-8.04zM12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" +}, "1")], 'SportsHandballRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHandballSharp.js b/packages/material-ui-icons/lib/esm/SportsHandballSharp.js new file mode 100644 index 00000000000000..d7339f2315034c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHandballSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" +}, "2")], 'SportsHandballSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHandballTwoTone.js b/packages/material-ui-icons/lib/esm/SportsHandballTwoTone.js new file mode 100644 index 00000000000000..548cb8d7882b9b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHandballTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.84 10.41s-1.63-.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89c1.14 1.55 1.33 3.69.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05-.72-.41-1.63-.17-2.05.55-.41.72-.17 1.64.55 2.05z" +}, "2")], 'SportsHandballTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHockey.js b/packages/material-ui-icons/lib/esm/SportsHockey.js new file mode 100644 index 00000000000000..b7d37617ed01ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHockey.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" +}), 'SportsHockey'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHockeyOutlined.js b/packages/material-ui-icons/lib/esm/SportsHockeyOutlined.js new file mode 100644 index 00000000000000..6b6f5f01540e50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHockeyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" +}), 'SportsHockeyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHockeyRounded.js b/packages/material-ui-icons/lib/esm/SportsHockeyRounded.js new file mode 100644 index 00000000000000..4d636165e2e951 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHockeyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" +}), 'SportsHockeyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHockeySharp.js b/packages/material-ui-icons/lib/esm/SportsHockeySharp.js new file mode 100644 index 00000000000000..7b91c8c1222f7c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHockeySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" +}), 'SportsHockeySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsHockeyTwoTone.js b/packages/material-ui-icons/lib/esm/SportsHockeyTwoTone.js new file mode 100644 index 00000000000000..f1c434c0b3c2a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsHockeyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" +}), 'SportsHockeyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsKabaddi.js b/packages/material-ui-icons/lib/esm/SportsKabaddi.js new file mode 100644 index 00000000000000..113e7b1963f8a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsKabaddi.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "2.38", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" +}, "2")], 'SportsKabaddi'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsKabaddiOutlined.js b/packages/material-ui-icons/lib/esm/SportsKabaddiOutlined.js new file mode 100644 index 00000000000000..1b1b3248ea1974 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsKabaddiOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "2.38", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" +}, "2")], 'SportsKabaddiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsKabaddiRounded.js b/packages/material-ui-icons/lib/esm/SportsKabaddiRounded.js new file mode 100644 index 00000000000000..4db5a96b322c6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsKabaddiRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "2.38", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M24 10.88v-3.7l-4.99-2.11c-.98-.41-2.12-.07-2.71.81l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v6.5c0 .55.45 1 1 1s1-.45 1-1v-5l2.1-2 1.62 7.19c.11.47.53.81 1.02.81.66 0 1.15-.6 1.02-1.24l-1.94-9.76-.62-3.1 1.8.7v2.4c0 .55.45 1 1 1s1-.45 1-1zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-2.92 2.92c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l3.54-3.54v-2.22L7 16.75v4.13c0 .55.45 1 1 1s1-.45 1-1v-5l-2.12-2.12 2.36-2.36.71.71c1.02 1 2.28 1.69 3.79 1.94.64.11 1.21-.45 1.16-1.1-.03-.48-.4-.87-.87-.94-1.13-.18-2.06-.72-2.79-1.45z" +}, "2")], 'SportsKabaddiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsKabaddiSharp.js b/packages/material-ui-icons/lib/esm/SportsKabaddiSharp.js new file mode 100644 index 00000000000000..4badb010e0e624 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsKabaddiSharp.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "2.38", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" +}, "2")], 'SportsKabaddiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsKabaddiTwoTone.js b/packages/material-ui-icons/lib/esm/SportsKabaddiTwoTone.js new file mode 100644 index 00000000000000..f074bff38ab536 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsKabaddiTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "2.38", + r: "2" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m11.24 10.56-2-2c-.1-.1-.2-.18-.31-.26-.22-.14-.47-.24-.72-.28-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" +}, "2")], 'SportsKabaddiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMma.js b/packages/material-ui-icons/lib/esm/SportsMma.js new file mode 100644 index 00000000000000..e070f6b3403b80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMma.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-3 3H7V7h8v3z" +}), 'SportsMma'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMmaOutlined.js b/packages/material-ui-icons/lib/esm/SportsMmaOutlined.js new file mode 100644 index 00000000000000..eaf377a2fc67e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMmaOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8H17c.55 0 1.09-.44 1.2-.98l.77-3.83c.02-.12.03-.25.03-.38V8c0-.55-.45-1-1-1zm-1 3.6c0 .13-.64 3.4-.64 3.4H7.64S7 10.74 7 10.6V5h8v5h2v.6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 7h6v3H8z" +}, "1")], 'SportsMmaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMmaRounded.js b/packages/material-ui-icons/lib/esm/SportsMmaRounded.js new file mode 100644 index 00000000000000..b168c01953d659 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMmaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-4 3H8c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1z" +}), 'SportsMmaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMmaSharp.js b/packages/material-ui-icons/lib/esm/SportsMmaSharp.js new file mode 100644 index 00000000000000..fc72e00a6b9c46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMmaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 17h10v4H7zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-3 3H7V7h8v3z" +}), 'SportsMmaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMmaTwoTone.js b/packages/material-ui-icons/lib/esm/SportsMmaTwoTone.js new file mode 100644 index 00000000000000..a006c4daecfdff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMmaTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 5H7v5.6c0 .14.64 3.4.64 3.4h8.72s.64-3.26.64-3.4V10h-2V5zm-1 5H8V7h6v3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-3H7v3zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8H17c.55 0 1.09-.44 1.2-.98l.77-3.83c.02-.12.03-.25.03-.38V8c0-.55-.45-1-1-1zm-1 3.6c0 .13-.64 3.4-.64 3.4H7.64S7 10.74 7 10.6V5h8v5h2v.6z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8 7h6v3H8z" +}, "2")], 'SportsMmaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMotorsports.js b/packages/material-ui-icons/lib/esm/SportsMotorsports.js new file mode 100644 index 00000000000000..0e7a1717380fe3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMotorsports.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78z" +}, "1")], 'SportsMotorsports'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMotorsportsOutlined.js b/packages/material-ui-icons/lib/esm/SportsMotorsportsOutlined.js new file mode 100644 index 00000000000000..b716f134a52ddf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMotorsportsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.96 11.22C21.57 7.01 17.76 4 13.56 4c-.19 0-.38.01-.57.02C2 4.74 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78zm-16.7.34c.57-1.29 1.28-2.35 2.14-3.19l3.62 1.53c.6.25.98.83.98 1.48 0 .89-.72 1.61-1.61 1.61H4.72c.15-.46.32-.94.54-1.43zm13.18 4.48C17.3 17.29 15.68 18 14 18H4v-.8c0-.02.01-.92.24-2.2h6.15c1.99 0 3.61-1.62 3.61-3.61 0-1.45-.87-2.76-2.2-3.32L9.3 7.01c1.1-.57 2.37-.9 3.82-.99.15-.02.3-.02.44-.02 3.31 0 6.13 2.37 6.41 5.41.16 1.72-.38 3.36-1.53 4.63z" +}), 'SportsMotorsportsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMotorsportsRounded.js b/packages/material-ui-icons/lib/esm/SportsMotorsportsRounded.js new file mode 100644 index 00000000000000..b1e7775698420d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMotorsportsRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78z" +}, "1")], 'SportsMotorsportsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMotorsportsSharp.js b/packages/material-ui-icons/lib/esm/SportsMotorsportsSharp.js new file mode 100644 index 00000000000000..927cc37376f4d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMotorsportsSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2V20h12c4.67 0 8.41-4.01 7.96-8.78z" +}, "1")], 'SportsMotorsportsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsMotorsportsTwoTone.js b/packages/material-ui-icons/lib/esm/SportsMotorsportsTwoTone.js new file mode 100644 index 00000000000000..95f3ec2200de9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsMotorsportsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.56 6c-.15 0-.29 0-.44.01-1.45.1-2.72.43-3.82.99l2.5 1.06c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H4.24C4.01 16.28 4 17.19 4 17.2v.8h10c1.68 0 3.3-.71 4.44-1.96 1.15-1.27 1.7-2.91 1.54-4.63C19.69 8.37 16.87 6 13.56 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.96 11.22C21.57 7.01 17.76 4 13.56 4c-.19 0-.38.01-.57.02C2 4.74 2 17.2 2 17.2v.8c0 1.1.9 2 2 2h10c4.67 0 8.41-4.01 7.96-8.78zm-16.7.34c.57-1.29 1.28-2.35 2.14-3.19l3.62 1.53c.6.25.98.83.98 1.48 0 .89-.72 1.61-1.61 1.61H4.72c.15-.46.32-.94.54-1.43zm13.18 4.48C17.3 17.29 15.68 18 14 18H4v-.8c0-.02.01-.92.24-2.2h6.15c1.99 0 3.61-1.62 3.61-3.61 0-1.45-.87-2.76-2.2-3.32L9.3 7.01c1.1-.57 2.37-.9 3.82-.99.15-.02.3-.02.44-.02 3.31 0 6.13 2.37 6.41 5.41.16 1.72-.38 3.36-1.53 4.63z" +}, "1")], 'SportsMotorsportsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsOutlined.js b/packages/material-ui-icons/lib/esm/SportsOutlined.js new file mode 100644 index 00000000000000..f863da793200f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "12", + r: "2" +}, "1")], 'SportsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsRounded.js b/packages/material-ui-icons/lib/esm/SportsRounded.js new file mode 100644 index 00000000000000..b35cba57eddcf3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 6h-9.77c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13h2.76C21.56 10 22 9.55 22 9V7c0-.55-.45-1-1-1zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "12", + r: "2" +}, "1")], 'SportsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsRugby.js b/packages/material-ui-icons/lib/esm/SportsRugby.js new file mode 100644 index 00000000000000..0c63bb13f994d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsRugby.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61-2.16 2.16-3.67 4.58-4.62 6.63.1-2.48.88-5.74 3.2-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" +}), 'SportsRugby'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsRugbyOutlined.js b/packages/material-ui-icons/lib/esm/SportsRugbyOutlined.js new file mode 100644 index 00000000000000..d0b9d69f4dc328 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsRugbyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM5.71 18.29c.63-1.89 2.16-4.99 4.87-7.7 2.68-2.68 5.78-4.23 7.7-4.88-.63 1.89-2.16 4.99-4.88 7.7-2.66 2.68-5.76 4.23-7.69 4.88zM7.76 7.76c2.64-2.64 6.34-3.12 8.03-3.19-2.05.94-4.46 2.46-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.34 3.12-8.03 3.19 2.05-.94 4.46-2.46 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" +}), 'SportsRugbyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsRugbyRounded.js b/packages/material-ui-icons/lib/esm/SportsRugbyRounded.js new file mode 100644 index 00000000000000..f6ecf478328cd8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsRugbyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" +}), 'SportsRugbyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsRugbySharp.js b/packages/material-ui-icons/lib/esm/SportsRugbySharp.js new file mode 100644 index 00000000000000..4195b18a7d3fe9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsRugbySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" +}), 'SportsRugbySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsRugbyTwoTone.js b/packages/material-ui-icons/lib/esm/SportsRugbyTwoTone.js new file mode 100644 index 00000000000000..2aa82f7220503e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsRugbyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.29 5.71c-1.93.64-5.02 2.19-7.7 4.88-2.71 2.71-4.24 5.81-4.87 7.7 1.93-.64 5.03-2.2 7.7-4.87 2.71-2.72 4.24-5.82 4.87-7.71zM9.17 9.17c2.15-2.15 4.56-3.67 6.61-4.61-1.68.08-5.38.56-8.02 3.2-2.32 2.32-3.1 5.58-3.2 8.04.94-2.05 2.45-4.47 4.61-6.63zm5.66 5.66c-2.15 2.15-4.56 3.67-6.61 4.61 1.68-.08 5.39-.55 8.03-3.19 2.32-2.32 3.1-5.58 3.2-8.04-.95 2.04-2.46 4.46-4.62 6.62z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM5.71 18.29c.63-1.89 2.16-4.99 4.87-7.7 2.68-2.68 5.78-4.23 7.7-4.88-.63 1.89-2.16 4.99-4.88 7.7-2.66 2.68-5.76 4.23-7.69 4.88zM7.76 7.76c2.64-2.64 6.34-3.12 8.03-3.19-2.05.94-4.46 2.46-6.61 4.61-2.16 2.16-3.67 4.58-4.61 6.63.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.34 3.12-8.03 3.19 2.05-.94 4.46-2.46 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" +}, "1")], 'SportsRugbyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsScore.js b/packages/material-ui-icons/lib/esm/SportsScore.js new file mode 100644 index 00000000000000..f127971cde24bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsScore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" +}), 'SportsScore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsScoreOutlined.js b/packages/material-ui-icons/lib/esm/SportsScoreOutlined.js new file mode 100644 index 00000000000000..035d6e195ed46a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsScoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" +}), 'SportsScoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsScoreRounded.js b/packages/material-ui-icons/lib/esm/SportsScoreRounded.js new file mode 100644 index 00000000000000..26d3826e1ee8eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsScoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V5c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-7h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" +}), 'SportsScoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsScoreSharp.js b/packages/material-ui-icons/lib/esm/SportsScoreSharp.js new file mode 100644 index 00000000000000..11c37cfcc86804 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsScoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" +}), 'SportsScoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsScoreTwoTone.js b/packages/material-ui-icons/lib/esm/SportsScoreTwoTone.js new file mode 100644 index 00000000000000..2b03f68bcd0a65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsScoreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" +}), 'SportsScoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsSharp.js b/packages/material-ui-icons/lib/esm/SportsSharp.js new file mode 100644 index 00000000000000..ccaeeb7f5fdbe4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "12", + r: "2" +}, "1")], 'SportsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsSoccer.js b/packages/material-ui-icons/lib/esm/SportsSoccer.js new file mode 100644 index 00000000000000..cc1094c5901a6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsSoccer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" +}), 'SportsSoccer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsSoccerOutlined.js b/packages/material-ui-icons/lib/esm/SportsSoccerOutlined.js new file mode 100644 index 00000000000000..cf70f76d882f2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsSoccerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" +}), 'SportsSoccerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsSoccerRounded.js b/packages/material-ui-icons/lib/esm/SportsSoccerRounded.js new file mode 100644 index 00000000000000..5cde07938f3991 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsSoccerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" +}), 'SportsSoccerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsSoccerSharp.js b/packages/material-ui-icons/lib/esm/SportsSoccerSharp.js new file mode 100644 index 00000000000000..16ecfcaba09471 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsSoccerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" +}), 'SportsSoccerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsSoccerTwoTone.js b/packages/material-ui-icons/lib/esm/SportsSoccerTwoTone.js new file mode 100644 index 00000000000000..af4c593e6589e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsSoccerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.01 9.49 11 6.7V5.3l-1.35-.95c-1.82.57-3.37 1.77-4.38 3.34l.39 1.34 1.35.46zm-2 1.43-1 .73c0 .12-.01.23-.01.35 0 1.99.73 3.81 1.94 5.21l1.14-.1.79-1.37L6.4 11.4l-1.39-.48zm13.33-1.89.39-1.34c-1.01-1.57-2.55-2.77-4.38-3.34L13 5.3v1.4l3.99 2.79 1.35-.46zm-9.97 1.95L9.73 15h4.54l1.36-4.02L12 8.44zM9.45 17l-.64 1.11.69 1.49c.79.25 1.63.4 2.5.4s1.71-.15 2.5-.41l.69-1.49-.64-1.1h-5.1zm10.53-5.35-1-.73-1.38.48-1.46 4.34.79 1.37 1.14.1C19.27 15.81 20 13.99 20 12c0-.12-.01-.23-.02-.35z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3 1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 13.99 4 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" +}, "1")], 'SportsSoccerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsTennis.js b/packages/material-ui-icons/lib/esm/SportsTennis.js new file mode 100644 index 00000000000000..b7d8a9087c2ef5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsTennis.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" +}), 'SportsTennis'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsTennisOutlined.js b/packages/material-ui-icons/lib/esm/SportsTennisOutlined.js new file mode 100644 index 00000000000000..56b59cf4c40390 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsTennisOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" +}), 'SportsTennisOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsTennisRounded.js b/packages/material-ui-icons/lib/esm/SportsTennisRounded.js new file mode 100644 index 00000000000000..5f2e010f68d173 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsTennisRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-3.54 3.53c-.39.39-.39 1.02 0 1.42.39.39 1.02.39 1.42 0l3.53-3.54c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.93-2.92 3.41-7.2 1.07-9.54zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" +}), 'SportsTennisRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsTennisSharp.js b/packages/material-ui-icons/lib/esm/SportsTennisSharp.js new file mode 100644 index 00000000000000..c43111f32badce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsTennisSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" +}), 'SportsTennisSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsTennisTwoTone.js b/packages/material-ui-icons/lib/esm/SportsTennisTwoTone.js new file mode 100644 index 00000000000000..fadb4c219b0ab6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsTennisTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2c-1.02 0-2.05.39-2.83 1.17-1.56 1.56-1.56 4.09 0 5.66.78.78 1.81 1.17 2.83 1.17s2.05-.39 2.83-1.17c1.56-1.56 1.56-4.09 0-5.66C20.05 15.39 19.02 15 18 15z" +}), 'SportsTennisTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsTwoTone.js b/packages/material-ui-icons/lib/esm/SportsTwoTone.js new file mode 100644 index 00000000000000..63a353da6a2602 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsTwoTone.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6 3.12 6 2 7.12 2 8.5S3.12 11 4.5 11c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78-.18 3.68 2.95 6.68 6.68 6.27 2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "12", + r: "2" +}, "1")], 'SportsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsVolleyball.js b/packages/material-ui-icons/lib/esm/SportsVolleyball.js new file mode 100644 index 00000000000000..e7744306c595a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsVolleyball.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z" +}), 'SportsVolleyball'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsVolleyballOutlined.js b/packages/material-ui-icons/lib/esm/SportsVolleyballOutlined.js new file mode 100644 index 00000000000000..b2bd3b4d238eb1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsVolleyballOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 2.07c3.07.38 5.57 2.52 6.54 5.36L13 5.65V4.07zM8 5.08c1.18-.69 3.33-1.06 3-1.02v7.35l-3 1.73V5.08zM4.63 15.1c-.4-.96-.63-2-.63-3.1 0-2.02.76-3.86 2-5.27v7.58l-1.37.79zm1.01 1.73L12 13.15l3 1.73-6.98 4.03c-.93-.53-1.74-1.23-2.38-2.08zM12 20c-.54 0-1.07-.06-1.58-.16l6.58-3.8 1.36.78C16.9 18.75 14.6 20 12 20zm1-8.58V7.96l7 4.05c0 1.1-.23 2.14-.63 3.09L13 11.42z" +}), 'SportsVolleyballOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsVolleyballRounded.js b/packages/material-ui-icons/lib/esm/SportsVolleyballRounded.js new file mode 100644 index 00000000000000..8fbc96f10d3874 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsVolleyballRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z" +}), 'SportsVolleyballRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsVolleyballSharp.js b/packages/material-ui-icons/lib/esm/SportsVolleyballSharp.js new file mode 100644 index 00000000000000..74b90f50d9cac9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsVolleyballSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z" +}), 'SportsVolleyballSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SportsVolleyballTwoTone.js b/packages/material-ui-icons/lib/esm/SportsVolleyballTwoTone.js new file mode 100644 index 00000000000000..a9db2bc8f672b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SportsVolleyballTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6 6.73C4.76 8.14 4 9.98 4 12c0 1.1.23 2.14.63 3.1L6 14.31V6.73zm5-2.65c-.25.06-1.98.42-3 1.01v8.07l3-1.73V4.08zm2-.01v1.58l6.54 3.79c-.97-2.85-3.47-4.99-6.54-5.37zm-1 9.08-6.36 3.67c.64.85 1.46 1.55 2.38 2.09L15 14.89l-3-1.74zm1-5.19v3.46l6.37 3.68c.4-.95.63-1.99.63-3.09l-7-4.05zm-2.58 11.88c.51.1 1.04.16 1.58.16 2.6 0 4.9-1.25 6.36-3.17L17 16.04l-6.58 3.8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 2.07c3.07.38 5.57 2.52 6.54 5.36L13 5.65V4.07zM8 5.08c1.02-.59 2.75-.95 3-1.01v7.35l-3 1.73V5.08zM4.63 15.1c-.4-.96-.63-2-.63-3.1 0-2.02.76-3.86 2-5.27v7.58l-1.37.79zm1.01 1.73L12 13.15l3 1.73-6.98 4.03c-.93-.53-1.74-1.23-2.38-2.08zM12 20c-.54 0-1.07-.06-1.58-.16l6.58-3.8 1.36.78C16.9 18.75 14.6 20 12 20zm1-8.58V7.96l7 4.05c0 1.1-.23 2.14-.63 3.09L13 11.42z" +}, "1")], 'SportsVolleyballTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SquareFoot.js b/packages/material-ui-icons/lib/esm/SquareFoot.js new file mode 100644 index 00000000000000..b9417fd86cd4e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SquareFoot.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v14c0 1.1.9 2 2 2h14l-2.34-2.34zM7 17v-5.76L12.76 17H7z" +}), 'SquareFoot'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SquareFootOutlined.js b/packages/material-ui-icons/lib/esm/SquareFootOutlined.js new file mode 100644 index 00000000000000..ad63db51b12683 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SquareFootOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v14c0 1.1.9 2 2 2h14l-2.34-2.34zM7 17v-5.76L12.76 17H7z" +}), 'SquareFootOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SquareFootRounded.js b/packages/material-ui-icons/lib/esm/SquareFootRounded.js new file mode 100644 index 00000000000000..a378f5a8a850bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SquareFootRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 17.66-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.94-1.94-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.94-1.94-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71L9.7 9.7l-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.94-1.94-.71.71c-.2.2-.51.2-.71 0-.2-.2-.2-.51 0-.71l.71-.71-1.49-1.49c-.31-.31-.85-.09-.85.36V18c0 1.1.9 2 2 2h12.79c.45 0 .67-.54.35-.85l-1.48-1.49zM7 16v-4.76L12.76 17H8c-.55 0-1-.45-1-1z" +}), 'SquareFootRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SquareFootSharp.js b/packages/material-ui-icons/lib/esm/SquareFootSharp.js new file mode 100644 index 00000000000000..c094a05234ccd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SquareFootSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v16h16l-2.34-2.34zM7 17v-5.76L12.76 17H7z" +}), 'SquareFootSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SquareFootTwoTone.js b/packages/material-ui-icons/lib/esm/SquareFootTwoTone.js new file mode 100644 index 00000000000000..29c09e13f2d9d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SquareFootTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 17h5.76L7 11.24z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.66 17.66-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v14c0 1.1.9 2 2 2h14l-2.34-2.34zM7 17v-5.76L12.76 17H7z" +}, "1")], 'SquareFootTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedBarChart.js b/packages/material-ui-icons/lib/esm/StackedBarChart.js new file mode 100644 index 00000000000000..4ba1478c2fda59 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedBarChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10h3v10H6zm0-5h3v4H6zm10 11h3v4h-3zm0-3h3v2h-3zm-5 0h3v7h-3zm0-4h3v3h-3z" +}), 'StackedBarChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedBarChartOutlined.js b/packages/material-ui-icons/lib/esm/StackedBarChartOutlined.js new file mode 100644 index 00000000000000..26f5116c2e177f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedBarChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z" +}), 'StackedBarChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedBarChartRounded.js b/packages/material-ui-icons/lib/esm/StackedBarChartRounded.js new file mode 100644 index 00000000000000..3ca5a7431b48e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedBarChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10h3v8.5c0 .83-.67 1.5-1.5 1.5S6 19.33 6 18.5V10zm1.5-5C8.33 5 9 5.67 9 6.5V9H6V6.5C6 5.67 6.67 5 7.5 5zM16 16h3v2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5V16zm-5-3h3v5.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5V13zm1.5-4c.83 0 1.5.67 1.5 1.5V12h-3v-1.5c0-.83.67-1.5 1.5-1.5zm6.5 6h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5z" +}), 'StackedBarChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedBarChartSharp.js b/packages/material-ui-icons/lib/esm/StackedBarChartSharp.js new file mode 100644 index 00000000000000..aabcc3f8ef6044 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedBarChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z" +}), 'StackedBarChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedBarChartTwoTone.js b/packages/material-ui-icons/lib/esm/StackedBarChartTwoTone.js new file mode 100644 index 00000000000000..27db7c408a8cf4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedBarChartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z" +}), 'StackedBarChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedLineChart.js b/packages/material-ui-icons/lib/esm/StackedLineChart.js new file mode 100644 index 00000000000000..072e0f438352df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedLineChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" +}), 'StackedLineChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedLineChartOutlined.js b/packages/material-ui-icons/lib/esm/StackedLineChartOutlined.js new file mode 100644 index 00000000000000..031333d8ad965a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedLineChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" +}), 'StackedLineChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedLineChartRounded.js b/packages/material-ui-icons/lib/esm/StackedLineChartRounded.js new file mode 100644 index 00000000000000..5238fa56a6965d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedLineChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.79 14.78-.09-.09a.9959.9959 0 0 1 0-1.41l6.09-6.1c.39-.39 1.02-.39 1.41 0l3.29 3.29 6.39-7.18c.38-.43 1.05-.44 1.45-.04.37.38.39.98.04 1.37l-7.17 8.07c-.38.43-1.04.45-1.45.04L9.5 9.48l-5.3 5.3c-.38.39-1.02.39-1.41 0zm1.41 6 5.3-5.3 3.25 3.25c.41.41 1.07.39 1.45-.04l7.17-8.07c.35-.39.33-.99-.04-1.37-.4-.4-1.07-.39-1.45.04l-6.39 7.18-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6.09 6.1c-.39.39-.39 1.02 0 1.41l.09.09c.39.39 1.03.39 1.41 0z" +}), 'StackedLineChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedLineChartSharp.js b/packages/material-ui-icons/lib/esm/StackedLineChartSharp.js new file mode 100644 index 00000000000000..066110abc58250 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedLineChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" +}), 'StackedLineChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StackedLineChartTwoTone.js b/packages/material-ui-icons/lib/esm/StackedLineChartTwoTone.js new file mode 100644 index 00000000000000..170950ae987191 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StackedLineChartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2 19.99 7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5 6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" +}), 'StackedLineChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Stairs.js b/packages/material-ui-icons/lib/esm/Stairs.js new file mode 100644 index 00000000000000..af26b87ce0256c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Stairs.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 5h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18v2z" +}), 'Stairs'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StairsOutlined.js b/packages/material-ui-icons/lib/esm/StairsOutlined.js new file mode 100644 index 00000000000000..8e7399e4045135 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StairsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 3h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" +}), 'StairsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StairsRounded.js b/packages/material-ui-icons/lib/esm/StairsRounded.js new file mode 100644 index 00000000000000..beea24cea0a800 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StairsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 5h-1.42v3.33H13v3.33h-2.58l.03 3.34H7c-.55 0-1-.45-1-1s.45-1 1-1h1.42v-3.33H11V9.33h2.58V6H17c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'StairsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StairsSharp.js b/packages/material-ui-icons/lib/esm/StairsSharp.js new file mode 100644 index 00000000000000..01c1051750282f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StairsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm15 5h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18v2z" +}), 'StairsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StairsTwoTone.js b/packages/material-ui-icons/lib/esm/StairsTwoTone.js new file mode 100644 index 00000000000000..1249539262c2c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StairsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m-1 1h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 3h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z" +}, "1")], 'StairsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Star.js b/packages/material-ui-icons/lib/esm/Star.js new file mode 100644 index 00000000000000..9a642bfab31fa4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Star.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z" +}), 'Star'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorder.js b/packages/material-ui-icons/lib/esm/StarBorder.js new file mode 100644 index 00000000000000..3d8eb8accd9c58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorder.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarBorder'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderOutlined.js b/packages/material-ui-icons/lib/esm/StarBorderOutlined.js new file mode 100644 index 00000000000000..8ceb47a02553f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarBorderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderPurple500.js b/packages/material-ui-icons/lib/esm/StarBorderPurple500.js new file mode 100644 index 00000000000000..84ce5c27baf36d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderPurple500.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" +}), 'StarBorderPurple500'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderPurple500Outlined.js b/packages/material-ui-icons/lib/esm/StarBorderPurple500Outlined.js new file mode 100644 index 00000000000000..2b7a32f52ee855 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderPurple500Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarBorderPurple500Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderPurple500Rounded.js b/packages/material-ui-icons/lib/esm/StarBorderPurple500Rounded.js new file mode 100644 index 00000000000000..db24a0760f5f8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderPurple500Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M9.58 10H5.12c-.97 0-1.37 1.25-.58 1.81l3.64 2.6-1.43 4.61c-.29.93.79 1.68 1.56 1.09l3.69-2.8 3.69 2.81c.77.59 1.85-.16 1.56-1.09l-1.43-4.61 3.64-2.6c.79-.57.39-1.81-.58-1.81h-4.46l-1.47-4.84c-.29-.95-1.63-.95-1.91 0L9.58 10z" +}), 'StarBorderPurple500Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderPurple500Sharp.js b/packages/material-ui-icons/lib/esm/StarBorderPurple500Sharp.js new file mode 100644 index 00000000000000..6ff62d48afd0ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderPurple500Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarBorderPurple500Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderPurple500TwoTone.js b/packages/material-ui-icons/lib/esm/StarBorderPurple500TwoTone.js new file mode 100644 index 00000000000000..fc99fe45e1df4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderPurple500TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" +}), 'StarBorderPurple500TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderRounded.js b/packages/material-ui-icons/lib/esm/StarBorderRounded.js new file mode 100644 index 00000000000000..c8eba69425753d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.65 9.04-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarBorderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderSharp.js b/packages/material-ui-icons/lib/esm/StarBorderSharp.js new file mode 100644 index 00000000000000..cae88fb71db8f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarBorderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarBorderTwoTone.js b/packages/material-ui-icons/lib/esm/StarBorderTwoTone.js new file mode 100644 index 00000000000000..49c841edd3b3a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarBorderTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarBorderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarHalf.js b/packages/material-ui-icons/lib/esm/StarHalf.js new file mode 100644 index 00000000000000..e41d4956b2069b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarHalf.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarHalf'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarHalfOutlined.js b/packages/material-ui-icons/lib/esm/StarHalfOutlined.js new file mode 100644 index 00000000000000..3671e1d08c795a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarHalfOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarHalfOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarHalfRounded.js b/packages/material-ui-icons/lib/esm/StarHalfRounded.js new file mode 100644 index 00000000000000..879c76d62af0b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarHalfRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.65 9.04-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarHalfRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarHalfSharp.js b/packages/material-ui-icons/lib/esm/StarHalfSharp.js new file mode 100644 index 00000000000000..500bc547e8b9a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarHalfSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarHalfSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarHalfTwoTone.js b/packages/material-ui-icons/lib/esm/StarHalfTwoTone.js new file mode 100644 index 00000000000000..ba8f97868ca585 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarHalfTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarHalfTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarOutline.js b/packages/material-ui-icons/lib/esm/StarOutline.js new file mode 100644 index 00000000000000..0ed41c54966865 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarOutline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarOutlineOutlined.js b/packages/material-ui-icons/lib/esm/StarOutlineOutlined.js new file mode 100644 index 00000000000000..cd7b91aaa19285 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarOutlineRounded.js b/packages/material-ui-icons/lib/esm/StarOutlineRounded.js new file mode 100644 index 00000000000000..3f72c2eec824f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.65 9.04-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarOutlineSharp.js b/packages/material-ui-icons/lib/esm/StarOutlineSharp.js new file mode 100644 index 00000000000000..243661420fade2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/StarOutlineTwoTone.js new file mode 100644 index 00000000000000..ccd37297bbc6a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}), 'StarOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarOutlined.js b/packages/material-ui-icons/lib/esm/StarOutlined.js new file mode 100644 index 00000000000000..4709a816986534 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" +}), 'StarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarPurple500.js b/packages/material-ui-icons/lib/esm/StarPurple500.js new file mode 100644 index 00000000000000..d92f0613bd086d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarPurple500.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" +}), 'StarPurple500'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarPurple500Outlined.js b/packages/material-ui-icons/lib/esm/StarPurple500Outlined.js new file mode 100644 index 00000000000000..01c38b68746dd0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarPurple500Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" +}), 'StarPurple500Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarPurple500Rounded.js b/packages/material-ui-icons/lib/esm/StarPurple500Rounded.js new file mode 100644 index 00000000000000..5d94c51e6d9867 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarPurple500Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M9.58 10H5.12c-.97 0-1.37 1.25-.58 1.81l3.64 2.6-1.43 4.61c-.29.93.79 1.68 1.56 1.09l3.69-2.8 3.69 2.81c.77.59 1.85-.16 1.56-1.09l-1.43-4.61 3.64-2.6c.79-.57.39-1.81-.58-1.81h-4.46l-1.47-4.84c-.29-.95-1.63-.95-1.91 0L9.58 10z" +}), 'StarPurple500Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarPurple500Sharp.js b/packages/material-ui-icons/lib/esm/StarPurple500Sharp.js new file mode 100644 index 00000000000000..e3c71e4f4c1d5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarPurple500Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" +}), 'StarPurple500Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarPurple500TwoTone.js b/packages/material-ui-icons/lib/esm/StarPurple500TwoTone.js new file mode 100644 index 00000000000000..58097d4fb70484 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarPurple500TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" +}), 'StarPurple500TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarRate.js b/packages/material-ui-icons/lib/esm/StarRate.js new file mode 100644 index 00000000000000..1a6ab544444088 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarRate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.43 10 12 2l-2.43 8H2l6.18 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10z" +}), 'StarRate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarRateOutlined.js b/packages/material-ui-icons/lib/esm/StarRateOutlined.js new file mode 100644 index 00000000000000..25809bd635f83e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarRateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89M12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10h-7.58L12 2z" +}), 'StarRateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarRateRounded.js b/packages/material-ui-icons/lib/esm/StarRateRounded.js new file mode 100644 index 00000000000000..92a7ec8cf3cb9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarRateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.43 10-1.47-4.84c-.29-.95-1.63-.95-1.91 0L9.57 10H5.12c-.97 0-1.37 1.25-.58 1.81l3.64 2.6-1.43 4.61c-.29.93.79 1.68 1.56 1.09l3.69-2.8 3.69 2.81c.77.59 1.85-.16 1.56-1.09l-1.43-4.61 3.64-2.6c.79-.57.39-1.81-.58-1.81h-4.45z" +}), 'StarRateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarRateSharp.js b/packages/material-ui-icons/lib/esm/StarRateSharp.js new file mode 100644 index 00000000000000..2336bd4f29f546 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarRateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.43 10 12 2l-2.43 8H2l6.18 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10z" +}), 'StarRateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarRateTwoTone.js b/packages/material-ui-icons/lib/esm/StarRateTwoTone.js new file mode 100644 index 00000000000000..6015411886c3b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarRateTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.94 12 12 8.89 11.06 12H8.24l2.27 1.62-.93 3.01L12 14.79l2.42 1.84-.93-3.01L15.76 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 10h-7.58L12 2l-2.42 8H2l6.17 4.41L5.83 22 12 17.31 18.17 22l-2.35-7.59L22 10zm-7.58 6.63L12 14.79l-2.42 1.84.93-3.01L8.24 12h2.82L12 8.89l.94 3.11h2.82l-2.27 1.62.93 3.01z" +}, "1")], 'StarRateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarRounded.js b/packages/material-ui-icons/lib/esm/StarRounded.js new file mode 100644 index 00000000000000..79fa77939757e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 17.27 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.72 3.67-3.18c.67-.58.31-1.68-.57-1.75l-4.83-.41-1.89-4.46c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5z" +}), 'StarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarSharp.js b/packages/material-ui-icons/lib/esm/StarSharp.js new file mode 100644 index 00000000000000..243aeb6c3c5d22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" +}), 'StarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarTwoTone.js b/packages/material-ui-icons/lib/esm/StarTwoTone.js new file mode 100644 index 00000000000000..4dc86967a4bf22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 15.4-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" +}, "1")], 'StarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Stars.js b/packages/material-ui-icons/lib/esm/Stars.js new file mode 100644 index 00000000000000..9b5669dd719329 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Stars.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z" +}), 'Stars'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarsOutlined.js b/packages/material-ui-icons/lib/esm/StarsOutlined.js new file mode 100644 index 00000000000000..c0687ff5db67be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zm-5.07 6.26L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06l1.09 2.56 2.78.24-2.11 1.83.64 2.73zm-2.86-11.4-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.13 16.7 4 14.48 4 12zm3.84 6.82L12 16.31l4.16 2.5c-1.22.75-2.64 1.19-4.17 1.19-1.52 0-2.94-.44-4.15-1.18zm9.25-.65-1.11-4.75 3.79-3.28c.14.59.23 1.22.23 1.86 0 2.48-1.14 4.7-2.91 6.17z" +}), 'StarsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarsRounded.js b/packages/material-ui-icons/lib/esm/StarsRounded.js new file mode 100644 index 00000000000000..9ef17d2dde92e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.23 15.39L12 15.45l-3.22 1.94c-.38.23-.85-.11-.75-.54l.85-3.66-2.83-2.45c-.33-.29-.15-.84.29-.88l3.74-.32 1.46-3.45c.17-.41.75-.41.92 0l1.46 3.44 3.74.32c.44.04.62.59.28.88l-2.83 2.45.85 3.67c.1.43-.36.77-.74.54z" +}), 'StarsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarsSharp.js b/packages/material-ui-icons/lib/esm/StarsSharp.js new file mode 100644 index 00000000000000..960bca9cdd5d64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z" +}), 'StarsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StarsTwoTone.js b/packages/material-ui-icons/lib/esm/StarsTwoTone.js new file mode 100644 index 00000000000000..8930f778cc3b04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StarsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.47 9.16c-1.1-2.87-3.8-4.95-7.01-5.14l2 4.71 5.01.43zm-7.93-5.14c-3.22.18-5.92 2.27-7.02 5.15l5.02-.43 2-4.72zm-7.31 6.12C4.08 10.74 4 11.36 4 12c0 2.48 1.14 4.7 2.91 6.17l1.11-4.75-3.79-3.28zm15.54-.01-3.79 3.28 1.1 4.76C18.86 16.7 20 14.48 20 12c0-.64-.09-1.27-.23-1.87zM7.84 18.82c1.21.74 2.63 1.18 4.15 1.18 1.53 0 2.95-.44 4.17-1.18L12 16.31l-4.16 2.51z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zM12 8.06l1.09 2.56 2.78.24-2.11 1.83.63 2.73L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06zm-.46-4.04-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.14 16.7 4 14.48 4 12zm7.99 8c-1.52 0-2.94-.44-4.15-1.18L12 16.31l4.16 2.51c-1.22.74-2.64 1.18-4.17 1.18zm5.1-1.83-1.1-4.76 3.79-3.28c.13.6.22 1.23.22 1.87 0 2.48-1.14 4.7-2.91 6.17z" +}, "1")], 'StarsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentLandscape.js b/packages/material-ui-icons/lib/esm/StayCurrentLandscape.js new file mode 100644 index 00000000000000..b0105badb388f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentLandscape.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" +}), 'StayCurrentLandscape'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentLandscapeOutlined.js b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeOutlined.js new file mode 100644 index 00000000000000..e594aca4fc7af8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" +}), 'StayCurrentLandscapeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentLandscapeRounded.js b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeRounded.js new file mode 100644 index 00000000000000..3a814cade55f93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" +}), 'StayCurrentLandscapeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentLandscapeSharp.js b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeSharp.js new file mode 100644 index 00000000000000..85b6a40df84aac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 19h22V5H1v14zM19 7v10H5V7h14z" +}), 'StayCurrentLandscapeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentLandscapeTwoTone.js b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeTwoTone.js new file mode 100644 index 00000000000000..59de908f26cc74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentLandscapeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 7h14v10H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" +}, "1")], 'StayCurrentLandscapeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentPortrait.js b/packages/material-ui-icons/lib/esm/StayCurrentPortrait.js new file mode 100644 index 00000000000000..f43248bed2290e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentPortrait.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'StayCurrentPortrait'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentPortraitOutlined.js b/packages/material-ui-icons/lib/esm/StayCurrentPortraitOutlined.js new file mode 100644 index 00000000000000..1273e9c809cfd4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentPortraitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'StayCurrentPortraitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentPortraitRounded.js b/packages/material-ui-icons/lib/esm/StayCurrentPortraitRounded.js new file mode 100644 index 00000000000000..905869783b57db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentPortraitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'StayCurrentPortraitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentPortraitSharp.js b/packages/material-ui-icons/lib/esm/StayCurrentPortraitSharp.js new file mode 100644 index 00000000000000..604ca2e1067adc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentPortraitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 1.01 5.01 1v22H19V1.01zM17 19H7V5h10v14z" +}), 'StayCurrentPortraitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayCurrentPortraitTwoTone.js b/packages/material-ui-icons/lib/esm/StayCurrentPortraitTwoTone.js new file mode 100644 index 00000000000000..9da021618f211d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayCurrentPortraitTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 5h10v14H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}, "1")], 'StayCurrentPortraitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryLandscape.js b/packages/material-ui-icons/lib/esm/StayPrimaryLandscape.js new file mode 100644 index 00000000000000..86e07b32c5bbcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryLandscape.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" +}), 'StayPrimaryLandscape'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeOutlined.js b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeOutlined.js new file mode 100644 index 00000000000000..bf05491e74de60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" +}), 'StayPrimaryLandscapeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeRounded.js b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeRounded.js new file mode 100644 index 00000000000000..df4f58fb8fbdfb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.01 7 1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z" +}), 'StayPrimaryLandscapeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeSharp.js b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeSharp.js new file mode 100644 index 00000000000000..1d903c3d58fbf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 19h22V5H1v14zM19 7v10H5V7h14z" +}), 'StayPrimaryLandscapeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeTwoTone.js b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeTwoTone.js new file mode 100644 index 00000000000000..7d822d375b8096 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryLandscapeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 7h14v10H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z" +}, "1")], 'StayPrimaryLandscapeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryPortrait.js b/packages/material-ui-icons/lib/esm/StayPrimaryPortrait.js new file mode 100644 index 00000000000000..6394532c5c8b72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryPortrait.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'StayPrimaryPortrait'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryPortraitOutlined.js b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitOutlined.js new file mode 100644 index 00000000000000..0faf7ef68e52c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'StayPrimaryPortraitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryPortraitRounded.js b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitRounded.js new file mode 100644 index 00000000000000..7db59232be43f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}), 'StayPrimaryPortraitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryPortraitSharp.js b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitSharp.js new file mode 100644 index 00000000000000..3e2d4219399cc7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14z" +}), 'StayPrimaryPortraitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StayPrimaryPortraitTwoTone.js b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitTwoTone.js new file mode 100644 index 00000000000000..0ddcebb8be4517 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StayPrimaryPortraitTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 5h10v14H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}, "1")], 'StayPrimaryPortraitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StickyNote2.js b/packages/material-ui-icons/lib/esm/StickyNote2.js new file mode 100644 index 00000000000000..dec85887ee6b26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StickyNote2.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H4.99C3.89 3 3 3.9 3 5l.01 14c0 1.1.89 2 1.99 2h10l6-6V5c0-1.1-.9-2-2-2zM7 8h10v2H7V8zm5 6H7v-2h5v2zm2 5.5V14h5.5L14 19.5z" +}), 'StickyNote2'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StickyNote2Outlined.js b/packages/material-ui-icons/lib/esm/StickyNote2Outlined.js new file mode 100644 index 00000000000000..1e783eeac6ad15 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StickyNote2Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v9h-5v5H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10l6-6V5c0-1.1-.9-2-2-2zm-7 11H7v-2h5v2zm5-4H7V8h10v2z" +}), 'StickyNote2Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StickyNote2Rounded.js b/packages/material-ui-icons/lib/esm/StickyNote2Rounded.js new file mode 100644 index 00000000000000..74d145755593c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StickyNote2Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H4.99C3.89 3 3 3.9 3 5l.01 14c0 1.1.89 2 1.99 2h10l6-6V5c0-1.1-.9-2-2-2zM8 8h8c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm3 6H8c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm3 5.5V15c0-.55.45-1 1-1h4.5L14 19.5z" +}), 'StickyNote2Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StickyNote2Sharp.js b/packages/material-ui-icons/lib/esm/StickyNote2Sharp.js new file mode 100644 index 00000000000000..c92f8b31b45931 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StickyNote2Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.99 3 3 21h12l6-6V3H2.99zM7 8h10v2H7V8zm5 6H7v-2h5v2zm2 5.5V14h5.5L14 19.5z" +}), 'StickyNote2Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StickyNote2TwoTone.js b/packages/material-ui-icons/lib/esm/StickyNote2TwoTone.js new file mode 100644 index 00000000000000..c275a4c5f524a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StickyNote2TwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5v14h9v-5h5V5H5zm7 9H7v-2h5v2zm5-4H7V8h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 5v9h-5v5H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10l6-6V5c0-1.1-.9-2-2-2zm-7 11H7v-2h5v2zm5-4H7V8h10v2z" +}, "1")], 'StickyNote2TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Stop.js b/packages/material-ui-icons/lib/esm/Stop.js new file mode 100644 index 00000000000000..c32df81438ec7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Stop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 6h12v12H6z" +}), 'Stop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopCircle.js b/packages/material-ui-icons/lib/esm/StopCircle.js new file mode 100644 index 00000000000000..dce8b336c7ed77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopCircle.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M8 16h8V8H8v8zm4-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'StopCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopCircleOutlined.js b/packages/material-ui-icons/lib/esm/StopCircleOutlined.js new file mode 100644 index 00000000000000..12eec619976b39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopCircleOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 8h8v8H8z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "1")], 'StopCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopCircleRounded.js b/packages/material-ui-icons/lib/esm/StopCircleRounded.js new file mode 100644 index 00000000000000..fa9324de554d1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopCircleRounded.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M9 16h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'StopCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopCircleSharp.js b/packages/material-ui-icons/lib/esm/StopCircleSharp.js new file mode 100644 index 00000000000000..b640009de6604e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopCircleSharp.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M8 16h8V8H8v8zm4-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" +}), 'StopCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopCircleTwoTone.js b/packages/material-ui-icons/lib/esm/StopCircleTwoTone.js new file mode 100644 index 00000000000000..c0444859d64585 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopCircleTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4 12H8V8h8v8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 8h8v8H8z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" +}, "2")], 'StopCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopOutlined.js b/packages/material-ui-icons/lib/esm/StopOutlined.js new file mode 100644 index 00000000000000..fd6ba37c724a37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 8v8H8V8h8m2-2H6v12h12V6z" +}), 'StopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopRounded.js b/packages/material-ui-icons/lib/esm/StopRounded.js new file mode 100644 index 00000000000000..26617d5affdc48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 6h8c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2z" +}), 'StopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopScreenShare.js b/packages/material-ui-icons/lib/esm/StopScreenShare.js new file mode 100644 index 00000000000000..5f5bcf3051d470 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopScreenShare.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.22 18.02 2 2H24v-2h-2.78zm.77-2 .01-10c0-1.11-.9-2-2-2H7.22l5.23 5.23c.18-.04.36-.07.55-.1V7.02l4 3.73-1.58 1.47 5.54 5.54c.61-.33 1.03-.99 1.03-1.74zM2.39 1.73 1.11 3l1.54 1.54c-.4.36-.65.89-.65 1.48v10c0 1.1.89 2 2 2H0v2h18.13l2.71 2.71 1.27-1.27L2.39 1.73zM7 15.02c.31-1.48.92-2.95 2.07-4.06l1.59 1.59c-1.54.38-2.7 1.18-3.66 2.47z" +}), 'StopScreenShare'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopScreenShareOutlined.js b/packages/material-ui-icons/lib/esm/StopScreenShareOutlined.js new file mode 100644 index 00000000000000..1b6a6b04ecdc6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopScreenShareOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.79 18 2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13 2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z" +}), 'StopScreenShareOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopScreenShareRounded.js b/packages/material-ui-icons/lib/esm/StopScreenShareRounded.js new file mode 100644 index 00000000000000..b5f4a27d1cdba4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopScreenShareRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 18h-1.2l1.79 1.79c.24-.18.41-.46.41-.79 0-.55-.45-1-1-1zM3.23 2.28c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41l.84.86s-.66.57-.66 1.47C2 6.92 2 16 2 16l.01.01c0 1.09.88 1.98 1.97 1.99H1c-.55 0-1 .45-1 1s.45 1 1 1h17.13l2 2c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L3.23 2.28zM7 15c.31-1.48.94-2.93 2.08-4.05l1.59 1.59C9.13 12.92 7.96 13.71 7 15zm6-5.87v-.98c0-.44.52-.66.84-.37L15 8.87l1.61 1.5c.21.2.21.53 0 .73l-.89.83 5.58 5.58c.43-.37.7-.9.7-1.51V6c0-1.09-.89-1.98-1.98-1.98H7.8l5.14 5.13c.02-.01.04-.02.06-.02z" +}), 'StopScreenShareRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopScreenShareSharp.js b/packages/material-ui-icons/lib/esm/StopScreenShareSharp.js new file mode 100644 index 00000000000000..af3717c2ed36af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopScreenShareSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.79 18 2 2H24v-2zM13 9.13V7l4 3.74-1.28 1.19 5.18 5.18L22 16V4.02H7.8l5.13 5.13c.03-.01.05-.02.07-.02zM1.11 2.98l.89.9v12.14l2 1.99L0 18v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zm7.97 7.97 1.59 1.59C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05z" +}), 'StopScreenShareSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopScreenShareTwoTone.js b/packages/material-ui-icons/lib/esm/StopScreenShareTwoTone.js new file mode 100644 index 00000000000000..e83ef62ca507ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopScreenShareTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.67 12.54C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05L4.13 6.02H4v10.01h10.14l-3.47-3.49z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.79 18 2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13 2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 6.02H9.8l3.13 3.13c.02 0 .04-.01.07-.02V7l4 3.73-1.28 1.2L20 16.21V6.02z", + opacity: ".3" +}, "2")], 'StopScreenShareTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopSharp.js b/packages/material-ui-icons/lib/esm/StopSharp.js new file mode 100644 index 00000000000000..4a393e52f88df7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 6h12v12H6V6z" +}), 'StopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StopTwoTone.js b/packages/material-ui-icons/lib/esm/StopTwoTone.js new file mode 100644 index 00000000000000..cb2715a12e65ac --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StopTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 8h8v8H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 18h12V6H6v12zM8 8h8v8H8V8z" +}, "1")], 'StopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Storage.js b/packages/material-ui-icons/lib/esm/Storage.js new file mode 100644 index 00000000000000..2a3cdc6ceba19e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Storage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" +}), 'Storage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorageOutlined.js b/packages/material-ui-icons/lib/esm/StorageOutlined.js new file mode 100644 index 00000000000000..d9b83e15e0e88b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" +}), 'StorageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorageRounded.js b/packages/material-ui-icons/lib/esm/StorageRounded.js new file mode 100644 index 00000000000000..fa3cb16f6eda71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 20h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm0-3h2v2H4v-2zM2 6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2zm4 1H4V5h2v2zm-2 7h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm0-3h2v2H4v-2z" +}), 'StorageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorageSharp.js b/packages/material-ui-icons/lib/esm/StorageSharp.js new file mode 100644 index 00000000000000..a3d7a45cc6d110 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" +}), 'StorageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorageTwoTone.js b/packages/material-ui-icons/lib/esm/StorageTwoTone.js new file mode 100644 index 00000000000000..a1128e626c3826 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorageTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" +}), 'StorageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Store.js b/packages/material-ui-icons/lib/esm/Store.js new file mode 100644 index 00000000000000..2e510e3cd7cd2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Store.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" +}), 'Store'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreMallDirectory.js b/packages/material-ui-icons/lib/esm/StoreMallDirectory.js new file mode 100644 index 00000000000000..0518391a605b32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreMallDirectory.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" +}), 'StoreMallDirectory'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreMallDirectoryOutlined.js b/packages/material-ui-icons/lib/esm/StoreMallDirectoryOutlined.js new file mode 100644 index 00000000000000..5dbc885a84cf4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreMallDirectoryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.36 9 .6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z" +}), 'StoreMallDirectoryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreMallDirectoryRounded.js b/packages/material-ui-icons/lib/esm/StoreMallDirectoryRounded.js new file mode 100644 index 00000000000000..a70f3d7055cf7d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreMallDirectoryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.16 7.8c-.09-.46-.5-.8-.98-.8H4.82c-.48 0-.89.34-.98.8L3 12v1c0 .55.45 1 1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1s1-.45 1-1v-5c.55 0 1-.45 1-1v-1l-.84-4.2zM12 18H6v-4h6v4zM5 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z" +}), 'StoreMallDirectoryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreMallDirectorySharp.js b/packages/material-ui-icons/lib/esm/StoreMallDirectorySharp.js new file mode 100644 index 00000000000000..c53f5c9014ba41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreMallDirectorySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" +}), 'StoreMallDirectorySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreMallDirectoryTwoTone.js b/packages/material-ui-icons/lib/esm/StoreMallDirectoryTwoTone.js new file mode 100644 index 00000000000000..cc492824e6ae41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreMallDirectoryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5.64 9-.6 3h13.92l-.6-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m4 7-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5H4zm8 11H6v-4h6v4zm-6.96-6 .6-3h12.72l.6 3H5.04zM4 4h16v2H4z" +}, "1")], 'StoreMallDirectoryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreOutlined.js b/packages/material-ui-icons/lib/esm/StoreOutlined.js new file mode 100644 index 00000000000000..90bc39111dc437 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.36 9 .6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z" +}), 'StoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreRounded.js b/packages/material-ui-icons/lib/esm/StoreRounded.js new file mode 100644 index 00000000000000..d847ff6546458f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm15.16 1.8c-.09-.46-.5-.8-.98-.8H4.82c-.48 0-.89.34-.98.8l-1 5c-.12.62.35 1.2.98 1.2H4v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1s1-.45 1-1v-5h.18c.63 0 1.1-.58.98-1.2l-1-5zM12 18H6v-4h6v4z" +}), 'StoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreSharp.js b/packages/material-ui-icons/lib/esm/StoreSharp.js new file mode 100644 index 00000000000000..f0bebebd7e60da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" +}), 'StoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StoreTwoTone.js b/packages/material-ui-icons/lib/esm/StoreTwoTone.js new file mode 100644 index 00000000000000..7da74afabc2ded --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StoreTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5.64 9-.6 3h13.92l-.6-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 4h16v2H4zm16 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm-8 11H6v-4h6v4zm-6.96-6 .6-3h12.72l.6 3H5.04z" +}, "1")], 'StoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Storefront.js b/packages/material-ui-icons/lib/esm/Storefront.js new file mode 100644 index 00000000000000..35b8e2fdba791f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Storefront.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.9 8.89-1.05-4.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zm-2.99-3.9 1.05 4.37c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01zM13 5h1.96l.54 4.52c.05.39-.07.78-.33 1.07-.22.26-.54.41-.95.41-.67 0-1.22-.59-1.22-1.31V5zM8.49 9.52 9.04 5H11v4.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07zm-4.45-.16L5.05 5h1.97l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.27-.32-.36-.75-.26-1.17zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z" +}), 'Storefront'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorefrontOutlined.js b/packages/material-ui-icons/lib/esm/StorefrontOutlined.js new file mode 100644 index 00000000000000..e9db9fed98c306 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorefrontOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.9 8.89-1.05-4.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zm-2.99-3.9 1.05 4.37c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01zM13 5h1.96l.54 4.52c.05.39-.07.78-.33 1.07-.22.26-.54.41-.95.41-.67 0-1.22-.59-1.22-1.31V5zM8.49 9.52 9.04 5H11v4.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07zm-4.45-.16L5.05 5h1.97l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.27-.32-.36-.75-.26-1.17zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z" +}), 'StorefrontOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorefrontRounded.js b/packages/material-ui-icons/lib/esm/StorefrontRounded.js new file mode 100644 index 00000000000000..89708e8da92eb3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorefrontRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.9 7.89-1.05-3.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 7.89c-.46 1.97.85 3.11.9 3.17V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7.94c1.12-1.12 1.09-2.41.9-3.17zM13 5h1.96l.54 3.52c.09.71-.39 1.48-1.28 1.48-.67 0-1.22-.59-1.22-1.31V5zM6.44 8.86c-.08.65-.6 1.14-1.21 1.14-.93 0-1.35-.97-1.19-1.64L5.05 5h1.97l-.58 3.86zM11 8.69c0 .72-.55 1.31-1.29 1.31-.75 0-1.3-.7-1.22-1.48L9.04 5H11v3.69zM18.77 10c-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01 1.05 3.37c.16.67-.25 1.64-1.19 1.64z" +}), 'StorefrontRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorefrontSharp.js b/packages/material-ui-icons/lib/esm/StorefrontSharp.js new file mode 100644 index 00000000000000..dcdb5ac5b097ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorefrontSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.9 8.89 20.49 3H3.51L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V21h18v-8.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zM7.02 5l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.26-.33-.35-.76-.25-1.17L5.09 5h1.93zm11.89 0 1.05 4.36c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5h1.93zm-3.4 4.52c.05.39-.07.78-.33 1.07-.23.26-.55.41-.96.41-.67 0-1.22-.59-1.22-1.31V5h1.96l.55 4.52zM11 9.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07L9.04 5H11v4.69zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z" +}), 'StorefrontSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StorefrontTwoTone.js b/packages/material-ui-icons/lib/esm/StorefrontTwoTone.js new file mode 100644 index 00000000000000..02ae3e867c001e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StorefrontTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M6.44 9.86 7.02 5H5.05L4.04 9.36c-.1.42-.01.84.25 1.17.14.18.44.47.94.47.61 0 1.13-.49 1.21-1.14zM9.71 11c.74 0 1.29-.59 1.29-1.31V5H9.04l-.55 4.52c-.05.39.07.78.33 1.07.23.26.55.41.89.41zm4.51 0c.41 0 .72-.15.96-.41.25-.29.37-.68.33-1.07L14.96 5H13v4.69c0 .72.55 1.31 1.22 1.31zm4.69-6.01L16.98 5l.58 4.86c.08.65.6 1.14 1.21 1.14.49 0 .8-.29.93-.47.26-.33.35-.76.25-1.17l-1.04-4.37z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.9 8.89-1.05-4.37c-.22-.9-1-1.52-1.91-1.52H5.05c-.9 0-1.69.63-1.9 1.52L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zM13 5h1.96l.54 4.52c.05.39-.07.78-.33 1.07-.22.26-.54.41-.95.41-.67 0-1.22-.59-1.22-1.31V5zM8.49 9.52 9.04 5H11v4.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41-.25-.29-.37-.68-.33-1.07zm-4.2 1.01c-.26-.33-.35-.76-.25-1.17L5.05 5h1.97l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.5 0-.8-.29-.94-.47zM19 19H5v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19zm.71-8.47c-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5l1.93-.01 1.05 4.37c.1.42.01.85-.25 1.17z" +}, "1")], 'StorefrontTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Storm.js b/packages/material-ui-icons/lib/esm/Storm.js new file mode 100644 index 00000000000000..9e5d4524020f80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Storm.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'Storm'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StormOutlined.js b/packages/material-ui-icons/lib/esm/StormOutlined.js new file mode 100644 index 00000000000000..862a68c04c6d69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StormOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'StormOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StormRounded.js b/packages/material-ui-icons/lib/esm/StormRounded.js new file mode 100644 index 00000000000000..bc5cd545857031 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StormRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.1-1.75.1-3.5.59-5.17C5.61 2.63 5.14 2 4.48 2h-.01c-.43 0-.83.28-.95.7-1.28 4.31-.87 9.11 1.55 13.3 1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.1 1.75-.09 3.5-.58 5.18-.18.63.29 1.26.95 1.26.44 0 .83-.28.95-.7 1.27-4.31.87-9.11-1.55-13.3zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'StormRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StormSharp.js b/packages/material-ui-icons/lib/esm/StormSharp.js new file mode 100644 index 00000000000000..c796422c129779 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StormSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" +}), 'StormSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StormTwoTone.js b/packages/material-ui-icons/lib/esm/StormTwoTone.js new file mode 100644 index 00000000000000..a4c38a114a1bd1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StormTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "12", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.2 9C15.54 6.13 11.86 5.15 9 6.8c-2.67 1.54-3.7 4.84-2.5 7.6.09.2.19.4.3.6 1.66 2.87 5.33 3.85 8.2 2.2 2.67-1.54 3.7-4.84 2.5-7.6-.09-.2-.19-.4-.3-.6zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16c1.1 1.91 2.88 3.19 4.86 3.72 1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2c-2.87 1.65-6.54.67-8.2-2.2-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6z" +}, "3")], 'StormTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Straighten.js b/packages/material-ui-icons/lib/esm/Straighten.js new file mode 100644 index 00000000000000..51e18ea07e21ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Straighten.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" +}), 'Straighten'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StraightenOutlined.js b/packages/material-ui-icons/lib/esm/StraightenOutlined.js new file mode 100644 index 00000000000000..d0df0bc95f1d13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StraightenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" +}), 'StraightenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StraightenRounded.js b/packages/material-ui-icons/lib/esm/StraightenRounded.js new file mode 100644 index 00000000000000..89af26d80ebba6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StraightenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 10H4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h1c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1z" +}), 'StraightenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StraightenSharp.js b/packages/material-ui-icons/lib/esm/StraightenSharp.js new file mode 100644 index 00000000000000..4edf307342574f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StraightenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 6H1v12h22V6zm-2 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" +}), 'StraightenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StraightenTwoTone.js b/packages/material-ui-icons/lib/esm/StraightenTwoTone.js new file mode 100644 index 00000000000000..9e7d71d46db7a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StraightenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 12h-2V8h-2v4h-2V8h-2v4H9V8H7v4H5V8H3v8h18V8h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" +}, "1")], 'StraightenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Stream.js b/packages/material-ui-icons/lib/esm/Stream.js new file mode 100644 index 00000000000000..c0844fb21976ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Stream.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "20", + cy: "12", + r: "2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "12", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "2" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M10.05 8.59 6.03 4.55h-.01l-.31-.32-1.42 1.41 4.02 4.05.01-.01.31.32zm3.893.027 4.405-4.392L19.76 5.64l-4.405 4.393zM10.01 15.36l-1.42-1.41-4.03 4.01-.32.33 1.41 1.41 4.03-4.02zm9.75 2.94-3.99-4.01-.36-.35L14 15.35l3.99 4.01.35.35z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "4")], 'Stream'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreamOutlined.js b/packages/material-ui-icons/lib/esm/StreamOutlined.js new file mode 100644 index 00000000000000..fa7415e79382e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreamOutlined.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "20", + cy: "12", + r: "2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "12", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "2" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m13.943 8.6191 4.4044-4.392 1.4122 1.4162-4.4043 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "4")], 'StreamOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreamRounded.js b/packages/material-ui-icons/lib/esm/StreamRounded.js new file mode 100644 index 00000000000000..0530bf4c1d8c21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreamRounded.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "20", + cy: "12", + r: "2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "12", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "2" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m7.89 14.65-2.94 2.93c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0l2.94-2.93c.39-.38.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0zM6.41 4.94a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.93 2.94c.39.39 1.02.39 1.42 0 .38-.39.38-1.02-.01-1.41L6.41 4.94zm9.71 9.71c-.39-.39-1.02-.39-1.42 0-.39.39-.39 1.02 0 1.41L17.64 19c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41l-2.93-2.94zm-.06-5.32 2.99-2.98c.39-.4.39-1.03 0-1.42a.9959.9959 0 0 0-1.41 0l-2.99 2.98c-.39.39-.39 1.02 0 1.42.39.39 1.02.39 1.41 0z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "4")], 'StreamRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreamSharp.js b/packages/material-ui-icons/lib/esm/StreamSharp.js new file mode 100644 index 00000000000000..a13cf78895253b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreamSharp.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "20", + cy: "12", + r: "2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "12", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "2" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m13.943 8.6191 4.4044-4.392 1.4122 1.4162-4.4043 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "4")], 'StreamSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreamTwoTone.js b/packages/material-ui-icons/lib/esm/StreamTwoTone.js new file mode 100644 index 00000000000000..a32a02bdfec905 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreamTwoTone.js @@ -0,0 +1,21 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "20", + cy: "12", + r: "2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "4", + cy: "12", + r: "2" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "20", + r: "2" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m13.943 8.6191 4.4044-4.392 1.4122 1.4162-4.4043 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "4", + r: "2" +}, "4")], 'StreamTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Streetview.js b/packages/material-ui-icons/lib/esm/Streetview.js new file mode 100644 index 00000000000000..c88d24af1d212b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Streetview.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" +}, "2")], 'Streetview'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreetviewOutlined.js b/packages/material-ui-icons/lib/esm/StreetviewOutlined.js new file mode 100644 index 00000000000000..b0ecf92a70abab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreetviewOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" +}, "2")], 'StreetviewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreetviewRounded.js b/packages/material-ui-icons/lib/esm/StreetviewRounded.js new file mode 100644 index 00000000000000..a4343e775e4aed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreetviewRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" +}, "2")], 'StreetviewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreetviewSharp.js b/packages/material-ui-icons/lib/esm/StreetviewSharp.js new file mode 100644 index 00000000000000..8ce951f9d82622 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreetviewSharp.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" +}, "2")], 'StreetviewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StreetviewTwoTone.js b/packages/material-ui-icons/lib/esm/StreetviewTwoTone.js new file mode 100644 index 00000000000000..f1ff777b3d76ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StreetviewTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "6", + r: "5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z" +}, "2")], 'StreetviewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrikethroughS.js b/packages/material-ui-icons/lib/esm/StrikethroughS.js new file mode 100644 index 00000000000000..d70845e361d3bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrikethroughS.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.85 7.08C6.85 4.37 9.45 3 12.24 3c1.64 0 3 .49 3.9 1.28.77.65 1.46 1.73 1.46 3.24h-3.01c0-.31-.05-.59-.15-.85-.29-.86-1.2-1.28-2.25-1.28-1.86 0-2.34 1.02-2.34 1.7 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.21-.34-.54-.89-.54-1.92zM21 12v-2H3v2h9.62c1.15.45 1.96.75 1.96 1.97 0 1-.81 1.67-2.28 1.67-1.54 0-2.93-.54-2.93-2.51H6.4c0 .55.08 1.13.24 1.58.81 2.29 3.29 3.3 5.67 3.3 2.27 0 5.3-.89 5.3-4.05 0-.3-.01-1.16-.48-1.94H21V12z" +}), 'StrikethroughS'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrikethroughSOutlined.js b/packages/material-ui-icons/lib/esm/StrikethroughSOutlined.js new file mode 100644 index 00000000000000..dc2406520a3f5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrikethroughSOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z" +}), 'StrikethroughSOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrikethroughSRounded.js b/packages/material-ui-icons/lib/esm/StrikethroughSRounded.js new file mode 100644 index 00000000000000..2e30c6ff7d7a43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrikethroughSRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.59 7.52c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01M20 10H4c-.55 0-1 .45-1 1s.45 1 1 1h8.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H20c.55 0 1-.45 1-1V11c0-.55-.45-1-1-1z" +}), 'StrikethroughSRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrikethroughSSharp.js b/packages/material-ui-icons/lib/esm/StrikethroughSSharp.js new file mode 100644 index 00000000000000..24fc304b02359c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrikethroughSSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z" +}), 'StrikethroughSSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrikethroughSTwoTone.js b/packages/material-ui-icons/lib/esm/StrikethroughSTwoTone.js new file mode 100644 index 00000000000000..4fc756d3eee429 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrikethroughSTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.44 5.88c.19-.15.43-.27.72-.36.29-.09.64-.13 1.03-.13.4 0 .76.06 1.06.16.3.11.55.25.75.44s.35.41.44.68c.1.26.15.54.15.85h3.01c0-.66-.13-1.26-.38-1.81s-.61-1.03-1.08-1.43c-.46-.4-1.03-.72-1.69-.94-.67-.23-1.4-.34-2.21-.34-.79 0-1.52.1-2.18.29-.65.2-1.22.48-1.7.83-.48.36-.85.79-1.11 1.29-.27.51-.4 1.06-.4 1.67 0 .64.13 1.19.39 1.67.04.08.1.17.15.25H12c-.64-.22-1.03-.45-1.41-.7-.49-.33-.74-.73-.74-1.21 0-.23.05-.45.15-.66s.25-.39.44-.55zM3 12h9.62c.18.07.4.14.55.2.37.17.66.34.87.51.21.17.35.36.43.57.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42-.45-.44-.59-.75-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58.16.45.37.85.65 1.21.28.35.6.66.98.92.37.26.78.48 1.22.65s.9.3 1.38.39c.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28.65-.19 1.21-.45 1.67-.79.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V10H3v2z" +}), 'StrikethroughSTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Stroller.js b/packages/material-ui-icons/lib/esm/Stroller.js new file mode 100644 index 00000000000000..e252bf05f7834e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Stroller.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "16", + cy: "20", + r: "2" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "20", + r: "2" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22 7v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-8.8 10.32C6.12 16 6.58 17 7.43 17H15c1.1 0 2-.9 2-2V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2zm-7.7-2.9C13.03 3.4 11.56 3 10 3c-1.97 0-3.79.64-5.28 1.72l4.89 4.89L14.3 4.1z" +}, "2")], 'Stroller'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrollerOutlined.js b/packages/material-ui-icons/lib/esm/StrollerOutlined.js new file mode 100644 index 00000000000000..d6e40b9cce950f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrollerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9-9.34L9.6 15H15V8.66M18.65 3C20.52 3 22 4.56 22 6.48V7h-2v-.52C20 5.66 19.42 5 18.65 5c-.68 0-1.07.59-1.65 1.27V15c0 1.1-.9 2-2 2H7.43c-.85 0-1.31-1-.76-1.65l8.8-10.32C16.11 4.27 16.99 3 18.65 3zM10 5c-.65 0-1.29.09-1.91.27l1.4 1.4 1.37-1.61C10.58 5.02 10.29 5 10 5m0-2c1.56 0 3.03.4 4.3 1.1L9.6 9.61 4.72 4.72C6.21 3.64 8.03 3 10 3z" +}), 'StrollerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrollerRounded.js b/packages/material-ui-icons/lib/esm/StrollerRounded.js new file mode 100644 index 00000000000000..e39c0dbff7b3da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrollerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8.3-13.9C13.03 3.4 11.56 3 10 3c-1.51 0-2.93.38-4.17 1.03-.59.31-.68 1.12-.22 1.58L9.6 9.6l4.7-5.5zm7.64 1.73C21.65 4.22 20.3 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03L6.71 15.31c-.55.65-.09 1.65.76 1.65H15c1.1 0 2-.9 2-2V6.27c.58-.68.97-1.27 1.65-1.27.68 0 1.22.52 1.33 1.21.1.45.5.79.98.79.55 0 1-.45 1-1 0-.06-.01-.11-.02-.17z" +}), 'StrollerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrollerSharp.js b/packages/material-ui-icons/lib/esm/StrollerSharp.js new file mode 100644 index 00000000000000..6c1459bb7ef2ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrollerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM22 7v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03L5.27 17H17V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2zm-7.7-2.9C13.03 3.4 11.56 3 10 3c-1.97 0-3.79.64-5.28 1.72l4.89 4.89L14.3 4.1z" +}), 'StrollerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StrollerTwoTone.js b/packages/material-ui-icons/lib/esm/StrollerTwoTone.js new file mode 100644 index 00000000000000..456a5f68f42657 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StrollerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 5c.29 0 .58.02.86.05L9.49 6.66l-1.4-1.4C8.71 5.09 9.35 5 10 5m5 3.66V15H9.6L15 8.66", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 5c.29 0 .58.02.86.05L9.49 6.66l-1.4-1.4C8.71 5.09 9.35 5 10 5m5 3.66V15H9.6L15 8.66M18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-8.8 10.32C6.12 16 6.58 17 7.43 17H15c1.1 0 2-.9 2-2V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3zM10 3c-1.97 0-3.79.64-5.28 1.72l4.89 4.89 4.7-5.51C13.03 3.4 11.56 3 10 3zm6 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}, "1")], 'StrollerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Style.js b/packages/material-ui-icons/lib/esm/Style.js new file mode 100644 index 00000000000000..a930fe7379211b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Style.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.53 19.65 1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" +}), 'Style'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StyleOutlined.js b/packages/material-ui-icons/lib/esm/StyleOutlined.js new file mode 100644 index 00000000000000..dda223b666982f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StyleOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m2.53 19.65 1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "9", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M5.88 19.75c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" +}, "2")], 'StyleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StyleRounded.js b/packages/material-ui-icons/lib/esm/StyleRounded.js new file mode 100644 index 00000000000000..3c0aea536dc58f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StyleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m2.53 19.65 1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z" +}), 'StyleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StyleSharp.js b/packages/material-ui-icons/lib/esm/StyleSharp.js new file mode 100644 index 00000000000000..23a40f6439a2a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StyleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.87 20.21v-9.03l-3.19 7.7 3.19 1.33zm18.92-2.43L16.31 2.14 5.26 6.71l6.48 15.64 11.05-4.57zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 13h3.45l-3.45-8.34v8.34z" +}), 'StyleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/StyleTwoTone.js b/packages/material-ui-icons/lib/esm/StyleTwoTone.js new file mode 100644 index 00000000000000..98503d30a24a6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/StyleTwoTone.js @@ -0,0 +1,14 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.22 4.75 7.87 7.79l4.96 11.96 7.35-3.05-4.96-11.95zM11 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m3.87 11.18-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61l1.34.56v-9.03zm18.16 4.77L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "11", + cy: "9", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m9.33 21.75-3.45-8.34v6.34c0 1.1.9 2 2 2h1.45z" +}, "3")], 'StyleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeft.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeft.js new file mode 100644 index 00000000000000..5a70ac8897cc96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" +}), 'SubdirectoryArrowLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftOutlined.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftOutlined.js new file mode 100644 index 00000000000000..daa7de14723202 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" +}), 'SubdirectoryArrowLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftRounded.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftRounded.js new file mode 100644 index 00000000000000..bbd1937a1e6475 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m5.71 15.71 4.58 4.58c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42L8.83 16H19c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v9H8.83l2.88-2.87c.39-.39.39-1.03 0-1.42-.39-.39-1.03-.39-1.42 0l-4.58 4.58c-.39.39-.39 1.03 0 1.42z" +}), 'SubdirectoryArrowLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftSharp.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftSharp.js new file mode 100644 index 00000000000000..6302e96d9d49ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" +}), 'SubdirectoryArrowLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftTwoTone.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftTwoTone.js new file mode 100644 index 00000000000000..a68bc16e988733 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowLeftTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11 9 1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" +}), 'SubdirectoryArrowLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowRight.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRight.js new file mode 100644 index 00000000000000..33f29e392ccaa0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" +}), 'SubdirectoryArrowRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightOutlined.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightOutlined.js new file mode 100644 index 00000000000000..74c08f52bd2980 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" +}), 'SubdirectoryArrowRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightRounded.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightRounded.js new file mode 100644 index 00000000000000..b1914a4a34ed7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.29 15.71-4.58 4.58c-.39.39-1.03.39-1.42 0-.39-.39-.39-1.03 0-1.42L15.17 16H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v9h9.17l-2.88-2.87c-.39-.39-.39-1.03 0-1.42.39-.39 1.03-.39 1.42 0l4.58 4.58c.39.39.39 1.03 0 1.42z" +}), 'SubdirectoryArrowRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightSharp.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightSharp.js new file mode 100644 index 00000000000000..3ebcf87e072d95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" +}), 'SubdirectoryArrowRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightTwoTone.js b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightTwoTone.js new file mode 100644 index 00000000000000..eed26ab570ba41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubdirectoryArrowRightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19 15-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" +}), 'SubdirectoryArrowRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Subject.js b/packages/material-ui-icons/lib/esm/Subject.js new file mode 100644 index 00000000000000..944453fb33a901 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Subject.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" +}), 'Subject'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubjectOutlined.js b/packages/material-ui-icons/lib/esm/SubjectOutlined.js new file mode 100644 index 00000000000000..678036c6d970c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubjectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" +}), 'SubjectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubjectRounded.js b/packages/material-ui-icons/lib/esm/SubjectRounded.js new file mode 100644 index 00000000000000..0a918ad09f3f75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubjectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 17H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm6-8H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" +}), 'SubjectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubjectSharp.js b/packages/material-ui-icons/lib/esm/SubjectSharp.js new file mode 100644 index 00000000000000..c17ab871e89a0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubjectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" +}), 'SubjectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubjectTwoTone.js b/packages/material-ui-icons/lib/esm/SubjectTwoTone.js new file mode 100644 index 00000000000000..61296f6c9183f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubjectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" +}), 'SubjectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Subscript.js b/packages/material-ui-icons/lib/esm/Subscript.js new file mode 100644 index 00000000000000..db2bf48834f4d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Subscript.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18h-2v1h3v1h-4v-2c0-.55.45-1 1-1h2v-1h-3v-1h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" +}), 'Subscript'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptOutlined.js b/packages/material-ui-icons/lib/esm/SubscriptOutlined.js new file mode 100644 index 00000000000000..df5f19c5871cbe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18h-2v1h3v1h-4v-2c0-.55.45-1 1-1h2v-1h-3v-1h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" +}), 'SubscriptOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptRounded.js b/packages/material-ui-icons/lib/esm/SubscriptRounded.js new file mode 100644 index 00000000000000..e1444faaed290a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.52 10.73 7.3 5.72C6.82 4.97 7.35 4 8.23 4c.39 0 .74.2.95.53l2.76 4.46h.12l2.74-4.45c.21-.34.57-.54.96-.54.88 0 1.42.98.94 1.72l-3.23 5 3.55 5.55c.48.75-.06 1.73-.94 1.73-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.2.32-.56.52-.95.52-.88 0-1.42-.97-.94-1.72l3.54-5.55zM23 19.5c0-.28-.22-.5-.5-.5H20v-1h2c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5z" +}), 'SubscriptRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptSharp.js b/packages/material-ui-icons/lib/esm/SubscriptSharp.js new file mode 100644 index 00000000000000..660a38b833df96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 18v1h3v1h-4v-3h3v-1h-3v-1h4v3h-3zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" +}), 'SubscriptSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptTwoTone.js b/packages/material-ui-icons/lib/esm/SubscriptTwoTone.js new file mode 100644 index 00000000000000..95a8c0629bd788 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18h-2v1h3v1h-4v-2c0-.55.45-1 1-1h2v-1h-3v-1h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" +}), 'SubscriptTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Subscriptions.js b/packages/material-ui-icons/lib/esm/Subscriptions.js new file mode 100644 index 00000000000000..40146c1710f2d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Subscriptions.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6 4-6-3.27v6.53L16 16z" +}), 'Subscriptions'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptionsOutlined.js b/packages/material-ui-icons/lib/esm/SubscriptionsOutlined.js new file mode 100644 index 00000000000000..9eeb170f5df008 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptionsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z" +}), 'SubscriptionsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptionsRounded.js b/packages/material-ui-icons/lib/esm/SubscriptionsRounded.js new file mode 100644 index 00000000000000..62be2b3541e734 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptionsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1zm-2-6H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm5 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6.81 3.56L10 12.73v6.53l5.19-2.82c.35-.19.35-.69 0-.88z" +}), 'SubscriptionsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptionsSharp.js b/packages/material-ui-icons/lib/esm/SubscriptionsSharp.js new file mode 100644 index 00000000000000..abddf06432e3cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptionsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 8v12H2V10h20zm-6 6-6-3.27v6.53L16 16z" +}), 'SubscriptionsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubscriptionsTwoTone.js b/packages/material-ui-icons/lib/esm/SubscriptionsTwoTone.js new file mode 100644 index 00000000000000..f703de40734fd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubscriptionsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16v-8H4v8zm6-7.27L16 16l-6 3.26v-6.53z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z" +}, "1")], 'SubscriptionsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Subtitles.js b/packages/material-ui-icons/lib/esm/Subtitles.js new file mode 100644 index 00000000000000..2e95039c00cbfb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Subtitles.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z" +}), 'Subtitles'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesOff.js b/packages/material-ui-icons/lib/esm/SubtitlesOff.js new file mode 100644 index 00000000000000..8e0af0f7096073 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H6.83l8 8H20v2h-3.17l4.93 4.93c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2zM1.04 3.87l1.2 1.2C2.09 5.35 2 5.66 2 6v12c0 1.1.9 2 2 2h13.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM8 12v2H4v-2h4zm6 4.83V18H4v-2h9.17l.83.83z" +}), 'SubtitlesOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesOffOutlined.js b/packages/material-ui-icons/lib/esm/SubtitlesOffOutlined.js new file mode 100644 index 00000000000000..10b2dfc271fa43 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesOffOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4H6.83l2 2H20v11.17l1.76 1.76c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 10h-5.17l2 2H18zM1.04 3.87l1.2 1.2C2.09 5.35 2 5.66 2 6v12c0 1.1.9 2 2 2h13.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 6.83 7.17 10H6v2h2v-1.17L11.17 14H6v2h7.17l2 2H4V6.83z" +}, "1")], 'SubtitlesOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesOffRounded.js b/packages/material-ui-icons/lib/esm/SubtitlesOffRounded.js new file mode 100644 index 00000000000000..be42bac827232a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H6.83l8 8H19c.55 0 1 .45 1 1s-.45 1-1 1h-2.17l4.93 4.93c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2zm0 16-6-6-1.71-1.71L12 12 3.16 3.16a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.49.49c-.15.29-.24.6-.24.94v12c0 1.1.9 2 2 2h13.17l2.25 2.25c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L20 20zM8 13c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1zm6 4c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1h8c.08 0 .14.03.21.04l.74.74c.02.08.05.14.05.22z" +}), 'SubtitlesOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesOffSharp.js b/packages/material-ui-icons/lib/esm/SubtitlesOffSharp.js new file mode 100644 index 00000000000000..0049d7fb182a9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.83 4 8 8H20v2h-3.17L22 19.17V4zm-5.79-.13.96.96V20h15.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 12h4v2H4v-2zm0 4h9.17l.83.83V18H4v-2z" +}), 'SubtitlesOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesOffTwoTone.js b/packages/material-ui-icons/lib/esm/SubtitlesOffTwoTone.js new file mode 100644 index 00000000000000..f3695d24586df9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesOffTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m8.83 6 4 4H18v2h-3.17L20 17.17V6zm6.34 12-2-2H6v-2h5.17L8 10.83V12H6v-2h1.17L4 6.83V18z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 10h-5.17l2 2H18z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 4H6.83l2 2H20v11.17l1.76 1.76c.15-.28.24-.59.24-.93V6c0-1.1-.9-2-2-2zM1.04 3.87l1.2 1.2C2.09 5.35 2 5.66 2 6v12c0 1.1.9 2 2 2h13.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 6.83 7.17 10H6v2h2v-1.17L11.17 14H6v2h7.17l2 2H4V6.83z" +}, "2")], 'SubtitlesOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesOutlined.js b/packages/material-ui-icons/lib/esm/SubtitlesOutlined.js new file mode 100644 index 00000000000000..d9c95a8e36607e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z" +}), 'SubtitlesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesRounded.js b/packages/material-ui-icons/lib/esm/SubtitlesRounded.js new file mode 100644 index 00000000000000..f479ba56c39c9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM5 12h2c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm8 6H5c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm6 0h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zm0-4h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'SubtitlesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesSharp.js b/packages/material-ui-icons/lib/esm/SubtitlesSharp.js new file mode 100644 index 00000000000000..4bb5613be0036f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z" +}), 'SubtitlesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubtitlesTwoTone.js b/packages/material-ui-icons/lib/esm/SubtitlesTwoTone.js new file mode 100644 index 00000000000000..1800466bcead60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubtitlesTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zm14-2h-2v-2h2v2zm-8-6h8v2h-8v-2zm-4 0h2v2H6v-2zm0 4h8v2H6v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z" +}, "1")], 'SubtitlesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Subway.js b/packages/material-ui-icons/lib/esm/Subway.js new file mode 100644 index 00000000000000..2594a794270d9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Subway.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "16", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2c-1.86 0-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 13.08c0 1.45-1.18 2.62-2.63 2.62l1.13 1.12V20H15l-1.5-1.5h-2.83L9.17 20H7.5v-.38l1.12-1.12C7.18 18.5 6 17.32 6 15.88V9c0-2.63 3-3 6-3 3.32 0 6 .38 6 3v6.88z" +}, "2")], 'Subway'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubwayOutlined.js b/packages/material-ui-icons/lib/esm/SubwayOutlined.js new file mode 100644 index 00000000000000..eb6fb719d6c99c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubwayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z" +}), 'SubwayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubwayRounded.js b/packages/material-ui-icons/lib/esm/SubwayRounded.js new file mode 100644 index 00000000000000..a919a9cdf66d34 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubwayRounded.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "16", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z" +}, "2")], 'SubwayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubwaySharp.js b/packages/material-ui-icons/lib/esm/SubwaySharp.js new file mode 100644 index 00000000000000..d9fcb707a0d0e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubwaySharp.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "16", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "16", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z" +}, "2")], 'SubwaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SubwayTwoTone.js b/packages/material-ui-icons/lib/esm/SubwayTwoTone.js new file mode 100644 index 00000000000000..0ebf9ea78aebcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SubwayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.67 18.5 9.17 20h5.66l-1.5-1.5zm6.4-13.84C15.59 4.08 13.68 4 12 4s-3.59.08-5.07.66C5.01 5.41 4 6.86 4 8.86V20h3.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20H20V8.86c0-2-1.01-3.45-2.93-4.2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z" +}, "1")], 'SubwayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Summarize.js b/packages/material-ui-icons/lib/esm/Summarize.js new file mode 100644 index 00000000000000..40fd742f338fcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Summarize.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9l-6-6zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 1V4.5l5.5 5.5H14z" +}), 'Summarize'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SummarizeOutlined.js b/packages/material-ui-icons/lib/esm/SummarizeOutlined.js new file mode 100644 index 00000000000000..2760e8c8932c8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SummarizeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9l-6-6zM5 19V5h9v5h5v9H5zM9 8c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm0 4c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm0 4c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z" +}), 'SummarizeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SummarizeRounded.js b/packages/material-ui-icons/lib/esm/SummarizeRounded.js new file mode 100644 index 00000000000000..66c1378879b25b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SummarizeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.59 3.59c-.38-.38-.89-.59-1.42-.59H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0V4.5l5.5 5.5H15c-.55 0-1-.45-1-1z" +}), 'SummarizeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SummarizeSharp.js b/packages/material-ui-icons/lib/esm/SummarizeSharp.js new file mode 100644 index 00000000000000..3bd6f36a44a1ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SummarizeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3H3v18h18V9l-6-6zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 1V4.5l5.5 5.5H14z" +}), 'SummarizeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SummarizeTwoTone.js b/packages/material-ui-icons/lib/esm/SummarizeTwoTone.js new file mode 100644 index 00000000000000..ba3e53286e48ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SummarizeTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 5H5v14h14v-9h-5V5zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "8", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V9l-6-6zm4 16H5V5h9v5h5v9z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "12", + r: "1" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "8", + cy: "16", + r: "1" +}, "4")], 'SummarizeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Superscript.js b/packages/material-ui-icons/lib/esm/Superscript.js new file mode 100644 index 00000000000000..fcf1a6d5185e5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Superscript.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7h-2v1h3v1h-4V7c0-.55.45-1 1-1h2V5h-3V4h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" +}), 'Superscript'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SuperscriptOutlined.js b/packages/material-ui-icons/lib/esm/SuperscriptOutlined.js new file mode 100644 index 00000000000000..c4edf11a8c97e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SuperscriptOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7h-2v1h3v1h-4V7c0-.55.45-1 1-1h2V5h-3V4h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" +}), 'SuperscriptOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SuperscriptRounded.js b/packages/material-ui-icons/lib/esm/SuperscriptRounded.js new file mode 100644 index 00000000000000..b7fcc3966fe28a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SuperscriptRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.51 12.73 7.3 7.72C6.82 6.97 7.35 6 8.23 6c.39 0 .74.2.95.53l2.76 4.46h.12l2.74-4.45c.2-.34.56-.54.95-.54.88 0 1.42.98.94 1.72l-3.23 5 3.55 5.55c.49.75-.05 1.73-.93 1.73-.38 0-.74-.2-.95-.52l-3.07-4.89h-.12l-3.07 4.89c-.21.32-.56.52-.95.52-.88 0-1.42-.97-.94-1.72l3.53-5.55zM23 8.5c0-.28-.22-.5-.5-.5H20V7h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2.5c-.28 0-.5.22-.5.5s.22.5.5.5H22v1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h2.5c.28 0 .5-.22.5-.5z" +}), 'SuperscriptRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SuperscriptSharp.js b/packages/material-ui-icons/lib/esm/SuperscriptSharp.js new file mode 100644 index 00000000000000..0897b89452947b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SuperscriptSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 7v1h3v1h-4V6h3V5h-3V4h4v3h-3zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" +}), 'SuperscriptSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SuperscriptTwoTone.js b/packages/material-ui-icons/lib/esm/SuperscriptTwoTone.js new file mode 100644 index 00000000000000..bf511d9dd1a9c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SuperscriptTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 7h-2v1h3v1h-4V7c0-.55.45-1 1-1h2V5h-3V4h3c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" +}), 'SuperscriptTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisedUserCircle.js b/packages/material-ui-icons/lib/esm/SupervisedUserCircle.js new file mode 100644 index 00000000000000..e34f24bd2a36a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisedUserCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm3.61 6.34c1.07 0 1.93.86 1.93 1.93 0 1.07-.86 1.93-1.93 1.93-1.07 0-1.93-.86-1.93-1.93-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36 0 1.3-1.06 2.36-2.36 2.36s-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM11.99 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15-1.17 2.97-4.06 5.09-7.45 5.09z" +}), 'SupervisedUserCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisedUserCircleOutlined.js b/packages/material-ui-icons/lib/esm/SupervisedUserCircleOutlined.js new file mode 100644 index 00000000000000..3a6f2eaaa51174 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisedUserCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z" +}), 'SupervisedUserCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisedUserCircleRounded.js b/packages/material-ui-icons/lib/esm/SupervisedUserCircleRounded.js new file mode 100644 index 00000000000000..d6b3b8e5fc8ca4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisedUserCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z" +}), 'SupervisedUserCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisedUserCircleSharp.js b/packages/material-ui-icons/lib/esm/SupervisedUserCircleSharp.js new file mode 100644 index 00000000000000..3ed4b3942ddc26 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisedUserCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z" +}), 'SupervisedUserCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisedUserCircleTwoTone.js b/packages/material-ui-icons/lib/esm/SupervisedUserCircleTwoTone.js new file mode 100644 index 00000000000000..d099c7c12a0b4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisedUserCircleTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9.5", + cy: "10", + r: "1", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.5 17.21c0-1.88 2.98-2.7 4.5-2.7.88 0 2.24.27 3.24.87.48-1.02.75-2.16.75-3.37 0-4.41-3.59-8-8-8s-8 3.59-8 8c0 1.23.29 2.39.78 3.43 1.34-.98 3.43-1.43 4.73-1.43.44 0 .97.05 1.53.16-.63.57-1.06 1.22-1.3 1.86-.08 0-.15-.01-.23-.01-1.38 0-2.98.57-3.66 1.11 1.37 1.65 3.39 2.73 5.66 2.86v-2.78zM16 9c1.11 0 2 .89 2 2 0 1.11-.89 2-2 2-1.11 0-2-.89-2-2-.01-1.11.89-2 2-2zm-6.5 4c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z" +}, "2")], 'SupervisedUserCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisorAccount.js b/packages/material-ui-icons/lib/esm/SupervisorAccount.js new file mode 100644 index 00000000000000..c62c97e367aa0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisorAccount.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7C15.12 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5C7.34 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" +}), 'SupervisorAccount'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisorAccountOutlined.js b/packages/material-ui-icons/lib/esm/SupervisorAccountOutlined.js new file mode 100644 index 00000000000000..88d0f9067590fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisorAccountOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z" +}), 'SupervisorAccountOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisorAccountRounded.js b/packages/material-ui-icons/lib/esm/SupervisorAccountRounded.js new file mode 100644 index 00000000000000..452e45a1cfd033 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisorAccountRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V18c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h6v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" +}), 'SupervisorAccountRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisorAccountSharp.js b/packages/material-ui-icons/lib/esm/SupervisorAccountSharp.js new file mode 100644 index 00000000000000..c271f352aacf0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisorAccountSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" +}), 'SupervisorAccountSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupervisorAccountTwoTone.js b/packages/material-ui-icons/lib/esm/SupervisorAccountTwoTone.js new file mode 100644 index 00000000000000..f6c2144d37a79a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupervisorAccountTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "8.5", + r: "1.5", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4.77 17h4.28c.01-.06.12-.58.29-.99-.11 0-.23-.01-.34-.01-1.53 0-3.25.5-4.23 1z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z" +}, "2")], 'SupervisorAccountTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Support.js b/packages/material-ui-icons/lib/esm/Support.js new file mode 100644 index 00000000000000..9cde38530ae422 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Support.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" +}), 'Support'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportAgent.js b/packages/material-ui-icons/lib/esm/SupportAgent.js new file mode 100644 index 00000000000000..adc82f3bb71681 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportAgent.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" +}, "3")], 'SupportAgent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportAgentOutlined.js b/packages/material-ui-icons/lib/esm/SupportAgentOutlined.js new file mode 100644 index 00000000000000..040568df888654 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportAgentOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" +}, "3")], 'SupportAgentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportAgentRounded.js b/packages/material-ui-icons/lib/esm/SupportAgentRounded.js new file mode 100644 index 00000000000000..4b6135f71c64d3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportAgentRounded.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2 .55 0 1-.45 1-1v-4.81c0-3.83 2.95-7.18 6.78-7.29 3.96-.12 7.22 3.06 7.22 7V19h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" +}, "3")], 'SupportAgentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportAgentSharp.js b/packages/material-ui-icons/lib/esm/SupportAgentSharp.js new file mode 100644 index 00000000000000..84de2920b90304 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportAgentSharp.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M20.99 12c-.11-5.37-4.31-9-8.99-9-4.61 0-8.85 3.53-8.99 9H2v6h3v-5.81c0-3.83 2.95-7.18 6.78-7.29 3.96-.12 7.22 3.06 7.22 7V19h-8v2h10v-3h1v-6h-1.01z" +}, "3")], 'SupportAgentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportAgentTwoTone.js b/packages/material-ui-icons/lib/esm/SupportAgentTwoTone.js new file mode 100644 index 00000000000000..296d4dd781e7b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportAgentTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13", + r: "1" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "13", + r: "1" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 11.03C17.52 8.18 15.04 6 12.05 6c-3.03 0-6.29 2.51-6.03 6.45 2.47-1.01 4.33-3.21 4.86-5.89 1.31 2.63 4 4.44 7.12 4.47z" +}, "3")], 'SupportAgentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportOutlined.js b/packages/material-ui-icons/lib/esm/SupportOutlined.js new file mode 100644 index 00000000000000..4e4704eb3f7aa6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" +}), 'SupportOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportRounded.js b/packages/material-ui-icons/lib/esm/SupportRounded.js new file mode 100644 index 00000000000000..dd0821fde80f5b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" +}), 'SupportRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportSharp.js b/packages/material-ui-icons/lib/esm/SupportSharp.js new file mode 100644 index 00000000000000..b415eaff2042e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zM4.54 14.87l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.17 2.78c-2.1-.81-3.77-2.48-4.58-4.59zm10.34 4.59-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" +}), 'SupportSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SupportTwoTone.js b/packages/material-ui-icons/lib/esm/SupportTwoTone.js new file mode 100644 index 00000000000000..a594caa2a26028 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SupportTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10.3 7.32 9.13 4.54c-2.11.81-3.78 2.48-4.59 4.59l2.78 1.15c.51-1.38 1.6-2.46 2.98-2.96zm-2.98 6.4-2.78 1.15c.81 2.1 2.48 3.78 4.59 4.59l1.17-2.78c-1.39-.5-2.47-1.59-2.98-2.96zm9.35-3.45 2.78-1.15c-.81-2.1-2.48-3.77-4.58-4.58l-1.15 2.78c1.37.51 2.45 1.58 2.95 2.95zm.01 3.44c-.5 1.37-1.58 2.46-2.95 2.97l1.15 2.78c2.1-.81 3.77-2.48 4.58-4.58l-2.78-1.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.87 2.54c2.1.81 3.77 2.48 4.58 4.58l-2.78 1.15c-.51-1.36-1.58-2.44-2.95-2.94l1.15-2.79zm-5.74 0 1.17 2.78c-1.38.5-2.47 1.59-2.98 2.97L4.54 9.13c.81-2.11 2.48-3.78 4.59-4.59zm0 14.92c-2.1-.81-3.78-2.48-4.59-4.59l2.78-1.15c.51 1.38 1.59 2.46 2.97 2.96l-1.16 2.78zM9 12c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3zm5.88 7.46-1.15-2.78c1.37-.51 2.45-1.59 2.95-2.97l2.78 1.17c-.81 2.1-2.48 3.77-4.58 4.58z" +}, "1")], 'SupportTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Surfing.js b/packages/material-ui-icons/lib/esm/Surfing.js new file mode 100644 index 00000000000000..b6b3e08d8084be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Surfing.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.53-3.1c-.11-.67.18-1.38.78-1.79l2.15-1.45-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" +}), 'Surfing'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurfingOutlined.js b/packages/material-ui-icons/lib/esm/SurfingOutlined.js new file mode 100644 index 00000000000000..972aa4a83c3680 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurfingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.53-3.1c-.11-.67.18-1.38.78-1.79l2.15-1.45-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" +}), 'SurfingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurfingRounded.js b/packages/material-ui-icons/lib/esm/SurfingRounded.js new file mode 100644 index 00000000000000..f6245dc7b10757 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurfingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM22 22c0 .55-.45 1-1 1-1.03 0-2.05-.25-3-.75-1.92 1.02-4.18 1-6.09-.05-1.79.87-3.92.98-5.58-.14C5.3 22.69 4.15 23 3 23c-.55 0-1-.45-1-1s.45-1 1-1c.87 0 1.73-.24 2.53-.7.29-.16.65-.17.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 1.59.9 3.48.9 5.06 0 .29-.16.65-.16.94 0 .8.46 1.66.7 2.53.7.55 0 1 .45 1 1zM8.04 18.86c.31.09.63.14.96.14.9 0 1.72-.37 2.39-.91.35-.28.87-.28 1.22 0 .67.54 1.49.91 2.39.91s1.72-.37 2.39-.91c.03-.03.07-.05.11-.07-.46-.39-.97-.79-1.5-1.17v-2.87c0-.61-.28-1.19-.77-1.57L12.17 10l2.25-1.52c1.03 1.79 2.82 3.08 4.93 3.43.6.1 1.14-.39 1.14-1 0-.49-.36-.9-.84-.98-1.5-.25-2.78-1.18-3.51-2.46l-.88-1.55c-.29-.52-.77-.8-1.22-.89l-4.73-.88c-.52-.1-1.06.02-1.5.32L5.82 5.83c-.45.32-.57.94-.26 1.39.32.46.94.58 1.4.27l1.99-1.37 2 .37L8.8 7.94c-.6.41-.89 1.12-.77 1.79l.52 3.1c-1.42-.52-2.72-.83-3.7-.83-.84 0-1.85.25-1.85 1.28 0 1.44 2.19 3.62 5.04 5.58zM14 14v1.5c-.78-.48-2.34-1.33-3.26-1.75l-.44-2.65L14 14z" +}), 'SurfingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurfingSharp.js b/packages/material-ui-icons/lib/esm/SurfingSharp.js new file mode 100644 index 00000000000000..5c158cafd82b5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurfingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.72-4.24 3.12-2.1-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" +}), 'SurfingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurfingTwoTone.js b/packages/material-ui-icons/lib/esm/SurfingTwoTone.js new file mode 100644 index 00000000000000..732f43f83b85a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurfingTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.53-3.1c-.11-.67.18-1.38.78-1.79l2.15-1.45-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55C17.01 8.98 18.64 10 20.5 10v2c-2.59 0-4.86-1.42-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" +}), 'SurfingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurroundSound.js b/packages/material-ui-icons/lib/esm/SurroundSound.js new file mode 100644 index 00000000000000..635fc07912c16d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurroundSound.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12c0-2.05.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12c0 2.05-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'SurroundSound'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurroundSoundOutlined.js b/packages/material-ui-icons/lib/esm/SurroundSoundOutlined.js new file mode 100644 index 00000000000000..5687e7813898a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurroundSoundOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.29 15.71C7.27 14.69 6.75 13.35 6.75 12s.52-2.69 1.53-3.72L7.05 7.05C5.68 8.41 5 10.21 5 12s.68 3.59 2.06 4.94l1.23-1.23zM12 15.5c1.93 0 3.5-1.57 3.5-3.5S13.93 8.5 12 8.5 8.5 10.07 8.5 12s1.57 3.5 3.5 3.5zm0-5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.72 5.22 1.23 1.23C18.32 15.59 19 13.79 19 12s-.68-3.59-2.06-4.94l-1.23 1.23c1.02 1.02 1.54 2.36 1.54 3.71s-.52 2.69-1.53 3.72z" +}, "1")], 'SurroundSoundOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurroundSoundRounded.js b/packages/material-ui-icons/lib/esm/SurroundSoundRounded.js new file mode 100644 index 00000000000000..2f4a0bafd59608 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurroundSoundRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.11 16.89c-.43.43-1.14.39-1.51-.09C4.53 15.39 4 13.69 4 12s.53-3.38 1.59-4.8c.37-.48 1.08-.53 1.51-.1.35.35.39.9.1 1.29C6.4 9.46 6 10.73 6 12s.4 2.53 1.2 3.6c.3.39.26.94-.09 1.29zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm4.9.9c-.35-.35-.39-.9-.09-1.29C17.6 14.54 18 13.27 18 12s-.4-2.53-1.2-3.6c-.3-.39-.26-.95.09-1.3.43-.43 1.14-.39 1.51.09 1.07 1.41 1.6 3.1 1.6 4.8 0 1.69-.53 3.38-1.59 4.8-.37.49-1.08.54-1.51.11zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'SurroundSoundRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurroundSoundSharp.js b/packages/material-ui-icons/lib/esm/SurroundSoundSharp.js new file mode 100644 index 00000000000000..7d69931eabe93b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurroundSoundSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12s.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12s-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" +}), 'SurroundSoundSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SurroundSoundTwoTone.js b/packages/material-ui-icons/lib/esm/SurroundSoundTwoTone.js new file mode 100644 index 00000000000000..4fc7ce50bb729b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SurroundSoundTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h16V6H4v12zM16.94 7.06C18.32 8.41 19 10.21 19 12s-.68 3.59-2.05 4.95l-1.23-1.23c1.02-1.03 1.53-2.37 1.53-3.72s-.52-2.69-1.54-3.71l1.23-1.23zM12 8.5c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5zM7.05 7.05l1.23 1.23C7.27 9.31 6.75 10.65 6.75 12s.52 2.69 1.54 3.71l-1.23 1.23C5.68 15.59 5 13.79 5 12s.68-3.59 2.05-4.95z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.29 15.71C7.27 14.69 6.75 13.35 6.75 12s.52-2.69 1.53-3.72L7.05 7.05C5.68 8.41 5 10.21 5 12s.68 3.59 2.06 4.94l1.23-1.23zM12 15.5c1.93 0 3.5-1.57 3.5-3.5S13.93 8.5 12 8.5 8.5 10.07 8.5 12s1.57 3.5 3.5 3.5zm0-5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.72 5.22 1.23 1.23C18.32 15.59 19 13.79 19 12s-.68-3.59-2.06-4.94l-1.23 1.23c1.02 1.02 1.54 2.36 1.54 3.71s-.52 2.69-1.53 3.72z" +}, "2")], 'SurroundSoundTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapCalls.js b/packages/material-ui-icons/lib/esm/SwapCalls.js new file mode 100644 index 00000000000000..717063de38cdf7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapCalls.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" +}), 'SwapCalls'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapCallsOutlined.js b/packages/material-ui-icons/lib/esm/SwapCallsOutlined.js new file mode 100644 index 00000000000000..42915e6cb84e91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapCallsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" +}), 'SwapCallsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapCallsRounded.js b/packages/material-ui-icons/lib/esm/SwapCallsRounded.js new file mode 100644 index 00000000000000..5aa6da7817f2c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapCallsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.65 4.35-2.79 2.79c-.32.32-.1.86.35.86H17v6.88c0 1-.67 1.93-1.66 2.09-1.25.21-2.34-.76-2.34-1.97V8.17c0-2.09-1.53-3.95-3.61-4.15C7.01 3.79 5 5.66 5 8v7H3.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85H7V8.12c0-1 .67-1.93 1.66-2.09C9.91 5.82 11 6.79 11 8v6.83c0 2.09 1.53 3.95 3.61 4.15C16.99 19.21 19 17.34 19 15V8h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z" +}), 'SwapCallsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapCallsSharp.js b/packages/material-ui-icons/lib/esm/SwapCallsSharp.js new file mode 100644 index 00000000000000..7f75fa68f8c887 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapCallsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" +}), 'SwapCallsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapCallsTwoTone.js b/packages/material-ui-icons/lib/esm/SwapCallsTwoTone.js new file mode 100644 index 00000000000000..e44de945c9f863 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapCallsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4-4 4z" +}), 'SwapCallsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHoriz.js b/packages/material-ui-icons/lib/esm/SwapHoriz.js new file mode 100644 index 00000000000000..9b2ad6f7be914d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHoriz.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" +}), 'SwapHoriz'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizOutlined.js b/packages/material-ui-icons/lib/esm/SwapHorizOutlined.js new file mode 100644 index 00000000000000..c5b56a7ea8bd65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" +}), 'SwapHorizOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizRounded.js b/packages/material-ui-icons/lib/esm/SwapHorizRounded.js new file mode 100644 index 00000000000000..96bbfa10b665cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.14 11.86-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.32.85.09.85-.35V16H13c.55 0 1-.45 1-1s-.45-1-1-1H6.99v-1.79c0-.45-.54-.67-.85-.35zm14.51-3.21-2.78-2.79c-.31-.32-.85-.09-.85.35V8H11c-.55 0-1 .45-1 1s.45 1 1 1h6.01v1.79c0 .45.54.67.85.35l2.78-2.79c.2-.19.2-.51.01-.7z" +}), 'SwapHorizRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizSharp.js b/packages/material-ui-icons/lib/esm/SwapHorizSharp.js new file mode 100644 index 00000000000000..9f7411bedaf0d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" +}), 'SwapHorizSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizTwoTone.js b/packages/material-ui-icons/lib/esm/SwapHorizTwoTone.js new file mode 100644 index 00000000000000..16ddd4c0389468 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" +}), 'SwapHorizTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizontalCircle.js b/packages/material-ui-icons/lib/esm/SwapHorizontalCircle.js new file mode 100644 index 00000000000000..e3a3fee6a28b46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizontalCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5 3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z" +}), 'SwapHorizontalCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizontalCircleOutlined.js b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleOutlined.js new file mode 100644 index 00000000000000..5aeef4f2c4823c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z" +}), 'SwapHorizontalCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizontalCircleRounded.js b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleRounded.js new file mode 100644 index 00000000000000..583a1e20c97787 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5 3.15 3.15c.2.2.2.51 0 .71L15 13.5V11h-4V9h4V6.5zm-6 11-3.15-3.15c-.2-.2-.2-.51 0-.71L9 10.5V13h4v2H9v2.5z" +}), 'SwapHorizontalCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizontalCircleSharp.js b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleSharp.js new file mode 100644 index 00000000000000..9341484c57f154 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5 3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z" +}), 'SwapHorizontalCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapHorizontalCircleTwoTone.js b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleTwoTone.js new file mode 100644 index 00000000000000..1e2b2fe3f492b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapHorizontalCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 11H9v2.5L5.5 14 9 10.5V13h4v2zm2-1.5V11h-4V9h4V6.5l3.5 3.5-3.5 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z" +}, "1")], 'SwapHorizontalCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVert.js b/packages/material-ui-icons/lib/esm/SwapVert.js new file mode 100644 index 00000000000000..b1b05fdb825e65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" +}), 'SwapVert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVertOutlined.js b/packages/material-ui-icons/lib/esm/SwapVertOutlined.js new file mode 100644 index 00000000000000..2441d4b2dbb7e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVertOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" +}), 'SwapVertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVertRounded.js b/packages/material-ui-icons/lib/esm/SwapVertRounded.js new file mode 100644 index 00000000000000..aab602731a582b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVertRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 17.01V11c0-.55-.45-1-1-1s-1 .45-1 1v6.01h-1.79c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H16zM8.65 3.35 5.86 6.14c-.32.31-.1.85.35.85H8V13c0 .55.45 1 1 1s1-.45 1-1V6.99h1.79c.45 0 .67-.54.35-.85L9.35 3.35c-.19-.19-.51-.19-.7 0z" +}), 'SwapVertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVertSharp.js b/packages/material-ui-icons/lib/esm/SwapVertSharp.js new file mode 100644 index 00000000000000..2d51eee9535623 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVertSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" +}), 'SwapVertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVertTwoTone.js b/packages/material-ui-icons/lib/esm/SwapVertTwoTone.js new file mode 100644 index 00000000000000..7983d4d5978985 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVertTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3 5 6.99h3V14h2V6.99h3L9 3z" +}), 'SwapVertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVerticalCircle.js b/packages/material-ui-icons/lib/esm/SwapVerticalCircle.js new file mode 100644 index 00000000000000..f5e5260b63bd97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVerticalCircle.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9 10 5.5 13.5 9H11v4H9V9H6.5zm11 6L14 18.5 10.5 15H13v-4h2v4h2.5z" +}), 'SwapVerticalCircle'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVerticalCircleOutlined.js b/packages/material-ui-icons/lib/esm/SwapVerticalCircleOutlined.js new file mode 100644 index 00000000000000..159d083a34f362 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVerticalCircleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM6.5 9 10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z" +}), 'SwapVerticalCircleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVerticalCircleRounded.js b/packages/material-ui-icons/lib/esm/SwapVerticalCircleRounded.js new file mode 100644 index 00000000000000..d1225c6e49df9a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVerticalCircleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9l3.15-3.15c.2-.2.51-.2.71 0L13.5 9H11v4H9V9H6.5zm7.85 9.15c-.2.2-.51.2-.71 0L10.5 15H13v-4h2v4h2.5l-3.15 3.15z" +}), 'SwapVerticalCircleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVerticalCircleSharp.js b/packages/material-ui-icons/lib/esm/SwapVerticalCircleSharp.js new file mode 100644 index 00000000000000..f029915077149c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVerticalCircleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9 10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z" +}), 'SwapVerticalCircleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwapVerticalCircleTwoTone.js b/packages/material-ui-icons/lib/esm/SwapVerticalCircleTwoTone.js new file mode 100644 index 00000000000000..aacf974af4cbf5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwapVerticalCircleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM6.5 9 10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-7V9h2.5L10 5.5 6.5 9H9v4zm4-2h-2v4h-2.5l3.5 3.5 3.5-3.5H15z" +}, "1")], 'SwapVerticalCircleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Swipe.js b/packages/material-ui-icons/lib/esm/Swipe.js new file mode 100644 index 00000000000000..ca0db5bcb93040 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Swipe.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m18.89 14.75-4.09-2.04c-.28-.14-.58-.21-.89-.21H13v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-3.25-.74c-.33-.07-.68.03-.92.28l-.83.84 4.54 4.79c.38.38 1.14.59 1.67.59h6.16c1 0 1.84-.73 1.98-1.72l.63-4.46c.12-.85-.32-1.68-1.09-2.07z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" +}, "1")], 'Swipe'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwipeOutlined.js b/packages/material-ui-icons/lib/esm/SwipeOutlined.js new file mode 100644 index 00000000000000..8f2414e71f7ece --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwipeOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.5 2v2.02C18.18 2.13 15.22 1 12 1S5.82 2.13 3.5 4.02V2H2v5h5V5.5H4.09c2.11-1.86 4.88-3 7.91-3s5.79 1.14 7.91 3H17V7h5V2h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m18.89 13.77-3.8-1.67c-.13-.06-.28-.1-.44-.1H14V7.63c0-1.32-.96-2.5-2.27-2.62C10.25 4.88 9 6.05 9 7.5v8.15l-1.87-.4c-.19-.03-1.02-.15-1.73.56L4 17.22l5.12 5.19c.37.38.88.59 1.41.59h6.55c.98 0 1.81-.7 1.97-1.67l.92-5.44c.15-.86-.29-1.72-1.08-2.12zM18 15.56 17.08 21h-6.55l-3.7-3.78 4.17.89V7.5c0-.28.22-.5.5-.5s.5.22.5.5v6.18h1.76L18 15.56z" +}, "1")], 'SwipeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwipeRounded.js b/packages/material-ui-icons/lib/esm/SwipeRounded.js new file mode 100644 index 00000000000000..e2e9c7de21bf30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwipeRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m21.15 2.85-1.02 1.02C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2.85 2.85c-.31-.31-.85-.09-.85.36V6.5c0 .28.22.5.5.5h3.29c.45 0 .67-.54.35-.85L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43l-1.22 1.22c-.31.31-.09.85.36.85h3.29c.28 0 .5-.22.5-.5V3.21c0-.45-.54-.67-.85-.36z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 12.71c-.28-.14-.58-.21-.89-.21H13v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-3.44-.72c-.37-.08-.76.04-1.03.31-.43.44-.43 1.14.01 1.58l4.01 4.01c.37.37.88.58 1.41.58h6.41c1 0 1.84-.73 1.98-1.72l.63-4.46c.12-.85-.32-1.69-1.09-2.07l-4.39-2.04z" +}, "1")], 'SwipeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwipeSharp.js b/packages/material-ui-icons/lib/esm/SwipeSharp.js new file mode 100644 index 00000000000000..fda062d2051675 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwipeSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 12.5v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-4.04-.85-1.21 1.23L10.13 23h8.97l1.09-7.64-6.11-2.86H13z" +}, "1")], 'SwipeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwipeTwoTone.js b/packages/material-ui-icons/lib/esm/SwipeTwoTone.js new file mode 100644 index 00000000000000..9cfd94a8f6fe93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwipeTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 13.68V7.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v10.61l-4.17-.89 3.7 3.78h6.55l.92-5.44-4.24-1.89H12z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m18.89 13.77-3.8-1.67c-.13-.06-.28-.1-.44-.1H14V7.63c0-1.32-.96-2.5-2.27-2.62C10.25 4.88 9 6.05 9 7.5v8.15l-1.87-.4c-.19-.03-1.02-.15-1.73.56L4 17.22l5.12 5.19c.37.38.88.59 1.41.59h6.55c.98 0 1.81-.7 1.97-1.67l.92-5.44c.15-.86-.29-1.72-1.08-2.12zM17.08 21h-6.55l-3.7-3.78 4.17.89V7.5c0-.28.22-.5.5-.5s.5.22.5.5v6.18h1.76L18 15.56 17.08 21z" +}, "2")], 'SwipeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchAccount.js b/packages/material-ui-icons/lib/esm/SwitchAccount.js new file mode 100644 index 00000000000000..c043a0a405556b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchAccount.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H8v-1.5c0-1.99 4-3 6-3s6 1.01 6 3V16z" +}), 'SwitchAccount'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchAccountOutlined.js b/packages/material-ui-icons/lib/esm/SwitchAccountOutlined.js new file mode 100644 index 00000000000000..4d6725c065c2f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchAccountOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6-5H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9.31 14c.95-.63 2.09-1 3.31-1s2.36.37 3.31 1h-6.62zm9.31-.27C18.53 14.06 16.4 13 14 13s-4.53 1.06-6 2.73V4h12v11.73z" +}), 'SwitchAccountOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchAccountRounded.js b/packages/material-ui-icons/lib/esm/SwitchAccountRounded.js new file mode 100644 index 00000000000000..7470e2d5a85037 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchAccountRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 20H4V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1zm3-18H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zM7.76 16c1.47-1.83 3.71-3 6.24-3s4.77 1.17 6.24 3H7.76z" +}), 'SwitchAccountRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchAccountSharp.js b/packages/material-ui-icons/lib/esm/SwitchAccountSharp.js new file mode 100644 index 00000000000000..e115cafcc348b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchAccountSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4V6zm2-4v16h16V2H6zm8 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zM7.76 16c1.47-1.83 3.71-3 6.24-3s4.77 1.17 6.24 3H7.76z" +}), 'SwitchAccountSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchAccountTwoTone.js b/packages/material-ui-icons/lib/esm/SwitchAccountTwoTone.js new file mode 100644 index 00000000000000..ce4396a72b6b4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchAccountTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 15.73C9.47 14.06 11.6 13 14 13s4.53 1.06 6 2.73V4H8v11.73zM14 5c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6-5H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9.31 14c.95-.63 2.09-1 3.31-1s2.36.37 3.31 1h-6.62zm9.31-.27C18.53 14.06 16.4 13 14 13s-4.53 1.06-6 2.73V4h12v11.73z" +}, "1")], 'SwitchAccountTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchCamera.js b/packages/material-ui-icons/lib/esm/SwitchCamera.js new file mode 100644 index 00000000000000..f96daad83a8ff7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchCamera.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" +}), 'SwitchCamera'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchCameraOutlined.js b/packages/material-ui-icons/lib/esm/SwitchCameraOutlined.js new file mode 100644 index 00000000000000..45e59c7814a673 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchCameraOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.88 4h4.24l1.83 2H20v12H4V6h4.05" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 11H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z" +}, "1")], 'SwitchCameraOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchCameraRounded.js b/packages/material-ui-icons/lib/esm/SwitchCameraRounded.js new file mode 100644 index 00000000000000..e87dd3c6788508 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchCameraRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5l-3.15-3.15c-.2-.2-.2-.51 0-.71L9 8.5V11h6V8.5l3.15 3.15c.2.2.2.51 0 .71L15 15.5z" +}), 'SwitchCameraRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchCameraSharp.js b/packages/material-ui-icons/lib/esm/SwitchCameraSharp.js new file mode 100644 index 00000000000000..84588891a705cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchCameraSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zm-7 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" +}), 'SwitchCameraSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchCameraTwoTone.js b/packages/material-ui-icons/lib/esm/SwitchCameraTwoTone.js new file mode 100644 index 00000000000000..118b2c4f563b7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchCameraTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM15 15.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zm-5-7H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z" +}, "1")], 'SwitchCameraTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchLeft.js b/packages/material-ui-icons/lib/esm/SwitchLeft.js new file mode 100644 index 00000000000000..5be37278f35989 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchLeft.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" +}), 'SwitchLeft'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchLeftOutlined.js b/packages/material-ui-icons/lib/esm/SwitchLeftOutlined.js new file mode 100644 index 00000000000000..7e8890c60d6dda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchLeftOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" +}), 'SwitchLeftOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchLeftRounded.js b/packages/material-ui-icons/lib/esm/SwitchLeftRounded.js new file mode 100644 index 00000000000000..610f24491b51bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchLeftRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 8.62v6.76L5.12 12 8.5 8.62m-4.79 2.67c-.39.39-.39 1.02 0 1.41l4.59 4.59c.62.63 1.7.19 1.7-.7V7.41c0-.89-1.08-1.34-1.71-.71l-4.58 4.59zM14 7.41v9.17c0 .89 1.08 1.34 1.71.71l4.59-4.59c.39-.39.39-1.02 0-1.41L15.71 6.7c-.63-.62-1.71-.18-1.71.71z" +}), 'SwitchLeftRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchLeftSharp.js b/packages/material-ui-icons/lib/esm/SwitchLeftSharp.js new file mode 100644 index 00000000000000..a2665774664c0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchLeftSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" +}), 'SwitchLeftSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchLeftTwoTone.js b/packages/material-ui-icons/lib/esm/SwitchLeftTwoTone.js new file mode 100644 index 00000000000000..bc038ba44b043e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchLeftTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.5 8.62v6.76L5.12 12 8.5 8.62", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" +}, "1")], 'SwitchLeftTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchRight.js b/packages/material-ui-icons/lib/esm/SwitchRight.js new file mode 100644 index 00000000000000..e84f3a13e67265 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchRight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" +}), 'SwitchRight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchRightOutlined.js b/packages/material-ui-icons/lib/esm/SwitchRightOutlined.js new file mode 100644 index 00000000000000..a19091003e9b44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchRightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" +}), 'SwitchRightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchRightRounded.js b/packages/material-ui-icons/lib/esm/SwitchRightRounded.js new file mode 100644 index 00000000000000..59ef08dc498b97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchRightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38m4.79-2.67c.39-.39.39-1.02 0-1.41L15.7 6.71c-.62-.63-1.7-.19-1.7.7v9.17c0 .89 1.08 1.34 1.71.71l4.58-4.58zM10 16.59V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7z" +}), 'SwitchRightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchRightSharp.js b/packages/material-ui-icons/lib/esm/SwitchRightSharp.js new file mode 100644 index 00000000000000..0f1e47e02392fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchRightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" +}), 'SwitchRightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchRightTwoTone.js b/packages/material-ui-icons/lib/esm/SwitchRightTwoTone.js new file mode 100644 index 00000000000000..545a422d357aea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchRightTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" +}, "1")], 'SwitchRightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchVideo.js b/packages/material-ui-icons/lib/esm/SwitchVideo.js new file mode 100644 index 00000000000000..4c358b010b5aa3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchVideo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" +}), 'SwitchVideo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchVideoOutlined.js b/packages/material-ui-icons/lib/esm/SwitchVideoOutlined.js new file mode 100644 index 00000000000000..eaf0988022195d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchVideoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z" +}), 'SwitchVideoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchVideoRounded.js b/packages/material-ui-icons/lib/esm/SwitchVideoRounded.js new file mode 100644 index 00000000000000..9d2f0f5035b778 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchVideoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V7.91c0-.89-1.08-1.34-1.71-.71L18 9.5zm-5 6V13H7v2.5l-3.15-3.15c-.2-.2-.2-.51 0-.71L7 8.5V11h6V8.5l3.15 3.15c.2.2.2.51 0 .71L13 15.5z" +}), 'SwitchVideoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchVideoSharp.js b/packages/material-ui-icons/lib/esm/SwitchVideoSharp.js new file mode 100644 index 00000000000000..79c8febdc5f086 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchVideoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 9.5V5H2v14h16v-4.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" +}), 'SwitchVideoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SwitchVideoTwoTone.js b/packages/material-ui-icons/lib/esm/SwitchVideoTwoTone.js new file mode 100644 index 00000000000000..6c770a781d64fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SwitchVideoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17h12V7H4v10zm4-8v2h4V9l3 3-3 3v-2H8v2l-3-3 3-3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z" +}, "1")], 'SwitchVideoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Sync.js b/packages/material-ui-icons/lib/esm/Sync.js new file mode 100644 index 00000000000000..739deba056e9da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Sync.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" +}), 'Sync'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncAlt.js b/packages/material-ui-icons/lib/esm/SyncAlt.js new file mode 100644 index 00000000000000..104c5b8d2553bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" +}), 'SyncAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncAltOutlined.js b/packages/material-ui-icons/lib/esm/SyncAltOutlined.js new file mode 100644 index 00000000000000..71193f9b9ef370 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" +}), 'SyncAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncAltRounded.js b/packages/material-ui-icons/lib/esm/SyncAltRounded.js new file mode 100644 index 00000000000000..c0d4b98a56d909 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.65 7.65-2.79-2.79c-.32-.32-.86-.1-.86.35V7H4c-.55 0-1 .45-1 1s.45 1 1 1h14v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7zm-19.3 8.7 2.79 2.79c.32.32.86.1.86-.35V17h14c.55 0 1-.45 1-1s-.45-1-1-1H6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.19-.2.51-.01.7z" +}), 'SyncAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncAltSharp.js b/packages/material-ui-icons/lib/esm/SyncAltSharp.js new file mode 100644 index 00000000000000..422b5ed653c9ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" +}), 'SyncAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncAltTwoTone.js b/packages/material-ui-icons/lib/esm/SyncAltTwoTone.js new file mode 100644 index 00000000000000..c17e280bc016a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 8-4-4v3H3v2h15v3l4-4zM2 16l4 4v-3h15v-2H6v-3l-4 4z" +}), 'SyncAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncDisabled.js b/packages/material-ui-icons/lib/esm/SyncDisabled.js new file mode 100644 index 00000000000000..8f02b9ff839f83 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6.35V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.25-.12.5-.24.77-.33zm-7.14-.94 2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.25-.77.34v2.09c.8-.21 1.55-.54 2.23-.96l2.36 2.36 1.27-1.27L4.14 4.14 2.86 5.41zM20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46C19.55 15.01 20 13.56 20 12c0-2.21-.91-4.2-2.36-5.64L20 4z" +}), 'SyncDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncDisabledOutlined.js b/packages/material-ui-icons/lib/esm/SyncDisabledOutlined.js new file mode 100644 index 00000000000000..a8137bcf8899ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4 2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" +}), 'SyncDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncDisabledRounded.js b/packages/material-ui-icons/lib/esm/SyncDisabledRounded.js new file mode 100644 index 00000000000000..d506c981313601 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 5.74v-.19c0-.68-.71-1.11-1.32-.82-.19.09-.36.2-.54.3L9.6 6.49c.24-.18.4-.45.4-.75zM20 12c0-2.21-.91-4.2-2.36-5.64l1.51-1.51c.31-.31.09-.85-.36-.85H14v4.79c0 .45.54.67.85.35l1.39-1.39C17.32 8.85 18 10.34 18 12c0 .85-.18 1.66-.5 2.39l1.48 1.48C19.62 14.72 20 13.41 20 12zM3.57 4.7c-.39.39-.39 1.02 0 1.41l1.65 1.65C4.45 9 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64l-1.51 1.51c-.31.31-.09.85.36.85H9.5c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.35l-1.39 1.39C6.68 15.15 6 13.66 6 12c0-1 .26-1.93.69-2.76l8.07 8.07c-.01.02-.01.02-.01.04-.43.12-.75.48-.75.91v.18c0 .68.71 1.11 1.32.82.31-.14.61-.31.9-.49l1.87 1.87c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.98 4.7a.9959.9959 0 0 0-1.41 0z" +}), 'SyncDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncDisabledSharp.js b/packages/material-ui-icons/lib/esm/SyncDisabledSharp.js new file mode 100644 index 00000000000000..ac9c82c45ef2b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4 2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" +}), 'SyncDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/SyncDisabledTwoTone.js new file mode 100644 index 00000000000000..dac188748d0813 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncDisabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4 2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" +}), 'SyncDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncOutlined.js b/packages/material-ui-icons/lib/esm/SyncOutlined.js new file mode 100644 index 00000000000000..e7260d661e4873 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" +}), 'SyncOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncProblem.js b/packages/material-ui-icons/lib/esm/SyncProblem.js new file mode 100644 index 00000000000000..6df2103f72753a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncProblem.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" +}), 'SyncProblem'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncProblemOutlined.js b/packages/material-ui-icons/lib/esm/SyncProblemOutlined.js new file mode 100644 index 00000000000000..8b52c2657c7dc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncProblemOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" +}), 'SyncProblemOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncProblemRounded.js b/packages/material-ui-icons/lib/esm/SyncProblemRounded.js new file mode 100644 index 00000000000000..a34e1db37bda8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncProblemRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12c0 2.21.91 4.2 2.36 5.64l-1.51 1.51c-.31.31-.09.85.36.85H8.5c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.35l-1.39 1.39C5.68 15.15 5 13.66 5 12c0-2.39 1.4-4.46 3.43-5.42.34-.16.57-.47.57-.84v-.19c0-.68-.71-1.11-1.32-.82C4.92 5.99 3 8.77 3 12zm8 5h2v-2h-2v2zm8.79-13H15.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35l1.39-1.39C18.32 8.85 19 10.34 19 12c0 2.39-1.4 4.46-3.43 5.42-.34.16-.57.47-.57.84v.18c0 .68.71 1.11 1.32.82C19.08 18.01 21 15.23 21 12c0-2.21-.91-4.2-2.36-5.64l1.51-1.51c.31-.31.09-.85-.36-.85zM12 13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" +}), 'SyncProblemRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncProblemSharp.js b/packages/material-ui-icons/lib/esm/SyncProblemSharp.js new file mode 100644 index 00000000000000..ef4297cac8e9c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncProblemSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" +}), 'SyncProblemSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncProblemTwoTone.js b/packages/material-ui-icons/lib/esm/SyncProblemTwoTone.js new file mode 100644 index 00000000000000..2f3942747c09f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncProblemTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" +}), 'SyncProblemTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncRounded.js b/packages/material-ui-icons/lib/esm/SyncRounded.js new file mode 100644 index 00000000000000..6ec55dbf5bd4c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z" +}), 'SyncRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncSharp.js b/packages/material-ui-icons/lib/esm/SyncSharp.js new file mode 100644 index 00000000000000..50325dc09f6639 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" +}), 'SyncSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SyncTwoTone.js b/packages/material-ui-icons/lib/esm/SyncTwoTone.js new file mode 100644 index 00000000000000..f77b097832e157 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SyncTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 4V1l-4 4 4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46c.78-1.23 1.24-2.69 1.24-4.26 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.25 7.74C4.47 8.97 4.01 10.43 4.01 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" +}), 'SyncTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdate.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdate.js new file mode 100644 index 00000000000000..117c0c3eabe095 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 3v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2zm12 15H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" +}), 'SystemSecurityUpdate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGood.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGood.js new file mode 100644 index 00000000000000..f27c3c2c70d3bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGood.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}), 'SystemSecurityUpdateGood'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodOutlined.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodOutlined.js new file mode 100644 index 00000000000000..c052a7e17349fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}), 'SystemSecurityUpdateGoodOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodRounded.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodRounded.js new file mode 100644 index 00000000000000..aad4e47fb5648f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-6.66-3.71c.39.39 1.02.39 1.41 0l3.54-3.54c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2.83 2.83-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.41 1.42z" +}), 'SystemSecurityUpdateGoodRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodSharp.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodSharp.js new file mode 100644 index 00000000000000..8fe9f9c0d89d8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}), 'SystemSecurityUpdateGoodSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodTwoTone.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodTwoTone.js new file mode 100644 index 00000000000000..30cf1fe336fb4f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateGoodTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 6.05-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" +}, "1")], 'SystemSecurityUpdateGoodTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateOutlined.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateOutlined.js new file mode 100644 index 00000000000000..467496d58cc9fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7zm9 8-4 4-4-4 1.41-1.41L11 12.17V8h2v4.17l1.59-1.59L16 12z" +}), 'SystemSecurityUpdateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateRounded.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateRounded.js new file mode 100644 index 00000000000000..4af9c8a6fe1d1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 18H7V6h10v12zm-2.21-5.79H13V9c0-.55-.45-1-1-1s-1 .45-1 1v3.21H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" +}), 'SystemSecurityUpdateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateSharp.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateSharp.js new file mode 100644 index 00000000000000..20bcc52804c850 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" +}), 'SystemSecurityUpdateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateTwoTone.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateTwoTone.js new file mode 100644 index 00000000000000..0bc00d0620aa24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 20h10v1H7zM7 3h10v1H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1zm-1 8h-3V8h-2v4H8l4 4 4-4z" +}, "1")], 'SystemSecurityUpdateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarning.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarning.js new file mode 100644 index 00000000000000..75e808aae7f47d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarning.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" +}, "1")], 'SystemSecurityUpdateWarning'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningOutlined.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningOutlined.js new file mode 100644 index 00000000000000..94d28f92dc0bc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" +}, "1")], 'SystemSecurityUpdateWarningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningRounded.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningRounded.js new file mode 100644 index 00000000000000..c8223f415155ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningRounded.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "16", + r: "1" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 17H7V6h10v12z" +}, "2")], 'SystemSecurityUpdateWarningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningSharp.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningSharp.js new file mode 100644 index 00000000000000..33061bff66d60c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z" +}, "1")], 'SystemSecurityUpdateWarningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningTwoTone.js b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningTwoTone.js new file mode 100644 index 00000000000000..0174f104779244 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemSecurityUpdateWarningTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 7h2v6h-2V7zm0 8h2v2h-2v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 15h2v2h-2zm0-8h2v6h-2z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M7 21h10v-1H7v1zM7 3v1h10V3H7z", + opacity: ".3" +}, "3")], 'SystemSecurityUpdateWarningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdate.js b/packages/material-ui-icons/lib/esm/SystemUpdate.js new file mode 100644 index 00000000000000..80015cb7b5b4e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" +}), 'SystemUpdate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateAlt.js b/packages/material-ui-icons/lib/esm/SystemUpdateAlt.js new file mode 100644 index 00000000000000..ec06c80730852d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 16.5 4-4h-3v-9h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V5.49h6V3.5H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2z" +}), 'SystemUpdateAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateAltOutlined.js b/packages/material-ui-icons/lib/esm/SystemUpdateAltOutlined.js new file mode 100644 index 00000000000000..2cf0b1e4ac2509 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 16 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'SystemUpdateAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateAltRounded.js b/packages/material-ui-icons/lib/esm/SystemUpdateAltRounded.js new file mode 100644 index 00000000000000..13b455b90c0e5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.35 15.65 2.79-2.79c.31-.31.09-.85-.35-.85H13V4c0-.55-.45-1-1-1s-1 .45-1 1v8H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.19.2.51.2.7.01zM21 3h-5.01c-.54 0-.99.45-.99.99 0 .55.45.99.99.99H20c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h4.01c.54 0 .99-.45.99-.99 0-.55-.45-1-.99-1H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'SystemUpdateAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateAltSharp.js b/packages/material-ui-icons/lib/esm/SystemUpdateAltSharp.js new file mode 100644 index 00000000000000..ebc89879613d95 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 16 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13 4-4h-3V3h-2v9H8l4 4zM23 3h-8v1.99h6v14.03H3V4.99h6V3H1v18h22V3z" +}), 'SystemUpdateAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateAltTwoTone.js b/packages/material-ui-icons/lib/esm/SystemUpdateAltTwoTone.js new file mode 100644 index 00000000000000..45bf9127b62a64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 16 4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'SystemUpdateAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateOutlined.js b/packages/material-ui-icons/lib/esm/SystemUpdateOutlined.js new file mode 100644 index 00000000000000..c4d3dd94298318 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" +}), 'SystemUpdateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateRounded.js b/packages/material-ui-icons/lib/esm/SystemUpdateRounded.js new file mode 100644 index 00000000000000..073c431ae4ed46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 1.01 7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-2.21-6H13V9c0-.55-.45-1-1-1s-1 .45-1 1v4H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z" +}), 'SystemUpdateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateSharp.js b/packages/material-ui-icons/lib/esm/SystemUpdateSharp.js new file mode 100644 index 00000000000000..2dec158b2734a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 1v22h14V1H5zm12 18H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" +}), 'SystemUpdateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/SystemUpdateTwoTone.js b/packages/material-ui-icons/lib/esm/SystemUpdateTwoTone.js new file mode 100644 index 00000000000000..f2485df1224ff6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/SystemUpdateTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 19h10V5H7v14zm4-6V8h2v5h3l-4 4-4-4h3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 13h-3V8h-2v5H8l4 4zm1-11.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" +}, "1")], 'SystemUpdateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tab.js b/packages/material-ui-icons/lib/esm/Tab.js new file mode 100644 index 00000000000000..335b073bc4ccdf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tab.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" +}), 'Tab'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabOutlined.js b/packages/material-ui-icons/lib/esm/TabOutlined.js new file mode 100644 index 00000000000000..d823d1d94e9b44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" +}), 'TabOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabRounded.js b/packages/material-ui-icons/lib/esm/TabRounded.js new file mode 100644 index 00000000000000..a8cfe5625ee7f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h9v3c0 .55.45 1 1 1h7v9c0 .55-.45 1-1 1z" +}), 'TabRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabSharp.js b/packages/material-ui-icons/lib/esm/TabSharp.js new file mode 100644 index 00000000000000..9ba2be18317983 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10zm2-16H1v18h22V3zm-2 16H3V5h10v4h8v10z" +}), 'TabSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabTwoTone.js b/packages/material-ui-icons/lib/esm/TabTwoTone.js new file mode 100644 index 00000000000000..e40b55ecad1f2e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z" +}), 'TabTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabUnselected.js b/packages/material-ui-icons/lib/esm/TabUnselected.js new file mode 100644 index 00000000000000..273a845b9d9ae8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabUnselected.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'TabUnselected'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabUnselectedOutlined.js b/packages/material-ui-icons/lib/esm/TabUnselectedOutlined.js new file mode 100644 index 00000000000000..15fac0784ba96d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabUnselectedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'TabUnselectedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabUnselectedRounded.js b/packages/material-ui-icons/lib/esm/TabUnselectedRounded.js new file mode 100644 index 00000000000000..d53d9eeb1f495b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabUnselectedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v5c0 .55.45 1 1 1h9V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'TabUnselectedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabUnselectedSharp.js b/packages/material-ui-icons/lib/esm/TabUnselectedSharp.js new file mode 100644 index 00000000000000..64470ccf42f721 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabUnselectedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm8 8h2v-2H9v2zm-8-4h2v-2H1v2zm0 4h2v-2H1v2zM23 3H13v6h10V3zm-2 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zM1 5h2V3H1v2zm20 8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'TabUnselectedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabUnselectedTwoTone.js b/packages/material-ui-icons/lib/esm/TabUnselectedTwoTone.js new file mode 100644 index 00000000000000..bfbb23007bc55d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabUnselectedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z" +}), 'TabUnselectedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableChart.js b/packages/material-ui-icons/lib/esm/TableChart.js new file mode 100644 index 00000000000000..fd5ed71dc89eb0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10.02h5V21h-5zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z" +}), 'TableChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableChartOutlined.js b/packages/material-ui-icons/lib/esm/TableChartOutlined.js new file mode 100644 index 00000000000000..a0eb7f93fc8617 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h15zm-5 14h-5v-9h5v9zM5 10h3v9H5v-9zm12 9v-9h3v9h-3z" +}), 'TableChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableChartRounded.js b/packages/material-ui-icons/lib/esm/TableChartRounded.js new file mode 100644 index 00000000000000..ad59e08c10ca5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10.02h5V21h-5V10.02zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z" +}), 'TableChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableChartSharp.js b/packages/material-ui-icons/lib/esm/TableChartSharp.js new file mode 100644 index 00000000000000..3f2572eda4a24a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 10.02h5V21h-5V10.02zM17 21h5V10h-5v11zm5-18H3v5h19V3zM3 21h5V10H3v11z" +}), 'TableChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableChartTwoTone.js b/packages/material-ui-icons/lib/esm/TableChartTwoTone.js new file mode 100644 index 00000000000000..4926a9e6a909fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableChartTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h15v3H5zm12 5h3v9h-3zm-7 0h5v9h-5zm-5 0h3v9H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 19H5v-9h3v9zm7 0h-5v-9h5v9zm5 0h-3v-9h3v9zm0-11H5V5h15v3z" +}, "1")], 'TableChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableRows.js b/packages/material-ui-icons/lib/esm/TableRows.js new file mode 100644 index 00000000000000..262f6624830cc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableRows.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8H3V4h18v4zm0 2H3v4h18v-4zm0 6H3v4h18v-4z" +}), 'TableRows'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableRowsOutlined.js b/packages/material-ui-icons/lib/esm/TableRowsOutlined.js new file mode 100644 index 00000000000000..7192aaeefae94c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableRowsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h14zm0 5v4H5v-4h14zM5 19v-3h14v3H5z" +}), 'TableRowsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableRowsRounded.js b/packages/material-ui-icons/lib/esm/TableRowsRounded.js new file mode 100644 index 00000000000000..5aa06a3252ed99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableRowsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 8H5c-1.1 0-2-.9-2-2s.9-2 2-2h14c1.1 0 2 .9 2 2s-.9 2-2 2zm0 2H5c-1.1 0-2 .9-2 2s.9 2 2 2h14c1.1 0 2-.9 2-2s-.9-2-2-2zm0 6H5c-1.1 0-2 .9-2 2s.9 2 2 2h14c1.1 0 2-.9 2-2s-.9-2-2-2z" +}), 'TableRowsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableRowsSharp.js b/packages/material-ui-icons/lib/esm/TableRowsSharp.js new file mode 100644 index 00000000000000..c029c51b263e32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableRowsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8H3V4h18v4zm0 2H3v4h18v-4zm0 6H3v4h18v-4z" +}), 'TableRowsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableRowsTwoTone.js b/packages/material-ui-icons/lib/esm/TableRowsTwoTone.js new file mode 100644 index 00000000000000..b6b75f87d61fae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableRowsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 5v3H5V5h14zm0 5v4H5v-4h14zM5 19v-3h14v3H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h14zm0 5v4H5v-4h14zM5 19v-3h14v3H5z" +}, "1")], 'TableRowsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableView.js b/packages/material-ui-icons/lib/esm/TableView.js new file mode 100644 index 00000000000000..dd69196c1fe255 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableView.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" +}), 'TableView'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableViewOutlined.js b/packages/material-ui-icons/lib/esm/TableViewOutlined.js new file mode 100644 index 00000000000000..db038f41ecc918 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableViewOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" +}), 'TableViewOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableViewRounded.js b/packages/material-ui-icons/lib/esm/TableViewRounded.js new file mode 100644 index 00000000000000..8cc5fc63a16dfd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableViewRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 3c0 .55-.45 1-1 1h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1zm-6 5v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" +}), 'TableViewRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableViewSharp.js b/packages/material-ui-icons/lib/esm/TableViewSharp.js new file mode 100644 index 00000000000000..de4485391e8492 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableViewSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7H7v14h14V7zm-2 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H3V3h14v3h-2V5H5v10h1v2z" +}), 'TableViewSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TableViewTwoTone.js b/packages/material-ui-icons/lib/esm/TableViewTwoTone.js new file mode 100644 index 00000000000000..d5225c0debd22d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TableViewTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 9v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1v2z" +}, "1")], 'TableViewTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tablet.js b/packages/material-ui-icons/lib/esm/Tablet.js new file mode 100644 index 00000000000000..5b53c33e340a30 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tablet.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" +}), 'Tablet'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletAndroid.js b/packages/material-ui-icons/lib/esm/TabletAndroid.js new file mode 100644 index 00000000000000..ca7bae491e2de5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletAndroid.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" +}), 'TabletAndroid'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletAndroidOutlined.js b/packages/material-ui-icons/lib/esm/TabletAndroidOutlined.js new file mode 100644 index 00000000000000..f7ffb0db080891 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletAndroidOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" +}), 'TabletAndroidOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletAndroidRounded.js b/packages/material-ui-icons/lib/esm/TabletAndroidRounded.js new file mode 100644 index 00000000000000..3321c1868085fd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletAndroidRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4.5 22h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm5.75-3H4.75V3h14.5v16z" +}), 'TabletAndroidRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletAndroidSharp.js b/packages/material-ui-icons/lib/esm/TabletAndroidSharp.js new file mode 100644 index 00000000000000..edb088ff691dc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletAndroidSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 0H3v24h18V0zm-7 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" +}), 'TabletAndroidSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletAndroidTwoTone.js b/packages/material-ui-icons/lib/esm/TabletAndroidTwoTone.js new file mode 100644 index 00000000000000..7fd2ce352de87c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletAndroidTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.75 3h14.5v16H4.75z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" +}, "1")], 'TabletAndroidTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletMac.js b/packages/material-ui-icons/lib/esm/TabletMac.js new file mode 100644 index 00000000000000..315700ffdd53f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletMac.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" +}), 'TabletMac'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletMacOutlined.js b/packages/material-ui-icons/lib/esm/TabletMacOutlined.js new file mode 100644 index 00000000000000..4eb6a1b5939ec3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletMacOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" +}), 'TabletMacOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletMacRounded.js b/packages/material-ui-icons/lib/esm/TabletMacRounded.js new file mode 100644 index 00000000000000..a3fe5994b9d410 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletMacRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" +}), 'TabletMacRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletMacSharp.js b/packages/material-ui-icons/lib/esm/TabletMacSharp.js new file mode 100644 index 00000000000000..288380e42ff517 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletMacSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 0H2v24h19V0zm-9.5 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" +}), 'TabletMacSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletMacTwoTone.js b/packages/material-ui-icons/lib/esm/TabletMacTwoTone.js new file mode 100644 index 00000000000000..edde66b36442d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletMacTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 3h15v16H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" +}, "1")], 'TabletMacTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletOutlined.js b/packages/material-ui-icons/lib/esm/TabletOutlined.js new file mode 100644 index 00000000000000..52b259d9b5aa04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" +}), 'TabletOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletRounded.js b/packages/material-ui-icons/lib/esm/TabletRounded.js new file mode 100644 index 00000000000000..db675062ca33cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" +}), 'TabletRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletSharp.js b/packages/material-ui-icons/lib/esm/TabletSharp.js new file mode 100644 index 00000000000000..fb8d6922fab8af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 4H1v16h21.99L23 4zm-4 14H5V6h14v12z" +}), 'TabletSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TabletTwoTone.js b/packages/material-ui-icons/lib/esm/TabletTwoTone.js new file mode 100644 index 00000000000000..2cc17bb25e83e9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TabletTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 6h14v12H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z" +}, "1")], 'TabletTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tag.js b/packages/material-ui-icons/lib/esm/Tag.js new file mode 100644 index 00000000000000..6d3fac93e84950 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tag.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'Tag'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagFaces.js b/packages/material-ui-icons/lib/esm/TagFaces.js new file mode 100644 index 00000000000000..106388473d35db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagFaces.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'TagFaces'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagFacesOutlined.js b/packages/material-ui-icons/lib/esm/TagFacesOutlined.js new file mode 100644 index 00000000000000..f25b0f12ef5118 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagFacesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'TagFacesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagFacesRounded.js b/packages/material-ui-icons/lib/esm/TagFacesRounded.js new file mode 100644 index 00000000000000..b6cc2d530d4dee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagFacesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm8.25 6.75c-.95 1.64-2.72 2.75-4.75 2.75s-3.8-1.11-4.75-2.75c-.19-.33.06-.75.44-.75h8.62c.39 0 .63.42.44.75zM15.5 11c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'TagFacesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagFacesSharp.js b/packages/material-ui-icons/lib/esm/TagFacesSharp.js new file mode 100644 index 00000000000000..c04ad990d8a92f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagFacesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 2C6.49 2 2.02 6.48 2.02 12s4.47 10 9.99 10c5.53 0 10.01-4.48 10.01-10S17.54 2 12.01 2zm.01 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.35 8 15.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.35 8 8.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.91c.8 2.04 2.78 3.5 5.11 3.5z" +}), 'TagFacesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagFacesTwoTone.js b/packages/material-ui-icons/lib/esm/TagFacesTwoTone.js new file mode 100644 index 00000000000000..4468ca9dba2f31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagFacesTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "9.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "9.5", + r: "1.5" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "4")], 'TagFacesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagOutlined.js b/packages/material-ui-icons/lib/esm/TagOutlined.js new file mode 100644 index 00000000000000..6318b5112dcebf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'TagOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagRounded.js b/packages/material-ui-icons/lib/esm/TagRounded.js new file mode 100644 index 00000000000000..36bd350a886d6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 9c0-.55-.45-1-1-1h-3V5c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V5c0-.55-.45-1-1-1s-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v4H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h4v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3v-4h3c.55 0 1-.45 1-1zm-6 5h-4v-4h4v4z" +}), 'TagRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagSharp.js b/packages/material-ui-icons/lib/esm/TagSharp.js new file mode 100644 index 00000000000000..a6bd4ff829bc18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'TagSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TagTwoTone.js b/packages/material-ui-icons/lib/esm/TagTwoTone.js new file mode 100644 index 00000000000000..7d31daefc84bf4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TagTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" +}), 'TagTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TakeoutDining.js b/packages/material-ui-icons/lib/esm/TakeoutDining.js new file mode 100644 index 00000000000000..dcde9f4266abab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TakeoutDining.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M5.26 11h13.48l-.67 9H5.93l-.67-9zm3.76-7h5.95L19 7.38l1.59-1.59L22 7.21 19.21 10H4.79L2 7.21 3.41 5.8 5 7.38 9.02 4z" +}), 'TakeoutDining'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TakeoutDiningOutlined.js b/packages/material-ui-icons/lib/esm/TakeoutDiningOutlined.js new file mode 100644 index 00000000000000..a58b2f97d96d38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TakeoutDiningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7.79 18-.51-7h9.46l-.51 7H7.79zM9.83 5h4.33l2.8 2.73L16.87 9H7.12l-.09-1.27L9.83 5zM22 7.46l-1.41-1.41L19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44l3.23 3.11.7 9.45h12.14l.7-9.44L22 7.46z" +}), 'TakeoutDiningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TakeoutDiningRounded.js b/packages/material-ui-icons/lib/esm/TakeoutDiningRounded.js new file mode 100644 index 00000000000000..8ecbe55e731704 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TakeoutDiningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.29 6.75a.9839.9839 0 0 0-1.4 0l-.89.88.03-.56-3.46-3.48c-.38-.38-.89-.59-1.42-.59h-4.3c-.53 0-1.04.21-1.42.59L4.97 7.07l.03.5-.89-.87c-.39-.38-1.01-.38-1.39.01l-.02.02c-.38.39-.38 1.02.02 1.4L4.66 10h14.69l1.92-1.84c.4-.38.41-1.02.02-1.41zm-15.5 11.4c.08 1.04.95 1.85 2 1.85h8.43c1.05 0 1.92-.81 1.99-1.85l.49-6.6H5.3l.49 6.6z" +}), 'TakeoutDiningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TakeoutDiningSharp.js b/packages/material-ui-icons/lib/esm/TakeoutDiningSharp.js new file mode 100644 index 00000000000000..9952731053e911 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TakeoutDiningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 7.46-1.41-1.41L19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44 4.66 10h14.69zM5.93 20h12.14l.63-8.45H5.3z" +}), 'TakeoutDiningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TakeoutDiningTwoTone.js b/packages/material-ui-icons/lib/esm/TakeoutDiningTwoTone.js new file mode 100644 index 00000000000000..067747abb70ded --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TakeoutDiningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m9.83 5-2.8 2.73L7.12 9h9.75l.09-1.27L14.16 5zM7.79 18h8.44l.51-7H7.28z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.59 6.05 19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44l3.23 3.11.7 9.45h12.14l.7-9.44L22 7.46l-1.41-1.41zM16.23 18H7.79l-.51-7h9.46l-.51 7zm.64-9H7.12l-.09-1.27L9.83 5h4.33l2.8 2.73L16.87 9z" +}, "1")], 'TakeoutDiningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapAndPlay.js b/packages/material-ui-icons/lib/esm/TapAndPlay.js new file mode 100644 index 00000000000000..497409b0338483 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapAndPlay.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" +}), 'TapAndPlay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapAndPlayOutlined.js b/packages/material-ui-icons/lib/esm/TapAndPlayOutlined.js new file mode 100644 index 00000000000000..412ce160486975 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapAndPlayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" +}), 'TapAndPlayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapAndPlayRounded.js b/packages/material-ui-icons/lib/esm/TapAndPlayRounded.js new file mode 100644 index 00000000000000..becf7649117238 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapAndPlayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.14 16.09c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.95-2.81-5.29-5.77-5.77zM2 20v3h3c0-1.66-1.34-3-3-3zm1.11-7.94c-.59-.06-1.11.4-1.11.99 0 .5.37.94.87.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.88.99.88.59 0 1.06-.51 1-1.1-.51-5.2-4.63-9.32-9.83-9.84zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" +}), 'TapAndPlayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapAndPlaySharp.js b/packages/material-ui-icons/lib/esm/TapAndPlaySharp.js new file mode 100644 index 00000000000000..570c8551ea4de9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapAndPlaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM5 1v9.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H19V1H5z" +}), 'TapAndPlaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapAndPlayTwoTone.js b/packages/material-ui-icons/lib/esm/TapAndPlayTwoTone.js new file mode 100644 index 00000000000000..dedb65ca00e4d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapAndPlayTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01 7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" +}), 'TapAndPlayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tapas.js b/packages/material-ui-icons/lib/esm/Tapas.js new file mode 100644 index 00000000000000..5376f19334b27e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tapas.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zm-7.5 8.5c0 1.38-1.12 2.5-2.5 2.5H8v9H6v-9H4c-1.38 0-2.5-1.12-2.5-2.5S2.62 9 4 9h2V8H4C2.62 8 1.5 6.88 1.5 5.5S2.62 3 4 3h2V1h2v2h2c1.38 0 2.5 1.12 2.5 2.5S11.38 8 10 8H8v1h2c1.38 0 2.5 1.12 2.5 2.5z" +}), 'Tapas'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapasOutlined.js b/packages/material-ui-icons/lib/esm/TapasOutlined.js new file mode 100644 index 00000000000000..fbc585e2195bc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapasOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zm-4 7V8h4v2c0 1.1-.9 2-2 2s-2-.9-2-2zm-6-1H8V8h2c1.38 0 2.5-1.12 2.5-2.5S11.38 3 10 3H8V1H6v2H4C2.62 3 1.5 4.12 1.5 5.5S2.62 8 4 8h2v1H4c-1.38 0-2.5 1.12-2.5 2.5S2.62 14 4 14h2v9h2v-9h2c1.38 0 2.5-1.12 2.5-2.5S11.38 9 10 9zM4 6c-.28 0-.5-.22-.5-.5S3.72 5 4 5h6c.28 0 .5.22.5.5s-.22.5-.5.5H4zm6 6H4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'TapasOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapasRounded.js b/packages/material-ui-icons/lib/esm/TapasRounded.js new file mode 100644 index 00000000000000..3b415de88c44f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapasRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V2c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v8c0 1.86 1.28 3.41 3 3.86V21h-1c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-1v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zM9.86 9H8V8h1.86c1.31 0 2.5-.94 2.63-2.24C12.64 4.26 11.47 3 10 3H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H4.14c-1.31 0-2.5.94-2.63 2.24C1.36 6.74 2.53 8 4 8h2v1H4.14c-1.31 0-2.5.94-2.63 2.24C1.36 12.74 2.53 14 4 14h2v8c0 .55.45 1 1 1s1-.45 1-1v-8h2c1.47 0 2.64-1.26 2.49-2.76C12.36 9.94 11.17 9 9.86 9z" +}), 'TapasRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapasSharp.js b/packages/material-ui-icons/lib/esm/TapasSharp.js new file mode 100644 index 00000000000000..05ac8201679c5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapasSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zM10 9H8V8h2c1.38 0 2.5-1.12 2.5-2.5S11.38 3 10 3H8V1H6v2H4C2.62 3 1.5 4.12 1.5 5.5S2.62 8 4 8h2v1H4c-1.38 0-2.5 1.12-2.5 2.5S2.62 14 4 14h2v9h2v-9h2c1.38 0 2.5-1.12 2.5-2.5S11.38 9 10 9z" +}), 'TapasSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TapasTwoTone.js b/packages/material-ui-icons/lib/esm/TapasTwoTone.js new file mode 100644 index 00000000000000..1408929ffdbc3d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TapasTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16 10V8h4v2c0 1.1-.9 2-2 2s-2-.9-2-2zM4 6c-.28 0-.5-.22-.5-.5S3.72 5 4 5h6c.28 0 .5.22.5.5s-.22.5-.5.5H4zm6 6H4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6c.28 0 .5.22.5.5s-.22.5-.5.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zm-4 7V8h4v2c0 1.1-.9 2-2 2s-2-.9-2-2zm-6-1H8V8h2c1.38 0 2.5-1.12 2.5-2.5S11.38 3 10 3H8V1H6v2H4C2.62 3 1.5 4.12 1.5 5.5S2.62 8 4 8h2v1H4c-1.38 0-2.5 1.12-2.5 2.5S2.62 14 4 14h2v9h2v-9h2c1.38 0 2.5-1.12 2.5-2.5S11.38 9 10 9zM4 6c-.28 0-.5-.22-.5-.5S3.72 5 4 5h6c.28 0 .5.22.5.5s-.22.5-.5.5H4zm6 6H4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6c.28 0 .5.22.5.5s-.22.5-.5.5z" +}, "1")], 'TapasTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Task.js b/packages/material-ui-icons/lib/esm/Task.js new file mode 100644 index 00000000000000..8d0758996b76dc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Task.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-3.06 16L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18zM13 9V3.5L18.5 9H13z" +}), 'Task'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskAlt.js b/packages/material-ui-icons/lib/esm/TaskAlt.js new file mode 100644 index 00000000000000..c79e4bd959a751 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" +}), 'TaskAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskAltOutlined.js b/packages/material-ui-icons/lib/esm/TaskAltOutlined.js new file mode 100644 index 00000000000000..91052816fe899a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" +}), 'TaskAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskAltRounded.js b/packages/material-ui-icons/lib/esm/TaskAltRounded.js new file mode 100644 index 00000000000000..2cda3357677eb0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.29 5.89-10 10c-.39.39-1.02.39-1.41 0l-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12 9.29-9.29c.39-.39 1.02-.39 1.41 0 .4.39.4 1.02.01 1.41zm-5.52-3.15c-1.69-.69-3.61-.93-5.61-.57-4.07.73-7.32 4.01-8.01 8.08C1.01 17 6.63 22.78 13.34 21.91c3.96-.51 7.28-3.46 8.32-7.31.4-1.47.44-2.89.21-4.22-.13-.8-1.12-1.11-1.7-.54-.23.23-.33.57-.27.89.22 1.33.12 2.75-.52 4.26-1.16 2.71-3.68 4.7-6.61 4.97-5.1.47-9.33-3.85-8.7-8.98.43-3.54 3.28-6.42 6.81-6.91 1.73-.24 3.37.09 4.77.81.39.2.86.13 1.17-.18.48-.48.36-1.29-.24-1.6-.27-.12-.54-.25-.81-.36z" +}), 'TaskAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskAltSharp.js b/packages/material-ui-icons/lib/esm/TaskAltSharp.js new file mode 100644 index 00000000000000..eb8f7c7d44edb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" +}), 'TaskAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskAltTwoTone.js b/packages/material-ui-icons/lib/esm/TaskAltTwoTone.js new file mode 100644 index 00000000000000..4c364303faa3c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskAltTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 5.18 10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44C16.1 2.67 14.13 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" +}), 'TaskAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskOutlined.js b/packages/material-ui-icons/lib/esm/TaskOutlined.js new file mode 100644 index 00000000000000..250f1f30910580 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zm-9.18-6.95L7.4 14.46 10.94 18l5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" +}), 'TaskOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskRounded.js b/packages/material-ui-icons/lib/esm/TaskRounded.js new file mode 100644 index 00000000000000..e1087f2c29744f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zm-9.18 9.88-2.12-2.12a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l1.41 1.41 3.54-3.54c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.24 4.24c-.38.4-1.02.4-1.41.01zM14 9c-.55 0-1-.45-1-1V3.5L18.5 9H14z" +}), 'TaskRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskSharp.js b/packages/material-ui-icons/lib/esm/TaskSharp.js new file mode 100644 index 00000000000000..159ab1d0f6793d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm-3.06 16L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18zM13 9V3.5L18.5 9H13z" +}), 'TaskSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaskTwoTone.js b/packages/material-ui-icons/lib/esm/TaskTwoTone.js new file mode 100644 index 00000000000000..c2f45f867dc79a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaskTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 9V4H6v16h12V9h-5zm-2.06 9L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zm-9.18-6.95L7.4 14.46 10.94 18l5.66-5.66-1.41-1.41-4.24 4.24-2.13-2.12z" +}, "1")], 'TaskTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaxiAlert.js b/packages/material-ui-icons/lib/esm/TaxiAlert.js new file mode 100644 index 00000000000000..5524eb43c82728 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaxiAlert.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8A7 7 0 0 0 9.68 5H7v2H4.5a1.5 1.5 0 0 0-1.42 1.01L1 14v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-7.68A7.01 7.01 0 0 0 23 8zm-18.5.5h4.53a6.93 6.93 0 0 0 2.08 4.5H3l1.5-4.5zm0 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm11 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.93-5.63-.21.11-.18.09a4.97 4.97 0 0 1-.42.16l-.22.07-.23.06-.2.05a5 5 0 0 1-5.94-4.41A4.07 4.07 0 0 1 11 8l.02-.47.02-.17.04-.28.04-.21.05-.21.07-.24.05-.13a4.99 4.99 0 0 1 9.69 1.7 4.96 4.96 0 0 1-2.55 4.38zM15 4h2v5h-2zm0 6h2v2h-2z" +}), 'TaxiAlert'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaxiAlertOutlined.js b/packages/material-ui-icons/lib/esm/TaxiAlertOutlined.js new file mode 100644 index 00000000000000..46b46063da8c10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaxiAlertOutlined.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "15.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "15.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 13v5H4v-5h14c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H5.5c-.66 0-1.21.42-1.42 1.01L2 13v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-.09-.27c-.61.17-1.25.27-1.91.27z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "3")], 'TaxiAlertOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaxiAlertRounded.js b/packages/material-ui-icons/lib/esm/TaxiAlertRounded.js new file mode 100644 index 00000000000000..a8d4c448aa7cd8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaxiAlertRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H9c-.55 0-1 .45-1 1v1H5.5c-.66 0-1.21.42-1.42 1.01L2 13v7.5c0 .82.67 1.5 1.5 1.5S5 21.32 5 20.5V20h12v.5c0 .82.67 1.5 1.5 1.5s1.5-.68 1.5-1.5V13l-.09-.27c-.61.17-1.25.27-1.91.27zM6.5 17c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm.5-2.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5s.5.22.5.5v3z" +}, "1")], 'TaxiAlertRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaxiAlertSharp.js b/packages/material-ui-icons/lib/esm/TaxiAlertSharp.js new file mode 100644 index 00000000000000..43081e330f653e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaxiAlertSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 13c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H4.43L2 13v9h3v-2h12v2h3v-9l-.09-.27c-.61.17-1.25.27-1.91.27zM6.5 17c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" +}, "1")], 'TaxiAlertSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TaxiAlertTwoTone.js b/packages/material-ui-icons/lib/esm/TaxiAlertTwoTone.js new file mode 100644 index 00000000000000..d25438a62b6920 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TaxiAlertTwoTone.js @@ -0,0 +1,18 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h14v-5H4v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S7.33 17 6.5 17 5 16.33 5 15.5 5.67 14 6.5 14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "6.5", + cy: "15.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "15.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 18H4v-5h14c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H5.5c-.66 0-1.21.42-1.42 1.01L2 13v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-.09-.27c-.61.17-1.25.27-1.91.27v5z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 2v4h-1V3h1zm0 6h-1V8h1v1z" +}, "4")], 'TaxiAlertTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Telegram.js b/packages/material-ui-icons/lib/esm/Telegram.js new file mode 100644 index 00000000000000..3efadebb883561 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Telegram.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.78 18.65l.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z" +}), 'Telegram'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TenMp.js b/packages/material-ui-icons/lib/esm/TenMp.js new file mode 100644 index 00000000000000..5bf7781ff2003e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 7H15v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z" +}), 'TenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TenMpOutlined.js b/packages/material-ui-icons/lib/esm/TenMpOutlined.js new file mode 100644 index 00000000000000..83c4e9f4899962 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TenMpOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H15v3h-1.5V7zm-6 7h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm1-2.5H10v-6H7V7h1.5zm5 7H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1")], 'TenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TenMpRounded.js b/packages/material-ui-icons/lib/esm/TenMpRounded.js new file mode 100644 index 00000000000000..eb1a14d198672b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TenMpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 7H15v3h-1.5V7zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7.25 15.5c-.41 0-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75zm2.5 0c-.41 0-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75zM10 6.5v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75H9c.55 0 1 .45 1 1zm6.5 4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM15 14h1.5v1.5H15V14z" +}), 'TenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TenMpSharp.js b/packages/material-ui-icons/lib/esm/TenMpSharp.js new file mode 100644 index 00000000000000..88143230b4a093 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TenMpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5 7H15v3h-1.5V7zM21 3H3v18h18V3zm-8.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm2.5 0h-1.5v-6H18V17h-3v1.5zm-5-13v6H8.5V7H7V5.5h3zm6.5 0v6H12v-6h4.5zM15 14h1.5v1.5H15V14z" +}), 'TenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TenMpTwoTone.js b/packages/material-ui-icons/lib/esm/TenMpTwoTone.js new file mode 100644 index 00000000000000..7870191db4d220 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TenMpTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.5 7H15v3h-1.5zm1.5 7h1.5v1.5H15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-6-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4zm-5-1h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M13 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H13c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H15v3h-1.5V7zm-6 7h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm1-2.5H10v-6H7V7h1.5zm5 7H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3")], 'TenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Terrain.js b/packages/material-ui-icons/lib/esm/Terrain.js new file mode 100644 index 00000000000000..18bb42c556b2d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Terrain.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" +}), 'Terrain'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TerrainOutlined.js b/packages/material-ui-icons/lib/esm/TerrainOutlined.js new file mode 100644 index 00000000000000..2cc0ffd6e34900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TerrainOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z" +}), 'TerrainOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TerrainRounded.js b/packages/material-ui-icons/lib/esm/TerrainRounded.js new file mode 100644 index 00000000000000..d07f9e51b45a8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TerrainRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.2 7.07 10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z" +}), 'TerrainRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TerrainSharp.js b/packages/material-ui-icons/lib/esm/TerrainSharp.js new file mode 100644 index 00000000000000..1d9a0df4dba659 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TerrainSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14 6-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" +}), 'TerrainSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TerrainTwoTone.js b/packages/material-ui-icons/lib/esm/TerrainTwoTone.js new file mode 100644 index 00000000000000..7f40ab4bea6da4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TerrainTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 16h3.04l-1.52-2.03z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m9.78 11.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z" +}, "1")], 'TerrainTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFields.js b/packages/material-ui-icons/lib/esm/TextFields.js new file mode 100644 index 00000000000000..162fca84d04e37 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFields.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" +}), 'TextFields'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFieldsOutlined.js b/packages/material-ui-icons/lib/esm/TextFieldsOutlined.js new file mode 100644 index 00000000000000..8ba81154e98e6d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFieldsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" +}), 'TextFieldsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFieldsRounded.js b/packages/material-ui-icons/lib/esm/TextFieldsRounded.js new file mode 100644 index 00000000000000..9d5755b3413635 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFieldsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 5.5C2.5 6.33 3.17 7 4 7h3.5v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7H14c.83 0 1.5-.67 1.5-1.5S14.83 4 14 4H4c-.83 0-1.5.67-1.5 1.5zM20 9h-6c-.83 0-1.5.67-1.5 1.5S13.17 12 14 12h1.5v5.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V12H20c.83 0 1.5-.67 1.5-1.5S20.83 9 20 9z" +}), 'TextFieldsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFieldsSharp.js b/packages/material-ui-icons/lib/esm/TextFieldsSharp.js new file mode 100644 index 00000000000000..d90bbc04466e21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFieldsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" +}), 'TextFieldsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFieldsTwoTone.js b/packages/material-ui-icons/lib/esm/TextFieldsTwoTone.js new file mode 100644 index 00000000000000..8f9572fd369dda --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFieldsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 12h3v7h3v-7h3V9h-9zm3-8h-13v3h5v12h3V7h5z" +}), 'TextFieldsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFormat.js b/packages/material-ui-icons/lib/esm/TextFormat.js new file mode 100644 index 00000000000000..d738cb442a3ef2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFormat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" +}), 'TextFormat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFormatOutlined.js b/packages/material-ui-icons/lib/esm/TextFormatOutlined.js new file mode 100644 index 00000000000000..841ef76b5f9dbc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFormatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" +}), 'TextFormatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFormatRounded.js b/packages/material-ui-icons/lib/esm/TextFormatRounded.js new file mode 100644 index 00000000000000..3abb6e918f559f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFormatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1zm4.5-5.2h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C12.87 4.27 12.46 4 12 4c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.65-1.6zM12 5.98 13.87 11h-3.74L12 5.98z" +}), 'TextFormatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFormatSharp.js b/packages/material-ui-icons/lib/esm/TextFormatSharp.js new file mode 100644 index 00000000000000..edbc18f4be804a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFormatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" +}), 'TextFormatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextFormatTwoTone.js b/packages/material-ui-icons/lib/esm/TextFormatTwoTone.js new file mode 100644 index 00000000000000..51ea60016ece74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextFormatTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98 13.87 11h-3.74L12 5.98z" +}), 'TextFormatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateUp.js b/packages/material-ui-icons/lib/esm/TextRotateUp.js new file mode 100644 index 00000000000000..66a152c75946db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateUp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 12v1.5l11 4.75v-2.1l-2.2-.9v-5l2.2-.9v-2.1L3 12zm7 2.62-5.02-1.87L10 10.88v3.74zm8-10.37-3 3h2v12.5h2V7.25h2l-3-3z" +}), 'TextRotateUp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateUpOutlined.js b/packages/material-ui-icons/lib/esm/TextRotateUpOutlined.js new file mode 100644 index 00000000000000..49865e3645211a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateUpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13 10 11.13v3.74L4.98 13z" +}), 'TextRotateUpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateUpRounded.js b/packages/material-ui-icons/lib/esm/TextRotateUpRounded.js new file mode 100644 index 00000000000000..466dcf138d1e4b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateUpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.35 4.35c-.2-.2-.51-.2-.71 0l-1.79 1.79c-.31.32-.09.86.36.86H17v12c0 .55.45 1 1 1s1-.45 1-1V7h.79c.45 0 .67-.54.35-.85l-1.79-1.8zM11.8 15.5v-5l1.6-.66c.36-.14.6-.49.6-.88 0-.69-.71-1.15-1.34-.88l-8.97 3.88c-.42.17-.69.58-.69 1.04 0 .46.27.87.69 1.05l8.97 3.88c.63.27 1.34-.2 1.34-.89 0-.39-.24-.74-.6-.89l-1.6-.65zM4.98 13 10 11.13v3.74L4.98 13z" +}), 'TextRotateUpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateUpSharp.js b/packages/material-ui-icons/lib/esm/TextRotateUpSharp.js new file mode 100644 index 00000000000000..ba364379714818 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateUpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13 10 11.13v3.74L4.98 13z" +}), 'TextRotateUpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateUpTwoTone.js b/packages/material-ui-icons/lib/esm/TextRotateUpTwoTone.js new file mode 100644 index 00000000000000..4e46b77170ab0c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateUpTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18 4-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13 10 11.13v3.74L4.98 13z" +}), 'TextRotateUpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateVertical.js b/packages/material-ui-icons/lib/esm/TextRotateVertical.js new file mode 100644 index 00000000000000..d2e79acd106f4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateVertical.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z" +}), 'TextRotateVertical'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateVerticalOutlined.js b/packages/material-ui-icons/lib/esm/TextRotateVerticalOutlined.js new file mode 100644 index 00000000000000..4eed6a0cdd34c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateVerticalOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" +}), 'TextRotateVerticalOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateVerticalRounded.js b/packages/material-ui-icons/lib/esm/TextRotateVerticalRounded.js new file mode 100644 index 00000000000000..09e812f0ad3d96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateVerticalRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 5c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.66-1.6h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C15.87 5.27 15.46 5 15 5zm-1.87 7L15 6.98 16.87 12h-3.74zm-6.78 7.64 1.79-1.79c.32-.31.1-.85-.35-.85H7V5c0-.55-.45-1-1-1s-1 .44-1 1v12h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.19.2.51.2.7 0z" +}), 'TextRotateVerticalRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateVerticalSharp.js b/packages/material-ui-icons/lib/esm/TextRotateVerticalSharp.js new file mode 100644 index 00000000000000..e9de510aadeb24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateVerticalSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" +}), 'TextRotateVerticalSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotateVerticalTwoTone.js b/packages/material-ui-icons/lib/esm/TextRotateVerticalTwoTone.js new file mode 100644 index 00000000000000..a1e8fed69b71e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotateVerticalTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" +}), 'TextRotateVerticalTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngledown.js b/packages/material-ui-icons/lib/esm/TextRotationAngledown.js new file mode 100644 index 00000000000000..24f2383b088516 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngledown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.4 4.91-1.06-1.06L7.2 8.27l1.48 1.48 2.19-.92 3.54 3.54-.92 2.19 1.48 1.48L19.4 4.91zm-6.81 3.1 4.87-2.23-2.23 4.87-2.64-2.64zM14.27 21v-4.24l-1.41 1.41-8.84-8.84-1.42 1.42 8.84 8.84L10.03 21h4.24z" +}), 'TextRotationAngledown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngledownOutlined.js b/packages/material-ui-icons/lib/esm/TextRotationAngledownOutlined.js new file mode 100644 index 00000000000000..3c504297420f0f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngledownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" +}), 'TextRotationAngledownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngledownRounded.js b/packages/material-ui-icons/lib/esm/TextRotationAngledownRounded.js new file mode 100644 index 00000000000000..0b87ab14e31128 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngledownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 20.5v-2.54c0-.45-.54-.67-.85-.35l-.56.56L5.1 9.68a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l8.49 8.49-.56.56c-.32.32-.1.86.34.86h2.54c.28 0 .5-.23.5-.5zM11.25 8.48l3.54 3.54-.67 1.6c-.15.36-.07.77.21 1.05.49.49 1.31.32 1.57-.32l3.61-9.09c.17-.42.07-.91-.25-1.23-.32-.32-.8-.42-1.23-.25l-9.1 3.6c-.64.25-.81 1.08-.32 1.57.27.27.68.35 1.04.2l1.6-.67zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" +}), 'TextRotationAngledownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngledownSharp.js b/packages/material-ui-icons/lib/esm/TextRotationAngledownSharp.js new file mode 100644 index 00000000000000..4e7861e05487f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngledownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" +}), 'TextRotationAngledownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngledownTwoTone.js b/packages/material-ui-icons/lib/esm/TextRotationAngledownTwoTone.js new file mode 100644 index 00000000000000..d862c6cb86e23f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngledownTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05-2.23 4.87-2.64-2.64 4.87-2.23z" +}), 'TextRotationAngledownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngleup.js b/packages/material-ui-icons/lib/esm/TextRotationAngleup.js new file mode 100644 index 00000000000000..6ee4766de9c471 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngleup.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.49 4.21 3.43 5.27 7.85 16.4l1.48-1.48-.92-2.19 3.54-3.54 2.19.92 1.48-1.48L4.49 4.21zm3.09 6.8L5.36 6.14l4.87 2.23-2.65 2.64zm12.99-1.68h-4.24l1.41 1.41-8.84 8.84L10.32 21l8.84-8.84 1.41 1.41V9.33z" +}), 'TextRotationAngleup'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngleupOutlined.js b/packages/material-ui-icons/lib/esm/TextRotationAngleupOutlined.js new file mode 100644 index 00000000000000..5130c65408f0f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngleupOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.76 9 1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75 3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" +}), 'TextRotationAngleupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngleupRounded.js b/packages/material-ui-icons/lib/esm/TextRotationAngleupRounded.js new file mode 100644 index 00000000000000..fb132e10137f02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngleupRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.61 9.85.56.56-8.48 8.49c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l8.49-8.49.56.56c.31.32.85.1.85-.34V9.5c0-.28-.22-.5-.5-.5h-2.54c-.44 0-.66.54-.35.85zm-9.13 2.9 3.54-3.54 1.6.67c.36.15.77.07 1.05-.21.49-.49.32-1.31-.32-1.57L5.26 4.5c-.43-.16-.91-.06-1.23.26-.32.32-.42.8-.25 1.23l3.61 9.09c.25.64 1.08.81 1.57.32.28-.28.36-.69.21-1.05l-.69-1.6zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" +}), 'TextRotationAngleupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngleupSharp.js b/packages/material-ui-icons/lib/esm/TextRotationAngleupSharp.js new file mode 100644 index 00000000000000..381882bdbd5454 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngleupSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.76 9 1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75 3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" +}), 'TextRotationAngleupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationAngleupTwoTone.js b/packages/material-ui-icons/lib/esm/TextRotationAngleupTwoTone.js new file mode 100644 index 00000000000000..5e9cfb72d6a982 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationAngleupTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.76 9 1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75 3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" +}), 'TextRotationAngleupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationDown.js b/packages/material-ui-icons/lib/esm/TextRotationDown.js new file mode 100644 index 00000000000000..7762a74307b585 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 12v-1.5L10 5.75v2.1l2.2.9v5l-2.2.9v2.1L21 12zm-7-2.62 5.02 1.87L14 13.12V9.38zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z" +}), 'TextRotationDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationDownOutlined.js b/packages/material-ui-icons/lib/esm/TextRotationDownOutlined.js new file mode 100644 index 00000000000000..a03e0448112d9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 20 3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" +}), 'TextRotationDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationDownRounded.js b/packages/material-ui-icons/lib/esm/TextRotationDownRounded.js new file mode 100644 index 00000000000000..14132ff184e066 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.35 19.65 1.79-1.79c.32-.32.1-.86-.35-.86H7V5c0-.55-.45-1-1-1s-1 .45-1 1v12h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.19.2.51.2.7.01zM12.2 8.5v5l-1.6.66c-.36.15-.6.5-.6.89 0 .69.71 1.15 1.34.88l8.97-3.88c.42-.18.69-.59.69-1.05 0-.46-.27-.87-.69-1.05l-8.97-3.88c-.63-.27-1.34.2-1.34.89 0 .39.24.74.6.89l1.6.65zm6.82 2.5L14 12.87V9.13L19.02 11z" +}), 'TextRotationDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationDownSharp.js b/packages/material-ui-icons/lib/esm/TextRotationDownSharp.js new file mode 100644 index 00000000000000..439f2e87cf4621 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 20 3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" +}), 'TextRotationDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationDownTwoTone.js b/packages/material-ui-icons/lib/esm/TextRotationDownTwoTone.js new file mode 100644 index 00000000000000..eb5f62a0d59450 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationDownTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6 20 3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" +}), 'TextRotationDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationNone.js b/packages/material-ui-icons/lib/esm/TextRotationNone.js new file mode 100644 index 00000000000000..cb3f7c6e5c5541 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationNone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.75 3h-1.5L6.5 14h2.1l.9-2.2h5l.9 2.2h2.1L12.75 3zm-2.62 7L12 4.98 13.87 10h-3.74zm10.37 8-3-3v2H5v2h12.5v2l3-3z" +}), 'TextRotationNone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationNoneOutlined.js b/packages/material-ui-icons/lib/esm/TextRotationNoneOutlined.js new file mode 100644 index 00000000000000..117de725ceaaa6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationNoneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 18-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98 13.87 10h-3.74L12 4.98z" +}), 'TextRotationNoneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationNoneRounded.js b/packages/material-ui-icons/lib/esm/TextRotationNoneRounded.js new file mode 100644 index 00000000000000..28306c3c888471 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationNoneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.65 17.65-1.79-1.79c-.32-.32-.86-.1-.86.35V17H6c-.55 0-1 .45-1 1s.45 1 1 1h12v.79c0 .45.54.67.85.35l1.79-1.79c.2-.19.2-.51.01-.7zM9.5 11.8h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C12.87 3.27 12.46 3 12 3c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.65-1.6zM12 4.98 13.87 10h-3.74L12 4.98z" +}), 'TextRotationNoneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationNoneSharp.js b/packages/material-ui-icons/lib/esm/TextRotationNoneSharp.js new file mode 100644 index 00000000000000..3f82d34e467d13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationNoneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 18-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98 13.87 10h-3.74L12 4.98z" +}), 'TextRotationNoneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextRotationNoneTwoTone.js b/packages/material-ui-icons/lib/esm/TextRotationNoneTwoTone.js new file mode 100644 index 00000000000000..0f4a5b2f0138e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextRotationNoneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 18-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98 13.87 10h-3.74L12 4.98z" +}), 'TextRotationNoneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextSnippet.js b/packages/material-ui-icons/lib/esm/TextSnippet.js new file mode 100644 index 00000000000000..cbdb1575e05236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextSnippet.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.41 8.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.42zM7 7h7v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2z" +}), 'TextSnippet'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextSnippetOutlined.js b/packages/material-ui-icons/lib/esm/TextSnippetOutlined.js new file mode 100644 index 00000000000000..06008df304265e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextSnippetOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.17 5 19 9.83V19H5V5h9.17m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM7 15h10v2H7v-2zm0-4h10v2H7v-2zm0-4h7v2H7V7z" +}), 'TextSnippetOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextSnippetRounded.js b/packages/material-ui-icons/lib/esm/TextSnippetRounded.js new file mode 100644 index 00000000000000..a57b8e7ad2d341 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextSnippetRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.17 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM8 15h8c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm0-4h8c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1zm0-4h5c.55 0 1 .45 1 1s-.45 1-1 1H8c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'TextSnippetRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextSnippetSharp.js b/packages/material-ui-icons/lib/esm/TextSnippetSharp.js new file mode 100644 index 00000000000000..0dadd727b6581a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextSnippetSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 9-6-6H3v18h18V9zM7 7h7v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2z" +}), 'TextSnippetSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextSnippetTwoTone.js b/packages/material-ui-icons/lib/esm/TextSnippetTwoTone.js new file mode 100644 index 00000000000000..9416ffba12e2af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextSnippetTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.17 5 19 9.83V19H5V5h9.17M7 15h10v2H7v-2zm0-4h10v2H7v-2zm0-4h7v2H7V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.17 5 19 9.83V19H5V5h9.17m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59zM7 15h10v2H7v-2zm0-4h10v2H7v-2zm0-4h7v2H7V7z" +}, "1")], 'TextSnippetTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Textsms.js b/packages/material-ui-icons/lib/esm/Textsms.js new file mode 100644 index 00000000000000..0835d919b91199 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Textsms.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" +}), 'Textsms'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextsmsOutlined.js b/packages/material-ui-icons/lib/esm/TextsmsOutlined.js new file mode 100644 index 00000000000000..a4973184cba5f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextsmsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" +}), 'TextsmsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextsmsRounded.js b/packages/material-ui-icons/lib/esm/TextsmsRounded.js new file mode 100644 index 00000000000000..7e8585061fc8ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextsmsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" +}), 'TextsmsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextsmsSharp.js b/packages/material-ui-icons/lib/esm/TextsmsSharp.js new file mode 100644 index 00000000000000..a8f938dc613163 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextsmsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2.01L2 22l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" +}), 'TextsmsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextsmsTwoTone.js b/packages/material-ui-icons/lib/esm/TextsmsTwoTone.js new file mode 100644 index 00000000000000..8c0af36d931e00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextsmsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m4 18 2-2h14V4H4v14zm11-9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" +}, "1")], 'TextsmsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Texture.js b/packages/material-ui-icons/lib/esm/Texture.js new file mode 100644 index 00000000000000..f0e11e82d32ebd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Texture.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.51 3.08 3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3 3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z" +}), 'Texture'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextureOutlined.js b/packages/material-ui-icons/lib/esm/TextureOutlined.js new file mode 100644 index 00000000000000..a311a2f9d31985 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextureOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.51 3.08 3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3 3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z" +}), 'TextureOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextureRounded.js b/packages/material-ui-icons/lib/esm/TextureRounded.js new file mode 100644 index 00000000000000..a9c5eb2156aa02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextureRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.58 3.08 3.15 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L21 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.95 3l-8.88 8.88v2.83L14.78 3h-2.83zM5.07 3c-1.1 0-2 .9-2 2v2l4-4h-2zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83l8.88-8.88V9.29L9.36 21z" +}), 'TextureRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextureSharp.js b/packages/material-ui-icons/lib/esm/TextureSharp.js new file mode 100644 index 00000000000000..4e181e157742fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextureSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.66 3 3.07 19.59V21h1.41L21.07 4.42V3zm-7.71 0-8.88 8.88v2.83L14.78 3zM3.07 3v4l4-4zm18 18v-4l-4 4zm-8.88 0 8.88-8.88V9.29L9.36 21z" +}), 'TextureSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TextureTwoTone.js b/packages/material-ui-icons/lib/esm/TextureTwoTone.js new file mode 100644 index 00000000000000..a7df957a2e0d75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TextureTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.88 3 3 11.88v2.83L14.71 3zM3 5v2l4-4H5c-1.1 0-2 .9-2 2zm16.51-1.92L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM21 9.29 9.29 21h2.83L21 12.12zm-.59 11.12c.37-.36.59-.86.59-1.41v-2l-4 4h2c.55 0 1.05-.22 1.41-.59z" +}), 'TextureTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheaterComedy.js b/packages/material-ui-icons/lib/esm/TheaterComedy.js new file mode 100644 index 00000000000000..92f54d00eed63f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheaterComedy.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M2 16.5C2 19.54 4.46 22 7.5 22s5.5-2.46 5.5-5.5V10H2v6.5zm5.5 2C6.12 18.5 5 17.83 5 17h5c0 .83-1.12 1.5-2.5 1.5zM10 13c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 3v6h3v2.5c0-.83 1.12-1.5 2.5-1.5s2.5.67 2.5 1.5h-5v2.89c.75.38 1.6.61 2.5.61 3.04 0 5.5-2.46 5.5-5.5V3H11zm3 5.08c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1c0 .56-.45 1-1 1zm5 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1c0 .56-.45 1-1 1z" +}, "1")], 'TheaterComedy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheaterComedyOutlined.js b/packages/material-ui-icons/lib/esm/TheaterComedyOutlined.js new file mode 100644 index 00000000000000..1bc406d202c8cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheaterComedyOutlined.js @@ -0,0 +1,25 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "19", + cy: "6.5", + r: "1" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "6.5", + r: "1" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M16.99 9c-1.38 0-2.5.84-2.5 1.88h5c0-1.04-1.12-1.88-2.5-1.88zM1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm2-5h8v5c0 2.21-1.79 4-4 4s-4-1.79-4-4v-5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M11 2v5.5h2V4h8v5c0 2.21-1.79 4-4 4-.95 0-1.81-.35-2.5-.9v2.35c.76.35 1.61.55 2.5.55 3.31 0 6-2.69 6-6V2H11z" +}, "3"), /*#__PURE__*/_jsx("circle", { + cx: "5", + cy: "13.5", + r: "1" +}, "4"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13.5", + r: "1" +}, "5"), /*#__PURE__*/_jsx("path", { + d: "M7 17.88c1.38 0 2.5-.84 2.5-1.88h-5c0 1.04 1.12 1.88 2.5 1.88z" +}, "6")], 'TheaterComedyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheaterComedyRounded.js b/packages/material-ui-icons/lib/esm/TheaterComedyRounded.js new file mode 100644 index 00000000000000..8a5e366dec80da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheaterComedyRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 2h-8c-1.1 0-2 .9-2 2v3.5h1.5c1.1 0 2 .9 2 2v4.95c1.04.48 2.24.68 3.5.47 2.93-.49 5-3.17 5-6.14V4c0-1.1-.9-2-2-2zm-7 4.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm4.85 4.38h-3.72c-.38 0-.63-.41-.44-.75.39-.66 1.27-1.13 2.3-1.13s1.91.47 2.3 1.14c.19.33-.06.74-.44.74zM19 7.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 9H3c-1.1 0-2 .9-2 2v4.79c0 3.05 2.19 5.77 5.21 6.16C9.87 22.42 13 19.57 13 16v-5c0-1.1-.9-2-2-2zm-7 4.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm5.3 3.25c-.38.67-1.27 1.14-2.3 1.14s-1.91-.47-2.3-1.14c-.19-.34.06-.75.44-.75h3.72c.38 0 .63.41.44.75zM9 14.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'TheaterComedyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheaterComedySharp.js b/packages/material-ui-icons/lib/esm/TheaterComedySharp.js new file mode 100644 index 00000000000000..8a3cbfa2a3eadf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheaterComedySharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 2v5.5h3.5v3.31C14.55 9.8 15.64 9 16.99 9c1.38 0 2.5.84 2.5 1.88H14.5v3.56c.76.36 1.61.56 2.5.56 3.31 0 6-2.69 6-6V2H11zm4 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm6 1.88c-1.38 0-2.5-.84-2.5-1.88h5c0 1.04-1.12 1.88-2.5 1.88zm2-5.38c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}, "1")], 'TheaterComedySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheaterComedyTwoTone.js b/packages/material-ui-icons/lib/esm/TheaterComedyTwoTone.js new file mode 100644 index 00000000000000..3f293e49fcdfcc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheaterComedyTwoTone.js @@ -0,0 +1,31 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.5 10.81C14.55 9.8 15.64 9 16.99 9c1.38 0 2.5.84 2.5 1.88H14.5v1.22c.69.55 1.55.9 2.5.9 2.21 0 4-1.79 4-4V4h-8v3.5h1.5v3.31zM19 5.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-5 1c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 2v5.5h2V4h8v5c0 2.21-1.79 4-4 4-.95 0-1.81-.35-2.5-.9v2.35c.76.35 1.61.55 2.5.55 3.31 0 6-2.69 6-6V2H11z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "19", + cy: "6.5", + r: "1" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "15", + cy: "6.5", + r: "1" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M16.99 9c-1.35 0-2.44.8-2.49 1.81v.07h4.99c0-1.04-1.12-1.88-2.5-1.88zM1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm2-5h8v5c0 2.21-1.79 4-4 4s-4-1.79-4-4v-5z" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M7 20c2.21 0 4-1.79 4-4v-5H3v5c0 2.21 1.79 4 4 4zm0-2.12c-1.38 0-2.5-.84-2.5-1.88h5c0 1.04-1.12 1.88-2.5 1.88zm2-5.38c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + opacity: ".3" +}, "5"), /*#__PURE__*/_jsx("circle", { + cx: "5", + cy: "13.5", + r: "1" +}, "6"), /*#__PURE__*/_jsx("circle", { + cx: "9", + cy: "13.5", + r: "1" +}, "7"), /*#__PURE__*/_jsx("path", { + d: "M7 17.88c1.38 0 2.5-.84 2.5-1.88h-5c0 1.04 1.12 1.88 2.5 1.88z" +}, "8")], 'TheaterComedyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Theaters.js b/packages/material-ui-icons/lib/esm/Theaters.js new file mode 100644 index 00000000000000..76cdce92cdf0d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Theaters.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'Theaters'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheatersOutlined.js b/packages/material-ui-icons/lib/esm/TheatersOutlined.js new file mode 100644 index 00000000000000..5be4051809f1de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheatersOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'TheatersOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheatersRounded.js b/packages/material-ui-icons/lib/esm/TheatersRounded.js new file mode 100644 index 00000000000000..31453a5b4f580f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheatersRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'TheatersRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheatersSharp.js b/packages/material-ui-icons/lib/esm/TheatersSharp.js new file mode 100644 index 00000000000000..59d407b09aa7de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheatersSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}), 'TheatersSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TheatersTwoTone.js b/packages/material-ui-icons/lib/esm/TheatersTwoTone.js new file mode 100644 index 00000000000000..1c440d95eae376 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TheatersTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 5h4v14h-4z", + opacity: ".3" +}, "1")], 'TheatersTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Thermostat.js b/packages/material-ui-icons/lib/esm/Thermostat.js new file mode 100644 index 00000000000000..71135c255c4244 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Thermostat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" +}), 'Thermostat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatAuto.js b/packages/material-ui-icons/lib/esm/ThermostatAuto.js new file mode 100644 index 00000000000000..6a09fab93da1c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatAuto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" +}), 'ThermostatAuto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatAutoOutlined.js b/packages/material-ui-icons/lib/esm/ThermostatAutoOutlined.js new file mode 100644 index 00000000000000..6713c7d9546840 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatAutoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" +}), 'ThermostatAutoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatAutoRounded.js b/packages/material-ui-icons/lib/esm/ThermostatAutoRounded.js new file mode 100644 index 00000000000000..c3671da7f26ba6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatAutoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM17.81 4c-.48 0-.92.3-1.09.75L14 12.02c-.18.47.17.98.67.98.31 0 .58-.19.68-.48L16 10.7h3.63l.64 1.82c.1.29.38.48.68.48.51 0 .86-.51.68-.98L18.9 4.75c-.17-.45-.6-.75-1.09-.75zm-1.34 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" +}), 'ThermostatAutoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatAutoSharp.js b/packages/material-ui-icons/lib/esm/ThermostatAutoSharp.js new file mode 100644 index 00000000000000..e1e019fef727c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatAutoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" +}), 'ThermostatAutoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatAutoTwoTone.js b/packages/material-ui-icons/lib/esm/ThermostatAutoTwoTone.js new file mode 100644 index 00000000000000..679cf0ca354e9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatAutoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.8 13.6 9 13V6c0-.55-.45-1-1-1s-1 .45-1 1v7l-.8.6C5.45 14.16 5 15.06 5 16h6c0-.94-.45-1.83-1.2-2.4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39 1.31-3.72h.08l1.31 3.72h-2.7z" +}, "1")], 'ThermostatAutoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatOutlined.js b/packages/material-ui-icons/lib/esm/ThermostatOutlined.js new file mode 100644 index 00000000000000..38d8d56c2e130a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" +}), 'ThermostatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatRounded.js b/packages/material-ui-icons/lib/esm/ThermostatRounded.js new file mode 100644 index 00000000000000..57e7104e6ada5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-2-2h-2V5c0-.55.45-1 1-1s1 .45 1 1h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v2h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v2z" +}), 'ThermostatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatSharp.js b/packages/material-ui-icons/lib/esm/ThermostatSharp.js new file mode 100644 index 00000000000000..39d66a21c10f11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" +}), 'ThermostatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThermostatTwoTone.js b/packages/material-ui-icons/lib/esm/ThermostatTwoTone.js new file mode 100644 index 00000000000000..b233e841629a84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThermostatTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" +}), 'ThermostatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirteenMp.js b/packages/material-ui-icons/lib/esm/ThirteenMp.js new file mode 100644 index 00000000000000..1a68debfc4aebd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirteenMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H12V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z" +}), 'ThirteenMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirteenMpOutlined.js b/packages/material-ui-icons/lib/esm/ThirteenMpOutlined.js new file mode 100644 index 00000000000000..05e340e7e99f60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirteenMpOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm8-1v-4c0-.55-.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zm-9 3.5h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1")], 'ThirteenMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirteenMpRounded.js b/packages/material-ui-icons/lib/esm/ThirteenMpRounded.js new file mode 100644 index 00000000000000..c9e27e6e4d2a9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirteenMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm-.5-7c0-.41.34-.75.75-.75H15V9h-1.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H15V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'ThirteenMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirteenMpSharp.js b/packages/material-ui-icons/lib/esm/ThirteenMpSharp.js new file mode 100644 index 00000000000000..b6fa3e9254f7d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirteenMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 7h3V9h-2V8h2V7h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'ThirteenMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirteenMpTwoTone.js b/packages/material-ui-icons/lib/esm/ThirteenMpTwoTone.js new file mode 100644 index 00000000000000..82659ea05d5643 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirteenMpTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M16.5 10.5v-4c0-.55-.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M16.5 10.5v-4c0-.55-.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1zM15 14h1.5v1.5H15z", + opacity: ".3" +}, "4"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "5"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "6")], 'ThirteenMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFps.js b/packages/material-ui-icons/lib/esm/ThirtyFps.js new file mode 100644 index 00000000000000..2b33eff8fed8e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFps.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5v3h6v2.5H3v3h5V16H2v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H2zm17 3v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" +}), 'ThirtyFps'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsOutlined.js b/packages/material-ui-icons/lib/esm/ThirtyFpsOutlined.js new file mode 100644 index 00000000000000..8a6d5f6f492f4d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5v3h6v2.5H3v3h5V16H2v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H2zm17 3v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" +}), 'ThirtyFpsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsRounded.js b/packages/material-ui-icons/lib/esm/ThirtyFpsRounded.js new file mode 100644 index 00000000000000..c9ab2cde1777f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 6.5C2 7.33 2.67 8 3.5 8H8v2.5H4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5H8V16H3.5c-.83 0-1.5.67-1.5 1.5S2.67 19 3.5 19H8c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H3.5C2.67 5 2 5.67 2 6.5zM19 8v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" +}), 'ThirtyFpsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsSelect.js b/packages/material-ui-icons/lib/esm/ThirtyFpsSelect.js new file mode 100644 index 00000000000000..19c68f14776127 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsSelect.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4v2h5v2H5v2h4v2H4v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H4zm14 0c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'ThirtyFpsSelect'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsSelectOutlined.js b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectOutlined.js new file mode 100644 index 00000000000000..1b63fddda2fb96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4v2h5v2H5v2h4v2H4v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H4zm14 0c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'ThirtyFpsSelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsSelectRounded.js b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectRounded.js new file mode 100644 index 00000000000000..228a7cc95a2ead --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 5c0 .55.45 1 1 1h4v2H6c-.55 0-1 .45-1 1s.45 1 1 1h3v2H5c-.55 0-1 .45-1 1s.45 1 1 1h4c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H5c-.55 0-1 .45-1 1zm14-1c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM4 22c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1zm8 0h-4c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1z" +}), 'ThirtyFpsSelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsSelectSharp.js b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectSharp.js new file mode 100644 index 00000000000000..e5eb454ffe4a77 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4v2h5v2H5v2h4v2H4v2h7V4H4zm9 0h7v10h-7V4zm5 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'ThirtyFpsSelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsSelectTwoTone.js b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectTwoTone.js new file mode 100644 index 00000000000000..62858cfd77f5df --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsSelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4v2h5v2H5v2h4v2H4v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.17-1.5-1-1.5.83 0 1-.67 1-1.5V6c0-1.1-.9-2-2-2H4zm14 0c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-3c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3zm0 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" +}), 'ThirtyFpsSelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsSharp.js b/packages/material-ui-icons/lib/esm/ThirtyFpsSharp.js new file mode 100644 index 00000000000000..ce9b94ec330196 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5v3h6v2.5H3v3h5V16H2v3h9V5H2zm17 3v8h-4V8h4m3-3H12v14h10V5z" +}), 'ThirtyFpsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThirtyFpsTwoTone.js b/packages/material-ui-icons/lib/esm/ThirtyFpsTwoTone.js new file mode 100644 index 00000000000000..e1691dd3726a4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThirtyFpsTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 5v3h6v2.5H3v3h5V16H2v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H2zm17 3v8h-4V8h4m0-3h-4c-1.66 0-3 1.34-3 3v8c0 1.66 1.34 3 3 3h4c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3z" +}), 'ThirtyFpsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeDRotation.js b/packages/material-ui-icons/lib/esm/ThreeDRotation.js new file mode 100644 index 00000000000000..f4cc75bafbd97c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeDRotation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96-.12-.28-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49-.05.15-.14.27-.25.37-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z" +}), 'ThreeDRotation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeDRotationOutlined.js b/packages/material-ui-icons/lib/esm/ThreeDRotationOutlined.js new file mode 100644 index 00000000000000..b299e1386294a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeDRotationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" +}), 'ThreeDRotationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeDRotationRounded.js b/packages/material-ui-icons/lib/esm/ThreeDRotationRounded.js new file mode 100644 index 00000000000000..1fce6d03ca586b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeDRotationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.41 14.96c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm9.3-4.72c-.18-.47-.43-.87-.75-1.2-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57zm-1.13 1.96c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85s-.43.41-.71.53c-.29.12-.62.18-.99.18h-.91V9.11h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.41zm-1.43-8.36 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.81-2.96-7.01-6.24-8.75C15.94.49 13.78-.13 11.34.02l3.81 3.82zm-6.3 16.31-1.33 1.33c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.67.89 3.83 1.51 6.27 1.36l-3.81-3.82z" +}), 'ThreeDRotationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeDRotationSharp.js b/packages/material-ui-icons/lib/esm/ThreeDRotationSharp.js new file mode 100644 index 00000000000000..28be978aafe410 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeDRotationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" +}), 'ThreeDRotationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeDRotationTwoTone.js b/packages/material-ui-icons/lib/esm/ThreeDRotationTwoTone.js new file mode 100644 index 00000000000000..46f0ad8d7e0886 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeDRotationTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" +}), 'ThreeDRotationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeGMobiledata.js b/packages/material-ui-icons/lib/esm/ThreeGMobiledata.js new file mode 100644 index 00000000000000..6cec9e734be7c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeGMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7v2h5v2H4v2h4v2H3v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H3zm18 4v4c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2h-7v6h5v-2h-2.5v-2H21z" +}), 'ThreeGMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeGMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/ThreeGMobiledataOutlined.js new file mode 100644 index 00000000000000..0795b95ced080f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeGMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7v2h5v2H4v2h4v2H3v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H3zm18 4v4c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2h-7v6h5v-2h-2.5v-2H21z" +}), 'ThreeGMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeGMobiledataRounded.js b/packages/material-ui-icons/lib/esm/ThreeGMobiledataRounded.js new file mode 100644 index 00000000000000..73900d19f8c53a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeGMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 8c0 .55.45 1 1 1h4v2H5c-.55 0-1 .45-1 1s.45 1 1 1h3v2H4c-.55 0-1 .45-1 1s.45 1 1 1h4c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1zm18 4v3c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c.55 0 1 .45 1 1s-.45 1-1 1h-6v6h5v-2h-1.5c-.55 0-1-.45-1-1s.45-1 1-1H20c.55 0 1 .45 1 1z" +}), 'ThreeGMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeGMobiledataSharp.js b/packages/material-ui-icons/lib/esm/ThreeGMobiledataSharp.js new file mode 100644 index 00000000000000..61c9fa8f3326fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeGMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7v2h5v2H4v2h4v2H3v2h7V7H3zm18 4v6h-9V7h9v2h-7v6h5v-2h-2.5v-2H21z" +}), 'ThreeGMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeGMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/ThreeGMobiledataTwoTone.js new file mode 100644 index 00000000000000..66958acf0fc8f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeGMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7v2h5v2H4v2h4v2H3v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H3zm18 4v4c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2h-7v6h5v-2h-2.5v-2H21z" +}), 'ThreeGMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeK.js b/packages/material-ui-icons/lib/esm/ThreeK.js new file mode 100644 index 00000000000000..a62ebcf1da1e05 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'ThreeK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKOutlined.js b/packages/material-ui-icons/lib/esm/ThreeKOutlined.js new file mode 100644 index 00000000000000..54bc0d3042653e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 14v-4c0-.55-.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "1")], 'ThreeKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKPlus.js b/packages/material-ui-icons/lib/esm/ThreeKPlus.js new file mode 100644 index 00000000000000..0863ef45de6db7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6v-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'ThreeKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKPlusOutlined.js b/packages/material-ui-icons/lib/esm/ThreeKPlusOutlined.js new file mode 100644 index 00000000000000..4b30bda3a6e62f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKPlusOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 14v-4c0-.55-.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "1")], 'ThreeKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKPlusRounded.js b/packages/material-ui-icons/lib/esm/ThreeKPlusRounded.js new file mode 100644 index 00000000000000..06e9477c9aaa11 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 11c0 .55-.45 1-1 1H6.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H8.5v-1H7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1.5v-1H6.25c-.41 0-.75-.34-.75-.75S5.84 9 6.25 9H9c.55 0 1 .45 1 1v4zm4.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75l-.03-4.49c-.01-.42.33-.76.75-.76.41 0 .75.33.75.74l.03 1.51 1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12zm3.91-2.5h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'ThreeKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKPlusSharp.js b/packages/material-ui-icons/lib/esm/ThreeKPlusSharp.js new file mode 100644 index 00000000000000..2ec74e118bdc93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM10 9v6H5.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'ThreeKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/ThreeKPlusTwoTone.js new file mode 100644 index 00000000000000..259d4106b04cee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKPlusTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5.5 4.5h3v-1h-2v-1h2v-1h-3V9H9c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H5.5v-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 14v-4c0-.55-.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9c.55 0 1-.45 1-1zm2.5-1.25L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "2")], 'ThreeKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKRounded.js b/packages/material-ui-icons/lib/esm/ThreeKRounded.js new file mode 100644 index 00000000000000..d43e54bee2ad68 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H9.5v-1H8c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1.5v-1H7.25c-.41 0-.75-.34-.75-.75S6.84 9 7.25 9H10c.55 0 1 .45 1 1v4zm5.59 1c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'ThreeKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKSharp.js b/packages/material-ui-icons/lib/esm/ThreeKSharp.js new file mode 100644 index 00000000000000..4c289d158e6120 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'ThreeKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeKTwoTone.js b/packages/material-ui-icons/lib/esm/ThreeKTwoTone.js new file mode 100644 index 00000000000000..3d730e54516870 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeKTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 4.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H6.5v-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 14v-4c0-.55-.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10c.55 0 1-.45 1-1zm3.5-1.25L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "2")], 'ThreeKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeMp.js b/packages/material-ui-icons/lib/esm/ThreeMp.js new file mode 100644 index 00000000000000..d4133b5c720295 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z" +}), 'ThreeMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeMpOutlined.js b/packages/material-ui-icons/lib/esm/ThreeMpOutlined.js new file mode 100644 index 00000000000000..d2a0ab9399f3ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10.5v-4c0-.55-.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "2")], 'ThreeMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeMpRounded.js b/packages/material-ui-icons/lib/esm/ThreeMpRounded.js new file mode 100644 index 00000000000000..0d6921c275075b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.5 14.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM10.75 10H13V9h-1.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H13V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'ThreeMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeMpSharp.js b/packages/material-ui-icons/lib/esm/ThreeMpSharp.js new file mode 100644 index 00000000000000..9667e9be5fbfd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM10 10h3V9h-2V8h2V7h-3V5.5h4.5v6H10V10zm8 7h-3v1.5h-1.5v-6H18V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'ThreeMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeMpTwoTone.js b/packages/material-ui-icons/lib/esm/ThreeMpTwoTone.js new file mode 100644 index 00000000000000..b1839588d82027 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H10V10zm-4 3.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10.5v-4c0-.55-.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "4")], 'ThreeMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeP.js b/packages/material-ui-icons/lib/esm/ThreeP.js new file mode 100644 index 00000000000000..9e08527e60fd55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeP.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z" +}), 'ThreeP'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreePOutlined.js b/packages/material-ui-icons/lib/esm/ThreePOutlined.js new file mode 100644 index 00000000000000..9b5e2af41dce92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreePOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-8-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 11.9 8 12.62 8 13.43V14h8v-.57z" +}), 'ThreePOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreePRounded.js b/packages/material-ui-icons/lib/esm/ThreePRounded.js new file mode 100644 index 00000000000000..e817e8d7fd045a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreePRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 19.58c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z" +}), 'ThreePRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreePSharp.js b/packages/material-ui-icons/lib/esm/ThreePSharp.js new file mode 100644 index 00000000000000..e712a3e94c1332 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreePSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 2v20l4-4h16V2H2zm10 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z" +}), 'ThreePSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreePTwoTone.js b/packages/material-ui-icons/lib/esm/ThreePTwoTone.js new file mode 100644 index 00000000000000..746936d1a3cbad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreePTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 4v13.17L5.17 16H20V4H4zm8 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4.01c-1.1 0-2 .9-2 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-8-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C8.48 11.9 8 12.62 8 13.43V14h8v-.57z" +}, "1")], 'ThreePTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeSixty.js b/packages/material-ui-icons/lib/esm/ThreeSixty.js new file mode 100644 index 00000000000000..5db96842baeec6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeSixty.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" +}), 'ThreeSixty'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeSixtyOutlined.js b/packages/material-ui-icons/lib/esm/ThreeSixtyOutlined.js new file mode 100644 index 00000000000000..69f9a526f4b7d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeSixtyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" +}), 'ThreeSixtyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeSixtyRounded.js b/packages/material-ui-icons/lib/esm/ThreeSixtyRounded.js new file mode 100644 index 00000000000000..c000ebb7620792 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeSixtyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77v2.02c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36v1.52c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .66-1.2 1.68-3.32 2.34-.41.13-.68.51-.68.94 0 .67.65 1.16 1.28.96C20.11 15.36 22 13.79 22 12c0-2.76-4.48-5-10-5z" +}), 'ThreeSixtyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeSixtySharp.js b/packages/material-ui-icons/lib/esm/ThreeSixtySharp.js new file mode 100644 index 00000000000000..64672561131ec0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeSixtySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" +}), 'ThreeSixtySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThreeSixtyTwoTone.js b/packages/material-ui-icons/lib/esm/ThreeSixtyTwoTone.js new file mode 100644 index 00000000000000..ba825eeecb8f2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThreeSixtyTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5S2 9.24 2 12c0 2.24 2.94 4.13 7 4.77z" +}), 'ThreeSixtyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDown.js b/packages/material-ui-icons/lib/esm/ThumbDown.js new file mode 100644 index 00000000000000..4a5ad0fb8b3fbf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z" +}), 'ThumbDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownAlt.js b/packages/material-ui-icons/lib/esm/ThumbDownAlt.js new file mode 100644 index 00000000000000..f7f3da7f5fae5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2V4zM2.17 11.12c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15z" +}), 'ThumbDownAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownAltOutlined.js b/packages/material-ui-icons/lib/esm/ThumbDownAltOutlined.js new file mode 100644 index 00000000000000..8cd1cb9a59d086 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z" +}), 'ThumbDownAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownAltRounded.js b/packages/material-ui-icons/lib/esm/ThumbDownAltRounded.js new file mode 100644 index 00000000000000..b73db2265e75e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.88 21.94 5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.59.58 1.53.58 2.11-.01zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'ThumbDownAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownAltSharp.js b/packages/material-ui-icons/lib/esm/ThumbDownAltSharp.js new file mode 100644 index 00000000000000..a388426117af93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69zM19 3h4v12h-4z" +}), 'ThumbDownAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownAltTwoTone.js b/packages/material-ui-icons/lib/esm/ThumbDownAltTwoTone.js new file mode 100644 index 00000000000000..7e0f42487d5731 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 12v2h8.77l-1.11 5.34L15 15V5H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z" +}, "1")], 'ThumbDownAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownOffAlt.js b/packages/material-ui-icons/lib/esm/ThumbDownOffAlt.js new file mode 100644 index 00000000000000..98bf2dd4452f80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownOffAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.89 18.28.57-2.89c.12-.59-.04-1.2-.42-1.66-.38-.46-.94-.73-1.54-.73H4v-1.08L6.57 6h8.09c.18 0 .34.16.34.34v7.84l-4.11 4.1M10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22zm10-7h2V4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z" +}), 'ThumbDownOffAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownOffAltOutlined.js b/packages/material-ui-icons/lib/esm/ThumbDownOffAltOutlined.js new file mode 100644 index 00000000000000..2a0814ac259ac8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownOffAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4V3z" +}), 'ThumbDownOffAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownOffAltRounded.js b/packages/material-ui-icons/lib/esm/ThumbDownOffAltRounded.js new file mode 100644 index 00000000000000..d6d6b8e36e0926 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownOffAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.99 3H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.29.29.67.43 1.05.43s.77-.15 1.06-.44l5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2zm-4.33 16.33.61-2.92.5-2.41H3.66c-.47 0-.72-.28-.83-.45-.11-.17-.27-.51-.08-.95L6 5h8.99v9.99l-4.33 4.34zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'ThumbDownOffAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownOffAltSharp.js b/packages/material-ui-icons/lib/esm/ThumbDownOffAltSharp.js new file mode 100644 index 00000000000000..7ff11642b6fdc6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownOffAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h4v12h-4zM1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69L1 11.6zM15 5v9.99l-4.34 4.35.61-2.93.5-2.41H3v-1.99L6.01 5H15z" +}), 'ThumbDownOffAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownOffAltTwoTone.js b/packages/material-ui-icons/lib/esm/ThumbDownOffAltTwoTone.js new file mode 100644 index 00000000000000..0553a446b82a5d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownOffAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 12v2h9l-1.34 5.34L15 15V5H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3h4v12h-4zm-4 0H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10z" +}, "1")], 'ThumbDownOffAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownOutlined.js b/packages/material-ui-icons/lib/esm/ThumbDownOutlined.js new file mode 100644 index 00000000000000..7aef9bfde9917d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z" +}), 'ThumbDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownRounded.js b/packages/material-ui-icons/lib/esm/ThumbDownRounded.js new file mode 100644 index 00000000000000..f1bd908d9793a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m10.88 21.94 5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.59.58 1.53.58 2.11-.01zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z" +}), 'ThumbDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownSharp.js b/packages/material-ui-icons/lib/esm/ThumbDownSharp.js new file mode 100644 index 00000000000000..af0069842b8da3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.83 23 17 15.82V3H4.69L1 11.6V16h8.31l-1.12 5.38zM19 3h4v12h-4z" +}), 'ThumbDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbDownTwoTone.js b/packages/material-ui-icons/lib/esm/ThumbDownTwoTone.js new file mode 100644 index 00000000000000..6648659b05181a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbDownTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 12v2h9l-1.34 5.34L15 15V5H6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z" +}, "1")], 'ThumbDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUp.js b/packages/material-ui-icons/lib/esm/ThumbUp.js new file mode 100644 index 00000000000000..5449135c71f56b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z" +}), 'ThumbUp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpAlt.js b/packages/material-ui-icons/lib/esm/ThumbUpAlt.js new file mode 100644 index 00000000000000..cb53c3bd6a60ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 20h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1H2v11zm19.83-7.12c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.84C7 18.95 8.05 20 9.34 20h8.11c.7 0 1.36-.37 1.72-.97l2.66-6.15z" +}), 'ThumbUpAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpAltOutlined.js b/packages/material-ui-icons/lib/esm/ThumbUpAltOutlined.js new file mode 100644 index 00000000000000..ea9ba7ba0c7008 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" +}), 'ThumbUpAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpAltRounded.js b/packages/material-ui-icons/lib/esm/ThumbUpAltRounded.js new file mode 100644 index 00000000000000..1e49b7e6c4202b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.12 2.06 7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z" +}), 'ThumbUpAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpAltSharp.js b/packages/material-ui-icons/lib/esm/ThumbUpAltSharp.js new file mode 100644 index 00000000000000..d6315d75f4cd93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.17 1 7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z" +}), 'ThumbUpAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpAltTwoTone.js b/packages/material-ui-icons/lib/esm/ThumbUpAltTwoTone.js new file mode 100644 index 00000000000000..11cfa9212fb839 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.34 4.66 9 9v10h9l3-7v-2h-8.77z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" +}, "1")], 'ThumbUpAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpOffAlt.js b/packages/material-ui-icons/lib/esm/ThumbUpOffAlt.js new file mode 100644 index 00000000000000..2cc037fb578941 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpOffAlt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13.11 5.72-.57 2.89c-.12.59.04 1.2.42 1.66.38.46.94.73 1.54.73H20v1.08L17.43 18H9.34c-.18 0-.34-.16-.34-.34V9.82l4.11-4.1M14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.83C7 18.95 8.05 20 9.34 20h8.1c.71 0 1.36-.37 1.72-.97l2.67-6.15c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2zM4 9H2v11h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z" +}), 'ThumbUpOffAlt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpOffAltOutlined.js b/packages/material-ui-icons/lib/esm/ThumbUpOffAltOutlined.js new file mode 100644 index 00000000000000..a7d18d8c6aa46a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpOffAltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1V9z" +}), 'ThumbUpOffAltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpOffAltRounded.js b/packages/material-ui-icons/lib/esm/ThumbUpOffAltRounded.js new file mode 100644 index 00000000000000..c508790abcb992 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpOffAltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.12 2.06 7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z" +}), 'ThumbUpOffAltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpOffAltSharp.js b/packages/material-ui-icons/lib/esm/ThumbUpOffAltSharp.js new file mode 100644 index 00000000000000..ee58d2d38c92b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpOffAltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.17 1 7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38L14.17 1zM1 9h4v12H1V9z" +}), 'ThumbUpOffAltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpOffAltTwoTone.js b/packages/material-ui-icons/lib/esm/ThumbUpOffAltTwoTone.js new file mode 100644 index 00000000000000..10eb5590078712 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpOffAltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.34 4.66 9 9v10h9l3-7v-2h-8.77z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z" +}, "1")], 'ThumbUpOffAltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpOutlined.js b/packages/material-ui-icons/lib/esm/ThumbUpOutlined.js new file mode 100644 index 00000000000000..ddd0261916d948 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z" +}), 'ThumbUpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpRounded.js b/packages/material-ui-icons/lib/esm/ThumbUpRounded.js new file mode 100644 index 00000000000000..09eb3e8066db40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.12 2.06 7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z" +}), 'ThumbUpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpSharp.js b/packages/material-ui-icons/lib/esm/ThumbUpSharp.js new file mode 100644 index 00000000000000..a5ab8f182cf70e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.17 1 7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z" +}), 'ThumbUpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbUpTwoTone.js b/packages/material-ui-icons/lib/esm/ThumbUpTwoTone.js new file mode 100644 index 00000000000000..cb13a5f620b5fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbUpTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 12v-2h-9l1.34-5.34L9 9v10h9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z" +}, "1")], 'ThumbUpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbsUpDown.js b/packages/material-ui-icons/lib/esm/ThumbsUpDown.js new file mode 100644 index 00000000000000..f56c28b1f9ce1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbsUpDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z" +}), 'ThumbsUpDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbsUpDownOutlined.js b/packages/material-ui-icons/lib/esm/ThumbsUpDownOutlined.js new file mode 100644 index 00000000000000..b636a8cb3e653e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbsUpDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z" +}), 'ThumbsUpDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbsUpDownRounded.js b/packages/material-ui-icons/lib/esm/ThumbsUpDownRounded.js new file mode 100644 index 00000000000000..46e500a39a0949 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbsUpDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.06 5H5.82l.66-3.18c.08-.37-.04-.75-.3-1.02C5.74.36 5.03.36 4.6.8l-4 4c-.39.37-.6.88-.6 1.41V12c0 1.1.9 2 2 2h5.92c.8 0 1.52-.48 1.84-1.21l2.14-5C12.46 6.47 11.49 5 10.06 5zM22 10h-5.92c-.8 0-1.52.48-1.84 1.21l-2.14 5c-.56 1.32.4 2.79 1.84 2.79h4.24l-.66 3.18c-.08.37.04.75.3 1.02.44.44 1.15.44 1.58 0l4-4c.38-.38.59-.88.59-1.41V12c.01-1.1-.89-2-1.99-2z" +}), 'ThumbsUpDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbsUpDownSharp.js b/packages/material-ui-icons/lib/esm/ThumbsUpDownSharp.js new file mode 100644 index 00000000000000..098e893dbeeac7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbsUpDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5H5.82l.78-3.78L5.38 0 0 5.38V14h9.24L12 7.54zm2.76 5L12 16.46V19h6.18l-.78 3.78L18.62 24 24 18.62V10z" +}), 'ThumbsUpDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ThumbsUpDownTwoTone.js b/packages/material-ui-icons/lib/esm/ThumbsUpDownTwoTone.js new file mode 100644 index 00000000000000..6e14b2f41e5df7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ThumbsUpDownTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3.93 4.28 2 6.21V12h5.92L10 7.13V7H3.36zM14 16.87V17h6.64l-.57 2.72L22 17.79V12h-5.92z", + opacity: ".3" +}, "1")], 'ThumbsUpDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimeToLeave.js b/packages/material-ui-icons/lib/esm/TimeToLeave.js new file mode 100644 index 00000000000000..ac9bf5e844d688 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimeToLeave.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" +}), 'TimeToLeave'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimeToLeaveOutlined.js b/packages/material-ui-icons/lib/esm/TimeToLeaveOutlined.js new file mode 100644 index 00000000000000..bf09a2aee73e93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimeToLeaveOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "13.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "13.5", + r: "1.5" +}, "2")], 'TimeToLeaveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimeToLeaveRounded.js b/packages/material-ui-icons/lib/esm/TimeToLeaveRounded.js new file mode 100644 index 00000000000000..e549636faf126c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimeToLeaveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 19.33 6 18.5V18h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 10H5z" +}), 'TimeToLeaveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimeToLeaveSharp.js b/packages/material-ui-icons/lib/esm/TimeToLeaveSharp.js new file mode 100644 index 00000000000000..51065a25c88d38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimeToLeaveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.43-7zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" +}), 'TimeToLeaveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimeToLeaveTwoTone.js b/packages/material-ui-icons/lib/esm/TimeToLeaveTwoTone.js new file mode 100644 index 00000000000000..3cd09bbc0a64f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimeToLeaveTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5.12 11-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "7.5", + cy: "13.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "16.5", + cy: "13.5", + r: "1.5" +}, "3")], 'TimeToLeaveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timelapse.js b/packages/material-ui-icons/lib/esm/Timelapse.js new file mode 100644 index 00000000000000..994699a70a7ffc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timelapse.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'Timelapse'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelapseOutlined.js b/packages/material-ui-icons/lib/esm/TimelapseOutlined.js new file mode 100644 index 00000000000000..b1047bac0f3030 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelapseOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'TimelapseOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelapseRounded.js b/packages/material-ui-icons/lib/esm/TimelapseRounded.js new file mode 100644 index 00000000000000..18bb3c08270b52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelapseRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'TimelapseRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelapseSharp.js b/packages/material-ui-icons/lib/esm/TimelapseSharp.js new file mode 100644 index 00000000000000..f044b05dfbce84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelapseSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}), 'TimelapseSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelapseTwoTone.js b/packages/material-ui-icons/lib/esm/TimelapseTwoTone.js new file mode 100644 index 00000000000000..d06760c59686fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelapseTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3.99c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.24c-2.35 2.34-6.15 2.34-8.49 0L12 11.99v-6c1.54 0 3.07.59 4.24 1.76 2.35 2.34 2.35 6.14.01 8.48z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" +}, "1")], 'TimelapseTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timeline.js b/packages/material-ui-icons/lib/esm/Timeline.js new file mode 100644 index 00000000000000..2e615012fdbffb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timeline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" +}), 'Timeline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelineOutlined.js b/packages/material-ui-icons/lib/esm/TimelineOutlined.js new file mode 100644 index 00000000000000..165aa9fe5b1cf0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" +}), 'TimelineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelineRounded.js b/packages/material-ui-icons/lib/esm/TimelineRounded.js new file mode 100644 index 00000000000000..ec2e022906108b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2zm0 0c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" +}), 'TimelineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelineSharp.js b/packages/material-ui-icons/lib/esm/TimelineSharp.js new file mode 100644 index 00000000000000..911c0b57ae60ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2zm0 0c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" +}), 'TimelineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimelineTwoTone.js b/packages/material-ui-icons/lib/esm/TimelineTwoTone.js new file mode 100644 index 00000000000000..f8f48d4fa2358a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimelineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z" +}), 'TimelineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer.js b/packages/material-ui-icons/lib/esm/Timer.js new file mode 100644 index 00000000000000..a4c4fd6667dd87 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'Timer'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10.js b/packages/material-ui-icons/lib/esm/Timer10.js new file mode 100644 index 00000000000000..0bfcf90cb0614c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M0 7.72V9.4l3-1V18h2V6h-.25L0 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59C21.49 9.07 21 9 20.46 9c-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27-.58 0-1.11.09-1.59.27-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51z" +}), 'Timer10'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10Outlined.js b/packages/material-ui-icons/lib/esm/Timer10Outlined.js new file mode 100644 index 00000000000000..97115762414d63 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" +}), 'Timer10Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10Rounded.js b/packages/material-ui-icons/lib/esm/Timer10Rounded.js new file mode 100644 index 00000000000000..e79a4a7f48282d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" +}), 'Timer10Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10Select.js b/packages/material-ui-icons/lib/esm/Timer10Select.js new file mode 100644 index 00000000000000..0c2280a6f1bffa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10Select.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM1 8h2v11h3V5H1v3zm17.5 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-4v2h4.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h4v-2h-4.5z" +}), 'Timer10Select'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10SelectOutlined.js b/packages/material-ui-icons/lib/esm/Timer10SelectOutlined.js new file mode 100644 index 00000000000000..a03ca120061862 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10SelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM1 8h2v11h3V5H1v3zm17.5 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-4v2h4.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h4v-2h-4.5z" +}), 'Timer10SelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10SelectRounded.js b/packages/material-ui-icons/lib/esm/Timer10SelectRounded.js new file mode 100644 index 00000000000000..639ed13d587aee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10SelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM2.5 8H3v9.5c0 .83.67 1.5 1.5 1.5S6 18.33 6 17.5V7c0-1.1-.9-2-2-2H2.5C1.67 5 1 5.67 1 6.5S1.67 8 2.5 8zm16 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-3c-.55 0-1 .45-1 1s.45 1 1 1h3.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h3c.55 0 1-.45 1-1s-.45-1-1-1h-3.5z" +}), 'Timer10SelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10SelectSharp.js b/packages/material-ui-icons/lib/esm/Timer10SelectSharp.js new file mode 100644 index 00000000000000..679bcc80b541e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10SelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8v8h-3V8h3m3-3H7v14h9V5zM1 8h2v11h3V5H1v3zm22 3h-6v5h4v1h-4v2h6v-5h-4v-1h4v-2z" +}), 'Timer10SelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10SelectTwoTone.js b/packages/material-ui-icons/lib/esm/Timer10SelectTwoTone.js new file mode 100644 index 00000000000000..af287be1096c92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10SelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 8v8h-3V8h3m0-3h-3C8.34 5 7 6.34 7 8v8c0 1.66 1.34 3 3 3h3c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3zM1 8h2v11h3V5H1v3zm17.5 3c-.83 0-1.5.68-1.5 1.5v2c0 .82.67 1.5 1.5 1.5H21v1h-4v2h4.5c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H19v-1h4v-2h-4.5z" +}), 'Timer10SelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10Sharp.js b/packages/material-ui-icons/lib/esm/Timer10Sharp.js new file mode 100644 index 00000000000000..64ff2a1199ae04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" +}), 'Timer10Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer10TwoTone.js b/packages/material-ui-icons/lib/esm/Timer10TwoTone.js new file mode 100644 index 00000000000000..fb63805ae94dfa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer10TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.99 18h2V6h-.25L-.01 7.72V9.4l3-1zm9.59-11.83c-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59s-.75-.7-1.23-.88zm.32 7.05h-.01c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57s-.51.18-.82.18c-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51zm10.24.41c-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88s-.66-.44-1.09-.59c-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57s-.51.52-.67.84c-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19s.8-.31 1.11-.54c.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74z" +}), 'Timer10TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3.js b/packages/material-ui-icons/lib/esm/Timer3.js new file mode 100644 index 00000000000000..aca4c31343a2c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" +}), 'Timer3'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3Outlined.js b/packages/material-ui-icons/lib/esm/Timer3Outlined.js new file mode 100644 index 00000000000000..3d4f2a57db1589 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3Outlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" +}), 'Timer3Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3Rounded.js b/packages/material-ui-icons/lib/esm/Timer3Rounded.js new file mode 100644 index 00000000000000..2d9f50be642b35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3Rounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" +}), 'Timer3Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3Select.js b/packages/material-ui-icons/lib/esm/Timer3Select.js new file mode 100644 index 00000000000000..31800548f0e127 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3Select.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11v2h-4v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H15v-2h4v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H21zM4 5v3h6v2.5H4v3h6V16H4v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H4z" +}), 'Timer3Select'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3SelectOutlined.js b/packages/material-ui-icons/lib/esm/Timer3SelectOutlined.js new file mode 100644 index 00000000000000..4012dc65b40230 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3SelectOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11v2h-4v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H15v-2h4v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H21zM4 5v3h6v2.5H4v3h6V16H4v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H4z" +}), 'Timer3SelectOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3SelectRounded.js b/packages/material-ui-icons/lib/esm/Timer3SelectRounded.js new file mode 100644 index 00000000000000..bf09dc89ed8378 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3SelectRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 12c0 .55-.45 1-1 1h-3v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H16c-.55 0-1-.45-1-1s.45-1 1-1h3v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H20c.55 0 1 .45 1 1zM4 6.5C4 7.33 4.67 8 5.5 8H10v2.5H5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5H10V16H5.5c-.83 0-1.5.67-1.5 1.5S4.67 19 5.5 19H10c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H5.5C4.67 5 4 5.67 4 6.5z" +}), 'Timer3SelectRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3SelectSharp.js b/packages/material-ui-icons/lib/esm/Timer3SelectSharp.js new file mode 100644 index 00000000000000..62159f455b198b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3SelectSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11v2h-4v1h4v5h-6v-2h4v-1h-4v-5h6zM4 5v3h6v2.5H4v3h6V16H4v3h9V5H4z" +}), 'Timer3SelectSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3SelectTwoTone.js b/packages/material-ui-icons/lib/esm/Timer3SelectTwoTone.js new file mode 100644 index 00000000000000..028c67816b1019 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3SelectTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 11v2h-4v1h2.5c.83 0 1.5.68 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H15v-2h4v-1h-2.5c-.82 0-1.5-.68-1.5-1.5v-2c0-.82.68-1.5 1.5-1.5H21zM4 5v3h6v2.5H4v3h6V16H4v3h6c1.66 0 3-1.34 3-3v-1.9c0-1.16-.94-2.1-2.1-2.1 1.16 0 2.1-.94 2.1-2.1V8c0-1.66-1.34-3-3-3H4z" +}), 'Timer3SelectTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3Sharp.js b/packages/material-ui-icons/lib/esm/Timer3Sharp.js new file mode 100644 index 00000000000000..60baf9214e1bf7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3Sharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" +}), 'Timer3Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Timer3TwoTone.js b/packages/material-ui-icons/lib/esm/Timer3TwoTone.js new file mode 100644 index 00000000000000..aa841baf2cd6cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Timer3TwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.46 10.8c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29s.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44s-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23s-.41-.16-.55-.25c-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34zm-8.34 5.71c-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49z" +}), 'Timer3TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerOff.js b/packages/material-ui-icons/lib/esm/TimerOff.js new file mode 100644 index 00000000000000..f5870c4bd28f23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.04 4.55-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.83 0-3.53.55-4.95 1.48l1.46 1.46C9.53 6.35 10.73 6 12 6c3.87 0 7 3.13 7 7 0 1.27-.35 2.47-.94 3.49l1.45 1.45C20.45 16.53 21 14.83 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42-1.41-1.42zM15 1H9v2h6V1zm-4 8.44 2 2V8h-2v1.44zM3.02 4 1.75 5.27 4.5 8.03C3.55 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.27-1.27-7.71-7.71L3.02 4zM12 20c-3.87 0-7-3.13-7-7 0-1.28.35-2.48.95-3.52l9.56 9.56c-1.03.61-2.23.96-3.51.96z" +}), 'TimerOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerOffOutlined.js b/packages/material-ui-icons/lib/esm/TimerOffOutlined.js new file mode 100644 index 00000000000000..6af6be3e49559d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v.86l2 2V8zM9 1h6v2H9zm3 5c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zM3.16 3.86 1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" +}), 'TimerOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerOffRounded.js b/packages/material-ui-icons/lib/esm/TimerOffRounded.js new file mode 100644 index 00000000000000..8d19cc83271e3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 3h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm2 5c-.51 0-.92.39-.98.89L13 10.86V9c0-.55-.45-1-1-1zm0-2c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l.75-.75c.38-.38.39-1.01 0-1.4l-.01-.01c-.39-.39-1.01-.38-1.4 0l-.75.75C16.07 4.74 14.12 4 12 4c-1.66 0-3.22.48-4.57 1.29l1.45 1.45c.94-.47 2-.74 3.12-.74zm8.19 14.88L3.87 4.56a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.07 2.07C3.61 9.42 3.05 11.03 3 12.76 2.87 17.84 6.94 22 12 22c1.84 0 3.55-.55 4.98-1.5l1.79 1.79c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" +}), 'TimerOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerOffSharp.js b/packages/material-ui-icons/lib/esm/TimerOffSharp.js new file mode 100644 index 00000000000000..0d5bb7765fd62d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zm-1 2v.86l2 2V8zM9 1h6v2H9zM3.16 3.86 1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" +}), 'TimerOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerOffTwoTone.js b/packages/material-ui-icons/lib/esm/TimerOffTwoTone.js new file mode 100644 index 00000000000000..c22d7952306420 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-1.12 0-2.18.27-3.12.74L11 8.86V8h2v2.86l5.26 5.26c.47-.94.74-2 .74-3.12 0-3.87-3.13-7-7-7zm0 14c1.29 0 2.49-.35 3.52-.96L5.96 9.48C5.35 10.51 5 11.71 5 13c0 3.87 3.13 7 7 7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 6c3.87 0 7 3.13 7 7 0 1.12-.27 2.18-.74 3.12l1.47 1.47C20.53 16.25 21 14.68 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-1.68 0-3.25.47-4.59 1.27l1.47 1.47c.94-.47 2-.74 3.12-.74zm-1 2v.86l2 2V8zM9 1h6v2H9zM3.16 3.86 1.75 5.27 4.5 8.02C3.56 9.45 3 11.16 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.41-1.41L3.16 3.86zM12 20c-3.87 0-7-3.13-7-7 0-1.29.35-2.49.96-3.52l9.57 9.57c-1.04.6-2.24.95-3.53.95z" +}, "1")], 'TimerOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerOutlined.js b/packages/material-ui-icons/lib/esm/TimerOutlined.js new file mode 100644 index 00000000000000..de3e1238ee0bea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.07 1.01h-6v2h6v-2zm-4 13h2v-6h-2v6zm8.03-6.62 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.06-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'TimerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerRounded.js b/packages/material-ui-icons/lib/esm/TimerRounded.js new file mode 100644 index 00000000000000..df589eabe8f777 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 1h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zm-2 13c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1zm7.03-6.61.75-.75c.38-.38.39-1.01 0-1.4l-.01-.01c-.39-.39-1.01-.38-1.4 0l-.75.75C16.07 4.74 14.12 4 12 4c-4.8 0-8.88 3.96-9 8.76C2.87 17.84 6.94 22 12 22c4.98 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'TimerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerSharp.js b/packages/material-ui-icons/lib/esm/TimerSharp.js new file mode 100644 index 00000000000000..ff572c1ba443d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}), 'TimerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimerTwoTone.js b/packages/material-ui-icons/lib/esm/TimerTwoTone.js new file mode 100644 index 00000000000000..fc0ecce8c8738b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimerTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.07 6.01c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm1 8h-2v-6h2v6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M9.07 1.01h6v2h-6zm2 7h2v6h-2zm8.03-.62 1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.14 4.74 14.19 4 12.07 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.11-.74-4.07-1.97-5.61zm-7.03 12.62c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" +}, "1")], 'TimerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimesOneMobiledata.js b/packages/material-ui-icons/lib/esm/TimesOneMobiledata.js new file mode 100644 index 00000000000000..a91732014ef824 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimesOneMobiledata.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" +}), 'TimesOneMobiledata'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimesOneMobiledataOutlined.js b/packages/material-ui-icons/lib/esm/TimesOneMobiledataOutlined.js new file mode 100644 index 00000000000000..dfd2e5cd3f047f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimesOneMobiledataOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" +}), 'TimesOneMobiledataOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimesOneMobiledataRounded.js b/packages/material-ui-icons/lib/esm/TimesOneMobiledataRounded.js new file mode 100644 index 00000000000000..55bf0345dbdf04 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimesOneMobiledataRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 7h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1s-1-.45-1-1V9H5c-.55 0-1-.45-1-1s.45-1 1-1zm10.83 4.72 1.92-3.21c.4-.66-.08-1.51-.85-1.51-.35 0-.68.18-.86.49l-1.37 2.28-1.38-2.29c-.18-.3-.5-.48-.85-.48-.78 0-1.26.85-.86 1.51l1.92 3.21-2.26 3.77c-.4.67.08 1.51.86 1.51.35 0 .68-.18.86-.49l1.71-2.85 1.71 2.85c.18.3.51.49.86.49h.01c.78 0 1.26-.85.86-1.51l-2.28-3.77z" +}), 'TimesOneMobiledataRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimesOneMobiledataSharp.js b/packages/material-ui-icons/lib/esm/TimesOneMobiledataSharp.js new file mode 100644 index 00000000000000..0a6c6fe5adfd17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimesOneMobiledataSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" +}), 'TimesOneMobiledataSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TimesOneMobiledataTwoTone.js b/packages/material-ui-icons/lib/esm/TimesOneMobiledataTwoTone.js new file mode 100644 index 00000000000000..2f2dbc9d4528c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TimesOneMobiledataTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" +}), 'TimesOneMobiledataTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Title.js b/packages/material-ui-icons/lib/esm/Title.js new file mode 100644 index 00000000000000..b4b9434837ba18 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Title.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 4v3h5.5v12h3V7H19V4z" +}), 'Title'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TitleOutlined.js b/packages/material-ui-icons/lib/esm/TitleOutlined.js new file mode 100644 index 00000000000000..38c216c50c8cb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TitleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 4v3h5.5v12h3V7H19V4H5z" +}), 'TitleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TitleRounded.js b/packages/material-ui-icons/lib/esm/TitleRounded.js new file mode 100644 index 00000000000000..fe99ab1a89464c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TitleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5z" +}), 'TitleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TitleSharp.js b/packages/material-ui-icons/lib/esm/TitleSharp.js new file mode 100644 index 00000000000000..2167b2872d2c91 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TitleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 4v3h5.5v12h3V7H19V4H5z" +}), 'TitleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TitleTwoTone.js b/packages/material-ui-icons/lib/esm/TitleTwoTone.js new file mode 100644 index 00000000000000..91b05071e16511 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TitleTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 7h5.5v12h3V7H19V4H5z" +}), 'TitleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Toc.js b/packages/material-ui-icons/lib/esm/Toc.js new file mode 100644 index 00000000000000..f94cfc4ab937ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Toc.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" +}), 'Toc'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TocOutlined.js b/packages/material-ui-icons/lib/esm/TocOutlined.js new file mode 100644 index 00000000000000..188904f4c0cb27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TocOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" +}), 'TocOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TocRounded.js b/packages/material-ui-icons/lib/esm/TocRounded.js new file mode 100644 index 00000000000000..4c34ceaffdff2b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TocRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 9h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm15 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" +}), 'TocRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TocSharp.js b/packages/material-ui-icons/lib/esm/TocSharp.js new file mode 100644 index 00000000000000..3191a876adccc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TocSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2zM3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" +}), 'TocSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TocTwoTone.js b/packages/material-ui-icons/lib/esm/TocTwoTone.js new file mode 100644 index 00000000000000..9dd59e5faae73a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TocTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" +}), 'TocTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Today.js b/packages/material-ui-icons/lib/esm/Today.js new file mode 100644 index 00000000000000..0f5b2e7af261cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Today.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z" +}), 'Today'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TodayOutlined.js b/packages/material-ui-icons/lib/esm/TodayOutlined.js new file mode 100644 index 00000000000000..5afdecea1772f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TodayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h5v5H7z" +}), 'TodayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TodayRounded.js b/packages/material-ui-icons/lib/esm/TodayRounded.js new file mode 100644 index 00000000000000..7af3e1fd66b3ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TodayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1zM8 10h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1z" +}), 'TodayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TodaySharp.js b/packages/material-ui-icons/lib/esm/TodaySharp.js new file mode 100644 index 00000000000000..85a7bbf16d3444 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TodaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zM7 10h5v5H7v-5z" +}), 'TodaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TodayTwoTone.js b/packages/material-ui-icons/lib/esm/TodayTwoTone.js new file mode 100644 index 00000000000000..bd30edcc91e13c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TodayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-7 4H7v5h5v-5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 5h14v2H5z", + opacity: ".3" +}, "1")], 'TodayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOff.js b/packages/material-ui-icons/lib/esm/ToggleOff.js new file mode 100644 index 00000000000000..ad8430af9556b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'ToggleOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOffOutlined.js b/packages/material-ui-icons/lib/esm/ToggleOffOutlined.js new file mode 100644 index 00000000000000..cd79eed3706b6b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'ToggleOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOffRounded.js b/packages/material-ui-icons/lib/esm/ToggleOffRounded.js new file mode 100644 index 00000000000000..f800227082622d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'ToggleOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOffSharp.js b/packages/material-ui-icons/lib/esm/ToggleOffSharp.js new file mode 100644 index 00000000000000..ebfff30f2502a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'ToggleOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOffTwoTone.js b/packages/material-ui-icons/lib/esm/ToggleOffTwoTone.js new file mode 100644 index 00000000000000..e8d8b2ee64b6ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}, "1")], 'ToggleOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOn.js b/packages/material-ui-icons/lib/esm/ToggleOn.js new file mode 100644 index 00000000000000..68b2b5918b8060 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'ToggleOn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOnOutlined.js b/packages/material-ui-icons/lib/esm/ToggleOnOutlined.js new file mode 100644 index 00000000000000..18b6cb1a6a07f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'ToggleOnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOnRounded.js b/packages/material-ui-icons/lib/esm/ToggleOnRounded.js new file mode 100644 index 00000000000000..45fffa8831ff48 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'ToggleOnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOnSharp.js b/packages/material-ui-icons/lib/esm/ToggleOnSharp.js new file mode 100644 index 00000000000000..266ec9b34e3c08 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" +}), 'ToggleOnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToggleOnTwoTone.js b/packages/material-ui-icons/lib/esm/ToggleOnTwoTone.js new file mode 100644 index 00000000000000..bfdfd603e1e275 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToggleOnTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zm0 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}, "1")], 'ToggleOnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Toll.js b/packages/material-ui-icons/lib/esm/Toll.js new file mode 100644 index 00000000000000..90c454d5b2e00c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Toll.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" +}), 'Toll'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TollOutlined.js b/packages/material-ui-icons/lib/esm/TollOutlined.js new file mode 100644 index 00000000000000..d57919ab06ea0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TollOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" +}), 'TollOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TollRounded.js b/packages/material-ui-icons/lib/esm/TollRounded.js new file mode 100644 index 00000000000000..9d21e67c28c79e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TollRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.39 1.4-4.46 3.43-5.42.34-.16.57-.47.57-.84v-.19c0-.68-.71-1.11-1.32-.82C2.92 5.99 1 8.77 1 12s1.92 6.01 4.68 7.27c.61.28 1.32-.14 1.32-.82v-.18c0-.37-.23-.69-.57-.85C4.4 16.46 3 14.39 3 12z" +}), 'TollRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TollSharp.js b/packages/material-ui-icons/lib/esm/TollSharp.js new file mode 100644 index 00000000000000..dd47e5dec2a254 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TollSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" +}), 'TollSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TollTwoTone.js b/packages/material-ui-icons/lib/esm/TollTwoTone.js new file mode 100644 index 00000000000000..f214a15ee8cd13 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TollTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12c0 3.73 2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z" +}, "1")], 'TollTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tonality.js b/packages/material-ui-icons/lib/esm/Tonality.js new file mode 100644 index 00000000000000..2030de5c4802b6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tonality.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" +}), 'Tonality'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TonalityOutlined.js b/packages/material-ui-icons/lib/esm/TonalityOutlined.js new file mode 100644 index 00000000000000..1f509d5b00ed50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TonalityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" +}), 'TonalityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TonalityRounded.js b/packages/material-ui-icons/lib/esm/TonalityRounded.js new file mode 100644 index 00000000000000..7208713deec933 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TonalityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" +}), 'TonalityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TonalitySharp.js b/packages/material-ui-icons/lib/esm/TonalitySharp.js new file mode 100644 index 00000000000000..d831b624700380 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TonalitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" +}), 'TonalitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TonalityTwoTone.js b/packages/material-ui-icons/lib/esm/TonalityTwoTone.js new file mode 100644 index 00000000000000..71774f40314c4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TonalityTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 12c0 4.08 3.06 7.44 7 7.93V4.07C7.05 4.56 4 7.92 4 12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" +}, "1")], 'TonalityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Topic.js b/packages/material-ui-icons/lib/esm/Topic.js new file mode 100644 index 00000000000000..e1150c1b12438b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Topic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 10H6v-2h8v2zm4-4H6v-2h12v2z" +}), 'Topic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TopicOutlined.js b/packages/material-ui-icons/lib/esm/TopicOutlined.js new file mode 100644 index 00000000000000..4a15df441e3b8a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TopicOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16.77c.68 0 1.23-.56 1.23-1.23V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" +}), 'TopicOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TopicRounded.js b/packages/material-ui-icons/lib/esm/TopicRounded.js new file mode 100644 index 00000000000000..c5ac3f0f9a0236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TopicRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7 10H7c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm4-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'TopicRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TopicSharp.js b/packages/material-ui-icons/lib/esm/TopicSharp.js new file mode 100644 index 00000000000000..3bfb8afab18a75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TopicSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 6-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z" +}), 'TopicSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TopicTwoTone.js b/packages/material-ui-icons/lib/esm/TopicTwoTone.js new file mode 100644 index 00000000000000..20447b04a616c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TopicTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 18H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16.77c.68 0 1.23-.56 1.23-1.23V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-2-6H6v-2h12v2zm-4 4H6v-2h8v2z" +}, "1")], 'TopicTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TouchApp.js b/packages/material-ui-icons/lib/esm/TouchApp.js new file mode 100644 index 00000000000000..26982de0c400ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TouchApp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 11.24V7.5C9 6.12 10.12 5 11.5 5S14 6.12 14 7.5v3.74c1.21-.81 2-2.18 2-3.74C16 5.01 13.99 3 11.5 3S7 5.01 7 7.5c0 1.56.79 2.93 2 3.74zm9.84 4.63-4.54-2.26c-.17-.07-.35-.11-.54-.11H13v-6c0-.83-.67-1.5-1.5-1.5S10 6.67 10 7.5v10.74c-3.6-.76-3.54-.75-3.67-.75-.31 0-.59.13-.79.33l-.79.8 4.94 4.94c.27.27.65.44 1.06.44h6.79c.75 0 1.33-.55 1.44-1.28l.75-5.27c.01-.07.02-.14.02-.2 0-.62-.38-1.16-.91-1.38z" +}), 'TouchApp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TouchAppOutlined.js b/packages/material-ui-icons/lib/esm/TouchAppOutlined.js new file mode 100644 index 00000000000000..755d4cb878414f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TouchAppOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.19 12.44-3.24-1.62c1.29-1 2.12-2.56 2.12-4.32 0-3.03-2.47-5.5-5.5-5.5s-5.5 2.47-5.5 5.5c0 2.13 1.22 3.98 3 4.89v3.26c-2.15-.46-2.02-.44-2.26-.44-.53 0-1.03.21-1.41.59L4 16.22l5.09 5.09c.43.44 1.03.69 1.65.69h6.3c.98 0 1.81-.7 1.97-1.67l.8-4.71c.22-1.3-.43-2.58-1.62-3.18zm-.35 2.85-.8 4.71h-6.3c-.09 0-.17-.04-.24-.1l-3.68-3.68 4.25.89V6.5c0-.28.22-.5.5-.5s.5.22.5.5v6h1.76l3.46 1.73c.4.2.62.63.55 1.06zM8.07 6.5c0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 .95-.38 1.81-1 2.44V6.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5v2.44c-.62-.63-1-1.49-1-2.44z" +}), 'TouchAppOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TouchAppRounded.js b/packages/material-ui-icons/lib/esm/TouchAppRounded.js new file mode 100644 index 00000000000000..e2c428432241af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TouchAppRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.79 9.24V5.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v3.74c1.21-.81 2-2.18 2-3.74 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5c0 1.56.79 2.93 2 3.74zm5.5 2.47c-.28-.14-.58-.21-.89-.21h-.61v-6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v10.74l-3.44-.72c-.37-.08-.76.04-1.03.31-.43.44-.43 1.14 0 1.58l4.01 4.01c.38.37.89.58 1.42.58h6.1c1 0 1.84-.73 1.98-1.72l.63-4.47c.12-.85-.32-1.69-1.09-2.07l-4.08-2.03z" +}), 'TouchAppRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TouchAppSharp.js b/packages/material-ui-icons/lib/esm/TouchAppSharp.js new file mode 100644 index 00000000000000..c6e308d174ce46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TouchAppSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.25 9.24V5.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v3.74c1.21-.81 2-2.18 2-3.74 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5c0 1.56.79 2.93 2 3.74zm5.08 2.26h-1.08v-6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v10.74l-4.04-.85L4 16.62 9.38 22h8.67l1.07-7.62-5.79-2.88z" +}), 'TouchAppSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TouchAppTwoTone.js b/packages/material-ui-icons/lib/esm/TouchAppTwoTone.js new file mode 100644 index 00000000000000..164b3f6e78b967 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TouchAppTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m18.19 12.44-3.24-1.62c1.29-1 2.12-2.56 2.12-4.32 0-3.03-2.47-5.5-5.5-5.5s-5.5 2.47-5.5 5.5c0 2.13 1.22 3.98 3 4.89v3.26c-2.08-.44-2.01-.44-2.26-.44-.53 0-1.03.21-1.41.59L4 16.22l5.09 5.09c.43.44 1.03.69 1.65.69h6.3c.98 0 1.81-.7 1.97-1.67l.8-4.71c.22-1.3-.43-2.58-1.62-3.18zM8.07 6.5c0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 .95-.38 1.81-1 2.44V6.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5v2.44c-.62-.63-1-1.49-1-2.44zm9.77 8.79-.8 4.71h-6.3c-.09 0-.17-.04-.24-.1l-3.68-3.68 4.25.89V6.5c0-.28.22-.5.5-.5s.5.22.5.5v6h1.76l3.46 1.73c.4.2.62.63.55 1.06z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m17.3 14.23-3.46-1.73h-1.77v-6c0-.28-.22-.5-.5-.5s-.5.22-.5.5v10.61l-4.25-.89 3.68 3.68c.06.06.15.1.24.1h6.3l.8-4.71c.07-.43-.15-.86-.54-1.06z", + opacity: ".3" +}, "1")], 'TouchAppTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tour.js b/packages/material-ui-icons/lib/esm/Tour.js new file mode 100644 index 00000000000000..f5bd30f9af4f7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tour.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" +}), 'Tour'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TourOutlined.js b/packages/material-ui-icons/lib/esm/TourOutlined.js new file mode 100644 index 00000000000000..b9782f480b13ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TourOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-3.86 5.74.9 2.26H7V6h11.05l-.9 2.26-.3.74.29.74zM14 9c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" +}), 'TourOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TourRounded.js b/packages/material-ui-icons/lib/esm/TourRounded.js new file mode 100644 index 00000000000000..7f948e0f28b2b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TourRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.45 5.37c.26-.66-.22-1.37-.93-1.37H7V3c0-.55-.45-1-1-1s-1 .45-1 1v19h2v-8h12.52c.71 0 1.19-.71.93-1.37L19 9l1.45-3.63zM15 9c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" +}), 'TourRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TourSharp.js b/packages/material-ui-icons/lib/esm/TourSharp.js new file mode 100644 index 00000000000000..28b89a1d290a8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TourSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" +}), 'TourSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TourTwoTone.js b/packages/material-ui-icons/lib/esm/TourTwoTone.js new file mode 100644 index 00000000000000..264c8cb17446b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TourTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 12V6h11.05l-1.2 3 1.2 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zM7 12V6h11.05l-1.2 3 1.2 3H7zm7-3c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" +}, "1")], 'TourTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Toys.js b/packages/material-ui-icons/lib/esm/Toys.js new file mode 100644 index 00000000000000..03bcef44fb56f4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Toys.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 14c0-1.95-1.4-3.57-3.25-3.92L17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.5.83 2.79 2.05 3.48C4.28 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.72-1.1 2.95-2.52C21.17 16.79 22 15.5 22 14zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02 1.1-3.3c.14-.41.52-.68.95-.68H11v4zm2-4h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm4 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'Toys'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToysOutlined.js b/packages/material-ui-icons/lib/esm/ToysOutlined.js new file mode 100644 index 00000000000000..ae298bd6115754 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToysOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.75 10.08 17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.49.83 2.78 2.05 3.47C4.27 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.73-1.1 2.95-2.53C21.17 16.78 22 15.49 22 14c0-1.95-1.4-3.57-3.25-3.92zM13 6h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm-4.51.68c.14-.41.52-.68.95-.68H11v4H7.41l-.02-.02 1.1-3.3zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.49-2.68C18.95 14.53 18.03 14 17 14c-1.3 0-2.4.84-2.82 2H9.82C9.4 14.84 8.3 14 7 14c-1.03 0-1.95.53-2.49 1.32C4.2 14.97 4 14.51 4 14c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .51-.2.97-.51 1.32z" +}), 'ToysOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToysRounded.js b/packages/material-ui-icons/lib/esm/ToysRounded.js new file mode 100644 index 00000000000000..325fbc8fd031f5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToysRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 14c0-1.95-1.4-3.57-3.25-3.92L17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.5.83 2.79 2.05 3.48C4.28 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.72-1.1 2.95-2.52C21.17 16.79 22 15.5 22 14zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02 1.1-3.3c.14-.41.52-.68.95-.68H11v4zm2-4h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm4 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'ToysRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToysSharp.js b/packages/material-ui-icons/lib/esm/ToysSharp.js new file mode 100644 index 00000000000000..1d4540b6f16993 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToysSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.72 10-2-6H7.28L5.81 8.4 4.41 7l1-1L4 4.59.59 8 2 9.41l1-1L4.59 10H2v8h2.18c.41 1.16 1.52 2 2.82 2 1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.3 0 2.41-.84 2.82-2H22v-8h-3.28zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02L8.72 6H11v4zm2 0V6h2.28l1.33 4H13zm4 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'ToysSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ToysTwoTone.js b/packages/material-ui-icons/lib/esm/ToysTwoTone.js new file mode 100644 index 00000000000000..a25285cdfa9199 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ToysTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 12H6c-1.1 0-2 .9-2 2 0 .51.2.97.51 1.32C5.05 14.53 5.97 14 7 14c1.3 0 2.4.84 2.82 2h4.37c.41-1.16 1.51-2 2.82-2 1.03 0 1.95.53 2.49 1.32.3-.35.5-.81.5-1.32 0-1.1-.9-2-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.75 10.08 17.4 6.05C17 4.82 15.85 4 14.56 4H9.44C8.15 4 7 4.82 6.6 6.05L5.81 8.4 4.41 7l.29-.29c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-2 2c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.3-.3 1.79 1.79C3.18 10.72 2 12.22 2 14c0 1.49.83 2.78 2.05 3.47C4.27 18.9 5.51 20 7 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2 1.49 0 2.73-1.1 2.95-2.53C21.17 16.78 22 15.49 22 14c0-1.95-1.4-3.57-3.25-3.92zM13 6h1.56c.43 0 .81.27.95.68l1.1 3.32H13V6zm-4.51.68c.14-.41.52-.68.95-.68H11v4H7.41l-.02-.02 1.1-3.3zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.49-2.68C18.95 14.53 18.03 14 17 14c-1.3 0-2.4.84-2.82 2H9.82C9.4 14.84 8.3 14 7 14c-1.03 0-1.95.53-2.49 1.32C4.2 14.97 4 14.51 4 14c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2 0 .51-.2.97-.51 1.32z" +}, "1")], 'ToysTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrackChanges.js b/packages/material-ui-icons/lib/esm/TrackChanges.js new file mode 100644 index 00000000000000..80151d927d2ab9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrackChanges.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" +}), 'TrackChanges'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrackChangesOutlined.js b/packages/material-ui-icons/lib/esm/TrackChangesOutlined.js new file mode 100644 index 00000000000000..5fcd9def93096c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrackChangesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" +}), 'TrackChangesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrackChangesRounded.js b/packages/material-ui-icons/lib/esm/TrackChangesRounded.js new file mode 100644 index 00000000000000..ade408efea73e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrackChangesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.32 5.68c-.36.36-.39.92-.07 1.32 1.45 1.82 2.21 4.31 1.53 6.92-.79 3.05-3.18 5.33-6.21 5.94C8.47 20.87 4 16.93 4 12c0-4.08 3.05-7.44 7-7.93v2.02c-3.13.53-5.43 3.46-4.93 6.83.39 2.61 2.56 4.71 5.18 5.03C14.89 18.4 18 15.56 18 12c0-1.25-.38-2.4-1.03-3.36-.34-.5-1.07-.53-1.5-.11l-.01.01c-.34.34-.37.87-.11 1.27.6.92.84 2.1.49 3.32-.39 1.37-1.54 2.46-2.94 2.77-2.6.57-4.9-1.39-4.9-3.9 0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2.71c0-.39-.32-.71-.71-.71-5.36-.2-9.98 4.06-10.27 9.4-.36 6.55 5.41 11.82 12.01 10.4 3.88-.83 6.88-3.8 7.75-7.67.71-3.16-.2-6.16-1.97-8.37-.37-.47-1.07-.5-1.49-.08z" +}), 'TrackChangesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrackChangesSharp.js b/packages/material-ui-icons/lib/esm/TrackChangesSharp.js new file mode 100644 index 00000000000000..b2574945d08fca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrackChangesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" +}), 'TrackChangesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrackChangesTwoTone.js b/packages/material-ui-icons/lib/esm/TrackChangesTwoTone.js new file mode 100644 index 00000000000000..25834f5147aa0f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrackChangesTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.07 4.93-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" +}), 'TrackChangesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Traffic.js b/packages/material-ui-icons/lib/esm/Traffic.js new file mode 100644 index 00000000000000..1d27ababdae818 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Traffic.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z" +}), 'Traffic'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrafficOutlined.js b/packages/material-ui-icons/lib/esm/TrafficOutlined.js new file mode 100644 index 00000000000000..6fac004b005047 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrafficOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-5 9H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z" +}), 'TrafficOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrafficRounded.js b/packages/material-ui-icons/lib/esm/TrafficRounded.js new file mode 100644 index 00000000000000..541de8bdfd5686 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrafficRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.96 10.59c.04-.31-.19-.59-.5-.59H17V8.86c1.54-.4 2.72-1.68 2.96-3.27.04-.31-.19-.59-.5-.59H17V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4.54c-.31 0-.54.28-.5.59C4.28 7.18 5.46 8.46 7 8.86V10H4.54c-.31 0-.54.28-.5.59.24 1.59 1.42 2.87 2.96 3.27V15H4.54c-.31 0-.54.28-.5.59.24 1.59 1.42 2.87 2.96 3.27V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.54-.4 2.72-1.68 2.96-3.27.04-.31-.19-.59-.5-.59H17v-1.14c1.54-.4 2.72-1.68 2.96-3.27zM12 19c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z" +}), 'TrafficRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrafficSharp.js b/packages/material-ui-icons/lib/esm/TrafficSharp.js new file mode 100644 index 00000000000000..a82d2b142941a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrafficSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V3H7v2H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V21h10v-2.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z" +}), 'TrafficSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrafficTwoTone.js b/packages/material-ui-icons/lib/esm/TrafficTwoTone.js new file mode 100644 index 00000000000000..835056eff5a86b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrafficTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 19h6V5H9v14zm3-13c.83 0 1.5.67 1.5 1.5S12.83 9 12 9s-1.5-.67-1.5-1.5S11.17 6 12 6zm0 4.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0 4.5c.83 0 1.5.67 1.5 1.5S12.83 18 12 18s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 5h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86h-3V8.86c1.72-.45 3-2 3-3.86zm-5 14H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z" +}, "1")], 'TrafficTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Train.js b/packages/material-ui-icons/lib/esm/Train.js new file mode 100644 index 00000000000000..ec41f175fee963 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Train.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm2 0V6h5v4h-5zm3.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'Train'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrainOutlined.js b/packages/material-ui-icons/lib/esm/TrainOutlined.js new file mode 100644 index 00000000000000..fb6be7b786456b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrainOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" +}, "2")], 'TrainOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrainRounded.js b/packages/material-ui-icons/lib/esm/TrainRounded.js new file mode 100644 index 00000000000000..fcb58dbcb1de67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrainRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H7.8c.13 0 .26-.05.35-.15L10 19h4l1.85 1.85c.09.09.22.15.35.15h1.09c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z" +}), 'TrainRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrainSharp.js b/packages/material-ui-icons/lib/esm/TrainSharp.js new file mode 100644 index 00000000000000..ae72722f3e0b8b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrainSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z" +}), 'TrainSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrainTwoTone.js b/packages/material-ui-icons/lib/esm/TrainTwoTone.js new file mode 100644 index 00000000000000..9b5cd959b9be0b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrainTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-3.51 0-4.96.48-5.57 1h11.13c-.6-.52-2.05-1-5.56-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "8.5", + cy: "14.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "15.5", + cy: "14.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z" +}, "3")], 'TrainTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tram.js b/packages/material-ui-icons/lib/esm/Tram.js new file mode 100644 index 00000000000000..ede3be57400c2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tram.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 16.94V8.5c0-2.79-2.61-3.4-6.01-3.49l.76-1.51H17V2H7v1.5h4.75l-.76 1.52C7.86 5.11 5 5.73 5 8.5v8.44c0 1.45 1.19 2.66 2.59 2.97L6 21.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 20h-.08c1.69 0 2.58-1.37 2.58-3.06zm-7 1.56c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" +}), 'Tram'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TramOutlined.js b/packages/material-ui-icons/lib/esm/TramOutlined.js new file mode 100644 index 00000000000000..b7f3e3dad1f70d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TramOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z" +}), 'TramOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TramRounded.js b/packages/material-ui-icons/lib/esm/TramRounded.js new file mode 100644 index 00000000000000..4d40c5b1f0dbcf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TramRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95l-1.19 1.19c-.32.32-.1.86.35.86H7.8c.13 0 .26-.05.35-.15L10 20h4l1.85 1.85c.09.09.22.15.35.15h1.09c.45 0 .67-.54.35-.85l-1.19-1.19C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" +}), 'TramRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TramSharp.js b/packages/material-ui-icons/lib/esm/TramSharp.js new file mode 100644 index 00000000000000..ed3cece401254d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TramSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" +}), 'TramSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TramTwoTone.js b/packages/material-ui-icons/lib/esm/TramTwoTone.js new file mode 100644 index 00000000000000..27dd635439dbc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TramTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.97 7h-1.94c-2.75.08-3.62.58-3.9 1h9.74c-.28-.42-1.15-.92-3.9-1zM7 16v1c0 .45.3.84.74.95h3.11c-.22-.26-.35-.59-.35-.95 0-.39.15-.73.39-1H7zm6.5 1c0 .36-.13.69-.35.95h3.11c.44-.11.74-.5.74-.95v-1h-3.89c.24.27.39.61.39 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m13 5 .75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z" +}, "1")], 'TramTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransferWithinAStation.js b/packages/material-ui-icons/lib/esm/TransferWithinAStation.js new file mode 100644 index 00000000000000..d8c75321f1740f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransferWithinAStation.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" +}), 'TransferWithinAStation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransferWithinAStationOutlined.js b/packages/material-ui-icons/lib/esm/TransferWithinAStationOutlined.js new file mode 100644 index 00000000000000..011464e6ebf6a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransferWithinAStationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" +}), 'TransferWithinAStationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransferWithinAStationRounded.js b/packages/material-ui-icons/lib/esm/TransferWithinAStationRounded.js new file mode 100644 index 00000000000000..4b8f61649f91b3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransferWithinAStationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 15.5h-5.52v-.77c0-.36-.44-.54-.69-.29l-1.51 1.52c-.16.16-.16.41 0 .57l1.51 1.52c.26.26.69.08.69-.29V17H22v-1.5zm-.28 4.71-1.51-1.52c-.26-.26-.69-.08-.69.29v.77H14v1.5h5.52v.77c0 .36.44.54.69.29l1.51-1.52c.16-.16.16-.42 0-.58zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3.23 21.81c-.12.62.35 1.19.98 1.19h.09c.47 0 .88-.33.98-.79L6.85 15 9 17v5c0 .55.45 1 1 1s1-.45 1-1v-5.72c0-.53-.21-1.04-.59-1.41L8.95 13.4l.6-3c1.07 1.32 2.58 2.23 4.31 2.51.6.1 1.14-.39 1.14-1 0-.49-.36-.9-.84-.98-1.49-.25-2.75-1.15-3.51-2.38l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L3.24 7.79C2.49 8.1 2 8.83 2 9.64V12c0 .55.45 1 1 1s1-.45 1-1V9.65l1.75-.75" +}), 'TransferWithinAStationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransferWithinAStationSharp.js b/packages/material-ui-icons/lib/esm/TransferWithinAStationSharp.js new file mode 100644 index 00000000000000..bf28c6cdabc734 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransferWithinAStationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9 3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" +}), 'TransferWithinAStationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransferWithinAStationTwoTone.js b/packages/material-ui-icons/lib/esm/TransferWithinAStationTwoTone.js new file mode 100644 index 00000000000000..8c965acec84ac0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransferWithinAStationTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.49 13.75 14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 6H14v1.5h5.51V23L22 20.5 19.51 18zM7.5 3.5c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm2.05 6.9C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3z" +}), 'TransferWithinAStationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Transform.js b/packages/material-ui-icons/lib/esm/Transform.js new file mode 100644 index 00000000000000..543a2c5b2bec6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Transform.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z" +}), 'Transform'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransformOutlined.js b/packages/material-ui-icons/lib/esm/TransformOutlined.js new file mode 100644 index 00000000000000..abe1307a57af39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransformOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z" +}), 'TransformOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransformRounded.js b/packages/material-ui-icons/lib/esm/TransformRounded.js new file mode 100644 index 00000000000000..84a504c5431ea1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransformRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 16H9c-.55 0-1-.45-1-1V4h.79c.45 0 .67-.54.35-.85l-1.79-1.8c-.2-.2-.51-.2-.71 0l-1.79 1.8c-.31.31-.09.85.36.85H6v2H3c-.55 0-1 .45-1 1s.45 1 1 1h3v8c0 1.1.9 2 2 2h8v2h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.2.2.51.2.71 0l1.79-1.79c.32-.31.09-.85-.35-.85H18v-2h3c.55 0 1-.45 1-1s-.45-1-1-1zm-5-2h2V8c0-1.1-.9-2-2-2h-6v2h5c.55 0 1 .45 1 1v5z" +}), 'TransformRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransformSharp.js b/packages/material-ui-icons/lib/esm/TransformSharp.js new file mode 100644 index 00000000000000..3f22ed445006b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransformSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v10h10v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V6h-8v2z" +}), 'TransformSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransformTwoTone.js b/packages/material-ui-icons/lib/esm/TransformTwoTone.js new file mode 100644 index 00000000000000..da7561ac407c93 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransformTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4v-2H8V4zm10 10V8c0-1.1-.9-2-2-2h-6v2h6v6h2z" +}), 'TransformTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Transgender.js b/packages/material-ui-icons/lib/esm/Transgender.js new file mode 100644 index 00000000000000..3267716ee36acd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Transgender.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" +}), 'Transgender'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransgenderOutlined.js b/packages/material-ui-icons/lib/esm/TransgenderOutlined.js new file mode 100644 index 00000000000000..b6979d5e5d7512 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransgenderOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" +}), 'TransgenderOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransgenderRounded.js b/packages/material-ui-icons/lib/esm/TransgenderRounded.js new file mode 100644 index 00000000000000..a1764aa9bce736 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransgenderRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.5 1h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65.7-.7c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.7.7L4.92 3H6.5c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V4.42l1.91 1.9-.71.71c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0l.71-.71.65.65c-.61.89-.97 1.96-.97 3.12 0 2.7 1.94 4.94 4.5 5.41V19h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12l3.97-3.96V6c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zM12 15c-1.93 0-3.5-1.57-3.5-3.5S10.07 8 12 8s3.5 1.57 3.5 3.5S13.93 15 12 15z" +}), 'TransgenderRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransgenderSharp.js b/packages/material-ui-icons/lib/esm/TransgenderSharp.js new file mode 100644 index 00000000000000..8a4bb763333fc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransgenderSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" +}), 'TransgenderSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransgenderTwoTone.js b/packages/material-ui-icons/lib/esm/TransgenderTwoTone.js new file mode 100644 index 00000000000000..e6ef2db21d23fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransgenderTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38 3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11 0 2.7 1.94 4.94 4.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09c2.56-.47 4.5-2.71 4.5-5.41 0-1.16-.36-2.23-.97-3.12z" +}), 'TransgenderTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransitEnterexit.js b/packages/material-ui-icons/lib/esm/TransitEnterexit.js new file mode 100644 index 00000000000000..6d4db836be19d7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransitEnterexit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" +}), 'TransitEnterexit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransitEnterexitOutlined.js b/packages/material-ui-icons/lib/esm/TransitEnterexitOutlined.js new file mode 100644 index 00000000000000..e54296da70618c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransitEnterexitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" +}), 'TransitEnterexitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransitEnterexitRounded.js b/packages/material-ui-icons/lib/esm/TransitEnterexitRounded.js new file mode 100644 index 00000000000000..80955f712481f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransitEnterexitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 18H8c-1.1 0-2-.9-2-2V9.5C6 8.67 6.67 8 7.5 8S9 8.67 9 9.5v3.27L14.95 7c.57-.55 1.48-.54 2.04.02s.56 1.47.01 2.04L11.15 15h3.35c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" +}), 'TransitEnterexitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransitEnterexitSharp.js b/packages/material-ui-icons/lib/esm/TransitEnterexitSharp.js new file mode 100644 index 00000000000000..79202d8cd9457c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransitEnterexitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" +}), 'TransitEnterexitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TransitEnterexitTwoTone.js b/packages/material-ui-icons/lib/esm/TransitEnterexitTwoTone.js new file mode 100644 index 00000000000000..a52d19f22ffbe7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TransitEnterexitTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.98 6 9 12.77V8H6v10h10v-3h-4.85L18 8.03z" +}), 'TransitEnterexitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Translate.js b/packages/material-ui-icons/lib/esm/Translate.js new file mode 100644 index 00000000000000..c974f44f3bda75 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Translate.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" +}), 'Translate'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TranslateOutlined.js b/packages/material-ui-icons/lib/esm/TranslateOutlined.js new file mode 100644 index 00000000000000..06b84190c97f0a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TranslateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" +}), 'TranslateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TranslateRounded.js b/packages/material-ui-icons/lib/esm/TranslateRounded.js new file mode 100644 index 00000000000000..b2bf9494b8a324 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TranslateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.65 15.67c.14-.36.05-.77-.23-1.05l-2.09-2.06.03-.03c1.74-1.94 2.98-4.17 3.71-6.53h1.94c.54 0 .99-.45.99-.99v-.02c0-.54-.45-.99-.99-.99H10V3c0-.55-.45-1-1-1s-1 .45-1 1v1H1.99c-.54 0-.99.45-.99.99 0 .55.45.99.99.99h10.18C11.5 7.92 10.44 9.75 9 11.35c-.81-.89-1.49-1.86-2.06-2.88-.16-.29-.45-.47-.78-.47-.69 0-1.13.75-.79 1.35.63 1.13 1.4 2.21 2.3 3.21L3.3 16.87c-.4.39-.4 1.03 0 1.42.39.39 1.02.39 1.42 0L9 14l2.02 2.02c.51.51 1.38.32 1.63-.35zM17.5 10c-.6 0-1.14.37-1.35.94l-3.67 9.8c-.24.61.22 1.26.87 1.26.39 0 .74-.24.88-.61l.89-2.39h4.75l.9 2.39c.14.36.49.61.88.61.65 0 1.11-.65.88-1.26l-3.67-9.8c-.22-.57-.76-.94-1.36-.94zm-1.62 7 1.62-4.33L19.12 17h-3.24z" +}), 'TranslateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TranslateSharp.js b/packages/material-ui-icons/lib/esm/TranslateSharp.js new file mode 100644 index 00000000000000..bdb469302ff773 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TranslateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" +}), 'TranslateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TranslateTwoTone.js b/packages/material-ui-icons/lib/esm/TranslateTwoTone.js new file mode 100644 index 00000000000000..6674a9218136a1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TranslateTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12.87 15.07-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7 1.62-4.33L19.12 17h-3.24z" +}), 'TranslateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TravelExplore.js b/packages/material-ui-icons/lib/esm/TravelExplore.js new file mode 100644 index 00000000000000..0fedb8011359cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TravelExplore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" +}), 'TravelExplore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TravelExploreOutlined.js b/packages/material-ui-icons/lib/esm/TravelExploreOutlined.js new file mode 100644 index 00000000000000..ea372cd2d5d9f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TravelExploreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" +}), 'TravelExploreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TravelExploreRounded.js b/packages/material-ui-icons/lib/esm/TravelExploreRounded.js new file mode 100644 index 00000000000000..f8cd33601eb39f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TravelExploreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.3 16.9c.58-1.01.95-2.23.51-3.65-.53-1.72-2.04-3.05-3.84-3.22-2.87-.28-5.23 2.07-4.95 4.95.18 1.79 1.5 3.31 3.22 3.84 1.43.44 2.64.07 3.65-.51l2.5 2.5c.39.39 1.01.39 1.4 0 .39-.39.39-1.01 0-1.4L19.3 16.9zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" +}), 'TravelExploreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TravelExploreSharp.js b/packages/material-ui-icons/lib/esm/TravelExploreSharp.js new file mode 100644 index 00000000000000..a6706c80680d1a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TravelExploreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" +}), 'TravelExploreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TravelExploreTwoTone.js b/packages/material-ui-icons/lib/esm/TravelExploreTwoTone.js new file mode 100644 index 00000000000000..706b097d32c967 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TravelExploreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07c-.64-2.46-2.4-4.47-4.73-5.41V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" +}), 'TravelExploreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingDown.js b/packages/material-ui-icons/lib/esm/TrendingDown.js new file mode 100644 index 00000000000000..8f06ecf33a4778 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z" +}), 'TrendingDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingDownOutlined.js b/packages/material-ui-icons/lib/esm/TrendingDownOutlined.js new file mode 100644 index 00000000000000..b3b9028979514d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" +}), 'TrendingDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingDownRounded.js b/packages/material-ui-icons/lib/esm/TrendingDownRounded.js new file mode 100644 index 00000000000000..c9d26ff78f876d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.85 17.15 1.44-1.44-4.88-4.88-3.29 3.29c-.39.39-1.02.39-1.41 0l-6-6.01a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L9.41 12l3.29-3.29c.39-.39 1.02-.39 1.41 0l5.59 5.58 1.44-1.44c.31-.31.85-.09.85.35v4.29c0 .28-.22.5-.5.5H17.2c-.44.01-.66-.53-.35-.84z" +}), 'TrendingDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingDownSharp.js b/packages/material-ui-icons/lib/esm/TrendingDownSharp.js new file mode 100644 index 00000000000000..274fa42c0e516d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" +}), 'TrendingDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingDownTwoTone.js b/packages/material-ui-icons/lib/esm/TrendingDownTwoTone.js new file mode 100644 index 00000000000000..449ce6c7ea80bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingDownTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 18 2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" +}), 'TrendingDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingFlat.js b/packages/material-ui-icons/lib/esm/TrendingFlat.js new file mode 100644 index 00000000000000..17fa879524c690 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingFlat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 12-4-4v3H3v2h15v3z" +}), 'TrendingFlat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingFlatOutlined.js b/packages/material-ui-icons/lib/esm/TrendingFlatOutlined.js new file mode 100644 index 00000000000000..4cf127a0bd912b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingFlatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 12-4-4v3H3v2h15v3l4-4z" +}), 'TrendingFlatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingFlatRounded.js b/packages/material-ui-icons/lib/esm/TrendingFlatRounded.js new file mode 100644 index 00000000000000..6d6009af745b7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingFlatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.65 11.65-2.79-2.79c-.32-.32-.86-.1-.86.35V11H4c-.55 0-1 .45-1 1s.45 1 1 1h14v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z" +}), 'TrendingFlatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingFlatSharp.js b/packages/material-ui-icons/lib/esm/TrendingFlatSharp.js new file mode 100644 index 00000000000000..bb8363267b5048 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingFlatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 12-4-4v3H3v2h15v3l4-4z" +}), 'TrendingFlatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingFlatTwoTone.js b/packages/material-ui-icons/lib/esm/TrendingFlatTwoTone.js new file mode 100644 index 00000000000000..f5ab28c394f5d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingFlatTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m22 12-4-4v3H3v2h15v3l4-4z" +}), 'TrendingFlatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingUp.js b/packages/material-ui-icons/lib/esm/TrendingUp.js new file mode 100644 index 00000000000000..c40cdf13689bb2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingUp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z" +}), 'TrendingUp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingUpOutlined.js b/packages/material-ui-icons/lib/esm/TrendingUpOutlined.js new file mode 100644 index 00000000000000..8b90781fb9d5b5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingUpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" +}), 'TrendingUpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingUpRounded.js b/packages/material-ui-icons/lib/esm/TrendingUpRounded.js new file mode 100644 index 00000000000000..89b7f5ac4395c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingUpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.85 6.85 1.44 1.44-4.88 4.88-3.29-3.29a.9959.9959 0 0 0-1.41 0l-6 6.01c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L9.41 12l3.29 3.29c.39.39 1.02.39 1.41 0l5.59-5.58 1.44 1.44c.31.31.85.09.85-.35V6.5c.01-.28-.21-.5-.49-.5h-4.29c-.45 0-.67.54-.36.85z" +}), 'TrendingUpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingUpSharp.js b/packages/material-ui-icons/lib/esm/TrendingUpSharp.js new file mode 100644 index 00000000000000..91fdc012d2214e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingUpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" +}), 'TrendingUpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrendingUpTwoTone.js b/packages/material-ui-icons/lib/esm/TrendingUpTwoTone.js new file mode 100644 index 00000000000000..79ee3ad7f10f1f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrendingUpTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" +}), 'TrendingUpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TripOrigin.js b/packages/material-ui-icons/lib/esm/TripOrigin.js new file mode 100644 index 00000000000000..89c460628ca9d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TripOrigin.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" +}), 'TripOrigin'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TripOriginOutlined.js b/packages/material-ui-icons/lib/esm/TripOriginOutlined.js new file mode 100644 index 00000000000000..1316df706a9ce5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TripOriginOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" +}), 'TripOriginOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TripOriginRounded.js b/packages/material-ui-icons/lib/esm/TripOriginRounded.js new file mode 100644 index 00000000000000..5bef7d6320478b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TripOriginRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" +}), 'TripOriginRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TripOriginSharp.js b/packages/material-ui-icons/lib/esm/TripOriginSharp.js new file mode 100644 index 00000000000000..7a9b8410791582 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TripOriginSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" +}), 'TripOriginSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TripOriginTwoTone.js b/packages/material-ui-icons/lib/esm/TripOriginTwoTone.js new file mode 100644 index 00000000000000..1560f1ed0cb38f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TripOriginTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'TripOriginTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Try.js b/packages/material-ui-icons/lib/esm/Try.js new file mode 100644 index 00000000000000..7eea7bd233d91e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Try.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" +}), 'Try'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TryOutlined.js b/packages/material-ui-icons/lib/esm/TryOutlined.js new file mode 100644 index 00000000000000..8e283d0c16fea1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TryOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" +}, "1")], 'TryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TryRounded.js b/packages/material-ui-icons/lib/esm/TryRounded.js new file mode 100644 index 00000000000000..865483663112a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6.43 9.57-1.12 2.44c-.18.39-.73.39-.91 0l-1.12-2.44-2.44-1.12c-.39-.18-.39-.73 0-.91l2.44-1.12 1.12-2.44c.18-.39.73-.39.91 0l1.12 2.44 2.44 1.12c.39.18.39.73 0 .91l-2.44 1.12z" +}), 'TryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TrySharp.js b/packages/material-ui-icons/lib/esm/TrySharp.js new file mode 100644 index 00000000000000..0b886233021658 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TrySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" +}), 'TrySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TryTwoTone.js b/packages/material-ui-icons/lib/esm/TryTwoTone.js new file mode 100644 index 00000000000000..a7051471611966 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TryTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17 5.17 16H20V4H4v13.17zm6.43-8.74L12 5l1.57 3.43L17 10l-3.43 1.57L12 15l-1.57-3.43L7 10l3.43-1.57z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m12 15 1.57-3.43L17 10l-3.43-1.57L12 5l-1.57 3.43L7 10l3.43 1.57z" +}, "2")], 'TryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tty.js b/packages/material-ui-icons/lib/esm/Tty.js new file mode 100644 index 00000000000000..38debbedae9712 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tty.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 4h2v2h-2V4zm-1 3h2v2h-2V7zm-2-3h2v2h-2V4zm7 5h-2V7h2v2zm1-3h-2V4h2v2zm2 3h-2V7h2v2zm1-3h-2V4h2v2zm-7.38 8.38L12.1 16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52c.24-.24.34-.58.28-.9L8.16 3.8c-.09-.46-.5-.8-.98-.8H3.03c-.56 0-1.03.47-1 1.03.17 2.89 1.02 5.6 2.4 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.23 7.97 2.4.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73a.991.991 0 0 0-.91.27zM14 10h2v2h-2v-2zm-3 0h2v2h-2v-2zm8 2h-2v-2h2v2zm3 0h-2v-2h2v2z" +}), 'Tty'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TtyOutlined.js b/packages/material-ui-icons/lib/esm/TtyOutlined.js new file mode 100644 index 00000000000000..d66c1ae92b112c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TtyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 6h-2V4h2v2zm2 1h-2v2h2V7zm1 2h2V7h-2v2zm0-5h-2v2h2V4zm-4 3h-2v2h2V7zm4 3h-2v2h2v-2zm-3 0h-2v2h2v-2zm-3-6h-2v2h2V4zm7 11.82v4.15c0 .56-.47 1.03-1.03 1-2.89-.17-5.6-1.03-7.97-2.4A17.999 17.999 0 0 1 4.43 12C3.05 9.63 2.2 6.92 2.03 4.03 2 3.47 2.47 3 3.03 3h4.15c.48 0 .89.34.98.8l.74 3.68c.07.33-.04.67-.27.9L6.1 10.9c1.43 2.5 3.5 4.57 6 6l2.52-2.52c.24-.24.58-.34.9-.27l3.67.73c.47.09.81.5.81.98zM5.18 8.99l1.65-1.65L6.36 5H4.13c.17 1.37.53 2.71 1.05 3.99zM18 16.64l-2.34-.47-1.65 1.65c1.28.52 2.63.87 3.99 1.05v-2.23zM20 4v2h2V4h-2zm0 8h2v-2h-2v2zm-7-2h-2v2h2v-2z" +}), 'TtyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TtyRounded.js b/packages/material-ui-icons/lib/esm/TtyRounded.js new file mode 100644 index 00000000000000..8998b7becf57fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TtyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1 3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2-3c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6.38 8.38L12.1 16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52c.24-.24.34-.58.28-.9L8.16 3.8c-.09-.46-.5-.8-.98-.8H3.03c-.56 0-1.03.47-1 1.03.17 2.89 1.02 5.6 2.4 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.23 7.97 2.4.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73a.991.991 0 0 0-.91.27zM15 10c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}), 'TtyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TtySharp.js b/packages/material-ui-icons/lib/esm/TtySharp.js new file mode 100644 index 00000000000000..f012a456814acc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TtySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 15v6c-3.28 0-6.35-.89-9-2.43A17.999 17.999 0 0 1 4.43 12C2.89 9.35 2 6.28 2 3h6l1 5-2.9 2.9c1.43 2.5 3.5 4.57 6 6L15 14l5 1zm-6-9h2V4h-2v2zm-1 3h2V7h-2v2zm-2-3h2V4h-2v2zm7 1h-2v2h2V7zm1-3h-2v2h2V4zm2 3h-2v2h2V7zm1-3h-2v2h2V4zm-8 8h2v-2h-2v2zm-3 0h2v-2h-2v2zm8-2h-2v2h2v-2zm3 0h-2v2h2v-2z" +}), 'TtySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TtyTwoTone.js b/packages/material-ui-icons/lib/esm/TtyTwoTone.js new file mode 100644 index 00000000000000..df3a76b6c003cf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TtyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.13 5c.17 1.37.53 2.71 1.05 3.99l1.65-1.65L6.36 5H4.13zm11.53 11.17-1.65 1.65c1.28.52 2.63.87 3.99 1.05v-2.23l-2.34-.47z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m19.2 14.84-3.67-.73c-.33-.07-.67.04-.9.27L12.1 16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52c.24-.24.34-.58.28-.9L8.16 3.8c-.09-.46-.5-.8-.98-.8H3.03c-.56 0-1.03.47-1 1.03.17 2.89 1.02 5.6 2.4 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.23 7.97 2.4.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98zM4.13 5h2.23l.47 2.34-1.65 1.65C4.66 7.71 4.3 6.37 4.13 5zM18 18.87c-1.37-.17-2.71-.53-3.99-1.05l1.65-1.65 2.34.47v2.23zM14 4h2v2h-2V4zm-1 3h2v2h-2V7zm-2-3h2v2h-2V4zm7 5h-2V7h2v2zm1-3h-2V4h2v2zm2 3h-2V7h2v2zm1-3h-2V4h2v2zm-8 4h2v2h-2v-2zm-3 0h2v2h-2v-2zm8 2h-2v-2h2v2zm3 0h-2v-2h2v2z" +}, "1")], 'TtyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tune.js b/packages/material-ui-icons/lib/esm/Tune.js new file mode 100644 index 00000000000000..5b0c8ff544aadf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tune.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" +}), 'Tune'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TuneOutlined.js b/packages/material-ui-icons/lib/esm/TuneOutlined.js new file mode 100644 index 00000000000000..275771a3955bbe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TuneOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" +}), 'TuneOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TuneRounded.js b/packages/material-ui-icons/lib/esm/TuneRounded.js new file mode 100644 index 00000000000000..69e6f3db2ec43b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TuneRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 18c0 .55.45 1 1 1h5v-2H4c-.55 0-1 .45-1 1zM3 6c0 .55.45 1 1 1h9V5H4c-.55 0-1 .45-1 1zm10 14v-1h7c.55 0 1-.45 1-1s-.45-1-1-1h-7v-1c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1zM7 10v1H4c-.55 0-1 .45-1 1s.45 1 1 1h3v1c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1zm14 2c0-.55-.45-1-1-1h-9v2h9c.55 0 1-.45 1-1zm-5-3c.55 0 1-.45 1-1V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z" +}), 'TuneRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TuneSharp.js b/packages/material-ui-icons/lib/esm/TuneSharp.js new file mode 100644 index 00000000000000..98743dfb107ee0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TuneSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" +}), 'TuneSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TuneTwoTone.js b/packages/material-ui-icons/lib/esm/TuneTwoTone.js new file mode 100644 index 00000000000000..4e774adf526893 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TuneTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5h10v2H3zm4 6H3v2h4v2h2V9H7zm6 4h-2v6h2v-2h8v-2h-8zM3 17h6v2H3zm8-6h10v2H11zm6-8h-2v6h2V7h4V5h-4z" +}), 'TuneTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tungsten.js b/packages/material-ui-icons/lib/esm/Tungsten.js new file mode 100644 index 00000000000000..6cdf8c11450581 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tungsten.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z" +}), 'Tungsten'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TungstenOutlined.js b/packages/material-ui-icons/lib/esm/TungstenOutlined.js new file mode 100644 index 00000000000000..234579e27a9d4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TungstenOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5zm1 10c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}), 'TungstenOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TungstenRounded.js b/packages/material-ui-icons/lib/esm/TungstenRounded.js new file mode 100644 index 00000000000000..771d99ced711aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TungstenRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 19c-.56 0-1 .45-1 1v1c0 .55.45 1 1 1s1-.45 1-1v-1c0-.55-.45-1-1-1zm-6.01-1.91-.71.71c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.71-.71c.39-.39.39-1.02 0-1.41-.38-.38-1.02-.38-1.41 0zM5 12c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1zm16-1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1s-.45-1-1-1zm-2.99 6.09a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.71.71c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71zM15 8.02V5c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2v3.02c-1.43 1.08-2.28 2.9-1.91 4.91.36 1.95 1.9 3.55 3.84 3.95C14.16 17.56 17 15.11 17 12c0-1.63-.79-3.06-2-3.98zm-2-.92c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5h2v2.1z" +}), 'TungstenRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TungstenSharp.js b/packages/material-ui-icons/lib/esm/TungstenSharp.js new file mode 100644 index 00000000000000..a499743d98786a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TungstenSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z" +}), 'TungstenSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TungstenTwoTone.js b/packages/material-ui-icons/lib/esm/TungstenTwoTone.js new file mode 100644 index 00000000000000..bf1a4be815e513 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TungstenTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 7.1V5h-2v2.1c.32-.06.66-.1 1-.1s.68.04 1 .1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5zm1 10c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" +}, "1")], 'TungstenTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedIn.js b/packages/material-ui-icons/lib/esm/TurnedIn.js new file mode 100644 index 00000000000000..43f6c046b8e752 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedIn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" +}), 'TurnedIn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInNot.js b/packages/material-ui-icons/lib/esm/TurnedInNot.js new file mode 100644 index 00000000000000..e7858b737141b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInNot.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" +}), 'TurnedInNot'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInNotOutlined.js b/packages/material-ui-icons/lib/esm/TurnedInNotOutlined.js new file mode 100644 index 00000000000000..2179baf6c9a8b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInNotOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" +}), 'TurnedInNotOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInNotRounded.js b/packages/material-ui-icons/lib/esm/TurnedInNotRounded.js new file mode 100644 index 00000000000000..135f1483bc5c2a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInNotRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12z" +}), 'TurnedInNotRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInNotSharp.js b/packages/material-ui-icons/lib/esm/TurnedInNotSharp.js new file mode 100644 index 00000000000000..b3a89fa920addd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInNotSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5.01L5 21l7-3 7 3V3zm-2 15-5-2.18L7 18V5h10v13z" +}), 'TurnedInNotSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInNotTwoTone.js b/packages/material-ui-icons/lib/esm/TurnedInNotTwoTone.js new file mode 100644 index 00000000000000..aee758bede933e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInNotTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15-5-2.18L7 18V5h10v13z" +}), 'TurnedInNotTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInOutlined.js b/packages/material-ui-icons/lib/esm/TurnedInOutlined.js new file mode 100644 index 00000000000000..40ece9c1237bed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" +}), 'TurnedInOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInRounded.js b/packages/material-ui-icons/lib/esm/TurnedInRounded.js new file mode 100644 index 00000000000000..b7b14986ae991b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z" +}), 'TurnedInRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInSharp.js b/packages/material-ui-icons/lib/esm/TurnedInSharp.js new file mode 100644 index 00000000000000..23088e1ac6a7ba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5v18l7-3 7 3V3z" +}), 'TurnedInSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TurnedInTwoTone.js b/packages/material-ui-icons/lib/esm/TurnedInTwoTone.js new file mode 100644 index 00000000000000..ba0ae1a65f34a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TurnedInTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97-4.21-1.81-.79-.34-.79.34L7 17.97V5h10v12.97z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m7 17.97 4.21-1.81.79-.34.79.34L17 17.97V5H7z", + opacity: ".3" +}, "1")], 'TurnedInTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Tv.js b/packages/material-ui-icons/lib/esm/Tv.js new file mode 100644 index 00000000000000..6c5f262086827c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Tv.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" +}), 'Tv'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvOff.js b/packages/material-ui-icons/lib/esm/TvOff.js new file mode 100644 index 00000000000000..9454e107134a00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1 3.54 1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l2 2 1.26-1.27L2.27 2.27 1 3.54zM3 19V7h1.46l12 12H3zM21 5h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H7.52l2 2H21v11.48l1.65 1.65c.22-.32.35-.71.35-1.13V7c0-1.11-.89-2-2-2z" +}), 'TvOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvOffOutlined.js b/packages/material-ui-icons/lib/esm/TvOffOutlined.js new file mode 100644 index 00000000000000..2282a9af1ed5c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16 1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" +}), 'TvOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvOffRounded.js b/packages/material-ui-icons/lib/esm/TvOffRounded.js new file mode 100644 index 00000000000000..3963a0861539ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 8v9.88l1.85 1.85c.1-.22.15-.47.15-.73V7c0-1.11-.9-2-2-2h-7.59l2.94-2.94c.2-.2.2-.51 0-.71s-.51-.2-.71 0L12 4.99 8.36 1.35c-.2-.2-.51-.2-.71 0s-.2.51 0 .71L10.59 5H8.12l2 2H20c.55 0 1 .45 1 1zM3.12 2.83a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.82.82C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.29 1.29c.39.39 1.02.39 1.41 0 .36-.36.37-.92.07-1.31h.03L3.12 2.83zM3 18V8c0-.55.45-1 1-1h.46l12 12H4c-.55 0-1-.45-1-1z" +}), 'TvOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvOffSharp.js b/packages/material-ui-icons/lib/esm/TvOffSharp.js new file mode 100644 index 00000000000000..20a26e95c3de6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 7v10.88l2 2V5h-9.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2zM2.41 2.13l-.14.14L1 3.54l1.53 1.53H1V21h17.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" +}), 'TvOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvOffTwoTone.js b/packages/material-ui-icons/lib/esm/TvOffTwoTone.js new file mode 100644 index 00000000000000..e5a0b91ab5394b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h13.46l-12-12H3zm7.12-12L21 17.88V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16 1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" +}, "1")], 'TvOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvOutlined.js b/packages/material-ui-icons/lib/esm/TvOutlined.js new file mode 100644 index 00000000000000..f45efabcdaf901 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" +}), 'TvOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvRounded.js b/packages/material-ui-icons/lib/esm/TvRounded.js new file mode 100644 index 00000000000000..9a0b99fffa952d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z" +}), 'TvRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvSharp.js b/packages/material-ui-icons/lib/esm/TvSharp.js new file mode 100644 index 00000000000000..169639f30554ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z" +}), 'TvSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TvTwoTone.js b/packages/material-ui-icons/lib/esm/TvTwoTone.js new file mode 100644 index 00000000000000..0fa8b1f5ac3edc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TvTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 5h18v12H3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z" +}, "1")], 'TvTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwelveMp.js b/packages/material-ui-icons/lib/esm/TwelveMp.js new file mode 100644 index 00000000000000..fbeba6d8a214c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwelveMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM15.5 9h-2v1h3v1.5H12V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm0 5H17v1.5h-1.5z" +}), 'TwelveMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwelveMpOutlined.js b/packages/material-ui-icons/lib/esm/TwelveMpOutlined.js new file mode 100644 index 00000000000000..3f215f580deddd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwelveMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm8-1.5h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H12V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" +}, "2")], 'TwelveMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwelveMpRounded.js b/packages/material-ui-icons/lib/esm/TwelveMpRounded.js new file mode 100644 index 00000000000000..b1d9c2bbd5c417 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwelveMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 6c0-.55.45-1 1-1h2V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H12V9zM7.75 5.5H9c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75C7.34 7 7 6.66 7 6.25s.34-.75.75-.75zm4.75 12.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'TwelveMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwelveMpSharp.js b/packages/material-ui-icons/lib/esm/TwelveMpSharp.js new file mode 100644 index 00000000000000..58ce7b6fb9a678 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwelveMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm9 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H12V8zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'TwelveMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwelveMpTwoTone.js b/packages/material-ui-icons/lib/esm/TwelveMpTwoTone.js new file mode 100644 index 00000000000000..63b3aab72f9d45 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwelveMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM12 9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h3v1.5H12V9zM7 5.5h3v6H8.5V7H7V5.5zm-1 8c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M8.5 11.5H10v-6H7V7h1.5zm8-1.5h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H12V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" +}, "4")], 'TwelveMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyFourMp.js b/packages/material-ui-icons/lib/esm/TwentyFourMp.js new file mode 100644 index 00000000000000..e355fc4e87c116 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyFourMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm8.5 1h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10zm-3 4H17v1.5h-1.5z" +}), 'TwentyFourMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyFourMpOutlined.js b/packages/material-ui-icons/lib/esm/TwentyFourMpOutlined.js new file mode 100644 index 00000000000000..6082fcd76c6b00 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyFourMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm9.5-1.5h-3.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1zm-.5 3H15V14h1.5v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm5 1.5h1.5V10h1V8.5h-1v-3H16v3h-1.5v-3H13V10h3z" +}, "2")], 'TwentyFourMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyFourMpRounded.js b/packages/material-ui-icons/lib/esm/TwentyFourMpRounded.js new file mode 100644 index 00000000000000..95c09b814c4a4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyFourMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16zm-.25-6h-.25v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V10h-2c-.55 0-1-.45-1-1V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5H16V6.25c0-.41.34-.75.75-.75s.75.34.75.75V8.5h.25c.41 0 .75.34.75.75s-.34.75-.75.75z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'TwentyFourMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyFourMpSharp.js b/packages/material-ui-icons/lib/esm/TwentyFourMpSharp.js new file mode 100644 index 00000000000000..ab0a7e0353dce6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyFourMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17zm.5-7h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10z" +}, "1")], 'TwentyFourMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyFourMpTwoTone.js b/packages/material-ui-icons/lib/esm/TwentyFourMpTwoTone.js new file mode 100644 index 00000000000000..cd23c62f2f2da8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyFourMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-3c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1V16zM13 5.5h1.5v3H16v-3h1.5v3h1V10h-1v1.5H16V10h-3V5.5zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm9.5-1.5h-3.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1zm-.5 3H15V14h1.5v1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm5 1.5h1.5V10h1V8.5h-1v-3H16v3h-1.5v-3H13V10h3z" +}, "4")], 'TwentyFourMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyOneMp.js b/packages/material-ui-icons/lib/esm/TwentyOneMp.js new file mode 100644 index 00000000000000..4a708e0dae0ee2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyOneMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 9H9v1h3v1.5H7.5V9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm3-3.5h3v6h-1.5V7H14V5.5zm1.5 8.5H17v1.5h-1.5z" +}), 'TwentyOneMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyOneMpOutlined.js b/packages/material-ui-icons/lib/esm/TwentyOneMpOutlined.js new file mode 100644 index 00000000000000..933adbcff11ca8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyOneMpOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 11.5H16v-6h-3V7h1.5zM12 10H9V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H7.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H12V10zm-4.5 4h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm7.5 3h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6H15V17zm0-3h1.5v1.5H15V14z" +}, "1")], 'TwentyOneMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyOneMpRounded.js b/packages/material-ui-icons/lib/esm/TwentyOneMpRounded.js new file mode 100644 index 00000000000000..21f1264292539b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyOneMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 9c0-.55.45-1 1-1h2V7H8.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H9v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H8.5c-.55 0-1-.45-1-1V9zm5 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-11.5c0-.41.34-.75.75-.75H15c.55 0 1 .45 1 1v4.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V7h-.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'TwentyOneMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyOneMpSharp.js b/packages/material-ui-icons/lib/esm/TwentyOneMpSharp.js new file mode 100644 index 00000000000000..8795ffa014575e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyOneMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm4.5 5h3V7h-3V5.5H12V9H9v1h3v1.5H7.5V8zm5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1")], 'TwentyOneMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyOneMpTwoTone.js b/packages/material-ui-icons/lib/esm/TwentyOneMpTwoTone.js new file mode 100644 index 00000000000000..a1d50034d2c25c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyOneMpTwoTone.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-13.5h3v6h-1.5V7H13V5.5zm.5 7H17c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6zM7.5 9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H9v1h3v1.5H7.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M14.5 11.5H16v-6h-3V7h1.5zM12 10H9V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H7.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H12V10zm-4.5 4h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm7.5 3h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6H15V17zm0-3h1.5v1.5H15V14z" +}, "3")], 'TwentyOneMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyThreeMp.js b/packages/material-ui-icons/lib/esm/TwentyThreeMp.js new file mode 100644 index 00000000000000..e1dee1374a3b5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyThreeMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm7.5 1.5c0 .55-.45 1-1 1H13V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-2 3.5H17v1.5h-1.5z" +}), 'TwentyThreeMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyThreeMpOutlined.js b/packages/material-ui-icons/lib/esm/TwentyThreeMpOutlined.js new file mode 100644 index 00000000000000..96435741d25d4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyThreeMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5.5v-4c0-.55-.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "2")], 'TwentyThreeMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyThreeMpRounded.js b/packages/material-ui-icons/lib/esm/TwentyThreeMpRounded.js new file mode 100644 index 00000000000000..a5f35a180ef8ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyThreeMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-7c0-.41.34-.75.75-.75H16V9h-1.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H16V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-2.75c-.41 0-.75-.34-.75-.75zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'TwentyThreeMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyThreeMpSharp.js b/packages/material-ui-icons/lib/esm/TwentyThreeMpSharp.js new file mode 100644 index 00000000000000..fb7a9845931c44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyThreeMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 10h3V9h-2V8h2V7h-3V5.5h4.5v6H13V10zm5 7h-3v1.5h-1.5v-6H18V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'TwentyThreeMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyThreeMpTwoTone.js b/packages/material-ui-icons/lib/esm/TwentyThreeMpTwoTone.js new file mode 100644 index 00000000000000..5d0c5d67851a5e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyThreeMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM13 10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H13V10zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5.5v-4c0-.55-.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5c.55 0 1-.45 1-1z" +}, "4")], 'TwentyThreeMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyTwoMp.js b/packages/material-ui-icons/lib/esm/TwentyTwoMp.js new file mode 100644 index 00000000000000..633daad625e604 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyTwoMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm6.5 0h-2v1h3v1.5H13V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm-1 5H17v1.5h-1.5z" +}), 'TwentyTwoMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyTwoMpOutlined.js b/packages/material-ui-icons/lib/esm/TwentyTwoMpOutlined.js new file mode 100644 index 00000000000000..a73ef783662aa3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyTwoMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5 0h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H13V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" +}, "2")], 'TwentyTwoMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyTwoMpRounded.js b/packages/material-ui-icons/lib/esm/TwentyTwoMpRounded.js new file mode 100644 index 00000000000000..85e79b233e9aef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyTwoMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-7.25V9c0-.55.45-1 1-1h2V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H14c-.55 0-1-.45-1-1zm5 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'TwentyTwoMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyTwoMpSharp.js b/packages/material-ui-icons/lib/esm/TwentyTwoMpSharp.js new file mode 100644 index 00000000000000..ddf8d63b246ebf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyTwoMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H13V8zm5 9h-3v1.5h-1.5v-6H18V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'TwentyTwoMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyTwoMpTwoTone.js b/packages/material-ui-icons/lib/esm/TwentyTwoMpTwoTone.js new file mode 100644 index 00000000000000..5a27b6f3c600d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyTwoMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM13 9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h3v1.5H13V9zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10zm6.5 0h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H13V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" +}, "4")], 'TwentyTwoMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyZeroMp.js b/packages/material-ui-icons/lib/esm/TwentyZeroMp.js new file mode 100644 index 00000000000000..bc30f387c99fc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyZeroMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 7H16v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm2-8c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm5.5 5H17v1.5h-1.5z" +}), 'TwentyZeroMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyZeroMpOutlined.js b/packages/material-ui-icons/lib/esm/TwentyZeroMpOutlined.js new file mode 100644 index 00000000000000..697bbcca2af27a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyZeroMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H14c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H16v3h-1.5V7zM11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10z" +}, "2")], 'TwentyZeroMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyZeroMpRounded.js b/packages/material-ui-icons/lib/esm/TwentyZeroMpRounded.js new file mode 100644 index 00000000000000..0ff18c20764788 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyZeroMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9c0-.55.45-1 1-1h2V7H7.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1V9zm6 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zm.5-7.25v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1zm5 5.5c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15zm-.5-7H16v3h-1.5z" +}, "1")], 'TwentyZeroMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyZeroMpSharp.js b/packages/material-ui-icons/lib/esm/TwentyZeroMpSharp.js new file mode 100644 index 00000000000000..37360e763252e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyZeroMpSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.5 7H16v3h-1.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h4.5v6H13v-6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "2")], 'TwentyZeroMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwentyZeroMpTwoTone.js b/packages/material-ui-icons/lib/esm/TwentyZeroMpTwoTone.js new file mode 100644 index 00000000000000..57455a4154ead6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwentyZeroMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zm-5-7c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4zM6.5 9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1H8v1h3v1.5H6.5V9zM6 13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 7H16v3h-1.5zm.5 7h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6-1.5v6H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5zm3 3H15V14h1.5v1.5z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M14 11.5h2.5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H14c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5H16v3h-1.5V7zM11 10H8V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H6.5V7h3v1h-2c-.55 0-1 .45-1 1v2.5H11V10z" +}, "4")], 'TwentyZeroMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Twitter.js b/packages/material-ui-icons/lib/esm/Twitter.js new file mode 100644 index 00000000000000..8d322d15e7831a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Twitter.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z" +}), 'Twitter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoK.js b/packages/material-ui-icons/lib/esm/TwoK.js new file mode 100644 index 00000000000000..b5a8e2e5fe5254 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoK.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h3V15H6.5v-2.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm8 2.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'TwoK'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKOutlined.js b/packages/material-ui-icons/lib/esm/TwoKOutlined.js new file mode 100644 index 00000000000000..7c55f9fccc4788 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11 13.5H8v-1h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6.5v1.5h3v1h-2c-.55 0-1 .45-1 1V15H11v-1.5zm3.5-.75L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "1")], 'TwoKOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKPlus.js b/packages/material-ui-icons/lib/esm/TwoKPlus.js new file mode 100644 index 00000000000000..2cb3bdbf54b8e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKPlus.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 8.5c0 .55-.45 1-1 1h-2v1h3V15H5v-2.5c0-.55.45-1 1-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v1.5zm4.75 3.5-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM20 12.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z" +}), 'TwoKPlus'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKPlusOutlined.js b/packages/material-ui-icons/lib/esm/TwoKPlusOutlined.js new file mode 100644 index 00000000000000..8e058b9cefd16e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKPlusOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 13.5H7.5v-1H9c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6v1.5h2.5v1H7c-.55 0-1 .45-1 1V15h4v-1.5zm2.5-.75L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "1")], 'TwoKPlusOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKPlusRounded.js b/packages/material-ui-icons/lib/esm/TwoKPlusRounded.js new file mode 100644 index 00000000000000..ff848707d2a2f6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKPlusRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8.5c0 .55-.45 1-1 1H7.5v1h1.75c.41 0 .75.34.75.75s-.34.75-.75.75H7c-.55 0-1-.45-1-1v-1.5c0-.55.45-1 1-1h1.5v-1H6.75c-.41 0-.75-.34-.75-.75S6.34 9 6.75 9H9c.55 0 1 .45 1 1v1.5zm4.04 3.23-1.54-1.98v1.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.5l1.54-1.98c.13-.17.34-.27.55-.27.58 0 .91.66.56 1.12L13.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12-.21 0-.42-.1-.55-.27zm4.46-2.23h-1v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1h-1c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h1v-1c0-.28.22-.5.5-.5s.5.22.5.5v1h1c.28 0 .5.22.5.5s-.22.5-.5.5z" +}), 'TwoKPlusRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKPlusSharp.js b/packages/material-ui-icons/lib/esm/TwoKPlusSharp.js new file mode 100644 index 00000000000000..1b62a7af7ec2d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKPlusSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zm-11 9.5H7.5v1H10V15H6v-3.5h2.5v-1H6V9h4v3.5zm4.25 2.5-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" +}), 'TwoKPlusSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKPlusTwoTone.js b/packages/material-ui-icons/lib/esm/TwoKPlusTwoTone.js new file mode 100644 index 00000000000000..21abbc1491dc29 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKPlusTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5v14zm6-10h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75l-1.75-2.25V15H11V9zm-5 3.5c0-.55.45-1 1-1h1.5v-1H6V9h3c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H7.5v1H10V15H6v-2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8.5h-1.5V10h-1v1.5H15v1h1.5V14h1v-1.5H19V19H5V5h14v6.5z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M10 13.5H7.5v-1H9c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6v1.5h2.5v1H7c-.55 0-1 .45-1 1V15h4v-1.5zm2.5-.75L14.25 15H16l-2.25-3L16 9h-1.75l-1.75 2.25V9H11v6h1.5z" +}, "2")], 'TwoKPlusTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKRounded.js b/packages/material-ui-icons/lib/esm/TwoKRounded.js new file mode 100644 index 00000000000000..5e6bc64c7219a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H7.5c-.55 0-1-.45-1-1v-1.5c0-.55.45-1 1-1h2v-1H7.25c-.41 0-.75-.34-.75-.75S6.84 9 7.25 9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm6.59 2.5c-.22 0-.42-.1-.55-.27l-1.54-1.98v1.55c0 .39-.31.7-.7.7h-.1c-.39 0-.7-.31-.7-.7V9.7c0-.39.31-.7.7-.7h.09c.39 0 .7.31.7.7v1.55l1.54-1.98c.14-.17.35-.27.56-.27.58 0 .91.66.56 1.12L15.75 12l1.41 1.88c.34.46.01 1.12-.57 1.12z" +}), 'TwoKRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKSharp.js b/packages/material-ui-icons/lib/esm/TwoKSharp.js new file mode 100644 index 00000000000000..dd38e1e85a5ca4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3v18h18V3zM8 12.5v1h3V15H6.5v-3.5h3v-1h-3V9H11v3.5H8zM18 15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" +}), 'TwoKSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoKTwoTone.js b/packages/material-ui-icons/lib/esm/TwoKTwoTone.js new file mode 100644 index 00000000000000..af2a54deb95696 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoKTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm8-10h1.5v2.25L16.25 9H18l-2.25 3L18 15h-1.75l-1.75-2.25V15H13V9zm-6.5 3.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H8v1h3V15H6.5v-2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M11 13.5H8v-1h2c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1H6.5v1.5h3v1h-2c-.55 0-1 .45-1 1V15H11v-1.5zm3.5-.75L16.25 15H18l-2.25-3L18 9h-1.75l-1.75 2.25V9H13v6h1.5z" +}, "2")], 'TwoKTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoMp.js b/packages/material-ui-icons/lib/esm/TwoMp.js new file mode 100644 index 00000000000000..1cd5959358b833 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoMp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2-9.5h-2v1h3v1.5H10V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm2 5H17v1.5h-1.5z" +}), 'TwoMp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoMpOutlined.js b/packages/material-ui-icons/lib/esm/TwoMpOutlined.js new file mode 100644 index 00000000000000..a3a432201d929d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoMpOutlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H10V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" +}, "2")], 'TwoMpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoMpRounded.js b/packages/material-ui-icons/lib/esm/TwoMpRounded.js new file mode 100644 index 00000000000000..7f6ed115ef0e41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoMpRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 6c0-.55.45-1 1-1h2V7h-2.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.75c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h2.25c.41 0 .75.34.75.75s-.34.75-.75.75H11c-.55 0-1-.45-1-1V9zm2.5 8.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V14h-1v3.75c0 .41-.34.75-.75.75S6 18.16 6 17.75V13.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v4.25zM18 16c0 .55-.45 1-1 1h-2v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V13.5c0-.55.45-1 1-1H17c.55 0 1 .45 1 1V16z" +}, "1")], 'TwoMpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoMpSharp.js b/packages/material-ui-icons/lib/esm/TwoMpSharp.js new file mode 100644 index 00000000000000..f3b08866f58ea7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoMpSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 3v18h18V3H3zm7 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H10V8zm2.5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z" +}, "1")], 'TwoMpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoMpTwoTone.js b/packages/material-ui-icons/lib/esm/TwoMpTwoTone.js new file mode 100644 index 00000000000000..afadcb598ec9fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoMpTwoTone.js @@ -0,0 +1,15 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V5H5v14zm13-5.5V16c0 .55-.45 1-1 1h-2v1.5h-1.5v-6H17c.55 0 1 .45 1 1zM10 9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1h-2v1h3v1.5H10V9zm-4 4.5c0-.55.45-1 1-1h4.5c.55 0 1 .45 1 1v5H11V14h-1v3H8.5v-3h-1v4.5H6v-5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 14h1.5v1.5H15z", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M7.5 14h1v3H10v-3h1v4.5h1.5v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5h1.5V14zm6 4.5H15V17h2c.55 0 1-.45 1-1v-2.5c0-.55-.45-1-1-1h-3.5v6zM15 14h1.5v1.5H15V14z" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" +}, "3"), /*#__PURE__*/_jsx("path", { + d: "M14.5 10h-3V9h2c.55 0 1-.45 1-1V6.5c0-.55-.45-1-1-1H10V7h3v1h-2c-.55 0-1 .45-1 1v2.5h4.5V10z" +}, "4")], 'TwoMpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoWheeler.js b/packages/material-ui-icons/lib/esm/TwoWheeler.js new file mode 100644 index 00000000000000..46753fc8f545eb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoWheeler.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm16 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'TwoWheeler'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoWheelerOutlined.js b/packages/material-ui-icons/lib/esm/TwoWheelerOutlined.js new file mode 100644 index 00000000000000..0d27bbc4a99b1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoWheelerOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'TwoWheelerOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoWheelerRounded.js b/packages/material-ui-icons/lib/esm/TwoWheelerRounded.js new file mode 100644 index 00000000000000..8bdb36359210aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoWheelerRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 11c-.18 0-.36.03-.53.05L17.41 9H19c.55 0 1-.45 1-1v-.38c0-.74-.78-1.23-1.45-.89l-2.28 1.14L13.7 5.3c-.18-.19-.44-.3-.7-.3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2.17c.27 0 .52.11.71.29L14.59 9h-3.35c-.16 0-.31.04-.45.11l-3.14 1.57c-.38.19-.85.12-1.15-.19l-1.2-1.2C5.11 9.11 4.85 9 4.59 9H1c-.55 0-1 .45-1 1s.45 1 1 1h3C1.48 11-.49 13.32.11 15.94c.33 1.45 1.5 2.62 2.95 2.95C5.68 19.49 8 17.52 8 15l1.41 1.41c.38.38.89.59 1.42.59h1.01c.72 0 1.38-.38 1.74-1.01l2.91-5.09 1.01 1.01c-1.13.91-1.76 2.41-1.38 4.05.34 1.44 1.51 2.61 2.95 2.94 2.61.59 4.93-1.39 4.93-3.9 0-2.21-1.79-4-4-4zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm16 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'TwoWheelerRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoWheelerSharp.js b/packages/material-ui-icons/lib/esm/TwoWheelerSharp.js new file mode 100644 index 00000000000000..b0fb5a8933f63c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoWheelerSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'TwoWheelerSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/TwoWheelerTwoTone.js b/packages/material-ui-icons/lib/esm/TwoWheelerTwoTone.js new file mode 100644 index 00000000000000..e9cb578cb322cc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/TwoWheelerTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'TwoWheelerTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Umbrella.js b/packages/material-ui-icons/lib/esm/Umbrella.js new file mode 100644 index 00000000000000..54579700b232c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Umbrella.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" +}), 'Umbrella'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UmbrellaOutlined.js b/packages/material-ui-icons/lib/esm/UmbrellaOutlined.js new file mode 100644 index 00000000000000..9cfb55e1119416 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UmbrellaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" +}), 'UmbrellaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UmbrellaRounded.js b/packages/material-ui-icons/lib/esm/UmbrellaRounded.js new file mode 100644 index 00000000000000..4149ad957045fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UmbrellaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.12 6.28-2.62.64L13 5.77V3.4c0-.26.22-.48.5-.48.23 0 .43.16.49.36.11.42.5.72.95.72.55 0 1-.45 1-1 0-.1-.02-.2-.05-.3-.3-.98-1.26-1.7-2.39-1.7C12.12 1 11 2.07 11 3.4v2.37L9.5 6.92l-2.62-.64c-.38-.09-.72.27-.6.64l4.77 14.39c.15.46.55.69.95.69s.8-.23.95-.69l4.77-14.39c.12-.37-.22-.73-.6-.64zM11 14.8 9.03 8.86l.92.23.76-.58.29-.22v6.51zm2 0V8.29l.28.22.76.58.92-.23L13 14.8z" +}), 'UmbrellaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UmbrellaSharp.js b/packages/material-ui-icons/lib/esm/UmbrellaSharp.js new file mode 100644 index 00000000000000..08c0dc722c560b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UmbrellaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" +}), 'UmbrellaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UmbrellaTwoTone.js b/packages/material-ui-icons/lib/esm/UmbrellaTwoTone.js new file mode 100644 index 00000000000000..fed7669bc6fc16 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UmbrellaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13.28 8.5.76.58.92-.23L13 14.8V8.29l.28.21zm-4.25.36L11 14.8V8.29l-.28.21-.76.59-.93-.23z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14.5 6.92 13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59.76-.58.28-.22v6.51L9.03 8.86l.93.23z" +}, "1")], 'UmbrellaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Unarchive.js b/packages/material-ui-icons/lib/esm/Unarchive.js new file mode 100644 index 00000000000000..ff88c6dbce7e72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Unarchive.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.55 5.22-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.15.55L3.46 5.22C3.17 5.57 3 6.01 3 6.5V19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.49-.17-.93-.45-1.28zM12 9.5l5.5 5.5H14v2h-4v-2H6.5L12 9.5zM5.12 5l.82-1h12l.93 1H5.12z" +}), 'Unarchive'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnarchiveOutlined.js b/packages/material-ui-icons/lib/esm/UnarchiveOutlined.js new file mode 100644 index 00000000000000..52ac326a8f6084 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnarchiveOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM5 19V8h14v11H5zm3-5h2.55v3h2.9v-3H16l-4-4z" +}), 'UnarchiveOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnarchiveRounded.js b/packages/material-ui-icons/lib/esm/UnarchiveRounded.js new file mode 100644 index 00000000000000..979e307e90bdb4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnarchiveRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m20.55 5.22-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.15.55L3.46 5.22C3.17 5.57 3 6.01 3 6.5V19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.49-.17-.93-.45-1.28zm-8.2 4.63L17.5 15H14v2h-4v-2H6.5l5.15-5.15c.19-.19.51-.19.7 0zM5.12 5l.82-1h12l.93 1H5.12z" +}), 'UnarchiveRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnarchiveSharp.js b/packages/material-ui-icons/lib/esm/UnarchiveSharp.js new file mode 100644 index 00000000000000..58a99be7d60b1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnarchiveSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM14 15v2h-4v-2H6.5L12 9.5l5.5 5.5H14zM5.12 5l.81-1h12l.94 1H5.12z" +}), 'UnarchiveSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnarchiveTwoTone.js b/packages/material-ui-icons/lib/esm/UnarchiveTwoTone.js new file mode 100644 index 00000000000000..8637402146a952 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnarchiveTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 19h14V8H5v11zm7-9 4 4h-2.55v3h-2.91v-3H8l4-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m20.54 5.23-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM19 19H5V8h14v11zm-8.45-2h2.9v-3H16l-4-4-4 4h2.55z" +}, "1")], 'UnarchiveTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Undo.js b/packages/material-ui-icons/lib/esm/Undo.js new file mode 100644 index 00000000000000..71a6e1ec4f4970 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Undo.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" +}), 'Undo'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UndoOutlined.js b/packages/material-ui-icons/lib/esm/UndoOutlined.js new file mode 100644 index 00000000000000..43829d74b3de6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UndoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" +}), 'UndoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UndoRounded.js b/packages/material-ui-icons/lib/esm/UndoRounded.js new file mode 100644 index 00000000000000..6787f28b5e2663 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UndoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L3.71 8.71C3.08 8.08 2 8.52 2 9.41V15c0 .55.45 1 1 1h5.59c.89 0 1.34-1.08.71-1.71l-1.91-1.91c1.39-1.16 3.16-1.88 5.12-1.88 3.16 0 5.89 1.84 7.19 4.5.27.56.91.84 1.5.64.71-.23 1.07-1.04.75-1.72C20.23 10.42 16.65 8 12.5 8z" +}), 'UndoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UndoSharp.js b/packages/material-ui-icons/lib/esm/UndoSharp.js new file mode 100644 index 00000000000000..ff68c4abae50d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UndoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" +}), 'UndoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UndoTwoTone.js b/packages/material-ui-icons/lib/esm/UndoTwoTone.js new file mode 100644 index 00000000000000..e646cbc9c22462 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UndoTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" +}), 'UndoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldLess.js b/packages/material-ui-icons/lib/esm/UnfoldLess.js new file mode 100644 index 00000000000000..f3402f47d1d050 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldLess.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" +}), 'UnfoldLess'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldLessOutlined.js b/packages/material-ui-icons/lib/esm/UnfoldLessOutlined.js new file mode 100644 index 00000000000000..dcbd729e4529ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldLessOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" +}), 'UnfoldLessOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldLessRounded.js b/packages/material-ui-icons/lib/esm/UnfoldLessRounded.js new file mode 100644 index 00000000000000..c580ca6563b7b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldLessRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.12 19.3c.39.39 1.02.39 1.41 0L12 16.83l2.47 2.47c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-3.17-3.17a.9959.9959 0 0 0-1.41 0l-3.17 3.17c-.4.38-.4 1.02-.01 1.41zm7.76-14.6a.9959.9959 0 0 0-1.41 0L12 7.17 9.53 4.7a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.03 0 1.42l3.17 3.17c.39.39 1.02.39 1.41 0l3.17-3.17c.4-.39.4-1.03.01-1.42z" +}), 'UnfoldLessRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldLessSharp.js b/packages/material-ui-icons/lib/esm/UnfoldLessSharp.js new file mode 100644 index 00000000000000..7a21f25f5c1ba8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldLessSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" +}), 'UnfoldLessSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldLessTwoTone.js b/packages/material-ui-icons/lib/esm/UnfoldLessTwoTone.js new file mode 100644 index 00000000000000..7baeb183da5bd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldLessTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.41 18.59 8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" +}), 'UnfoldLessTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldMore.js b/packages/material-ui-icons/lib/esm/UnfoldMore.js new file mode 100644 index 00000000000000..ce8d882cbc26d8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldMore.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" +}), 'UnfoldMore'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldMoreOutlined.js b/packages/material-ui-icons/lib/esm/UnfoldMoreOutlined.js new file mode 100644 index 00000000000000..e51eac2d68270a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldMoreOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" +}), 'UnfoldMoreOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldMoreRounded.js b/packages/material-ui-icons/lib/esm/UnfoldMoreRounded.js new file mode 100644 index 00000000000000..01d70af360304a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldMoreRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m12 5.83 2.46 2.46c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 3.7a.9959.9959 0 0 0-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 5.83zm0 12.34-2.46-2.46a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L12 18.17z" +}), 'UnfoldMoreRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldMoreSharp.js b/packages/material-ui-icons/lib/esm/UnfoldMoreSharp.js new file mode 100644 index 00000000000000..0c5ace82e8d537 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldMoreSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" +}), 'UnfoldMoreSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnfoldMoreTwoTone.js b/packages/material-ui-icons/lib/esm/UnfoldMoreTwoTone.js new file mode 100644 index 00000000000000..505e0d147b1d86 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnfoldMoreTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.83 15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" +}), 'UnfoldMoreTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Unpublished.js b/packages/material-ui-icons/lib/esm/Unpublished.js new file mode 100644 index 00000000000000..e55647fb617deb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Unpublished.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42zm-10.6-4.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18 1.41 1.41-1.59 1.59zm3-5.84-7.1-7.1C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51L15 12.17l2.65-2.65-1.41-1.41-2.65 2.65z" +}), 'Unpublished'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnpublishedOutlined.js b/packages/material-ui-icons/lib/esm/UnpublishedOutlined.js new file mode 100644 index 00000000000000..aca7be938f3073 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnpublishedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12zm9.72 4.41-1.41-1.41-2.65 2.65 1.41 1.41 2.65-2.65zm2.12 13.08-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm-3.72-3.73L12.18 15l-1.59 1.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18-5.65-5.65C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12z" +}), 'UnpublishedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnpublishedRounded.js b/packages/material-ui-icons/lib/esm/UnpublishedRounded.js new file mode 100644 index 00000000000000..ef1f8aebed3784 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnpublishedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.56 1.56c-1.25 1.88-1.88 4.21-1.59 6.7.53 4.54 4.21 8.22 8.74 8.74 2.49.29 4.81-.34 6.7-1.59l1.56 1.56c.39.39 1.02.39 1.41 0 .4-.38.4-1.01.01-1.4zm-10.61-4.6-2.83-2.83a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l2.12 2.12.18-.18L12.17 15l-.88.88c-.39.4-1.02.4-1.41.01zm3.71-5.13-7.1-7.1c1.88-1.25 4.21-1.88 6.7-1.59 4.54.53 8.22 4.21 8.74 8.74.29 2.49-.34 4.82-1.59 6.7L15 12.17l1.94-1.94c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-1.94 1.94z" +}), 'UnpublishedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnpublishedSharp.js b/packages/material-ui-icons/lib/esm/UnpublishedSharp.js new file mode 100644 index 00000000000000..7c0b28b5907e71 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnpublishedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42zm-10.6-4.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18 1.41 1.41-1.59 1.59zm3-5.84-7.1-7.1C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51L15 12.17l2.65-2.65-1.41-1.41-2.65 2.65z" +}), 'UnpublishedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnpublishedTwoTone.js b/packages/material-ui-icons/lib/esm/UnpublishedTwoTone.js new file mode 100644 index 00000000000000..36f21d7615ad6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnpublishedTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13.59 10.76 2.65-2.65 1.41 1.41L15 12.17l3.88 3.88C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12l5.65 5.64zm4.07-1.23-1.41-1.41-2.65 2.65 1.41 1.41 2.65-2.65zm-1.6 9.35L12.18 15l-1.59 1.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18-5.65-5.65C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.94 5.12 6.49 3.66C8.07 2.61 9.96 2 12 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46C19.59 14.86 20 13.48 20 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12zm9.72 4.41-1.41-1.41-2.65 2.65 1.41 1.41 2.65-2.65zm2.12 13.08-2.27-2.27C15.93 21.39 14.04 22 12 22 6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm-3.72-3.73L12.18 15l-1.59 1.59-4.24-4.24 1.41-1.41 2.83 2.83.18-.18-5.65-5.65C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8 1.48 0 2.86-.41 4.06-1.12z" +}, "1")], 'UnpublishedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Unsubscribe.js b/packages/material-ui-icons/lib/esm/Unsubscribe.js new file mode 100644 index 00000000000000..b299ff774cf2c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Unsubscribe.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.76.26 2.5.69V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55zM12 10.5 5 7V5l7 3.5L19 5v2l-7 3.5z" +}), 'Unsubscribe'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnsubscribeOutlined.js b/packages/material-ui-icons/lib/esm/UnsubscribeOutlined.js new file mode 100644 index 00000000000000..85906b78a81bc7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnsubscribeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z" +}), 'UnsubscribeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnsubscribeRounded.js b/packages/material-ui-icons/lib/esm/UnsubscribeRounded.js new file mode 100644 index 00000000000000..5363023d6d1d7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnsubscribeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 11.5c.92 0 1.75.26 2.49.69V5c0-1.1-.89-2-1.99-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5zm-5.61-1.45c-.56.28-1.23.28-1.79 0l-5.61-2.8c-.3-.15-.49-.46-.49-.8 0-.66.7-1.1 1.29-.8L12 8.5l5.71-2.85c.59-.3 1.29.13 1.29.8 0 .34-.19.65-.49.8l-5.62 2.8zM18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 3.5c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5z" +}), 'UnsubscribeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnsubscribeSharp.js b/packages/material-ui-icons/lib/esm/UnsubscribeSharp.js new file mode 100644 index 00000000000000..a8d247bb5620cd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnsubscribeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.75.26 2.49.69V3H3v14h10.55zM12 10.5 5 7V5l7 3.5L19 5v2l-7 3.5z" +}), 'UnsubscribeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UnsubscribeTwoTone.js b/packages/material-ui-icons/lib/esm/UnsubscribeTwoTone.js new file mode 100644 index 00000000000000..be9d068941b493 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UnsubscribeTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18.99 5H5l7 3.5zm.01 8.05V7l-7 3.5L5 7v8h10.35c.56-1.18 1.76-2 3.15-2 .17 0 .34.03.5.05z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z" +}, "1")], 'UnsubscribeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Upcoming.js b/packages/material-ui-icons/lib/esm/Upcoming.js new file mode 100644 index 00000000000000..dad237ef773474 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Upcoming.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.16 7.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm-4.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM20 12h-5c0 1.66-1.34 3-3 3s-3-1.34-3-3H4c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2z" +}), 'Upcoming'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpcomingOutlined.js b/packages/material-ui-icons/lib/esm/UpcomingOutlined.js new file mode 100644 index 00000000000000..eed859a93fedc0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpcomingOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.6 10.81 16.19 9.4l3.56-3.55 1.41 1.41c-.11.03-3.56 3.55-3.56 3.55zM13 3h-2v5h2V3zm-6.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM20 14h-3.42c-.77 1.76-2.54 3-4.58 3s-3.81-1.24-4.58-3H4v5h16v-5m0-2c1.1 0 2 .9 2 2v5c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-5c0-1.1.9-2 2-2h5c0 1.66 1.34 3 3 3s3-1.34 3-3h5z" +}), 'UpcomingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpcomingRounded.js b/packages/material-ui-icons/lib/esm/UpcomingRounded.js new file mode 100644 index 00000000000000..6d41c33bc2d2b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpcomingRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.45 6.55c-.38-.38-1.01-.38-1.39 0L16.89 8.7c-.39.38-.39 1.01 0 1.39l.01.01c.39.39 1.01.39 1.4 0 .62-.63 1.52-1.54 2.15-2.17.38-.38.38-1 0-1.38zM12.02 3h-.03c-.55 0-.99.44-.99.98v3.03c0 .55.44.99.98.99h.03c.55 0 .99-.44.99-.98V3.98c0-.54-.44-.98-.98-.98zM7.1 10.11l.01-.01c.38-.38.38-1.01 0-1.39L4.96 6.54c-.38-.39-1.01-.39-1.39 0l-.02.01c-.39.39-.39 1.01 0 1.39.63.62 1.53 1.54 2.15 2.17.39.38 1.02.38 1.4 0zM12 15c-1.24 0-2.31-.75-2.76-1.83-.32-.74-1.1-1.17-1.9-1.17H4c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2h-3.34c-.8 0-1.58.43-1.9 1.17C14.31 14.25 13.24 15 12 15" +}), 'UpcomingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpcomingSharp.js b/packages/material-ui-icons/lib/esm/UpcomingSharp.js new file mode 100644 index 00000000000000..d532bbde7cd15a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpcomingSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21.16 7.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm-4.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM22 12h-7c0 1.66-1.34 3-3 3s-3-1.34-3-3H2v9h20v-9z" +}), 'UpcomingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpcomingTwoTone.js b/packages/material-ui-icons/lib/esm/UpcomingTwoTone.js new file mode 100644 index 00000000000000..0c2df7bb489c10 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpcomingTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 17c-2.04 0-3.81-1.24-4.58-3H4v5h16v-5h-3.42c-.77 1.76-2.54 3-4.58 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m21.16 7.26-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm9 9h-5c0 1.66-1.34 3-3 3s-3-1.34-3-3H4c-1.1 0-2 .9-2 2v5c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm0 7H4v-5h3.42c.77 1.76 2.54 3 4.58 3s3.81-1.24 4.58-3H20v5zM6.4 10.81 7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55z" +}, "1")], 'UpcomingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Update.js b/packages/material-ui-icons/lib/esm/Update.js new file mode 100644 index 00000000000000..6b8b59a9f1ca6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Update.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-.1-2.73 2.71-2.73 7.08 0 9.79s7.15 2.71 9.88 0C18.32 15.65 19 14.08 19 12.1h2c0 1.98-.88 4.55-2.64 6.29-3.51 3.48-9.21 3.48-12.72 0-3.5-3.47-3.53-9.11-.02-12.58s9.14-3.47 12.65 0L21 3v7.12zM12.5 8v4.25l3.5 2.08-.72 1.21L11 13V8h1.5z" +}), 'Update'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateDisabled.js b/packages/material-ui-icons/lib/esm/UpdateDisabled.js new file mode 100644 index 00000000000000..b146133281b8b7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateDisabled.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.67 5.84 7.22 4.39C8.6 3.51 10.24 3 12 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z" +}), 'UpdateDisabled'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateDisabledOutlined.js b/packages/material-ui-icons/lib/esm/UpdateDisabledOutlined.js new file mode 100644 index 00000000000000..9778a42957f6a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateDisabledOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.94 13c-.15 1.38-.62 2.67-1.33 3.79l-1.47-1.47c.38-.71.65-1.49.77-2.32h2.03zM8.67 5.84C9.66 5.31 10.8 5 12 5c2.37 0 4.47 1.19 5.74 3H15v2h6V4h-2v2.36C17.35 4.32 14.83 3 12 3c-1.76 0-3.4.51-4.78 1.39l1.45 1.45zM11 7v1.17l2 2V7h-2zm8.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85z" +}), 'UpdateDisabledOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateDisabledRounded.js b/packages/material-ui-icons/lib/esm/UpdateDisabledRounded.js new file mode 100644 index 00000000000000..8a6efcc0fcbcd6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateDisabledRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.49 20.49 3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l2.31 2.31C3.57 8.56 3.05 10.09 3 11.74 2.86 16.83 6.94 21 12 21c1.76 0 3.39-.52 4.78-1.39l2.29 2.29c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zm-9.77-1.6c-2.78-.49-5.04-2.71-5.58-5.47-.34-1.72-.03-3.36.72-4.73l9.46 9.46c-1.34.72-2.92 1.03-4.6.74zM13 8v2.17l-2-2V8c0-.55.45-1 1-1s1 .45 1 1zm7.72 6.23c-.23.92-.61 1.77-1.1 2.55l-1.47-1.47c.27-.5.49-1.03.63-1.59.11-.42.51-.72.95-.72.65 0 1.15.61.99 1.23zM7.24 4.41c1.46-.93 3.18-1.45 5-1.41 2.65.07 5 1.28 6.6 3.16l1.31-1.31c.31-.31.85-.09.85.36V9.5c0 .28-.22.5-.5.5h-4.29c-.45 0-.67-.54-.35-.85l1.55-1.55C16.12 6.02 14.18 5 12 5c-1.2 0-2.33.31-3.32.85L7.24 4.41z" +}), 'UpdateDisabledRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateDisabledSharp.js b/packages/material-ui-icons/lib/esm/UpdateDisabledSharp.js new file mode 100644 index 00000000000000..c6661c291cd7c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateDisabledSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.67 5.84 7.22 4.39C8.6 3.51 10.24 3 12 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z" +}), 'UpdateDisabledSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateDisabledTwoTone.js b/packages/material-ui-icons/lib/esm/UpdateDisabledTwoTone.js new file mode 100644 index 00000000000000..606a5fc9a5ee99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateDisabledTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8.67 5.84 7.22 4.39C8.6 3.51 10.24 3 12 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61-3-3C15.39 20.48 13.76 21 12 21c-4.97 0-9-4.03-9-9 0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67C5.31 9.66 5 10.8 5 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z" +}), 'UpdateDisabledTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateOutlined.js b/packages/material-ui-icons/lib/esm/UpdateOutlined.js new file mode 100644 index 00000000000000..0c8d47bec9899f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64C16.74 4.01 14.49 3 12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z" +}), 'UpdateOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateRounded.js b/packages/material-ui-icons/lib/esm/UpdateRounded.js new file mode 100644 index 00000000000000..60d6c951c31f84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.1-.82-.26-1.03l-2.87-1.71v-3.4c-.01-.4-.35-.74-.76-.74s-.75.34-.75.75zm10 .75V4.21c0-.45-.54-.67-.85-.35l-1.78 1.78c-1.81-1.81-4.39-2.85-7.21-2.6-4.19.38-7.64 3.75-8.1 7.94C2.46 16.4 6.69 21 12 21c4.59 0 8.38-3.44 8.93-7.88.07-.6-.4-1.12-1-1.12-.5 0-.92.37-.98.86-.43 3.49-3.44 6.19-7.05 6.14-3.71-.05-6.84-3.18-6.9-6.9C4.94 8.2 8.11 5 12 5c1.93 0 3.68.79 4.95 2.05l-2.09 2.09c-.32.32-.1.86.35.86h5.29c.28 0 .5-.22.5-.5z" +}), 'UpdateRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateSharp.js b/packages/material-ui-icons/lib/esm/UpdateSharp.js new file mode 100644 index 00000000000000..4b15e938129377 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64C16.74 4.01 14.49 3 12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z" +}), 'UpdateSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpdateTwoTone.js b/packages/material-ui-icons/lib/esm/UpdateTwoTone.js new file mode 100644 index 00000000000000..109aa7d7fb7da6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpdateTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64C16.74 4.01 14.49 3 12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z" +}), 'UpdateTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Upgrade.js b/packages/material-ui-icons/lib/esm/Upgrade.js new file mode 100644 index 00000000000000..4d13c78207520d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Upgrade.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" +}), 'Upgrade'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpgradeOutlined.js b/packages/material-ui-icons/lib/esm/UpgradeOutlined.js new file mode 100644 index 00000000000000..f4785dec6ee5c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpgradeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" +}), 'UpgradeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpgradeRounded.js b/packages/material-ui-icons/lib/esm/UpgradeRounded.js new file mode 100644 index 00000000000000..411fa6f8e3fb1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpgradeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1zM11 7.99V15c0 .55.45 1 1 1s1-.45 1-1V7.99h1.79c.45 0 .67-.54.35-.85l-2.79-2.78c-.2-.19-.51-.19-.71 0L8.86 7.14c-.32.31-.1.85.35.85H11z" +}), 'UpgradeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpgradeSharp.js b/packages/material-ui-icons/lib/esm/UpgradeSharp.js new file mode 100644 index 00000000000000..d95032a0372d66 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpgradeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" +}), 'UpgradeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UpgradeTwoTone.js b/packages/material-ui-icons/lib/esm/UpgradeTwoTone.js new file mode 100644 index 00000000000000..0a24ef18a19e1e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UpgradeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" +}), 'UpgradeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Upload.js b/packages/material-ui-icons/lib/esm/Upload.js new file mode 100644 index 00000000000000..0b9ebe377506e6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Upload.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 20h14v-2H5v2zm0-10h4v6h6v-6h4l-7-7-7 7z" +}), 'Upload'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadFile.js b/packages/material-ui-icons/lib/esm/UploadFile.js new file mode 100644 index 00000000000000..d4fd51bdacdec4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadFile.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 15.01l1.41 1.41L11 14.84V19h2v-4.16l1.59 1.59L16 15.01 12.01 11z" +}), 'UploadFile'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadFileOutlined.js b/packages/material-ui-icons/lib/esm/UploadFileOutlined.js new file mode 100644 index 00000000000000..c189d60c3e7a72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadFileOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 15.01l1.41 1.41L11 14.84V19h2v-4.16l1.59 1.59L16 15.01 12.01 11 8 15.01z" +}), 'UploadFileOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadFileRounded.js b/packages/material-ui-icons/lib/esm/UploadFileRounded.js new file mode 100644 index 00000000000000..b56b535137361e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadFileRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.41 7.41-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM14.8 15H13v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H9.21c-.45 0-.67-.54-.35-.85l2.8-2.79c.2-.19.51-.19.71 0l2.79 2.79c.3.31.08.85-.36.85zM14 9c-.55 0-1-.45-1-1V3.5L18.5 9H14z" +}), 'UploadFileRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadFileSharp.js b/packages/material-ui-icons/lib/esm/UploadFileSharp.js new file mode 100644 index 00000000000000..b12626f6e97478 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadFileSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 2H4v20h16V8l-6-6zm-1 13v4h-2v-4H8l4.01-4L16 15h-3zm0-6V3.5L18.5 9H13z" +}), 'UploadFileSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadFileTwoTone.js b/packages/material-ui-icons/lib/esm/UploadFileTwoTone.js new file mode 100644 index 00000000000000..a2350e8446352b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadFileTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13 4H6v16h12V9h-5V4zm3 11h-3v4h-2v-4H8l4.01-4L16 15z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M8 15h3v4h2v-4h3l-3.99-4z" +}, "2")], 'UploadFileTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadOutlined.js b/packages/material-ui-icons/lib/esm/UploadOutlined.js new file mode 100644 index 00000000000000..d74eadab2b5a4a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h6v-6h4l-7-7-7 7h4v6zm3-10.17L14.17 8H13v6h-2V8H9.83L12 5.83zM5 18h14v2H5z" +}), 'UploadOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadRounded.js b/packages/material-ui-icons/lib/esm/UploadRounded.js new file mode 100644 index 00000000000000..e8aaeb8b734689 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 16h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.71 3.7a.9959.9959 0 0 0-1.41 0L6.71 8.29c-.63.63-.19 1.71.7 1.71H9v5c0 .55.45 1 1 1zm-4 2h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1z" +}), 'UploadRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadSharp.js b/packages/material-ui-icons/lib/esm/UploadSharp.js new file mode 100644 index 00000000000000..df09ad49793b5f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z" +}), 'UploadSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UploadTwoTone.js b/packages/material-ui-icons/lib/esm/UploadTwoTone.js new file mode 100644 index 00000000000000..d1bb39fa30a045 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UploadTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.83 8H11v6h2V8h1.17L12 5.83z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m12 3-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2V8H9.83L12 5.83 14.17 8H13zM5 18h14v2H5z" +}, "1")], 'UploadTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Usb.js b/packages/material-ui-icons/lib/esm/Usb.js new file mode 100644 index 00000000000000..43011ebe87198c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Usb.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2-1.21 0-2.2.99-2.2 2.2 0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2 1.21 0 2.2-.98 2.2-2.2 0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" +}), 'Usb'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbOff.js b/packages/material-ui-icons/lib/esm/UsbOff.js new file mode 100644 index 00000000000000..f8f2c53ffb6a7a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" +}), 'UsbOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbOffOutlined.js b/packages/material-ui-icons/lib/esm/UsbOffOutlined.js new file mode 100644 index 00000000000000..41e9a8a30a30aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" +}), 'UsbOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbOffRounded.js b/packages/material-ui-icons/lib/esm/UsbOffRounded.js new file mode 100644 index 00000000000000..8438a0b71bf9e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.6 5.2 2-2.67c.2-.27.6-.27.8 0l2 2.67c.25.33.01.8-.4.8h-1v4.17l-2-2V6h-1c-.41 0-.65-.47-.4-.8zm5.9 6.8h.5v1.17l1.77 1.77c.14-.28.23-.6.23-.94v-2h.5c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-3c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5zm4.99 9.9c-.39.39-1.02.39-1.41 0l-5.9-5.9H13v2.28c.6.34 1 .98 1 1.72 0 1.2-1.07 2.16-2.31 1.98-.88-.13-1.59-.88-1.68-1.77-.08-.83.33-1.55.99-1.93V16H8c-1.1 0-2-.9-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.5L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.4.39.4 1.02.01 1.41zM11 13.83l-2.51-2.51c-.14.16-.31.29-.49.4V14h3v-.17z" +}), 'UsbOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbOffSharp.js b/packages/material-ui-icons/lib/esm/UsbOffSharp.js new file mode 100644 index 00000000000000..3c09349b8e5e5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" +}), 'UsbOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbOffTwoTone.js b/packages/material-ui-icons/lib/esm/UsbOffTwoTone.js new file mode 100644 index 00000000000000..22b1d6bd223252 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17 2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" +}), 'UsbOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbOutlined.js b/packages/material-ui-icons/lib/esm/UsbOutlined.js new file mode 100644 index 00000000000000..b5d0cceb7992af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" +}), 'UsbOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbRounded.js b/packages/material-ui-icons/lib/esm/UsbRounded.js new file mode 100644 index 00000000000000..24097af470ddab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 7h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1v2h-3V5h1c.41 0 .65-.47.4-.8l-2-2.67c-.2-.27-.6-.27-.8 0l-2 2.67c-.25.33-.01.8.4.8h1v8H8v-2.07c.83-.44 1.38-1.36 1.14-2.43-.17-.77-.77-1.4-1.52-1.61C6.15 6.48 4.8 7.59 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.1.9 2 2 2h3v3.05c-.86.45-1.39 1.42-1.13 2.49.18.75.79 1.38 1.54 1.58 1.46.39 2.8-.7 2.8-2.12 0-.85-.49-1.58-1.2-1.95V15h3c1.1 0 2-.9 2-2v-2c.55 0 1-.45 1-1V8C19 7.45 18.55 7 18 7z" +}), 'UsbRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbSharp.js b/packages/material-ui-icons/lib/esm/UsbSharp.js new file mode 100644 index 00000000000000..464e1129a8f7c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" +}), 'UsbSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/UsbTwoTone.js b/packages/material-ui-icons/lib/esm/UsbTwoTone.js new file mode 100644 index 00000000000000..777c31e6e5389d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/UsbTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" +}), 'UsbTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Verified.js b/packages/material-ui-icons/lib/esm/Verified.js new file mode 100644 index 00000000000000..c104a66066ff70 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Verified.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zm-12.91 4.72-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z" +}), 'Verified'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedOutlined.js b/packages/material-ui-icons/lib/esm/VerifiedOutlined.js new file mode 100644 index 00000000000000..35ef19ec903c50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M23 11.99 20.56 9.2l.34-3.69-3.61-.82L15.4 1.5 12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 11.99l2.44 2.79-.34 3.7 3.61.82 1.89 3.2 3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69 2.44-2.8zm-3.95 1.48-.56.65.08.85.18 1.95-1.9.43-.84.19-.44.74-.99 1.68-1.78-.77-.8-.34-.79.34-1.78.77-.99-1.67-.44-.74-.84-.19-1.9-.43.18-1.96.08-.85-.56-.65L3.67 12l1.29-1.48.56-.65-.09-.86-.18-1.94 1.9-.43.84-.19.44-.74.99-1.68 1.78.77.8.34.79-.34 1.78-.77.99 1.68.44.74.84.19 1.9.43-.18 1.95-.08.85.56.65 1.29 1.47-1.28 1.48z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m10.09 13.75-2.32-2.33-1.48 1.49 3.8 3.81 7.34-7.36-1.48-1.49z" +}, "1")], 'VerifiedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedRounded.js b/packages/material-ui-icons/lib/esm/VerifiedRounded.js new file mode 100644 index 00000000000000..b1af607e1a2965 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zM9.38 16.01 7 13.61a.9959.9959 0 0 1 0-1.41l.07-.07c.39-.39 1.03-.39 1.42 0l1.61 1.62 5.15-5.16c.39-.39 1.03-.39 1.42 0l.07.07c.39.39.39 1.02 0 1.41l-5.92 5.94c-.41.39-1.04.39-1.44 0z" +}), 'VerifiedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedSharp.js b/packages/material-ui-icons/lib/esm/VerifiedSharp.js new file mode 100644 index 00000000000000..e046a409599446 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zm-12.91 4.72-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z" +}), 'VerifiedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedTwoTone.js b/packages/material-ui-icons/lib/esm/VerifiedTwoTone.js new file mode 100644 index 00000000000000..b72474541002e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m18.49 9.88.08-.85.18-1.95-1.9-.43-.84-.19-.44-.74-.99-1.68-1.79.76-.79.34-.79-.34-1.79-.77-.99 1.68-.44.74-.84.19-1.9.43.18 1.94.08.85-.56.65-1.29 1.48 1.29 1.47.56.65-.08.85-.18 1.96 1.9.43.84.19.44.74.99 1.67 1.78-.77.8-.33.79.34 1.78.77.99-1.68.44-.74.84-.19 1.9-.43-.18-1.95-.08-.85.56-.65L20.33 12l-1.29-1.47-.55-.65zm-8.4 6.84-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M23 11.99 20.56 9.2l.34-3.69-3.61-.82L15.4 1.5 12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 11.99l2.44 2.79-.34 3.7 3.61.82 1.89 3.2 3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69 2.44-2.8zm-3.95 1.48-.56.65.08.85.18 1.95-1.9.43-.84.19-.44.74-.99 1.68-1.78-.77-.8-.34-.79.34-1.78.77-.99-1.67-.44-.74-.84-.19-1.9-.43.18-1.96.08-.85-.56-.65L3.67 12l1.29-1.48.56-.65-.09-.86-.18-1.94 1.9-.43.84-.19.44-.74.99-1.68 1.78.77.8.34.79-.34 1.78-.77.99 1.68.44.74.84.19 1.9.43-.18 1.95-.08.85.56.65 1.29 1.47-1.28 1.48z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m10.09 13.75-2.32-2.33-1.48 1.49 3.8 3.81 7.34-7.36-1.48-1.49z" +}, "2")], 'VerifiedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedUser.js b/packages/material-ui-icons/lib/esm/VerifiedUser.js new file mode 100644 index 00000000000000..d7d54eb21a52cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedUser.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" +}), 'VerifiedUser'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedUserOutlined.js b/packages/material-ui-icons/lib/esm/VerifiedUserOutlined.js new file mode 100644 index 00000000000000..8876319928c427 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedUserOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z" +}), 'VerifiedUserOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedUserRounded.js b/packages/material-ui-icons/lib/esm/VerifiedUserRounded.js new file mode 100644 index 00000000000000..7a47c34ba4b2b1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedUserRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.19 1.36-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62 0zm-1.9 14.93L6.7 13.7a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0L10 14.17l5.88-5.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-6.59 6.59c-.38.39-1.02.39-1.41 0z" +}), 'VerifiedUserRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedUserSharp.js b/packages/material-ui-icons/lib/esm/VerifiedUserSharp.js new file mode 100644 index 00000000000000..7e88801d842c2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedUserSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" +}), 'VerifiedUserSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerifiedUserTwoTone.js b/packages/material-ui-icons/lib/esm/VerifiedUserTwoTone.js new file mode 100644 index 00000000000000..5fdd61129c210d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerifiedUserTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11L5 6.3zM18 9l-8 8-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9z", + opacity: ".3" +}, "1")], 'VerifiedUserTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignBottom.js b/packages/material-ui-icons/lib/esm/VerticalAlignBottom.js new file mode 100644 index 00000000000000..11b28426f9d688 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignBottom.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" +}), 'VerticalAlignBottom'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignBottomOutlined.js b/packages/material-ui-icons/lib/esm/VerticalAlignBottomOutlined.js new file mode 100644 index 00000000000000..9432f60aa03182 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignBottomOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" +}), 'VerticalAlignBottomOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignBottomRounded.js b/packages/material-ui-icons/lib/esm/VerticalAlignBottomRounded.js new file mode 100644 index 00000000000000..a101ba9121031f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignBottomRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.79 13H13V4c0-.55-.45-1-1-1s-1 .45-1 1v9H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85zM4 20c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" +}), 'VerticalAlignBottomRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignBottomSharp.js b/packages/material-ui-icons/lib/esm/VerticalAlignBottomSharp.js new file mode 100644 index 00000000000000..cdd9e7edee7d03 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignBottomSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" +}), 'VerticalAlignBottomSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignBottomTwoTone.js b/packages/material-ui-icons/lib/esm/VerticalAlignBottomTwoTone.js new file mode 100644 index 00000000000000..e85d8f954cb59f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignBottomTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 3v10H8l4 4 4-4h-3V3zM4 19h16v2H4z" +}), 'VerticalAlignBottomTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignCenter.js b/packages/material-ui-icons/lib/esm/VerticalAlignCenter.js new file mode 100644 index 00000000000000..2bc20b83da625a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignCenter.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" +}), 'VerticalAlignCenter'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignCenterOutlined.js b/packages/material-ui-icons/lib/esm/VerticalAlignCenterOutlined.js new file mode 100644 index 00000000000000..4440d69a6e7c4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignCenterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" +}), 'VerticalAlignCenterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignCenterRounded.js b/packages/material-ui-icons/lib/esm/VerticalAlignCenterRounded.js new file mode 100644 index 00000000000000..aec43e06920c5c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignCenterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.21 19H11v3c0 .55.45 1 1 1s1-.45 1-1v-3h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zm5.58-14H13V2c0-.55-.45-1-1-1s-1 .45-1 1v3H9.21c-.45 0-.67.54-.36.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.32-.31.1-.85-.35-.85zM4 12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" +}), 'VerticalAlignCenterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignCenterSharp.js b/packages/material-ui-icons/lib/esm/VerticalAlignCenterSharp.js new file mode 100644 index 00000000000000..bce95f5649d563 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignCenterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" +}), 'VerticalAlignCenterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignCenterTwoTone.js b/packages/material-ui-icons/lib/esm/VerticalAlignCenterTwoTone.js new file mode 100644 index 00000000000000..942d556422e31a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignCenterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11 1v4H8l4 4 4-4h-3V1zM4 11h16v2H4zm4 8h3v4h2v-4h3l-4-4z" +}), 'VerticalAlignCenterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignTop.js b/packages/material-ui-icons/lib/esm/VerticalAlignTop.js new file mode 100644 index 00000000000000..4f6366a9e067c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignTop.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" +}), 'VerticalAlignTop'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignTopOutlined.js b/packages/material-ui-icons/lib/esm/VerticalAlignTopOutlined.js new file mode 100644 index 00000000000000..ba033877169ae7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignTopOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" +}), 'VerticalAlignTopOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignTopRounded.js b/packages/material-ui-icons/lib/esm/VerticalAlignTopRounded.js new file mode 100644 index 00000000000000..06915cb237f1ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignTopRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.21 11H11v9c0 .55.45 1 1 1s1-.45 1-1v-9h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zM4 4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" +}), 'VerticalAlignTopRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignTopSharp.js b/packages/material-ui-icons/lib/esm/VerticalAlignTopSharp.js new file mode 100644 index 00000000000000..32c5bbe755143c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignTopSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" +}), 'VerticalAlignTopSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalAlignTopTwoTone.js b/packages/material-ui-icons/lib/esm/VerticalAlignTopTwoTone.js new file mode 100644 index 00000000000000..b0a6f2cc9f2542 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalAlignTopTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 3h16v2H4zm4 8h3v10h2V11h3l-4-4z" +}), 'VerticalAlignTopTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalSplit.js b/packages/material-ui-icons/lib/esm/VerticalSplit.js new file mode 100644 index 00000000000000..d31d84999e1d38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalSplit.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z" +}), 'VerticalSplit'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalSplitOutlined.js b/packages/material-ui-icons/lib/esm/VerticalSplitOutlined.js new file mode 100644 index 00000000000000..7e102661a35447 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalSplitOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z" +}), 'VerticalSplitOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalSplitRounded.js b/packages/material-ui-icons/lib/esm/VerticalSplitRounded.js new file mode 100644 index 00000000000000..18405372e87a6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalSplitRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm11-1h6c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z" +}), 'VerticalSplitRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalSplitSharp.js b/packages/material-ui-icons/lib/esm/VerticalSplitSharp.js new file mode 100644 index 00000000000000..ef0af661eeff89 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalSplitSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z" +}), 'VerticalSplitSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VerticalSplitTwoTone.js b/packages/material-ui-icons/lib/esm/VerticalSplitTwoTone.js new file mode 100644 index 00000000000000..5f85f610ee4a8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VerticalSplitTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15 7h4v10h-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm10 0v14h8V5h-8zm6 12h-4V7h4v10z" +}, "1")], 'VerticalSplitTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Vibration.js b/packages/material-ui-icons/lib/esm/Vibration.js new file mode 100644 index 00000000000000..aae69d202c171f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Vibration.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" +}), 'Vibration'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VibrationOutlined.js b/packages/material-ui-icons/lib/esm/VibrationOutlined.js new file mode 100644 index 00000000000000..1b5c54094baeba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VibrationOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" +}), 'VibrationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VibrationRounded.js b/packages/material-ui-icons/lib/esm/VibrationRounded.js new file mode 100644 index 00000000000000..db664bdf5ae5a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VibrationRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 15c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1zm3 2c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zm18-7v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1zm-2 7c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z" +}), 'VibrationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VibrationSharp.js b/packages/material-ui-icons/lib/esm/VibrationSharp.js new file mode 100644 index 00000000000000..abaafd434281dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VibrationSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM18 3H6v18h12V3zm-2 16H8V5h8v14z" +}), 'VibrationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VibrationTwoTone.js b/packages/material-ui-icons/lib/esm/VibrationTwoTone.js new file mode 100644 index 00000000000000..9e5055609e0e50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VibrationTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 5h8v14H8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 7h2v10h-2zm3 2h2v6h-2zM0 9h2v6H0zm16.5-6h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14zM3 7h2v10H3z" +}, "1")], 'VibrationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCall.js b/packages/material-ui-icons/lib/esm/VideoCall.js new file mode 100644 index 00000000000000..7c9321e3288806 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCall.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z" +}), 'VideoCall'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCallOutlined.js b/packages/material-ui-icons/lib/esm/VideoCallOutlined.js new file mode 100644 index 00000000000000..11f23905b58d54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCallOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM15 16H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z" +}), 'VideoCallOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCallRounded.js b/packages/material-ui-icons/lib/esm/VideoCallRounded.js new file mode 100644 index 00000000000000..317fa2b3dd400c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCallRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5zM13 13h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H7c-.55 0-1-.45-1-1s.45-1 1-1h2V9c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'VideoCallRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCallSharp.js b/packages/material-ui-icons/lib/esm/VideoCallSharp.js new file mode 100644 index 00000000000000..2de50247a74c3c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCallSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z" +}), 'VideoCallSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCallTwoTone.js b/packages/material-ui-icons/lib/esm/VideoCallTwoTone.js new file mode 100644 index 00000000000000..21da3ffea30d0a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCallTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 16h10V8H5v8zm2-5h2V9h2v2h2v2h-2v2H9v-2H7v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z" +}, "1")], 'VideoCallTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraBack.js b/packages/material-ui-icons/lib/esm/VideoCameraBack.js new file mode 100644 index 00000000000000..6fcf7fe18d102d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraBack.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM5 16l2.38-3.17L9 15l2.62-3.5L15 16H5z" +}), 'VideoCameraBack'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraBackOutlined.js b/packages/material-ui-icons/lib/esm/VideoCameraBackOutlined.js new file mode 100644 index 00000000000000..c51797fe785328 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraBackOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM16 18H4V6h12v12zm-4.38-6.5L9 15l-1.62-2.17L5 16h10l-3.38-4.5z" +}), 'VideoCameraBackOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraBackRounded.js b/packages/material-ui-icons/lib/esm/VideoCameraBackRounded.js new file mode 100644 index 00000000000000..e6501611890ca0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraBackRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l3.15 3.13c.31.32.85.09.85-.35V7.7c0-.44-.54-.67-.85-.35L18 10.48zM5.6 15.2l1.38-1.83c.2-.27.6-.27.8 0L9 15l2.23-2.97c.2-.27.6-.27.8 0l2.38 3.17c.25.33.01.8-.4.8H6c-.41 0-.65-.47-.4-.8z" +}), 'VideoCameraBackRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraBackSharp.js b/packages/material-ui-icons/lib/esm/VideoCameraBackSharp.js new file mode 100644 index 00000000000000..ccd19dd90ec56c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraBackSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM5 16l2.38-3.17L9 15l2.62-3.5L15 16H5z" +}), 'VideoCameraBackSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraBackTwoTone.js b/packages/material-ui-icons/lib/esm/VideoCameraBackTwoTone.js new file mode 100644 index 00000000000000..576fe8fc5912a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraBackTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 18h12V6H4v12zm3.38-5.17L9 15l2.62-3.5L15 16H5l2.38-3.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.62 11.5 9 15l-1.62-2.17L5 16h10z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM16 18H4V6h12v12z" +}, "2")], 'VideoCameraBackTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraFront.js b/packages/material-ui-icons/lib/esm/VideoCameraFront.js new file mode 100644 index 00000000000000..7ff4cf3579f21d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraFront.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16z" +}), 'VideoCameraFront'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraFrontOutlined.js b/packages/material-ui-icons/lib/esm/VideoCameraFrontOutlined.js new file mode 100644 index 00000000000000..f31d375c4838c4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraFrontOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zm-2-.79V18H4V6h12v3.69z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "10", + cy: "10", + r: "2" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M14 15.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C6.48 13.9 6 14.62 6 15.43V16h8v-.57z" +}, "2")], 'VideoCameraFrontOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraFrontRounded.js b/packages/material-ui-icons/lib/esm/VideoCameraFrontRounded.js new file mode 100644 index 00000000000000..316dc9e20eca2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraFrontRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l3.15 3.13c.31.32.85.09.85-.35V7.7c0-.44-.54-.67-.85-.35L18 10.48zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16z" +}), 'VideoCameraFrontRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraFrontSharp.js b/packages/material-ui-icons/lib/esm/VideoCameraFrontSharp.js new file mode 100644 index 00000000000000..1de1c0e2e3f7e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraFrontSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16z" +}), 'VideoCameraFrontSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoCameraFrontTwoTone.js b/packages/material-ui-icons/lib/esm/VideoCameraFrontTwoTone.js new file mode 100644 index 00000000000000..0d5c0e2c825b9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoCameraFrontTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 10.48V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-4.48l4 3.98v-11l-4 3.98zM16 18H4V6h12v12zm-6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85-.85-.37-1.79-.58-2.78-.58-.99 0-1.93.21-2.78.58C6.48 13.9 6 14.62 6 15.43V16h8v-.57z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 18h12V6H4v12zm6-10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-4 7.43c0-.81.48-1.53 1.22-1.85.85-.37 1.79-.58 2.78-.58.99 0 1.93.21 2.78.58.74.32 1.22 1.04 1.22 1.85V16H6v-.57z", + opacity: ".3" +}, "1")], 'VideoCameraFrontTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLabel.js b/packages/material-ui-icons/lib/esm/VideoLabel.js new file mode 100644 index 00000000000000..f05c1d7bbb15c8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLabel.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" +}), 'VideoLabel'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLabelOutlined.js b/packages/material-ui-icons/lib/esm/VideoLabelOutlined.js new file mode 100644 index 00000000000000..25bac97a2039db --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLabelOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" +}), 'VideoLabelOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLabelRounded.js b/packages/material-ui-icons/lib/esm/VideoLabelRounded.js new file mode 100644 index 00000000000000..8e6698e522e062 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLabelRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10z" +}), 'VideoLabelRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLabelSharp.js b/packages/material-ui-icons/lib/esm/VideoLabelSharp.js new file mode 100644 index 00000000000000..b0515a8c76230d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLabelSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zm-2 13H3V5h18v11z" +}), 'VideoLabelSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLabelTwoTone.js b/packages/material-ui-icons/lib/esm/VideoLabelTwoTone.js new file mode 100644 index 00000000000000..6f132d48ed6903 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLabelTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 5h18v11H3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z" +}, "1")], 'VideoLabelTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLibrary.js b/packages/material-ui-icons/lib/esm/VideoLibrary.js new file mode 100644 index 00000000000000..b6cbe8265271bb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLibrary.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l6 4.5-6 4.5z" +}), 'VideoLibrary'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLibraryOutlined.js b/packages/material-ui-icons/lib/esm/VideoLibraryOutlined.js new file mode 100644 index 00000000000000..b3f1a33e5a46c3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLibraryOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z" +}), 'VideoLibraryOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLibraryRounded.js b/packages/material-ui-icons/lib/esm/VideoLibraryRounded.js new file mode 100644 index 00000000000000..899ff2be9f7c99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLibraryRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l5.47 4.1c.27.2.27.6 0 .8L12 14.5z" +}), 'VideoLibraryRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLibrarySharp.js b/packages/material-ui-icons/lib/esm/VideoLibrarySharp.js new file mode 100644 index 00000000000000..13713b487ba08d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLibrarySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zM12 14.5v-9l6 4.5-6 4.5z" +}), 'VideoLibrarySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoLibraryTwoTone.js b/packages/material-ui-icons/lib/esm/VideoLibraryTwoTone.js new file mode 100644 index 00000000000000..44e4b03eba52c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoLibraryTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 16h12V4H8v12zm4-10.5 6 4.5-6 4.5v-9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z" +}, "1")], 'VideoLibraryTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoSettings.js b/packages/material-ui-icons/lib/esm/VideoSettings.js new file mode 100644 index 00000000000000..3ae80e2a750a96 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoSettings.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 6h18v5h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H3V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'VideoSettings'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoSettingsOutlined.js b/packages/material-ui-icons/lib/esm/VideoSettingsOutlined.js new file mode 100644 index 00000000000000..e39fc54e8eac84 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoSettingsOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 6h18v5h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H3V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'VideoSettingsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoSettingsRounded.js b/packages/material-ui-icons/lib/esm/VideoSettingsRounded.js new file mode 100644 index 00000000000000..426fada55fdb09 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoSettingsRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6h16c.55 0 1 .45 1 1v4h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'VideoSettingsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoSettingsSharp.js b/packages/material-ui-icons/lib/esm/VideoSettingsSharp.js new file mode 100644 index 00000000000000..672c75c012b876 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoSettingsSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 6h18v5h2V4H1v16h11v-2H3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 12 9 8v8zm7.72 5.57 1.23-.98-1.25-2.17-1.47.58c-.23-.17-.48-.31-.75-.42L20.25 13h-2.5l-.24 1.58c-.26.11-.51.26-.74.42l-1.48-.58-1.25 2.17 1.24.99c-.03.29-.04.58-.01.86l-1.23.98 1.25 2.17 1.48-.59c.23.17.48.31.75.42l.23 1.58h2.5l.24-1.58c.26-.11.51-.26.74-.42l1.48.58 1.25-2.17-1.24-.99c.03-.28.03-.57 0-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'VideoSettingsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoSettingsTwoTone.js b/packages/material-ui-icons/lib/esm/VideoSettingsTwoTone.js new file mode 100644 index 00000000000000..62067c6695a39b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoSettingsTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 6h18v5h2V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H3V6z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 12 9 8v8zm7.71 6.43c.03-.29.04-.58.01-.86l1.07-.85c.1-.08.12-.21.06-.32l-1.03-1.79c-.06-.11-.19-.15-.31-.11l-1.28.5c-.23-.17-.48-.31-.75-.42l-.2-1.36c-.02-.13-.12-.22-.25-.22h-2.07c-.12 0-.23.09-.25.21l-.2 1.36c-.26.11-.51.26-.74.42l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.79c-.06.11-.04.24.06.32l1.07.86c-.03.29-.04.58-.01.86l-1.07.85c-.1.08-.12.21-.06.32l1.03 1.79c.06.11.19.15.31.11l1.27-.5c.23.17.48.31.75.42l.2 1.36c.02.12.12.21.25.21h2.07c.12 0 .23-.09.25-.21l.2-1.36c.26-.11.51-.26.74-.42l1.28.5c.12.05.25 0 .31-.11l1.03-1.79c.06-.11.04-.24-.06-.32l-1.06-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}, "1")], 'VideoSettingsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoStable.js b/packages/material-ui-icons/lib/esm/VideoStable.js new file mode 100644 index 00000000000000..7da2f4a3ba40d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoStable.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 18V6h2.95l-2.33 8.73L16.82 18H4zm16 0h-2.95l2.34-8.73L7.18 6H20v12z" +}), 'VideoStable'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoStableOutlined.js b/packages/material-ui-icons/lib/esm/VideoStableOutlined.js new file mode 100644 index 00000000000000..725cc6257c2a64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoStableOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 18V6h2.95l-2.33 8.73L16.82 18H4zm11.62-2.39-8.55-2.29L8.38 8.4l8.56 2.29-1.32 4.92zM20 18h-2.95l2.34-8.73L7.18 6H20v12z" +}), 'VideoStableOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoStableRounded.js b/packages/material-ui-icons/lib/esm/VideoStableRounded.js new file mode 100644 index 00000000000000..54db5ca4de8531 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoStableRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19.96 4.01h-16c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2zM20 6v12H4V6h16z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.42 9.01 7.92 6.18c-.53-.14-1.08.17-1.22.7l-1.85 6.87c-.14.53.17 1.08.71 1.23l10.5 2.83c.53.14 1.08-.17 1.23-.71l1.85-6.87c.13-.53-.19-1.08-.72-1.22z" +}, "1")], 'VideoStableRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoStableSharp.js b/packages/material-ui-icons/lib/esm/VideoStableSharp.js new file mode 100644 index 00000000000000..fcb4ac2efcc875 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoStableSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 4v16h20V4H2zm2 14V6h2.95l-2.33 8.73L16.82 18H4zm16 0h-2.95l2.34-8.73L7.18 6H20v12z" +}), 'VideoStableSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideoStableTwoTone.js b/packages/material-ui-icons/lib/esm/VideoStableTwoTone.js new file mode 100644 index 00000000000000..72bf43fb29b710 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideoStableTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m7.0627 13.3185 1.3204-4.926 8.558 2.2938-1.3205 4.9261z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 18V6h2.95l-2.33 8.73L16.82 18H4zm11.62-2.39-8.55-2.29L8.38 8.4l8.56 2.29-1.32 4.92zM20 18h-2.95l2.34-8.73L7.18 6H20v12z" +}, "1")], 'VideoStableTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Videocam.js b/packages/material-ui-icons/lib/esm/Videocam.js new file mode 100644 index 00000000000000..6c959161d43ffb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Videocam.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z" +}), 'Videocam'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamOff.js b/packages/material-ui-icons/lib/esm/VideocamOff.js new file mode 100644 index 00000000000000..daf7e953d114fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 6.5-4 4V7c0-.55-.45-1-1-1H9.82L21 17.18V6.5zM3.27 2 2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.54-.18L19.73 21 21 19.73 3.27 2z" +}), 'VideocamOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamOffOutlined.js b/packages/material-ui-icons/lib/esm/VideocamOffOutlined.js new file mode 100644 index 00000000000000..930e564156fcd0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9.56 8-2-2-4.15-4.14L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86L9.56 8zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z" +}), 'VideocamOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamOffRounded.js b/packages/material-ui-icons/lib/esm/VideocamOffRounded.js new file mode 100644 index 00000000000000..a178ee3c87c8e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 14.2V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5V7c0-.55-.45-1-1-1h-5.61l8.91 8.91c.62.63 1.7.18 1.7-.71zM2.71 2.56c-.39.39-.39 1.02 0 1.41L4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18l2.48 2.48c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 2.56a.9959.9959 0 0 0-1.41 0z" +}), 'VideocamOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamOffSharp.js b/packages/material-ui-icons/lib/esm/VideocamOffSharp.js new file mode 100644 index 00000000000000..52a0effef74f64 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 16.61V6.5l-4 4V6h-6.61zM3.41 1.86 2 3.27 4.73 6H3v12h13.73l3 3 1.41-1.41z" +}), 'VideocamOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamOffTwoTone.js b/packages/material-ui-icons/lib/esm/VideocamOffTwoTone.js new file mode 100644 index 00000000000000..64d139ed500b99 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12.39 8 15 10.61V8zM5 8v8h9.73l-8-8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3.41 1.86 2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41L3.41 1.86zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z" +}, "1")], 'VideocamOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamOutlined.js b/packages/material-ui-icons/lib/esm/VideocamOutlined.js new file mode 100644 index 00000000000000..3d04ef2f3e3b2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 8v8H5V8h10m1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1z" +}), 'VideocamOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamRounded.js b/packages/material-ui-icons/lib/esm/VideocamRounded.js new file mode 100644 index 00000000000000..ec02f7ec830f7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5z" +}), 'VideocamRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamSharp.js b/packages/material-ui-icons/lib/esm/VideocamSharp.js new file mode 100644 index 00000000000000..074d6bc60d0894 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4z" +}), 'VideocamSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideocamTwoTone.js b/packages/material-ui-icons/lib/esm/VideocamTwoTone.js new file mode 100644 index 00000000000000..0e487103bd96c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideocamTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 8h10v8H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8z" +}, "1")], 'VideocamTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAsset.js b/packages/material-ui-icons/lib/esm/VideogameAsset.js new file mode 100644 index 00000000000000..0d5b88ce709042 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAsset.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'VideogameAsset'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetOff.js b/packages/material-ui-icons/lib/esm/VideogameAssetOff.js new file mode 100644 index 00000000000000..a8b1f68a86ce6c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.19 21.19 2.81 2.81 1.39 4.22 3.3 6.13C2.54 6.41 2 7.15 2 8v8c0 1.1.9 2 2 2h11.17l4.61 4.61 1.41-1.42zM9 13v2H7v-2H5v-2h2V9.83L10.17 13H9zm11.7 4.87c.76-.28 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83L20.7 17.87zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z" +}), 'VideogameAssetOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetOffOutlined.js b/packages/material-ui-icons/lib/esm/VideogameAssetOffOutlined.js new file mode 100644 index 00000000000000..75bb7dfaea4ee6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-6.67-1H20v8h-1.17l1.87 1.87c.75-.29 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83l2 2zm8.95 14.61L15.17 18H4c-1.1 0-2-.9-2-2V8c0-.85.55-1.58 1.3-1.87L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM13.17 16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17 8H4v8h9.17z" +}), 'VideogameAssetOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetOffRounded.js b/packages/material-ui-icons/lib/esm/VideogameAssetOffRounded.js new file mode 100644 index 00000000000000..f4ad336d3c5d40 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.7 17.87c.76-.28 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83L20.7 17.87zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm2.99 11.49L3.51 3.51a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l1.2 1.2C2.54 6.41 2 7.15 2 8v8c0 1.1.9 2 2 2h11.17l3.9 3.9c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM10 13H9v1c0 .55-.45 1-1 1s-1-.45-1-1v-1H6c-.55 0-1-.45-1-1s.45-1 1-1h1v-1c0-.05.01-.11.01-.16l3.14 3.14c-.04.01-.1.02-.15.02z" +}), 'VideogameAssetOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetOffSharp.js b/packages/material-ui-icons/lib/esm/VideogameAssetOffSharp.js new file mode 100644 index 00000000000000..e5da9008c1652e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.83 18H22V6H8.83l12 12zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.69 12.19L2.81 2.81 1.39 4.22 3.17 6H2v12h13.17l4.61 4.61 1.41-1.42zM9 13v2H7v-2H5v-2h2V9.83L10.17 13H9z" +}), 'VideogameAssetOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetOffTwoTone.js b/packages/material-ui-icons/lib/esm/VideogameAssetOffTwoTone.js new file mode 100644 index 00000000000000..0e4507a59a7d39 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m10.83 8 8 8H20V8h-9.17zm6.67 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-4.33 4-3-3H9v2H7v-2H5v-2h2V9.83L5.17 8H4v8h9.17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-6.67-1H20v8h-1.17l1.87 1.87c.75-.29 1.3-1.02 1.3-1.87V8c0-1.1-.9-2-2-2H8.83l2 2zm8.95 14.61L15.17 18H4c-1.1 0-2-.9-2-2V8c0-.85.55-1.58 1.3-1.87L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM13.17 16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17 8H4v8h9.17z" +}, "1")], 'VideogameAssetOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetOutlined.js b/packages/material-ui-icons/lib/esm/VideogameAssetOutlined.js new file mode 100644 index 00000000000000..edcd1bcc0c53b9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetOutlined.js @@ -0,0 +1,13 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "13.5", + r: "1.5" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18.5", + cy: "10.5", + r: "1.5" +}, "2")], 'VideogameAssetOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetRounded.js b/packages/material-ui-icons/lib/esm/VideogameAssetRounded.js new file mode 100644 index 00000000000000..495f6d7fb04b2d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-11 7H8v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H4c-.55 0-1-.45-1-1s.45-1 1-1h2V9c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1zm5.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'VideogameAssetRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetSharp.js b/packages/material-ui-icons/lib/esm/VideogameAssetSharp.js new file mode 100644 index 00000000000000..95d3276813e287 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 6H1v12h22V6zm-12 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" +}), 'VideogameAssetSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VideogameAssetTwoTone.js b/packages/material-ui-icons/lib/esm/VideogameAssetTwoTone.js new file mode 100644 index 00000000000000..3cccff3affcfc5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VideogameAssetTwoTone.js @@ -0,0 +1,16 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 16h18V8H3v8zm15.5-7c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-4 3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM4 11h2V9h2v2h2v2H8v2H6v-2H4v-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "14.5", + cy: "13.5", + r: "1.5" +}, "2"), /*#__PURE__*/_jsx("circle", { + cx: "18.5", + cy: "10.5", + r: "1.5" +}, "3")], 'VideogameAssetTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewAgenda.js b/packages/material-ui-icons/lib/esm/ViewAgenda.js new file mode 100644 index 00000000000000..792e3ff27115a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewAgenda.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 13H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm0-10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z" +}), 'ViewAgenda'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewAgendaOutlined.js b/packages/material-ui-icons/lib/esm/ViewAgendaOutlined.js new file mode 100644 index 00000000000000..7e29b7c775338a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewAgendaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 5v4H4V5h15m0 10v4H4v-4h15m1-12H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm0 10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1z" +}), 'ViewAgendaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewAgendaRounded.js b/packages/material-ui-icons/lib/esm/ViewAgendaRounded.js new file mode 100644 index 00000000000000..0463c21db107b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewAgendaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 13H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm0-10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z" +}), 'ViewAgendaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewAgendaSharp.js b/packages/material-ui-icons/lib/esm/ViewAgendaSharp.js new file mode 100644 index 00000000000000..897f69f75a80b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewAgendaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 13H2v8h19v-8zm0-10H2v8h19V3z" +}), 'ViewAgendaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewAgendaTwoTone.js b/packages/material-ui-icons/lib/esm/ViewAgendaTwoTone.js new file mode 100644 index 00000000000000..09c89a88ae3d3f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewAgendaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 3H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H4V5h15v4zm1 4H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H4v-4h15v4z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4 15h15v4H4zM4 5h15v4H4z", + opacity: ".3" +}, "1")], 'ViewAgendaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewArray.js b/packages/material-ui-icons/lib/esm/ViewArray.js new file mode 100644 index 00000000000000..5300e361e95d22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewArray.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" +}), 'ViewArray'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewArrayOutlined.js b/packages/material-ui-icons/lib/esm/ViewArrayOutlined.js new file mode 100644 index 00000000000000..dccaa7c33ea7fa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewArrayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 7v10H9V7h6zm6-2h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" +}), 'ViewArrayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewArrayRounded.js b/packages/material-ui-icons/lib/esm/ViewArrayRounded.js new file mode 100644 index 00000000000000..38fcc7cac442fc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewArrayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 5h-1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-4 0H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM5 5H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z" +}), 'ViewArrayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewArraySharp.js b/packages/material-ui-icons/lib/esm/ViewArraySharp.js new file mode 100644 index 00000000000000..2bda4e202730c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewArraySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" +}), 'ViewArraySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewArrayTwoTone.js b/packages/material-ui-icons/lib/esm/ViewArrayTwoTone.js new file mode 100644 index 00000000000000..5cd9138665e710 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewArrayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 7h6v10H9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M15 7v10H9V7h6zm6-2h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" +}, "1")], 'ViewArrayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCarousel.js b/packages/material-ui-icons/lib/esm/ViewCarousel.js new file mode 100644 index 00000000000000..af4735f5191d62 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCarousel.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM18 7h4v10h-4V7z" +}), 'ViewCarousel'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCarouselOutlined.js b/packages/material-ui-icons/lib/esm/ViewCarouselOutlined.js new file mode 100644 index 00000000000000..f260f55ab57026 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCarouselOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM9 7h6v10H9V7zm9 0h4v10h-4V7z" +}), 'ViewCarouselOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCarouselRounded.js b/packages/material-ui-icons/lib/esm/ViewCarouselRounded.js new file mode 100644 index 00000000000000..8b6b7070dc2bba --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCarouselRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1zm5 12h8c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1zM19 7h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1z" +}), 'ViewCarouselRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCarouselSharp.js b/packages/material-ui-icons/lib/esm/ViewCarouselSharp.js new file mode 100644 index 00000000000000..3a3216f5bcf3bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCarouselSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM18 7h4v10h-4V7z" +}), 'ViewCarouselSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCarouselTwoTone.js b/packages/material-ui-icons/lib/esm/ViewCarouselTwoTone.js new file mode 100644 index 00000000000000..d0b3e00bf26798 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCarouselTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 7h6v10H9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM9 7h6v10H9V7zm9 0h4v10h-4V7z" +}, "1")], 'ViewCarouselTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewColumn.js b/packages/material-ui-icons/lib/esm/ViewColumn.js new file mode 100644 index 00000000000000..9e6dbf8f4e0d72 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewColumn.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.67 5v14H9.33V5h5.34zm1 14H21V5h-5.33v14zm-7.34 0V5H3v14h5.33z" +}), 'ViewColumn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewColumnOutlined.js b/packages/material-ui-icons/lib/esm/ViewColumnOutlined.js new file mode 100644 index 00000000000000..6f8d7e2eb4e7f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewColumnOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33V7h3.33v10zM19 17h-3.33V7H19v10z" +}), 'ViewColumnOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewColumnRounded.js b/packages/material-ui-icons/lib/esm/ViewColumnRounded.js new file mode 100644 index 00000000000000..43d1622f8760f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewColumnRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.67 6v12c0 .55-.45 1-1 1h-3.33c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.33c.55 0 1 .45 1 1zm2 13H20c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1v12c0 .55.44 1 1 1zm-8.34-1V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.33c.56 0 1-.45 1-1z" +}), 'ViewColumnRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewColumnSharp.js b/packages/material-ui-icons/lib/esm/ViewColumnSharp.js new file mode 100644 index 00000000000000..68d3b9b6916eb9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewColumnSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.67 5v14H9.33V5h5.34zm1 14H21V5h-5.33v14zm-7.34 0V5H3v14h5.33z" +}), 'ViewColumnSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewColumnTwoTone.js b/packages/material-ui-icons/lib/esm/ViewColumnTwoTone.js new file mode 100644 index 00000000000000..bb289d4ec3b59e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewColumnTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.33 17H5V7h3.33v10zm5.34 0h-3.33V7h3.33v10zM19 17h-3.33V7H19v10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33V7h3.33v10zM19 17h-3.33V7H19v10z" +}, "1")], 'ViewColumnTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewComfy.js b/packages/material-ui-icons/lib/esm/ViewComfy.js new file mode 100644 index 00000000000000..c1b2b352c2c0ad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewComfy.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z" +}), 'ViewComfy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewComfyOutlined.js b/packages/material-ui-icons/lib/esm/ViewComfyOutlined.js new file mode 100644 index 00000000000000..c7372e20759633 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewComfyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14h19V5H3zm17 4h-2.25V7H20v2zM9.25 11h2.25v2H9.25v-2zm-2 2H5v-2h2.25v2zm4.25-4H9.25V7h2.25v2zm2-2h2.25v2H13.5V7zm-2 8v2H9.25v-2h2.25zm2 0h2.25v2H13.5v-2zm0-2v-2h2.25v2H13.5zm4.25-2H20v2h-2.25v-2zM7.25 7v2H5V7h2.25zM5 15h2.25v2H5v-2zm12.75 2v-2H20v2h-2.25z" +}), 'ViewComfyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewComfyRounded.js b/packages/material-ui-icons/lib/esm/ViewComfyRounded.js new file mode 100644 index 00000000000000..8d61615bd503f2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewComfyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h4V5H5c-1.1 0-2 .9-2 2v2zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM5 19h2v-4H3v2c0 1.1.9 2 2 2zm3 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h2c1.1 0 2-.9 2-2v-2h-4v4zm0-14v4h4V7c0-1.1-.9-2-2-2h-2z" +}), 'ViewComfyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewComfySharp.js b/packages/material-ui-icons/lib/esm/ViewComfySharp.js new file mode 100644 index 00000000000000..c0732d7e240aa3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewComfySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z" +}), 'ViewComfySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewComfyTwoTone.js b/packages/material-ui-icons/lib/esm/ViewComfyTwoTone.js new file mode 100644 index 00000000000000..2b1ed7c4773b1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewComfyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9.25 11h2.25v2H9.25zm0 4h2.25v2H9.25zm0-8h2.25v2H9.25zm4.25 8h2.25v2H13.5zM5 15h2.25v2H5zm0-4h2.25v2H5zm0-4h2.25v2H5zm12.75 0H20v2h-2.25zm-4.25 4h2.25v2H13.5zm0-4h2.25v2H13.5zm4.25 8H20v2h-2.25zm0-4H20v2h-2.25z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14h19V5H3zm4.25 12H5v-2h2.25v2zm0-4H5v-2h2.25v2zm0-4H5V7h2.25v2zm4.25 8H9.25v-2h2.25v2zm0-4H9.25v-2h2.25v2zm0-4H9.25V7h2.25v2zm4.25 8H13.5v-2h2.25v2zm0-4H13.5v-2h2.25v2zm0-4H13.5V7h2.25v2zM20 17h-2.25v-2H20v2zm0-4h-2.25v-2H20v2zm0-4h-2.25V7H20v2z" +}, "1")], 'ViewComfyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCompact.js b/packages/material-ui-icons/lib/esm/ViewCompact.js new file mode 100644 index 00000000000000..bc119d737d0ed4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCompact.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z" +}), 'ViewCompact'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCompactOutlined.js b/packages/material-ui-icons/lib/esm/ViewCompactOutlined.js new file mode 100644 index 00000000000000..bf799ba9f61d7f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCompactOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14h19V5H3zm2 2h15v4H5V7zm0 10v-4h4v4H5zm6 0v-4h9v4h-9z" +}), 'ViewCompactOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCompactRounded.js b/packages/material-ui-icons/lib/esm/ViewCompactRounded.js new file mode 100644 index 00000000000000..36771bc614cac8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCompactRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 19h4v-7H3v5c0 1.1.9 2 2 2zm5 0h10c1.1 0 2-.9 2-2v-5H10v7zM3 7v4h19V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2z" +}), 'ViewCompactRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCompactSharp.js b/packages/material-ui-icons/lib/esm/ViewCompactSharp.js new file mode 100644 index 00000000000000..0b698f97791fce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCompactSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z" +}), 'ViewCompactSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewCompactTwoTone.js b/packages/material-ui-icons/lib/esm/ViewCompactTwoTone.js new file mode 100644 index 00000000000000..385318253fab78 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewCompactTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11 13h9v4h-9zm-6 0h4v4H5zm0-6h15v4H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14h19V5H3zm6 12H5v-4h4v4zm11 0h-9v-4h9v4zm0-6H5V7h15v4z" +}, "1")], 'ViewCompactTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewDay.js b/packages/material-ui-icons/lib/esm/ViewDay.js new file mode 100644 index 00000000000000..69b48cf30921cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewDay.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 21h19v-3H2v3zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 3v3h19V3H2z" +}), 'ViewDay'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewDayOutlined.js b/packages/material-ui-icons/lib/esm/ViewDayOutlined.js new file mode 100644 index 00000000000000..917758b012ab6f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewDayOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z" +}), 'ViewDayOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewDayRounded.js b/packages/material-ui-icons/lib/esm/ViewDayRounded.js new file mode 100644 index 00000000000000..1b6152eff6c9ae --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewDayRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 21h17c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 4v1c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1z" +}), 'ViewDayRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewDaySharp.js b/packages/material-ui-icons/lib/esm/ViewDaySharp.js new file mode 100644 index 00000000000000..3dcabfccc927e1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewDaySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 21h19v-3H2v3zM21 8H2v8h19V8zM2 3v3h19V3H2z" +}), 'ViewDaySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewDayTwoTone.js b/packages/material-ui-icons/lib/esm/ViewDayTwoTone.js new file mode 100644 index 00000000000000..16b190d84fd3f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewDayTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 10h15v4H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 18h19v2H2zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6H4v-4h15v4zM2 4h19v2H2z" +}, "1")], 'ViewDayTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewHeadline.js b/packages/material-ui-icons/lib/esm/ViewHeadline.js new file mode 100644 index 00000000000000..f9a60ddd0138cb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewHeadline.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" +}), 'ViewHeadline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewHeadlineOutlined.js b/packages/material-ui-icons/lib/esm/ViewHeadlineOutlined.js new file mode 100644 index 00000000000000..efb6f76f449ca6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewHeadlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" +}), 'ViewHeadlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewHeadlineRounded.js b/packages/material-ui-icons/lib/esm/ViewHeadlineRounded.js new file mode 100644 index 00000000000000..59a3af53e14d35 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewHeadlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z" +}), 'ViewHeadlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewHeadlineSharp.js b/packages/material-ui-icons/lib/esm/ViewHeadlineSharp.js new file mode 100644 index 00000000000000..5e7d92e75067f1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewHeadlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" +}), 'ViewHeadlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewHeadlineTwoTone.js b/packages/material-ui-icons/lib/esm/ViewHeadlineTwoTone.js new file mode 100644 index 00000000000000..f7720c2484fe6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewHeadlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" +}), 'ViewHeadlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewInAr.js b/packages/material-ui-icons/lib/esm/ViewInAr.js new file mode 100644 index 00000000000000..0e5f33dc966fcb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewInAr.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m18.25 7.6-5.5-3.18c-.46-.27-1.04-.27-1.5 0L5.75 7.6c-.46.27-.75.76-.75 1.3v6.35c0 .54.29 1.03.75 1.3l5.5 3.18c.46.27 1.04.27 1.5 0l5.5-3.18c.46-.27.75-.76.75-1.3V8.9c0-.54-.29-1.03-.75-1.3zM7 14.96v-4.62l4 2.32v4.61l-4-2.31zm5-4.03L8 8.61l4-2.31 4 2.31-4 2.32zm1 6.34v-4.61l4-2.32v4.62l-4 2.31zM7 2H3.5C2.67 2 2 2.67 2 3.5V7h2V4h3V2zm10 0h3.5c.83 0 1.5.67 1.5 1.5V7h-2V4h-3V2zM7 22H3.5c-.83 0-1.5-.67-1.5-1.5V17h2v3h3v2zm10 0h3.5c.83 0 1.5-.67 1.5-1.5V17h-2v3h-3v2z" +}), 'ViewInAr'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewInArOutlined.js b/packages/material-ui-icons/lib/esm/ViewInArOutlined.js new file mode 100644 index 00000000000000..f3c22f969ed45c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewInArOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 4c0-.55.45-1 1-1h2V1H4C2.34 1 1 2.34 1 4v2h2V4zm0 16v-2H1v2c0 1.66 1.34 3 3 3h2v-2H4c-.55 0-1-.45-1-1zM20 1h-2v2h2c.55 0 1 .45 1 1v2h2V4c0-1.66-1.34-3-3-3zm1 19c0 .55-.45 1-1 1h-2v2h2c1.66 0 3-1.34 3-3v-2h-2v2zm-2-5.13V9.13c0-.72-.38-1.38-1-1.73l-5-2.88c-.31-.18-.65-.27-1-.27s-.69.09-1 .27L6 7.39c-.62.36-1 1.02-1 1.74v5.74c0 .72.38 1.38 1 1.73l5 2.88c.31.18.65.27 1 .27s.69-.09 1-.27l5-2.88c.62-.35 1-1.01 1-1.73zm-8 2.3-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" +}), 'ViewInArOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewInArRounded.js b/packages/material-ui-icons/lib/esm/ViewInArRounded.js new file mode 100644 index 00000000000000..f5a41805c24850 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewInArRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 6c.55 0 1-.45 1-1V4c0-.55.45-1 1-1h1c.55 0 1-.45 1-1s-.45-1-1-1H4C2.34 1 1 2.34 1 4v1c0 .55.45 1 1 1zm3 15H4c-.55 0-1-.45-1-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1c0 1.66 1.34 3 3 3h1c.55 0 1-.45 1-1s-.45-1-1-1zM20 1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1 .45 1 1v1c0 .55.45 1 1 1s1-.45 1-1V4c0-1.66-1.34-3-3-3zm2 17c-.55 0-1 .45-1 1v1c0 .55-.45 1-1 1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1c1.66 0 3-1.34 3-3v-1c0-.55-.45-1-1-1zm-3-3.13V9.13c0-.72-.38-1.38-1-1.73l-5-2.88c-.31-.18-.65-.27-1-.27s-.69.09-1 .27L6 7.39c-.62.36-1 1.02-1 1.74v5.74c0 .72.38 1.38 1 1.73l5 2.88c.31.18.65.27 1 .27s.69-.09 1-.27l5-2.88c.62-.35 1-1.01 1-1.73zm-8 2.3-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" +}), 'ViewInArRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewInArSharp.js b/packages/material-ui-icons/lib/esm/ViewInArSharp.js new file mode 100644 index 00000000000000..8e23511c5c2dee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewInArSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 1v2h3v3h2V1zm3 20h-3v2h5v-5h-2zM3 3h3V1H1v5h2zm0 15H1v5h5v-2H3zM19 7.97l-7-4.03-7 4.03v8.06l7 4.03 7-4.03V7.97zm-8 9.2-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" +}), 'ViewInArSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewInArTwoTone.js b/packages/material-ui-icons/lib/esm/ViewInArTwoTone.js new file mode 100644 index 00000000000000..a5093656f8897a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewInArTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m13 17.17 4-2.3v-4.63l-4 2.33zM12 6.25 8.04 8.53 12 10.84l3.96-2.31zm-5 8.62 4 2.3v-4.6l-4-2.33z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 4c0-.55.45-1 1-1h2V1H4C2.34 1 1 2.34 1 4v2h2V4zm0 16v-2H1v2c0 1.66 1.34 3 3 3h2v-2H4c-.55 0-1-.45-1-1zM20 1h-2v2h2c.55 0 1 .45 1 1v2h2V4c0-1.66-1.34-3-3-3zm1 19c0 .55-.45 1-1 1h-2v2h2c1.66 0 3-1.34 3-3v-2h-2v2zm-2-5.13V9.13c0-.72-.38-1.38-1-1.73l-5-2.88c-.31-.18-.65-.27-1-.27s-.69.09-1 .27L6 7.39c-.62.36-1 1.02-1 1.74v5.74c0 .72.38 1.38 1 1.73l5 2.88c.31.18.65.27 1 .27s.69-.09 1-.27l5-2.88c.62-.35 1-1.01 1-1.73zm-8 2.3-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03-4 2.3v-4.6l4-2.33v4.63z" +}, "1")], 'ViewInArTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewList.js b/packages/material-ui-icons/lib/esm/ViewList.js new file mode 100644 index 00000000000000..98881c6e94e3d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewList.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14h4v-4H3v4zm0 5h4v-4H3v4zM3 9h4V5H3v4zm5 5h13v-4H8v4zm0 5h13v-4H8v4zM8 5v4h13V5H8z" +}), 'ViewList'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewListOutlined.js b/packages/material-ui-icons/lib/esm/ViewListOutlined.js new file mode 100644 index 00000000000000..e496713e35d70c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewListOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm4 2v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm14 2H9v-2h10v2zm0-4H9v-2h10v2zm0-4H9V7h10v2z" +}), 'ViewListOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewListRounded.js b/packages/material-ui-icons/lib/esm/ViewListRounded.js new file mode 100644 index 00000000000000..698c335fcdbdb0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewListRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 14h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 5h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zM4 9h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm5 5h11c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 5h11c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zM8 6v2c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1z" +}), 'ViewListRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewListSharp.js b/packages/material-ui-icons/lib/esm/ViewListSharp.js new file mode 100644 index 00000000000000..23d570672d54ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewListSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 14h4v-4H3v4zm0 5h4v-4H3v4zM3 9h4V5H3v4zm5 5h13v-4H8v4zm0 5h13v-4H8v4zM8 5v4h13V5H8z" +}), 'ViewListSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewListTwoTone.js b/packages/material-ui-icons/lib/esm/ViewListTwoTone.js new file mode 100644 index 00000000000000..7167f3dfbeafe3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewListTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 7v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm14 2H9v-2h10v2zm0-4H9v-2h10v2zm0-4H9V7h10v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm4 2v2H5V7h2zm-2 6v-2h2v2H5zm0 2h2v2H5v-2zm14 2H9v-2h10v2zm0-4H9v-2h10v2zm0-4H9V7h10v2z" +}, "1")], 'ViewListTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewModule.js b/packages/material-ui-icons/lib/esm/ViewModule.js new file mode 100644 index 00000000000000..8f1edf1640e244 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewModule.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.67 5v6.5H9.33V5h5.34zm1 6.5H21V5h-5.33v6.5zm-1 7.5v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zm-7.34 0H3V19h5.33v-6.5zm0-1V5H3v6.5h5.33z" +}), 'ViewModule'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewModuleOutlined.js b/packages/material-ui-icons/lib/esm/ViewModuleOutlined.js new file mode 100644 index 00000000000000..174f5aee6af34b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewModuleOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm16 6h-3.33V7H19v4zm-5.33 0h-3.33V7h3.33v4zM8.33 7v4H5V7h3.33zM5 17v-4h3.33v4H5zm5.33 0v-4h3.33v4h-3.33zm5.34 0v-4H19v4h-3.33z" +}), 'ViewModuleOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewModuleRounded.js b/packages/material-ui-icons/lib/esm/ViewModuleRounded.js new file mode 100644 index 00000000000000..aedae12327aacd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewModuleRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.67 6v4.5c0 .55-.45 1-1 1h-3.33c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.33c.55 0 1 .45 1 1zm2 5.5H20c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1v4.5c0 .55.44 1 1 1zm-2 6.5v-4.5c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1V18c0 .55.45 1 1 1h3.33c.55 0 1-.45 1-1zm1-4.5V18c0 .55.45 1 1 1H20c.55 0 1-.45 1-1v-4.5c0-.55-.45-1-1-1h-3.33c-.56 0-1 .45-1 1zm-8.34-1H4c-.55 0-1 .45-1 1V18c0 .55.45 1 1 1h3.33c.55 0 1-.45 1-1v-4.5c0-.55-.44-1-1-1zm1-2V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4.5c0 .55.45 1 1 1h3.33c.56 0 1-.45 1-1z" +}), 'ViewModuleRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewModuleSharp.js b/packages/material-ui-icons/lib/esm/ViewModuleSharp.js new file mode 100644 index 00000000000000..caa8181bbd1342 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewModuleSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14.67 5v6.5H9.33V5h5.34zm1 6.5H21V5h-5.33v6.5zm-1 7.5v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zm-7.34 0H3V19h5.33v-6.5zm0-1V5H3v6.5h5.33z" +}), 'ViewModuleSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewModuleTwoTone.js b/packages/material-ui-icons/lib/esm/ViewModuleTwoTone.js new file mode 100644 index 00000000000000..a1daa7dc457dde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewModuleTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 11h-3.33V7H19v4zm-5.33 0h-3.33V7h3.33v4zM8.33 7v4H5V7h3.33zM5 17v-4h3.33v4H5zm5.33 0v-4h3.33v4h-3.33zm5.34 0v-4H19v4h-3.33z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm16 6h-3.33V7H19v4zm-5.33 0h-3.33V7h3.33v4zM8.33 7v4H5V7h3.33zM5 17v-4h3.33v4H5zm5.33 0v-4h3.33v4h-3.33zm5.34 0v-4H19v4h-3.33z" +}, "1")], 'ViewModuleTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewQuilt.js b/packages/material-ui-icons/lib/esm/ViewQuilt.js new file mode 100644 index 00000000000000..4595677d981930 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewQuilt.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5v6.5H9.33V5H21zm-6.33 14v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zM8.33 19V5H3v14h5.33z" +}), 'ViewQuilt'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewQuiltOutlined.js b/packages/material-ui-icons/lib/esm/ViewQuiltOutlined.js new file mode 100644 index 00000000000000..a552c2423c401a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewQuiltOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33v-4h3.33v4zM19 17h-3.33v-4H19v4zm0-6h-8.67V7H19v4z" +}), 'ViewQuiltOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewQuiltRounded.js b/packages/material-ui-icons/lib/esm/ViewQuiltRounded.js new file mode 100644 index 00000000000000..e5b03fe87d6e8e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewQuiltRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 6v4.5c0 .55-.45 1-1 1h-9.67c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1H20c.55 0 1 .45 1 1zm-6.33 12v-4.5c0-.55-.45-1-1-1h-3.33c-.55 0-1 .45-1 1V18c0 .55.45 1 1 1h3.33c.55 0 1-.45 1-1zm1-4.5V18c0 .55.45 1 1 1H20c.55 0 1-.45 1-1v-4.5c0-.55-.45-1-1-1h-3.33c-.56 0-1 .45-1 1zM8.33 18V6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.33c.56 0 1-.45 1-1z" +}), 'ViewQuiltRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewQuiltSharp.js b/packages/material-ui-icons/lib/esm/ViewQuiltSharp.js new file mode 100644 index 00000000000000..e4552a78af5ab4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewQuiltSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5v6.5H9.33V5H21zm-6.33 14v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zM8.33 19V5H3v14h5.33z" +}), 'ViewQuiltSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewQuiltTwoTone.js b/packages/material-ui-icons/lib/esm/ViewQuiltTwoTone.js new file mode 100644 index 00000000000000..d863fec57db922 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewQuiltTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8.33 17H5V7h3.33v10zm5.34 0h-3.33v-4h3.33v4zM19 17h-3.33v-4H19v4zm0-6h-8.67V7H19v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 5v14h18V5H3zm5.33 12H5V7h3.33v10zm5.34 0h-3.33v-4h3.33v4zM19 17h-3.33v-4H19v4zm0-6h-8.67V7H19v4z" +}, "1")], 'ViewQuiltTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewSidebar.js b/packages/material-ui-icons/lib/esm/ViewSidebar.js new file mode 100644 index 00000000000000..6270c3c8bb6363 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewSidebar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 20H2V4h14v16zm2-12h4V4h-4v4zm0 12h4v-4h-4v4zm0-6h4v-4h-4v4z" +}), 'ViewSidebar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewSidebarOutlined.js b/packages/material-ui-icons/lib/esm/ViewSidebarOutlined.js new file mode 100644 index 00000000000000..56a80ee61e093a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewSidebarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2 4v16h20V4H2zm18 4.67h-2.5V6H20v2.67zm-2.5 2H20v2.67h-2.5v-2.67zM4 6h11.5v12H4V6zm13.5 12v-2.67H20V18h-2.5z" +}), 'ViewSidebarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewSidebarRounded.js b/packages/material-ui-icons/lib/esm/ViewSidebarRounded.js new file mode 100644 index 00000000000000..6c44c78d746b22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewSidebarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15 20H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1zm4-12h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0 12h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm0-6h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1z" +}), 'ViewSidebarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewSidebarSharp.js b/packages/material-ui-icons/lib/esm/ViewSidebarSharp.js new file mode 100644 index 00000000000000..d48fa07f792641 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewSidebarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 20H2V4h14v16zm2-12h4V4h-4v4zm0 12h4v-4h-4v4zm0-6h4v-4h-4v4z" +}), 'ViewSidebarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewSidebarTwoTone.js b/packages/material-ui-icons/lib/esm/ViewSidebarTwoTone.js new file mode 100644 index 00000000000000..146b167b765225 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewSidebarTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 8.67h-2.5V6H20v2.67zm-2.5 2H20v2.67h-2.5v-2.67zM4 6h11.5v12H4V6zm13.5 12v-2.67H20V18h-2.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M2 4v16h20V4H2zm18 4.67h-2.5V6H20v2.67zm-2.5 2H20v2.67h-2.5v-2.67zM4 6h11.5v12H4V6zm13.5 12v-2.67H20V18h-2.5z" +}, "1")], 'ViewSidebarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewStream.js b/packages/material-ui-icons/lib/esm/ViewStream.js new file mode 100644 index 00000000000000..58ac1bb9a455ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewStream.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17v-2c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2zM3 7v2c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2z" +}), 'ViewStream'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewStreamOutlined.js b/packages/material-ui-icons/lib/esm/ViewStreamOutlined.js new file mode 100644 index 00000000000000..388968c30869c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewStreamOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 7v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 10H5v-4h14v4zM5 11V7h14v4H5z" +}), 'ViewStreamOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewStreamRounded.js b/packages/material-ui-icons/lib/esm/ViewStreamRounded.js new file mode 100644 index 00000000000000..37cba84966dd52 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewStreamRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 17v-2c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2zM3 7v2c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2z" +}), 'ViewStreamRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewStreamSharp.js b/packages/material-ui-icons/lib/esm/ViewStreamSharp.js new file mode 100644 index 00000000000000..8681195a72d614 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewStreamSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 19v-6h18v6H3zM3 5v6h18V5H3z" +}), 'ViewStreamSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewStreamTwoTone.js b/packages/material-ui-icons/lib/esm/ViewStreamTwoTone.js new file mode 100644 index 00000000000000..77fc3563aedb44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewStreamTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 17H5v-4h14v4zM5 11V7h14v4H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 7v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 10H5v-4h14v4zM5 11V7h14v4H5z" +}, "1")], 'ViewStreamTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewWeek.js b/packages/material-ui-icons/lib/esm/ViewWeek.js new file mode 100644 index 00000000000000..6fc58a8f0bae25 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewWeek.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.33 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h1.33c1.1 0 2 .9 2 2v12c0 1.1-.89 2-2 2zM22 18V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2H20c1.11 0 2-.9 2-2zm-7.33 0V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h1.33c1.1 0 2-.9 2-2z" +}), 'ViewWeek'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewWeekOutlined.js b/packages/material-ui-icons/lib/esm/ViewWeekOutlined.js new file mode 100644 index 00000000000000..e30a51e1485a44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewWeekOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z" +}), 'ViewWeekOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewWeekRounded.js b/packages/material-ui-icons/lib/esm/ViewWeekRounded.js new file mode 100644 index 00000000000000..0f0574e72a158a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewWeekRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.33 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h1.33c1.1 0 2 .9 2 2v12c0 1.1-.89 2-2 2zM22 18V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2H20c1.11 0 2-.9 2-2zm-7.33 0V6c0-1.1-.9-2-2-2h-1.33c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h1.33c1.1 0 2-.9 2-2z" +}), 'ViewWeekRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewWeekSharp.js b/packages/material-ui-icons/lib/esm/ViewWeekSharp.js new file mode 100644 index 00000000000000..9a4168c5683615 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewWeekSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7.33 20H2V4h5.33v16zM22 20V4h-5.33v16H22zm-7.33 0V4H9.33v16h5.34z" +}), 'ViewWeekSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ViewWeekTwoTone.js b/packages/material-ui-icons/lib/esm/ViewWeekTwoTone.js new file mode 100644 index 00000000000000..0913820a8b5e49 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ViewWeekTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8 18H4V6h4v12zm6 0h-4V6h4v12zm6 0h-4V6h4v12z" +}, "1")], 'ViewWeekTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Vignette.js b/packages/material-ui-icons/lib/esm/Vignette.js new file mode 100644 index 00000000000000..71abf228eb836f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Vignette.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" +}), 'Vignette'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VignetteOutlined.js b/packages/material-ui-icons/lib/esm/VignetteOutlined.js new file mode 100644 index 00000000000000..382fdfbd0eac97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VignetteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 5v14H3V5h18m0-2H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 5c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4m0-2c-4.42 0-8 2.69-8 6s3.58 6 8 6 8-2.69 8-6-3.58-6-8-6z" +}), 'VignetteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VignetteRounded.js b/packages/material-ui-icons/lib/esm/VignetteRounded.js new file mode 100644 index 00000000000000..404ab5d8083f4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VignetteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" +}), 'VignetteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VignetteSharp.js b/packages/material-ui-icons/lib/esm/VignetteSharp.js new file mode 100644 index 00000000000000..ac9f7260c706a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VignetteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M23 3H1v18h22V3zM12 18c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" +}), 'VignetteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VignetteTwoTone.js b/packages/material-ui-icons/lib/esm/VignetteTwoTone.js new file mode 100644 index 00000000000000..66f34fb3df7d0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VignetteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 19h18V5H3v14zm9-13c4.42 0 8 2.69 8 6s-3.58 6-8 6-8-2.69-8-6 3.58-6 8-6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-9-1c4.42 0 8-2.69 8-6s-3.58-6-8-6-8 2.69-8 6 3.58 6 8 6zm0-10c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4z" +}, "1")], 'VignetteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Villa.js b/packages/material-ui-icons/lib/esm/Villa.js new file mode 100644 index 00000000000000..d01bbbe9f30da2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Villa.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21H3V8l13-5v7H7v11zm12-11c-1.1 0-2 .9-2 2H9v9h5v-5h2v5h5v-9c0-1.1-.9-2-2-2z" +}), 'Villa'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VillaOutlined.js b/packages/material-ui-icons/lib/esm/VillaOutlined.js new file mode 100644 index 00000000000000..73183ee7de5954 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VillaOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 10c-1.1 0-2 .9-2 2h-1V3L3 8v13h18v-9c0-1.1-.9-2-2-2zM5 9.37l9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z" +}), 'VillaOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VillaRounded.js b/packages/material-ui-icons/lib/esm/VillaRounded.js new file mode 100644 index 00000000000000..786739e1418208 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VillaRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21H4c-.55 0-1-.45-1-1V8.69c0-.42.25-.79.64-.94l11-4.23c.66-.25 1.36.23 1.36.94V10H8c-.55 0-1 .45-1 1v10zm10-9h-7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h4v-4c0-.55.45-1 1-1s1 .45 1 1v4h4c.55 0 1-.45 1-1v-8c0-1.1-.9-2-2-2s-2 .9-2 2z" +}), 'VillaRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VillaSharp.js b/packages/material-ui-icons/lib/esm/VillaSharp.js new file mode 100644 index 00000000000000..e957fd23fafd69 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VillaSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 21H3V8l13-5v7H7v11zm12-11c-1.1 0-2 .9-2 2H9v9h5v-5h2v5h5v-9c0-1.1-.9-2-2-2z" +}), 'VillaSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VillaTwoTone.js b/packages/material-ui-icons/lib/esm/VillaTwoTone.js new file mode 100644 index 00000000000000..10e5fed0396236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VillaTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m5 9.37 9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 10c-1.1 0-2 .9-2 2h-1V3L3 8v13h18v-9c0-1.1-.9-2-2-2zM5 9.37l9-3.46V12H9v7H5V9.37zM19 19h-3v-3h-2v3h-3v-5h8v5z" +}, "1")], 'VillaTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Visibility.js b/packages/material-ui-icons/lib/esm/Visibility.js new file mode 100644 index 00000000000000..26ec925a70455b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Visibility.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'Visibility'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityOff.js b/packages/material-ui-icons/lib/esm/VisibilityOff.js new file mode 100644 index 00000000000000..dc19bdbd9047a8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78 3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z" +}), 'VisibilityOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityOffOutlined.js b/packages/material-ui-icons/lib/esm/VisibilityOffOutlined.js new file mode 100644 index 00000000000000..dfc0ae036173ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5 2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4 1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z" +}), 'VisibilityOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityOffRounded.js b/packages/material-ui-icons/lib/esm/VisibilityOffRounded.js new file mode 100644 index 00000000000000..76a08a5a5940bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM2.71 3.16c-.39.39-.39 1.02 0 1.41l1.97 1.97C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l2.72 2.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.16c-.39-.39-1.03-.39-1.42 0zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z" +}), 'VisibilityOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityOffSharp.js b/packages/material-ui-icons/lib/esm/VisibilityOffSharp.js new file mode 100644 index 00000000000000..03f2087b4c22b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM3.42 2.45 2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l3.43 3.43 1.41-1.41L3.42 2.45zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z" +}), 'VisibilityOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityOffTwoTone.js b/packages/material-ui-icons/lib/esm/VisibilityOffTwoTone.js new file mode 100644 index 00000000000000..5deda3e2dd34d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 14c.04 0 .08-.01.12-.01l-2.61-2.61c0 .04-.01.08-.01.12 0 1.38 1.12 2.5 2.5 2.5zm1.01-4.79 1.28 1.28c-.26-.57-.71-1.03-1.28-1.28zm7.81 2.29C19.17 8.13 15.79 6 12 6c-.68 0-1.34.09-1.99.22l.92.92c.35-.09.7-.14 1.07-.14 2.48 0 4.5 2.02 4.5 4.5 0 .37-.06.72-.14 1.07l2.05 2.05c.98-.86 1.81-1.91 2.41-3.12zM12 17c.95 0 1.87-.13 2.75-.39l-.98-.98c-.54.24-1.14.37-1.77.37-2.48 0-4.5-2.02-4.5-4.5 0-.63.13-1.23.36-1.77L6.11 7.97c-1.22.91-2.23 2.1-2.93 3.52C4.83 14.86 8.21 17 12 17z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm2.28 4.49 2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.06-1.07.14L13 9.21c.58.25 1.03.71 1.28 1.28zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5 2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4 1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z" +}, "1")], 'VisibilityOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityOutlined.js b/packages/material-ui-icons/lib/esm/VisibilityOutlined.js new file mode 100644 index 00000000000000..869db6f1215b9d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z" +}), 'VisibilityOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityRounded.js b/packages/material-ui-icons/lib/esm/VisibilityRounded.js new file mode 100644 index 00000000000000..d430cdb71f5e27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'VisibilityRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilitySharp.js b/packages/material-ui-icons/lib/esm/VisibilitySharp.js new file mode 100644 index 00000000000000..438674d5a746bc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilitySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" +}), 'VisibilitySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VisibilityTwoTone.js b/packages/material-ui-icons/lib/esm/VisibilityTwoTone.js new file mode 100644 index 00000000000000..0a7f389dcc2d47 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VisibilityTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 6c-3.79 0-7.17 2.13-8.82 5.5C4.83 14.87 8.21 17 12 17s7.17-2.13 8.82-5.5C19.17 8.13 15.79 6 12 6zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7 12 7s4.5 2.02 4.5 4.5S14.48 16 12 16z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6s7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17zm0-10c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7zm0 7c-1.38 0-2.5-1.12-2.5-2.5S10.62 9 12 9s2.5 1.12 2.5 2.5S13.38 14 12 14z" +}, "1")], 'VisibilityTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceChat.js b/packages/material-ui-icons/lib/esm/VoiceChat.js new file mode 100644 index 00000000000000..95ecc2f5fab3c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceChat.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12-4-3.2V14H6V6h8v3.2L18 6v8z" +}), 'VoiceChat'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceChatOutlined.js b/packages/material-ui-icons/lib/esm/VoiceChatOutlined.js new file mode 100644 index 00000000000000..a160a999b64d1b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceChatOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4 3 2.4V7l-3 2.4V7H7v6h7z" +}), 'VoiceChatOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceChatRounded.js b/packages/material-ui-icons/lib/esm/VoiceChatRounded.js new file mode 100644 index 00000000000000..f6a422547ee825 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceChatRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3.62 10.7L14 10.8V13c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.2l2.38-1.9c.65-.52 1.62-.06 1.62.78v3.84c0 .84-.97 1.3-1.62.78z" +}), 'VoiceChatRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceChatSharp.js b/packages/material-ui-icons/lib/esm/VoiceChatSharp.js new file mode 100644 index 00000000000000..e69254901d0cd3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceChatSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2.01L2 22l4-4h16V2zm-4 12-4-3.2V14H6V6h8v3.2L18 6v8z" +}), 'VoiceChatSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceChatTwoTone.js b/packages/material-ui-icons/lib/esm/VoiceChatTwoTone.js new file mode 100644 index 00000000000000..3397be4b814bcd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceChatTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 17.17 5.17 16H20V4H4v13.17zM7 7h7v2.4L17 7v6l-3-2.4V13H7V7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4 3 2.4V7l-3 2.4V7H7v6h7z" +}, "1")], 'VoiceChatTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceOverOff.js b/packages/material-ui-icons/lib/esm/VoiceOverOff.js new file mode 100644 index 00000000000000..d6a541c29e5ae5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceOverOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.99 9.18c0-.06.01-.12.01-.18 0-2.21-1.79-4-4-4-.06 0-.12.01-.18.01l4.17 4.17zm-6.1-3.56L4.27 3 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62L19.73 21 21 19.73l-8.62-8.62-5.49-5.49zM9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" +}), 'VoiceOverOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceOverOffOutlined.js b/packages/material-ui-icons/lib/esm/VoiceOverOffOutlined.js new file mode 100644 index 00000000000000..ffc49f7ab7ed01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceOverOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.76 5.36-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z" +}), 'VoiceOverOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceOverOffRounded.js b/packages/material-ui-icons/lib/esm/VoiceOverOffRounded.js new file mode 100644 index 00000000000000..264ed1aa50cdd1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceOverOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.72 6.41c-.35.35-.44.88-.25 1.35.3.75.32 1.58.05 2.34-.16.46-.06.98.29 1.32.6.6 1.66.47 2.02-.31.64-1.39.6-2.99-.12-4.41-.4-.75-1.41-.88-1.99-.29zm3.46-3.52c-.4.4-.46 1.02-.13 1.48 1.93 2.68 1.95 6.25.09 9.07-.31.46-.23 1.08.16 1.47.51.51 1.38.46 1.81-.13 2.57-3.51 2.52-8.2-.17-11.77-.43-.56-1.26-.62-1.76-.12zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM3.71 3.56c-.39.39-.39 1.02 0 1.41l1.91 1.91c-.56.89-.79 2.01-.47 3.2.36 1.33 1.44 2.4 2.77 2.77 1.19.33 2.31.09 3.2-.47l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-.37-.11-.7-.29-1.02l2.31 2.31c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56a.9959.9959 0 0 0-1.41 0z" +}), 'VoiceOverOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceOverOffSharp.js b/packages/material-ui-icons/lib/esm/VoiceOverOffSharp.js new file mode 100644 index 00000000000000..3c4fe02cdd8c9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceOverOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.76 5.36-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86z" +}), 'VoiceOverOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoiceOverOffTwoTone.js b/packages/material-ui-icons/lib/esm/VoiceOverOffTwoTone.js new file mode 100644 index 00000000000000..94bf9bf061d7a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoiceOverOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2zM7 9c0 1.1.9 2 2 2 .22 0 .42-.04.62-.11L7.11 8.38c-.07.2-.11.4-.11.62z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m16.76 5.36-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z" +}, "1")], 'VoiceOverOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Voicemail.js b/packages/material-ui-icons/lib/esm/Voicemail.js new file mode 100644 index 00000000000000..a680ff33ef5174 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Voicemail.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" +}), 'Voicemail'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoicemailOutlined.js b/packages/material-ui-icons/lib/esm/VoicemailOutlined.js new file mode 100644 index 00000000000000..a5f6593b772d0a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoicemailOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" +}), 'VoicemailOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoicemailRounded.js b/packages/material-ui-icons/lib/esm/VoicemailRounded.js new file mode 100644 index 00000000000000..1c7d52936d1d20 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoicemailRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" +}), 'VoicemailRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoicemailSharp.js b/packages/material-ui-icons/lib/esm/VoicemailSharp.js new file mode 100644 index 00000000000000..ff879f980fdfa9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoicemailSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" +}), 'VoicemailSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VoicemailTwoTone.js b/packages/material-ui-icons/lib/esm/VoicemailTwoTone.js new file mode 100644 index 00000000000000..809d9dd0c0c885 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VoicemailTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" +}), 'VoicemailTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeDown.js b/packages/material-ui-icons/lib/esm/VolumeDown.js new file mode 100644 index 00000000000000..ba7b307486e36b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeDown.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z" +}), 'VolumeDown'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeDownOutlined.js b/packages/material-ui-icons/lib/esm/VolumeDownOutlined.js new file mode 100644 index 00000000000000..ce3b465187fcc9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeDownOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z" +}), 'VolumeDownOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeDownRounded.js b/packages/material-ui-icons/lib/esm/VolumeDownRounded.js new file mode 100644 index 00000000000000..101b2af159c1e0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeDownRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L9 9H6c-.55 0-1 .45-1 1z" +}), 'VolumeDownRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeDownSharp.js b/packages/material-ui-icons/lib/esm/VolumeDownSharp.js new file mode 100644 index 00000000000000..4f6adae6baa1e5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeDownSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z" +}), 'VolumeDownSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeDownTwoTone.js b/packages/material-ui-icons/lib/esm/VolumeDownTwoTone.js new file mode 100644 index 00000000000000..a9c25050b32a2c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeDownTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 13h2.83L12 15.17V8.83L9.83 11H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z" +}, "1")], 'VolumeDownTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeMute.js b/packages/material-ui-icons/lib/esm/VolumeMute.js new file mode 100644 index 00000000000000..466a071c91e103 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeMute.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 9v6h4l5 5V4l-5 5H7z" +}), 'VolumeMute'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeMuteOutlined.js b/packages/material-ui-icons/lib/esm/VolumeMuteOutlined.js new file mode 100644 index 00000000000000..c3e80832204019 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeMuteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 8.83v6.34L11.83 13H9v-2h2.83L14 8.83M16 4l-5 5H7v6h4l5 5V4z" +}), 'VolumeMuteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeMuteRounded.js b/packages/material-ui-icons/lib/esm/VolumeMuteRounded.js new file mode 100644 index 00000000000000..83cbc325b8fd8c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeMuteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L11 9H8c-.55 0-1 .45-1 1z" +}), 'VolumeMuteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeMuteSharp.js b/packages/material-ui-icons/lib/esm/VolumeMuteSharp.js new file mode 100644 index 00000000000000..6e5197c7f1366c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeMuteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 9v6h4l5 5V4l-5 5H7z" +}), 'VolumeMuteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeMuteTwoTone.js b/packages/material-ui-icons/lib/esm/VolumeMuteTwoTone.js new file mode 100644 index 00000000000000..2e489939b03e46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeMuteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M9 13h2.83L14 15.17V8.83L11.83 11H9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 9v6h4l5 5V4l-5 5H7zm7-.17v6.34L11.83 13H9v-2h2.83L14 8.83z" +}, "1")], 'VolumeMuteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeOff.js b/packages/material-ui-icons/lib/esm/VolumeOff.js new file mode 100644 index 00000000000000..8b9e1e0a31372a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3 3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4 9.91 6.09 12 8.18V4z" +}), 'VolumeOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeOffOutlined.js b/packages/material-ui-icons/lib/esm/VolumeOffOutlined.js new file mode 100644 index 00000000000000..aa0d156611d78c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.34 2.93 2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17 7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" +}), 'VolumeOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeOffRounded.js b/packages/material-ui-icons/lib/esm/VolumeOffRounded.js new file mode 100644 index 00000000000000..1e2388b6600b6e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3.63 3.63c-.39.39-.39 1.02 0 1.41L7.29 8.7 7 9H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71v-4.17l4.18 4.18c-.49.37-1.02.68-1.6.91-.36.15-.58.53-.58.92 0 .72.73 1.18 1.39.91.8-.33 1.55-.77 2.22-1.31l1.34 1.34c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.05 3.63c-.39-.39-1.02-.39-1.42 0zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-3.83-2.4-7.11-5.78-8.4-.59-.23-1.22.23-1.22.86v.19c0 .38.25.71.61.85C17.18 6.54 19 9.06 19 12zm-8.71-6.29-.17.17L12 7.76V6.41c0-.89-1.08-1.33-1.71-.7zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" +}), 'VolumeOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeOffSharp.js b/packages/material-ui-icons/lib/esm/VolumeOffSharp.js new file mode 100644 index 00000000000000..d65c5c027cb429 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.34 2.93 2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" +}), 'VolumeOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeOffTwoTone.js b/packages/material-ui-icons/lib/esm/VolumeOffTwoTone.js new file mode 100644 index 00000000000000..7ce3bce74a3632 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7.83 11H5v2h2.83L10 15.17v-3.76l-1.29-1.29z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M4.34 2.93 2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17 7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" +}, "1")], 'VolumeOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeUp.js b/packages/material-ui-icons/lib/esm/VolumeUp.js new file mode 100644 index 00000000000000..985009b2ab08fe --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeUp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" +}), 'VolumeUp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeUpOutlined.js b/packages/material-ui-icons/lib/esm/VolumeUpOutlined.js new file mode 100644 index 00000000000000..28c8b4da4708c0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeUpOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z" +}), 'VolumeUpOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeUpRounded.js b/packages/material-ui-icons/lib/esm/VolumeUpRounded.js new file mode 100644 index 00000000000000..fd41ec98d5c56b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeUpRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L7 9H4c-.55 0-1 .45-1 1zm13.5 2c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 4.45v.2c0 .38.25.71.6.85C17.18 6.53 19 9.06 19 12s-1.82 5.47-4.4 6.5c-.36.14-.6.47-.6.85v.2c0 .63.63 1.07 1.21.85C18.6 19.11 21 15.84 21 12s-2.4-7.11-5.79-8.4c-.58-.23-1.21.22-1.21.85z" +}), 'VolumeUpRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeUpSharp.js b/packages/material-ui-icons/lib/esm/VolumeUpSharp.js new file mode 100644 index 00000000000000..2e97cf1305df67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeUpSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" +}), 'VolumeUpSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolumeUpTwoTone.js b/packages/material-ui-icons/lib/esm/VolumeUpTwoTone.js new file mode 100644 index 00000000000000..ed9d18f0ff3c27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolumeUpTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 13h2.83L10 15.17V8.83L7.83 11H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zm4-.86v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zm0-4.74v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z" +}, "1")], 'VolumeUpTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolunteerActivism.js b/packages/material-ui-icons/lib/esm/VolunteerActivism.js new file mode 100644 index 00000000000000..fe2b6ca84e0819 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolunteerActivism.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM20 17h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9.02L14 22l8.01-3c-.01-1.1-.9-2-2.01-2z" +}), 'VolunteerActivism'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolunteerActivismOutlined.js b/packages/material-ui-icons/lib/esm/VolunteerActivismOutlined.js new file mode 100644 index 00000000000000..359b64d5516a65 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolunteerActivismOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16 13c3.09-2.81 6-5.44 6-7.7C22 3.45 20.55 2 18.7 2c-1.04 0-2.05.49-2.7 1.25C15.34 2.49 14.34 2 13.3 2 11.45 2 10 3.45 10 5.3c0 2.26 2.91 4.89 6 7.7zm-2.7-9c.44 0 .89.21 1.18.55L16 6.34l1.52-1.79c.29-.34.74-.55 1.18-.55.74 0 1.3.56 1.3 1.3 0 1.12-2.04 3.17-4 4.99-1.96-1.82-4-3.88-4-4.99 0-.74.56-1.3 1.3-1.3zM19 16h-2c0-1.2-.75-2.28-1.87-2.7L8.97 11H1v11h6v-1.44l7 1.94 8-2.5v-1c0-1.66-1.34-3-3-3zM3 20v-7h2v7H3zm10.97.41L7 18.48V13h1.61l5.82 2.17c.34.13.57.46.57.83 0 0-1.99-.05-2.3-.15l-2.38-.79-.63 1.9 2.38.79c.51.17 1.04.26 1.58.26H19c.39 0 .74.23.9.56l-5.93 1.84z" +}), 'VolunteerActivismOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolunteerActivismRounded.js b/packages/material-ui-icons/lib/esm/VolunteerActivismRounded.js new file mode 100644 index 00000000000000..33bb3db8ae78b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolunteerActivismRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 11c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2s2-.9 2-2v-7c0-1.1-.9-2-2-2zm7-5.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25.65-.76 1.66-1.25 2.7-1.25C20.55 2 22 3.45 22 5.3c0 2.1-2.5 4.51-5.33 7.09-.38.35-.97.35-1.35 0C12.5 9.81 10 7.4 10 5.3M19.99 17h-6.83a.96.96 0 0 1-.33-.06l-1.47-.51c-.26-.09-.39-.37-.3-.63.09-.26.38-.4.64-.3l1.12.43c.11.04.24.07.36.07h2.63c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L9.3 11.13c-.22-.09-.46-.13-.7-.13H7v9.02l6.37 1.81c.41.12.85.1 1.25-.05L22 19c0-1.11-.9-2-2.01-2z" +}), 'VolunteerActivismRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolunteerActivismSharp.js b/packages/material-ui-icons/lib/esm/VolunteerActivismSharp.js new file mode 100644 index 00000000000000..3bab14df8935e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolunteerActivismSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM22 17h-9l-2.09-.73.33-.95L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3z" +}), 'VolunteerActivismSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VolunteerActivismTwoTone.js b/packages/material-ui-icons/lib/esm/VolunteerActivismTwoTone.js new file mode 100644 index 00000000000000..75eaba0f510ccd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VolunteerActivismTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M3 13h2v7H3zm13-2.71c1.96-1.82 4-3.88 4-4.99 0-.74-.56-1.3-1.3-1.3-.44 0-.89.21-1.18.55L16 6.34l-1.52-1.79c-.29-.34-.74-.55-1.18-.55-.74 0-1.3.56-1.3 1.3 0 1.11 2.04 3.17 4 4.99zM19 18h-5.35c-.54 0-1.07-.09-1.58-.26l-2.38-.79.63-1.9 2.38.79c.31.1.63.15.95.15H15c0-.37-.23-.7-.57-.83L8.61 13H7v5.48l6.97 1.94 5.93-1.85c-.16-.34-.51-.57-.9-.57z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16 13c3.09-2.81 6-5.44 6-7.7C22 3.45 20.55 2 18.7 2c-1.04 0-2.05.49-2.7 1.25C15.35 2.49 14.34 2 13.3 2 11.45 2 10 3.45 10 5.3c0 2.26 2.91 4.89 6 7.7zm-2.7-9c.44 0 .89.21 1.18.55L16 6.34l1.52-1.79c.29-.34.74-.55 1.18-.55.74 0 1.3.56 1.3 1.3 0 1.12-2.04 3.17-4 4.99-1.96-1.82-4-3.88-4-4.99 0-.74.56-1.3 1.3-1.3zM19 16h-2c0-1.2-.75-2.28-1.87-2.7L8.97 11H1v11h6v-1.44l7 1.94 8-2.5v-1c0-1.66-1.34-3-3-3zM5 20H3v-7h2v7zm8.97.41L7 18.48V13h1.61l5.82 2.17c.34.13.57.46.57.83h-1.35c-.32 0-.64-.05-.95-.15l-2.38-.79-.63 1.9 2.38.79c.51.17 1.04.26 1.58.26H19c.39 0 .74.23.9.56l-5.93 1.84z" +}, "1")], 'VolunteerActivismTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnKey.js b/packages/material-ui-icons/lib/esm/VpnKey.js new file mode 100644 index 00000000000000..bb359817c4b0fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnKey.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'VpnKey'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnKeyOutlined.js b/packages/material-ui-icons/lib/esm/VpnKeyOutlined.js new file mode 100644 index 00000000000000..cc86039f55197e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnKeyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 19h-6v-4h-2.68c-1.14 2.42-3.6 4-6.32 4-3.86 0-7-3.14-7-7s3.14-7 7-7c2.72 0 5.17 1.58 6.32 4H24v6h-2v4zm-4-2h2v-4h2v-2H11.94l-.23-.67C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" +}), 'VpnKeyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnKeyRounded.js b/packages/material-ui-icons/lib/esm/VpnKeyRounded.js new file mode 100644 index 00000000000000..bbf9621a40d176 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnKeyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.65 10C11.7 7.31 8.9 5.5 5.77 6.12c-2.29.46-4.15 2.29-4.63 4.58C.32 14.57 3.26 18 7 18c2.61 0 4.83-1.67 5.65-4H17v2c0 1.1.9 2 2 2s2-.9 2-2v-2c1.1 0 2-.9 2-2s-.9-2-2-2h-8.35zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'VpnKeyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnKeySharp.js b/packages/material-ui-icons/lib/esm/VpnKeySharp.js new file mode 100644 index 00000000000000..5d084db14f7d54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnKeySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}), 'VpnKeySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnKeyTwoTone.js b/packages/material-ui-icons/lib/esm/VpnKeyTwoTone.js new file mode 100644 index 00000000000000..8e1f99e93d8134 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnKeyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M11.71 10.33C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4h2v-4h2v-2H11.94l-.23-.67zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c2.72 0 5.17-1.58 6.32-4H16v4h6v-4h2V9H13.32C12.17 6.58 9.72 5 7 5zm15 8h-2v4h-2v-4h-6.06l-.23.67C11.01 15.66 9.11 17 7 17c-2.76 0-5-2.24-5-5s2.24-5 5-5c2.11 0 4.01 1.34 4.71 3.33l.23.67H22v2zM7 9c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" +}, "1")], 'VpnKeyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnLock.js b/packages/material-ui-icons/lib/esm/VpnLock.js new file mode 100644 index 00000000000000..149e75907a767f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnLock.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm-2.28 8c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93z" +}), 'VpnLock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnLockOutlined.js b/packages/material-ui-icons/lib/esm/VpnLockOutlined.js new file mode 100644 index 00000000000000..a07fe7e0eae862 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnLockOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" +}), 'VpnLockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnLockRounded.js b/packages/material-ui-icons/lib/esm/VpnLockRounded.js new file mode 100644 index 00000000000000..e757482dd826b4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnLockRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.92 11c.44 3.63-1.52 5.85-2.02 6.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2V2.46c-.95-.3-1.95-.46-3-.46C6.48 2 2 6.48 2 12s4.48 10 10 10c5.73 0 10.51-4.86 9.95-11h-2.03zM11 19.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zM22 4v-.89c0-1-.68-1.92-1.66-2.08C19.08.82 18 1.79 18 3v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-2V3c0-.55.45-1 1-1s1 .45 1 1v1z" +}), 'VpnLockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnLockSharp.js b/packages/material-ui-icons/lib/esm/VpnLockSharp.js new file mode 100644 index 00000000000000..e32d960e8a6dd7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnLockSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 13c0 2.08-.8 3.97-2.1 5.39V17H14v-4H7v-2h3V8h4V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03c.04.33.08.66.08 1zm-9 7.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v3h2v1.93zM22 4v-.36c0-1.31-.94-2.5-2.24-2.63C18.26.86 17 2.03 17 3.5V4h-1v6h7V4h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" +}), 'VpnLockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VpnLockTwoTone.js b/packages/material-ui-icons/lib/esm/VpnLockTwoTone.js new file mode 100644 index 00000000000000..a3d906c056e802 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VpnLockTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 8h-2v2c0 .55-.45 1-1 1H7v2h6c.55 0 1 .45 1 1v3h1c.9 0 1.64.58 1.9 1.39C18.2 16.97 19 15.08 19 13c0-.34-.04-.67-.08-1H17c-1.65 0-3-1.35-3-3V6c0 1.1-.9 2-2 2zm-4 9v-1l-4.79-4.79C3.08 11.79 3 12.38 3 13c0 4.08 3.05 7.44 7 7.93V19c-1.1 0-2-.9-2-2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" +}, "1")], 'VpnLockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Vrpano.js b/packages/material-ui-icons/lib/esm/Vrpano.js new file mode 100644 index 00000000000000..435a5f207b6f17 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Vrpano.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.69 4.05C18.66 4.73 15.86 5.5 12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.16-1.31-.95zM12 15c-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4c-1.99-.25-4.21-.4-6.51-.4z" +}), 'Vrpano'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VrpanoOutlined.js b/packages/material-ui-icons/lib/esm/VrpanoOutlined.js new file mode 100644 index 00000000000000..46d614c3da45d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VrpanoOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.01 4C20.45 4 17.4 5.5 12 5.5c-5.31 0-8.49-1.49-9.01-1.49-.53 0-.99.44-.99 1.01V19c0 .57.46 1 .99 1 .57 0 3.55-1.5 9.01-1.5 5.42 0 8.44 1.5 9.01 1.5.53 0 .99-.43.99-1V5c0-.57-.46-1-.99-1zM20 17.63c-2.01-.59-4.62-1.13-8-1.13-3.39 0-5.99.54-8 1.13V6.38c2.58.73 5.32 1.12 8 1.12 3.38 0 5.99-.54 8-1.13v11.26z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m9.17 10.99-3.69 4.42c2-.26 4.18-.41 6.52-.41 2.3 0 4.52.15 6.51.4L14 10l-2.83 3.39-2-2.4z" +}, "1")], 'VrpanoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VrpanoRounded.js b/packages/material-ui-icons/lib/esm/VrpanoRounded.js new file mode 100644 index 00000000000000..35c9d81053337d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VrpanoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.69 4.05C18.66 4.73 15.86 5.5 12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.16-1.31-.95zm-3.41 11.21C15.62 15.1 13.84 15 12 15c-1.87 0-3.63.1-5.28.27-.45.04-.72-.48-.43-.82l2.5-3c.2-.24.57-.24.77 0l1.62 1.94 2.44-2.93c.2-.24.57-.24.77 0l3.32 3.99c.28.34.01.86-.43.81z" +}), 'VrpanoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VrpanoSharp.js b/packages/material-ui-icons/lib/esm/VrpanoSharp.js new file mode 100644 index 00000000000000..a1422a54081bc4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VrpanoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9zm0 9.5c-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4c-1.99-.25-4.21-.4-6.51-.4z" +}), 'VrpanoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/VrpanoTwoTone.js b/packages/material-ui-icons/lib/esm/VrpanoTwoTone.js new file mode 100644 index 00000000000000..a3614e09c51b97 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/VrpanoTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 6.38v11.25c2.01-.59 4.61-1.13 8-1.13 3.38 0 5.99.54 8 1.13V6.37c-2.01.59-4.62 1.13-8 1.13-2.68 0-5.42-.39-8-1.12zm14.51 9.02c-1.99-.25-4.21-.4-6.51-.4-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21.01 4C20.45 4 17.4 5.5 12 5.5c-5.31 0-8.49-1.49-9.01-1.49-.53 0-.99.44-.99 1.01V19c0 .57.46 1 .99 1 .57 0 3.55-1.5 9.01-1.5 5.42 0 8.44 1.5 9.01 1.5.53 0 .99-.43.99-1V5c0-.57-.46-1-.99-1zM20 17.63c-2.01-.59-4.62-1.13-8-1.13-3.39 0-5.99.54-8 1.13V6.38c2.58.73 5.32 1.12 8 1.12 3.38 0 5.99-.54 8-1.13v11.26z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m9.17 10.99-3.69 4.42c2-.26 4.18-.41 6.52-.41 2.3 0 4.52.15 6.51.4L14 10l-2.83 3.39-2-2.4z" +}, "2")], 'VrpanoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Wallpaper.js b/packages/material-ui-icons/lib/esm/Wallpaper.js new file mode 100644 index 00000000000000..2cbd2d088adfb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Wallpaper.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" +}), 'Wallpaper'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WallpaperOutlined.js b/packages/material-ui-icons/lib/esm/WallpaperOutlined.js new file mode 100644 index 00000000000000..5c9e898f6c384b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WallpaperOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" +}), 'WallpaperOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WallpaperRounded.js b/packages/material-ui-icons/lib/esm/WallpaperRounded.js new file mode 100644 index 00000000000000..ce7f15927b47f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WallpaperRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 5c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v6c0 .55.45 1 1 1s1-.45 1-1V5zm5.61 8.49-2.96 3.7c-.26.33-.03.81.39.81H17c.41 0 .65-.47.4-.8l-2-2.67c-.2-.27-.6-.27-.8 0l-1.63 2.18-2.58-3.22c-.2-.25-.58-.25-.78 0zM17 8.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-6c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1 .45 1 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-1.1-.9-2-2-2zm0 17c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5zM3 13c-.55 0-1 .45-1 1v6c0 1.1.9 2 2 2h6c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1z" +}), 'WallpaperRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WallpaperSharp.js b/packages/material-ui-icons/lib/esm/WallpaperSharp.js new file mode 100644 index 00000000000000..95c8965f94c82a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WallpaperSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4h7V2H2v9h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM22 2h-9v2h7v7h2V2zm-2 18h-7v2h9v-9h-2v7zM4 13H2v9h9v-2H4v-7z" +}), 'WallpaperSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WallpaperTwoTone.js b/packages/material-ui-icons/lib/esm/WallpaperTwoTone.js new file mode 100644 index 00000000000000..04fec04c3c6434 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WallpaperTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z" +}), 'WallpaperTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Warning.js b/packages/material-ui-icons/lib/esm/Warning.js new file mode 100644 index 00000000000000..5b5e08a7c55657 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Warning.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" +}), 'Warning'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningAmber.js b/packages/material-ui-icons/lib/esm/WarningAmber.js new file mode 100644 index 00000000000000..6fc3f586ae7123 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningAmber.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M13 16h-2v2h2zm0-6h-2v5h2z" +}, "1")], 'WarningAmber'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningAmberOutlined.js b/packages/material-ui-icons/lib/esm/WarningAmberOutlined.js new file mode 100644 index 00000000000000..423eabe04a064d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningAmberOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" +}), 'WarningAmberOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningAmberRounded.js b/packages/material-ui-icons/lib/esm/WarningAmberRounded.js new file mode 100644 index 00000000000000..00afd9250505e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningAmberRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.99 19.53 19H4.47L12 5.99M2.74 18c-.77 1.33.19 3 1.73 3h15.06c1.54 0 2.5-1.67 1.73-3L13.73 4.99c-.77-1.33-2.69-1.33-3.46 0L2.74 18zM11 11v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zm0 5h2v2h-2z" +}), 'WarningAmberRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningAmberSharp.js b/packages/material-ui-icons/lib/esm/WarningAmberSharp.js new file mode 100644 index 00000000000000..b8de7448882597 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningAmberSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 5.99 19.53 19H4.47L12 5.99M12 2 1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" +}), 'WarningAmberSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningAmberTwoTone.js b/packages/material-ui-icons/lib/esm/WarningAmberTwoTone.js new file mode 100644 index 00000000000000..a728eaf6863452 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningAmberTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z" +}), 'WarningAmberTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningOutlined.js b/packages/material-ui-icons/lib/esm/WarningOutlined.js new file mode 100644 index 00000000000000..013f7041431472 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" +}), 'WarningOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningRounded.js b/packages/material-ui-icons/lib/esm/WarningRounded.js new file mode 100644 index 00000000000000..faa6ed72e175e8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.47 21h15.06c1.54 0 2.5-1.67 1.73-3L13.73 4.99c-.77-1.33-2.69-1.33-3.46 0L2.74 18c-.77 1.33.19 3 1.73 3zM12 14c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z" +}), 'WarningRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningSharp.js b/packages/material-ui-icons/lib/esm/WarningSharp.js new file mode 100644 index 00000000000000..c37d927092cbe4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" +}), 'WarningSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WarningTwoTone.js b/packages/material-ui-icons/lib/esm/WarningTwoTone.js new file mode 100644 index 00000000000000..5c574b78065c44 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WarningTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4.47 19h15.06L12 5.99 4.47 19zM13 18h-2v-2h2v2zm0-4h-2v-4h2v4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z" +}, "1")], 'WarningTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Wash.js b/packages/material-ui-icons/lib/esm/Wash.js new file mode 100644 index 00000000000000..77c7b2323f9fa2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Wash.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18.5 8C19.88 8 21 6.88 21 5.5 21 3.83 18.5 1 18.5 1S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8zm-5 1c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zM9.12 5l-7.18 6.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25S19.44 10 18.75 10H8.86c.64-1.11 1.48-2.58 1.49-2.61.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7C10.22 6.12 9.12 5 9.12 5z" +}), 'Wash'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WashOutlined.js b/packages/material-ui-icons/lib/esm/WashOutlined.js new file mode 100644 index 00000000000000..900b9d33f5bfa3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WashOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm3.5-12c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8S21 6.88 21 5.5C21 3.83 18.5 1 18.5 1zm0 5.5c-.55 0-1-.45-1-1 0-.4.43-1.22 1-2.05.57.83 1 1.65 1 2.05 0 .55-.45 1-1 1z" +}), 'WashOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WashRounded.js b/packages/material-ui-icons/lib/esm/WashRounded.js new file mode 100644 index 00000000000000..92d6432ac2042d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WashRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M1.94 11.79c-.6.56-.94 1.35-.94 2.18V20c0 1.66 1.34 3 3 3h13.68c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h7.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h8.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38H12.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h6.18c.65 0 1.25-.47 1.32-1.12.08-.75-.51-1.38-1.24-1.38h-9.9l1.49-2.61c.09-.16.14-.33.14-.53 0-.26-.09-.5-.26-.7l-.42-.45c-.38-.39-1.01-.41-1.41-.03l-6.46 6.11zM18.5 8C19.88 8 21 6.88 21 5.5c0-1.25-1.41-3.16-2.11-4.04a.489.489 0 0 0-.77 0C17.41 2.34 16 4.25 16 5.5 16 6.88 17.12 8 18.5 8zm-5 1c.83 0 1.5-.67 1.5-1.5 0-.56-.67-1.49-1.11-2.04-.2-.25-.58-.25-.77 0C12.67 6.01 12 6.94 12 7.5c0 .83.67 1.5 1.5 1.5z" +}), 'WashRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WashSharp.js b/packages/material-ui-icons/lib/esm/WashSharp.js new file mode 100644 index 00000000000000..374161310a4e85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WashSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.12 5 1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5zm4.38 4c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8S21 6.88 21 5.5C21 3.83 18.5 1 18.5 1z" +}), 'WashSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WashTwoTone.js b/packages/material-ui-icons/lib/esm/WashTwoTone.js new file mode 100644 index 00000000000000..7abc9bceeb6681 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WashTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm8.5-14.5c-.55 0-1-.45-1-1 0-.4.43-1.22 1-2.05.57.83 1 1.65 1 2.05 0 .55-.45 1-1 1z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.75 16c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h6.75c.69 0 1.25-.56 1.25-1.25 0-.67-.53-1.2-1.18-1.24L8.87 10l1.48-2.6c.09-.17.14-.34.14-.54 0-.26-.09-.5-.26-.7L9.12 5l-7.18 6.8c-.6.56-.94 1.35-.94 2.17V20c0 1.66 1.34 3 3 3h13.75c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25H12v-1h7.75c.69 0 1.25-.56 1.25-1.25S20.44 17 19.75 17H12v-1h8.75zM10 21H4c-.55 0-1-.45-1-1v-6c0-.39.23-.64.36-.75L7 9.87V12h3v9zm3.5-12c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5C16 6.88 17.12 8 18.5 8S21 6.88 21 5.5C21 3.83 18.5 1 18.5 1zm0 5.5c-.55 0-1-.45-1-1 0-.4.43-1.22 1-2.05.57.83 1 1.65 1 2.05 0 .55-.45 1-1 1z" +}, "1")], 'WashTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Watch.js b/packages/material-ui-icons/lib/esm/Watch.js new file mode 100644 index 00000000000000..4109da0a945f3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Watch.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" +}), 'Watch'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchLater.js b/packages/material-ui-icons/lib/esm/WatchLater.js new file mode 100644 index 00000000000000..167fc6ca8f6f2f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchLater.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z" +}), 'WatchLater'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchLaterOutlined.js b/packages/material-ui-icons/lib/esm/WatchLaterOutlined.js new file mode 100644 index 00000000000000..feb534bdd5f550 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchLaterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z" +}), 'WatchLaterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchLaterRounded.js b/packages/material-ui-icons/lib/esm/WatchLaterRounded.js new file mode 100644 index 00000000000000..f5513591cf20ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchLaterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm3.55 13.8-4.08-2.51c-.3-.18-.48-.5-.48-.85V7.75c.01-.41.35-.75.76-.75s.75.34.75.75v4.45l3.84 2.31c.36.22.48.69.26 1.05-.22.35-.69.46-1.05.24z" +}), 'WatchLaterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchLaterSharp.js b/packages/material-ui-icons/lib/esm/WatchLaterSharp.js new file mode 100644 index 00000000000000..030461bed7e872 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchLaterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z" +}), 'WatchLaterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchLaterTwoTone.js b/packages/material-ui-icons/lib/esm/WatchLaterTwoTone.js new file mode 100644 index 00000000000000..671c7e77ada067 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchLaterTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4.2 12.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z" +}, "1")], 'WatchLaterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchOutlined.js b/packages/material-ui-icons/lib/esm/WatchOutlined.js new file mode 100644 index 00000000000000..11014a88362da4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m14.31 2 .41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2h4.61m.41 17.52L14.31 22H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48M16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27L16 0zm-4 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}), 'WatchOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchRounded.js b/packages/material-ui-icons/lib/esm/WatchRounded.js new file mode 100644 index 00000000000000..35215d90b38717 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-2.54-1.19-4.81-3.04-6.27l-.68-4.06C16.12.71 15.28 0 14.31 0H9.7c-.98 0-1.82.71-1.98 1.67l-.67 4.06C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27l.67 4.06c.16.96 1 1.67 1.98 1.67h4.61c.98 0 1.81-.71 1.97-1.67l.68-4.06C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" +}), 'WatchRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchSharp.js b/packages/material-ui-icons/lib/esm/WatchSharp.js new file mode 100644 index 00000000000000..abe2d4ad292cd5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" +}), 'WatchSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WatchTwoTone.js b/packages/material-ui-icons/lib/esm/WatchTwoTone.js new file mode 100644 index 00000000000000..7cadfb6291f4c6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WatchTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14.72 4.48 14.31 2H9.7l-.41 2.47C10.13 4.17 11.05 4 12 4c.96 0 1.87.17 2.72.48zM9.29 19.53 9.7 22h4.61l.41-2.48c-.85.31-1.76.48-2.72.48-.95 0-1.87-.17-2.71-.47z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.96 5.73 16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27zM9.7 2h4.61l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2zm4.61 20H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48L14.31 22zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" +}, "1")], 'WatchTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Water.js b/packages/material-ui-icons/lib/esm/Water.js new file mode 100644 index 00000000000000..e53ba3c63b7257 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Water.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" +}), 'Water'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterDamage.js b/packages/material-ui-icons/lib/esm/WaterDamage.js new file mode 100644 index 00000000000000..e135461a95a613 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterDamage.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 2 12h3v8h14v-8h3L12 3zm0 13c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z" +}), 'WaterDamage'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterDamageOutlined.js b/packages/material-ui-icons/lib/esm/WaterDamageOutlined.js new file mode 100644 index 00000000000000..239d0f1956c702 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterDamageOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 2 12h3v8h14v-8h3L12 3zM7 18v-7.81l5-4.5 5 4.5V18H7zm7-4c0 1.1-.9 2-2 2s-2-.9-2-2 2-4 2-4 2 2.9 2 4z" +}), 'WaterDamageOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterDamageRounded.js b/packages/material-ui-icons/lib/esm/WaterDamageRounded.js new file mode 100644 index 00000000000000..901e739d73d0c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterDamageRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m11.33 3.6-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0zM12 16c-1.1 0-2-.9-2-2 0-.78.99-2.44 1.58-3.36.2-.31.64-.31.84 0 .59.92 1.58 2.58 1.58 3.36 0 1.1-.9 2-2 2z" +}), 'WaterDamageRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterDamageSharp.js b/packages/material-ui-icons/lib/esm/WaterDamageSharp.js new file mode 100644 index 00000000000000..593be9654df4c7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterDamageSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 3 2 12h3v8h14v-8h3L12 3zm0 13c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z" +}), 'WaterDamageSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterDamageTwoTone.js b/packages/material-ui-icons/lib/esm/WaterDamageTwoTone.js new file mode 100644 index 00000000000000..1fcdca296089c2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterDamageTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m12 5.69-5 4.5V18h10v-7.81l-5-4.5zM12 16c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 3 2 12h3v8h14v-8h3L12 3zM7 18v-7.81l5-4.5 5 4.5V18H7zm7-4c0 1.1-.9 2-2 2s-2-.9-2-2 2-4 2-4 2 2.9 2 4z" +}, "1")], 'WaterDamageTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterOutlined.js b/packages/material-ui-icons/lib/esm/WaterOutlined.js new file mode 100644 index 00000000000000..d6aea6ca59655f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" +}), 'WaterOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterRounded.js b/packages/material-ui-icons/lib/esm/WaterRounded.js new file mode 100644 index 00000000000000..8d8742932714ef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 .93 0 1.05.45 2.01.79.63.22 1.3-.24 1.3-.91 0-.52-.23-.83-.64-.97-.6-.22-1.15-.9-2.69-.9-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.54 0-2.13.71-2.68.91-.41.13-.65.43-.65.97 0 .67.66 1.13 1.29.91 1.06-.36 1.1-.8 2.06-.8zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.53 0-2.15.71-2.69.91-.41.14-.65.45-.65.98 0 .67.66 1.13 1.3.91 1.02-.36 1.08-.8 2.04-.8 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 .94 0 1.06.46 2.03.8.63.22 1.3-.24 1.3-.91 0-.53-.24-.83-.65-.98-.53-.19-1.14-.91-2.68-.91zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 .93 0 1.05.45 2.01.79.63.22 1.3-.24 1.3-.91 0-.52-.23-.83-.64-.97-.6-.23-1.15-.91-2.69-.91-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.54 0-2.13.71-2.68.91-.41.14-.65.44-.65.98 0 .67.66 1.13 1.29.91 1.06-.36 1.1-.8 2.06-.8z" +}), 'WaterRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterSharp.js b/packages/material-ui-icons/lib/esm/WaterSharp.js new file mode 100644 index 00000000000000..8e2d550fa42452 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" +}), 'WaterSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterTwoTone.js b/packages/material-ui-icons/lib/esm/WaterTwoTone.js new file mode 100644 index 00000000000000..4beb99e3dbf23f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" +}), 'WaterTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterfallChart.js b/packages/material-ui-icons/lib/esm/WaterfallChart.js new file mode 100644 index 00000000000000..4dca03b4ac5bb0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterfallChart.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h3v16h-3zM3 13h3v7H3zm11-9h3v3h-3zm-4 1h3v4h-3zm-3 5h3v4H7z" +}), 'WaterfallChart'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterfallChartOutlined.js b/packages/material-ui-icons/lib/esm/WaterfallChartOutlined.js new file mode 100644 index 00000000000000..c9e1f88c35626d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterfallChartOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z" +}), 'WaterfallChartOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterfallChartRounded.js b/packages/material-ui-icons/lib/esm/WaterfallChartRounded.js new file mode 100644 index 00000000000000..39deb089f86c3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterfallChartRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.5 4c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-13c0-.83.67-1.5 1.5-1.5zm-15 9c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5S3 19.33 3 18.5v-4c0-.83.67-1.5 1.5-1.5zm11-9c.83 0 1.5.67 1.5 1.5S16.33 7 15.5 7 14 6.33 14 5.5 14.67 4 15.5 4zm-4 1c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5S10 8.33 10 7.5v-1c0-.83.67-1.5 1.5-1.5zm-3 5c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5S7 13.33 7 12.5v-1c0-.83.67-1.5 1.5-1.5z" +}), 'WaterfallChartRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterfallChartSharp.js b/packages/material-ui-icons/lib/esm/WaterfallChartSharp.js new file mode 100644 index 00000000000000..b285552f804a1d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterfallChartSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z" +}), 'WaterfallChartSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WaterfallChartTwoTone.js b/packages/material-ui-icons/lib/esm/WaterfallChartTwoTone.js new file mode 100644 index 00000000000000..851e2d92196bc8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WaterfallChartTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z" +}), 'WaterfallChartTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Waves.js b/packages/material-ui-icons/lib/esm/Waves.js new file mode 100644 index 00000000000000..6301ce485bf911 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Waves.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" +}), 'Waves'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WavesOutlined.js b/packages/material-ui-icons/lib/esm/WavesOutlined.js new file mode 100644 index 00000000000000..fdbb5f8e91e3de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WavesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" +}), 'WavesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WavesRounded.js b/packages/material-ui-icons/lib/esm/WavesRounded.js new file mode 100644 index 00000000000000..1fc08c84760f0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WavesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.43.22-.81.41-1.27.52-.45.1-.78.46-.78.91v.1c0 .6.56 1.03 1.14.91.74-.15 1.3-.43 1.81-.69.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.91v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.39-1.6-.81-2.95-.81zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.43.21-.81.41-1.28.52-.44.1-.77.46-.77.91v.1c0 .59.54 1.03 1.12.91.75-.15 1.31-.44 1.83-.69.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.92v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.43.22-.81.41-1.27.52-.45.1-.78.46-.78.91v.07c0 .6.54 1.04 1.12.92.75-.15 1.31-.44 1.83-.69.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.92v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.28-1.26-.5zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.43.23-.8.42-1.26.52-.45.1-.79.46-.79.92v.09c0 .59.54 1.03 1.12.91.75-.15 1.31-.44 1.83-.69.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.91v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.39-1.6-.81-2.95-.81z" +}), 'WavesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WavesSharp.js b/packages/material-ui-icons/lib/esm/WavesSharp.js new file mode 100644 index 00000000000000..70d7a48d0f40a2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WavesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" +}), 'WavesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WavesTwoTone.js b/packages/material-ui-icons/lib/esm/WavesTwoTone.js new file mode 100644 index 00000000000000..bc0ffaff17eba3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WavesTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" +}), 'WavesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbAuto.js b/packages/material-ui-icons/lib/esm/WbAuto.js new file mode 100644 index 00000000000000..9d1158c3557775 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbAuto.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z" +}), 'WbAuto'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbAutoOutlined.js b/packages/material-ui-icons/lib/esm/WbAutoOutlined.js new file mode 100644 index 00000000000000..c09e9f6c297dff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbAutoOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m7 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-8.63 7.67C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z" +}), 'WbAutoOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbAutoRounded.js b/packages/material-ui-icons/lib/esm/WbAutoRounded.js new file mode 100644 index 00000000000000..4ec3744fc465d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbAutoRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.85 12.65h2.3L8 9zM22.72 7c-.42 0-.77.3-.85.7l-1.07 5.59-1.31-5.51c-.11-.46-.52-.78-.99-.78s-.88.32-.98.78l-1.31 5.51-1.07-5.59c-.08-.4-.44-.7-.85-.7-.01 0-.03.01-.04.01C12.78 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.17 0 5.9-1.85 7.2-4.52.2.32.55.52.94.52.51 0 .95-.35 1.07-.84L18.5 9.9l1.29 5.26c.12.49.57.84 1.07.84.52 0 .96-.36 1.08-.86l1.61-7.08c.13-.54-.28-1.06-.83-1.06zm-11.79 9c-.38 0-.72-.24-.84-.6L9.6 14H6.4l-.49 1.4c-.13.36-.46.6-.84.6-.62 0-1.05-.61-.84-1.19l2.44-6.86C6.87 7.38 7.4 7 8 7s1.13.38 1.34.94l2.44 6.86c.2.59-.23 1.2-.85 1.2z" +}), 'WbAutoRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbAutoSharp.js b/packages/material-ui-icons/lib/esm/WbAutoSharp.js new file mode 100644 index 00000000000000..ba3efd1ad5ee23 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbAutoSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z" +}), 'WbAutoSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbAutoTwoTone.js b/packages/material-ui-icons/lib/esm/WbAutoTwoTone.js new file mode 100644 index 00000000000000..08d7f889bc0b5a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbAutoTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M8 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.35 0 4.38-1.36 5.36-3.32l.01-.01c.4-.81.63-1.71.63-2.67 0-3.31-2.69-6-6-6zm2.3 10-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L8 9z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m7 7-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zm13.95.64L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22l-1.2 6.29zm-7.43 1.38C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z" +}, "1")], 'WbAutoTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbCloudy.js b/packages/material-ui-icons/lib/esm/WbCloudy.js new file mode 100644 index 00000000000000..780cd788c72089 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbCloudy.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.36 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" +}), 'WbCloudy'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbCloudyOutlined.js b/packages/material-ui-icons/lib/esm/WbCloudyOutlined.js new file mode 100644 index 00000000000000..e1d8fdd4e73e57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbCloudyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6m0-2C9.12 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96C18.68 6.59 15.65 4 12.01 4z" +}), 'WbCloudyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbCloudyRounded.js b/packages/material-ui-icons/lib/esm/WbCloudyRounded.js new file mode 100644 index 00000000000000..094aa2a155bc38 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbCloudyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04C2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" +}), 'WbCloudyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbCloudySharp.js b/packages/material-ui-icons/lib/esm/WbCloudySharp.js new file mode 100644 index 00000000000000..395c7b4e65cdf5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbCloudySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04C2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" +}), 'WbCloudySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbCloudyTwoTone.js b/packages/material-ui-icons/lib/esm/WbCloudyTwoTone.js new file mode 100644 index 00000000000000..1e43305d52364f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbCloudyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m19.23 12.04-1.52-.11-.3-1.5C16.89 7.86 14.62 6 12.01 6 9.95 6 8.08 7.14 7.13 8.96l-.5.95-1.07.11c-2.02.22-3.55 1.93-3.55 3.98 0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.23-2.86-2.78-2.96z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.36 10.04C18.67 6.59 15.65 4 12.01 4 9.11 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19.01 18h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z" +}, "1")], 'WbCloudyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIncandescent.js b/packages/material-ui-icons/lib/esm/WbIncandescent.js new file mode 100644 index 00000000000000..52ed1cb753a9d0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIncandescent.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.55 18.54 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 22.45h2V19.5h-2v2.95zM4 10.5H1v2h3v-2zm11-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z" +}), 'WbIncandescent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIncandescentOutlined.js b/packages/material-ui-icons/lib/esm/WbIncandescentOutlined.js new file mode 100644 index 00000000000000..6e7a7f02dfbeef --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIncandescentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.55 19.09 1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm12-6.95v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.42.77-2.74 2-3.46l1-.58V4.05h2m2-2H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19V2.05zM20 11h3v2h-3zm-2.76 7.71 1.79 1.8 1.41-1.41-1.8-1.79z" +}), 'WbIncandescentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIncandescentRounded.js b/packages/material-ui-icons/lib/esm/WbIncandescentRounded.js new file mode 100644 index 00000000000000..df035a4ffc7ba5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIncandescentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.25 19.79c.39.39 1.02.39 1.41 0l.39-.39c.39-.39.38-1.02 0-1.4l-.01-.01a.9959.9959 0 0 0-1.41 0l-.39.39c-.38.4-.38 1.02.01 1.41zM11.99 23H12c.55 0 .99-.44.99-.99v-.96c0-.55-.44-.99-.99-.99h-.01c-.55 0-.99.44-.99.99v.96c0 .55.44.99.99.99zM3.01 11.05H1.99c-.55 0-.99.44-.99.99v.01c0 .55.44.99.99.99H3c.55 0 .99-.44.99-.99v-.01c.01-.55-.43-.99-.98-.99zM15 6.86V3.05c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3.81c-2.04 1.18-3.32 3.52-2.93 6.13.4 2.61 2.56 4.7 5.18 5.02 3.64.44 6.75-2.4 6.75-5.95 0-2.23-1.21-4.16-3-5.2zm5 5.18v.01c0 .55.44.99.99.99H22c.55 0 .99-.44.99-.99v-.01c0-.55-.44-.99-.99-.99h-1.01c-.55 0-.99.44-.99.99zm-2.06 7.37.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39c-.39-.39-1.02-.38-1.4 0-.4.4-.4 1.02-.01 1.41z" +}), 'WbIncandescentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIncandescentSharp.js b/packages/material-ui-icons/lib/esm/WbIncandescentSharp.js new file mode 100644 index 00000000000000..66ee0b36abdcb0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIncandescentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m3.55 19.09 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 23h2v-2.95h-2V23zM4 11.05H1v2h3v-2zm11-4.19V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z" +}), 'WbIncandescentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIncandescentTwoTone.js b/packages/material-ui-icons/lib/esm/WbIncandescentTwoTone.js new file mode 100644 index 00000000000000..b34e87dd32b83d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIncandescentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m14 8.59-1-.58V4.05h-2v3.96l-1 .58c-1.24.72-2 2.04-2 3.46 0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.42-.77-2.74-2-3.46z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m3.55 19.09 1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm14-4.14V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm-3 9.19c-2.21 0-4-1.79-4-4 0-1.42.77-2.74 2-3.46l1-.58V4.05h2v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4zM20 11h3v2h-3zm-2.76 7.71 1.79 1.8 1.41-1.41-1.8-1.79z" +}, "1")], 'WbIncandescentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIridescent.js b/packages/material-ui-icons/lib/esm/WbIridescent.js new file mode 100644 index 00000000000000..0bc61a182d59aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIridescent.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 14.5h14v-6H5v6zM11 .55V3.5h2V.55h-2zm8.04 2.5-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 22.45V19.5h-2v2.95h2zm7.45-3.91-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 4.46l1.79 1.79 1.41-1.41-1.79-1.79-1.41 1.41zm1.41 15.49 1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z" +}), 'WbIridescent'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIridescentOutlined.js b/packages/material-ui-icons/lib/esm/WbIridescentOutlined.js new file mode 100644 index 00000000000000..d78f41f02f31f0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIridescentOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z" +}), 'WbIridescentOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIridescentRounded.js b/packages/material-ui-icons/lib/esm/WbIridescentRounded.js new file mode 100644 index 00000000000000..be380da57588ce --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIridescentRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 15h12c.55 0 1-.45 1-1v-3.95c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1V14c0 .55.45 1 1 1zm5-13v1.05c0 .55.45.95 1 .95s1-.4 1-.95V2c0-.55-.45-1-1-1s-1 .45-1 1zm7.34 2.3-.38.38c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.38-.38c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0zM13 22v-.96c0-.55-.45-1-1-1s-1 .45-1 1V22c0 .55.45 1 1 1s1-.45 1-1zm6.74-3.61-.39-.39a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.38.39c.39.39 1.02.39 1.41 0l.01-.01c.39-.38.39-1.02 0-1.4zM4.25 5.71l.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39a.9959.9959 0 0 0-1.41 0c-.38.39-.38 1.03 0 1.41zm1.42 14.08.38-.38c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.38.38c-.39.39-.39 1.02 0 1.41.38.39 1.02.39 1.41 0z" +}), 'WbIridescentRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIridescentSharp.js b/packages/material-ui-icons/lib/esm/WbIridescentSharp.js new file mode 100644 index 00000000000000..d8276c8b8fd77a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIridescentSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 15h14V9.05H5V15zm6-14v3h2V1h-2zm8.04 2.6-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 23v-2.95h-2V23h2zm7.45-3.91-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 5.01 5.34 6.8l1.41-1.41L4.96 3.6 3.55 5.01zM4.96 20.5l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z" +}), 'WbIridescentSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbIridescentTwoTone.js b/packages/material-ui-icons/lib/esm/WbIridescentTwoTone.js new file mode 100644 index 00000000000000..cd5ca5ae64c847 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbIridescentTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M7 11h10v2H7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm6.25 4.39 1.41 1.41 1.8-1.79-1.42-1.41zM11 20h2v3h-2zm6.24-1.29 1.79 1.8 1.42-1.42-1.8-1.79zM5.34 6.805l-1.788-1.79L4.96 3.61l1.788 1.788zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z" +}, "1")], 'WbIridescentTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbShade.js b/packages/material-ui-icons/lib/esm/WbShade.js new file mode 100644 index 00000000000000..cf4d9b73bd5618 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbShade.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12v2.5l5.5 5.5H22zm0 8h3l-3-3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" +}), 'WbShade'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbShadeOutlined.js b/packages/material-ui-icons/lib/esm/WbShadeOutlined.js new file mode 100644 index 00000000000000..5f26673692f42a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbShadeOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" +}), 'WbShadeOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbShadeRounded.js b/packages/material-ui-icons/lib/esm/WbShadeRounded.js new file mode 100644 index 00000000000000..21b91fa41d19a9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbShadeRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 14.13c0 .23.09.46.26.63l4.98 4.98c.17.17.39.26.62.26.79 0 1.18-.95.62-1.51l-4.98-4.98c-.55-.56-1.5-.16-1.5.62zM15 20h2l-3-3v2c0 .55.45 1 1 1zM7.65 4.35l-4.8 4.8c-.31.31-.09.85.36.85H4v9c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-9h.79c.45 0 .67-.54.35-.85l-4.79-4.8c-.19-.19-.51-.19-.7 0zM9 14H7v-4h2v4z" +}), 'WbShadeRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbShadeSharp.js b/packages/material-ui-icons/lib/esm/WbShadeSharp.js new file mode 100644 index 00000000000000..7b018a17092e46 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbShadeSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" +}), 'WbShadeSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbShadeTwoTone.js b/packages/material-ui-icons/lib/esm/WbShadeTwoTone.js new file mode 100644 index 00000000000000..04b4c5edcdc460 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbShadeTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" +}), 'WbShadeTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbSunny.js b/packages/material-ui-icons/lib/esm/WbSunny.js new file mode 100644 index 00000000000000..2289c591d6a6a6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbSunny.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.76 4.84-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z" +}), 'WbSunny'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbSunnyOutlined.js b/packages/material-ui-icons/lib/esm/WbSunnyOutlined.js new file mode 100644 index 00000000000000..5da3f648860d27 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbSunnyOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.76 4.84-1.8-1.79-1.41 1.41 1.79 1.79zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm8.04 2.495 1.408 1.407-1.79 1.79-1.407-1.408zm-1.8 15.115 1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96 1.41 1.41 1.79-1.8-1.41-1.41z" +}), 'WbSunnyOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbSunnyRounded.js b/packages/material-ui-icons/lib/esm/WbSunnyRounded.js new file mode 100644 index 00000000000000..2bdb1a79a61249 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbSunnyRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.05 4.14-.39-.39c-.39-.39-1.02-.38-1.4 0l-.01.01c-.39.39-.39 1.02 0 1.4l.39.39c.39.39 1.01.39 1.4 0l.01-.01c.39-.38.39-1.02 0-1.4zM3.01 10.5H1.99c-.55 0-.99.44-.99.99v.01c0 .55.44.99.99.99H3c.56.01 1-.43 1-.98v-.01c0-.56-.44-1-.99-1zm9-9.95H12c-.56 0-1 .44-1 .99v.96c0 .55.44.99.99.99H12c.56.01 1-.43 1-.98v-.97c0-.55-.44-.99-.99-.99zm7.74 3.21c-.39-.39-1.02-.39-1.41-.01l-.39.39c-.39.39-.39 1.02 0 1.4l.01.01c.39.39 1.02.39 1.4 0l.39-.39c.39-.39.39-1.01 0-1.4zm-1.81 15.1.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39c-.39-.39-1.02-.38-1.4 0-.4.4-.4 1.02-.01 1.41zM20 11.49v.01c0 .55.44.99.99.99H22c.55 0 .99-.44.99-.99v-.01c0-.55-.44-.99-.99-.99h-1.01c-.55 0-.99.44-.99.99zM12 5.5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-.01 16.95H12c.55 0 .99-.44.99-.99v-.96c0-.55-.44-.99-.99-.99h-.01c-.55 0-.99.44-.99.99v.96c0 .55.44.99.99.99zm-7.74-3.21c.39.39 1.02.39 1.41 0l.39-.39c.39-.39.38-1.02 0-1.4l-.01-.01a.9959.9959 0 0 0-1.41 0l-.39.39c-.38.4-.38 1.02.01 1.41z" +}), 'WbSunnyRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbSunnySharp.js b/packages/material-ui-icons/lib/esm/WbSunnySharp.js new file mode 100644 index 00000000000000..ee678a0e731b22 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbSunnySharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m6.76 4.84-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7 1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91 1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z" +}), 'WbSunnySharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbSunnyTwoTone.js b/packages/material-ui-icons/lib/esm/WbSunnyTwoTone.js new file mode 100644 index 00000000000000..ee1174f1f256e3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbSunnyTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 7.5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m5.34 6.25 1.42-1.41-1.8-1.79-1.41 1.41zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm7.66 5.705-1.41-1.407 1.79-1.79 1.406 1.41zM17.24 18.16l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96 1.41 1.41 1.79-1.8-1.41-1.41z" +}, "1")], 'WbSunnyTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbTwilight.js b/packages/material-ui-icons/lib/esm/WbTwilight.js new file mode 100644 index 00000000000000..66123e40617e0d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbTwilight.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" +}), 'WbTwilight'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbTwilightOutlined.js b/packages/material-ui-icons/lib/esm/WbTwilightOutlined.js new file mode 100644 index 00000000000000..c3ed39bcc8b21c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbTwilightOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" +}), 'WbTwilightOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbTwilightRounded.js b/packages/material-ui-icons/lib/esm/WbTwilightRounded.js new file mode 100644 index 00000000000000..0714d3f197a071 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbTwilightRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m19.07 9.37.71-.71c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0l-.71.71c-.39.39-.39 1.02 0 1.41.38.39 1.02.39 1.41 0zM21 18H3c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM12 7c.56 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1zM4.96 9.34c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41l.71.71zM19 16c0-3.87-3.13-7-7-7s-7 3.13-7 7h14z" +}), 'WbTwilightRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbTwilightSharp.js b/packages/material-ui-icons/lib/esm/WbTwilightSharp.js new file mode 100644 index 00000000000000..c3ada7ba070052 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbTwilightSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" +}), 'WbTwilightSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WbTwilightTwoTone.js b/packages/material-ui-icons/lib/esm/WbTwilightTwoTone.js new file mode 100644 index 00000000000000..14d74544b1a1ee --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WbTwilightTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.9542 8.6615 2.1205-2.122 1.4147 1.4137-2.1205 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.5426 7.9248l1.4142-1.4142L7.078 8.632l-1.4142 1.4142zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" +}), 'WbTwilightTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Wc.js b/packages/material-ui-icons/lib/esm/Wc.js new file mode 100644 index 00000000000000..118e5c6199b0ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Wc.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" +}), 'Wc'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WcOutlined.js b/packages/material-ui-icons/lib/esm/WcOutlined.js new file mode 100644 index 00000000000000..c40629b0933418 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WcOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" +}), 'WcOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WcRounded.js b/packages/material-ui-icons/lib/esm/WcRounded.js new file mode 100644 index 00000000000000..5914239bd5da58 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WcRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 21v-6.5H5c-.55 0-1-.45-1-1V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v4.5c0 .55-.45 1-1 1h-.5V21c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1zM18 21v-5h1.61c.68 0 1.16-.67.95-1.32l-2.1-6.31C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37l-2.1 6.31c-.22.65.26 1.32.95 1.32H15v5c0 .55.45 1 1 1h1c.55 0 1-.45 1-1zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" +}), 'WcRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WcSharp.js b/packages/material-ui-icons/lib/esm/WcSharp.js new file mode 100644 index 00000000000000..1e37e792e31590 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WcSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 22v-7.5H4V7h7v7.5H9.5V22h-4zM18 22v-6h3l-3-9h-3l-3 9h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" +}), 'WcSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WcTwoTone.js b/packages/material-ui-icons/lib/esm/WcTwoTone.js new file mode 100644 index 00000000000000..2eee7a6f553a9f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WcTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" +}), 'WcTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Web.js b/packages/material-ui-icons/lib/esm/Web.js new file mode 100644 index 00000000000000..2bbb67e50441d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Web.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z" +}), 'Web'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAsset.js b/packages/material-ui-icons/lib/esm/WebAsset.js new file mode 100644 index 00000000000000..6ca78c70281166 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAsset.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" +}), 'WebAsset'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetOff.js b/packages/material-ui-icons/lib/esm/WebAssetOff.js new file mode 100644 index 00000000000000..f468913f1220d9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm13.66 19.31L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" +}), 'WebAssetOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetOffOutlined.js b/packages/material-ui-icons/lib/esm/WebAssetOffOutlined.js new file mode 100644 index 00000000000000..12d6a9ca34561a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm13.66 19.31L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" +}), 'WebAssetOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetOffRounded.js b/packages/material-ui-icons/lib/esm/WebAssetOffRounded.js new file mode 100644 index 00000000000000..9fe7e635c38f6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm12.95 18.61L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94l-.84-.84a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l18.38 18.38c.39.39.39 1.02 0 1.41-.38.4-1.01.4-1.4.01zM15.17 18l-10-10H4v10h11.17z" +}), 'WebAssetOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetOffSharp.js b/packages/material-ui-icons/lib/esm/WebAssetOffSharp.js new file mode 100644 index 00000000000000..cd545617567daa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6.83 4H22v15.17l-2-2V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" +}), 'WebAssetOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetOffTwoTone.js b/packages/material-ui-icons/lib/esm/WebAssetOffTwoTone.js new file mode 100644 index 00000000000000..6054111b355175 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 17.17V8h-9.17L20 17.17zM5.17 8H4v10h11.17l-10-10z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6.83 4H20c1.11 0 2 .9 2 2v12c0 .34-.09.66-.23.94L20 17.17V8h-9.17l-4-4zm13.66 19.31L17.17 20H4c-1.11 0-2-.9-2-2V6c0-.34.08-.66.23-.94L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" +}, "1")], 'WebAssetOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetOutlined.js b/packages/material-ui-icons/lib/esm/WebAssetOutlined.js new file mode 100644 index 00000000000000..046ca1ecc0ad54 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" +}), 'WebAssetOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetRounded.js b/packages/material-ui-icons/lib/esm/WebAssetRounded.js new file mode 100644 index 00000000000000..b7fe33456e3f02 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-1 14H6c-.55 0-1-.45-1-1V8h14v9c0 .55-.45 1-1 1z" +}), 'WebAssetRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetSharp.js b/packages/material-ui-icons/lib/esm/WebAssetSharp.js new file mode 100644 index 00000000000000..4bf06a86518239 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M3 4v16h18V4H3zm16 14H5V8h14v10z" +}), 'WebAssetSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebAssetTwoTone.js b/packages/material-ui-icons/lib/esm/WebAssetTwoTone.js new file mode 100644 index 00000000000000..4c1f2a29cc99de --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebAssetTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 8h14v10H5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z" +}, "1")], 'WebAssetTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebOutlined.js b/packages/material-ui-icons/lib/esm/WebOutlined.js new file mode 100644 index 00000000000000..2ca3b228eb1828 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H4v-3.5zM20 18h-3.5V9H20v9z" +}), 'WebOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebRounded.js b/packages/material-ui-icons/lib/esm/WebRounded.js new file mode 100644 index 00000000000000..33da920fbe4a32 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H5c-.55 0-1-.45-1-1v-2.5zM19 18h-2.5V9H20v8c0 .55-.45 1-1 1z" +}), 'WebRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebSharp.js b/packages/material-ui-icons/lib/esm/WebSharp.js new file mode 100644 index 00000000000000..d71a3756f94f57 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 4H2v16h20V4zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H4v-3.5zM20 18h-3.5V9H20v9z" +}), 'WebSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WebTwoTone.js b/packages/material-ui-icons/lib/esm/WebTwoTone.js new file mode 100644 index 00000000000000..17e7fbbbc6602c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WebTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 9h10.5v3.5H4zm0 5.5h10.5V18H4zM16.5 9H20v9h-3.5z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5.5 14H4v-3.5h10.5V18zm0-5.5H4V9h10.5v3.5zM20 18h-3.5V9H20v9z" +}, "1")], 'WebTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Weekend.js b/packages/material-ui-icons/lib/esm/Weekend.js new file mode 100644 index 00000000000000..21a60eef561d56 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Weekend.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10c-1.1 0-2 .9-2 2v3H5v-3c0-1.1-.89-2-2-2s-2 .9-2 2v5c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm-3-5H6c-1.1 0-2 .9-2 2v2.15c1.16.41 2 1.52 2 2.81V14h12v-2.03c0-1.3.84-2.4 2-2.81V7c0-1.1-.9-2-2-2z" +}), 'Weekend'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WeekendOutlined.js b/packages/material-ui-icons/lib/esm/WeekendOutlined.js new file mode 100644 index 00000000000000..c795b8994dcf3b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WeekendOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z" +}), 'WeekendOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WeekendRounded.js b/packages/material-ui-icons/lib/esm/WeekendRounded.js new file mode 100644 index 00000000000000..a36b71dda832a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WeekendRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M21 10c-1.1 0-2 .9-2 2v3H5v-3c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm-3-5H6c-1.1 0-2 .9-2 2v2.15c1.16.41 2 1.51 2 2.82V14h12v-2.03c0-1.3.84-2.4 2-2.82V7c0-1.1-.9-2-2-2z" +}), 'WeekendRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WeekendSharp.js b/packages/material-ui-icons/lib/esm/WeekendSharp.js new file mode 100644 index 00000000000000..dd5ef9afee0aa6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WeekendSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 9.03V14h12V9.03h2V5H4v4.03zM19 15H5v-4.97H1V19h22v-8.97h-4z" +}), 'WeekendSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WeekendTwoTone.js b/packages/material-ui-icons/lib/esm/WeekendTwoTone.js new file mode 100644 index 00000000000000..bcfb90f51825c9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WeekendTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21 11c-.55 0-1 .45-1 1v4H4v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zM6 14h12v-2c0-.88.39-1.67 1-2.22V7c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2.78c.61.55 1 1.34 1 2.22v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z" +}, "1")], 'WeekendTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/West.js b/packages/material-ui-icons/lib/esm/West.js new file mode 100644 index 00000000000000..0c3bace76b7019 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/West.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" +}), 'West'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WestOutlined.js b/packages/material-ui-icons/lib/esm/WestOutlined.js new file mode 100644 index 00000000000000..de859d6576392e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WestOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" +}), 'WestOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WestRounded.js b/packages/material-ui-icons/lib/esm/WestRounded.js new file mode 100644 index 00000000000000..75a4d23463ee31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WestRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M9.7 18.3c.39-.39.39-1.02 0-1.41L5.83 13H21c.55 0 1-.45 1-1s-.45-1-1-1H5.83l3.88-3.88c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L2.7 11.3c-.39.39-.39 1.02 0 1.41l5.59 5.59c.39.38 1.03.38 1.41 0z" +}), 'WestRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WestSharp.js b/packages/material-ui-icons/lib/esm/WestSharp.js new file mode 100644 index 00000000000000..cc27387d5b4533 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WestSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" +}), 'WestSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WestTwoTone.js b/packages/material-ui-icons/lib/esm/WestTwoTone.js new file mode 100644 index 00000000000000..c134abeef26358 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WestTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m9 19 1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" +}), 'WestTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhatsApp.js b/packages/material-ui-icons/lib/esm/WhatsApp.js new file mode 100644 index 00000000000000..808c34762fabc2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhatsApp.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M16.75 13.96c.25.13.41.2.46.3.06.11.04.61-.21 1.18-.2.56-1.24 1.1-1.7 1.12-.46.02-.47.36-2.96-.73-2.49-1.09-3.99-3.75-4.11-3.92-.12-.17-.96-1.38-.92-2.61.05-1.22.69-1.8.95-2.04.24-.26.51-.29.68-.26h.47c.15 0 .36-.06.55.45l.69 1.87c.06.13.1.28.01.44l-.27.41-.39.42c-.12.12-.26.25-.12.5.12.26.62 1.09 1.32 1.78.91.88 1.71 1.17 1.95 1.3.24.14.39.12.54-.04l.81-.94c.19-.25.35-.19.58-.11l1.67.88M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10c-1.97 0-3.8-.57-5.35-1.55L2 22l1.55-4.65A9.969 9.969 0 0 1 2 12 10 10 0 0 1 12 2m0 2a8 8 0 0 0-8 8c0 1.72.54 3.31 1.46 4.61L4.5 19.5l2.89-.96A7.95 7.95 0 0 0 12 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8z" +}), 'WhatsApp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Whatshot.js b/packages/material-ui-icons/lib/esm/Whatshot.js new file mode 100644 index 00000000000000..5e6311e08b99b0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Whatshot.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z" +}), 'Whatshot'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhatshotOutlined.js b/packages/material-ui-icons/lib/esm/WhatshotOutlined.js new file mode 100644 index 00000000000000..611746fd2a417e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhatshotOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z" +}), 'WhatshotOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhatshotRounded.js b/packages/material-ui-icons/lib/esm/WhatshotRounded.js new file mode 100644 index 00000000000000..5657c8eaf1fd4c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhatshotRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.09 4.56c-.7-1.03-1.5-1.99-2.4-2.85-.35-.34-.94-.02-.84.46.19.94.39 2.18.39 3.29 0 2.06-1.35 3.73-3.41 3.73-1.54 0-2.8-.93-3.35-2.26-.1-.2-.14-.32-.2-.54-.11-.42-.66-.55-.9-.18-.18.27-.35.54-.51.83C4.68 9.08 4 11.46 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8c0-3.49-1.08-6.73-2.91-9.44zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.47-.3 2.98-.93 4.03-1.92.28-.26.74-.14.82.23.23 1.02.35 2.08.35 3.15.01 2.65-2.14 4.8-4.79 4.8z" +}), 'WhatshotRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhatshotSharp.js b/packages/material-ui-icons/lib/esm/WhatshotSharp.js new file mode 100644 index 00000000000000..b8af841c5b3204 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhatshotSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z" +}), 'WhatshotSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhatshotTwoTone.js b/packages/material-ui-icons/lib/esm/WhatshotTwoTone.js new file mode 100644 index 00000000000000..6246bfca428fbd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhatshotTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.11 6.77c-.53 2.6-2.62 4.43-5.28 4.43-1.56 0-2.96-.62-3.97-1.63C6.3 10.96 6 12.47 6 14c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.56-.66-5.03-1.89-7.23zm-4.22 11.22c-1.37 0-2.49-1.08-2.49-2.42 0-1.25.81-2.13 2.17-2.41 1.37-.28 2.78-.93 3.57-1.99.3 1 .46 2.05.46 3.12 0 2.04-1.66 3.7-3.71 3.7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z" +}, "1")], 'WhatshotTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WheelchairPickup.js b/packages/material-ui-icons/lib/esm/WheelchairPickup.js new file mode 100644 index 00000000000000..b5e908a8716ba8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WheelchairPickup.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v6h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" +}), 'WheelchairPickup'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WheelchairPickupOutlined.js b/packages/material-ui-icons/lib/esm/WheelchairPickupOutlined.js new file mode 100644 index 00000000000000..9b0a1f6b6ce58d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WheelchairPickupOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v6h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" +}), 'WheelchairPickupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WheelchairPickupRounded.js b/packages/material-ui-icons/lib/esm/WheelchairPickupRounded.js new file mode 100644 index 00000000000000..77edbb33e84326 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WheelchairPickupRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h1v6c0 .55.45 1 1 1h2.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm2.5-3h-4V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1h4.46l1.92 2.88c.31.46.93.58 1.39.28.46-.31.58-.93.28-1.39l-2.21-3.32c-.19-.28-.51-.45-.84-.45z" +}), 'WheelchairPickupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WheelchairPickupSharp.js b/packages/material-ui-icons/lib/esm/WheelchairPickupSharp.js new file mode 100644 index 00000000000000..0699870791e1d6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WheelchairPickupSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V7H3v8h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" +}), 'WheelchairPickupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WheelchairPickupTwoTone.js b/packages/material-ui-icons/lib/esm/WheelchairPickupTwoTone.js new file mode 100644 index 00000000000000..e064f628b23374 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WheelchairPickupTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V9c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v6h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" +}), 'WheelchairPickupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhereToVote.js b/packages/material-ui-icons/lib/esm/WhereToVote.js new file mode 100644 index 00000000000000..471f868ddb5985 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhereToVote.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7zm-1.53 12L17 7.41 15.6 6l-5.13 5.18L8.4 9.09 7 10.5l3.47 3.5z" +}), 'WhereToVote'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhereToVoteOutlined.js b/packages/material-ui-icons/lib/esm/WhereToVoteOutlined.js new file mode 100644 index 00000000000000..23f648abce81c1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhereToVoteOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm-1.53-9.3L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01-1.41-1.42z" +}), 'WhereToVoteOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhereToVoteRounded.js b/packages/material-ui-icons/lib/esm/WhereToVoteRounded.js new file mode 100644 index 00000000000000..cb1cea983e00bd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhereToVoteRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm-1.77 10.66-1.41-1.41a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l.71.71 2.83-2.83c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-3.54 3.54c-.38.38-1.02.38-1.41-.01z" +}), 'WhereToVoteRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhereToVoteSharp.js b/packages/material-ui-icons/lib/esm/WhereToVoteSharp.js new file mode 100644 index 00000000000000..4f9d24f878d545 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhereToVoteSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.53 12-3.48-3.48L8.4 9.1l2.07 2.07 5.13-5.14 1.41 1.42L10.47 14z" +}), 'WhereToVoteSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WhereToVoteTwoTone.js b/packages/material-ui-icons/lib/esm/WhereToVoteTwoTone.js new file mode 100644 index 00000000000000..a3c2d487a05804 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WhereToVoteTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 3C8.69 3 6 5.69 6 9c0 3.54 3.82 8.86 6 11.47 1.75-2.11 6-7.63 6-11.47 0-3.31-2.69-6-6-6zm-1.53 11-3.18-3.18L8.71 9.4l1.77 1.77 4.6-4.6 1.41 1.41L10.47 14z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm3.07-13.9-4.6 4.6L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01z" +}, "1")], 'WhereToVoteTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Widgets.js b/packages/material-ui-icons/lib/esm/Widgets.js new file mode 100644 index 00000000000000..17729d5f3df3fb --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Widgets.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z" +}), 'Widgets'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WidgetsOutlined.js b/packages/material-ui-icons/lib/esm/WidgetsOutlined.js new file mode 100644 index 00000000000000..219c946409f3bf --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WidgetsOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.66 4.52 2.83 2.83-2.83 2.83-2.83-2.83 2.83-2.83M9 5v4H5V5h4m10 10v4h-4v-4h4M9 15v4H5v-4h4m7.66-13.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65zM11 3H3v8h8V3zm10 10h-8v8h8v-8zm-10 0H3v8h8v-8z" +}), 'WidgetsOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WidgetsRounded.js b/packages/material-ui-icons/lib/esm/WidgetsRounded.js new file mode 100644 index 00000000000000..a80aa85246afc9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WidgetsRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 14v6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1zm-9 7h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zM3 4v6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm12.95-1.6L11.7 6.64c-.39.39-.39 1.02 0 1.41l4.25 4.25c.39.39 1.02.39 1.41 0l4.25-4.25c.39-.39.39-1.02 0-1.41L17.37 2.4c-.39-.39-1.03-.39-1.42 0z" +}), 'WidgetsRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WidgetsSharp.js b/packages/material-ui-icons/lib/esm/WidgetsSharp.js new file mode 100644 index 00000000000000..ee92bcab936808 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WidgetsSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z" +}), 'WidgetsSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WidgetsTwoTone.js b/packages/material-ui-icons/lib/esm/WidgetsTwoTone.js new file mode 100644 index 00000000000000..4dd6622e36b8b8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WidgetsTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M5 5h4v4H5zm10 10h4v4h-4zM5 15h4v4H5zM16.66 4.52l-2.83 2.82 2.83 2.83 2.83-2.83z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.66 1.69 11 7.34 16.66 13l5.66-5.66-5.66-5.65zm-2.83 5.65 2.83-2.83 2.83 2.83-2.83 2.83-2.83-2.83zM3 3v8h8V3H3zm6 6H5V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-2v8h8v-8h-8zm6 6h-4v-4h4v4z" +}, "1")], 'WidgetsTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Wifi.js b/packages/material-ui-icons/lib/esm/Wifi.js new file mode 100644 index 00000000000000..dd2da12e6cf857 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Wifi.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" +}), 'Wifi'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCalling.js b/packages/material-ui-icons/lib/esm/WifiCalling.js new file mode 100644 index 00000000000000..5556765e79425a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCalling.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.35-.12-.75-.03-1.02.24l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1z" +}, "1")], 'WifiCalling'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCalling3.js b/packages/material-ui-icons/lib/esm/WifiCalling3.js new file mode 100644 index 00000000000000..ecbaef97a45c74 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCalling3.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.18-1.18 2.8-1.91 4.59-1.91s3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.03 7.46C19.12 6.56 17.87 6 16.49 6s-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" +}, "2")], 'WifiCalling3'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCalling3Outlined.js b/packages/material-ui-icons/lib/esm/WifiCalling3Outlined.js new file mode 100644 index 00000000000000..80bbfbbcca0900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCalling3Outlined.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.49 4.5c1.79 0 3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.19-1.17 2.81-1.9 4.6-1.9z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M16.49 6c-1.38 0-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.06-1.06C19.12 6.56 17.87 6 16.49 6zm0 3c-.55 0-1.05.22-1.41.59L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m20.2 14.87-3.67-.73c-.5-.1-.83.2-.9.27l-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.55.03 1.03-.43 1.03-1v-4.15c0-.48-.34-.89-.8-.98zM5.1 5h2.23l.47 2.35L6.17 9c-.54-1.3-.9-2.63-1.07-4zM19 18.9c-1.37-.18-2.7-.53-4-1.07l1.65-1.63 2.35.47v2.23z" +}, "2")], 'WifiCalling3Outlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCalling3Rounded.js b/packages/material-ui-icons/lib/esm/WifiCalling3Rounded.js new file mode 100644 index 00000000000000..71313444bba2a0 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCalling3Rounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.54 4.8C20.17 3.67 18.41 3 16.49 3s-3.67.67-5.05 1.8c-.34.28-.36.79-.05 1.1l.01.01c.27.27.7.29 1 .05 1.12-.91 2.54-1.45 4.09-1.45s2.97.55 4.09 1.45c.3.24.73.23 1-.05l.01-.01c.31-.31.29-.83-.05-1.1z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.45 8.04c.33-.33.28-.88-.11-1.15-.8-.56-1.79-.89-2.85-.89s-2.04.33-2.85.89c-.38.27-.44.82-.11 1.15.25.25.65.31.94.1.57-.4 1.27-.64 2.02-.64s1.45.24 2.02.64c.29.21.69.15.94-.1zm-2.96.86c-.32 0-.62.08-.89.21-.3.15-.34.56-.11.79l.65.65c.2.2.51.2.71 0l.65-.65c.23-.23.19-.64-.11-.79-.27-.14-.58-.21-.9-.21z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73c-.33-.07-.67.03-.9.26z" +}, "2")], 'WifiCalling3Rounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCalling3Sharp.js b/packages/material-ui-icons/lib/esm/WifiCalling3Sharp.js new file mode 100644 index 00000000000000..210111f9d17ea3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCalling3Sharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.18-1.18 2.8-1.91 4.59-1.91s3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.03 7.46C19.12 6.56 17.87 6 16.49 6s-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m21 15-5-1-2.9 2.9c-2.5-1.43-4.57-3.5-6-6L10 8 9 3H3c0 3.28.89 6.35 2.43 9 1.58 2.73 3.85 4.99 6.57 6.57C14.65 20.1 17.72 21 21 21v-6z" +}, "2")], 'WifiCalling3Sharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCalling3TwoTone.js b/packages/material-ui-icons/lib/esm/WifiCalling3TwoTone.js new file mode 100644 index 00000000000000..991cbc2a4863dd --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCalling3TwoTone.js @@ -0,0 +1,12 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06c1.18-1.18 2.8-1.91 4.59-1.91s3.42.73 4.59 1.91l1.06-1.06C20.7 3.9 18.7 3 16.49 3z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20.03 7.46C19.12 6.56 17.87 6 16.49 6s-2.63.56-3.54 1.46l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M15 17.83c1.29.54 2.63.89 4 1.07v-2.23l-2.35-.47L15 17.83zM7.33 5H5.1c.18 1.37.53 2.7 1.07 4L7.8 7.35 7.33 5z", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "m20.2 14.87-3.67-.73c-.5-.1-.83.2-.9.27l-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.55.03 1.03-.43 1.03-1v-4.15c0-.48-.34-.89-.8-.98zM5.1 5h2.23l.47 2.35L6.17 9c-.54-1.3-.9-2.63-1.07-4zM19 18.9c-1.37-.18-2.7-.53-4-1.07l1.65-1.63 2.35.47v2.23z" +}, "3")], 'WifiCalling3TwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCallingOutlined.js b/packages/material-ui-icons/lib/esm/WifiCallingOutlined.js new file mode 100644 index 00000000000000..3d598f1cfe7dad --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCallingOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" +}, "1")], 'WifiCallingOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCallingRounded.js b/packages/material-ui-icons/lib/esm/WifiCallingRounded.js new file mode 100644 index 00000000000000..024509b3510b7b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCallingRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m19.2 15.28-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64L8.72 4.8c-.12-1.01-.97-1.77-1.99-1.77H5c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.37 15.9 15.9 1.13.07 2.07-.87 2.07-2v-1.73c0-1.02-.76-1.87-1.77-1.99z" +}, "1")], 'WifiCallingRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCallingSharp.js b/packages/material-ui-icons/lib/esm/WifiCallingSharp.js new file mode 100644 index 00000000000000..c9cf6d46349b31 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCallingSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M13.21 17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" +}, "1")], 'WifiCallingSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiCallingTwoTone.js b/packages/material-ui-icons/lib/esm/WifiCallingTwoTone.js new file mode 100644 index 00000000000000..8f12af81a4d849 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiCallingTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.2 18.21c1.2.41 2.48.67 3.8.75v-1.49c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" +}, "2")], 'WifiCallingTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiLock.js b/packages/material-ui-icons/lib/esm/WifiLock.js new file mode 100644 index 00000000000000..a91649eea733ff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiLock.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'WifiLock'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiLockOutlined.js b/packages/material-ui-icons/lib/esm/WifiLockOutlined.js new file mode 100644 index 00000000000000..657a05b13608ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiLockOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'WifiLockOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiLockRounded.js b/packages/material-ui-icons/lib/esm/WifiLockRounded.js new file mode 100644 index 00000000000000..9444b14fea3ed7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiLockRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M23.21 8.24C20.22 5.6 16.3 4 12 4S3.78 5.6.79 8.24C.35 8.63.32 9.3.73 9.71l5.62 5.63 4.94 4.95c.39.39 1.02.39 1.42 0l2.34-2.34V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.94l1.29-1.29c.4-.41.37-1.08-.07-1.47z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'WifiLockRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiLockSharp.js b/packages/material-ui-icons/lib/esm/WifiLockSharp.js new file mode 100644 index 00000000000000..b255cb0d12290c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiLockSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'WifiLockSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiLockTwoTone.js b/packages/material-ui-icons/lib/esm/WifiLockTwoTone.js new file mode 100644 index 00000000000000..85b337a45486e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiLockTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M21.98 11 24 8.98C20.93 5.9 16.69 4 12 4S3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M22 16v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" +}, "1")], 'WifiLockTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiOff.js b/packages/material-ui-icons/lib/esm/WifiOff.js new file mode 100644 index 00000000000000..a8519560ea469c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4c-1.29-1.29-2.84-2.13-4.49-2.56l3.53 3.53.96-.97zM2 3.05 5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24C7.81 10.89 6.27 11.73 5 13v.01L6.99 15c1.36-1.36 3.14-2.04 4.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0z" +}), 'WifiOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiOffOutlined.js b/packages/material-ui-icons/lib/esm/WifiOffOutlined.js new file mode 100644 index 00000000000000..e7b5ecdb5b1960 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 11 2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64 2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" +}), 'WifiOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiOffRounded.js b/packages/material-ui-icons/lib/esm/WifiOffRounded.js new file mode 100644 index 00000000000000..25449434647896 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20.06 10.14c.56.46 1.38.42 1.89-.09.59-.59.55-1.57-.1-2.1-3.59-2.94-8.2-4.03-12.55-3.26l2.59 2.59c2.89-.03 5.8.92 8.17 2.86zm-2.27 1.83c-.78-.57-1.63-1-2.52-1.3l2.95 2.95c.24-.58.1-1.27-.43-1.65zm-3.84 4.26c-1.22-.63-2.68-.63-3.91 0-.59.31-.7 1.12-.23 1.59l1.47 1.47c.39.39 1.02.39 1.41 0l1.47-1.47c.49-.47.39-1.28-.21-1.59zm5.73 1.67L4.12 2.34a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L5.05 6.1c-1.01.5-1.99 1.11-2.89 1.85-.65.53-.69 1.51-.1 2.1.51.51 1.32.56 1.87.1 1-.82 2.1-1.46 3.25-1.93l2.23 2.23c-1.13.3-2.21.8-3.19 1.51-.69.5-.73 1.51-.13 2.11l.01.01c.49.49 1.26.54 1.83.13 1.19-.84 2.58-1.26 3.97-1.29l6.37 6.37c.39.39 1.02.39 1.41 0 .39-.37.39-1 0-1.39z" +}), 'WifiOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiOffSharp.js b/packages/material-ui-icons/lib/esm/WifiOffSharp.js new file mode 100644 index 00000000000000..4e0e3362549f24 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 11 2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm10-4c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM3.41 1.64 2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" +}), 'WifiOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiOffTwoTone.js b/packages/material-ui-icons/lib/esm/WifiOffTwoTone.js new file mode 100644 index 00000000000000..0e665149434e81 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m21 11 2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64 2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" +}), 'WifiOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiOutlined.js b/packages/material-ui-icons/lib/esm/WifiOutlined.js new file mode 100644 index 00000000000000..cbc0261c6f3311 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" +}), 'WifiOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiProtectedSetup.js b/packages/material-ui-icons/lib/esm/WifiProtectedSetup.js new file mode 100644 index 00000000000000..f62012dc3a06e7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiProtectedSetup.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" +}, "1")], 'WifiProtectedSetup'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiProtectedSetupOutlined.js b/packages/material-ui-icons/lib/esm/WifiProtectedSetupOutlined.js new file mode 100644 index 00000000000000..fc6ef654be6dd9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiProtectedSetupOutlined.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" +}, "1")], 'WifiProtectedSetupOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiProtectedSetupRounded.js b/packages/material-ui-icons/lib/esm/WifiProtectedSetupRounded.js new file mode 100644 index 00000000000000..f328f9a1c947ed --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiProtectedSetupRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m16.7 5.3 1.44-1.44c.32-.32.09-.85-.35-.85H11.5c-.28 0-.5.22-.5.5V9.8c0 .45.54.67.85.35L13.3 8.7c1.97 1.46 3.25 3.78 3.25 6.42 0 .66-.08 1.31-.24 1.92-.12.5.48.86.84.49 1.48-1.53 2.4-3.61 2.4-5.91 0-2.51-1.11-4.76-2.85-6.32zm-4.55 8.56L10.7 15.3c-1.97-1.46-3.25-3.78-3.25-6.42 0-.66.08-1.31.24-1.92.12-.5-.48-.86-.84-.49-1.48 1.53-2.4 3.61-2.4 5.91 0 2.52 1.1 4.77 2.84 6.33l-1.44 1.44c-.32.32-.09.85.35.85h6.29c.28 0 .5-.22.5-.5v-6.29c.01-.44-.53-.67-.84-.35z" +}), 'WifiProtectedSetupRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiProtectedSetupSharp.js b/packages/material-ui-icons/lib/esm/WifiProtectedSetupSharp.js new file mode 100644 index 00000000000000..49dcce5863315c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiProtectedSetupSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" +}, "1")], 'WifiProtectedSetupSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiProtectedSetupTwoTone.js b/packages/material-ui-icons/lib/esm/WifiProtectedSetupTwoTone.js new file mode 100644 index 00000000000000..3df70a9fe3c99e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiProtectedSetupTwoTone.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M16.71 5.29 19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M7.46 8.88c0-1.31.32-2.54.88-3.63C6 6.77 4.46 9.39 4.46 12.38c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" +}, "1")], 'WifiProtectedSetupTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiRounded.js b/packages/material-ui-icons/lib/esm/WifiRounded.js new file mode 100644 index 00000000000000..d558d2833f2cb6 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.06 10.06c.51.51 1.32.56 1.87.1 4.67-3.84 11.45-3.84 16.13-.01.56.46 1.38.42 1.89-.09.59-.59.55-1.57-.1-2.1-5.71-4.67-13.97-4.67-19.69 0-.65.52-.7 1.5-.1 2.1zm7.76 7.76 1.47 1.47c.39.39 1.02.39 1.41 0l1.47-1.47c.47-.47.37-1.28-.23-1.59-1.22-.63-2.68-.63-3.91 0-.57.31-.68 1.12-.21 1.59zm-3.73-3.73c.49.49 1.26.54 1.83.13 2.44-1.73 5.72-1.73 8.16 0 .57.4 1.34.36 1.83-.13l.01-.01c.6-.6.56-1.62-.13-2.11-3.44-2.49-8.13-2.49-11.58 0-.69.5-.73 1.51-.12 2.12z" +}), 'WifiRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiSharp.js b/packages/material-ui-icons/lib/esm/WifiSharp.js new file mode 100644 index 00000000000000..a3bbc2ebed2900 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" +}), 'WifiSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTethering.js b/packages/material-ui-icons/lib/esm/WifiTethering.js new file mode 100644 index 00000000000000..37faee894aaa85 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTethering.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" +}), 'WifiTethering'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringErrorRounded.js b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRounded.js new file mode 100644 index 00000000000000..38d899d2e244f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" +}), 'WifiTetheringErrorRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedOutlined.js b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedOutlined.js new file mode 100644 index 00000000000000..9a3521687d30ec --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" +}), 'WifiTetheringErrorRoundedOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedRounded.js b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedRounded.js new file mode 100644 index 00000000000000..68d0c89b1e756f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10.66 7.14c-2.24.48-4.04 2.3-4.52 4.54-.37 1.75.02 3.38.89 4.66.34.51 1.08.55 1.51.11.35-.35.37-.88.1-1.28-.5-.76-.75-1.71-.61-2.73.23-1.74 1.67-3.17 3.41-3.4C13.9 8.71 16 10.61 16 13c0 .8-.24 1.54-.64 2.16-.27.41-.25.95.1 1.29.43.43 1.17.4 1.51-.11C17.62 15.4 18 14.25 18 13c0-3.75-3.45-6.7-7.34-5.86zm-.41-3.99c-4.05.69-7.19 3.69-8.03 7.72-.66 3.17.2 6.16 1.97 8.38.37.46 1.07.49 1.49.07.36-.36.39-.93.07-1.32-1.34-1.67-2.03-3.9-1.66-6.28.55-3.47 3.42-6.24 6.92-6.65 2.76-.33 5.27.74 6.93 2.59.2.21.47.34.76.34.85 0 1.34-1.01.77-1.65-2.19-2.45-5.56-3.82-9.22-3.2zM12 11c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm9-1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1zm0 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" +}), 'WifiTetheringErrorRoundedRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedSharp.js b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedSharp.js new file mode 100644 index 00000000000000..047b8bc65dd46f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" +}), 'WifiTetheringErrorRoundedSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedTwoTone.js b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedTwoTone.js new file mode 100644 index 00000000000000..5d428bc67fed8d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringErrorRoundedTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42C17.32 16.15 18 14.66 18 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" +}), 'WifiTetheringErrorRoundedTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringOff.js b/packages/material-ui-icons/lib/esm/WifiTetheringOff.js new file mode 100644 index 00000000000000..558488f0018692 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" +}), 'WifiTetheringOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringOffOutlined.js b/packages/material-ui-icons/lib/esm/WifiTetheringOffOutlined.js new file mode 100644 index 00000000000000..77e2e9d8f86a21 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" +}), 'WifiTetheringOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringOffRounded.js b/packages/material-ui-icons/lib/esm/WifiTetheringOffRounded.js new file mode 100644 index 00000000000000..3dfc8063e0b236 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.11 3.51c-.4.39-.4 1.03-.01 1.42l1.98 1.98C2.78 8.6 2 10.71 2 13c0 2.36.82 4.53 2.19 6.24.37.47 1.07.5 1.5.08.36-.36.39-.92.08-1.32C4.66 16.63 4 14.89 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.25.38 2.4 1.03 3.35.34.5 1.08.54 1.51.11.35-.35.37-.88.1-1.29C8.24 14.54 8 13.8 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l6.91 6.91c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51c-.39-.39-1.02-.39-1.4 0zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" +}), 'WifiTetheringOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringOffSharp.js b/packages/material-ui-icons/lib/esm/WifiTetheringOffSharp.js new file mode 100644 index 00000000000000..e33e8e70cbfc1c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" +}), 'WifiTetheringOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringOffTwoTone.js b/packages/material-ui-icons/lib/esm/WifiTetheringOffTwoTone.js new file mode 100644 index 00000000000000..b3d74341bfd2be --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringOffTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M2.81 2.81 1.39 4.22l2.69 2.69C2.78 8.6 2 10.71 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42C4.9 17.21 4 15.21 4 13c0-1.75.57-3.35 1.51-4.66l1.43 1.43C6.35 10.7 6 11.81 6 13c0 1.66.68 3.15 1.76 4.24l1.42-1.42C8.45 15.1 8 14.11 8 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49C21.53 16.45 22 14.78 22 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" +}), 'WifiTetheringOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringOutlined.js b/packages/material-ui-icons/lib/esm/WifiTetheringOutlined.js new file mode 100644 index 00000000000000..8202152d75d050 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" +}), 'WifiTetheringOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringRounded.js b/packages/material-ui-icons/lib/esm/WifiTetheringRounded.js new file mode 100644 index 00000000000000..57b2848b5d18d1 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.56-3.11-6.4-6.75-5.95-2.62.32-4.78 2.41-5.18 5.02-.33 2.15.49 4.11 1.93 5.4.48.43 1.23.33 1.56-.23l.01-.01c.24-.42.14-.93-.22-1.26-1.03-.93-1.59-2.37-1.22-3.94.33-1.42 1.48-2.57 2.9-2.91C13.65 8.49 16 10.47 16 13c0 1.18-.52 2.23-1.33 2.96-.36.32-.47.84-.23 1.26l.01.01c.31.53 1.03.69 1.5.28C17.2 16.41 18 14.8 18 13zm-7.17-9.93c-4.62.52-8.35 4.33-8.78 8.96-.35 3.7 1.32 7.02 4.02 9.01.48.35 1.16.2 1.46-.31.25-.43.14-.99-.26-1.29-2.28-1.69-3.65-4.55-3.16-7.7.54-3.5 3.46-6.29 6.98-6.68C15.91 4.51 20 8.28 20 13c0 2.65-1.29 4.98-3.27 6.44-.4.3-.51.85-.26 1.29.3.52.98.66 1.46.31C20.4 19.22 22 16.3 22 13c0-5.91-5.13-10.62-11.17-9.93z" +}), 'WifiTetheringRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringSharp.js b/packages/material-ui-icons/lib/esm/WifiTetheringSharp.js new file mode 100644 index 00000000000000..e04a67ee192fde --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" +}), 'WifiTetheringSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTetheringTwoTone.js b/packages/material-ui-icons/lib/esm/WifiTetheringTwoTone.js new file mode 100644 index 00000000000000..576e4488491b79 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTetheringTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" +}), 'WifiTetheringTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WifiTwoTone.js b/packages/material-ui-icons/lib/esm/WifiTwoTone.js new file mode 100644 index 00000000000000..e77208577a1333 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WifiTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8 3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4 2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" +}), 'WifiTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Window.js b/packages/material-ui-icons/lib/esm/Window.js new file mode 100644 index 00000000000000..870d8622da05f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Window.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" +}), 'Window'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WindowOutlined.js b/packages/material-ui-icons/lib/esm/WindowOutlined.js new file mode 100644 index 00000000000000..6bffd6162049a3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WindowOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" +}), 'WindowOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WindowRounded.js b/packages/material-ui-icons/lib/esm/WindowRounded.js new file mode 100644 index 00000000000000..fbf6d7764155ea --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WindowRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" +}), 'WindowRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WindowSharp.js b/packages/material-ui-icons/lib/esm/WindowSharp.js new file mode 100644 index 00000000000000..126ccfec01616e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WindowSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zm-2 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" +}), 'WindowSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WindowTwoTone.js b/packages/material-ui-icons/lib/esm/WindowTwoTone.js new file mode 100644 index 00000000000000..651f6e1d8e6504 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WindowTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 4h7v7H4zm0 9h7v7H4zm9 0h7v7h-7zm0-9h7v7h-7z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-9 18H4v-7h7v7zm0-9H4V4h7v7zm9 9h-7v-7h7v7zm0-9h-7V4h7v7z" +}, "1")], 'WindowTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WineBar.js b/packages/material-ui-icons/lib/esm/WineBar.js new file mode 100644 index 00000000000000..276e588d601930 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WineBar.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm10 5H8V5h8v3z" +}), 'WineBar'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WineBarOutlined.js b/packages/material-ui-icons/lib/esm/WineBarOutlined.js new file mode 100644 index 00000000000000..e6d25227f08223 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WineBarOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm6 10c-1.86 0-3.41-1.28-3.86-3h7.72c-.45 1.72-2 3-3.86 3zm4-5H8V5h8v3z" +}), 'WineBarOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WineBarRounded.js b/packages/material-ui-icons/lib/esm/WineBarRounded.js new file mode 100644 index 00000000000000..d01855f01360f3 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WineBarRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M7 3c-.55 0-1 .45-1 1v5c0 2.97 2.16 5.43 5 5.91V19H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-2v-4.09c2.84-.48 5-2.94 5-5.91V4c0-.55-.45-1-1-1H7zm9 5H8V5h8v3z" +}), 'WineBarRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WineBarSharp.js b/packages/material-ui-icons/lib/esm/WineBarSharp.js new file mode 100644 index 00000000000000..5f14ef10e65e3a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WineBarSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm10 5H8V5h8v3z" +}), 'WineBarSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WineBarTwoTone.js b/packages/material-ui-icons/lib/esm/WineBarTwoTone.js new file mode 100644 index 00000000000000..093fab5f184311 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WineBarTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M12 13c-1.86 0-3.41-1.28-3.86-3h7.72c-.45 1.72-2 3-3.86 3z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm6 10c-1.86 0-3.41-1.28-3.86-3h7.72c-.45 1.72-2 3-3.86 3zm4-5H8V5h8v3z" +}, "1")], 'WineBarTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Work.js b/packages/material-ui-icons/lib/esm/Work.js new file mode 100644 index 00000000000000..8425f850a0be4e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Work.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" +}), 'Work'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOff.js b/packages/material-ui-icons/lib/esm/WorkOff.js new file mode 100644 index 00000000000000..44299fc6179393 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOff.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m23 21.74-1.46-1.46L7.21 5.95 3.25 1.99 1.99 3.25l2.7 2.7h-.64c-1.11 0-1.99.89-1.99 2l-.01 11c0 1.11.89 2 2 2h15.64L21.74 23 23 21.74zM22 7.95c.05-1.11-.84-2-1.95-1.95h-4V3.95c0-1.11-.89-2-2-1.95h-4c-1.11-.05-2 .84-2 1.95v.32l13.95 14V7.95zM14.05 6H10V3.95h4.05V6z" +}), 'WorkOff'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOffOutlined.js b/packages/material-ui-icons/lib/esm/WorkOffOutlined.js new file mode 100644 index 00000000000000..869d250f782203 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOffOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84 1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z" +}), 'WorkOffOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOffRounded.js b/packages/material-ui-icons/lib/esm/WorkOffRounded.js new file mode 100644 index 00000000000000..95c624f61dcc55 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOffRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4.11 2.54a.9959.9959 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.11 2.54zM10 4h4v2h-3.6L22 17.6V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4z" +}), 'WorkOffRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOffSharp.js b/packages/material-ui-icons/lib/esm/WorkOffSharp.js new file mode 100644 index 00000000000000..a69e010e441545 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOffSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 4h4v2h-3.6L22 17.6V6h-6V4c0-1.1-.9-2-2-2h-4c-.98 0-1.79.71-1.96 1.64L10 5.6V4zM3.4 1.84 1.99 3.25 4.74 6H2.01L2 21h17.74l2 2 1.41-1.41z" +}), 'WorkOffSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOffTwoTone.js b/packages/material-ui-icons/lib/esm/WorkOffTwoTone.js new file mode 100644 index 00000000000000..9935063f2e66a5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOffTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 8v11h13.74l-11-11zm8.4 0 7.6 7.6V8z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84 1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z" +}, "1")], 'WorkOffTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOutline.js b/packages/material-ui-icons/lib/esm/WorkOutline.js new file mode 100644 index 00000000000000..74093dea8b5f67 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOutline.js @@ -0,0 +1,6 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + fillRule: "evenodd", + d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z" +}), 'WorkOutline'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOutlineOutlined.js b/packages/material-ui-icons/lib/esm/WorkOutlineOutlined.js new file mode 100644 index 00000000000000..09e5380bced081 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOutlineOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z" +}), 'WorkOutlineOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOutlineRounded.js b/packages/material-ui-icons/lib/esm/WorkOutlineRounded.js new file mode 100644 index 00000000000000..a52a419cbb3336 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOutlineRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6V4h-4v2h4zM4 9v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1zm16-3c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z" +}), 'WorkOutlineRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOutlineSharp.js b/packages/material-ui-icons/lib/esm/WorkOutlineSharp.js new file mode 100644 index 00000000000000..3f7f02d0276e6a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOutlineSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm18-2v15H2.01V6H8V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v2h6z" +}), 'WorkOutlineSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOutlineTwoTone.js b/packages/material-ui-icons/lib/esm/WorkOutlineTwoTone.js new file mode 100644 index 00000000000000..381e60b9edb2aa --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOutlineTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z" +}), 'WorkOutlineTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkOutlined.js b/packages/material-ui-icons/lib/esm/WorkOutlined.js new file mode 100644 index 00000000000000..1081e6af3140c5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" +}), 'WorkOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkRounded.js b/packages/material-ui-icons/lib/esm/WorkRounded.js new file mode 100644 index 00000000000000..17ed954278c4a4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z" +}), 'WorkRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkSharp.js b/packages/material-ui-icons/lib/esm/WorkSharp.js new file mode 100644 index 00000000000000..a715a682ea0fa4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M22 6h-6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6zm-8 0h-4V4h4v2z" +}), 'WorkSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkTwoTone.js b/packages/material-ui-icons/lib/esm/WorkTwoTone.js new file mode 100644 index 00000000000000..00bb8a1fdcc34a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 8h16v11H4z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z" +}, "1")], 'WorkTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Workspaces.js b/packages/material-ui-icons/lib/esm/Workspaces.js new file mode 100644 index 00000000000000..3b493d7d900eb5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Workspaces.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" +}), 'Workspaces'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkspacesOutlined.js b/packages/material-ui-icons/lib/esm/WorkspacesOutlined.js new file mode 100644 index 00000000000000..46357ce0b6c8d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkspacesOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 15c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" +}), 'WorkspacesOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkspacesRounded.js b/packages/material-ui-icons/lib/esm/WorkspacesRounded.js new file mode 100644 index 00000000000000..10f30defbe34da --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkspacesRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" +}), 'WorkspacesRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkspacesSharp.js b/packages/material-ui-icons/lib/esm/WorkspacesSharp.js new file mode 100644 index 00000000000000..2d17df7f20d223 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkspacesSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" +}), 'WorkspacesSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WorkspacesTwoTone.js b/packages/material-ui-icons/lib/esm/WorkspacesTwoTone.js new file mode 100644 index 00000000000000..2c8665116bd10a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WorkspacesTwoTone.js @@ -0,0 +1,20 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("circle", { + cx: "6", + cy: "17", + r: "2", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "7", + r: "2", + opacity: ".3" +}, "1"), /*#__PURE__*/_jsx("circle", { + cx: "18", + cy: "17", + r: "2", + opacity: ".3" +}, "2"), /*#__PURE__*/_jsx("path", { + d: "M18 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM16 7c0-2.2-1.8-4-4-4S8 4.8 8 7s1.8 4 4 4 4-1.8 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "3")], 'WorkspacesTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrapText.js b/packages/material-ui-icons/lib/esm/WrapText.js new file mode 100644 index 00000000000000..ba353ed892a2b2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrapText.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" +}), 'WrapText'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrapTextOutlined.js b/packages/material-ui-icons/lib/esm/WrapTextOutlined.js new file mode 100644 index 00000000000000..f488565104e64b --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrapTextOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" +}), 'WrapTextOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrapTextRounded.js b/packages/material-ui-icons/lib/esm/WrapTextRounded.js new file mode 100644 index 00000000000000..c1a27b31ae2589 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrapTextRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M5 7h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm11.83 4H5c-.55 0-1 .45-1 1s.45 1 1 1h12.13c1 0 1.93.67 2.09 1.66.21 1.25-.76 2.34-1.97 2.34H15v-.79c0-.45-.54-.67-.85-.35l-1.79 1.79c-.2.2-.2.51 0 .71l1.79 1.79c.32.32.85.09.85-.35V19h2c2.34 0 4.21-2.01 3.98-4.39-.2-2.08-2.06-3.61-4.15-3.61zM9 17H5c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z" +}), 'WrapTextRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrapTextSharp.js b/packages/material-ui-icons/lib/esm/WrapTextSharp.js new file mode 100644 index 00000000000000..ca6db0f12a10e4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrapTextSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" +}), 'WrapTextSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrapTextTwoTone.js b/packages/material-ui-icons/lib/esm/WrapTextTwoTone.js new file mode 100644 index 00000000000000..61d3d5bb62c718 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrapTextTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M4 17h6v2H4zm13-6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4zM4 5h16v2H4z" +}), 'WrapTextTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrongLocation.js b/packages/material-ui-icons/lib/esm/WrongLocation.js new file mode 100644 index 00000000000000..a64d7812371c60 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrongLocation.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 10V3.26c-.65-.17-1.32-.26-2-.26-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-.41-.04-.81-.09-1.2H14zm-2 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" +}, "1")], 'WrongLocation'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrongLocationOutlined.js b/packages/material-ui-icons/lib/esm/WrongLocationOutlined.js new file mode 100644 index 00000000000000..fa0fea6d5c5950 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrongLocationOutlined.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 11v.2c0 2.34-1.95 5.44-6 9.14-4.05-3.7-6-6.79-6-9.14C6 7.57 8.65 5 12 5c.34 0 .68.03 1 .08V3.06c-.33-.04-.66-.06-1-.06-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8V11h-2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "11", + r: "2" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" +}, "2")], 'WrongLocationOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrongLocationRounded.js b/packages/material-ui-icons/lib/esm/WrongLocationRounded.js new file mode 100644 index 00000000000000..06c694f5d0db50 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrongLocationRounded.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "m20.42 4.5 1.38-1.38c.39-.39.39-1.02 0-1.41a.9959.9959 0 0 0-1.41 0L19 3.08 17.62 1.7c-.39-.39-1.02-.39-1.41 0s-.39 1.02 0 1.41l1.38 1.38-1.38 1.38c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 5.92l1.38 1.38c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L20.42 4.5z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19.67 8 19 7.33l-.59.59c-.7.7-1.84.88-2.65.3-1.03-.74-1.12-2.19-.26-3.05l.67-.67-.67-.67c-.36-.36-.54-.81-.57-1.28C14.01 2.19 13.02 2 12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2c0-.76-.1-1.47-.26-2.14-.02-.02-.05-.04-.07-.06zM12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "1")], 'WrongLocationRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrongLocationSharp.js b/packages/material-ui-icons/lib/esm/WrongLocationSharp.js new file mode 100644 index 00000000000000..9266921475a24f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrongLocationSharp.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M14 10V3.26c-.65-.17-1.32-.26-2-.26-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-.41-.04-.81-.09-1.2H14zm-2 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" +}, "1")], 'WrongLocationSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WrongLocationTwoTone.js b/packages/material-ui-icons/lib/esm/WrongLocationTwoTone.js new file mode 100644 index 00000000000000..b4366fde56f079 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WrongLocationTwoTone.js @@ -0,0 +1,11 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M18 11v.2c0 2.34-1.95 5.44-6 9.14-4.05-3.7-6-6.79-6-9.14C6 7.57 8.65 5 12 5c.34 0 .68.03 1 .08V3.06c-.33-.04-.66-.06-1-.06-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8V11h-2z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "11", + r: "2" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "m22.54 2.88-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" +}, "2")], 'WrongLocationTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Wysiwyg.js b/packages/material-ui-icons/lib/esm/Wysiwyg.js new file mode 100644 index 00000000000000..c60e38339a28af --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Wysiwyg.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z" +}), 'Wysiwyg'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WysiwygOutlined.js b/packages/material-ui-icons/lib/esm/WysiwygOutlined.js new file mode 100644 index 00000000000000..ba1636992c90ab --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WysiwygOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z" +}), 'WysiwygOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WysiwygRounded.js b/packages/material-ui-icons/lib/esm/WysiwygRounded.js new file mode 100644 index 00000000000000..db2bf5271b4434 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WysiwygRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-3-7H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-4 4H8c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z" +}), 'WysiwygRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WysiwygSharp.js b/packages/material-ui-icons/lib/esm/WysiwygSharp.js new file mode 100644 index 00000000000000..f6751785e1cd9c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WysiwygSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17 12H7v-2h10v2zm-4 2H7v2h6v-2zm8 7H3V3h18v18zM19 7H5v12h14V7z" +}), 'WysiwygSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/WysiwygTwoTone.js b/packages/material-ui-icons/lib/esm/WysiwygTwoTone.js new file mode 100644 index 00000000000000..6893592ef3fdff --- /dev/null +++ b/packages/material-ui-icons/lib/esm/WysiwygTwoTone.js @@ -0,0 +1,8 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M19 19H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V7h14v12zm-2-7H7v-2h10v2zm-4 4H7v-2h6v2z" +}, "1")], 'WysiwygTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/Yard.js b/packages/material-ui-icons/lib/esm/Yard.js new file mode 100644 index 00000000000000..d4782350b282f8 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/Yard.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-3.31 0-6-2.69-6-6 3.31 0 6 2.69 6 6 0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9.62", + r: "1.56" +}, "1")], 'Yard'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YardOutlined.js b/packages/material-ui-icons/lib/esm/YardOutlined.js new file mode 100644 index 00000000000000..76dae2f2bc1d90 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YardOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M18 13c-3.31 0-6 2.69-6 6 3.31 0 6-2.69 6-6zM6 13c0 3.31 2.69 6 6 6 0-3.31-2.69-6-6-6zm2-1.97c0 .86.7 1.56 1.56 1.56.33 0 .63-.1.89-.28l-.01.12c0 .86.7 1.56 1.56 1.56s1.56-.7 1.56-1.56l-.01-.12c.25.17.56.28.89.28.86 0 1.56-.7 1.56-1.56 0-.62-.37-1.16-.89-1.41.52-.24.89-.78.89-1.4 0-.86-.7-1.56-1.56-1.56-.33 0-.63.1-.89.28l.01-.12c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56l.01.12c-.25-.18-.56-.28-.89-.28-.86 0-1.56.7-1.56 1.56 0 .62.37 1.16.89 1.41-.52.24-.89.78-.89 1.4zm4-2.97c.86 0 1.56.7 1.56 1.56s-.7 1.56-1.56 1.56-1.56-.7-1.56-1.56.7-1.56 1.56-1.56zM20 4v16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z" +}), 'YardOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YardRounded.js b/packages/material-ui-icons/lib/esm/YardRounded.js new file mode 100644 index 00000000000000..297928dc430e92 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YardRounded.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-2.83 0-5.21-1.97-5.84-4.61-.18-.74.49-1.4 1.23-1.23C10.03 13.79 12 16.17 12 19c0-2.83 1.97-5.21 4.61-5.84.74-.18 1.4.49 1.23 1.23C17.21 17.03 14.83 19 12 19z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9.62", + r: "1.56" +}, "1")], 'YardRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YardSharp.js b/packages/material-ui-icons/lib/esm/YardSharp.js new file mode 100644 index 00000000000000..a47357ac68199c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YardSharp.js @@ -0,0 +1,9 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M22 2H2v20h20V2zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-3.31 0-6-2.69-6-6 3.31 0 6 2.69 6 6 0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6z" +}, "0"), /*#__PURE__*/_jsx("circle", { + cx: "12", + cy: "9.62", + r: "1.56" +}, "1")], 'YardSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YardTwoTone.js b/packages/material-ui-icons/lib/esm/YardTwoTone.js new file mode 100644 index 00000000000000..59324efafc85d4 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YardTwoTone.js @@ -0,0 +1,10 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M4 20h16V4H4v16zM8 8.22c0-.86.7-1.56 1.56-1.56.33 0 .64.1.89.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12c.26-.18.56-.28.89-.28.86 0 1.56.7 1.56 1.56 0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12c-.26.18-.56.28-.89.28-.86 0-1.56-.7-1.56-1.56 0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6s-6-2.69-6-6c3.31 0 6 2.69 6 6z", + opacity: ".3" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M8 11.03c0 .86.7 1.56 1.56 1.56.33 0 .63-.1.89-.28l-.01.12c0 .86.7 1.56 1.56 1.56s1.56-.7 1.56-1.56l-.01-.12c.25.17.56.28.89.28.86 0 1.56-.7 1.56-1.56 0-.62-.37-1.16-.89-1.41.52-.24.89-.78.89-1.4 0-.86-.7-1.56-1.56-1.56-.33 0-.63.1-.89.28l.01-.12c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56l.01.12c-.25-.18-.56-.28-.89-.28-.86 0-1.56.7-1.56 1.56 0 .62.37 1.16.89 1.41-.52.24-.89.78-.89 1.4zm4-2.97c.86 0 1.56.7 1.56 1.56s-.7 1.56-1.56 1.56-1.56-.7-1.56-1.56.7-1.56 1.56-1.56zM18 13c-3.31 0-6 2.69-6 6 3.31 0 6-2.69 6-6zm-6 6c0-3.31-2.69-6-6-6 0 3.31 2.69 6 6 6z" +}, "1"), /*#__PURE__*/_jsx("path", { + d: "M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z" +}, "2")], 'YardTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YouTube.js b/packages/material-ui-icons/lib/esm/YouTube.js new file mode 100644 index 00000000000000..5bfc0d790bcb01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YouTube.js @@ -0,0 +1,6 @@ +import * as React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M10 15l5.19-3L10 9v6m11.56-7.83c.13.47.22 1.1.28 1.9.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83-.25.9-.83 1.48-1.73 1.73-.47.13-1.33.22-2.65.28-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44-.9-.25-1.48-.83-1.73-1.73-.13-.47-.22-1.1-.28-1.9-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83.25-.9.83-1.48 1.73-1.73.47-.13 1.33-.22 2.65-.28 1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44.9.25 1.48.83 1.73 1.73z" +}), 'YouTube'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YoutubeSearchedFor.js b/packages/material-ui-icons/lib/esm/YoutubeSearchedFor.js new file mode 100644 index 00000000000000..aea96704e7ffdc --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YoutubeSearchedFor.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" +}), 'YoutubeSearchedFor'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YoutubeSearchedForOutlined.js b/packages/material-ui-icons/lib/esm/YoutubeSearchedForOutlined.js new file mode 100644 index 00000000000000..b186616a9dac0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YoutubeSearchedForOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" +}), 'YoutubeSearchedForOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YoutubeSearchedForRounded.js b/packages/material-ui-icons/lib/esm/YoutubeSearchedForRounded.js new file mode 100644 index 00000000000000..df3af4e686e0f9 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YoutubeSearchedForRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.01 14h-.8l-.27-.27c1.15-1.34 1.76-3.14 1.51-5.09C17.11 6 15.1 3.78 12.5 3.18 8.26 2.2 4.51 5.53 4.51 9.5h-2.1c-.47 0-.68.59-.31.89l3.4 2.75c.19.2.51.21.71.01l2.9-2.79c.32-.31.1-.86-.35-.86H6.51c0-2.49 2-4.48 4.46-4.5 2.44-.02 4.54 2.05 4.54 4.49 0 2.48-2.02 4.51-4.5 4.51-.45 0-.89-.07-1.3-.19-.34-.1-.71 0-.96.26-.53.53-.32 1.45.39 1.66.59.17 1.22.27 1.87.27 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l4.27 4.25c.41.41 1.07.41 1.48 0 .41-.41.41-1.08 0-1.49L17.01 14z" +}), 'YoutubeSearchedForRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YoutubeSearchedForSharp.js b/packages/material-ui-icons/lib/esm/YoutubeSearchedForSharp.js new file mode 100644 index 00000000000000..58add85066c8e2 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YoutubeSearchedForSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" +}), 'YoutubeSearchedForSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/YoutubeSearchedForTwoTone.js b/packages/material-ui-icons/lib/esm/YoutubeSearchedForTwoTone.js new file mode 100644 index 00000000000000..ece35cadcea247 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/YoutubeSearchedForTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z" +}), 'YoutubeSearchedForTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomIn.js b/packages/material-ui-icons/lib/esm/ZoomIn.js new file mode 100644 index 00000000000000..e3882d18adc943 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomIn.js @@ -0,0 +1,7 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon([/*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" +}, "0"), /*#__PURE__*/_jsx("path", { + d: "M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z" +}, "1")], 'ZoomIn'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomInOutlined.js b/packages/material-ui-icons/lib/esm/ZoomInOutlined.js new file mode 100644 index 00000000000000..5861a69bbd766d --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomInOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" +}), 'ZoomInOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomInRounded.js b/packages/material-ui-icons/lib/esm/ZoomInRounded.js new file mode 100644 index 00000000000000..33e5fac6e468f7 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomInRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm0-7c-.28 0-.5.22-.5.5V9H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H9v1.5c0 .28.22.5.5.5s.5-.22.5-.5V10h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7.5c0-.28-.22-.5-.5-.5z" +}), 'ZoomInRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomInSharp.js b/packages/material-ui-icons/lib/esm/ZoomInSharp.js new file mode 100644 index 00000000000000..2bd9ab9365dd0e --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomInSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" +}), 'ZoomInSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomInTwoTone.js b/packages/material-ui-icons/lib/esm/ZoomInTwoTone.js new file mode 100644 index 00000000000000..646f3768458c01 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomInTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" +}), 'ZoomInTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOut.js b/packages/material-ui-icons/lib/esm/ZoomOut.js new file mode 100644 index 00000000000000..92f4211c405a06 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOut.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" +}), 'ZoomOut'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutMap.js b/packages/material-ui-icons/lib/esm/ZoomOutMap.js new file mode 100644 index 00000000000000..f12325eec20093 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutMap.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 3 2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" +}), 'ZoomOutMap'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutMapOutlined.js b/packages/material-ui-icons/lib/esm/ZoomOutMapOutlined.js new file mode 100644 index 00000000000000..2c85579c7cdd80 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutMapOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 3 2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" +}), 'ZoomOutMapOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutMapRounded.js b/packages/material-ui-icons/lib/esm/ZoomOutMapRounded.js new file mode 100644 index 00000000000000..f2a0a26143f941 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutMapRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.85 3.85 17.3 5.3l-2.18 2.16c-.39.39-.39 1.03 0 1.42.39.39 1.03.39 1.42 0L18.7 6.7l1.45 1.45c.31.31.85.09.85-.36V3.5c0-.28-.22-.5-.5-.5h-4.29c-.45 0-.67.54-.36.85zm-12 4.3L5.3 6.7l2.16 2.18c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42L6.7 5.3l1.45-1.45c.31-.31.09-.85-.36-.85H3.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.36zm4.3 12L6.7 18.7l2.18-2.16c.39-.39.39-1.03 0-1.42-.39-.39-1.03-.39-1.42 0L5.3 17.3l-1.45-1.45c-.31-.31-.85-.09-.85.36v4.29c0 .28.22.5.5.5h4.29c.45 0 .67-.54.36-.85zm12-4.3L18.7 17.3l-2.16-2.18c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.03 0 1.42l2.18 2.16-1.45 1.45c-.31.31-.09.85.36.85h4.29c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.36z" +}), 'ZoomOutMapRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutMapSharp.js b/packages/material-ui-icons/lib/esm/ZoomOutMapSharp.js new file mode 100644 index 00000000000000..8904161fc1c87f --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutMapSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m15 3 2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" +}), 'ZoomOutMapSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutMapTwoTone.js b/packages/material-ui-icons/lib/esm/ZoomOutMapTwoTone.js new file mode 100644 index 00000000000000..93dfc2721b66d5 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutMapTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "m17.3 5.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM9 3H3v6l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3zm-.83 11.41L5.3 17.3 3 15v6h6l-2.3-2.3 2.89-2.87zm7.66 0-1.42 1.42 2.89 2.87L15 21h6v-6l-2.3 2.3z" +}), 'ZoomOutMapTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutOutlined.js b/packages/material-ui-icons/lib/esm/ZoomOutOutlined.js new file mode 100644 index 00000000000000..06e339a562b585 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutOutlined.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" +}), 'ZoomOutOutlined'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutRounded.js b/packages/material-ui-icons/lib/esm/ZoomOutRounded.js new file mode 100644 index 00000000000000..ddbc7e8a6985ca --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutRounded.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z" +}), 'ZoomOutRounded'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutSharp.js b/packages/material-ui-icons/lib/esm/ZoomOutSharp.js new file mode 100644 index 00000000000000..1a7aa326a8b025 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutSharp.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7V9z" +}), 'ZoomOutSharp'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/ZoomOutTwoTone.js b/packages/material-ui-icons/lib/esm/ZoomOutTwoTone.js new file mode 100644 index 00000000000000..52fbed58667c41 --- /dev/null +++ b/packages/material-ui-icons/lib/esm/ZoomOutTwoTone.js @@ -0,0 +1,5 @@ +import createSvgIcon from './utils/createSvgIcon'; +import { jsx as _jsx } from "react/jsx-runtime"; +export default createSvgIcon( /*#__PURE__*/_jsx("path", { + d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z" +}), 'ZoomOutTwoTone'); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/index.js b/packages/material-ui-icons/lib/esm/index.js new file mode 100644 index 00000000000000..7ace74b8a6583c --- /dev/null +++ b/packages/material-ui-icons/lib/esm/index.js @@ -0,0 +1,8875 @@ +export { default as AcUnit } from './AcUnit'; +export { default as AcUnitOutlined } from './AcUnitOutlined'; +export { default as AcUnitRounded } from './AcUnitRounded'; +export { default as AcUnitSharp } from './AcUnitSharp'; +export { default as AcUnitTwoTone } from './AcUnitTwoTone'; +export { default as AccessAlarm } from './AccessAlarm'; +export { default as AccessAlarmOutlined } from './AccessAlarmOutlined'; +export { default as AccessAlarmRounded } from './AccessAlarmRounded'; +export { default as AccessAlarmSharp } from './AccessAlarmSharp'; +export { default as AccessAlarmTwoTone } from './AccessAlarmTwoTone'; +export { default as AccessAlarms } from './AccessAlarms'; +export { default as AccessAlarmsOutlined } from './AccessAlarmsOutlined'; +export { default as AccessAlarmsRounded } from './AccessAlarmsRounded'; +export { default as AccessAlarmsSharp } from './AccessAlarmsSharp'; +export { default as AccessAlarmsTwoTone } from './AccessAlarmsTwoTone'; +export { default as AccessTime } from './AccessTime'; +export { default as AccessTimeFilled } from './AccessTimeFilled'; +export { default as AccessTimeFilledOutlined } from './AccessTimeFilledOutlined'; +export { default as AccessTimeFilledRounded } from './AccessTimeFilledRounded'; +export { default as AccessTimeFilledSharp } from './AccessTimeFilledSharp'; +export { default as AccessTimeFilledTwoTone } from './AccessTimeFilledTwoTone'; +export { default as AccessTimeOutlined } from './AccessTimeOutlined'; +export { default as AccessTimeRounded } from './AccessTimeRounded'; +export { default as AccessTimeSharp } from './AccessTimeSharp'; +export { default as AccessTimeTwoTone } from './AccessTimeTwoTone'; +export { default as Accessibility } from './Accessibility'; +export { default as AccessibilityNew } from './AccessibilityNew'; +export { default as AccessibilityNewOutlined } from './AccessibilityNewOutlined'; +export { default as AccessibilityNewRounded } from './AccessibilityNewRounded'; +export { default as AccessibilityNewSharp } from './AccessibilityNewSharp'; +export { default as AccessibilityNewTwoTone } from './AccessibilityNewTwoTone'; +export { default as AccessibilityOutlined } from './AccessibilityOutlined'; +export { default as AccessibilityRounded } from './AccessibilityRounded'; +export { default as AccessibilitySharp } from './AccessibilitySharp'; +export { default as AccessibilityTwoTone } from './AccessibilityTwoTone'; +export { default as Accessible } from './Accessible'; +export { default as AccessibleForward } from './AccessibleForward'; +export { default as AccessibleForwardOutlined } from './AccessibleForwardOutlined'; +export { default as AccessibleForwardRounded } from './AccessibleForwardRounded'; +export { default as AccessibleForwardSharp } from './AccessibleForwardSharp'; +export { default as AccessibleForwardTwoTone } from './AccessibleForwardTwoTone'; +export { default as AccessibleOutlined } from './AccessibleOutlined'; +export { default as AccessibleRounded } from './AccessibleRounded'; +export { default as AccessibleSharp } from './AccessibleSharp'; +export { default as AccessibleTwoTone } from './AccessibleTwoTone'; +export { default as AccountBalance } from './AccountBalance'; +export { default as AccountBalanceOutlined } from './AccountBalanceOutlined'; +export { default as AccountBalanceRounded } from './AccountBalanceRounded'; +export { default as AccountBalanceSharp } from './AccountBalanceSharp'; +export { default as AccountBalanceTwoTone } from './AccountBalanceTwoTone'; +export { default as AccountBalanceWallet } from './AccountBalanceWallet'; +export { default as AccountBalanceWalletOutlined } from './AccountBalanceWalletOutlined'; +export { default as AccountBalanceWalletRounded } from './AccountBalanceWalletRounded'; +export { default as AccountBalanceWalletSharp } from './AccountBalanceWalletSharp'; +export { default as AccountBalanceWalletTwoTone } from './AccountBalanceWalletTwoTone'; +export { default as AccountBox } from './AccountBox'; +export { default as AccountBoxOutlined } from './AccountBoxOutlined'; +export { default as AccountBoxRounded } from './AccountBoxRounded'; +export { default as AccountBoxSharp } from './AccountBoxSharp'; +export { default as AccountBoxTwoTone } from './AccountBoxTwoTone'; +export { default as AccountCircle } from './AccountCircle'; +export { default as AccountCircleOutlined } from './AccountCircleOutlined'; +export { default as AccountCircleRounded } from './AccountCircleRounded'; +export { default as AccountCircleSharp } from './AccountCircleSharp'; +export { default as AccountCircleTwoTone } from './AccountCircleTwoTone'; +export { default as AccountTree } from './AccountTree'; +export { default as AccountTreeOutlined } from './AccountTreeOutlined'; +export { default as AccountTreeRounded } from './AccountTreeRounded'; +export { default as AccountTreeSharp } from './AccountTreeSharp'; +export { default as AccountTreeTwoTone } from './AccountTreeTwoTone'; +export { default as AdUnits } from './AdUnits'; +export { default as AdUnitsOutlined } from './AdUnitsOutlined'; +export { default as AdUnitsRounded } from './AdUnitsRounded'; +export { default as AdUnitsSharp } from './AdUnitsSharp'; +export { default as AdUnitsTwoTone } from './AdUnitsTwoTone'; +export { default as Adb } from './Adb'; +export { default as AdbOutlined } from './AdbOutlined'; +export { default as AdbRounded } from './AdbRounded'; +export { default as AdbSharp } from './AdbSharp'; +export { default as AdbTwoTone } from './AdbTwoTone'; +export { default as Add } from './Add'; +export { default as AddAPhoto } from './AddAPhoto'; +export { default as AddAPhotoOutlined } from './AddAPhotoOutlined'; +export { default as AddAPhotoRounded } from './AddAPhotoRounded'; +export { default as AddAPhotoSharp } from './AddAPhotoSharp'; +export { default as AddAPhotoTwoTone } from './AddAPhotoTwoTone'; +export { default as AddAlarm } from './AddAlarm'; +export { default as AddAlarmOutlined } from './AddAlarmOutlined'; +export { default as AddAlarmRounded } from './AddAlarmRounded'; +export { default as AddAlarmSharp } from './AddAlarmSharp'; +export { default as AddAlarmTwoTone } from './AddAlarmTwoTone'; +export { default as AddAlert } from './AddAlert'; +export { default as AddAlertOutlined } from './AddAlertOutlined'; +export { default as AddAlertRounded } from './AddAlertRounded'; +export { default as AddAlertSharp } from './AddAlertSharp'; +export { default as AddAlertTwoTone } from './AddAlertTwoTone'; +export { default as AddBox } from './AddBox'; +export { default as AddBoxOutlined } from './AddBoxOutlined'; +export { default as AddBoxRounded } from './AddBoxRounded'; +export { default as AddBoxSharp } from './AddBoxSharp'; +export { default as AddBoxTwoTone } from './AddBoxTwoTone'; +export { default as AddBusiness } from './AddBusiness'; +export { default as AddBusinessOutlined } from './AddBusinessOutlined'; +export { default as AddBusinessRounded } from './AddBusinessRounded'; +export { default as AddBusinessSharp } from './AddBusinessSharp'; +export { default as AddBusinessTwoTone } from './AddBusinessTwoTone'; +export { default as AddCircle } from './AddCircle'; +export { default as AddCircleOutline } from './AddCircleOutline'; +export { default as AddCircleOutlineOutlined } from './AddCircleOutlineOutlined'; +export { default as AddCircleOutlineRounded } from './AddCircleOutlineRounded'; +export { default as AddCircleOutlineSharp } from './AddCircleOutlineSharp'; +export { default as AddCircleOutlineTwoTone } from './AddCircleOutlineTwoTone'; +export { default as AddCircleOutlined } from './AddCircleOutlined'; +export { default as AddCircleRounded } from './AddCircleRounded'; +export { default as AddCircleSharp } from './AddCircleSharp'; +export { default as AddCircleTwoTone } from './AddCircleTwoTone'; +export { default as AddComment } from './AddComment'; +export { default as AddCommentOutlined } from './AddCommentOutlined'; +export { default as AddCommentRounded } from './AddCommentRounded'; +export { default as AddCommentSharp } from './AddCommentSharp'; +export { default as AddCommentTwoTone } from './AddCommentTwoTone'; +export { default as AddIcCall } from './AddIcCall'; +export { default as AddIcCallOutlined } from './AddIcCallOutlined'; +export { default as AddIcCallRounded } from './AddIcCallRounded'; +export { default as AddIcCallSharp } from './AddIcCallSharp'; +export { default as AddIcCallTwoTone } from './AddIcCallTwoTone'; +export { default as AddLink } from './AddLink'; +export { default as AddLinkOutlined } from './AddLinkOutlined'; +export { default as AddLinkRounded } from './AddLinkRounded'; +export { default as AddLinkSharp } from './AddLinkSharp'; +export { default as AddLinkTwoTone } from './AddLinkTwoTone'; +export { default as AddLocation } from './AddLocation'; +export { default as AddLocationAlt } from './AddLocationAlt'; +export { default as AddLocationAltOutlined } from './AddLocationAltOutlined'; +export { default as AddLocationAltRounded } from './AddLocationAltRounded'; +export { default as AddLocationAltSharp } from './AddLocationAltSharp'; +export { default as AddLocationAltTwoTone } from './AddLocationAltTwoTone'; +export { default as AddLocationOutlined } from './AddLocationOutlined'; +export { default as AddLocationRounded } from './AddLocationRounded'; +export { default as AddLocationSharp } from './AddLocationSharp'; +export { default as AddLocationTwoTone } from './AddLocationTwoTone'; +export { default as AddModerator } from './AddModerator'; +export { default as AddModeratorOutlined } from './AddModeratorOutlined'; +export { default as AddModeratorRounded } from './AddModeratorRounded'; +export { default as AddModeratorSharp } from './AddModeratorSharp'; +export { default as AddModeratorTwoTone } from './AddModeratorTwoTone'; +export { default as AddOutlined } from './AddOutlined'; +export { default as AddPhotoAlternate } from './AddPhotoAlternate'; +export { default as AddPhotoAlternateOutlined } from './AddPhotoAlternateOutlined'; +export { default as AddPhotoAlternateRounded } from './AddPhotoAlternateRounded'; +export { default as AddPhotoAlternateSharp } from './AddPhotoAlternateSharp'; +export { default as AddPhotoAlternateTwoTone } from './AddPhotoAlternateTwoTone'; +export { default as AddReaction } from './AddReaction'; +export { default as AddReactionOutlined } from './AddReactionOutlined'; +export { default as AddReactionRounded } from './AddReactionRounded'; +export { default as AddReactionSharp } from './AddReactionSharp'; +export { default as AddReactionTwoTone } from './AddReactionTwoTone'; +export { default as AddRoad } from './AddRoad'; +export { default as AddRoadOutlined } from './AddRoadOutlined'; +export { default as AddRoadRounded } from './AddRoadRounded'; +export { default as AddRoadSharp } from './AddRoadSharp'; +export { default as AddRoadTwoTone } from './AddRoadTwoTone'; +export { default as AddRounded } from './AddRounded'; +export { default as AddSharp } from './AddSharp'; +export { default as AddShoppingCart } from './AddShoppingCart'; +export { default as AddShoppingCartOutlined } from './AddShoppingCartOutlined'; +export { default as AddShoppingCartRounded } from './AddShoppingCartRounded'; +export { default as AddShoppingCartSharp } from './AddShoppingCartSharp'; +export { default as AddShoppingCartTwoTone } from './AddShoppingCartTwoTone'; +export { default as AddTask } from './AddTask'; +export { default as AddTaskOutlined } from './AddTaskOutlined'; +export { default as AddTaskRounded } from './AddTaskRounded'; +export { default as AddTaskSharp } from './AddTaskSharp'; +export { default as AddTaskTwoTone } from './AddTaskTwoTone'; +export { default as AddToDrive } from './AddToDrive'; +export { default as AddToDriveOutlined } from './AddToDriveOutlined'; +export { default as AddToDriveRounded } from './AddToDriveRounded'; +export { default as AddToDriveSharp } from './AddToDriveSharp'; +export { default as AddToDriveTwoTone } from './AddToDriveTwoTone'; +export { default as AddToHomeScreen } from './AddToHomeScreen'; +export { default as AddToHomeScreenOutlined } from './AddToHomeScreenOutlined'; +export { default as AddToHomeScreenRounded } from './AddToHomeScreenRounded'; +export { default as AddToHomeScreenSharp } from './AddToHomeScreenSharp'; +export { default as AddToHomeScreenTwoTone } from './AddToHomeScreenTwoTone'; +export { default as AddToPhotos } from './AddToPhotos'; +export { default as AddToPhotosOutlined } from './AddToPhotosOutlined'; +export { default as AddToPhotosRounded } from './AddToPhotosRounded'; +export { default as AddToPhotosSharp } from './AddToPhotosSharp'; +export { default as AddToPhotosTwoTone } from './AddToPhotosTwoTone'; +export { default as AddToQueue } from './AddToQueue'; +export { default as AddToQueueOutlined } from './AddToQueueOutlined'; +export { default as AddToQueueRounded } from './AddToQueueRounded'; +export { default as AddToQueueSharp } from './AddToQueueSharp'; +export { default as AddToQueueTwoTone } from './AddToQueueTwoTone'; +export { default as AddTwoTone } from './AddTwoTone'; +export { default as Addchart } from './Addchart'; +export { default as AddchartOutlined } from './AddchartOutlined'; +export { default as AddchartRounded } from './AddchartRounded'; +export { default as AddchartSharp } from './AddchartSharp'; +export { default as AddchartTwoTone } from './AddchartTwoTone'; +export { default as Adjust } from './Adjust'; +export { default as AdjustOutlined } from './AdjustOutlined'; +export { default as AdjustRounded } from './AdjustRounded'; +export { default as AdjustSharp } from './AdjustSharp'; +export { default as AdjustTwoTone } from './AdjustTwoTone'; +export { default as AdminPanelSettings } from './AdminPanelSettings'; +export { default as AdminPanelSettingsOutlined } from './AdminPanelSettingsOutlined'; +export { default as AdminPanelSettingsRounded } from './AdminPanelSettingsRounded'; +export { default as AdminPanelSettingsSharp } from './AdminPanelSettingsSharp'; +export { default as AdminPanelSettingsTwoTone } from './AdminPanelSettingsTwoTone'; +export { default as Agriculture } from './Agriculture'; +export { default as AgricultureOutlined } from './AgricultureOutlined'; +export { default as AgricultureRounded } from './AgricultureRounded'; +export { default as AgricultureSharp } from './AgricultureSharp'; +export { default as AgricultureTwoTone } from './AgricultureTwoTone'; +export { default as Air } from './Air'; +export { default as AirOutlined } from './AirOutlined'; +export { default as AirRounded } from './AirRounded'; +export { default as AirSharp } from './AirSharp'; +export { default as AirTwoTone } from './AirTwoTone'; +export { default as AirlineSeatFlat } from './AirlineSeatFlat'; +export { default as AirlineSeatFlatAngled } from './AirlineSeatFlatAngled'; +export { default as AirlineSeatFlatAngledOutlined } from './AirlineSeatFlatAngledOutlined'; +export { default as AirlineSeatFlatAngledRounded } from './AirlineSeatFlatAngledRounded'; +export { default as AirlineSeatFlatAngledSharp } from './AirlineSeatFlatAngledSharp'; +export { default as AirlineSeatFlatAngledTwoTone } from './AirlineSeatFlatAngledTwoTone'; +export { default as AirlineSeatFlatOutlined } from './AirlineSeatFlatOutlined'; +export { default as AirlineSeatFlatRounded } from './AirlineSeatFlatRounded'; +export { default as AirlineSeatFlatSharp } from './AirlineSeatFlatSharp'; +export { default as AirlineSeatFlatTwoTone } from './AirlineSeatFlatTwoTone'; +export { default as AirlineSeatIndividualSuite } from './AirlineSeatIndividualSuite'; +export { default as AirlineSeatIndividualSuiteOutlined } from './AirlineSeatIndividualSuiteOutlined'; +export { default as AirlineSeatIndividualSuiteRounded } from './AirlineSeatIndividualSuiteRounded'; +export { default as AirlineSeatIndividualSuiteSharp } from './AirlineSeatIndividualSuiteSharp'; +export { default as AirlineSeatIndividualSuiteTwoTone } from './AirlineSeatIndividualSuiteTwoTone'; +export { default as AirlineSeatLegroomExtra } from './AirlineSeatLegroomExtra'; +export { default as AirlineSeatLegroomExtraOutlined } from './AirlineSeatLegroomExtraOutlined'; +export { default as AirlineSeatLegroomExtraRounded } from './AirlineSeatLegroomExtraRounded'; +export { default as AirlineSeatLegroomExtraSharp } from './AirlineSeatLegroomExtraSharp'; +export { default as AirlineSeatLegroomExtraTwoTone } from './AirlineSeatLegroomExtraTwoTone'; +export { default as AirlineSeatLegroomNormal } from './AirlineSeatLegroomNormal'; +export { default as AirlineSeatLegroomNormalOutlined } from './AirlineSeatLegroomNormalOutlined'; +export { default as AirlineSeatLegroomNormalRounded } from './AirlineSeatLegroomNormalRounded'; +export { default as AirlineSeatLegroomNormalSharp } from './AirlineSeatLegroomNormalSharp'; +export { default as AirlineSeatLegroomNormalTwoTone } from './AirlineSeatLegroomNormalTwoTone'; +export { default as AirlineSeatLegroomReduced } from './AirlineSeatLegroomReduced'; +export { default as AirlineSeatLegroomReducedOutlined } from './AirlineSeatLegroomReducedOutlined'; +export { default as AirlineSeatLegroomReducedRounded } from './AirlineSeatLegroomReducedRounded'; +export { default as AirlineSeatLegroomReducedSharp } from './AirlineSeatLegroomReducedSharp'; +export { default as AirlineSeatLegroomReducedTwoTone } from './AirlineSeatLegroomReducedTwoTone'; +export { default as AirlineSeatReclineExtra } from './AirlineSeatReclineExtra'; +export { default as AirlineSeatReclineExtraOutlined } from './AirlineSeatReclineExtraOutlined'; +export { default as AirlineSeatReclineExtraRounded } from './AirlineSeatReclineExtraRounded'; +export { default as AirlineSeatReclineExtraSharp } from './AirlineSeatReclineExtraSharp'; +export { default as AirlineSeatReclineExtraTwoTone } from './AirlineSeatReclineExtraTwoTone'; +export { default as AirlineSeatReclineNormal } from './AirlineSeatReclineNormal'; +export { default as AirlineSeatReclineNormalOutlined } from './AirlineSeatReclineNormalOutlined'; +export { default as AirlineSeatReclineNormalRounded } from './AirlineSeatReclineNormalRounded'; +export { default as AirlineSeatReclineNormalSharp } from './AirlineSeatReclineNormalSharp'; +export { default as AirlineSeatReclineNormalTwoTone } from './AirlineSeatReclineNormalTwoTone'; +export { default as AirplaneTicket } from './AirplaneTicket'; +export { default as AirplaneTicketOutlined } from './AirplaneTicketOutlined'; +export { default as AirplaneTicketRounded } from './AirplaneTicketRounded'; +export { default as AirplaneTicketSharp } from './AirplaneTicketSharp'; +export { default as AirplaneTicketTwoTone } from './AirplaneTicketTwoTone'; +export { default as AirplanemodeActive } from './AirplanemodeActive'; +export { default as AirplanemodeActiveOutlined } from './AirplanemodeActiveOutlined'; +export { default as AirplanemodeActiveRounded } from './AirplanemodeActiveRounded'; +export { default as AirplanemodeActiveSharp } from './AirplanemodeActiveSharp'; +export { default as AirplanemodeActiveTwoTone } from './AirplanemodeActiveTwoTone'; +export { default as AirplanemodeInactive } from './AirplanemodeInactive'; +export { default as AirplanemodeInactiveOutlined } from './AirplanemodeInactiveOutlined'; +export { default as AirplanemodeInactiveRounded } from './AirplanemodeInactiveRounded'; +export { default as AirplanemodeInactiveSharp } from './AirplanemodeInactiveSharp'; +export { default as AirplanemodeInactiveTwoTone } from './AirplanemodeInactiveTwoTone'; +export { default as Airplay } from './Airplay'; +export { default as AirplayOutlined } from './AirplayOutlined'; +export { default as AirplayRounded } from './AirplayRounded'; +export { default as AirplaySharp } from './AirplaySharp'; +export { default as AirplayTwoTone } from './AirplayTwoTone'; +export { default as AirportShuttle } from './AirportShuttle'; +export { default as AirportShuttleOutlined } from './AirportShuttleOutlined'; +export { default as AirportShuttleRounded } from './AirportShuttleRounded'; +export { default as AirportShuttleSharp } from './AirportShuttleSharp'; +export { default as AirportShuttleTwoTone } from './AirportShuttleTwoTone'; +export { default as Alarm } from './Alarm'; +export { default as AlarmAdd } from './AlarmAdd'; +export { default as AlarmAddOutlined } from './AlarmAddOutlined'; +export { default as AlarmAddRounded } from './AlarmAddRounded'; +export { default as AlarmAddSharp } from './AlarmAddSharp'; +export { default as AlarmAddTwoTone } from './AlarmAddTwoTone'; +export { default as AlarmOff } from './AlarmOff'; +export { default as AlarmOffOutlined } from './AlarmOffOutlined'; +export { default as AlarmOffRounded } from './AlarmOffRounded'; +export { default as AlarmOffSharp } from './AlarmOffSharp'; +export { default as AlarmOffTwoTone } from './AlarmOffTwoTone'; +export { default as AlarmOn } from './AlarmOn'; +export { default as AlarmOnOutlined } from './AlarmOnOutlined'; +export { default as AlarmOnRounded } from './AlarmOnRounded'; +export { default as AlarmOnSharp } from './AlarmOnSharp'; +export { default as AlarmOnTwoTone } from './AlarmOnTwoTone'; +export { default as AlarmOutlined } from './AlarmOutlined'; +export { default as AlarmRounded } from './AlarmRounded'; +export { default as AlarmSharp } from './AlarmSharp'; +export { default as AlarmTwoTone } from './AlarmTwoTone'; +export { default as Album } from './Album'; +export { default as AlbumOutlined } from './AlbumOutlined'; +export { default as AlbumRounded } from './AlbumRounded'; +export { default as AlbumSharp } from './AlbumSharp'; +export { default as AlbumTwoTone } from './AlbumTwoTone'; +export { default as AlignHorizontalCenter } from './AlignHorizontalCenter'; +export { default as AlignHorizontalCenterOutlined } from './AlignHorizontalCenterOutlined'; +export { default as AlignHorizontalCenterRounded } from './AlignHorizontalCenterRounded'; +export { default as AlignHorizontalCenterSharp } from './AlignHorizontalCenterSharp'; +export { default as AlignHorizontalCenterTwoTone } from './AlignHorizontalCenterTwoTone'; +export { default as AlignHorizontalLeft } from './AlignHorizontalLeft'; +export { default as AlignHorizontalLeftOutlined } from './AlignHorizontalLeftOutlined'; +export { default as AlignHorizontalLeftRounded } from './AlignHorizontalLeftRounded'; +export { default as AlignHorizontalLeftSharp } from './AlignHorizontalLeftSharp'; +export { default as AlignHorizontalLeftTwoTone } from './AlignHorizontalLeftTwoTone'; +export { default as AlignHorizontalRight } from './AlignHorizontalRight'; +export { default as AlignHorizontalRightOutlined } from './AlignHorizontalRightOutlined'; +export { default as AlignHorizontalRightRounded } from './AlignHorizontalRightRounded'; +export { default as AlignHorizontalRightSharp } from './AlignHorizontalRightSharp'; +export { default as AlignHorizontalRightTwoTone } from './AlignHorizontalRightTwoTone'; +export { default as AlignVerticalBottom } from './AlignVerticalBottom'; +export { default as AlignVerticalBottomOutlined } from './AlignVerticalBottomOutlined'; +export { default as AlignVerticalBottomRounded } from './AlignVerticalBottomRounded'; +export { default as AlignVerticalBottomSharp } from './AlignVerticalBottomSharp'; +export { default as AlignVerticalBottomTwoTone } from './AlignVerticalBottomTwoTone'; +export { default as AlignVerticalCenter } from './AlignVerticalCenter'; +export { default as AlignVerticalCenterOutlined } from './AlignVerticalCenterOutlined'; +export { default as AlignVerticalCenterRounded } from './AlignVerticalCenterRounded'; +export { default as AlignVerticalCenterSharp } from './AlignVerticalCenterSharp'; +export { default as AlignVerticalCenterTwoTone } from './AlignVerticalCenterTwoTone'; +export { default as AlignVerticalTop } from './AlignVerticalTop'; +export { default as AlignVerticalTopOutlined } from './AlignVerticalTopOutlined'; +export { default as AlignVerticalTopRounded } from './AlignVerticalTopRounded'; +export { default as AlignVerticalTopSharp } from './AlignVerticalTopSharp'; +export { default as AlignVerticalTopTwoTone } from './AlignVerticalTopTwoTone'; +export { default as AllInbox } from './AllInbox'; +export { default as AllInboxOutlined } from './AllInboxOutlined'; +export { default as AllInboxRounded } from './AllInboxRounded'; +export { default as AllInboxSharp } from './AllInboxSharp'; +export { default as AllInboxTwoTone } from './AllInboxTwoTone'; +export { default as AllInclusive } from './AllInclusive'; +export { default as AllInclusiveOutlined } from './AllInclusiveOutlined'; +export { default as AllInclusiveRounded } from './AllInclusiveRounded'; +export { default as AllInclusiveSharp } from './AllInclusiveSharp'; +export { default as AllInclusiveTwoTone } from './AllInclusiveTwoTone'; +export { default as AllOut } from './AllOut'; +export { default as AllOutOutlined } from './AllOutOutlined'; +export { default as AllOutRounded } from './AllOutRounded'; +export { default as AllOutSharp } from './AllOutSharp'; +export { default as AllOutTwoTone } from './AllOutTwoTone'; +export { default as AltRoute } from './AltRoute'; +export { default as AltRouteOutlined } from './AltRouteOutlined'; +export { default as AltRouteRounded } from './AltRouteRounded'; +export { default as AltRouteSharp } from './AltRouteSharp'; +export { default as AltRouteTwoTone } from './AltRouteTwoTone'; +export { default as AlternateEmail } from './AlternateEmail'; +export { default as AlternateEmailOutlined } from './AlternateEmailOutlined'; +export { default as AlternateEmailRounded } from './AlternateEmailRounded'; +export { default as AlternateEmailSharp } from './AlternateEmailSharp'; +export { default as AlternateEmailTwoTone } from './AlternateEmailTwoTone'; +export { default as Analytics } from './Analytics'; +export { default as AnalyticsOutlined } from './AnalyticsOutlined'; +export { default as AnalyticsRounded } from './AnalyticsRounded'; +export { default as AnalyticsSharp } from './AnalyticsSharp'; +export { default as AnalyticsTwoTone } from './AnalyticsTwoTone'; +export { default as Anchor } from './Anchor'; +export { default as AnchorOutlined } from './AnchorOutlined'; +export { default as AnchorRounded } from './AnchorRounded'; +export { default as AnchorSharp } from './AnchorSharp'; +export { default as AnchorTwoTone } from './AnchorTwoTone'; +export { default as Android } from './Android'; +export { default as AndroidOutlined } from './AndroidOutlined'; +export { default as AndroidRounded } from './AndroidRounded'; +export { default as AndroidSharp } from './AndroidSharp'; +export { default as AndroidTwoTone } from './AndroidTwoTone'; +export { default as Animation } from './Animation'; +export { default as AnimationOutlined } from './AnimationOutlined'; +export { default as AnimationRounded } from './AnimationRounded'; +export { default as AnimationSharp } from './AnimationSharp'; +export { default as AnimationTwoTone } from './AnimationTwoTone'; +export { default as Announcement } from './Announcement'; +export { default as AnnouncementOutlined } from './AnnouncementOutlined'; +export { default as AnnouncementRounded } from './AnnouncementRounded'; +export { default as AnnouncementSharp } from './AnnouncementSharp'; +export { default as AnnouncementTwoTone } from './AnnouncementTwoTone'; +export { default as Aod } from './Aod'; +export { default as AodOutlined } from './AodOutlined'; +export { default as AodRounded } from './AodRounded'; +export { default as AodSharp } from './AodSharp'; +export { default as AodTwoTone } from './AodTwoTone'; +export { default as Apartment } from './Apartment'; +export { default as ApartmentOutlined } from './ApartmentOutlined'; +export { default as ApartmentRounded } from './ApartmentRounded'; +export { default as ApartmentSharp } from './ApartmentSharp'; +export { default as ApartmentTwoTone } from './ApartmentTwoTone'; +export { default as Api } from './Api'; +export { default as ApiOutlined } from './ApiOutlined'; +export { default as ApiRounded } from './ApiRounded'; +export { default as ApiSharp } from './ApiSharp'; +export { default as ApiTwoTone } from './ApiTwoTone'; +export { default as AppBlocking } from './AppBlocking'; +export { default as AppBlockingOutlined } from './AppBlockingOutlined'; +export { default as AppBlockingRounded } from './AppBlockingRounded'; +export { default as AppBlockingSharp } from './AppBlockingSharp'; +export { default as AppBlockingTwoTone } from './AppBlockingTwoTone'; +export { default as AppRegistration } from './AppRegistration'; +export { default as AppRegistrationOutlined } from './AppRegistrationOutlined'; +export { default as AppRegistrationRounded } from './AppRegistrationRounded'; +export { default as AppRegistrationSharp } from './AppRegistrationSharp'; +export { default as AppRegistrationTwoTone } from './AppRegistrationTwoTone'; +export { default as AppSettingsAlt } from './AppSettingsAlt'; +export { default as AppSettingsAltOutlined } from './AppSettingsAltOutlined'; +export { default as AppSettingsAltRounded } from './AppSettingsAltRounded'; +export { default as AppSettingsAltSharp } from './AppSettingsAltSharp'; +export { default as AppSettingsAltTwoTone } from './AppSettingsAltTwoTone'; +export { default as Apple } from './Apple'; +export { default as Approval } from './Approval'; +export { default as ApprovalOutlined } from './ApprovalOutlined'; +export { default as ApprovalRounded } from './ApprovalRounded'; +export { default as ApprovalSharp } from './ApprovalSharp'; +export { default as ApprovalTwoTone } from './ApprovalTwoTone'; +export { default as Apps } from './Apps'; +export { default as AppsOutlined } from './AppsOutlined'; +export { default as AppsRounded } from './AppsRounded'; +export { default as AppsSharp } from './AppsSharp'; +export { default as AppsTwoTone } from './AppsTwoTone'; +export { default as Architecture } from './Architecture'; +export { default as ArchitectureOutlined } from './ArchitectureOutlined'; +export { default as ArchitectureRounded } from './ArchitectureRounded'; +export { default as ArchitectureSharp } from './ArchitectureSharp'; +export { default as ArchitectureTwoTone } from './ArchitectureTwoTone'; +export { default as Archive } from './Archive'; +export { default as ArchiveOutlined } from './ArchiveOutlined'; +export { default as ArchiveRounded } from './ArchiveRounded'; +export { default as ArchiveSharp } from './ArchiveSharp'; +export { default as ArchiveTwoTone } from './ArchiveTwoTone'; +export { default as ArrowBack } from './ArrowBack'; +export { default as ArrowBackIos } from './ArrowBackIos'; +export { default as ArrowBackIosNew } from './ArrowBackIosNew'; +export { default as ArrowBackIosNewOutlined } from './ArrowBackIosNewOutlined'; +export { default as ArrowBackIosNewRounded } from './ArrowBackIosNewRounded'; +export { default as ArrowBackIosNewSharp } from './ArrowBackIosNewSharp'; +export { default as ArrowBackIosNewTwoTone } from './ArrowBackIosNewTwoTone'; +export { default as ArrowBackIosOutlined } from './ArrowBackIosOutlined'; +export { default as ArrowBackIosRounded } from './ArrowBackIosRounded'; +export { default as ArrowBackIosSharp } from './ArrowBackIosSharp'; +export { default as ArrowBackIosTwoTone } from './ArrowBackIosTwoTone'; +export { default as ArrowBackOutlined } from './ArrowBackOutlined'; +export { default as ArrowBackRounded } from './ArrowBackRounded'; +export { default as ArrowBackSharp } from './ArrowBackSharp'; +export { default as ArrowBackTwoTone } from './ArrowBackTwoTone'; +export { default as ArrowCircleDown } from './ArrowCircleDown'; +export { default as ArrowCircleDownOutlined } from './ArrowCircleDownOutlined'; +export { default as ArrowCircleDownRounded } from './ArrowCircleDownRounded'; +export { default as ArrowCircleDownSharp } from './ArrowCircleDownSharp'; +export { default as ArrowCircleDownTwoTone } from './ArrowCircleDownTwoTone'; +export { default as ArrowCircleUp } from './ArrowCircleUp'; +export { default as ArrowCircleUpOutlined } from './ArrowCircleUpOutlined'; +export { default as ArrowCircleUpRounded } from './ArrowCircleUpRounded'; +export { default as ArrowCircleUpSharp } from './ArrowCircleUpSharp'; +export { default as ArrowCircleUpTwoTone } from './ArrowCircleUpTwoTone'; +export { default as ArrowDownward } from './ArrowDownward'; +export { default as ArrowDownwardOutlined } from './ArrowDownwardOutlined'; +export { default as ArrowDownwardRounded } from './ArrowDownwardRounded'; +export { default as ArrowDownwardSharp } from './ArrowDownwardSharp'; +export { default as ArrowDownwardTwoTone } from './ArrowDownwardTwoTone'; +export { default as ArrowDropDown } from './ArrowDropDown'; +export { default as ArrowDropDownCircle } from './ArrowDropDownCircle'; +export { default as ArrowDropDownCircleOutlined } from './ArrowDropDownCircleOutlined'; +export { default as ArrowDropDownCircleRounded } from './ArrowDropDownCircleRounded'; +export { default as ArrowDropDownCircleSharp } from './ArrowDropDownCircleSharp'; +export { default as ArrowDropDownCircleTwoTone } from './ArrowDropDownCircleTwoTone'; +export { default as ArrowDropDownOutlined } from './ArrowDropDownOutlined'; +export { default as ArrowDropDownRounded } from './ArrowDropDownRounded'; +export { default as ArrowDropDownSharp } from './ArrowDropDownSharp'; +export { default as ArrowDropDownTwoTone } from './ArrowDropDownTwoTone'; +export { default as ArrowDropUp } from './ArrowDropUp'; +export { default as ArrowDropUpOutlined } from './ArrowDropUpOutlined'; +export { default as ArrowDropUpRounded } from './ArrowDropUpRounded'; +export { default as ArrowDropUpSharp } from './ArrowDropUpSharp'; +export { default as ArrowDropUpTwoTone } from './ArrowDropUpTwoTone'; +export { default as ArrowForward } from './ArrowForward'; +export { default as ArrowForwardIos } from './ArrowForwardIos'; +export { default as ArrowForwardIosOutlined } from './ArrowForwardIosOutlined'; +export { default as ArrowForwardIosRounded } from './ArrowForwardIosRounded'; +export { default as ArrowForwardIosSharp } from './ArrowForwardIosSharp'; +export { default as ArrowForwardIosTwoTone } from './ArrowForwardIosTwoTone'; +export { default as ArrowForwardOutlined } from './ArrowForwardOutlined'; +export { default as ArrowForwardRounded } from './ArrowForwardRounded'; +export { default as ArrowForwardSharp } from './ArrowForwardSharp'; +export { default as ArrowForwardTwoTone } from './ArrowForwardTwoTone'; +export { default as ArrowLeft } from './ArrowLeft'; +export { default as ArrowLeftOutlined } from './ArrowLeftOutlined'; +export { default as ArrowLeftRounded } from './ArrowLeftRounded'; +export { default as ArrowLeftSharp } from './ArrowLeftSharp'; +export { default as ArrowLeftTwoTone } from './ArrowLeftTwoTone'; +export { default as ArrowRight } from './ArrowRight'; +export { default as ArrowRightAlt } from './ArrowRightAlt'; +export { default as ArrowRightAltOutlined } from './ArrowRightAltOutlined'; +export { default as ArrowRightAltRounded } from './ArrowRightAltRounded'; +export { default as ArrowRightAltSharp } from './ArrowRightAltSharp'; +export { default as ArrowRightAltTwoTone } from './ArrowRightAltTwoTone'; +export { default as ArrowRightOutlined } from './ArrowRightOutlined'; +export { default as ArrowRightRounded } from './ArrowRightRounded'; +export { default as ArrowRightSharp } from './ArrowRightSharp'; +export { default as ArrowRightTwoTone } from './ArrowRightTwoTone'; +export { default as ArrowUpward } from './ArrowUpward'; +export { default as ArrowUpwardOutlined } from './ArrowUpwardOutlined'; +export { default as ArrowUpwardRounded } from './ArrowUpwardRounded'; +export { default as ArrowUpwardSharp } from './ArrowUpwardSharp'; +export { default as ArrowUpwardTwoTone } from './ArrowUpwardTwoTone'; +export { default as ArtTrack } from './ArtTrack'; +export { default as ArtTrackOutlined } from './ArtTrackOutlined'; +export { default as ArtTrackRounded } from './ArtTrackRounded'; +export { default as ArtTrackSharp } from './ArtTrackSharp'; +export { default as ArtTrackTwoTone } from './ArtTrackTwoTone'; +export { default as Article } from './Article'; +export { default as ArticleOutlined } from './ArticleOutlined'; +export { default as ArticleRounded } from './ArticleRounded'; +export { default as ArticleSharp } from './ArticleSharp'; +export { default as ArticleTwoTone } from './ArticleTwoTone'; +export { default as AspectRatio } from './AspectRatio'; +export { default as AspectRatioOutlined } from './AspectRatioOutlined'; +export { default as AspectRatioRounded } from './AspectRatioRounded'; +export { default as AspectRatioSharp } from './AspectRatioSharp'; +export { default as AspectRatioTwoTone } from './AspectRatioTwoTone'; +export { default as Assessment } from './Assessment'; +export { default as AssessmentOutlined } from './AssessmentOutlined'; +export { default as AssessmentRounded } from './AssessmentRounded'; +export { default as AssessmentSharp } from './AssessmentSharp'; +export { default as AssessmentTwoTone } from './AssessmentTwoTone'; +export { default as Assignment } from './Assignment'; +export { default as AssignmentInd } from './AssignmentInd'; +export { default as AssignmentIndOutlined } from './AssignmentIndOutlined'; +export { default as AssignmentIndRounded } from './AssignmentIndRounded'; +export { default as AssignmentIndSharp } from './AssignmentIndSharp'; +export { default as AssignmentIndTwoTone } from './AssignmentIndTwoTone'; +export { default as AssignmentLate } from './AssignmentLate'; +export { default as AssignmentLateOutlined } from './AssignmentLateOutlined'; +export { default as AssignmentLateRounded } from './AssignmentLateRounded'; +export { default as AssignmentLateSharp } from './AssignmentLateSharp'; +export { default as AssignmentLateTwoTone } from './AssignmentLateTwoTone'; +export { default as AssignmentOutlined } from './AssignmentOutlined'; +export { default as AssignmentReturn } from './AssignmentReturn'; +export { default as AssignmentReturnOutlined } from './AssignmentReturnOutlined'; +export { default as AssignmentReturnRounded } from './AssignmentReturnRounded'; +export { default as AssignmentReturnSharp } from './AssignmentReturnSharp'; +export { default as AssignmentReturnTwoTone } from './AssignmentReturnTwoTone'; +export { default as AssignmentReturned } from './AssignmentReturned'; +export { default as AssignmentReturnedOutlined } from './AssignmentReturnedOutlined'; +export { default as AssignmentReturnedRounded } from './AssignmentReturnedRounded'; +export { default as AssignmentReturnedSharp } from './AssignmentReturnedSharp'; +export { default as AssignmentReturnedTwoTone } from './AssignmentReturnedTwoTone'; +export { default as AssignmentRounded } from './AssignmentRounded'; +export { default as AssignmentSharp } from './AssignmentSharp'; +export { default as AssignmentTurnedIn } from './AssignmentTurnedIn'; +export { default as AssignmentTurnedInOutlined } from './AssignmentTurnedInOutlined'; +export { default as AssignmentTurnedInRounded } from './AssignmentTurnedInRounded'; +export { default as AssignmentTurnedInSharp } from './AssignmentTurnedInSharp'; +export { default as AssignmentTurnedInTwoTone } from './AssignmentTurnedInTwoTone'; +export { default as AssignmentTwoTone } from './AssignmentTwoTone'; +export { default as Assistant } from './Assistant'; +export { default as AssistantDirection } from './AssistantDirection'; +export { default as AssistantDirectionOutlined } from './AssistantDirectionOutlined'; +export { default as AssistantDirectionRounded } from './AssistantDirectionRounded'; +export { default as AssistantDirectionSharp } from './AssistantDirectionSharp'; +export { default as AssistantDirectionTwoTone } from './AssistantDirectionTwoTone'; +export { default as AssistantOutlined } from './AssistantOutlined'; +export { default as AssistantPhoto } from './AssistantPhoto'; +export { default as AssistantPhotoOutlined } from './AssistantPhotoOutlined'; +export { default as AssistantPhotoRounded } from './AssistantPhotoRounded'; +export { default as AssistantPhotoSharp } from './AssistantPhotoSharp'; +export { default as AssistantPhotoTwoTone } from './AssistantPhotoTwoTone'; +export { default as AssistantRounded } from './AssistantRounded'; +export { default as AssistantSharp } from './AssistantSharp'; +export { default as AssistantTwoTone } from './AssistantTwoTone'; +export { default as Atm } from './Atm'; +export { default as AtmOutlined } from './AtmOutlined'; +export { default as AtmRounded } from './AtmRounded'; +export { default as AtmSharp } from './AtmSharp'; +export { default as AtmTwoTone } from './AtmTwoTone'; +export { default as AttachEmail } from './AttachEmail'; +export { default as AttachEmailOutlined } from './AttachEmailOutlined'; +export { default as AttachEmailRounded } from './AttachEmailRounded'; +export { default as AttachEmailSharp } from './AttachEmailSharp'; +export { default as AttachEmailTwoTone } from './AttachEmailTwoTone'; +export { default as AttachFile } from './AttachFile'; +export { default as AttachFileOutlined } from './AttachFileOutlined'; +export { default as AttachFileRounded } from './AttachFileRounded'; +export { default as AttachFileSharp } from './AttachFileSharp'; +export { default as AttachFileTwoTone } from './AttachFileTwoTone'; +export { default as AttachMoney } from './AttachMoney'; +export { default as AttachMoneyOutlined } from './AttachMoneyOutlined'; +export { default as AttachMoneyRounded } from './AttachMoneyRounded'; +export { default as AttachMoneySharp } from './AttachMoneySharp'; +export { default as AttachMoneyTwoTone } from './AttachMoneyTwoTone'; +export { default as Attachment } from './Attachment'; +export { default as AttachmentOutlined } from './AttachmentOutlined'; +export { default as AttachmentRounded } from './AttachmentRounded'; +export { default as AttachmentSharp } from './AttachmentSharp'; +export { default as AttachmentTwoTone } from './AttachmentTwoTone'; +export { default as Attractions } from './Attractions'; +export { default as AttractionsOutlined } from './AttractionsOutlined'; +export { default as AttractionsRounded } from './AttractionsRounded'; +export { default as AttractionsSharp } from './AttractionsSharp'; +export { default as AttractionsTwoTone } from './AttractionsTwoTone'; +export { default as Attribution } from './Attribution'; +export { default as AttributionOutlined } from './AttributionOutlined'; +export { default as AttributionRounded } from './AttributionRounded'; +export { default as AttributionSharp } from './AttributionSharp'; +export { default as AttributionTwoTone } from './AttributionTwoTone'; +export { default as Audiotrack } from './Audiotrack'; +export { default as AudiotrackOutlined } from './AudiotrackOutlined'; +export { default as AudiotrackRounded } from './AudiotrackRounded'; +export { default as AudiotrackSharp } from './AudiotrackSharp'; +export { default as AudiotrackTwoTone } from './AudiotrackTwoTone'; +export { default as AutoAwesome } from './AutoAwesome'; +export { default as AutoAwesomeMosaic } from './AutoAwesomeMosaic'; +export { default as AutoAwesomeMosaicOutlined } from './AutoAwesomeMosaicOutlined'; +export { default as AutoAwesomeMosaicRounded } from './AutoAwesomeMosaicRounded'; +export { default as AutoAwesomeMosaicSharp } from './AutoAwesomeMosaicSharp'; +export { default as AutoAwesomeMosaicTwoTone } from './AutoAwesomeMosaicTwoTone'; +export { default as AutoAwesomeMotion } from './AutoAwesomeMotion'; +export { default as AutoAwesomeMotionOutlined } from './AutoAwesomeMotionOutlined'; +export { default as AutoAwesomeMotionRounded } from './AutoAwesomeMotionRounded'; +export { default as AutoAwesomeMotionSharp } from './AutoAwesomeMotionSharp'; +export { default as AutoAwesomeMotionTwoTone } from './AutoAwesomeMotionTwoTone'; +export { default as AutoAwesomeOutlined } from './AutoAwesomeOutlined'; +export { default as AutoAwesomeRounded } from './AutoAwesomeRounded'; +export { default as AutoAwesomeSharp } from './AutoAwesomeSharp'; +export { default as AutoAwesomeTwoTone } from './AutoAwesomeTwoTone'; +export { default as AutoDelete } from './AutoDelete'; +export { default as AutoDeleteOutlined } from './AutoDeleteOutlined'; +export { default as AutoDeleteRounded } from './AutoDeleteRounded'; +export { default as AutoDeleteSharp } from './AutoDeleteSharp'; +export { default as AutoDeleteTwoTone } from './AutoDeleteTwoTone'; +export { default as AutoFixHigh } from './AutoFixHigh'; +export { default as AutoFixHighOutlined } from './AutoFixHighOutlined'; +export { default as AutoFixHighRounded } from './AutoFixHighRounded'; +export { default as AutoFixHighSharp } from './AutoFixHighSharp'; +export { default as AutoFixHighTwoTone } from './AutoFixHighTwoTone'; +export { default as AutoFixNormal } from './AutoFixNormal'; +export { default as AutoFixNormalOutlined } from './AutoFixNormalOutlined'; +export { default as AutoFixNormalRounded } from './AutoFixNormalRounded'; +export { default as AutoFixNormalSharp } from './AutoFixNormalSharp'; +export { default as AutoFixNormalTwoTone } from './AutoFixNormalTwoTone'; +export { default as AutoFixOff } from './AutoFixOff'; +export { default as AutoFixOffOutlined } from './AutoFixOffOutlined'; +export { default as AutoFixOffRounded } from './AutoFixOffRounded'; +export { default as AutoFixOffSharp } from './AutoFixOffSharp'; +export { default as AutoFixOffTwoTone } from './AutoFixOffTwoTone'; +export { default as AutoGraph } from './AutoGraph'; +export { default as AutoGraphOutlined } from './AutoGraphOutlined'; +export { default as AutoGraphRounded } from './AutoGraphRounded'; +export { default as AutoGraphSharp } from './AutoGraphSharp'; +export { default as AutoGraphTwoTone } from './AutoGraphTwoTone'; +export { default as AutoStories } from './AutoStories'; +export { default as AutoStoriesOutlined } from './AutoStoriesOutlined'; +export { default as AutoStoriesRounded } from './AutoStoriesRounded'; +export { default as AutoStoriesSharp } from './AutoStoriesSharp'; +export { default as AutoStoriesTwoTone } from './AutoStoriesTwoTone'; +export { default as AutofpsSelect } from './AutofpsSelect'; +export { default as AutofpsSelectOutlined } from './AutofpsSelectOutlined'; +export { default as AutofpsSelectRounded } from './AutofpsSelectRounded'; +export { default as AutofpsSelectSharp } from './AutofpsSelectSharp'; +export { default as AutofpsSelectTwoTone } from './AutofpsSelectTwoTone'; +export { default as Autorenew } from './Autorenew'; +export { default as AutorenewOutlined } from './AutorenewOutlined'; +export { default as AutorenewRounded } from './AutorenewRounded'; +export { default as AutorenewSharp } from './AutorenewSharp'; +export { default as AutorenewTwoTone } from './AutorenewTwoTone'; +export { default as AvTimer } from './AvTimer'; +export { default as AvTimerOutlined } from './AvTimerOutlined'; +export { default as AvTimerRounded } from './AvTimerRounded'; +export { default as AvTimerSharp } from './AvTimerSharp'; +export { default as AvTimerTwoTone } from './AvTimerTwoTone'; +export { default as BabyChangingStation } from './BabyChangingStation'; +export { default as BabyChangingStationOutlined } from './BabyChangingStationOutlined'; +export { default as BabyChangingStationRounded } from './BabyChangingStationRounded'; +export { default as BabyChangingStationSharp } from './BabyChangingStationSharp'; +export { default as BabyChangingStationTwoTone } from './BabyChangingStationTwoTone'; +export { default as Backpack } from './Backpack'; +export { default as BackpackOutlined } from './BackpackOutlined'; +export { default as BackpackRounded } from './BackpackRounded'; +export { default as BackpackSharp } from './BackpackSharp'; +export { default as BackpackTwoTone } from './BackpackTwoTone'; +export { default as Backspace } from './Backspace'; +export { default as BackspaceOutlined } from './BackspaceOutlined'; +export { default as BackspaceRounded } from './BackspaceRounded'; +export { default as BackspaceSharp } from './BackspaceSharp'; +export { default as BackspaceTwoTone } from './BackspaceTwoTone'; +export { default as Backup } from './Backup'; +export { default as BackupOutlined } from './BackupOutlined'; +export { default as BackupRounded } from './BackupRounded'; +export { default as BackupSharp } from './BackupSharp'; +export { default as BackupTable } from './BackupTable'; +export { default as BackupTableOutlined } from './BackupTableOutlined'; +export { default as BackupTableRounded } from './BackupTableRounded'; +export { default as BackupTableSharp } from './BackupTableSharp'; +export { default as BackupTableTwoTone } from './BackupTableTwoTone'; +export { default as BackupTwoTone } from './BackupTwoTone'; +export { default as Badge } from './Badge'; +export { default as BadgeOutlined } from './BadgeOutlined'; +export { default as BadgeRounded } from './BadgeRounded'; +export { default as BadgeSharp } from './BadgeSharp'; +export { default as BadgeTwoTone } from './BadgeTwoTone'; +export { default as BakeryDining } from './BakeryDining'; +export { default as BakeryDiningOutlined } from './BakeryDiningOutlined'; +export { default as BakeryDiningRounded } from './BakeryDiningRounded'; +export { default as BakeryDiningSharp } from './BakeryDiningSharp'; +export { default as BakeryDiningTwoTone } from './BakeryDiningTwoTone'; +export { default as Balcony } from './Balcony'; +export { default as BalconyOutlined } from './BalconyOutlined'; +export { default as BalconyRounded } from './BalconyRounded'; +export { default as BalconySharp } from './BalconySharp'; +export { default as BalconyTwoTone } from './BalconyTwoTone'; +export { default as Ballot } from './Ballot'; +export { default as BallotOutlined } from './BallotOutlined'; +export { default as BallotRounded } from './BallotRounded'; +export { default as BallotSharp } from './BallotSharp'; +export { default as BallotTwoTone } from './BallotTwoTone'; +export { default as BarChart } from './BarChart'; +export { default as BarChartOutlined } from './BarChartOutlined'; +export { default as BarChartRounded } from './BarChartRounded'; +export { default as BarChartSharp } from './BarChartSharp'; +export { default as BarChartTwoTone } from './BarChartTwoTone'; +export { default as BatchPrediction } from './BatchPrediction'; +export { default as BatchPredictionOutlined } from './BatchPredictionOutlined'; +export { default as BatchPredictionRounded } from './BatchPredictionRounded'; +export { default as BatchPredictionSharp } from './BatchPredictionSharp'; +export { default as BatchPredictionTwoTone } from './BatchPredictionTwoTone'; +export { default as Bathroom } from './Bathroom'; +export { default as BathroomOutlined } from './BathroomOutlined'; +export { default as BathroomRounded } from './BathroomRounded'; +export { default as BathroomSharp } from './BathroomSharp'; +export { default as BathroomTwoTone } from './BathroomTwoTone'; +export { default as Bathtub } from './Bathtub'; +export { default as BathtubOutlined } from './BathtubOutlined'; +export { default as BathtubRounded } from './BathtubRounded'; +export { default as BathtubSharp } from './BathtubSharp'; +export { default as BathtubTwoTone } from './BathtubTwoTone'; +export { default as Battery20 } from './Battery20'; +export { default as Battery20Outlined } from './Battery20Outlined'; +export { default as Battery20Rounded } from './Battery20Rounded'; +export { default as Battery20Sharp } from './Battery20Sharp'; +export { default as Battery20TwoTone } from './Battery20TwoTone'; +export { default as Battery30 } from './Battery30'; +export { default as Battery30Outlined } from './Battery30Outlined'; +export { default as Battery30Rounded } from './Battery30Rounded'; +export { default as Battery30Sharp } from './Battery30Sharp'; +export { default as Battery30TwoTone } from './Battery30TwoTone'; +export { default as Battery50 } from './Battery50'; +export { default as Battery50Outlined } from './Battery50Outlined'; +export { default as Battery50Rounded } from './Battery50Rounded'; +export { default as Battery50Sharp } from './Battery50Sharp'; +export { default as Battery50TwoTone } from './Battery50TwoTone'; +export { default as Battery60 } from './Battery60'; +export { default as Battery60Outlined } from './Battery60Outlined'; +export { default as Battery60Rounded } from './Battery60Rounded'; +export { default as Battery60Sharp } from './Battery60Sharp'; +export { default as Battery60TwoTone } from './Battery60TwoTone'; +export { default as Battery80 } from './Battery80'; +export { default as Battery80Outlined } from './Battery80Outlined'; +export { default as Battery80Rounded } from './Battery80Rounded'; +export { default as Battery80Sharp } from './Battery80Sharp'; +export { default as Battery80TwoTone } from './Battery80TwoTone'; +export { default as Battery90 } from './Battery90'; +export { default as Battery90Outlined } from './Battery90Outlined'; +export { default as Battery90Rounded } from './Battery90Rounded'; +export { default as Battery90Sharp } from './Battery90Sharp'; +export { default as Battery90TwoTone } from './Battery90TwoTone'; +export { default as BatteryAlert } from './BatteryAlert'; +export { default as BatteryAlertOutlined } from './BatteryAlertOutlined'; +export { default as BatteryAlertRounded } from './BatteryAlertRounded'; +export { default as BatteryAlertSharp } from './BatteryAlertSharp'; +export { default as BatteryAlertTwoTone } from './BatteryAlertTwoTone'; +export { default as BatteryCharging20 } from './BatteryCharging20'; +export { default as BatteryCharging20Outlined } from './BatteryCharging20Outlined'; +export { default as BatteryCharging20Rounded } from './BatteryCharging20Rounded'; +export { default as BatteryCharging20Sharp } from './BatteryCharging20Sharp'; +export { default as BatteryCharging20TwoTone } from './BatteryCharging20TwoTone'; +export { default as BatteryCharging30 } from './BatteryCharging30'; +export { default as BatteryCharging30Outlined } from './BatteryCharging30Outlined'; +export { default as BatteryCharging30Rounded } from './BatteryCharging30Rounded'; +export { default as BatteryCharging30Sharp } from './BatteryCharging30Sharp'; +export { default as BatteryCharging30TwoTone } from './BatteryCharging30TwoTone'; +export { default as BatteryCharging50 } from './BatteryCharging50'; +export { default as BatteryCharging50Outlined } from './BatteryCharging50Outlined'; +export { default as BatteryCharging50Rounded } from './BatteryCharging50Rounded'; +export { default as BatteryCharging50Sharp } from './BatteryCharging50Sharp'; +export { default as BatteryCharging50TwoTone } from './BatteryCharging50TwoTone'; +export { default as BatteryCharging60 } from './BatteryCharging60'; +export { default as BatteryCharging60Outlined } from './BatteryCharging60Outlined'; +export { default as BatteryCharging60Rounded } from './BatteryCharging60Rounded'; +export { default as BatteryCharging60Sharp } from './BatteryCharging60Sharp'; +export { default as BatteryCharging60TwoTone } from './BatteryCharging60TwoTone'; +export { default as BatteryCharging80 } from './BatteryCharging80'; +export { default as BatteryCharging80Outlined } from './BatteryCharging80Outlined'; +export { default as BatteryCharging80Rounded } from './BatteryCharging80Rounded'; +export { default as BatteryCharging80Sharp } from './BatteryCharging80Sharp'; +export { default as BatteryCharging80TwoTone } from './BatteryCharging80TwoTone'; +export { default as BatteryCharging90 } from './BatteryCharging90'; +export { default as BatteryCharging90Outlined } from './BatteryCharging90Outlined'; +export { default as BatteryCharging90Rounded } from './BatteryCharging90Rounded'; +export { default as BatteryCharging90Sharp } from './BatteryCharging90Sharp'; +export { default as BatteryCharging90TwoTone } from './BatteryCharging90TwoTone'; +export { default as BatteryChargingFull } from './BatteryChargingFull'; +export { default as BatteryChargingFullOutlined } from './BatteryChargingFullOutlined'; +export { default as BatteryChargingFullRounded } from './BatteryChargingFullRounded'; +export { default as BatteryChargingFullSharp } from './BatteryChargingFullSharp'; +export { default as BatteryChargingFullTwoTone } from './BatteryChargingFullTwoTone'; +export { default as BatteryFull } from './BatteryFull'; +export { default as BatteryFullOutlined } from './BatteryFullOutlined'; +export { default as BatteryFullRounded } from './BatteryFullRounded'; +export { default as BatteryFullSharp } from './BatteryFullSharp'; +export { default as BatteryFullTwoTone } from './BatteryFullTwoTone'; +export { default as BatterySaver } from './BatterySaver'; +export { default as BatterySaverOutlined } from './BatterySaverOutlined'; +export { default as BatterySaverRounded } from './BatterySaverRounded'; +export { default as BatterySaverSharp } from './BatterySaverSharp'; +export { default as BatterySaverTwoTone } from './BatterySaverTwoTone'; +export { default as BatteryStd } from './BatteryStd'; +export { default as BatteryStdOutlined } from './BatteryStdOutlined'; +export { default as BatteryStdRounded } from './BatteryStdRounded'; +export { default as BatteryStdSharp } from './BatteryStdSharp'; +export { default as BatteryStdTwoTone } from './BatteryStdTwoTone'; +export { default as BatteryUnknown } from './BatteryUnknown'; +export { default as BatteryUnknownOutlined } from './BatteryUnknownOutlined'; +export { default as BatteryUnknownRounded } from './BatteryUnknownRounded'; +export { default as BatteryUnknownSharp } from './BatteryUnknownSharp'; +export { default as BatteryUnknownTwoTone } from './BatteryUnknownTwoTone'; +export { default as BeachAccess } from './BeachAccess'; +export { default as BeachAccessOutlined } from './BeachAccessOutlined'; +export { default as BeachAccessRounded } from './BeachAccessRounded'; +export { default as BeachAccessSharp } from './BeachAccessSharp'; +export { default as BeachAccessTwoTone } from './BeachAccessTwoTone'; +export { default as Bed } from './Bed'; +export { default as BedOutlined } from './BedOutlined'; +export { default as BedRounded } from './BedRounded'; +export { default as BedSharp } from './BedSharp'; +export { default as BedTwoTone } from './BedTwoTone'; +export { default as BedroomBaby } from './BedroomBaby'; +export { default as BedroomBabyOutlined } from './BedroomBabyOutlined'; +export { default as BedroomBabyRounded } from './BedroomBabyRounded'; +export { default as BedroomBabySharp } from './BedroomBabySharp'; +export { default as BedroomBabyTwoTone } from './BedroomBabyTwoTone'; +export { default as BedroomChild } from './BedroomChild'; +export { default as BedroomChildOutlined } from './BedroomChildOutlined'; +export { default as BedroomChildRounded } from './BedroomChildRounded'; +export { default as BedroomChildSharp } from './BedroomChildSharp'; +export { default as BedroomChildTwoTone } from './BedroomChildTwoTone'; +export { default as BedroomParent } from './BedroomParent'; +export { default as BedroomParentOutlined } from './BedroomParentOutlined'; +export { default as BedroomParentRounded } from './BedroomParentRounded'; +export { default as BedroomParentSharp } from './BedroomParentSharp'; +export { default as BedroomParentTwoTone } from './BedroomParentTwoTone'; +export { default as Bedtime } from './Bedtime'; +export { default as BedtimeOutlined } from './BedtimeOutlined'; +export { default as BedtimeRounded } from './BedtimeRounded'; +export { default as BedtimeSharp } from './BedtimeSharp'; +export { default as BedtimeTwoTone } from './BedtimeTwoTone'; +export { default as Beenhere } from './Beenhere'; +export { default as BeenhereOutlined } from './BeenhereOutlined'; +export { default as BeenhereRounded } from './BeenhereRounded'; +export { default as BeenhereSharp } from './BeenhereSharp'; +export { default as BeenhereTwoTone } from './BeenhereTwoTone'; +export { default as Bento } from './Bento'; +export { default as BentoOutlined } from './BentoOutlined'; +export { default as BentoRounded } from './BentoRounded'; +export { default as BentoSharp } from './BentoSharp'; +export { default as BentoTwoTone } from './BentoTwoTone'; +export { default as BikeScooter } from './BikeScooter'; +export { default as BikeScooterOutlined } from './BikeScooterOutlined'; +export { default as BikeScooterRounded } from './BikeScooterRounded'; +export { default as BikeScooterSharp } from './BikeScooterSharp'; +export { default as BikeScooterTwoTone } from './BikeScooterTwoTone'; +export { default as Biotech } from './Biotech'; +export { default as BiotechOutlined } from './BiotechOutlined'; +export { default as BiotechRounded } from './BiotechRounded'; +export { default as BiotechSharp } from './BiotechSharp'; +export { default as BiotechTwoTone } from './BiotechTwoTone'; +export { default as Blender } from './Blender'; +export { default as BlenderOutlined } from './BlenderOutlined'; +export { default as BlenderRounded } from './BlenderRounded'; +export { default as BlenderSharp } from './BlenderSharp'; +export { default as BlenderTwoTone } from './BlenderTwoTone'; +export { default as Block } from './Block'; +export { default as BlockOutlined } from './BlockOutlined'; +export { default as BlockRounded } from './BlockRounded'; +export { default as BlockSharp } from './BlockSharp'; +export { default as BlockTwoTone } from './BlockTwoTone'; +export { default as Bloodtype } from './Bloodtype'; +export { default as BloodtypeOutlined } from './BloodtypeOutlined'; +export { default as BloodtypeRounded } from './BloodtypeRounded'; +export { default as BloodtypeSharp } from './BloodtypeSharp'; +export { default as BloodtypeTwoTone } from './BloodtypeTwoTone'; +export { default as Bluetooth } from './Bluetooth'; +export { default as BluetoothAudio } from './BluetoothAudio'; +export { default as BluetoothAudioOutlined } from './BluetoothAudioOutlined'; +export { default as BluetoothAudioRounded } from './BluetoothAudioRounded'; +export { default as BluetoothAudioSharp } from './BluetoothAudioSharp'; +export { default as BluetoothAudioTwoTone } from './BluetoothAudioTwoTone'; +export { default as BluetoothConnected } from './BluetoothConnected'; +export { default as BluetoothConnectedOutlined } from './BluetoothConnectedOutlined'; +export { default as BluetoothConnectedRounded } from './BluetoothConnectedRounded'; +export { default as BluetoothConnectedSharp } from './BluetoothConnectedSharp'; +export { default as BluetoothConnectedTwoTone } from './BluetoothConnectedTwoTone'; +export { default as BluetoothDisabled } from './BluetoothDisabled'; +export { default as BluetoothDisabledOutlined } from './BluetoothDisabledOutlined'; +export { default as BluetoothDisabledRounded } from './BluetoothDisabledRounded'; +export { default as BluetoothDisabledSharp } from './BluetoothDisabledSharp'; +export { default as BluetoothDisabledTwoTone } from './BluetoothDisabledTwoTone'; +export { default as BluetoothDrive } from './BluetoothDrive'; +export { default as BluetoothDriveOutlined } from './BluetoothDriveOutlined'; +export { default as BluetoothDriveRounded } from './BluetoothDriveRounded'; +export { default as BluetoothDriveSharp } from './BluetoothDriveSharp'; +export { default as BluetoothDriveTwoTone } from './BluetoothDriveTwoTone'; +export { default as BluetoothOutlined } from './BluetoothOutlined'; +export { default as BluetoothRounded } from './BluetoothRounded'; +export { default as BluetoothSearching } from './BluetoothSearching'; +export { default as BluetoothSearchingOutlined } from './BluetoothSearchingOutlined'; +export { default as BluetoothSearchingRounded } from './BluetoothSearchingRounded'; +export { default as BluetoothSearchingSharp } from './BluetoothSearchingSharp'; +export { default as BluetoothSearchingTwoTone } from './BluetoothSearchingTwoTone'; +export { default as BluetoothSharp } from './BluetoothSharp'; +export { default as BluetoothTwoTone } from './BluetoothTwoTone'; +export { default as BlurCircular } from './BlurCircular'; +export { default as BlurCircularOutlined } from './BlurCircularOutlined'; +export { default as BlurCircularRounded } from './BlurCircularRounded'; +export { default as BlurCircularSharp } from './BlurCircularSharp'; +export { default as BlurCircularTwoTone } from './BlurCircularTwoTone'; +export { default as BlurLinear } from './BlurLinear'; +export { default as BlurLinearOutlined } from './BlurLinearOutlined'; +export { default as BlurLinearRounded } from './BlurLinearRounded'; +export { default as BlurLinearSharp } from './BlurLinearSharp'; +export { default as BlurLinearTwoTone } from './BlurLinearTwoTone'; +export { default as BlurOff } from './BlurOff'; +export { default as BlurOffOutlined } from './BlurOffOutlined'; +export { default as BlurOffRounded } from './BlurOffRounded'; +export { default as BlurOffSharp } from './BlurOffSharp'; +export { default as BlurOffTwoTone } from './BlurOffTwoTone'; +export { default as BlurOn } from './BlurOn'; +export { default as BlurOnOutlined } from './BlurOnOutlined'; +export { default as BlurOnRounded } from './BlurOnRounded'; +export { default as BlurOnSharp } from './BlurOnSharp'; +export { default as BlurOnTwoTone } from './BlurOnTwoTone'; +export { default as Bolt } from './Bolt'; +export { default as BoltOutlined } from './BoltOutlined'; +export { default as BoltRounded } from './BoltRounded'; +export { default as BoltSharp } from './BoltSharp'; +export { default as BoltTwoTone } from './BoltTwoTone'; +export { default as Book } from './Book'; +export { default as BookOnline } from './BookOnline'; +export { default as BookOnlineOutlined } from './BookOnlineOutlined'; +export { default as BookOnlineRounded } from './BookOnlineRounded'; +export { default as BookOnlineSharp } from './BookOnlineSharp'; +export { default as BookOnlineTwoTone } from './BookOnlineTwoTone'; +export { default as BookOutlined } from './BookOutlined'; +export { default as BookRounded } from './BookRounded'; +export { default as BookSharp } from './BookSharp'; +export { default as BookTwoTone } from './BookTwoTone'; +export { default as Bookmark } from './Bookmark'; +export { default as BookmarkAdd } from './BookmarkAdd'; +export { default as BookmarkAddOutlined } from './BookmarkAddOutlined'; +export { default as BookmarkAddRounded } from './BookmarkAddRounded'; +export { default as BookmarkAddSharp } from './BookmarkAddSharp'; +export { default as BookmarkAddTwoTone } from './BookmarkAddTwoTone'; +export { default as BookmarkAdded } from './BookmarkAdded'; +export { default as BookmarkAddedOutlined } from './BookmarkAddedOutlined'; +export { default as BookmarkAddedRounded } from './BookmarkAddedRounded'; +export { default as BookmarkAddedSharp } from './BookmarkAddedSharp'; +export { default as BookmarkAddedTwoTone } from './BookmarkAddedTwoTone'; +export { default as BookmarkBorder } from './BookmarkBorder'; +export { default as BookmarkBorderOutlined } from './BookmarkBorderOutlined'; +export { default as BookmarkBorderRounded } from './BookmarkBorderRounded'; +export { default as BookmarkBorderSharp } from './BookmarkBorderSharp'; +export { default as BookmarkBorderTwoTone } from './BookmarkBorderTwoTone'; +export { default as BookmarkOutlined } from './BookmarkOutlined'; +export { default as BookmarkRemove } from './BookmarkRemove'; +export { default as BookmarkRemoveOutlined } from './BookmarkRemoveOutlined'; +export { default as BookmarkRemoveRounded } from './BookmarkRemoveRounded'; +export { default as BookmarkRemoveSharp } from './BookmarkRemoveSharp'; +export { default as BookmarkRemoveTwoTone } from './BookmarkRemoveTwoTone'; +export { default as BookmarkRounded } from './BookmarkRounded'; +export { default as BookmarkSharp } from './BookmarkSharp'; +export { default as BookmarkTwoTone } from './BookmarkTwoTone'; +export { default as Bookmarks } from './Bookmarks'; +export { default as BookmarksOutlined } from './BookmarksOutlined'; +export { default as BookmarksRounded } from './BookmarksRounded'; +export { default as BookmarksSharp } from './BookmarksSharp'; +export { default as BookmarksTwoTone } from './BookmarksTwoTone'; +export { default as BorderAll } from './BorderAll'; +export { default as BorderAllOutlined } from './BorderAllOutlined'; +export { default as BorderAllRounded } from './BorderAllRounded'; +export { default as BorderAllSharp } from './BorderAllSharp'; +export { default as BorderAllTwoTone } from './BorderAllTwoTone'; +export { default as BorderBottom } from './BorderBottom'; +export { default as BorderBottomOutlined } from './BorderBottomOutlined'; +export { default as BorderBottomRounded } from './BorderBottomRounded'; +export { default as BorderBottomSharp } from './BorderBottomSharp'; +export { default as BorderBottomTwoTone } from './BorderBottomTwoTone'; +export { default as BorderClear } from './BorderClear'; +export { default as BorderClearOutlined } from './BorderClearOutlined'; +export { default as BorderClearRounded } from './BorderClearRounded'; +export { default as BorderClearSharp } from './BorderClearSharp'; +export { default as BorderClearTwoTone } from './BorderClearTwoTone'; +export { default as BorderColor } from './BorderColor'; +export { default as BorderColorOutlined } from './BorderColorOutlined'; +export { default as BorderColorRounded } from './BorderColorRounded'; +export { default as BorderColorSharp } from './BorderColorSharp'; +export { default as BorderColorTwoTone } from './BorderColorTwoTone'; +export { default as BorderHorizontal } from './BorderHorizontal'; +export { default as BorderHorizontalOutlined } from './BorderHorizontalOutlined'; +export { default as BorderHorizontalRounded } from './BorderHorizontalRounded'; +export { default as BorderHorizontalSharp } from './BorderHorizontalSharp'; +export { default as BorderHorizontalTwoTone } from './BorderHorizontalTwoTone'; +export { default as BorderInner } from './BorderInner'; +export { default as BorderInnerOutlined } from './BorderInnerOutlined'; +export { default as BorderInnerRounded } from './BorderInnerRounded'; +export { default as BorderInnerSharp } from './BorderInnerSharp'; +export { default as BorderInnerTwoTone } from './BorderInnerTwoTone'; +export { default as BorderLeft } from './BorderLeft'; +export { default as BorderLeftOutlined } from './BorderLeftOutlined'; +export { default as BorderLeftRounded } from './BorderLeftRounded'; +export { default as BorderLeftSharp } from './BorderLeftSharp'; +export { default as BorderLeftTwoTone } from './BorderLeftTwoTone'; +export { default as BorderOuter } from './BorderOuter'; +export { default as BorderOuterOutlined } from './BorderOuterOutlined'; +export { default as BorderOuterRounded } from './BorderOuterRounded'; +export { default as BorderOuterSharp } from './BorderOuterSharp'; +export { default as BorderOuterTwoTone } from './BorderOuterTwoTone'; +export { default as BorderRight } from './BorderRight'; +export { default as BorderRightOutlined } from './BorderRightOutlined'; +export { default as BorderRightRounded } from './BorderRightRounded'; +export { default as BorderRightSharp } from './BorderRightSharp'; +export { default as BorderRightTwoTone } from './BorderRightTwoTone'; +export { default as BorderStyle } from './BorderStyle'; +export { default as BorderStyleOutlined } from './BorderStyleOutlined'; +export { default as BorderStyleRounded } from './BorderStyleRounded'; +export { default as BorderStyleSharp } from './BorderStyleSharp'; +export { default as BorderStyleTwoTone } from './BorderStyleTwoTone'; +export { default as BorderTop } from './BorderTop'; +export { default as BorderTopOutlined } from './BorderTopOutlined'; +export { default as BorderTopRounded } from './BorderTopRounded'; +export { default as BorderTopSharp } from './BorderTopSharp'; +export { default as BorderTopTwoTone } from './BorderTopTwoTone'; +export { default as BorderVertical } from './BorderVertical'; +export { default as BorderVerticalOutlined } from './BorderVerticalOutlined'; +export { default as BorderVerticalRounded } from './BorderVerticalRounded'; +export { default as BorderVerticalSharp } from './BorderVerticalSharp'; +export { default as BorderVerticalTwoTone } from './BorderVerticalTwoTone'; +export { default as BrandingWatermark } from './BrandingWatermark'; +export { default as BrandingWatermarkOutlined } from './BrandingWatermarkOutlined'; +export { default as BrandingWatermarkRounded } from './BrandingWatermarkRounded'; +export { default as BrandingWatermarkSharp } from './BrandingWatermarkSharp'; +export { default as BrandingWatermarkTwoTone } from './BrandingWatermarkTwoTone'; +export { default as BreakfastDining } from './BreakfastDining'; +export { default as BreakfastDiningOutlined } from './BreakfastDiningOutlined'; +export { default as BreakfastDiningRounded } from './BreakfastDiningRounded'; +export { default as BreakfastDiningSharp } from './BreakfastDiningSharp'; +export { default as BreakfastDiningTwoTone } from './BreakfastDiningTwoTone'; +export { default as Brightness1 } from './Brightness1'; +export { default as Brightness1Outlined } from './Brightness1Outlined'; +export { default as Brightness1Rounded } from './Brightness1Rounded'; +export { default as Brightness1Sharp } from './Brightness1Sharp'; +export { default as Brightness1TwoTone } from './Brightness1TwoTone'; +export { default as Brightness2 } from './Brightness2'; +export { default as Brightness2Outlined } from './Brightness2Outlined'; +export { default as Brightness2Rounded } from './Brightness2Rounded'; +export { default as Brightness2Sharp } from './Brightness2Sharp'; +export { default as Brightness2TwoTone } from './Brightness2TwoTone'; +export { default as Brightness3 } from './Brightness3'; +export { default as Brightness3Outlined } from './Brightness3Outlined'; +export { default as Brightness3Rounded } from './Brightness3Rounded'; +export { default as Brightness3Sharp } from './Brightness3Sharp'; +export { default as Brightness3TwoTone } from './Brightness3TwoTone'; +export { default as Brightness4 } from './Brightness4'; +export { default as Brightness4Outlined } from './Brightness4Outlined'; +export { default as Brightness4Rounded } from './Brightness4Rounded'; +export { default as Brightness4Sharp } from './Brightness4Sharp'; +export { default as Brightness4TwoTone } from './Brightness4TwoTone'; +export { default as Brightness5 } from './Brightness5'; +export { default as Brightness5Outlined } from './Brightness5Outlined'; +export { default as Brightness5Rounded } from './Brightness5Rounded'; +export { default as Brightness5Sharp } from './Brightness5Sharp'; +export { default as Brightness5TwoTone } from './Brightness5TwoTone'; +export { default as Brightness6 } from './Brightness6'; +export { default as Brightness6Outlined } from './Brightness6Outlined'; +export { default as Brightness6Rounded } from './Brightness6Rounded'; +export { default as Brightness6Sharp } from './Brightness6Sharp'; +export { default as Brightness6TwoTone } from './Brightness6TwoTone'; +export { default as Brightness7 } from './Brightness7'; +export { default as Brightness7Outlined } from './Brightness7Outlined'; +export { default as Brightness7Rounded } from './Brightness7Rounded'; +export { default as Brightness7Sharp } from './Brightness7Sharp'; +export { default as Brightness7TwoTone } from './Brightness7TwoTone'; +export { default as BrightnessAuto } from './BrightnessAuto'; +export { default as BrightnessAutoOutlined } from './BrightnessAutoOutlined'; +export { default as BrightnessAutoRounded } from './BrightnessAutoRounded'; +export { default as BrightnessAutoSharp } from './BrightnessAutoSharp'; +export { default as BrightnessAutoTwoTone } from './BrightnessAutoTwoTone'; +export { default as BrightnessHigh } from './BrightnessHigh'; +export { default as BrightnessHighOutlined } from './BrightnessHighOutlined'; +export { default as BrightnessHighRounded } from './BrightnessHighRounded'; +export { default as BrightnessHighSharp } from './BrightnessHighSharp'; +export { default as BrightnessHighTwoTone } from './BrightnessHighTwoTone'; +export { default as BrightnessLow } from './BrightnessLow'; +export { default as BrightnessLowOutlined } from './BrightnessLowOutlined'; +export { default as BrightnessLowRounded } from './BrightnessLowRounded'; +export { default as BrightnessLowSharp } from './BrightnessLowSharp'; +export { default as BrightnessLowTwoTone } from './BrightnessLowTwoTone'; +export { default as BrightnessMedium } from './BrightnessMedium'; +export { default as BrightnessMediumOutlined } from './BrightnessMediumOutlined'; +export { default as BrightnessMediumRounded } from './BrightnessMediumRounded'; +export { default as BrightnessMediumSharp } from './BrightnessMediumSharp'; +export { default as BrightnessMediumTwoTone } from './BrightnessMediumTwoTone'; +export { default as BrokenImage } from './BrokenImage'; +export { default as BrokenImageOutlined } from './BrokenImageOutlined'; +export { default as BrokenImageRounded } from './BrokenImageRounded'; +export { default as BrokenImageSharp } from './BrokenImageSharp'; +export { default as BrokenImageTwoTone } from './BrokenImageTwoTone'; +export { default as BrowserNotSupported } from './BrowserNotSupported'; +export { default as BrowserNotSupportedOutlined } from './BrowserNotSupportedOutlined'; +export { default as BrowserNotSupportedRounded } from './BrowserNotSupportedRounded'; +export { default as BrowserNotSupportedSharp } from './BrowserNotSupportedSharp'; +export { default as BrowserNotSupportedTwoTone } from './BrowserNotSupportedTwoTone'; +export { default as BrunchDining } from './BrunchDining'; +export { default as BrunchDiningOutlined } from './BrunchDiningOutlined'; +export { default as BrunchDiningRounded } from './BrunchDiningRounded'; +export { default as BrunchDiningSharp } from './BrunchDiningSharp'; +export { default as BrunchDiningTwoTone } from './BrunchDiningTwoTone'; +export { default as Brush } from './Brush'; +export { default as BrushOutlined } from './BrushOutlined'; +export { default as BrushRounded } from './BrushRounded'; +export { default as BrushSharp } from './BrushSharp'; +export { default as BrushTwoTone } from './BrushTwoTone'; +export { default as BubbleChart } from './BubbleChart'; +export { default as BubbleChartOutlined } from './BubbleChartOutlined'; +export { default as BubbleChartRounded } from './BubbleChartRounded'; +export { default as BubbleChartSharp } from './BubbleChartSharp'; +export { default as BubbleChartTwoTone } from './BubbleChartTwoTone'; +export { default as BugReport } from './BugReport'; +export { default as BugReportOutlined } from './BugReportOutlined'; +export { default as BugReportRounded } from './BugReportRounded'; +export { default as BugReportSharp } from './BugReportSharp'; +export { default as BugReportTwoTone } from './BugReportTwoTone'; +export { default as Build } from './Build'; +export { default as BuildCircle } from './BuildCircle'; +export { default as BuildCircleOutlined } from './BuildCircleOutlined'; +export { default as BuildCircleRounded } from './BuildCircleRounded'; +export { default as BuildCircleSharp } from './BuildCircleSharp'; +export { default as BuildCircleTwoTone } from './BuildCircleTwoTone'; +export { default as BuildOutlined } from './BuildOutlined'; +export { default as BuildRounded } from './BuildRounded'; +export { default as BuildSharp } from './BuildSharp'; +export { default as BuildTwoTone } from './BuildTwoTone'; +export { default as Bungalow } from './Bungalow'; +export { default as BungalowOutlined } from './BungalowOutlined'; +export { default as BungalowRounded } from './BungalowRounded'; +export { default as BungalowSharp } from './BungalowSharp'; +export { default as BungalowTwoTone } from './BungalowTwoTone'; +export { default as BurstMode } from './BurstMode'; +export { default as BurstModeOutlined } from './BurstModeOutlined'; +export { default as BurstModeRounded } from './BurstModeRounded'; +export { default as BurstModeSharp } from './BurstModeSharp'; +export { default as BurstModeTwoTone } from './BurstModeTwoTone'; +export { default as BusAlert } from './BusAlert'; +export { default as BusAlertOutlined } from './BusAlertOutlined'; +export { default as BusAlertRounded } from './BusAlertRounded'; +export { default as BusAlertSharp } from './BusAlertSharp'; +export { default as BusAlertTwoTone } from './BusAlertTwoTone'; +export { default as Business } from './Business'; +export { default as BusinessCenter } from './BusinessCenter'; +export { default as BusinessCenterOutlined } from './BusinessCenterOutlined'; +export { default as BusinessCenterRounded } from './BusinessCenterRounded'; +export { default as BusinessCenterSharp } from './BusinessCenterSharp'; +export { default as BusinessCenterTwoTone } from './BusinessCenterTwoTone'; +export { default as BusinessOutlined } from './BusinessOutlined'; +export { default as BusinessRounded } from './BusinessRounded'; +export { default as BusinessSharp } from './BusinessSharp'; +export { default as BusinessTwoTone } from './BusinessTwoTone'; +export { default as Cabin } from './Cabin'; +export { default as CabinOutlined } from './CabinOutlined'; +export { default as CabinRounded } from './CabinRounded'; +export { default as CabinSharp } from './CabinSharp'; +export { default as CabinTwoTone } from './CabinTwoTone'; +export { default as Cable } from './Cable'; +export { default as CableOutlined } from './CableOutlined'; +export { default as CableRounded } from './CableRounded'; +export { default as CableSharp } from './CableSharp'; +export { default as CableTwoTone } from './CableTwoTone'; +export { default as Cached } from './Cached'; +export { default as CachedOutlined } from './CachedOutlined'; +export { default as CachedRounded } from './CachedRounded'; +export { default as CachedSharp } from './CachedSharp'; +export { default as CachedTwoTone } from './CachedTwoTone'; +export { default as Cake } from './Cake'; +export { default as CakeOutlined } from './CakeOutlined'; +export { default as CakeRounded } from './CakeRounded'; +export { default as CakeSharp } from './CakeSharp'; +export { default as CakeTwoTone } from './CakeTwoTone'; +export { default as Calculate } from './Calculate'; +export { default as CalculateOutlined } from './CalculateOutlined'; +export { default as CalculateRounded } from './CalculateRounded'; +export { default as CalculateSharp } from './CalculateSharp'; +export { default as CalculateTwoTone } from './CalculateTwoTone'; +export { default as CalendarToday } from './CalendarToday'; +export { default as CalendarTodayOutlined } from './CalendarTodayOutlined'; +export { default as CalendarTodayRounded } from './CalendarTodayRounded'; +export { default as CalendarTodaySharp } from './CalendarTodaySharp'; +export { default as CalendarTodayTwoTone } from './CalendarTodayTwoTone'; +export { default as CalendarViewDay } from './CalendarViewDay'; +export { default as CalendarViewDayOutlined } from './CalendarViewDayOutlined'; +export { default as CalendarViewDayRounded } from './CalendarViewDayRounded'; +export { default as CalendarViewDaySharp } from './CalendarViewDaySharp'; +export { default as CalendarViewDayTwoTone } from './CalendarViewDayTwoTone'; +export { default as CalendarViewMonth } from './CalendarViewMonth'; +export { default as CalendarViewMonthOutlined } from './CalendarViewMonthOutlined'; +export { default as CalendarViewMonthRounded } from './CalendarViewMonthRounded'; +export { default as CalendarViewMonthSharp } from './CalendarViewMonthSharp'; +export { default as CalendarViewMonthTwoTone } from './CalendarViewMonthTwoTone'; +export { default as CalendarViewWeek } from './CalendarViewWeek'; +export { default as CalendarViewWeekOutlined } from './CalendarViewWeekOutlined'; +export { default as CalendarViewWeekRounded } from './CalendarViewWeekRounded'; +export { default as CalendarViewWeekSharp } from './CalendarViewWeekSharp'; +export { default as CalendarViewWeekTwoTone } from './CalendarViewWeekTwoTone'; +export { default as Call } from './Call'; +export { default as CallEnd } from './CallEnd'; +export { default as CallEndOutlined } from './CallEndOutlined'; +export { default as CallEndRounded } from './CallEndRounded'; +export { default as CallEndSharp } from './CallEndSharp'; +export { default as CallEndTwoTone } from './CallEndTwoTone'; +export { default as CallMade } from './CallMade'; +export { default as CallMadeOutlined } from './CallMadeOutlined'; +export { default as CallMadeRounded } from './CallMadeRounded'; +export { default as CallMadeSharp } from './CallMadeSharp'; +export { default as CallMadeTwoTone } from './CallMadeTwoTone'; +export { default as CallMerge } from './CallMerge'; +export { default as CallMergeOutlined } from './CallMergeOutlined'; +export { default as CallMergeRounded } from './CallMergeRounded'; +export { default as CallMergeSharp } from './CallMergeSharp'; +export { default as CallMergeTwoTone } from './CallMergeTwoTone'; +export { default as CallMissed } from './CallMissed'; +export { default as CallMissedOutgoing } from './CallMissedOutgoing'; +export { default as CallMissedOutgoingOutlined } from './CallMissedOutgoingOutlined'; +export { default as CallMissedOutgoingRounded } from './CallMissedOutgoingRounded'; +export { default as CallMissedOutgoingSharp } from './CallMissedOutgoingSharp'; +export { default as CallMissedOutgoingTwoTone } from './CallMissedOutgoingTwoTone'; +export { default as CallMissedOutlined } from './CallMissedOutlined'; +export { default as CallMissedRounded } from './CallMissedRounded'; +export { default as CallMissedSharp } from './CallMissedSharp'; +export { default as CallMissedTwoTone } from './CallMissedTwoTone'; +export { default as CallOutlined } from './CallOutlined'; +export { default as CallReceived } from './CallReceived'; +export { default as CallReceivedOutlined } from './CallReceivedOutlined'; +export { default as CallReceivedRounded } from './CallReceivedRounded'; +export { default as CallReceivedSharp } from './CallReceivedSharp'; +export { default as CallReceivedTwoTone } from './CallReceivedTwoTone'; +export { default as CallRounded } from './CallRounded'; +export { default as CallSharp } from './CallSharp'; +export { default as CallSplit } from './CallSplit'; +export { default as CallSplitOutlined } from './CallSplitOutlined'; +export { default as CallSplitRounded } from './CallSplitRounded'; +export { default as CallSplitSharp } from './CallSplitSharp'; +export { default as CallSplitTwoTone } from './CallSplitTwoTone'; +export { default as CallToAction } from './CallToAction'; +export { default as CallToActionOutlined } from './CallToActionOutlined'; +export { default as CallToActionRounded } from './CallToActionRounded'; +export { default as CallToActionSharp } from './CallToActionSharp'; +export { default as CallToActionTwoTone } from './CallToActionTwoTone'; +export { default as CallTwoTone } from './CallTwoTone'; +export { default as Camera } from './Camera'; +export { default as CameraAlt } from './CameraAlt'; +export { default as CameraAltOutlined } from './CameraAltOutlined'; +export { default as CameraAltRounded } from './CameraAltRounded'; +export { default as CameraAltSharp } from './CameraAltSharp'; +export { default as CameraAltTwoTone } from './CameraAltTwoTone'; +export { default as CameraEnhance } from './CameraEnhance'; +export { default as CameraEnhanceOutlined } from './CameraEnhanceOutlined'; +export { default as CameraEnhanceRounded } from './CameraEnhanceRounded'; +export { default as CameraEnhanceSharp } from './CameraEnhanceSharp'; +export { default as CameraEnhanceTwoTone } from './CameraEnhanceTwoTone'; +export { default as CameraFront } from './CameraFront'; +export { default as CameraFrontOutlined } from './CameraFrontOutlined'; +export { default as CameraFrontRounded } from './CameraFrontRounded'; +export { default as CameraFrontSharp } from './CameraFrontSharp'; +export { default as CameraFrontTwoTone } from './CameraFrontTwoTone'; +export { default as CameraIndoor } from './CameraIndoor'; +export { default as CameraIndoorOutlined } from './CameraIndoorOutlined'; +export { default as CameraIndoorRounded } from './CameraIndoorRounded'; +export { default as CameraIndoorSharp } from './CameraIndoorSharp'; +export { default as CameraIndoorTwoTone } from './CameraIndoorTwoTone'; +export { default as CameraOutdoor } from './CameraOutdoor'; +export { default as CameraOutdoorOutlined } from './CameraOutdoorOutlined'; +export { default as CameraOutdoorRounded } from './CameraOutdoorRounded'; +export { default as CameraOutdoorSharp } from './CameraOutdoorSharp'; +export { default as CameraOutdoorTwoTone } from './CameraOutdoorTwoTone'; +export { default as CameraOutlined } from './CameraOutlined'; +export { default as CameraRear } from './CameraRear'; +export { default as CameraRearOutlined } from './CameraRearOutlined'; +export { default as CameraRearRounded } from './CameraRearRounded'; +export { default as CameraRearSharp } from './CameraRearSharp'; +export { default as CameraRearTwoTone } from './CameraRearTwoTone'; +export { default as CameraRoll } from './CameraRoll'; +export { default as CameraRollOutlined } from './CameraRollOutlined'; +export { default as CameraRollRounded } from './CameraRollRounded'; +export { default as CameraRollSharp } from './CameraRollSharp'; +export { default as CameraRollTwoTone } from './CameraRollTwoTone'; +export { default as CameraRounded } from './CameraRounded'; +export { default as CameraSharp } from './CameraSharp'; +export { default as CameraTwoTone } from './CameraTwoTone'; +export { default as Cameraswitch } from './Cameraswitch'; +export { default as CameraswitchOutlined } from './CameraswitchOutlined'; +export { default as CameraswitchRounded } from './CameraswitchRounded'; +export { default as CameraswitchSharp } from './CameraswitchSharp'; +export { default as CameraswitchTwoTone } from './CameraswitchTwoTone'; +export { default as Campaign } from './Campaign'; +export { default as CampaignOutlined } from './CampaignOutlined'; +export { default as CampaignRounded } from './CampaignRounded'; +export { default as CampaignSharp } from './CampaignSharp'; +export { default as CampaignTwoTone } from './CampaignTwoTone'; +export { default as Cancel } from './Cancel'; +export { default as CancelOutlined } from './CancelOutlined'; +export { default as CancelPresentation } from './CancelPresentation'; +export { default as CancelPresentationOutlined } from './CancelPresentationOutlined'; +export { default as CancelPresentationRounded } from './CancelPresentationRounded'; +export { default as CancelPresentationSharp } from './CancelPresentationSharp'; +export { default as CancelPresentationTwoTone } from './CancelPresentationTwoTone'; +export { default as CancelRounded } from './CancelRounded'; +export { default as CancelScheduleSend } from './CancelScheduleSend'; +export { default as CancelScheduleSendOutlined } from './CancelScheduleSendOutlined'; +export { default as CancelScheduleSendRounded } from './CancelScheduleSendRounded'; +export { default as CancelScheduleSendSharp } from './CancelScheduleSendSharp'; +export { default as CancelScheduleSendTwoTone } from './CancelScheduleSendTwoTone'; +export { default as CancelSharp } from './CancelSharp'; +export { default as CancelTwoTone } from './CancelTwoTone'; +export { default as CarRental } from './CarRental'; +export { default as CarRentalOutlined } from './CarRentalOutlined'; +export { default as CarRentalRounded } from './CarRentalRounded'; +export { default as CarRentalSharp } from './CarRentalSharp'; +export { default as CarRentalTwoTone } from './CarRentalTwoTone'; +export { default as CarRepair } from './CarRepair'; +export { default as CarRepairOutlined } from './CarRepairOutlined'; +export { default as CarRepairRounded } from './CarRepairRounded'; +export { default as CarRepairSharp } from './CarRepairSharp'; +export { default as CarRepairTwoTone } from './CarRepairTwoTone'; +export { default as CardGiftcard } from './CardGiftcard'; +export { default as CardGiftcardOutlined } from './CardGiftcardOutlined'; +export { default as CardGiftcardRounded } from './CardGiftcardRounded'; +export { default as CardGiftcardSharp } from './CardGiftcardSharp'; +export { default as CardGiftcardTwoTone } from './CardGiftcardTwoTone'; +export { default as CardMembership } from './CardMembership'; +export { default as CardMembershipOutlined } from './CardMembershipOutlined'; +export { default as CardMembershipRounded } from './CardMembershipRounded'; +export { default as CardMembershipSharp } from './CardMembershipSharp'; +export { default as CardMembershipTwoTone } from './CardMembershipTwoTone'; +export { default as CardTravel } from './CardTravel'; +export { default as CardTravelOutlined } from './CardTravelOutlined'; +export { default as CardTravelRounded } from './CardTravelRounded'; +export { default as CardTravelSharp } from './CardTravelSharp'; +export { default as CardTravelTwoTone } from './CardTravelTwoTone'; +export { default as Carpenter } from './Carpenter'; +export { default as CarpenterOutlined } from './CarpenterOutlined'; +export { default as CarpenterRounded } from './CarpenterRounded'; +export { default as CarpenterSharp } from './CarpenterSharp'; +export { default as CarpenterTwoTone } from './CarpenterTwoTone'; +export { default as Cases } from './Cases'; +export { default as CasesOutlined } from './CasesOutlined'; +export { default as CasesRounded } from './CasesRounded'; +export { default as CasesSharp } from './CasesSharp'; +export { default as CasesTwoTone } from './CasesTwoTone'; +export { default as Casino } from './Casino'; +export { default as CasinoOutlined } from './CasinoOutlined'; +export { default as CasinoRounded } from './CasinoRounded'; +export { default as CasinoSharp } from './CasinoSharp'; +export { default as CasinoTwoTone } from './CasinoTwoTone'; +export { default as Cast } from './Cast'; +export { default as CastConnected } from './CastConnected'; +export { default as CastConnectedOutlined } from './CastConnectedOutlined'; +export { default as CastConnectedRounded } from './CastConnectedRounded'; +export { default as CastConnectedSharp } from './CastConnectedSharp'; +export { default as CastConnectedTwoTone } from './CastConnectedTwoTone'; +export { default as CastForEducation } from './CastForEducation'; +export { default as CastForEducationOutlined } from './CastForEducationOutlined'; +export { default as CastForEducationRounded } from './CastForEducationRounded'; +export { default as CastForEducationSharp } from './CastForEducationSharp'; +export { default as CastForEducationTwoTone } from './CastForEducationTwoTone'; +export { default as CastOutlined } from './CastOutlined'; +export { default as CastRounded } from './CastRounded'; +export { default as CastSharp } from './CastSharp'; +export { default as CastTwoTone } from './CastTwoTone'; +export { default as CatchingPokemon } from './CatchingPokemon'; +export { default as CatchingPokemonOutlined } from './CatchingPokemonOutlined'; +export { default as CatchingPokemonRounded } from './CatchingPokemonRounded'; +export { default as CatchingPokemonSharp } from './CatchingPokemonSharp'; +export { default as CatchingPokemonTwoTone } from './CatchingPokemonTwoTone'; +export { default as Category } from './Category'; +export { default as CategoryOutlined } from './CategoryOutlined'; +export { default as CategoryRounded } from './CategoryRounded'; +export { default as CategorySharp } from './CategorySharp'; +export { default as CategoryTwoTone } from './CategoryTwoTone'; +export { default as Celebration } from './Celebration'; +export { default as CelebrationOutlined } from './CelebrationOutlined'; +export { default as CelebrationRounded } from './CelebrationRounded'; +export { default as CelebrationSharp } from './CelebrationSharp'; +export { default as CelebrationTwoTone } from './CelebrationTwoTone'; +export { default as CellWifi } from './CellWifi'; +export { default as CellWifiOutlined } from './CellWifiOutlined'; +export { default as CellWifiRounded } from './CellWifiRounded'; +export { default as CellWifiSharp } from './CellWifiSharp'; +export { default as CellWifiTwoTone } from './CellWifiTwoTone'; +export { default as CenterFocusStrong } from './CenterFocusStrong'; +export { default as CenterFocusStrongOutlined } from './CenterFocusStrongOutlined'; +export { default as CenterFocusStrongRounded } from './CenterFocusStrongRounded'; +export { default as CenterFocusStrongSharp } from './CenterFocusStrongSharp'; +export { default as CenterFocusStrongTwoTone } from './CenterFocusStrongTwoTone'; +export { default as CenterFocusWeak } from './CenterFocusWeak'; +export { default as CenterFocusWeakOutlined } from './CenterFocusWeakOutlined'; +export { default as CenterFocusWeakRounded } from './CenterFocusWeakRounded'; +export { default as CenterFocusWeakSharp } from './CenterFocusWeakSharp'; +export { default as CenterFocusWeakTwoTone } from './CenterFocusWeakTwoTone'; +export { default as Chair } from './Chair'; +export { default as ChairAlt } from './ChairAlt'; +export { default as ChairAltOutlined } from './ChairAltOutlined'; +export { default as ChairAltRounded } from './ChairAltRounded'; +export { default as ChairAltSharp } from './ChairAltSharp'; +export { default as ChairAltTwoTone } from './ChairAltTwoTone'; +export { default as ChairOutlined } from './ChairOutlined'; +export { default as ChairRounded } from './ChairRounded'; +export { default as ChairSharp } from './ChairSharp'; +export { default as ChairTwoTone } from './ChairTwoTone'; +export { default as Chalet } from './Chalet'; +export { default as ChaletOutlined } from './ChaletOutlined'; +export { default as ChaletRounded } from './ChaletRounded'; +export { default as ChaletSharp } from './ChaletSharp'; +export { default as ChaletTwoTone } from './ChaletTwoTone'; +export { default as ChangeCircle } from './ChangeCircle'; +export { default as ChangeCircleOutlined } from './ChangeCircleOutlined'; +export { default as ChangeCircleRounded } from './ChangeCircleRounded'; +export { default as ChangeCircleSharp } from './ChangeCircleSharp'; +export { default as ChangeCircleTwoTone } from './ChangeCircleTwoTone'; +export { default as ChangeHistory } from './ChangeHistory'; +export { default as ChangeHistoryOutlined } from './ChangeHistoryOutlined'; +export { default as ChangeHistoryRounded } from './ChangeHistoryRounded'; +export { default as ChangeHistorySharp } from './ChangeHistorySharp'; +export { default as ChangeHistoryTwoTone } from './ChangeHistoryTwoTone'; +export { default as ChargingStation } from './ChargingStation'; +export { default as ChargingStationOutlined } from './ChargingStationOutlined'; +export { default as ChargingStationRounded } from './ChargingStationRounded'; +export { default as ChargingStationSharp } from './ChargingStationSharp'; +export { default as ChargingStationTwoTone } from './ChargingStationTwoTone'; +export { default as Chat } from './Chat'; +export { default as ChatBubble } from './ChatBubble'; +export { default as ChatBubbleOutline } from './ChatBubbleOutline'; +export { default as ChatBubbleOutlineOutlined } from './ChatBubbleOutlineOutlined'; +export { default as ChatBubbleOutlineRounded } from './ChatBubbleOutlineRounded'; +export { default as ChatBubbleOutlineSharp } from './ChatBubbleOutlineSharp'; +export { default as ChatBubbleOutlineTwoTone } from './ChatBubbleOutlineTwoTone'; +export { default as ChatBubbleOutlined } from './ChatBubbleOutlined'; +export { default as ChatBubbleRounded } from './ChatBubbleRounded'; +export { default as ChatBubbleSharp } from './ChatBubbleSharp'; +export { default as ChatBubbleTwoTone } from './ChatBubbleTwoTone'; +export { default as ChatOutlined } from './ChatOutlined'; +export { default as ChatRounded } from './ChatRounded'; +export { default as ChatSharp } from './ChatSharp'; +export { default as ChatTwoTone } from './ChatTwoTone'; +export { default as Check } from './Check'; +export { default as CheckBox } from './CheckBox'; +export { default as CheckBoxOutlineBlank } from './CheckBoxOutlineBlank'; +export { default as CheckBoxOutlineBlankOutlined } from './CheckBoxOutlineBlankOutlined'; +export { default as CheckBoxOutlineBlankRounded } from './CheckBoxOutlineBlankRounded'; +export { default as CheckBoxOutlineBlankSharp } from './CheckBoxOutlineBlankSharp'; +export { default as CheckBoxOutlineBlankTwoTone } from './CheckBoxOutlineBlankTwoTone'; +export { default as CheckBoxOutlined } from './CheckBoxOutlined'; +export { default as CheckBoxRounded } from './CheckBoxRounded'; +export { default as CheckBoxSharp } from './CheckBoxSharp'; +export { default as CheckBoxTwoTone } from './CheckBoxTwoTone'; +export { default as CheckCircle } from './CheckCircle'; +export { default as CheckCircleOutline } from './CheckCircleOutline'; +export { default as CheckCircleOutlineOutlined } from './CheckCircleOutlineOutlined'; +export { default as CheckCircleOutlineRounded } from './CheckCircleOutlineRounded'; +export { default as CheckCircleOutlineSharp } from './CheckCircleOutlineSharp'; +export { default as CheckCircleOutlineTwoTone } from './CheckCircleOutlineTwoTone'; +export { default as CheckCircleOutlined } from './CheckCircleOutlined'; +export { default as CheckCircleRounded } from './CheckCircleRounded'; +export { default as CheckCircleSharp } from './CheckCircleSharp'; +export { default as CheckCircleTwoTone } from './CheckCircleTwoTone'; +export { default as CheckOutlined } from './CheckOutlined'; +export { default as CheckRounded } from './CheckRounded'; +export { default as CheckSharp } from './CheckSharp'; +export { default as CheckTwoTone } from './CheckTwoTone'; +export { default as Checkroom } from './Checkroom'; +export { default as CheckroomOutlined } from './CheckroomOutlined'; +export { default as CheckroomRounded } from './CheckroomRounded'; +export { default as CheckroomSharp } from './CheckroomSharp'; +export { default as CheckroomTwoTone } from './CheckroomTwoTone'; +export { default as ChevronLeft } from './ChevronLeft'; +export { default as ChevronLeftOutlined } from './ChevronLeftOutlined'; +export { default as ChevronLeftRounded } from './ChevronLeftRounded'; +export { default as ChevronLeftSharp } from './ChevronLeftSharp'; +export { default as ChevronLeftTwoTone } from './ChevronLeftTwoTone'; +export { default as ChevronRight } from './ChevronRight'; +export { default as ChevronRightOutlined } from './ChevronRightOutlined'; +export { default as ChevronRightRounded } from './ChevronRightRounded'; +export { default as ChevronRightSharp } from './ChevronRightSharp'; +export { default as ChevronRightTwoTone } from './ChevronRightTwoTone'; +export { default as ChildCare } from './ChildCare'; +export { default as ChildCareOutlined } from './ChildCareOutlined'; +export { default as ChildCareRounded } from './ChildCareRounded'; +export { default as ChildCareSharp } from './ChildCareSharp'; +export { default as ChildCareTwoTone } from './ChildCareTwoTone'; +export { default as ChildFriendly } from './ChildFriendly'; +export { default as ChildFriendlyOutlined } from './ChildFriendlyOutlined'; +export { default as ChildFriendlyRounded } from './ChildFriendlyRounded'; +export { default as ChildFriendlySharp } from './ChildFriendlySharp'; +export { default as ChildFriendlyTwoTone } from './ChildFriendlyTwoTone'; +export { default as ChromeReaderMode } from './ChromeReaderMode'; +export { default as ChromeReaderModeOutlined } from './ChromeReaderModeOutlined'; +export { default as ChromeReaderModeRounded } from './ChromeReaderModeRounded'; +export { default as ChromeReaderModeSharp } from './ChromeReaderModeSharp'; +export { default as ChromeReaderModeTwoTone } from './ChromeReaderModeTwoTone'; +export { default as Circle } from './Circle'; +export { default as CircleNotifications } from './CircleNotifications'; +export { default as CircleNotificationsOutlined } from './CircleNotificationsOutlined'; +export { default as CircleNotificationsRounded } from './CircleNotificationsRounded'; +export { default as CircleNotificationsSharp } from './CircleNotificationsSharp'; +export { default as CircleNotificationsTwoTone } from './CircleNotificationsTwoTone'; +export { default as CircleOutlined } from './CircleOutlined'; +export { default as CircleRounded } from './CircleRounded'; +export { default as CircleSharp } from './CircleSharp'; +export { default as CircleTwoTone } from './CircleTwoTone'; +export { default as Class } from './Class'; +export { default as ClassOutlined } from './ClassOutlined'; +export { default as ClassRounded } from './ClassRounded'; +export { default as ClassSharp } from './ClassSharp'; +export { default as ClassTwoTone } from './ClassTwoTone'; +export { default as CleanHands } from './CleanHands'; +export { default as CleanHandsOutlined } from './CleanHandsOutlined'; +export { default as CleanHandsRounded } from './CleanHandsRounded'; +export { default as CleanHandsSharp } from './CleanHandsSharp'; +export { default as CleanHandsTwoTone } from './CleanHandsTwoTone'; +export { default as CleaningServices } from './CleaningServices'; +export { default as CleaningServicesOutlined } from './CleaningServicesOutlined'; +export { default as CleaningServicesRounded } from './CleaningServicesRounded'; +export { default as CleaningServicesSharp } from './CleaningServicesSharp'; +export { default as CleaningServicesTwoTone } from './CleaningServicesTwoTone'; +export { default as Clear } from './Clear'; +export { default as ClearAll } from './ClearAll'; +export { default as ClearAllOutlined } from './ClearAllOutlined'; +export { default as ClearAllRounded } from './ClearAllRounded'; +export { default as ClearAllSharp } from './ClearAllSharp'; +export { default as ClearAllTwoTone } from './ClearAllTwoTone'; +export { default as ClearOutlined } from './ClearOutlined'; +export { default as ClearRounded } from './ClearRounded'; +export { default as ClearSharp } from './ClearSharp'; +export { default as ClearTwoTone } from './ClearTwoTone'; +export { default as Close } from './Close'; +export { default as CloseFullscreen } from './CloseFullscreen'; +export { default as CloseFullscreenOutlined } from './CloseFullscreenOutlined'; +export { default as CloseFullscreenRounded } from './CloseFullscreenRounded'; +export { default as CloseFullscreenSharp } from './CloseFullscreenSharp'; +export { default as CloseFullscreenTwoTone } from './CloseFullscreenTwoTone'; +export { default as CloseOutlined } from './CloseOutlined'; +export { default as CloseRounded } from './CloseRounded'; +export { default as CloseSharp } from './CloseSharp'; +export { default as CloseTwoTone } from './CloseTwoTone'; +export { default as ClosedCaption } from './ClosedCaption'; +export { default as ClosedCaptionDisabled } from './ClosedCaptionDisabled'; +export { default as ClosedCaptionDisabledOutlined } from './ClosedCaptionDisabledOutlined'; +export { default as ClosedCaptionDisabledRounded } from './ClosedCaptionDisabledRounded'; +export { default as ClosedCaptionDisabledSharp } from './ClosedCaptionDisabledSharp'; +export { default as ClosedCaptionDisabledTwoTone } from './ClosedCaptionDisabledTwoTone'; +export { default as ClosedCaptionOff } from './ClosedCaptionOff'; +export { default as ClosedCaptionOffOutlined } from './ClosedCaptionOffOutlined'; +export { default as ClosedCaptionOffRounded } from './ClosedCaptionOffRounded'; +export { default as ClosedCaptionOffSharp } from './ClosedCaptionOffSharp'; +export { default as ClosedCaptionOffTwoTone } from './ClosedCaptionOffTwoTone'; +export { default as ClosedCaptionOutlined } from './ClosedCaptionOutlined'; +export { default as ClosedCaptionRounded } from './ClosedCaptionRounded'; +export { default as ClosedCaptionSharp } from './ClosedCaptionSharp'; +export { default as ClosedCaptionTwoTone } from './ClosedCaptionTwoTone'; +export { default as Cloud } from './Cloud'; +export { default as CloudCircle } from './CloudCircle'; +export { default as CloudCircleOutlined } from './CloudCircleOutlined'; +export { default as CloudCircleRounded } from './CloudCircleRounded'; +export { default as CloudCircleSharp } from './CloudCircleSharp'; +export { default as CloudCircleTwoTone } from './CloudCircleTwoTone'; +export { default as CloudDone } from './CloudDone'; +export { default as CloudDoneOutlined } from './CloudDoneOutlined'; +export { default as CloudDoneRounded } from './CloudDoneRounded'; +export { default as CloudDoneSharp } from './CloudDoneSharp'; +export { default as CloudDoneTwoTone } from './CloudDoneTwoTone'; +export { default as CloudDownload } from './CloudDownload'; +export { default as CloudDownloadOutlined } from './CloudDownloadOutlined'; +export { default as CloudDownloadRounded } from './CloudDownloadRounded'; +export { default as CloudDownloadSharp } from './CloudDownloadSharp'; +export { default as CloudDownloadTwoTone } from './CloudDownloadTwoTone'; +export { default as CloudOff } from './CloudOff'; +export { default as CloudOffOutlined } from './CloudOffOutlined'; +export { default as CloudOffRounded } from './CloudOffRounded'; +export { default as CloudOffSharp } from './CloudOffSharp'; +export { default as CloudOffTwoTone } from './CloudOffTwoTone'; +export { default as CloudOutlined } from './CloudOutlined'; +export { default as CloudQueue } from './CloudQueue'; +export { default as CloudQueueOutlined } from './CloudQueueOutlined'; +export { default as CloudQueueRounded } from './CloudQueueRounded'; +export { default as CloudQueueSharp } from './CloudQueueSharp'; +export { default as CloudQueueTwoTone } from './CloudQueueTwoTone'; +export { default as CloudRounded } from './CloudRounded'; +export { default as CloudSharp } from './CloudSharp'; +export { default as CloudTwoTone } from './CloudTwoTone'; +export { default as CloudUpload } from './CloudUpload'; +export { default as CloudUploadOutlined } from './CloudUploadOutlined'; +export { default as CloudUploadRounded } from './CloudUploadRounded'; +export { default as CloudUploadSharp } from './CloudUploadSharp'; +export { default as CloudUploadTwoTone } from './CloudUploadTwoTone'; +export { default as Code } from './Code'; +export { default as CodeOff } from './CodeOff'; +export { default as CodeOffOutlined } from './CodeOffOutlined'; +export { default as CodeOffRounded } from './CodeOffRounded'; +export { default as CodeOffSharp } from './CodeOffSharp'; +export { default as CodeOffTwoTone } from './CodeOffTwoTone'; +export { default as CodeOutlined } from './CodeOutlined'; +export { default as CodeRounded } from './CodeRounded'; +export { default as CodeSharp } from './CodeSharp'; +export { default as CodeTwoTone } from './CodeTwoTone'; +export { default as Coffee } from './Coffee'; +export { default as CoffeeMaker } from './CoffeeMaker'; +export { default as CoffeeMakerOutlined } from './CoffeeMakerOutlined'; +export { default as CoffeeMakerRounded } from './CoffeeMakerRounded'; +export { default as CoffeeMakerSharp } from './CoffeeMakerSharp'; +export { default as CoffeeMakerTwoTone } from './CoffeeMakerTwoTone'; +export { default as CoffeeOutlined } from './CoffeeOutlined'; +export { default as CoffeeRounded } from './CoffeeRounded'; +export { default as CoffeeSharp } from './CoffeeSharp'; +export { default as CoffeeTwoTone } from './CoffeeTwoTone'; +export { default as Collections } from './Collections'; +export { default as CollectionsBookmark } from './CollectionsBookmark'; +export { default as CollectionsBookmarkOutlined } from './CollectionsBookmarkOutlined'; +export { default as CollectionsBookmarkRounded } from './CollectionsBookmarkRounded'; +export { default as CollectionsBookmarkSharp } from './CollectionsBookmarkSharp'; +export { default as CollectionsBookmarkTwoTone } from './CollectionsBookmarkTwoTone'; +export { default as CollectionsOutlined } from './CollectionsOutlined'; +export { default as CollectionsRounded } from './CollectionsRounded'; +export { default as CollectionsSharp } from './CollectionsSharp'; +export { default as CollectionsTwoTone } from './CollectionsTwoTone'; +export { default as ColorLens } from './ColorLens'; +export { default as ColorLensOutlined } from './ColorLensOutlined'; +export { default as ColorLensRounded } from './ColorLensRounded'; +export { default as ColorLensSharp } from './ColorLensSharp'; +export { default as ColorLensTwoTone } from './ColorLensTwoTone'; +export { default as Colorize } from './Colorize'; +export { default as ColorizeOutlined } from './ColorizeOutlined'; +export { default as ColorizeRounded } from './ColorizeRounded'; +export { default as ColorizeSharp } from './ColorizeSharp'; +export { default as ColorizeTwoTone } from './ColorizeTwoTone'; +export { default as Comment } from './Comment'; +export { default as CommentBank } from './CommentBank'; +export { default as CommentBankOutlined } from './CommentBankOutlined'; +export { default as CommentBankRounded } from './CommentBankRounded'; +export { default as CommentBankSharp } from './CommentBankSharp'; +export { default as CommentBankTwoTone } from './CommentBankTwoTone'; +export { default as CommentOutlined } from './CommentOutlined'; +export { default as CommentRounded } from './CommentRounded'; +export { default as CommentSharp } from './CommentSharp'; +export { default as CommentTwoTone } from './CommentTwoTone'; +export { default as Commute } from './Commute'; +export { default as CommuteOutlined } from './CommuteOutlined'; +export { default as CommuteRounded } from './CommuteRounded'; +export { default as CommuteSharp } from './CommuteSharp'; +export { default as CommuteTwoTone } from './CommuteTwoTone'; +export { default as Compare } from './Compare'; +export { default as CompareArrows } from './CompareArrows'; +export { default as CompareArrowsOutlined } from './CompareArrowsOutlined'; +export { default as CompareArrowsRounded } from './CompareArrowsRounded'; +export { default as CompareArrowsSharp } from './CompareArrowsSharp'; +export { default as CompareArrowsTwoTone } from './CompareArrowsTwoTone'; +export { default as CompareOutlined } from './CompareOutlined'; +export { default as CompareRounded } from './CompareRounded'; +export { default as CompareSharp } from './CompareSharp'; +export { default as CompareTwoTone } from './CompareTwoTone'; +export { default as CompassCalibration } from './CompassCalibration'; +export { default as CompassCalibrationOutlined } from './CompassCalibrationOutlined'; +export { default as CompassCalibrationRounded } from './CompassCalibrationRounded'; +export { default as CompassCalibrationSharp } from './CompassCalibrationSharp'; +export { default as CompassCalibrationTwoTone } from './CompassCalibrationTwoTone'; +export { default as Compress } from './Compress'; +export { default as CompressOutlined } from './CompressOutlined'; +export { default as CompressRounded } from './CompressRounded'; +export { default as CompressSharp } from './CompressSharp'; +export { default as CompressTwoTone } from './CompressTwoTone'; +export { default as Computer } from './Computer'; +export { default as ComputerOutlined } from './ComputerOutlined'; +export { default as ComputerRounded } from './ComputerRounded'; +export { default as ComputerSharp } from './ComputerSharp'; +export { default as ComputerTwoTone } from './ComputerTwoTone'; +export { default as ConfirmationNumber } from './ConfirmationNumber'; +export { default as ConfirmationNumberOutlined } from './ConfirmationNumberOutlined'; +export { default as ConfirmationNumberRounded } from './ConfirmationNumberRounded'; +export { default as ConfirmationNumberSharp } from './ConfirmationNumberSharp'; +export { default as ConfirmationNumberTwoTone } from './ConfirmationNumberTwoTone'; +export { default as ConnectWithoutContact } from './ConnectWithoutContact'; +export { default as ConnectWithoutContactOutlined } from './ConnectWithoutContactOutlined'; +export { default as ConnectWithoutContactRounded } from './ConnectWithoutContactRounded'; +export { default as ConnectWithoutContactSharp } from './ConnectWithoutContactSharp'; +export { default as ConnectWithoutContactTwoTone } from './ConnectWithoutContactTwoTone'; +export { default as ConnectedTv } from './ConnectedTv'; +export { default as ConnectedTvOutlined } from './ConnectedTvOutlined'; +export { default as ConnectedTvRounded } from './ConnectedTvRounded'; +export { default as ConnectedTvSharp } from './ConnectedTvSharp'; +export { default as ConnectedTvTwoTone } from './ConnectedTvTwoTone'; +export { default as Construction } from './Construction'; +export { default as ConstructionOutlined } from './ConstructionOutlined'; +export { default as ConstructionRounded } from './ConstructionRounded'; +export { default as ConstructionSharp } from './ConstructionSharp'; +export { default as ConstructionTwoTone } from './ConstructionTwoTone'; +export { default as ContactMail } from './ContactMail'; +export { default as ContactMailOutlined } from './ContactMailOutlined'; +export { default as ContactMailRounded } from './ContactMailRounded'; +export { default as ContactMailSharp } from './ContactMailSharp'; +export { default as ContactMailTwoTone } from './ContactMailTwoTone'; +export { default as ContactPage } from './ContactPage'; +export { default as ContactPageOutlined } from './ContactPageOutlined'; +export { default as ContactPageRounded } from './ContactPageRounded'; +export { default as ContactPageSharp } from './ContactPageSharp'; +export { default as ContactPageTwoTone } from './ContactPageTwoTone'; +export { default as ContactPhone } from './ContactPhone'; +export { default as ContactPhoneOutlined } from './ContactPhoneOutlined'; +export { default as ContactPhoneRounded } from './ContactPhoneRounded'; +export { default as ContactPhoneSharp } from './ContactPhoneSharp'; +export { default as ContactPhoneTwoTone } from './ContactPhoneTwoTone'; +export { default as ContactSupport } from './ContactSupport'; +export { default as ContactSupportOutlined } from './ContactSupportOutlined'; +export { default as ContactSupportRounded } from './ContactSupportRounded'; +export { default as ContactSupportSharp } from './ContactSupportSharp'; +export { default as ContactSupportTwoTone } from './ContactSupportTwoTone'; +export { default as Contactless } from './Contactless'; +export { default as ContactlessOutlined } from './ContactlessOutlined'; +export { default as ContactlessRounded } from './ContactlessRounded'; +export { default as ContactlessSharp } from './ContactlessSharp'; +export { default as ContactlessTwoTone } from './ContactlessTwoTone'; +export { default as Contacts } from './Contacts'; +export { default as ContactsOutlined } from './ContactsOutlined'; +export { default as ContactsRounded } from './ContactsRounded'; +export { default as ContactsSharp } from './ContactsSharp'; +export { default as ContactsTwoTone } from './ContactsTwoTone'; +export { default as ContentCopy } from './ContentCopy'; +export { default as ContentCopyOutlined } from './ContentCopyOutlined'; +export { default as ContentCopyRounded } from './ContentCopyRounded'; +export { default as ContentCopySharp } from './ContentCopySharp'; +export { default as ContentCopyTwoTone } from './ContentCopyTwoTone'; +export { default as ContentCut } from './ContentCut'; +export { default as ContentCutOutlined } from './ContentCutOutlined'; +export { default as ContentCutRounded } from './ContentCutRounded'; +export { default as ContentCutSharp } from './ContentCutSharp'; +export { default as ContentCutTwoTone } from './ContentCutTwoTone'; +export { default as ContentPaste } from './ContentPaste'; +export { default as ContentPasteOff } from './ContentPasteOff'; +export { default as ContentPasteOffOutlined } from './ContentPasteOffOutlined'; +export { default as ContentPasteOffRounded } from './ContentPasteOffRounded'; +export { default as ContentPasteOffSharp } from './ContentPasteOffSharp'; +export { default as ContentPasteOffTwoTone } from './ContentPasteOffTwoTone'; +export { default as ContentPasteOutlined } from './ContentPasteOutlined'; +export { default as ContentPasteRounded } from './ContentPasteRounded'; +export { default as ContentPasteSharp } from './ContentPasteSharp'; +export { default as ContentPasteTwoTone } from './ContentPasteTwoTone'; +export { default as ControlCamera } from './ControlCamera'; +export { default as ControlCameraOutlined } from './ControlCameraOutlined'; +export { default as ControlCameraRounded } from './ControlCameraRounded'; +export { default as ControlCameraSharp } from './ControlCameraSharp'; +export { default as ControlCameraTwoTone } from './ControlCameraTwoTone'; +export { default as ControlPoint } from './ControlPoint'; +export { default as ControlPointDuplicate } from './ControlPointDuplicate'; +export { default as ControlPointDuplicateOutlined } from './ControlPointDuplicateOutlined'; +export { default as ControlPointDuplicateRounded } from './ControlPointDuplicateRounded'; +export { default as ControlPointDuplicateSharp } from './ControlPointDuplicateSharp'; +export { default as ControlPointDuplicateTwoTone } from './ControlPointDuplicateTwoTone'; +export { default as ControlPointOutlined } from './ControlPointOutlined'; +export { default as ControlPointRounded } from './ControlPointRounded'; +export { default as ControlPointSharp } from './ControlPointSharp'; +export { default as ControlPointTwoTone } from './ControlPointTwoTone'; +export { default as CopyAll } from './CopyAll'; +export { default as CopyAllOutlined } from './CopyAllOutlined'; +export { default as CopyAllRounded } from './CopyAllRounded'; +export { default as CopyAllSharp } from './CopyAllSharp'; +export { default as CopyAllTwoTone } from './CopyAllTwoTone'; +export { default as Copyright } from './Copyright'; +export { default as CopyrightOutlined } from './CopyrightOutlined'; +export { default as CopyrightRounded } from './CopyrightRounded'; +export { default as CopyrightSharp } from './CopyrightSharp'; +export { default as CopyrightTwoTone } from './CopyrightTwoTone'; +export { default as Coronavirus } from './Coronavirus'; +export { default as CoronavirusOutlined } from './CoronavirusOutlined'; +export { default as CoronavirusRounded } from './CoronavirusRounded'; +export { default as CoronavirusSharp } from './CoronavirusSharp'; +export { default as CoronavirusTwoTone } from './CoronavirusTwoTone'; +export { default as CorporateFare } from './CorporateFare'; +export { default as CorporateFareOutlined } from './CorporateFareOutlined'; +export { default as CorporateFareRounded } from './CorporateFareRounded'; +export { default as CorporateFareSharp } from './CorporateFareSharp'; +export { default as CorporateFareTwoTone } from './CorporateFareTwoTone'; +export { default as Cottage } from './Cottage'; +export { default as CottageOutlined } from './CottageOutlined'; +export { default as CottageRounded } from './CottageRounded'; +export { default as CottageSharp } from './CottageSharp'; +export { default as CottageTwoTone } from './CottageTwoTone'; +export { default as Countertops } from './Countertops'; +export { default as CountertopsOutlined } from './CountertopsOutlined'; +export { default as CountertopsRounded } from './CountertopsRounded'; +export { default as CountertopsSharp } from './CountertopsSharp'; +export { default as CountertopsTwoTone } from './CountertopsTwoTone'; +export { default as Create } from './Create'; +export { default as CreateNewFolder } from './CreateNewFolder'; +export { default as CreateNewFolderOutlined } from './CreateNewFolderOutlined'; +export { default as CreateNewFolderRounded } from './CreateNewFolderRounded'; +export { default as CreateNewFolderSharp } from './CreateNewFolderSharp'; +export { default as CreateNewFolderTwoTone } from './CreateNewFolderTwoTone'; +export { default as CreateOutlined } from './CreateOutlined'; +export { default as CreateRounded } from './CreateRounded'; +export { default as CreateSharp } from './CreateSharp'; +export { default as CreateTwoTone } from './CreateTwoTone'; +export { default as CreditCard } from './CreditCard'; +export { default as CreditCardOff } from './CreditCardOff'; +export { default as CreditCardOffOutlined } from './CreditCardOffOutlined'; +export { default as CreditCardOffRounded } from './CreditCardOffRounded'; +export { default as CreditCardOffSharp } from './CreditCardOffSharp'; +export { default as CreditCardOffTwoTone } from './CreditCardOffTwoTone'; +export { default as CreditCardOutlined } from './CreditCardOutlined'; +export { default as CreditCardRounded } from './CreditCardRounded'; +export { default as CreditCardSharp } from './CreditCardSharp'; +export { default as CreditCardTwoTone } from './CreditCardTwoTone'; +export { default as CreditScore } from './CreditScore'; +export { default as CreditScoreOutlined } from './CreditScoreOutlined'; +export { default as CreditScoreRounded } from './CreditScoreRounded'; +export { default as CreditScoreSharp } from './CreditScoreSharp'; +export { default as CreditScoreTwoTone } from './CreditScoreTwoTone'; +export { default as Crib } from './Crib'; +export { default as CribOutlined } from './CribOutlined'; +export { default as CribRounded } from './CribRounded'; +export { default as CribSharp } from './CribSharp'; +export { default as CribTwoTone } from './CribTwoTone'; +export { default as Crop } from './Crop'; +export { default as Crop169 } from './Crop169'; +export { default as Crop169Outlined } from './Crop169Outlined'; +export { default as Crop169Rounded } from './Crop169Rounded'; +export { default as Crop169Sharp } from './Crop169Sharp'; +export { default as Crop169TwoTone } from './Crop169TwoTone'; +export { default as Crop32 } from './Crop32'; +export { default as Crop32Outlined } from './Crop32Outlined'; +export { default as Crop32Rounded } from './Crop32Rounded'; +export { default as Crop32Sharp } from './Crop32Sharp'; +export { default as Crop32TwoTone } from './Crop32TwoTone'; +export { default as Crop54 } from './Crop54'; +export { default as Crop54Outlined } from './Crop54Outlined'; +export { default as Crop54Rounded } from './Crop54Rounded'; +export { default as Crop54Sharp } from './Crop54Sharp'; +export { default as Crop54TwoTone } from './Crop54TwoTone'; +export { default as Crop75 } from './Crop75'; +export { default as Crop75Outlined } from './Crop75Outlined'; +export { default as Crop75Rounded } from './Crop75Rounded'; +export { default as Crop75Sharp } from './Crop75Sharp'; +export { default as Crop75TwoTone } from './Crop75TwoTone'; +export { default as CropDin } from './CropDin'; +export { default as CropDinOutlined } from './CropDinOutlined'; +export { default as CropDinRounded } from './CropDinRounded'; +export { default as CropDinSharp } from './CropDinSharp'; +export { default as CropDinTwoTone } from './CropDinTwoTone'; +export { default as CropFree } from './CropFree'; +export { default as CropFreeOutlined } from './CropFreeOutlined'; +export { default as CropFreeRounded } from './CropFreeRounded'; +export { default as CropFreeSharp } from './CropFreeSharp'; +export { default as CropFreeTwoTone } from './CropFreeTwoTone'; +export { default as CropLandscape } from './CropLandscape'; +export { default as CropLandscapeOutlined } from './CropLandscapeOutlined'; +export { default as CropLandscapeRounded } from './CropLandscapeRounded'; +export { default as CropLandscapeSharp } from './CropLandscapeSharp'; +export { default as CropLandscapeTwoTone } from './CropLandscapeTwoTone'; +export { default as CropOriginal } from './CropOriginal'; +export { default as CropOriginalOutlined } from './CropOriginalOutlined'; +export { default as CropOriginalRounded } from './CropOriginalRounded'; +export { default as CropOriginalSharp } from './CropOriginalSharp'; +export { default as CropOriginalTwoTone } from './CropOriginalTwoTone'; +export { default as CropOutlined } from './CropOutlined'; +export { default as CropPortrait } from './CropPortrait'; +export { default as CropPortraitOutlined } from './CropPortraitOutlined'; +export { default as CropPortraitRounded } from './CropPortraitRounded'; +export { default as CropPortraitSharp } from './CropPortraitSharp'; +export { default as CropPortraitTwoTone } from './CropPortraitTwoTone'; +export { default as CropRotate } from './CropRotate'; +export { default as CropRotateOutlined } from './CropRotateOutlined'; +export { default as CropRotateRounded } from './CropRotateRounded'; +export { default as CropRotateSharp } from './CropRotateSharp'; +export { default as CropRotateTwoTone } from './CropRotateTwoTone'; +export { default as CropRounded } from './CropRounded'; +export { default as CropSharp } from './CropSharp'; +export { default as CropSquare } from './CropSquare'; +export { default as CropSquareOutlined } from './CropSquareOutlined'; +export { default as CropSquareRounded } from './CropSquareRounded'; +export { default as CropSquareSharp } from './CropSquareSharp'; +export { default as CropSquareTwoTone } from './CropSquareTwoTone'; +export { default as CropTwoTone } from './CropTwoTone'; +export { default as Dangerous } from './Dangerous'; +export { default as DangerousOutlined } from './DangerousOutlined'; +export { default as DangerousRounded } from './DangerousRounded'; +export { default as DangerousSharp } from './DangerousSharp'; +export { default as DangerousTwoTone } from './DangerousTwoTone'; +export { default as DarkMode } from './DarkMode'; +export { default as DarkModeOutlined } from './DarkModeOutlined'; +export { default as DarkModeRounded } from './DarkModeRounded'; +export { default as DarkModeSharp } from './DarkModeSharp'; +export { default as DarkModeTwoTone } from './DarkModeTwoTone'; +export { default as Dashboard } from './Dashboard'; +export { default as DashboardCustomize } from './DashboardCustomize'; +export { default as DashboardCustomizeOutlined } from './DashboardCustomizeOutlined'; +export { default as DashboardCustomizeRounded } from './DashboardCustomizeRounded'; +export { default as DashboardCustomizeSharp } from './DashboardCustomizeSharp'; +export { default as DashboardCustomizeTwoTone } from './DashboardCustomizeTwoTone'; +export { default as DashboardOutlined } from './DashboardOutlined'; +export { default as DashboardRounded } from './DashboardRounded'; +export { default as DashboardSharp } from './DashboardSharp'; +export { default as DashboardTwoTone } from './DashboardTwoTone'; +export { default as DataSaverOff } from './DataSaverOff'; +export { default as DataSaverOffOutlined } from './DataSaverOffOutlined'; +export { default as DataSaverOffRounded } from './DataSaverOffRounded'; +export { default as DataSaverOffSharp } from './DataSaverOffSharp'; +export { default as DataSaverOffTwoTone } from './DataSaverOffTwoTone'; +export { default as DataSaverOn } from './DataSaverOn'; +export { default as DataSaverOnOutlined } from './DataSaverOnOutlined'; +export { default as DataSaverOnRounded } from './DataSaverOnRounded'; +export { default as DataSaverOnSharp } from './DataSaverOnSharp'; +export { default as DataSaverOnTwoTone } from './DataSaverOnTwoTone'; +export { default as DataUsage } from './DataUsage'; +export { default as DataUsageOutlined } from './DataUsageOutlined'; +export { default as DataUsageRounded } from './DataUsageRounded'; +export { default as DataUsageSharp } from './DataUsageSharp'; +export { default as DataUsageTwoTone } from './DataUsageTwoTone'; +export { default as DateRange } from './DateRange'; +export { default as DateRangeOutlined } from './DateRangeOutlined'; +export { default as DateRangeRounded } from './DateRangeRounded'; +export { default as DateRangeSharp } from './DateRangeSharp'; +export { default as DateRangeTwoTone } from './DateRangeTwoTone'; +export { default as Deck } from './Deck'; +export { default as DeckOutlined } from './DeckOutlined'; +export { default as DeckRounded } from './DeckRounded'; +export { default as DeckSharp } from './DeckSharp'; +export { default as DeckTwoTone } from './DeckTwoTone'; +export { default as Dehaze } from './Dehaze'; +export { default as DehazeOutlined } from './DehazeOutlined'; +export { default as DehazeRounded } from './DehazeRounded'; +export { default as DehazeSharp } from './DehazeSharp'; +export { default as DehazeTwoTone } from './DehazeTwoTone'; +export { default as Delete } from './Delete'; +export { default as DeleteForever } from './DeleteForever'; +export { default as DeleteForeverOutlined } from './DeleteForeverOutlined'; +export { default as DeleteForeverRounded } from './DeleteForeverRounded'; +export { default as DeleteForeverSharp } from './DeleteForeverSharp'; +export { default as DeleteForeverTwoTone } from './DeleteForeverTwoTone'; +export { default as DeleteOutline } from './DeleteOutline'; +export { default as DeleteOutlineOutlined } from './DeleteOutlineOutlined'; +export { default as DeleteOutlineRounded } from './DeleteOutlineRounded'; +export { default as DeleteOutlineSharp } from './DeleteOutlineSharp'; +export { default as DeleteOutlineTwoTone } from './DeleteOutlineTwoTone'; +export { default as DeleteOutlined } from './DeleteOutlined'; +export { default as DeleteRounded } from './DeleteRounded'; +export { default as DeleteSharp } from './DeleteSharp'; +export { default as DeleteSweep } from './DeleteSweep'; +export { default as DeleteSweepOutlined } from './DeleteSweepOutlined'; +export { default as DeleteSweepRounded } from './DeleteSweepRounded'; +export { default as DeleteSweepSharp } from './DeleteSweepSharp'; +export { default as DeleteSweepTwoTone } from './DeleteSweepTwoTone'; +export { default as DeleteTwoTone } from './DeleteTwoTone'; +export { default as DeliveryDining } from './DeliveryDining'; +export { default as DeliveryDiningOutlined } from './DeliveryDiningOutlined'; +export { default as DeliveryDiningRounded } from './DeliveryDiningRounded'; +export { default as DeliveryDiningSharp } from './DeliveryDiningSharp'; +export { default as DeliveryDiningTwoTone } from './DeliveryDiningTwoTone'; +export { default as DepartureBoard } from './DepartureBoard'; +export { default as DepartureBoardOutlined } from './DepartureBoardOutlined'; +export { default as DepartureBoardRounded } from './DepartureBoardRounded'; +export { default as DepartureBoardSharp } from './DepartureBoardSharp'; +export { default as DepartureBoardTwoTone } from './DepartureBoardTwoTone'; +export { default as Description } from './Description'; +export { default as DescriptionOutlined } from './DescriptionOutlined'; +export { default as DescriptionRounded } from './DescriptionRounded'; +export { default as DescriptionSharp } from './DescriptionSharp'; +export { default as DescriptionTwoTone } from './DescriptionTwoTone'; +export { default as DesignServices } from './DesignServices'; +export { default as DesignServicesOutlined } from './DesignServicesOutlined'; +export { default as DesignServicesRounded } from './DesignServicesRounded'; +export { default as DesignServicesSharp } from './DesignServicesSharp'; +export { default as DesignServicesTwoTone } from './DesignServicesTwoTone'; +export { default as DesktopAccessDisabled } from './DesktopAccessDisabled'; +export { default as DesktopAccessDisabledOutlined } from './DesktopAccessDisabledOutlined'; +export { default as DesktopAccessDisabledRounded } from './DesktopAccessDisabledRounded'; +export { default as DesktopAccessDisabledSharp } from './DesktopAccessDisabledSharp'; +export { default as DesktopAccessDisabledTwoTone } from './DesktopAccessDisabledTwoTone'; +export { default as DesktopMac } from './DesktopMac'; +export { default as DesktopMacOutlined } from './DesktopMacOutlined'; +export { default as DesktopMacRounded } from './DesktopMacRounded'; +export { default as DesktopMacSharp } from './DesktopMacSharp'; +export { default as DesktopMacTwoTone } from './DesktopMacTwoTone'; +export { default as DesktopWindows } from './DesktopWindows'; +export { default as DesktopWindowsOutlined } from './DesktopWindowsOutlined'; +export { default as DesktopWindowsRounded } from './DesktopWindowsRounded'; +export { default as DesktopWindowsSharp } from './DesktopWindowsSharp'; +export { default as DesktopWindowsTwoTone } from './DesktopWindowsTwoTone'; +export { default as Details } from './Details'; +export { default as DetailsOutlined } from './DetailsOutlined'; +export { default as DetailsRounded } from './DetailsRounded'; +export { default as DetailsSharp } from './DetailsSharp'; +export { default as DetailsTwoTone } from './DetailsTwoTone'; +export { default as DeveloperBoard } from './DeveloperBoard'; +export { default as DeveloperBoardOff } from './DeveloperBoardOff'; +export { default as DeveloperBoardOffOutlined } from './DeveloperBoardOffOutlined'; +export { default as DeveloperBoardOffRounded } from './DeveloperBoardOffRounded'; +export { default as DeveloperBoardOffSharp } from './DeveloperBoardOffSharp'; +export { default as DeveloperBoardOffTwoTone } from './DeveloperBoardOffTwoTone'; +export { default as DeveloperBoardOutlined } from './DeveloperBoardOutlined'; +export { default as DeveloperBoardRounded } from './DeveloperBoardRounded'; +export { default as DeveloperBoardSharp } from './DeveloperBoardSharp'; +export { default as DeveloperBoardTwoTone } from './DeveloperBoardTwoTone'; +export { default as DeveloperMode } from './DeveloperMode'; +export { default as DeveloperModeOutlined } from './DeveloperModeOutlined'; +export { default as DeveloperModeRounded } from './DeveloperModeRounded'; +export { default as DeveloperModeSharp } from './DeveloperModeSharp'; +export { default as DeveloperModeTwoTone } from './DeveloperModeTwoTone'; +export { default as DeviceHub } from './DeviceHub'; +export { default as DeviceHubOutlined } from './DeviceHubOutlined'; +export { default as DeviceHubRounded } from './DeviceHubRounded'; +export { default as DeviceHubSharp } from './DeviceHubSharp'; +export { default as DeviceHubTwoTone } from './DeviceHubTwoTone'; +export { default as DeviceThermostat } from './DeviceThermostat'; +export { default as DeviceThermostatOutlined } from './DeviceThermostatOutlined'; +export { default as DeviceThermostatRounded } from './DeviceThermostatRounded'; +export { default as DeviceThermostatSharp } from './DeviceThermostatSharp'; +export { default as DeviceThermostatTwoTone } from './DeviceThermostatTwoTone'; +export { default as DeviceUnknown } from './DeviceUnknown'; +export { default as DeviceUnknownOutlined } from './DeviceUnknownOutlined'; +export { default as DeviceUnknownRounded } from './DeviceUnknownRounded'; +export { default as DeviceUnknownSharp } from './DeviceUnknownSharp'; +export { default as DeviceUnknownTwoTone } from './DeviceUnknownTwoTone'; +export { default as Devices } from './Devices'; +export { default as DevicesOther } from './DevicesOther'; +export { default as DevicesOtherOutlined } from './DevicesOtherOutlined'; +export { default as DevicesOtherRounded } from './DevicesOtherRounded'; +export { default as DevicesOtherSharp } from './DevicesOtherSharp'; +export { default as DevicesOtherTwoTone } from './DevicesOtherTwoTone'; +export { default as DevicesOutlined } from './DevicesOutlined'; +export { default as DevicesRounded } from './DevicesRounded'; +export { default as DevicesSharp } from './DevicesSharp'; +export { default as DevicesTwoTone } from './DevicesTwoTone'; +export { default as DialerSip } from './DialerSip'; +export { default as DialerSipOutlined } from './DialerSipOutlined'; +export { default as DialerSipRounded } from './DialerSipRounded'; +export { default as DialerSipSharp } from './DialerSipSharp'; +export { default as DialerSipTwoTone } from './DialerSipTwoTone'; +export { default as Dialpad } from './Dialpad'; +export { default as DialpadOutlined } from './DialpadOutlined'; +export { default as DialpadRounded } from './DialpadRounded'; +export { default as DialpadSharp } from './DialpadSharp'; +export { default as DialpadTwoTone } from './DialpadTwoTone'; +export { default as Dining } from './Dining'; +export { default as DiningOutlined } from './DiningOutlined'; +export { default as DiningRounded } from './DiningRounded'; +export { default as DiningSharp } from './DiningSharp'; +export { default as DiningTwoTone } from './DiningTwoTone'; +export { default as DinnerDining } from './DinnerDining'; +export { default as DinnerDiningOutlined } from './DinnerDiningOutlined'; +export { default as DinnerDiningRounded } from './DinnerDiningRounded'; +export { default as DinnerDiningSharp } from './DinnerDiningSharp'; +export { default as DinnerDiningTwoTone } from './DinnerDiningTwoTone'; +export { default as Directions } from './Directions'; +export { default as DirectionsBike } from './DirectionsBike'; +export { default as DirectionsBikeOutlined } from './DirectionsBikeOutlined'; +export { default as DirectionsBikeRounded } from './DirectionsBikeRounded'; +export { default as DirectionsBikeSharp } from './DirectionsBikeSharp'; +export { default as DirectionsBikeTwoTone } from './DirectionsBikeTwoTone'; +export { default as DirectionsBoat } from './DirectionsBoat'; +export { default as DirectionsBoatFilled } from './DirectionsBoatFilled'; +export { default as DirectionsBoatFilledOutlined } from './DirectionsBoatFilledOutlined'; +export { default as DirectionsBoatFilledRounded } from './DirectionsBoatFilledRounded'; +export { default as DirectionsBoatFilledSharp } from './DirectionsBoatFilledSharp'; +export { default as DirectionsBoatFilledTwoTone } from './DirectionsBoatFilledTwoTone'; +export { default as DirectionsBoatOutlined } from './DirectionsBoatOutlined'; +export { default as DirectionsBoatRounded } from './DirectionsBoatRounded'; +export { default as DirectionsBoatSharp } from './DirectionsBoatSharp'; +export { default as DirectionsBoatTwoTone } from './DirectionsBoatTwoTone'; +export { default as DirectionsBus } from './DirectionsBus'; +export { default as DirectionsBusFilled } from './DirectionsBusFilled'; +export { default as DirectionsBusFilledOutlined } from './DirectionsBusFilledOutlined'; +export { default as DirectionsBusFilledRounded } from './DirectionsBusFilledRounded'; +export { default as DirectionsBusFilledSharp } from './DirectionsBusFilledSharp'; +export { default as DirectionsBusFilledTwoTone } from './DirectionsBusFilledTwoTone'; +export { default as DirectionsBusOutlined } from './DirectionsBusOutlined'; +export { default as DirectionsBusRounded } from './DirectionsBusRounded'; +export { default as DirectionsBusSharp } from './DirectionsBusSharp'; +export { default as DirectionsBusTwoTone } from './DirectionsBusTwoTone'; +export { default as DirectionsCar } from './DirectionsCar'; +export { default as DirectionsCarFilled } from './DirectionsCarFilled'; +export { default as DirectionsCarFilledOutlined } from './DirectionsCarFilledOutlined'; +export { default as DirectionsCarFilledRounded } from './DirectionsCarFilledRounded'; +export { default as DirectionsCarFilledSharp } from './DirectionsCarFilledSharp'; +export { default as DirectionsCarFilledTwoTone } from './DirectionsCarFilledTwoTone'; +export { default as DirectionsCarOutlined } from './DirectionsCarOutlined'; +export { default as DirectionsCarRounded } from './DirectionsCarRounded'; +export { default as DirectionsCarSharp } from './DirectionsCarSharp'; +export { default as DirectionsCarTwoTone } from './DirectionsCarTwoTone'; +export { default as DirectionsOff } from './DirectionsOff'; +export { default as DirectionsOffOutlined } from './DirectionsOffOutlined'; +export { default as DirectionsOffRounded } from './DirectionsOffRounded'; +export { default as DirectionsOffSharp } from './DirectionsOffSharp'; +export { default as DirectionsOffTwoTone } from './DirectionsOffTwoTone'; +export { default as DirectionsOutlined } from './DirectionsOutlined'; +export { default as DirectionsRailway } from './DirectionsRailway'; +export { default as DirectionsRailwayFilled } from './DirectionsRailwayFilled'; +export { default as DirectionsRailwayFilledOutlined } from './DirectionsRailwayFilledOutlined'; +export { default as DirectionsRailwayFilledRounded } from './DirectionsRailwayFilledRounded'; +export { default as DirectionsRailwayFilledSharp } from './DirectionsRailwayFilledSharp'; +export { default as DirectionsRailwayFilledTwoTone } from './DirectionsRailwayFilledTwoTone'; +export { default as DirectionsRailwayOutlined } from './DirectionsRailwayOutlined'; +export { default as DirectionsRailwayRounded } from './DirectionsRailwayRounded'; +export { default as DirectionsRailwaySharp } from './DirectionsRailwaySharp'; +export { default as DirectionsRailwayTwoTone } from './DirectionsRailwayTwoTone'; +export { default as DirectionsRounded } from './DirectionsRounded'; +export { default as DirectionsRun } from './DirectionsRun'; +export { default as DirectionsRunOutlined } from './DirectionsRunOutlined'; +export { default as DirectionsRunRounded } from './DirectionsRunRounded'; +export { default as DirectionsRunSharp } from './DirectionsRunSharp'; +export { default as DirectionsRunTwoTone } from './DirectionsRunTwoTone'; +export { default as DirectionsSharp } from './DirectionsSharp'; +export { default as DirectionsSubway } from './DirectionsSubway'; +export { default as DirectionsSubwayFilled } from './DirectionsSubwayFilled'; +export { default as DirectionsSubwayFilledOutlined } from './DirectionsSubwayFilledOutlined'; +export { default as DirectionsSubwayFilledRounded } from './DirectionsSubwayFilledRounded'; +export { default as DirectionsSubwayFilledSharp } from './DirectionsSubwayFilledSharp'; +export { default as DirectionsSubwayFilledTwoTone } from './DirectionsSubwayFilledTwoTone'; +export { default as DirectionsSubwayOutlined } from './DirectionsSubwayOutlined'; +export { default as DirectionsSubwayRounded } from './DirectionsSubwayRounded'; +export { default as DirectionsSubwaySharp } from './DirectionsSubwaySharp'; +export { default as DirectionsSubwayTwoTone } from './DirectionsSubwayTwoTone'; +export { default as DirectionsTransit } from './DirectionsTransit'; +export { default as DirectionsTransitFilled } from './DirectionsTransitFilled'; +export { default as DirectionsTransitFilledOutlined } from './DirectionsTransitFilledOutlined'; +export { default as DirectionsTransitFilledRounded } from './DirectionsTransitFilledRounded'; +export { default as DirectionsTransitFilledSharp } from './DirectionsTransitFilledSharp'; +export { default as DirectionsTransitFilledTwoTone } from './DirectionsTransitFilledTwoTone'; +export { default as DirectionsTransitOutlined } from './DirectionsTransitOutlined'; +export { default as DirectionsTransitRounded } from './DirectionsTransitRounded'; +export { default as DirectionsTransitSharp } from './DirectionsTransitSharp'; +export { default as DirectionsTransitTwoTone } from './DirectionsTransitTwoTone'; +export { default as DirectionsTwoTone } from './DirectionsTwoTone'; +export { default as DirectionsWalk } from './DirectionsWalk'; +export { default as DirectionsWalkOutlined } from './DirectionsWalkOutlined'; +export { default as DirectionsWalkRounded } from './DirectionsWalkRounded'; +export { default as DirectionsWalkSharp } from './DirectionsWalkSharp'; +export { default as DirectionsWalkTwoTone } from './DirectionsWalkTwoTone'; +export { default as DirtyLens } from './DirtyLens'; +export { default as DirtyLensOutlined } from './DirtyLensOutlined'; +export { default as DirtyLensRounded } from './DirtyLensRounded'; +export { default as DirtyLensSharp } from './DirtyLensSharp'; +export { default as DirtyLensTwoTone } from './DirtyLensTwoTone'; +export { default as DisabledByDefault } from './DisabledByDefault'; +export { default as DisabledByDefaultOutlined } from './DisabledByDefaultOutlined'; +export { default as DisabledByDefaultRounded } from './DisabledByDefaultRounded'; +export { default as DisabledByDefaultSharp } from './DisabledByDefaultSharp'; +export { default as DisabledByDefaultTwoTone } from './DisabledByDefaultTwoTone'; +export { default as DiscFull } from './DiscFull'; +export { default as DiscFullOutlined } from './DiscFullOutlined'; +export { default as DiscFullRounded } from './DiscFullRounded'; +export { default as DiscFullSharp } from './DiscFullSharp'; +export { default as DiscFullTwoTone } from './DiscFullTwoTone'; +export { default as Dns } from './Dns'; +export { default as DnsOutlined } from './DnsOutlined'; +export { default as DnsRounded } from './DnsRounded'; +export { default as DnsSharp } from './DnsSharp'; +export { default as DnsTwoTone } from './DnsTwoTone'; +export { default as DoDisturb } from './DoDisturb'; +export { default as DoDisturbAlt } from './DoDisturbAlt'; +export { default as DoDisturbAltOutlined } from './DoDisturbAltOutlined'; +export { default as DoDisturbAltRounded } from './DoDisturbAltRounded'; +export { default as DoDisturbAltSharp } from './DoDisturbAltSharp'; +export { default as DoDisturbAltTwoTone } from './DoDisturbAltTwoTone'; +export { default as DoDisturbOff } from './DoDisturbOff'; +export { default as DoDisturbOffOutlined } from './DoDisturbOffOutlined'; +export { default as DoDisturbOffRounded } from './DoDisturbOffRounded'; +export { default as DoDisturbOffSharp } from './DoDisturbOffSharp'; +export { default as DoDisturbOffTwoTone } from './DoDisturbOffTwoTone'; +export { default as DoDisturbOn } from './DoDisturbOn'; +export { default as DoDisturbOnOutlined } from './DoDisturbOnOutlined'; +export { default as DoDisturbOnRounded } from './DoDisturbOnRounded'; +export { default as DoDisturbOnSharp } from './DoDisturbOnSharp'; +export { default as DoDisturbOnTwoTone } from './DoDisturbOnTwoTone'; +export { default as DoDisturbOutlined } from './DoDisturbOutlined'; +export { default as DoDisturbRounded } from './DoDisturbRounded'; +export { default as DoDisturbSharp } from './DoDisturbSharp'; +export { default as DoDisturbTwoTone } from './DoDisturbTwoTone'; +export { default as DoNotDisturb } from './DoNotDisturb'; +export { default as DoNotDisturbAlt } from './DoNotDisturbAlt'; +export { default as DoNotDisturbAltOutlined } from './DoNotDisturbAltOutlined'; +export { default as DoNotDisturbAltRounded } from './DoNotDisturbAltRounded'; +export { default as DoNotDisturbAltSharp } from './DoNotDisturbAltSharp'; +export { default as DoNotDisturbAltTwoTone } from './DoNotDisturbAltTwoTone'; +export { default as DoNotDisturbOff } from './DoNotDisturbOff'; +export { default as DoNotDisturbOffOutlined } from './DoNotDisturbOffOutlined'; +export { default as DoNotDisturbOffRounded } from './DoNotDisturbOffRounded'; +export { default as DoNotDisturbOffSharp } from './DoNotDisturbOffSharp'; +export { default as DoNotDisturbOffTwoTone } from './DoNotDisturbOffTwoTone'; +export { default as DoNotDisturbOn } from './DoNotDisturbOn'; +export { default as DoNotDisturbOnOutlined } from './DoNotDisturbOnOutlined'; +export { default as DoNotDisturbOnRounded } from './DoNotDisturbOnRounded'; +export { default as DoNotDisturbOnSharp } from './DoNotDisturbOnSharp'; +export { default as DoNotDisturbOnTotalSilence } from './DoNotDisturbOnTotalSilence'; +export { default as DoNotDisturbOnTotalSilenceOutlined } from './DoNotDisturbOnTotalSilenceOutlined'; +export { default as DoNotDisturbOnTotalSilenceRounded } from './DoNotDisturbOnTotalSilenceRounded'; +export { default as DoNotDisturbOnTotalSilenceSharp } from './DoNotDisturbOnTotalSilenceSharp'; +export { default as DoNotDisturbOnTotalSilenceTwoTone } from './DoNotDisturbOnTotalSilenceTwoTone'; +export { default as DoNotDisturbOnTwoTone } from './DoNotDisturbOnTwoTone'; +export { default as DoNotDisturbOutlined } from './DoNotDisturbOutlined'; +export { default as DoNotDisturbRounded } from './DoNotDisturbRounded'; +export { default as DoNotDisturbSharp } from './DoNotDisturbSharp'; +export { default as DoNotDisturbTwoTone } from './DoNotDisturbTwoTone'; +export { default as DoNotStep } from './DoNotStep'; +export { default as DoNotStepOutlined } from './DoNotStepOutlined'; +export { default as DoNotStepRounded } from './DoNotStepRounded'; +export { default as DoNotStepSharp } from './DoNotStepSharp'; +export { default as DoNotStepTwoTone } from './DoNotStepTwoTone'; +export { default as DoNotTouch } from './DoNotTouch'; +export { default as DoNotTouchOutlined } from './DoNotTouchOutlined'; +export { default as DoNotTouchRounded } from './DoNotTouchRounded'; +export { default as DoNotTouchSharp } from './DoNotTouchSharp'; +export { default as DoNotTouchTwoTone } from './DoNotTouchTwoTone'; +export { default as Dock } from './Dock'; +export { default as DockOutlined } from './DockOutlined'; +export { default as DockRounded } from './DockRounded'; +export { default as DockSharp } from './DockSharp'; +export { default as DockTwoTone } from './DockTwoTone'; +export { default as DocumentScanner } from './DocumentScanner'; +export { default as DocumentScannerOutlined } from './DocumentScannerOutlined'; +export { default as DocumentScannerRounded } from './DocumentScannerRounded'; +export { default as DocumentScannerSharp } from './DocumentScannerSharp'; +export { default as DocumentScannerTwoTone } from './DocumentScannerTwoTone'; +export { default as Domain } from './Domain'; +export { default as DomainDisabled } from './DomainDisabled'; +export { default as DomainDisabledOutlined } from './DomainDisabledOutlined'; +export { default as DomainDisabledRounded } from './DomainDisabledRounded'; +export { default as DomainDisabledSharp } from './DomainDisabledSharp'; +export { default as DomainDisabledTwoTone } from './DomainDisabledTwoTone'; +export { default as DomainOutlined } from './DomainOutlined'; +export { default as DomainRounded } from './DomainRounded'; +export { default as DomainSharp } from './DomainSharp'; +export { default as DomainTwoTone } from './DomainTwoTone'; +export { default as DomainVerification } from './DomainVerification'; +export { default as DomainVerificationOutlined } from './DomainVerificationOutlined'; +export { default as DomainVerificationRounded } from './DomainVerificationRounded'; +export { default as DomainVerificationSharp } from './DomainVerificationSharp'; +export { default as DomainVerificationTwoTone } from './DomainVerificationTwoTone'; +export { default as Done } from './Done'; +export { default as DoneAll } from './DoneAll'; +export { default as DoneAllOutlined } from './DoneAllOutlined'; +export { default as DoneAllRounded } from './DoneAllRounded'; +export { default as DoneAllSharp } from './DoneAllSharp'; +export { default as DoneAllTwoTone } from './DoneAllTwoTone'; +export { default as DoneOutline } from './DoneOutline'; +export { default as DoneOutlineOutlined } from './DoneOutlineOutlined'; +export { default as DoneOutlineRounded } from './DoneOutlineRounded'; +export { default as DoneOutlineSharp } from './DoneOutlineSharp'; +export { default as DoneOutlineTwoTone } from './DoneOutlineTwoTone'; +export { default as DoneOutlined } from './DoneOutlined'; +export { default as DoneRounded } from './DoneRounded'; +export { default as DoneSharp } from './DoneSharp'; +export { default as DoneTwoTone } from './DoneTwoTone'; +export { default as DonutLarge } from './DonutLarge'; +export { default as DonutLargeOutlined } from './DonutLargeOutlined'; +export { default as DonutLargeRounded } from './DonutLargeRounded'; +export { default as DonutLargeSharp } from './DonutLargeSharp'; +export { default as DonutLargeTwoTone } from './DonutLargeTwoTone'; +export { default as DonutSmall } from './DonutSmall'; +export { default as DonutSmallOutlined } from './DonutSmallOutlined'; +export { default as DonutSmallRounded } from './DonutSmallRounded'; +export { default as DonutSmallSharp } from './DonutSmallSharp'; +export { default as DonutSmallTwoTone } from './DonutSmallTwoTone'; +export { default as DoorBack } from './DoorBack'; +export { default as DoorBackOutlined } from './DoorBackOutlined'; +export { default as DoorBackRounded } from './DoorBackRounded'; +export { default as DoorBackSharp } from './DoorBackSharp'; +export { default as DoorBackTwoTone } from './DoorBackTwoTone'; +export { default as DoorFront } from './DoorFront'; +export { default as DoorFrontOutlined } from './DoorFrontOutlined'; +export { default as DoorFrontRounded } from './DoorFrontRounded'; +export { default as DoorFrontSharp } from './DoorFrontSharp'; +export { default as DoorFrontTwoTone } from './DoorFrontTwoTone'; +export { default as DoorSliding } from './DoorSliding'; +export { default as DoorSlidingOutlined } from './DoorSlidingOutlined'; +export { default as DoorSlidingRounded } from './DoorSlidingRounded'; +export { default as DoorSlidingSharp } from './DoorSlidingSharp'; +export { default as DoorSlidingTwoTone } from './DoorSlidingTwoTone'; +export { default as Doorbell } from './Doorbell'; +export { default as DoorbellOutlined } from './DoorbellOutlined'; +export { default as DoorbellRounded } from './DoorbellRounded'; +export { default as DoorbellSharp } from './DoorbellSharp'; +export { default as DoorbellTwoTone } from './DoorbellTwoTone'; +export { default as DoubleArrow } from './DoubleArrow'; +export { default as DoubleArrowOutlined } from './DoubleArrowOutlined'; +export { default as DoubleArrowRounded } from './DoubleArrowRounded'; +export { default as DoubleArrowSharp } from './DoubleArrowSharp'; +export { default as DoubleArrowTwoTone } from './DoubleArrowTwoTone'; +export { default as DownhillSkiing } from './DownhillSkiing'; +export { default as DownhillSkiingOutlined } from './DownhillSkiingOutlined'; +export { default as DownhillSkiingRounded } from './DownhillSkiingRounded'; +export { default as DownhillSkiingSharp } from './DownhillSkiingSharp'; +export { default as DownhillSkiingTwoTone } from './DownhillSkiingTwoTone'; +export { default as Download } from './Download'; +export { default as DownloadDone } from './DownloadDone'; +export { default as DownloadDoneOutlined } from './DownloadDoneOutlined'; +export { default as DownloadDoneRounded } from './DownloadDoneRounded'; +export { default as DownloadDoneSharp } from './DownloadDoneSharp'; +export { default as DownloadDoneTwoTone } from './DownloadDoneTwoTone'; +export { default as DownloadForOffline } from './DownloadForOffline'; +export { default as DownloadForOfflineOutlined } from './DownloadForOfflineOutlined'; +export { default as DownloadForOfflineRounded } from './DownloadForOfflineRounded'; +export { default as DownloadForOfflineSharp } from './DownloadForOfflineSharp'; +export { default as DownloadForOfflineTwoTone } from './DownloadForOfflineTwoTone'; +export { default as DownloadOutlined } from './DownloadOutlined'; +export { default as DownloadRounded } from './DownloadRounded'; +export { default as DownloadSharp } from './DownloadSharp'; +export { default as DownloadTwoTone } from './DownloadTwoTone'; +export { default as Downloading } from './Downloading'; +export { default as DownloadingOutlined } from './DownloadingOutlined'; +export { default as DownloadingRounded } from './DownloadingRounded'; +export { default as DownloadingSharp } from './DownloadingSharp'; +export { default as DownloadingTwoTone } from './DownloadingTwoTone'; +export { default as Drafts } from './Drafts'; +export { default as DraftsOutlined } from './DraftsOutlined'; +export { default as DraftsRounded } from './DraftsRounded'; +export { default as DraftsSharp } from './DraftsSharp'; +export { default as DraftsTwoTone } from './DraftsTwoTone'; +export { default as DragHandle } from './DragHandle'; +export { default as DragHandleOutlined } from './DragHandleOutlined'; +export { default as DragHandleRounded } from './DragHandleRounded'; +export { default as DragHandleSharp } from './DragHandleSharp'; +export { default as DragHandleTwoTone } from './DragHandleTwoTone'; +export { default as DragIndicator } from './DragIndicator'; +export { default as DragIndicatorOutlined } from './DragIndicatorOutlined'; +export { default as DragIndicatorRounded } from './DragIndicatorRounded'; +export { default as DragIndicatorSharp } from './DragIndicatorSharp'; +export { default as DragIndicatorTwoTone } from './DragIndicatorTwoTone'; +export { default as DriveEta } from './DriveEta'; +export { default as DriveEtaOutlined } from './DriveEtaOutlined'; +export { default as DriveEtaRounded } from './DriveEtaRounded'; +export { default as DriveEtaSharp } from './DriveEtaSharp'; +export { default as DriveEtaTwoTone } from './DriveEtaTwoTone'; +export { default as DriveFileMove } from './DriveFileMove'; +export { default as DriveFileMoveOutlined } from './DriveFileMoveOutlined'; +export { default as DriveFileMoveRounded } from './DriveFileMoveRounded'; +export { default as DriveFileMoveSharp } from './DriveFileMoveSharp'; +export { default as DriveFileMoveTwoTone } from './DriveFileMoveTwoTone'; +export { default as DriveFileRenameOutline } from './DriveFileRenameOutline'; +export { default as DriveFileRenameOutlineOutlined } from './DriveFileRenameOutlineOutlined'; +export { default as DriveFileRenameOutlineRounded } from './DriveFileRenameOutlineRounded'; +export { default as DriveFileRenameOutlineSharp } from './DriveFileRenameOutlineSharp'; +export { default as DriveFileRenameOutlineTwoTone } from './DriveFileRenameOutlineTwoTone'; +export { default as DriveFolderUpload } from './DriveFolderUpload'; +export { default as DriveFolderUploadOutlined } from './DriveFolderUploadOutlined'; +export { default as DriveFolderUploadRounded } from './DriveFolderUploadRounded'; +export { default as DriveFolderUploadSharp } from './DriveFolderUploadSharp'; +export { default as DriveFolderUploadTwoTone } from './DriveFolderUploadTwoTone'; +export { default as Dry } from './Dry'; +export { default as DryCleaning } from './DryCleaning'; +export { default as DryCleaningOutlined } from './DryCleaningOutlined'; +export { default as DryCleaningRounded } from './DryCleaningRounded'; +export { default as DryCleaningSharp } from './DryCleaningSharp'; +export { default as DryCleaningTwoTone } from './DryCleaningTwoTone'; +export { default as DryOutlined } from './DryOutlined'; +export { default as DryRounded } from './DryRounded'; +export { default as DrySharp } from './DrySharp'; +export { default as DryTwoTone } from './DryTwoTone'; +export { default as Duo } from './Duo'; +export { default as DuoOutlined } from './DuoOutlined'; +export { default as DuoRounded } from './DuoRounded'; +export { default as DuoSharp } from './DuoSharp'; +export { default as DuoTwoTone } from './DuoTwoTone'; +export { default as Dvr } from './Dvr'; +export { default as DvrOutlined } from './DvrOutlined'; +export { default as DvrRounded } from './DvrRounded'; +export { default as DvrSharp } from './DvrSharp'; +export { default as DvrTwoTone } from './DvrTwoTone'; +export { default as DynamicFeed } from './DynamicFeed'; +export { default as DynamicFeedOutlined } from './DynamicFeedOutlined'; +export { default as DynamicFeedRounded } from './DynamicFeedRounded'; +export { default as DynamicFeedSharp } from './DynamicFeedSharp'; +export { default as DynamicFeedTwoTone } from './DynamicFeedTwoTone'; +export { default as DynamicForm } from './DynamicForm'; +export { default as DynamicFormOutlined } from './DynamicFormOutlined'; +export { default as DynamicFormRounded } from './DynamicFormRounded'; +export { default as DynamicFormSharp } from './DynamicFormSharp'; +export { default as DynamicFormTwoTone } from './DynamicFormTwoTone'; +export { default as EMobiledata } from './EMobiledata'; +export { default as EMobiledataOutlined } from './EMobiledataOutlined'; +export { default as EMobiledataRounded } from './EMobiledataRounded'; +export { default as EMobiledataSharp } from './EMobiledataSharp'; +export { default as EMobiledataTwoTone } from './EMobiledataTwoTone'; +export { default as Earbuds } from './Earbuds'; +export { default as EarbudsBattery } from './EarbudsBattery'; +export { default as EarbudsBatteryOutlined } from './EarbudsBatteryOutlined'; +export { default as EarbudsBatteryRounded } from './EarbudsBatteryRounded'; +export { default as EarbudsBatterySharp } from './EarbudsBatterySharp'; +export { default as EarbudsBatteryTwoTone } from './EarbudsBatteryTwoTone'; +export { default as EarbudsOutlined } from './EarbudsOutlined'; +export { default as EarbudsRounded } from './EarbudsRounded'; +export { default as EarbudsSharp } from './EarbudsSharp'; +export { default as EarbudsTwoTone } from './EarbudsTwoTone'; +export { default as East } from './East'; +export { default as EastOutlined } from './EastOutlined'; +export { default as EastRounded } from './EastRounded'; +export { default as EastSharp } from './EastSharp'; +export { default as EastTwoTone } from './EastTwoTone'; +export { default as EdgesensorHigh } from './EdgesensorHigh'; +export { default as EdgesensorHighOutlined } from './EdgesensorHighOutlined'; +export { default as EdgesensorHighRounded } from './EdgesensorHighRounded'; +export { default as EdgesensorHighSharp } from './EdgesensorHighSharp'; +export { default as EdgesensorHighTwoTone } from './EdgesensorHighTwoTone'; +export { default as EdgesensorLow } from './EdgesensorLow'; +export { default as EdgesensorLowOutlined } from './EdgesensorLowOutlined'; +export { default as EdgesensorLowRounded } from './EdgesensorLowRounded'; +export { default as EdgesensorLowSharp } from './EdgesensorLowSharp'; +export { default as EdgesensorLowTwoTone } from './EdgesensorLowTwoTone'; +export { default as Edit } from './Edit'; +export { default as EditAttributes } from './EditAttributes'; +export { default as EditAttributesOutlined } from './EditAttributesOutlined'; +export { default as EditAttributesRounded } from './EditAttributesRounded'; +export { default as EditAttributesSharp } from './EditAttributesSharp'; +export { default as EditAttributesTwoTone } from './EditAttributesTwoTone'; +export { default as EditLocation } from './EditLocation'; +export { default as EditLocationAlt } from './EditLocationAlt'; +export { default as EditLocationAltOutlined } from './EditLocationAltOutlined'; +export { default as EditLocationAltRounded } from './EditLocationAltRounded'; +export { default as EditLocationAltSharp } from './EditLocationAltSharp'; +export { default as EditLocationAltTwoTone } from './EditLocationAltTwoTone'; +export { default as EditLocationOutlined } from './EditLocationOutlined'; +export { default as EditLocationRounded } from './EditLocationRounded'; +export { default as EditLocationSharp } from './EditLocationSharp'; +export { default as EditLocationTwoTone } from './EditLocationTwoTone'; +export { default as EditNotifications } from './EditNotifications'; +export { default as EditNotificationsOutlined } from './EditNotificationsOutlined'; +export { default as EditNotificationsRounded } from './EditNotificationsRounded'; +export { default as EditNotificationsSharp } from './EditNotificationsSharp'; +export { default as EditNotificationsTwoTone } from './EditNotificationsTwoTone'; +export { default as EditOff } from './EditOff'; +export { default as EditOffOutlined } from './EditOffOutlined'; +export { default as EditOffRounded } from './EditOffRounded'; +export { default as EditOffSharp } from './EditOffSharp'; +export { default as EditOffTwoTone } from './EditOffTwoTone'; +export { default as EditOutlined } from './EditOutlined'; +export { default as EditRoad } from './EditRoad'; +export { default as EditRoadOutlined } from './EditRoadOutlined'; +export { default as EditRoadRounded } from './EditRoadRounded'; +export { default as EditRoadSharp } from './EditRoadSharp'; +export { default as EditRoadTwoTone } from './EditRoadTwoTone'; +export { default as EditRounded } from './EditRounded'; +export { default as EditSharp } from './EditSharp'; +export { default as EditTwoTone } from './EditTwoTone'; +export { default as EightK } from './EightK'; +export { default as EightKOutlined } from './EightKOutlined'; +export { default as EightKPlus } from './EightKPlus'; +export { default as EightKPlusOutlined } from './EightKPlusOutlined'; +export { default as EightKPlusRounded } from './EightKPlusRounded'; +export { default as EightKPlusSharp } from './EightKPlusSharp'; +export { default as EightKPlusTwoTone } from './EightKPlusTwoTone'; +export { default as EightKRounded } from './EightKRounded'; +export { default as EightKSharp } from './EightKSharp'; +export { default as EightKTwoTone } from './EightKTwoTone'; +export { default as EightMp } from './EightMp'; +export { default as EightMpOutlined } from './EightMpOutlined'; +export { default as EightMpRounded } from './EightMpRounded'; +export { default as EightMpSharp } from './EightMpSharp'; +export { default as EightMpTwoTone } from './EightMpTwoTone'; +export { default as EightteenMp } from './EightteenMp'; +export { default as EightteenMpOutlined } from './EightteenMpOutlined'; +export { default as EightteenMpRounded } from './EightteenMpRounded'; +export { default as EightteenMpSharp } from './EightteenMpSharp'; +export { default as EightteenMpTwoTone } from './EightteenMpTwoTone'; +export { default as Eject } from './Eject'; +export { default as EjectOutlined } from './EjectOutlined'; +export { default as EjectRounded } from './EjectRounded'; +export { default as EjectSharp } from './EjectSharp'; +export { default as EjectTwoTone } from './EjectTwoTone'; +export { default as Elderly } from './Elderly'; +export { default as ElderlyOutlined } from './ElderlyOutlined'; +export { default as ElderlyRounded } from './ElderlyRounded'; +export { default as ElderlySharp } from './ElderlySharp'; +export { default as ElderlyTwoTone } from './ElderlyTwoTone'; +export { default as ElectricBike } from './ElectricBike'; +export { default as ElectricBikeOutlined } from './ElectricBikeOutlined'; +export { default as ElectricBikeRounded } from './ElectricBikeRounded'; +export { default as ElectricBikeSharp } from './ElectricBikeSharp'; +export { default as ElectricBikeTwoTone } from './ElectricBikeTwoTone'; +export { default as ElectricCar } from './ElectricCar'; +export { default as ElectricCarOutlined } from './ElectricCarOutlined'; +export { default as ElectricCarRounded } from './ElectricCarRounded'; +export { default as ElectricCarSharp } from './ElectricCarSharp'; +export { default as ElectricCarTwoTone } from './ElectricCarTwoTone'; +export { default as ElectricMoped } from './ElectricMoped'; +export { default as ElectricMopedOutlined } from './ElectricMopedOutlined'; +export { default as ElectricMopedRounded } from './ElectricMopedRounded'; +export { default as ElectricMopedSharp } from './ElectricMopedSharp'; +export { default as ElectricMopedTwoTone } from './ElectricMopedTwoTone'; +export { default as ElectricRickshaw } from './ElectricRickshaw'; +export { default as ElectricRickshawOutlined } from './ElectricRickshawOutlined'; +export { default as ElectricRickshawRounded } from './ElectricRickshawRounded'; +export { default as ElectricRickshawSharp } from './ElectricRickshawSharp'; +export { default as ElectricRickshawTwoTone } from './ElectricRickshawTwoTone'; +export { default as ElectricScooter } from './ElectricScooter'; +export { default as ElectricScooterOutlined } from './ElectricScooterOutlined'; +export { default as ElectricScooterRounded } from './ElectricScooterRounded'; +export { default as ElectricScooterSharp } from './ElectricScooterSharp'; +export { default as ElectricScooterTwoTone } from './ElectricScooterTwoTone'; +export { default as ElectricalServices } from './ElectricalServices'; +export { default as ElectricalServicesOutlined } from './ElectricalServicesOutlined'; +export { default as ElectricalServicesRounded } from './ElectricalServicesRounded'; +export { default as ElectricalServicesSharp } from './ElectricalServicesSharp'; +export { default as ElectricalServicesTwoTone } from './ElectricalServicesTwoTone'; +export { default as Elevator } from './Elevator'; +export { default as ElevatorOutlined } from './ElevatorOutlined'; +export { default as ElevatorRounded } from './ElevatorRounded'; +export { default as ElevatorSharp } from './ElevatorSharp'; +export { default as ElevatorTwoTone } from './ElevatorTwoTone'; +export { default as ElevenMp } from './ElevenMp'; +export { default as ElevenMpOutlined } from './ElevenMpOutlined'; +export { default as ElevenMpRounded } from './ElevenMpRounded'; +export { default as ElevenMpSharp } from './ElevenMpSharp'; +export { default as ElevenMpTwoTone } from './ElevenMpTwoTone'; +export { default as Email } from './Email'; +export { default as EmailOutlined } from './EmailOutlined'; +export { default as EmailRounded } from './EmailRounded'; +export { default as EmailSharp } from './EmailSharp'; +export { default as EmailTwoTone } from './EmailTwoTone'; +export { default as EmojiEmotions } from './EmojiEmotions'; +export { default as EmojiEmotionsOutlined } from './EmojiEmotionsOutlined'; +export { default as EmojiEmotionsRounded } from './EmojiEmotionsRounded'; +export { default as EmojiEmotionsSharp } from './EmojiEmotionsSharp'; +export { default as EmojiEmotionsTwoTone } from './EmojiEmotionsTwoTone'; +export { default as EmojiEvents } from './EmojiEvents'; +export { default as EmojiEventsOutlined } from './EmojiEventsOutlined'; +export { default as EmojiEventsRounded } from './EmojiEventsRounded'; +export { default as EmojiEventsSharp } from './EmojiEventsSharp'; +export { default as EmojiEventsTwoTone } from './EmojiEventsTwoTone'; +export { default as EmojiFlags } from './EmojiFlags'; +export { default as EmojiFlagsOutlined } from './EmojiFlagsOutlined'; +export { default as EmojiFlagsRounded } from './EmojiFlagsRounded'; +export { default as EmojiFlagsSharp } from './EmojiFlagsSharp'; +export { default as EmojiFlagsTwoTone } from './EmojiFlagsTwoTone'; +export { default as EmojiFoodBeverage } from './EmojiFoodBeverage'; +export { default as EmojiFoodBeverageOutlined } from './EmojiFoodBeverageOutlined'; +export { default as EmojiFoodBeverageRounded } from './EmojiFoodBeverageRounded'; +export { default as EmojiFoodBeverageSharp } from './EmojiFoodBeverageSharp'; +export { default as EmojiFoodBeverageTwoTone } from './EmojiFoodBeverageTwoTone'; +export { default as EmojiNature } from './EmojiNature'; +export { default as EmojiNatureOutlined } from './EmojiNatureOutlined'; +export { default as EmojiNatureRounded } from './EmojiNatureRounded'; +export { default as EmojiNatureSharp } from './EmojiNatureSharp'; +export { default as EmojiNatureTwoTone } from './EmojiNatureTwoTone'; +export { default as EmojiObjects } from './EmojiObjects'; +export { default as EmojiObjectsOutlined } from './EmojiObjectsOutlined'; +export { default as EmojiObjectsRounded } from './EmojiObjectsRounded'; +export { default as EmojiObjectsSharp } from './EmojiObjectsSharp'; +export { default as EmojiObjectsTwoTone } from './EmojiObjectsTwoTone'; +export { default as EmojiPeople } from './EmojiPeople'; +export { default as EmojiPeopleOutlined } from './EmojiPeopleOutlined'; +export { default as EmojiPeopleRounded } from './EmojiPeopleRounded'; +export { default as EmojiPeopleSharp } from './EmojiPeopleSharp'; +export { default as EmojiPeopleTwoTone } from './EmojiPeopleTwoTone'; +export { default as EmojiSymbols } from './EmojiSymbols'; +export { default as EmojiSymbolsOutlined } from './EmojiSymbolsOutlined'; +export { default as EmojiSymbolsRounded } from './EmojiSymbolsRounded'; +export { default as EmojiSymbolsSharp } from './EmojiSymbolsSharp'; +export { default as EmojiSymbolsTwoTone } from './EmojiSymbolsTwoTone'; +export { default as EmojiTransportation } from './EmojiTransportation'; +export { default as EmojiTransportationOutlined } from './EmojiTransportationOutlined'; +export { default as EmojiTransportationRounded } from './EmojiTransportationRounded'; +export { default as EmojiTransportationSharp } from './EmojiTransportationSharp'; +export { default as EmojiTransportationTwoTone } from './EmojiTransportationTwoTone'; +export { default as Engineering } from './Engineering'; +export { default as EngineeringOutlined } from './EngineeringOutlined'; +export { default as EngineeringRounded } from './EngineeringRounded'; +export { default as EngineeringSharp } from './EngineeringSharp'; +export { default as EngineeringTwoTone } from './EngineeringTwoTone'; +export { default as EnhancedEncryption } from './EnhancedEncryption'; +export { default as EnhancedEncryptionOutlined } from './EnhancedEncryptionOutlined'; +export { default as EnhancedEncryptionRounded } from './EnhancedEncryptionRounded'; +export { default as EnhancedEncryptionSharp } from './EnhancedEncryptionSharp'; +export { default as EnhancedEncryptionTwoTone } from './EnhancedEncryptionTwoTone'; +export { default as Equalizer } from './Equalizer'; +export { default as EqualizerOutlined } from './EqualizerOutlined'; +export { default as EqualizerRounded } from './EqualizerRounded'; +export { default as EqualizerSharp } from './EqualizerSharp'; +export { default as EqualizerTwoTone } from './EqualizerTwoTone'; +export { default as Error } from './Error'; +export { default as ErrorOutline } from './ErrorOutline'; +export { default as ErrorOutlineOutlined } from './ErrorOutlineOutlined'; +export { default as ErrorOutlineRounded } from './ErrorOutlineRounded'; +export { default as ErrorOutlineSharp } from './ErrorOutlineSharp'; +export { default as ErrorOutlineTwoTone } from './ErrorOutlineTwoTone'; +export { default as ErrorOutlined } from './ErrorOutlined'; +export { default as ErrorRounded } from './ErrorRounded'; +export { default as ErrorSharp } from './ErrorSharp'; +export { default as ErrorTwoTone } from './ErrorTwoTone'; +export { default as Escalator } from './Escalator'; +export { default as EscalatorOutlined } from './EscalatorOutlined'; +export { default as EscalatorRounded } from './EscalatorRounded'; +export { default as EscalatorSharp } from './EscalatorSharp'; +export { default as EscalatorTwoTone } from './EscalatorTwoTone'; +export { default as EscalatorWarning } from './EscalatorWarning'; +export { default as EscalatorWarningOutlined } from './EscalatorWarningOutlined'; +export { default as EscalatorWarningRounded } from './EscalatorWarningRounded'; +export { default as EscalatorWarningSharp } from './EscalatorWarningSharp'; +export { default as EscalatorWarningTwoTone } from './EscalatorWarningTwoTone'; +export { default as Euro } from './Euro'; +export { default as EuroOutlined } from './EuroOutlined'; +export { default as EuroRounded } from './EuroRounded'; +export { default as EuroSharp } from './EuroSharp'; +export { default as EuroSymbol } from './EuroSymbol'; +export { default as EuroSymbolOutlined } from './EuroSymbolOutlined'; +export { default as EuroSymbolRounded } from './EuroSymbolRounded'; +export { default as EuroSymbolSharp } from './EuroSymbolSharp'; +export { default as EuroSymbolTwoTone } from './EuroSymbolTwoTone'; +export { default as EuroTwoTone } from './EuroTwoTone'; +export { default as EvStation } from './EvStation'; +export { default as EvStationOutlined } from './EvStationOutlined'; +export { default as EvStationRounded } from './EvStationRounded'; +export { default as EvStationSharp } from './EvStationSharp'; +export { default as EvStationTwoTone } from './EvStationTwoTone'; +export { default as Event } from './Event'; +export { default as EventAvailable } from './EventAvailable'; +export { default as EventAvailableOutlined } from './EventAvailableOutlined'; +export { default as EventAvailableRounded } from './EventAvailableRounded'; +export { default as EventAvailableSharp } from './EventAvailableSharp'; +export { default as EventAvailableTwoTone } from './EventAvailableTwoTone'; +export { default as EventBusy } from './EventBusy'; +export { default as EventBusyOutlined } from './EventBusyOutlined'; +export { default as EventBusyRounded } from './EventBusyRounded'; +export { default as EventBusySharp } from './EventBusySharp'; +export { default as EventBusyTwoTone } from './EventBusyTwoTone'; +export { default as EventNote } from './EventNote'; +export { default as EventNoteOutlined } from './EventNoteOutlined'; +export { default as EventNoteRounded } from './EventNoteRounded'; +export { default as EventNoteSharp } from './EventNoteSharp'; +export { default as EventNoteTwoTone } from './EventNoteTwoTone'; +export { default as EventOutlined } from './EventOutlined'; +export { default as EventRounded } from './EventRounded'; +export { default as EventSeat } from './EventSeat'; +export { default as EventSeatOutlined } from './EventSeatOutlined'; +export { default as EventSeatRounded } from './EventSeatRounded'; +export { default as EventSeatSharp } from './EventSeatSharp'; +export { default as EventSeatTwoTone } from './EventSeatTwoTone'; +export { default as EventSharp } from './EventSharp'; +export { default as EventTwoTone } from './EventTwoTone'; +export { default as ExitToApp } from './ExitToApp'; +export { default as ExitToAppOutlined } from './ExitToAppOutlined'; +export { default as ExitToAppRounded } from './ExitToAppRounded'; +export { default as ExitToAppSharp } from './ExitToAppSharp'; +export { default as ExitToAppTwoTone } from './ExitToAppTwoTone'; +export { default as Expand } from './Expand'; +export { default as ExpandLess } from './ExpandLess'; +export { default as ExpandLessOutlined } from './ExpandLessOutlined'; +export { default as ExpandLessRounded } from './ExpandLessRounded'; +export { default as ExpandLessSharp } from './ExpandLessSharp'; +export { default as ExpandLessTwoTone } from './ExpandLessTwoTone'; +export { default as ExpandMore } from './ExpandMore'; +export { default as ExpandMoreOutlined } from './ExpandMoreOutlined'; +export { default as ExpandMoreRounded } from './ExpandMoreRounded'; +export { default as ExpandMoreSharp } from './ExpandMoreSharp'; +export { default as ExpandMoreTwoTone } from './ExpandMoreTwoTone'; +export { default as ExpandOutlined } from './ExpandOutlined'; +export { default as ExpandRounded } from './ExpandRounded'; +export { default as ExpandSharp } from './ExpandSharp'; +export { default as ExpandTwoTone } from './ExpandTwoTone'; +export { default as Explicit } from './Explicit'; +export { default as ExplicitOutlined } from './ExplicitOutlined'; +export { default as ExplicitRounded } from './ExplicitRounded'; +export { default as ExplicitSharp } from './ExplicitSharp'; +export { default as ExplicitTwoTone } from './ExplicitTwoTone'; +export { default as Explore } from './Explore'; +export { default as ExploreOff } from './ExploreOff'; +export { default as ExploreOffOutlined } from './ExploreOffOutlined'; +export { default as ExploreOffRounded } from './ExploreOffRounded'; +export { default as ExploreOffSharp } from './ExploreOffSharp'; +export { default as ExploreOffTwoTone } from './ExploreOffTwoTone'; +export { default as ExploreOutlined } from './ExploreOutlined'; +export { default as ExploreRounded } from './ExploreRounded'; +export { default as ExploreSharp } from './ExploreSharp'; +export { default as ExploreTwoTone } from './ExploreTwoTone'; +export { default as Exposure } from './Exposure'; +export { default as ExposureOutlined } from './ExposureOutlined'; +export { default as ExposureRounded } from './ExposureRounded'; +export { default as ExposureSharp } from './ExposureSharp'; +export { default as ExposureTwoTone } from './ExposureTwoTone'; +export { default as Extension } from './Extension'; +export { default as ExtensionOff } from './ExtensionOff'; +export { default as ExtensionOffOutlined } from './ExtensionOffOutlined'; +export { default as ExtensionOffRounded } from './ExtensionOffRounded'; +export { default as ExtensionOffSharp } from './ExtensionOffSharp'; +export { default as ExtensionOffTwoTone } from './ExtensionOffTwoTone'; +export { default as ExtensionOutlined } from './ExtensionOutlined'; +export { default as ExtensionRounded } from './ExtensionRounded'; +export { default as ExtensionSharp } from './ExtensionSharp'; +export { default as ExtensionTwoTone } from './ExtensionTwoTone'; +export { default as Face } from './Face'; +export { default as FaceOutlined } from './FaceOutlined'; +export { default as FaceRetouchingNatural } from './FaceRetouchingNatural'; +export { default as FaceRetouchingNaturalOutlined } from './FaceRetouchingNaturalOutlined'; +export { default as FaceRetouchingNaturalRounded } from './FaceRetouchingNaturalRounded'; +export { default as FaceRetouchingNaturalSharp } from './FaceRetouchingNaturalSharp'; +export { default as FaceRetouchingNaturalTwoTone } from './FaceRetouchingNaturalTwoTone'; +export { default as FaceRetouchingOff } from './FaceRetouchingOff'; +export { default as FaceRetouchingOffOutlined } from './FaceRetouchingOffOutlined'; +export { default as FaceRetouchingOffRounded } from './FaceRetouchingOffRounded'; +export { default as FaceRetouchingOffSharp } from './FaceRetouchingOffSharp'; +export { default as FaceRetouchingOffTwoTone } from './FaceRetouchingOffTwoTone'; +export { default as FaceRounded } from './FaceRounded'; +export { default as FaceSharp } from './FaceSharp'; +export { default as FaceTwoTone } from './FaceTwoTone'; +export { default as Facebook } from './Facebook'; +export { default as FacebookOutlined } from './FacebookOutlined'; +export { default as FacebookRounded } from './FacebookRounded'; +export { default as FacebookSharp } from './FacebookSharp'; +export { default as FacebookTwoTone } from './FacebookTwoTone'; +export { default as FactCheck } from './FactCheck'; +export { default as FactCheckOutlined } from './FactCheckOutlined'; +export { default as FactCheckRounded } from './FactCheckRounded'; +export { default as FactCheckSharp } from './FactCheckSharp'; +export { default as FactCheckTwoTone } from './FactCheckTwoTone'; +export { default as FamilyRestroom } from './FamilyRestroom'; +export { default as FamilyRestroomOutlined } from './FamilyRestroomOutlined'; +export { default as FamilyRestroomRounded } from './FamilyRestroomRounded'; +export { default as FamilyRestroomSharp } from './FamilyRestroomSharp'; +export { default as FamilyRestroomTwoTone } from './FamilyRestroomTwoTone'; +export { default as FastForward } from './FastForward'; +export { default as FastForwardOutlined } from './FastForwardOutlined'; +export { default as FastForwardRounded } from './FastForwardRounded'; +export { default as FastForwardSharp } from './FastForwardSharp'; +export { default as FastForwardTwoTone } from './FastForwardTwoTone'; +export { default as FastRewind } from './FastRewind'; +export { default as FastRewindOutlined } from './FastRewindOutlined'; +export { default as FastRewindRounded } from './FastRewindRounded'; +export { default as FastRewindSharp } from './FastRewindSharp'; +export { default as FastRewindTwoTone } from './FastRewindTwoTone'; +export { default as Fastfood } from './Fastfood'; +export { default as FastfoodOutlined } from './FastfoodOutlined'; +export { default as FastfoodRounded } from './FastfoodRounded'; +export { default as FastfoodSharp } from './FastfoodSharp'; +export { default as FastfoodTwoTone } from './FastfoodTwoTone'; +export { default as Favorite } from './Favorite'; +export { default as FavoriteBorder } from './FavoriteBorder'; +export { default as FavoriteBorderOutlined } from './FavoriteBorderOutlined'; +export { default as FavoriteBorderRounded } from './FavoriteBorderRounded'; +export { default as FavoriteBorderSharp } from './FavoriteBorderSharp'; +export { default as FavoriteBorderTwoTone } from './FavoriteBorderTwoTone'; +export { default as FavoriteOutlined } from './FavoriteOutlined'; +export { default as FavoriteRounded } from './FavoriteRounded'; +export { default as FavoriteSharp } from './FavoriteSharp'; +export { default as FavoriteTwoTone } from './FavoriteTwoTone'; +export { default as FeaturedPlayList } from './FeaturedPlayList'; +export { default as FeaturedPlayListOutlined } from './FeaturedPlayListOutlined'; +export { default as FeaturedPlayListRounded } from './FeaturedPlayListRounded'; +export { default as FeaturedPlayListSharp } from './FeaturedPlayListSharp'; +export { default as FeaturedPlayListTwoTone } from './FeaturedPlayListTwoTone'; +export { default as FeaturedVideo } from './FeaturedVideo'; +export { default as FeaturedVideoOutlined } from './FeaturedVideoOutlined'; +export { default as FeaturedVideoRounded } from './FeaturedVideoRounded'; +export { default as FeaturedVideoSharp } from './FeaturedVideoSharp'; +export { default as FeaturedVideoTwoTone } from './FeaturedVideoTwoTone'; +export { default as Feed } from './Feed'; +export { default as FeedOutlined } from './FeedOutlined'; +export { default as FeedRounded } from './FeedRounded'; +export { default as FeedSharp } from './FeedSharp'; +export { default as FeedTwoTone } from './FeedTwoTone'; +export { default as Feedback } from './Feedback'; +export { default as FeedbackOutlined } from './FeedbackOutlined'; +export { default as FeedbackRounded } from './FeedbackRounded'; +export { default as FeedbackSharp } from './FeedbackSharp'; +export { default as FeedbackTwoTone } from './FeedbackTwoTone'; +export { default as Female } from './Female'; +export { default as FemaleOutlined } from './FemaleOutlined'; +export { default as FemaleRounded } from './FemaleRounded'; +export { default as FemaleSharp } from './FemaleSharp'; +export { default as FemaleTwoTone } from './FemaleTwoTone'; +export { default as Fence } from './Fence'; +export { default as FenceOutlined } from './FenceOutlined'; +export { default as FenceRounded } from './FenceRounded'; +export { default as FenceSharp } from './FenceSharp'; +export { default as FenceTwoTone } from './FenceTwoTone'; +export { default as Festival } from './Festival'; +export { default as FestivalOutlined } from './FestivalOutlined'; +export { default as FestivalRounded } from './FestivalRounded'; +export { default as FestivalSharp } from './FestivalSharp'; +export { default as FestivalTwoTone } from './FestivalTwoTone'; +export { default as FiberDvr } from './FiberDvr'; +export { default as FiberDvrOutlined } from './FiberDvrOutlined'; +export { default as FiberDvrRounded } from './FiberDvrRounded'; +export { default as FiberDvrSharp } from './FiberDvrSharp'; +export { default as FiberDvrTwoTone } from './FiberDvrTwoTone'; +export { default as FiberManualRecord } from './FiberManualRecord'; +export { default as FiberManualRecordOutlined } from './FiberManualRecordOutlined'; +export { default as FiberManualRecordRounded } from './FiberManualRecordRounded'; +export { default as FiberManualRecordSharp } from './FiberManualRecordSharp'; +export { default as FiberManualRecordTwoTone } from './FiberManualRecordTwoTone'; +export { default as FiberNew } from './FiberNew'; +export { default as FiberNewOutlined } from './FiberNewOutlined'; +export { default as FiberNewRounded } from './FiberNewRounded'; +export { default as FiberNewSharp } from './FiberNewSharp'; +export { default as FiberNewTwoTone } from './FiberNewTwoTone'; +export { default as FiberPin } from './FiberPin'; +export { default as FiberPinOutlined } from './FiberPinOutlined'; +export { default as FiberPinRounded } from './FiberPinRounded'; +export { default as FiberPinSharp } from './FiberPinSharp'; +export { default as FiberPinTwoTone } from './FiberPinTwoTone'; +export { default as FiberSmartRecord } from './FiberSmartRecord'; +export { default as FiberSmartRecordOutlined } from './FiberSmartRecordOutlined'; +export { default as FiberSmartRecordRounded } from './FiberSmartRecordRounded'; +export { default as FiberSmartRecordSharp } from './FiberSmartRecordSharp'; +export { default as FiberSmartRecordTwoTone } from './FiberSmartRecordTwoTone'; +export { default as FileCopy } from './FileCopy'; +export { default as FileCopyOutlined } from './FileCopyOutlined'; +export { default as FileCopyRounded } from './FileCopyRounded'; +export { default as FileCopySharp } from './FileCopySharp'; +export { default as FileCopyTwoTone } from './FileCopyTwoTone'; +export { default as FileDownload } from './FileDownload'; +export { default as FileDownloadDone } from './FileDownloadDone'; +export { default as FileDownloadDoneOutlined } from './FileDownloadDoneOutlined'; +export { default as FileDownloadDoneRounded } from './FileDownloadDoneRounded'; +export { default as FileDownloadDoneSharp } from './FileDownloadDoneSharp'; +export { default as FileDownloadDoneTwoTone } from './FileDownloadDoneTwoTone'; +export { default as FileDownloadOff } from './FileDownloadOff'; +export { default as FileDownloadOffOutlined } from './FileDownloadOffOutlined'; +export { default as FileDownloadOffRounded } from './FileDownloadOffRounded'; +export { default as FileDownloadOffSharp } from './FileDownloadOffSharp'; +export { default as FileDownloadOffTwoTone } from './FileDownloadOffTwoTone'; +export { default as FileDownloadOutlined } from './FileDownloadOutlined'; +export { default as FileDownloadRounded } from './FileDownloadRounded'; +export { default as FileDownloadSharp } from './FileDownloadSharp'; +export { default as FileDownloadTwoTone } from './FileDownloadTwoTone'; +export { default as FilePresent } from './FilePresent'; +export { default as FilePresentOutlined } from './FilePresentOutlined'; +export { default as FilePresentRounded } from './FilePresentRounded'; +export { default as FilePresentSharp } from './FilePresentSharp'; +export { default as FilePresentTwoTone } from './FilePresentTwoTone'; +export { default as FileUpload } from './FileUpload'; +export { default as FileUploadOutlined } from './FileUploadOutlined'; +export { default as FileUploadRounded } from './FileUploadRounded'; +export { default as FileUploadSharp } from './FileUploadSharp'; +export { default as FileUploadTwoTone } from './FileUploadTwoTone'; +export { default as Filter } from './Filter'; +export { default as Filter1 } from './Filter1'; +export { default as Filter1Outlined } from './Filter1Outlined'; +export { default as Filter1Rounded } from './Filter1Rounded'; +export { default as Filter1Sharp } from './Filter1Sharp'; +export { default as Filter1TwoTone } from './Filter1TwoTone'; +export { default as Filter2 } from './Filter2'; +export { default as Filter2Outlined } from './Filter2Outlined'; +export { default as Filter2Rounded } from './Filter2Rounded'; +export { default as Filter2Sharp } from './Filter2Sharp'; +export { default as Filter2TwoTone } from './Filter2TwoTone'; +export { default as Filter3 } from './Filter3'; +export { default as Filter3Outlined } from './Filter3Outlined'; +export { default as Filter3Rounded } from './Filter3Rounded'; +export { default as Filter3Sharp } from './Filter3Sharp'; +export { default as Filter3TwoTone } from './Filter3TwoTone'; +export { default as Filter4 } from './Filter4'; +export { default as Filter4Outlined } from './Filter4Outlined'; +export { default as Filter4Rounded } from './Filter4Rounded'; +export { default as Filter4Sharp } from './Filter4Sharp'; +export { default as Filter4TwoTone } from './Filter4TwoTone'; +export { default as Filter5 } from './Filter5'; +export { default as Filter5Outlined } from './Filter5Outlined'; +export { default as Filter5Rounded } from './Filter5Rounded'; +export { default as Filter5Sharp } from './Filter5Sharp'; +export { default as Filter5TwoTone } from './Filter5TwoTone'; +export { default as Filter6 } from './Filter6'; +export { default as Filter6Outlined } from './Filter6Outlined'; +export { default as Filter6Rounded } from './Filter6Rounded'; +export { default as Filter6Sharp } from './Filter6Sharp'; +export { default as Filter6TwoTone } from './Filter6TwoTone'; +export { default as Filter7 } from './Filter7'; +export { default as Filter7Outlined } from './Filter7Outlined'; +export { default as Filter7Rounded } from './Filter7Rounded'; +export { default as Filter7Sharp } from './Filter7Sharp'; +export { default as Filter7TwoTone } from './Filter7TwoTone'; +export { default as Filter8 } from './Filter8'; +export { default as Filter8Outlined } from './Filter8Outlined'; +export { default as Filter8Rounded } from './Filter8Rounded'; +export { default as Filter8Sharp } from './Filter8Sharp'; +export { default as Filter8TwoTone } from './Filter8TwoTone'; +export { default as Filter9 } from './Filter9'; +export { default as Filter9Outlined } from './Filter9Outlined'; +export { default as Filter9Plus } from './Filter9Plus'; +export { default as Filter9PlusOutlined } from './Filter9PlusOutlined'; +export { default as Filter9PlusRounded } from './Filter9PlusRounded'; +export { default as Filter9PlusSharp } from './Filter9PlusSharp'; +export { default as Filter9PlusTwoTone } from './Filter9PlusTwoTone'; +export { default as Filter9Rounded } from './Filter9Rounded'; +export { default as Filter9Sharp } from './Filter9Sharp'; +export { default as Filter9TwoTone } from './Filter9TwoTone'; +export { default as FilterAlt } from './FilterAlt'; +export { default as FilterAltOutlined } from './FilterAltOutlined'; +export { default as FilterAltRounded } from './FilterAltRounded'; +export { default as FilterAltSharp } from './FilterAltSharp'; +export { default as FilterAltTwoTone } from './FilterAltTwoTone'; +export { default as FilterBAndW } from './FilterBAndW'; +export { default as FilterBAndWOutlined } from './FilterBAndWOutlined'; +export { default as FilterBAndWRounded } from './FilterBAndWRounded'; +export { default as FilterBAndWSharp } from './FilterBAndWSharp'; +export { default as FilterBAndWTwoTone } from './FilterBAndWTwoTone'; +export { default as FilterCenterFocus } from './FilterCenterFocus'; +export { default as FilterCenterFocusOutlined } from './FilterCenterFocusOutlined'; +export { default as FilterCenterFocusRounded } from './FilterCenterFocusRounded'; +export { default as FilterCenterFocusSharp } from './FilterCenterFocusSharp'; +export { default as FilterCenterFocusTwoTone } from './FilterCenterFocusTwoTone'; +export { default as FilterDrama } from './FilterDrama'; +export { default as FilterDramaOutlined } from './FilterDramaOutlined'; +export { default as FilterDramaRounded } from './FilterDramaRounded'; +export { default as FilterDramaSharp } from './FilterDramaSharp'; +export { default as FilterDramaTwoTone } from './FilterDramaTwoTone'; +export { default as FilterFrames } from './FilterFrames'; +export { default as FilterFramesOutlined } from './FilterFramesOutlined'; +export { default as FilterFramesRounded } from './FilterFramesRounded'; +export { default as FilterFramesSharp } from './FilterFramesSharp'; +export { default as FilterFramesTwoTone } from './FilterFramesTwoTone'; +export { default as FilterHdr } from './FilterHdr'; +export { default as FilterHdrOutlined } from './FilterHdrOutlined'; +export { default as FilterHdrRounded } from './FilterHdrRounded'; +export { default as FilterHdrSharp } from './FilterHdrSharp'; +export { default as FilterHdrTwoTone } from './FilterHdrTwoTone'; +export { default as FilterList } from './FilterList'; +export { default as FilterListOutlined } from './FilterListOutlined'; +export { default as FilterListRounded } from './FilterListRounded'; +export { default as FilterListSharp } from './FilterListSharp'; +export { default as FilterListTwoTone } from './FilterListTwoTone'; +export { default as FilterNone } from './FilterNone'; +export { default as FilterNoneOutlined } from './FilterNoneOutlined'; +export { default as FilterNoneRounded } from './FilterNoneRounded'; +export { default as FilterNoneSharp } from './FilterNoneSharp'; +export { default as FilterNoneTwoTone } from './FilterNoneTwoTone'; +export { default as FilterOutlined } from './FilterOutlined'; +export { default as FilterRounded } from './FilterRounded'; +export { default as FilterSharp } from './FilterSharp'; +export { default as FilterTiltShift } from './FilterTiltShift'; +export { default as FilterTiltShiftOutlined } from './FilterTiltShiftOutlined'; +export { default as FilterTiltShiftRounded } from './FilterTiltShiftRounded'; +export { default as FilterTiltShiftSharp } from './FilterTiltShiftSharp'; +export { default as FilterTiltShiftTwoTone } from './FilterTiltShiftTwoTone'; +export { default as FilterTwoTone } from './FilterTwoTone'; +export { default as FilterVintage } from './FilterVintage'; +export { default as FilterVintageOutlined } from './FilterVintageOutlined'; +export { default as FilterVintageRounded } from './FilterVintageRounded'; +export { default as FilterVintageSharp } from './FilterVintageSharp'; +export { default as FilterVintageTwoTone } from './FilterVintageTwoTone'; +export { default as FindInPage } from './FindInPage'; +export { default as FindInPageOutlined } from './FindInPageOutlined'; +export { default as FindInPageRounded } from './FindInPageRounded'; +export { default as FindInPageSharp } from './FindInPageSharp'; +export { default as FindInPageTwoTone } from './FindInPageTwoTone'; +export { default as FindReplace } from './FindReplace'; +export { default as FindReplaceOutlined } from './FindReplaceOutlined'; +export { default as FindReplaceRounded } from './FindReplaceRounded'; +export { default as FindReplaceSharp } from './FindReplaceSharp'; +export { default as FindReplaceTwoTone } from './FindReplaceTwoTone'; +export { default as Fingerprint } from './Fingerprint'; +export { default as FingerprintOutlined } from './FingerprintOutlined'; +export { default as FingerprintRounded } from './FingerprintRounded'; +export { default as FingerprintSharp } from './FingerprintSharp'; +export { default as FingerprintTwoTone } from './FingerprintTwoTone'; +export { default as FireExtinguisher } from './FireExtinguisher'; +export { default as FireExtinguisherOutlined } from './FireExtinguisherOutlined'; +export { default as FireExtinguisherRounded } from './FireExtinguisherRounded'; +export { default as FireExtinguisherSharp } from './FireExtinguisherSharp'; +export { default as FireExtinguisherTwoTone } from './FireExtinguisherTwoTone'; +export { default as Fireplace } from './Fireplace'; +export { default as FireplaceOutlined } from './FireplaceOutlined'; +export { default as FireplaceRounded } from './FireplaceRounded'; +export { default as FireplaceSharp } from './FireplaceSharp'; +export { default as FireplaceTwoTone } from './FireplaceTwoTone'; +export { default as FirstPage } from './FirstPage'; +export { default as FirstPageOutlined } from './FirstPageOutlined'; +export { default as FirstPageRounded } from './FirstPageRounded'; +export { default as FirstPageSharp } from './FirstPageSharp'; +export { default as FirstPageTwoTone } from './FirstPageTwoTone'; +export { default as FitScreen } from './FitScreen'; +export { default as FitScreenOutlined } from './FitScreenOutlined'; +export { default as FitScreenRounded } from './FitScreenRounded'; +export { default as FitScreenSharp } from './FitScreenSharp'; +export { default as FitScreenTwoTone } from './FitScreenTwoTone'; +export { default as FitnessCenter } from './FitnessCenter'; +export { default as FitnessCenterOutlined } from './FitnessCenterOutlined'; +export { default as FitnessCenterRounded } from './FitnessCenterRounded'; +export { default as FitnessCenterSharp } from './FitnessCenterSharp'; +export { default as FitnessCenterTwoTone } from './FitnessCenterTwoTone'; +export { default as FiveG } from './FiveG'; +export { default as FiveGOutlined } from './FiveGOutlined'; +export { default as FiveGRounded } from './FiveGRounded'; +export { default as FiveGSharp } from './FiveGSharp'; +export { default as FiveGTwoTone } from './FiveGTwoTone'; +export { default as FiveK } from './FiveK'; +export { default as FiveKOutlined } from './FiveKOutlined'; +export { default as FiveKPlus } from './FiveKPlus'; +export { default as FiveKPlusOutlined } from './FiveKPlusOutlined'; +export { default as FiveKPlusRounded } from './FiveKPlusRounded'; +export { default as FiveKPlusSharp } from './FiveKPlusSharp'; +export { default as FiveKPlusTwoTone } from './FiveKPlusTwoTone'; +export { default as FiveKRounded } from './FiveKRounded'; +export { default as FiveKSharp } from './FiveKSharp'; +export { default as FiveKTwoTone } from './FiveKTwoTone'; +export { default as FiveMp } from './FiveMp'; +export { default as FiveMpOutlined } from './FiveMpOutlined'; +export { default as FiveMpRounded } from './FiveMpRounded'; +export { default as FiveMpSharp } from './FiveMpSharp'; +export { default as FiveMpTwoTone } from './FiveMpTwoTone'; +export { default as FivteenMp } from './FivteenMp'; +export { default as FivteenMpOutlined } from './FivteenMpOutlined'; +export { default as FivteenMpRounded } from './FivteenMpRounded'; +export { default as FivteenMpSharp } from './FivteenMpSharp'; +export { default as FivteenMpTwoTone } from './FivteenMpTwoTone'; +export { default as Flag } from './Flag'; +export { default as FlagOutlined } from './FlagOutlined'; +export { default as FlagRounded } from './FlagRounded'; +export { default as FlagSharp } from './FlagSharp'; +export { default as FlagTwoTone } from './FlagTwoTone'; +export { default as Flaky } from './Flaky'; +export { default as FlakyOutlined } from './FlakyOutlined'; +export { default as FlakyRounded } from './FlakyRounded'; +export { default as FlakySharp } from './FlakySharp'; +export { default as FlakyTwoTone } from './FlakyTwoTone'; +export { default as Flare } from './Flare'; +export { default as FlareOutlined } from './FlareOutlined'; +export { default as FlareRounded } from './FlareRounded'; +export { default as FlareSharp } from './FlareSharp'; +export { default as FlareTwoTone } from './FlareTwoTone'; +export { default as FlashAuto } from './FlashAuto'; +export { default as FlashAutoOutlined } from './FlashAutoOutlined'; +export { default as FlashAutoRounded } from './FlashAutoRounded'; +export { default as FlashAutoSharp } from './FlashAutoSharp'; +export { default as FlashAutoTwoTone } from './FlashAutoTwoTone'; +export { default as FlashOff } from './FlashOff'; +export { default as FlashOffOutlined } from './FlashOffOutlined'; +export { default as FlashOffRounded } from './FlashOffRounded'; +export { default as FlashOffSharp } from './FlashOffSharp'; +export { default as FlashOffTwoTone } from './FlashOffTwoTone'; +export { default as FlashOn } from './FlashOn'; +export { default as FlashOnOutlined } from './FlashOnOutlined'; +export { default as FlashOnRounded } from './FlashOnRounded'; +export { default as FlashOnSharp } from './FlashOnSharp'; +export { default as FlashOnTwoTone } from './FlashOnTwoTone'; +export { default as FlashlightOff } from './FlashlightOff'; +export { default as FlashlightOffOutlined } from './FlashlightOffOutlined'; +export { default as FlashlightOffRounded } from './FlashlightOffRounded'; +export { default as FlashlightOffSharp } from './FlashlightOffSharp'; +export { default as FlashlightOffTwoTone } from './FlashlightOffTwoTone'; +export { default as FlashlightOn } from './FlashlightOn'; +export { default as FlashlightOnOutlined } from './FlashlightOnOutlined'; +export { default as FlashlightOnRounded } from './FlashlightOnRounded'; +export { default as FlashlightOnSharp } from './FlashlightOnSharp'; +export { default as FlashlightOnTwoTone } from './FlashlightOnTwoTone'; +export { default as Flatware } from './Flatware'; +export { default as FlatwareOutlined } from './FlatwareOutlined'; +export { default as FlatwareRounded } from './FlatwareRounded'; +export { default as FlatwareSharp } from './FlatwareSharp'; +export { default as FlatwareTwoTone } from './FlatwareTwoTone'; +export { default as Flight } from './Flight'; +export { default as FlightLand } from './FlightLand'; +export { default as FlightLandOutlined } from './FlightLandOutlined'; +export { default as FlightLandRounded } from './FlightLandRounded'; +export { default as FlightLandSharp } from './FlightLandSharp'; +export { default as FlightLandTwoTone } from './FlightLandTwoTone'; +export { default as FlightOutlined } from './FlightOutlined'; +export { default as FlightRounded } from './FlightRounded'; +export { default as FlightSharp } from './FlightSharp'; +export { default as FlightTakeoff } from './FlightTakeoff'; +export { default as FlightTakeoffOutlined } from './FlightTakeoffOutlined'; +export { default as FlightTakeoffRounded } from './FlightTakeoffRounded'; +export { default as FlightTakeoffSharp } from './FlightTakeoffSharp'; +export { default as FlightTakeoffTwoTone } from './FlightTakeoffTwoTone'; +export { default as FlightTwoTone } from './FlightTwoTone'; +export { default as Flip } from './Flip'; +export { default as FlipCameraAndroid } from './FlipCameraAndroid'; +export { default as FlipCameraAndroidOutlined } from './FlipCameraAndroidOutlined'; +export { default as FlipCameraAndroidRounded } from './FlipCameraAndroidRounded'; +export { default as FlipCameraAndroidSharp } from './FlipCameraAndroidSharp'; +export { default as FlipCameraAndroidTwoTone } from './FlipCameraAndroidTwoTone'; +export { default as FlipCameraIos } from './FlipCameraIos'; +export { default as FlipCameraIosOutlined } from './FlipCameraIosOutlined'; +export { default as FlipCameraIosRounded } from './FlipCameraIosRounded'; +export { default as FlipCameraIosSharp } from './FlipCameraIosSharp'; +export { default as FlipCameraIosTwoTone } from './FlipCameraIosTwoTone'; +export { default as FlipOutlined } from './FlipOutlined'; +export { default as FlipRounded } from './FlipRounded'; +export { default as FlipSharp } from './FlipSharp'; +export { default as FlipToBack } from './FlipToBack'; +export { default as FlipToBackOutlined } from './FlipToBackOutlined'; +export { default as FlipToBackRounded } from './FlipToBackRounded'; +export { default as FlipToBackSharp } from './FlipToBackSharp'; +export { default as FlipToBackTwoTone } from './FlipToBackTwoTone'; +export { default as FlipToFront } from './FlipToFront'; +export { default as FlipToFrontOutlined } from './FlipToFrontOutlined'; +export { default as FlipToFrontRounded } from './FlipToFrontRounded'; +export { default as FlipToFrontSharp } from './FlipToFrontSharp'; +export { default as FlipToFrontTwoTone } from './FlipToFrontTwoTone'; +export { default as FlipTwoTone } from './FlipTwoTone'; +export { default as Flourescent } from './Flourescent'; +export { default as FlourescentOutlined } from './FlourescentOutlined'; +export { default as FlourescentRounded } from './FlourescentRounded'; +export { default as FlourescentSharp } from './FlourescentSharp'; +export { default as FlourescentTwoTone } from './FlourescentTwoTone'; +export { default as FlutterDash } from './FlutterDash'; +export { default as FlutterDashOutlined } from './FlutterDashOutlined'; +export { default as FlutterDashRounded } from './FlutterDashRounded'; +export { default as FlutterDashSharp } from './FlutterDashSharp'; +export { default as FlutterDashTwoTone } from './FlutterDashTwoTone'; +export { default as FmdBad } from './FmdBad'; +export { default as FmdBadOutlined } from './FmdBadOutlined'; +export { default as FmdBadRounded } from './FmdBadRounded'; +export { default as FmdBadSharp } from './FmdBadSharp'; +export { default as FmdBadTwoTone } from './FmdBadTwoTone'; +export { default as FmdGood } from './FmdGood'; +export { default as FmdGoodOutlined } from './FmdGoodOutlined'; +export { default as FmdGoodRounded } from './FmdGoodRounded'; +export { default as FmdGoodSharp } from './FmdGoodSharp'; +export { default as FmdGoodTwoTone } from './FmdGoodTwoTone'; +export { default as Folder } from './Folder'; +export { default as FolderOpen } from './FolderOpen'; +export { default as FolderOpenOutlined } from './FolderOpenOutlined'; +export { default as FolderOpenRounded } from './FolderOpenRounded'; +export { default as FolderOpenSharp } from './FolderOpenSharp'; +export { default as FolderOpenTwoTone } from './FolderOpenTwoTone'; +export { default as FolderOutlined } from './FolderOutlined'; +export { default as FolderRounded } from './FolderRounded'; +export { default as FolderShared } from './FolderShared'; +export { default as FolderSharedOutlined } from './FolderSharedOutlined'; +export { default as FolderSharedRounded } from './FolderSharedRounded'; +export { default as FolderSharedSharp } from './FolderSharedSharp'; +export { default as FolderSharedTwoTone } from './FolderSharedTwoTone'; +export { default as FolderSharp } from './FolderSharp'; +export { default as FolderSpecial } from './FolderSpecial'; +export { default as FolderSpecialOutlined } from './FolderSpecialOutlined'; +export { default as FolderSpecialRounded } from './FolderSpecialRounded'; +export { default as FolderSpecialSharp } from './FolderSpecialSharp'; +export { default as FolderSpecialTwoTone } from './FolderSpecialTwoTone'; +export { default as FolderTwoTone } from './FolderTwoTone'; +export { default as FollowTheSigns } from './FollowTheSigns'; +export { default as FollowTheSignsOutlined } from './FollowTheSignsOutlined'; +export { default as FollowTheSignsRounded } from './FollowTheSignsRounded'; +export { default as FollowTheSignsSharp } from './FollowTheSignsSharp'; +export { default as FollowTheSignsTwoTone } from './FollowTheSignsTwoTone'; +export { default as FontDownload } from './FontDownload'; +export { default as FontDownloadOff } from './FontDownloadOff'; +export { default as FontDownloadOffOutlined } from './FontDownloadOffOutlined'; +export { default as FontDownloadOffRounded } from './FontDownloadOffRounded'; +export { default as FontDownloadOffSharp } from './FontDownloadOffSharp'; +export { default as FontDownloadOffTwoTone } from './FontDownloadOffTwoTone'; +export { default as FontDownloadOutlined } from './FontDownloadOutlined'; +export { default as FontDownloadRounded } from './FontDownloadRounded'; +export { default as FontDownloadSharp } from './FontDownloadSharp'; +export { default as FontDownloadTwoTone } from './FontDownloadTwoTone'; +export { default as FoodBank } from './FoodBank'; +export { default as FoodBankOutlined } from './FoodBankOutlined'; +export { default as FoodBankRounded } from './FoodBankRounded'; +export { default as FoodBankSharp } from './FoodBankSharp'; +export { default as FoodBankTwoTone } from './FoodBankTwoTone'; +export { default as FormatAlignCenter } from './FormatAlignCenter'; +export { default as FormatAlignCenterOutlined } from './FormatAlignCenterOutlined'; +export { default as FormatAlignCenterRounded } from './FormatAlignCenterRounded'; +export { default as FormatAlignCenterSharp } from './FormatAlignCenterSharp'; +export { default as FormatAlignCenterTwoTone } from './FormatAlignCenterTwoTone'; +export { default as FormatAlignJustify } from './FormatAlignJustify'; +export { default as FormatAlignJustifyOutlined } from './FormatAlignJustifyOutlined'; +export { default as FormatAlignJustifyRounded } from './FormatAlignJustifyRounded'; +export { default as FormatAlignJustifySharp } from './FormatAlignJustifySharp'; +export { default as FormatAlignJustifyTwoTone } from './FormatAlignJustifyTwoTone'; +export { default as FormatAlignLeft } from './FormatAlignLeft'; +export { default as FormatAlignLeftOutlined } from './FormatAlignLeftOutlined'; +export { default as FormatAlignLeftRounded } from './FormatAlignLeftRounded'; +export { default as FormatAlignLeftSharp } from './FormatAlignLeftSharp'; +export { default as FormatAlignLeftTwoTone } from './FormatAlignLeftTwoTone'; +export { default as FormatAlignRight } from './FormatAlignRight'; +export { default as FormatAlignRightOutlined } from './FormatAlignRightOutlined'; +export { default as FormatAlignRightRounded } from './FormatAlignRightRounded'; +export { default as FormatAlignRightSharp } from './FormatAlignRightSharp'; +export { default as FormatAlignRightTwoTone } from './FormatAlignRightTwoTone'; +export { default as FormatBold } from './FormatBold'; +export { default as FormatBoldOutlined } from './FormatBoldOutlined'; +export { default as FormatBoldRounded } from './FormatBoldRounded'; +export { default as FormatBoldSharp } from './FormatBoldSharp'; +export { default as FormatBoldTwoTone } from './FormatBoldTwoTone'; +export { default as FormatClear } from './FormatClear'; +export { default as FormatClearOutlined } from './FormatClearOutlined'; +export { default as FormatClearRounded } from './FormatClearRounded'; +export { default as FormatClearSharp } from './FormatClearSharp'; +export { default as FormatClearTwoTone } from './FormatClearTwoTone'; +export { default as FormatColorFill } from './FormatColorFill'; +export { default as FormatColorFillOutlined } from './FormatColorFillOutlined'; +export { default as FormatColorFillRounded } from './FormatColorFillRounded'; +export { default as FormatColorFillSharp } from './FormatColorFillSharp'; +export { default as FormatColorFillTwoTone } from './FormatColorFillTwoTone'; +export { default as FormatColorReset } from './FormatColorReset'; +export { default as FormatColorResetOutlined } from './FormatColorResetOutlined'; +export { default as FormatColorResetRounded } from './FormatColorResetRounded'; +export { default as FormatColorResetSharp } from './FormatColorResetSharp'; +export { default as FormatColorResetTwoTone } from './FormatColorResetTwoTone'; +export { default as FormatColorText } from './FormatColorText'; +export { default as FormatColorTextOutlined } from './FormatColorTextOutlined'; +export { default as FormatColorTextRounded } from './FormatColorTextRounded'; +export { default as FormatColorTextSharp } from './FormatColorTextSharp'; +export { default as FormatColorTextTwoTone } from './FormatColorTextTwoTone'; +export { default as FormatIndentDecrease } from './FormatIndentDecrease'; +export { default as FormatIndentDecreaseOutlined } from './FormatIndentDecreaseOutlined'; +export { default as FormatIndentDecreaseRounded } from './FormatIndentDecreaseRounded'; +export { default as FormatIndentDecreaseSharp } from './FormatIndentDecreaseSharp'; +export { default as FormatIndentDecreaseTwoTone } from './FormatIndentDecreaseTwoTone'; +export { default as FormatIndentIncrease } from './FormatIndentIncrease'; +export { default as FormatIndentIncreaseOutlined } from './FormatIndentIncreaseOutlined'; +export { default as FormatIndentIncreaseRounded } from './FormatIndentIncreaseRounded'; +export { default as FormatIndentIncreaseSharp } from './FormatIndentIncreaseSharp'; +export { default as FormatIndentIncreaseTwoTone } from './FormatIndentIncreaseTwoTone'; +export { default as FormatItalic } from './FormatItalic'; +export { default as FormatItalicOutlined } from './FormatItalicOutlined'; +export { default as FormatItalicRounded } from './FormatItalicRounded'; +export { default as FormatItalicSharp } from './FormatItalicSharp'; +export { default as FormatItalicTwoTone } from './FormatItalicTwoTone'; +export { default as FormatLineSpacing } from './FormatLineSpacing'; +export { default as FormatLineSpacingOutlined } from './FormatLineSpacingOutlined'; +export { default as FormatLineSpacingRounded } from './FormatLineSpacingRounded'; +export { default as FormatLineSpacingSharp } from './FormatLineSpacingSharp'; +export { default as FormatLineSpacingTwoTone } from './FormatLineSpacingTwoTone'; +export { default as FormatListBulleted } from './FormatListBulleted'; +export { default as FormatListBulletedOutlined } from './FormatListBulletedOutlined'; +export { default as FormatListBulletedRounded } from './FormatListBulletedRounded'; +export { default as FormatListBulletedSharp } from './FormatListBulletedSharp'; +export { default as FormatListBulletedTwoTone } from './FormatListBulletedTwoTone'; +export { default as FormatListNumbered } from './FormatListNumbered'; +export { default as FormatListNumberedOutlined } from './FormatListNumberedOutlined'; +export { default as FormatListNumberedRounded } from './FormatListNumberedRounded'; +export { default as FormatListNumberedRtl } from './FormatListNumberedRtl'; +export { default as FormatListNumberedRtlOutlined } from './FormatListNumberedRtlOutlined'; +export { default as FormatListNumberedRtlRounded } from './FormatListNumberedRtlRounded'; +export { default as FormatListNumberedRtlSharp } from './FormatListNumberedRtlSharp'; +export { default as FormatListNumberedRtlTwoTone } from './FormatListNumberedRtlTwoTone'; +export { default as FormatListNumberedSharp } from './FormatListNumberedSharp'; +export { default as FormatListNumberedTwoTone } from './FormatListNumberedTwoTone'; +export { default as FormatPaint } from './FormatPaint'; +export { default as FormatPaintOutlined } from './FormatPaintOutlined'; +export { default as FormatPaintRounded } from './FormatPaintRounded'; +export { default as FormatPaintSharp } from './FormatPaintSharp'; +export { default as FormatPaintTwoTone } from './FormatPaintTwoTone'; +export { default as FormatQuote } from './FormatQuote'; +export { default as FormatQuoteOutlined } from './FormatQuoteOutlined'; +export { default as FormatQuoteRounded } from './FormatQuoteRounded'; +export { default as FormatQuoteSharp } from './FormatQuoteSharp'; +export { default as FormatQuoteTwoTone } from './FormatQuoteTwoTone'; +export { default as FormatShapes } from './FormatShapes'; +export { default as FormatShapesOutlined } from './FormatShapesOutlined'; +export { default as FormatShapesRounded } from './FormatShapesRounded'; +export { default as FormatShapesSharp } from './FormatShapesSharp'; +export { default as FormatShapesTwoTone } from './FormatShapesTwoTone'; +export { default as FormatSize } from './FormatSize'; +export { default as FormatSizeOutlined } from './FormatSizeOutlined'; +export { default as FormatSizeRounded } from './FormatSizeRounded'; +export { default as FormatSizeSharp } from './FormatSizeSharp'; +export { default as FormatSizeTwoTone } from './FormatSizeTwoTone'; +export { default as FormatStrikethrough } from './FormatStrikethrough'; +export { default as FormatStrikethroughOutlined } from './FormatStrikethroughOutlined'; +export { default as FormatStrikethroughRounded } from './FormatStrikethroughRounded'; +export { default as FormatStrikethroughSharp } from './FormatStrikethroughSharp'; +export { default as FormatStrikethroughTwoTone } from './FormatStrikethroughTwoTone'; +export { default as FormatTextdirectionLToR } from './FormatTextdirectionLToR'; +export { default as FormatTextdirectionLToROutlined } from './FormatTextdirectionLToROutlined'; +export { default as FormatTextdirectionLToRRounded } from './FormatTextdirectionLToRRounded'; +export { default as FormatTextdirectionLToRSharp } from './FormatTextdirectionLToRSharp'; +export { default as FormatTextdirectionLToRTwoTone } from './FormatTextdirectionLToRTwoTone'; +export { default as FormatTextdirectionRToL } from './FormatTextdirectionRToL'; +export { default as FormatTextdirectionRToLOutlined } from './FormatTextdirectionRToLOutlined'; +export { default as FormatTextdirectionRToLRounded } from './FormatTextdirectionRToLRounded'; +export { default as FormatTextdirectionRToLSharp } from './FormatTextdirectionRToLSharp'; +export { default as FormatTextdirectionRToLTwoTone } from './FormatTextdirectionRToLTwoTone'; +export { default as FormatUnderlined } from './FormatUnderlined'; +export { default as FormatUnderlinedOutlined } from './FormatUnderlinedOutlined'; +export { default as FormatUnderlinedRounded } from './FormatUnderlinedRounded'; +export { default as FormatUnderlinedSharp } from './FormatUnderlinedSharp'; +export { default as FormatUnderlinedTwoTone } from './FormatUnderlinedTwoTone'; +export { default as Forum } from './Forum'; +export { default as ForumOutlined } from './ForumOutlined'; +export { default as ForumRounded } from './ForumRounded'; +export { default as ForumSharp } from './ForumSharp'; +export { default as ForumTwoTone } from './ForumTwoTone'; +export { default as Forward } from './Forward'; +export { default as Forward10 } from './Forward10'; +export { default as Forward10Outlined } from './Forward10Outlined'; +export { default as Forward10Rounded } from './Forward10Rounded'; +export { default as Forward10Sharp } from './Forward10Sharp'; +export { default as Forward10TwoTone } from './Forward10TwoTone'; +export { default as Forward30 } from './Forward30'; +export { default as Forward30Outlined } from './Forward30Outlined'; +export { default as Forward30Rounded } from './Forward30Rounded'; +export { default as Forward30Sharp } from './Forward30Sharp'; +export { default as Forward30TwoTone } from './Forward30TwoTone'; +export { default as Forward5 } from './Forward5'; +export { default as Forward5Outlined } from './Forward5Outlined'; +export { default as Forward5Rounded } from './Forward5Rounded'; +export { default as Forward5Sharp } from './Forward5Sharp'; +export { default as Forward5TwoTone } from './Forward5TwoTone'; +export { default as ForwardOutlined } from './ForwardOutlined'; +export { default as ForwardRounded } from './ForwardRounded'; +export { default as ForwardSharp } from './ForwardSharp'; +export { default as ForwardToInbox } from './ForwardToInbox'; +export { default as ForwardToInboxOutlined } from './ForwardToInboxOutlined'; +export { default as ForwardToInboxRounded } from './ForwardToInboxRounded'; +export { default as ForwardToInboxSharp } from './ForwardToInboxSharp'; +export { default as ForwardToInboxTwoTone } from './ForwardToInboxTwoTone'; +export { default as ForwardTwoTone } from './ForwardTwoTone'; +export { default as Foundation } from './Foundation'; +export { default as FoundationOutlined } from './FoundationOutlined'; +export { default as FoundationRounded } from './FoundationRounded'; +export { default as FoundationSharp } from './FoundationSharp'; +export { default as FoundationTwoTone } from './FoundationTwoTone'; +export { default as FourGMobiledata } from './FourGMobiledata'; +export { default as FourGMobiledataOutlined } from './FourGMobiledataOutlined'; +export { default as FourGMobiledataRounded } from './FourGMobiledataRounded'; +export { default as FourGMobiledataSharp } from './FourGMobiledataSharp'; +export { default as FourGMobiledataTwoTone } from './FourGMobiledataTwoTone'; +export { default as FourGPlusMobiledata } from './FourGPlusMobiledata'; +export { default as FourGPlusMobiledataOutlined } from './FourGPlusMobiledataOutlined'; +export { default as FourGPlusMobiledataRounded } from './FourGPlusMobiledataRounded'; +export { default as FourGPlusMobiledataSharp } from './FourGPlusMobiledataSharp'; +export { default as FourGPlusMobiledataTwoTone } from './FourGPlusMobiledataTwoTone'; +export { default as FourK } from './FourK'; +export { default as FourKOutlined } from './FourKOutlined'; +export { default as FourKPlus } from './FourKPlus'; +export { default as FourKPlusOutlined } from './FourKPlusOutlined'; +export { default as FourKPlusRounded } from './FourKPlusRounded'; +export { default as FourKPlusSharp } from './FourKPlusSharp'; +export { default as FourKPlusTwoTone } from './FourKPlusTwoTone'; +export { default as FourKRounded } from './FourKRounded'; +export { default as FourKSharp } from './FourKSharp'; +export { default as FourKTwoTone } from './FourKTwoTone'; +export { default as FourMp } from './FourMp'; +export { default as FourMpOutlined } from './FourMpOutlined'; +export { default as FourMpRounded } from './FourMpRounded'; +export { default as FourMpSharp } from './FourMpSharp'; +export { default as FourMpTwoTone } from './FourMpTwoTone'; +export { default as FourteenMp } from './FourteenMp'; +export { default as FourteenMpOutlined } from './FourteenMpOutlined'; +export { default as FourteenMpRounded } from './FourteenMpRounded'; +export { default as FourteenMpSharp } from './FourteenMpSharp'; +export { default as FourteenMpTwoTone } from './FourteenMpTwoTone'; +export { default as FreeBreakfast } from './FreeBreakfast'; +export { default as FreeBreakfastOutlined } from './FreeBreakfastOutlined'; +export { default as FreeBreakfastRounded } from './FreeBreakfastRounded'; +export { default as FreeBreakfastSharp } from './FreeBreakfastSharp'; +export { default as FreeBreakfastTwoTone } from './FreeBreakfastTwoTone'; +export { default as Fullscreen } from './Fullscreen'; +export { default as FullscreenExit } from './FullscreenExit'; +export { default as FullscreenExitOutlined } from './FullscreenExitOutlined'; +export { default as FullscreenExitRounded } from './FullscreenExitRounded'; +export { default as FullscreenExitSharp } from './FullscreenExitSharp'; +export { default as FullscreenExitTwoTone } from './FullscreenExitTwoTone'; +export { default as FullscreenOutlined } from './FullscreenOutlined'; +export { default as FullscreenRounded } from './FullscreenRounded'; +export { default as FullscreenSharp } from './FullscreenSharp'; +export { default as FullscreenTwoTone } from './FullscreenTwoTone'; +export { default as Functions } from './Functions'; +export { default as FunctionsOutlined } from './FunctionsOutlined'; +export { default as FunctionsRounded } from './FunctionsRounded'; +export { default as FunctionsSharp } from './FunctionsSharp'; +export { default as FunctionsTwoTone } from './FunctionsTwoTone'; +export { default as GMobiledata } from './GMobiledata'; +export { default as GMobiledataOutlined } from './GMobiledataOutlined'; +export { default as GMobiledataRounded } from './GMobiledataRounded'; +export { default as GMobiledataSharp } from './GMobiledataSharp'; +export { default as GMobiledataTwoTone } from './GMobiledataTwoTone'; +export { default as GTranslate } from './GTranslate'; +export { default as GTranslateOutlined } from './GTranslateOutlined'; +export { default as GTranslateRounded } from './GTranslateRounded'; +export { default as GTranslateSharp } from './GTranslateSharp'; +export { default as GTranslateTwoTone } from './GTranslateTwoTone'; +export { default as Gamepad } from './Gamepad'; +export { default as GamepadOutlined } from './GamepadOutlined'; +export { default as GamepadRounded } from './GamepadRounded'; +export { default as GamepadSharp } from './GamepadSharp'; +export { default as GamepadTwoTone } from './GamepadTwoTone'; +export { default as Games } from './Games'; +export { default as GamesOutlined } from './GamesOutlined'; +export { default as GamesRounded } from './GamesRounded'; +export { default as GamesSharp } from './GamesSharp'; +export { default as GamesTwoTone } from './GamesTwoTone'; +export { default as Garage } from './Garage'; +export { default as GarageOutlined } from './GarageOutlined'; +export { default as GarageRounded } from './GarageRounded'; +export { default as GarageSharp } from './GarageSharp'; +export { default as GarageTwoTone } from './GarageTwoTone'; +export { default as Gavel } from './Gavel'; +export { default as GavelOutlined } from './GavelOutlined'; +export { default as GavelRounded } from './GavelRounded'; +export { default as GavelSharp } from './GavelSharp'; +export { default as GavelTwoTone } from './GavelTwoTone'; +export { default as Gesture } from './Gesture'; +export { default as GestureOutlined } from './GestureOutlined'; +export { default as GestureRounded } from './GestureRounded'; +export { default as GestureSharp } from './GestureSharp'; +export { default as GestureTwoTone } from './GestureTwoTone'; +export { default as GetApp } from './GetApp'; +export { default as GetAppOutlined } from './GetAppOutlined'; +export { default as GetAppRounded } from './GetAppRounded'; +export { default as GetAppSharp } from './GetAppSharp'; +export { default as GetAppTwoTone } from './GetAppTwoTone'; +export { default as Gif } from './Gif'; +export { default as GifOutlined } from './GifOutlined'; +export { default as GifRounded } from './GifRounded'; +export { default as GifSharp } from './GifSharp'; +export { default as GifTwoTone } from './GifTwoTone'; +export { default as GitHub } from './GitHub'; +export { default as Gite } from './Gite'; +export { default as GiteOutlined } from './GiteOutlined'; +export { default as GiteRounded } from './GiteRounded'; +export { default as GiteSharp } from './GiteSharp'; +export { default as GiteTwoTone } from './GiteTwoTone'; +export { default as GolfCourse } from './GolfCourse'; +export { default as GolfCourseOutlined } from './GolfCourseOutlined'; +export { default as GolfCourseRounded } from './GolfCourseRounded'; +export { default as GolfCourseSharp } from './GolfCourseSharp'; +export { default as GolfCourseTwoTone } from './GolfCourseTwoTone'; +export { default as Google } from './Google'; +export { default as GppBad } from './GppBad'; +export { default as GppBadOutlined } from './GppBadOutlined'; +export { default as GppBadRounded } from './GppBadRounded'; +export { default as GppBadSharp } from './GppBadSharp'; +export { default as GppBadTwoTone } from './GppBadTwoTone'; +export { default as GppGood } from './GppGood'; +export { default as GppGoodOutlined } from './GppGoodOutlined'; +export { default as GppGoodRounded } from './GppGoodRounded'; +export { default as GppGoodSharp } from './GppGoodSharp'; +export { default as GppGoodTwoTone } from './GppGoodTwoTone'; +export { default as GppMaybe } from './GppMaybe'; +export { default as GppMaybeOutlined } from './GppMaybeOutlined'; +export { default as GppMaybeRounded } from './GppMaybeRounded'; +export { default as GppMaybeSharp } from './GppMaybeSharp'; +export { default as GppMaybeTwoTone } from './GppMaybeTwoTone'; +export { default as GpsFixed } from './GpsFixed'; +export { default as GpsFixedOutlined } from './GpsFixedOutlined'; +export { default as GpsFixedRounded } from './GpsFixedRounded'; +export { default as GpsFixedSharp } from './GpsFixedSharp'; +export { default as GpsFixedTwoTone } from './GpsFixedTwoTone'; +export { default as GpsNotFixed } from './GpsNotFixed'; +export { default as GpsNotFixedOutlined } from './GpsNotFixedOutlined'; +export { default as GpsNotFixedRounded } from './GpsNotFixedRounded'; +export { default as GpsNotFixedSharp } from './GpsNotFixedSharp'; +export { default as GpsNotFixedTwoTone } from './GpsNotFixedTwoTone'; +export { default as GpsOff } from './GpsOff'; +export { default as GpsOffOutlined } from './GpsOffOutlined'; +export { default as GpsOffRounded } from './GpsOffRounded'; +export { default as GpsOffSharp } from './GpsOffSharp'; +export { default as GpsOffTwoTone } from './GpsOffTwoTone'; +export { default as Grade } from './Grade'; +export { default as GradeOutlined } from './GradeOutlined'; +export { default as GradeRounded } from './GradeRounded'; +export { default as GradeSharp } from './GradeSharp'; +export { default as GradeTwoTone } from './GradeTwoTone'; +export { default as Gradient } from './Gradient'; +export { default as GradientOutlined } from './GradientOutlined'; +export { default as GradientRounded } from './GradientRounded'; +export { default as GradientSharp } from './GradientSharp'; +export { default as GradientTwoTone } from './GradientTwoTone'; +export { default as Grading } from './Grading'; +export { default as GradingOutlined } from './GradingOutlined'; +export { default as GradingRounded } from './GradingRounded'; +export { default as GradingSharp } from './GradingSharp'; +export { default as GradingTwoTone } from './GradingTwoTone'; +export { default as Grain } from './Grain'; +export { default as GrainOutlined } from './GrainOutlined'; +export { default as GrainRounded } from './GrainRounded'; +export { default as GrainSharp } from './GrainSharp'; +export { default as GrainTwoTone } from './GrainTwoTone'; +export { default as GraphicEq } from './GraphicEq'; +export { default as GraphicEqOutlined } from './GraphicEqOutlined'; +export { default as GraphicEqRounded } from './GraphicEqRounded'; +export { default as GraphicEqSharp } from './GraphicEqSharp'; +export { default as GraphicEqTwoTone } from './GraphicEqTwoTone'; +export { default as Grass } from './Grass'; +export { default as GrassOutlined } from './GrassOutlined'; +export { default as GrassRounded } from './GrassRounded'; +export { default as GrassSharp } from './GrassSharp'; +export { default as GrassTwoTone } from './GrassTwoTone'; +export { default as Grid3x3 } from './Grid3x3'; +export { default as Grid3x3Outlined } from './Grid3x3Outlined'; +export { default as Grid3x3Rounded } from './Grid3x3Rounded'; +export { default as Grid3x3Sharp } from './Grid3x3Sharp'; +export { default as Grid3x3TwoTone } from './Grid3x3TwoTone'; +export { default as Grid4x4 } from './Grid4x4'; +export { default as Grid4x4Outlined } from './Grid4x4Outlined'; +export { default as Grid4x4Rounded } from './Grid4x4Rounded'; +export { default as Grid4x4Sharp } from './Grid4x4Sharp'; +export { default as Grid4x4TwoTone } from './Grid4x4TwoTone'; +export { default as GridGoldenratio } from './GridGoldenratio'; +export { default as GridGoldenratioOutlined } from './GridGoldenratioOutlined'; +export { default as GridGoldenratioRounded } from './GridGoldenratioRounded'; +export { default as GridGoldenratioSharp } from './GridGoldenratioSharp'; +export { default as GridGoldenratioTwoTone } from './GridGoldenratioTwoTone'; +export { default as GridOff } from './GridOff'; +export { default as GridOffOutlined } from './GridOffOutlined'; +export { default as GridOffRounded } from './GridOffRounded'; +export { default as GridOffSharp } from './GridOffSharp'; +export { default as GridOffTwoTone } from './GridOffTwoTone'; +export { default as GridOn } from './GridOn'; +export { default as GridOnOutlined } from './GridOnOutlined'; +export { default as GridOnRounded } from './GridOnRounded'; +export { default as GridOnSharp } from './GridOnSharp'; +export { default as GridOnTwoTone } from './GridOnTwoTone'; +export { default as GridView } from './GridView'; +export { default as GridViewOutlined } from './GridViewOutlined'; +export { default as GridViewRounded } from './GridViewRounded'; +export { default as GridViewSharp } from './GridViewSharp'; +export { default as GridViewTwoTone } from './GridViewTwoTone'; +export { default as Group } from './Group'; +export { default as GroupAdd } from './GroupAdd'; +export { default as GroupAddOutlined } from './GroupAddOutlined'; +export { default as GroupAddRounded } from './GroupAddRounded'; +export { default as GroupAddSharp } from './GroupAddSharp'; +export { default as GroupAddTwoTone } from './GroupAddTwoTone'; +export { default as GroupOutlined } from './GroupOutlined'; +export { default as GroupRounded } from './GroupRounded'; +export { default as GroupSharp } from './GroupSharp'; +export { default as GroupTwoTone } from './GroupTwoTone'; +export { default as GroupWork } from './GroupWork'; +export { default as GroupWorkOutlined } from './GroupWorkOutlined'; +export { default as GroupWorkRounded } from './GroupWorkRounded'; +export { default as GroupWorkSharp } from './GroupWorkSharp'; +export { default as GroupWorkTwoTone } from './GroupWorkTwoTone'; +export { default as Groups } from './Groups'; +export { default as GroupsOutlined } from './GroupsOutlined'; +export { default as GroupsRounded } from './GroupsRounded'; +export { default as GroupsSharp } from './GroupsSharp'; +export { default as GroupsTwoTone } from './GroupsTwoTone'; +export { default as HMobiledata } from './HMobiledata'; +export { default as HMobiledataOutlined } from './HMobiledataOutlined'; +export { default as HMobiledataRounded } from './HMobiledataRounded'; +export { default as HMobiledataSharp } from './HMobiledataSharp'; +export { default as HMobiledataTwoTone } from './HMobiledataTwoTone'; +export { default as HPlusMobiledata } from './HPlusMobiledata'; +export { default as HPlusMobiledataOutlined } from './HPlusMobiledataOutlined'; +export { default as HPlusMobiledataRounded } from './HPlusMobiledataRounded'; +export { default as HPlusMobiledataSharp } from './HPlusMobiledataSharp'; +export { default as HPlusMobiledataTwoTone } from './HPlusMobiledataTwoTone'; +export { default as Hail } from './Hail'; +export { default as HailOutlined } from './HailOutlined'; +export { default as HailRounded } from './HailRounded'; +export { default as HailSharp } from './HailSharp'; +export { default as HailTwoTone } from './HailTwoTone'; +export { default as Handyman } from './Handyman'; +export { default as HandymanOutlined } from './HandymanOutlined'; +export { default as HandymanRounded } from './HandymanRounded'; +export { default as HandymanSharp } from './HandymanSharp'; +export { default as HandymanTwoTone } from './HandymanTwoTone'; +export { default as Hardware } from './Hardware'; +export { default as HardwareOutlined } from './HardwareOutlined'; +export { default as HardwareRounded } from './HardwareRounded'; +export { default as HardwareSharp } from './HardwareSharp'; +export { default as HardwareTwoTone } from './HardwareTwoTone'; +export { default as Hd } from './Hd'; +export { default as HdOutlined } from './HdOutlined'; +export { default as HdRounded } from './HdRounded'; +export { default as HdSharp } from './HdSharp'; +export { default as HdTwoTone } from './HdTwoTone'; +export { default as HdrAuto } from './HdrAuto'; +export { default as HdrAutoOutlined } from './HdrAutoOutlined'; +export { default as HdrAutoRounded } from './HdrAutoRounded'; +export { default as HdrAutoSelect } from './HdrAutoSelect'; +export { default as HdrAutoSelectOutlined } from './HdrAutoSelectOutlined'; +export { default as HdrAutoSelectRounded } from './HdrAutoSelectRounded'; +export { default as HdrAutoSelectSharp } from './HdrAutoSelectSharp'; +export { default as HdrAutoSelectTwoTone } from './HdrAutoSelectTwoTone'; +export { default as HdrAutoSharp } from './HdrAutoSharp'; +export { default as HdrAutoTwoTone } from './HdrAutoTwoTone'; +export { default as HdrEnhancedSelect } from './HdrEnhancedSelect'; +export { default as HdrEnhancedSelectOutlined } from './HdrEnhancedSelectOutlined'; +export { default as HdrEnhancedSelectRounded } from './HdrEnhancedSelectRounded'; +export { default as HdrEnhancedSelectSharp } from './HdrEnhancedSelectSharp'; +export { default as HdrEnhancedSelectTwoTone } from './HdrEnhancedSelectTwoTone'; +export { default as HdrOff } from './HdrOff'; +export { default as HdrOffOutlined } from './HdrOffOutlined'; +export { default as HdrOffRounded } from './HdrOffRounded'; +export { default as HdrOffSelect } from './HdrOffSelect'; +export { default as HdrOffSelectOutlined } from './HdrOffSelectOutlined'; +export { default as HdrOffSelectRounded } from './HdrOffSelectRounded'; +export { default as HdrOffSelectSharp } from './HdrOffSelectSharp'; +export { default as HdrOffSelectTwoTone } from './HdrOffSelectTwoTone'; +export { default as HdrOffSharp } from './HdrOffSharp'; +export { default as HdrOffTwoTone } from './HdrOffTwoTone'; +export { default as HdrOn } from './HdrOn'; +export { default as HdrOnOutlined } from './HdrOnOutlined'; +export { default as HdrOnRounded } from './HdrOnRounded'; +export { default as HdrOnSelect } from './HdrOnSelect'; +export { default as HdrOnSelectOutlined } from './HdrOnSelectOutlined'; +export { default as HdrOnSelectRounded } from './HdrOnSelectRounded'; +export { default as HdrOnSelectSharp } from './HdrOnSelectSharp'; +export { default as HdrOnSelectTwoTone } from './HdrOnSelectTwoTone'; +export { default as HdrOnSharp } from './HdrOnSharp'; +export { default as HdrOnTwoTone } from './HdrOnTwoTone'; +export { default as HdrPlus } from './HdrPlus'; +export { default as HdrPlusOutlined } from './HdrPlusOutlined'; +export { default as HdrPlusRounded } from './HdrPlusRounded'; +export { default as HdrPlusSharp } from './HdrPlusSharp'; +export { default as HdrPlusTwoTone } from './HdrPlusTwoTone'; +export { default as HdrStrong } from './HdrStrong'; +export { default as HdrStrongOutlined } from './HdrStrongOutlined'; +export { default as HdrStrongRounded } from './HdrStrongRounded'; +export { default as HdrStrongSharp } from './HdrStrongSharp'; +export { default as HdrStrongTwoTone } from './HdrStrongTwoTone'; +export { default as HdrWeak } from './HdrWeak'; +export { default as HdrWeakOutlined } from './HdrWeakOutlined'; +export { default as HdrWeakRounded } from './HdrWeakRounded'; +export { default as HdrWeakSharp } from './HdrWeakSharp'; +export { default as HdrWeakTwoTone } from './HdrWeakTwoTone'; +export { default as Headphones } from './Headphones'; +export { default as HeadphonesBattery } from './HeadphonesBattery'; +export { default as HeadphonesBatteryOutlined } from './HeadphonesBatteryOutlined'; +export { default as HeadphonesBatteryRounded } from './HeadphonesBatteryRounded'; +export { default as HeadphonesBatterySharp } from './HeadphonesBatterySharp'; +export { default as HeadphonesBatteryTwoTone } from './HeadphonesBatteryTwoTone'; +export { default as HeadphonesOutlined } from './HeadphonesOutlined'; +export { default as HeadphonesRounded } from './HeadphonesRounded'; +export { default as HeadphonesSharp } from './HeadphonesSharp'; +export { default as HeadphonesTwoTone } from './HeadphonesTwoTone'; +export { default as Headset } from './Headset'; +export { default as HeadsetMic } from './HeadsetMic'; +export { default as HeadsetMicOutlined } from './HeadsetMicOutlined'; +export { default as HeadsetMicRounded } from './HeadsetMicRounded'; +export { default as HeadsetMicSharp } from './HeadsetMicSharp'; +export { default as HeadsetMicTwoTone } from './HeadsetMicTwoTone'; +export { default as HeadsetOff } from './HeadsetOff'; +export { default as HeadsetOffOutlined } from './HeadsetOffOutlined'; +export { default as HeadsetOffRounded } from './HeadsetOffRounded'; +export { default as HeadsetOffSharp } from './HeadsetOffSharp'; +export { default as HeadsetOffTwoTone } from './HeadsetOffTwoTone'; +export { default as HeadsetOutlined } from './HeadsetOutlined'; +export { default as HeadsetRounded } from './HeadsetRounded'; +export { default as HeadsetSharp } from './HeadsetSharp'; +export { default as HeadsetTwoTone } from './HeadsetTwoTone'; +export { default as Healing } from './Healing'; +export { default as HealingOutlined } from './HealingOutlined'; +export { default as HealingRounded } from './HealingRounded'; +export { default as HealingSharp } from './HealingSharp'; +export { default as HealingTwoTone } from './HealingTwoTone'; +export { default as HealthAndSafety } from './HealthAndSafety'; +export { default as HealthAndSafetyOutlined } from './HealthAndSafetyOutlined'; +export { default as HealthAndSafetyRounded } from './HealthAndSafetyRounded'; +export { default as HealthAndSafetySharp } from './HealthAndSafetySharp'; +export { default as HealthAndSafetyTwoTone } from './HealthAndSafetyTwoTone'; +export { default as Hearing } from './Hearing'; +export { default as HearingDisabled } from './HearingDisabled'; +export { default as HearingDisabledOutlined } from './HearingDisabledOutlined'; +export { default as HearingDisabledRounded } from './HearingDisabledRounded'; +export { default as HearingDisabledSharp } from './HearingDisabledSharp'; +export { default as HearingDisabledTwoTone } from './HearingDisabledTwoTone'; +export { default as HearingOutlined } from './HearingOutlined'; +export { default as HearingRounded } from './HearingRounded'; +export { default as HearingSharp } from './HearingSharp'; +export { default as HearingTwoTone } from './HearingTwoTone'; +export { default as Height } from './Height'; +export { default as HeightOutlined } from './HeightOutlined'; +export { default as HeightRounded } from './HeightRounded'; +export { default as HeightSharp } from './HeightSharp'; +export { default as HeightTwoTone } from './HeightTwoTone'; +export { default as Help } from './Help'; +export { default as HelpCenter } from './HelpCenter'; +export { default as HelpCenterOutlined } from './HelpCenterOutlined'; +export { default as HelpCenterRounded } from './HelpCenterRounded'; +export { default as HelpCenterSharp } from './HelpCenterSharp'; +export { default as HelpCenterTwoTone } from './HelpCenterTwoTone'; +export { default as HelpOutline } from './HelpOutline'; +export { default as HelpOutlineOutlined } from './HelpOutlineOutlined'; +export { default as HelpOutlineRounded } from './HelpOutlineRounded'; +export { default as HelpOutlineSharp } from './HelpOutlineSharp'; +export { default as HelpOutlineTwoTone } from './HelpOutlineTwoTone'; +export { default as HelpOutlined } from './HelpOutlined'; +export { default as HelpRounded } from './HelpRounded'; +export { default as HelpSharp } from './HelpSharp'; +export { default as HelpTwoTone } from './HelpTwoTone'; +export { default as Hevc } from './Hevc'; +export { default as HevcOutlined } from './HevcOutlined'; +export { default as HevcRounded } from './HevcRounded'; +export { default as HevcSharp } from './HevcSharp'; +export { default as HevcTwoTone } from './HevcTwoTone'; +export { default as HideImage } from './HideImage'; +export { default as HideImageOutlined } from './HideImageOutlined'; +export { default as HideImageRounded } from './HideImageRounded'; +export { default as HideImageSharp } from './HideImageSharp'; +export { default as HideImageTwoTone } from './HideImageTwoTone'; +export { default as HideSource } from './HideSource'; +export { default as HideSourceOutlined } from './HideSourceOutlined'; +export { default as HideSourceRounded } from './HideSourceRounded'; +export { default as HideSourceSharp } from './HideSourceSharp'; +export { default as HideSourceTwoTone } from './HideSourceTwoTone'; +export { default as HighQuality } from './HighQuality'; +export { default as HighQualityOutlined } from './HighQualityOutlined'; +export { default as HighQualityRounded } from './HighQualityRounded'; +export { default as HighQualitySharp } from './HighQualitySharp'; +export { default as HighQualityTwoTone } from './HighQualityTwoTone'; +export { default as Highlight } from './Highlight'; +export { default as HighlightAlt } from './HighlightAlt'; +export { default as HighlightAltOutlined } from './HighlightAltOutlined'; +export { default as HighlightAltRounded } from './HighlightAltRounded'; +export { default as HighlightAltSharp } from './HighlightAltSharp'; +export { default as HighlightAltTwoTone } from './HighlightAltTwoTone'; +export { default as HighlightOff } from './HighlightOff'; +export { default as HighlightOffOutlined } from './HighlightOffOutlined'; +export { default as HighlightOffRounded } from './HighlightOffRounded'; +export { default as HighlightOffSharp } from './HighlightOffSharp'; +export { default as HighlightOffTwoTone } from './HighlightOffTwoTone'; +export { default as HighlightOutlined } from './HighlightOutlined'; +export { default as HighlightRounded } from './HighlightRounded'; +export { default as HighlightSharp } from './HighlightSharp'; +export { default as HighlightTwoTone } from './HighlightTwoTone'; +export { default as Hiking } from './Hiking'; +export { default as HikingOutlined } from './HikingOutlined'; +export { default as HikingRounded } from './HikingRounded'; +export { default as HikingSharp } from './HikingSharp'; +export { default as HikingTwoTone } from './HikingTwoTone'; +export { default as History } from './History'; +export { default as HistoryEdu } from './HistoryEdu'; +export { default as HistoryEduOutlined } from './HistoryEduOutlined'; +export { default as HistoryEduRounded } from './HistoryEduRounded'; +export { default as HistoryEduSharp } from './HistoryEduSharp'; +export { default as HistoryEduTwoTone } from './HistoryEduTwoTone'; +export { default as HistoryOutlined } from './HistoryOutlined'; +export { default as HistoryRounded } from './HistoryRounded'; +export { default as HistorySharp } from './HistorySharp'; +export { default as HistoryToggleOff } from './HistoryToggleOff'; +export { default as HistoryToggleOffOutlined } from './HistoryToggleOffOutlined'; +export { default as HistoryToggleOffRounded } from './HistoryToggleOffRounded'; +export { default as HistoryToggleOffSharp } from './HistoryToggleOffSharp'; +export { default as HistoryToggleOffTwoTone } from './HistoryToggleOffTwoTone'; +export { default as HistoryTwoTone } from './HistoryTwoTone'; +export { default as HolidayVillage } from './HolidayVillage'; +export { default as HolidayVillageOutlined } from './HolidayVillageOutlined'; +export { default as HolidayVillageRounded } from './HolidayVillageRounded'; +export { default as HolidayVillageSharp } from './HolidayVillageSharp'; +export { default as HolidayVillageTwoTone } from './HolidayVillageTwoTone'; +export { default as Home } from './Home'; +export { default as HomeMax } from './HomeMax'; +export { default as HomeMaxOutlined } from './HomeMaxOutlined'; +export { default as HomeMaxRounded } from './HomeMaxRounded'; +export { default as HomeMaxSharp } from './HomeMaxSharp'; +export { default as HomeMaxTwoTone } from './HomeMaxTwoTone'; +export { default as HomeMini } from './HomeMini'; +export { default as HomeMiniOutlined } from './HomeMiniOutlined'; +export { default as HomeMiniRounded } from './HomeMiniRounded'; +export { default as HomeMiniSharp } from './HomeMiniSharp'; +export { default as HomeMiniTwoTone } from './HomeMiniTwoTone'; +export { default as HomeOutlined } from './HomeOutlined'; +export { default as HomeRepairService } from './HomeRepairService'; +export { default as HomeRepairServiceOutlined } from './HomeRepairServiceOutlined'; +export { default as HomeRepairServiceRounded } from './HomeRepairServiceRounded'; +export { default as HomeRepairServiceSharp } from './HomeRepairServiceSharp'; +export { default as HomeRepairServiceTwoTone } from './HomeRepairServiceTwoTone'; +export { default as HomeRounded } from './HomeRounded'; +export { default as HomeSharp } from './HomeSharp'; +export { default as HomeTwoTone } from './HomeTwoTone'; +export { default as HomeWork } from './HomeWork'; +export { default as HomeWorkOutlined } from './HomeWorkOutlined'; +export { default as HomeWorkRounded } from './HomeWorkRounded'; +export { default as HomeWorkSharp } from './HomeWorkSharp'; +export { default as HomeWorkTwoTone } from './HomeWorkTwoTone'; +export { default as HorizontalRule } from './HorizontalRule'; +export { default as HorizontalRuleOutlined } from './HorizontalRuleOutlined'; +export { default as HorizontalRuleRounded } from './HorizontalRuleRounded'; +export { default as HorizontalRuleSharp } from './HorizontalRuleSharp'; +export { default as HorizontalRuleTwoTone } from './HorizontalRuleTwoTone'; +export { default as HorizontalSplit } from './HorizontalSplit'; +export { default as HorizontalSplitOutlined } from './HorizontalSplitOutlined'; +export { default as HorizontalSplitRounded } from './HorizontalSplitRounded'; +export { default as HorizontalSplitSharp } from './HorizontalSplitSharp'; +export { default as HorizontalSplitTwoTone } from './HorizontalSplitTwoTone'; +export { default as HotTub } from './HotTub'; +export { default as HotTubOutlined } from './HotTubOutlined'; +export { default as HotTubRounded } from './HotTubRounded'; +export { default as HotTubSharp } from './HotTubSharp'; +export { default as HotTubTwoTone } from './HotTubTwoTone'; +export { default as Hotel } from './Hotel'; +export { default as HotelOutlined } from './HotelOutlined'; +export { default as HotelRounded } from './HotelRounded'; +export { default as HotelSharp } from './HotelSharp'; +export { default as HotelTwoTone } from './HotelTwoTone'; +export { default as HourglassBottom } from './HourglassBottom'; +export { default as HourglassBottomOutlined } from './HourglassBottomOutlined'; +export { default as HourglassBottomRounded } from './HourglassBottomRounded'; +export { default as HourglassBottomSharp } from './HourglassBottomSharp'; +export { default as HourglassBottomTwoTone } from './HourglassBottomTwoTone'; +export { default as HourglassDisabled } from './HourglassDisabled'; +export { default as HourglassDisabledOutlined } from './HourglassDisabledOutlined'; +export { default as HourglassDisabledRounded } from './HourglassDisabledRounded'; +export { default as HourglassDisabledSharp } from './HourglassDisabledSharp'; +export { default as HourglassDisabledTwoTone } from './HourglassDisabledTwoTone'; +export { default as HourglassEmpty } from './HourglassEmpty'; +export { default as HourglassEmptyOutlined } from './HourglassEmptyOutlined'; +export { default as HourglassEmptyRounded } from './HourglassEmptyRounded'; +export { default as HourglassEmptySharp } from './HourglassEmptySharp'; +export { default as HourglassEmptyTwoTone } from './HourglassEmptyTwoTone'; +export { default as HourglassFull } from './HourglassFull'; +export { default as HourglassFullOutlined } from './HourglassFullOutlined'; +export { default as HourglassFullRounded } from './HourglassFullRounded'; +export { default as HourglassFullSharp } from './HourglassFullSharp'; +export { default as HourglassFullTwoTone } from './HourglassFullTwoTone'; +export { default as HourglassTop } from './HourglassTop'; +export { default as HourglassTopOutlined } from './HourglassTopOutlined'; +export { default as HourglassTopRounded } from './HourglassTopRounded'; +export { default as HourglassTopSharp } from './HourglassTopSharp'; +export { default as HourglassTopTwoTone } from './HourglassTopTwoTone'; +export { default as House } from './House'; +export { default as HouseOutlined } from './HouseOutlined'; +export { default as HouseRounded } from './HouseRounded'; +export { default as HouseSharp } from './HouseSharp'; +export { default as HouseSiding } from './HouseSiding'; +export { default as HouseSidingOutlined } from './HouseSidingOutlined'; +export { default as HouseSidingRounded } from './HouseSidingRounded'; +export { default as HouseSidingSharp } from './HouseSidingSharp'; +export { default as HouseSidingTwoTone } from './HouseSidingTwoTone'; +export { default as HouseTwoTone } from './HouseTwoTone'; +export { default as Houseboat } from './Houseboat'; +export { default as HouseboatOutlined } from './HouseboatOutlined'; +export { default as HouseboatRounded } from './HouseboatRounded'; +export { default as HouseboatSharp } from './HouseboatSharp'; +export { default as HouseboatTwoTone } from './HouseboatTwoTone'; +export { default as HowToReg } from './HowToReg'; +export { default as HowToRegOutlined } from './HowToRegOutlined'; +export { default as HowToRegRounded } from './HowToRegRounded'; +export { default as HowToRegSharp } from './HowToRegSharp'; +export { default as HowToRegTwoTone } from './HowToRegTwoTone'; +export { default as HowToVote } from './HowToVote'; +export { default as HowToVoteOutlined } from './HowToVoteOutlined'; +export { default as HowToVoteRounded } from './HowToVoteRounded'; +export { default as HowToVoteSharp } from './HowToVoteSharp'; +export { default as HowToVoteTwoTone } from './HowToVoteTwoTone'; +export { default as Http } from './Http'; +export { default as HttpOutlined } from './HttpOutlined'; +export { default as HttpRounded } from './HttpRounded'; +export { default as HttpSharp } from './HttpSharp'; +export { default as HttpTwoTone } from './HttpTwoTone'; +export { default as Https } from './Https'; +export { default as HttpsOutlined } from './HttpsOutlined'; +export { default as HttpsRounded } from './HttpsRounded'; +export { default as HttpsSharp } from './HttpsSharp'; +export { default as HttpsTwoTone } from './HttpsTwoTone'; +export { default as Hvac } from './Hvac'; +export { default as HvacOutlined } from './HvacOutlined'; +export { default as HvacRounded } from './HvacRounded'; +export { default as HvacSharp } from './HvacSharp'; +export { default as HvacTwoTone } from './HvacTwoTone'; +export { default as IceSkating } from './IceSkating'; +export { default as IceSkatingOutlined } from './IceSkatingOutlined'; +export { default as IceSkatingRounded } from './IceSkatingRounded'; +export { default as IceSkatingSharp } from './IceSkatingSharp'; +export { default as IceSkatingTwoTone } from './IceSkatingTwoTone'; +export { default as Icecream } from './Icecream'; +export { default as IcecreamOutlined } from './IcecreamOutlined'; +export { default as IcecreamRounded } from './IcecreamRounded'; +export { default as IcecreamSharp } from './IcecreamSharp'; +export { default as IcecreamTwoTone } from './IcecreamTwoTone'; +export { default as Image } from './Image'; +export { default as ImageAspectRatio } from './ImageAspectRatio'; +export { default as ImageAspectRatioOutlined } from './ImageAspectRatioOutlined'; +export { default as ImageAspectRatioRounded } from './ImageAspectRatioRounded'; +export { default as ImageAspectRatioSharp } from './ImageAspectRatioSharp'; +export { default as ImageAspectRatioTwoTone } from './ImageAspectRatioTwoTone'; +export { default as ImageNotSupported } from './ImageNotSupported'; +export { default as ImageNotSupportedOutlined } from './ImageNotSupportedOutlined'; +export { default as ImageNotSupportedRounded } from './ImageNotSupportedRounded'; +export { default as ImageNotSupportedSharp } from './ImageNotSupportedSharp'; +export { default as ImageNotSupportedTwoTone } from './ImageNotSupportedTwoTone'; +export { default as ImageOutlined } from './ImageOutlined'; +export { default as ImageRounded } from './ImageRounded'; +export { default as ImageSearch } from './ImageSearch'; +export { default as ImageSearchOutlined } from './ImageSearchOutlined'; +export { default as ImageSearchRounded } from './ImageSearchRounded'; +export { default as ImageSearchSharp } from './ImageSearchSharp'; +export { default as ImageSearchTwoTone } from './ImageSearchTwoTone'; +export { default as ImageSharp } from './ImageSharp'; +export { default as ImageTwoTone } from './ImageTwoTone'; +export { default as ImagesearchRoller } from './ImagesearchRoller'; +export { default as ImagesearchRollerOutlined } from './ImagesearchRollerOutlined'; +export { default as ImagesearchRollerRounded } from './ImagesearchRollerRounded'; +export { default as ImagesearchRollerSharp } from './ImagesearchRollerSharp'; +export { default as ImagesearchRollerTwoTone } from './ImagesearchRollerTwoTone'; +export { default as ImportContacts } from './ImportContacts'; +export { default as ImportContactsOutlined } from './ImportContactsOutlined'; +export { default as ImportContactsRounded } from './ImportContactsRounded'; +export { default as ImportContactsSharp } from './ImportContactsSharp'; +export { default as ImportContactsTwoTone } from './ImportContactsTwoTone'; +export { default as ImportExport } from './ImportExport'; +export { default as ImportExportOutlined } from './ImportExportOutlined'; +export { default as ImportExportRounded } from './ImportExportRounded'; +export { default as ImportExportSharp } from './ImportExportSharp'; +export { default as ImportExportTwoTone } from './ImportExportTwoTone'; +export { default as ImportantDevices } from './ImportantDevices'; +export { default as ImportantDevicesOutlined } from './ImportantDevicesOutlined'; +export { default as ImportantDevicesRounded } from './ImportantDevicesRounded'; +export { default as ImportantDevicesSharp } from './ImportantDevicesSharp'; +export { default as ImportantDevicesTwoTone } from './ImportantDevicesTwoTone'; +export { default as Inbox } from './Inbox'; +export { default as InboxOutlined } from './InboxOutlined'; +export { default as InboxRounded } from './InboxRounded'; +export { default as InboxSharp } from './InboxSharp'; +export { default as InboxTwoTone } from './InboxTwoTone'; +export { default as IndeterminateCheckBox } from './IndeterminateCheckBox'; +export { default as IndeterminateCheckBoxOutlined } from './IndeterminateCheckBoxOutlined'; +export { default as IndeterminateCheckBoxRounded } from './IndeterminateCheckBoxRounded'; +export { default as IndeterminateCheckBoxSharp } from './IndeterminateCheckBoxSharp'; +export { default as IndeterminateCheckBoxTwoTone } from './IndeterminateCheckBoxTwoTone'; +export { default as Info } from './Info'; +export { default as InfoOutlined } from './InfoOutlined'; +export { default as InfoRounded } from './InfoRounded'; +export { default as InfoSharp } from './InfoSharp'; +export { default as InfoTwoTone } from './InfoTwoTone'; +export { default as Input } from './Input'; +export { default as InputOutlined } from './InputOutlined'; +export { default as InputRounded } from './InputRounded'; +export { default as InputSharp } from './InputSharp'; +export { default as InputTwoTone } from './InputTwoTone'; +export { default as InsertChart } from './InsertChart'; +export { default as InsertChartOutlined } from './InsertChartOutlined'; +export { default as InsertChartOutlinedOutlined } from './InsertChartOutlinedOutlined'; +export { default as InsertChartOutlinedRounded } from './InsertChartOutlinedRounded'; +export { default as InsertChartOutlinedSharp } from './InsertChartOutlinedSharp'; +export { default as InsertChartOutlinedTwoTone } from './InsertChartOutlinedTwoTone'; +export { default as InsertChartRounded } from './InsertChartRounded'; +export { default as InsertChartSharp } from './InsertChartSharp'; +export { default as InsertChartTwoTone } from './InsertChartTwoTone'; +export { default as InsertComment } from './InsertComment'; +export { default as InsertCommentOutlined } from './InsertCommentOutlined'; +export { default as InsertCommentRounded } from './InsertCommentRounded'; +export { default as InsertCommentSharp } from './InsertCommentSharp'; +export { default as InsertCommentTwoTone } from './InsertCommentTwoTone'; +export { default as InsertDriveFile } from './InsertDriveFile'; +export { default as InsertDriveFileOutlined } from './InsertDriveFileOutlined'; +export { default as InsertDriveFileRounded } from './InsertDriveFileRounded'; +export { default as InsertDriveFileSharp } from './InsertDriveFileSharp'; +export { default as InsertDriveFileTwoTone } from './InsertDriveFileTwoTone'; +export { default as InsertEmoticon } from './InsertEmoticon'; +export { default as InsertEmoticonOutlined } from './InsertEmoticonOutlined'; +export { default as InsertEmoticonRounded } from './InsertEmoticonRounded'; +export { default as InsertEmoticonSharp } from './InsertEmoticonSharp'; +export { default as InsertEmoticonTwoTone } from './InsertEmoticonTwoTone'; +export { default as InsertInvitation } from './InsertInvitation'; +export { default as InsertInvitationOutlined } from './InsertInvitationOutlined'; +export { default as InsertInvitationRounded } from './InsertInvitationRounded'; +export { default as InsertInvitationSharp } from './InsertInvitationSharp'; +export { default as InsertInvitationTwoTone } from './InsertInvitationTwoTone'; +export { default as InsertLink } from './InsertLink'; +export { default as InsertLinkOutlined } from './InsertLinkOutlined'; +export { default as InsertLinkRounded } from './InsertLinkRounded'; +export { default as InsertLinkSharp } from './InsertLinkSharp'; +export { default as InsertLinkTwoTone } from './InsertLinkTwoTone'; +export { default as InsertPhoto } from './InsertPhoto'; +export { default as InsertPhotoOutlined } from './InsertPhotoOutlined'; +export { default as InsertPhotoRounded } from './InsertPhotoRounded'; +export { default as InsertPhotoSharp } from './InsertPhotoSharp'; +export { default as InsertPhotoTwoTone } from './InsertPhotoTwoTone'; +export { default as Insights } from './Insights'; +export { default as InsightsOutlined } from './InsightsOutlined'; +export { default as InsightsRounded } from './InsightsRounded'; +export { default as InsightsSharp } from './InsightsSharp'; +export { default as InsightsTwoTone } from './InsightsTwoTone'; +export { default as Instagram } from './Instagram'; +export { default as IntegrationInstructions } from './IntegrationInstructions'; +export { default as IntegrationInstructionsOutlined } from './IntegrationInstructionsOutlined'; +export { default as IntegrationInstructionsRounded } from './IntegrationInstructionsRounded'; +export { default as IntegrationInstructionsSharp } from './IntegrationInstructionsSharp'; +export { default as IntegrationInstructionsTwoTone } from './IntegrationInstructionsTwoTone'; +export { default as Inventory } from './Inventory'; +export { default as Inventory2 } from './Inventory2'; +export { default as Inventory2Outlined } from './Inventory2Outlined'; +export { default as Inventory2Rounded } from './Inventory2Rounded'; +export { default as Inventory2Sharp } from './Inventory2Sharp'; +export { default as Inventory2TwoTone } from './Inventory2TwoTone'; +export { default as InventoryOutlined } from './InventoryOutlined'; +export { default as InventoryRounded } from './InventoryRounded'; +export { default as InventorySharp } from './InventorySharp'; +export { default as InventoryTwoTone } from './InventoryTwoTone'; +export { default as InvertColors } from './InvertColors'; +export { default as InvertColorsOff } from './InvertColorsOff'; +export { default as InvertColorsOffOutlined } from './InvertColorsOffOutlined'; +export { default as InvertColorsOffRounded } from './InvertColorsOffRounded'; +export { default as InvertColorsOffSharp } from './InvertColorsOffSharp'; +export { default as InvertColorsOffTwoTone } from './InvertColorsOffTwoTone'; +export { default as InvertColorsOutlined } from './InvertColorsOutlined'; +export { default as InvertColorsRounded } from './InvertColorsRounded'; +export { default as InvertColorsSharp } from './InvertColorsSharp'; +export { default as InvertColorsTwoTone } from './InvertColorsTwoTone'; +export { default as IosShare } from './IosShare'; +export { default as IosShareOutlined } from './IosShareOutlined'; +export { default as IosShareRounded } from './IosShareRounded'; +export { default as IosShareSharp } from './IosShareSharp'; +export { default as IosShareTwoTone } from './IosShareTwoTone'; +export { default as Iron } from './Iron'; +export { default as IronOutlined } from './IronOutlined'; +export { default as IronRounded } from './IronRounded'; +export { default as IronSharp } from './IronSharp'; +export { default as IronTwoTone } from './IronTwoTone'; +export { default as Iso } from './Iso'; +export { default as IsoOutlined } from './IsoOutlined'; +export { default as IsoRounded } from './IsoRounded'; +export { default as IsoSharp } from './IsoSharp'; +export { default as IsoTwoTone } from './IsoTwoTone'; +export { default as Kayaking } from './Kayaking'; +export { default as KayakingOutlined } from './KayakingOutlined'; +export { default as KayakingRounded } from './KayakingRounded'; +export { default as KayakingSharp } from './KayakingSharp'; +export { default as KayakingTwoTone } from './KayakingTwoTone'; +export { default as Keyboard } from './Keyboard'; +export { default as KeyboardAlt } from './KeyboardAlt'; +export { default as KeyboardAltOutlined } from './KeyboardAltOutlined'; +export { default as KeyboardAltRounded } from './KeyboardAltRounded'; +export { default as KeyboardAltSharp } from './KeyboardAltSharp'; +export { default as KeyboardAltTwoTone } from './KeyboardAltTwoTone'; +export { default as KeyboardArrowDown } from './KeyboardArrowDown'; +export { default as KeyboardArrowDownOutlined } from './KeyboardArrowDownOutlined'; +export { default as KeyboardArrowDownRounded } from './KeyboardArrowDownRounded'; +export { default as KeyboardArrowDownSharp } from './KeyboardArrowDownSharp'; +export { default as KeyboardArrowDownTwoTone } from './KeyboardArrowDownTwoTone'; +export { default as KeyboardArrowLeft } from './KeyboardArrowLeft'; +export { default as KeyboardArrowLeftOutlined } from './KeyboardArrowLeftOutlined'; +export { default as KeyboardArrowLeftRounded } from './KeyboardArrowLeftRounded'; +export { default as KeyboardArrowLeftSharp } from './KeyboardArrowLeftSharp'; +export { default as KeyboardArrowLeftTwoTone } from './KeyboardArrowLeftTwoTone'; +export { default as KeyboardArrowRight } from './KeyboardArrowRight'; +export { default as KeyboardArrowRightOutlined } from './KeyboardArrowRightOutlined'; +export { default as KeyboardArrowRightRounded } from './KeyboardArrowRightRounded'; +export { default as KeyboardArrowRightSharp } from './KeyboardArrowRightSharp'; +export { default as KeyboardArrowRightTwoTone } from './KeyboardArrowRightTwoTone'; +export { default as KeyboardArrowUp } from './KeyboardArrowUp'; +export { default as KeyboardArrowUpOutlined } from './KeyboardArrowUpOutlined'; +export { default as KeyboardArrowUpRounded } from './KeyboardArrowUpRounded'; +export { default as KeyboardArrowUpSharp } from './KeyboardArrowUpSharp'; +export { default as KeyboardArrowUpTwoTone } from './KeyboardArrowUpTwoTone'; +export { default as KeyboardBackspace } from './KeyboardBackspace'; +export { default as KeyboardBackspaceOutlined } from './KeyboardBackspaceOutlined'; +export { default as KeyboardBackspaceRounded } from './KeyboardBackspaceRounded'; +export { default as KeyboardBackspaceSharp } from './KeyboardBackspaceSharp'; +export { default as KeyboardBackspaceTwoTone } from './KeyboardBackspaceTwoTone'; +export { default as KeyboardCapslock } from './KeyboardCapslock'; +export { default as KeyboardCapslockOutlined } from './KeyboardCapslockOutlined'; +export { default as KeyboardCapslockRounded } from './KeyboardCapslockRounded'; +export { default as KeyboardCapslockSharp } from './KeyboardCapslockSharp'; +export { default as KeyboardCapslockTwoTone } from './KeyboardCapslockTwoTone'; +export { default as KeyboardHide } from './KeyboardHide'; +export { default as KeyboardHideOutlined } from './KeyboardHideOutlined'; +export { default as KeyboardHideRounded } from './KeyboardHideRounded'; +export { default as KeyboardHideSharp } from './KeyboardHideSharp'; +export { default as KeyboardHideTwoTone } from './KeyboardHideTwoTone'; +export { default as KeyboardOutlined } from './KeyboardOutlined'; +export { default as KeyboardReturn } from './KeyboardReturn'; +export { default as KeyboardReturnOutlined } from './KeyboardReturnOutlined'; +export { default as KeyboardReturnRounded } from './KeyboardReturnRounded'; +export { default as KeyboardReturnSharp } from './KeyboardReturnSharp'; +export { default as KeyboardReturnTwoTone } from './KeyboardReturnTwoTone'; +export { default as KeyboardRounded } from './KeyboardRounded'; +export { default as KeyboardSharp } from './KeyboardSharp'; +export { default as KeyboardTab } from './KeyboardTab'; +export { default as KeyboardTabOutlined } from './KeyboardTabOutlined'; +export { default as KeyboardTabRounded } from './KeyboardTabRounded'; +export { default as KeyboardTabSharp } from './KeyboardTabSharp'; +export { default as KeyboardTabTwoTone } from './KeyboardTabTwoTone'; +export { default as KeyboardTwoTone } from './KeyboardTwoTone'; +export { default as KeyboardVoice } from './KeyboardVoice'; +export { default as KeyboardVoiceOutlined } from './KeyboardVoiceOutlined'; +export { default as KeyboardVoiceRounded } from './KeyboardVoiceRounded'; +export { default as KeyboardVoiceSharp } from './KeyboardVoiceSharp'; +export { default as KeyboardVoiceTwoTone } from './KeyboardVoiceTwoTone'; +export { default as KingBed } from './KingBed'; +export { default as KingBedOutlined } from './KingBedOutlined'; +export { default as KingBedRounded } from './KingBedRounded'; +export { default as KingBedSharp } from './KingBedSharp'; +export { default as KingBedTwoTone } from './KingBedTwoTone'; +export { default as Kitchen } from './Kitchen'; +export { default as KitchenOutlined } from './KitchenOutlined'; +export { default as KitchenRounded } from './KitchenRounded'; +export { default as KitchenSharp } from './KitchenSharp'; +export { default as KitchenTwoTone } from './KitchenTwoTone'; +export { default as Kitesurfing } from './Kitesurfing'; +export { default as KitesurfingOutlined } from './KitesurfingOutlined'; +export { default as KitesurfingRounded } from './KitesurfingRounded'; +export { default as KitesurfingSharp } from './KitesurfingSharp'; +export { default as KitesurfingTwoTone } from './KitesurfingTwoTone'; +export { default as Label } from './Label'; +export { default as LabelImportant } from './LabelImportant'; +export { default as LabelImportantOutlined } from './LabelImportantOutlined'; +export { default as LabelImportantRounded } from './LabelImportantRounded'; +export { default as LabelImportantSharp } from './LabelImportantSharp'; +export { default as LabelImportantTwoTone } from './LabelImportantTwoTone'; +export { default as LabelOff } from './LabelOff'; +export { default as LabelOffOutlined } from './LabelOffOutlined'; +export { default as LabelOffRounded } from './LabelOffRounded'; +export { default as LabelOffSharp } from './LabelOffSharp'; +export { default as LabelOffTwoTone } from './LabelOffTwoTone'; +export { default as LabelOutlined } from './LabelOutlined'; +export { default as LabelRounded } from './LabelRounded'; +export { default as LabelSharp } from './LabelSharp'; +export { default as LabelTwoTone } from './LabelTwoTone'; +export { default as Landscape } from './Landscape'; +export { default as LandscapeOutlined } from './LandscapeOutlined'; +export { default as LandscapeRounded } from './LandscapeRounded'; +export { default as LandscapeSharp } from './LandscapeSharp'; +export { default as LandscapeTwoTone } from './LandscapeTwoTone'; +export { default as Language } from './Language'; +export { default as LanguageOutlined } from './LanguageOutlined'; +export { default as LanguageRounded } from './LanguageRounded'; +export { default as LanguageSharp } from './LanguageSharp'; +export { default as LanguageTwoTone } from './LanguageTwoTone'; +export { default as Laptop } from './Laptop'; +export { default as LaptopChromebook } from './LaptopChromebook'; +export { default as LaptopChromebookOutlined } from './LaptopChromebookOutlined'; +export { default as LaptopChromebookRounded } from './LaptopChromebookRounded'; +export { default as LaptopChromebookSharp } from './LaptopChromebookSharp'; +export { default as LaptopChromebookTwoTone } from './LaptopChromebookTwoTone'; +export { default as LaptopMac } from './LaptopMac'; +export { default as LaptopMacOutlined } from './LaptopMacOutlined'; +export { default as LaptopMacRounded } from './LaptopMacRounded'; +export { default as LaptopMacSharp } from './LaptopMacSharp'; +export { default as LaptopMacTwoTone } from './LaptopMacTwoTone'; +export { default as LaptopOutlined } from './LaptopOutlined'; +export { default as LaptopRounded } from './LaptopRounded'; +export { default as LaptopSharp } from './LaptopSharp'; +export { default as LaptopTwoTone } from './LaptopTwoTone'; +export { default as LaptopWindows } from './LaptopWindows'; +export { default as LaptopWindowsOutlined } from './LaptopWindowsOutlined'; +export { default as LaptopWindowsRounded } from './LaptopWindowsRounded'; +export { default as LaptopWindowsSharp } from './LaptopWindowsSharp'; +export { default as LaptopWindowsTwoTone } from './LaptopWindowsTwoTone'; +export { default as LastPage } from './LastPage'; +export { default as LastPageOutlined } from './LastPageOutlined'; +export { default as LastPageRounded } from './LastPageRounded'; +export { default as LastPageSharp } from './LastPageSharp'; +export { default as LastPageTwoTone } from './LastPageTwoTone'; +export { default as Launch } from './Launch'; +export { default as LaunchOutlined } from './LaunchOutlined'; +export { default as LaunchRounded } from './LaunchRounded'; +export { default as LaunchSharp } from './LaunchSharp'; +export { default as LaunchTwoTone } from './LaunchTwoTone'; +export { default as Layers } from './Layers'; +export { default as LayersClear } from './LayersClear'; +export { default as LayersClearOutlined } from './LayersClearOutlined'; +export { default as LayersClearRounded } from './LayersClearRounded'; +export { default as LayersClearSharp } from './LayersClearSharp'; +export { default as LayersClearTwoTone } from './LayersClearTwoTone'; +export { default as LayersOutlined } from './LayersOutlined'; +export { default as LayersRounded } from './LayersRounded'; +export { default as LayersSharp } from './LayersSharp'; +export { default as LayersTwoTone } from './LayersTwoTone'; +export { default as Leaderboard } from './Leaderboard'; +export { default as LeaderboardOutlined } from './LeaderboardOutlined'; +export { default as LeaderboardRounded } from './LeaderboardRounded'; +export { default as LeaderboardSharp } from './LeaderboardSharp'; +export { default as LeaderboardTwoTone } from './LeaderboardTwoTone'; +export { default as LeakAdd } from './LeakAdd'; +export { default as LeakAddOutlined } from './LeakAddOutlined'; +export { default as LeakAddRounded } from './LeakAddRounded'; +export { default as LeakAddSharp } from './LeakAddSharp'; +export { default as LeakAddTwoTone } from './LeakAddTwoTone'; +export { default as LeakRemove } from './LeakRemove'; +export { default as LeakRemoveOutlined } from './LeakRemoveOutlined'; +export { default as LeakRemoveRounded } from './LeakRemoveRounded'; +export { default as LeakRemoveSharp } from './LeakRemoveSharp'; +export { default as LeakRemoveTwoTone } from './LeakRemoveTwoTone'; +export { default as LegendToggle } from './LegendToggle'; +export { default as LegendToggleOutlined } from './LegendToggleOutlined'; +export { default as LegendToggleRounded } from './LegendToggleRounded'; +export { default as LegendToggleSharp } from './LegendToggleSharp'; +export { default as LegendToggleTwoTone } from './LegendToggleTwoTone'; +export { default as Lens } from './Lens'; +export { default as LensBlur } from './LensBlur'; +export { default as LensBlurOutlined } from './LensBlurOutlined'; +export { default as LensBlurRounded } from './LensBlurRounded'; +export { default as LensBlurSharp } from './LensBlurSharp'; +export { default as LensBlurTwoTone } from './LensBlurTwoTone'; +export { default as LensOutlined } from './LensOutlined'; +export { default as LensRounded } from './LensRounded'; +export { default as LensSharp } from './LensSharp'; +export { default as LensTwoTone } from './LensTwoTone'; +export { default as LibraryAdd } from './LibraryAdd'; +export { default as LibraryAddCheck } from './LibraryAddCheck'; +export { default as LibraryAddCheckOutlined } from './LibraryAddCheckOutlined'; +export { default as LibraryAddCheckRounded } from './LibraryAddCheckRounded'; +export { default as LibraryAddCheckSharp } from './LibraryAddCheckSharp'; +export { default as LibraryAddCheckTwoTone } from './LibraryAddCheckTwoTone'; +export { default as LibraryAddOutlined } from './LibraryAddOutlined'; +export { default as LibraryAddRounded } from './LibraryAddRounded'; +export { default as LibraryAddSharp } from './LibraryAddSharp'; +export { default as LibraryAddTwoTone } from './LibraryAddTwoTone'; +export { default as LibraryBooks } from './LibraryBooks'; +export { default as LibraryBooksOutlined } from './LibraryBooksOutlined'; +export { default as LibraryBooksRounded } from './LibraryBooksRounded'; +export { default as LibraryBooksSharp } from './LibraryBooksSharp'; +export { default as LibraryBooksTwoTone } from './LibraryBooksTwoTone'; +export { default as LibraryMusic } from './LibraryMusic'; +export { default as LibraryMusicOutlined } from './LibraryMusicOutlined'; +export { default as LibraryMusicRounded } from './LibraryMusicRounded'; +export { default as LibraryMusicSharp } from './LibraryMusicSharp'; +export { default as LibraryMusicTwoTone } from './LibraryMusicTwoTone'; +export { default as Light } from './Light'; +export { default as LightMode } from './LightMode'; +export { default as LightModeOutlined } from './LightModeOutlined'; +export { default as LightModeRounded } from './LightModeRounded'; +export { default as LightModeSharp } from './LightModeSharp'; +export { default as LightModeTwoTone } from './LightModeTwoTone'; +export { default as LightOutlined } from './LightOutlined'; +export { default as LightRounded } from './LightRounded'; +export { default as LightSharp } from './LightSharp'; +export { default as LightTwoTone } from './LightTwoTone'; +export { default as Lightbulb } from './Lightbulb'; +export { default as LightbulbOutlined } from './LightbulbOutlined'; +export { default as LightbulbRounded } from './LightbulbRounded'; +export { default as LightbulbSharp } from './LightbulbSharp'; +export { default as LightbulbTwoTone } from './LightbulbTwoTone'; +export { default as LineStyle } from './LineStyle'; +export { default as LineStyleOutlined } from './LineStyleOutlined'; +export { default as LineStyleRounded } from './LineStyleRounded'; +export { default as LineStyleSharp } from './LineStyleSharp'; +export { default as LineStyleTwoTone } from './LineStyleTwoTone'; +export { default as LineWeight } from './LineWeight'; +export { default as LineWeightOutlined } from './LineWeightOutlined'; +export { default as LineWeightRounded } from './LineWeightRounded'; +export { default as LineWeightSharp } from './LineWeightSharp'; +export { default as LineWeightTwoTone } from './LineWeightTwoTone'; +export { default as LinearScale } from './LinearScale'; +export { default as LinearScaleOutlined } from './LinearScaleOutlined'; +export { default as LinearScaleRounded } from './LinearScaleRounded'; +export { default as LinearScaleSharp } from './LinearScaleSharp'; +export { default as LinearScaleTwoTone } from './LinearScaleTwoTone'; +export { default as Link } from './Link'; +export { default as LinkOff } from './LinkOff'; +export { default as LinkOffOutlined } from './LinkOffOutlined'; +export { default as LinkOffRounded } from './LinkOffRounded'; +export { default as LinkOffSharp } from './LinkOffSharp'; +export { default as LinkOffTwoTone } from './LinkOffTwoTone'; +export { default as LinkOutlined } from './LinkOutlined'; +export { default as LinkRounded } from './LinkRounded'; +export { default as LinkSharp } from './LinkSharp'; +export { default as LinkTwoTone } from './LinkTwoTone'; +export { default as LinkedCamera } from './LinkedCamera'; +export { default as LinkedCameraOutlined } from './LinkedCameraOutlined'; +export { default as LinkedCameraRounded } from './LinkedCameraRounded'; +export { default as LinkedCameraSharp } from './LinkedCameraSharp'; +export { default as LinkedCameraTwoTone } from './LinkedCameraTwoTone'; +export { default as LinkedIn } from './LinkedIn'; +export { default as Liquor } from './Liquor'; +export { default as LiquorOutlined } from './LiquorOutlined'; +export { default as LiquorRounded } from './LiquorRounded'; +export { default as LiquorSharp } from './LiquorSharp'; +export { default as LiquorTwoTone } from './LiquorTwoTone'; +export { default as List } from './List'; +export { default as ListAlt } from './ListAlt'; +export { default as ListAltOutlined } from './ListAltOutlined'; +export { default as ListAltRounded } from './ListAltRounded'; +export { default as ListAltSharp } from './ListAltSharp'; +export { default as ListAltTwoTone } from './ListAltTwoTone'; +export { default as ListOutlined } from './ListOutlined'; +export { default as ListRounded } from './ListRounded'; +export { default as ListSharp } from './ListSharp'; +export { default as ListTwoTone } from './ListTwoTone'; +export { default as LiveHelp } from './LiveHelp'; +export { default as LiveHelpOutlined } from './LiveHelpOutlined'; +export { default as LiveHelpRounded } from './LiveHelpRounded'; +export { default as LiveHelpSharp } from './LiveHelpSharp'; +export { default as LiveHelpTwoTone } from './LiveHelpTwoTone'; +export { default as LiveTv } from './LiveTv'; +export { default as LiveTvOutlined } from './LiveTvOutlined'; +export { default as LiveTvRounded } from './LiveTvRounded'; +export { default as LiveTvSharp } from './LiveTvSharp'; +export { default as LiveTvTwoTone } from './LiveTvTwoTone'; +export { default as Living } from './Living'; +export { default as LivingOutlined } from './LivingOutlined'; +export { default as LivingRounded } from './LivingRounded'; +export { default as LivingSharp } from './LivingSharp'; +export { default as LivingTwoTone } from './LivingTwoTone'; +export { default as LocalActivity } from './LocalActivity'; +export { default as LocalActivityOutlined } from './LocalActivityOutlined'; +export { default as LocalActivityRounded } from './LocalActivityRounded'; +export { default as LocalActivitySharp } from './LocalActivitySharp'; +export { default as LocalActivityTwoTone } from './LocalActivityTwoTone'; +export { default as LocalAirport } from './LocalAirport'; +export { default as LocalAirportOutlined } from './LocalAirportOutlined'; +export { default as LocalAirportRounded } from './LocalAirportRounded'; +export { default as LocalAirportSharp } from './LocalAirportSharp'; +export { default as LocalAirportTwoTone } from './LocalAirportTwoTone'; +export { default as LocalAtm } from './LocalAtm'; +export { default as LocalAtmOutlined } from './LocalAtmOutlined'; +export { default as LocalAtmRounded } from './LocalAtmRounded'; +export { default as LocalAtmSharp } from './LocalAtmSharp'; +export { default as LocalAtmTwoTone } from './LocalAtmTwoTone'; +export { default as LocalBar } from './LocalBar'; +export { default as LocalBarOutlined } from './LocalBarOutlined'; +export { default as LocalBarRounded } from './LocalBarRounded'; +export { default as LocalBarSharp } from './LocalBarSharp'; +export { default as LocalBarTwoTone } from './LocalBarTwoTone'; +export { default as LocalCafe } from './LocalCafe'; +export { default as LocalCafeOutlined } from './LocalCafeOutlined'; +export { default as LocalCafeRounded } from './LocalCafeRounded'; +export { default as LocalCafeSharp } from './LocalCafeSharp'; +export { default as LocalCafeTwoTone } from './LocalCafeTwoTone'; +export { default as LocalCarWash } from './LocalCarWash'; +export { default as LocalCarWashOutlined } from './LocalCarWashOutlined'; +export { default as LocalCarWashRounded } from './LocalCarWashRounded'; +export { default as LocalCarWashSharp } from './LocalCarWashSharp'; +export { default as LocalCarWashTwoTone } from './LocalCarWashTwoTone'; +export { default as LocalConvenienceStore } from './LocalConvenienceStore'; +export { default as LocalConvenienceStoreOutlined } from './LocalConvenienceStoreOutlined'; +export { default as LocalConvenienceStoreRounded } from './LocalConvenienceStoreRounded'; +export { default as LocalConvenienceStoreSharp } from './LocalConvenienceStoreSharp'; +export { default as LocalConvenienceStoreTwoTone } from './LocalConvenienceStoreTwoTone'; +export { default as LocalDining } from './LocalDining'; +export { default as LocalDiningOutlined } from './LocalDiningOutlined'; +export { default as LocalDiningRounded } from './LocalDiningRounded'; +export { default as LocalDiningSharp } from './LocalDiningSharp'; +export { default as LocalDiningTwoTone } from './LocalDiningTwoTone'; +export { default as LocalDrink } from './LocalDrink'; +export { default as LocalDrinkOutlined } from './LocalDrinkOutlined'; +export { default as LocalDrinkRounded } from './LocalDrinkRounded'; +export { default as LocalDrinkSharp } from './LocalDrinkSharp'; +export { default as LocalDrinkTwoTone } from './LocalDrinkTwoTone'; +export { default as LocalFireDepartment } from './LocalFireDepartment'; +export { default as LocalFireDepartmentOutlined } from './LocalFireDepartmentOutlined'; +export { default as LocalFireDepartmentRounded } from './LocalFireDepartmentRounded'; +export { default as LocalFireDepartmentSharp } from './LocalFireDepartmentSharp'; +export { default as LocalFireDepartmentTwoTone } from './LocalFireDepartmentTwoTone'; +export { default as LocalFlorist } from './LocalFlorist'; +export { default as LocalFloristOutlined } from './LocalFloristOutlined'; +export { default as LocalFloristRounded } from './LocalFloristRounded'; +export { default as LocalFloristSharp } from './LocalFloristSharp'; +export { default as LocalFloristTwoTone } from './LocalFloristTwoTone'; +export { default as LocalGasStation } from './LocalGasStation'; +export { default as LocalGasStationOutlined } from './LocalGasStationOutlined'; +export { default as LocalGasStationRounded } from './LocalGasStationRounded'; +export { default as LocalGasStationSharp } from './LocalGasStationSharp'; +export { default as LocalGasStationTwoTone } from './LocalGasStationTwoTone'; +export { default as LocalGroceryStore } from './LocalGroceryStore'; +export { default as LocalGroceryStoreOutlined } from './LocalGroceryStoreOutlined'; +export { default as LocalGroceryStoreRounded } from './LocalGroceryStoreRounded'; +export { default as LocalGroceryStoreSharp } from './LocalGroceryStoreSharp'; +export { default as LocalGroceryStoreTwoTone } from './LocalGroceryStoreTwoTone'; +export { default as LocalHospital } from './LocalHospital'; +export { default as LocalHospitalOutlined } from './LocalHospitalOutlined'; +export { default as LocalHospitalRounded } from './LocalHospitalRounded'; +export { default as LocalHospitalSharp } from './LocalHospitalSharp'; +export { default as LocalHospitalTwoTone } from './LocalHospitalTwoTone'; +export { default as LocalHotel } from './LocalHotel'; +export { default as LocalHotelOutlined } from './LocalHotelOutlined'; +export { default as LocalHotelRounded } from './LocalHotelRounded'; +export { default as LocalHotelSharp } from './LocalHotelSharp'; +export { default as LocalHotelTwoTone } from './LocalHotelTwoTone'; +export { default as LocalLaundryService } from './LocalLaundryService'; +export { default as LocalLaundryServiceOutlined } from './LocalLaundryServiceOutlined'; +export { default as LocalLaundryServiceRounded } from './LocalLaundryServiceRounded'; +export { default as LocalLaundryServiceSharp } from './LocalLaundryServiceSharp'; +export { default as LocalLaundryServiceTwoTone } from './LocalLaundryServiceTwoTone'; +export { default as LocalLibrary } from './LocalLibrary'; +export { default as LocalLibraryOutlined } from './LocalLibraryOutlined'; +export { default as LocalLibraryRounded } from './LocalLibraryRounded'; +export { default as LocalLibrarySharp } from './LocalLibrarySharp'; +export { default as LocalLibraryTwoTone } from './LocalLibraryTwoTone'; +export { default as LocalMall } from './LocalMall'; +export { default as LocalMallOutlined } from './LocalMallOutlined'; +export { default as LocalMallRounded } from './LocalMallRounded'; +export { default as LocalMallSharp } from './LocalMallSharp'; +export { default as LocalMallTwoTone } from './LocalMallTwoTone'; +export { default as LocalMovies } from './LocalMovies'; +export { default as LocalMoviesOutlined } from './LocalMoviesOutlined'; +export { default as LocalMoviesRounded } from './LocalMoviesRounded'; +export { default as LocalMoviesSharp } from './LocalMoviesSharp'; +export { default as LocalMoviesTwoTone } from './LocalMoviesTwoTone'; +export { default as LocalOffer } from './LocalOffer'; +export { default as LocalOfferOutlined } from './LocalOfferOutlined'; +export { default as LocalOfferRounded } from './LocalOfferRounded'; +export { default as LocalOfferSharp } from './LocalOfferSharp'; +export { default as LocalOfferTwoTone } from './LocalOfferTwoTone'; +export { default as LocalParking } from './LocalParking'; +export { default as LocalParkingOutlined } from './LocalParkingOutlined'; +export { default as LocalParkingRounded } from './LocalParkingRounded'; +export { default as LocalParkingSharp } from './LocalParkingSharp'; +export { default as LocalParkingTwoTone } from './LocalParkingTwoTone'; +export { default as LocalPharmacy } from './LocalPharmacy'; +export { default as LocalPharmacyOutlined } from './LocalPharmacyOutlined'; +export { default as LocalPharmacyRounded } from './LocalPharmacyRounded'; +export { default as LocalPharmacySharp } from './LocalPharmacySharp'; +export { default as LocalPharmacyTwoTone } from './LocalPharmacyTwoTone'; +export { default as LocalPhone } from './LocalPhone'; +export { default as LocalPhoneOutlined } from './LocalPhoneOutlined'; +export { default as LocalPhoneRounded } from './LocalPhoneRounded'; +export { default as LocalPhoneSharp } from './LocalPhoneSharp'; +export { default as LocalPhoneTwoTone } from './LocalPhoneTwoTone'; +export { default as LocalPizza } from './LocalPizza'; +export { default as LocalPizzaOutlined } from './LocalPizzaOutlined'; +export { default as LocalPizzaRounded } from './LocalPizzaRounded'; +export { default as LocalPizzaSharp } from './LocalPizzaSharp'; +export { default as LocalPizzaTwoTone } from './LocalPizzaTwoTone'; +export { default as LocalPlay } from './LocalPlay'; +export { default as LocalPlayOutlined } from './LocalPlayOutlined'; +export { default as LocalPlayRounded } from './LocalPlayRounded'; +export { default as LocalPlaySharp } from './LocalPlaySharp'; +export { default as LocalPlayTwoTone } from './LocalPlayTwoTone'; +export { default as LocalPolice } from './LocalPolice'; +export { default as LocalPoliceOutlined } from './LocalPoliceOutlined'; +export { default as LocalPoliceRounded } from './LocalPoliceRounded'; +export { default as LocalPoliceSharp } from './LocalPoliceSharp'; +export { default as LocalPoliceTwoTone } from './LocalPoliceTwoTone'; +export { default as LocalPostOffice } from './LocalPostOffice'; +export { default as LocalPostOfficeOutlined } from './LocalPostOfficeOutlined'; +export { default as LocalPostOfficeRounded } from './LocalPostOfficeRounded'; +export { default as LocalPostOfficeSharp } from './LocalPostOfficeSharp'; +export { default as LocalPostOfficeTwoTone } from './LocalPostOfficeTwoTone'; +export { default as LocalPrintshop } from './LocalPrintshop'; +export { default as LocalPrintshopOutlined } from './LocalPrintshopOutlined'; +export { default as LocalPrintshopRounded } from './LocalPrintshopRounded'; +export { default as LocalPrintshopSharp } from './LocalPrintshopSharp'; +export { default as LocalPrintshopTwoTone } from './LocalPrintshopTwoTone'; +export { default as LocalSee } from './LocalSee'; +export { default as LocalSeeOutlined } from './LocalSeeOutlined'; +export { default as LocalSeeRounded } from './LocalSeeRounded'; +export { default as LocalSeeSharp } from './LocalSeeSharp'; +export { default as LocalSeeTwoTone } from './LocalSeeTwoTone'; +export { default as LocalShipping } from './LocalShipping'; +export { default as LocalShippingOutlined } from './LocalShippingOutlined'; +export { default as LocalShippingRounded } from './LocalShippingRounded'; +export { default as LocalShippingSharp } from './LocalShippingSharp'; +export { default as LocalShippingTwoTone } from './LocalShippingTwoTone'; +export { default as LocalTaxi } from './LocalTaxi'; +export { default as LocalTaxiOutlined } from './LocalTaxiOutlined'; +export { default as LocalTaxiRounded } from './LocalTaxiRounded'; +export { default as LocalTaxiSharp } from './LocalTaxiSharp'; +export { default as LocalTaxiTwoTone } from './LocalTaxiTwoTone'; +export { default as LocationCity } from './LocationCity'; +export { default as LocationCityOutlined } from './LocationCityOutlined'; +export { default as LocationCityRounded } from './LocationCityRounded'; +export { default as LocationCitySharp } from './LocationCitySharp'; +export { default as LocationCityTwoTone } from './LocationCityTwoTone'; +export { default as LocationDisabled } from './LocationDisabled'; +export { default as LocationDisabledOutlined } from './LocationDisabledOutlined'; +export { default as LocationDisabledRounded } from './LocationDisabledRounded'; +export { default as LocationDisabledSharp } from './LocationDisabledSharp'; +export { default as LocationDisabledTwoTone } from './LocationDisabledTwoTone'; +export { default as LocationOff } from './LocationOff'; +export { default as LocationOffOutlined } from './LocationOffOutlined'; +export { default as LocationOffRounded } from './LocationOffRounded'; +export { default as LocationOffSharp } from './LocationOffSharp'; +export { default as LocationOffTwoTone } from './LocationOffTwoTone'; +export { default as LocationOn } from './LocationOn'; +export { default as LocationOnOutlined } from './LocationOnOutlined'; +export { default as LocationOnRounded } from './LocationOnRounded'; +export { default as LocationOnSharp } from './LocationOnSharp'; +export { default as LocationOnTwoTone } from './LocationOnTwoTone'; +export { default as LocationSearching } from './LocationSearching'; +export { default as LocationSearchingOutlined } from './LocationSearchingOutlined'; +export { default as LocationSearchingRounded } from './LocationSearchingRounded'; +export { default as LocationSearchingSharp } from './LocationSearchingSharp'; +export { default as LocationSearchingTwoTone } from './LocationSearchingTwoTone'; +export { default as Lock } from './Lock'; +export { default as LockClock } from './LockClock'; +export { default as LockClockOutlined } from './LockClockOutlined'; +export { default as LockClockRounded } from './LockClockRounded'; +export { default as LockClockSharp } from './LockClockSharp'; +export { default as LockClockTwoTone } from './LockClockTwoTone'; +export { default as LockOpen } from './LockOpen'; +export { default as LockOpenOutlined } from './LockOpenOutlined'; +export { default as LockOpenRounded } from './LockOpenRounded'; +export { default as LockOpenSharp } from './LockOpenSharp'; +export { default as LockOpenTwoTone } from './LockOpenTwoTone'; +export { default as LockOutlined } from './LockOutlined'; +export { default as LockRounded } from './LockRounded'; +export { default as LockSharp } from './LockSharp'; +export { default as LockTwoTone } from './LockTwoTone'; +export { default as Login } from './Login'; +export { default as LoginOutlined } from './LoginOutlined'; +export { default as LoginRounded } from './LoginRounded'; +export { default as LoginSharp } from './LoginSharp'; +export { default as LoginTwoTone } from './LoginTwoTone'; +export { default as Logout } from './Logout'; +export { default as LogoutOutlined } from './LogoutOutlined'; +export { default as LogoutRounded } from './LogoutRounded'; +export { default as LogoutSharp } from './LogoutSharp'; +export { default as LogoutTwoTone } from './LogoutTwoTone'; +export { default as Looks } from './Looks'; +export { default as Looks3 } from './Looks3'; +export { default as Looks3Outlined } from './Looks3Outlined'; +export { default as Looks3Rounded } from './Looks3Rounded'; +export { default as Looks3Sharp } from './Looks3Sharp'; +export { default as Looks3TwoTone } from './Looks3TwoTone'; +export { default as Looks4 } from './Looks4'; +export { default as Looks4Outlined } from './Looks4Outlined'; +export { default as Looks4Rounded } from './Looks4Rounded'; +export { default as Looks4Sharp } from './Looks4Sharp'; +export { default as Looks4TwoTone } from './Looks4TwoTone'; +export { default as Looks5 } from './Looks5'; +export { default as Looks5Outlined } from './Looks5Outlined'; +export { default as Looks5Rounded } from './Looks5Rounded'; +export { default as Looks5Sharp } from './Looks5Sharp'; +export { default as Looks5TwoTone } from './Looks5TwoTone'; +export { default as Looks6 } from './Looks6'; +export { default as Looks6Outlined } from './Looks6Outlined'; +export { default as Looks6Rounded } from './Looks6Rounded'; +export { default as Looks6Sharp } from './Looks6Sharp'; +export { default as Looks6TwoTone } from './Looks6TwoTone'; +export { default as LooksOne } from './LooksOne'; +export { default as LooksOneOutlined } from './LooksOneOutlined'; +export { default as LooksOneRounded } from './LooksOneRounded'; +export { default as LooksOneSharp } from './LooksOneSharp'; +export { default as LooksOneTwoTone } from './LooksOneTwoTone'; +export { default as LooksOutlined } from './LooksOutlined'; +export { default as LooksRounded } from './LooksRounded'; +export { default as LooksSharp } from './LooksSharp'; +export { default as LooksTwo } from './LooksTwo'; +export { default as LooksTwoOutlined } from './LooksTwoOutlined'; +export { default as LooksTwoRounded } from './LooksTwoRounded'; +export { default as LooksTwoSharp } from './LooksTwoSharp'; +export { default as LooksTwoTone } from './LooksTwoTone'; +export { default as LooksTwoTwoTone } from './LooksTwoTwoTone'; +export { default as Loop } from './Loop'; +export { default as LoopOutlined } from './LoopOutlined'; +export { default as LoopRounded } from './LoopRounded'; +export { default as LoopSharp } from './LoopSharp'; +export { default as LoopTwoTone } from './LoopTwoTone'; +export { default as Loupe } from './Loupe'; +export { default as LoupeOutlined } from './LoupeOutlined'; +export { default as LoupeRounded } from './LoupeRounded'; +export { default as LoupeSharp } from './LoupeSharp'; +export { default as LoupeTwoTone } from './LoupeTwoTone'; +export { default as LowPriority } from './LowPriority'; +export { default as LowPriorityOutlined } from './LowPriorityOutlined'; +export { default as LowPriorityRounded } from './LowPriorityRounded'; +export { default as LowPrioritySharp } from './LowPrioritySharp'; +export { default as LowPriorityTwoTone } from './LowPriorityTwoTone'; +export { default as Loyalty } from './Loyalty'; +export { default as LoyaltyOutlined } from './LoyaltyOutlined'; +export { default as LoyaltyRounded } from './LoyaltyRounded'; +export { default as LoyaltySharp } from './LoyaltySharp'; +export { default as LoyaltyTwoTone } from './LoyaltyTwoTone'; +export { default as LteMobiledata } from './LteMobiledata'; +export { default as LteMobiledataOutlined } from './LteMobiledataOutlined'; +export { default as LteMobiledataRounded } from './LteMobiledataRounded'; +export { default as LteMobiledataSharp } from './LteMobiledataSharp'; +export { default as LteMobiledataTwoTone } from './LteMobiledataTwoTone'; +export { default as LtePlusMobiledata } from './LtePlusMobiledata'; +export { default as LtePlusMobiledataOutlined } from './LtePlusMobiledataOutlined'; +export { default as LtePlusMobiledataRounded } from './LtePlusMobiledataRounded'; +export { default as LtePlusMobiledataSharp } from './LtePlusMobiledataSharp'; +export { default as LtePlusMobiledataTwoTone } from './LtePlusMobiledataTwoTone'; +export { default as Luggage } from './Luggage'; +export { default as LuggageOutlined } from './LuggageOutlined'; +export { default as LuggageRounded } from './LuggageRounded'; +export { default as LuggageSharp } from './LuggageSharp'; +export { default as LuggageTwoTone } from './LuggageTwoTone'; +export { default as LunchDining } from './LunchDining'; +export { default as LunchDiningOutlined } from './LunchDiningOutlined'; +export { default as LunchDiningRounded } from './LunchDiningRounded'; +export { default as LunchDiningSharp } from './LunchDiningSharp'; +export { default as LunchDiningTwoTone } from './LunchDiningTwoTone'; +export { default as Mail } from './Mail'; +export { default as MailOutline } from './MailOutline'; +export { default as MailOutlineOutlined } from './MailOutlineOutlined'; +export { default as MailOutlineRounded } from './MailOutlineRounded'; +export { default as MailOutlineSharp } from './MailOutlineSharp'; +export { default as MailOutlineTwoTone } from './MailOutlineTwoTone'; +export { default as MailOutlined } from './MailOutlined'; +export { default as MailRounded } from './MailRounded'; +export { default as MailSharp } from './MailSharp'; +export { default as MailTwoTone } from './MailTwoTone'; +export { default as Male } from './Male'; +export { default as MaleOutlined } from './MaleOutlined'; +export { default as MaleRounded } from './MaleRounded'; +export { default as MaleSharp } from './MaleSharp'; +export { default as MaleTwoTone } from './MaleTwoTone'; +export { default as ManageAccounts } from './ManageAccounts'; +export { default as ManageAccountsOutlined } from './ManageAccountsOutlined'; +export { default as ManageAccountsRounded } from './ManageAccountsRounded'; +export { default as ManageAccountsSharp } from './ManageAccountsSharp'; +export { default as ManageAccountsTwoTone } from './ManageAccountsTwoTone'; +export { default as ManageSearch } from './ManageSearch'; +export { default as ManageSearchOutlined } from './ManageSearchOutlined'; +export { default as ManageSearchRounded } from './ManageSearchRounded'; +export { default as ManageSearchSharp } from './ManageSearchSharp'; +export { default as ManageSearchTwoTone } from './ManageSearchTwoTone'; +export { default as Map } from './Map'; +export { default as MapOutlined } from './MapOutlined'; +export { default as MapRounded } from './MapRounded'; +export { default as MapSharp } from './MapSharp'; +export { default as MapTwoTone } from './MapTwoTone'; +export { default as MapsHomeWork } from './MapsHomeWork'; +export { default as MapsHomeWorkOutlined } from './MapsHomeWorkOutlined'; +export { default as MapsHomeWorkRounded } from './MapsHomeWorkRounded'; +export { default as MapsHomeWorkSharp } from './MapsHomeWorkSharp'; +export { default as MapsHomeWorkTwoTone } from './MapsHomeWorkTwoTone'; +export { default as MapsUgc } from './MapsUgc'; +export { default as MapsUgcOutlined } from './MapsUgcOutlined'; +export { default as MapsUgcRounded } from './MapsUgcRounded'; +export { default as MapsUgcSharp } from './MapsUgcSharp'; +export { default as MapsUgcTwoTone } from './MapsUgcTwoTone'; +export { default as Margin } from './Margin'; +export { default as MarginOutlined } from './MarginOutlined'; +export { default as MarginRounded } from './MarginRounded'; +export { default as MarginSharp } from './MarginSharp'; +export { default as MarginTwoTone } from './MarginTwoTone'; +export { default as MarkAsUnread } from './MarkAsUnread'; +export { default as MarkAsUnreadOutlined } from './MarkAsUnreadOutlined'; +export { default as MarkAsUnreadRounded } from './MarkAsUnreadRounded'; +export { default as MarkAsUnreadSharp } from './MarkAsUnreadSharp'; +export { default as MarkAsUnreadTwoTone } from './MarkAsUnreadTwoTone'; +export { default as MarkChatRead } from './MarkChatRead'; +export { default as MarkChatReadOutlined } from './MarkChatReadOutlined'; +export { default as MarkChatReadRounded } from './MarkChatReadRounded'; +export { default as MarkChatReadSharp } from './MarkChatReadSharp'; +export { default as MarkChatReadTwoTone } from './MarkChatReadTwoTone'; +export { default as MarkChatUnread } from './MarkChatUnread'; +export { default as MarkChatUnreadOutlined } from './MarkChatUnreadOutlined'; +export { default as MarkChatUnreadRounded } from './MarkChatUnreadRounded'; +export { default as MarkChatUnreadSharp } from './MarkChatUnreadSharp'; +export { default as MarkChatUnreadTwoTone } from './MarkChatUnreadTwoTone'; +export { default as MarkEmailRead } from './MarkEmailRead'; +export { default as MarkEmailReadOutlined } from './MarkEmailReadOutlined'; +export { default as MarkEmailReadRounded } from './MarkEmailReadRounded'; +export { default as MarkEmailReadSharp } from './MarkEmailReadSharp'; +export { default as MarkEmailReadTwoTone } from './MarkEmailReadTwoTone'; +export { default as MarkEmailUnread } from './MarkEmailUnread'; +export { default as MarkEmailUnreadOutlined } from './MarkEmailUnreadOutlined'; +export { default as MarkEmailUnreadRounded } from './MarkEmailUnreadRounded'; +export { default as MarkEmailUnreadSharp } from './MarkEmailUnreadSharp'; +export { default as MarkEmailUnreadTwoTone } from './MarkEmailUnreadTwoTone'; +export { default as Markunread } from './Markunread'; +export { default as MarkunreadMailbox } from './MarkunreadMailbox'; +export { default as MarkunreadMailboxOutlined } from './MarkunreadMailboxOutlined'; +export { default as MarkunreadMailboxRounded } from './MarkunreadMailboxRounded'; +export { default as MarkunreadMailboxSharp } from './MarkunreadMailboxSharp'; +export { default as MarkunreadMailboxTwoTone } from './MarkunreadMailboxTwoTone'; +export { default as MarkunreadOutlined } from './MarkunreadOutlined'; +export { default as MarkunreadRounded } from './MarkunreadRounded'; +export { default as MarkunreadSharp } from './MarkunreadSharp'; +export { default as MarkunreadTwoTone } from './MarkunreadTwoTone'; +export { default as Masks } from './Masks'; +export { default as MasksOutlined } from './MasksOutlined'; +export { default as MasksRounded } from './MasksRounded'; +export { default as MasksSharp } from './MasksSharp'; +export { default as MasksTwoTone } from './MasksTwoTone'; +export { default as Maximize } from './Maximize'; +export { default as MaximizeOutlined } from './MaximizeOutlined'; +export { default as MaximizeRounded } from './MaximizeRounded'; +export { default as MaximizeSharp } from './MaximizeSharp'; +export { default as MaximizeTwoTone } from './MaximizeTwoTone'; +export { default as MediaBluetoothOff } from './MediaBluetoothOff'; +export { default as MediaBluetoothOffOutlined } from './MediaBluetoothOffOutlined'; +export { default as MediaBluetoothOffRounded } from './MediaBluetoothOffRounded'; +export { default as MediaBluetoothOffSharp } from './MediaBluetoothOffSharp'; +export { default as MediaBluetoothOffTwoTone } from './MediaBluetoothOffTwoTone'; +export { default as MediaBluetoothOn } from './MediaBluetoothOn'; +export { default as MediaBluetoothOnOutlined } from './MediaBluetoothOnOutlined'; +export { default as MediaBluetoothOnRounded } from './MediaBluetoothOnRounded'; +export { default as MediaBluetoothOnSharp } from './MediaBluetoothOnSharp'; +export { default as MediaBluetoothOnTwoTone } from './MediaBluetoothOnTwoTone'; +export { default as Mediation } from './Mediation'; +export { default as MediationOutlined } from './MediationOutlined'; +export { default as MediationRounded } from './MediationRounded'; +export { default as MediationSharp } from './MediationSharp'; +export { default as MediationTwoTone } from './MediationTwoTone'; +export { default as MedicalServices } from './MedicalServices'; +export { default as MedicalServicesOutlined } from './MedicalServicesOutlined'; +export { default as MedicalServicesRounded } from './MedicalServicesRounded'; +export { default as MedicalServicesSharp } from './MedicalServicesSharp'; +export { default as MedicalServicesTwoTone } from './MedicalServicesTwoTone'; +export { default as Medication } from './Medication'; +export { default as MedicationOutlined } from './MedicationOutlined'; +export { default as MedicationRounded } from './MedicationRounded'; +export { default as MedicationSharp } from './MedicationSharp'; +export { default as MedicationTwoTone } from './MedicationTwoTone'; +export { default as MeetingRoom } from './MeetingRoom'; +export { default as MeetingRoomOutlined } from './MeetingRoomOutlined'; +export { default as MeetingRoomRounded } from './MeetingRoomRounded'; +export { default as MeetingRoomSharp } from './MeetingRoomSharp'; +export { default as MeetingRoomTwoTone } from './MeetingRoomTwoTone'; +export { default as Memory } from './Memory'; +export { default as MemoryOutlined } from './MemoryOutlined'; +export { default as MemoryRounded } from './MemoryRounded'; +export { default as MemorySharp } from './MemorySharp'; +export { default as MemoryTwoTone } from './MemoryTwoTone'; +export { default as Menu } from './Menu'; +export { default as MenuBook } from './MenuBook'; +export { default as MenuBookOutlined } from './MenuBookOutlined'; +export { default as MenuBookRounded } from './MenuBookRounded'; +export { default as MenuBookSharp } from './MenuBookSharp'; +export { default as MenuBookTwoTone } from './MenuBookTwoTone'; +export { default as MenuOpen } from './MenuOpen'; +export { default as MenuOpenOutlined } from './MenuOpenOutlined'; +export { default as MenuOpenRounded } from './MenuOpenRounded'; +export { default as MenuOpenSharp } from './MenuOpenSharp'; +export { default as MenuOpenTwoTone } from './MenuOpenTwoTone'; +export { default as MenuOutlined } from './MenuOutlined'; +export { default as MenuRounded } from './MenuRounded'; +export { default as MenuSharp } from './MenuSharp'; +export { default as MenuTwoTone } from './MenuTwoTone'; +export { default as MergeType } from './MergeType'; +export { default as MergeTypeOutlined } from './MergeTypeOutlined'; +export { default as MergeTypeRounded } from './MergeTypeRounded'; +export { default as MergeTypeSharp } from './MergeTypeSharp'; +export { default as MergeTypeTwoTone } from './MergeTypeTwoTone'; +export { default as Message } from './Message'; +export { default as MessageOutlined } from './MessageOutlined'; +export { default as MessageRounded } from './MessageRounded'; +export { default as MessageSharp } from './MessageSharp'; +export { default as MessageTwoTone } from './MessageTwoTone'; +export { default as Mic } from './Mic'; +export { default as MicExternalOff } from './MicExternalOff'; +export { default as MicExternalOffOutlined } from './MicExternalOffOutlined'; +export { default as MicExternalOffRounded } from './MicExternalOffRounded'; +export { default as MicExternalOffSharp } from './MicExternalOffSharp'; +export { default as MicExternalOffTwoTone } from './MicExternalOffTwoTone'; +export { default as MicExternalOn } from './MicExternalOn'; +export { default as MicExternalOnOutlined } from './MicExternalOnOutlined'; +export { default as MicExternalOnRounded } from './MicExternalOnRounded'; +export { default as MicExternalOnSharp } from './MicExternalOnSharp'; +export { default as MicExternalOnTwoTone } from './MicExternalOnTwoTone'; +export { default as MicNone } from './MicNone'; +export { default as MicNoneOutlined } from './MicNoneOutlined'; +export { default as MicNoneRounded } from './MicNoneRounded'; +export { default as MicNoneSharp } from './MicNoneSharp'; +export { default as MicNoneTwoTone } from './MicNoneTwoTone'; +export { default as MicOff } from './MicOff'; +export { default as MicOffOutlined } from './MicOffOutlined'; +export { default as MicOffRounded } from './MicOffRounded'; +export { default as MicOffSharp } from './MicOffSharp'; +export { default as MicOffTwoTone } from './MicOffTwoTone'; +export { default as MicOutlined } from './MicOutlined'; +export { default as MicRounded } from './MicRounded'; +export { default as MicSharp } from './MicSharp'; +export { default as MicTwoTone } from './MicTwoTone'; +export { default as Microwave } from './Microwave'; +export { default as MicrowaveOutlined } from './MicrowaveOutlined'; +export { default as MicrowaveRounded } from './MicrowaveRounded'; +export { default as MicrowaveSharp } from './MicrowaveSharp'; +export { default as MicrowaveTwoTone } from './MicrowaveTwoTone'; +export { default as MilitaryTech } from './MilitaryTech'; +export { default as MilitaryTechOutlined } from './MilitaryTechOutlined'; +export { default as MilitaryTechRounded } from './MilitaryTechRounded'; +export { default as MilitaryTechSharp } from './MilitaryTechSharp'; +export { default as MilitaryTechTwoTone } from './MilitaryTechTwoTone'; +export { default as Minimize } from './Minimize'; +export { default as MinimizeOutlined } from './MinimizeOutlined'; +export { default as MinimizeRounded } from './MinimizeRounded'; +export { default as MinimizeSharp } from './MinimizeSharp'; +export { default as MinimizeTwoTone } from './MinimizeTwoTone'; +export { default as MiscellaneousServices } from './MiscellaneousServices'; +export { default as MiscellaneousServicesOutlined } from './MiscellaneousServicesOutlined'; +export { default as MiscellaneousServicesRounded } from './MiscellaneousServicesRounded'; +export { default as MiscellaneousServicesSharp } from './MiscellaneousServicesSharp'; +export { default as MiscellaneousServicesTwoTone } from './MiscellaneousServicesTwoTone'; +export { default as MissedVideoCall } from './MissedVideoCall'; +export { default as MissedVideoCallOutlined } from './MissedVideoCallOutlined'; +export { default as MissedVideoCallRounded } from './MissedVideoCallRounded'; +export { default as MissedVideoCallSharp } from './MissedVideoCallSharp'; +export { default as MissedVideoCallTwoTone } from './MissedVideoCallTwoTone'; +export { default as Mms } from './Mms'; +export { default as MmsOutlined } from './MmsOutlined'; +export { default as MmsRounded } from './MmsRounded'; +export { default as MmsSharp } from './MmsSharp'; +export { default as MmsTwoTone } from './MmsTwoTone'; +export { default as MobileFriendly } from './MobileFriendly'; +export { default as MobileFriendlyOutlined } from './MobileFriendlyOutlined'; +export { default as MobileFriendlyRounded } from './MobileFriendlyRounded'; +export { default as MobileFriendlySharp } from './MobileFriendlySharp'; +export { default as MobileFriendlyTwoTone } from './MobileFriendlyTwoTone'; +export { default as MobileOff } from './MobileOff'; +export { default as MobileOffOutlined } from './MobileOffOutlined'; +export { default as MobileOffRounded } from './MobileOffRounded'; +export { default as MobileOffSharp } from './MobileOffSharp'; +export { default as MobileOffTwoTone } from './MobileOffTwoTone'; +export { default as MobileScreenShare } from './MobileScreenShare'; +export { default as MobileScreenShareOutlined } from './MobileScreenShareOutlined'; +export { default as MobileScreenShareRounded } from './MobileScreenShareRounded'; +export { default as MobileScreenShareSharp } from './MobileScreenShareSharp'; +export { default as MobileScreenShareTwoTone } from './MobileScreenShareTwoTone'; +export { default as MobiledataOff } from './MobiledataOff'; +export { default as MobiledataOffOutlined } from './MobiledataOffOutlined'; +export { default as MobiledataOffRounded } from './MobiledataOffRounded'; +export { default as MobiledataOffSharp } from './MobiledataOffSharp'; +export { default as MobiledataOffTwoTone } from './MobiledataOffTwoTone'; +export { default as Mode } from './Mode'; +export { default as ModeComment } from './ModeComment'; +export { default as ModeCommentOutlined } from './ModeCommentOutlined'; +export { default as ModeCommentRounded } from './ModeCommentRounded'; +export { default as ModeCommentSharp } from './ModeCommentSharp'; +export { default as ModeCommentTwoTone } from './ModeCommentTwoTone'; +export { default as ModeEdit } from './ModeEdit'; +export { default as ModeEditOutline } from './ModeEditOutline'; +export { default as ModeEditOutlineOutlined } from './ModeEditOutlineOutlined'; +export { default as ModeEditOutlineRounded } from './ModeEditOutlineRounded'; +export { default as ModeEditOutlineSharp } from './ModeEditOutlineSharp'; +export { default as ModeEditOutlineTwoTone } from './ModeEditOutlineTwoTone'; +export { default as ModeEditOutlined } from './ModeEditOutlined'; +export { default as ModeEditRounded } from './ModeEditRounded'; +export { default as ModeEditSharp } from './ModeEditSharp'; +export { default as ModeEditTwoTone } from './ModeEditTwoTone'; +export { default as ModeNight } from './ModeNight'; +export { default as ModeNightOutlined } from './ModeNightOutlined'; +export { default as ModeNightRounded } from './ModeNightRounded'; +export { default as ModeNightSharp } from './ModeNightSharp'; +export { default as ModeNightTwoTone } from './ModeNightTwoTone'; +export { default as ModeOutlined } from './ModeOutlined'; +export { default as ModeRounded } from './ModeRounded'; +export { default as ModeSharp } from './ModeSharp'; +export { default as ModeStandby } from './ModeStandby'; +export { default as ModeStandbyOutlined } from './ModeStandbyOutlined'; +export { default as ModeStandbyRounded } from './ModeStandbyRounded'; +export { default as ModeStandbySharp } from './ModeStandbySharp'; +export { default as ModeStandbyTwoTone } from './ModeStandbyTwoTone'; +export { default as ModeTwoTone } from './ModeTwoTone'; +export { default as ModelTraining } from './ModelTraining'; +export { default as ModelTrainingOutlined } from './ModelTrainingOutlined'; +export { default as ModelTrainingRounded } from './ModelTrainingRounded'; +export { default as ModelTrainingSharp } from './ModelTrainingSharp'; +export { default as ModelTrainingTwoTone } from './ModelTrainingTwoTone'; +export { default as MonetizationOn } from './MonetizationOn'; +export { default as MonetizationOnOutlined } from './MonetizationOnOutlined'; +export { default as MonetizationOnRounded } from './MonetizationOnRounded'; +export { default as MonetizationOnSharp } from './MonetizationOnSharp'; +export { default as MonetizationOnTwoTone } from './MonetizationOnTwoTone'; +export { default as Money } from './Money'; +export { default as MoneyOff } from './MoneyOff'; +export { default as MoneyOffCsred } from './MoneyOffCsred'; +export { default as MoneyOffCsredOutlined } from './MoneyOffCsredOutlined'; +export { default as MoneyOffCsredRounded } from './MoneyOffCsredRounded'; +export { default as MoneyOffCsredSharp } from './MoneyOffCsredSharp'; +export { default as MoneyOffCsredTwoTone } from './MoneyOffCsredTwoTone'; +export { default as MoneyOffOutlined } from './MoneyOffOutlined'; +export { default as MoneyOffRounded } from './MoneyOffRounded'; +export { default as MoneyOffSharp } from './MoneyOffSharp'; +export { default as MoneyOffTwoTone } from './MoneyOffTwoTone'; +export { default as MoneyOutlined } from './MoneyOutlined'; +export { default as MoneyRounded } from './MoneyRounded'; +export { default as MoneySharp } from './MoneySharp'; +export { default as MoneyTwoTone } from './MoneyTwoTone'; +export { default as Monitor } from './Monitor'; +export { default as MonitorOutlined } from './MonitorOutlined'; +export { default as MonitorRounded } from './MonitorRounded'; +export { default as MonitorSharp } from './MonitorSharp'; +export { default as MonitorTwoTone } from './MonitorTwoTone'; +export { default as MonitorWeight } from './MonitorWeight'; +export { default as MonitorWeightOutlined } from './MonitorWeightOutlined'; +export { default as MonitorWeightRounded } from './MonitorWeightRounded'; +export { default as MonitorWeightSharp } from './MonitorWeightSharp'; +export { default as MonitorWeightTwoTone } from './MonitorWeightTwoTone'; +export { default as MonochromePhotos } from './MonochromePhotos'; +export { default as MonochromePhotosOutlined } from './MonochromePhotosOutlined'; +export { default as MonochromePhotosRounded } from './MonochromePhotosRounded'; +export { default as MonochromePhotosSharp } from './MonochromePhotosSharp'; +export { default as MonochromePhotosTwoTone } from './MonochromePhotosTwoTone'; +export { default as Mood } from './Mood'; +export { default as MoodBad } from './MoodBad'; +export { default as MoodBadOutlined } from './MoodBadOutlined'; +export { default as MoodBadRounded } from './MoodBadRounded'; +export { default as MoodBadSharp } from './MoodBadSharp'; +export { default as MoodBadTwoTone } from './MoodBadTwoTone'; +export { default as MoodOutlined } from './MoodOutlined'; +export { default as MoodRounded } from './MoodRounded'; +export { default as MoodSharp } from './MoodSharp'; +export { default as MoodTwoTone } from './MoodTwoTone'; +export { default as Moped } from './Moped'; +export { default as MopedOutlined } from './MopedOutlined'; +export { default as MopedRounded } from './MopedRounded'; +export { default as MopedSharp } from './MopedSharp'; +export { default as MopedTwoTone } from './MopedTwoTone'; +export { default as More } from './More'; +export { default as MoreHoriz } from './MoreHoriz'; +export { default as MoreHorizOutlined } from './MoreHorizOutlined'; +export { default as MoreHorizRounded } from './MoreHorizRounded'; +export { default as MoreHorizSharp } from './MoreHorizSharp'; +export { default as MoreHorizTwoTone } from './MoreHorizTwoTone'; +export { default as MoreOutlined } from './MoreOutlined'; +export { default as MoreRounded } from './MoreRounded'; +export { default as MoreSharp } from './MoreSharp'; +export { default as MoreTime } from './MoreTime'; +export { default as MoreTimeOutlined } from './MoreTimeOutlined'; +export { default as MoreTimeRounded } from './MoreTimeRounded'; +export { default as MoreTimeSharp } from './MoreTimeSharp'; +export { default as MoreTimeTwoTone } from './MoreTimeTwoTone'; +export { default as MoreTwoTone } from './MoreTwoTone'; +export { default as MoreVert } from './MoreVert'; +export { default as MoreVertOutlined } from './MoreVertOutlined'; +export { default as MoreVertRounded } from './MoreVertRounded'; +export { default as MoreVertSharp } from './MoreVertSharp'; +export { default as MoreVertTwoTone } from './MoreVertTwoTone'; +export { default as MotionPhotosAuto } from './MotionPhotosAuto'; +export { default as MotionPhotosAutoOutlined } from './MotionPhotosAutoOutlined'; +export { default as MotionPhotosAutoRounded } from './MotionPhotosAutoRounded'; +export { default as MotionPhotosAutoSharp } from './MotionPhotosAutoSharp'; +export { default as MotionPhotosAutoTwoTone } from './MotionPhotosAutoTwoTone'; +export { default as MotionPhotosOff } from './MotionPhotosOff'; +export { default as MotionPhotosOffOutlined } from './MotionPhotosOffOutlined'; +export { default as MotionPhotosOffRounded } from './MotionPhotosOffRounded'; +export { default as MotionPhotosOffSharp } from './MotionPhotosOffSharp'; +export { default as MotionPhotosOffTwoTone } from './MotionPhotosOffTwoTone'; +export { default as Mouse } from './Mouse'; +export { default as MouseOutlined } from './MouseOutlined'; +export { default as MouseRounded } from './MouseRounded'; +export { default as MouseSharp } from './MouseSharp'; +export { default as MouseTwoTone } from './MouseTwoTone'; +export { default as MoveToInbox } from './MoveToInbox'; +export { default as MoveToInboxOutlined } from './MoveToInboxOutlined'; +export { default as MoveToInboxRounded } from './MoveToInboxRounded'; +export { default as MoveToInboxSharp } from './MoveToInboxSharp'; +export { default as MoveToInboxTwoTone } from './MoveToInboxTwoTone'; +export { default as Movie } from './Movie'; +export { default as MovieCreation } from './MovieCreation'; +export { default as MovieCreationOutlined } from './MovieCreationOutlined'; +export { default as MovieCreationRounded } from './MovieCreationRounded'; +export { default as MovieCreationSharp } from './MovieCreationSharp'; +export { default as MovieCreationTwoTone } from './MovieCreationTwoTone'; +export { default as MovieFilter } from './MovieFilter'; +export { default as MovieFilterOutlined } from './MovieFilterOutlined'; +export { default as MovieFilterRounded } from './MovieFilterRounded'; +export { default as MovieFilterSharp } from './MovieFilterSharp'; +export { default as MovieFilterTwoTone } from './MovieFilterTwoTone'; +export { default as MovieOutlined } from './MovieOutlined'; +export { default as MovieRounded } from './MovieRounded'; +export { default as MovieSharp } from './MovieSharp'; +export { default as MovieTwoTone } from './MovieTwoTone'; +export { default as Moving } from './Moving'; +export { default as MovingOutlined } from './MovingOutlined'; +export { default as MovingRounded } from './MovingRounded'; +export { default as MovingSharp } from './MovingSharp'; +export { default as MovingTwoTone } from './MovingTwoTone'; +export { default as Mp } from './Mp'; +export { default as MpOutlined } from './MpOutlined'; +export { default as MpRounded } from './MpRounded'; +export { default as MpSharp } from './MpSharp'; +export { default as MpTwoTone } from './MpTwoTone'; +export { default as MultilineChart } from './MultilineChart'; +export { default as MultilineChartOutlined } from './MultilineChartOutlined'; +export { default as MultilineChartRounded } from './MultilineChartRounded'; +export { default as MultilineChartSharp } from './MultilineChartSharp'; +export { default as MultilineChartTwoTone } from './MultilineChartTwoTone'; +export { default as MultipleStop } from './MultipleStop'; +export { default as MultipleStopOutlined } from './MultipleStopOutlined'; +export { default as MultipleStopRounded } from './MultipleStopRounded'; +export { default as MultipleStopSharp } from './MultipleStopSharp'; +export { default as MultipleStopTwoTone } from './MultipleStopTwoTone'; +export { default as Museum } from './Museum'; +export { default as MuseumOutlined } from './MuseumOutlined'; +export { default as MuseumRounded } from './MuseumRounded'; +export { default as MuseumSharp } from './MuseumSharp'; +export { default as MuseumTwoTone } from './MuseumTwoTone'; +export { default as MusicNote } from './MusicNote'; +export { default as MusicNoteOutlined } from './MusicNoteOutlined'; +export { default as MusicNoteRounded } from './MusicNoteRounded'; +export { default as MusicNoteSharp } from './MusicNoteSharp'; +export { default as MusicNoteTwoTone } from './MusicNoteTwoTone'; +export { default as MusicOff } from './MusicOff'; +export { default as MusicOffOutlined } from './MusicOffOutlined'; +export { default as MusicOffRounded } from './MusicOffRounded'; +export { default as MusicOffSharp } from './MusicOffSharp'; +export { default as MusicOffTwoTone } from './MusicOffTwoTone'; +export { default as MusicVideo } from './MusicVideo'; +export { default as MusicVideoOutlined } from './MusicVideoOutlined'; +export { default as MusicVideoRounded } from './MusicVideoRounded'; +export { default as MusicVideoSharp } from './MusicVideoSharp'; +export { default as MusicVideoTwoTone } from './MusicVideoTwoTone'; +export { default as MyLocation } from './MyLocation'; +export { default as MyLocationOutlined } from './MyLocationOutlined'; +export { default as MyLocationRounded } from './MyLocationRounded'; +export { default as MyLocationSharp } from './MyLocationSharp'; +export { default as MyLocationTwoTone } from './MyLocationTwoTone'; +export { default as Nat } from './Nat'; +export { default as NatOutlined } from './NatOutlined'; +export { default as NatRounded } from './NatRounded'; +export { default as NatSharp } from './NatSharp'; +export { default as NatTwoTone } from './NatTwoTone'; +export { default as Nature } from './Nature'; +export { default as NatureOutlined } from './NatureOutlined'; +export { default as NaturePeople } from './NaturePeople'; +export { default as NaturePeopleOutlined } from './NaturePeopleOutlined'; +export { default as NaturePeopleRounded } from './NaturePeopleRounded'; +export { default as NaturePeopleSharp } from './NaturePeopleSharp'; +export { default as NaturePeopleTwoTone } from './NaturePeopleTwoTone'; +export { default as NatureRounded } from './NatureRounded'; +export { default as NatureSharp } from './NatureSharp'; +export { default as NatureTwoTone } from './NatureTwoTone'; +export { default as NavigateBefore } from './NavigateBefore'; +export { default as NavigateBeforeOutlined } from './NavigateBeforeOutlined'; +export { default as NavigateBeforeRounded } from './NavigateBeforeRounded'; +export { default as NavigateBeforeSharp } from './NavigateBeforeSharp'; +export { default as NavigateBeforeTwoTone } from './NavigateBeforeTwoTone'; +export { default as NavigateNext } from './NavigateNext'; +export { default as NavigateNextOutlined } from './NavigateNextOutlined'; +export { default as NavigateNextRounded } from './NavigateNextRounded'; +export { default as NavigateNextSharp } from './NavigateNextSharp'; +export { default as NavigateNextTwoTone } from './NavigateNextTwoTone'; +export { default as Navigation } from './Navigation'; +export { default as NavigationOutlined } from './NavigationOutlined'; +export { default as NavigationRounded } from './NavigationRounded'; +export { default as NavigationSharp } from './NavigationSharp'; +export { default as NavigationTwoTone } from './NavigationTwoTone'; +export { default as NearMe } from './NearMe'; +export { default as NearMeDisabled } from './NearMeDisabled'; +export { default as NearMeDisabledOutlined } from './NearMeDisabledOutlined'; +export { default as NearMeDisabledRounded } from './NearMeDisabledRounded'; +export { default as NearMeDisabledSharp } from './NearMeDisabledSharp'; +export { default as NearMeDisabledTwoTone } from './NearMeDisabledTwoTone'; +export { default as NearMeOutlined } from './NearMeOutlined'; +export { default as NearMeRounded } from './NearMeRounded'; +export { default as NearMeSharp } from './NearMeSharp'; +export { default as NearMeTwoTone } from './NearMeTwoTone'; +export { default as NearbyError } from './NearbyError'; +export { default as NearbyErrorOutlined } from './NearbyErrorOutlined'; +export { default as NearbyErrorRounded } from './NearbyErrorRounded'; +export { default as NearbyErrorSharp } from './NearbyErrorSharp'; +export { default as NearbyErrorTwoTone } from './NearbyErrorTwoTone'; +export { default as NearbyOff } from './NearbyOff'; +export { default as NearbyOffOutlined } from './NearbyOffOutlined'; +export { default as NearbyOffRounded } from './NearbyOffRounded'; +export { default as NearbyOffSharp } from './NearbyOffSharp'; +export { default as NearbyOffTwoTone } from './NearbyOffTwoTone'; +export { default as NetworkCell } from './NetworkCell'; +export { default as NetworkCellOutlined } from './NetworkCellOutlined'; +export { default as NetworkCellRounded } from './NetworkCellRounded'; +export { default as NetworkCellSharp } from './NetworkCellSharp'; +export { default as NetworkCellTwoTone } from './NetworkCellTwoTone'; +export { default as NetworkCheck } from './NetworkCheck'; +export { default as NetworkCheckOutlined } from './NetworkCheckOutlined'; +export { default as NetworkCheckRounded } from './NetworkCheckRounded'; +export { default as NetworkCheckSharp } from './NetworkCheckSharp'; +export { default as NetworkCheckTwoTone } from './NetworkCheckTwoTone'; +export { default as NetworkLocked } from './NetworkLocked'; +export { default as NetworkLockedOutlined } from './NetworkLockedOutlined'; +export { default as NetworkLockedRounded } from './NetworkLockedRounded'; +export { default as NetworkLockedSharp } from './NetworkLockedSharp'; +export { default as NetworkLockedTwoTone } from './NetworkLockedTwoTone'; +export { default as NetworkWifi } from './NetworkWifi'; +export { default as NetworkWifiOutlined } from './NetworkWifiOutlined'; +export { default as NetworkWifiRounded } from './NetworkWifiRounded'; +export { default as NetworkWifiSharp } from './NetworkWifiSharp'; +export { default as NetworkWifiTwoTone } from './NetworkWifiTwoTone'; +export { default as NewReleases } from './NewReleases'; +export { default as NewReleasesOutlined } from './NewReleasesOutlined'; +export { default as NewReleasesRounded } from './NewReleasesRounded'; +export { default as NewReleasesSharp } from './NewReleasesSharp'; +export { default as NewReleasesTwoTone } from './NewReleasesTwoTone'; +export { default as NextPlan } from './NextPlan'; +export { default as NextPlanOutlined } from './NextPlanOutlined'; +export { default as NextPlanRounded } from './NextPlanRounded'; +export { default as NextPlanSharp } from './NextPlanSharp'; +export { default as NextPlanTwoTone } from './NextPlanTwoTone'; +export { default as NextWeek } from './NextWeek'; +export { default as NextWeekOutlined } from './NextWeekOutlined'; +export { default as NextWeekRounded } from './NextWeekRounded'; +export { default as NextWeekSharp } from './NextWeekSharp'; +export { default as NextWeekTwoTone } from './NextWeekTwoTone'; +export { default as Nfc } from './Nfc'; +export { default as NfcOutlined } from './NfcOutlined'; +export { default as NfcRounded } from './NfcRounded'; +export { default as NfcSharp } from './NfcSharp'; +export { default as NfcTwoTone } from './NfcTwoTone'; +export { default as NightShelter } from './NightShelter'; +export { default as NightShelterOutlined } from './NightShelterOutlined'; +export { default as NightShelterRounded } from './NightShelterRounded'; +export { default as NightShelterSharp } from './NightShelterSharp'; +export { default as NightShelterTwoTone } from './NightShelterTwoTone'; +export { default as Nightlife } from './Nightlife'; +export { default as NightlifeOutlined } from './NightlifeOutlined'; +export { default as NightlifeRounded } from './NightlifeRounded'; +export { default as NightlifeSharp } from './NightlifeSharp'; +export { default as NightlifeTwoTone } from './NightlifeTwoTone'; +export { default as Nightlight } from './Nightlight'; +export { default as NightlightOutlined } from './NightlightOutlined'; +export { default as NightlightRound } from './NightlightRound'; +export { default as NightlightRoundOutlined } from './NightlightRoundOutlined'; +export { default as NightlightRoundRounded } from './NightlightRoundRounded'; +export { default as NightlightRoundSharp } from './NightlightRoundSharp'; +export { default as NightlightRoundTwoTone } from './NightlightRoundTwoTone'; +export { default as NightlightRounded } from './NightlightRounded'; +export { default as NightlightSharp } from './NightlightSharp'; +export { default as NightlightTwoTone } from './NightlightTwoTone'; +export { default as NightsStay } from './NightsStay'; +export { default as NightsStayOutlined } from './NightsStayOutlined'; +export { default as NightsStayRounded } from './NightsStayRounded'; +export { default as NightsStaySharp } from './NightsStaySharp'; +export { default as NightsStayTwoTone } from './NightsStayTwoTone'; +export { default as NineK } from './NineK'; +export { default as NineKOutlined } from './NineKOutlined'; +export { default as NineKPlus } from './NineKPlus'; +export { default as NineKPlusOutlined } from './NineKPlusOutlined'; +export { default as NineKPlusRounded } from './NineKPlusRounded'; +export { default as NineKPlusSharp } from './NineKPlusSharp'; +export { default as NineKPlusTwoTone } from './NineKPlusTwoTone'; +export { default as NineKRounded } from './NineKRounded'; +export { default as NineKSharp } from './NineKSharp'; +export { default as NineKTwoTone } from './NineKTwoTone'; +export { default as NineMp } from './NineMp'; +export { default as NineMpOutlined } from './NineMpOutlined'; +export { default as NineMpRounded } from './NineMpRounded'; +export { default as NineMpSharp } from './NineMpSharp'; +export { default as NineMpTwoTone } from './NineMpTwoTone'; +export { default as NineteenMp } from './NineteenMp'; +export { default as NineteenMpOutlined } from './NineteenMpOutlined'; +export { default as NineteenMpRounded } from './NineteenMpRounded'; +export { default as NineteenMpSharp } from './NineteenMpSharp'; +export { default as NineteenMpTwoTone } from './NineteenMpTwoTone'; +export { default as NoAccounts } from './NoAccounts'; +export { default as NoAccountsOutlined } from './NoAccountsOutlined'; +export { default as NoAccountsRounded } from './NoAccountsRounded'; +export { default as NoAccountsSharp } from './NoAccountsSharp'; +export { default as NoAccountsTwoTone } from './NoAccountsTwoTone'; +export { default as NoBackpack } from './NoBackpack'; +export { default as NoBackpackOutlined } from './NoBackpackOutlined'; +export { default as NoBackpackRounded } from './NoBackpackRounded'; +export { default as NoBackpackSharp } from './NoBackpackSharp'; +export { default as NoBackpackTwoTone } from './NoBackpackTwoTone'; +export { default as NoCell } from './NoCell'; +export { default as NoCellOutlined } from './NoCellOutlined'; +export { default as NoCellRounded } from './NoCellRounded'; +export { default as NoCellSharp } from './NoCellSharp'; +export { default as NoCellTwoTone } from './NoCellTwoTone'; +export { default as NoDrinks } from './NoDrinks'; +export { default as NoDrinksOutlined } from './NoDrinksOutlined'; +export { default as NoDrinksRounded } from './NoDrinksRounded'; +export { default as NoDrinksSharp } from './NoDrinksSharp'; +export { default as NoDrinksTwoTone } from './NoDrinksTwoTone'; +export { default as NoEncryption } from './NoEncryption'; +export { default as NoEncryptionGmailerrorred } from './NoEncryptionGmailerrorred'; +export { default as NoEncryptionGmailerrorredOutlined } from './NoEncryptionGmailerrorredOutlined'; +export { default as NoEncryptionGmailerrorredRounded } from './NoEncryptionGmailerrorredRounded'; +export { default as NoEncryptionGmailerrorredSharp } from './NoEncryptionGmailerrorredSharp'; +export { default as NoEncryptionGmailerrorredTwoTone } from './NoEncryptionGmailerrorredTwoTone'; +export { default as NoEncryptionOutlined } from './NoEncryptionOutlined'; +export { default as NoEncryptionRounded } from './NoEncryptionRounded'; +export { default as NoEncryptionSharp } from './NoEncryptionSharp'; +export { default as NoEncryptionTwoTone } from './NoEncryptionTwoTone'; +export { default as NoFlash } from './NoFlash'; +export { default as NoFlashOutlined } from './NoFlashOutlined'; +export { default as NoFlashRounded } from './NoFlashRounded'; +export { default as NoFlashSharp } from './NoFlashSharp'; +export { default as NoFlashTwoTone } from './NoFlashTwoTone'; +export { default as NoFood } from './NoFood'; +export { default as NoFoodOutlined } from './NoFoodOutlined'; +export { default as NoFoodRounded } from './NoFoodRounded'; +export { default as NoFoodSharp } from './NoFoodSharp'; +export { default as NoFoodTwoTone } from './NoFoodTwoTone'; +export { default as NoLuggage } from './NoLuggage'; +export { default as NoLuggageOutlined } from './NoLuggageOutlined'; +export { default as NoLuggageRounded } from './NoLuggageRounded'; +export { default as NoLuggageSharp } from './NoLuggageSharp'; +export { default as NoLuggageTwoTone } from './NoLuggageTwoTone'; +export { default as NoMeals } from './NoMeals'; +export { default as NoMealsOutlined } from './NoMealsOutlined'; +export { default as NoMealsRounded } from './NoMealsRounded'; +export { default as NoMealsSharp } from './NoMealsSharp'; +export { default as NoMealsTwoTone } from './NoMealsTwoTone'; +export { default as NoMeetingRoom } from './NoMeetingRoom'; +export { default as NoMeetingRoomOutlined } from './NoMeetingRoomOutlined'; +export { default as NoMeetingRoomRounded } from './NoMeetingRoomRounded'; +export { default as NoMeetingRoomSharp } from './NoMeetingRoomSharp'; +export { default as NoMeetingRoomTwoTone } from './NoMeetingRoomTwoTone'; +export { default as NoPhotography } from './NoPhotography'; +export { default as NoPhotographyOutlined } from './NoPhotographyOutlined'; +export { default as NoPhotographyRounded } from './NoPhotographyRounded'; +export { default as NoPhotographySharp } from './NoPhotographySharp'; +export { default as NoPhotographyTwoTone } from './NoPhotographyTwoTone'; +export { default as NoSim } from './NoSim'; +export { default as NoSimOutlined } from './NoSimOutlined'; +export { default as NoSimRounded } from './NoSimRounded'; +export { default as NoSimSharp } from './NoSimSharp'; +export { default as NoSimTwoTone } from './NoSimTwoTone'; +export { default as NoStroller } from './NoStroller'; +export { default as NoStrollerOutlined } from './NoStrollerOutlined'; +export { default as NoStrollerRounded } from './NoStrollerRounded'; +export { default as NoStrollerSharp } from './NoStrollerSharp'; +export { default as NoStrollerTwoTone } from './NoStrollerTwoTone'; +export { default as NoTransfer } from './NoTransfer'; +export { default as NoTransferOutlined } from './NoTransferOutlined'; +export { default as NoTransferRounded } from './NoTransferRounded'; +export { default as NoTransferSharp } from './NoTransferSharp'; +export { default as NoTransferTwoTone } from './NoTransferTwoTone'; +export { default as NordicWalking } from './NordicWalking'; +export { default as NordicWalkingOutlined } from './NordicWalkingOutlined'; +export { default as NordicWalkingRounded } from './NordicWalkingRounded'; +export { default as NordicWalkingSharp } from './NordicWalkingSharp'; +export { default as NordicWalkingTwoTone } from './NordicWalkingTwoTone'; +export { default as North } from './North'; +export { default as NorthEast } from './NorthEast'; +export { default as NorthEastOutlined } from './NorthEastOutlined'; +export { default as NorthEastRounded } from './NorthEastRounded'; +export { default as NorthEastSharp } from './NorthEastSharp'; +export { default as NorthEastTwoTone } from './NorthEastTwoTone'; +export { default as NorthOutlined } from './NorthOutlined'; +export { default as NorthRounded } from './NorthRounded'; +export { default as NorthSharp } from './NorthSharp'; +export { default as NorthTwoTone } from './NorthTwoTone'; +export { default as NorthWest } from './NorthWest'; +export { default as NorthWestOutlined } from './NorthWestOutlined'; +export { default as NorthWestRounded } from './NorthWestRounded'; +export { default as NorthWestSharp } from './NorthWestSharp'; +export { default as NorthWestTwoTone } from './NorthWestTwoTone'; +export { default as NotAccessible } from './NotAccessible'; +export { default as NotAccessibleOutlined } from './NotAccessibleOutlined'; +export { default as NotAccessibleRounded } from './NotAccessibleRounded'; +export { default as NotAccessibleSharp } from './NotAccessibleSharp'; +export { default as NotAccessibleTwoTone } from './NotAccessibleTwoTone'; +export { default as NotInterested } from './NotInterested'; +export { default as NotInterestedOutlined } from './NotInterestedOutlined'; +export { default as NotInterestedRounded } from './NotInterestedRounded'; +export { default as NotInterestedSharp } from './NotInterestedSharp'; +export { default as NotInterestedTwoTone } from './NotInterestedTwoTone'; +export { default as NotListedLocation } from './NotListedLocation'; +export { default as NotListedLocationOutlined } from './NotListedLocationOutlined'; +export { default as NotListedLocationRounded } from './NotListedLocationRounded'; +export { default as NotListedLocationSharp } from './NotListedLocationSharp'; +export { default as NotListedLocationTwoTone } from './NotListedLocationTwoTone'; +export { default as NotStarted } from './NotStarted'; +export { default as NotStartedOutlined } from './NotStartedOutlined'; +export { default as NotStartedRounded } from './NotStartedRounded'; +export { default as NotStartedSharp } from './NotStartedSharp'; +export { default as NotStartedTwoTone } from './NotStartedTwoTone'; +export { default as Note } from './Note'; +export { default as NoteAdd } from './NoteAdd'; +export { default as NoteAddOutlined } from './NoteAddOutlined'; +export { default as NoteAddRounded } from './NoteAddRounded'; +export { default as NoteAddSharp } from './NoteAddSharp'; +export { default as NoteAddTwoTone } from './NoteAddTwoTone'; +export { default as NoteAlt } from './NoteAlt'; +export { default as NoteAltOutlined } from './NoteAltOutlined'; +export { default as NoteAltRounded } from './NoteAltRounded'; +export { default as NoteAltSharp } from './NoteAltSharp'; +export { default as NoteAltTwoTone } from './NoteAltTwoTone'; +export { default as NoteOutlined } from './NoteOutlined'; +export { default as NoteRounded } from './NoteRounded'; +export { default as NoteSharp } from './NoteSharp'; +export { default as NoteTwoTone } from './NoteTwoTone'; +export { default as Notes } from './Notes'; +export { default as NotesOutlined } from './NotesOutlined'; +export { default as NotesRounded } from './NotesRounded'; +export { default as NotesSharp } from './NotesSharp'; +export { default as NotesTwoTone } from './NotesTwoTone'; +export { default as NotificationAdd } from './NotificationAdd'; +export { default as NotificationAddOutlined } from './NotificationAddOutlined'; +export { default as NotificationAddRounded } from './NotificationAddRounded'; +export { default as NotificationAddSharp } from './NotificationAddSharp'; +export { default as NotificationAddTwoTone } from './NotificationAddTwoTone'; +export { default as NotificationImportant } from './NotificationImportant'; +export { default as NotificationImportantOutlined } from './NotificationImportantOutlined'; +export { default as NotificationImportantRounded } from './NotificationImportantRounded'; +export { default as NotificationImportantSharp } from './NotificationImportantSharp'; +export { default as NotificationImportantTwoTone } from './NotificationImportantTwoTone'; +export { default as Notifications } from './Notifications'; +export { default as NotificationsActive } from './NotificationsActive'; +export { default as NotificationsActiveOutlined } from './NotificationsActiveOutlined'; +export { default as NotificationsActiveRounded } from './NotificationsActiveRounded'; +export { default as NotificationsActiveSharp } from './NotificationsActiveSharp'; +export { default as NotificationsActiveTwoTone } from './NotificationsActiveTwoTone'; +export { default as NotificationsNone } from './NotificationsNone'; +export { default as NotificationsNoneOutlined } from './NotificationsNoneOutlined'; +export { default as NotificationsNoneRounded } from './NotificationsNoneRounded'; +export { default as NotificationsNoneSharp } from './NotificationsNoneSharp'; +export { default as NotificationsNoneTwoTone } from './NotificationsNoneTwoTone'; +export { default as NotificationsOff } from './NotificationsOff'; +export { default as NotificationsOffOutlined } from './NotificationsOffOutlined'; +export { default as NotificationsOffRounded } from './NotificationsOffRounded'; +export { default as NotificationsOffSharp } from './NotificationsOffSharp'; +export { default as NotificationsOffTwoTone } from './NotificationsOffTwoTone'; +export { default as NotificationsOutlined } from './NotificationsOutlined'; +export { default as NotificationsPaused } from './NotificationsPaused'; +export { default as NotificationsPausedOutlined } from './NotificationsPausedOutlined'; +export { default as NotificationsPausedRounded } from './NotificationsPausedRounded'; +export { default as NotificationsPausedSharp } from './NotificationsPausedSharp'; +export { default as NotificationsPausedTwoTone } from './NotificationsPausedTwoTone'; +export { default as NotificationsRounded } from './NotificationsRounded'; +export { default as NotificationsSharp } from './NotificationsSharp'; +export { default as NotificationsTwoTone } from './NotificationsTwoTone'; +export { default as OfflineBolt } from './OfflineBolt'; +export { default as OfflineBoltOutlined } from './OfflineBoltOutlined'; +export { default as OfflineBoltRounded } from './OfflineBoltRounded'; +export { default as OfflineBoltSharp } from './OfflineBoltSharp'; +export { default as OfflineBoltTwoTone } from './OfflineBoltTwoTone'; +export { default as OfflinePin } from './OfflinePin'; +export { default as OfflinePinOutlined } from './OfflinePinOutlined'; +export { default as OfflinePinRounded } from './OfflinePinRounded'; +export { default as OfflinePinSharp } from './OfflinePinSharp'; +export { default as OfflinePinTwoTone } from './OfflinePinTwoTone'; +export { default as OfflineShare } from './OfflineShare'; +export { default as OfflineShareOutlined } from './OfflineShareOutlined'; +export { default as OfflineShareRounded } from './OfflineShareRounded'; +export { default as OfflineShareSharp } from './OfflineShareSharp'; +export { default as OfflineShareTwoTone } from './OfflineShareTwoTone'; +export { default as OndemandVideo } from './OndemandVideo'; +export { default as OndemandVideoOutlined } from './OndemandVideoOutlined'; +export { default as OndemandVideoRounded } from './OndemandVideoRounded'; +export { default as OndemandVideoSharp } from './OndemandVideoSharp'; +export { default as OndemandVideoTwoTone } from './OndemandVideoTwoTone'; +export { default as OneK } from './OneK'; +export { default as OneKOutlined } from './OneKOutlined'; +export { default as OneKPlus } from './OneKPlus'; +export { default as OneKPlusOutlined } from './OneKPlusOutlined'; +export { default as OneKPlusRounded } from './OneKPlusRounded'; +export { default as OneKPlusSharp } from './OneKPlusSharp'; +export { default as OneKPlusTwoTone } from './OneKPlusTwoTone'; +export { default as OneKRounded } from './OneKRounded'; +export { default as OneKSharp } from './OneKSharp'; +export { default as OneKTwoTone } from './OneKTwoTone'; +export { default as OneKk } from './OneKk'; +export { default as OneKkOutlined } from './OneKkOutlined'; +export { default as OneKkRounded } from './OneKkRounded'; +export { default as OneKkSharp } from './OneKkSharp'; +export { default as OneKkTwoTone } from './OneKkTwoTone'; +export { default as OnlinePrediction } from './OnlinePrediction'; +export { default as OnlinePredictionOutlined } from './OnlinePredictionOutlined'; +export { default as OnlinePredictionRounded } from './OnlinePredictionRounded'; +export { default as OnlinePredictionSharp } from './OnlinePredictionSharp'; +export { default as OnlinePredictionTwoTone } from './OnlinePredictionTwoTone'; +export { default as Opacity } from './Opacity'; +export { default as OpacityOutlined } from './OpacityOutlined'; +export { default as OpacityRounded } from './OpacityRounded'; +export { default as OpacitySharp } from './OpacitySharp'; +export { default as OpacityTwoTone } from './OpacityTwoTone'; +export { default as OpenInBrowser } from './OpenInBrowser'; +export { default as OpenInBrowserOutlined } from './OpenInBrowserOutlined'; +export { default as OpenInBrowserRounded } from './OpenInBrowserRounded'; +export { default as OpenInBrowserSharp } from './OpenInBrowserSharp'; +export { default as OpenInBrowserTwoTone } from './OpenInBrowserTwoTone'; +export { default as OpenInFull } from './OpenInFull'; +export { default as OpenInFullOutlined } from './OpenInFullOutlined'; +export { default as OpenInFullRounded } from './OpenInFullRounded'; +export { default as OpenInFullSharp } from './OpenInFullSharp'; +export { default as OpenInFullTwoTone } from './OpenInFullTwoTone'; +export { default as OpenInNew } from './OpenInNew'; +export { default as OpenInNewOff } from './OpenInNewOff'; +export { default as OpenInNewOffOutlined } from './OpenInNewOffOutlined'; +export { default as OpenInNewOffRounded } from './OpenInNewOffRounded'; +export { default as OpenInNewOffSharp } from './OpenInNewOffSharp'; +export { default as OpenInNewOffTwoTone } from './OpenInNewOffTwoTone'; +export { default as OpenInNewOutlined } from './OpenInNewOutlined'; +export { default as OpenInNewRounded } from './OpenInNewRounded'; +export { default as OpenInNewSharp } from './OpenInNewSharp'; +export { default as OpenInNewTwoTone } from './OpenInNewTwoTone'; +export { default as OpenWith } from './OpenWith'; +export { default as OpenWithOutlined } from './OpenWithOutlined'; +export { default as OpenWithRounded } from './OpenWithRounded'; +export { default as OpenWithSharp } from './OpenWithSharp'; +export { default as OpenWithTwoTone } from './OpenWithTwoTone'; +export { default as OtherHouses } from './OtherHouses'; +export { default as OtherHousesOutlined } from './OtherHousesOutlined'; +export { default as OtherHousesRounded } from './OtherHousesRounded'; +export { default as OtherHousesSharp } from './OtherHousesSharp'; +export { default as OtherHousesTwoTone } from './OtherHousesTwoTone'; +export { default as Outbound } from './Outbound'; +export { default as OutboundOutlined } from './OutboundOutlined'; +export { default as OutboundRounded } from './OutboundRounded'; +export { default as OutboundSharp } from './OutboundSharp'; +export { default as OutboundTwoTone } from './OutboundTwoTone'; +export { default as Outbox } from './Outbox'; +export { default as OutboxOutlined } from './OutboxOutlined'; +export { default as OutboxRounded } from './OutboxRounded'; +export { default as OutboxSharp } from './OutboxSharp'; +export { default as OutboxTwoTone } from './OutboxTwoTone'; +export { default as OutdoorGrill } from './OutdoorGrill'; +export { default as OutdoorGrillOutlined } from './OutdoorGrillOutlined'; +export { default as OutdoorGrillRounded } from './OutdoorGrillRounded'; +export { default as OutdoorGrillSharp } from './OutdoorGrillSharp'; +export { default as OutdoorGrillTwoTone } from './OutdoorGrillTwoTone'; +export { default as Outlet } from './Outlet'; +export { default as OutletOutlined } from './OutletOutlined'; +export { default as OutletRounded } from './OutletRounded'; +export { default as OutletSharp } from './OutletSharp'; +export { default as OutletTwoTone } from './OutletTwoTone'; +export { default as OutlinedFlag } from './OutlinedFlag'; +export { default as OutlinedFlagOutlined } from './OutlinedFlagOutlined'; +export { default as OutlinedFlagRounded } from './OutlinedFlagRounded'; +export { default as OutlinedFlagSharp } from './OutlinedFlagSharp'; +export { default as OutlinedFlagTwoTone } from './OutlinedFlagTwoTone'; +export { default as Padding } from './Padding'; +export { default as PaddingOutlined } from './PaddingOutlined'; +export { default as PaddingRounded } from './PaddingRounded'; +export { default as PaddingSharp } from './PaddingSharp'; +export { default as PaddingTwoTone } from './PaddingTwoTone'; +export { default as Pages } from './Pages'; +export { default as PagesOutlined } from './PagesOutlined'; +export { default as PagesRounded } from './PagesRounded'; +export { default as PagesSharp } from './PagesSharp'; +export { default as PagesTwoTone } from './PagesTwoTone'; +export { default as Pageview } from './Pageview'; +export { default as PageviewOutlined } from './PageviewOutlined'; +export { default as PageviewRounded } from './PageviewRounded'; +export { default as PageviewSharp } from './PageviewSharp'; +export { default as PageviewTwoTone } from './PageviewTwoTone'; +export { default as Paid } from './Paid'; +export { default as PaidOutlined } from './PaidOutlined'; +export { default as PaidRounded } from './PaidRounded'; +export { default as PaidSharp } from './PaidSharp'; +export { default as PaidTwoTone } from './PaidTwoTone'; +export { default as Palette } from './Palette'; +export { default as PaletteOutlined } from './PaletteOutlined'; +export { default as PaletteRounded } from './PaletteRounded'; +export { default as PaletteSharp } from './PaletteSharp'; +export { default as PaletteTwoTone } from './PaletteTwoTone'; +export { default as PanTool } from './PanTool'; +export { default as PanToolOutlined } from './PanToolOutlined'; +export { default as PanToolRounded } from './PanToolRounded'; +export { default as PanToolSharp } from './PanToolSharp'; +export { default as PanToolTwoTone } from './PanToolTwoTone'; +export { default as Panorama } from './Panorama'; +export { default as PanoramaFishEye } from './PanoramaFishEye'; +export { default as PanoramaFishEyeOutlined } from './PanoramaFishEyeOutlined'; +export { default as PanoramaFishEyeRounded } from './PanoramaFishEyeRounded'; +export { default as PanoramaFishEyeSharp } from './PanoramaFishEyeSharp'; +export { default as PanoramaFishEyeTwoTone } from './PanoramaFishEyeTwoTone'; +export { default as PanoramaHorizontal } from './PanoramaHorizontal'; +export { default as PanoramaHorizontalOutlined } from './PanoramaHorizontalOutlined'; +export { default as PanoramaHorizontalRounded } from './PanoramaHorizontalRounded'; +export { default as PanoramaHorizontalSelect } from './PanoramaHorizontalSelect'; +export { default as PanoramaHorizontalSelectOutlined } from './PanoramaHorizontalSelectOutlined'; +export { default as PanoramaHorizontalSelectRounded } from './PanoramaHorizontalSelectRounded'; +export { default as PanoramaHorizontalSelectSharp } from './PanoramaHorizontalSelectSharp'; +export { default as PanoramaHorizontalSelectTwoTone } from './PanoramaHorizontalSelectTwoTone'; +export { default as PanoramaHorizontalSharp } from './PanoramaHorizontalSharp'; +export { default as PanoramaHorizontalTwoTone } from './PanoramaHorizontalTwoTone'; +export { default as PanoramaOutlined } from './PanoramaOutlined'; +export { default as PanoramaPhotosphere } from './PanoramaPhotosphere'; +export { default as PanoramaPhotosphereOutlined } from './PanoramaPhotosphereOutlined'; +export { default as PanoramaPhotosphereRounded } from './PanoramaPhotosphereRounded'; +export { default as PanoramaPhotosphereSelect } from './PanoramaPhotosphereSelect'; +export { default as PanoramaPhotosphereSelectOutlined } from './PanoramaPhotosphereSelectOutlined'; +export { default as PanoramaPhotosphereSelectRounded } from './PanoramaPhotosphereSelectRounded'; +export { default as PanoramaPhotosphereSelectSharp } from './PanoramaPhotosphereSelectSharp'; +export { default as PanoramaPhotosphereSelectTwoTone } from './PanoramaPhotosphereSelectTwoTone'; +export { default as PanoramaPhotosphereSharp } from './PanoramaPhotosphereSharp'; +export { default as PanoramaPhotosphereTwoTone } from './PanoramaPhotosphereTwoTone'; +export { default as PanoramaRounded } from './PanoramaRounded'; +export { default as PanoramaSharp } from './PanoramaSharp'; +export { default as PanoramaTwoTone } from './PanoramaTwoTone'; +export { default as PanoramaVertical } from './PanoramaVertical'; +export { default as PanoramaVerticalOutlined } from './PanoramaVerticalOutlined'; +export { default as PanoramaVerticalRounded } from './PanoramaVerticalRounded'; +export { default as PanoramaVerticalSelect } from './PanoramaVerticalSelect'; +export { default as PanoramaVerticalSelectOutlined } from './PanoramaVerticalSelectOutlined'; +export { default as PanoramaVerticalSelectRounded } from './PanoramaVerticalSelectRounded'; +export { default as PanoramaVerticalSelectSharp } from './PanoramaVerticalSelectSharp'; +export { default as PanoramaVerticalSelectTwoTone } from './PanoramaVerticalSelectTwoTone'; +export { default as PanoramaVerticalSharp } from './PanoramaVerticalSharp'; +export { default as PanoramaVerticalTwoTone } from './PanoramaVerticalTwoTone'; +export { default as PanoramaWideAngle } from './PanoramaWideAngle'; +export { default as PanoramaWideAngleOutlined } from './PanoramaWideAngleOutlined'; +export { default as PanoramaWideAngleRounded } from './PanoramaWideAngleRounded'; +export { default as PanoramaWideAngleSelect } from './PanoramaWideAngleSelect'; +export { default as PanoramaWideAngleSelectOutlined } from './PanoramaWideAngleSelectOutlined'; +export { default as PanoramaWideAngleSelectRounded } from './PanoramaWideAngleSelectRounded'; +export { default as PanoramaWideAngleSelectSharp } from './PanoramaWideAngleSelectSharp'; +export { default as PanoramaWideAngleSelectTwoTone } from './PanoramaWideAngleSelectTwoTone'; +export { default as PanoramaWideAngleSharp } from './PanoramaWideAngleSharp'; +export { default as PanoramaWideAngleTwoTone } from './PanoramaWideAngleTwoTone'; +export { default as Paragliding } from './Paragliding'; +export { default as ParaglidingOutlined } from './ParaglidingOutlined'; +export { default as ParaglidingRounded } from './ParaglidingRounded'; +export { default as ParaglidingSharp } from './ParaglidingSharp'; +export { default as ParaglidingTwoTone } from './ParaglidingTwoTone'; +export { default as Park } from './Park'; +export { default as ParkOutlined } from './ParkOutlined'; +export { default as ParkRounded } from './ParkRounded'; +export { default as ParkSharp } from './ParkSharp'; +export { default as ParkTwoTone } from './ParkTwoTone'; +export { default as PartyMode } from './PartyMode'; +export { default as PartyModeOutlined } from './PartyModeOutlined'; +export { default as PartyModeRounded } from './PartyModeRounded'; +export { default as PartyModeSharp } from './PartyModeSharp'; +export { default as PartyModeTwoTone } from './PartyModeTwoTone'; +export { default as Password } from './Password'; +export { default as PasswordOutlined } from './PasswordOutlined'; +export { default as PasswordRounded } from './PasswordRounded'; +export { default as PasswordSharp } from './PasswordSharp'; +export { default as PasswordTwoTone } from './PasswordTwoTone'; +export { default as Pattern } from './Pattern'; +export { default as PatternOutlined } from './PatternOutlined'; +export { default as PatternRounded } from './PatternRounded'; +export { default as PatternSharp } from './PatternSharp'; +export { default as PatternTwoTone } from './PatternTwoTone'; +export { default as Pause } from './Pause'; +export { default as PauseCircle } from './PauseCircle'; +export { default as PauseCircleFilled } from './PauseCircleFilled'; +export { default as PauseCircleFilledOutlined } from './PauseCircleFilledOutlined'; +export { default as PauseCircleFilledRounded } from './PauseCircleFilledRounded'; +export { default as PauseCircleFilledSharp } from './PauseCircleFilledSharp'; +export { default as PauseCircleFilledTwoTone } from './PauseCircleFilledTwoTone'; +export { default as PauseCircleOutline } from './PauseCircleOutline'; +export { default as PauseCircleOutlineOutlined } from './PauseCircleOutlineOutlined'; +export { default as PauseCircleOutlineRounded } from './PauseCircleOutlineRounded'; +export { default as PauseCircleOutlineSharp } from './PauseCircleOutlineSharp'; +export { default as PauseCircleOutlineTwoTone } from './PauseCircleOutlineTwoTone'; +export { default as PauseCircleOutlined } from './PauseCircleOutlined'; +export { default as PauseCircleRounded } from './PauseCircleRounded'; +export { default as PauseCircleSharp } from './PauseCircleSharp'; +export { default as PauseCircleTwoTone } from './PauseCircleTwoTone'; +export { default as PauseOutlined } from './PauseOutlined'; +export { default as PausePresentation } from './PausePresentation'; +export { default as PausePresentationOutlined } from './PausePresentationOutlined'; +export { default as PausePresentationRounded } from './PausePresentationRounded'; +export { default as PausePresentationSharp } from './PausePresentationSharp'; +export { default as PausePresentationTwoTone } from './PausePresentationTwoTone'; +export { default as PauseRounded } from './PauseRounded'; +export { default as PauseSharp } from './PauseSharp'; +export { default as PauseTwoTone } from './PauseTwoTone'; +export { default as Payment } from './Payment'; +export { default as PaymentOutlined } from './PaymentOutlined'; +export { default as PaymentRounded } from './PaymentRounded'; +export { default as PaymentSharp } from './PaymentSharp'; +export { default as PaymentTwoTone } from './PaymentTwoTone'; +export { default as Payments } from './Payments'; +export { default as PaymentsOutlined } from './PaymentsOutlined'; +export { default as PaymentsRounded } from './PaymentsRounded'; +export { default as PaymentsSharp } from './PaymentsSharp'; +export { default as PaymentsTwoTone } from './PaymentsTwoTone'; +export { default as PedalBike } from './PedalBike'; +export { default as PedalBikeOutlined } from './PedalBikeOutlined'; +export { default as PedalBikeRounded } from './PedalBikeRounded'; +export { default as PedalBikeSharp } from './PedalBikeSharp'; +export { default as PedalBikeTwoTone } from './PedalBikeTwoTone'; +export { default as Pending } from './Pending'; +export { default as PendingActions } from './PendingActions'; +export { default as PendingActionsOutlined } from './PendingActionsOutlined'; +export { default as PendingActionsRounded } from './PendingActionsRounded'; +export { default as PendingActionsSharp } from './PendingActionsSharp'; +export { default as PendingActionsTwoTone } from './PendingActionsTwoTone'; +export { default as PendingOutlined } from './PendingOutlined'; +export { default as PendingRounded } from './PendingRounded'; +export { default as PendingSharp } from './PendingSharp'; +export { default as PendingTwoTone } from './PendingTwoTone'; +export { default as People } from './People'; +export { default as PeopleAlt } from './PeopleAlt'; +export { default as PeopleAltOutlined } from './PeopleAltOutlined'; +export { default as PeopleAltRounded } from './PeopleAltRounded'; +export { default as PeopleAltSharp } from './PeopleAltSharp'; +export { default as PeopleAltTwoTone } from './PeopleAltTwoTone'; +export { default as PeopleOutline } from './PeopleOutline'; +export { default as PeopleOutlineOutlined } from './PeopleOutlineOutlined'; +export { default as PeopleOutlineRounded } from './PeopleOutlineRounded'; +export { default as PeopleOutlineSharp } from './PeopleOutlineSharp'; +export { default as PeopleOutlineTwoTone } from './PeopleOutlineTwoTone'; +export { default as PeopleOutlined } from './PeopleOutlined'; +export { default as PeopleRounded } from './PeopleRounded'; +export { default as PeopleSharp } from './PeopleSharp'; +export { default as PeopleTwoTone } from './PeopleTwoTone'; +export { default as PermCameraMic } from './PermCameraMic'; +export { default as PermCameraMicOutlined } from './PermCameraMicOutlined'; +export { default as PermCameraMicRounded } from './PermCameraMicRounded'; +export { default as PermCameraMicSharp } from './PermCameraMicSharp'; +export { default as PermCameraMicTwoTone } from './PermCameraMicTwoTone'; +export { default as PermContactCalendar } from './PermContactCalendar'; +export { default as PermContactCalendarOutlined } from './PermContactCalendarOutlined'; +export { default as PermContactCalendarRounded } from './PermContactCalendarRounded'; +export { default as PermContactCalendarSharp } from './PermContactCalendarSharp'; +export { default as PermContactCalendarTwoTone } from './PermContactCalendarTwoTone'; +export { default as PermDataSetting } from './PermDataSetting'; +export { default as PermDataSettingOutlined } from './PermDataSettingOutlined'; +export { default as PermDataSettingRounded } from './PermDataSettingRounded'; +export { default as PermDataSettingSharp } from './PermDataSettingSharp'; +export { default as PermDataSettingTwoTone } from './PermDataSettingTwoTone'; +export { default as PermDeviceInformation } from './PermDeviceInformation'; +export { default as PermDeviceInformationOutlined } from './PermDeviceInformationOutlined'; +export { default as PermDeviceInformationRounded } from './PermDeviceInformationRounded'; +export { default as PermDeviceInformationSharp } from './PermDeviceInformationSharp'; +export { default as PermDeviceInformationTwoTone } from './PermDeviceInformationTwoTone'; +export { default as PermIdentity } from './PermIdentity'; +export { default as PermIdentityOutlined } from './PermIdentityOutlined'; +export { default as PermIdentityRounded } from './PermIdentityRounded'; +export { default as PermIdentitySharp } from './PermIdentitySharp'; +export { default as PermIdentityTwoTone } from './PermIdentityTwoTone'; +export { default as PermMedia } from './PermMedia'; +export { default as PermMediaOutlined } from './PermMediaOutlined'; +export { default as PermMediaRounded } from './PermMediaRounded'; +export { default as PermMediaSharp } from './PermMediaSharp'; +export { default as PermMediaTwoTone } from './PermMediaTwoTone'; +export { default as PermPhoneMsg } from './PermPhoneMsg'; +export { default as PermPhoneMsgOutlined } from './PermPhoneMsgOutlined'; +export { default as PermPhoneMsgRounded } from './PermPhoneMsgRounded'; +export { default as PermPhoneMsgSharp } from './PermPhoneMsgSharp'; +export { default as PermPhoneMsgTwoTone } from './PermPhoneMsgTwoTone'; +export { default as PermScanWifi } from './PermScanWifi'; +export { default as PermScanWifiOutlined } from './PermScanWifiOutlined'; +export { default as PermScanWifiRounded } from './PermScanWifiRounded'; +export { default as PermScanWifiSharp } from './PermScanWifiSharp'; +export { default as PermScanWifiTwoTone } from './PermScanWifiTwoTone'; +export { default as Person } from './Person'; +export { default as PersonAdd } from './PersonAdd'; +export { default as PersonAddAlt } from './PersonAddAlt'; +export { default as PersonAddAlt1 } from './PersonAddAlt1'; +export { default as PersonAddAlt1Outlined } from './PersonAddAlt1Outlined'; +export { default as PersonAddAlt1Rounded } from './PersonAddAlt1Rounded'; +export { default as PersonAddAlt1Sharp } from './PersonAddAlt1Sharp'; +export { default as PersonAddAlt1TwoTone } from './PersonAddAlt1TwoTone'; +export { default as PersonAddAltOutlined } from './PersonAddAltOutlined'; +export { default as PersonAddAltRounded } from './PersonAddAltRounded'; +export { default as PersonAddAltSharp } from './PersonAddAltSharp'; +export { default as PersonAddAltTwoTone } from './PersonAddAltTwoTone'; +export { default as PersonAddDisabled } from './PersonAddDisabled'; +export { default as PersonAddDisabledOutlined } from './PersonAddDisabledOutlined'; +export { default as PersonAddDisabledRounded } from './PersonAddDisabledRounded'; +export { default as PersonAddDisabledSharp } from './PersonAddDisabledSharp'; +export { default as PersonAddDisabledTwoTone } from './PersonAddDisabledTwoTone'; +export { default as PersonAddOutlined } from './PersonAddOutlined'; +export { default as PersonAddRounded } from './PersonAddRounded'; +export { default as PersonAddSharp } from './PersonAddSharp'; +export { default as PersonAddTwoTone } from './PersonAddTwoTone'; +export { default as PersonOff } from './PersonOff'; +export { default as PersonOffOutlined } from './PersonOffOutlined'; +export { default as PersonOffRounded } from './PersonOffRounded'; +export { default as PersonOffSharp } from './PersonOffSharp'; +export { default as PersonOffTwoTone } from './PersonOffTwoTone'; +export { default as PersonOutline } from './PersonOutline'; +export { default as PersonOutlineOutlined } from './PersonOutlineOutlined'; +export { default as PersonOutlineRounded } from './PersonOutlineRounded'; +export { default as PersonOutlineSharp } from './PersonOutlineSharp'; +export { default as PersonOutlineTwoTone } from './PersonOutlineTwoTone'; +export { default as PersonOutlined } from './PersonOutlined'; +export { default as PersonPin } from './PersonPin'; +export { default as PersonPinCircle } from './PersonPinCircle'; +export { default as PersonPinCircleOutlined } from './PersonPinCircleOutlined'; +export { default as PersonPinCircleRounded } from './PersonPinCircleRounded'; +export { default as PersonPinCircleSharp } from './PersonPinCircleSharp'; +export { default as PersonPinCircleTwoTone } from './PersonPinCircleTwoTone'; +export { default as PersonPinOutlined } from './PersonPinOutlined'; +export { default as PersonPinRounded } from './PersonPinRounded'; +export { default as PersonPinSharp } from './PersonPinSharp'; +export { default as PersonPinTwoTone } from './PersonPinTwoTone'; +export { default as PersonRemove } from './PersonRemove'; +export { default as PersonRemoveAlt1 } from './PersonRemoveAlt1'; +export { default as PersonRemoveAlt1Outlined } from './PersonRemoveAlt1Outlined'; +export { default as PersonRemoveAlt1Rounded } from './PersonRemoveAlt1Rounded'; +export { default as PersonRemoveAlt1Sharp } from './PersonRemoveAlt1Sharp'; +export { default as PersonRemoveAlt1TwoTone } from './PersonRemoveAlt1TwoTone'; +export { default as PersonRemoveOutlined } from './PersonRemoveOutlined'; +export { default as PersonRemoveRounded } from './PersonRemoveRounded'; +export { default as PersonRemoveSharp } from './PersonRemoveSharp'; +export { default as PersonRemoveTwoTone } from './PersonRemoveTwoTone'; +export { default as PersonRounded } from './PersonRounded'; +export { default as PersonSearch } from './PersonSearch'; +export { default as PersonSearchOutlined } from './PersonSearchOutlined'; +export { default as PersonSearchRounded } from './PersonSearchRounded'; +export { default as PersonSearchSharp } from './PersonSearchSharp'; +export { default as PersonSearchTwoTone } from './PersonSearchTwoTone'; +export { default as PersonSharp } from './PersonSharp'; +export { default as PersonTwoTone } from './PersonTwoTone'; +export { default as PersonalVideo } from './PersonalVideo'; +export { default as PersonalVideoOutlined } from './PersonalVideoOutlined'; +export { default as PersonalVideoRounded } from './PersonalVideoRounded'; +export { default as PersonalVideoSharp } from './PersonalVideoSharp'; +export { default as PersonalVideoTwoTone } from './PersonalVideoTwoTone'; +export { default as PestControl } from './PestControl'; +export { default as PestControlOutlined } from './PestControlOutlined'; +export { default as PestControlRodent } from './PestControlRodent'; +export { default as PestControlRodentOutlined } from './PestControlRodentOutlined'; +export { default as PestControlRodentRounded } from './PestControlRodentRounded'; +export { default as PestControlRodentSharp } from './PestControlRodentSharp'; +export { default as PestControlRodentTwoTone } from './PestControlRodentTwoTone'; +export { default as PestControlRounded } from './PestControlRounded'; +export { default as PestControlSharp } from './PestControlSharp'; +export { default as PestControlTwoTone } from './PestControlTwoTone'; +export { default as Pets } from './Pets'; +export { default as PetsOutlined } from './PetsOutlined'; +export { default as PetsRounded } from './PetsRounded'; +export { default as PetsSharp } from './PetsSharp'; +export { default as PetsTwoTone } from './PetsTwoTone'; +export { default as Phone } from './Phone'; +export { default as PhoneAndroid } from './PhoneAndroid'; +export { default as PhoneAndroidOutlined } from './PhoneAndroidOutlined'; +export { default as PhoneAndroidRounded } from './PhoneAndroidRounded'; +export { default as PhoneAndroidSharp } from './PhoneAndroidSharp'; +export { default as PhoneAndroidTwoTone } from './PhoneAndroidTwoTone'; +export { default as PhoneBluetoothSpeaker } from './PhoneBluetoothSpeaker'; +export { default as PhoneBluetoothSpeakerOutlined } from './PhoneBluetoothSpeakerOutlined'; +export { default as PhoneBluetoothSpeakerRounded } from './PhoneBluetoothSpeakerRounded'; +export { default as PhoneBluetoothSpeakerSharp } from './PhoneBluetoothSpeakerSharp'; +export { default as PhoneBluetoothSpeakerTwoTone } from './PhoneBluetoothSpeakerTwoTone'; +export { default as PhoneCallback } from './PhoneCallback'; +export { default as PhoneCallbackOutlined } from './PhoneCallbackOutlined'; +export { default as PhoneCallbackRounded } from './PhoneCallbackRounded'; +export { default as PhoneCallbackSharp } from './PhoneCallbackSharp'; +export { default as PhoneCallbackTwoTone } from './PhoneCallbackTwoTone'; +export { default as PhoneDisabled } from './PhoneDisabled'; +export { default as PhoneDisabledOutlined } from './PhoneDisabledOutlined'; +export { default as PhoneDisabledRounded } from './PhoneDisabledRounded'; +export { default as PhoneDisabledSharp } from './PhoneDisabledSharp'; +export { default as PhoneDisabledTwoTone } from './PhoneDisabledTwoTone'; +export { default as PhoneEnabled } from './PhoneEnabled'; +export { default as PhoneEnabledOutlined } from './PhoneEnabledOutlined'; +export { default as PhoneEnabledRounded } from './PhoneEnabledRounded'; +export { default as PhoneEnabledSharp } from './PhoneEnabledSharp'; +export { default as PhoneEnabledTwoTone } from './PhoneEnabledTwoTone'; +export { default as PhoneForwarded } from './PhoneForwarded'; +export { default as PhoneForwardedOutlined } from './PhoneForwardedOutlined'; +export { default as PhoneForwardedRounded } from './PhoneForwardedRounded'; +export { default as PhoneForwardedSharp } from './PhoneForwardedSharp'; +export { default as PhoneForwardedTwoTone } from './PhoneForwardedTwoTone'; +export { default as PhoneInTalk } from './PhoneInTalk'; +export { default as PhoneInTalkOutlined } from './PhoneInTalkOutlined'; +export { default as PhoneInTalkRounded } from './PhoneInTalkRounded'; +export { default as PhoneInTalkSharp } from './PhoneInTalkSharp'; +export { default as PhoneInTalkTwoTone } from './PhoneInTalkTwoTone'; +export { default as PhoneIphone } from './PhoneIphone'; +export { default as PhoneIphoneOutlined } from './PhoneIphoneOutlined'; +export { default as PhoneIphoneRounded } from './PhoneIphoneRounded'; +export { default as PhoneIphoneSharp } from './PhoneIphoneSharp'; +export { default as PhoneIphoneTwoTone } from './PhoneIphoneTwoTone'; +export { default as PhoneLocked } from './PhoneLocked'; +export { default as PhoneLockedOutlined } from './PhoneLockedOutlined'; +export { default as PhoneLockedRounded } from './PhoneLockedRounded'; +export { default as PhoneLockedSharp } from './PhoneLockedSharp'; +export { default as PhoneLockedTwoTone } from './PhoneLockedTwoTone'; +export { default as PhoneMissed } from './PhoneMissed'; +export { default as PhoneMissedOutlined } from './PhoneMissedOutlined'; +export { default as PhoneMissedRounded } from './PhoneMissedRounded'; +export { default as PhoneMissedSharp } from './PhoneMissedSharp'; +export { default as PhoneMissedTwoTone } from './PhoneMissedTwoTone'; +export { default as PhoneOutlined } from './PhoneOutlined'; +export { default as PhonePaused } from './PhonePaused'; +export { default as PhonePausedOutlined } from './PhonePausedOutlined'; +export { default as PhonePausedRounded } from './PhonePausedRounded'; +export { default as PhonePausedSharp } from './PhonePausedSharp'; +export { default as PhonePausedTwoTone } from './PhonePausedTwoTone'; +export { default as PhoneRounded } from './PhoneRounded'; +export { default as PhoneSharp } from './PhoneSharp'; +export { default as PhoneTwoTone } from './PhoneTwoTone'; +export { default as Phonelink } from './Phonelink'; +export { default as PhonelinkErase } from './PhonelinkErase'; +export { default as PhonelinkEraseOutlined } from './PhonelinkEraseOutlined'; +export { default as PhonelinkEraseRounded } from './PhonelinkEraseRounded'; +export { default as PhonelinkEraseSharp } from './PhonelinkEraseSharp'; +export { default as PhonelinkEraseTwoTone } from './PhonelinkEraseTwoTone'; +export { default as PhonelinkLock } from './PhonelinkLock'; +export { default as PhonelinkLockOutlined } from './PhonelinkLockOutlined'; +export { default as PhonelinkLockRounded } from './PhonelinkLockRounded'; +export { default as PhonelinkLockSharp } from './PhonelinkLockSharp'; +export { default as PhonelinkLockTwoTone } from './PhonelinkLockTwoTone'; +export { default as PhonelinkOff } from './PhonelinkOff'; +export { default as PhonelinkOffOutlined } from './PhonelinkOffOutlined'; +export { default as PhonelinkOffRounded } from './PhonelinkOffRounded'; +export { default as PhonelinkOffSharp } from './PhonelinkOffSharp'; +export { default as PhonelinkOffTwoTone } from './PhonelinkOffTwoTone'; +export { default as PhonelinkOutlined } from './PhonelinkOutlined'; +export { default as PhonelinkRing } from './PhonelinkRing'; +export { default as PhonelinkRingOutlined } from './PhonelinkRingOutlined'; +export { default as PhonelinkRingRounded } from './PhonelinkRingRounded'; +export { default as PhonelinkRingSharp } from './PhonelinkRingSharp'; +export { default as PhonelinkRingTwoTone } from './PhonelinkRingTwoTone'; +export { default as PhonelinkRounded } from './PhonelinkRounded'; +export { default as PhonelinkSetup } from './PhonelinkSetup'; +export { default as PhonelinkSetupOutlined } from './PhonelinkSetupOutlined'; +export { default as PhonelinkSetupRounded } from './PhonelinkSetupRounded'; +export { default as PhonelinkSetupSharp } from './PhonelinkSetupSharp'; +export { default as PhonelinkSetupTwoTone } from './PhonelinkSetupTwoTone'; +export { default as PhonelinkSharp } from './PhonelinkSharp'; +export { default as PhonelinkTwoTone } from './PhonelinkTwoTone'; +export { default as Photo } from './Photo'; +export { default as PhotoAlbum } from './PhotoAlbum'; +export { default as PhotoAlbumOutlined } from './PhotoAlbumOutlined'; +export { default as PhotoAlbumRounded } from './PhotoAlbumRounded'; +export { default as PhotoAlbumSharp } from './PhotoAlbumSharp'; +export { default as PhotoAlbumTwoTone } from './PhotoAlbumTwoTone'; +export { default as PhotoCamera } from './PhotoCamera'; +export { default as PhotoCameraBack } from './PhotoCameraBack'; +export { default as PhotoCameraBackOutlined } from './PhotoCameraBackOutlined'; +export { default as PhotoCameraBackRounded } from './PhotoCameraBackRounded'; +export { default as PhotoCameraBackSharp } from './PhotoCameraBackSharp'; +export { default as PhotoCameraBackTwoTone } from './PhotoCameraBackTwoTone'; +export { default as PhotoCameraFront } from './PhotoCameraFront'; +export { default as PhotoCameraFrontOutlined } from './PhotoCameraFrontOutlined'; +export { default as PhotoCameraFrontRounded } from './PhotoCameraFrontRounded'; +export { default as PhotoCameraFrontSharp } from './PhotoCameraFrontSharp'; +export { default as PhotoCameraFrontTwoTone } from './PhotoCameraFrontTwoTone'; +export { default as PhotoCameraOutlined } from './PhotoCameraOutlined'; +export { default as PhotoCameraRounded } from './PhotoCameraRounded'; +export { default as PhotoCameraSharp } from './PhotoCameraSharp'; +export { default as PhotoCameraTwoTone } from './PhotoCameraTwoTone'; +export { default as PhotoFilter } from './PhotoFilter'; +export { default as PhotoFilterOutlined } from './PhotoFilterOutlined'; +export { default as PhotoFilterRounded } from './PhotoFilterRounded'; +export { default as PhotoFilterSharp } from './PhotoFilterSharp'; +export { default as PhotoFilterTwoTone } from './PhotoFilterTwoTone'; +export { default as PhotoLibrary } from './PhotoLibrary'; +export { default as PhotoLibraryOutlined } from './PhotoLibraryOutlined'; +export { default as PhotoLibraryRounded } from './PhotoLibraryRounded'; +export { default as PhotoLibrarySharp } from './PhotoLibrarySharp'; +export { default as PhotoLibraryTwoTone } from './PhotoLibraryTwoTone'; +export { default as PhotoOutlined } from './PhotoOutlined'; +export { default as PhotoRounded } from './PhotoRounded'; +export { default as PhotoSharp } from './PhotoSharp'; +export { default as PhotoSizeSelectActual } from './PhotoSizeSelectActual'; +export { default as PhotoSizeSelectActualOutlined } from './PhotoSizeSelectActualOutlined'; +export { default as PhotoSizeSelectActualRounded } from './PhotoSizeSelectActualRounded'; +export { default as PhotoSizeSelectActualSharp } from './PhotoSizeSelectActualSharp'; +export { default as PhotoSizeSelectActualTwoTone } from './PhotoSizeSelectActualTwoTone'; +export { default as PhotoSizeSelectLarge } from './PhotoSizeSelectLarge'; +export { default as PhotoSizeSelectLargeOutlined } from './PhotoSizeSelectLargeOutlined'; +export { default as PhotoSizeSelectLargeRounded } from './PhotoSizeSelectLargeRounded'; +export { default as PhotoSizeSelectLargeSharp } from './PhotoSizeSelectLargeSharp'; +export { default as PhotoSizeSelectLargeTwoTone } from './PhotoSizeSelectLargeTwoTone'; +export { default as PhotoSizeSelectSmall } from './PhotoSizeSelectSmall'; +export { default as PhotoSizeSelectSmallOutlined } from './PhotoSizeSelectSmallOutlined'; +export { default as PhotoSizeSelectSmallRounded } from './PhotoSizeSelectSmallRounded'; +export { default as PhotoSizeSelectSmallSharp } from './PhotoSizeSelectSmallSharp'; +export { default as PhotoSizeSelectSmallTwoTone } from './PhotoSizeSelectSmallTwoTone'; +export { default as PhotoTwoTone } from './PhotoTwoTone'; +export { default as Piano } from './Piano'; +export { default as PianoOff } from './PianoOff'; +export { default as PianoOffOutlined } from './PianoOffOutlined'; +export { default as PianoOffRounded } from './PianoOffRounded'; +export { default as PianoOffSharp } from './PianoOffSharp'; +export { default as PianoOffTwoTone } from './PianoOffTwoTone'; +export { default as PianoOutlined } from './PianoOutlined'; +export { default as PianoRounded } from './PianoRounded'; +export { default as PianoSharp } from './PianoSharp'; +export { default as PianoTwoTone } from './PianoTwoTone'; +export { default as PictureAsPdf } from './PictureAsPdf'; +export { default as PictureAsPdfOutlined } from './PictureAsPdfOutlined'; +export { default as PictureAsPdfRounded } from './PictureAsPdfRounded'; +export { default as PictureAsPdfSharp } from './PictureAsPdfSharp'; +export { default as PictureAsPdfTwoTone } from './PictureAsPdfTwoTone'; +export { default as PictureInPicture } from './PictureInPicture'; +export { default as PictureInPictureAlt } from './PictureInPictureAlt'; +export { default as PictureInPictureAltOutlined } from './PictureInPictureAltOutlined'; +export { default as PictureInPictureAltRounded } from './PictureInPictureAltRounded'; +export { default as PictureInPictureAltSharp } from './PictureInPictureAltSharp'; +export { default as PictureInPictureAltTwoTone } from './PictureInPictureAltTwoTone'; +export { default as PictureInPictureOutlined } from './PictureInPictureOutlined'; +export { default as PictureInPictureRounded } from './PictureInPictureRounded'; +export { default as PictureInPictureSharp } from './PictureInPictureSharp'; +export { default as PictureInPictureTwoTone } from './PictureInPictureTwoTone'; +export { default as PieChart } from './PieChart'; +export { default as PieChartOutline } from './PieChartOutline'; +export { default as PieChartOutlineOutlined } from './PieChartOutlineOutlined'; +export { default as PieChartOutlineRounded } from './PieChartOutlineRounded'; +export { default as PieChartOutlineSharp } from './PieChartOutlineSharp'; +export { default as PieChartOutlineTwoTone } from './PieChartOutlineTwoTone'; +export { default as PieChartOutlined } from './PieChartOutlined'; +export { default as PieChartRounded } from './PieChartRounded'; +export { default as PieChartSharp } from './PieChartSharp'; +export { default as PieChartTwoTone } from './PieChartTwoTone'; +export { default as Pin } from './Pin'; +export { default as PinDrop } from './PinDrop'; +export { default as PinDropOutlined } from './PinDropOutlined'; +export { default as PinDropRounded } from './PinDropRounded'; +export { default as PinDropSharp } from './PinDropSharp'; +export { default as PinDropTwoTone } from './PinDropTwoTone'; +export { default as PinOutlined } from './PinOutlined'; +export { default as PinRounded } from './PinRounded'; +export { default as PinSharp } from './PinSharp'; +export { default as PinTwoTone } from './PinTwoTone'; +export { default as Pinterest } from './Pinterest'; +export { default as PivotTableChart } from './PivotTableChart'; +export { default as PivotTableChartOutlined } from './PivotTableChartOutlined'; +export { default as PivotTableChartRounded } from './PivotTableChartRounded'; +export { default as PivotTableChartSharp } from './PivotTableChartSharp'; +export { default as PivotTableChartTwoTone } from './PivotTableChartTwoTone'; +export { default as Place } from './Place'; +export { default as PlaceOutlined } from './PlaceOutlined'; +export { default as PlaceRounded } from './PlaceRounded'; +export { default as PlaceSharp } from './PlaceSharp'; +export { default as PlaceTwoTone } from './PlaceTwoTone'; +export { default as Plagiarism } from './Plagiarism'; +export { default as PlagiarismOutlined } from './PlagiarismOutlined'; +export { default as PlagiarismRounded } from './PlagiarismRounded'; +export { default as PlagiarismSharp } from './PlagiarismSharp'; +export { default as PlagiarismTwoTone } from './PlagiarismTwoTone'; +export { default as PlayArrow } from './PlayArrow'; +export { default as PlayArrowOutlined } from './PlayArrowOutlined'; +export { default as PlayArrowRounded } from './PlayArrowRounded'; +export { default as PlayArrowSharp } from './PlayArrowSharp'; +export { default as PlayArrowTwoTone } from './PlayArrowTwoTone'; +export { default as PlayCircle } from './PlayCircle'; +export { default as PlayCircleFilled } from './PlayCircleFilled'; +export { default as PlayCircleFilledOutlined } from './PlayCircleFilledOutlined'; +export { default as PlayCircleFilledRounded } from './PlayCircleFilledRounded'; +export { default as PlayCircleFilledSharp } from './PlayCircleFilledSharp'; +export { default as PlayCircleFilledTwoTone } from './PlayCircleFilledTwoTone'; +export { default as PlayCircleFilledWhite } from './PlayCircleFilledWhite'; +export { default as PlayCircleFilledWhiteOutlined } from './PlayCircleFilledWhiteOutlined'; +export { default as PlayCircleFilledWhiteRounded } from './PlayCircleFilledWhiteRounded'; +export { default as PlayCircleFilledWhiteSharp } from './PlayCircleFilledWhiteSharp'; +export { default as PlayCircleFilledWhiteTwoTone } from './PlayCircleFilledWhiteTwoTone'; +export { default as PlayCircleOutline } from './PlayCircleOutline'; +export { default as PlayCircleOutlineOutlined } from './PlayCircleOutlineOutlined'; +export { default as PlayCircleOutlineRounded } from './PlayCircleOutlineRounded'; +export { default as PlayCircleOutlineSharp } from './PlayCircleOutlineSharp'; +export { default as PlayCircleOutlineTwoTone } from './PlayCircleOutlineTwoTone'; +export { default as PlayCircleOutlined } from './PlayCircleOutlined'; +export { default as PlayCircleRounded } from './PlayCircleRounded'; +export { default as PlayCircleSharp } from './PlayCircleSharp'; +export { default as PlayCircleTwoTone } from './PlayCircleTwoTone'; +export { default as PlayDisabled } from './PlayDisabled'; +export { default as PlayDisabledOutlined } from './PlayDisabledOutlined'; +export { default as PlayDisabledRounded } from './PlayDisabledRounded'; +export { default as PlayDisabledSharp } from './PlayDisabledSharp'; +export { default as PlayDisabledTwoTone } from './PlayDisabledTwoTone'; +export { default as PlayForWork } from './PlayForWork'; +export { default as PlayForWorkOutlined } from './PlayForWorkOutlined'; +export { default as PlayForWorkRounded } from './PlayForWorkRounded'; +export { default as PlayForWorkSharp } from './PlayForWorkSharp'; +export { default as PlayForWorkTwoTone } from './PlayForWorkTwoTone'; +export { default as PlayLesson } from './PlayLesson'; +export { default as PlayLessonOutlined } from './PlayLessonOutlined'; +export { default as PlayLessonRounded } from './PlayLessonRounded'; +export { default as PlayLessonSharp } from './PlayLessonSharp'; +export { default as PlayLessonTwoTone } from './PlayLessonTwoTone'; +export { default as PlaylistAdd } from './PlaylistAdd'; +export { default as PlaylistAddCheck } from './PlaylistAddCheck'; +export { default as PlaylistAddCheckOutlined } from './PlaylistAddCheckOutlined'; +export { default as PlaylistAddCheckRounded } from './PlaylistAddCheckRounded'; +export { default as PlaylistAddCheckSharp } from './PlaylistAddCheckSharp'; +export { default as PlaylistAddCheckTwoTone } from './PlaylistAddCheckTwoTone'; +export { default as PlaylistAddOutlined } from './PlaylistAddOutlined'; +export { default as PlaylistAddRounded } from './PlaylistAddRounded'; +export { default as PlaylistAddSharp } from './PlaylistAddSharp'; +export { default as PlaylistAddTwoTone } from './PlaylistAddTwoTone'; +export { default as PlaylistPlay } from './PlaylistPlay'; +export { default as PlaylistPlayOutlined } from './PlaylistPlayOutlined'; +export { default as PlaylistPlayRounded } from './PlaylistPlayRounded'; +export { default as PlaylistPlaySharp } from './PlaylistPlaySharp'; +export { default as PlaylistPlayTwoTone } from './PlaylistPlayTwoTone'; +export { default as Plumbing } from './Plumbing'; +export { default as PlumbingOutlined } from './PlumbingOutlined'; +export { default as PlumbingRounded } from './PlumbingRounded'; +export { default as PlumbingSharp } from './PlumbingSharp'; +export { default as PlumbingTwoTone } from './PlumbingTwoTone'; +export { default as PlusOne } from './PlusOne'; +export { default as PlusOneOutlined } from './PlusOneOutlined'; +export { default as PlusOneRounded } from './PlusOneRounded'; +export { default as PlusOneSharp } from './PlusOneSharp'; +export { default as PlusOneTwoTone } from './PlusOneTwoTone'; +export { default as Podcasts } from './Podcasts'; +export { default as PodcastsOutlined } from './PodcastsOutlined'; +export { default as PodcastsRounded } from './PodcastsRounded'; +export { default as PodcastsSharp } from './PodcastsSharp'; +export { default as PodcastsTwoTone } from './PodcastsTwoTone'; +export { default as PointOfSale } from './PointOfSale'; +export { default as PointOfSaleOutlined } from './PointOfSaleOutlined'; +export { default as PointOfSaleRounded } from './PointOfSaleRounded'; +export { default as PointOfSaleSharp } from './PointOfSaleSharp'; +export { default as PointOfSaleTwoTone } from './PointOfSaleTwoTone'; +export { default as Policy } from './Policy'; +export { default as PolicyOutlined } from './PolicyOutlined'; +export { default as PolicyRounded } from './PolicyRounded'; +export { default as PolicySharp } from './PolicySharp'; +export { default as PolicyTwoTone } from './PolicyTwoTone'; +export { default as Poll } from './Poll'; +export { default as PollOutlined } from './PollOutlined'; +export { default as PollRounded } from './PollRounded'; +export { default as PollSharp } from './PollSharp'; +export { default as PollTwoTone } from './PollTwoTone'; +export { default as Pool } from './Pool'; +export { default as PoolOutlined } from './PoolOutlined'; +export { default as PoolRounded } from './PoolRounded'; +export { default as PoolSharp } from './PoolSharp'; +export { default as PoolTwoTone } from './PoolTwoTone'; +export { default as PortableWifiOff } from './PortableWifiOff'; +export { default as PortableWifiOffOutlined } from './PortableWifiOffOutlined'; +export { default as PortableWifiOffRounded } from './PortableWifiOffRounded'; +export { default as PortableWifiOffSharp } from './PortableWifiOffSharp'; +export { default as PortableWifiOffTwoTone } from './PortableWifiOffTwoTone'; +export { default as Portrait } from './Portrait'; +export { default as PortraitOutlined } from './PortraitOutlined'; +export { default as PortraitRounded } from './PortraitRounded'; +export { default as PortraitSharp } from './PortraitSharp'; +export { default as PortraitTwoTone } from './PortraitTwoTone'; +export { default as PostAdd } from './PostAdd'; +export { default as PostAddOutlined } from './PostAddOutlined'; +export { default as PostAddRounded } from './PostAddRounded'; +export { default as PostAddSharp } from './PostAddSharp'; +export { default as PostAddTwoTone } from './PostAddTwoTone'; +export { default as Power } from './Power'; +export { default as PowerInput } from './PowerInput'; +export { default as PowerInputOutlined } from './PowerInputOutlined'; +export { default as PowerInputRounded } from './PowerInputRounded'; +export { default as PowerInputSharp } from './PowerInputSharp'; +export { default as PowerInputTwoTone } from './PowerInputTwoTone'; +export { default as PowerOff } from './PowerOff'; +export { default as PowerOffOutlined } from './PowerOffOutlined'; +export { default as PowerOffRounded } from './PowerOffRounded'; +export { default as PowerOffSharp } from './PowerOffSharp'; +export { default as PowerOffTwoTone } from './PowerOffTwoTone'; +export { default as PowerOutlined } from './PowerOutlined'; +export { default as PowerRounded } from './PowerRounded'; +export { default as PowerSettingsNew } from './PowerSettingsNew'; +export { default as PowerSettingsNewOutlined } from './PowerSettingsNewOutlined'; +export { default as PowerSettingsNewRounded } from './PowerSettingsNewRounded'; +export { default as PowerSettingsNewSharp } from './PowerSettingsNewSharp'; +export { default as PowerSettingsNewTwoTone } from './PowerSettingsNewTwoTone'; +export { default as PowerSharp } from './PowerSharp'; +export { default as PowerTwoTone } from './PowerTwoTone'; +export { default as PrecisionManufacturing } from './PrecisionManufacturing'; +export { default as PrecisionManufacturingOutlined } from './PrecisionManufacturingOutlined'; +export { default as PrecisionManufacturingRounded } from './PrecisionManufacturingRounded'; +export { default as PrecisionManufacturingSharp } from './PrecisionManufacturingSharp'; +export { default as PrecisionManufacturingTwoTone } from './PrecisionManufacturingTwoTone'; +export { default as PregnantWoman } from './PregnantWoman'; +export { default as PregnantWomanOutlined } from './PregnantWomanOutlined'; +export { default as PregnantWomanRounded } from './PregnantWomanRounded'; +export { default as PregnantWomanSharp } from './PregnantWomanSharp'; +export { default as PregnantWomanTwoTone } from './PregnantWomanTwoTone'; +export { default as PresentToAll } from './PresentToAll'; +export { default as PresentToAllOutlined } from './PresentToAllOutlined'; +export { default as PresentToAllRounded } from './PresentToAllRounded'; +export { default as PresentToAllSharp } from './PresentToAllSharp'; +export { default as PresentToAllTwoTone } from './PresentToAllTwoTone'; +export { default as Preview } from './Preview'; +export { default as PreviewOutlined } from './PreviewOutlined'; +export { default as PreviewRounded } from './PreviewRounded'; +export { default as PreviewSharp } from './PreviewSharp'; +export { default as PreviewTwoTone } from './PreviewTwoTone'; +export { default as PriceChange } from './PriceChange'; +export { default as PriceChangeOutlined } from './PriceChangeOutlined'; +export { default as PriceChangeRounded } from './PriceChangeRounded'; +export { default as PriceChangeSharp } from './PriceChangeSharp'; +export { default as PriceChangeTwoTone } from './PriceChangeTwoTone'; +export { default as PriceCheck } from './PriceCheck'; +export { default as PriceCheckOutlined } from './PriceCheckOutlined'; +export { default as PriceCheckRounded } from './PriceCheckRounded'; +export { default as PriceCheckSharp } from './PriceCheckSharp'; +export { default as PriceCheckTwoTone } from './PriceCheckTwoTone'; +export { default as Print } from './Print'; +export { default as PrintDisabled } from './PrintDisabled'; +export { default as PrintDisabledOutlined } from './PrintDisabledOutlined'; +export { default as PrintDisabledRounded } from './PrintDisabledRounded'; +export { default as PrintDisabledSharp } from './PrintDisabledSharp'; +export { default as PrintDisabledTwoTone } from './PrintDisabledTwoTone'; +export { default as PrintOutlined } from './PrintOutlined'; +export { default as PrintRounded } from './PrintRounded'; +export { default as PrintSharp } from './PrintSharp'; +export { default as PrintTwoTone } from './PrintTwoTone'; +export { default as PriorityHigh } from './PriorityHigh'; +export { default as PriorityHighOutlined } from './PriorityHighOutlined'; +export { default as PriorityHighRounded } from './PriorityHighRounded'; +export { default as PriorityHighSharp } from './PriorityHighSharp'; +export { default as PriorityHighTwoTone } from './PriorityHighTwoTone'; +export { default as PrivacyTip } from './PrivacyTip'; +export { default as PrivacyTipOutlined } from './PrivacyTipOutlined'; +export { default as PrivacyTipRounded } from './PrivacyTipRounded'; +export { default as PrivacyTipSharp } from './PrivacyTipSharp'; +export { default as PrivacyTipTwoTone } from './PrivacyTipTwoTone'; +export { default as ProductionQuantityLimits } from './ProductionQuantityLimits'; +export { default as ProductionQuantityLimitsOutlined } from './ProductionQuantityLimitsOutlined'; +export { default as ProductionQuantityLimitsRounded } from './ProductionQuantityLimitsRounded'; +export { default as ProductionQuantityLimitsSharp } from './ProductionQuantityLimitsSharp'; +export { default as ProductionQuantityLimitsTwoTone } from './ProductionQuantityLimitsTwoTone'; +export { default as Psychology } from './Psychology'; +export { default as PsychologyOutlined } from './PsychologyOutlined'; +export { default as PsychologyRounded } from './PsychologyRounded'; +export { default as PsychologySharp } from './PsychologySharp'; +export { default as PsychologyTwoTone } from './PsychologyTwoTone'; +export { default as Public } from './Public'; +export { default as PublicOff } from './PublicOff'; +export { default as PublicOffOutlined } from './PublicOffOutlined'; +export { default as PublicOffRounded } from './PublicOffRounded'; +export { default as PublicOffSharp } from './PublicOffSharp'; +export { default as PublicOffTwoTone } from './PublicOffTwoTone'; +export { default as PublicOutlined } from './PublicOutlined'; +export { default as PublicRounded } from './PublicRounded'; +export { default as PublicSharp } from './PublicSharp'; +export { default as PublicTwoTone } from './PublicTwoTone'; +export { default as Publish } from './Publish'; +export { default as PublishOutlined } from './PublishOutlined'; +export { default as PublishRounded } from './PublishRounded'; +export { default as PublishSharp } from './PublishSharp'; +export { default as PublishTwoTone } from './PublishTwoTone'; +export { default as PublishedWithChanges } from './PublishedWithChanges'; +export { default as PublishedWithChangesOutlined } from './PublishedWithChangesOutlined'; +export { default as PublishedWithChangesRounded } from './PublishedWithChangesRounded'; +export { default as PublishedWithChangesSharp } from './PublishedWithChangesSharp'; +export { default as PublishedWithChangesTwoTone } from './PublishedWithChangesTwoTone'; +export { default as PushPin } from './PushPin'; +export { default as PushPinOutlined } from './PushPinOutlined'; +export { default as PushPinRounded } from './PushPinRounded'; +export { default as PushPinSharp } from './PushPinSharp'; +export { default as PushPinTwoTone } from './PushPinTwoTone'; +export { default as QrCode } from './QrCode'; +export { default as QrCode2 } from './QrCode2'; +export { default as QrCode2Outlined } from './QrCode2Outlined'; +export { default as QrCode2Rounded } from './QrCode2Rounded'; +export { default as QrCode2Sharp } from './QrCode2Sharp'; +export { default as QrCode2TwoTone } from './QrCode2TwoTone'; +export { default as QrCodeOutlined } from './QrCodeOutlined'; +export { default as QrCodeRounded } from './QrCodeRounded'; +export { default as QrCodeScanner } from './QrCodeScanner'; +export { default as QrCodeScannerOutlined } from './QrCodeScannerOutlined'; +export { default as QrCodeScannerRounded } from './QrCodeScannerRounded'; +export { default as QrCodeScannerSharp } from './QrCodeScannerSharp'; +export { default as QrCodeScannerTwoTone } from './QrCodeScannerTwoTone'; +export { default as QrCodeSharp } from './QrCodeSharp'; +export { default as QrCodeTwoTone } from './QrCodeTwoTone'; +export { default as QueryBuilder } from './QueryBuilder'; +export { default as QueryBuilderOutlined } from './QueryBuilderOutlined'; +export { default as QueryBuilderRounded } from './QueryBuilderRounded'; +export { default as QueryBuilderSharp } from './QueryBuilderSharp'; +export { default as QueryBuilderTwoTone } from './QueryBuilderTwoTone'; +export { default as QueryStats } from './QueryStats'; +export { default as QueryStatsOutlined } from './QueryStatsOutlined'; +export { default as QueryStatsRounded } from './QueryStatsRounded'; +export { default as QueryStatsSharp } from './QueryStatsSharp'; +export { default as QueryStatsTwoTone } from './QueryStatsTwoTone'; +export { default as QuestionAnswer } from './QuestionAnswer'; +export { default as QuestionAnswerOutlined } from './QuestionAnswerOutlined'; +export { default as QuestionAnswerRounded } from './QuestionAnswerRounded'; +export { default as QuestionAnswerSharp } from './QuestionAnswerSharp'; +export { default as QuestionAnswerTwoTone } from './QuestionAnswerTwoTone'; +export { default as Queue } from './Queue'; +export { default as QueueMusic } from './QueueMusic'; +export { default as QueueMusicOutlined } from './QueueMusicOutlined'; +export { default as QueueMusicRounded } from './QueueMusicRounded'; +export { default as QueueMusicSharp } from './QueueMusicSharp'; +export { default as QueueMusicTwoTone } from './QueueMusicTwoTone'; +export { default as QueueOutlined } from './QueueOutlined'; +export { default as QueuePlayNext } from './QueuePlayNext'; +export { default as QueuePlayNextOutlined } from './QueuePlayNextOutlined'; +export { default as QueuePlayNextRounded } from './QueuePlayNextRounded'; +export { default as QueuePlayNextSharp } from './QueuePlayNextSharp'; +export { default as QueuePlayNextTwoTone } from './QueuePlayNextTwoTone'; +export { default as QueueRounded } from './QueueRounded'; +export { default as QueueSharp } from './QueueSharp'; +export { default as QueueTwoTone } from './QueueTwoTone'; +export { default as Quickreply } from './Quickreply'; +export { default as QuickreplyOutlined } from './QuickreplyOutlined'; +export { default as QuickreplyRounded } from './QuickreplyRounded'; +export { default as QuickreplySharp } from './QuickreplySharp'; +export { default as QuickreplyTwoTone } from './QuickreplyTwoTone'; +export { default as Quiz } from './Quiz'; +export { default as QuizOutlined } from './QuizOutlined'; +export { default as QuizRounded } from './QuizRounded'; +export { default as QuizSharp } from './QuizSharp'; +export { default as QuizTwoTone } from './QuizTwoTone'; +export { default as RMobiledata } from './RMobiledata'; +export { default as RMobiledataOutlined } from './RMobiledataOutlined'; +export { default as RMobiledataRounded } from './RMobiledataRounded'; +export { default as RMobiledataSharp } from './RMobiledataSharp'; +export { default as RMobiledataTwoTone } from './RMobiledataTwoTone'; +export { default as Radar } from './Radar'; +export { default as RadarOutlined } from './RadarOutlined'; +export { default as RadarRounded } from './RadarRounded'; +export { default as RadarSharp } from './RadarSharp'; +export { default as RadarTwoTone } from './RadarTwoTone'; +export { default as Radio } from './Radio'; +export { default as RadioButtonChecked } from './RadioButtonChecked'; +export { default as RadioButtonCheckedOutlined } from './RadioButtonCheckedOutlined'; +export { default as RadioButtonCheckedRounded } from './RadioButtonCheckedRounded'; +export { default as RadioButtonCheckedSharp } from './RadioButtonCheckedSharp'; +export { default as RadioButtonCheckedTwoTone } from './RadioButtonCheckedTwoTone'; +export { default as RadioButtonUnchecked } from './RadioButtonUnchecked'; +export { default as RadioButtonUncheckedOutlined } from './RadioButtonUncheckedOutlined'; +export { default as RadioButtonUncheckedRounded } from './RadioButtonUncheckedRounded'; +export { default as RadioButtonUncheckedSharp } from './RadioButtonUncheckedSharp'; +export { default as RadioButtonUncheckedTwoTone } from './RadioButtonUncheckedTwoTone'; +export { default as RadioOutlined } from './RadioOutlined'; +export { default as RadioRounded } from './RadioRounded'; +export { default as RadioSharp } from './RadioSharp'; +export { default as RadioTwoTone } from './RadioTwoTone'; +export { default as RailwayAlert } from './RailwayAlert'; +export { default as RailwayAlertOutlined } from './RailwayAlertOutlined'; +export { default as RailwayAlertRounded } from './RailwayAlertRounded'; +export { default as RailwayAlertSharp } from './RailwayAlertSharp'; +export { default as RailwayAlertTwoTone } from './RailwayAlertTwoTone'; +export { default as RamenDining } from './RamenDining'; +export { default as RamenDiningOutlined } from './RamenDiningOutlined'; +export { default as RamenDiningRounded } from './RamenDiningRounded'; +export { default as RamenDiningSharp } from './RamenDiningSharp'; +export { default as RamenDiningTwoTone } from './RamenDiningTwoTone'; +export { default as RateReview } from './RateReview'; +export { default as RateReviewOutlined } from './RateReviewOutlined'; +export { default as RateReviewRounded } from './RateReviewRounded'; +export { default as RateReviewSharp } from './RateReviewSharp'; +export { default as RateReviewTwoTone } from './RateReviewTwoTone'; +export { default as RawOff } from './RawOff'; +export { default as RawOffOutlined } from './RawOffOutlined'; +export { default as RawOffRounded } from './RawOffRounded'; +export { default as RawOffSharp } from './RawOffSharp'; +export { default as RawOffTwoTone } from './RawOffTwoTone'; +export { default as RawOn } from './RawOn'; +export { default as RawOnOutlined } from './RawOnOutlined'; +export { default as RawOnRounded } from './RawOnRounded'; +export { default as RawOnSharp } from './RawOnSharp'; +export { default as RawOnTwoTone } from './RawOnTwoTone'; +export { default as ReadMore } from './ReadMore'; +export { default as ReadMoreOutlined } from './ReadMoreOutlined'; +export { default as ReadMoreRounded } from './ReadMoreRounded'; +export { default as ReadMoreSharp } from './ReadMoreSharp'; +export { default as ReadMoreTwoTone } from './ReadMoreTwoTone'; +export { default as Receipt } from './Receipt'; +export { default as ReceiptLong } from './ReceiptLong'; +export { default as ReceiptLongOutlined } from './ReceiptLongOutlined'; +export { default as ReceiptLongRounded } from './ReceiptLongRounded'; +export { default as ReceiptLongSharp } from './ReceiptLongSharp'; +export { default as ReceiptLongTwoTone } from './ReceiptLongTwoTone'; +export { default as ReceiptOutlined } from './ReceiptOutlined'; +export { default as ReceiptRounded } from './ReceiptRounded'; +export { default as ReceiptSharp } from './ReceiptSharp'; +export { default as ReceiptTwoTone } from './ReceiptTwoTone'; +export { default as RecentActors } from './RecentActors'; +export { default as RecentActorsOutlined } from './RecentActorsOutlined'; +export { default as RecentActorsRounded } from './RecentActorsRounded'; +export { default as RecentActorsSharp } from './RecentActorsSharp'; +export { default as RecentActorsTwoTone } from './RecentActorsTwoTone'; +export { default as Recommend } from './Recommend'; +export { default as RecommendOutlined } from './RecommendOutlined'; +export { default as RecommendRounded } from './RecommendRounded'; +export { default as RecommendSharp } from './RecommendSharp'; +export { default as RecommendTwoTone } from './RecommendTwoTone'; +export { default as RecordVoiceOver } from './RecordVoiceOver'; +export { default as RecordVoiceOverOutlined } from './RecordVoiceOverOutlined'; +export { default as RecordVoiceOverRounded } from './RecordVoiceOverRounded'; +export { default as RecordVoiceOverSharp } from './RecordVoiceOverSharp'; +export { default as RecordVoiceOverTwoTone } from './RecordVoiceOverTwoTone'; +export { default as Reddit } from './Reddit'; +export { default as Redeem } from './Redeem'; +export { default as RedeemOutlined } from './RedeemOutlined'; +export { default as RedeemRounded } from './RedeemRounded'; +export { default as RedeemSharp } from './RedeemSharp'; +export { default as RedeemTwoTone } from './RedeemTwoTone'; +export { default as Redo } from './Redo'; +export { default as RedoOutlined } from './RedoOutlined'; +export { default as RedoRounded } from './RedoRounded'; +export { default as RedoSharp } from './RedoSharp'; +export { default as RedoTwoTone } from './RedoTwoTone'; +export { default as ReduceCapacity } from './ReduceCapacity'; +export { default as ReduceCapacityOutlined } from './ReduceCapacityOutlined'; +export { default as ReduceCapacityRounded } from './ReduceCapacityRounded'; +export { default as ReduceCapacitySharp } from './ReduceCapacitySharp'; +export { default as ReduceCapacityTwoTone } from './ReduceCapacityTwoTone'; +export { default as Refresh } from './Refresh'; +export { default as RefreshOutlined } from './RefreshOutlined'; +export { default as RefreshRounded } from './RefreshRounded'; +export { default as RefreshSharp } from './RefreshSharp'; +export { default as RefreshTwoTone } from './RefreshTwoTone'; +export { default as RememberMe } from './RememberMe'; +export { default as RememberMeOutlined } from './RememberMeOutlined'; +export { default as RememberMeRounded } from './RememberMeRounded'; +export { default as RememberMeSharp } from './RememberMeSharp'; +export { default as RememberMeTwoTone } from './RememberMeTwoTone'; +export { default as Remove } from './Remove'; +export { default as RemoveCircle } from './RemoveCircle'; +export { default as RemoveCircleOutline } from './RemoveCircleOutline'; +export { default as RemoveCircleOutlineOutlined } from './RemoveCircleOutlineOutlined'; +export { default as RemoveCircleOutlineRounded } from './RemoveCircleOutlineRounded'; +export { default as RemoveCircleOutlineSharp } from './RemoveCircleOutlineSharp'; +export { default as RemoveCircleOutlineTwoTone } from './RemoveCircleOutlineTwoTone'; +export { default as RemoveCircleOutlined } from './RemoveCircleOutlined'; +export { default as RemoveCircleRounded } from './RemoveCircleRounded'; +export { default as RemoveCircleSharp } from './RemoveCircleSharp'; +export { default as RemoveCircleTwoTone } from './RemoveCircleTwoTone'; +export { default as RemoveDone } from './RemoveDone'; +export { default as RemoveDoneOutlined } from './RemoveDoneOutlined'; +export { default as RemoveDoneRounded } from './RemoveDoneRounded'; +export { default as RemoveDoneSharp } from './RemoveDoneSharp'; +export { default as RemoveDoneTwoTone } from './RemoveDoneTwoTone'; +export { default as RemoveFromQueue } from './RemoveFromQueue'; +export { default as RemoveFromQueueOutlined } from './RemoveFromQueueOutlined'; +export { default as RemoveFromQueueRounded } from './RemoveFromQueueRounded'; +export { default as RemoveFromQueueSharp } from './RemoveFromQueueSharp'; +export { default as RemoveFromQueueTwoTone } from './RemoveFromQueueTwoTone'; +export { default as RemoveModerator } from './RemoveModerator'; +export { default as RemoveModeratorOutlined } from './RemoveModeratorOutlined'; +export { default as RemoveModeratorRounded } from './RemoveModeratorRounded'; +export { default as RemoveModeratorSharp } from './RemoveModeratorSharp'; +export { default as RemoveModeratorTwoTone } from './RemoveModeratorTwoTone'; +export { default as RemoveOutlined } from './RemoveOutlined'; +export { default as RemoveRedEye } from './RemoveRedEye'; +export { default as RemoveRedEyeOutlined } from './RemoveRedEyeOutlined'; +export { default as RemoveRedEyeRounded } from './RemoveRedEyeRounded'; +export { default as RemoveRedEyeSharp } from './RemoveRedEyeSharp'; +export { default as RemoveRedEyeTwoTone } from './RemoveRedEyeTwoTone'; +export { default as RemoveRounded } from './RemoveRounded'; +export { default as RemoveSharp } from './RemoveSharp'; +export { default as RemoveShoppingCart } from './RemoveShoppingCart'; +export { default as RemoveShoppingCartOutlined } from './RemoveShoppingCartOutlined'; +export { default as RemoveShoppingCartRounded } from './RemoveShoppingCartRounded'; +export { default as RemoveShoppingCartSharp } from './RemoveShoppingCartSharp'; +export { default as RemoveShoppingCartTwoTone } from './RemoveShoppingCartTwoTone'; +export { default as RemoveTwoTone } from './RemoveTwoTone'; +export { default as Reorder } from './Reorder'; +export { default as ReorderOutlined } from './ReorderOutlined'; +export { default as ReorderRounded } from './ReorderRounded'; +export { default as ReorderSharp } from './ReorderSharp'; +export { default as ReorderTwoTone } from './ReorderTwoTone'; +export { default as Repeat } from './Repeat'; +export { default as RepeatOn } from './RepeatOn'; +export { default as RepeatOnOutlined } from './RepeatOnOutlined'; +export { default as RepeatOnRounded } from './RepeatOnRounded'; +export { default as RepeatOnSharp } from './RepeatOnSharp'; +export { default as RepeatOnTwoTone } from './RepeatOnTwoTone'; +export { default as RepeatOne } from './RepeatOne'; +export { default as RepeatOneOn } from './RepeatOneOn'; +export { default as RepeatOneOnOutlined } from './RepeatOneOnOutlined'; +export { default as RepeatOneOnRounded } from './RepeatOneOnRounded'; +export { default as RepeatOneOnSharp } from './RepeatOneOnSharp'; +export { default as RepeatOneOnTwoTone } from './RepeatOneOnTwoTone'; +export { default as RepeatOneOutlined } from './RepeatOneOutlined'; +export { default as RepeatOneRounded } from './RepeatOneRounded'; +export { default as RepeatOneSharp } from './RepeatOneSharp'; +export { default as RepeatOneTwoTone } from './RepeatOneTwoTone'; +export { default as RepeatOutlined } from './RepeatOutlined'; +export { default as RepeatRounded } from './RepeatRounded'; +export { default as RepeatSharp } from './RepeatSharp'; +export { default as RepeatTwoTone } from './RepeatTwoTone'; +export { default as Replay } from './Replay'; +export { default as Replay10 } from './Replay10'; +export { default as Replay10Outlined } from './Replay10Outlined'; +export { default as Replay10Rounded } from './Replay10Rounded'; +export { default as Replay10Sharp } from './Replay10Sharp'; +export { default as Replay10TwoTone } from './Replay10TwoTone'; +export { default as Replay30 } from './Replay30'; +export { default as Replay30Outlined } from './Replay30Outlined'; +export { default as Replay30Rounded } from './Replay30Rounded'; +export { default as Replay30Sharp } from './Replay30Sharp'; +export { default as Replay30TwoTone } from './Replay30TwoTone'; +export { default as Replay5 } from './Replay5'; +export { default as Replay5Outlined } from './Replay5Outlined'; +export { default as Replay5Rounded } from './Replay5Rounded'; +export { default as Replay5Sharp } from './Replay5Sharp'; +export { default as Replay5TwoTone } from './Replay5TwoTone'; +export { default as ReplayCircleFilled } from './ReplayCircleFilled'; +export { default as ReplayCircleFilledOutlined } from './ReplayCircleFilledOutlined'; +export { default as ReplayCircleFilledRounded } from './ReplayCircleFilledRounded'; +export { default as ReplayCircleFilledSharp } from './ReplayCircleFilledSharp'; +export { default as ReplayCircleFilledTwoTone } from './ReplayCircleFilledTwoTone'; +export { default as ReplayOutlined } from './ReplayOutlined'; +export { default as ReplayRounded } from './ReplayRounded'; +export { default as ReplaySharp } from './ReplaySharp'; +export { default as ReplayTwoTone } from './ReplayTwoTone'; +export { default as Reply } from './Reply'; +export { default as ReplyAll } from './ReplyAll'; +export { default as ReplyAllOutlined } from './ReplyAllOutlined'; +export { default as ReplyAllRounded } from './ReplyAllRounded'; +export { default as ReplyAllSharp } from './ReplyAllSharp'; +export { default as ReplyAllTwoTone } from './ReplyAllTwoTone'; +export { default as ReplyOutlined } from './ReplyOutlined'; +export { default as ReplyRounded } from './ReplyRounded'; +export { default as ReplySharp } from './ReplySharp'; +export { default as ReplyTwoTone } from './ReplyTwoTone'; +export { default as Report } from './Report'; +export { default as ReportGmailerrorred } from './ReportGmailerrorred'; +export { default as ReportGmailerrorredOutlined } from './ReportGmailerrorredOutlined'; +export { default as ReportGmailerrorredRounded } from './ReportGmailerrorredRounded'; +export { default as ReportGmailerrorredSharp } from './ReportGmailerrorredSharp'; +export { default as ReportGmailerrorredTwoTone } from './ReportGmailerrorredTwoTone'; +export { default as ReportOff } from './ReportOff'; +export { default as ReportOffOutlined } from './ReportOffOutlined'; +export { default as ReportOffRounded } from './ReportOffRounded'; +export { default as ReportOffSharp } from './ReportOffSharp'; +export { default as ReportOffTwoTone } from './ReportOffTwoTone'; +export { default as ReportOutlined } from './ReportOutlined'; +export { default as ReportProblem } from './ReportProblem'; +export { default as ReportProblemOutlined } from './ReportProblemOutlined'; +export { default as ReportProblemRounded } from './ReportProblemRounded'; +export { default as ReportProblemSharp } from './ReportProblemSharp'; +export { default as ReportProblemTwoTone } from './ReportProblemTwoTone'; +export { default as ReportRounded } from './ReportRounded'; +export { default as ReportSharp } from './ReportSharp'; +export { default as ReportTwoTone } from './ReportTwoTone'; +export { default as RequestPage } from './RequestPage'; +export { default as RequestPageOutlined } from './RequestPageOutlined'; +export { default as RequestPageRounded } from './RequestPageRounded'; +export { default as RequestPageSharp } from './RequestPageSharp'; +export { default as RequestPageTwoTone } from './RequestPageTwoTone'; +export { default as RequestQuote } from './RequestQuote'; +export { default as RequestQuoteOutlined } from './RequestQuoteOutlined'; +export { default as RequestQuoteRounded } from './RequestQuoteRounded'; +export { default as RequestQuoteSharp } from './RequestQuoteSharp'; +export { default as RequestQuoteTwoTone } from './RequestQuoteTwoTone'; +export { default as ResetTv } from './ResetTv'; +export { default as ResetTvOutlined } from './ResetTvOutlined'; +export { default as ResetTvRounded } from './ResetTvRounded'; +export { default as ResetTvSharp } from './ResetTvSharp'; +export { default as ResetTvTwoTone } from './ResetTvTwoTone'; +export { default as RestartAlt } from './RestartAlt'; +export { default as RestartAltOutlined } from './RestartAltOutlined'; +export { default as RestartAltRounded } from './RestartAltRounded'; +export { default as RestartAltSharp } from './RestartAltSharp'; +export { default as RestartAltTwoTone } from './RestartAltTwoTone'; +export { default as Restaurant } from './Restaurant'; +export { default as RestaurantMenu } from './RestaurantMenu'; +export { default as RestaurantMenuOutlined } from './RestaurantMenuOutlined'; +export { default as RestaurantMenuRounded } from './RestaurantMenuRounded'; +export { default as RestaurantMenuSharp } from './RestaurantMenuSharp'; +export { default as RestaurantMenuTwoTone } from './RestaurantMenuTwoTone'; +export { default as RestaurantOutlined } from './RestaurantOutlined'; +export { default as RestaurantRounded } from './RestaurantRounded'; +export { default as RestaurantSharp } from './RestaurantSharp'; +export { default as RestaurantTwoTone } from './RestaurantTwoTone'; +export { default as Restore } from './Restore'; +export { default as RestoreFromTrash } from './RestoreFromTrash'; +export { default as RestoreFromTrashOutlined } from './RestoreFromTrashOutlined'; +export { default as RestoreFromTrashRounded } from './RestoreFromTrashRounded'; +export { default as RestoreFromTrashSharp } from './RestoreFromTrashSharp'; +export { default as RestoreFromTrashTwoTone } from './RestoreFromTrashTwoTone'; +export { default as RestoreOutlined } from './RestoreOutlined'; +export { default as RestorePage } from './RestorePage'; +export { default as RestorePageOutlined } from './RestorePageOutlined'; +export { default as RestorePageRounded } from './RestorePageRounded'; +export { default as RestorePageSharp } from './RestorePageSharp'; +export { default as RestorePageTwoTone } from './RestorePageTwoTone'; +export { default as RestoreRounded } from './RestoreRounded'; +export { default as RestoreSharp } from './RestoreSharp'; +export { default as RestoreTwoTone } from './RestoreTwoTone'; +export { default as Reviews } from './Reviews'; +export { default as ReviewsOutlined } from './ReviewsOutlined'; +export { default as ReviewsRounded } from './ReviewsRounded'; +export { default as ReviewsSharp } from './ReviewsSharp'; +export { default as ReviewsTwoTone } from './ReviewsTwoTone'; +export { default as RiceBowl } from './RiceBowl'; +export { default as RiceBowlOutlined } from './RiceBowlOutlined'; +export { default as RiceBowlRounded } from './RiceBowlRounded'; +export { default as RiceBowlSharp } from './RiceBowlSharp'; +export { default as RiceBowlTwoTone } from './RiceBowlTwoTone'; +export { default as RingVolume } from './RingVolume'; +export { default as RingVolumeOutlined } from './RingVolumeOutlined'; +export { default as RingVolumeRounded } from './RingVolumeRounded'; +export { default as RingVolumeSharp } from './RingVolumeSharp'; +export { default as RingVolumeTwoTone } from './RingVolumeTwoTone'; +export { default as Roofing } from './Roofing'; +export { default as RoofingOutlined } from './RoofingOutlined'; +export { default as RoofingRounded } from './RoofingRounded'; +export { default as RoofingSharp } from './RoofingSharp'; +export { default as RoofingTwoTone } from './RoofingTwoTone'; +export { default as Room } from './Room'; +export { default as RoomOutlined } from './RoomOutlined'; +export { default as RoomPreferences } from './RoomPreferences'; +export { default as RoomPreferencesOutlined } from './RoomPreferencesOutlined'; +export { default as RoomPreferencesRounded } from './RoomPreferencesRounded'; +export { default as RoomPreferencesSharp } from './RoomPreferencesSharp'; +export { default as RoomPreferencesTwoTone } from './RoomPreferencesTwoTone'; +export { default as RoomRounded } from './RoomRounded'; +export { default as RoomService } from './RoomService'; +export { default as RoomServiceOutlined } from './RoomServiceOutlined'; +export { default as RoomServiceRounded } from './RoomServiceRounded'; +export { default as RoomServiceSharp } from './RoomServiceSharp'; +export { default as RoomServiceTwoTone } from './RoomServiceTwoTone'; +export { default as RoomSharp } from './RoomSharp'; +export { default as RoomTwoTone } from './RoomTwoTone'; +export { default as Rotate90DegreesCcw } from './Rotate90DegreesCcw'; +export { default as Rotate90DegreesCcwOutlined } from './Rotate90DegreesCcwOutlined'; +export { default as Rotate90DegreesCcwRounded } from './Rotate90DegreesCcwRounded'; +export { default as Rotate90DegreesCcwSharp } from './Rotate90DegreesCcwSharp'; +export { default as Rotate90DegreesCcwTwoTone } from './Rotate90DegreesCcwTwoTone'; +export { default as RotateLeft } from './RotateLeft'; +export { default as RotateLeftOutlined } from './RotateLeftOutlined'; +export { default as RotateLeftRounded } from './RotateLeftRounded'; +export { default as RotateLeftSharp } from './RotateLeftSharp'; +export { default as RotateLeftTwoTone } from './RotateLeftTwoTone'; +export { default as RotateRight } from './RotateRight'; +export { default as RotateRightOutlined } from './RotateRightOutlined'; +export { default as RotateRightRounded } from './RotateRightRounded'; +export { default as RotateRightSharp } from './RotateRightSharp'; +export { default as RotateRightTwoTone } from './RotateRightTwoTone'; +export { default as RoundedCorner } from './RoundedCorner'; +export { default as RoundedCornerOutlined } from './RoundedCornerOutlined'; +export { default as RoundedCornerRounded } from './RoundedCornerRounded'; +export { default as RoundedCornerSharp } from './RoundedCornerSharp'; +export { default as RoundedCornerTwoTone } from './RoundedCornerTwoTone'; +export { default as Router } from './Router'; +export { default as RouterOutlined } from './RouterOutlined'; +export { default as RouterRounded } from './RouterRounded'; +export { default as RouterSharp } from './RouterSharp'; +export { default as RouterTwoTone } from './RouterTwoTone'; +export { default as Rowing } from './Rowing'; +export { default as RowingOutlined } from './RowingOutlined'; +export { default as RowingRounded } from './RowingRounded'; +export { default as RowingSharp } from './RowingSharp'; +export { default as RowingTwoTone } from './RowingTwoTone'; +export { default as RssFeed } from './RssFeed'; +export { default as RssFeedOutlined } from './RssFeedOutlined'; +export { default as RssFeedRounded } from './RssFeedRounded'; +export { default as RssFeedSharp } from './RssFeedSharp'; +export { default as RssFeedTwoTone } from './RssFeedTwoTone'; +export { default as Rsvp } from './Rsvp'; +export { default as RsvpOutlined } from './RsvpOutlined'; +export { default as RsvpRounded } from './RsvpRounded'; +export { default as RsvpSharp } from './RsvpSharp'; +export { default as RsvpTwoTone } from './RsvpTwoTone'; +export { default as Rtt } from './Rtt'; +export { default as RttOutlined } from './RttOutlined'; +export { default as RttRounded } from './RttRounded'; +export { default as RttSharp } from './RttSharp'; +export { default as RttTwoTone } from './RttTwoTone'; +export { default as Rule } from './Rule'; +export { default as RuleFolder } from './RuleFolder'; +export { default as RuleFolderOutlined } from './RuleFolderOutlined'; +export { default as RuleFolderRounded } from './RuleFolderRounded'; +export { default as RuleFolderSharp } from './RuleFolderSharp'; +export { default as RuleFolderTwoTone } from './RuleFolderTwoTone'; +export { default as RuleOutlined } from './RuleOutlined'; +export { default as RuleRounded } from './RuleRounded'; +export { default as RuleSharp } from './RuleSharp'; +export { default as RuleTwoTone } from './RuleTwoTone'; +export { default as RunCircle } from './RunCircle'; +export { default as RunCircleOutlined } from './RunCircleOutlined'; +export { default as RunCircleRounded } from './RunCircleRounded'; +export { default as RunCircleSharp } from './RunCircleSharp'; +export { default as RunCircleTwoTone } from './RunCircleTwoTone'; +export { default as RunningWithErrors } from './RunningWithErrors'; +export { default as RunningWithErrorsOutlined } from './RunningWithErrorsOutlined'; +export { default as RunningWithErrorsRounded } from './RunningWithErrorsRounded'; +export { default as RunningWithErrorsSharp } from './RunningWithErrorsSharp'; +export { default as RunningWithErrorsTwoTone } from './RunningWithErrorsTwoTone'; +export { default as RvHookup } from './RvHookup'; +export { default as RvHookupOutlined } from './RvHookupOutlined'; +export { default as RvHookupRounded } from './RvHookupRounded'; +export { default as RvHookupSharp } from './RvHookupSharp'; +export { default as RvHookupTwoTone } from './RvHookupTwoTone'; +export { default as SafetyDivider } from './SafetyDivider'; +export { default as SafetyDividerOutlined } from './SafetyDividerOutlined'; +export { default as SafetyDividerRounded } from './SafetyDividerRounded'; +export { default as SafetyDividerSharp } from './SafetyDividerSharp'; +export { default as SafetyDividerTwoTone } from './SafetyDividerTwoTone'; +export { default as Sailing } from './Sailing'; +export { default as SailingOutlined } from './SailingOutlined'; +export { default as SailingRounded } from './SailingRounded'; +export { default as SailingSharp } from './SailingSharp'; +export { default as SailingTwoTone } from './SailingTwoTone'; +export { default as Sanitizer } from './Sanitizer'; +export { default as SanitizerOutlined } from './SanitizerOutlined'; +export { default as SanitizerRounded } from './SanitizerRounded'; +export { default as SanitizerSharp } from './SanitizerSharp'; +export { default as SanitizerTwoTone } from './SanitizerTwoTone'; +export { default as Satellite } from './Satellite'; +export { default as SatelliteOutlined } from './SatelliteOutlined'; +export { default as SatelliteRounded } from './SatelliteRounded'; +export { default as SatelliteSharp } from './SatelliteSharp'; +export { default as SatelliteTwoTone } from './SatelliteTwoTone'; +export { default as Save } from './Save'; +export { default as SaveAlt } from './SaveAlt'; +export { default as SaveAltOutlined } from './SaveAltOutlined'; +export { default as SaveAltRounded } from './SaveAltRounded'; +export { default as SaveAltSharp } from './SaveAltSharp'; +export { default as SaveAltTwoTone } from './SaveAltTwoTone'; +export { default as SaveOutlined } from './SaveOutlined'; +export { default as SaveRounded } from './SaveRounded'; +export { default as SaveSharp } from './SaveSharp'; +export { default as SaveTwoTone } from './SaveTwoTone'; +export { default as SavedSearch } from './SavedSearch'; +export { default as SavedSearchOutlined } from './SavedSearchOutlined'; +export { default as SavedSearchRounded } from './SavedSearchRounded'; +export { default as SavedSearchSharp } from './SavedSearchSharp'; +export { default as SavedSearchTwoTone } from './SavedSearchTwoTone'; +export { default as Savings } from './Savings'; +export { default as SavingsOutlined } from './SavingsOutlined'; +export { default as SavingsRounded } from './SavingsRounded'; +export { default as SavingsSharp } from './SavingsSharp'; +export { default as SavingsTwoTone } from './SavingsTwoTone'; +export { default as Scanner } from './Scanner'; +export { default as ScannerOutlined } from './ScannerOutlined'; +export { default as ScannerRounded } from './ScannerRounded'; +export { default as ScannerSharp } from './ScannerSharp'; +export { default as ScannerTwoTone } from './ScannerTwoTone'; +export { default as ScatterPlot } from './ScatterPlot'; +export { default as ScatterPlotOutlined } from './ScatterPlotOutlined'; +export { default as ScatterPlotRounded } from './ScatterPlotRounded'; +export { default as ScatterPlotSharp } from './ScatterPlotSharp'; +export { default as ScatterPlotTwoTone } from './ScatterPlotTwoTone'; +export { default as Schedule } from './Schedule'; +export { default as ScheduleOutlined } from './ScheduleOutlined'; +export { default as ScheduleRounded } from './ScheduleRounded'; +export { default as ScheduleSend } from './ScheduleSend'; +export { default as ScheduleSendOutlined } from './ScheduleSendOutlined'; +export { default as ScheduleSendRounded } from './ScheduleSendRounded'; +export { default as ScheduleSendSharp } from './ScheduleSendSharp'; +export { default as ScheduleSendTwoTone } from './ScheduleSendTwoTone'; +export { default as ScheduleSharp } from './ScheduleSharp'; +export { default as ScheduleTwoTone } from './ScheduleTwoTone'; +export { default as Schema } from './Schema'; +export { default as SchemaOutlined } from './SchemaOutlined'; +export { default as SchemaRounded } from './SchemaRounded'; +export { default as SchemaSharp } from './SchemaSharp'; +export { default as SchemaTwoTone } from './SchemaTwoTone'; +export { default as School } from './School'; +export { default as SchoolOutlined } from './SchoolOutlined'; +export { default as SchoolRounded } from './SchoolRounded'; +export { default as SchoolSharp } from './SchoolSharp'; +export { default as SchoolTwoTone } from './SchoolTwoTone'; +export { default as Science } from './Science'; +export { default as ScienceOutlined } from './ScienceOutlined'; +export { default as ScienceRounded } from './ScienceRounded'; +export { default as ScienceSharp } from './ScienceSharp'; +export { default as ScienceTwoTone } from './ScienceTwoTone'; +export { default as Score } from './Score'; +export { default as ScoreOutlined } from './ScoreOutlined'; +export { default as ScoreRounded } from './ScoreRounded'; +export { default as ScoreSharp } from './ScoreSharp'; +export { default as ScoreTwoTone } from './ScoreTwoTone'; +export { default as ScreenLockLandscape } from './ScreenLockLandscape'; +export { default as ScreenLockLandscapeOutlined } from './ScreenLockLandscapeOutlined'; +export { default as ScreenLockLandscapeRounded } from './ScreenLockLandscapeRounded'; +export { default as ScreenLockLandscapeSharp } from './ScreenLockLandscapeSharp'; +export { default as ScreenLockLandscapeTwoTone } from './ScreenLockLandscapeTwoTone'; +export { default as ScreenLockPortrait } from './ScreenLockPortrait'; +export { default as ScreenLockPortraitOutlined } from './ScreenLockPortraitOutlined'; +export { default as ScreenLockPortraitRounded } from './ScreenLockPortraitRounded'; +export { default as ScreenLockPortraitSharp } from './ScreenLockPortraitSharp'; +export { default as ScreenLockPortraitTwoTone } from './ScreenLockPortraitTwoTone'; +export { default as ScreenLockRotation } from './ScreenLockRotation'; +export { default as ScreenLockRotationOutlined } from './ScreenLockRotationOutlined'; +export { default as ScreenLockRotationRounded } from './ScreenLockRotationRounded'; +export { default as ScreenLockRotationSharp } from './ScreenLockRotationSharp'; +export { default as ScreenLockRotationTwoTone } from './ScreenLockRotationTwoTone'; +export { default as ScreenRotation } from './ScreenRotation'; +export { default as ScreenRotationOutlined } from './ScreenRotationOutlined'; +export { default as ScreenRotationRounded } from './ScreenRotationRounded'; +export { default as ScreenRotationSharp } from './ScreenRotationSharp'; +export { default as ScreenRotationTwoTone } from './ScreenRotationTwoTone'; +export { default as ScreenSearchDesktop } from './ScreenSearchDesktop'; +export { default as ScreenSearchDesktopOutlined } from './ScreenSearchDesktopOutlined'; +export { default as ScreenSearchDesktopRounded } from './ScreenSearchDesktopRounded'; +export { default as ScreenSearchDesktopSharp } from './ScreenSearchDesktopSharp'; +export { default as ScreenSearchDesktopTwoTone } from './ScreenSearchDesktopTwoTone'; +export { default as ScreenShare } from './ScreenShare'; +export { default as ScreenShareOutlined } from './ScreenShareOutlined'; +export { default as ScreenShareRounded } from './ScreenShareRounded'; +export { default as ScreenShareSharp } from './ScreenShareSharp'; +export { default as ScreenShareTwoTone } from './ScreenShareTwoTone'; +export { default as Screenshot } from './Screenshot'; +export { default as ScreenshotOutlined } from './ScreenshotOutlined'; +export { default as ScreenshotRounded } from './ScreenshotRounded'; +export { default as ScreenshotSharp } from './ScreenshotSharp'; +export { default as ScreenshotTwoTone } from './ScreenshotTwoTone'; +export { default as Sd } from './Sd'; +export { default as SdCard } from './SdCard'; +export { default as SdCardAlert } from './SdCardAlert'; +export { default as SdCardAlertOutlined } from './SdCardAlertOutlined'; +export { default as SdCardAlertRounded } from './SdCardAlertRounded'; +export { default as SdCardAlertSharp } from './SdCardAlertSharp'; +export { default as SdCardAlertTwoTone } from './SdCardAlertTwoTone'; +export { default as SdCardOutlined } from './SdCardOutlined'; +export { default as SdCardRounded } from './SdCardRounded'; +export { default as SdCardSharp } from './SdCardSharp'; +export { default as SdCardTwoTone } from './SdCardTwoTone'; +export { default as SdOutlined } from './SdOutlined'; +export { default as SdRounded } from './SdRounded'; +export { default as SdSharp } from './SdSharp'; +export { default as SdStorage } from './SdStorage'; +export { default as SdStorageOutlined } from './SdStorageOutlined'; +export { default as SdStorageRounded } from './SdStorageRounded'; +export { default as SdStorageSharp } from './SdStorageSharp'; +export { default as SdStorageTwoTone } from './SdStorageTwoTone'; +export { default as SdTwoTone } from './SdTwoTone'; +export { default as Search } from './Search'; +export { default as SearchOff } from './SearchOff'; +export { default as SearchOffOutlined } from './SearchOffOutlined'; +export { default as SearchOffRounded } from './SearchOffRounded'; +export { default as SearchOffSharp } from './SearchOffSharp'; +export { default as SearchOffTwoTone } from './SearchOffTwoTone'; +export { default as SearchOutlined } from './SearchOutlined'; +export { default as SearchRounded } from './SearchRounded'; +export { default as SearchSharp } from './SearchSharp'; +export { default as SearchTwoTone } from './SearchTwoTone'; +export { default as Security } from './Security'; +export { default as SecurityOutlined } from './SecurityOutlined'; +export { default as SecurityRounded } from './SecurityRounded'; +export { default as SecuritySharp } from './SecuritySharp'; +export { default as SecurityTwoTone } from './SecurityTwoTone'; +export { default as SecurityUpdate } from './SecurityUpdate'; +export { default as SecurityUpdateGood } from './SecurityUpdateGood'; +export { default as SecurityUpdateGoodOutlined } from './SecurityUpdateGoodOutlined'; +export { default as SecurityUpdateGoodRounded } from './SecurityUpdateGoodRounded'; +export { default as SecurityUpdateGoodSharp } from './SecurityUpdateGoodSharp'; +export { default as SecurityUpdateGoodTwoTone } from './SecurityUpdateGoodTwoTone'; +export { default as SecurityUpdateOutlined } from './SecurityUpdateOutlined'; +export { default as SecurityUpdateRounded } from './SecurityUpdateRounded'; +export { default as SecurityUpdateSharp } from './SecurityUpdateSharp'; +export { default as SecurityUpdateTwoTone } from './SecurityUpdateTwoTone'; +export { default as SecurityUpdateWarning } from './SecurityUpdateWarning'; +export { default as SecurityUpdateWarningOutlined } from './SecurityUpdateWarningOutlined'; +export { default as SecurityUpdateWarningRounded } from './SecurityUpdateWarningRounded'; +export { default as SecurityUpdateWarningSharp } from './SecurityUpdateWarningSharp'; +export { default as SecurityUpdateWarningTwoTone } from './SecurityUpdateWarningTwoTone'; +export { default as Segment } from './Segment'; +export { default as SegmentOutlined } from './SegmentOutlined'; +export { default as SegmentRounded } from './SegmentRounded'; +export { default as SegmentSharp } from './SegmentSharp'; +export { default as SegmentTwoTone } from './SegmentTwoTone'; +export { default as SelectAll } from './SelectAll'; +export { default as SelectAllOutlined } from './SelectAllOutlined'; +export { default as SelectAllRounded } from './SelectAllRounded'; +export { default as SelectAllSharp } from './SelectAllSharp'; +export { default as SelectAllTwoTone } from './SelectAllTwoTone'; +export { default as SelfImprovement } from './SelfImprovement'; +export { default as SelfImprovementOutlined } from './SelfImprovementOutlined'; +export { default as SelfImprovementRounded } from './SelfImprovementRounded'; +export { default as SelfImprovementSharp } from './SelfImprovementSharp'; +export { default as SelfImprovementTwoTone } from './SelfImprovementTwoTone'; +export { default as Sell } from './Sell'; +export { default as SellOutlined } from './SellOutlined'; +export { default as SellRounded } from './SellRounded'; +export { default as SellSharp } from './SellSharp'; +export { default as SellTwoTone } from './SellTwoTone'; +export { default as Send } from './Send'; +export { default as SendAndArchive } from './SendAndArchive'; +export { default as SendAndArchiveOutlined } from './SendAndArchiveOutlined'; +export { default as SendAndArchiveRounded } from './SendAndArchiveRounded'; +export { default as SendAndArchiveSharp } from './SendAndArchiveSharp'; +export { default as SendAndArchiveTwoTone } from './SendAndArchiveTwoTone'; +export { default as SendOutlined } from './SendOutlined'; +export { default as SendRounded } from './SendRounded'; +export { default as SendSharp } from './SendSharp'; +export { default as SendToMobile } from './SendToMobile'; +export { default as SendToMobileOutlined } from './SendToMobileOutlined'; +export { default as SendToMobileRounded } from './SendToMobileRounded'; +export { default as SendToMobileSharp } from './SendToMobileSharp'; +export { default as SendToMobileTwoTone } from './SendToMobileTwoTone'; +export { default as SendTwoTone } from './SendTwoTone'; +export { default as SensorDoor } from './SensorDoor'; +export { default as SensorDoorOutlined } from './SensorDoorOutlined'; +export { default as SensorDoorRounded } from './SensorDoorRounded'; +export { default as SensorDoorSharp } from './SensorDoorSharp'; +export { default as SensorDoorTwoTone } from './SensorDoorTwoTone'; +export { default as SensorWindow } from './SensorWindow'; +export { default as SensorWindowOutlined } from './SensorWindowOutlined'; +export { default as SensorWindowRounded } from './SensorWindowRounded'; +export { default as SensorWindowSharp } from './SensorWindowSharp'; +export { default as SensorWindowTwoTone } from './SensorWindowTwoTone'; +export { default as Sensors } from './Sensors'; +export { default as SensorsOff } from './SensorsOff'; +export { default as SensorsOffOutlined } from './SensorsOffOutlined'; +export { default as SensorsOffRounded } from './SensorsOffRounded'; +export { default as SensorsOffSharp } from './SensorsOffSharp'; +export { default as SensorsOffTwoTone } from './SensorsOffTwoTone'; +export { default as SensorsOutlined } from './SensorsOutlined'; +export { default as SensorsRounded } from './SensorsRounded'; +export { default as SensorsSharp } from './SensorsSharp'; +export { default as SensorsTwoTone } from './SensorsTwoTone'; +export { default as SentimentDissatisfied } from './SentimentDissatisfied'; +export { default as SentimentDissatisfiedOutlined } from './SentimentDissatisfiedOutlined'; +export { default as SentimentDissatisfiedRounded } from './SentimentDissatisfiedRounded'; +export { default as SentimentDissatisfiedSharp } from './SentimentDissatisfiedSharp'; +export { default as SentimentDissatisfiedTwoTone } from './SentimentDissatisfiedTwoTone'; +export { default as SentimentNeutral } from './SentimentNeutral'; +export { default as SentimentNeutralOutlined } from './SentimentNeutralOutlined'; +export { default as SentimentNeutralRounded } from './SentimentNeutralRounded'; +export { default as SentimentNeutralSharp } from './SentimentNeutralSharp'; +export { default as SentimentNeutralTwoTone } from './SentimentNeutralTwoTone'; +export { default as SentimentSatisfied } from './SentimentSatisfied'; +export { default as SentimentSatisfiedAlt } from './SentimentSatisfiedAlt'; +export { default as SentimentSatisfiedAltOutlined } from './SentimentSatisfiedAltOutlined'; +export { default as SentimentSatisfiedAltRounded } from './SentimentSatisfiedAltRounded'; +export { default as SentimentSatisfiedAltSharp } from './SentimentSatisfiedAltSharp'; +export { default as SentimentSatisfiedAltTwoTone } from './SentimentSatisfiedAltTwoTone'; +export { default as SentimentSatisfiedOutlined } from './SentimentSatisfiedOutlined'; +export { default as SentimentSatisfiedRounded } from './SentimentSatisfiedRounded'; +export { default as SentimentSatisfiedSharp } from './SentimentSatisfiedSharp'; +export { default as SentimentSatisfiedTwoTone } from './SentimentSatisfiedTwoTone'; +export { default as SentimentVeryDissatisfied } from './SentimentVeryDissatisfied'; +export { default as SentimentVeryDissatisfiedOutlined } from './SentimentVeryDissatisfiedOutlined'; +export { default as SentimentVeryDissatisfiedRounded } from './SentimentVeryDissatisfiedRounded'; +export { default as SentimentVeryDissatisfiedSharp } from './SentimentVeryDissatisfiedSharp'; +export { default as SentimentVeryDissatisfiedTwoTone } from './SentimentVeryDissatisfiedTwoTone'; +export { default as SentimentVerySatisfied } from './SentimentVerySatisfied'; +export { default as SentimentVerySatisfiedOutlined } from './SentimentVerySatisfiedOutlined'; +export { default as SentimentVerySatisfiedRounded } from './SentimentVerySatisfiedRounded'; +export { default as SentimentVerySatisfiedSharp } from './SentimentVerySatisfiedSharp'; +export { default as SentimentVerySatisfiedTwoTone } from './SentimentVerySatisfiedTwoTone'; +export { default as SetMeal } from './SetMeal'; +export { default as SetMealOutlined } from './SetMealOutlined'; +export { default as SetMealRounded } from './SetMealRounded'; +export { default as SetMealSharp } from './SetMealSharp'; +export { default as SetMealTwoTone } from './SetMealTwoTone'; +export { default as Settings } from './Settings'; +export { default as SettingsAccessibility } from './SettingsAccessibility'; +export { default as SettingsAccessibilityOutlined } from './SettingsAccessibilityOutlined'; +export { default as SettingsAccessibilityRounded } from './SettingsAccessibilityRounded'; +export { default as SettingsAccessibilitySharp } from './SettingsAccessibilitySharp'; +export { default as SettingsAccessibilityTwoTone } from './SettingsAccessibilityTwoTone'; +export { default as SettingsApplications } from './SettingsApplications'; +export { default as SettingsApplicationsOutlined } from './SettingsApplicationsOutlined'; +export { default as SettingsApplicationsRounded } from './SettingsApplicationsRounded'; +export { default as SettingsApplicationsSharp } from './SettingsApplicationsSharp'; +export { default as SettingsApplicationsTwoTone } from './SettingsApplicationsTwoTone'; +export { default as SettingsBackupRestore } from './SettingsBackupRestore'; +export { default as SettingsBackupRestoreOutlined } from './SettingsBackupRestoreOutlined'; +export { default as SettingsBackupRestoreRounded } from './SettingsBackupRestoreRounded'; +export { default as SettingsBackupRestoreSharp } from './SettingsBackupRestoreSharp'; +export { default as SettingsBackupRestoreTwoTone } from './SettingsBackupRestoreTwoTone'; +export { default as SettingsBluetooth } from './SettingsBluetooth'; +export { default as SettingsBluetoothOutlined } from './SettingsBluetoothOutlined'; +export { default as SettingsBluetoothRounded } from './SettingsBluetoothRounded'; +export { default as SettingsBluetoothSharp } from './SettingsBluetoothSharp'; +export { default as SettingsBluetoothTwoTone } from './SettingsBluetoothTwoTone'; +export { default as SettingsBrightness } from './SettingsBrightness'; +export { default as SettingsBrightnessOutlined } from './SettingsBrightnessOutlined'; +export { default as SettingsBrightnessRounded } from './SettingsBrightnessRounded'; +export { default as SettingsBrightnessSharp } from './SettingsBrightnessSharp'; +export { default as SettingsBrightnessTwoTone } from './SettingsBrightnessTwoTone'; +export { default as SettingsCell } from './SettingsCell'; +export { default as SettingsCellOutlined } from './SettingsCellOutlined'; +export { default as SettingsCellRounded } from './SettingsCellRounded'; +export { default as SettingsCellSharp } from './SettingsCellSharp'; +export { default as SettingsCellTwoTone } from './SettingsCellTwoTone'; +export { default as SettingsEthernet } from './SettingsEthernet'; +export { default as SettingsEthernetOutlined } from './SettingsEthernetOutlined'; +export { default as SettingsEthernetRounded } from './SettingsEthernetRounded'; +export { default as SettingsEthernetSharp } from './SettingsEthernetSharp'; +export { default as SettingsEthernetTwoTone } from './SettingsEthernetTwoTone'; +export { default as SettingsInputAntenna } from './SettingsInputAntenna'; +export { default as SettingsInputAntennaOutlined } from './SettingsInputAntennaOutlined'; +export { default as SettingsInputAntennaRounded } from './SettingsInputAntennaRounded'; +export { default as SettingsInputAntennaSharp } from './SettingsInputAntennaSharp'; +export { default as SettingsInputAntennaTwoTone } from './SettingsInputAntennaTwoTone'; +export { default as SettingsInputComponent } from './SettingsInputComponent'; +export { default as SettingsInputComponentOutlined } from './SettingsInputComponentOutlined'; +export { default as SettingsInputComponentRounded } from './SettingsInputComponentRounded'; +export { default as SettingsInputComponentSharp } from './SettingsInputComponentSharp'; +export { default as SettingsInputComponentTwoTone } from './SettingsInputComponentTwoTone'; +export { default as SettingsInputComposite } from './SettingsInputComposite'; +export { default as SettingsInputCompositeOutlined } from './SettingsInputCompositeOutlined'; +export { default as SettingsInputCompositeRounded } from './SettingsInputCompositeRounded'; +export { default as SettingsInputCompositeSharp } from './SettingsInputCompositeSharp'; +export { default as SettingsInputCompositeTwoTone } from './SettingsInputCompositeTwoTone'; +export { default as SettingsInputHdmi } from './SettingsInputHdmi'; +export { default as SettingsInputHdmiOutlined } from './SettingsInputHdmiOutlined'; +export { default as SettingsInputHdmiRounded } from './SettingsInputHdmiRounded'; +export { default as SettingsInputHdmiSharp } from './SettingsInputHdmiSharp'; +export { default as SettingsInputHdmiTwoTone } from './SettingsInputHdmiTwoTone'; +export { default as SettingsInputSvideo } from './SettingsInputSvideo'; +export { default as SettingsInputSvideoOutlined } from './SettingsInputSvideoOutlined'; +export { default as SettingsInputSvideoRounded } from './SettingsInputSvideoRounded'; +export { default as SettingsInputSvideoSharp } from './SettingsInputSvideoSharp'; +export { default as SettingsInputSvideoTwoTone } from './SettingsInputSvideoTwoTone'; +export { default as SettingsOutlined } from './SettingsOutlined'; +export { default as SettingsOverscan } from './SettingsOverscan'; +export { default as SettingsOverscanOutlined } from './SettingsOverscanOutlined'; +export { default as SettingsOverscanRounded } from './SettingsOverscanRounded'; +export { default as SettingsOverscanSharp } from './SettingsOverscanSharp'; +export { default as SettingsOverscanTwoTone } from './SettingsOverscanTwoTone'; +export { default as SettingsPhone } from './SettingsPhone'; +export { default as SettingsPhoneOutlined } from './SettingsPhoneOutlined'; +export { default as SettingsPhoneRounded } from './SettingsPhoneRounded'; +export { default as SettingsPhoneSharp } from './SettingsPhoneSharp'; +export { default as SettingsPhoneTwoTone } from './SettingsPhoneTwoTone'; +export { default as SettingsPower } from './SettingsPower'; +export { default as SettingsPowerOutlined } from './SettingsPowerOutlined'; +export { default as SettingsPowerRounded } from './SettingsPowerRounded'; +export { default as SettingsPowerSharp } from './SettingsPowerSharp'; +export { default as SettingsPowerTwoTone } from './SettingsPowerTwoTone'; +export { default as SettingsRemote } from './SettingsRemote'; +export { default as SettingsRemoteOutlined } from './SettingsRemoteOutlined'; +export { default as SettingsRemoteRounded } from './SettingsRemoteRounded'; +export { default as SettingsRemoteSharp } from './SettingsRemoteSharp'; +export { default as SettingsRemoteTwoTone } from './SettingsRemoteTwoTone'; +export { default as SettingsRounded } from './SettingsRounded'; +export { default as SettingsSharp } from './SettingsSharp'; +export { default as SettingsSuggest } from './SettingsSuggest'; +export { default as SettingsSuggestOutlined } from './SettingsSuggestOutlined'; +export { default as SettingsSuggestRounded } from './SettingsSuggestRounded'; +export { default as SettingsSuggestSharp } from './SettingsSuggestSharp'; +export { default as SettingsSuggestTwoTone } from './SettingsSuggestTwoTone'; +export { default as SettingsSystemDaydream } from './SettingsSystemDaydream'; +export { default as SettingsSystemDaydreamOutlined } from './SettingsSystemDaydreamOutlined'; +export { default as SettingsSystemDaydreamRounded } from './SettingsSystemDaydreamRounded'; +export { default as SettingsSystemDaydreamSharp } from './SettingsSystemDaydreamSharp'; +export { default as SettingsSystemDaydreamTwoTone } from './SettingsSystemDaydreamTwoTone'; +export { default as SettingsTwoTone } from './SettingsTwoTone'; +export { default as SettingsVoice } from './SettingsVoice'; +export { default as SettingsVoiceOutlined } from './SettingsVoiceOutlined'; +export { default as SettingsVoiceRounded } from './SettingsVoiceRounded'; +export { default as SettingsVoiceSharp } from './SettingsVoiceSharp'; +export { default as SettingsVoiceTwoTone } from './SettingsVoiceTwoTone'; +export { default as SevenK } from './SevenK'; +export { default as SevenKOutlined } from './SevenKOutlined'; +export { default as SevenKPlus } from './SevenKPlus'; +export { default as SevenKPlusOutlined } from './SevenKPlusOutlined'; +export { default as SevenKPlusRounded } from './SevenKPlusRounded'; +export { default as SevenKPlusSharp } from './SevenKPlusSharp'; +export { default as SevenKPlusTwoTone } from './SevenKPlusTwoTone'; +export { default as SevenKRounded } from './SevenKRounded'; +export { default as SevenKSharp } from './SevenKSharp'; +export { default as SevenKTwoTone } from './SevenKTwoTone'; +export { default as SevenMp } from './SevenMp'; +export { default as SevenMpOutlined } from './SevenMpOutlined'; +export { default as SevenMpRounded } from './SevenMpRounded'; +export { default as SevenMpSharp } from './SevenMpSharp'; +export { default as SevenMpTwoTone } from './SevenMpTwoTone'; +export { default as SeventeenMp } from './SeventeenMp'; +export { default as SeventeenMpOutlined } from './SeventeenMpOutlined'; +export { default as SeventeenMpRounded } from './SeventeenMpRounded'; +export { default as SeventeenMpSharp } from './SeventeenMpSharp'; +export { default as SeventeenMpTwoTone } from './SeventeenMpTwoTone'; +export { default as Share } from './Share'; +export { default as ShareLocation } from './ShareLocation'; +export { default as ShareLocationOutlined } from './ShareLocationOutlined'; +export { default as ShareLocationRounded } from './ShareLocationRounded'; +export { default as ShareLocationSharp } from './ShareLocationSharp'; +export { default as ShareLocationTwoTone } from './ShareLocationTwoTone'; +export { default as ShareOutlined } from './ShareOutlined'; +export { default as ShareRounded } from './ShareRounded'; +export { default as ShareSharp } from './ShareSharp'; +export { default as ShareTwoTone } from './ShareTwoTone'; +export { default as Shield } from './Shield'; +export { default as ShieldOutlined } from './ShieldOutlined'; +export { default as ShieldRounded } from './ShieldRounded'; +export { default as ShieldSharp } from './ShieldSharp'; +export { default as ShieldTwoTone } from './ShieldTwoTone'; +export { default as Shop } from './Shop'; +export { default as Shop2 } from './Shop2'; +export { default as Shop2Outlined } from './Shop2Outlined'; +export { default as Shop2Rounded } from './Shop2Rounded'; +export { default as Shop2Sharp } from './Shop2Sharp'; +export { default as Shop2TwoTone } from './Shop2TwoTone'; +export { default as ShopOutlined } from './ShopOutlined'; +export { default as ShopRounded } from './ShopRounded'; +export { default as ShopSharp } from './ShopSharp'; +export { default as ShopTwo } from './ShopTwo'; +export { default as ShopTwoOutlined } from './ShopTwoOutlined'; +export { default as ShopTwoRounded } from './ShopTwoRounded'; +export { default as ShopTwoSharp } from './ShopTwoSharp'; +export { default as ShopTwoTone } from './ShopTwoTone'; +export { default as ShopTwoTwoTone } from './ShopTwoTwoTone'; +export { default as ShoppingBag } from './ShoppingBag'; +export { default as ShoppingBagOutlined } from './ShoppingBagOutlined'; +export { default as ShoppingBagRounded } from './ShoppingBagRounded'; +export { default as ShoppingBagSharp } from './ShoppingBagSharp'; +export { default as ShoppingBagTwoTone } from './ShoppingBagTwoTone'; +export { default as ShoppingBasket } from './ShoppingBasket'; +export { default as ShoppingBasketOutlined } from './ShoppingBasketOutlined'; +export { default as ShoppingBasketRounded } from './ShoppingBasketRounded'; +export { default as ShoppingBasketSharp } from './ShoppingBasketSharp'; +export { default as ShoppingBasketTwoTone } from './ShoppingBasketTwoTone'; +export { default as ShoppingCart } from './ShoppingCart'; +export { default as ShoppingCartOutlined } from './ShoppingCartOutlined'; +export { default as ShoppingCartRounded } from './ShoppingCartRounded'; +export { default as ShoppingCartSharp } from './ShoppingCartSharp'; +export { default as ShoppingCartTwoTone } from './ShoppingCartTwoTone'; +export { default as ShortText } from './ShortText'; +export { default as ShortTextOutlined } from './ShortTextOutlined'; +export { default as ShortTextRounded } from './ShortTextRounded'; +export { default as ShortTextSharp } from './ShortTextSharp'; +export { default as ShortTextTwoTone } from './ShortTextTwoTone'; +export { default as Shortcut } from './Shortcut'; +export { default as ShortcutOutlined } from './ShortcutOutlined'; +export { default as ShortcutRounded } from './ShortcutRounded'; +export { default as ShortcutSharp } from './ShortcutSharp'; +export { default as ShortcutTwoTone } from './ShortcutTwoTone'; +export { default as ShowChart } from './ShowChart'; +export { default as ShowChartOutlined } from './ShowChartOutlined'; +export { default as ShowChartRounded } from './ShowChartRounded'; +export { default as ShowChartSharp } from './ShowChartSharp'; +export { default as ShowChartTwoTone } from './ShowChartTwoTone'; +export { default as Shower } from './Shower'; +export { default as ShowerOutlined } from './ShowerOutlined'; +export { default as ShowerRounded } from './ShowerRounded'; +export { default as ShowerSharp } from './ShowerSharp'; +export { default as ShowerTwoTone } from './ShowerTwoTone'; +export { default as Shuffle } from './Shuffle'; +export { default as ShuffleOn } from './ShuffleOn'; +export { default as ShuffleOnOutlined } from './ShuffleOnOutlined'; +export { default as ShuffleOnRounded } from './ShuffleOnRounded'; +export { default as ShuffleOnSharp } from './ShuffleOnSharp'; +export { default as ShuffleOnTwoTone } from './ShuffleOnTwoTone'; +export { default as ShuffleOutlined } from './ShuffleOutlined'; +export { default as ShuffleRounded } from './ShuffleRounded'; +export { default as ShuffleSharp } from './ShuffleSharp'; +export { default as ShuffleTwoTone } from './ShuffleTwoTone'; +export { default as ShutterSpeed } from './ShutterSpeed'; +export { default as ShutterSpeedOutlined } from './ShutterSpeedOutlined'; +export { default as ShutterSpeedRounded } from './ShutterSpeedRounded'; +export { default as ShutterSpeedSharp } from './ShutterSpeedSharp'; +export { default as ShutterSpeedTwoTone } from './ShutterSpeedTwoTone'; +export { default as Sick } from './Sick'; +export { default as SickOutlined } from './SickOutlined'; +export { default as SickRounded } from './SickRounded'; +export { default as SickSharp } from './SickSharp'; +export { default as SickTwoTone } from './SickTwoTone'; +export { default as SignalCellular0Bar } from './SignalCellular0Bar'; +export { default as SignalCellular0BarOutlined } from './SignalCellular0BarOutlined'; +export { default as SignalCellular0BarRounded } from './SignalCellular0BarRounded'; +export { default as SignalCellular0BarSharp } from './SignalCellular0BarSharp'; +export { default as SignalCellular0BarTwoTone } from './SignalCellular0BarTwoTone'; +export { default as SignalCellular1Bar } from './SignalCellular1Bar'; +export { default as SignalCellular1BarOutlined } from './SignalCellular1BarOutlined'; +export { default as SignalCellular1BarRounded } from './SignalCellular1BarRounded'; +export { default as SignalCellular1BarSharp } from './SignalCellular1BarSharp'; +export { default as SignalCellular1BarTwoTone } from './SignalCellular1BarTwoTone'; +export { default as SignalCellular2Bar } from './SignalCellular2Bar'; +export { default as SignalCellular2BarOutlined } from './SignalCellular2BarOutlined'; +export { default as SignalCellular2BarRounded } from './SignalCellular2BarRounded'; +export { default as SignalCellular2BarSharp } from './SignalCellular2BarSharp'; +export { default as SignalCellular2BarTwoTone } from './SignalCellular2BarTwoTone'; +export { default as SignalCellular3Bar } from './SignalCellular3Bar'; +export { default as SignalCellular3BarOutlined } from './SignalCellular3BarOutlined'; +export { default as SignalCellular3BarRounded } from './SignalCellular3BarRounded'; +export { default as SignalCellular3BarSharp } from './SignalCellular3BarSharp'; +export { default as SignalCellular3BarTwoTone } from './SignalCellular3BarTwoTone'; +export { default as SignalCellular4Bar } from './SignalCellular4Bar'; +export { default as SignalCellular4BarOutlined } from './SignalCellular4BarOutlined'; +export { default as SignalCellular4BarRounded } from './SignalCellular4BarRounded'; +export { default as SignalCellular4BarSharp } from './SignalCellular4BarSharp'; +export { default as SignalCellular4BarTwoTone } from './SignalCellular4BarTwoTone'; +export { default as SignalCellularAlt } from './SignalCellularAlt'; +export { default as SignalCellularAltOutlined } from './SignalCellularAltOutlined'; +export { default as SignalCellularAltRounded } from './SignalCellularAltRounded'; +export { default as SignalCellularAltSharp } from './SignalCellularAltSharp'; +export { default as SignalCellularAltTwoTone } from './SignalCellularAltTwoTone'; +export { default as SignalCellularConnectedNoInternet0Bar } from './SignalCellularConnectedNoInternet0Bar'; +export { default as SignalCellularConnectedNoInternet0BarOutlined } from './SignalCellularConnectedNoInternet0BarOutlined'; +export { default as SignalCellularConnectedNoInternet0BarRounded } from './SignalCellularConnectedNoInternet0BarRounded'; +export { default as SignalCellularConnectedNoInternet0BarSharp } from './SignalCellularConnectedNoInternet0BarSharp'; +export { default as SignalCellularConnectedNoInternet0BarTwoTone } from './SignalCellularConnectedNoInternet0BarTwoTone'; +export { default as SignalCellularConnectedNoInternet1Bar } from './SignalCellularConnectedNoInternet1Bar'; +export { default as SignalCellularConnectedNoInternet1BarOutlined } from './SignalCellularConnectedNoInternet1BarOutlined'; +export { default as SignalCellularConnectedNoInternet1BarRounded } from './SignalCellularConnectedNoInternet1BarRounded'; +export { default as SignalCellularConnectedNoInternet1BarSharp } from './SignalCellularConnectedNoInternet1BarSharp'; +export { default as SignalCellularConnectedNoInternet1BarTwoTone } from './SignalCellularConnectedNoInternet1BarTwoTone'; +export { default as SignalCellularConnectedNoInternet2Bar } from './SignalCellularConnectedNoInternet2Bar'; +export { default as SignalCellularConnectedNoInternet2BarOutlined } from './SignalCellularConnectedNoInternet2BarOutlined'; +export { default as SignalCellularConnectedNoInternet2BarRounded } from './SignalCellularConnectedNoInternet2BarRounded'; +export { default as SignalCellularConnectedNoInternet2BarSharp } from './SignalCellularConnectedNoInternet2BarSharp'; +export { default as SignalCellularConnectedNoInternet2BarTwoTone } from './SignalCellularConnectedNoInternet2BarTwoTone'; +export { default as SignalCellularConnectedNoInternet3Bar } from './SignalCellularConnectedNoInternet3Bar'; +export { default as SignalCellularConnectedNoInternet3BarOutlined } from './SignalCellularConnectedNoInternet3BarOutlined'; +export { default as SignalCellularConnectedNoInternet3BarRounded } from './SignalCellularConnectedNoInternet3BarRounded'; +export { default as SignalCellularConnectedNoInternet3BarSharp } from './SignalCellularConnectedNoInternet3BarSharp'; +export { default as SignalCellularConnectedNoInternet3BarTwoTone } from './SignalCellularConnectedNoInternet3BarTwoTone'; +export { default as SignalCellularConnectedNoInternet4Bar } from './SignalCellularConnectedNoInternet4Bar'; +export { default as SignalCellularConnectedNoInternet4BarOutlined } from './SignalCellularConnectedNoInternet4BarOutlined'; +export { default as SignalCellularConnectedNoInternet4BarRounded } from './SignalCellularConnectedNoInternet4BarRounded'; +export { default as SignalCellularConnectedNoInternet4BarSharp } from './SignalCellularConnectedNoInternet4BarSharp'; +export { default as SignalCellularConnectedNoInternet4BarTwoTone } from './SignalCellularConnectedNoInternet4BarTwoTone'; +export { default as SignalCellularNoSim } from './SignalCellularNoSim'; +export { default as SignalCellularNoSimOutlined } from './SignalCellularNoSimOutlined'; +export { default as SignalCellularNoSimRounded } from './SignalCellularNoSimRounded'; +export { default as SignalCellularNoSimSharp } from './SignalCellularNoSimSharp'; +export { default as SignalCellularNoSimTwoTone } from './SignalCellularNoSimTwoTone'; +export { default as SignalCellularNodata } from './SignalCellularNodata'; +export { default as SignalCellularNodataOutlined } from './SignalCellularNodataOutlined'; +export { default as SignalCellularNodataRounded } from './SignalCellularNodataRounded'; +export { default as SignalCellularNodataSharp } from './SignalCellularNodataSharp'; +export { default as SignalCellularNodataTwoTone } from './SignalCellularNodataTwoTone'; +export { default as SignalCellularNull } from './SignalCellularNull'; +export { default as SignalCellularNullOutlined } from './SignalCellularNullOutlined'; +export { default as SignalCellularNullRounded } from './SignalCellularNullRounded'; +export { default as SignalCellularNullSharp } from './SignalCellularNullSharp'; +export { default as SignalCellularNullTwoTone } from './SignalCellularNullTwoTone'; +export { default as SignalCellularOff } from './SignalCellularOff'; +export { default as SignalCellularOffOutlined } from './SignalCellularOffOutlined'; +export { default as SignalCellularOffRounded } from './SignalCellularOffRounded'; +export { default as SignalCellularOffSharp } from './SignalCellularOffSharp'; +export { default as SignalCellularOffTwoTone } from './SignalCellularOffTwoTone'; +export { default as SignalWifi0Bar } from './SignalWifi0Bar'; +export { default as SignalWifi0BarOutlined } from './SignalWifi0BarOutlined'; +export { default as SignalWifi0BarRounded } from './SignalWifi0BarRounded'; +export { default as SignalWifi0BarSharp } from './SignalWifi0BarSharp'; +export { default as SignalWifi0BarTwoTone } from './SignalWifi0BarTwoTone'; +export { default as SignalWifi1Bar } from './SignalWifi1Bar'; +export { default as SignalWifi1BarLock } from './SignalWifi1BarLock'; +export { default as SignalWifi1BarLockOutlined } from './SignalWifi1BarLockOutlined'; +export { default as SignalWifi1BarLockRounded } from './SignalWifi1BarLockRounded'; +export { default as SignalWifi1BarLockSharp } from './SignalWifi1BarLockSharp'; +export { default as SignalWifi1BarLockTwoTone } from './SignalWifi1BarLockTwoTone'; +export { default as SignalWifi1BarOutlined } from './SignalWifi1BarOutlined'; +export { default as SignalWifi1BarRounded } from './SignalWifi1BarRounded'; +export { default as SignalWifi1BarSharp } from './SignalWifi1BarSharp'; +export { default as SignalWifi1BarTwoTone } from './SignalWifi1BarTwoTone'; +export { default as SignalWifi2Bar } from './SignalWifi2Bar'; +export { default as SignalWifi2BarLock } from './SignalWifi2BarLock'; +export { default as SignalWifi2BarLockOutlined } from './SignalWifi2BarLockOutlined'; +export { default as SignalWifi2BarLockRounded } from './SignalWifi2BarLockRounded'; +export { default as SignalWifi2BarLockSharp } from './SignalWifi2BarLockSharp'; +export { default as SignalWifi2BarLockTwoTone } from './SignalWifi2BarLockTwoTone'; +export { default as SignalWifi2BarOutlined } from './SignalWifi2BarOutlined'; +export { default as SignalWifi2BarRounded } from './SignalWifi2BarRounded'; +export { default as SignalWifi2BarSharp } from './SignalWifi2BarSharp'; +export { default as SignalWifi2BarTwoTone } from './SignalWifi2BarTwoTone'; +export { default as SignalWifi3Bar } from './SignalWifi3Bar'; +export { default as SignalWifi3BarLock } from './SignalWifi3BarLock'; +export { default as SignalWifi3BarLockOutlined } from './SignalWifi3BarLockOutlined'; +export { default as SignalWifi3BarLockRounded } from './SignalWifi3BarLockRounded'; +export { default as SignalWifi3BarLockSharp } from './SignalWifi3BarLockSharp'; +export { default as SignalWifi3BarLockTwoTone } from './SignalWifi3BarLockTwoTone'; +export { default as SignalWifi3BarOutlined } from './SignalWifi3BarOutlined'; +export { default as SignalWifi3BarRounded } from './SignalWifi3BarRounded'; +export { default as SignalWifi3BarSharp } from './SignalWifi3BarSharp'; +export { default as SignalWifi3BarTwoTone } from './SignalWifi3BarTwoTone'; +export { default as SignalWifi4Bar } from './SignalWifi4Bar'; +export { default as SignalWifi4BarLock } from './SignalWifi4BarLock'; +export { default as SignalWifi4BarLockOutlined } from './SignalWifi4BarLockOutlined'; +export { default as SignalWifi4BarLockRounded } from './SignalWifi4BarLockRounded'; +export { default as SignalWifi4BarLockSharp } from './SignalWifi4BarLockSharp'; +export { default as SignalWifi4BarLockTwoTone } from './SignalWifi4BarLockTwoTone'; +export { default as SignalWifi4BarOutlined } from './SignalWifi4BarOutlined'; +export { default as SignalWifi4BarRounded } from './SignalWifi4BarRounded'; +export { default as SignalWifi4BarSharp } from './SignalWifi4BarSharp'; +export { default as SignalWifi4BarTwoTone } from './SignalWifi4BarTwoTone'; +export { default as SignalWifiBad } from './SignalWifiBad'; +export { default as SignalWifiBadOutlined } from './SignalWifiBadOutlined'; +export { default as SignalWifiBadRounded } from './SignalWifiBadRounded'; +export { default as SignalWifiBadSharp } from './SignalWifiBadSharp'; +export { default as SignalWifiBadTwoTone } from './SignalWifiBadTwoTone'; +export { default as SignalWifiConnectedNoInternet4 } from './SignalWifiConnectedNoInternet4'; +export { default as SignalWifiConnectedNoInternet4Outlined } from './SignalWifiConnectedNoInternet4Outlined'; +export { default as SignalWifiConnectedNoInternet4Rounded } from './SignalWifiConnectedNoInternet4Rounded'; +export { default as SignalWifiConnectedNoInternet4Sharp } from './SignalWifiConnectedNoInternet4Sharp'; +export { default as SignalWifiConnectedNoInternet4TwoTone } from './SignalWifiConnectedNoInternet4TwoTone'; +export { default as SignalWifiOff } from './SignalWifiOff'; +export { default as SignalWifiOffOutlined } from './SignalWifiOffOutlined'; +export { default as SignalWifiOffRounded } from './SignalWifiOffRounded'; +export { default as SignalWifiOffSharp } from './SignalWifiOffSharp'; +export { default as SignalWifiOffTwoTone } from './SignalWifiOffTwoTone'; +export { default as SignalWifiStatusbar4Bar } from './SignalWifiStatusbar4Bar'; +export { default as SignalWifiStatusbar4BarOutlined } from './SignalWifiStatusbar4BarOutlined'; +export { default as SignalWifiStatusbar4BarRounded } from './SignalWifiStatusbar4BarRounded'; +export { default as SignalWifiStatusbar4BarSharp } from './SignalWifiStatusbar4BarSharp'; +export { default as SignalWifiStatusbar4BarTwoTone } from './SignalWifiStatusbar4BarTwoTone'; +export { default as SignalWifiStatusbarConnectedNoInternet4 } from './SignalWifiStatusbarConnectedNoInternet4'; +export { default as SignalWifiStatusbarConnectedNoInternet4Outlined } from './SignalWifiStatusbarConnectedNoInternet4Outlined'; +export { default as SignalWifiStatusbarConnectedNoInternet4Rounded } from './SignalWifiStatusbarConnectedNoInternet4Rounded'; +export { default as SignalWifiStatusbarConnectedNoInternet4Sharp } from './SignalWifiStatusbarConnectedNoInternet4Sharp'; +export { default as SignalWifiStatusbarConnectedNoInternet4TwoTone } from './SignalWifiStatusbarConnectedNoInternet4TwoTone'; +export { default as SignalWifiStatusbarNull } from './SignalWifiStatusbarNull'; +export { default as SignalWifiStatusbarNullOutlined } from './SignalWifiStatusbarNullOutlined'; +export { default as SignalWifiStatusbarNullRounded } from './SignalWifiStatusbarNullRounded'; +export { default as SignalWifiStatusbarNullSharp } from './SignalWifiStatusbarNullSharp'; +export { default as SignalWifiStatusbarNullTwoTone } from './SignalWifiStatusbarNullTwoTone'; +export { default as SimCard } from './SimCard'; +export { default as SimCardAlert } from './SimCardAlert'; +export { default as SimCardAlertOutlined } from './SimCardAlertOutlined'; +export { default as SimCardAlertRounded } from './SimCardAlertRounded'; +export { default as SimCardAlertSharp } from './SimCardAlertSharp'; +export { default as SimCardAlertTwoTone } from './SimCardAlertTwoTone'; +export { default as SimCardDownload } from './SimCardDownload'; +export { default as SimCardDownloadOutlined } from './SimCardDownloadOutlined'; +export { default as SimCardDownloadRounded } from './SimCardDownloadRounded'; +export { default as SimCardDownloadSharp } from './SimCardDownloadSharp'; +export { default as SimCardDownloadTwoTone } from './SimCardDownloadTwoTone'; +export { default as SimCardOutlined } from './SimCardOutlined'; +export { default as SimCardRounded } from './SimCardRounded'; +export { default as SimCardSharp } from './SimCardSharp'; +export { default as SimCardTwoTone } from './SimCardTwoTone'; +export { default as SingleBed } from './SingleBed'; +export { default as SingleBedOutlined } from './SingleBedOutlined'; +export { default as SingleBedRounded } from './SingleBedRounded'; +export { default as SingleBedSharp } from './SingleBedSharp'; +export { default as SingleBedTwoTone } from './SingleBedTwoTone'; +export { default as Sip } from './Sip'; +export { default as SipOutlined } from './SipOutlined'; +export { default as SipRounded } from './SipRounded'; +export { default as SipSharp } from './SipSharp'; +export { default as SipTwoTone } from './SipTwoTone'; +export { default as SixK } from './SixK'; +export { default as SixKOutlined } from './SixKOutlined'; +export { default as SixKPlus } from './SixKPlus'; +export { default as SixKPlusOutlined } from './SixKPlusOutlined'; +export { default as SixKPlusRounded } from './SixKPlusRounded'; +export { default as SixKPlusSharp } from './SixKPlusSharp'; +export { default as SixKPlusTwoTone } from './SixKPlusTwoTone'; +export { default as SixKRounded } from './SixKRounded'; +export { default as SixKSharp } from './SixKSharp'; +export { default as SixKTwoTone } from './SixKTwoTone'; +export { default as SixMp } from './SixMp'; +export { default as SixMpOutlined } from './SixMpOutlined'; +export { default as SixMpRounded } from './SixMpRounded'; +export { default as SixMpSharp } from './SixMpSharp'; +export { default as SixMpTwoTone } from './SixMpTwoTone'; +export { default as SixteenMp } from './SixteenMp'; +export { default as SixteenMpOutlined } from './SixteenMpOutlined'; +export { default as SixteenMpRounded } from './SixteenMpRounded'; +export { default as SixteenMpSharp } from './SixteenMpSharp'; +export { default as SixteenMpTwoTone } from './SixteenMpTwoTone'; +export { default as SixtyFps } from './SixtyFps'; +export { default as SixtyFpsOutlined } from './SixtyFpsOutlined'; +export { default as SixtyFpsRounded } from './SixtyFpsRounded'; +export { default as SixtyFpsSelect } from './SixtyFpsSelect'; +export { default as SixtyFpsSelectOutlined } from './SixtyFpsSelectOutlined'; +export { default as SixtyFpsSelectRounded } from './SixtyFpsSelectRounded'; +export { default as SixtyFpsSelectSharp } from './SixtyFpsSelectSharp'; +export { default as SixtyFpsSelectTwoTone } from './SixtyFpsSelectTwoTone'; +export { default as SixtyFpsSharp } from './SixtyFpsSharp'; +export { default as SixtyFpsTwoTone } from './SixtyFpsTwoTone'; +export { default as Skateboarding } from './Skateboarding'; +export { default as SkateboardingOutlined } from './SkateboardingOutlined'; +export { default as SkateboardingRounded } from './SkateboardingRounded'; +export { default as SkateboardingSharp } from './SkateboardingSharp'; +export { default as SkateboardingTwoTone } from './SkateboardingTwoTone'; +export { default as SkipNext } from './SkipNext'; +export { default as SkipNextOutlined } from './SkipNextOutlined'; +export { default as SkipNextRounded } from './SkipNextRounded'; +export { default as SkipNextSharp } from './SkipNextSharp'; +export { default as SkipNextTwoTone } from './SkipNextTwoTone'; +export { default as SkipPrevious } from './SkipPrevious'; +export { default as SkipPreviousOutlined } from './SkipPreviousOutlined'; +export { default as SkipPreviousRounded } from './SkipPreviousRounded'; +export { default as SkipPreviousSharp } from './SkipPreviousSharp'; +export { default as SkipPreviousTwoTone } from './SkipPreviousTwoTone'; +export { default as Sledding } from './Sledding'; +export { default as SleddingOutlined } from './SleddingOutlined'; +export { default as SleddingRounded } from './SleddingRounded'; +export { default as SleddingSharp } from './SleddingSharp'; +export { default as SleddingTwoTone } from './SleddingTwoTone'; +export { default as Slideshow } from './Slideshow'; +export { default as SlideshowOutlined } from './SlideshowOutlined'; +export { default as SlideshowRounded } from './SlideshowRounded'; +export { default as SlideshowSharp } from './SlideshowSharp'; +export { default as SlideshowTwoTone } from './SlideshowTwoTone'; +export { default as SlowMotionVideo } from './SlowMotionVideo'; +export { default as SlowMotionVideoOutlined } from './SlowMotionVideoOutlined'; +export { default as SlowMotionVideoRounded } from './SlowMotionVideoRounded'; +export { default as SlowMotionVideoSharp } from './SlowMotionVideoSharp'; +export { default as SlowMotionVideoTwoTone } from './SlowMotionVideoTwoTone'; +export { default as SmartButton } from './SmartButton'; +export { default as SmartButtonOutlined } from './SmartButtonOutlined'; +export { default as SmartButtonRounded } from './SmartButtonRounded'; +export { default as SmartButtonSharp } from './SmartButtonSharp'; +export { default as SmartButtonTwoTone } from './SmartButtonTwoTone'; +export { default as SmartDisplay } from './SmartDisplay'; +export { default as SmartDisplayOutlined } from './SmartDisplayOutlined'; +export { default as SmartDisplayRounded } from './SmartDisplayRounded'; +export { default as SmartDisplaySharp } from './SmartDisplaySharp'; +export { default as SmartDisplayTwoTone } from './SmartDisplayTwoTone'; +export { default as SmartScreen } from './SmartScreen'; +export { default as SmartScreenOutlined } from './SmartScreenOutlined'; +export { default as SmartScreenRounded } from './SmartScreenRounded'; +export { default as SmartScreenSharp } from './SmartScreenSharp'; +export { default as SmartScreenTwoTone } from './SmartScreenTwoTone'; +export { default as SmartToy } from './SmartToy'; +export { default as SmartToyOutlined } from './SmartToyOutlined'; +export { default as SmartToyRounded } from './SmartToyRounded'; +export { default as SmartToySharp } from './SmartToySharp'; +export { default as SmartToyTwoTone } from './SmartToyTwoTone'; +export { default as Smartphone } from './Smartphone'; +export { default as SmartphoneOutlined } from './SmartphoneOutlined'; +export { default as SmartphoneRounded } from './SmartphoneRounded'; +export { default as SmartphoneSharp } from './SmartphoneSharp'; +export { default as SmartphoneTwoTone } from './SmartphoneTwoTone'; +export { default as SmokeFree } from './SmokeFree'; +export { default as SmokeFreeOutlined } from './SmokeFreeOutlined'; +export { default as SmokeFreeRounded } from './SmokeFreeRounded'; +export { default as SmokeFreeSharp } from './SmokeFreeSharp'; +export { default as SmokeFreeTwoTone } from './SmokeFreeTwoTone'; +export { default as SmokingRooms } from './SmokingRooms'; +export { default as SmokingRoomsOutlined } from './SmokingRoomsOutlined'; +export { default as SmokingRoomsRounded } from './SmokingRoomsRounded'; +export { default as SmokingRoomsSharp } from './SmokingRoomsSharp'; +export { default as SmokingRoomsTwoTone } from './SmokingRoomsTwoTone'; +export { default as Sms } from './Sms'; +export { default as SmsFailed } from './SmsFailed'; +export { default as SmsFailedOutlined } from './SmsFailedOutlined'; +export { default as SmsFailedRounded } from './SmsFailedRounded'; +export { default as SmsFailedSharp } from './SmsFailedSharp'; +export { default as SmsFailedTwoTone } from './SmsFailedTwoTone'; +export { default as SmsOutlined } from './SmsOutlined'; +export { default as SmsRounded } from './SmsRounded'; +export { default as SmsSharp } from './SmsSharp'; +export { default as SmsTwoTone } from './SmsTwoTone'; +export { default as SnippetFolder } from './SnippetFolder'; +export { default as SnippetFolderOutlined } from './SnippetFolderOutlined'; +export { default as SnippetFolderRounded } from './SnippetFolderRounded'; +export { default as SnippetFolderSharp } from './SnippetFolderSharp'; +export { default as SnippetFolderTwoTone } from './SnippetFolderTwoTone'; +export { default as Snooze } from './Snooze'; +export { default as SnoozeOutlined } from './SnoozeOutlined'; +export { default as SnoozeRounded } from './SnoozeRounded'; +export { default as SnoozeSharp } from './SnoozeSharp'; +export { default as SnoozeTwoTone } from './SnoozeTwoTone'; +export { default as Snowboarding } from './Snowboarding'; +export { default as SnowboardingOutlined } from './SnowboardingOutlined'; +export { default as SnowboardingRounded } from './SnowboardingRounded'; +export { default as SnowboardingSharp } from './SnowboardingSharp'; +export { default as SnowboardingTwoTone } from './SnowboardingTwoTone'; +export { default as Snowmobile } from './Snowmobile'; +export { default as SnowmobileOutlined } from './SnowmobileOutlined'; +export { default as SnowmobileRounded } from './SnowmobileRounded'; +export { default as SnowmobileSharp } from './SnowmobileSharp'; +export { default as SnowmobileTwoTone } from './SnowmobileTwoTone'; +export { default as Snowshoeing } from './Snowshoeing'; +export { default as SnowshoeingOutlined } from './SnowshoeingOutlined'; +export { default as SnowshoeingRounded } from './SnowshoeingRounded'; +export { default as SnowshoeingSharp } from './SnowshoeingSharp'; +export { default as SnowshoeingTwoTone } from './SnowshoeingTwoTone'; +export { default as Soap } from './Soap'; +export { default as SoapOutlined } from './SoapOutlined'; +export { default as SoapRounded } from './SoapRounded'; +export { default as SoapSharp } from './SoapSharp'; +export { default as SoapTwoTone } from './SoapTwoTone'; +export { default as SocialDistance } from './SocialDistance'; +export { default as SocialDistanceOutlined } from './SocialDistanceOutlined'; +export { default as SocialDistanceRounded } from './SocialDistanceRounded'; +export { default as SocialDistanceSharp } from './SocialDistanceSharp'; +export { default as SocialDistanceTwoTone } from './SocialDistanceTwoTone'; +export { default as Sort } from './Sort'; +export { default as SortByAlpha } from './SortByAlpha'; +export { default as SortByAlphaOutlined } from './SortByAlphaOutlined'; +export { default as SortByAlphaRounded } from './SortByAlphaRounded'; +export { default as SortByAlphaSharp } from './SortByAlphaSharp'; +export { default as SortByAlphaTwoTone } from './SortByAlphaTwoTone'; +export { default as SortOutlined } from './SortOutlined'; +export { default as SortRounded } from './SortRounded'; +export { default as SortSharp } from './SortSharp'; +export { default as SortTwoTone } from './SortTwoTone'; +export { default as Source } from './Source'; +export { default as SourceOutlined } from './SourceOutlined'; +export { default as SourceRounded } from './SourceRounded'; +export { default as SourceSharp } from './SourceSharp'; +export { default as SourceTwoTone } from './SourceTwoTone'; +export { default as South } from './South'; +export { default as SouthEast } from './SouthEast'; +export { default as SouthEastOutlined } from './SouthEastOutlined'; +export { default as SouthEastRounded } from './SouthEastRounded'; +export { default as SouthEastSharp } from './SouthEastSharp'; +export { default as SouthEastTwoTone } from './SouthEastTwoTone'; +export { default as SouthOutlined } from './SouthOutlined'; +export { default as SouthRounded } from './SouthRounded'; +export { default as SouthSharp } from './SouthSharp'; +export { default as SouthTwoTone } from './SouthTwoTone'; +export { default as SouthWest } from './SouthWest'; +export { default as SouthWestOutlined } from './SouthWestOutlined'; +export { default as SouthWestRounded } from './SouthWestRounded'; +export { default as SouthWestSharp } from './SouthWestSharp'; +export { default as SouthWestTwoTone } from './SouthWestTwoTone'; +export { default as Spa } from './Spa'; +export { default as SpaOutlined } from './SpaOutlined'; +export { default as SpaRounded } from './SpaRounded'; +export { default as SpaSharp } from './SpaSharp'; +export { default as SpaTwoTone } from './SpaTwoTone'; +export { default as SpaceBar } from './SpaceBar'; +export { default as SpaceBarOutlined } from './SpaceBarOutlined'; +export { default as SpaceBarRounded } from './SpaceBarRounded'; +export { default as SpaceBarSharp } from './SpaceBarSharp'; +export { default as SpaceBarTwoTone } from './SpaceBarTwoTone'; +export { default as Speaker } from './Speaker'; +export { default as SpeakerGroup } from './SpeakerGroup'; +export { default as SpeakerGroupOutlined } from './SpeakerGroupOutlined'; +export { default as SpeakerGroupRounded } from './SpeakerGroupRounded'; +export { default as SpeakerGroupSharp } from './SpeakerGroupSharp'; +export { default as SpeakerGroupTwoTone } from './SpeakerGroupTwoTone'; +export { default as SpeakerNotes } from './SpeakerNotes'; +export { default as SpeakerNotesOff } from './SpeakerNotesOff'; +export { default as SpeakerNotesOffOutlined } from './SpeakerNotesOffOutlined'; +export { default as SpeakerNotesOffRounded } from './SpeakerNotesOffRounded'; +export { default as SpeakerNotesOffSharp } from './SpeakerNotesOffSharp'; +export { default as SpeakerNotesOffTwoTone } from './SpeakerNotesOffTwoTone'; +export { default as SpeakerNotesOutlined } from './SpeakerNotesOutlined'; +export { default as SpeakerNotesRounded } from './SpeakerNotesRounded'; +export { default as SpeakerNotesSharp } from './SpeakerNotesSharp'; +export { default as SpeakerNotesTwoTone } from './SpeakerNotesTwoTone'; +export { default as SpeakerOutlined } from './SpeakerOutlined'; +export { default as SpeakerPhone } from './SpeakerPhone'; +export { default as SpeakerPhoneOutlined } from './SpeakerPhoneOutlined'; +export { default as SpeakerPhoneRounded } from './SpeakerPhoneRounded'; +export { default as SpeakerPhoneSharp } from './SpeakerPhoneSharp'; +export { default as SpeakerPhoneTwoTone } from './SpeakerPhoneTwoTone'; +export { default as SpeakerRounded } from './SpeakerRounded'; +export { default as SpeakerSharp } from './SpeakerSharp'; +export { default as SpeakerTwoTone } from './SpeakerTwoTone'; +export { default as Speed } from './Speed'; +export { default as SpeedOutlined } from './SpeedOutlined'; +export { default as SpeedRounded } from './SpeedRounded'; +export { default as SpeedSharp } from './SpeedSharp'; +export { default as SpeedTwoTone } from './SpeedTwoTone'; +export { default as Spellcheck } from './Spellcheck'; +export { default as SpellcheckOutlined } from './SpellcheckOutlined'; +export { default as SpellcheckRounded } from './SpellcheckRounded'; +export { default as SpellcheckSharp } from './SpellcheckSharp'; +export { default as SpellcheckTwoTone } from './SpellcheckTwoTone'; +export { default as Splitscreen } from './Splitscreen'; +export { default as SplitscreenOutlined } from './SplitscreenOutlined'; +export { default as SplitscreenRounded } from './SplitscreenRounded'; +export { default as SplitscreenSharp } from './SplitscreenSharp'; +export { default as SplitscreenTwoTone } from './SplitscreenTwoTone'; +export { default as Sports } from './Sports'; +export { default as SportsBar } from './SportsBar'; +export { default as SportsBarOutlined } from './SportsBarOutlined'; +export { default as SportsBarRounded } from './SportsBarRounded'; +export { default as SportsBarSharp } from './SportsBarSharp'; +export { default as SportsBarTwoTone } from './SportsBarTwoTone'; +export { default as SportsBaseball } from './SportsBaseball'; +export { default as SportsBaseballOutlined } from './SportsBaseballOutlined'; +export { default as SportsBaseballRounded } from './SportsBaseballRounded'; +export { default as SportsBaseballSharp } from './SportsBaseballSharp'; +export { default as SportsBaseballTwoTone } from './SportsBaseballTwoTone'; +export { default as SportsBasketball } from './SportsBasketball'; +export { default as SportsBasketballOutlined } from './SportsBasketballOutlined'; +export { default as SportsBasketballRounded } from './SportsBasketballRounded'; +export { default as SportsBasketballSharp } from './SportsBasketballSharp'; +export { default as SportsBasketballTwoTone } from './SportsBasketballTwoTone'; +export { default as SportsCricket } from './SportsCricket'; +export { default as SportsCricketOutlined } from './SportsCricketOutlined'; +export { default as SportsCricketRounded } from './SportsCricketRounded'; +export { default as SportsCricketSharp } from './SportsCricketSharp'; +export { default as SportsCricketTwoTone } from './SportsCricketTwoTone'; +export { default as SportsEsports } from './SportsEsports'; +export { default as SportsEsportsOutlined } from './SportsEsportsOutlined'; +export { default as SportsEsportsRounded } from './SportsEsportsRounded'; +export { default as SportsEsportsSharp } from './SportsEsportsSharp'; +export { default as SportsEsportsTwoTone } from './SportsEsportsTwoTone'; +export { default as SportsFootball } from './SportsFootball'; +export { default as SportsFootballOutlined } from './SportsFootballOutlined'; +export { default as SportsFootballRounded } from './SportsFootballRounded'; +export { default as SportsFootballSharp } from './SportsFootballSharp'; +export { default as SportsFootballTwoTone } from './SportsFootballTwoTone'; +export { default as SportsGolf } from './SportsGolf'; +export { default as SportsGolfOutlined } from './SportsGolfOutlined'; +export { default as SportsGolfRounded } from './SportsGolfRounded'; +export { default as SportsGolfSharp } from './SportsGolfSharp'; +export { default as SportsGolfTwoTone } from './SportsGolfTwoTone'; +export { default as SportsHandball } from './SportsHandball'; +export { default as SportsHandballOutlined } from './SportsHandballOutlined'; +export { default as SportsHandballRounded } from './SportsHandballRounded'; +export { default as SportsHandballSharp } from './SportsHandballSharp'; +export { default as SportsHandballTwoTone } from './SportsHandballTwoTone'; +export { default as SportsHockey } from './SportsHockey'; +export { default as SportsHockeyOutlined } from './SportsHockeyOutlined'; +export { default as SportsHockeyRounded } from './SportsHockeyRounded'; +export { default as SportsHockeySharp } from './SportsHockeySharp'; +export { default as SportsHockeyTwoTone } from './SportsHockeyTwoTone'; +export { default as SportsKabaddi } from './SportsKabaddi'; +export { default as SportsKabaddiOutlined } from './SportsKabaddiOutlined'; +export { default as SportsKabaddiRounded } from './SportsKabaddiRounded'; +export { default as SportsKabaddiSharp } from './SportsKabaddiSharp'; +export { default as SportsKabaddiTwoTone } from './SportsKabaddiTwoTone'; +export { default as SportsMma } from './SportsMma'; +export { default as SportsMmaOutlined } from './SportsMmaOutlined'; +export { default as SportsMmaRounded } from './SportsMmaRounded'; +export { default as SportsMmaSharp } from './SportsMmaSharp'; +export { default as SportsMmaTwoTone } from './SportsMmaTwoTone'; +export { default as SportsMotorsports } from './SportsMotorsports'; +export { default as SportsMotorsportsOutlined } from './SportsMotorsportsOutlined'; +export { default as SportsMotorsportsRounded } from './SportsMotorsportsRounded'; +export { default as SportsMotorsportsSharp } from './SportsMotorsportsSharp'; +export { default as SportsMotorsportsTwoTone } from './SportsMotorsportsTwoTone'; +export { default as SportsOutlined } from './SportsOutlined'; +export { default as SportsRounded } from './SportsRounded'; +export { default as SportsRugby } from './SportsRugby'; +export { default as SportsRugbyOutlined } from './SportsRugbyOutlined'; +export { default as SportsRugbyRounded } from './SportsRugbyRounded'; +export { default as SportsRugbySharp } from './SportsRugbySharp'; +export { default as SportsRugbyTwoTone } from './SportsRugbyTwoTone'; +export { default as SportsScore } from './SportsScore'; +export { default as SportsScoreOutlined } from './SportsScoreOutlined'; +export { default as SportsScoreRounded } from './SportsScoreRounded'; +export { default as SportsScoreSharp } from './SportsScoreSharp'; +export { default as SportsScoreTwoTone } from './SportsScoreTwoTone'; +export { default as SportsSharp } from './SportsSharp'; +export { default as SportsSoccer } from './SportsSoccer'; +export { default as SportsSoccerOutlined } from './SportsSoccerOutlined'; +export { default as SportsSoccerRounded } from './SportsSoccerRounded'; +export { default as SportsSoccerSharp } from './SportsSoccerSharp'; +export { default as SportsSoccerTwoTone } from './SportsSoccerTwoTone'; +export { default as SportsTennis } from './SportsTennis'; +export { default as SportsTennisOutlined } from './SportsTennisOutlined'; +export { default as SportsTennisRounded } from './SportsTennisRounded'; +export { default as SportsTennisSharp } from './SportsTennisSharp'; +export { default as SportsTennisTwoTone } from './SportsTennisTwoTone'; +export { default as SportsTwoTone } from './SportsTwoTone'; +export { default as SportsVolleyball } from './SportsVolleyball'; +export { default as SportsVolleyballOutlined } from './SportsVolleyballOutlined'; +export { default as SportsVolleyballRounded } from './SportsVolleyballRounded'; +export { default as SportsVolleyballSharp } from './SportsVolleyballSharp'; +export { default as SportsVolleyballTwoTone } from './SportsVolleyballTwoTone'; +export { default as SquareFoot } from './SquareFoot'; +export { default as SquareFootOutlined } from './SquareFootOutlined'; +export { default as SquareFootRounded } from './SquareFootRounded'; +export { default as SquareFootSharp } from './SquareFootSharp'; +export { default as SquareFootTwoTone } from './SquareFootTwoTone'; +export { default as StackedBarChart } from './StackedBarChart'; +export { default as StackedBarChartOutlined } from './StackedBarChartOutlined'; +export { default as StackedBarChartRounded } from './StackedBarChartRounded'; +export { default as StackedBarChartSharp } from './StackedBarChartSharp'; +export { default as StackedBarChartTwoTone } from './StackedBarChartTwoTone'; +export { default as StackedLineChart } from './StackedLineChart'; +export { default as StackedLineChartOutlined } from './StackedLineChartOutlined'; +export { default as StackedLineChartRounded } from './StackedLineChartRounded'; +export { default as StackedLineChartSharp } from './StackedLineChartSharp'; +export { default as StackedLineChartTwoTone } from './StackedLineChartTwoTone'; +export { default as Stairs } from './Stairs'; +export { default as StairsOutlined } from './StairsOutlined'; +export { default as StairsRounded } from './StairsRounded'; +export { default as StairsSharp } from './StairsSharp'; +export { default as StairsTwoTone } from './StairsTwoTone'; +export { default as Star } from './Star'; +export { default as StarBorder } from './StarBorder'; +export { default as StarBorderOutlined } from './StarBorderOutlined'; +export { default as StarBorderPurple500 } from './StarBorderPurple500'; +export { default as StarBorderPurple500Outlined } from './StarBorderPurple500Outlined'; +export { default as StarBorderPurple500Rounded } from './StarBorderPurple500Rounded'; +export { default as StarBorderPurple500Sharp } from './StarBorderPurple500Sharp'; +export { default as StarBorderPurple500TwoTone } from './StarBorderPurple500TwoTone'; +export { default as StarBorderRounded } from './StarBorderRounded'; +export { default as StarBorderSharp } from './StarBorderSharp'; +export { default as StarBorderTwoTone } from './StarBorderTwoTone'; +export { default as StarHalf } from './StarHalf'; +export { default as StarHalfOutlined } from './StarHalfOutlined'; +export { default as StarHalfRounded } from './StarHalfRounded'; +export { default as StarHalfSharp } from './StarHalfSharp'; +export { default as StarHalfTwoTone } from './StarHalfTwoTone'; +export { default as StarOutline } from './StarOutline'; +export { default as StarOutlineOutlined } from './StarOutlineOutlined'; +export { default as StarOutlineRounded } from './StarOutlineRounded'; +export { default as StarOutlineSharp } from './StarOutlineSharp'; +export { default as StarOutlineTwoTone } from './StarOutlineTwoTone'; +export { default as StarOutlined } from './StarOutlined'; +export { default as StarPurple500 } from './StarPurple500'; +export { default as StarPurple500Outlined } from './StarPurple500Outlined'; +export { default as StarPurple500Rounded } from './StarPurple500Rounded'; +export { default as StarPurple500Sharp } from './StarPurple500Sharp'; +export { default as StarPurple500TwoTone } from './StarPurple500TwoTone'; +export { default as StarRate } from './StarRate'; +export { default as StarRateOutlined } from './StarRateOutlined'; +export { default as StarRateRounded } from './StarRateRounded'; +export { default as StarRateSharp } from './StarRateSharp'; +export { default as StarRateTwoTone } from './StarRateTwoTone'; +export { default as StarRounded } from './StarRounded'; +export { default as StarSharp } from './StarSharp'; +export { default as StarTwoTone } from './StarTwoTone'; +export { default as Stars } from './Stars'; +export { default as StarsOutlined } from './StarsOutlined'; +export { default as StarsRounded } from './StarsRounded'; +export { default as StarsSharp } from './StarsSharp'; +export { default as StarsTwoTone } from './StarsTwoTone'; +export { default as StayCurrentLandscape } from './StayCurrentLandscape'; +export { default as StayCurrentLandscapeOutlined } from './StayCurrentLandscapeOutlined'; +export { default as StayCurrentLandscapeRounded } from './StayCurrentLandscapeRounded'; +export { default as StayCurrentLandscapeSharp } from './StayCurrentLandscapeSharp'; +export { default as StayCurrentLandscapeTwoTone } from './StayCurrentLandscapeTwoTone'; +export { default as StayCurrentPortrait } from './StayCurrentPortrait'; +export { default as StayCurrentPortraitOutlined } from './StayCurrentPortraitOutlined'; +export { default as StayCurrentPortraitRounded } from './StayCurrentPortraitRounded'; +export { default as StayCurrentPortraitSharp } from './StayCurrentPortraitSharp'; +export { default as StayCurrentPortraitTwoTone } from './StayCurrentPortraitTwoTone'; +export { default as StayPrimaryLandscape } from './StayPrimaryLandscape'; +export { default as StayPrimaryLandscapeOutlined } from './StayPrimaryLandscapeOutlined'; +export { default as StayPrimaryLandscapeRounded } from './StayPrimaryLandscapeRounded'; +export { default as StayPrimaryLandscapeSharp } from './StayPrimaryLandscapeSharp'; +export { default as StayPrimaryLandscapeTwoTone } from './StayPrimaryLandscapeTwoTone'; +export { default as StayPrimaryPortrait } from './StayPrimaryPortrait'; +export { default as StayPrimaryPortraitOutlined } from './StayPrimaryPortraitOutlined'; +export { default as StayPrimaryPortraitRounded } from './StayPrimaryPortraitRounded'; +export { default as StayPrimaryPortraitSharp } from './StayPrimaryPortraitSharp'; +export { default as StayPrimaryPortraitTwoTone } from './StayPrimaryPortraitTwoTone'; +export { default as StickyNote2 } from './StickyNote2'; +export { default as StickyNote2Outlined } from './StickyNote2Outlined'; +export { default as StickyNote2Rounded } from './StickyNote2Rounded'; +export { default as StickyNote2Sharp } from './StickyNote2Sharp'; +export { default as StickyNote2TwoTone } from './StickyNote2TwoTone'; +export { default as Stop } from './Stop'; +export { default as StopCircle } from './StopCircle'; +export { default as StopCircleOutlined } from './StopCircleOutlined'; +export { default as StopCircleRounded } from './StopCircleRounded'; +export { default as StopCircleSharp } from './StopCircleSharp'; +export { default as StopCircleTwoTone } from './StopCircleTwoTone'; +export { default as StopOutlined } from './StopOutlined'; +export { default as StopRounded } from './StopRounded'; +export { default as StopScreenShare } from './StopScreenShare'; +export { default as StopScreenShareOutlined } from './StopScreenShareOutlined'; +export { default as StopScreenShareRounded } from './StopScreenShareRounded'; +export { default as StopScreenShareSharp } from './StopScreenShareSharp'; +export { default as StopScreenShareTwoTone } from './StopScreenShareTwoTone'; +export { default as StopSharp } from './StopSharp'; +export { default as StopTwoTone } from './StopTwoTone'; +export { default as Storage } from './Storage'; +export { default as StorageOutlined } from './StorageOutlined'; +export { default as StorageRounded } from './StorageRounded'; +export { default as StorageSharp } from './StorageSharp'; +export { default as StorageTwoTone } from './StorageTwoTone'; +export { default as Store } from './Store'; +export { default as StoreMallDirectory } from './StoreMallDirectory'; +export { default as StoreMallDirectoryOutlined } from './StoreMallDirectoryOutlined'; +export { default as StoreMallDirectoryRounded } from './StoreMallDirectoryRounded'; +export { default as StoreMallDirectorySharp } from './StoreMallDirectorySharp'; +export { default as StoreMallDirectoryTwoTone } from './StoreMallDirectoryTwoTone'; +export { default as StoreOutlined } from './StoreOutlined'; +export { default as StoreRounded } from './StoreRounded'; +export { default as StoreSharp } from './StoreSharp'; +export { default as StoreTwoTone } from './StoreTwoTone'; +export { default as Storefront } from './Storefront'; +export { default as StorefrontOutlined } from './StorefrontOutlined'; +export { default as StorefrontRounded } from './StorefrontRounded'; +export { default as StorefrontSharp } from './StorefrontSharp'; +export { default as StorefrontTwoTone } from './StorefrontTwoTone'; +export { default as Storm } from './Storm'; +export { default as StormOutlined } from './StormOutlined'; +export { default as StormRounded } from './StormRounded'; +export { default as StormSharp } from './StormSharp'; +export { default as StormTwoTone } from './StormTwoTone'; +export { default as Straighten } from './Straighten'; +export { default as StraightenOutlined } from './StraightenOutlined'; +export { default as StraightenRounded } from './StraightenRounded'; +export { default as StraightenSharp } from './StraightenSharp'; +export { default as StraightenTwoTone } from './StraightenTwoTone'; +export { default as Stream } from './Stream'; +export { default as StreamOutlined } from './StreamOutlined'; +export { default as StreamRounded } from './StreamRounded'; +export { default as StreamSharp } from './StreamSharp'; +export { default as StreamTwoTone } from './StreamTwoTone'; +export { default as Streetview } from './Streetview'; +export { default as StreetviewOutlined } from './StreetviewOutlined'; +export { default as StreetviewRounded } from './StreetviewRounded'; +export { default as StreetviewSharp } from './StreetviewSharp'; +export { default as StreetviewTwoTone } from './StreetviewTwoTone'; +export { default as StrikethroughS } from './StrikethroughS'; +export { default as StrikethroughSOutlined } from './StrikethroughSOutlined'; +export { default as StrikethroughSRounded } from './StrikethroughSRounded'; +export { default as StrikethroughSSharp } from './StrikethroughSSharp'; +export { default as StrikethroughSTwoTone } from './StrikethroughSTwoTone'; +export { default as Stroller } from './Stroller'; +export { default as StrollerOutlined } from './StrollerOutlined'; +export { default as StrollerRounded } from './StrollerRounded'; +export { default as StrollerSharp } from './StrollerSharp'; +export { default as StrollerTwoTone } from './StrollerTwoTone'; +export { default as Style } from './Style'; +export { default as StyleOutlined } from './StyleOutlined'; +export { default as StyleRounded } from './StyleRounded'; +export { default as StyleSharp } from './StyleSharp'; +export { default as StyleTwoTone } from './StyleTwoTone'; +export { default as SubdirectoryArrowLeft } from './SubdirectoryArrowLeft'; +export { default as SubdirectoryArrowLeftOutlined } from './SubdirectoryArrowLeftOutlined'; +export { default as SubdirectoryArrowLeftRounded } from './SubdirectoryArrowLeftRounded'; +export { default as SubdirectoryArrowLeftSharp } from './SubdirectoryArrowLeftSharp'; +export { default as SubdirectoryArrowLeftTwoTone } from './SubdirectoryArrowLeftTwoTone'; +export { default as SubdirectoryArrowRight } from './SubdirectoryArrowRight'; +export { default as SubdirectoryArrowRightOutlined } from './SubdirectoryArrowRightOutlined'; +export { default as SubdirectoryArrowRightRounded } from './SubdirectoryArrowRightRounded'; +export { default as SubdirectoryArrowRightSharp } from './SubdirectoryArrowRightSharp'; +export { default as SubdirectoryArrowRightTwoTone } from './SubdirectoryArrowRightTwoTone'; +export { default as Subject } from './Subject'; +export { default as SubjectOutlined } from './SubjectOutlined'; +export { default as SubjectRounded } from './SubjectRounded'; +export { default as SubjectSharp } from './SubjectSharp'; +export { default as SubjectTwoTone } from './SubjectTwoTone'; +export { default as Subscript } from './Subscript'; +export { default as SubscriptOutlined } from './SubscriptOutlined'; +export { default as SubscriptRounded } from './SubscriptRounded'; +export { default as SubscriptSharp } from './SubscriptSharp'; +export { default as SubscriptTwoTone } from './SubscriptTwoTone'; +export { default as Subscriptions } from './Subscriptions'; +export { default as SubscriptionsOutlined } from './SubscriptionsOutlined'; +export { default as SubscriptionsRounded } from './SubscriptionsRounded'; +export { default as SubscriptionsSharp } from './SubscriptionsSharp'; +export { default as SubscriptionsTwoTone } from './SubscriptionsTwoTone'; +export { default as Subtitles } from './Subtitles'; +export { default as SubtitlesOff } from './SubtitlesOff'; +export { default as SubtitlesOffOutlined } from './SubtitlesOffOutlined'; +export { default as SubtitlesOffRounded } from './SubtitlesOffRounded'; +export { default as SubtitlesOffSharp } from './SubtitlesOffSharp'; +export { default as SubtitlesOffTwoTone } from './SubtitlesOffTwoTone'; +export { default as SubtitlesOutlined } from './SubtitlesOutlined'; +export { default as SubtitlesRounded } from './SubtitlesRounded'; +export { default as SubtitlesSharp } from './SubtitlesSharp'; +export { default as SubtitlesTwoTone } from './SubtitlesTwoTone'; +export { default as Subway } from './Subway'; +export { default as SubwayOutlined } from './SubwayOutlined'; +export { default as SubwayRounded } from './SubwayRounded'; +export { default as SubwaySharp } from './SubwaySharp'; +export { default as SubwayTwoTone } from './SubwayTwoTone'; +export { default as Summarize } from './Summarize'; +export { default as SummarizeOutlined } from './SummarizeOutlined'; +export { default as SummarizeRounded } from './SummarizeRounded'; +export { default as SummarizeSharp } from './SummarizeSharp'; +export { default as SummarizeTwoTone } from './SummarizeTwoTone'; +export { default as Superscript } from './Superscript'; +export { default as SuperscriptOutlined } from './SuperscriptOutlined'; +export { default as SuperscriptRounded } from './SuperscriptRounded'; +export { default as SuperscriptSharp } from './SuperscriptSharp'; +export { default as SuperscriptTwoTone } from './SuperscriptTwoTone'; +export { default as SupervisedUserCircle } from './SupervisedUserCircle'; +export { default as SupervisedUserCircleOutlined } from './SupervisedUserCircleOutlined'; +export { default as SupervisedUserCircleRounded } from './SupervisedUserCircleRounded'; +export { default as SupervisedUserCircleSharp } from './SupervisedUserCircleSharp'; +export { default as SupervisedUserCircleTwoTone } from './SupervisedUserCircleTwoTone'; +export { default as SupervisorAccount } from './SupervisorAccount'; +export { default as SupervisorAccountOutlined } from './SupervisorAccountOutlined'; +export { default as SupervisorAccountRounded } from './SupervisorAccountRounded'; +export { default as SupervisorAccountSharp } from './SupervisorAccountSharp'; +export { default as SupervisorAccountTwoTone } from './SupervisorAccountTwoTone'; +export { default as Support } from './Support'; +export { default as SupportAgent } from './SupportAgent'; +export { default as SupportAgentOutlined } from './SupportAgentOutlined'; +export { default as SupportAgentRounded } from './SupportAgentRounded'; +export { default as SupportAgentSharp } from './SupportAgentSharp'; +export { default as SupportAgentTwoTone } from './SupportAgentTwoTone'; +export { default as SupportOutlined } from './SupportOutlined'; +export { default as SupportRounded } from './SupportRounded'; +export { default as SupportSharp } from './SupportSharp'; +export { default as SupportTwoTone } from './SupportTwoTone'; +export { default as Surfing } from './Surfing'; +export { default as SurfingOutlined } from './SurfingOutlined'; +export { default as SurfingRounded } from './SurfingRounded'; +export { default as SurfingSharp } from './SurfingSharp'; +export { default as SurfingTwoTone } from './SurfingTwoTone'; +export { default as SurroundSound } from './SurroundSound'; +export { default as SurroundSoundOutlined } from './SurroundSoundOutlined'; +export { default as SurroundSoundRounded } from './SurroundSoundRounded'; +export { default as SurroundSoundSharp } from './SurroundSoundSharp'; +export { default as SurroundSoundTwoTone } from './SurroundSoundTwoTone'; +export { default as SwapCalls } from './SwapCalls'; +export { default as SwapCallsOutlined } from './SwapCallsOutlined'; +export { default as SwapCallsRounded } from './SwapCallsRounded'; +export { default as SwapCallsSharp } from './SwapCallsSharp'; +export { default as SwapCallsTwoTone } from './SwapCallsTwoTone'; +export { default as SwapHoriz } from './SwapHoriz'; +export { default as SwapHorizOutlined } from './SwapHorizOutlined'; +export { default as SwapHorizRounded } from './SwapHorizRounded'; +export { default as SwapHorizSharp } from './SwapHorizSharp'; +export { default as SwapHorizTwoTone } from './SwapHorizTwoTone'; +export { default as SwapHorizontalCircle } from './SwapHorizontalCircle'; +export { default as SwapHorizontalCircleOutlined } from './SwapHorizontalCircleOutlined'; +export { default as SwapHorizontalCircleRounded } from './SwapHorizontalCircleRounded'; +export { default as SwapHorizontalCircleSharp } from './SwapHorizontalCircleSharp'; +export { default as SwapHorizontalCircleTwoTone } from './SwapHorizontalCircleTwoTone'; +export { default as SwapVert } from './SwapVert'; +export { default as SwapVertOutlined } from './SwapVertOutlined'; +export { default as SwapVertRounded } from './SwapVertRounded'; +export { default as SwapVertSharp } from './SwapVertSharp'; +export { default as SwapVertTwoTone } from './SwapVertTwoTone'; +export { default as SwapVerticalCircle } from './SwapVerticalCircle'; +export { default as SwapVerticalCircleOutlined } from './SwapVerticalCircleOutlined'; +export { default as SwapVerticalCircleRounded } from './SwapVerticalCircleRounded'; +export { default as SwapVerticalCircleSharp } from './SwapVerticalCircleSharp'; +export { default as SwapVerticalCircleTwoTone } from './SwapVerticalCircleTwoTone'; +export { default as Swipe } from './Swipe'; +export { default as SwipeOutlined } from './SwipeOutlined'; +export { default as SwipeRounded } from './SwipeRounded'; +export { default as SwipeSharp } from './SwipeSharp'; +export { default as SwipeTwoTone } from './SwipeTwoTone'; +export { default as SwitchAccount } from './SwitchAccount'; +export { default as SwitchAccountOutlined } from './SwitchAccountOutlined'; +export { default as SwitchAccountRounded } from './SwitchAccountRounded'; +export { default as SwitchAccountSharp } from './SwitchAccountSharp'; +export { default as SwitchAccountTwoTone } from './SwitchAccountTwoTone'; +export { default as SwitchCamera } from './SwitchCamera'; +export { default as SwitchCameraOutlined } from './SwitchCameraOutlined'; +export { default as SwitchCameraRounded } from './SwitchCameraRounded'; +export { default as SwitchCameraSharp } from './SwitchCameraSharp'; +export { default as SwitchCameraTwoTone } from './SwitchCameraTwoTone'; +export { default as SwitchLeft } from './SwitchLeft'; +export { default as SwitchLeftOutlined } from './SwitchLeftOutlined'; +export { default as SwitchLeftRounded } from './SwitchLeftRounded'; +export { default as SwitchLeftSharp } from './SwitchLeftSharp'; +export { default as SwitchLeftTwoTone } from './SwitchLeftTwoTone'; +export { default as SwitchRight } from './SwitchRight'; +export { default as SwitchRightOutlined } from './SwitchRightOutlined'; +export { default as SwitchRightRounded } from './SwitchRightRounded'; +export { default as SwitchRightSharp } from './SwitchRightSharp'; +export { default as SwitchRightTwoTone } from './SwitchRightTwoTone'; +export { default as SwitchVideo } from './SwitchVideo'; +export { default as SwitchVideoOutlined } from './SwitchVideoOutlined'; +export { default as SwitchVideoRounded } from './SwitchVideoRounded'; +export { default as SwitchVideoSharp } from './SwitchVideoSharp'; +export { default as SwitchVideoTwoTone } from './SwitchVideoTwoTone'; +export { default as Sync } from './Sync'; +export { default as SyncAlt } from './SyncAlt'; +export { default as SyncAltOutlined } from './SyncAltOutlined'; +export { default as SyncAltRounded } from './SyncAltRounded'; +export { default as SyncAltSharp } from './SyncAltSharp'; +export { default as SyncAltTwoTone } from './SyncAltTwoTone'; +export { default as SyncDisabled } from './SyncDisabled'; +export { default as SyncDisabledOutlined } from './SyncDisabledOutlined'; +export { default as SyncDisabledRounded } from './SyncDisabledRounded'; +export { default as SyncDisabledSharp } from './SyncDisabledSharp'; +export { default as SyncDisabledTwoTone } from './SyncDisabledTwoTone'; +export { default as SyncOutlined } from './SyncOutlined'; +export { default as SyncProblem } from './SyncProblem'; +export { default as SyncProblemOutlined } from './SyncProblemOutlined'; +export { default as SyncProblemRounded } from './SyncProblemRounded'; +export { default as SyncProblemSharp } from './SyncProblemSharp'; +export { default as SyncProblemTwoTone } from './SyncProblemTwoTone'; +export { default as SyncRounded } from './SyncRounded'; +export { default as SyncSharp } from './SyncSharp'; +export { default as SyncTwoTone } from './SyncTwoTone'; +export { default as SystemSecurityUpdate } from './SystemSecurityUpdate'; +export { default as SystemSecurityUpdateGood } from './SystemSecurityUpdateGood'; +export { default as SystemSecurityUpdateGoodOutlined } from './SystemSecurityUpdateGoodOutlined'; +export { default as SystemSecurityUpdateGoodRounded } from './SystemSecurityUpdateGoodRounded'; +export { default as SystemSecurityUpdateGoodSharp } from './SystemSecurityUpdateGoodSharp'; +export { default as SystemSecurityUpdateGoodTwoTone } from './SystemSecurityUpdateGoodTwoTone'; +export { default as SystemSecurityUpdateOutlined } from './SystemSecurityUpdateOutlined'; +export { default as SystemSecurityUpdateRounded } from './SystemSecurityUpdateRounded'; +export { default as SystemSecurityUpdateSharp } from './SystemSecurityUpdateSharp'; +export { default as SystemSecurityUpdateTwoTone } from './SystemSecurityUpdateTwoTone'; +export { default as SystemSecurityUpdateWarning } from './SystemSecurityUpdateWarning'; +export { default as SystemSecurityUpdateWarningOutlined } from './SystemSecurityUpdateWarningOutlined'; +export { default as SystemSecurityUpdateWarningRounded } from './SystemSecurityUpdateWarningRounded'; +export { default as SystemSecurityUpdateWarningSharp } from './SystemSecurityUpdateWarningSharp'; +export { default as SystemSecurityUpdateWarningTwoTone } from './SystemSecurityUpdateWarningTwoTone'; +export { default as SystemUpdate } from './SystemUpdate'; +export { default as SystemUpdateAlt } from './SystemUpdateAlt'; +export { default as SystemUpdateAltOutlined } from './SystemUpdateAltOutlined'; +export { default as SystemUpdateAltRounded } from './SystemUpdateAltRounded'; +export { default as SystemUpdateAltSharp } from './SystemUpdateAltSharp'; +export { default as SystemUpdateAltTwoTone } from './SystemUpdateAltTwoTone'; +export { default as SystemUpdateOutlined } from './SystemUpdateOutlined'; +export { default as SystemUpdateRounded } from './SystemUpdateRounded'; +export { default as SystemUpdateSharp } from './SystemUpdateSharp'; +export { default as SystemUpdateTwoTone } from './SystemUpdateTwoTone'; +export { default as Tab } from './Tab'; +export { default as TabOutlined } from './TabOutlined'; +export { default as TabRounded } from './TabRounded'; +export { default as TabSharp } from './TabSharp'; +export { default as TabTwoTone } from './TabTwoTone'; +export { default as TabUnselected } from './TabUnselected'; +export { default as TabUnselectedOutlined } from './TabUnselectedOutlined'; +export { default as TabUnselectedRounded } from './TabUnselectedRounded'; +export { default as TabUnselectedSharp } from './TabUnselectedSharp'; +export { default as TabUnselectedTwoTone } from './TabUnselectedTwoTone'; +export { default as TableChart } from './TableChart'; +export { default as TableChartOutlined } from './TableChartOutlined'; +export { default as TableChartRounded } from './TableChartRounded'; +export { default as TableChartSharp } from './TableChartSharp'; +export { default as TableChartTwoTone } from './TableChartTwoTone'; +export { default as TableRows } from './TableRows'; +export { default as TableRowsOutlined } from './TableRowsOutlined'; +export { default as TableRowsRounded } from './TableRowsRounded'; +export { default as TableRowsSharp } from './TableRowsSharp'; +export { default as TableRowsTwoTone } from './TableRowsTwoTone'; +export { default as TableView } from './TableView'; +export { default as TableViewOutlined } from './TableViewOutlined'; +export { default as TableViewRounded } from './TableViewRounded'; +export { default as TableViewSharp } from './TableViewSharp'; +export { default as TableViewTwoTone } from './TableViewTwoTone'; +export { default as Tablet } from './Tablet'; +export { default as TabletAndroid } from './TabletAndroid'; +export { default as TabletAndroidOutlined } from './TabletAndroidOutlined'; +export { default as TabletAndroidRounded } from './TabletAndroidRounded'; +export { default as TabletAndroidSharp } from './TabletAndroidSharp'; +export { default as TabletAndroidTwoTone } from './TabletAndroidTwoTone'; +export { default as TabletMac } from './TabletMac'; +export { default as TabletMacOutlined } from './TabletMacOutlined'; +export { default as TabletMacRounded } from './TabletMacRounded'; +export { default as TabletMacSharp } from './TabletMacSharp'; +export { default as TabletMacTwoTone } from './TabletMacTwoTone'; +export { default as TabletOutlined } from './TabletOutlined'; +export { default as TabletRounded } from './TabletRounded'; +export { default as TabletSharp } from './TabletSharp'; +export { default as TabletTwoTone } from './TabletTwoTone'; +export { default as Tag } from './Tag'; +export { default as TagFaces } from './TagFaces'; +export { default as TagFacesOutlined } from './TagFacesOutlined'; +export { default as TagFacesRounded } from './TagFacesRounded'; +export { default as TagFacesSharp } from './TagFacesSharp'; +export { default as TagFacesTwoTone } from './TagFacesTwoTone'; +export { default as TagOutlined } from './TagOutlined'; +export { default as TagRounded } from './TagRounded'; +export { default as TagSharp } from './TagSharp'; +export { default as TagTwoTone } from './TagTwoTone'; +export { default as TakeoutDining } from './TakeoutDining'; +export { default as TakeoutDiningOutlined } from './TakeoutDiningOutlined'; +export { default as TakeoutDiningRounded } from './TakeoutDiningRounded'; +export { default as TakeoutDiningSharp } from './TakeoutDiningSharp'; +export { default as TakeoutDiningTwoTone } from './TakeoutDiningTwoTone'; +export { default as TapAndPlay } from './TapAndPlay'; +export { default as TapAndPlayOutlined } from './TapAndPlayOutlined'; +export { default as TapAndPlayRounded } from './TapAndPlayRounded'; +export { default as TapAndPlaySharp } from './TapAndPlaySharp'; +export { default as TapAndPlayTwoTone } from './TapAndPlayTwoTone'; +export { default as Tapas } from './Tapas'; +export { default as TapasOutlined } from './TapasOutlined'; +export { default as TapasRounded } from './TapasRounded'; +export { default as TapasSharp } from './TapasSharp'; +export { default as TapasTwoTone } from './TapasTwoTone'; +export { default as Task } from './Task'; +export { default as TaskAlt } from './TaskAlt'; +export { default as TaskAltOutlined } from './TaskAltOutlined'; +export { default as TaskAltRounded } from './TaskAltRounded'; +export { default as TaskAltSharp } from './TaskAltSharp'; +export { default as TaskAltTwoTone } from './TaskAltTwoTone'; +export { default as TaskOutlined } from './TaskOutlined'; +export { default as TaskRounded } from './TaskRounded'; +export { default as TaskSharp } from './TaskSharp'; +export { default as TaskTwoTone } from './TaskTwoTone'; +export { default as TaxiAlert } from './TaxiAlert'; +export { default as TaxiAlertOutlined } from './TaxiAlertOutlined'; +export { default as TaxiAlertRounded } from './TaxiAlertRounded'; +export { default as TaxiAlertSharp } from './TaxiAlertSharp'; +export { default as TaxiAlertTwoTone } from './TaxiAlertTwoTone'; +export { default as Telegram } from './Telegram'; +export { default as TenMp } from './TenMp'; +export { default as TenMpOutlined } from './TenMpOutlined'; +export { default as TenMpRounded } from './TenMpRounded'; +export { default as TenMpSharp } from './TenMpSharp'; +export { default as TenMpTwoTone } from './TenMpTwoTone'; +export { default as Terrain } from './Terrain'; +export { default as TerrainOutlined } from './TerrainOutlined'; +export { default as TerrainRounded } from './TerrainRounded'; +export { default as TerrainSharp } from './TerrainSharp'; +export { default as TerrainTwoTone } from './TerrainTwoTone'; +export { default as TextFields } from './TextFields'; +export { default as TextFieldsOutlined } from './TextFieldsOutlined'; +export { default as TextFieldsRounded } from './TextFieldsRounded'; +export { default as TextFieldsSharp } from './TextFieldsSharp'; +export { default as TextFieldsTwoTone } from './TextFieldsTwoTone'; +export { default as TextFormat } from './TextFormat'; +export { default as TextFormatOutlined } from './TextFormatOutlined'; +export { default as TextFormatRounded } from './TextFormatRounded'; +export { default as TextFormatSharp } from './TextFormatSharp'; +export { default as TextFormatTwoTone } from './TextFormatTwoTone'; +export { default as TextRotateUp } from './TextRotateUp'; +export { default as TextRotateUpOutlined } from './TextRotateUpOutlined'; +export { default as TextRotateUpRounded } from './TextRotateUpRounded'; +export { default as TextRotateUpSharp } from './TextRotateUpSharp'; +export { default as TextRotateUpTwoTone } from './TextRotateUpTwoTone'; +export { default as TextRotateVertical } from './TextRotateVertical'; +export { default as TextRotateVerticalOutlined } from './TextRotateVerticalOutlined'; +export { default as TextRotateVerticalRounded } from './TextRotateVerticalRounded'; +export { default as TextRotateVerticalSharp } from './TextRotateVerticalSharp'; +export { default as TextRotateVerticalTwoTone } from './TextRotateVerticalTwoTone'; +export { default as TextRotationAngledown } from './TextRotationAngledown'; +export { default as TextRotationAngledownOutlined } from './TextRotationAngledownOutlined'; +export { default as TextRotationAngledownRounded } from './TextRotationAngledownRounded'; +export { default as TextRotationAngledownSharp } from './TextRotationAngledownSharp'; +export { default as TextRotationAngledownTwoTone } from './TextRotationAngledownTwoTone'; +export { default as TextRotationAngleup } from './TextRotationAngleup'; +export { default as TextRotationAngleupOutlined } from './TextRotationAngleupOutlined'; +export { default as TextRotationAngleupRounded } from './TextRotationAngleupRounded'; +export { default as TextRotationAngleupSharp } from './TextRotationAngleupSharp'; +export { default as TextRotationAngleupTwoTone } from './TextRotationAngleupTwoTone'; +export { default as TextRotationDown } from './TextRotationDown'; +export { default as TextRotationDownOutlined } from './TextRotationDownOutlined'; +export { default as TextRotationDownRounded } from './TextRotationDownRounded'; +export { default as TextRotationDownSharp } from './TextRotationDownSharp'; +export { default as TextRotationDownTwoTone } from './TextRotationDownTwoTone'; +export { default as TextRotationNone } from './TextRotationNone'; +export { default as TextRotationNoneOutlined } from './TextRotationNoneOutlined'; +export { default as TextRotationNoneRounded } from './TextRotationNoneRounded'; +export { default as TextRotationNoneSharp } from './TextRotationNoneSharp'; +export { default as TextRotationNoneTwoTone } from './TextRotationNoneTwoTone'; +export { default as TextSnippet } from './TextSnippet'; +export { default as TextSnippetOutlined } from './TextSnippetOutlined'; +export { default as TextSnippetRounded } from './TextSnippetRounded'; +export { default as TextSnippetSharp } from './TextSnippetSharp'; +export { default as TextSnippetTwoTone } from './TextSnippetTwoTone'; +export { default as Textsms } from './Textsms'; +export { default as TextsmsOutlined } from './TextsmsOutlined'; +export { default as TextsmsRounded } from './TextsmsRounded'; +export { default as TextsmsSharp } from './TextsmsSharp'; +export { default as TextsmsTwoTone } from './TextsmsTwoTone'; +export { default as Texture } from './Texture'; +export { default as TextureOutlined } from './TextureOutlined'; +export { default as TextureRounded } from './TextureRounded'; +export { default as TextureSharp } from './TextureSharp'; +export { default as TextureTwoTone } from './TextureTwoTone'; +export { default as TheaterComedy } from './TheaterComedy'; +export { default as TheaterComedyOutlined } from './TheaterComedyOutlined'; +export { default as TheaterComedyRounded } from './TheaterComedyRounded'; +export { default as TheaterComedySharp } from './TheaterComedySharp'; +export { default as TheaterComedyTwoTone } from './TheaterComedyTwoTone'; +export { default as Theaters } from './Theaters'; +export { default as TheatersOutlined } from './TheatersOutlined'; +export { default as TheatersRounded } from './TheatersRounded'; +export { default as TheatersSharp } from './TheatersSharp'; +export { default as TheatersTwoTone } from './TheatersTwoTone'; +export { default as Thermostat } from './Thermostat'; +export { default as ThermostatAuto } from './ThermostatAuto'; +export { default as ThermostatAutoOutlined } from './ThermostatAutoOutlined'; +export { default as ThermostatAutoRounded } from './ThermostatAutoRounded'; +export { default as ThermostatAutoSharp } from './ThermostatAutoSharp'; +export { default as ThermostatAutoTwoTone } from './ThermostatAutoTwoTone'; +export { default as ThermostatOutlined } from './ThermostatOutlined'; +export { default as ThermostatRounded } from './ThermostatRounded'; +export { default as ThermostatSharp } from './ThermostatSharp'; +export { default as ThermostatTwoTone } from './ThermostatTwoTone'; +export { default as ThirteenMp } from './ThirteenMp'; +export { default as ThirteenMpOutlined } from './ThirteenMpOutlined'; +export { default as ThirteenMpRounded } from './ThirteenMpRounded'; +export { default as ThirteenMpSharp } from './ThirteenMpSharp'; +export { default as ThirteenMpTwoTone } from './ThirteenMpTwoTone'; +export { default as ThirtyFps } from './ThirtyFps'; +export { default as ThirtyFpsOutlined } from './ThirtyFpsOutlined'; +export { default as ThirtyFpsRounded } from './ThirtyFpsRounded'; +export { default as ThirtyFpsSelect } from './ThirtyFpsSelect'; +export { default as ThirtyFpsSelectOutlined } from './ThirtyFpsSelectOutlined'; +export { default as ThirtyFpsSelectRounded } from './ThirtyFpsSelectRounded'; +export { default as ThirtyFpsSelectSharp } from './ThirtyFpsSelectSharp'; +export { default as ThirtyFpsSelectTwoTone } from './ThirtyFpsSelectTwoTone'; +export { default as ThirtyFpsSharp } from './ThirtyFpsSharp'; +export { default as ThirtyFpsTwoTone } from './ThirtyFpsTwoTone'; +export { default as ThreeDRotation } from './ThreeDRotation'; +export { default as ThreeDRotationOutlined } from './ThreeDRotationOutlined'; +export { default as ThreeDRotationRounded } from './ThreeDRotationRounded'; +export { default as ThreeDRotationSharp } from './ThreeDRotationSharp'; +export { default as ThreeDRotationTwoTone } from './ThreeDRotationTwoTone'; +export { default as ThreeGMobiledata } from './ThreeGMobiledata'; +export { default as ThreeGMobiledataOutlined } from './ThreeGMobiledataOutlined'; +export { default as ThreeGMobiledataRounded } from './ThreeGMobiledataRounded'; +export { default as ThreeGMobiledataSharp } from './ThreeGMobiledataSharp'; +export { default as ThreeGMobiledataTwoTone } from './ThreeGMobiledataTwoTone'; +export { default as ThreeK } from './ThreeK'; +export { default as ThreeKOutlined } from './ThreeKOutlined'; +export { default as ThreeKPlus } from './ThreeKPlus'; +export { default as ThreeKPlusOutlined } from './ThreeKPlusOutlined'; +export { default as ThreeKPlusRounded } from './ThreeKPlusRounded'; +export { default as ThreeKPlusSharp } from './ThreeKPlusSharp'; +export { default as ThreeKPlusTwoTone } from './ThreeKPlusTwoTone'; +export { default as ThreeKRounded } from './ThreeKRounded'; +export { default as ThreeKSharp } from './ThreeKSharp'; +export { default as ThreeKTwoTone } from './ThreeKTwoTone'; +export { default as ThreeMp } from './ThreeMp'; +export { default as ThreeMpOutlined } from './ThreeMpOutlined'; +export { default as ThreeMpRounded } from './ThreeMpRounded'; +export { default as ThreeMpSharp } from './ThreeMpSharp'; +export { default as ThreeMpTwoTone } from './ThreeMpTwoTone'; +export { default as ThreeP } from './ThreeP'; +export { default as ThreePOutlined } from './ThreePOutlined'; +export { default as ThreePRounded } from './ThreePRounded'; +export { default as ThreePSharp } from './ThreePSharp'; +export { default as ThreePTwoTone } from './ThreePTwoTone'; +export { default as ThreeSixty } from './ThreeSixty'; +export { default as ThreeSixtyOutlined } from './ThreeSixtyOutlined'; +export { default as ThreeSixtyRounded } from './ThreeSixtyRounded'; +export { default as ThreeSixtySharp } from './ThreeSixtySharp'; +export { default as ThreeSixtyTwoTone } from './ThreeSixtyTwoTone'; +export { default as ThumbDown } from './ThumbDown'; +export { default as ThumbDownAlt } from './ThumbDownAlt'; +export { default as ThumbDownAltOutlined } from './ThumbDownAltOutlined'; +export { default as ThumbDownAltRounded } from './ThumbDownAltRounded'; +export { default as ThumbDownAltSharp } from './ThumbDownAltSharp'; +export { default as ThumbDownAltTwoTone } from './ThumbDownAltTwoTone'; +export { default as ThumbDownOffAlt } from './ThumbDownOffAlt'; +export { default as ThumbDownOffAltOutlined } from './ThumbDownOffAltOutlined'; +export { default as ThumbDownOffAltRounded } from './ThumbDownOffAltRounded'; +export { default as ThumbDownOffAltSharp } from './ThumbDownOffAltSharp'; +export { default as ThumbDownOffAltTwoTone } from './ThumbDownOffAltTwoTone'; +export { default as ThumbDownOutlined } from './ThumbDownOutlined'; +export { default as ThumbDownRounded } from './ThumbDownRounded'; +export { default as ThumbDownSharp } from './ThumbDownSharp'; +export { default as ThumbDownTwoTone } from './ThumbDownTwoTone'; +export { default as ThumbUp } from './ThumbUp'; +export { default as ThumbUpAlt } from './ThumbUpAlt'; +export { default as ThumbUpAltOutlined } from './ThumbUpAltOutlined'; +export { default as ThumbUpAltRounded } from './ThumbUpAltRounded'; +export { default as ThumbUpAltSharp } from './ThumbUpAltSharp'; +export { default as ThumbUpAltTwoTone } from './ThumbUpAltTwoTone'; +export { default as ThumbUpOffAlt } from './ThumbUpOffAlt'; +export { default as ThumbUpOffAltOutlined } from './ThumbUpOffAltOutlined'; +export { default as ThumbUpOffAltRounded } from './ThumbUpOffAltRounded'; +export { default as ThumbUpOffAltSharp } from './ThumbUpOffAltSharp'; +export { default as ThumbUpOffAltTwoTone } from './ThumbUpOffAltTwoTone'; +export { default as ThumbUpOutlined } from './ThumbUpOutlined'; +export { default as ThumbUpRounded } from './ThumbUpRounded'; +export { default as ThumbUpSharp } from './ThumbUpSharp'; +export { default as ThumbUpTwoTone } from './ThumbUpTwoTone'; +export { default as ThumbsUpDown } from './ThumbsUpDown'; +export { default as ThumbsUpDownOutlined } from './ThumbsUpDownOutlined'; +export { default as ThumbsUpDownRounded } from './ThumbsUpDownRounded'; +export { default as ThumbsUpDownSharp } from './ThumbsUpDownSharp'; +export { default as ThumbsUpDownTwoTone } from './ThumbsUpDownTwoTone'; +export { default as TimeToLeave } from './TimeToLeave'; +export { default as TimeToLeaveOutlined } from './TimeToLeaveOutlined'; +export { default as TimeToLeaveRounded } from './TimeToLeaveRounded'; +export { default as TimeToLeaveSharp } from './TimeToLeaveSharp'; +export { default as TimeToLeaveTwoTone } from './TimeToLeaveTwoTone'; +export { default as Timelapse } from './Timelapse'; +export { default as TimelapseOutlined } from './TimelapseOutlined'; +export { default as TimelapseRounded } from './TimelapseRounded'; +export { default as TimelapseSharp } from './TimelapseSharp'; +export { default as TimelapseTwoTone } from './TimelapseTwoTone'; +export { default as Timeline } from './Timeline'; +export { default as TimelineOutlined } from './TimelineOutlined'; +export { default as TimelineRounded } from './TimelineRounded'; +export { default as TimelineSharp } from './TimelineSharp'; +export { default as TimelineTwoTone } from './TimelineTwoTone'; +export { default as Timer } from './Timer'; +export { default as Timer10 } from './Timer10'; +export { default as Timer10Outlined } from './Timer10Outlined'; +export { default as Timer10Rounded } from './Timer10Rounded'; +export { default as Timer10Select } from './Timer10Select'; +export { default as Timer10SelectOutlined } from './Timer10SelectOutlined'; +export { default as Timer10SelectRounded } from './Timer10SelectRounded'; +export { default as Timer10SelectSharp } from './Timer10SelectSharp'; +export { default as Timer10SelectTwoTone } from './Timer10SelectTwoTone'; +export { default as Timer10Sharp } from './Timer10Sharp'; +export { default as Timer10TwoTone } from './Timer10TwoTone'; +export { default as Timer3 } from './Timer3'; +export { default as Timer3Outlined } from './Timer3Outlined'; +export { default as Timer3Rounded } from './Timer3Rounded'; +export { default as Timer3Select } from './Timer3Select'; +export { default as Timer3SelectOutlined } from './Timer3SelectOutlined'; +export { default as Timer3SelectRounded } from './Timer3SelectRounded'; +export { default as Timer3SelectSharp } from './Timer3SelectSharp'; +export { default as Timer3SelectTwoTone } from './Timer3SelectTwoTone'; +export { default as Timer3Sharp } from './Timer3Sharp'; +export { default as Timer3TwoTone } from './Timer3TwoTone'; +export { default as TimerOff } from './TimerOff'; +export { default as TimerOffOutlined } from './TimerOffOutlined'; +export { default as TimerOffRounded } from './TimerOffRounded'; +export { default as TimerOffSharp } from './TimerOffSharp'; +export { default as TimerOffTwoTone } from './TimerOffTwoTone'; +export { default as TimerOutlined } from './TimerOutlined'; +export { default as TimerRounded } from './TimerRounded'; +export { default as TimerSharp } from './TimerSharp'; +export { default as TimerTwoTone } from './TimerTwoTone'; +export { default as TimesOneMobiledata } from './TimesOneMobiledata'; +export { default as TimesOneMobiledataOutlined } from './TimesOneMobiledataOutlined'; +export { default as TimesOneMobiledataRounded } from './TimesOneMobiledataRounded'; +export { default as TimesOneMobiledataSharp } from './TimesOneMobiledataSharp'; +export { default as TimesOneMobiledataTwoTone } from './TimesOneMobiledataTwoTone'; +export { default as Title } from './Title'; +export { default as TitleOutlined } from './TitleOutlined'; +export { default as TitleRounded } from './TitleRounded'; +export { default as TitleSharp } from './TitleSharp'; +export { default as TitleTwoTone } from './TitleTwoTone'; +export { default as Toc } from './Toc'; +export { default as TocOutlined } from './TocOutlined'; +export { default as TocRounded } from './TocRounded'; +export { default as TocSharp } from './TocSharp'; +export { default as TocTwoTone } from './TocTwoTone'; +export { default as Today } from './Today'; +export { default as TodayOutlined } from './TodayOutlined'; +export { default as TodayRounded } from './TodayRounded'; +export { default as TodaySharp } from './TodaySharp'; +export { default as TodayTwoTone } from './TodayTwoTone'; +export { default as ToggleOff } from './ToggleOff'; +export { default as ToggleOffOutlined } from './ToggleOffOutlined'; +export { default as ToggleOffRounded } from './ToggleOffRounded'; +export { default as ToggleOffSharp } from './ToggleOffSharp'; +export { default as ToggleOffTwoTone } from './ToggleOffTwoTone'; +export { default as ToggleOn } from './ToggleOn'; +export { default as ToggleOnOutlined } from './ToggleOnOutlined'; +export { default as ToggleOnRounded } from './ToggleOnRounded'; +export { default as ToggleOnSharp } from './ToggleOnSharp'; +export { default as ToggleOnTwoTone } from './ToggleOnTwoTone'; +export { default as Toll } from './Toll'; +export { default as TollOutlined } from './TollOutlined'; +export { default as TollRounded } from './TollRounded'; +export { default as TollSharp } from './TollSharp'; +export { default as TollTwoTone } from './TollTwoTone'; +export { default as Tonality } from './Tonality'; +export { default as TonalityOutlined } from './TonalityOutlined'; +export { default as TonalityRounded } from './TonalityRounded'; +export { default as TonalitySharp } from './TonalitySharp'; +export { default as TonalityTwoTone } from './TonalityTwoTone'; +export { default as Topic } from './Topic'; +export { default as TopicOutlined } from './TopicOutlined'; +export { default as TopicRounded } from './TopicRounded'; +export { default as TopicSharp } from './TopicSharp'; +export { default as TopicTwoTone } from './TopicTwoTone'; +export { default as TouchApp } from './TouchApp'; +export { default as TouchAppOutlined } from './TouchAppOutlined'; +export { default as TouchAppRounded } from './TouchAppRounded'; +export { default as TouchAppSharp } from './TouchAppSharp'; +export { default as TouchAppTwoTone } from './TouchAppTwoTone'; +export { default as Tour } from './Tour'; +export { default as TourOutlined } from './TourOutlined'; +export { default as TourRounded } from './TourRounded'; +export { default as TourSharp } from './TourSharp'; +export { default as TourTwoTone } from './TourTwoTone'; +export { default as Toys } from './Toys'; +export { default as ToysOutlined } from './ToysOutlined'; +export { default as ToysRounded } from './ToysRounded'; +export { default as ToysSharp } from './ToysSharp'; +export { default as ToysTwoTone } from './ToysTwoTone'; +export { default as TrackChanges } from './TrackChanges'; +export { default as TrackChangesOutlined } from './TrackChangesOutlined'; +export { default as TrackChangesRounded } from './TrackChangesRounded'; +export { default as TrackChangesSharp } from './TrackChangesSharp'; +export { default as TrackChangesTwoTone } from './TrackChangesTwoTone'; +export { default as Traffic } from './Traffic'; +export { default as TrafficOutlined } from './TrafficOutlined'; +export { default as TrafficRounded } from './TrafficRounded'; +export { default as TrafficSharp } from './TrafficSharp'; +export { default as TrafficTwoTone } from './TrafficTwoTone'; +export { default as Train } from './Train'; +export { default as TrainOutlined } from './TrainOutlined'; +export { default as TrainRounded } from './TrainRounded'; +export { default as TrainSharp } from './TrainSharp'; +export { default as TrainTwoTone } from './TrainTwoTone'; +export { default as Tram } from './Tram'; +export { default as TramOutlined } from './TramOutlined'; +export { default as TramRounded } from './TramRounded'; +export { default as TramSharp } from './TramSharp'; +export { default as TramTwoTone } from './TramTwoTone'; +export { default as TransferWithinAStation } from './TransferWithinAStation'; +export { default as TransferWithinAStationOutlined } from './TransferWithinAStationOutlined'; +export { default as TransferWithinAStationRounded } from './TransferWithinAStationRounded'; +export { default as TransferWithinAStationSharp } from './TransferWithinAStationSharp'; +export { default as TransferWithinAStationTwoTone } from './TransferWithinAStationTwoTone'; +export { default as Transform } from './Transform'; +export { default as TransformOutlined } from './TransformOutlined'; +export { default as TransformRounded } from './TransformRounded'; +export { default as TransformSharp } from './TransformSharp'; +export { default as TransformTwoTone } from './TransformTwoTone'; +export { default as Transgender } from './Transgender'; +export { default as TransgenderOutlined } from './TransgenderOutlined'; +export { default as TransgenderRounded } from './TransgenderRounded'; +export { default as TransgenderSharp } from './TransgenderSharp'; +export { default as TransgenderTwoTone } from './TransgenderTwoTone'; +export { default as TransitEnterexit } from './TransitEnterexit'; +export { default as TransitEnterexitOutlined } from './TransitEnterexitOutlined'; +export { default as TransitEnterexitRounded } from './TransitEnterexitRounded'; +export { default as TransitEnterexitSharp } from './TransitEnterexitSharp'; +export { default as TransitEnterexitTwoTone } from './TransitEnterexitTwoTone'; +export { default as Translate } from './Translate'; +export { default as TranslateOutlined } from './TranslateOutlined'; +export { default as TranslateRounded } from './TranslateRounded'; +export { default as TranslateSharp } from './TranslateSharp'; +export { default as TranslateTwoTone } from './TranslateTwoTone'; +export { default as TravelExplore } from './TravelExplore'; +export { default as TravelExploreOutlined } from './TravelExploreOutlined'; +export { default as TravelExploreRounded } from './TravelExploreRounded'; +export { default as TravelExploreSharp } from './TravelExploreSharp'; +export { default as TravelExploreTwoTone } from './TravelExploreTwoTone'; +export { default as TrendingDown } from './TrendingDown'; +export { default as TrendingDownOutlined } from './TrendingDownOutlined'; +export { default as TrendingDownRounded } from './TrendingDownRounded'; +export { default as TrendingDownSharp } from './TrendingDownSharp'; +export { default as TrendingDownTwoTone } from './TrendingDownTwoTone'; +export { default as TrendingFlat } from './TrendingFlat'; +export { default as TrendingFlatOutlined } from './TrendingFlatOutlined'; +export { default as TrendingFlatRounded } from './TrendingFlatRounded'; +export { default as TrendingFlatSharp } from './TrendingFlatSharp'; +export { default as TrendingFlatTwoTone } from './TrendingFlatTwoTone'; +export { default as TrendingUp } from './TrendingUp'; +export { default as TrendingUpOutlined } from './TrendingUpOutlined'; +export { default as TrendingUpRounded } from './TrendingUpRounded'; +export { default as TrendingUpSharp } from './TrendingUpSharp'; +export { default as TrendingUpTwoTone } from './TrendingUpTwoTone'; +export { default as TripOrigin } from './TripOrigin'; +export { default as TripOriginOutlined } from './TripOriginOutlined'; +export { default as TripOriginRounded } from './TripOriginRounded'; +export { default as TripOriginSharp } from './TripOriginSharp'; +export { default as TripOriginTwoTone } from './TripOriginTwoTone'; +export { default as Try } from './Try'; +export { default as TryOutlined } from './TryOutlined'; +export { default as TryRounded } from './TryRounded'; +export { default as TrySharp } from './TrySharp'; +export { default as TryTwoTone } from './TryTwoTone'; +export { default as Tty } from './Tty'; +export { default as TtyOutlined } from './TtyOutlined'; +export { default as TtyRounded } from './TtyRounded'; +export { default as TtySharp } from './TtySharp'; +export { default as TtyTwoTone } from './TtyTwoTone'; +export { default as Tune } from './Tune'; +export { default as TuneOutlined } from './TuneOutlined'; +export { default as TuneRounded } from './TuneRounded'; +export { default as TuneSharp } from './TuneSharp'; +export { default as TuneTwoTone } from './TuneTwoTone'; +export { default as Tungsten } from './Tungsten'; +export { default as TungstenOutlined } from './TungstenOutlined'; +export { default as TungstenRounded } from './TungstenRounded'; +export { default as TungstenSharp } from './TungstenSharp'; +export { default as TungstenTwoTone } from './TungstenTwoTone'; +export { default as TurnedIn } from './TurnedIn'; +export { default as TurnedInNot } from './TurnedInNot'; +export { default as TurnedInNotOutlined } from './TurnedInNotOutlined'; +export { default as TurnedInNotRounded } from './TurnedInNotRounded'; +export { default as TurnedInNotSharp } from './TurnedInNotSharp'; +export { default as TurnedInNotTwoTone } from './TurnedInNotTwoTone'; +export { default as TurnedInOutlined } from './TurnedInOutlined'; +export { default as TurnedInRounded } from './TurnedInRounded'; +export { default as TurnedInSharp } from './TurnedInSharp'; +export { default as TurnedInTwoTone } from './TurnedInTwoTone'; +export { default as Tv } from './Tv'; +export { default as TvOff } from './TvOff'; +export { default as TvOffOutlined } from './TvOffOutlined'; +export { default as TvOffRounded } from './TvOffRounded'; +export { default as TvOffSharp } from './TvOffSharp'; +export { default as TvOffTwoTone } from './TvOffTwoTone'; +export { default as TvOutlined } from './TvOutlined'; +export { default as TvRounded } from './TvRounded'; +export { default as TvSharp } from './TvSharp'; +export { default as TvTwoTone } from './TvTwoTone'; +export { default as TwelveMp } from './TwelveMp'; +export { default as TwelveMpOutlined } from './TwelveMpOutlined'; +export { default as TwelveMpRounded } from './TwelveMpRounded'; +export { default as TwelveMpSharp } from './TwelveMpSharp'; +export { default as TwelveMpTwoTone } from './TwelveMpTwoTone'; +export { default as TwentyFourMp } from './TwentyFourMp'; +export { default as TwentyFourMpOutlined } from './TwentyFourMpOutlined'; +export { default as TwentyFourMpRounded } from './TwentyFourMpRounded'; +export { default as TwentyFourMpSharp } from './TwentyFourMpSharp'; +export { default as TwentyFourMpTwoTone } from './TwentyFourMpTwoTone'; +export { default as TwentyOneMp } from './TwentyOneMp'; +export { default as TwentyOneMpOutlined } from './TwentyOneMpOutlined'; +export { default as TwentyOneMpRounded } from './TwentyOneMpRounded'; +export { default as TwentyOneMpSharp } from './TwentyOneMpSharp'; +export { default as TwentyOneMpTwoTone } from './TwentyOneMpTwoTone'; +export { default as TwentyThreeMp } from './TwentyThreeMp'; +export { default as TwentyThreeMpOutlined } from './TwentyThreeMpOutlined'; +export { default as TwentyThreeMpRounded } from './TwentyThreeMpRounded'; +export { default as TwentyThreeMpSharp } from './TwentyThreeMpSharp'; +export { default as TwentyThreeMpTwoTone } from './TwentyThreeMpTwoTone'; +export { default as TwentyTwoMp } from './TwentyTwoMp'; +export { default as TwentyTwoMpOutlined } from './TwentyTwoMpOutlined'; +export { default as TwentyTwoMpRounded } from './TwentyTwoMpRounded'; +export { default as TwentyTwoMpSharp } from './TwentyTwoMpSharp'; +export { default as TwentyTwoMpTwoTone } from './TwentyTwoMpTwoTone'; +export { default as TwentyZeroMp } from './TwentyZeroMp'; +export { default as TwentyZeroMpOutlined } from './TwentyZeroMpOutlined'; +export { default as TwentyZeroMpRounded } from './TwentyZeroMpRounded'; +export { default as TwentyZeroMpSharp } from './TwentyZeroMpSharp'; +export { default as TwentyZeroMpTwoTone } from './TwentyZeroMpTwoTone'; +export { default as Twitter } from './Twitter'; +export { default as TwoK } from './TwoK'; +export { default as TwoKOutlined } from './TwoKOutlined'; +export { default as TwoKPlus } from './TwoKPlus'; +export { default as TwoKPlusOutlined } from './TwoKPlusOutlined'; +export { default as TwoKPlusRounded } from './TwoKPlusRounded'; +export { default as TwoKPlusSharp } from './TwoKPlusSharp'; +export { default as TwoKPlusTwoTone } from './TwoKPlusTwoTone'; +export { default as TwoKRounded } from './TwoKRounded'; +export { default as TwoKSharp } from './TwoKSharp'; +export { default as TwoKTwoTone } from './TwoKTwoTone'; +export { default as TwoMp } from './TwoMp'; +export { default as TwoMpOutlined } from './TwoMpOutlined'; +export { default as TwoMpRounded } from './TwoMpRounded'; +export { default as TwoMpSharp } from './TwoMpSharp'; +export { default as TwoMpTwoTone } from './TwoMpTwoTone'; +export { default as TwoWheeler } from './TwoWheeler'; +export { default as TwoWheelerOutlined } from './TwoWheelerOutlined'; +export { default as TwoWheelerRounded } from './TwoWheelerRounded'; +export { default as TwoWheelerSharp } from './TwoWheelerSharp'; +export { default as TwoWheelerTwoTone } from './TwoWheelerTwoTone'; +export { default as Umbrella } from './Umbrella'; +export { default as UmbrellaOutlined } from './UmbrellaOutlined'; +export { default as UmbrellaRounded } from './UmbrellaRounded'; +export { default as UmbrellaSharp } from './UmbrellaSharp'; +export { default as UmbrellaTwoTone } from './UmbrellaTwoTone'; +export { default as Unarchive } from './Unarchive'; +export { default as UnarchiveOutlined } from './UnarchiveOutlined'; +export { default as UnarchiveRounded } from './UnarchiveRounded'; +export { default as UnarchiveSharp } from './UnarchiveSharp'; +export { default as UnarchiveTwoTone } from './UnarchiveTwoTone'; +export { default as Undo } from './Undo'; +export { default as UndoOutlined } from './UndoOutlined'; +export { default as UndoRounded } from './UndoRounded'; +export { default as UndoSharp } from './UndoSharp'; +export { default as UndoTwoTone } from './UndoTwoTone'; +export { default as UnfoldLess } from './UnfoldLess'; +export { default as UnfoldLessOutlined } from './UnfoldLessOutlined'; +export { default as UnfoldLessRounded } from './UnfoldLessRounded'; +export { default as UnfoldLessSharp } from './UnfoldLessSharp'; +export { default as UnfoldLessTwoTone } from './UnfoldLessTwoTone'; +export { default as UnfoldMore } from './UnfoldMore'; +export { default as UnfoldMoreOutlined } from './UnfoldMoreOutlined'; +export { default as UnfoldMoreRounded } from './UnfoldMoreRounded'; +export { default as UnfoldMoreSharp } from './UnfoldMoreSharp'; +export { default as UnfoldMoreTwoTone } from './UnfoldMoreTwoTone'; +export { default as Unpublished } from './Unpublished'; +export { default as UnpublishedOutlined } from './UnpublishedOutlined'; +export { default as UnpublishedRounded } from './UnpublishedRounded'; +export { default as UnpublishedSharp } from './UnpublishedSharp'; +export { default as UnpublishedTwoTone } from './UnpublishedTwoTone'; +export { default as Unsubscribe } from './Unsubscribe'; +export { default as UnsubscribeOutlined } from './UnsubscribeOutlined'; +export { default as UnsubscribeRounded } from './UnsubscribeRounded'; +export { default as UnsubscribeSharp } from './UnsubscribeSharp'; +export { default as UnsubscribeTwoTone } from './UnsubscribeTwoTone'; +export { default as Upcoming } from './Upcoming'; +export { default as UpcomingOutlined } from './UpcomingOutlined'; +export { default as UpcomingRounded } from './UpcomingRounded'; +export { default as UpcomingSharp } from './UpcomingSharp'; +export { default as UpcomingTwoTone } from './UpcomingTwoTone'; +export { default as Update } from './Update'; +export { default as UpdateDisabled } from './UpdateDisabled'; +export { default as UpdateDisabledOutlined } from './UpdateDisabledOutlined'; +export { default as UpdateDisabledRounded } from './UpdateDisabledRounded'; +export { default as UpdateDisabledSharp } from './UpdateDisabledSharp'; +export { default as UpdateDisabledTwoTone } from './UpdateDisabledTwoTone'; +export { default as UpdateOutlined } from './UpdateOutlined'; +export { default as UpdateRounded } from './UpdateRounded'; +export { default as UpdateSharp } from './UpdateSharp'; +export { default as UpdateTwoTone } from './UpdateTwoTone'; +export { default as Upgrade } from './Upgrade'; +export { default as UpgradeOutlined } from './UpgradeOutlined'; +export { default as UpgradeRounded } from './UpgradeRounded'; +export { default as UpgradeSharp } from './UpgradeSharp'; +export { default as UpgradeTwoTone } from './UpgradeTwoTone'; +export { default as Upload } from './Upload'; +export { default as UploadFile } from './UploadFile'; +export { default as UploadFileOutlined } from './UploadFileOutlined'; +export { default as UploadFileRounded } from './UploadFileRounded'; +export { default as UploadFileSharp } from './UploadFileSharp'; +export { default as UploadFileTwoTone } from './UploadFileTwoTone'; +export { default as UploadOutlined } from './UploadOutlined'; +export { default as UploadRounded } from './UploadRounded'; +export { default as UploadSharp } from './UploadSharp'; +export { default as UploadTwoTone } from './UploadTwoTone'; +export { default as Usb } from './Usb'; +export { default as UsbOff } from './UsbOff'; +export { default as UsbOffOutlined } from './UsbOffOutlined'; +export { default as UsbOffRounded } from './UsbOffRounded'; +export { default as UsbOffSharp } from './UsbOffSharp'; +export { default as UsbOffTwoTone } from './UsbOffTwoTone'; +export { default as UsbOutlined } from './UsbOutlined'; +export { default as UsbRounded } from './UsbRounded'; +export { default as UsbSharp } from './UsbSharp'; +export { default as UsbTwoTone } from './UsbTwoTone'; +export { default as Verified } from './Verified'; +export { default as VerifiedOutlined } from './VerifiedOutlined'; +export { default as VerifiedRounded } from './VerifiedRounded'; +export { default as VerifiedSharp } from './VerifiedSharp'; +export { default as VerifiedTwoTone } from './VerifiedTwoTone'; +export { default as VerifiedUser } from './VerifiedUser'; +export { default as VerifiedUserOutlined } from './VerifiedUserOutlined'; +export { default as VerifiedUserRounded } from './VerifiedUserRounded'; +export { default as VerifiedUserSharp } from './VerifiedUserSharp'; +export { default as VerifiedUserTwoTone } from './VerifiedUserTwoTone'; +export { default as VerticalAlignBottom } from './VerticalAlignBottom'; +export { default as VerticalAlignBottomOutlined } from './VerticalAlignBottomOutlined'; +export { default as VerticalAlignBottomRounded } from './VerticalAlignBottomRounded'; +export { default as VerticalAlignBottomSharp } from './VerticalAlignBottomSharp'; +export { default as VerticalAlignBottomTwoTone } from './VerticalAlignBottomTwoTone'; +export { default as VerticalAlignCenter } from './VerticalAlignCenter'; +export { default as VerticalAlignCenterOutlined } from './VerticalAlignCenterOutlined'; +export { default as VerticalAlignCenterRounded } from './VerticalAlignCenterRounded'; +export { default as VerticalAlignCenterSharp } from './VerticalAlignCenterSharp'; +export { default as VerticalAlignCenterTwoTone } from './VerticalAlignCenterTwoTone'; +export { default as VerticalAlignTop } from './VerticalAlignTop'; +export { default as VerticalAlignTopOutlined } from './VerticalAlignTopOutlined'; +export { default as VerticalAlignTopRounded } from './VerticalAlignTopRounded'; +export { default as VerticalAlignTopSharp } from './VerticalAlignTopSharp'; +export { default as VerticalAlignTopTwoTone } from './VerticalAlignTopTwoTone'; +export { default as VerticalSplit } from './VerticalSplit'; +export { default as VerticalSplitOutlined } from './VerticalSplitOutlined'; +export { default as VerticalSplitRounded } from './VerticalSplitRounded'; +export { default as VerticalSplitSharp } from './VerticalSplitSharp'; +export { default as VerticalSplitTwoTone } from './VerticalSplitTwoTone'; +export { default as Vibration } from './Vibration'; +export { default as VibrationOutlined } from './VibrationOutlined'; +export { default as VibrationRounded } from './VibrationRounded'; +export { default as VibrationSharp } from './VibrationSharp'; +export { default as VibrationTwoTone } from './VibrationTwoTone'; +export { default as VideoCall } from './VideoCall'; +export { default as VideoCallOutlined } from './VideoCallOutlined'; +export { default as VideoCallRounded } from './VideoCallRounded'; +export { default as VideoCallSharp } from './VideoCallSharp'; +export { default as VideoCallTwoTone } from './VideoCallTwoTone'; +export { default as VideoCameraBack } from './VideoCameraBack'; +export { default as VideoCameraBackOutlined } from './VideoCameraBackOutlined'; +export { default as VideoCameraBackRounded } from './VideoCameraBackRounded'; +export { default as VideoCameraBackSharp } from './VideoCameraBackSharp'; +export { default as VideoCameraBackTwoTone } from './VideoCameraBackTwoTone'; +export { default as VideoCameraFront } from './VideoCameraFront'; +export { default as VideoCameraFrontOutlined } from './VideoCameraFrontOutlined'; +export { default as VideoCameraFrontRounded } from './VideoCameraFrontRounded'; +export { default as VideoCameraFrontSharp } from './VideoCameraFrontSharp'; +export { default as VideoCameraFrontTwoTone } from './VideoCameraFrontTwoTone'; +export { default as VideoLabel } from './VideoLabel'; +export { default as VideoLabelOutlined } from './VideoLabelOutlined'; +export { default as VideoLabelRounded } from './VideoLabelRounded'; +export { default as VideoLabelSharp } from './VideoLabelSharp'; +export { default as VideoLabelTwoTone } from './VideoLabelTwoTone'; +export { default as VideoLibrary } from './VideoLibrary'; +export { default as VideoLibraryOutlined } from './VideoLibraryOutlined'; +export { default as VideoLibraryRounded } from './VideoLibraryRounded'; +export { default as VideoLibrarySharp } from './VideoLibrarySharp'; +export { default as VideoLibraryTwoTone } from './VideoLibraryTwoTone'; +export { default as VideoSettings } from './VideoSettings'; +export { default as VideoSettingsOutlined } from './VideoSettingsOutlined'; +export { default as VideoSettingsRounded } from './VideoSettingsRounded'; +export { default as VideoSettingsSharp } from './VideoSettingsSharp'; +export { default as VideoSettingsTwoTone } from './VideoSettingsTwoTone'; +export { default as VideoStable } from './VideoStable'; +export { default as VideoStableOutlined } from './VideoStableOutlined'; +export { default as VideoStableRounded } from './VideoStableRounded'; +export { default as VideoStableSharp } from './VideoStableSharp'; +export { default as VideoStableTwoTone } from './VideoStableTwoTone'; +export { default as Videocam } from './Videocam'; +export { default as VideocamOff } from './VideocamOff'; +export { default as VideocamOffOutlined } from './VideocamOffOutlined'; +export { default as VideocamOffRounded } from './VideocamOffRounded'; +export { default as VideocamOffSharp } from './VideocamOffSharp'; +export { default as VideocamOffTwoTone } from './VideocamOffTwoTone'; +export { default as VideocamOutlined } from './VideocamOutlined'; +export { default as VideocamRounded } from './VideocamRounded'; +export { default as VideocamSharp } from './VideocamSharp'; +export { default as VideocamTwoTone } from './VideocamTwoTone'; +export { default as VideogameAsset } from './VideogameAsset'; +export { default as VideogameAssetOff } from './VideogameAssetOff'; +export { default as VideogameAssetOffOutlined } from './VideogameAssetOffOutlined'; +export { default as VideogameAssetOffRounded } from './VideogameAssetOffRounded'; +export { default as VideogameAssetOffSharp } from './VideogameAssetOffSharp'; +export { default as VideogameAssetOffTwoTone } from './VideogameAssetOffTwoTone'; +export { default as VideogameAssetOutlined } from './VideogameAssetOutlined'; +export { default as VideogameAssetRounded } from './VideogameAssetRounded'; +export { default as VideogameAssetSharp } from './VideogameAssetSharp'; +export { default as VideogameAssetTwoTone } from './VideogameAssetTwoTone'; +export { default as ViewAgenda } from './ViewAgenda'; +export { default as ViewAgendaOutlined } from './ViewAgendaOutlined'; +export { default as ViewAgendaRounded } from './ViewAgendaRounded'; +export { default as ViewAgendaSharp } from './ViewAgendaSharp'; +export { default as ViewAgendaTwoTone } from './ViewAgendaTwoTone'; +export { default as ViewArray } from './ViewArray'; +export { default as ViewArrayOutlined } from './ViewArrayOutlined'; +export { default as ViewArrayRounded } from './ViewArrayRounded'; +export { default as ViewArraySharp } from './ViewArraySharp'; +export { default as ViewArrayTwoTone } from './ViewArrayTwoTone'; +export { default as ViewCarousel } from './ViewCarousel'; +export { default as ViewCarouselOutlined } from './ViewCarouselOutlined'; +export { default as ViewCarouselRounded } from './ViewCarouselRounded'; +export { default as ViewCarouselSharp } from './ViewCarouselSharp'; +export { default as ViewCarouselTwoTone } from './ViewCarouselTwoTone'; +export { default as ViewColumn } from './ViewColumn'; +export { default as ViewColumnOutlined } from './ViewColumnOutlined'; +export { default as ViewColumnRounded } from './ViewColumnRounded'; +export { default as ViewColumnSharp } from './ViewColumnSharp'; +export { default as ViewColumnTwoTone } from './ViewColumnTwoTone'; +export { default as ViewComfy } from './ViewComfy'; +export { default as ViewComfyOutlined } from './ViewComfyOutlined'; +export { default as ViewComfyRounded } from './ViewComfyRounded'; +export { default as ViewComfySharp } from './ViewComfySharp'; +export { default as ViewComfyTwoTone } from './ViewComfyTwoTone'; +export { default as ViewCompact } from './ViewCompact'; +export { default as ViewCompactOutlined } from './ViewCompactOutlined'; +export { default as ViewCompactRounded } from './ViewCompactRounded'; +export { default as ViewCompactSharp } from './ViewCompactSharp'; +export { default as ViewCompactTwoTone } from './ViewCompactTwoTone'; +export { default as ViewDay } from './ViewDay'; +export { default as ViewDayOutlined } from './ViewDayOutlined'; +export { default as ViewDayRounded } from './ViewDayRounded'; +export { default as ViewDaySharp } from './ViewDaySharp'; +export { default as ViewDayTwoTone } from './ViewDayTwoTone'; +export { default as ViewHeadline } from './ViewHeadline'; +export { default as ViewHeadlineOutlined } from './ViewHeadlineOutlined'; +export { default as ViewHeadlineRounded } from './ViewHeadlineRounded'; +export { default as ViewHeadlineSharp } from './ViewHeadlineSharp'; +export { default as ViewHeadlineTwoTone } from './ViewHeadlineTwoTone'; +export { default as ViewInAr } from './ViewInAr'; +export { default as ViewInArOutlined } from './ViewInArOutlined'; +export { default as ViewInArRounded } from './ViewInArRounded'; +export { default as ViewInArSharp } from './ViewInArSharp'; +export { default as ViewInArTwoTone } from './ViewInArTwoTone'; +export { default as ViewList } from './ViewList'; +export { default as ViewListOutlined } from './ViewListOutlined'; +export { default as ViewListRounded } from './ViewListRounded'; +export { default as ViewListSharp } from './ViewListSharp'; +export { default as ViewListTwoTone } from './ViewListTwoTone'; +export { default as ViewModule } from './ViewModule'; +export { default as ViewModuleOutlined } from './ViewModuleOutlined'; +export { default as ViewModuleRounded } from './ViewModuleRounded'; +export { default as ViewModuleSharp } from './ViewModuleSharp'; +export { default as ViewModuleTwoTone } from './ViewModuleTwoTone'; +export { default as ViewQuilt } from './ViewQuilt'; +export { default as ViewQuiltOutlined } from './ViewQuiltOutlined'; +export { default as ViewQuiltRounded } from './ViewQuiltRounded'; +export { default as ViewQuiltSharp } from './ViewQuiltSharp'; +export { default as ViewQuiltTwoTone } from './ViewQuiltTwoTone'; +export { default as ViewSidebar } from './ViewSidebar'; +export { default as ViewSidebarOutlined } from './ViewSidebarOutlined'; +export { default as ViewSidebarRounded } from './ViewSidebarRounded'; +export { default as ViewSidebarSharp } from './ViewSidebarSharp'; +export { default as ViewSidebarTwoTone } from './ViewSidebarTwoTone'; +export { default as ViewStream } from './ViewStream'; +export { default as ViewStreamOutlined } from './ViewStreamOutlined'; +export { default as ViewStreamRounded } from './ViewStreamRounded'; +export { default as ViewStreamSharp } from './ViewStreamSharp'; +export { default as ViewStreamTwoTone } from './ViewStreamTwoTone'; +export { default as ViewWeek } from './ViewWeek'; +export { default as ViewWeekOutlined } from './ViewWeekOutlined'; +export { default as ViewWeekRounded } from './ViewWeekRounded'; +export { default as ViewWeekSharp } from './ViewWeekSharp'; +export { default as ViewWeekTwoTone } from './ViewWeekTwoTone'; +export { default as Vignette } from './Vignette'; +export { default as VignetteOutlined } from './VignetteOutlined'; +export { default as VignetteRounded } from './VignetteRounded'; +export { default as VignetteSharp } from './VignetteSharp'; +export { default as VignetteTwoTone } from './VignetteTwoTone'; +export { default as Villa } from './Villa'; +export { default as VillaOutlined } from './VillaOutlined'; +export { default as VillaRounded } from './VillaRounded'; +export { default as VillaSharp } from './VillaSharp'; +export { default as VillaTwoTone } from './VillaTwoTone'; +export { default as Visibility } from './Visibility'; +export { default as VisibilityOff } from './VisibilityOff'; +export { default as VisibilityOffOutlined } from './VisibilityOffOutlined'; +export { default as VisibilityOffRounded } from './VisibilityOffRounded'; +export { default as VisibilityOffSharp } from './VisibilityOffSharp'; +export { default as VisibilityOffTwoTone } from './VisibilityOffTwoTone'; +export { default as VisibilityOutlined } from './VisibilityOutlined'; +export { default as VisibilityRounded } from './VisibilityRounded'; +export { default as VisibilitySharp } from './VisibilitySharp'; +export { default as VisibilityTwoTone } from './VisibilityTwoTone'; +export { default as VoiceChat } from './VoiceChat'; +export { default as VoiceChatOutlined } from './VoiceChatOutlined'; +export { default as VoiceChatRounded } from './VoiceChatRounded'; +export { default as VoiceChatSharp } from './VoiceChatSharp'; +export { default as VoiceChatTwoTone } from './VoiceChatTwoTone'; +export { default as VoiceOverOff } from './VoiceOverOff'; +export { default as VoiceOverOffOutlined } from './VoiceOverOffOutlined'; +export { default as VoiceOverOffRounded } from './VoiceOverOffRounded'; +export { default as VoiceOverOffSharp } from './VoiceOverOffSharp'; +export { default as VoiceOverOffTwoTone } from './VoiceOverOffTwoTone'; +export { default as Voicemail } from './Voicemail'; +export { default as VoicemailOutlined } from './VoicemailOutlined'; +export { default as VoicemailRounded } from './VoicemailRounded'; +export { default as VoicemailSharp } from './VoicemailSharp'; +export { default as VoicemailTwoTone } from './VoicemailTwoTone'; +export { default as VolumeDown } from './VolumeDown'; +export { default as VolumeDownOutlined } from './VolumeDownOutlined'; +export { default as VolumeDownRounded } from './VolumeDownRounded'; +export { default as VolumeDownSharp } from './VolumeDownSharp'; +export { default as VolumeDownTwoTone } from './VolumeDownTwoTone'; +export { default as VolumeMute } from './VolumeMute'; +export { default as VolumeMuteOutlined } from './VolumeMuteOutlined'; +export { default as VolumeMuteRounded } from './VolumeMuteRounded'; +export { default as VolumeMuteSharp } from './VolumeMuteSharp'; +export { default as VolumeMuteTwoTone } from './VolumeMuteTwoTone'; +export { default as VolumeOff } from './VolumeOff'; +export { default as VolumeOffOutlined } from './VolumeOffOutlined'; +export { default as VolumeOffRounded } from './VolumeOffRounded'; +export { default as VolumeOffSharp } from './VolumeOffSharp'; +export { default as VolumeOffTwoTone } from './VolumeOffTwoTone'; +export { default as VolumeUp } from './VolumeUp'; +export { default as VolumeUpOutlined } from './VolumeUpOutlined'; +export { default as VolumeUpRounded } from './VolumeUpRounded'; +export { default as VolumeUpSharp } from './VolumeUpSharp'; +export { default as VolumeUpTwoTone } from './VolumeUpTwoTone'; +export { default as VolunteerActivism } from './VolunteerActivism'; +export { default as VolunteerActivismOutlined } from './VolunteerActivismOutlined'; +export { default as VolunteerActivismRounded } from './VolunteerActivismRounded'; +export { default as VolunteerActivismSharp } from './VolunteerActivismSharp'; +export { default as VolunteerActivismTwoTone } from './VolunteerActivismTwoTone'; +export { default as VpnKey } from './VpnKey'; +export { default as VpnKeyOutlined } from './VpnKeyOutlined'; +export { default as VpnKeyRounded } from './VpnKeyRounded'; +export { default as VpnKeySharp } from './VpnKeySharp'; +export { default as VpnKeyTwoTone } from './VpnKeyTwoTone'; +export { default as VpnLock } from './VpnLock'; +export { default as VpnLockOutlined } from './VpnLockOutlined'; +export { default as VpnLockRounded } from './VpnLockRounded'; +export { default as VpnLockSharp } from './VpnLockSharp'; +export { default as VpnLockTwoTone } from './VpnLockTwoTone'; +export { default as Vrpano } from './Vrpano'; +export { default as VrpanoOutlined } from './VrpanoOutlined'; +export { default as VrpanoRounded } from './VrpanoRounded'; +export { default as VrpanoSharp } from './VrpanoSharp'; +export { default as VrpanoTwoTone } from './VrpanoTwoTone'; +export { default as Wallpaper } from './Wallpaper'; +export { default as WallpaperOutlined } from './WallpaperOutlined'; +export { default as WallpaperRounded } from './WallpaperRounded'; +export { default as WallpaperSharp } from './WallpaperSharp'; +export { default as WallpaperTwoTone } from './WallpaperTwoTone'; +export { default as Warning } from './Warning'; +export { default as WarningAmber } from './WarningAmber'; +export { default as WarningAmberOutlined } from './WarningAmberOutlined'; +export { default as WarningAmberRounded } from './WarningAmberRounded'; +export { default as WarningAmberSharp } from './WarningAmberSharp'; +export { default as WarningAmberTwoTone } from './WarningAmberTwoTone'; +export { default as WarningOutlined } from './WarningOutlined'; +export { default as WarningRounded } from './WarningRounded'; +export { default as WarningSharp } from './WarningSharp'; +export { default as WarningTwoTone } from './WarningTwoTone'; +export { default as Wash } from './Wash'; +export { default as WashOutlined } from './WashOutlined'; +export { default as WashRounded } from './WashRounded'; +export { default as WashSharp } from './WashSharp'; +export { default as WashTwoTone } from './WashTwoTone'; +export { default as Watch } from './Watch'; +export { default as WatchLater } from './WatchLater'; +export { default as WatchLaterOutlined } from './WatchLaterOutlined'; +export { default as WatchLaterRounded } from './WatchLaterRounded'; +export { default as WatchLaterSharp } from './WatchLaterSharp'; +export { default as WatchLaterTwoTone } from './WatchLaterTwoTone'; +export { default as WatchOutlined } from './WatchOutlined'; +export { default as WatchRounded } from './WatchRounded'; +export { default as WatchSharp } from './WatchSharp'; +export { default as WatchTwoTone } from './WatchTwoTone'; +export { default as Water } from './Water'; +export { default as WaterDamage } from './WaterDamage'; +export { default as WaterDamageOutlined } from './WaterDamageOutlined'; +export { default as WaterDamageRounded } from './WaterDamageRounded'; +export { default as WaterDamageSharp } from './WaterDamageSharp'; +export { default as WaterDamageTwoTone } from './WaterDamageTwoTone'; +export { default as WaterOutlined } from './WaterOutlined'; +export { default as WaterRounded } from './WaterRounded'; +export { default as WaterSharp } from './WaterSharp'; +export { default as WaterTwoTone } from './WaterTwoTone'; +export { default as WaterfallChart } from './WaterfallChart'; +export { default as WaterfallChartOutlined } from './WaterfallChartOutlined'; +export { default as WaterfallChartRounded } from './WaterfallChartRounded'; +export { default as WaterfallChartSharp } from './WaterfallChartSharp'; +export { default as WaterfallChartTwoTone } from './WaterfallChartTwoTone'; +export { default as Waves } from './Waves'; +export { default as WavesOutlined } from './WavesOutlined'; +export { default as WavesRounded } from './WavesRounded'; +export { default as WavesSharp } from './WavesSharp'; +export { default as WavesTwoTone } from './WavesTwoTone'; +export { default as WbAuto } from './WbAuto'; +export { default as WbAutoOutlined } from './WbAutoOutlined'; +export { default as WbAutoRounded } from './WbAutoRounded'; +export { default as WbAutoSharp } from './WbAutoSharp'; +export { default as WbAutoTwoTone } from './WbAutoTwoTone'; +export { default as WbCloudy } from './WbCloudy'; +export { default as WbCloudyOutlined } from './WbCloudyOutlined'; +export { default as WbCloudyRounded } from './WbCloudyRounded'; +export { default as WbCloudySharp } from './WbCloudySharp'; +export { default as WbCloudyTwoTone } from './WbCloudyTwoTone'; +export { default as WbIncandescent } from './WbIncandescent'; +export { default as WbIncandescentOutlined } from './WbIncandescentOutlined'; +export { default as WbIncandescentRounded } from './WbIncandescentRounded'; +export { default as WbIncandescentSharp } from './WbIncandescentSharp'; +export { default as WbIncandescentTwoTone } from './WbIncandescentTwoTone'; +export { default as WbIridescent } from './WbIridescent'; +export { default as WbIridescentOutlined } from './WbIridescentOutlined'; +export { default as WbIridescentRounded } from './WbIridescentRounded'; +export { default as WbIridescentSharp } from './WbIridescentSharp'; +export { default as WbIridescentTwoTone } from './WbIridescentTwoTone'; +export { default as WbShade } from './WbShade'; +export { default as WbShadeOutlined } from './WbShadeOutlined'; +export { default as WbShadeRounded } from './WbShadeRounded'; +export { default as WbShadeSharp } from './WbShadeSharp'; +export { default as WbShadeTwoTone } from './WbShadeTwoTone'; +export { default as WbSunny } from './WbSunny'; +export { default as WbSunnyOutlined } from './WbSunnyOutlined'; +export { default as WbSunnyRounded } from './WbSunnyRounded'; +export { default as WbSunnySharp } from './WbSunnySharp'; +export { default as WbSunnyTwoTone } from './WbSunnyTwoTone'; +export { default as WbTwilight } from './WbTwilight'; +export { default as WbTwilightOutlined } from './WbTwilightOutlined'; +export { default as WbTwilightRounded } from './WbTwilightRounded'; +export { default as WbTwilightSharp } from './WbTwilightSharp'; +export { default as WbTwilightTwoTone } from './WbTwilightTwoTone'; +export { default as Wc } from './Wc'; +export { default as WcOutlined } from './WcOutlined'; +export { default as WcRounded } from './WcRounded'; +export { default as WcSharp } from './WcSharp'; +export { default as WcTwoTone } from './WcTwoTone'; +export { default as Web } from './Web'; +export { default as WebAsset } from './WebAsset'; +export { default as WebAssetOff } from './WebAssetOff'; +export { default as WebAssetOffOutlined } from './WebAssetOffOutlined'; +export { default as WebAssetOffRounded } from './WebAssetOffRounded'; +export { default as WebAssetOffSharp } from './WebAssetOffSharp'; +export { default as WebAssetOffTwoTone } from './WebAssetOffTwoTone'; +export { default as WebAssetOutlined } from './WebAssetOutlined'; +export { default as WebAssetRounded } from './WebAssetRounded'; +export { default as WebAssetSharp } from './WebAssetSharp'; +export { default as WebAssetTwoTone } from './WebAssetTwoTone'; +export { default as WebOutlined } from './WebOutlined'; +export { default as WebRounded } from './WebRounded'; +export { default as WebSharp } from './WebSharp'; +export { default as WebTwoTone } from './WebTwoTone'; +export { default as Weekend } from './Weekend'; +export { default as WeekendOutlined } from './WeekendOutlined'; +export { default as WeekendRounded } from './WeekendRounded'; +export { default as WeekendSharp } from './WeekendSharp'; +export { default as WeekendTwoTone } from './WeekendTwoTone'; +export { default as West } from './West'; +export { default as WestOutlined } from './WestOutlined'; +export { default as WestRounded } from './WestRounded'; +export { default as WestSharp } from './WestSharp'; +export { default as WestTwoTone } from './WestTwoTone'; +export { default as WhatsApp } from './WhatsApp'; +export { default as Whatshot } from './Whatshot'; +export { default as WhatshotOutlined } from './WhatshotOutlined'; +export { default as WhatshotRounded } from './WhatshotRounded'; +export { default as WhatshotSharp } from './WhatshotSharp'; +export { default as WhatshotTwoTone } from './WhatshotTwoTone'; +export { default as WheelchairPickup } from './WheelchairPickup'; +export { default as WheelchairPickupOutlined } from './WheelchairPickupOutlined'; +export { default as WheelchairPickupRounded } from './WheelchairPickupRounded'; +export { default as WheelchairPickupSharp } from './WheelchairPickupSharp'; +export { default as WheelchairPickupTwoTone } from './WheelchairPickupTwoTone'; +export { default as WhereToVote } from './WhereToVote'; +export { default as WhereToVoteOutlined } from './WhereToVoteOutlined'; +export { default as WhereToVoteRounded } from './WhereToVoteRounded'; +export { default as WhereToVoteSharp } from './WhereToVoteSharp'; +export { default as WhereToVoteTwoTone } from './WhereToVoteTwoTone'; +export { default as Widgets } from './Widgets'; +export { default as WidgetsOutlined } from './WidgetsOutlined'; +export { default as WidgetsRounded } from './WidgetsRounded'; +export { default as WidgetsSharp } from './WidgetsSharp'; +export { default as WidgetsTwoTone } from './WidgetsTwoTone'; +export { default as Wifi } from './Wifi'; +export { default as WifiCalling } from './WifiCalling'; +export { default as WifiCalling3 } from './WifiCalling3'; +export { default as WifiCalling3Outlined } from './WifiCalling3Outlined'; +export { default as WifiCalling3Rounded } from './WifiCalling3Rounded'; +export { default as WifiCalling3Sharp } from './WifiCalling3Sharp'; +export { default as WifiCalling3TwoTone } from './WifiCalling3TwoTone'; +export { default as WifiCallingOutlined } from './WifiCallingOutlined'; +export { default as WifiCallingRounded } from './WifiCallingRounded'; +export { default as WifiCallingSharp } from './WifiCallingSharp'; +export { default as WifiCallingTwoTone } from './WifiCallingTwoTone'; +export { default as WifiLock } from './WifiLock'; +export { default as WifiLockOutlined } from './WifiLockOutlined'; +export { default as WifiLockRounded } from './WifiLockRounded'; +export { default as WifiLockSharp } from './WifiLockSharp'; +export { default as WifiLockTwoTone } from './WifiLockTwoTone'; +export { default as WifiOff } from './WifiOff'; +export { default as WifiOffOutlined } from './WifiOffOutlined'; +export { default as WifiOffRounded } from './WifiOffRounded'; +export { default as WifiOffSharp } from './WifiOffSharp'; +export { default as WifiOffTwoTone } from './WifiOffTwoTone'; +export { default as WifiOutlined } from './WifiOutlined'; +export { default as WifiProtectedSetup } from './WifiProtectedSetup'; +export { default as WifiProtectedSetupOutlined } from './WifiProtectedSetupOutlined'; +export { default as WifiProtectedSetupRounded } from './WifiProtectedSetupRounded'; +export { default as WifiProtectedSetupSharp } from './WifiProtectedSetupSharp'; +export { default as WifiProtectedSetupTwoTone } from './WifiProtectedSetupTwoTone'; +export { default as WifiRounded } from './WifiRounded'; +export { default as WifiSharp } from './WifiSharp'; +export { default as WifiTethering } from './WifiTethering'; +export { default as WifiTetheringErrorRounded } from './WifiTetheringErrorRounded'; +export { default as WifiTetheringErrorRoundedOutlined } from './WifiTetheringErrorRoundedOutlined'; +export { default as WifiTetheringErrorRoundedRounded } from './WifiTetheringErrorRoundedRounded'; +export { default as WifiTetheringErrorRoundedSharp } from './WifiTetheringErrorRoundedSharp'; +export { default as WifiTetheringErrorRoundedTwoTone } from './WifiTetheringErrorRoundedTwoTone'; +export { default as WifiTetheringOff } from './WifiTetheringOff'; +export { default as WifiTetheringOffOutlined } from './WifiTetheringOffOutlined'; +export { default as WifiTetheringOffRounded } from './WifiTetheringOffRounded'; +export { default as WifiTetheringOffSharp } from './WifiTetheringOffSharp'; +export { default as WifiTetheringOffTwoTone } from './WifiTetheringOffTwoTone'; +export { default as WifiTetheringOutlined } from './WifiTetheringOutlined'; +export { default as WifiTetheringRounded } from './WifiTetheringRounded'; +export { default as WifiTetheringSharp } from './WifiTetheringSharp'; +export { default as WifiTetheringTwoTone } from './WifiTetheringTwoTone'; +export { default as WifiTwoTone } from './WifiTwoTone'; +export { default as Window } from './Window'; +export { default as WindowOutlined } from './WindowOutlined'; +export { default as WindowRounded } from './WindowRounded'; +export { default as WindowSharp } from './WindowSharp'; +export { default as WindowTwoTone } from './WindowTwoTone'; +export { default as WineBar } from './WineBar'; +export { default as WineBarOutlined } from './WineBarOutlined'; +export { default as WineBarRounded } from './WineBarRounded'; +export { default as WineBarSharp } from './WineBarSharp'; +export { default as WineBarTwoTone } from './WineBarTwoTone'; +export { default as Work } from './Work'; +export { default as WorkOff } from './WorkOff'; +export { default as WorkOffOutlined } from './WorkOffOutlined'; +export { default as WorkOffRounded } from './WorkOffRounded'; +export { default as WorkOffSharp } from './WorkOffSharp'; +export { default as WorkOffTwoTone } from './WorkOffTwoTone'; +export { default as WorkOutline } from './WorkOutline'; +export { default as WorkOutlineOutlined } from './WorkOutlineOutlined'; +export { default as WorkOutlineRounded } from './WorkOutlineRounded'; +export { default as WorkOutlineSharp } from './WorkOutlineSharp'; +export { default as WorkOutlineTwoTone } from './WorkOutlineTwoTone'; +export { default as WorkOutlined } from './WorkOutlined'; +export { default as WorkRounded } from './WorkRounded'; +export { default as WorkSharp } from './WorkSharp'; +export { default as WorkTwoTone } from './WorkTwoTone'; +export { default as Workspaces } from './Workspaces'; +export { default as WorkspacesOutlined } from './WorkspacesOutlined'; +export { default as WorkspacesRounded } from './WorkspacesRounded'; +export { default as WorkspacesSharp } from './WorkspacesSharp'; +export { default as WorkspacesTwoTone } from './WorkspacesTwoTone'; +export { default as WrapText } from './WrapText'; +export { default as WrapTextOutlined } from './WrapTextOutlined'; +export { default as WrapTextRounded } from './WrapTextRounded'; +export { default as WrapTextSharp } from './WrapTextSharp'; +export { default as WrapTextTwoTone } from './WrapTextTwoTone'; +export { default as WrongLocation } from './WrongLocation'; +export { default as WrongLocationOutlined } from './WrongLocationOutlined'; +export { default as WrongLocationRounded } from './WrongLocationRounded'; +export { default as WrongLocationSharp } from './WrongLocationSharp'; +export { default as WrongLocationTwoTone } from './WrongLocationTwoTone'; +export { default as Wysiwyg } from './Wysiwyg'; +export { default as WysiwygOutlined } from './WysiwygOutlined'; +export { default as WysiwygRounded } from './WysiwygRounded'; +export { default as WysiwygSharp } from './WysiwygSharp'; +export { default as WysiwygTwoTone } from './WysiwygTwoTone'; +export { default as Yard } from './Yard'; +export { default as YardOutlined } from './YardOutlined'; +export { default as YardRounded } from './YardRounded'; +export { default as YardSharp } from './YardSharp'; +export { default as YardTwoTone } from './YardTwoTone'; +export { default as YouTube } from './YouTube'; +export { default as YoutubeSearchedFor } from './YoutubeSearchedFor'; +export { default as YoutubeSearchedForOutlined } from './YoutubeSearchedForOutlined'; +export { default as YoutubeSearchedForRounded } from './YoutubeSearchedForRounded'; +export { default as YoutubeSearchedForSharp } from './YoutubeSearchedForSharp'; +export { default as YoutubeSearchedForTwoTone } from './YoutubeSearchedForTwoTone'; +export { default as ZoomIn } from './ZoomIn'; +export { default as ZoomInOutlined } from './ZoomInOutlined'; +export { default as ZoomInRounded } from './ZoomInRounded'; +export { default as ZoomInSharp } from './ZoomInSharp'; +export { default as ZoomInTwoTone } from './ZoomInTwoTone'; +export { default as ZoomOut } from './ZoomOut'; +export { default as ZoomOutMap } from './ZoomOutMap'; +export { default as ZoomOutMapOutlined } from './ZoomOutMapOutlined'; +export { default as ZoomOutMapRounded } from './ZoomOutMapRounded'; +export { default as ZoomOutMapSharp } from './ZoomOutMapSharp'; +export { default as ZoomOutMapTwoTone } from './ZoomOutMapTwoTone'; +export { default as ZoomOutOutlined } from './ZoomOutOutlined'; +export { default as ZoomOutRounded } from './ZoomOutRounded'; +export { default as ZoomOutSharp } from './ZoomOutSharp'; +export { default as ZoomOutTwoTone } from './ZoomOutTwoTone'; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/esm/utils/createSvgIcon.js b/packages/material-ui-icons/lib/esm/utils/createSvgIcon.js new file mode 100644 index 00000000000000..2ded6468f1a10a --- /dev/null +++ b/packages/material-ui-icons/lib/esm/utils/createSvgIcon.js @@ -0,0 +1 @@ +export { createSvgIcon as default } from '@material-ui/core/utils'; \ No newline at end of file diff --git a/packages/material-ui-icons/lib/index.js b/packages/material-ui-icons/lib/index.js index 7ace74b8a6583c..8a1b52d47564d8 100644 --- a/packages/material-ui-icons/lib/index.js +++ b/packages/material-ui-icons/lib/index.js @@ -1,8875 +1,71007 @@ -export { default as AcUnit } from './AcUnit'; -export { default as AcUnitOutlined } from './AcUnitOutlined'; -export { default as AcUnitRounded } from './AcUnitRounded'; -export { default as AcUnitSharp } from './AcUnitSharp'; -export { default as AcUnitTwoTone } from './AcUnitTwoTone'; -export { default as AccessAlarm } from './AccessAlarm'; -export { default as AccessAlarmOutlined } from './AccessAlarmOutlined'; -export { default as AccessAlarmRounded } from './AccessAlarmRounded'; -export { default as AccessAlarmSharp } from './AccessAlarmSharp'; -export { default as AccessAlarmTwoTone } from './AccessAlarmTwoTone'; -export { default as AccessAlarms } from './AccessAlarms'; -export { default as AccessAlarmsOutlined } from './AccessAlarmsOutlined'; -export { default as AccessAlarmsRounded } from './AccessAlarmsRounded'; -export { default as AccessAlarmsSharp } from './AccessAlarmsSharp'; -export { default as AccessAlarmsTwoTone } from './AccessAlarmsTwoTone'; -export { default as AccessTime } from './AccessTime'; -export { default as AccessTimeFilled } from './AccessTimeFilled'; -export { default as AccessTimeFilledOutlined } from './AccessTimeFilledOutlined'; -export { default as AccessTimeFilledRounded } from './AccessTimeFilledRounded'; -export { default as AccessTimeFilledSharp } from './AccessTimeFilledSharp'; -export { default as AccessTimeFilledTwoTone } from './AccessTimeFilledTwoTone'; -export { default as AccessTimeOutlined } from './AccessTimeOutlined'; -export { default as AccessTimeRounded } from './AccessTimeRounded'; -export { default as AccessTimeSharp } from './AccessTimeSharp'; -export { default as AccessTimeTwoTone } from './AccessTimeTwoTone'; -export { default as Accessibility } from './Accessibility'; -export { default as AccessibilityNew } from './AccessibilityNew'; -export { default as AccessibilityNewOutlined } from './AccessibilityNewOutlined'; -export { default as AccessibilityNewRounded } from './AccessibilityNewRounded'; -export { default as AccessibilityNewSharp } from './AccessibilityNewSharp'; -export { default as AccessibilityNewTwoTone } from './AccessibilityNewTwoTone'; -export { default as AccessibilityOutlined } from './AccessibilityOutlined'; -export { default as AccessibilityRounded } from './AccessibilityRounded'; -export { default as AccessibilitySharp } from './AccessibilitySharp'; -export { default as AccessibilityTwoTone } from './AccessibilityTwoTone'; -export { default as Accessible } from './Accessible'; -export { default as AccessibleForward } from './AccessibleForward'; -export { default as AccessibleForwardOutlined } from './AccessibleForwardOutlined'; -export { default as AccessibleForwardRounded } from './AccessibleForwardRounded'; -export { default as AccessibleForwardSharp } from './AccessibleForwardSharp'; -export { default as AccessibleForwardTwoTone } from './AccessibleForwardTwoTone'; -export { default as AccessibleOutlined } from './AccessibleOutlined'; -export { default as AccessibleRounded } from './AccessibleRounded'; -export { default as AccessibleSharp } from './AccessibleSharp'; -export { default as AccessibleTwoTone } from './AccessibleTwoTone'; -export { default as AccountBalance } from './AccountBalance'; -export { default as AccountBalanceOutlined } from './AccountBalanceOutlined'; -export { default as AccountBalanceRounded } from './AccountBalanceRounded'; -export { default as AccountBalanceSharp } from './AccountBalanceSharp'; -export { default as AccountBalanceTwoTone } from './AccountBalanceTwoTone'; -export { default as AccountBalanceWallet } from './AccountBalanceWallet'; -export { default as AccountBalanceWalletOutlined } from './AccountBalanceWalletOutlined'; -export { default as AccountBalanceWalletRounded } from './AccountBalanceWalletRounded'; -export { default as AccountBalanceWalletSharp } from './AccountBalanceWalletSharp'; -export { default as AccountBalanceWalletTwoTone } from './AccountBalanceWalletTwoTone'; -export { default as AccountBox } from './AccountBox'; -export { default as AccountBoxOutlined } from './AccountBoxOutlined'; -export { default as AccountBoxRounded } from './AccountBoxRounded'; -export { default as AccountBoxSharp } from './AccountBoxSharp'; -export { default as AccountBoxTwoTone } from './AccountBoxTwoTone'; -export { default as AccountCircle } from './AccountCircle'; -export { default as AccountCircleOutlined } from './AccountCircleOutlined'; -export { default as AccountCircleRounded } from './AccountCircleRounded'; -export { default as AccountCircleSharp } from './AccountCircleSharp'; -export { default as AccountCircleTwoTone } from './AccountCircleTwoTone'; -export { default as AccountTree } from './AccountTree'; -export { default as AccountTreeOutlined } from './AccountTreeOutlined'; -export { default as AccountTreeRounded } from './AccountTreeRounded'; -export { default as AccountTreeSharp } from './AccountTreeSharp'; -export { default as AccountTreeTwoTone } from './AccountTreeTwoTone'; -export { default as AdUnits } from './AdUnits'; -export { default as AdUnitsOutlined } from './AdUnitsOutlined'; -export { default as AdUnitsRounded } from './AdUnitsRounded'; -export { default as AdUnitsSharp } from './AdUnitsSharp'; -export { default as AdUnitsTwoTone } from './AdUnitsTwoTone'; -export { default as Adb } from './Adb'; -export { default as AdbOutlined } from './AdbOutlined'; -export { default as AdbRounded } from './AdbRounded'; -export { default as AdbSharp } from './AdbSharp'; -export { default as AdbTwoTone } from './AdbTwoTone'; -export { default as Add } from './Add'; -export { default as AddAPhoto } from './AddAPhoto'; -export { default as AddAPhotoOutlined } from './AddAPhotoOutlined'; -export { default as AddAPhotoRounded } from './AddAPhotoRounded'; -export { default as AddAPhotoSharp } from './AddAPhotoSharp'; -export { default as AddAPhotoTwoTone } from './AddAPhotoTwoTone'; -export { default as AddAlarm } from './AddAlarm'; -export { default as AddAlarmOutlined } from './AddAlarmOutlined'; -export { default as AddAlarmRounded } from './AddAlarmRounded'; -export { default as AddAlarmSharp } from './AddAlarmSharp'; -export { default as AddAlarmTwoTone } from './AddAlarmTwoTone'; -export { default as AddAlert } from './AddAlert'; -export { default as AddAlertOutlined } from './AddAlertOutlined'; -export { default as AddAlertRounded } from './AddAlertRounded'; -export { default as AddAlertSharp } from './AddAlertSharp'; -export { default as AddAlertTwoTone } from './AddAlertTwoTone'; -export { default as AddBox } from './AddBox'; -export { default as AddBoxOutlined } from './AddBoxOutlined'; -export { default as AddBoxRounded } from './AddBoxRounded'; -export { default as AddBoxSharp } from './AddBoxSharp'; -export { default as AddBoxTwoTone } from './AddBoxTwoTone'; -export { default as AddBusiness } from './AddBusiness'; -export { default as AddBusinessOutlined } from './AddBusinessOutlined'; -export { default as AddBusinessRounded } from './AddBusinessRounded'; -export { default as AddBusinessSharp } from './AddBusinessSharp'; -export { default as AddBusinessTwoTone } from './AddBusinessTwoTone'; -export { default as AddCircle } from './AddCircle'; -export { default as AddCircleOutline } from './AddCircleOutline'; -export { default as AddCircleOutlineOutlined } from './AddCircleOutlineOutlined'; -export { default as AddCircleOutlineRounded } from './AddCircleOutlineRounded'; -export { default as AddCircleOutlineSharp } from './AddCircleOutlineSharp'; -export { default as AddCircleOutlineTwoTone } from './AddCircleOutlineTwoTone'; -export { default as AddCircleOutlined } from './AddCircleOutlined'; -export { default as AddCircleRounded } from './AddCircleRounded'; -export { default as AddCircleSharp } from './AddCircleSharp'; -export { default as AddCircleTwoTone } from './AddCircleTwoTone'; -export { default as AddComment } from './AddComment'; -export { default as AddCommentOutlined } from './AddCommentOutlined'; -export { default as AddCommentRounded } from './AddCommentRounded'; -export { default as AddCommentSharp } from './AddCommentSharp'; -export { default as AddCommentTwoTone } from './AddCommentTwoTone'; -export { default as AddIcCall } from './AddIcCall'; -export { default as AddIcCallOutlined } from './AddIcCallOutlined'; -export { default as AddIcCallRounded } from './AddIcCallRounded'; -export { default as AddIcCallSharp } from './AddIcCallSharp'; -export { default as AddIcCallTwoTone } from './AddIcCallTwoTone'; -export { default as AddLink } from './AddLink'; -export { default as AddLinkOutlined } from './AddLinkOutlined'; -export { default as AddLinkRounded } from './AddLinkRounded'; -export { default as AddLinkSharp } from './AddLinkSharp'; -export { default as AddLinkTwoTone } from './AddLinkTwoTone'; -export { default as AddLocation } from './AddLocation'; -export { default as AddLocationAlt } from './AddLocationAlt'; -export { default as AddLocationAltOutlined } from './AddLocationAltOutlined'; -export { default as AddLocationAltRounded } from './AddLocationAltRounded'; -export { default as AddLocationAltSharp } from './AddLocationAltSharp'; -export { default as AddLocationAltTwoTone } from './AddLocationAltTwoTone'; -export { default as AddLocationOutlined } from './AddLocationOutlined'; -export { default as AddLocationRounded } from './AddLocationRounded'; -export { default as AddLocationSharp } from './AddLocationSharp'; -export { default as AddLocationTwoTone } from './AddLocationTwoTone'; -export { default as AddModerator } from './AddModerator'; -export { default as AddModeratorOutlined } from './AddModeratorOutlined'; -export { default as AddModeratorRounded } from './AddModeratorRounded'; -export { default as AddModeratorSharp } from './AddModeratorSharp'; -export { default as AddModeratorTwoTone } from './AddModeratorTwoTone'; -export { default as AddOutlined } from './AddOutlined'; -export { default as AddPhotoAlternate } from './AddPhotoAlternate'; -export { default as AddPhotoAlternateOutlined } from './AddPhotoAlternateOutlined'; -export { default as AddPhotoAlternateRounded } from './AddPhotoAlternateRounded'; -export { default as AddPhotoAlternateSharp } from './AddPhotoAlternateSharp'; -export { default as AddPhotoAlternateTwoTone } from './AddPhotoAlternateTwoTone'; -export { default as AddReaction } from './AddReaction'; -export { default as AddReactionOutlined } from './AddReactionOutlined'; -export { default as AddReactionRounded } from './AddReactionRounded'; -export { default as AddReactionSharp } from './AddReactionSharp'; -export { default as AddReactionTwoTone } from './AddReactionTwoTone'; -export { default as AddRoad } from './AddRoad'; -export { default as AddRoadOutlined } from './AddRoadOutlined'; -export { default as AddRoadRounded } from './AddRoadRounded'; -export { default as AddRoadSharp } from './AddRoadSharp'; -export { default as AddRoadTwoTone } from './AddRoadTwoTone'; -export { default as AddRounded } from './AddRounded'; -export { default as AddSharp } from './AddSharp'; -export { default as AddShoppingCart } from './AddShoppingCart'; -export { default as AddShoppingCartOutlined } from './AddShoppingCartOutlined'; -export { default as AddShoppingCartRounded } from './AddShoppingCartRounded'; -export { default as AddShoppingCartSharp } from './AddShoppingCartSharp'; -export { default as AddShoppingCartTwoTone } from './AddShoppingCartTwoTone'; -export { default as AddTask } from './AddTask'; -export { default as AddTaskOutlined } from './AddTaskOutlined'; -export { default as AddTaskRounded } from './AddTaskRounded'; -export { default as AddTaskSharp } from './AddTaskSharp'; -export { default as AddTaskTwoTone } from './AddTaskTwoTone'; -export { default as AddToDrive } from './AddToDrive'; -export { default as AddToDriveOutlined } from './AddToDriveOutlined'; -export { default as AddToDriveRounded } from './AddToDriveRounded'; -export { default as AddToDriveSharp } from './AddToDriveSharp'; -export { default as AddToDriveTwoTone } from './AddToDriveTwoTone'; -export { default as AddToHomeScreen } from './AddToHomeScreen'; -export { default as AddToHomeScreenOutlined } from './AddToHomeScreenOutlined'; -export { default as AddToHomeScreenRounded } from './AddToHomeScreenRounded'; -export { default as AddToHomeScreenSharp } from './AddToHomeScreenSharp'; -export { default as AddToHomeScreenTwoTone } from './AddToHomeScreenTwoTone'; -export { default as AddToPhotos } from './AddToPhotos'; -export { default as AddToPhotosOutlined } from './AddToPhotosOutlined'; -export { default as AddToPhotosRounded } from './AddToPhotosRounded'; -export { default as AddToPhotosSharp } from './AddToPhotosSharp'; -export { default as AddToPhotosTwoTone } from './AddToPhotosTwoTone'; -export { default as AddToQueue } from './AddToQueue'; -export { default as AddToQueueOutlined } from './AddToQueueOutlined'; -export { default as AddToQueueRounded } from './AddToQueueRounded'; -export { default as AddToQueueSharp } from './AddToQueueSharp'; -export { default as AddToQueueTwoTone } from './AddToQueueTwoTone'; -export { default as AddTwoTone } from './AddTwoTone'; -export { default as Addchart } from './Addchart'; -export { default as AddchartOutlined } from './AddchartOutlined'; -export { default as AddchartRounded } from './AddchartRounded'; -export { default as AddchartSharp } from './AddchartSharp'; -export { default as AddchartTwoTone } from './AddchartTwoTone'; -export { default as Adjust } from './Adjust'; -export { default as AdjustOutlined } from './AdjustOutlined'; -export { default as AdjustRounded } from './AdjustRounded'; -export { default as AdjustSharp } from './AdjustSharp'; -export { default as AdjustTwoTone } from './AdjustTwoTone'; -export { default as AdminPanelSettings } from './AdminPanelSettings'; -export { default as AdminPanelSettingsOutlined } from './AdminPanelSettingsOutlined'; -export { default as AdminPanelSettingsRounded } from './AdminPanelSettingsRounded'; -export { default as AdminPanelSettingsSharp } from './AdminPanelSettingsSharp'; -export { default as AdminPanelSettingsTwoTone } from './AdminPanelSettingsTwoTone'; -export { default as Agriculture } from './Agriculture'; -export { default as AgricultureOutlined } from './AgricultureOutlined'; -export { default as AgricultureRounded } from './AgricultureRounded'; -export { default as AgricultureSharp } from './AgricultureSharp'; -export { default as AgricultureTwoTone } from './AgricultureTwoTone'; -export { default as Air } from './Air'; -export { default as AirOutlined } from './AirOutlined'; -export { default as AirRounded } from './AirRounded'; -export { default as AirSharp } from './AirSharp'; -export { default as AirTwoTone } from './AirTwoTone'; -export { default as AirlineSeatFlat } from './AirlineSeatFlat'; -export { default as AirlineSeatFlatAngled } from './AirlineSeatFlatAngled'; -export { default as AirlineSeatFlatAngledOutlined } from './AirlineSeatFlatAngledOutlined'; -export { default as AirlineSeatFlatAngledRounded } from './AirlineSeatFlatAngledRounded'; -export { default as AirlineSeatFlatAngledSharp } from './AirlineSeatFlatAngledSharp'; -export { default as AirlineSeatFlatAngledTwoTone } from './AirlineSeatFlatAngledTwoTone'; -export { default as AirlineSeatFlatOutlined } from './AirlineSeatFlatOutlined'; -export { default as AirlineSeatFlatRounded } from './AirlineSeatFlatRounded'; -export { default as AirlineSeatFlatSharp } from './AirlineSeatFlatSharp'; -export { default as AirlineSeatFlatTwoTone } from './AirlineSeatFlatTwoTone'; -export { default as AirlineSeatIndividualSuite } from './AirlineSeatIndividualSuite'; -export { default as AirlineSeatIndividualSuiteOutlined } from './AirlineSeatIndividualSuiteOutlined'; -export { default as AirlineSeatIndividualSuiteRounded } from './AirlineSeatIndividualSuiteRounded'; -export { default as AirlineSeatIndividualSuiteSharp } from './AirlineSeatIndividualSuiteSharp'; -export { default as AirlineSeatIndividualSuiteTwoTone } from './AirlineSeatIndividualSuiteTwoTone'; -export { default as AirlineSeatLegroomExtra } from './AirlineSeatLegroomExtra'; -export { default as AirlineSeatLegroomExtraOutlined } from './AirlineSeatLegroomExtraOutlined'; -export { default as AirlineSeatLegroomExtraRounded } from './AirlineSeatLegroomExtraRounded'; -export { default as AirlineSeatLegroomExtraSharp } from './AirlineSeatLegroomExtraSharp'; -export { default as AirlineSeatLegroomExtraTwoTone } from './AirlineSeatLegroomExtraTwoTone'; -export { default as AirlineSeatLegroomNormal } from './AirlineSeatLegroomNormal'; -export { default as AirlineSeatLegroomNormalOutlined } from './AirlineSeatLegroomNormalOutlined'; -export { default as AirlineSeatLegroomNormalRounded } from './AirlineSeatLegroomNormalRounded'; -export { default as AirlineSeatLegroomNormalSharp } from './AirlineSeatLegroomNormalSharp'; -export { default as AirlineSeatLegroomNormalTwoTone } from './AirlineSeatLegroomNormalTwoTone'; -export { default as AirlineSeatLegroomReduced } from './AirlineSeatLegroomReduced'; -export { default as AirlineSeatLegroomReducedOutlined } from './AirlineSeatLegroomReducedOutlined'; -export { default as AirlineSeatLegroomReducedRounded } from './AirlineSeatLegroomReducedRounded'; -export { default as AirlineSeatLegroomReducedSharp } from './AirlineSeatLegroomReducedSharp'; -export { default as AirlineSeatLegroomReducedTwoTone } from './AirlineSeatLegroomReducedTwoTone'; -export { default as AirlineSeatReclineExtra } from './AirlineSeatReclineExtra'; -export { default as AirlineSeatReclineExtraOutlined } from './AirlineSeatReclineExtraOutlined'; -export { default as AirlineSeatReclineExtraRounded } from './AirlineSeatReclineExtraRounded'; -export { default as AirlineSeatReclineExtraSharp } from './AirlineSeatReclineExtraSharp'; -export { default as AirlineSeatReclineExtraTwoTone } from './AirlineSeatReclineExtraTwoTone'; -export { default as AirlineSeatReclineNormal } from './AirlineSeatReclineNormal'; -export { default as AirlineSeatReclineNormalOutlined } from './AirlineSeatReclineNormalOutlined'; -export { default as AirlineSeatReclineNormalRounded } from './AirlineSeatReclineNormalRounded'; -export { default as AirlineSeatReclineNormalSharp } from './AirlineSeatReclineNormalSharp'; -export { default as AirlineSeatReclineNormalTwoTone } from './AirlineSeatReclineNormalTwoTone'; -export { default as AirplaneTicket } from './AirplaneTicket'; -export { default as AirplaneTicketOutlined } from './AirplaneTicketOutlined'; -export { default as AirplaneTicketRounded } from './AirplaneTicketRounded'; -export { default as AirplaneTicketSharp } from './AirplaneTicketSharp'; -export { default as AirplaneTicketTwoTone } from './AirplaneTicketTwoTone'; -export { default as AirplanemodeActive } from './AirplanemodeActive'; -export { default as AirplanemodeActiveOutlined } from './AirplanemodeActiveOutlined'; -export { default as AirplanemodeActiveRounded } from './AirplanemodeActiveRounded'; -export { default as AirplanemodeActiveSharp } from './AirplanemodeActiveSharp'; -export { default as AirplanemodeActiveTwoTone } from './AirplanemodeActiveTwoTone'; -export { default as AirplanemodeInactive } from './AirplanemodeInactive'; -export { default as AirplanemodeInactiveOutlined } from './AirplanemodeInactiveOutlined'; -export { default as AirplanemodeInactiveRounded } from './AirplanemodeInactiveRounded'; -export { default as AirplanemodeInactiveSharp } from './AirplanemodeInactiveSharp'; -export { default as AirplanemodeInactiveTwoTone } from './AirplanemodeInactiveTwoTone'; -export { default as Airplay } from './Airplay'; -export { default as AirplayOutlined } from './AirplayOutlined'; -export { default as AirplayRounded } from './AirplayRounded'; -export { default as AirplaySharp } from './AirplaySharp'; -export { default as AirplayTwoTone } from './AirplayTwoTone'; -export { default as AirportShuttle } from './AirportShuttle'; -export { default as AirportShuttleOutlined } from './AirportShuttleOutlined'; -export { default as AirportShuttleRounded } from './AirportShuttleRounded'; -export { default as AirportShuttleSharp } from './AirportShuttleSharp'; -export { default as AirportShuttleTwoTone } from './AirportShuttleTwoTone'; -export { default as Alarm } from './Alarm'; -export { default as AlarmAdd } from './AlarmAdd'; -export { default as AlarmAddOutlined } from './AlarmAddOutlined'; -export { default as AlarmAddRounded } from './AlarmAddRounded'; -export { default as AlarmAddSharp } from './AlarmAddSharp'; -export { default as AlarmAddTwoTone } from './AlarmAddTwoTone'; -export { default as AlarmOff } from './AlarmOff'; -export { default as AlarmOffOutlined } from './AlarmOffOutlined'; -export { default as AlarmOffRounded } from './AlarmOffRounded'; -export { default as AlarmOffSharp } from './AlarmOffSharp'; -export { default as AlarmOffTwoTone } from './AlarmOffTwoTone'; -export { default as AlarmOn } from './AlarmOn'; -export { default as AlarmOnOutlined } from './AlarmOnOutlined'; -export { default as AlarmOnRounded } from './AlarmOnRounded'; -export { default as AlarmOnSharp } from './AlarmOnSharp'; -export { default as AlarmOnTwoTone } from './AlarmOnTwoTone'; -export { default as AlarmOutlined } from './AlarmOutlined'; -export { default as AlarmRounded } from './AlarmRounded'; -export { default as AlarmSharp } from './AlarmSharp'; -export { default as AlarmTwoTone } from './AlarmTwoTone'; -export { default as Album } from './Album'; -export { default as AlbumOutlined } from './AlbumOutlined'; -export { default as AlbumRounded } from './AlbumRounded'; -export { default as AlbumSharp } from './AlbumSharp'; -export { default as AlbumTwoTone } from './AlbumTwoTone'; -export { default as AlignHorizontalCenter } from './AlignHorizontalCenter'; -export { default as AlignHorizontalCenterOutlined } from './AlignHorizontalCenterOutlined'; -export { default as AlignHorizontalCenterRounded } from './AlignHorizontalCenterRounded'; -export { default as AlignHorizontalCenterSharp } from './AlignHorizontalCenterSharp'; -export { default as AlignHorizontalCenterTwoTone } from './AlignHorizontalCenterTwoTone'; -export { default as AlignHorizontalLeft } from './AlignHorizontalLeft'; -export { default as AlignHorizontalLeftOutlined } from './AlignHorizontalLeftOutlined'; -export { default as AlignHorizontalLeftRounded } from './AlignHorizontalLeftRounded'; -export { default as AlignHorizontalLeftSharp } from './AlignHorizontalLeftSharp'; -export { default as AlignHorizontalLeftTwoTone } from './AlignHorizontalLeftTwoTone'; -export { default as AlignHorizontalRight } from './AlignHorizontalRight'; -export { default as AlignHorizontalRightOutlined } from './AlignHorizontalRightOutlined'; -export { default as AlignHorizontalRightRounded } from './AlignHorizontalRightRounded'; -export { default as AlignHorizontalRightSharp } from './AlignHorizontalRightSharp'; -export { default as AlignHorizontalRightTwoTone } from './AlignHorizontalRightTwoTone'; -export { default as AlignVerticalBottom } from './AlignVerticalBottom'; -export { default as AlignVerticalBottomOutlined } from './AlignVerticalBottomOutlined'; -export { default as AlignVerticalBottomRounded } from './AlignVerticalBottomRounded'; -export { default as AlignVerticalBottomSharp } from './AlignVerticalBottomSharp'; -export { default as AlignVerticalBottomTwoTone } from './AlignVerticalBottomTwoTone'; -export { default as AlignVerticalCenter } from './AlignVerticalCenter'; -export { default as AlignVerticalCenterOutlined } from './AlignVerticalCenterOutlined'; -export { default as AlignVerticalCenterRounded } from './AlignVerticalCenterRounded'; -export { default as AlignVerticalCenterSharp } from './AlignVerticalCenterSharp'; -export { default as AlignVerticalCenterTwoTone } from './AlignVerticalCenterTwoTone'; -export { default as AlignVerticalTop } from './AlignVerticalTop'; -export { default as AlignVerticalTopOutlined } from './AlignVerticalTopOutlined'; -export { default as AlignVerticalTopRounded } from './AlignVerticalTopRounded'; -export { default as AlignVerticalTopSharp } from './AlignVerticalTopSharp'; -export { default as AlignVerticalTopTwoTone } from './AlignVerticalTopTwoTone'; -export { default as AllInbox } from './AllInbox'; -export { default as AllInboxOutlined } from './AllInboxOutlined'; -export { default as AllInboxRounded } from './AllInboxRounded'; -export { default as AllInboxSharp } from './AllInboxSharp'; -export { default as AllInboxTwoTone } from './AllInboxTwoTone'; -export { default as AllInclusive } from './AllInclusive'; -export { default as AllInclusiveOutlined } from './AllInclusiveOutlined'; -export { default as AllInclusiveRounded } from './AllInclusiveRounded'; -export { default as AllInclusiveSharp } from './AllInclusiveSharp'; -export { default as AllInclusiveTwoTone } from './AllInclusiveTwoTone'; -export { default as AllOut } from './AllOut'; -export { default as AllOutOutlined } from './AllOutOutlined'; -export { default as AllOutRounded } from './AllOutRounded'; -export { default as AllOutSharp } from './AllOutSharp'; -export { default as AllOutTwoTone } from './AllOutTwoTone'; -export { default as AltRoute } from './AltRoute'; -export { default as AltRouteOutlined } from './AltRouteOutlined'; -export { default as AltRouteRounded } from './AltRouteRounded'; -export { default as AltRouteSharp } from './AltRouteSharp'; -export { default as AltRouteTwoTone } from './AltRouteTwoTone'; -export { default as AlternateEmail } from './AlternateEmail'; -export { default as AlternateEmailOutlined } from './AlternateEmailOutlined'; -export { default as AlternateEmailRounded } from './AlternateEmailRounded'; -export { default as AlternateEmailSharp } from './AlternateEmailSharp'; -export { default as AlternateEmailTwoTone } from './AlternateEmailTwoTone'; -export { default as Analytics } from './Analytics'; -export { default as AnalyticsOutlined } from './AnalyticsOutlined'; -export { default as AnalyticsRounded } from './AnalyticsRounded'; -export { default as AnalyticsSharp } from './AnalyticsSharp'; -export { default as AnalyticsTwoTone } from './AnalyticsTwoTone'; -export { default as Anchor } from './Anchor'; -export { default as AnchorOutlined } from './AnchorOutlined'; -export { default as AnchorRounded } from './AnchorRounded'; -export { default as AnchorSharp } from './AnchorSharp'; -export { default as AnchorTwoTone } from './AnchorTwoTone'; -export { default as Android } from './Android'; -export { default as AndroidOutlined } from './AndroidOutlined'; -export { default as AndroidRounded } from './AndroidRounded'; -export { default as AndroidSharp } from './AndroidSharp'; -export { default as AndroidTwoTone } from './AndroidTwoTone'; -export { default as Animation } from './Animation'; -export { default as AnimationOutlined } from './AnimationOutlined'; -export { default as AnimationRounded } from './AnimationRounded'; -export { default as AnimationSharp } from './AnimationSharp'; -export { default as AnimationTwoTone } from './AnimationTwoTone'; -export { default as Announcement } from './Announcement'; -export { default as AnnouncementOutlined } from './AnnouncementOutlined'; -export { default as AnnouncementRounded } from './AnnouncementRounded'; -export { default as AnnouncementSharp } from './AnnouncementSharp'; -export { default as AnnouncementTwoTone } from './AnnouncementTwoTone'; -export { default as Aod } from './Aod'; -export { default as AodOutlined } from './AodOutlined'; -export { default as AodRounded } from './AodRounded'; -export { default as AodSharp } from './AodSharp'; -export { default as AodTwoTone } from './AodTwoTone'; -export { default as Apartment } from './Apartment'; -export { default as ApartmentOutlined } from './ApartmentOutlined'; -export { default as ApartmentRounded } from './ApartmentRounded'; -export { default as ApartmentSharp } from './ApartmentSharp'; -export { default as ApartmentTwoTone } from './ApartmentTwoTone'; -export { default as Api } from './Api'; -export { default as ApiOutlined } from './ApiOutlined'; -export { default as ApiRounded } from './ApiRounded'; -export { default as ApiSharp } from './ApiSharp'; -export { default as ApiTwoTone } from './ApiTwoTone'; -export { default as AppBlocking } from './AppBlocking'; -export { default as AppBlockingOutlined } from './AppBlockingOutlined'; -export { default as AppBlockingRounded } from './AppBlockingRounded'; -export { default as AppBlockingSharp } from './AppBlockingSharp'; -export { default as AppBlockingTwoTone } from './AppBlockingTwoTone'; -export { default as AppRegistration } from './AppRegistration'; -export { default as AppRegistrationOutlined } from './AppRegistrationOutlined'; -export { default as AppRegistrationRounded } from './AppRegistrationRounded'; -export { default as AppRegistrationSharp } from './AppRegistrationSharp'; -export { default as AppRegistrationTwoTone } from './AppRegistrationTwoTone'; -export { default as AppSettingsAlt } from './AppSettingsAlt'; -export { default as AppSettingsAltOutlined } from './AppSettingsAltOutlined'; -export { default as AppSettingsAltRounded } from './AppSettingsAltRounded'; -export { default as AppSettingsAltSharp } from './AppSettingsAltSharp'; -export { default as AppSettingsAltTwoTone } from './AppSettingsAltTwoTone'; -export { default as Apple } from './Apple'; -export { default as Approval } from './Approval'; -export { default as ApprovalOutlined } from './ApprovalOutlined'; -export { default as ApprovalRounded } from './ApprovalRounded'; -export { default as ApprovalSharp } from './ApprovalSharp'; -export { default as ApprovalTwoTone } from './ApprovalTwoTone'; -export { default as Apps } from './Apps'; -export { default as AppsOutlined } from './AppsOutlined'; -export { default as AppsRounded } from './AppsRounded'; -export { default as AppsSharp } from './AppsSharp'; -export { default as AppsTwoTone } from './AppsTwoTone'; -export { default as Architecture } from './Architecture'; -export { default as ArchitectureOutlined } from './ArchitectureOutlined'; -export { default as ArchitectureRounded } from './ArchitectureRounded'; -export { default as ArchitectureSharp } from './ArchitectureSharp'; -export { default as ArchitectureTwoTone } from './ArchitectureTwoTone'; -export { default as Archive } from './Archive'; -export { default as ArchiveOutlined } from './ArchiveOutlined'; -export { default as ArchiveRounded } from './ArchiveRounded'; -export { default as ArchiveSharp } from './ArchiveSharp'; -export { default as ArchiveTwoTone } from './ArchiveTwoTone'; -export { default as ArrowBack } from './ArrowBack'; -export { default as ArrowBackIos } from './ArrowBackIos'; -export { default as ArrowBackIosNew } from './ArrowBackIosNew'; -export { default as ArrowBackIosNewOutlined } from './ArrowBackIosNewOutlined'; -export { default as ArrowBackIosNewRounded } from './ArrowBackIosNewRounded'; -export { default as ArrowBackIosNewSharp } from './ArrowBackIosNewSharp'; -export { default as ArrowBackIosNewTwoTone } from './ArrowBackIosNewTwoTone'; -export { default as ArrowBackIosOutlined } from './ArrowBackIosOutlined'; -export { default as ArrowBackIosRounded } from './ArrowBackIosRounded'; -export { default as ArrowBackIosSharp } from './ArrowBackIosSharp'; -export { default as ArrowBackIosTwoTone } from './ArrowBackIosTwoTone'; -export { default as ArrowBackOutlined } from './ArrowBackOutlined'; -export { default as ArrowBackRounded } from './ArrowBackRounded'; -export { default as ArrowBackSharp } from './ArrowBackSharp'; -export { default as ArrowBackTwoTone } from './ArrowBackTwoTone'; -export { default as ArrowCircleDown } from './ArrowCircleDown'; -export { default as ArrowCircleDownOutlined } from './ArrowCircleDownOutlined'; -export { default as ArrowCircleDownRounded } from './ArrowCircleDownRounded'; -export { default as ArrowCircleDownSharp } from './ArrowCircleDownSharp'; -export { default as ArrowCircleDownTwoTone } from './ArrowCircleDownTwoTone'; -export { default as ArrowCircleUp } from './ArrowCircleUp'; -export { default as ArrowCircleUpOutlined } from './ArrowCircleUpOutlined'; -export { default as ArrowCircleUpRounded } from './ArrowCircleUpRounded'; -export { default as ArrowCircleUpSharp } from './ArrowCircleUpSharp'; -export { default as ArrowCircleUpTwoTone } from './ArrowCircleUpTwoTone'; -export { default as ArrowDownward } from './ArrowDownward'; -export { default as ArrowDownwardOutlined } from './ArrowDownwardOutlined'; -export { default as ArrowDownwardRounded } from './ArrowDownwardRounded'; -export { default as ArrowDownwardSharp } from './ArrowDownwardSharp'; -export { default as ArrowDownwardTwoTone } from './ArrowDownwardTwoTone'; -export { default as ArrowDropDown } from './ArrowDropDown'; -export { default as ArrowDropDownCircle } from './ArrowDropDownCircle'; -export { default as ArrowDropDownCircleOutlined } from './ArrowDropDownCircleOutlined'; -export { default as ArrowDropDownCircleRounded } from './ArrowDropDownCircleRounded'; -export { default as ArrowDropDownCircleSharp } from './ArrowDropDownCircleSharp'; -export { default as ArrowDropDownCircleTwoTone } from './ArrowDropDownCircleTwoTone'; -export { default as ArrowDropDownOutlined } from './ArrowDropDownOutlined'; -export { default as ArrowDropDownRounded } from './ArrowDropDownRounded'; -export { default as ArrowDropDownSharp } from './ArrowDropDownSharp'; -export { default as ArrowDropDownTwoTone } from './ArrowDropDownTwoTone'; -export { default as ArrowDropUp } from './ArrowDropUp'; -export { default as ArrowDropUpOutlined } from './ArrowDropUpOutlined'; -export { default as ArrowDropUpRounded } from './ArrowDropUpRounded'; -export { default as ArrowDropUpSharp } from './ArrowDropUpSharp'; -export { default as ArrowDropUpTwoTone } from './ArrowDropUpTwoTone'; -export { default as ArrowForward } from './ArrowForward'; -export { default as ArrowForwardIos } from './ArrowForwardIos'; -export { default as ArrowForwardIosOutlined } from './ArrowForwardIosOutlined'; -export { default as ArrowForwardIosRounded } from './ArrowForwardIosRounded'; -export { default as ArrowForwardIosSharp } from './ArrowForwardIosSharp'; -export { default as ArrowForwardIosTwoTone } from './ArrowForwardIosTwoTone'; -export { default as ArrowForwardOutlined } from './ArrowForwardOutlined'; -export { default as ArrowForwardRounded } from './ArrowForwardRounded'; -export { default as ArrowForwardSharp } from './ArrowForwardSharp'; -export { default as ArrowForwardTwoTone } from './ArrowForwardTwoTone'; -export { default as ArrowLeft } from './ArrowLeft'; -export { default as ArrowLeftOutlined } from './ArrowLeftOutlined'; -export { default as ArrowLeftRounded } from './ArrowLeftRounded'; -export { default as ArrowLeftSharp } from './ArrowLeftSharp'; -export { default as ArrowLeftTwoTone } from './ArrowLeftTwoTone'; -export { default as ArrowRight } from './ArrowRight'; -export { default as ArrowRightAlt } from './ArrowRightAlt'; -export { default as ArrowRightAltOutlined } from './ArrowRightAltOutlined'; -export { default as ArrowRightAltRounded } from './ArrowRightAltRounded'; -export { default as ArrowRightAltSharp } from './ArrowRightAltSharp'; -export { default as ArrowRightAltTwoTone } from './ArrowRightAltTwoTone'; -export { default as ArrowRightOutlined } from './ArrowRightOutlined'; -export { default as ArrowRightRounded } from './ArrowRightRounded'; -export { default as ArrowRightSharp } from './ArrowRightSharp'; -export { default as ArrowRightTwoTone } from './ArrowRightTwoTone'; -export { default as ArrowUpward } from './ArrowUpward'; -export { default as ArrowUpwardOutlined } from './ArrowUpwardOutlined'; -export { default as ArrowUpwardRounded } from './ArrowUpwardRounded'; -export { default as ArrowUpwardSharp } from './ArrowUpwardSharp'; -export { default as ArrowUpwardTwoTone } from './ArrowUpwardTwoTone'; -export { default as ArtTrack } from './ArtTrack'; -export { default as ArtTrackOutlined } from './ArtTrackOutlined'; -export { default as ArtTrackRounded } from './ArtTrackRounded'; -export { default as ArtTrackSharp } from './ArtTrackSharp'; -export { default as ArtTrackTwoTone } from './ArtTrackTwoTone'; -export { default as Article } from './Article'; -export { default as ArticleOutlined } from './ArticleOutlined'; -export { default as ArticleRounded } from './ArticleRounded'; -export { default as ArticleSharp } from './ArticleSharp'; -export { default as ArticleTwoTone } from './ArticleTwoTone'; -export { default as AspectRatio } from './AspectRatio'; -export { default as AspectRatioOutlined } from './AspectRatioOutlined'; -export { default as AspectRatioRounded } from './AspectRatioRounded'; -export { default as AspectRatioSharp } from './AspectRatioSharp'; -export { default as AspectRatioTwoTone } from './AspectRatioTwoTone'; -export { default as Assessment } from './Assessment'; -export { default as AssessmentOutlined } from './AssessmentOutlined'; -export { default as AssessmentRounded } from './AssessmentRounded'; -export { default as AssessmentSharp } from './AssessmentSharp'; -export { default as AssessmentTwoTone } from './AssessmentTwoTone'; -export { default as Assignment } from './Assignment'; -export { default as AssignmentInd } from './AssignmentInd'; -export { default as AssignmentIndOutlined } from './AssignmentIndOutlined'; -export { default as AssignmentIndRounded } from './AssignmentIndRounded'; -export { default as AssignmentIndSharp } from './AssignmentIndSharp'; -export { default as AssignmentIndTwoTone } from './AssignmentIndTwoTone'; -export { default as AssignmentLate } from './AssignmentLate'; -export { default as AssignmentLateOutlined } from './AssignmentLateOutlined'; -export { default as AssignmentLateRounded } from './AssignmentLateRounded'; -export { default as AssignmentLateSharp } from './AssignmentLateSharp'; -export { default as AssignmentLateTwoTone } from './AssignmentLateTwoTone'; -export { default as AssignmentOutlined } from './AssignmentOutlined'; -export { default as AssignmentReturn } from './AssignmentReturn'; -export { default as AssignmentReturnOutlined } from './AssignmentReturnOutlined'; -export { default as AssignmentReturnRounded } from './AssignmentReturnRounded'; -export { default as AssignmentReturnSharp } from './AssignmentReturnSharp'; -export { default as AssignmentReturnTwoTone } from './AssignmentReturnTwoTone'; -export { default as AssignmentReturned } from './AssignmentReturned'; -export { default as AssignmentReturnedOutlined } from './AssignmentReturnedOutlined'; -export { default as AssignmentReturnedRounded } from './AssignmentReturnedRounded'; -export { default as AssignmentReturnedSharp } from './AssignmentReturnedSharp'; -export { default as AssignmentReturnedTwoTone } from './AssignmentReturnedTwoTone'; -export { default as AssignmentRounded } from './AssignmentRounded'; -export { default as AssignmentSharp } from './AssignmentSharp'; -export { default as AssignmentTurnedIn } from './AssignmentTurnedIn'; -export { default as AssignmentTurnedInOutlined } from './AssignmentTurnedInOutlined'; -export { default as AssignmentTurnedInRounded } from './AssignmentTurnedInRounded'; -export { default as AssignmentTurnedInSharp } from './AssignmentTurnedInSharp'; -export { default as AssignmentTurnedInTwoTone } from './AssignmentTurnedInTwoTone'; -export { default as AssignmentTwoTone } from './AssignmentTwoTone'; -export { default as Assistant } from './Assistant'; -export { default as AssistantDirection } from './AssistantDirection'; -export { default as AssistantDirectionOutlined } from './AssistantDirectionOutlined'; -export { default as AssistantDirectionRounded } from './AssistantDirectionRounded'; -export { default as AssistantDirectionSharp } from './AssistantDirectionSharp'; -export { default as AssistantDirectionTwoTone } from './AssistantDirectionTwoTone'; -export { default as AssistantOutlined } from './AssistantOutlined'; -export { default as AssistantPhoto } from './AssistantPhoto'; -export { default as AssistantPhotoOutlined } from './AssistantPhotoOutlined'; -export { default as AssistantPhotoRounded } from './AssistantPhotoRounded'; -export { default as AssistantPhotoSharp } from './AssistantPhotoSharp'; -export { default as AssistantPhotoTwoTone } from './AssistantPhotoTwoTone'; -export { default as AssistantRounded } from './AssistantRounded'; -export { default as AssistantSharp } from './AssistantSharp'; -export { default as AssistantTwoTone } from './AssistantTwoTone'; -export { default as Atm } from './Atm'; -export { default as AtmOutlined } from './AtmOutlined'; -export { default as AtmRounded } from './AtmRounded'; -export { default as AtmSharp } from './AtmSharp'; -export { default as AtmTwoTone } from './AtmTwoTone'; -export { default as AttachEmail } from './AttachEmail'; -export { default as AttachEmailOutlined } from './AttachEmailOutlined'; -export { default as AttachEmailRounded } from './AttachEmailRounded'; -export { default as AttachEmailSharp } from './AttachEmailSharp'; -export { default as AttachEmailTwoTone } from './AttachEmailTwoTone'; -export { default as AttachFile } from './AttachFile'; -export { default as AttachFileOutlined } from './AttachFileOutlined'; -export { default as AttachFileRounded } from './AttachFileRounded'; -export { default as AttachFileSharp } from './AttachFileSharp'; -export { default as AttachFileTwoTone } from './AttachFileTwoTone'; -export { default as AttachMoney } from './AttachMoney'; -export { default as AttachMoneyOutlined } from './AttachMoneyOutlined'; -export { default as AttachMoneyRounded } from './AttachMoneyRounded'; -export { default as AttachMoneySharp } from './AttachMoneySharp'; -export { default as AttachMoneyTwoTone } from './AttachMoneyTwoTone'; -export { default as Attachment } from './Attachment'; -export { default as AttachmentOutlined } from './AttachmentOutlined'; -export { default as AttachmentRounded } from './AttachmentRounded'; -export { default as AttachmentSharp } from './AttachmentSharp'; -export { default as AttachmentTwoTone } from './AttachmentTwoTone'; -export { default as Attractions } from './Attractions'; -export { default as AttractionsOutlined } from './AttractionsOutlined'; -export { default as AttractionsRounded } from './AttractionsRounded'; -export { default as AttractionsSharp } from './AttractionsSharp'; -export { default as AttractionsTwoTone } from './AttractionsTwoTone'; -export { default as Attribution } from './Attribution'; -export { default as AttributionOutlined } from './AttributionOutlined'; -export { default as AttributionRounded } from './AttributionRounded'; -export { default as AttributionSharp } from './AttributionSharp'; -export { default as AttributionTwoTone } from './AttributionTwoTone'; -export { default as Audiotrack } from './Audiotrack'; -export { default as AudiotrackOutlined } from './AudiotrackOutlined'; -export { default as AudiotrackRounded } from './AudiotrackRounded'; -export { default as AudiotrackSharp } from './AudiotrackSharp'; -export { default as AudiotrackTwoTone } from './AudiotrackTwoTone'; -export { default as AutoAwesome } from './AutoAwesome'; -export { default as AutoAwesomeMosaic } from './AutoAwesomeMosaic'; -export { default as AutoAwesomeMosaicOutlined } from './AutoAwesomeMosaicOutlined'; -export { default as AutoAwesomeMosaicRounded } from './AutoAwesomeMosaicRounded'; -export { default as AutoAwesomeMosaicSharp } from './AutoAwesomeMosaicSharp'; -export { default as AutoAwesomeMosaicTwoTone } from './AutoAwesomeMosaicTwoTone'; -export { default as AutoAwesomeMotion } from './AutoAwesomeMotion'; -export { default as AutoAwesomeMotionOutlined } from './AutoAwesomeMotionOutlined'; -export { default as AutoAwesomeMotionRounded } from './AutoAwesomeMotionRounded'; -export { default as AutoAwesomeMotionSharp } from './AutoAwesomeMotionSharp'; -export { default as AutoAwesomeMotionTwoTone } from './AutoAwesomeMotionTwoTone'; -export { default as AutoAwesomeOutlined } from './AutoAwesomeOutlined'; -export { default as AutoAwesomeRounded } from './AutoAwesomeRounded'; -export { default as AutoAwesomeSharp } from './AutoAwesomeSharp'; -export { default as AutoAwesomeTwoTone } from './AutoAwesomeTwoTone'; -export { default as AutoDelete } from './AutoDelete'; -export { default as AutoDeleteOutlined } from './AutoDeleteOutlined'; -export { default as AutoDeleteRounded } from './AutoDeleteRounded'; -export { default as AutoDeleteSharp } from './AutoDeleteSharp'; -export { default as AutoDeleteTwoTone } from './AutoDeleteTwoTone'; -export { default as AutoFixHigh } from './AutoFixHigh'; -export { default as AutoFixHighOutlined } from './AutoFixHighOutlined'; -export { default as AutoFixHighRounded } from './AutoFixHighRounded'; -export { default as AutoFixHighSharp } from './AutoFixHighSharp'; -export { default as AutoFixHighTwoTone } from './AutoFixHighTwoTone'; -export { default as AutoFixNormal } from './AutoFixNormal'; -export { default as AutoFixNormalOutlined } from './AutoFixNormalOutlined'; -export { default as AutoFixNormalRounded } from './AutoFixNormalRounded'; -export { default as AutoFixNormalSharp } from './AutoFixNormalSharp'; -export { default as AutoFixNormalTwoTone } from './AutoFixNormalTwoTone'; -export { default as AutoFixOff } from './AutoFixOff'; -export { default as AutoFixOffOutlined } from './AutoFixOffOutlined'; -export { default as AutoFixOffRounded } from './AutoFixOffRounded'; -export { default as AutoFixOffSharp } from './AutoFixOffSharp'; -export { default as AutoFixOffTwoTone } from './AutoFixOffTwoTone'; -export { default as AutoGraph } from './AutoGraph'; -export { default as AutoGraphOutlined } from './AutoGraphOutlined'; -export { default as AutoGraphRounded } from './AutoGraphRounded'; -export { default as AutoGraphSharp } from './AutoGraphSharp'; -export { default as AutoGraphTwoTone } from './AutoGraphTwoTone'; -export { default as AutoStories } from './AutoStories'; -export { default as AutoStoriesOutlined } from './AutoStoriesOutlined'; -export { default as AutoStoriesRounded } from './AutoStoriesRounded'; -export { default as AutoStoriesSharp } from './AutoStoriesSharp'; -export { default as AutoStoriesTwoTone } from './AutoStoriesTwoTone'; -export { default as AutofpsSelect } from './AutofpsSelect'; -export { default as AutofpsSelectOutlined } from './AutofpsSelectOutlined'; -export { default as AutofpsSelectRounded } from './AutofpsSelectRounded'; -export { default as AutofpsSelectSharp } from './AutofpsSelectSharp'; -export { default as AutofpsSelectTwoTone } from './AutofpsSelectTwoTone'; -export { default as Autorenew } from './Autorenew'; -export { default as AutorenewOutlined } from './AutorenewOutlined'; -export { default as AutorenewRounded } from './AutorenewRounded'; -export { default as AutorenewSharp } from './AutorenewSharp'; -export { default as AutorenewTwoTone } from './AutorenewTwoTone'; -export { default as AvTimer } from './AvTimer'; -export { default as AvTimerOutlined } from './AvTimerOutlined'; -export { default as AvTimerRounded } from './AvTimerRounded'; -export { default as AvTimerSharp } from './AvTimerSharp'; -export { default as AvTimerTwoTone } from './AvTimerTwoTone'; -export { default as BabyChangingStation } from './BabyChangingStation'; -export { default as BabyChangingStationOutlined } from './BabyChangingStationOutlined'; -export { default as BabyChangingStationRounded } from './BabyChangingStationRounded'; -export { default as BabyChangingStationSharp } from './BabyChangingStationSharp'; -export { default as BabyChangingStationTwoTone } from './BabyChangingStationTwoTone'; -export { default as Backpack } from './Backpack'; -export { default as BackpackOutlined } from './BackpackOutlined'; -export { default as BackpackRounded } from './BackpackRounded'; -export { default as BackpackSharp } from './BackpackSharp'; -export { default as BackpackTwoTone } from './BackpackTwoTone'; -export { default as Backspace } from './Backspace'; -export { default as BackspaceOutlined } from './BackspaceOutlined'; -export { default as BackspaceRounded } from './BackspaceRounded'; -export { default as BackspaceSharp } from './BackspaceSharp'; -export { default as BackspaceTwoTone } from './BackspaceTwoTone'; -export { default as Backup } from './Backup'; -export { default as BackupOutlined } from './BackupOutlined'; -export { default as BackupRounded } from './BackupRounded'; -export { default as BackupSharp } from './BackupSharp'; -export { default as BackupTable } from './BackupTable'; -export { default as BackupTableOutlined } from './BackupTableOutlined'; -export { default as BackupTableRounded } from './BackupTableRounded'; -export { default as BackupTableSharp } from './BackupTableSharp'; -export { default as BackupTableTwoTone } from './BackupTableTwoTone'; -export { default as BackupTwoTone } from './BackupTwoTone'; -export { default as Badge } from './Badge'; -export { default as BadgeOutlined } from './BadgeOutlined'; -export { default as BadgeRounded } from './BadgeRounded'; -export { default as BadgeSharp } from './BadgeSharp'; -export { default as BadgeTwoTone } from './BadgeTwoTone'; -export { default as BakeryDining } from './BakeryDining'; -export { default as BakeryDiningOutlined } from './BakeryDiningOutlined'; -export { default as BakeryDiningRounded } from './BakeryDiningRounded'; -export { default as BakeryDiningSharp } from './BakeryDiningSharp'; -export { default as BakeryDiningTwoTone } from './BakeryDiningTwoTone'; -export { default as Balcony } from './Balcony'; -export { default as BalconyOutlined } from './BalconyOutlined'; -export { default as BalconyRounded } from './BalconyRounded'; -export { default as BalconySharp } from './BalconySharp'; -export { default as BalconyTwoTone } from './BalconyTwoTone'; -export { default as Ballot } from './Ballot'; -export { default as BallotOutlined } from './BallotOutlined'; -export { default as BallotRounded } from './BallotRounded'; -export { default as BallotSharp } from './BallotSharp'; -export { default as BallotTwoTone } from './BallotTwoTone'; -export { default as BarChart } from './BarChart'; -export { default as BarChartOutlined } from './BarChartOutlined'; -export { default as BarChartRounded } from './BarChartRounded'; -export { default as BarChartSharp } from './BarChartSharp'; -export { default as BarChartTwoTone } from './BarChartTwoTone'; -export { default as BatchPrediction } from './BatchPrediction'; -export { default as BatchPredictionOutlined } from './BatchPredictionOutlined'; -export { default as BatchPredictionRounded } from './BatchPredictionRounded'; -export { default as BatchPredictionSharp } from './BatchPredictionSharp'; -export { default as BatchPredictionTwoTone } from './BatchPredictionTwoTone'; -export { default as Bathroom } from './Bathroom'; -export { default as BathroomOutlined } from './BathroomOutlined'; -export { default as BathroomRounded } from './BathroomRounded'; -export { default as BathroomSharp } from './BathroomSharp'; -export { default as BathroomTwoTone } from './BathroomTwoTone'; -export { default as Bathtub } from './Bathtub'; -export { default as BathtubOutlined } from './BathtubOutlined'; -export { default as BathtubRounded } from './BathtubRounded'; -export { default as BathtubSharp } from './BathtubSharp'; -export { default as BathtubTwoTone } from './BathtubTwoTone'; -export { default as Battery20 } from './Battery20'; -export { default as Battery20Outlined } from './Battery20Outlined'; -export { default as Battery20Rounded } from './Battery20Rounded'; -export { default as Battery20Sharp } from './Battery20Sharp'; -export { default as Battery20TwoTone } from './Battery20TwoTone'; -export { default as Battery30 } from './Battery30'; -export { default as Battery30Outlined } from './Battery30Outlined'; -export { default as Battery30Rounded } from './Battery30Rounded'; -export { default as Battery30Sharp } from './Battery30Sharp'; -export { default as Battery30TwoTone } from './Battery30TwoTone'; -export { default as Battery50 } from './Battery50'; -export { default as Battery50Outlined } from './Battery50Outlined'; -export { default as Battery50Rounded } from './Battery50Rounded'; -export { default as Battery50Sharp } from './Battery50Sharp'; -export { default as Battery50TwoTone } from './Battery50TwoTone'; -export { default as Battery60 } from './Battery60'; -export { default as Battery60Outlined } from './Battery60Outlined'; -export { default as Battery60Rounded } from './Battery60Rounded'; -export { default as Battery60Sharp } from './Battery60Sharp'; -export { default as Battery60TwoTone } from './Battery60TwoTone'; -export { default as Battery80 } from './Battery80'; -export { default as Battery80Outlined } from './Battery80Outlined'; -export { default as Battery80Rounded } from './Battery80Rounded'; -export { default as Battery80Sharp } from './Battery80Sharp'; -export { default as Battery80TwoTone } from './Battery80TwoTone'; -export { default as Battery90 } from './Battery90'; -export { default as Battery90Outlined } from './Battery90Outlined'; -export { default as Battery90Rounded } from './Battery90Rounded'; -export { default as Battery90Sharp } from './Battery90Sharp'; -export { default as Battery90TwoTone } from './Battery90TwoTone'; -export { default as BatteryAlert } from './BatteryAlert'; -export { default as BatteryAlertOutlined } from './BatteryAlertOutlined'; -export { default as BatteryAlertRounded } from './BatteryAlertRounded'; -export { default as BatteryAlertSharp } from './BatteryAlertSharp'; -export { default as BatteryAlertTwoTone } from './BatteryAlertTwoTone'; -export { default as BatteryCharging20 } from './BatteryCharging20'; -export { default as BatteryCharging20Outlined } from './BatteryCharging20Outlined'; -export { default as BatteryCharging20Rounded } from './BatteryCharging20Rounded'; -export { default as BatteryCharging20Sharp } from './BatteryCharging20Sharp'; -export { default as BatteryCharging20TwoTone } from './BatteryCharging20TwoTone'; -export { default as BatteryCharging30 } from './BatteryCharging30'; -export { default as BatteryCharging30Outlined } from './BatteryCharging30Outlined'; -export { default as BatteryCharging30Rounded } from './BatteryCharging30Rounded'; -export { default as BatteryCharging30Sharp } from './BatteryCharging30Sharp'; -export { default as BatteryCharging30TwoTone } from './BatteryCharging30TwoTone'; -export { default as BatteryCharging50 } from './BatteryCharging50'; -export { default as BatteryCharging50Outlined } from './BatteryCharging50Outlined'; -export { default as BatteryCharging50Rounded } from './BatteryCharging50Rounded'; -export { default as BatteryCharging50Sharp } from './BatteryCharging50Sharp'; -export { default as BatteryCharging50TwoTone } from './BatteryCharging50TwoTone'; -export { default as BatteryCharging60 } from './BatteryCharging60'; -export { default as BatteryCharging60Outlined } from './BatteryCharging60Outlined'; -export { default as BatteryCharging60Rounded } from './BatteryCharging60Rounded'; -export { default as BatteryCharging60Sharp } from './BatteryCharging60Sharp'; -export { default as BatteryCharging60TwoTone } from './BatteryCharging60TwoTone'; -export { default as BatteryCharging80 } from './BatteryCharging80'; -export { default as BatteryCharging80Outlined } from './BatteryCharging80Outlined'; -export { default as BatteryCharging80Rounded } from './BatteryCharging80Rounded'; -export { default as BatteryCharging80Sharp } from './BatteryCharging80Sharp'; -export { default as BatteryCharging80TwoTone } from './BatteryCharging80TwoTone'; -export { default as BatteryCharging90 } from './BatteryCharging90'; -export { default as BatteryCharging90Outlined } from './BatteryCharging90Outlined'; -export { default as BatteryCharging90Rounded } from './BatteryCharging90Rounded'; -export { default as BatteryCharging90Sharp } from './BatteryCharging90Sharp'; -export { default as BatteryCharging90TwoTone } from './BatteryCharging90TwoTone'; -export { default as BatteryChargingFull } from './BatteryChargingFull'; -export { default as BatteryChargingFullOutlined } from './BatteryChargingFullOutlined'; -export { default as BatteryChargingFullRounded } from './BatteryChargingFullRounded'; -export { default as BatteryChargingFullSharp } from './BatteryChargingFullSharp'; -export { default as BatteryChargingFullTwoTone } from './BatteryChargingFullTwoTone'; -export { default as BatteryFull } from './BatteryFull'; -export { default as BatteryFullOutlined } from './BatteryFullOutlined'; -export { default as BatteryFullRounded } from './BatteryFullRounded'; -export { default as BatteryFullSharp } from './BatteryFullSharp'; -export { default as BatteryFullTwoTone } from './BatteryFullTwoTone'; -export { default as BatterySaver } from './BatterySaver'; -export { default as BatterySaverOutlined } from './BatterySaverOutlined'; -export { default as BatterySaverRounded } from './BatterySaverRounded'; -export { default as BatterySaverSharp } from './BatterySaverSharp'; -export { default as BatterySaverTwoTone } from './BatterySaverTwoTone'; -export { default as BatteryStd } from './BatteryStd'; -export { default as BatteryStdOutlined } from './BatteryStdOutlined'; -export { default as BatteryStdRounded } from './BatteryStdRounded'; -export { default as BatteryStdSharp } from './BatteryStdSharp'; -export { default as BatteryStdTwoTone } from './BatteryStdTwoTone'; -export { default as BatteryUnknown } from './BatteryUnknown'; -export { default as BatteryUnknownOutlined } from './BatteryUnknownOutlined'; -export { default as BatteryUnknownRounded } from './BatteryUnknownRounded'; -export { default as BatteryUnknownSharp } from './BatteryUnknownSharp'; -export { default as BatteryUnknownTwoTone } from './BatteryUnknownTwoTone'; -export { default as BeachAccess } from './BeachAccess'; -export { default as BeachAccessOutlined } from './BeachAccessOutlined'; -export { default as BeachAccessRounded } from './BeachAccessRounded'; -export { default as BeachAccessSharp } from './BeachAccessSharp'; -export { default as BeachAccessTwoTone } from './BeachAccessTwoTone'; -export { default as Bed } from './Bed'; -export { default as BedOutlined } from './BedOutlined'; -export { default as BedRounded } from './BedRounded'; -export { default as BedSharp } from './BedSharp'; -export { default as BedTwoTone } from './BedTwoTone'; -export { default as BedroomBaby } from './BedroomBaby'; -export { default as BedroomBabyOutlined } from './BedroomBabyOutlined'; -export { default as BedroomBabyRounded } from './BedroomBabyRounded'; -export { default as BedroomBabySharp } from './BedroomBabySharp'; -export { default as BedroomBabyTwoTone } from './BedroomBabyTwoTone'; -export { default as BedroomChild } from './BedroomChild'; -export { default as BedroomChildOutlined } from './BedroomChildOutlined'; -export { default as BedroomChildRounded } from './BedroomChildRounded'; -export { default as BedroomChildSharp } from './BedroomChildSharp'; -export { default as BedroomChildTwoTone } from './BedroomChildTwoTone'; -export { default as BedroomParent } from './BedroomParent'; -export { default as BedroomParentOutlined } from './BedroomParentOutlined'; -export { default as BedroomParentRounded } from './BedroomParentRounded'; -export { default as BedroomParentSharp } from './BedroomParentSharp'; -export { default as BedroomParentTwoTone } from './BedroomParentTwoTone'; -export { default as Bedtime } from './Bedtime'; -export { default as BedtimeOutlined } from './BedtimeOutlined'; -export { default as BedtimeRounded } from './BedtimeRounded'; -export { default as BedtimeSharp } from './BedtimeSharp'; -export { default as BedtimeTwoTone } from './BedtimeTwoTone'; -export { default as Beenhere } from './Beenhere'; -export { default as BeenhereOutlined } from './BeenhereOutlined'; -export { default as BeenhereRounded } from './BeenhereRounded'; -export { default as BeenhereSharp } from './BeenhereSharp'; -export { default as BeenhereTwoTone } from './BeenhereTwoTone'; -export { default as Bento } from './Bento'; -export { default as BentoOutlined } from './BentoOutlined'; -export { default as BentoRounded } from './BentoRounded'; -export { default as BentoSharp } from './BentoSharp'; -export { default as BentoTwoTone } from './BentoTwoTone'; -export { default as BikeScooter } from './BikeScooter'; -export { default as BikeScooterOutlined } from './BikeScooterOutlined'; -export { default as BikeScooterRounded } from './BikeScooterRounded'; -export { default as BikeScooterSharp } from './BikeScooterSharp'; -export { default as BikeScooterTwoTone } from './BikeScooterTwoTone'; -export { default as Biotech } from './Biotech'; -export { default as BiotechOutlined } from './BiotechOutlined'; -export { default as BiotechRounded } from './BiotechRounded'; -export { default as BiotechSharp } from './BiotechSharp'; -export { default as BiotechTwoTone } from './BiotechTwoTone'; -export { default as Blender } from './Blender'; -export { default as BlenderOutlined } from './BlenderOutlined'; -export { default as BlenderRounded } from './BlenderRounded'; -export { default as BlenderSharp } from './BlenderSharp'; -export { default as BlenderTwoTone } from './BlenderTwoTone'; -export { default as Block } from './Block'; -export { default as BlockOutlined } from './BlockOutlined'; -export { default as BlockRounded } from './BlockRounded'; -export { default as BlockSharp } from './BlockSharp'; -export { default as BlockTwoTone } from './BlockTwoTone'; -export { default as Bloodtype } from './Bloodtype'; -export { default as BloodtypeOutlined } from './BloodtypeOutlined'; -export { default as BloodtypeRounded } from './BloodtypeRounded'; -export { default as BloodtypeSharp } from './BloodtypeSharp'; -export { default as BloodtypeTwoTone } from './BloodtypeTwoTone'; -export { default as Bluetooth } from './Bluetooth'; -export { default as BluetoothAudio } from './BluetoothAudio'; -export { default as BluetoothAudioOutlined } from './BluetoothAudioOutlined'; -export { default as BluetoothAudioRounded } from './BluetoothAudioRounded'; -export { default as BluetoothAudioSharp } from './BluetoothAudioSharp'; -export { default as BluetoothAudioTwoTone } from './BluetoothAudioTwoTone'; -export { default as BluetoothConnected } from './BluetoothConnected'; -export { default as BluetoothConnectedOutlined } from './BluetoothConnectedOutlined'; -export { default as BluetoothConnectedRounded } from './BluetoothConnectedRounded'; -export { default as BluetoothConnectedSharp } from './BluetoothConnectedSharp'; -export { default as BluetoothConnectedTwoTone } from './BluetoothConnectedTwoTone'; -export { default as BluetoothDisabled } from './BluetoothDisabled'; -export { default as BluetoothDisabledOutlined } from './BluetoothDisabledOutlined'; -export { default as BluetoothDisabledRounded } from './BluetoothDisabledRounded'; -export { default as BluetoothDisabledSharp } from './BluetoothDisabledSharp'; -export { default as BluetoothDisabledTwoTone } from './BluetoothDisabledTwoTone'; -export { default as BluetoothDrive } from './BluetoothDrive'; -export { default as BluetoothDriveOutlined } from './BluetoothDriveOutlined'; -export { default as BluetoothDriveRounded } from './BluetoothDriveRounded'; -export { default as BluetoothDriveSharp } from './BluetoothDriveSharp'; -export { default as BluetoothDriveTwoTone } from './BluetoothDriveTwoTone'; -export { default as BluetoothOutlined } from './BluetoothOutlined'; -export { default as BluetoothRounded } from './BluetoothRounded'; -export { default as BluetoothSearching } from './BluetoothSearching'; -export { default as BluetoothSearchingOutlined } from './BluetoothSearchingOutlined'; -export { default as BluetoothSearchingRounded } from './BluetoothSearchingRounded'; -export { default as BluetoothSearchingSharp } from './BluetoothSearchingSharp'; -export { default as BluetoothSearchingTwoTone } from './BluetoothSearchingTwoTone'; -export { default as BluetoothSharp } from './BluetoothSharp'; -export { default as BluetoothTwoTone } from './BluetoothTwoTone'; -export { default as BlurCircular } from './BlurCircular'; -export { default as BlurCircularOutlined } from './BlurCircularOutlined'; -export { default as BlurCircularRounded } from './BlurCircularRounded'; -export { default as BlurCircularSharp } from './BlurCircularSharp'; -export { default as BlurCircularTwoTone } from './BlurCircularTwoTone'; -export { default as BlurLinear } from './BlurLinear'; -export { default as BlurLinearOutlined } from './BlurLinearOutlined'; -export { default as BlurLinearRounded } from './BlurLinearRounded'; -export { default as BlurLinearSharp } from './BlurLinearSharp'; -export { default as BlurLinearTwoTone } from './BlurLinearTwoTone'; -export { default as BlurOff } from './BlurOff'; -export { default as BlurOffOutlined } from './BlurOffOutlined'; -export { default as BlurOffRounded } from './BlurOffRounded'; -export { default as BlurOffSharp } from './BlurOffSharp'; -export { default as BlurOffTwoTone } from './BlurOffTwoTone'; -export { default as BlurOn } from './BlurOn'; -export { default as BlurOnOutlined } from './BlurOnOutlined'; -export { default as BlurOnRounded } from './BlurOnRounded'; -export { default as BlurOnSharp } from './BlurOnSharp'; -export { default as BlurOnTwoTone } from './BlurOnTwoTone'; -export { default as Bolt } from './Bolt'; -export { default as BoltOutlined } from './BoltOutlined'; -export { default as BoltRounded } from './BoltRounded'; -export { default as BoltSharp } from './BoltSharp'; -export { default as BoltTwoTone } from './BoltTwoTone'; -export { default as Book } from './Book'; -export { default as BookOnline } from './BookOnline'; -export { default as BookOnlineOutlined } from './BookOnlineOutlined'; -export { default as BookOnlineRounded } from './BookOnlineRounded'; -export { default as BookOnlineSharp } from './BookOnlineSharp'; -export { default as BookOnlineTwoTone } from './BookOnlineTwoTone'; -export { default as BookOutlined } from './BookOutlined'; -export { default as BookRounded } from './BookRounded'; -export { default as BookSharp } from './BookSharp'; -export { default as BookTwoTone } from './BookTwoTone'; -export { default as Bookmark } from './Bookmark'; -export { default as BookmarkAdd } from './BookmarkAdd'; -export { default as BookmarkAddOutlined } from './BookmarkAddOutlined'; -export { default as BookmarkAddRounded } from './BookmarkAddRounded'; -export { default as BookmarkAddSharp } from './BookmarkAddSharp'; -export { default as BookmarkAddTwoTone } from './BookmarkAddTwoTone'; -export { default as BookmarkAdded } from './BookmarkAdded'; -export { default as BookmarkAddedOutlined } from './BookmarkAddedOutlined'; -export { default as BookmarkAddedRounded } from './BookmarkAddedRounded'; -export { default as BookmarkAddedSharp } from './BookmarkAddedSharp'; -export { default as BookmarkAddedTwoTone } from './BookmarkAddedTwoTone'; -export { default as BookmarkBorder } from './BookmarkBorder'; -export { default as BookmarkBorderOutlined } from './BookmarkBorderOutlined'; -export { default as BookmarkBorderRounded } from './BookmarkBorderRounded'; -export { default as BookmarkBorderSharp } from './BookmarkBorderSharp'; -export { default as BookmarkBorderTwoTone } from './BookmarkBorderTwoTone'; -export { default as BookmarkOutlined } from './BookmarkOutlined'; -export { default as BookmarkRemove } from './BookmarkRemove'; -export { default as BookmarkRemoveOutlined } from './BookmarkRemoveOutlined'; -export { default as BookmarkRemoveRounded } from './BookmarkRemoveRounded'; -export { default as BookmarkRemoveSharp } from './BookmarkRemoveSharp'; -export { default as BookmarkRemoveTwoTone } from './BookmarkRemoveTwoTone'; -export { default as BookmarkRounded } from './BookmarkRounded'; -export { default as BookmarkSharp } from './BookmarkSharp'; -export { default as BookmarkTwoTone } from './BookmarkTwoTone'; -export { default as Bookmarks } from './Bookmarks'; -export { default as BookmarksOutlined } from './BookmarksOutlined'; -export { default as BookmarksRounded } from './BookmarksRounded'; -export { default as BookmarksSharp } from './BookmarksSharp'; -export { default as BookmarksTwoTone } from './BookmarksTwoTone'; -export { default as BorderAll } from './BorderAll'; -export { default as BorderAllOutlined } from './BorderAllOutlined'; -export { default as BorderAllRounded } from './BorderAllRounded'; -export { default as BorderAllSharp } from './BorderAllSharp'; -export { default as BorderAllTwoTone } from './BorderAllTwoTone'; -export { default as BorderBottom } from './BorderBottom'; -export { default as BorderBottomOutlined } from './BorderBottomOutlined'; -export { default as BorderBottomRounded } from './BorderBottomRounded'; -export { default as BorderBottomSharp } from './BorderBottomSharp'; -export { default as BorderBottomTwoTone } from './BorderBottomTwoTone'; -export { default as BorderClear } from './BorderClear'; -export { default as BorderClearOutlined } from './BorderClearOutlined'; -export { default as BorderClearRounded } from './BorderClearRounded'; -export { default as BorderClearSharp } from './BorderClearSharp'; -export { default as BorderClearTwoTone } from './BorderClearTwoTone'; -export { default as BorderColor } from './BorderColor'; -export { default as BorderColorOutlined } from './BorderColorOutlined'; -export { default as BorderColorRounded } from './BorderColorRounded'; -export { default as BorderColorSharp } from './BorderColorSharp'; -export { default as BorderColorTwoTone } from './BorderColorTwoTone'; -export { default as BorderHorizontal } from './BorderHorizontal'; -export { default as BorderHorizontalOutlined } from './BorderHorizontalOutlined'; -export { default as BorderHorizontalRounded } from './BorderHorizontalRounded'; -export { default as BorderHorizontalSharp } from './BorderHorizontalSharp'; -export { default as BorderHorizontalTwoTone } from './BorderHorizontalTwoTone'; -export { default as BorderInner } from './BorderInner'; -export { default as BorderInnerOutlined } from './BorderInnerOutlined'; -export { default as BorderInnerRounded } from './BorderInnerRounded'; -export { default as BorderInnerSharp } from './BorderInnerSharp'; -export { default as BorderInnerTwoTone } from './BorderInnerTwoTone'; -export { default as BorderLeft } from './BorderLeft'; -export { default as BorderLeftOutlined } from './BorderLeftOutlined'; -export { default as BorderLeftRounded } from './BorderLeftRounded'; -export { default as BorderLeftSharp } from './BorderLeftSharp'; -export { default as BorderLeftTwoTone } from './BorderLeftTwoTone'; -export { default as BorderOuter } from './BorderOuter'; -export { default as BorderOuterOutlined } from './BorderOuterOutlined'; -export { default as BorderOuterRounded } from './BorderOuterRounded'; -export { default as BorderOuterSharp } from './BorderOuterSharp'; -export { default as BorderOuterTwoTone } from './BorderOuterTwoTone'; -export { default as BorderRight } from './BorderRight'; -export { default as BorderRightOutlined } from './BorderRightOutlined'; -export { default as BorderRightRounded } from './BorderRightRounded'; -export { default as BorderRightSharp } from './BorderRightSharp'; -export { default as BorderRightTwoTone } from './BorderRightTwoTone'; -export { default as BorderStyle } from './BorderStyle'; -export { default as BorderStyleOutlined } from './BorderStyleOutlined'; -export { default as BorderStyleRounded } from './BorderStyleRounded'; -export { default as BorderStyleSharp } from './BorderStyleSharp'; -export { default as BorderStyleTwoTone } from './BorderStyleTwoTone'; -export { default as BorderTop } from './BorderTop'; -export { default as BorderTopOutlined } from './BorderTopOutlined'; -export { default as BorderTopRounded } from './BorderTopRounded'; -export { default as BorderTopSharp } from './BorderTopSharp'; -export { default as BorderTopTwoTone } from './BorderTopTwoTone'; -export { default as BorderVertical } from './BorderVertical'; -export { default as BorderVerticalOutlined } from './BorderVerticalOutlined'; -export { default as BorderVerticalRounded } from './BorderVerticalRounded'; -export { default as BorderVerticalSharp } from './BorderVerticalSharp'; -export { default as BorderVerticalTwoTone } from './BorderVerticalTwoTone'; -export { default as BrandingWatermark } from './BrandingWatermark'; -export { default as BrandingWatermarkOutlined } from './BrandingWatermarkOutlined'; -export { default as BrandingWatermarkRounded } from './BrandingWatermarkRounded'; -export { default as BrandingWatermarkSharp } from './BrandingWatermarkSharp'; -export { default as BrandingWatermarkTwoTone } from './BrandingWatermarkTwoTone'; -export { default as BreakfastDining } from './BreakfastDining'; -export { default as BreakfastDiningOutlined } from './BreakfastDiningOutlined'; -export { default as BreakfastDiningRounded } from './BreakfastDiningRounded'; -export { default as BreakfastDiningSharp } from './BreakfastDiningSharp'; -export { default as BreakfastDiningTwoTone } from './BreakfastDiningTwoTone'; -export { default as Brightness1 } from './Brightness1'; -export { default as Brightness1Outlined } from './Brightness1Outlined'; -export { default as Brightness1Rounded } from './Brightness1Rounded'; -export { default as Brightness1Sharp } from './Brightness1Sharp'; -export { default as Brightness1TwoTone } from './Brightness1TwoTone'; -export { default as Brightness2 } from './Brightness2'; -export { default as Brightness2Outlined } from './Brightness2Outlined'; -export { default as Brightness2Rounded } from './Brightness2Rounded'; -export { default as Brightness2Sharp } from './Brightness2Sharp'; -export { default as Brightness2TwoTone } from './Brightness2TwoTone'; -export { default as Brightness3 } from './Brightness3'; -export { default as Brightness3Outlined } from './Brightness3Outlined'; -export { default as Brightness3Rounded } from './Brightness3Rounded'; -export { default as Brightness3Sharp } from './Brightness3Sharp'; -export { default as Brightness3TwoTone } from './Brightness3TwoTone'; -export { default as Brightness4 } from './Brightness4'; -export { default as Brightness4Outlined } from './Brightness4Outlined'; -export { default as Brightness4Rounded } from './Brightness4Rounded'; -export { default as Brightness4Sharp } from './Brightness4Sharp'; -export { default as Brightness4TwoTone } from './Brightness4TwoTone'; -export { default as Brightness5 } from './Brightness5'; -export { default as Brightness5Outlined } from './Brightness5Outlined'; -export { default as Brightness5Rounded } from './Brightness5Rounded'; -export { default as Brightness5Sharp } from './Brightness5Sharp'; -export { default as Brightness5TwoTone } from './Brightness5TwoTone'; -export { default as Brightness6 } from './Brightness6'; -export { default as Brightness6Outlined } from './Brightness6Outlined'; -export { default as Brightness6Rounded } from './Brightness6Rounded'; -export { default as Brightness6Sharp } from './Brightness6Sharp'; -export { default as Brightness6TwoTone } from './Brightness6TwoTone'; -export { default as Brightness7 } from './Brightness7'; -export { default as Brightness7Outlined } from './Brightness7Outlined'; -export { default as Brightness7Rounded } from './Brightness7Rounded'; -export { default as Brightness7Sharp } from './Brightness7Sharp'; -export { default as Brightness7TwoTone } from './Brightness7TwoTone'; -export { default as BrightnessAuto } from './BrightnessAuto'; -export { default as BrightnessAutoOutlined } from './BrightnessAutoOutlined'; -export { default as BrightnessAutoRounded } from './BrightnessAutoRounded'; -export { default as BrightnessAutoSharp } from './BrightnessAutoSharp'; -export { default as BrightnessAutoTwoTone } from './BrightnessAutoTwoTone'; -export { default as BrightnessHigh } from './BrightnessHigh'; -export { default as BrightnessHighOutlined } from './BrightnessHighOutlined'; -export { default as BrightnessHighRounded } from './BrightnessHighRounded'; -export { default as BrightnessHighSharp } from './BrightnessHighSharp'; -export { default as BrightnessHighTwoTone } from './BrightnessHighTwoTone'; -export { default as BrightnessLow } from './BrightnessLow'; -export { default as BrightnessLowOutlined } from './BrightnessLowOutlined'; -export { default as BrightnessLowRounded } from './BrightnessLowRounded'; -export { default as BrightnessLowSharp } from './BrightnessLowSharp'; -export { default as BrightnessLowTwoTone } from './BrightnessLowTwoTone'; -export { default as BrightnessMedium } from './BrightnessMedium'; -export { default as BrightnessMediumOutlined } from './BrightnessMediumOutlined'; -export { default as BrightnessMediumRounded } from './BrightnessMediumRounded'; -export { default as BrightnessMediumSharp } from './BrightnessMediumSharp'; -export { default as BrightnessMediumTwoTone } from './BrightnessMediumTwoTone'; -export { default as BrokenImage } from './BrokenImage'; -export { default as BrokenImageOutlined } from './BrokenImageOutlined'; -export { default as BrokenImageRounded } from './BrokenImageRounded'; -export { default as BrokenImageSharp } from './BrokenImageSharp'; -export { default as BrokenImageTwoTone } from './BrokenImageTwoTone'; -export { default as BrowserNotSupported } from './BrowserNotSupported'; -export { default as BrowserNotSupportedOutlined } from './BrowserNotSupportedOutlined'; -export { default as BrowserNotSupportedRounded } from './BrowserNotSupportedRounded'; -export { default as BrowserNotSupportedSharp } from './BrowserNotSupportedSharp'; -export { default as BrowserNotSupportedTwoTone } from './BrowserNotSupportedTwoTone'; -export { default as BrunchDining } from './BrunchDining'; -export { default as BrunchDiningOutlined } from './BrunchDiningOutlined'; -export { default as BrunchDiningRounded } from './BrunchDiningRounded'; -export { default as BrunchDiningSharp } from './BrunchDiningSharp'; -export { default as BrunchDiningTwoTone } from './BrunchDiningTwoTone'; -export { default as Brush } from './Brush'; -export { default as BrushOutlined } from './BrushOutlined'; -export { default as BrushRounded } from './BrushRounded'; -export { default as BrushSharp } from './BrushSharp'; -export { default as BrushTwoTone } from './BrushTwoTone'; -export { default as BubbleChart } from './BubbleChart'; -export { default as BubbleChartOutlined } from './BubbleChartOutlined'; -export { default as BubbleChartRounded } from './BubbleChartRounded'; -export { default as BubbleChartSharp } from './BubbleChartSharp'; -export { default as BubbleChartTwoTone } from './BubbleChartTwoTone'; -export { default as BugReport } from './BugReport'; -export { default as BugReportOutlined } from './BugReportOutlined'; -export { default as BugReportRounded } from './BugReportRounded'; -export { default as BugReportSharp } from './BugReportSharp'; -export { default as BugReportTwoTone } from './BugReportTwoTone'; -export { default as Build } from './Build'; -export { default as BuildCircle } from './BuildCircle'; -export { default as BuildCircleOutlined } from './BuildCircleOutlined'; -export { default as BuildCircleRounded } from './BuildCircleRounded'; -export { default as BuildCircleSharp } from './BuildCircleSharp'; -export { default as BuildCircleTwoTone } from './BuildCircleTwoTone'; -export { default as BuildOutlined } from './BuildOutlined'; -export { default as BuildRounded } from './BuildRounded'; -export { default as BuildSharp } from './BuildSharp'; -export { default as BuildTwoTone } from './BuildTwoTone'; -export { default as Bungalow } from './Bungalow'; -export { default as BungalowOutlined } from './BungalowOutlined'; -export { default as BungalowRounded } from './BungalowRounded'; -export { default as BungalowSharp } from './BungalowSharp'; -export { default as BungalowTwoTone } from './BungalowTwoTone'; -export { default as BurstMode } from './BurstMode'; -export { default as BurstModeOutlined } from './BurstModeOutlined'; -export { default as BurstModeRounded } from './BurstModeRounded'; -export { default as BurstModeSharp } from './BurstModeSharp'; -export { default as BurstModeTwoTone } from './BurstModeTwoTone'; -export { default as BusAlert } from './BusAlert'; -export { default as BusAlertOutlined } from './BusAlertOutlined'; -export { default as BusAlertRounded } from './BusAlertRounded'; -export { default as BusAlertSharp } from './BusAlertSharp'; -export { default as BusAlertTwoTone } from './BusAlertTwoTone'; -export { default as Business } from './Business'; -export { default as BusinessCenter } from './BusinessCenter'; -export { default as BusinessCenterOutlined } from './BusinessCenterOutlined'; -export { default as BusinessCenterRounded } from './BusinessCenterRounded'; -export { default as BusinessCenterSharp } from './BusinessCenterSharp'; -export { default as BusinessCenterTwoTone } from './BusinessCenterTwoTone'; -export { default as BusinessOutlined } from './BusinessOutlined'; -export { default as BusinessRounded } from './BusinessRounded'; -export { default as BusinessSharp } from './BusinessSharp'; -export { default as BusinessTwoTone } from './BusinessTwoTone'; -export { default as Cabin } from './Cabin'; -export { default as CabinOutlined } from './CabinOutlined'; -export { default as CabinRounded } from './CabinRounded'; -export { default as CabinSharp } from './CabinSharp'; -export { default as CabinTwoTone } from './CabinTwoTone'; -export { default as Cable } from './Cable'; -export { default as CableOutlined } from './CableOutlined'; -export { default as CableRounded } from './CableRounded'; -export { default as CableSharp } from './CableSharp'; -export { default as CableTwoTone } from './CableTwoTone'; -export { default as Cached } from './Cached'; -export { default as CachedOutlined } from './CachedOutlined'; -export { default as CachedRounded } from './CachedRounded'; -export { default as CachedSharp } from './CachedSharp'; -export { default as CachedTwoTone } from './CachedTwoTone'; -export { default as Cake } from './Cake'; -export { default as CakeOutlined } from './CakeOutlined'; -export { default as CakeRounded } from './CakeRounded'; -export { default as CakeSharp } from './CakeSharp'; -export { default as CakeTwoTone } from './CakeTwoTone'; -export { default as Calculate } from './Calculate'; -export { default as CalculateOutlined } from './CalculateOutlined'; -export { default as CalculateRounded } from './CalculateRounded'; -export { default as CalculateSharp } from './CalculateSharp'; -export { default as CalculateTwoTone } from './CalculateTwoTone'; -export { default as CalendarToday } from './CalendarToday'; -export { default as CalendarTodayOutlined } from './CalendarTodayOutlined'; -export { default as CalendarTodayRounded } from './CalendarTodayRounded'; -export { default as CalendarTodaySharp } from './CalendarTodaySharp'; -export { default as CalendarTodayTwoTone } from './CalendarTodayTwoTone'; -export { default as CalendarViewDay } from './CalendarViewDay'; -export { default as CalendarViewDayOutlined } from './CalendarViewDayOutlined'; -export { default as CalendarViewDayRounded } from './CalendarViewDayRounded'; -export { default as CalendarViewDaySharp } from './CalendarViewDaySharp'; -export { default as CalendarViewDayTwoTone } from './CalendarViewDayTwoTone'; -export { default as CalendarViewMonth } from './CalendarViewMonth'; -export { default as CalendarViewMonthOutlined } from './CalendarViewMonthOutlined'; -export { default as CalendarViewMonthRounded } from './CalendarViewMonthRounded'; -export { default as CalendarViewMonthSharp } from './CalendarViewMonthSharp'; -export { default as CalendarViewMonthTwoTone } from './CalendarViewMonthTwoTone'; -export { default as CalendarViewWeek } from './CalendarViewWeek'; -export { default as CalendarViewWeekOutlined } from './CalendarViewWeekOutlined'; -export { default as CalendarViewWeekRounded } from './CalendarViewWeekRounded'; -export { default as CalendarViewWeekSharp } from './CalendarViewWeekSharp'; -export { default as CalendarViewWeekTwoTone } from './CalendarViewWeekTwoTone'; -export { default as Call } from './Call'; -export { default as CallEnd } from './CallEnd'; -export { default as CallEndOutlined } from './CallEndOutlined'; -export { default as CallEndRounded } from './CallEndRounded'; -export { default as CallEndSharp } from './CallEndSharp'; -export { default as CallEndTwoTone } from './CallEndTwoTone'; -export { default as CallMade } from './CallMade'; -export { default as CallMadeOutlined } from './CallMadeOutlined'; -export { default as CallMadeRounded } from './CallMadeRounded'; -export { default as CallMadeSharp } from './CallMadeSharp'; -export { default as CallMadeTwoTone } from './CallMadeTwoTone'; -export { default as CallMerge } from './CallMerge'; -export { default as CallMergeOutlined } from './CallMergeOutlined'; -export { default as CallMergeRounded } from './CallMergeRounded'; -export { default as CallMergeSharp } from './CallMergeSharp'; -export { default as CallMergeTwoTone } from './CallMergeTwoTone'; -export { default as CallMissed } from './CallMissed'; -export { default as CallMissedOutgoing } from './CallMissedOutgoing'; -export { default as CallMissedOutgoingOutlined } from './CallMissedOutgoingOutlined'; -export { default as CallMissedOutgoingRounded } from './CallMissedOutgoingRounded'; -export { default as CallMissedOutgoingSharp } from './CallMissedOutgoingSharp'; -export { default as CallMissedOutgoingTwoTone } from './CallMissedOutgoingTwoTone'; -export { default as CallMissedOutlined } from './CallMissedOutlined'; -export { default as CallMissedRounded } from './CallMissedRounded'; -export { default as CallMissedSharp } from './CallMissedSharp'; -export { default as CallMissedTwoTone } from './CallMissedTwoTone'; -export { default as CallOutlined } from './CallOutlined'; -export { default as CallReceived } from './CallReceived'; -export { default as CallReceivedOutlined } from './CallReceivedOutlined'; -export { default as CallReceivedRounded } from './CallReceivedRounded'; -export { default as CallReceivedSharp } from './CallReceivedSharp'; -export { default as CallReceivedTwoTone } from './CallReceivedTwoTone'; -export { default as CallRounded } from './CallRounded'; -export { default as CallSharp } from './CallSharp'; -export { default as CallSplit } from './CallSplit'; -export { default as CallSplitOutlined } from './CallSplitOutlined'; -export { default as CallSplitRounded } from './CallSplitRounded'; -export { default as CallSplitSharp } from './CallSplitSharp'; -export { default as CallSplitTwoTone } from './CallSplitTwoTone'; -export { default as CallToAction } from './CallToAction'; -export { default as CallToActionOutlined } from './CallToActionOutlined'; -export { default as CallToActionRounded } from './CallToActionRounded'; -export { default as CallToActionSharp } from './CallToActionSharp'; -export { default as CallToActionTwoTone } from './CallToActionTwoTone'; -export { default as CallTwoTone } from './CallTwoTone'; -export { default as Camera } from './Camera'; -export { default as CameraAlt } from './CameraAlt'; -export { default as CameraAltOutlined } from './CameraAltOutlined'; -export { default as CameraAltRounded } from './CameraAltRounded'; -export { default as CameraAltSharp } from './CameraAltSharp'; -export { default as CameraAltTwoTone } from './CameraAltTwoTone'; -export { default as CameraEnhance } from './CameraEnhance'; -export { default as CameraEnhanceOutlined } from './CameraEnhanceOutlined'; -export { default as CameraEnhanceRounded } from './CameraEnhanceRounded'; -export { default as CameraEnhanceSharp } from './CameraEnhanceSharp'; -export { default as CameraEnhanceTwoTone } from './CameraEnhanceTwoTone'; -export { default as CameraFront } from './CameraFront'; -export { default as CameraFrontOutlined } from './CameraFrontOutlined'; -export { default as CameraFrontRounded } from './CameraFrontRounded'; -export { default as CameraFrontSharp } from './CameraFrontSharp'; -export { default as CameraFrontTwoTone } from './CameraFrontTwoTone'; -export { default as CameraIndoor } from './CameraIndoor'; -export { default as CameraIndoorOutlined } from './CameraIndoorOutlined'; -export { default as CameraIndoorRounded } from './CameraIndoorRounded'; -export { default as CameraIndoorSharp } from './CameraIndoorSharp'; -export { default as CameraIndoorTwoTone } from './CameraIndoorTwoTone'; -export { default as CameraOutdoor } from './CameraOutdoor'; -export { default as CameraOutdoorOutlined } from './CameraOutdoorOutlined'; -export { default as CameraOutdoorRounded } from './CameraOutdoorRounded'; -export { default as CameraOutdoorSharp } from './CameraOutdoorSharp'; -export { default as CameraOutdoorTwoTone } from './CameraOutdoorTwoTone'; -export { default as CameraOutlined } from './CameraOutlined'; -export { default as CameraRear } from './CameraRear'; -export { default as CameraRearOutlined } from './CameraRearOutlined'; -export { default as CameraRearRounded } from './CameraRearRounded'; -export { default as CameraRearSharp } from './CameraRearSharp'; -export { default as CameraRearTwoTone } from './CameraRearTwoTone'; -export { default as CameraRoll } from './CameraRoll'; -export { default as CameraRollOutlined } from './CameraRollOutlined'; -export { default as CameraRollRounded } from './CameraRollRounded'; -export { default as CameraRollSharp } from './CameraRollSharp'; -export { default as CameraRollTwoTone } from './CameraRollTwoTone'; -export { default as CameraRounded } from './CameraRounded'; -export { default as CameraSharp } from './CameraSharp'; -export { default as CameraTwoTone } from './CameraTwoTone'; -export { default as Cameraswitch } from './Cameraswitch'; -export { default as CameraswitchOutlined } from './CameraswitchOutlined'; -export { default as CameraswitchRounded } from './CameraswitchRounded'; -export { default as CameraswitchSharp } from './CameraswitchSharp'; -export { default as CameraswitchTwoTone } from './CameraswitchTwoTone'; -export { default as Campaign } from './Campaign'; -export { default as CampaignOutlined } from './CampaignOutlined'; -export { default as CampaignRounded } from './CampaignRounded'; -export { default as CampaignSharp } from './CampaignSharp'; -export { default as CampaignTwoTone } from './CampaignTwoTone'; -export { default as Cancel } from './Cancel'; -export { default as CancelOutlined } from './CancelOutlined'; -export { default as CancelPresentation } from './CancelPresentation'; -export { default as CancelPresentationOutlined } from './CancelPresentationOutlined'; -export { default as CancelPresentationRounded } from './CancelPresentationRounded'; -export { default as CancelPresentationSharp } from './CancelPresentationSharp'; -export { default as CancelPresentationTwoTone } from './CancelPresentationTwoTone'; -export { default as CancelRounded } from './CancelRounded'; -export { default as CancelScheduleSend } from './CancelScheduleSend'; -export { default as CancelScheduleSendOutlined } from './CancelScheduleSendOutlined'; -export { default as CancelScheduleSendRounded } from './CancelScheduleSendRounded'; -export { default as CancelScheduleSendSharp } from './CancelScheduleSendSharp'; -export { default as CancelScheduleSendTwoTone } from './CancelScheduleSendTwoTone'; -export { default as CancelSharp } from './CancelSharp'; -export { default as CancelTwoTone } from './CancelTwoTone'; -export { default as CarRental } from './CarRental'; -export { default as CarRentalOutlined } from './CarRentalOutlined'; -export { default as CarRentalRounded } from './CarRentalRounded'; -export { default as CarRentalSharp } from './CarRentalSharp'; -export { default as CarRentalTwoTone } from './CarRentalTwoTone'; -export { default as CarRepair } from './CarRepair'; -export { default as CarRepairOutlined } from './CarRepairOutlined'; -export { default as CarRepairRounded } from './CarRepairRounded'; -export { default as CarRepairSharp } from './CarRepairSharp'; -export { default as CarRepairTwoTone } from './CarRepairTwoTone'; -export { default as CardGiftcard } from './CardGiftcard'; -export { default as CardGiftcardOutlined } from './CardGiftcardOutlined'; -export { default as CardGiftcardRounded } from './CardGiftcardRounded'; -export { default as CardGiftcardSharp } from './CardGiftcardSharp'; -export { default as CardGiftcardTwoTone } from './CardGiftcardTwoTone'; -export { default as CardMembership } from './CardMembership'; -export { default as CardMembershipOutlined } from './CardMembershipOutlined'; -export { default as CardMembershipRounded } from './CardMembershipRounded'; -export { default as CardMembershipSharp } from './CardMembershipSharp'; -export { default as CardMembershipTwoTone } from './CardMembershipTwoTone'; -export { default as CardTravel } from './CardTravel'; -export { default as CardTravelOutlined } from './CardTravelOutlined'; -export { default as CardTravelRounded } from './CardTravelRounded'; -export { default as CardTravelSharp } from './CardTravelSharp'; -export { default as CardTravelTwoTone } from './CardTravelTwoTone'; -export { default as Carpenter } from './Carpenter'; -export { default as CarpenterOutlined } from './CarpenterOutlined'; -export { default as CarpenterRounded } from './CarpenterRounded'; -export { default as CarpenterSharp } from './CarpenterSharp'; -export { default as CarpenterTwoTone } from './CarpenterTwoTone'; -export { default as Cases } from './Cases'; -export { default as CasesOutlined } from './CasesOutlined'; -export { default as CasesRounded } from './CasesRounded'; -export { default as CasesSharp } from './CasesSharp'; -export { default as CasesTwoTone } from './CasesTwoTone'; -export { default as Casino } from './Casino'; -export { default as CasinoOutlined } from './CasinoOutlined'; -export { default as CasinoRounded } from './CasinoRounded'; -export { default as CasinoSharp } from './CasinoSharp'; -export { default as CasinoTwoTone } from './CasinoTwoTone'; -export { default as Cast } from './Cast'; -export { default as CastConnected } from './CastConnected'; -export { default as CastConnectedOutlined } from './CastConnectedOutlined'; -export { default as CastConnectedRounded } from './CastConnectedRounded'; -export { default as CastConnectedSharp } from './CastConnectedSharp'; -export { default as CastConnectedTwoTone } from './CastConnectedTwoTone'; -export { default as CastForEducation } from './CastForEducation'; -export { default as CastForEducationOutlined } from './CastForEducationOutlined'; -export { default as CastForEducationRounded } from './CastForEducationRounded'; -export { default as CastForEducationSharp } from './CastForEducationSharp'; -export { default as CastForEducationTwoTone } from './CastForEducationTwoTone'; -export { default as CastOutlined } from './CastOutlined'; -export { default as CastRounded } from './CastRounded'; -export { default as CastSharp } from './CastSharp'; -export { default as CastTwoTone } from './CastTwoTone'; -export { default as CatchingPokemon } from './CatchingPokemon'; -export { default as CatchingPokemonOutlined } from './CatchingPokemonOutlined'; -export { default as CatchingPokemonRounded } from './CatchingPokemonRounded'; -export { default as CatchingPokemonSharp } from './CatchingPokemonSharp'; -export { default as CatchingPokemonTwoTone } from './CatchingPokemonTwoTone'; -export { default as Category } from './Category'; -export { default as CategoryOutlined } from './CategoryOutlined'; -export { default as CategoryRounded } from './CategoryRounded'; -export { default as CategorySharp } from './CategorySharp'; -export { default as CategoryTwoTone } from './CategoryTwoTone'; -export { default as Celebration } from './Celebration'; -export { default as CelebrationOutlined } from './CelebrationOutlined'; -export { default as CelebrationRounded } from './CelebrationRounded'; -export { default as CelebrationSharp } from './CelebrationSharp'; -export { default as CelebrationTwoTone } from './CelebrationTwoTone'; -export { default as CellWifi } from './CellWifi'; -export { default as CellWifiOutlined } from './CellWifiOutlined'; -export { default as CellWifiRounded } from './CellWifiRounded'; -export { default as CellWifiSharp } from './CellWifiSharp'; -export { default as CellWifiTwoTone } from './CellWifiTwoTone'; -export { default as CenterFocusStrong } from './CenterFocusStrong'; -export { default as CenterFocusStrongOutlined } from './CenterFocusStrongOutlined'; -export { default as CenterFocusStrongRounded } from './CenterFocusStrongRounded'; -export { default as CenterFocusStrongSharp } from './CenterFocusStrongSharp'; -export { default as CenterFocusStrongTwoTone } from './CenterFocusStrongTwoTone'; -export { default as CenterFocusWeak } from './CenterFocusWeak'; -export { default as CenterFocusWeakOutlined } from './CenterFocusWeakOutlined'; -export { default as CenterFocusWeakRounded } from './CenterFocusWeakRounded'; -export { default as CenterFocusWeakSharp } from './CenterFocusWeakSharp'; -export { default as CenterFocusWeakTwoTone } from './CenterFocusWeakTwoTone'; -export { default as Chair } from './Chair'; -export { default as ChairAlt } from './ChairAlt'; -export { default as ChairAltOutlined } from './ChairAltOutlined'; -export { default as ChairAltRounded } from './ChairAltRounded'; -export { default as ChairAltSharp } from './ChairAltSharp'; -export { default as ChairAltTwoTone } from './ChairAltTwoTone'; -export { default as ChairOutlined } from './ChairOutlined'; -export { default as ChairRounded } from './ChairRounded'; -export { default as ChairSharp } from './ChairSharp'; -export { default as ChairTwoTone } from './ChairTwoTone'; -export { default as Chalet } from './Chalet'; -export { default as ChaletOutlined } from './ChaletOutlined'; -export { default as ChaletRounded } from './ChaletRounded'; -export { default as ChaletSharp } from './ChaletSharp'; -export { default as ChaletTwoTone } from './ChaletTwoTone'; -export { default as ChangeCircle } from './ChangeCircle'; -export { default as ChangeCircleOutlined } from './ChangeCircleOutlined'; -export { default as ChangeCircleRounded } from './ChangeCircleRounded'; -export { default as ChangeCircleSharp } from './ChangeCircleSharp'; -export { default as ChangeCircleTwoTone } from './ChangeCircleTwoTone'; -export { default as ChangeHistory } from './ChangeHistory'; -export { default as ChangeHistoryOutlined } from './ChangeHistoryOutlined'; -export { default as ChangeHistoryRounded } from './ChangeHistoryRounded'; -export { default as ChangeHistorySharp } from './ChangeHistorySharp'; -export { default as ChangeHistoryTwoTone } from './ChangeHistoryTwoTone'; -export { default as ChargingStation } from './ChargingStation'; -export { default as ChargingStationOutlined } from './ChargingStationOutlined'; -export { default as ChargingStationRounded } from './ChargingStationRounded'; -export { default as ChargingStationSharp } from './ChargingStationSharp'; -export { default as ChargingStationTwoTone } from './ChargingStationTwoTone'; -export { default as Chat } from './Chat'; -export { default as ChatBubble } from './ChatBubble'; -export { default as ChatBubbleOutline } from './ChatBubbleOutline'; -export { default as ChatBubbleOutlineOutlined } from './ChatBubbleOutlineOutlined'; -export { default as ChatBubbleOutlineRounded } from './ChatBubbleOutlineRounded'; -export { default as ChatBubbleOutlineSharp } from './ChatBubbleOutlineSharp'; -export { default as ChatBubbleOutlineTwoTone } from './ChatBubbleOutlineTwoTone'; -export { default as ChatBubbleOutlined } from './ChatBubbleOutlined'; -export { default as ChatBubbleRounded } from './ChatBubbleRounded'; -export { default as ChatBubbleSharp } from './ChatBubbleSharp'; -export { default as ChatBubbleTwoTone } from './ChatBubbleTwoTone'; -export { default as ChatOutlined } from './ChatOutlined'; -export { default as ChatRounded } from './ChatRounded'; -export { default as ChatSharp } from './ChatSharp'; -export { default as ChatTwoTone } from './ChatTwoTone'; -export { default as Check } from './Check'; -export { default as CheckBox } from './CheckBox'; -export { default as CheckBoxOutlineBlank } from './CheckBoxOutlineBlank'; -export { default as CheckBoxOutlineBlankOutlined } from './CheckBoxOutlineBlankOutlined'; -export { default as CheckBoxOutlineBlankRounded } from './CheckBoxOutlineBlankRounded'; -export { default as CheckBoxOutlineBlankSharp } from './CheckBoxOutlineBlankSharp'; -export { default as CheckBoxOutlineBlankTwoTone } from './CheckBoxOutlineBlankTwoTone'; -export { default as CheckBoxOutlined } from './CheckBoxOutlined'; -export { default as CheckBoxRounded } from './CheckBoxRounded'; -export { default as CheckBoxSharp } from './CheckBoxSharp'; -export { default as CheckBoxTwoTone } from './CheckBoxTwoTone'; -export { default as CheckCircle } from './CheckCircle'; -export { default as CheckCircleOutline } from './CheckCircleOutline'; -export { default as CheckCircleOutlineOutlined } from './CheckCircleOutlineOutlined'; -export { default as CheckCircleOutlineRounded } from './CheckCircleOutlineRounded'; -export { default as CheckCircleOutlineSharp } from './CheckCircleOutlineSharp'; -export { default as CheckCircleOutlineTwoTone } from './CheckCircleOutlineTwoTone'; -export { default as CheckCircleOutlined } from './CheckCircleOutlined'; -export { default as CheckCircleRounded } from './CheckCircleRounded'; -export { default as CheckCircleSharp } from './CheckCircleSharp'; -export { default as CheckCircleTwoTone } from './CheckCircleTwoTone'; -export { default as CheckOutlined } from './CheckOutlined'; -export { default as CheckRounded } from './CheckRounded'; -export { default as CheckSharp } from './CheckSharp'; -export { default as CheckTwoTone } from './CheckTwoTone'; -export { default as Checkroom } from './Checkroom'; -export { default as CheckroomOutlined } from './CheckroomOutlined'; -export { default as CheckroomRounded } from './CheckroomRounded'; -export { default as CheckroomSharp } from './CheckroomSharp'; -export { default as CheckroomTwoTone } from './CheckroomTwoTone'; -export { default as ChevronLeft } from './ChevronLeft'; -export { default as ChevronLeftOutlined } from './ChevronLeftOutlined'; -export { default as ChevronLeftRounded } from './ChevronLeftRounded'; -export { default as ChevronLeftSharp } from './ChevronLeftSharp'; -export { default as ChevronLeftTwoTone } from './ChevronLeftTwoTone'; -export { default as ChevronRight } from './ChevronRight'; -export { default as ChevronRightOutlined } from './ChevronRightOutlined'; -export { default as ChevronRightRounded } from './ChevronRightRounded'; -export { default as ChevronRightSharp } from './ChevronRightSharp'; -export { default as ChevronRightTwoTone } from './ChevronRightTwoTone'; -export { default as ChildCare } from './ChildCare'; -export { default as ChildCareOutlined } from './ChildCareOutlined'; -export { default as ChildCareRounded } from './ChildCareRounded'; -export { default as ChildCareSharp } from './ChildCareSharp'; -export { default as ChildCareTwoTone } from './ChildCareTwoTone'; -export { default as ChildFriendly } from './ChildFriendly'; -export { default as ChildFriendlyOutlined } from './ChildFriendlyOutlined'; -export { default as ChildFriendlyRounded } from './ChildFriendlyRounded'; -export { default as ChildFriendlySharp } from './ChildFriendlySharp'; -export { default as ChildFriendlyTwoTone } from './ChildFriendlyTwoTone'; -export { default as ChromeReaderMode } from './ChromeReaderMode'; -export { default as ChromeReaderModeOutlined } from './ChromeReaderModeOutlined'; -export { default as ChromeReaderModeRounded } from './ChromeReaderModeRounded'; -export { default as ChromeReaderModeSharp } from './ChromeReaderModeSharp'; -export { default as ChromeReaderModeTwoTone } from './ChromeReaderModeTwoTone'; -export { default as Circle } from './Circle'; -export { default as CircleNotifications } from './CircleNotifications'; -export { default as CircleNotificationsOutlined } from './CircleNotificationsOutlined'; -export { default as CircleNotificationsRounded } from './CircleNotificationsRounded'; -export { default as CircleNotificationsSharp } from './CircleNotificationsSharp'; -export { default as CircleNotificationsTwoTone } from './CircleNotificationsTwoTone'; -export { default as CircleOutlined } from './CircleOutlined'; -export { default as CircleRounded } from './CircleRounded'; -export { default as CircleSharp } from './CircleSharp'; -export { default as CircleTwoTone } from './CircleTwoTone'; -export { default as Class } from './Class'; -export { default as ClassOutlined } from './ClassOutlined'; -export { default as ClassRounded } from './ClassRounded'; -export { default as ClassSharp } from './ClassSharp'; -export { default as ClassTwoTone } from './ClassTwoTone'; -export { default as CleanHands } from './CleanHands'; -export { default as CleanHandsOutlined } from './CleanHandsOutlined'; -export { default as CleanHandsRounded } from './CleanHandsRounded'; -export { default as CleanHandsSharp } from './CleanHandsSharp'; -export { default as CleanHandsTwoTone } from './CleanHandsTwoTone'; -export { default as CleaningServices } from './CleaningServices'; -export { default as CleaningServicesOutlined } from './CleaningServicesOutlined'; -export { default as CleaningServicesRounded } from './CleaningServicesRounded'; -export { default as CleaningServicesSharp } from './CleaningServicesSharp'; -export { default as CleaningServicesTwoTone } from './CleaningServicesTwoTone'; -export { default as Clear } from './Clear'; -export { default as ClearAll } from './ClearAll'; -export { default as ClearAllOutlined } from './ClearAllOutlined'; -export { default as ClearAllRounded } from './ClearAllRounded'; -export { default as ClearAllSharp } from './ClearAllSharp'; -export { default as ClearAllTwoTone } from './ClearAllTwoTone'; -export { default as ClearOutlined } from './ClearOutlined'; -export { default as ClearRounded } from './ClearRounded'; -export { default as ClearSharp } from './ClearSharp'; -export { default as ClearTwoTone } from './ClearTwoTone'; -export { default as Close } from './Close'; -export { default as CloseFullscreen } from './CloseFullscreen'; -export { default as CloseFullscreenOutlined } from './CloseFullscreenOutlined'; -export { default as CloseFullscreenRounded } from './CloseFullscreenRounded'; -export { default as CloseFullscreenSharp } from './CloseFullscreenSharp'; -export { default as CloseFullscreenTwoTone } from './CloseFullscreenTwoTone'; -export { default as CloseOutlined } from './CloseOutlined'; -export { default as CloseRounded } from './CloseRounded'; -export { default as CloseSharp } from './CloseSharp'; -export { default as CloseTwoTone } from './CloseTwoTone'; -export { default as ClosedCaption } from './ClosedCaption'; -export { default as ClosedCaptionDisabled } from './ClosedCaptionDisabled'; -export { default as ClosedCaptionDisabledOutlined } from './ClosedCaptionDisabledOutlined'; -export { default as ClosedCaptionDisabledRounded } from './ClosedCaptionDisabledRounded'; -export { default as ClosedCaptionDisabledSharp } from './ClosedCaptionDisabledSharp'; -export { default as ClosedCaptionDisabledTwoTone } from './ClosedCaptionDisabledTwoTone'; -export { default as ClosedCaptionOff } from './ClosedCaptionOff'; -export { default as ClosedCaptionOffOutlined } from './ClosedCaptionOffOutlined'; -export { default as ClosedCaptionOffRounded } from './ClosedCaptionOffRounded'; -export { default as ClosedCaptionOffSharp } from './ClosedCaptionOffSharp'; -export { default as ClosedCaptionOffTwoTone } from './ClosedCaptionOffTwoTone'; -export { default as ClosedCaptionOutlined } from './ClosedCaptionOutlined'; -export { default as ClosedCaptionRounded } from './ClosedCaptionRounded'; -export { default as ClosedCaptionSharp } from './ClosedCaptionSharp'; -export { default as ClosedCaptionTwoTone } from './ClosedCaptionTwoTone'; -export { default as Cloud } from './Cloud'; -export { default as CloudCircle } from './CloudCircle'; -export { default as CloudCircleOutlined } from './CloudCircleOutlined'; -export { default as CloudCircleRounded } from './CloudCircleRounded'; -export { default as CloudCircleSharp } from './CloudCircleSharp'; -export { default as CloudCircleTwoTone } from './CloudCircleTwoTone'; -export { default as CloudDone } from './CloudDone'; -export { default as CloudDoneOutlined } from './CloudDoneOutlined'; -export { default as CloudDoneRounded } from './CloudDoneRounded'; -export { default as CloudDoneSharp } from './CloudDoneSharp'; -export { default as CloudDoneTwoTone } from './CloudDoneTwoTone'; -export { default as CloudDownload } from './CloudDownload'; -export { default as CloudDownloadOutlined } from './CloudDownloadOutlined'; -export { default as CloudDownloadRounded } from './CloudDownloadRounded'; -export { default as CloudDownloadSharp } from './CloudDownloadSharp'; -export { default as CloudDownloadTwoTone } from './CloudDownloadTwoTone'; -export { default as CloudOff } from './CloudOff'; -export { default as CloudOffOutlined } from './CloudOffOutlined'; -export { default as CloudOffRounded } from './CloudOffRounded'; -export { default as CloudOffSharp } from './CloudOffSharp'; -export { default as CloudOffTwoTone } from './CloudOffTwoTone'; -export { default as CloudOutlined } from './CloudOutlined'; -export { default as CloudQueue } from './CloudQueue'; -export { default as CloudQueueOutlined } from './CloudQueueOutlined'; -export { default as CloudQueueRounded } from './CloudQueueRounded'; -export { default as CloudQueueSharp } from './CloudQueueSharp'; -export { default as CloudQueueTwoTone } from './CloudQueueTwoTone'; -export { default as CloudRounded } from './CloudRounded'; -export { default as CloudSharp } from './CloudSharp'; -export { default as CloudTwoTone } from './CloudTwoTone'; -export { default as CloudUpload } from './CloudUpload'; -export { default as CloudUploadOutlined } from './CloudUploadOutlined'; -export { default as CloudUploadRounded } from './CloudUploadRounded'; -export { default as CloudUploadSharp } from './CloudUploadSharp'; -export { default as CloudUploadTwoTone } from './CloudUploadTwoTone'; -export { default as Code } from './Code'; -export { default as CodeOff } from './CodeOff'; -export { default as CodeOffOutlined } from './CodeOffOutlined'; -export { default as CodeOffRounded } from './CodeOffRounded'; -export { default as CodeOffSharp } from './CodeOffSharp'; -export { default as CodeOffTwoTone } from './CodeOffTwoTone'; -export { default as CodeOutlined } from './CodeOutlined'; -export { default as CodeRounded } from './CodeRounded'; -export { default as CodeSharp } from './CodeSharp'; -export { default as CodeTwoTone } from './CodeTwoTone'; -export { default as Coffee } from './Coffee'; -export { default as CoffeeMaker } from './CoffeeMaker'; -export { default as CoffeeMakerOutlined } from './CoffeeMakerOutlined'; -export { default as CoffeeMakerRounded } from './CoffeeMakerRounded'; -export { default as CoffeeMakerSharp } from './CoffeeMakerSharp'; -export { default as CoffeeMakerTwoTone } from './CoffeeMakerTwoTone'; -export { default as CoffeeOutlined } from './CoffeeOutlined'; -export { default as CoffeeRounded } from './CoffeeRounded'; -export { default as CoffeeSharp } from './CoffeeSharp'; -export { default as CoffeeTwoTone } from './CoffeeTwoTone'; -export { default as Collections } from './Collections'; -export { default as CollectionsBookmark } from './CollectionsBookmark'; -export { default as CollectionsBookmarkOutlined } from './CollectionsBookmarkOutlined'; -export { default as CollectionsBookmarkRounded } from './CollectionsBookmarkRounded'; -export { default as CollectionsBookmarkSharp } from './CollectionsBookmarkSharp'; -export { default as CollectionsBookmarkTwoTone } from './CollectionsBookmarkTwoTone'; -export { default as CollectionsOutlined } from './CollectionsOutlined'; -export { default as CollectionsRounded } from './CollectionsRounded'; -export { default as CollectionsSharp } from './CollectionsSharp'; -export { default as CollectionsTwoTone } from './CollectionsTwoTone'; -export { default as ColorLens } from './ColorLens'; -export { default as ColorLensOutlined } from './ColorLensOutlined'; -export { default as ColorLensRounded } from './ColorLensRounded'; -export { default as ColorLensSharp } from './ColorLensSharp'; -export { default as ColorLensTwoTone } from './ColorLensTwoTone'; -export { default as Colorize } from './Colorize'; -export { default as ColorizeOutlined } from './ColorizeOutlined'; -export { default as ColorizeRounded } from './ColorizeRounded'; -export { default as ColorizeSharp } from './ColorizeSharp'; -export { default as ColorizeTwoTone } from './ColorizeTwoTone'; -export { default as Comment } from './Comment'; -export { default as CommentBank } from './CommentBank'; -export { default as CommentBankOutlined } from './CommentBankOutlined'; -export { default as CommentBankRounded } from './CommentBankRounded'; -export { default as CommentBankSharp } from './CommentBankSharp'; -export { default as CommentBankTwoTone } from './CommentBankTwoTone'; -export { default as CommentOutlined } from './CommentOutlined'; -export { default as CommentRounded } from './CommentRounded'; -export { default as CommentSharp } from './CommentSharp'; -export { default as CommentTwoTone } from './CommentTwoTone'; -export { default as Commute } from './Commute'; -export { default as CommuteOutlined } from './CommuteOutlined'; -export { default as CommuteRounded } from './CommuteRounded'; -export { default as CommuteSharp } from './CommuteSharp'; -export { default as CommuteTwoTone } from './CommuteTwoTone'; -export { default as Compare } from './Compare'; -export { default as CompareArrows } from './CompareArrows'; -export { default as CompareArrowsOutlined } from './CompareArrowsOutlined'; -export { default as CompareArrowsRounded } from './CompareArrowsRounded'; -export { default as CompareArrowsSharp } from './CompareArrowsSharp'; -export { default as CompareArrowsTwoTone } from './CompareArrowsTwoTone'; -export { default as CompareOutlined } from './CompareOutlined'; -export { default as CompareRounded } from './CompareRounded'; -export { default as CompareSharp } from './CompareSharp'; -export { default as CompareTwoTone } from './CompareTwoTone'; -export { default as CompassCalibration } from './CompassCalibration'; -export { default as CompassCalibrationOutlined } from './CompassCalibrationOutlined'; -export { default as CompassCalibrationRounded } from './CompassCalibrationRounded'; -export { default as CompassCalibrationSharp } from './CompassCalibrationSharp'; -export { default as CompassCalibrationTwoTone } from './CompassCalibrationTwoTone'; -export { default as Compress } from './Compress'; -export { default as CompressOutlined } from './CompressOutlined'; -export { default as CompressRounded } from './CompressRounded'; -export { default as CompressSharp } from './CompressSharp'; -export { default as CompressTwoTone } from './CompressTwoTone'; -export { default as Computer } from './Computer'; -export { default as ComputerOutlined } from './ComputerOutlined'; -export { default as ComputerRounded } from './ComputerRounded'; -export { default as ComputerSharp } from './ComputerSharp'; -export { default as ComputerTwoTone } from './ComputerTwoTone'; -export { default as ConfirmationNumber } from './ConfirmationNumber'; -export { default as ConfirmationNumberOutlined } from './ConfirmationNumberOutlined'; -export { default as ConfirmationNumberRounded } from './ConfirmationNumberRounded'; -export { default as ConfirmationNumberSharp } from './ConfirmationNumberSharp'; -export { default as ConfirmationNumberTwoTone } from './ConfirmationNumberTwoTone'; -export { default as ConnectWithoutContact } from './ConnectWithoutContact'; -export { default as ConnectWithoutContactOutlined } from './ConnectWithoutContactOutlined'; -export { default as ConnectWithoutContactRounded } from './ConnectWithoutContactRounded'; -export { default as ConnectWithoutContactSharp } from './ConnectWithoutContactSharp'; -export { default as ConnectWithoutContactTwoTone } from './ConnectWithoutContactTwoTone'; -export { default as ConnectedTv } from './ConnectedTv'; -export { default as ConnectedTvOutlined } from './ConnectedTvOutlined'; -export { default as ConnectedTvRounded } from './ConnectedTvRounded'; -export { default as ConnectedTvSharp } from './ConnectedTvSharp'; -export { default as ConnectedTvTwoTone } from './ConnectedTvTwoTone'; -export { default as Construction } from './Construction'; -export { default as ConstructionOutlined } from './ConstructionOutlined'; -export { default as ConstructionRounded } from './ConstructionRounded'; -export { default as ConstructionSharp } from './ConstructionSharp'; -export { default as ConstructionTwoTone } from './ConstructionTwoTone'; -export { default as ContactMail } from './ContactMail'; -export { default as ContactMailOutlined } from './ContactMailOutlined'; -export { default as ContactMailRounded } from './ContactMailRounded'; -export { default as ContactMailSharp } from './ContactMailSharp'; -export { default as ContactMailTwoTone } from './ContactMailTwoTone'; -export { default as ContactPage } from './ContactPage'; -export { default as ContactPageOutlined } from './ContactPageOutlined'; -export { default as ContactPageRounded } from './ContactPageRounded'; -export { default as ContactPageSharp } from './ContactPageSharp'; -export { default as ContactPageTwoTone } from './ContactPageTwoTone'; -export { default as ContactPhone } from './ContactPhone'; -export { default as ContactPhoneOutlined } from './ContactPhoneOutlined'; -export { default as ContactPhoneRounded } from './ContactPhoneRounded'; -export { default as ContactPhoneSharp } from './ContactPhoneSharp'; -export { default as ContactPhoneTwoTone } from './ContactPhoneTwoTone'; -export { default as ContactSupport } from './ContactSupport'; -export { default as ContactSupportOutlined } from './ContactSupportOutlined'; -export { default as ContactSupportRounded } from './ContactSupportRounded'; -export { default as ContactSupportSharp } from './ContactSupportSharp'; -export { default as ContactSupportTwoTone } from './ContactSupportTwoTone'; -export { default as Contactless } from './Contactless'; -export { default as ContactlessOutlined } from './ContactlessOutlined'; -export { default as ContactlessRounded } from './ContactlessRounded'; -export { default as ContactlessSharp } from './ContactlessSharp'; -export { default as ContactlessTwoTone } from './ContactlessTwoTone'; -export { default as Contacts } from './Contacts'; -export { default as ContactsOutlined } from './ContactsOutlined'; -export { default as ContactsRounded } from './ContactsRounded'; -export { default as ContactsSharp } from './ContactsSharp'; -export { default as ContactsTwoTone } from './ContactsTwoTone'; -export { default as ContentCopy } from './ContentCopy'; -export { default as ContentCopyOutlined } from './ContentCopyOutlined'; -export { default as ContentCopyRounded } from './ContentCopyRounded'; -export { default as ContentCopySharp } from './ContentCopySharp'; -export { default as ContentCopyTwoTone } from './ContentCopyTwoTone'; -export { default as ContentCut } from './ContentCut'; -export { default as ContentCutOutlined } from './ContentCutOutlined'; -export { default as ContentCutRounded } from './ContentCutRounded'; -export { default as ContentCutSharp } from './ContentCutSharp'; -export { default as ContentCutTwoTone } from './ContentCutTwoTone'; -export { default as ContentPaste } from './ContentPaste'; -export { default as ContentPasteOff } from './ContentPasteOff'; -export { default as ContentPasteOffOutlined } from './ContentPasteOffOutlined'; -export { default as ContentPasteOffRounded } from './ContentPasteOffRounded'; -export { default as ContentPasteOffSharp } from './ContentPasteOffSharp'; -export { default as ContentPasteOffTwoTone } from './ContentPasteOffTwoTone'; -export { default as ContentPasteOutlined } from './ContentPasteOutlined'; -export { default as ContentPasteRounded } from './ContentPasteRounded'; -export { default as ContentPasteSharp } from './ContentPasteSharp'; -export { default as ContentPasteTwoTone } from './ContentPasteTwoTone'; -export { default as ControlCamera } from './ControlCamera'; -export { default as ControlCameraOutlined } from './ControlCameraOutlined'; -export { default as ControlCameraRounded } from './ControlCameraRounded'; -export { default as ControlCameraSharp } from './ControlCameraSharp'; -export { default as ControlCameraTwoTone } from './ControlCameraTwoTone'; -export { default as ControlPoint } from './ControlPoint'; -export { default as ControlPointDuplicate } from './ControlPointDuplicate'; -export { default as ControlPointDuplicateOutlined } from './ControlPointDuplicateOutlined'; -export { default as ControlPointDuplicateRounded } from './ControlPointDuplicateRounded'; -export { default as ControlPointDuplicateSharp } from './ControlPointDuplicateSharp'; -export { default as ControlPointDuplicateTwoTone } from './ControlPointDuplicateTwoTone'; -export { default as ControlPointOutlined } from './ControlPointOutlined'; -export { default as ControlPointRounded } from './ControlPointRounded'; -export { default as ControlPointSharp } from './ControlPointSharp'; -export { default as ControlPointTwoTone } from './ControlPointTwoTone'; -export { default as CopyAll } from './CopyAll'; -export { default as CopyAllOutlined } from './CopyAllOutlined'; -export { default as CopyAllRounded } from './CopyAllRounded'; -export { default as CopyAllSharp } from './CopyAllSharp'; -export { default as CopyAllTwoTone } from './CopyAllTwoTone'; -export { default as Copyright } from './Copyright'; -export { default as CopyrightOutlined } from './CopyrightOutlined'; -export { default as CopyrightRounded } from './CopyrightRounded'; -export { default as CopyrightSharp } from './CopyrightSharp'; -export { default as CopyrightTwoTone } from './CopyrightTwoTone'; -export { default as Coronavirus } from './Coronavirus'; -export { default as CoronavirusOutlined } from './CoronavirusOutlined'; -export { default as CoronavirusRounded } from './CoronavirusRounded'; -export { default as CoronavirusSharp } from './CoronavirusSharp'; -export { default as CoronavirusTwoTone } from './CoronavirusTwoTone'; -export { default as CorporateFare } from './CorporateFare'; -export { default as CorporateFareOutlined } from './CorporateFareOutlined'; -export { default as CorporateFareRounded } from './CorporateFareRounded'; -export { default as CorporateFareSharp } from './CorporateFareSharp'; -export { default as CorporateFareTwoTone } from './CorporateFareTwoTone'; -export { default as Cottage } from './Cottage'; -export { default as CottageOutlined } from './CottageOutlined'; -export { default as CottageRounded } from './CottageRounded'; -export { default as CottageSharp } from './CottageSharp'; -export { default as CottageTwoTone } from './CottageTwoTone'; -export { default as Countertops } from './Countertops'; -export { default as CountertopsOutlined } from './CountertopsOutlined'; -export { default as CountertopsRounded } from './CountertopsRounded'; -export { default as CountertopsSharp } from './CountertopsSharp'; -export { default as CountertopsTwoTone } from './CountertopsTwoTone'; -export { default as Create } from './Create'; -export { default as CreateNewFolder } from './CreateNewFolder'; -export { default as CreateNewFolderOutlined } from './CreateNewFolderOutlined'; -export { default as CreateNewFolderRounded } from './CreateNewFolderRounded'; -export { default as CreateNewFolderSharp } from './CreateNewFolderSharp'; -export { default as CreateNewFolderTwoTone } from './CreateNewFolderTwoTone'; -export { default as CreateOutlined } from './CreateOutlined'; -export { default as CreateRounded } from './CreateRounded'; -export { default as CreateSharp } from './CreateSharp'; -export { default as CreateTwoTone } from './CreateTwoTone'; -export { default as CreditCard } from './CreditCard'; -export { default as CreditCardOff } from './CreditCardOff'; -export { default as CreditCardOffOutlined } from './CreditCardOffOutlined'; -export { default as CreditCardOffRounded } from './CreditCardOffRounded'; -export { default as CreditCardOffSharp } from './CreditCardOffSharp'; -export { default as CreditCardOffTwoTone } from './CreditCardOffTwoTone'; -export { default as CreditCardOutlined } from './CreditCardOutlined'; -export { default as CreditCardRounded } from './CreditCardRounded'; -export { default as CreditCardSharp } from './CreditCardSharp'; -export { default as CreditCardTwoTone } from './CreditCardTwoTone'; -export { default as CreditScore } from './CreditScore'; -export { default as CreditScoreOutlined } from './CreditScoreOutlined'; -export { default as CreditScoreRounded } from './CreditScoreRounded'; -export { default as CreditScoreSharp } from './CreditScoreSharp'; -export { default as CreditScoreTwoTone } from './CreditScoreTwoTone'; -export { default as Crib } from './Crib'; -export { default as CribOutlined } from './CribOutlined'; -export { default as CribRounded } from './CribRounded'; -export { default as CribSharp } from './CribSharp'; -export { default as CribTwoTone } from './CribTwoTone'; -export { default as Crop } from './Crop'; -export { default as Crop169 } from './Crop169'; -export { default as Crop169Outlined } from './Crop169Outlined'; -export { default as Crop169Rounded } from './Crop169Rounded'; -export { default as Crop169Sharp } from './Crop169Sharp'; -export { default as Crop169TwoTone } from './Crop169TwoTone'; -export { default as Crop32 } from './Crop32'; -export { default as Crop32Outlined } from './Crop32Outlined'; -export { default as Crop32Rounded } from './Crop32Rounded'; -export { default as Crop32Sharp } from './Crop32Sharp'; -export { default as Crop32TwoTone } from './Crop32TwoTone'; -export { default as Crop54 } from './Crop54'; -export { default as Crop54Outlined } from './Crop54Outlined'; -export { default as Crop54Rounded } from './Crop54Rounded'; -export { default as Crop54Sharp } from './Crop54Sharp'; -export { default as Crop54TwoTone } from './Crop54TwoTone'; -export { default as Crop75 } from './Crop75'; -export { default as Crop75Outlined } from './Crop75Outlined'; -export { default as Crop75Rounded } from './Crop75Rounded'; -export { default as Crop75Sharp } from './Crop75Sharp'; -export { default as Crop75TwoTone } from './Crop75TwoTone'; -export { default as CropDin } from './CropDin'; -export { default as CropDinOutlined } from './CropDinOutlined'; -export { default as CropDinRounded } from './CropDinRounded'; -export { default as CropDinSharp } from './CropDinSharp'; -export { default as CropDinTwoTone } from './CropDinTwoTone'; -export { default as CropFree } from './CropFree'; -export { default as CropFreeOutlined } from './CropFreeOutlined'; -export { default as CropFreeRounded } from './CropFreeRounded'; -export { default as CropFreeSharp } from './CropFreeSharp'; -export { default as CropFreeTwoTone } from './CropFreeTwoTone'; -export { default as CropLandscape } from './CropLandscape'; -export { default as CropLandscapeOutlined } from './CropLandscapeOutlined'; -export { default as CropLandscapeRounded } from './CropLandscapeRounded'; -export { default as CropLandscapeSharp } from './CropLandscapeSharp'; -export { default as CropLandscapeTwoTone } from './CropLandscapeTwoTone'; -export { default as CropOriginal } from './CropOriginal'; -export { default as CropOriginalOutlined } from './CropOriginalOutlined'; -export { default as CropOriginalRounded } from './CropOriginalRounded'; -export { default as CropOriginalSharp } from './CropOriginalSharp'; -export { default as CropOriginalTwoTone } from './CropOriginalTwoTone'; -export { default as CropOutlined } from './CropOutlined'; -export { default as CropPortrait } from './CropPortrait'; -export { default as CropPortraitOutlined } from './CropPortraitOutlined'; -export { default as CropPortraitRounded } from './CropPortraitRounded'; -export { default as CropPortraitSharp } from './CropPortraitSharp'; -export { default as CropPortraitTwoTone } from './CropPortraitTwoTone'; -export { default as CropRotate } from './CropRotate'; -export { default as CropRotateOutlined } from './CropRotateOutlined'; -export { default as CropRotateRounded } from './CropRotateRounded'; -export { default as CropRotateSharp } from './CropRotateSharp'; -export { default as CropRotateTwoTone } from './CropRotateTwoTone'; -export { default as CropRounded } from './CropRounded'; -export { default as CropSharp } from './CropSharp'; -export { default as CropSquare } from './CropSquare'; -export { default as CropSquareOutlined } from './CropSquareOutlined'; -export { default as CropSquareRounded } from './CropSquareRounded'; -export { default as CropSquareSharp } from './CropSquareSharp'; -export { default as CropSquareTwoTone } from './CropSquareTwoTone'; -export { default as CropTwoTone } from './CropTwoTone'; -export { default as Dangerous } from './Dangerous'; -export { default as DangerousOutlined } from './DangerousOutlined'; -export { default as DangerousRounded } from './DangerousRounded'; -export { default as DangerousSharp } from './DangerousSharp'; -export { default as DangerousTwoTone } from './DangerousTwoTone'; -export { default as DarkMode } from './DarkMode'; -export { default as DarkModeOutlined } from './DarkModeOutlined'; -export { default as DarkModeRounded } from './DarkModeRounded'; -export { default as DarkModeSharp } from './DarkModeSharp'; -export { default as DarkModeTwoTone } from './DarkModeTwoTone'; -export { default as Dashboard } from './Dashboard'; -export { default as DashboardCustomize } from './DashboardCustomize'; -export { default as DashboardCustomizeOutlined } from './DashboardCustomizeOutlined'; -export { default as DashboardCustomizeRounded } from './DashboardCustomizeRounded'; -export { default as DashboardCustomizeSharp } from './DashboardCustomizeSharp'; -export { default as DashboardCustomizeTwoTone } from './DashboardCustomizeTwoTone'; -export { default as DashboardOutlined } from './DashboardOutlined'; -export { default as DashboardRounded } from './DashboardRounded'; -export { default as DashboardSharp } from './DashboardSharp'; -export { default as DashboardTwoTone } from './DashboardTwoTone'; -export { default as DataSaverOff } from './DataSaverOff'; -export { default as DataSaverOffOutlined } from './DataSaverOffOutlined'; -export { default as DataSaverOffRounded } from './DataSaverOffRounded'; -export { default as DataSaverOffSharp } from './DataSaverOffSharp'; -export { default as DataSaverOffTwoTone } from './DataSaverOffTwoTone'; -export { default as DataSaverOn } from './DataSaverOn'; -export { default as DataSaverOnOutlined } from './DataSaverOnOutlined'; -export { default as DataSaverOnRounded } from './DataSaverOnRounded'; -export { default as DataSaverOnSharp } from './DataSaverOnSharp'; -export { default as DataSaverOnTwoTone } from './DataSaverOnTwoTone'; -export { default as DataUsage } from './DataUsage'; -export { default as DataUsageOutlined } from './DataUsageOutlined'; -export { default as DataUsageRounded } from './DataUsageRounded'; -export { default as DataUsageSharp } from './DataUsageSharp'; -export { default as DataUsageTwoTone } from './DataUsageTwoTone'; -export { default as DateRange } from './DateRange'; -export { default as DateRangeOutlined } from './DateRangeOutlined'; -export { default as DateRangeRounded } from './DateRangeRounded'; -export { default as DateRangeSharp } from './DateRangeSharp'; -export { default as DateRangeTwoTone } from './DateRangeTwoTone'; -export { default as Deck } from './Deck'; -export { default as DeckOutlined } from './DeckOutlined'; -export { default as DeckRounded } from './DeckRounded'; -export { default as DeckSharp } from './DeckSharp'; -export { default as DeckTwoTone } from './DeckTwoTone'; -export { default as Dehaze } from './Dehaze'; -export { default as DehazeOutlined } from './DehazeOutlined'; -export { default as DehazeRounded } from './DehazeRounded'; -export { default as DehazeSharp } from './DehazeSharp'; -export { default as DehazeTwoTone } from './DehazeTwoTone'; -export { default as Delete } from './Delete'; -export { default as DeleteForever } from './DeleteForever'; -export { default as DeleteForeverOutlined } from './DeleteForeverOutlined'; -export { default as DeleteForeverRounded } from './DeleteForeverRounded'; -export { default as DeleteForeverSharp } from './DeleteForeverSharp'; -export { default as DeleteForeverTwoTone } from './DeleteForeverTwoTone'; -export { default as DeleteOutline } from './DeleteOutline'; -export { default as DeleteOutlineOutlined } from './DeleteOutlineOutlined'; -export { default as DeleteOutlineRounded } from './DeleteOutlineRounded'; -export { default as DeleteOutlineSharp } from './DeleteOutlineSharp'; -export { default as DeleteOutlineTwoTone } from './DeleteOutlineTwoTone'; -export { default as DeleteOutlined } from './DeleteOutlined'; -export { default as DeleteRounded } from './DeleteRounded'; -export { default as DeleteSharp } from './DeleteSharp'; -export { default as DeleteSweep } from './DeleteSweep'; -export { default as DeleteSweepOutlined } from './DeleteSweepOutlined'; -export { default as DeleteSweepRounded } from './DeleteSweepRounded'; -export { default as DeleteSweepSharp } from './DeleteSweepSharp'; -export { default as DeleteSweepTwoTone } from './DeleteSweepTwoTone'; -export { default as DeleteTwoTone } from './DeleteTwoTone'; -export { default as DeliveryDining } from './DeliveryDining'; -export { default as DeliveryDiningOutlined } from './DeliveryDiningOutlined'; -export { default as DeliveryDiningRounded } from './DeliveryDiningRounded'; -export { default as DeliveryDiningSharp } from './DeliveryDiningSharp'; -export { default as DeliveryDiningTwoTone } from './DeliveryDiningTwoTone'; -export { default as DepartureBoard } from './DepartureBoard'; -export { default as DepartureBoardOutlined } from './DepartureBoardOutlined'; -export { default as DepartureBoardRounded } from './DepartureBoardRounded'; -export { default as DepartureBoardSharp } from './DepartureBoardSharp'; -export { default as DepartureBoardTwoTone } from './DepartureBoardTwoTone'; -export { default as Description } from './Description'; -export { default as DescriptionOutlined } from './DescriptionOutlined'; -export { default as DescriptionRounded } from './DescriptionRounded'; -export { default as DescriptionSharp } from './DescriptionSharp'; -export { default as DescriptionTwoTone } from './DescriptionTwoTone'; -export { default as DesignServices } from './DesignServices'; -export { default as DesignServicesOutlined } from './DesignServicesOutlined'; -export { default as DesignServicesRounded } from './DesignServicesRounded'; -export { default as DesignServicesSharp } from './DesignServicesSharp'; -export { default as DesignServicesTwoTone } from './DesignServicesTwoTone'; -export { default as DesktopAccessDisabled } from './DesktopAccessDisabled'; -export { default as DesktopAccessDisabledOutlined } from './DesktopAccessDisabledOutlined'; -export { default as DesktopAccessDisabledRounded } from './DesktopAccessDisabledRounded'; -export { default as DesktopAccessDisabledSharp } from './DesktopAccessDisabledSharp'; -export { default as DesktopAccessDisabledTwoTone } from './DesktopAccessDisabledTwoTone'; -export { default as DesktopMac } from './DesktopMac'; -export { default as DesktopMacOutlined } from './DesktopMacOutlined'; -export { default as DesktopMacRounded } from './DesktopMacRounded'; -export { default as DesktopMacSharp } from './DesktopMacSharp'; -export { default as DesktopMacTwoTone } from './DesktopMacTwoTone'; -export { default as DesktopWindows } from './DesktopWindows'; -export { default as DesktopWindowsOutlined } from './DesktopWindowsOutlined'; -export { default as DesktopWindowsRounded } from './DesktopWindowsRounded'; -export { default as DesktopWindowsSharp } from './DesktopWindowsSharp'; -export { default as DesktopWindowsTwoTone } from './DesktopWindowsTwoTone'; -export { default as Details } from './Details'; -export { default as DetailsOutlined } from './DetailsOutlined'; -export { default as DetailsRounded } from './DetailsRounded'; -export { default as DetailsSharp } from './DetailsSharp'; -export { default as DetailsTwoTone } from './DetailsTwoTone'; -export { default as DeveloperBoard } from './DeveloperBoard'; -export { default as DeveloperBoardOff } from './DeveloperBoardOff'; -export { default as DeveloperBoardOffOutlined } from './DeveloperBoardOffOutlined'; -export { default as DeveloperBoardOffRounded } from './DeveloperBoardOffRounded'; -export { default as DeveloperBoardOffSharp } from './DeveloperBoardOffSharp'; -export { default as DeveloperBoardOffTwoTone } from './DeveloperBoardOffTwoTone'; -export { default as DeveloperBoardOutlined } from './DeveloperBoardOutlined'; -export { default as DeveloperBoardRounded } from './DeveloperBoardRounded'; -export { default as DeveloperBoardSharp } from './DeveloperBoardSharp'; -export { default as DeveloperBoardTwoTone } from './DeveloperBoardTwoTone'; -export { default as DeveloperMode } from './DeveloperMode'; -export { default as DeveloperModeOutlined } from './DeveloperModeOutlined'; -export { default as DeveloperModeRounded } from './DeveloperModeRounded'; -export { default as DeveloperModeSharp } from './DeveloperModeSharp'; -export { default as DeveloperModeTwoTone } from './DeveloperModeTwoTone'; -export { default as DeviceHub } from './DeviceHub'; -export { default as DeviceHubOutlined } from './DeviceHubOutlined'; -export { default as DeviceHubRounded } from './DeviceHubRounded'; -export { default as DeviceHubSharp } from './DeviceHubSharp'; -export { default as DeviceHubTwoTone } from './DeviceHubTwoTone'; -export { default as DeviceThermostat } from './DeviceThermostat'; -export { default as DeviceThermostatOutlined } from './DeviceThermostatOutlined'; -export { default as DeviceThermostatRounded } from './DeviceThermostatRounded'; -export { default as DeviceThermostatSharp } from './DeviceThermostatSharp'; -export { default as DeviceThermostatTwoTone } from './DeviceThermostatTwoTone'; -export { default as DeviceUnknown } from './DeviceUnknown'; -export { default as DeviceUnknownOutlined } from './DeviceUnknownOutlined'; -export { default as DeviceUnknownRounded } from './DeviceUnknownRounded'; -export { default as DeviceUnknownSharp } from './DeviceUnknownSharp'; -export { default as DeviceUnknownTwoTone } from './DeviceUnknownTwoTone'; -export { default as Devices } from './Devices'; -export { default as DevicesOther } from './DevicesOther'; -export { default as DevicesOtherOutlined } from './DevicesOtherOutlined'; -export { default as DevicesOtherRounded } from './DevicesOtherRounded'; -export { default as DevicesOtherSharp } from './DevicesOtherSharp'; -export { default as DevicesOtherTwoTone } from './DevicesOtherTwoTone'; -export { default as DevicesOutlined } from './DevicesOutlined'; -export { default as DevicesRounded } from './DevicesRounded'; -export { default as DevicesSharp } from './DevicesSharp'; -export { default as DevicesTwoTone } from './DevicesTwoTone'; -export { default as DialerSip } from './DialerSip'; -export { default as DialerSipOutlined } from './DialerSipOutlined'; -export { default as DialerSipRounded } from './DialerSipRounded'; -export { default as DialerSipSharp } from './DialerSipSharp'; -export { default as DialerSipTwoTone } from './DialerSipTwoTone'; -export { default as Dialpad } from './Dialpad'; -export { default as DialpadOutlined } from './DialpadOutlined'; -export { default as DialpadRounded } from './DialpadRounded'; -export { default as DialpadSharp } from './DialpadSharp'; -export { default as DialpadTwoTone } from './DialpadTwoTone'; -export { default as Dining } from './Dining'; -export { default as DiningOutlined } from './DiningOutlined'; -export { default as DiningRounded } from './DiningRounded'; -export { default as DiningSharp } from './DiningSharp'; -export { default as DiningTwoTone } from './DiningTwoTone'; -export { default as DinnerDining } from './DinnerDining'; -export { default as DinnerDiningOutlined } from './DinnerDiningOutlined'; -export { default as DinnerDiningRounded } from './DinnerDiningRounded'; -export { default as DinnerDiningSharp } from './DinnerDiningSharp'; -export { default as DinnerDiningTwoTone } from './DinnerDiningTwoTone'; -export { default as Directions } from './Directions'; -export { default as DirectionsBike } from './DirectionsBike'; -export { default as DirectionsBikeOutlined } from './DirectionsBikeOutlined'; -export { default as DirectionsBikeRounded } from './DirectionsBikeRounded'; -export { default as DirectionsBikeSharp } from './DirectionsBikeSharp'; -export { default as DirectionsBikeTwoTone } from './DirectionsBikeTwoTone'; -export { default as DirectionsBoat } from './DirectionsBoat'; -export { default as DirectionsBoatFilled } from './DirectionsBoatFilled'; -export { default as DirectionsBoatFilledOutlined } from './DirectionsBoatFilledOutlined'; -export { default as DirectionsBoatFilledRounded } from './DirectionsBoatFilledRounded'; -export { default as DirectionsBoatFilledSharp } from './DirectionsBoatFilledSharp'; -export { default as DirectionsBoatFilledTwoTone } from './DirectionsBoatFilledTwoTone'; -export { default as DirectionsBoatOutlined } from './DirectionsBoatOutlined'; -export { default as DirectionsBoatRounded } from './DirectionsBoatRounded'; -export { default as DirectionsBoatSharp } from './DirectionsBoatSharp'; -export { default as DirectionsBoatTwoTone } from './DirectionsBoatTwoTone'; -export { default as DirectionsBus } from './DirectionsBus'; -export { default as DirectionsBusFilled } from './DirectionsBusFilled'; -export { default as DirectionsBusFilledOutlined } from './DirectionsBusFilledOutlined'; -export { default as DirectionsBusFilledRounded } from './DirectionsBusFilledRounded'; -export { default as DirectionsBusFilledSharp } from './DirectionsBusFilledSharp'; -export { default as DirectionsBusFilledTwoTone } from './DirectionsBusFilledTwoTone'; -export { default as DirectionsBusOutlined } from './DirectionsBusOutlined'; -export { default as DirectionsBusRounded } from './DirectionsBusRounded'; -export { default as DirectionsBusSharp } from './DirectionsBusSharp'; -export { default as DirectionsBusTwoTone } from './DirectionsBusTwoTone'; -export { default as DirectionsCar } from './DirectionsCar'; -export { default as DirectionsCarFilled } from './DirectionsCarFilled'; -export { default as DirectionsCarFilledOutlined } from './DirectionsCarFilledOutlined'; -export { default as DirectionsCarFilledRounded } from './DirectionsCarFilledRounded'; -export { default as DirectionsCarFilledSharp } from './DirectionsCarFilledSharp'; -export { default as DirectionsCarFilledTwoTone } from './DirectionsCarFilledTwoTone'; -export { default as DirectionsCarOutlined } from './DirectionsCarOutlined'; -export { default as DirectionsCarRounded } from './DirectionsCarRounded'; -export { default as DirectionsCarSharp } from './DirectionsCarSharp'; -export { default as DirectionsCarTwoTone } from './DirectionsCarTwoTone'; -export { default as DirectionsOff } from './DirectionsOff'; -export { default as DirectionsOffOutlined } from './DirectionsOffOutlined'; -export { default as DirectionsOffRounded } from './DirectionsOffRounded'; -export { default as DirectionsOffSharp } from './DirectionsOffSharp'; -export { default as DirectionsOffTwoTone } from './DirectionsOffTwoTone'; -export { default as DirectionsOutlined } from './DirectionsOutlined'; -export { default as DirectionsRailway } from './DirectionsRailway'; -export { default as DirectionsRailwayFilled } from './DirectionsRailwayFilled'; -export { default as DirectionsRailwayFilledOutlined } from './DirectionsRailwayFilledOutlined'; -export { default as DirectionsRailwayFilledRounded } from './DirectionsRailwayFilledRounded'; -export { default as DirectionsRailwayFilledSharp } from './DirectionsRailwayFilledSharp'; -export { default as DirectionsRailwayFilledTwoTone } from './DirectionsRailwayFilledTwoTone'; -export { default as DirectionsRailwayOutlined } from './DirectionsRailwayOutlined'; -export { default as DirectionsRailwayRounded } from './DirectionsRailwayRounded'; -export { default as DirectionsRailwaySharp } from './DirectionsRailwaySharp'; -export { default as DirectionsRailwayTwoTone } from './DirectionsRailwayTwoTone'; -export { default as DirectionsRounded } from './DirectionsRounded'; -export { default as DirectionsRun } from './DirectionsRun'; -export { default as DirectionsRunOutlined } from './DirectionsRunOutlined'; -export { default as DirectionsRunRounded } from './DirectionsRunRounded'; -export { default as DirectionsRunSharp } from './DirectionsRunSharp'; -export { default as DirectionsRunTwoTone } from './DirectionsRunTwoTone'; -export { default as DirectionsSharp } from './DirectionsSharp'; -export { default as DirectionsSubway } from './DirectionsSubway'; -export { default as DirectionsSubwayFilled } from './DirectionsSubwayFilled'; -export { default as DirectionsSubwayFilledOutlined } from './DirectionsSubwayFilledOutlined'; -export { default as DirectionsSubwayFilledRounded } from './DirectionsSubwayFilledRounded'; -export { default as DirectionsSubwayFilledSharp } from './DirectionsSubwayFilledSharp'; -export { default as DirectionsSubwayFilledTwoTone } from './DirectionsSubwayFilledTwoTone'; -export { default as DirectionsSubwayOutlined } from './DirectionsSubwayOutlined'; -export { default as DirectionsSubwayRounded } from './DirectionsSubwayRounded'; -export { default as DirectionsSubwaySharp } from './DirectionsSubwaySharp'; -export { default as DirectionsSubwayTwoTone } from './DirectionsSubwayTwoTone'; -export { default as DirectionsTransit } from './DirectionsTransit'; -export { default as DirectionsTransitFilled } from './DirectionsTransitFilled'; -export { default as DirectionsTransitFilledOutlined } from './DirectionsTransitFilledOutlined'; -export { default as DirectionsTransitFilledRounded } from './DirectionsTransitFilledRounded'; -export { default as DirectionsTransitFilledSharp } from './DirectionsTransitFilledSharp'; -export { default as DirectionsTransitFilledTwoTone } from './DirectionsTransitFilledTwoTone'; -export { default as DirectionsTransitOutlined } from './DirectionsTransitOutlined'; -export { default as DirectionsTransitRounded } from './DirectionsTransitRounded'; -export { default as DirectionsTransitSharp } from './DirectionsTransitSharp'; -export { default as DirectionsTransitTwoTone } from './DirectionsTransitTwoTone'; -export { default as DirectionsTwoTone } from './DirectionsTwoTone'; -export { default as DirectionsWalk } from './DirectionsWalk'; -export { default as DirectionsWalkOutlined } from './DirectionsWalkOutlined'; -export { default as DirectionsWalkRounded } from './DirectionsWalkRounded'; -export { default as DirectionsWalkSharp } from './DirectionsWalkSharp'; -export { default as DirectionsWalkTwoTone } from './DirectionsWalkTwoTone'; -export { default as DirtyLens } from './DirtyLens'; -export { default as DirtyLensOutlined } from './DirtyLensOutlined'; -export { default as DirtyLensRounded } from './DirtyLensRounded'; -export { default as DirtyLensSharp } from './DirtyLensSharp'; -export { default as DirtyLensTwoTone } from './DirtyLensTwoTone'; -export { default as DisabledByDefault } from './DisabledByDefault'; -export { default as DisabledByDefaultOutlined } from './DisabledByDefaultOutlined'; -export { default as DisabledByDefaultRounded } from './DisabledByDefaultRounded'; -export { default as DisabledByDefaultSharp } from './DisabledByDefaultSharp'; -export { default as DisabledByDefaultTwoTone } from './DisabledByDefaultTwoTone'; -export { default as DiscFull } from './DiscFull'; -export { default as DiscFullOutlined } from './DiscFullOutlined'; -export { default as DiscFullRounded } from './DiscFullRounded'; -export { default as DiscFullSharp } from './DiscFullSharp'; -export { default as DiscFullTwoTone } from './DiscFullTwoTone'; -export { default as Dns } from './Dns'; -export { default as DnsOutlined } from './DnsOutlined'; -export { default as DnsRounded } from './DnsRounded'; -export { default as DnsSharp } from './DnsSharp'; -export { default as DnsTwoTone } from './DnsTwoTone'; -export { default as DoDisturb } from './DoDisturb'; -export { default as DoDisturbAlt } from './DoDisturbAlt'; -export { default as DoDisturbAltOutlined } from './DoDisturbAltOutlined'; -export { default as DoDisturbAltRounded } from './DoDisturbAltRounded'; -export { default as DoDisturbAltSharp } from './DoDisturbAltSharp'; -export { default as DoDisturbAltTwoTone } from './DoDisturbAltTwoTone'; -export { default as DoDisturbOff } from './DoDisturbOff'; -export { default as DoDisturbOffOutlined } from './DoDisturbOffOutlined'; -export { default as DoDisturbOffRounded } from './DoDisturbOffRounded'; -export { default as DoDisturbOffSharp } from './DoDisturbOffSharp'; -export { default as DoDisturbOffTwoTone } from './DoDisturbOffTwoTone'; -export { default as DoDisturbOn } from './DoDisturbOn'; -export { default as DoDisturbOnOutlined } from './DoDisturbOnOutlined'; -export { default as DoDisturbOnRounded } from './DoDisturbOnRounded'; -export { default as DoDisturbOnSharp } from './DoDisturbOnSharp'; -export { default as DoDisturbOnTwoTone } from './DoDisturbOnTwoTone'; -export { default as DoDisturbOutlined } from './DoDisturbOutlined'; -export { default as DoDisturbRounded } from './DoDisturbRounded'; -export { default as DoDisturbSharp } from './DoDisturbSharp'; -export { default as DoDisturbTwoTone } from './DoDisturbTwoTone'; -export { default as DoNotDisturb } from './DoNotDisturb'; -export { default as DoNotDisturbAlt } from './DoNotDisturbAlt'; -export { default as DoNotDisturbAltOutlined } from './DoNotDisturbAltOutlined'; -export { default as DoNotDisturbAltRounded } from './DoNotDisturbAltRounded'; -export { default as DoNotDisturbAltSharp } from './DoNotDisturbAltSharp'; -export { default as DoNotDisturbAltTwoTone } from './DoNotDisturbAltTwoTone'; -export { default as DoNotDisturbOff } from './DoNotDisturbOff'; -export { default as DoNotDisturbOffOutlined } from './DoNotDisturbOffOutlined'; -export { default as DoNotDisturbOffRounded } from './DoNotDisturbOffRounded'; -export { default as DoNotDisturbOffSharp } from './DoNotDisturbOffSharp'; -export { default as DoNotDisturbOffTwoTone } from './DoNotDisturbOffTwoTone'; -export { default as DoNotDisturbOn } from './DoNotDisturbOn'; -export { default as DoNotDisturbOnOutlined } from './DoNotDisturbOnOutlined'; -export { default as DoNotDisturbOnRounded } from './DoNotDisturbOnRounded'; -export { default as DoNotDisturbOnSharp } from './DoNotDisturbOnSharp'; -export { default as DoNotDisturbOnTotalSilence } from './DoNotDisturbOnTotalSilence'; -export { default as DoNotDisturbOnTotalSilenceOutlined } from './DoNotDisturbOnTotalSilenceOutlined'; -export { default as DoNotDisturbOnTotalSilenceRounded } from './DoNotDisturbOnTotalSilenceRounded'; -export { default as DoNotDisturbOnTotalSilenceSharp } from './DoNotDisturbOnTotalSilenceSharp'; -export { default as DoNotDisturbOnTotalSilenceTwoTone } from './DoNotDisturbOnTotalSilenceTwoTone'; -export { default as DoNotDisturbOnTwoTone } from './DoNotDisturbOnTwoTone'; -export { default as DoNotDisturbOutlined } from './DoNotDisturbOutlined'; -export { default as DoNotDisturbRounded } from './DoNotDisturbRounded'; -export { default as DoNotDisturbSharp } from './DoNotDisturbSharp'; -export { default as DoNotDisturbTwoTone } from './DoNotDisturbTwoTone'; -export { default as DoNotStep } from './DoNotStep'; -export { default as DoNotStepOutlined } from './DoNotStepOutlined'; -export { default as DoNotStepRounded } from './DoNotStepRounded'; -export { default as DoNotStepSharp } from './DoNotStepSharp'; -export { default as DoNotStepTwoTone } from './DoNotStepTwoTone'; -export { default as DoNotTouch } from './DoNotTouch'; -export { default as DoNotTouchOutlined } from './DoNotTouchOutlined'; -export { default as DoNotTouchRounded } from './DoNotTouchRounded'; -export { default as DoNotTouchSharp } from './DoNotTouchSharp'; -export { default as DoNotTouchTwoTone } from './DoNotTouchTwoTone'; -export { default as Dock } from './Dock'; -export { default as DockOutlined } from './DockOutlined'; -export { default as DockRounded } from './DockRounded'; -export { default as DockSharp } from './DockSharp'; -export { default as DockTwoTone } from './DockTwoTone'; -export { default as DocumentScanner } from './DocumentScanner'; -export { default as DocumentScannerOutlined } from './DocumentScannerOutlined'; -export { default as DocumentScannerRounded } from './DocumentScannerRounded'; -export { default as DocumentScannerSharp } from './DocumentScannerSharp'; -export { default as DocumentScannerTwoTone } from './DocumentScannerTwoTone'; -export { default as Domain } from './Domain'; -export { default as DomainDisabled } from './DomainDisabled'; -export { default as DomainDisabledOutlined } from './DomainDisabledOutlined'; -export { default as DomainDisabledRounded } from './DomainDisabledRounded'; -export { default as DomainDisabledSharp } from './DomainDisabledSharp'; -export { default as DomainDisabledTwoTone } from './DomainDisabledTwoTone'; -export { default as DomainOutlined } from './DomainOutlined'; -export { default as DomainRounded } from './DomainRounded'; -export { default as DomainSharp } from './DomainSharp'; -export { default as DomainTwoTone } from './DomainTwoTone'; -export { default as DomainVerification } from './DomainVerification'; -export { default as DomainVerificationOutlined } from './DomainVerificationOutlined'; -export { default as DomainVerificationRounded } from './DomainVerificationRounded'; -export { default as DomainVerificationSharp } from './DomainVerificationSharp'; -export { default as DomainVerificationTwoTone } from './DomainVerificationTwoTone'; -export { default as Done } from './Done'; -export { default as DoneAll } from './DoneAll'; -export { default as DoneAllOutlined } from './DoneAllOutlined'; -export { default as DoneAllRounded } from './DoneAllRounded'; -export { default as DoneAllSharp } from './DoneAllSharp'; -export { default as DoneAllTwoTone } from './DoneAllTwoTone'; -export { default as DoneOutline } from './DoneOutline'; -export { default as DoneOutlineOutlined } from './DoneOutlineOutlined'; -export { default as DoneOutlineRounded } from './DoneOutlineRounded'; -export { default as DoneOutlineSharp } from './DoneOutlineSharp'; -export { default as DoneOutlineTwoTone } from './DoneOutlineTwoTone'; -export { default as DoneOutlined } from './DoneOutlined'; -export { default as DoneRounded } from './DoneRounded'; -export { default as DoneSharp } from './DoneSharp'; -export { default as DoneTwoTone } from './DoneTwoTone'; -export { default as DonutLarge } from './DonutLarge'; -export { default as DonutLargeOutlined } from './DonutLargeOutlined'; -export { default as DonutLargeRounded } from './DonutLargeRounded'; -export { default as DonutLargeSharp } from './DonutLargeSharp'; -export { default as DonutLargeTwoTone } from './DonutLargeTwoTone'; -export { default as DonutSmall } from './DonutSmall'; -export { default as DonutSmallOutlined } from './DonutSmallOutlined'; -export { default as DonutSmallRounded } from './DonutSmallRounded'; -export { default as DonutSmallSharp } from './DonutSmallSharp'; -export { default as DonutSmallTwoTone } from './DonutSmallTwoTone'; -export { default as DoorBack } from './DoorBack'; -export { default as DoorBackOutlined } from './DoorBackOutlined'; -export { default as DoorBackRounded } from './DoorBackRounded'; -export { default as DoorBackSharp } from './DoorBackSharp'; -export { default as DoorBackTwoTone } from './DoorBackTwoTone'; -export { default as DoorFront } from './DoorFront'; -export { default as DoorFrontOutlined } from './DoorFrontOutlined'; -export { default as DoorFrontRounded } from './DoorFrontRounded'; -export { default as DoorFrontSharp } from './DoorFrontSharp'; -export { default as DoorFrontTwoTone } from './DoorFrontTwoTone'; -export { default as DoorSliding } from './DoorSliding'; -export { default as DoorSlidingOutlined } from './DoorSlidingOutlined'; -export { default as DoorSlidingRounded } from './DoorSlidingRounded'; -export { default as DoorSlidingSharp } from './DoorSlidingSharp'; -export { default as DoorSlidingTwoTone } from './DoorSlidingTwoTone'; -export { default as Doorbell } from './Doorbell'; -export { default as DoorbellOutlined } from './DoorbellOutlined'; -export { default as DoorbellRounded } from './DoorbellRounded'; -export { default as DoorbellSharp } from './DoorbellSharp'; -export { default as DoorbellTwoTone } from './DoorbellTwoTone'; -export { default as DoubleArrow } from './DoubleArrow'; -export { default as DoubleArrowOutlined } from './DoubleArrowOutlined'; -export { default as DoubleArrowRounded } from './DoubleArrowRounded'; -export { default as DoubleArrowSharp } from './DoubleArrowSharp'; -export { default as DoubleArrowTwoTone } from './DoubleArrowTwoTone'; -export { default as DownhillSkiing } from './DownhillSkiing'; -export { default as DownhillSkiingOutlined } from './DownhillSkiingOutlined'; -export { default as DownhillSkiingRounded } from './DownhillSkiingRounded'; -export { default as DownhillSkiingSharp } from './DownhillSkiingSharp'; -export { default as DownhillSkiingTwoTone } from './DownhillSkiingTwoTone'; -export { default as Download } from './Download'; -export { default as DownloadDone } from './DownloadDone'; -export { default as DownloadDoneOutlined } from './DownloadDoneOutlined'; -export { default as DownloadDoneRounded } from './DownloadDoneRounded'; -export { default as DownloadDoneSharp } from './DownloadDoneSharp'; -export { default as DownloadDoneTwoTone } from './DownloadDoneTwoTone'; -export { default as DownloadForOffline } from './DownloadForOffline'; -export { default as DownloadForOfflineOutlined } from './DownloadForOfflineOutlined'; -export { default as DownloadForOfflineRounded } from './DownloadForOfflineRounded'; -export { default as DownloadForOfflineSharp } from './DownloadForOfflineSharp'; -export { default as DownloadForOfflineTwoTone } from './DownloadForOfflineTwoTone'; -export { default as DownloadOutlined } from './DownloadOutlined'; -export { default as DownloadRounded } from './DownloadRounded'; -export { default as DownloadSharp } from './DownloadSharp'; -export { default as DownloadTwoTone } from './DownloadTwoTone'; -export { default as Downloading } from './Downloading'; -export { default as DownloadingOutlined } from './DownloadingOutlined'; -export { default as DownloadingRounded } from './DownloadingRounded'; -export { default as DownloadingSharp } from './DownloadingSharp'; -export { default as DownloadingTwoTone } from './DownloadingTwoTone'; -export { default as Drafts } from './Drafts'; -export { default as DraftsOutlined } from './DraftsOutlined'; -export { default as DraftsRounded } from './DraftsRounded'; -export { default as DraftsSharp } from './DraftsSharp'; -export { default as DraftsTwoTone } from './DraftsTwoTone'; -export { default as DragHandle } from './DragHandle'; -export { default as DragHandleOutlined } from './DragHandleOutlined'; -export { default as DragHandleRounded } from './DragHandleRounded'; -export { default as DragHandleSharp } from './DragHandleSharp'; -export { default as DragHandleTwoTone } from './DragHandleTwoTone'; -export { default as DragIndicator } from './DragIndicator'; -export { default as DragIndicatorOutlined } from './DragIndicatorOutlined'; -export { default as DragIndicatorRounded } from './DragIndicatorRounded'; -export { default as DragIndicatorSharp } from './DragIndicatorSharp'; -export { default as DragIndicatorTwoTone } from './DragIndicatorTwoTone'; -export { default as DriveEta } from './DriveEta'; -export { default as DriveEtaOutlined } from './DriveEtaOutlined'; -export { default as DriveEtaRounded } from './DriveEtaRounded'; -export { default as DriveEtaSharp } from './DriveEtaSharp'; -export { default as DriveEtaTwoTone } from './DriveEtaTwoTone'; -export { default as DriveFileMove } from './DriveFileMove'; -export { default as DriveFileMoveOutlined } from './DriveFileMoveOutlined'; -export { default as DriveFileMoveRounded } from './DriveFileMoveRounded'; -export { default as DriveFileMoveSharp } from './DriveFileMoveSharp'; -export { default as DriveFileMoveTwoTone } from './DriveFileMoveTwoTone'; -export { default as DriveFileRenameOutline } from './DriveFileRenameOutline'; -export { default as DriveFileRenameOutlineOutlined } from './DriveFileRenameOutlineOutlined'; -export { default as DriveFileRenameOutlineRounded } from './DriveFileRenameOutlineRounded'; -export { default as DriveFileRenameOutlineSharp } from './DriveFileRenameOutlineSharp'; -export { default as DriveFileRenameOutlineTwoTone } from './DriveFileRenameOutlineTwoTone'; -export { default as DriveFolderUpload } from './DriveFolderUpload'; -export { default as DriveFolderUploadOutlined } from './DriveFolderUploadOutlined'; -export { default as DriveFolderUploadRounded } from './DriveFolderUploadRounded'; -export { default as DriveFolderUploadSharp } from './DriveFolderUploadSharp'; -export { default as DriveFolderUploadTwoTone } from './DriveFolderUploadTwoTone'; -export { default as Dry } from './Dry'; -export { default as DryCleaning } from './DryCleaning'; -export { default as DryCleaningOutlined } from './DryCleaningOutlined'; -export { default as DryCleaningRounded } from './DryCleaningRounded'; -export { default as DryCleaningSharp } from './DryCleaningSharp'; -export { default as DryCleaningTwoTone } from './DryCleaningTwoTone'; -export { default as DryOutlined } from './DryOutlined'; -export { default as DryRounded } from './DryRounded'; -export { default as DrySharp } from './DrySharp'; -export { default as DryTwoTone } from './DryTwoTone'; -export { default as Duo } from './Duo'; -export { default as DuoOutlined } from './DuoOutlined'; -export { default as DuoRounded } from './DuoRounded'; -export { default as DuoSharp } from './DuoSharp'; -export { default as DuoTwoTone } from './DuoTwoTone'; -export { default as Dvr } from './Dvr'; -export { default as DvrOutlined } from './DvrOutlined'; -export { default as DvrRounded } from './DvrRounded'; -export { default as DvrSharp } from './DvrSharp'; -export { default as DvrTwoTone } from './DvrTwoTone'; -export { default as DynamicFeed } from './DynamicFeed'; -export { default as DynamicFeedOutlined } from './DynamicFeedOutlined'; -export { default as DynamicFeedRounded } from './DynamicFeedRounded'; -export { default as DynamicFeedSharp } from './DynamicFeedSharp'; -export { default as DynamicFeedTwoTone } from './DynamicFeedTwoTone'; -export { default as DynamicForm } from './DynamicForm'; -export { default as DynamicFormOutlined } from './DynamicFormOutlined'; -export { default as DynamicFormRounded } from './DynamicFormRounded'; -export { default as DynamicFormSharp } from './DynamicFormSharp'; -export { default as DynamicFormTwoTone } from './DynamicFormTwoTone'; -export { default as EMobiledata } from './EMobiledata'; -export { default as EMobiledataOutlined } from './EMobiledataOutlined'; -export { default as EMobiledataRounded } from './EMobiledataRounded'; -export { default as EMobiledataSharp } from './EMobiledataSharp'; -export { default as EMobiledataTwoTone } from './EMobiledataTwoTone'; -export { default as Earbuds } from './Earbuds'; -export { default as EarbudsBattery } from './EarbudsBattery'; -export { default as EarbudsBatteryOutlined } from './EarbudsBatteryOutlined'; -export { default as EarbudsBatteryRounded } from './EarbudsBatteryRounded'; -export { default as EarbudsBatterySharp } from './EarbudsBatterySharp'; -export { default as EarbudsBatteryTwoTone } from './EarbudsBatteryTwoTone'; -export { default as EarbudsOutlined } from './EarbudsOutlined'; -export { default as EarbudsRounded } from './EarbudsRounded'; -export { default as EarbudsSharp } from './EarbudsSharp'; -export { default as EarbudsTwoTone } from './EarbudsTwoTone'; -export { default as East } from './East'; -export { default as EastOutlined } from './EastOutlined'; -export { default as EastRounded } from './EastRounded'; -export { default as EastSharp } from './EastSharp'; -export { default as EastTwoTone } from './EastTwoTone'; -export { default as EdgesensorHigh } from './EdgesensorHigh'; -export { default as EdgesensorHighOutlined } from './EdgesensorHighOutlined'; -export { default as EdgesensorHighRounded } from './EdgesensorHighRounded'; -export { default as EdgesensorHighSharp } from './EdgesensorHighSharp'; -export { default as EdgesensorHighTwoTone } from './EdgesensorHighTwoTone'; -export { default as EdgesensorLow } from './EdgesensorLow'; -export { default as EdgesensorLowOutlined } from './EdgesensorLowOutlined'; -export { default as EdgesensorLowRounded } from './EdgesensorLowRounded'; -export { default as EdgesensorLowSharp } from './EdgesensorLowSharp'; -export { default as EdgesensorLowTwoTone } from './EdgesensorLowTwoTone'; -export { default as Edit } from './Edit'; -export { default as EditAttributes } from './EditAttributes'; -export { default as EditAttributesOutlined } from './EditAttributesOutlined'; -export { default as EditAttributesRounded } from './EditAttributesRounded'; -export { default as EditAttributesSharp } from './EditAttributesSharp'; -export { default as EditAttributesTwoTone } from './EditAttributesTwoTone'; -export { default as EditLocation } from './EditLocation'; -export { default as EditLocationAlt } from './EditLocationAlt'; -export { default as EditLocationAltOutlined } from './EditLocationAltOutlined'; -export { default as EditLocationAltRounded } from './EditLocationAltRounded'; -export { default as EditLocationAltSharp } from './EditLocationAltSharp'; -export { default as EditLocationAltTwoTone } from './EditLocationAltTwoTone'; -export { default as EditLocationOutlined } from './EditLocationOutlined'; -export { default as EditLocationRounded } from './EditLocationRounded'; -export { default as EditLocationSharp } from './EditLocationSharp'; -export { default as EditLocationTwoTone } from './EditLocationTwoTone'; -export { default as EditNotifications } from './EditNotifications'; -export { default as EditNotificationsOutlined } from './EditNotificationsOutlined'; -export { default as EditNotificationsRounded } from './EditNotificationsRounded'; -export { default as EditNotificationsSharp } from './EditNotificationsSharp'; -export { default as EditNotificationsTwoTone } from './EditNotificationsTwoTone'; -export { default as EditOff } from './EditOff'; -export { default as EditOffOutlined } from './EditOffOutlined'; -export { default as EditOffRounded } from './EditOffRounded'; -export { default as EditOffSharp } from './EditOffSharp'; -export { default as EditOffTwoTone } from './EditOffTwoTone'; -export { default as EditOutlined } from './EditOutlined'; -export { default as EditRoad } from './EditRoad'; -export { default as EditRoadOutlined } from './EditRoadOutlined'; -export { default as EditRoadRounded } from './EditRoadRounded'; -export { default as EditRoadSharp } from './EditRoadSharp'; -export { default as EditRoadTwoTone } from './EditRoadTwoTone'; -export { default as EditRounded } from './EditRounded'; -export { default as EditSharp } from './EditSharp'; -export { default as EditTwoTone } from './EditTwoTone'; -export { default as EightK } from './EightK'; -export { default as EightKOutlined } from './EightKOutlined'; -export { default as EightKPlus } from './EightKPlus'; -export { default as EightKPlusOutlined } from './EightKPlusOutlined'; -export { default as EightKPlusRounded } from './EightKPlusRounded'; -export { default as EightKPlusSharp } from './EightKPlusSharp'; -export { default as EightKPlusTwoTone } from './EightKPlusTwoTone'; -export { default as EightKRounded } from './EightKRounded'; -export { default as EightKSharp } from './EightKSharp'; -export { default as EightKTwoTone } from './EightKTwoTone'; -export { default as EightMp } from './EightMp'; -export { default as EightMpOutlined } from './EightMpOutlined'; -export { default as EightMpRounded } from './EightMpRounded'; -export { default as EightMpSharp } from './EightMpSharp'; -export { default as EightMpTwoTone } from './EightMpTwoTone'; -export { default as EightteenMp } from './EightteenMp'; -export { default as EightteenMpOutlined } from './EightteenMpOutlined'; -export { default as EightteenMpRounded } from './EightteenMpRounded'; -export { default as EightteenMpSharp } from './EightteenMpSharp'; -export { default as EightteenMpTwoTone } from './EightteenMpTwoTone'; -export { default as Eject } from './Eject'; -export { default as EjectOutlined } from './EjectOutlined'; -export { default as EjectRounded } from './EjectRounded'; -export { default as EjectSharp } from './EjectSharp'; -export { default as EjectTwoTone } from './EjectTwoTone'; -export { default as Elderly } from './Elderly'; -export { default as ElderlyOutlined } from './ElderlyOutlined'; -export { default as ElderlyRounded } from './ElderlyRounded'; -export { default as ElderlySharp } from './ElderlySharp'; -export { default as ElderlyTwoTone } from './ElderlyTwoTone'; -export { default as ElectricBike } from './ElectricBike'; -export { default as ElectricBikeOutlined } from './ElectricBikeOutlined'; -export { default as ElectricBikeRounded } from './ElectricBikeRounded'; -export { default as ElectricBikeSharp } from './ElectricBikeSharp'; -export { default as ElectricBikeTwoTone } from './ElectricBikeTwoTone'; -export { default as ElectricCar } from './ElectricCar'; -export { default as ElectricCarOutlined } from './ElectricCarOutlined'; -export { default as ElectricCarRounded } from './ElectricCarRounded'; -export { default as ElectricCarSharp } from './ElectricCarSharp'; -export { default as ElectricCarTwoTone } from './ElectricCarTwoTone'; -export { default as ElectricMoped } from './ElectricMoped'; -export { default as ElectricMopedOutlined } from './ElectricMopedOutlined'; -export { default as ElectricMopedRounded } from './ElectricMopedRounded'; -export { default as ElectricMopedSharp } from './ElectricMopedSharp'; -export { default as ElectricMopedTwoTone } from './ElectricMopedTwoTone'; -export { default as ElectricRickshaw } from './ElectricRickshaw'; -export { default as ElectricRickshawOutlined } from './ElectricRickshawOutlined'; -export { default as ElectricRickshawRounded } from './ElectricRickshawRounded'; -export { default as ElectricRickshawSharp } from './ElectricRickshawSharp'; -export { default as ElectricRickshawTwoTone } from './ElectricRickshawTwoTone'; -export { default as ElectricScooter } from './ElectricScooter'; -export { default as ElectricScooterOutlined } from './ElectricScooterOutlined'; -export { default as ElectricScooterRounded } from './ElectricScooterRounded'; -export { default as ElectricScooterSharp } from './ElectricScooterSharp'; -export { default as ElectricScooterTwoTone } from './ElectricScooterTwoTone'; -export { default as ElectricalServices } from './ElectricalServices'; -export { default as ElectricalServicesOutlined } from './ElectricalServicesOutlined'; -export { default as ElectricalServicesRounded } from './ElectricalServicesRounded'; -export { default as ElectricalServicesSharp } from './ElectricalServicesSharp'; -export { default as ElectricalServicesTwoTone } from './ElectricalServicesTwoTone'; -export { default as Elevator } from './Elevator'; -export { default as ElevatorOutlined } from './ElevatorOutlined'; -export { default as ElevatorRounded } from './ElevatorRounded'; -export { default as ElevatorSharp } from './ElevatorSharp'; -export { default as ElevatorTwoTone } from './ElevatorTwoTone'; -export { default as ElevenMp } from './ElevenMp'; -export { default as ElevenMpOutlined } from './ElevenMpOutlined'; -export { default as ElevenMpRounded } from './ElevenMpRounded'; -export { default as ElevenMpSharp } from './ElevenMpSharp'; -export { default as ElevenMpTwoTone } from './ElevenMpTwoTone'; -export { default as Email } from './Email'; -export { default as EmailOutlined } from './EmailOutlined'; -export { default as EmailRounded } from './EmailRounded'; -export { default as EmailSharp } from './EmailSharp'; -export { default as EmailTwoTone } from './EmailTwoTone'; -export { default as EmojiEmotions } from './EmojiEmotions'; -export { default as EmojiEmotionsOutlined } from './EmojiEmotionsOutlined'; -export { default as EmojiEmotionsRounded } from './EmojiEmotionsRounded'; -export { default as EmojiEmotionsSharp } from './EmojiEmotionsSharp'; -export { default as EmojiEmotionsTwoTone } from './EmojiEmotionsTwoTone'; -export { default as EmojiEvents } from './EmojiEvents'; -export { default as EmojiEventsOutlined } from './EmojiEventsOutlined'; -export { default as EmojiEventsRounded } from './EmojiEventsRounded'; -export { default as EmojiEventsSharp } from './EmojiEventsSharp'; -export { default as EmojiEventsTwoTone } from './EmojiEventsTwoTone'; -export { default as EmojiFlags } from './EmojiFlags'; -export { default as EmojiFlagsOutlined } from './EmojiFlagsOutlined'; -export { default as EmojiFlagsRounded } from './EmojiFlagsRounded'; -export { default as EmojiFlagsSharp } from './EmojiFlagsSharp'; -export { default as EmojiFlagsTwoTone } from './EmojiFlagsTwoTone'; -export { default as EmojiFoodBeverage } from './EmojiFoodBeverage'; -export { default as EmojiFoodBeverageOutlined } from './EmojiFoodBeverageOutlined'; -export { default as EmojiFoodBeverageRounded } from './EmojiFoodBeverageRounded'; -export { default as EmojiFoodBeverageSharp } from './EmojiFoodBeverageSharp'; -export { default as EmojiFoodBeverageTwoTone } from './EmojiFoodBeverageTwoTone'; -export { default as EmojiNature } from './EmojiNature'; -export { default as EmojiNatureOutlined } from './EmojiNatureOutlined'; -export { default as EmojiNatureRounded } from './EmojiNatureRounded'; -export { default as EmojiNatureSharp } from './EmojiNatureSharp'; -export { default as EmojiNatureTwoTone } from './EmojiNatureTwoTone'; -export { default as EmojiObjects } from './EmojiObjects'; -export { default as EmojiObjectsOutlined } from './EmojiObjectsOutlined'; -export { default as EmojiObjectsRounded } from './EmojiObjectsRounded'; -export { default as EmojiObjectsSharp } from './EmojiObjectsSharp'; -export { default as EmojiObjectsTwoTone } from './EmojiObjectsTwoTone'; -export { default as EmojiPeople } from './EmojiPeople'; -export { default as EmojiPeopleOutlined } from './EmojiPeopleOutlined'; -export { default as EmojiPeopleRounded } from './EmojiPeopleRounded'; -export { default as EmojiPeopleSharp } from './EmojiPeopleSharp'; -export { default as EmojiPeopleTwoTone } from './EmojiPeopleTwoTone'; -export { default as EmojiSymbols } from './EmojiSymbols'; -export { default as EmojiSymbolsOutlined } from './EmojiSymbolsOutlined'; -export { default as EmojiSymbolsRounded } from './EmojiSymbolsRounded'; -export { default as EmojiSymbolsSharp } from './EmojiSymbolsSharp'; -export { default as EmojiSymbolsTwoTone } from './EmojiSymbolsTwoTone'; -export { default as EmojiTransportation } from './EmojiTransportation'; -export { default as EmojiTransportationOutlined } from './EmojiTransportationOutlined'; -export { default as EmojiTransportationRounded } from './EmojiTransportationRounded'; -export { default as EmojiTransportationSharp } from './EmojiTransportationSharp'; -export { default as EmojiTransportationTwoTone } from './EmojiTransportationTwoTone'; -export { default as Engineering } from './Engineering'; -export { default as EngineeringOutlined } from './EngineeringOutlined'; -export { default as EngineeringRounded } from './EngineeringRounded'; -export { default as EngineeringSharp } from './EngineeringSharp'; -export { default as EngineeringTwoTone } from './EngineeringTwoTone'; -export { default as EnhancedEncryption } from './EnhancedEncryption'; -export { default as EnhancedEncryptionOutlined } from './EnhancedEncryptionOutlined'; -export { default as EnhancedEncryptionRounded } from './EnhancedEncryptionRounded'; -export { default as EnhancedEncryptionSharp } from './EnhancedEncryptionSharp'; -export { default as EnhancedEncryptionTwoTone } from './EnhancedEncryptionTwoTone'; -export { default as Equalizer } from './Equalizer'; -export { default as EqualizerOutlined } from './EqualizerOutlined'; -export { default as EqualizerRounded } from './EqualizerRounded'; -export { default as EqualizerSharp } from './EqualizerSharp'; -export { default as EqualizerTwoTone } from './EqualizerTwoTone'; -export { default as Error } from './Error'; -export { default as ErrorOutline } from './ErrorOutline'; -export { default as ErrorOutlineOutlined } from './ErrorOutlineOutlined'; -export { default as ErrorOutlineRounded } from './ErrorOutlineRounded'; -export { default as ErrorOutlineSharp } from './ErrorOutlineSharp'; -export { default as ErrorOutlineTwoTone } from './ErrorOutlineTwoTone'; -export { default as ErrorOutlined } from './ErrorOutlined'; -export { default as ErrorRounded } from './ErrorRounded'; -export { default as ErrorSharp } from './ErrorSharp'; -export { default as ErrorTwoTone } from './ErrorTwoTone'; -export { default as Escalator } from './Escalator'; -export { default as EscalatorOutlined } from './EscalatorOutlined'; -export { default as EscalatorRounded } from './EscalatorRounded'; -export { default as EscalatorSharp } from './EscalatorSharp'; -export { default as EscalatorTwoTone } from './EscalatorTwoTone'; -export { default as EscalatorWarning } from './EscalatorWarning'; -export { default as EscalatorWarningOutlined } from './EscalatorWarningOutlined'; -export { default as EscalatorWarningRounded } from './EscalatorWarningRounded'; -export { default as EscalatorWarningSharp } from './EscalatorWarningSharp'; -export { default as EscalatorWarningTwoTone } from './EscalatorWarningTwoTone'; -export { default as Euro } from './Euro'; -export { default as EuroOutlined } from './EuroOutlined'; -export { default as EuroRounded } from './EuroRounded'; -export { default as EuroSharp } from './EuroSharp'; -export { default as EuroSymbol } from './EuroSymbol'; -export { default as EuroSymbolOutlined } from './EuroSymbolOutlined'; -export { default as EuroSymbolRounded } from './EuroSymbolRounded'; -export { default as EuroSymbolSharp } from './EuroSymbolSharp'; -export { default as EuroSymbolTwoTone } from './EuroSymbolTwoTone'; -export { default as EuroTwoTone } from './EuroTwoTone'; -export { default as EvStation } from './EvStation'; -export { default as EvStationOutlined } from './EvStationOutlined'; -export { default as EvStationRounded } from './EvStationRounded'; -export { default as EvStationSharp } from './EvStationSharp'; -export { default as EvStationTwoTone } from './EvStationTwoTone'; -export { default as Event } from './Event'; -export { default as EventAvailable } from './EventAvailable'; -export { default as EventAvailableOutlined } from './EventAvailableOutlined'; -export { default as EventAvailableRounded } from './EventAvailableRounded'; -export { default as EventAvailableSharp } from './EventAvailableSharp'; -export { default as EventAvailableTwoTone } from './EventAvailableTwoTone'; -export { default as EventBusy } from './EventBusy'; -export { default as EventBusyOutlined } from './EventBusyOutlined'; -export { default as EventBusyRounded } from './EventBusyRounded'; -export { default as EventBusySharp } from './EventBusySharp'; -export { default as EventBusyTwoTone } from './EventBusyTwoTone'; -export { default as EventNote } from './EventNote'; -export { default as EventNoteOutlined } from './EventNoteOutlined'; -export { default as EventNoteRounded } from './EventNoteRounded'; -export { default as EventNoteSharp } from './EventNoteSharp'; -export { default as EventNoteTwoTone } from './EventNoteTwoTone'; -export { default as EventOutlined } from './EventOutlined'; -export { default as EventRounded } from './EventRounded'; -export { default as EventSeat } from './EventSeat'; -export { default as EventSeatOutlined } from './EventSeatOutlined'; -export { default as EventSeatRounded } from './EventSeatRounded'; -export { default as EventSeatSharp } from './EventSeatSharp'; -export { default as EventSeatTwoTone } from './EventSeatTwoTone'; -export { default as EventSharp } from './EventSharp'; -export { default as EventTwoTone } from './EventTwoTone'; -export { default as ExitToApp } from './ExitToApp'; -export { default as ExitToAppOutlined } from './ExitToAppOutlined'; -export { default as ExitToAppRounded } from './ExitToAppRounded'; -export { default as ExitToAppSharp } from './ExitToAppSharp'; -export { default as ExitToAppTwoTone } from './ExitToAppTwoTone'; -export { default as Expand } from './Expand'; -export { default as ExpandLess } from './ExpandLess'; -export { default as ExpandLessOutlined } from './ExpandLessOutlined'; -export { default as ExpandLessRounded } from './ExpandLessRounded'; -export { default as ExpandLessSharp } from './ExpandLessSharp'; -export { default as ExpandLessTwoTone } from './ExpandLessTwoTone'; -export { default as ExpandMore } from './ExpandMore'; -export { default as ExpandMoreOutlined } from './ExpandMoreOutlined'; -export { default as ExpandMoreRounded } from './ExpandMoreRounded'; -export { default as ExpandMoreSharp } from './ExpandMoreSharp'; -export { default as ExpandMoreTwoTone } from './ExpandMoreTwoTone'; -export { default as ExpandOutlined } from './ExpandOutlined'; -export { default as ExpandRounded } from './ExpandRounded'; -export { default as ExpandSharp } from './ExpandSharp'; -export { default as ExpandTwoTone } from './ExpandTwoTone'; -export { default as Explicit } from './Explicit'; -export { default as ExplicitOutlined } from './ExplicitOutlined'; -export { default as ExplicitRounded } from './ExplicitRounded'; -export { default as ExplicitSharp } from './ExplicitSharp'; -export { default as ExplicitTwoTone } from './ExplicitTwoTone'; -export { default as Explore } from './Explore'; -export { default as ExploreOff } from './ExploreOff'; -export { default as ExploreOffOutlined } from './ExploreOffOutlined'; -export { default as ExploreOffRounded } from './ExploreOffRounded'; -export { default as ExploreOffSharp } from './ExploreOffSharp'; -export { default as ExploreOffTwoTone } from './ExploreOffTwoTone'; -export { default as ExploreOutlined } from './ExploreOutlined'; -export { default as ExploreRounded } from './ExploreRounded'; -export { default as ExploreSharp } from './ExploreSharp'; -export { default as ExploreTwoTone } from './ExploreTwoTone'; -export { default as Exposure } from './Exposure'; -export { default as ExposureOutlined } from './ExposureOutlined'; -export { default as ExposureRounded } from './ExposureRounded'; -export { default as ExposureSharp } from './ExposureSharp'; -export { default as ExposureTwoTone } from './ExposureTwoTone'; -export { default as Extension } from './Extension'; -export { default as ExtensionOff } from './ExtensionOff'; -export { default as ExtensionOffOutlined } from './ExtensionOffOutlined'; -export { default as ExtensionOffRounded } from './ExtensionOffRounded'; -export { default as ExtensionOffSharp } from './ExtensionOffSharp'; -export { default as ExtensionOffTwoTone } from './ExtensionOffTwoTone'; -export { default as ExtensionOutlined } from './ExtensionOutlined'; -export { default as ExtensionRounded } from './ExtensionRounded'; -export { default as ExtensionSharp } from './ExtensionSharp'; -export { default as ExtensionTwoTone } from './ExtensionTwoTone'; -export { default as Face } from './Face'; -export { default as FaceOutlined } from './FaceOutlined'; -export { default as FaceRetouchingNatural } from './FaceRetouchingNatural'; -export { default as FaceRetouchingNaturalOutlined } from './FaceRetouchingNaturalOutlined'; -export { default as FaceRetouchingNaturalRounded } from './FaceRetouchingNaturalRounded'; -export { default as FaceRetouchingNaturalSharp } from './FaceRetouchingNaturalSharp'; -export { default as FaceRetouchingNaturalTwoTone } from './FaceRetouchingNaturalTwoTone'; -export { default as FaceRetouchingOff } from './FaceRetouchingOff'; -export { default as FaceRetouchingOffOutlined } from './FaceRetouchingOffOutlined'; -export { default as FaceRetouchingOffRounded } from './FaceRetouchingOffRounded'; -export { default as FaceRetouchingOffSharp } from './FaceRetouchingOffSharp'; -export { default as FaceRetouchingOffTwoTone } from './FaceRetouchingOffTwoTone'; -export { default as FaceRounded } from './FaceRounded'; -export { default as FaceSharp } from './FaceSharp'; -export { default as FaceTwoTone } from './FaceTwoTone'; -export { default as Facebook } from './Facebook'; -export { default as FacebookOutlined } from './FacebookOutlined'; -export { default as FacebookRounded } from './FacebookRounded'; -export { default as FacebookSharp } from './FacebookSharp'; -export { default as FacebookTwoTone } from './FacebookTwoTone'; -export { default as FactCheck } from './FactCheck'; -export { default as FactCheckOutlined } from './FactCheckOutlined'; -export { default as FactCheckRounded } from './FactCheckRounded'; -export { default as FactCheckSharp } from './FactCheckSharp'; -export { default as FactCheckTwoTone } from './FactCheckTwoTone'; -export { default as FamilyRestroom } from './FamilyRestroom'; -export { default as FamilyRestroomOutlined } from './FamilyRestroomOutlined'; -export { default as FamilyRestroomRounded } from './FamilyRestroomRounded'; -export { default as FamilyRestroomSharp } from './FamilyRestroomSharp'; -export { default as FamilyRestroomTwoTone } from './FamilyRestroomTwoTone'; -export { default as FastForward } from './FastForward'; -export { default as FastForwardOutlined } from './FastForwardOutlined'; -export { default as FastForwardRounded } from './FastForwardRounded'; -export { default as FastForwardSharp } from './FastForwardSharp'; -export { default as FastForwardTwoTone } from './FastForwardTwoTone'; -export { default as FastRewind } from './FastRewind'; -export { default as FastRewindOutlined } from './FastRewindOutlined'; -export { default as FastRewindRounded } from './FastRewindRounded'; -export { default as FastRewindSharp } from './FastRewindSharp'; -export { default as FastRewindTwoTone } from './FastRewindTwoTone'; -export { default as Fastfood } from './Fastfood'; -export { default as FastfoodOutlined } from './FastfoodOutlined'; -export { default as FastfoodRounded } from './FastfoodRounded'; -export { default as FastfoodSharp } from './FastfoodSharp'; -export { default as FastfoodTwoTone } from './FastfoodTwoTone'; -export { default as Favorite } from './Favorite'; -export { default as FavoriteBorder } from './FavoriteBorder'; -export { default as FavoriteBorderOutlined } from './FavoriteBorderOutlined'; -export { default as FavoriteBorderRounded } from './FavoriteBorderRounded'; -export { default as FavoriteBorderSharp } from './FavoriteBorderSharp'; -export { default as FavoriteBorderTwoTone } from './FavoriteBorderTwoTone'; -export { default as FavoriteOutlined } from './FavoriteOutlined'; -export { default as FavoriteRounded } from './FavoriteRounded'; -export { default as FavoriteSharp } from './FavoriteSharp'; -export { default as FavoriteTwoTone } from './FavoriteTwoTone'; -export { default as FeaturedPlayList } from './FeaturedPlayList'; -export { default as FeaturedPlayListOutlined } from './FeaturedPlayListOutlined'; -export { default as FeaturedPlayListRounded } from './FeaturedPlayListRounded'; -export { default as FeaturedPlayListSharp } from './FeaturedPlayListSharp'; -export { default as FeaturedPlayListTwoTone } from './FeaturedPlayListTwoTone'; -export { default as FeaturedVideo } from './FeaturedVideo'; -export { default as FeaturedVideoOutlined } from './FeaturedVideoOutlined'; -export { default as FeaturedVideoRounded } from './FeaturedVideoRounded'; -export { default as FeaturedVideoSharp } from './FeaturedVideoSharp'; -export { default as FeaturedVideoTwoTone } from './FeaturedVideoTwoTone'; -export { default as Feed } from './Feed'; -export { default as FeedOutlined } from './FeedOutlined'; -export { default as FeedRounded } from './FeedRounded'; -export { default as FeedSharp } from './FeedSharp'; -export { default as FeedTwoTone } from './FeedTwoTone'; -export { default as Feedback } from './Feedback'; -export { default as FeedbackOutlined } from './FeedbackOutlined'; -export { default as FeedbackRounded } from './FeedbackRounded'; -export { default as FeedbackSharp } from './FeedbackSharp'; -export { default as FeedbackTwoTone } from './FeedbackTwoTone'; -export { default as Female } from './Female'; -export { default as FemaleOutlined } from './FemaleOutlined'; -export { default as FemaleRounded } from './FemaleRounded'; -export { default as FemaleSharp } from './FemaleSharp'; -export { default as FemaleTwoTone } from './FemaleTwoTone'; -export { default as Fence } from './Fence'; -export { default as FenceOutlined } from './FenceOutlined'; -export { default as FenceRounded } from './FenceRounded'; -export { default as FenceSharp } from './FenceSharp'; -export { default as FenceTwoTone } from './FenceTwoTone'; -export { default as Festival } from './Festival'; -export { default as FestivalOutlined } from './FestivalOutlined'; -export { default as FestivalRounded } from './FestivalRounded'; -export { default as FestivalSharp } from './FestivalSharp'; -export { default as FestivalTwoTone } from './FestivalTwoTone'; -export { default as FiberDvr } from './FiberDvr'; -export { default as FiberDvrOutlined } from './FiberDvrOutlined'; -export { default as FiberDvrRounded } from './FiberDvrRounded'; -export { default as FiberDvrSharp } from './FiberDvrSharp'; -export { default as FiberDvrTwoTone } from './FiberDvrTwoTone'; -export { default as FiberManualRecord } from './FiberManualRecord'; -export { default as FiberManualRecordOutlined } from './FiberManualRecordOutlined'; -export { default as FiberManualRecordRounded } from './FiberManualRecordRounded'; -export { default as FiberManualRecordSharp } from './FiberManualRecordSharp'; -export { default as FiberManualRecordTwoTone } from './FiberManualRecordTwoTone'; -export { default as FiberNew } from './FiberNew'; -export { default as FiberNewOutlined } from './FiberNewOutlined'; -export { default as FiberNewRounded } from './FiberNewRounded'; -export { default as FiberNewSharp } from './FiberNewSharp'; -export { default as FiberNewTwoTone } from './FiberNewTwoTone'; -export { default as FiberPin } from './FiberPin'; -export { default as FiberPinOutlined } from './FiberPinOutlined'; -export { default as FiberPinRounded } from './FiberPinRounded'; -export { default as FiberPinSharp } from './FiberPinSharp'; -export { default as FiberPinTwoTone } from './FiberPinTwoTone'; -export { default as FiberSmartRecord } from './FiberSmartRecord'; -export { default as FiberSmartRecordOutlined } from './FiberSmartRecordOutlined'; -export { default as FiberSmartRecordRounded } from './FiberSmartRecordRounded'; -export { default as FiberSmartRecordSharp } from './FiberSmartRecordSharp'; -export { default as FiberSmartRecordTwoTone } from './FiberSmartRecordTwoTone'; -export { default as FileCopy } from './FileCopy'; -export { default as FileCopyOutlined } from './FileCopyOutlined'; -export { default as FileCopyRounded } from './FileCopyRounded'; -export { default as FileCopySharp } from './FileCopySharp'; -export { default as FileCopyTwoTone } from './FileCopyTwoTone'; -export { default as FileDownload } from './FileDownload'; -export { default as FileDownloadDone } from './FileDownloadDone'; -export { default as FileDownloadDoneOutlined } from './FileDownloadDoneOutlined'; -export { default as FileDownloadDoneRounded } from './FileDownloadDoneRounded'; -export { default as FileDownloadDoneSharp } from './FileDownloadDoneSharp'; -export { default as FileDownloadDoneTwoTone } from './FileDownloadDoneTwoTone'; -export { default as FileDownloadOff } from './FileDownloadOff'; -export { default as FileDownloadOffOutlined } from './FileDownloadOffOutlined'; -export { default as FileDownloadOffRounded } from './FileDownloadOffRounded'; -export { default as FileDownloadOffSharp } from './FileDownloadOffSharp'; -export { default as FileDownloadOffTwoTone } from './FileDownloadOffTwoTone'; -export { default as FileDownloadOutlined } from './FileDownloadOutlined'; -export { default as FileDownloadRounded } from './FileDownloadRounded'; -export { default as FileDownloadSharp } from './FileDownloadSharp'; -export { default as FileDownloadTwoTone } from './FileDownloadTwoTone'; -export { default as FilePresent } from './FilePresent'; -export { default as FilePresentOutlined } from './FilePresentOutlined'; -export { default as FilePresentRounded } from './FilePresentRounded'; -export { default as FilePresentSharp } from './FilePresentSharp'; -export { default as FilePresentTwoTone } from './FilePresentTwoTone'; -export { default as FileUpload } from './FileUpload'; -export { default as FileUploadOutlined } from './FileUploadOutlined'; -export { default as FileUploadRounded } from './FileUploadRounded'; -export { default as FileUploadSharp } from './FileUploadSharp'; -export { default as FileUploadTwoTone } from './FileUploadTwoTone'; -export { default as Filter } from './Filter'; -export { default as Filter1 } from './Filter1'; -export { default as Filter1Outlined } from './Filter1Outlined'; -export { default as Filter1Rounded } from './Filter1Rounded'; -export { default as Filter1Sharp } from './Filter1Sharp'; -export { default as Filter1TwoTone } from './Filter1TwoTone'; -export { default as Filter2 } from './Filter2'; -export { default as Filter2Outlined } from './Filter2Outlined'; -export { default as Filter2Rounded } from './Filter2Rounded'; -export { default as Filter2Sharp } from './Filter2Sharp'; -export { default as Filter2TwoTone } from './Filter2TwoTone'; -export { default as Filter3 } from './Filter3'; -export { default as Filter3Outlined } from './Filter3Outlined'; -export { default as Filter3Rounded } from './Filter3Rounded'; -export { default as Filter3Sharp } from './Filter3Sharp'; -export { default as Filter3TwoTone } from './Filter3TwoTone'; -export { default as Filter4 } from './Filter4'; -export { default as Filter4Outlined } from './Filter4Outlined'; -export { default as Filter4Rounded } from './Filter4Rounded'; -export { default as Filter4Sharp } from './Filter4Sharp'; -export { default as Filter4TwoTone } from './Filter4TwoTone'; -export { default as Filter5 } from './Filter5'; -export { default as Filter5Outlined } from './Filter5Outlined'; -export { default as Filter5Rounded } from './Filter5Rounded'; -export { default as Filter5Sharp } from './Filter5Sharp'; -export { default as Filter5TwoTone } from './Filter5TwoTone'; -export { default as Filter6 } from './Filter6'; -export { default as Filter6Outlined } from './Filter6Outlined'; -export { default as Filter6Rounded } from './Filter6Rounded'; -export { default as Filter6Sharp } from './Filter6Sharp'; -export { default as Filter6TwoTone } from './Filter6TwoTone'; -export { default as Filter7 } from './Filter7'; -export { default as Filter7Outlined } from './Filter7Outlined'; -export { default as Filter7Rounded } from './Filter7Rounded'; -export { default as Filter7Sharp } from './Filter7Sharp'; -export { default as Filter7TwoTone } from './Filter7TwoTone'; -export { default as Filter8 } from './Filter8'; -export { default as Filter8Outlined } from './Filter8Outlined'; -export { default as Filter8Rounded } from './Filter8Rounded'; -export { default as Filter8Sharp } from './Filter8Sharp'; -export { default as Filter8TwoTone } from './Filter8TwoTone'; -export { default as Filter9 } from './Filter9'; -export { default as Filter9Outlined } from './Filter9Outlined'; -export { default as Filter9Plus } from './Filter9Plus'; -export { default as Filter9PlusOutlined } from './Filter9PlusOutlined'; -export { default as Filter9PlusRounded } from './Filter9PlusRounded'; -export { default as Filter9PlusSharp } from './Filter9PlusSharp'; -export { default as Filter9PlusTwoTone } from './Filter9PlusTwoTone'; -export { default as Filter9Rounded } from './Filter9Rounded'; -export { default as Filter9Sharp } from './Filter9Sharp'; -export { default as Filter9TwoTone } from './Filter9TwoTone'; -export { default as FilterAlt } from './FilterAlt'; -export { default as FilterAltOutlined } from './FilterAltOutlined'; -export { default as FilterAltRounded } from './FilterAltRounded'; -export { default as FilterAltSharp } from './FilterAltSharp'; -export { default as FilterAltTwoTone } from './FilterAltTwoTone'; -export { default as FilterBAndW } from './FilterBAndW'; -export { default as FilterBAndWOutlined } from './FilterBAndWOutlined'; -export { default as FilterBAndWRounded } from './FilterBAndWRounded'; -export { default as FilterBAndWSharp } from './FilterBAndWSharp'; -export { default as FilterBAndWTwoTone } from './FilterBAndWTwoTone'; -export { default as FilterCenterFocus } from './FilterCenterFocus'; -export { default as FilterCenterFocusOutlined } from './FilterCenterFocusOutlined'; -export { default as FilterCenterFocusRounded } from './FilterCenterFocusRounded'; -export { default as FilterCenterFocusSharp } from './FilterCenterFocusSharp'; -export { default as FilterCenterFocusTwoTone } from './FilterCenterFocusTwoTone'; -export { default as FilterDrama } from './FilterDrama'; -export { default as FilterDramaOutlined } from './FilterDramaOutlined'; -export { default as FilterDramaRounded } from './FilterDramaRounded'; -export { default as FilterDramaSharp } from './FilterDramaSharp'; -export { default as FilterDramaTwoTone } from './FilterDramaTwoTone'; -export { default as FilterFrames } from './FilterFrames'; -export { default as FilterFramesOutlined } from './FilterFramesOutlined'; -export { default as FilterFramesRounded } from './FilterFramesRounded'; -export { default as FilterFramesSharp } from './FilterFramesSharp'; -export { default as FilterFramesTwoTone } from './FilterFramesTwoTone'; -export { default as FilterHdr } from './FilterHdr'; -export { default as FilterHdrOutlined } from './FilterHdrOutlined'; -export { default as FilterHdrRounded } from './FilterHdrRounded'; -export { default as FilterHdrSharp } from './FilterHdrSharp'; -export { default as FilterHdrTwoTone } from './FilterHdrTwoTone'; -export { default as FilterList } from './FilterList'; -export { default as FilterListOutlined } from './FilterListOutlined'; -export { default as FilterListRounded } from './FilterListRounded'; -export { default as FilterListSharp } from './FilterListSharp'; -export { default as FilterListTwoTone } from './FilterListTwoTone'; -export { default as FilterNone } from './FilterNone'; -export { default as FilterNoneOutlined } from './FilterNoneOutlined'; -export { default as FilterNoneRounded } from './FilterNoneRounded'; -export { default as FilterNoneSharp } from './FilterNoneSharp'; -export { default as FilterNoneTwoTone } from './FilterNoneTwoTone'; -export { default as FilterOutlined } from './FilterOutlined'; -export { default as FilterRounded } from './FilterRounded'; -export { default as FilterSharp } from './FilterSharp'; -export { default as FilterTiltShift } from './FilterTiltShift'; -export { default as FilterTiltShiftOutlined } from './FilterTiltShiftOutlined'; -export { default as FilterTiltShiftRounded } from './FilterTiltShiftRounded'; -export { default as FilterTiltShiftSharp } from './FilterTiltShiftSharp'; -export { default as FilterTiltShiftTwoTone } from './FilterTiltShiftTwoTone'; -export { default as FilterTwoTone } from './FilterTwoTone'; -export { default as FilterVintage } from './FilterVintage'; -export { default as FilterVintageOutlined } from './FilterVintageOutlined'; -export { default as FilterVintageRounded } from './FilterVintageRounded'; -export { default as FilterVintageSharp } from './FilterVintageSharp'; -export { default as FilterVintageTwoTone } from './FilterVintageTwoTone'; -export { default as FindInPage } from './FindInPage'; -export { default as FindInPageOutlined } from './FindInPageOutlined'; -export { default as FindInPageRounded } from './FindInPageRounded'; -export { default as FindInPageSharp } from './FindInPageSharp'; -export { default as FindInPageTwoTone } from './FindInPageTwoTone'; -export { default as FindReplace } from './FindReplace'; -export { default as FindReplaceOutlined } from './FindReplaceOutlined'; -export { default as FindReplaceRounded } from './FindReplaceRounded'; -export { default as FindReplaceSharp } from './FindReplaceSharp'; -export { default as FindReplaceTwoTone } from './FindReplaceTwoTone'; -export { default as Fingerprint } from './Fingerprint'; -export { default as FingerprintOutlined } from './FingerprintOutlined'; -export { default as FingerprintRounded } from './FingerprintRounded'; -export { default as FingerprintSharp } from './FingerprintSharp'; -export { default as FingerprintTwoTone } from './FingerprintTwoTone'; -export { default as FireExtinguisher } from './FireExtinguisher'; -export { default as FireExtinguisherOutlined } from './FireExtinguisherOutlined'; -export { default as FireExtinguisherRounded } from './FireExtinguisherRounded'; -export { default as FireExtinguisherSharp } from './FireExtinguisherSharp'; -export { default as FireExtinguisherTwoTone } from './FireExtinguisherTwoTone'; -export { default as Fireplace } from './Fireplace'; -export { default as FireplaceOutlined } from './FireplaceOutlined'; -export { default as FireplaceRounded } from './FireplaceRounded'; -export { default as FireplaceSharp } from './FireplaceSharp'; -export { default as FireplaceTwoTone } from './FireplaceTwoTone'; -export { default as FirstPage } from './FirstPage'; -export { default as FirstPageOutlined } from './FirstPageOutlined'; -export { default as FirstPageRounded } from './FirstPageRounded'; -export { default as FirstPageSharp } from './FirstPageSharp'; -export { default as FirstPageTwoTone } from './FirstPageTwoTone'; -export { default as FitScreen } from './FitScreen'; -export { default as FitScreenOutlined } from './FitScreenOutlined'; -export { default as FitScreenRounded } from './FitScreenRounded'; -export { default as FitScreenSharp } from './FitScreenSharp'; -export { default as FitScreenTwoTone } from './FitScreenTwoTone'; -export { default as FitnessCenter } from './FitnessCenter'; -export { default as FitnessCenterOutlined } from './FitnessCenterOutlined'; -export { default as FitnessCenterRounded } from './FitnessCenterRounded'; -export { default as FitnessCenterSharp } from './FitnessCenterSharp'; -export { default as FitnessCenterTwoTone } from './FitnessCenterTwoTone'; -export { default as FiveG } from './FiveG'; -export { default as FiveGOutlined } from './FiveGOutlined'; -export { default as FiveGRounded } from './FiveGRounded'; -export { default as FiveGSharp } from './FiveGSharp'; -export { default as FiveGTwoTone } from './FiveGTwoTone'; -export { default as FiveK } from './FiveK'; -export { default as FiveKOutlined } from './FiveKOutlined'; -export { default as FiveKPlus } from './FiveKPlus'; -export { default as FiveKPlusOutlined } from './FiveKPlusOutlined'; -export { default as FiveKPlusRounded } from './FiveKPlusRounded'; -export { default as FiveKPlusSharp } from './FiveKPlusSharp'; -export { default as FiveKPlusTwoTone } from './FiveKPlusTwoTone'; -export { default as FiveKRounded } from './FiveKRounded'; -export { default as FiveKSharp } from './FiveKSharp'; -export { default as FiveKTwoTone } from './FiveKTwoTone'; -export { default as FiveMp } from './FiveMp'; -export { default as FiveMpOutlined } from './FiveMpOutlined'; -export { default as FiveMpRounded } from './FiveMpRounded'; -export { default as FiveMpSharp } from './FiveMpSharp'; -export { default as FiveMpTwoTone } from './FiveMpTwoTone'; -export { default as FivteenMp } from './FivteenMp'; -export { default as FivteenMpOutlined } from './FivteenMpOutlined'; -export { default as FivteenMpRounded } from './FivteenMpRounded'; -export { default as FivteenMpSharp } from './FivteenMpSharp'; -export { default as FivteenMpTwoTone } from './FivteenMpTwoTone'; -export { default as Flag } from './Flag'; -export { default as FlagOutlined } from './FlagOutlined'; -export { default as FlagRounded } from './FlagRounded'; -export { default as FlagSharp } from './FlagSharp'; -export { default as FlagTwoTone } from './FlagTwoTone'; -export { default as Flaky } from './Flaky'; -export { default as FlakyOutlined } from './FlakyOutlined'; -export { default as FlakyRounded } from './FlakyRounded'; -export { default as FlakySharp } from './FlakySharp'; -export { default as FlakyTwoTone } from './FlakyTwoTone'; -export { default as Flare } from './Flare'; -export { default as FlareOutlined } from './FlareOutlined'; -export { default as FlareRounded } from './FlareRounded'; -export { default as FlareSharp } from './FlareSharp'; -export { default as FlareTwoTone } from './FlareTwoTone'; -export { default as FlashAuto } from './FlashAuto'; -export { default as FlashAutoOutlined } from './FlashAutoOutlined'; -export { default as FlashAutoRounded } from './FlashAutoRounded'; -export { default as FlashAutoSharp } from './FlashAutoSharp'; -export { default as FlashAutoTwoTone } from './FlashAutoTwoTone'; -export { default as FlashOff } from './FlashOff'; -export { default as FlashOffOutlined } from './FlashOffOutlined'; -export { default as FlashOffRounded } from './FlashOffRounded'; -export { default as FlashOffSharp } from './FlashOffSharp'; -export { default as FlashOffTwoTone } from './FlashOffTwoTone'; -export { default as FlashOn } from './FlashOn'; -export { default as FlashOnOutlined } from './FlashOnOutlined'; -export { default as FlashOnRounded } from './FlashOnRounded'; -export { default as FlashOnSharp } from './FlashOnSharp'; -export { default as FlashOnTwoTone } from './FlashOnTwoTone'; -export { default as FlashlightOff } from './FlashlightOff'; -export { default as FlashlightOffOutlined } from './FlashlightOffOutlined'; -export { default as FlashlightOffRounded } from './FlashlightOffRounded'; -export { default as FlashlightOffSharp } from './FlashlightOffSharp'; -export { default as FlashlightOffTwoTone } from './FlashlightOffTwoTone'; -export { default as FlashlightOn } from './FlashlightOn'; -export { default as FlashlightOnOutlined } from './FlashlightOnOutlined'; -export { default as FlashlightOnRounded } from './FlashlightOnRounded'; -export { default as FlashlightOnSharp } from './FlashlightOnSharp'; -export { default as FlashlightOnTwoTone } from './FlashlightOnTwoTone'; -export { default as Flatware } from './Flatware'; -export { default as FlatwareOutlined } from './FlatwareOutlined'; -export { default as FlatwareRounded } from './FlatwareRounded'; -export { default as FlatwareSharp } from './FlatwareSharp'; -export { default as FlatwareTwoTone } from './FlatwareTwoTone'; -export { default as Flight } from './Flight'; -export { default as FlightLand } from './FlightLand'; -export { default as FlightLandOutlined } from './FlightLandOutlined'; -export { default as FlightLandRounded } from './FlightLandRounded'; -export { default as FlightLandSharp } from './FlightLandSharp'; -export { default as FlightLandTwoTone } from './FlightLandTwoTone'; -export { default as FlightOutlined } from './FlightOutlined'; -export { default as FlightRounded } from './FlightRounded'; -export { default as FlightSharp } from './FlightSharp'; -export { default as FlightTakeoff } from './FlightTakeoff'; -export { default as FlightTakeoffOutlined } from './FlightTakeoffOutlined'; -export { default as FlightTakeoffRounded } from './FlightTakeoffRounded'; -export { default as FlightTakeoffSharp } from './FlightTakeoffSharp'; -export { default as FlightTakeoffTwoTone } from './FlightTakeoffTwoTone'; -export { default as FlightTwoTone } from './FlightTwoTone'; -export { default as Flip } from './Flip'; -export { default as FlipCameraAndroid } from './FlipCameraAndroid'; -export { default as FlipCameraAndroidOutlined } from './FlipCameraAndroidOutlined'; -export { default as FlipCameraAndroidRounded } from './FlipCameraAndroidRounded'; -export { default as FlipCameraAndroidSharp } from './FlipCameraAndroidSharp'; -export { default as FlipCameraAndroidTwoTone } from './FlipCameraAndroidTwoTone'; -export { default as FlipCameraIos } from './FlipCameraIos'; -export { default as FlipCameraIosOutlined } from './FlipCameraIosOutlined'; -export { default as FlipCameraIosRounded } from './FlipCameraIosRounded'; -export { default as FlipCameraIosSharp } from './FlipCameraIosSharp'; -export { default as FlipCameraIosTwoTone } from './FlipCameraIosTwoTone'; -export { default as FlipOutlined } from './FlipOutlined'; -export { default as FlipRounded } from './FlipRounded'; -export { default as FlipSharp } from './FlipSharp'; -export { default as FlipToBack } from './FlipToBack'; -export { default as FlipToBackOutlined } from './FlipToBackOutlined'; -export { default as FlipToBackRounded } from './FlipToBackRounded'; -export { default as FlipToBackSharp } from './FlipToBackSharp'; -export { default as FlipToBackTwoTone } from './FlipToBackTwoTone'; -export { default as FlipToFront } from './FlipToFront'; -export { default as FlipToFrontOutlined } from './FlipToFrontOutlined'; -export { default as FlipToFrontRounded } from './FlipToFrontRounded'; -export { default as FlipToFrontSharp } from './FlipToFrontSharp'; -export { default as FlipToFrontTwoTone } from './FlipToFrontTwoTone'; -export { default as FlipTwoTone } from './FlipTwoTone'; -export { default as Flourescent } from './Flourescent'; -export { default as FlourescentOutlined } from './FlourescentOutlined'; -export { default as FlourescentRounded } from './FlourescentRounded'; -export { default as FlourescentSharp } from './FlourescentSharp'; -export { default as FlourescentTwoTone } from './FlourescentTwoTone'; -export { default as FlutterDash } from './FlutterDash'; -export { default as FlutterDashOutlined } from './FlutterDashOutlined'; -export { default as FlutterDashRounded } from './FlutterDashRounded'; -export { default as FlutterDashSharp } from './FlutterDashSharp'; -export { default as FlutterDashTwoTone } from './FlutterDashTwoTone'; -export { default as FmdBad } from './FmdBad'; -export { default as FmdBadOutlined } from './FmdBadOutlined'; -export { default as FmdBadRounded } from './FmdBadRounded'; -export { default as FmdBadSharp } from './FmdBadSharp'; -export { default as FmdBadTwoTone } from './FmdBadTwoTone'; -export { default as FmdGood } from './FmdGood'; -export { default as FmdGoodOutlined } from './FmdGoodOutlined'; -export { default as FmdGoodRounded } from './FmdGoodRounded'; -export { default as FmdGoodSharp } from './FmdGoodSharp'; -export { default as FmdGoodTwoTone } from './FmdGoodTwoTone'; -export { default as Folder } from './Folder'; -export { default as FolderOpen } from './FolderOpen'; -export { default as FolderOpenOutlined } from './FolderOpenOutlined'; -export { default as FolderOpenRounded } from './FolderOpenRounded'; -export { default as FolderOpenSharp } from './FolderOpenSharp'; -export { default as FolderOpenTwoTone } from './FolderOpenTwoTone'; -export { default as FolderOutlined } from './FolderOutlined'; -export { default as FolderRounded } from './FolderRounded'; -export { default as FolderShared } from './FolderShared'; -export { default as FolderSharedOutlined } from './FolderSharedOutlined'; -export { default as FolderSharedRounded } from './FolderSharedRounded'; -export { default as FolderSharedSharp } from './FolderSharedSharp'; -export { default as FolderSharedTwoTone } from './FolderSharedTwoTone'; -export { default as FolderSharp } from './FolderSharp'; -export { default as FolderSpecial } from './FolderSpecial'; -export { default as FolderSpecialOutlined } from './FolderSpecialOutlined'; -export { default as FolderSpecialRounded } from './FolderSpecialRounded'; -export { default as FolderSpecialSharp } from './FolderSpecialSharp'; -export { default as FolderSpecialTwoTone } from './FolderSpecialTwoTone'; -export { default as FolderTwoTone } from './FolderTwoTone'; -export { default as FollowTheSigns } from './FollowTheSigns'; -export { default as FollowTheSignsOutlined } from './FollowTheSignsOutlined'; -export { default as FollowTheSignsRounded } from './FollowTheSignsRounded'; -export { default as FollowTheSignsSharp } from './FollowTheSignsSharp'; -export { default as FollowTheSignsTwoTone } from './FollowTheSignsTwoTone'; -export { default as FontDownload } from './FontDownload'; -export { default as FontDownloadOff } from './FontDownloadOff'; -export { default as FontDownloadOffOutlined } from './FontDownloadOffOutlined'; -export { default as FontDownloadOffRounded } from './FontDownloadOffRounded'; -export { default as FontDownloadOffSharp } from './FontDownloadOffSharp'; -export { default as FontDownloadOffTwoTone } from './FontDownloadOffTwoTone'; -export { default as FontDownloadOutlined } from './FontDownloadOutlined'; -export { default as FontDownloadRounded } from './FontDownloadRounded'; -export { default as FontDownloadSharp } from './FontDownloadSharp'; -export { default as FontDownloadTwoTone } from './FontDownloadTwoTone'; -export { default as FoodBank } from './FoodBank'; -export { default as FoodBankOutlined } from './FoodBankOutlined'; -export { default as FoodBankRounded } from './FoodBankRounded'; -export { default as FoodBankSharp } from './FoodBankSharp'; -export { default as FoodBankTwoTone } from './FoodBankTwoTone'; -export { default as FormatAlignCenter } from './FormatAlignCenter'; -export { default as FormatAlignCenterOutlined } from './FormatAlignCenterOutlined'; -export { default as FormatAlignCenterRounded } from './FormatAlignCenterRounded'; -export { default as FormatAlignCenterSharp } from './FormatAlignCenterSharp'; -export { default as FormatAlignCenterTwoTone } from './FormatAlignCenterTwoTone'; -export { default as FormatAlignJustify } from './FormatAlignJustify'; -export { default as FormatAlignJustifyOutlined } from './FormatAlignJustifyOutlined'; -export { default as FormatAlignJustifyRounded } from './FormatAlignJustifyRounded'; -export { default as FormatAlignJustifySharp } from './FormatAlignJustifySharp'; -export { default as FormatAlignJustifyTwoTone } from './FormatAlignJustifyTwoTone'; -export { default as FormatAlignLeft } from './FormatAlignLeft'; -export { default as FormatAlignLeftOutlined } from './FormatAlignLeftOutlined'; -export { default as FormatAlignLeftRounded } from './FormatAlignLeftRounded'; -export { default as FormatAlignLeftSharp } from './FormatAlignLeftSharp'; -export { default as FormatAlignLeftTwoTone } from './FormatAlignLeftTwoTone'; -export { default as FormatAlignRight } from './FormatAlignRight'; -export { default as FormatAlignRightOutlined } from './FormatAlignRightOutlined'; -export { default as FormatAlignRightRounded } from './FormatAlignRightRounded'; -export { default as FormatAlignRightSharp } from './FormatAlignRightSharp'; -export { default as FormatAlignRightTwoTone } from './FormatAlignRightTwoTone'; -export { default as FormatBold } from './FormatBold'; -export { default as FormatBoldOutlined } from './FormatBoldOutlined'; -export { default as FormatBoldRounded } from './FormatBoldRounded'; -export { default as FormatBoldSharp } from './FormatBoldSharp'; -export { default as FormatBoldTwoTone } from './FormatBoldTwoTone'; -export { default as FormatClear } from './FormatClear'; -export { default as FormatClearOutlined } from './FormatClearOutlined'; -export { default as FormatClearRounded } from './FormatClearRounded'; -export { default as FormatClearSharp } from './FormatClearSharp'; -export { default as FormatClearTwoTone } from './FormatClearTwoTone'; -export { default as FormatColorFill } from './FormatColorFill'; -export { default as FormatColorFillOutlined } from './FormatColorFillOutlined'; -export { default as FormatColorFillRounded } from './FormatColorFillRounded'; -export { default as FormatColorFillSharp } from './FormatColorFillSharp'; -export { default as FormatColorFillTwoTone } from './FormatColorFillTwoTone'; -export { default as FormatColorReset } from './FormatColorReset'; -export { default as FormatColorResetOutlined } from './FormatColorResetOutlined'; -export { default as FormatColorResetRounded } from './FormatColorResetRounded'; -export { default as FormatColorResetSharp } from './FormatColorResetSharp'; -export { default as FormatColorResetTwoTone } from './FormatColorResetTwoTone'; -export { default as FormatColorText } from './FormatColorText'; -export { default as FormatColorTextOutlined } from './FormatColorTextOutlined'; -export { default as FormatColorTextRounded } from './FormatColorTextRounded'; -export { default as FormatColorTextSharp } from './FormatColorTextSharp'; -export { default as FormatColorTextTwoTone } from './FormatColorTextTwoTone'; -export { default as FormatIndentDecrease } from './FormatIndentDecrease'; -export { default as FormatIndentDecreaseOutlined } from './FormatIndentDecreaseOutlined'; -export { default as FormatIndentDecreaseRounded } from './FormatIndentDecreaseRounded'; -export { default as FormatIndentDecreaseSharp } from './FormatIndentDecreaseSharp'; -export { default as FormatIndentDecreaseTwoTone } from './FormatIndentDecreaseTwoTone'; -export { default as FormatIndentIncrease } from './FormatIndentIncrease'; -export { default as FormatIndentIncreaseOutlined } from './FormatIndentIncreaseOutlined'; -export { default as FormatIndentIncreaseRounded } from './FormatIndentIncreaseRounded'; -export { default as FormatIndentIncreaseSharp } from './FormatIndentIncreaseSharp'; -export { default as FormatIndentIncreaseTwoTone } from './FormatIndentIncreaseTwoTone'; -export { default as FormatItalic } from './FormatItalic'; -export { default as FormatItalicOutlined } from './FormatItalicOutlined'; -export { default as FormatItalicRounded } from './FormatItalicRounded'; -export { default as FormatItalicSharp } from './FormatItalicSharp'; -export { default as FormatItalicTwoTone } from './FormatItalicTwoTone'; -export { default as FormatLineSpacing } from './FormatLineSpacing'; -export { default as FormatLineSpacingOutlined } from './FormatLineSpacingOutlined'; -export { default as FormatLineSpacingRounded } from './FormatLineSpacingRounded'; -export { default as FormatLineSpacingSharp } from './FormatLineSpacingSharp'; -export { default as FormatLineSpacingTwoTone } from './FormatLineSpacingTwoTone'; -export { default as FormatListBulleted } from './FormatListBulleted'; -export { default as FormatListBulletedOutlined } from './FormatListBulletedOutlined'; -export { default as FormatListBulletedRounded } from './FormatListBulletedRounded'; -export { default as FormatListBulletedSharp } from './FormatListBulletedSharp'; -export { default as FormatListBulletedTwoTone } from './FormatListBulletedTwoTone'; -export { default as FormatListNumbered } from './FormatListNumbered'; -export { default as FormatListNumberedOutlined } from './FormatListNumberedOutlined'; -export { default as FormatListNumberedRounded } from './FormatListNumberedRounded'; -export { default as FormatListNumberedRtl } from './FormatListNumberedRtl'; -export { default as FormatListNumberedRtlOutlined } from './FormatListNumberedRtlOutlined'; -export { default as FormatListNumberedRtlRounded } from './FormatListNumberedRtlRounded'; -export { default as FormatListNumberedRtlSharp } from './FormatListNumberedRtlSharp'; -export { default as FormatListNumberedRtlTwoTone } from './FormatListNumberedRtlTwoTone'; -export { default as FormatListNumberedSharp } from './FormatListNumberedSharp'; -export { default as FormatListNumberedTwoTone } from './FormatListNumberedTwoTone'; -export { default as FormatPaint } from './FormatPaint'; -export { default as FormatPaintOutlined } from './FormatPaintOutlined'; -export { default as FormatPaintRounded } from './FormatPaintRounded'; -export { default as FormatPaintSharp } from './FormatPaintSharp'; -export { default as FormatPaintTwoTone } from './FormatPaintTwoTone'; -export { default as FormatQuote } from './FormatQuote'; -export { default as FormatQuoteOutlined } from './FormatQuoteOutlined'; -export { default as FormatQuoteRounded } from './FormatQuoteRounded'; -export { default as FormatQuoteSharp } from './FormatQuoteSharp'; -export { default as FormatQuoteTwoTone } from './FormatQuoteTwoTone'; -export { default as FormatShapes } from './FormatShapes'; -export { default as FormatShapesOutlined } from './FormatShapesOutlined'; -export { default as FormatShapesRounded } from './FormatShapesRounded'; -export { default as FormatShapesSharp } from './FormatShapesSharp'; -export { default as FormatShapesTwoTone } from './FormatShapesTwoTone'; -export { default as FormatSize } from './FormatSize'; -export { default as FormatSizeOutlined } from './FormatSizeOutlined'; -export { default as FormatSizeRounded } from './FormatSizeRounded'; -export { default as FormatSizeSharp } from './FormatSizeSharp'; -export { default as FormatSizeTwoTone } from './FormatSizeTwoTone'; -export { default as FormatStrikethrough } from './FormatStrikethrough'; -export { default as FormatStrikethroughOutlined } from './FormatStrikethroughOutlined'; -export { default as FormatStrikethroughRounded } from './FormatStrikethroughRounded'; -export { default as FormatStrikethroughSharp } from './FormatStrikethroughSharp'; -export { default as FormatStrikethroughTwoTone } from './FormatStrikethroughTwoTone'; -export { default as FormatTextdirectionLToR } from './FormatTextdirectionLToR'; -export { default as FormatTextdirectionLToROutlined } from './FormatTextdirectionLToROutlined'; -export { default as FormatTextdirectionLToRRounded } from './FormatTextdirectionLToRRounded'; -export { default as FormatTextdirectionLToRSharp } from './FormatTextdirectionLToRSharp'; -export { default as FormatTextdirectionLToRTwoTone } from './FormatTextdirectionLToRTwoTone'; -export { default as FormatTextdirectionRToL } from './FormatTextdirectionRToL'; -export { default as FormatTextdirectionRToLOutlined } from './FormatTextdirectionRToLOutlined'; -export { default as FormatTextdirectionRToLRounded } from './FormatTextdirectionRToLRounded'; -export { default as FormatTextdirectionRToLSharp } from './FormatTextdirectionRToLSharp'; -export { default as FormatTextdirectionRToLTwoTone } from './FormatTextdirectionRToLTwoTone'; -export { default as FormatUnderlined } from './FormatUnderlined'; -export { default as FormatUnderlinedOutlined } from './FormatUnderlinedOutlined'; -export { default as FormatUnderlinedRounded } from './FormatUnderlinedRounded'; -export { default as FormatUnderlinedSharp } from './FormatUnderlinedSharp'; -export { default as FormatUnderlinedTwoTone } from './FormatUnderlinedTwoTone'; -export { default as Forum } from './Forum'; -export { default as ForumOutlined } from './ForumOutlined'; -export { default as ForumRounded } from './ForumRounded'; -export { default as ForumSharp } from './ForumSharp'; -export { default as ForumTwoTone } from './ForumTwoTone'; -export { default as Forward } from './Forward'; -export { default as Forward10 } from './Forward10'; -export { default as Forward10Outlined } from './Forward10Outlined'; -export { default as Forward10Rounded } from './Forward10Rounded'; -export { default as Forward10Sharp } from './Forward10Sharp'; -export { default as Forward10TwoTone } from './Forward10TwoTone'; -export { default as Forward30 } from './Forward30'; -export { default as Forward30Outlined } from './Forward30Outlined'; -export { default as Forward30Rounded } from './Forward30Rounded'; -export { default as Forward30Sharp } from './Forward30Sharp'; -export { default as Forward30TwoTone } from './Forward30TwoTone'; -export { default as Forward5 } from './Forward5'; -export { default as Forward5Outlined } from './Forward5Outlined'; -export { default as Forward5Rounded } from './Forward5Rounded'; -export { default as Forward5Sharp } from './Forward5Sharp'; -export { default as Forward5TwoTone } from './Forward5TwoTone'; -export { default as ForwardOutlined } from './ForwardOutlined'; -export { default as ForwardRounded } from './ForwardRounded'; -export { default as ForwardSharp } from './ForwardSharp'; -export { default as ForwardToInbox } from './ForwardToInbox'; -export { default as ForwardToInboxOutlined } from './ForwardToInboxOutlined'; -export { default as ForwardToInboxRounded } from './ForwardToInboxRounded'; -export { default as ForwardToInboxSharp } from './ForwardToInboxSharp'; -export { default as ForwardToInboxTwoTone } from './ForwardToInboxTwoTone'; -export { default as ForwardTwoTone } from './ForwardTwoTone'; -export { default as Foundation } from './Foundation'; -export { default as FoundationOutlined } from './FoundationOutlined'; -export { default as FoundationRounded } from './FoundationRounded'; -export { default as FoundationSharp } from './FoundationSharp'; -export { default as FoundationTwoTone } from './FoundationTwoTone'; -export { default as FourGMobiledata } from './FourGMobiledata'; -export { default as FourGMobiledataOutlined } from './FourGMobiledataOutlined'; -export { default as FourGMobiledataRounded } from './FourGMobiledataRounded'; -export { default as FourGMobiledataSharp } from './FourGMobiledataSharp'; -export { default as FourGMobiledataTwoTone } from './FourGMobiledataTwoTone'; -export { default as FourGPlusMobiledata } from './FourGPlusMobiledata'; -export { default as FourGPlusMobiledataOutlined } from './FourGPlusMobiledataOutlined'; -export { default as FourGPlusMobiledataRounded } from './FourGPlusMobiledataRounded'; -export { default as FourGPlusMobiledataSharp } from './FourGPlusMobiledataSharp'; -export { default as FourGPlusMobiledataTwoTone } from './FourGPlusMobiledataTwoTone'; -export { default as FourK } from './FourK'; -export { default as FourKOutlined } from './FourKOutlined'; -export { default as FourKPlus } from './FourKPlus'; -export { default as FourKPlusOutlined } from './FourKPlusOutlined'; -export { default as FourKPlusRounded } from './FourKPlusRounded'; -export { default as FourKPlusSharp } from './FourKPlusSharp'; -export { default as FourKPlusTwoTone } from './FourKPlusTwoTone'; -export { default as FourKRounded } from './FourKRounded'; -export { default as FourKSharp } from './FourKSharp'; -export { default as FourKTwoTone } from './FourKTwoTone'; -export { default as FourMp } from './FourMp'; -export { default as FourMpOutlined } from './FourMpOutlined'; -export { default as FourMpRounded } from './FourMpRounded'; -export { default as FourMpSharp } from './FourMpSharp'; -export { default as FourMpTwoTone } from './FourMpTwoTone'; -export { default as FourteenMp } from './FourteenMp'; -export { default as FourteenMpOutlined } from './FourteenMpOutlined'; -export { default as FourteenMpRounded } from './FourteenMpRounded'; -export { default as FourteenMpSharp } from './FourteenMpSharp'; -export { default as FourteenMpTwoTone } from './FourteenMpTwoTone'; -export { default as FreeBreakfast } from './FreeBreakfast'; -export { default as FreeBreakfastOutlined } from './FreeBreakfastOutlined'; -export { default as FreeBreakfastRounded } from './FreeBreakfastRounded'; -export { default as FreeBreakfastSharp } from './FreeBreakfastSharp'; -export { default as FreeBreakfastTwoTone } from './FreeBreakfastTwoTone'; -export { default as Fullscreen } from './Fullscreen'; -export { default as FullscreenExit } from './FullscreenExit'; -export { default as FullscreenExitOutlined } from './FullscreenExitOutlined'; -export { default as FullscreenExitRounded } from './FullscreenExitRounded'; -export { default as FullscreenExitSharp } from './FullscreenExitSharp'; -export { default as FullscreenExitTwoTone } from './FullscreenExitTwoTone'; -export { default as FullscreenOutlined } from './FullscreenOutlined'; -export { default as FullscreenRounded } from './FullscreenRounded'; -export { default as FullscreenSharp } from './FullscreenSharp'; -export { default as FullscreenTwoTone } from './FullscreenTwoTone'; -export { default as Functions } from './Functions'; -export { default as FunctionsOutlined } from './FunctionsOutlined'; -export { default as FunctionsRounded } from './FunctionsRounded'; -export { default as FunctionsSharp } from './FunctionsSharp'; -export { default as FunctionsTwoTone } from './FunctionsTwoTone'; -export { default as GMobiledata } from './GMobiledata'; -export { default as GMobiledataOutlined } from './GMobiledataOutlined'; -export { default as GMobiledataRounded } from './GMobiledataRounded'; -export { default as GMobiledataSharp } from './GMobiledataSharp'; -export { default as GMobiledataTwoTone } from './GMobiledataTwoTone'; -export { default as GTranslate } from './GTranslate'; -export { default as GTranslateOutlined } from './GTranslateOutlined'; -export { default as GTranslateRounded } from './GTranslateRounded'; -export { default as GTranslateSharp } from './GTranslateSharp'; -export { default as GTranslateTwoTone } from './GTranslateTwoTone'; -export { default as Gamepad } from './Gamepad'; -export { default as GamepadOutlined } from './GamepadOutlined'; -export { default as GamepadRounded } from './GamepadRounded'; -export { default as GamepadSharp } from './GamepadSharp'; -export { default as GamepadTwoTone } from './GamepadTwoTone'; -export { default as Games } from './Games'; -export { default as GamesOutlined } from './GamesOutlined'; -export { default as GamesRounded } from './GamesRounded'; -export { default as GamesSharp } from './GamesSharp'; -export { default as GamesTwoTone } from './GamesTwoTone'; -export { default as Garage } from './Garage'; -export { default as GarageOutlined } from './GarageOutlined'; -export { default as GarageRounded } from './GarageRounded'; -export { default as GarageSharp } from './GarageSharp'; -export { default as GarageTwoTone } from './GarageTwoTone'; -export { default as Gavel } from './Gavel'; -export { default as GavelOutlined } from './GavelOutlined'; -export { default as GavelRounded } from './GavelRounded'; -export { default as GavelSharp } from './GavelSharp'; -export { default as GavelTwoTone } from './GavelTwoTone'; -export { default as Gesture } from './Gesture'; -export { default as GestureOutlined } from './GestureOutlined'; -export { default as GestureRounded } from './GestureRounded'; -export { default as GestureSharp } from './GestureSharp'; -export { default as GestureTwoTone } from './GestureTwoTone'; -export { default as GetApp } from './GetApp'; -export { default as GetAppOutlined } from './GetAppOutlined'; -export { default as GetAppRounded } from './GetAppRounded'; -export { default as GetAppSharp } from './GetAppSharp'; -export { default as GetAppTwoTone } from './GetAppTwoTone'; -export { default as Gif } from './Gif'; -export { default as GifOutlined } from './GifOutlined'; -export { default as GifRounded } from './GifRounded'; -export { default as GifSharp } from './GifSharp'; -export { default as GifTwoTone } from './GifTwoTone'; -export { default as GitHub } from './GitHub'; -export { default as Gite } from './Gite'; -export { default as GiteOutlined } from './GiteOutlined'; -export { default as GiteRounded } from './GiteRounded'; -export { default as GiteSharp } from './GiteSharp'; -export { default as GiteTwoTone } from './GiteTwoTone'; -export { default as GolfCourse } from './GolfCourse'; -export { default as GolfCourseOutlined } from './GolfCourseOutlined'; -export { default as GolfCourseRounded } from './GolfCourseRounded'; -export { default as GolfCourseSharp } from './GolfCourseSharp'; -export { default as GolfCourseTwoTone } from './GolfCourseTwoTone'; -export { default as Google } from './Google'; -export { default as GppBad } from './GppBad'; -export { default as GppBadOutlined } from './GppBadOutlined'; -export { default as GppBadRounded } from './GppBadRounded'; -export { default as GppBadSharp } from './GppBadSharp'; -export { default as GppBadTwoTone } from './GppBadTwoTone'; -export { default as GppGood } from './GppGood'; -export { default as GppGoodOutlined } from './GppGoodOutlined'; -export { default as GppGoodRounded } from './GppGoodRounded'; -export { default as GppGoodSharp } from './GppGoodSharp'; -export { default as GppGoodTwoTone } from './GppGoodTwoTone'; -export { default as GppMaybe } from './GppMaybe'; -export { default as GppMaybeOutlined } from './GppMaybeOutlined'; -export { default as GppMaybeRounded } from './GppMaybeRounded'; -export { default as GppMaybeSharp } from './GppMaybeSharp'; -export { default as GppMaybeTwoTone } from './GppMaybeTwoTone'; -export { default as GpsFixed } from './GpsFixed'; -export { default as GpsFixedOutlined } from './GpsFixedOutlined'; -export { default as GpsFixedRounded } from './GpsFixedRounded'; -export { default as GpsFixedSharp } from './GpsFixedSharp'; -export { default as GpsFixedTwoTone } from './GpsFixedTwoTone'; -export { default as GpsNotFixed } from './GpsNotFixed'; -export { default as GpsNotFixedOutlined } from './GpsNotFixedOutlined'; -export { default as GpsNotFixedRounded } from './GpsNotFixedRounded'; -export { default as GpsNotFixedSharp } from './GpsNotFixedSharp'; -export { default as GpsNotFixedTwoTone } from './GpsNotFixedTwoTone'; -export { default as GpsOff } from './GpsOff'; -export { default as GpsOffOutlined } from './GpsOffOutlined'; -export { default as GpsOffRounded } from './GpsOffRounded'; -export { default as GpsOffSharp } from './GpsOffSharp'; -export { default as GpsOffTwoTone } from './GpsOffTwoTone'; -export { default as Grade } from './Grade'; -export { default as GradeOutlined } from './GradeOutlined'; -export { default as GradeRounded } from './GradeRounded'; -export { default as GradeSharp } from './GradeSharp'; -export { default as GradeTwoTone } from './GradeTwoTone'; -export { default as Gradient } from './Gradient'; -export { default as GradientOutlined } from './GradientOutlined'; -export { default as GradientRounded } from './GradientRounded'; -export { default as GradientSharp } from './GradientSharp'; -export { default as GradientTwoTone } from './GradientTwoTone'; -export { default as Grading } from './Grading'; -export { default as GradingOutlined } from './GradingOutlined'; -export { default as GradingRounded } from './GradingRounded'; -export { default as GradingSharp } from './GradingSharp'; -export { default as GradingTwoTone } from './GradingTwoTone'; -export { default as Grain } from './Grain'; -export { default as GrainOutlined } from './GrainOutlined'; -export { default as GrainRounded } from './GrainRounded'; -export { default as GrainSharp } from './GrainSharp'; -export { default as GrainTwoTone } from './GrainTwoTone'; -export { default as GraphicEq } from './GraphicEq'; -export { default as GraphicEqOutlined } from './GraphicEqOutlined'; -export { default as GraphicEqRounded } from './GraphicEqRounded'; -export { default as GraphicEqSharp } from './GraphicEqSharp'; -export { default as GraphicEqTwoTone } from './GraphicEqTwoTone'; -export { default as Grass } from './Grass'; -export { default as GrassOutlined } from './GrassOutlined'; -export { default as GrassRounded } from './GrassRounded'; -export { default as GrassSharp } from './GrassSharp'; -export { default as GrassTwoTone } from './GrassTwoTone'; -export { default as Grid3x3 } from './Grid3x3'; -export { default as Grid3x3Outlined } from './Grid3x3Outlined'; -export { default as Grid3x3Rounded } from './Grid3x3Rounded'; -export { default as Grid3x3Sharp } from './Grid3x3Sharp'; -export { default as Grid3x3TwoTone } from './Grid3x3TwoTone'; -export { default as Grid4x4 } from './Grid4x4'; -export { default as Grid4x4Outlined } from './Grid4x4Outlined'; -export { default as Grid4x4Rounded } from './Grid4x4Rounded'; -export { default as Grid4x4Sharp } from './Grid4x4Sharp'; -export { default as Grid4x4TwoTone } from './Grid4x4TwoTone'; -export { default as GridGoldenratio } from './GridGoldenratio'; -export { default as GridGoldenratioOutlined } from './GridGoldenratioOutlined'; -export { default as GridGoldenratioRounded } from './GridGoldenratioRounded'; -export { default as GridGoldenratioSharp } from './GridGoldenratioSharp'; -export { default as GridGoldenratioTwoTone } from './GridGoldenratioTwoTone'; -export { default as GridOff } from './GridOff'; -export { default as GridOffOutlined } from './GridOffOutlined'; -export { default as GridOffRounded } from './GridOffRounded'; -export { default as GridOffSharp } from './GridOffSharp'; -export { default as GridOffTwoTone } from './GridOffTwoTone'; -export { default as GridOn } from './GridOn'; -export { default as GridOnOutlined } from './GridOnOutlined'; -export { default as GridOnRounded } from './GridOnRounded'; -export { default as GridOnSharp } from './GridOnSharp'; -export { default as GridOnTwoTone } from './GridOnTwoTone'; -export { default as GridView } from './GridView'; -export { default as GridViewOutlined } from './GridViewOutlined'; -export { default as GridViewRounded } from './GridViewRounded'; -export { default as GridViewSharp } from './GridViewSharp'; -export { default as GridViewTwoTone } from './GridViewTwoTone'; -export { default as Group } from './Group'; -export { default as GroupAdd } from './GroupAdd'; -export { default as GroupAddOutlined } from './GroupAddOutlined'; -export { default as GroupAddRounded } from './GroupAddRounded'; -export { default as GroupAddSharp } from './GroupAddSharp'; -export { default as GroupAddTwoTone } from './GroupAddTwoTone'; -export { default as GroupOutlined } from './GroupOutlined'; -export { default as GroupRounded } from './GroupRounded'; -export { default as GroupSharp } from './GroupSharp'; -export { default as GroupTwoTone } from './GroupTwoTone'; -export { default as GroupWork } from './GroupWork'; -export { default as GroupWorkOutlined } from './GroupWorkOutlined'; -export { default as GroupWorkRounded } from './GroupWorkRounded'; -export { default as GroupWorkSharp } from './GroupWorkSharp'; -export { default as GroupWorkTwoTone } from './GroupWorkTwoTone'; -export { default as Groups } from './Groups'; -export { default as GroupsOutlined } from './GroupsOutlined'; -export { default as GroupsRounded } from './GroupsRounded'; -export { default as GroupsSharp } from './GroupsSharp'; -export { default as GroupsTwoTone } from './GroupsTwoTone'; -export { default as HMobiledata } from './HMobiledata'; -export { default as HMobiledataOutlined } from './HMobiledataOutlined'; -export { default as HMobiledataRounded } from './HMobiledataRounded'; -export { default as HMobiledataSharp } from './HMobiledataSharp'; -export { default as HMobiledataTwoTone } from './HMobiledataTwoTone'; -export { default as HPlusMobiledata } from './HPlusMobiledata'; -export { default as HPlusMobiledataOutlined } from './HPlusMobiledataOutlined'; -export { default as HPlusMobiledataRounded } from './HPlusMobiledataRounded'; -export { default as HPlusMobiledataSharp } from './HPlusMobiledataSharp'; -export { default as HPlusMobiledataTwoTone } from './HPlusMobiledataTwoTone'; -export { default as Hail } from './Hail'; -export { default as HailOutlined } from './HailOutlined'; -export { default as HailRounded } from './HailRounded'; -export { default as HailSharp } from './HailSharp'; -export { default as HailTwoTone } from './HailTwoTone'; -export { default as Handyman } from './Handyman'; -export { default as HandymanOutlined } from './HandymanOutlined'; -export { default as HandymanRounded } from './HandymanRounded'; -export { default as HandymanSharp } from './HandymanSharp'; -export { default as HandymanTwoTone } from './HandymanTwoTone'; -export { default as Hardware } from './Hardware'; -export { default as HardwareOutlined } from './HardwareOutlined'; -export { default as HardwareRounded } from './HardwareRounded'; -export { default as HardwareSharp } from './HardwareSharp'; -export { default as HardwareTwoTone } from './HardwareTwoTone'; -export { default as Hd } from './Hd'; -export { default as HdOutlined } from './HdOutlined'; -export { default as HdRounded } from './HdRounded'; -export { default as HdSharp } from './HdSharp'; -export { default as HdTwoTone } from './HdTwoTone'; -export { default as HdrAuto } from './HdrAuto'; -export { default as HdrAutoOutlined } from './HdrAutoOutlined'; -export { default as HdrAutoRounded } from './HdrAutoRounded'; -export { default as HdrAutoSelect } from './HdrAutoSelect'; -export { default as HdrAutoSelectOutlined } from './HdrAutoSelectOutlined'; -export { default as HdrAutoSelectRounded } from './HdrAutoSelectRounded'; -export { default as HdrAutoSelectSharp } from './HdrAutoSelectSharp'; -export { default as HdrAutoSelectTwoTone } from './HdrAutoSelectTwoTone'; -export { default as HdrAutoSharp } from './HdrAutoSharp'; -export { default as HdrAutoTwoTone } from './HdrAutoTwoTone'; -export { default as HdrEnhancedSelect } from './HdrEnhancedSelect'; -export { default as HdrEnhancedSelectOutlined } from './HdrEnhancedSelectOutlined'; -export { default as HdrEnhancedSelectRounded } from './HdrEnhancedSelectRounded'; -export { default as HdrEnhancedSelectSharp } from './HdrEnhancedSelectSharp'; -export { default as HdrEnhancedSelectTwoTone } from './HdrEnhancedSelectTwoTone'; -export { default as HdrOff } from './HdrOff'; -export { default as HdrOffOutlined } from './HdrOffOutlined'; -export { default as HdrOffRounded } from './HdrOffRounded'; -export { default as HdrOffSelect } from './HdrOffSelect'; -export { default as HdrOffSelectOutlined } from './HdrOffSelectOutlined'; -export { default as HdrOffSelectRounded } from './HdrOffSelectRounded'; -export { default as HdrOffSelectSharp } from './HdrOffSelectSharp'; -export { default as HdrOffSelectTwoTone } from './HdrOffSelectTwoTone'; -export { default as HdrOffSharp } from './HdrOffSharp'; -export { default as HdrOffTwoTone } from './HdrOffTwoTone'; -export { default as HdrOn } from './HdrOn'; -export { default as HdrOnOutlined } from './HdrOnOutlined'; -export { default as HdrOnRounded } from './HdrOnRounded'; -export { default as HdrOnSelect } from './HdrOnSelect'; -export { default as HdrOnSelectOutlined } from './HdrOnSelectOutlined'; -export { default as HdrOnSelectRounded } from './HdrOnSelectRounded'; -export { default as HdrOnSelectSharp } from './HdrOnSelectSharp'; -export { default as HdrOnSelectTwoTone } from './HdrOnSelectTwoTone'; -export { default as HdrOnSharp } from './HdrOnSharp'; -export { default as HdrOnTwoTone } from './HdrOnTwoTone'; -export { default as HdrPlus } from './HdrPlus'; -export { default as HdrPlusOutlined } from './HdrPlusOutlined'; -export { default as HdrPlusRounded } from './HdrPlusRounded'; -export { default as HdrPlusSharp } from './HdrPlusSharp'; -export { default as HdrPlusTwoTone } from './HdrPlusTwoTone'; -export { default as HdrStrong } from './HdrStrong'; -export { default as HdrStrongOutlined } from './HdrStrongOutlined'; -export { default as HdrStrongRounded } from './HdrStrongRounded'; -export { default as HdrStrongSharp } from './HdrStrongSharp'; -export { default as HdrStrongTwoTone } from './HdrStrongTwoTone'; -export { default as HdrWeak } from './HdrWeak'; -export { default as HdrWeakOutlined } from './HdrWeakOutlined'; -export { default as HdrWeakRounded } from './HdrWeakRounded'; -export { default as HdrWeakSharp } from './HdrWeakSharp'; -export { default as HdrWeakTwoTone } from './HdrWeakTwoTone'; -export { default as Headphones } from './Headphones'; -export { default as HeadphonesBattery } from './HeadphonesBattery'; -export { default as HeadphonesBatteryOutlined } from './HeadphonesBatteryOutlined'; -export { default as HeadphonesBatteryRounded } from './HeadphonesBatteryRounded'; -export { default as HeadphonesBatterySharp } from './HeadphonesBatterySharp'; -export { default as HeadphonesBatteryTwoTone } from './HeadphonesBatteryTwoTone'; -export { default as HeadphonesOutlined } from './HeadphonesOutlined'; -export { default as HeadphonesRounded } from './HeadphonesRounded'; -export { default as HeadphonesSharp } from './HeadphonesSharp'; -export { default as HeadphonesTwoTone } from './HeadphonesTwoTone'; -export { default as Headset } from './Headset'; -export { default as HeadsetMic } from './HeadsetMic'; -export { default as HeadsetMicOutlined } from './HeadsetMicOutlined'; -export { default as HeadsetMicRounded } from './HeadsetMicRounded'; -export { default as HeadsetMicSharp } from './HeadsetMicSharp'; -export { default as HeadsetMicTwoTone } from './HeadsetMicTwoTone'; -export { default as HeadsetOff } from './HeadsetOff'; -export { default as HeadsetOffOutlined } from './HeadsetOffOutlined'; -export { default as HeadsetOffRounded } from './HeadsetOffRounded'; -export { default as HeadsetOffSharp } from './HeadsetOffSharp'; -export { default as HeadsetOffTwoTone } from './HeadsetOffTwoTone'; -export { default as HeadsetOutlined } from './HeadsetOutlined'; -export { default as HeadsetRounded } from './HeadsetRounded'; -export { default as HeadsetSharp } from './HeadsetSharp'; -export { default as HeadsetTwoTone } from './HeadsetTwoTone'; -export { default as Healing } from './Healing'; -export { default as HealingOutlined } from './HealingOutlined'; -export { default as HealingRounded } from './HealingRounded'; -export { default as HealingSharp } from './HealingSharp'; -export { default as HealingTwoTone } from './HealingTwoTone'; -export { default as HealthAndSafety } from './HealthAndSafety'; -export { default as HealthAndSafetyOutlined } from './HealthAndSafetyOutlined'; -export { default as HealthAndSafetyRounded } from './HealthAndSafetyRounded'; -export { default as HealthAndSafetySharp } from './HealthAndSafetySharp'; -export { default as HealthAndSafetyTwoTone } from './HealthAndSafetyTwoTone'; -export { default as Hearing } from './Hearing'; -export { default as HearingDisabled } from './HearingDisabled'; -export { default as HearingDisabledOutlined } from './HearingDisabledOutlined'; -export { default as HearingDisabledRounded } from './HearingDisabledRounded'; -export { default as HearingDisabledSharp } from './HearingDisabledSharp'; -export { default as HearingDisabledTwoTone } from './HearingDisabledTwoTone'; -export { default as HearingOutlined } from './HearingOutlined'; -export { default as HearingRounded } from './HearingRounded'; -export { default as HearingSharp } from './HearingSharp'; -export { default as HearingTwoTone } from './HearingTwoTone'; -export { default as Height } from './Height'; -export { default as HeightOutlined } from './HeightOutlined'; -export { default as HeightRounded } from './HeightRounded'; -export { default as HeightSharp } from './HeightSharp'; -export { default as HeightTwoTone } from './HeightTwoTone'; -export { default as Help } from './Help'; -export { default as HelpCenter } from './HelpCenter'; -export { default as HelpCenterOutlined } from './HelpCenterOutlined'; -export { default as HelpCenterRounded } from './HelpCenterRounded'; -export { default as HelpCenterSharp } from './HelpCenterSharp'; -export { default as HelpCenterTwoTone } from './HelpCenterTwoTone'; -export { default as HelpOutline } from './HelpOutline'; -export { default as HelpOutlineOutlined } from './HelpOutlineOutlined'; -export { default as HelpOutlineRounded } from './HelpOutlineRounded'; -export { default as HelpOutlineSharp } from './HelpOutlineSharp'; -export { default as HelpOutlineTwoTone } from './HelpOutlineTwoTone'; -export { default as HelpOutlined } from './HelpOutlined'; -export { default as HelpRounded } from './HelpRounded'; -export { default as HelpSharp } from './HelpSharp'; -export { default as HelpTwoTone } from './HelpTwoTone'; -export { default as Hevc } from './Hevc'; -export { default as HevcOutlined } from './HevcOutlined'; -export { default as HevcRounded } from './HevcRounded'; -export { default as HevcSharp } from './HevcSharp'; -export { default as HevcTwoTone } from './HevcTwoTone'; -export { default as HideImage } from './HideImage'; -export { default as HideImageOutlined } from './HideImageOutlined'; -export { default as HideImageRounded } from './HideImageRounded'; -export { default as HideImageSharp } from './HideImageSharp'; -export { default as HideImageTwoTone } from './HideImageTwoTone'; -export { default as HideSource } from './HideSource'; -export { default as HideSourceOutlined } from './HideSourceOutlined'; -export { default as HideSourceRounded } from './HideSourceRounded'; -export { default as HideSourceSharp } from './HideSourceSharp'; -export { default as HideSourceTwoTone } from './HideSourceTwoTone'; -export { default as HighQuality } from './HighQuality'; -export { default as HighQualityOutlined } from './HighQualityOutlined'; -export { default as HighQualityRounded } from './HighQualityRounded'; -export { default as HighQualitySharp } from './HighQualitySharp'; -export { default as HighQualityTwoTone } from './HighQualityTwoTone'; -export { default as Highlight } from './Highlight'; -export { default as HighlightAlt } from './HighlightAlt'; -export { default as HighlightAltOutlined } from './HighlightAltOutlined'; -export { default as HighlightAltRounded } from './HighlightAltRounded'; -export { default as HighlightAltSharp } from './HighlightAltSharp'; -export { default as HighlightAltTwoTone } from './HighlightAltTwoTone'; -export { default as HighlightOff } from './HighlightOff'; -export { default as HighlightOffOutlined } from './HighlightOffOutlined'; -export { default as HighlightOffRounded } from './HighlightOffRounded'; -export { default as HighlightOffSharp } from './HighlightOffSharp'; -export { default as HighlightOffTwoTone } from './HighlightOffTwoTone'; -export { default as HighlightOutlined } from './HighlightOutlined'; -export { default as HighlightRounded } from './HighlightRounded'; -export { default as HighlightSharp } from './HighlightSharp'; -export { default as HighlightTwoTone } from './HighlightTwoTone'; -export { default as Hiking } from './Hiking'; -export { default as HikingOutlined } from './HikingOutlined'; -export { default as HikingRounded } from './HikingRounded'; -export { default as HikingSharp } from './HikingSharp'; -export { default as HikingTwoTone } from './HikingTwoTone'; -export { default as History } from './History'; -export { default as HistoryEdu } from './HistoryEdu'; -export { default as HistoryEduOutlined } from './HistoryEduOutlined'; -export { default as HistoryEduRounded } from './HistoryEduRounded'; -export { default as HistoryEduSharp } from './HistoryEduSharp'; -export { default as HistoryEduTwoTone } from './HistoryEduTwoTone'; -export { default as HistoryOutlined } from './HistoryOutlined'; -export { default as HistoryRounded } from './HistoryRounded'; -export { default as HistorySharp } from './HistorySharp'; -export { default as HistoryToggleOff } from './HistoryToggleOff'; -export { default as HistoryToggleOffOutlined } from './HistoryToggleOffOutlined'; -export { default as HistoryToggleOffRounded } from './HistoryToggleOffRounded'; -export { default as HistoryToggleOffSharp } from './HistoryToggleOffSharp'; -export { default as HistoryToggleOffTwoTone } from './HistoryToggleOffTwoTone'; -export { default as HistoryTwoTone } from './HistoryTwoTone'; -export { default as HolidayVillage } from './HolidayVillage'; -export { default as HolidayVillageOutlined } from './HolidayVillageOutlined'; -export { default as HolidayVillageRounded } from './HolidayVillageRounded'; -export { default as HolidayVillageSharp } from './HolidayVillageSharp'; -export { default as HolidayVillageTwoTone } from './HolidayVillageTwoTone'; -export { default as Home } from './Home'; -export { default as HomeMax } from './HomeMax'; -export { default as HomeMaxOutlined } from './HomeMaxOutlined'; -export { default as HomeMaxRounded } from './HomeMaxRounded'; -export { default as HomeMaxSharp } from './HomeMaxSharp'; -export { default as HomeMaxTwoTone } from './HomeMaxTwoTone'; -export { default as HomeMini } from './HomeMini'; -export { default as HomeMiniOutlined } from './HomeMiniOutlined'; -export { default as HomeMiniRounded } from './HomeMiniRounded'; -export { default as HomeMiniSharp } from './HomeMiniSharp'; -export { default as HomeMiniTwoTone } from './HomeMiniTwoTone'; -export { default as HomeOutlined } from './HomeOutlined'; -export { default as HomeRepairService } from './HomeRepairService'; -export { default as HomeRepairServiceOutlined } from './HomeRepairServiceOutlined'; -export { default as HomeRepairServiceRounded } from './HomeRepairServiceRounded'; -export { default as HomeRepairServiceSharp } from './HomeRepairServiceSharp'; -export { default as HomeRepairServiceTwoTone } from './HomeRepairServiceTwoTone'; -export { default as HomeRounded } from './HomeRounded'; -export { default as HomeSharp } from './HomeSharp'; -export { default as HomeTwoTone } from './HomeTwoTone'; -export { default as HomeWork } from './HomeWork'; -export { default as HomeWorkOutlined } from './HomeWorkOutlined'; -export { default as HomeWorkRounded } from './HomeWorkRounded'; -export { default as HomeWorkSharp } from './HomeWorkSharp'; -export { default as HomeWorkTwoTone } from './HomeWorkTwoTone'; -export { default as HorizontalRule } from './HorizontalRule'; -export { default as HorizontalRuleOutlined } from './HorizontalRuleOutlined'; -export { default as HorizontalRuleRounded } from './HorizontalRuleRounded'; -export { default as HorizontalRuleSharp } from './HorizontalRuleSharp'; -export { default as HorizontalRuleTwoTone } from './HorizontalRuleTwoTone'; -export { default as HorizontalSplit } from './HorizontalSplit'; -export { default as HorizontalSplitOutlined } from './HorizontalSplitOutlined'; -export { default as HorizontalSplitRounded } from './HorizontalSplitRounded'; -export { default as HorizontalSplitSharp } from './HorizontalSplitSharp'; -export { default as HorizontalSplitTwoTone } from './HorizontalSplitTwoTone'; -export { default as HotTub } from './HotTub'; -export { default as HotTubOutlined } from './HotTubOutlined'; -export { default as HotTubRounded } from './HotTubRounded'; -export { default as HotTubSharp } from './HotTubSharp'; -export { default as HotTubTwoTone } from './HotTubTwoTone'; -export { default as Hotel } from './Hotel'; -export { default as HotelOutlined } from './HotelOutlined'; -export { default as HotelRounded } from './HotelRounded'; -export { default as HotelSharp } from './HotelSharp'; -export { default as HotelTwoTone } from './HotelTwoTone'; -export { default as HourglassBottom } from './HourglassBottom'; -export { default as HourglassBottomOutlined } from './HourglassBottomOutlined'; -export { default as HourglassBottomRounded } from './HourglassBottomRounded'; -export { default as HourglassBottomSharp } from './HourglassBottomSharp'; -export { default as HourglassBottomTwoTone } from './HourglassBottomTwoTone'; -export { default as HourglassDisabled } from './HourglassDisabled'; -export { default as HourglassDisabledOutlined } from './HourglassDisabledOutlined'; -export { default as HourglassDisabledRounded } from './HourglassDisabledRounded'; -export { default as HourglassDisabledSharp } from './HourglassDisabledSharp'; -export { default as HourglassDisabledTwoTone } from './HourglassDisabledTwoTone'; -export { default as HourglassEmpty } from './HourglassEmpty'; -export { default as HourglassEmptyOutlined } from './HourglassEmptyOutlined'; -export { default as HourglassEmptyRounded } from './HourglassEmptyRounded'; -export { default as HourglassEmptySharp } from './HourglassEmptySharp'; -export { default as HourglassEmptyTwoTone } from './HourglassEmptyTwoTone'; -export { default as HourglassFull } from './HourglassFull'; -export { default as HourglassFullOutlined } from './HourglassFullOutlined'; -export { default as HourglassFullRounded } from './HourglassFullRounded'; -export { default as HourglassFullSharp } from './HourglassFullSharp'; -export { default as HourglassFullTwoTone } from './HourglassFullTwoTone'; -export { default as HourglassTop } from './HourglassTop'; -export { default as HourglassTopOutlined } from './HourglassTopOutlined'; -export { default as HourglassTopRounded } from './HourglassTopRounded'; -export { default as HourglassTopSharp } from './HourglassTopSharp'; -export { default as HourglassTopTwoTone } from './HourglassTopTwoTone'; -export { default as House } from './House'; -export { default as HouseOutlined } from './HouseOutlined'; -export { default as HouseRounded } from './HouseRounded'; -export { default as HouseSharp } from './HouseSharp'; -export { default as HouseSiding } from './HouseSiding'; -export { default as HouseSidingOutlined } from './HouseSidingOutlined'; -export { default as HouseSidingRounded } from './HouseSidingRounded'; -export { default as HouseSidingSharp } from './HouseSidingSharp'; -export { default as HouseSidingTwoTone } from './HouseSidingTwoTone'; -export { default as HouseTwoTone } from './HouseTwoTone'; -export { default as Houseboat } from './Houseboat'; -export { default as HouseboatOutlined } from './HouseboatOutlined'; -export { default as HouseboatRounded } from './HouseboatRounded'; -export { default as HouseboatSharp } from './HouseboatSharp'; -export { default as HouseboatTwoTone } from './HouseboatTwoTone'; -export { default as HowToReg } from './HowToReg'; -export { default as HowToRegOutlined } from './HowToRegOutlined'; -export { default as HowToRegRounded } from './HowToRegRounded'; -export { default as HowToRegSharp } from './HowToRegSharp'; -export { default as HowToRegTwoTone } from './HowToRegTwoTone'; -export { default as HowToVote } from './HowToVote'; -export { default as HowToVoteOutlined } from './HowToVoteOutlined'; -export { default as HowToVoteRounded } from './HowToVoteRounded'; -export { default as HowToVoteSharp } from './HowToVoteSharp'; -export { default as HowToVoteTwoTone } from './HowToVoteTwoTone'; -export { default as Http } from './Http'; -export { default as HttpOutlined } from './HttpOutlined'; -export { default as HttpRounded } from './HttpRounded'; -export { default as HttpSharp } from './HttpSharp'; -export { default as HttpTwoTone } from './HttpTwoTone'; -export { default as Https } from './Https'; -export { default as HttpsOutlined } from './HttpsOutlined'; -export { default as HttpsRounded } from './HttpsRounded'; -export { default as HttpsSharp } from './HttpsSharp'; -export { default as HttpsTwoTone } from './HttpsTwoTone'; -export { default as Hvac } from './Hvac'; -export { default as HvacOutlined } from './HvacOutlined'; -export { default as HvacRounded } from './HvacRounded'; -export { default as HvacSharp } from './HvacSharp'; -export { default as HvacTwoTone } from './HvacTwoTone'; -export { default as IceSkating } from './IceSkating'; -export { default as IceSkatingOutlined } from './IceSkatingOutlined'; -export { default as IceSkatingRounded } from './IceSkatingRounded'; -export { default as IceSkatingSharp } from './IceSkatingSharp'; -export { default as IceSkatingTwoTone } from './IceSkatingTwoTone'; -export { default as Icecream } from './Icecream'; -export { default as IcecreamOutlined } from './IcecreamOutlined'; -export { default as IcecreamRounded } from './IcecreamRounded'; -export { default as IcecreamSharp } from './IcecreamSharp'; -export { default as IcecreamTwoTone } from './IcecreamTwoTone'; -export { default as Image } from './Image'; -export { default as ImageAspectRatio } from './ImageAspectRatio'; -export { default as ImageAspectRatioOutlined } from './ImageAspectRatioOutlined'; -export { default as ImageAspectRatioRounded } from './ImageAspectRatioRounded'; -export { default as ImageAspectRatioSharp } from './ImageAspectRatioSharp'; -export { default as ImageAspectRatioTwoTone } from './ImageAspectRatioTwoTone'; -export { default as ImageNotSupported } from './ImageNotSupported'; -export { default as ImageNotSupportedOutlined } from './ImageNotSupportedOutlined'; -export { default as ImageNotSupportedRounded } from './ImageNotSupportedRounded'; -export { default as ImageNotSupportedSharp } from './ImageNotSupportedSharp'; -export { default as ImageNotSupportedTwoTone } from './ImageNotSupportedTwoTone'; -export { default as ImageOutlined } from './ImageOutlined'; -export { default as ImageRounded } from './ImageRounded'; -export { default as ImageSearch } from './ImageSearch'; -export { default as ImageSearchOutlined } from './ImageSearchOutlined'; -export { default as ImageSearchRounded } from './ImageSearchRounded'; -export { default as ImageSearchSharp } from './ImageSearchSharp'; -export { default as ImageSearchTwoTone } from './ImageSearchTwoTone'; -export { default as ImageSharp } from './ImageSharp'; -export { default as ImageTwoTone } from './ImageTwoTone'; -export { default as ImagesearchRoller } from './ImagesearchRoller'; -export { default as ImagesearchRollerOutlined } from './ImagesearchRollerOutlined'; -export { default as ImagesearchRollerRounded } from './ImagesearchRollerRounded'; -export { default as ImagesearchRollerSharp } from './ImagesearchRollerSharp'; -export { default as ImagesearchRollerTwoTone } from './ImagesearchRollerTwoTone'; -export { default as ImportContacts } from './ImportContacts'; -export { default as ImportContactsOutlined } from './ImportContactsOutlined'; -export { default as ImportContactsRounded } from './ImportContactsRounded'; -export { default as ImportContactsSharp } from './ImportContactsSharp'; -export { default as ImportContactsTwoTone } from './ImportContactsTwoTone'; -export { default as ImportExport } from './ImportExport'; -export { default as ImportExportOutlined } from './ImportExportOutlined'; -export { default as ImportExportRounded } from './ImportExportRounded'; -export { default as ImportExportSharp } from './ImportExportSharp'; -export { default as ImportExportTwoTone } from './ImportExportTwoTone'; -export { default as ImportantDevices } from './ImportantDevices'; -export { default as ImportantDevicesOutlined } from './ImportantDevicesOutlined'; -export { default as ImportantDevicesRounded } from './ImportantDevicesRounded'; -export { default as ImportantDevicesSharp } from './ImportantDevicesSharp'; -export { default as ImportantDevicesTwoTone } from './ImportantDevicesTwoTone'; -export { default as Inbox } from './Inbox'; -export { default as InboxOutlined } from './InboxOutlined'; -export { default as InboxRounded } from './InboxRounded'; -export { default as InboxSharp } from './InboxSharp'; -export { default as InboxTwoTone } from './InboxTwoTone'; -export { default as IndeterminateCheckBox } from './IndeterminateCheckBox'; -export { default as IndeterminateCheckBoxOutlined } from './IndeterminateCheckBoxOutlined'; -export { default as IndeterminateCheckBoxRounded } from './IndeterminateCheckBoxRounded'; -export { default as IndeterminateCheckBoxSharp } from './IndeterminateCheckBoxSharp'; -export { default as IndeterminateCheckBoxTwoTone } from './IndeterminateCheckBoxTwoTone'; -export { default as Info } from './Info'; -export { default as InfoOutlined } from './InfoOutlined'; -export { default as InfoRounded } from './InfoRounded'; -export { default as InfoSharp } from './InfoSharp'; -export { default as InfoTwoTone } from './InfoTwoTone'; -export { default as Input } from './Input'; -export { default as InputOutlined } from './InputOutlined'; -export { default as InputRounded } from './InputRounded'; -export { default as InputSharp } from './InputSharp'; -export { default as InputTwoTone } from './InputTwoTone'; -export { default as InsertChart } from './InsertChart'; -export { default as InsertChartOutlined } from './InsertChartOutlined'; -export { default as InsertChartOutlinedOutlined } from './InsertChartOutlinedOutlined'; -export { default as InsertChartOutlinedRounded } from './InsertChartOutlinedRounded'; -export { default as InsertChartOutlinedSharp } from './InsertChartOutlinedSharp'; -export { default as InsertChartOutlinedTwoTone } from './InsertChartOutlinedTwoTone'; -export { default as InsertChartRounded } from './InsertChartRounded'; -export { default as InsertChartSharp } from './InsertChartSharp'; -export { default as InsertChartTwoTone } from './InsertChartTwoTone'; -export { default as InsertComment } from './InsertComment'; -export { default as InsertCommentOutlined } from './InsertCommentOutlined'; -export { default as InsertCommentRounded } from './InsertCommentRounded'; -export { default as InsertCommentSharp } from './InsertCommentSharp'; -export { default as InsertCommentTwoTone } from './InsertCommentTwoTone'; -export { default as InsertDriveFile } from './InsertDriveFile'; -export { default as InsertDriveFileOutlined } from './InsertDriveFileOutlined'; -export { default as InsertDriveFileRounded } from './InsertDriveFileRounded'; -export { default as InsertDriveFileSharp } from './InsertDriveFileSharp'; -export { default as InsertDriveFileTwoTone } from './InsertDriveFileTwoTone'; -export { default as InsertEmoticon } from './InsertEmoticon'; -export { default as InsertEmoticonOutlined } from './InsertEmoticonOutlined'; -export { default as InsertEmoticonRounded } from './InsertEmoticonRounded'; -export { default as InsertEmoticonSharp } from './InsertEmoticonSharp'; -export { default as InsertEmoticonTwoTone } from './InsertEmoticonTwoTone'; -export { default as InsertInvitation } from './InsertInvitation'; -export { default as InsertInvitationOutlined } from './InsertInvitationOutlined'; -export { default as InsertInvitationRounded } from './InsertInvitationRounded'; -export { default as InsertInvitationSharp } from './InsertInvitationSharp'; -export { default as InsertInvitationTwoTone } from './InsertInvitationTwoTone'; -export { default as InsertLink } from './InsertLink'; -export { default as InsertLinkOutlined } from './InsertLinkOutlined'; -export { default as InsertLinkRounded } from './InsertLinkRounded'; -export { default as InsertLinkSharp } from './InsertLinkSharp'; -export { default as InsertLinkTwoTone } from './InsertLinkTwoTone'; -export { default as InsertPhoto } from './InsertPhoto'; -export { default as InsertPhotoOutlined } from './InsertPhotoOutlined'; -export { default as InsertPhotoRounded } from './InsertPhotoRounded'; -export { default as InsertPhotoSharp } from './InsertPhotoSharp'; -export { default as InsertPhotoTwoTone } from './InsertPhotoTwoTone'; -export { default as Insights } from './Insights'; -export { default as InsightsOutlined } from './InsightsOutlined'; -export { default as InsightsRounded } from './InsightsRounded'; -export { default as InsightsSharp } from './InsightsSharp'; -export { default as InsightsTwoTone } from './InsightsTwoTone'; -export { default as Instagram } from './Instagram'; -export { default as IntegrationInstructions } from './IntegrationInstructions'; -export { default as IntegrationInstructionsOutlined } from './IntegrationInstructionsOutlined'; -export { default as IntegrationInstructionsRounded } from './IntegrationInstructionsRounded'; -export { default as IntegrationInstructionsSharp } from './IntegrationInstructionsSharp'; -export { default as IntegrationInstructionsTwoTone } from './IntegrationInstructionsTwoTone'; -export { default as Inventory } from './Inventory'; -export { default as Inventory2 } from './Inventory2'; -export { default as Inventory2Outlined } from './Inventory2Outlined'; -export { default as Inventory2Rounded } from './Inventory2Rounded'; -export { default as Inventory2Sharp } from './Inventory2Sharp'; -export { default as Inventory2TwoTone } from './Inventory2TwoTone'; -export { default as InventoryOutlined } from './InventoryOutlined'; -export { default as InventoryRounded } from './InventoryRounded'; -export { default as InventorySharp } from './InventorySharp'; -export { default as InventoryTwoTone } from './InventoryTwoTone'; -export { default as InvertColors } from './InvertColors'; -export { default as InvertColorsOff } from './InvertColorsOff'; -export { default as InvertColorsOffOutlined } from './InvertColorsOffOutlined'; -export { default as InvertColorsOffRounded } from './InvertColorsOffRounded'; -export { default as InvertColorsOffSharp } from './InvertColorsOffSharp'; -export { default as InvertColorsOffTwoTone } from './InvertColorsOffTwoTone'; -export { default as InvertColorsOutlined } from './InvertColorsOutlined'; -export { default as InvertColorsRounded } from './InvertColorsRounded'; -export { default as InvertColorsSharp } from './InvertColorsSharp'; -export { default as InvertColorsTwoTone } from './InvertColorsTwoTone'; -export { default as IosShare } from './IosShare'; -export { default as IosShareOutlined } from './IosShareOutlined'; -export { default as IosShareRounded } from './IosShareRounded'; -export { default as IosShareSharp } from './IosShareSharp'; -export { default as IosShareTwoTone } from './IosShareTwoTone'; -export { default as Iron } from './Iron'; -export { default as IronOutlined } from './IronOutlined'; -export { default as IronRounded } from './IronRounded'; -export { default as IronSharp } from './IronSharp'; -export { default as IronTwoTone } from './IronTwoTone'; -export { default as Iso } from './Iso'; -export { default as IsoOutlined } from './IsoOutlined'; -export { default as IsoRounded } from './IsoRounded'; -export { default as IsoSharp } from './IsoSharp'; -export { default as IsoTwoTone } from './IsoTwoTone'; -export { default as Kayaking } from './Kayaking'; -export { default as KayakingOutlined } from './KayakingOutlined'; -export { default as KayakingRounded } from './KayakingRounded'; -export { default as KayakingSharp } from './KayakingSharp'; -export { default as KayakingTwoTone } from './KayakingTwoTone'; -export { default as Keyboard } from './Keyboard'; -export { default as KeyboardAlt } from './KeyboardAlt'; -export { default as KeyboardAltOutlined } from './KeyboardAltOutlined'; -export { default as KeyboardAltRounded } from './KeyboardAltRounded'; -export { default as KeyboardAltSharp } from './KeyboardAltSharp'; -export { default as KeyboardAltTwoTone } from './KeyboardAltTwoTone'; -export { default as KeyboardArrowDown } from './KeyboardArrowDown'; -export { default as KeyboardArrowDownOutlined } from './KeyboardArrowDownOutlined'; -export { default as KeyboardArrowDownRounded } from './KeyboardArrowDownRounded'; -export { default as KeyboardArrowDownSharp } from './KeyboardArrowDownSharp'; -export { default as KeyboardArrowDownTwoTone } from './KeyboardArrowDownTwoTone'; -export { default as KeyboardArrowLeft } from './KeyboardArrowLeft'; -export { default as KeyboardArrowLeftOutlined } from './KeyboardArrowLeftOutlined'; -export { default as KeyboardArrowLeftRounded } from './KeyboardArrowLeftRounded'; -export { default as KeyboardArrowLeftSharp } from './KeyboardArrowLeftSharp'; -export { default as KeyboardArrowLeftTwoTone } from './KeyboardArrowLeftTwoTone'; -export { default as KeyboardArrowRight } from './KeyboardArrowRight'; -export { default as KeyboardArrowRightOutlined } from './KeyboardArrowRightOutlined'; -export { default as KeyboardArrowRightRounded } from './KeyboardArrowRightRounded'; -export { default as KeyboardArrowRightSharp } from './KeyboardArrowRightSharp'; -export { default as KeyboardArrowRightTwoTone } from './KeyboardArrowRightTwoTone'; -export { default as KeyboardArrowUp } from './KeyboardArrowUp'; -export { default as KeyboardArrowUpOutlined } from './KeyboardArrowUpOutlined'; -export { default as KeyboardArrowUpRounded } from './KeyboardArrowUpRounded'; -export { default as KeyboardArrowUpSharp } from './KeyboardArrowUpSharp'; -export { default as KeyboardArrowUpTwoTone } from './KeyboardArrowUpTwoTone'; -export { default as KeyboardBackspace } from './KeyboardBackspace'; -export { default as KeyboardBackspaceOutlined } from './KeyboardBackspaceOutlined'; -export { default as KeyboardBackspaceRounded } from './KeyboardBackspaceRounded'; -export { default as KeyboardBackspaceSharp } from './KeyboardBackspaceSharp'; -export { default as KeyboardBackspaceTwoTone } from './KeyboardBackspaceTwoTone'; -export { default as KeyboardCapslock } from './KeyboardCapslock'; -export { default as KeyboardCapslockOutlined } from './KeyboardCapslockOutlined'; -export { default as KeyboardCapslockRounded } from './KeyboardCapslockRounded'; -export { default as KeyboardCapslockSharp } from './KeyboardCapslockSharp'; -export { default as KeyboardCapslockTwoTone } from './KeyboardCapslockTwoTone'; -export { default as KeyboardHide } from './KeyboardHide'; -export { default as KeyboardHideOutlined } from './KeyboardHideOutlined'; -export { default as KeyboardHideRounded } from './KeyboardHideRounded'; -export { default as KeyboardHideSharp } from './KeyboardHideSharp'; -export { default as KeyboardHideTwoTone } from './KeyboardHideTwoTone'; -export { default as KeyboardOutlined } from './KeyboardOutlined'; -export { default as KeyboardReturn } from './KeyboardReturn'; -export { default as KeyboardReturnOutlined } from './KeyboardReturnOutlined'; -export { default as KeyboardReturnRounded } from './KeyboardReturnRounded'; -export { default as KeyboardReturnSharp } from './KeyboardReturnSharp'; -export { default as KeyboardReturnTwoTone } from './KeyboardReturnTwoTone'; -export { default as KeyboardRounded } from './KeyboardRounded'; -export { default as KeyboardSharp } from './KeyboardSharp'; -export { default as KeyboardTab } from './KeyboardTab'; -export { default as KeyboardTabOutlined } from './KeyboardTabOutlined'; -export { default as KeyboardTabRounded } from './KeyboardTabRounded'; -export { default as KeyboardTabSharp } from './KeyboardTabSharp'; -export { default as KeyboardTabTwoTone } from './KeyboardTabTwoTone'; -export { default as KeyboardTwoTone } from './KeyboardTwoTone'; -export { default as KeyboardVoice } from './KeyboardVoice'; -export { default as KeyboardVoiceOutlined } from './KeyboardVoiceOutlined'; -export { default as KeyboardVoiceRounded } from './KeyboardVoiceRounded'; -export { default as KeyboardVoiceSharp } from './KeyboardVoiceSharp'; -export { default as KeyboardVoiceTwoTone } from './KeyboardVoiceTwoTone'; -export { default as KingBed } from './KingBed'; -export { default as KingBedOutlined } from './KingBedOutlined'; -export { default as KingBedRounded } from './KingBedRounded'; -export { default as KingBedSharp } from './KingBedSharp'; -export { default as KingBedTwoTone } from './KingBedTwoTone'; -export { default as Kitchen } from './Kitchen'; -export { default as KitchenOutlined } from './KitchenOutlined'; -export { default as KitchenRounded } from './KitchenRounded'; -export { default as KitchenSharp } from './KitchenSharp'; -export { default as KitchenTwoTone } from './KitchenTwoTone'; -export { default as Kitesurfing } from './Kitesurfing'; -export { default as KitesurfingOutlined } from './KitesurfingOutlined'; -export { default as KitesurfingRounded } from './KitesurfingRounded'; -export { default as KitesurfingSharp } from './KitesurfingSharp'; -export { default as KitesurfingTwoTone } from './KitesurfingTwoTone'; -export { default as Label } from './Label'; -export { default as LabelImportant } from './LabelImportant'; -export { default as LabelImportantOutlined } from './LabelImportantOutlined'; -export { default as LabelImportantRounded } from './LabelImportantRounded'; -export { default as LabelImportantSharp } from './LabelImportantSharp'; -export { default as LabelImportantTwoTone } from './LabelImportantTwoTone'; -export { default as LabelOff } from './LabelOff'; -export { default as LabelOffOutlined } from './LabelOffOutlined'; -export { default as LabelOffRounded } from './LabelOffRounded'; -export { default as LabelOffSharp } from './LabelOffSharp'; -export { default as LabelOffTwoTone } from './LabelOffTwoTone'; -export { default as LabelOutlined } from './LabelOutlined'; -export { default as LabelRounded } from './LabelRounded'; -export { default as LabelSharp } from './LabelSharp'; -export { default as LabelTwoTone } from './LabelTwoTone'; -export { default as Landscape } from './Landscape'; -export { default as LandscapeOutlined } from './LandscapeOutlined'; -export { default as LandscapeRounded } from './LandscapeRounded'; -export { default as LandscapeSharp } from './LandscapeSharp'; -export { default as LandscapeTwoTone } from './LandscapeTwoTone'; -export { default as Language } from './Language'; -export { default as LanguageOutlined } from './LanguageOutlined'; -export { default as LanguageRounded } from './LanguageRounded'; -export { default as LanguageSharp } from './LanguageSharp'; -export { default as LanguageTwoTone } from './LanguageTwoTone'; -export { default as Laptop } from './Laptop'; -export { default as LaptopChromebook } from './LaptopChromebook'; -export { default as LaptopChromebookOutlined } from './LaptopChromebookOutlined'; -export { default as LaptopChromebookRounded } from './LaptopChromebookRounded'; -export { default as LaptopChromebookSharp } from './LaptopChromebookSharp'; -export { default as LaptopChromebookTwoTone } from './LaptopChromebookTwoTone'; -export { default as LaptopMac } from './LaptopMac'; -export { default as LaptopMacOutlined } from './LaptopMacOutlined'; -export { default as LaptopMacRounded } from './LaptopMacRounded'; -export { default as LaptopMacSharp } from './LaptopMacSharp'; -export { default as LaptopMacTwoTone } from './LaptopMacTwoTone'; -export { default as LaptopOutlined } from './LaptopOutlined'; -export { default as LaptopRounded } from './LaptopRounded'; -export { default as LaptopSharp } from './LaptopSharp'; -export { default as LaptopTwoTone } from './LaptopTwoTone'; -export { default as LaptopWindows } from './LaptopWindows'; -export { default as LaptopWindowsOutlined } from './LaptopWindowsOutlined'; -export { default as LaptopWindowsRounded } from './LaptopWindowsRounded'; -export { default as LaptopWindowsSharp } from './LaptopWindowsSharp'; -export { default as LaptopWindowsTwoTone } from './LaptopWindowsTwoTone'; -export { default as LastPage } from './LastPage'; -export { default as LastPageOutlined } from './LastPageOutlined'; -export { default as LastPageRounded } from './LastPageRounded'; -export { default as LastPageSharp } from './LastPageSharp'; -export { default as LastPageTwoTone } from './LastPageTwoTone'; -export { default as Launch } from './Launch'; -export { default as LaunchOutlined } from './LaunchOutlined'; -export { default as LaunchRounded } from './LaunchRounded'; -export { default as LaunchSharp } from './LaunchSharp'; -export { default as LaunchTwoTone } from './LaunchTwoTone'; -export { default as Layers } from './Layers'; -export { default as LayersClear } from './LayersClear'; -export { default as LayersClearOutlined } from './LayersClearOutlined'; -export { default as LayersClearRounded } from './LayersClearRounded'; -export { default as LayersClearSharp } from './LayersClearSharp'; -export { default as LayersClearTwoTone } from './LayersClearTwoTone'; -export { default as LayersOutlined } from './LayersOutlined'; -export { default as LayersRounded } from './LayersRounded'; -export { default as LayersSharp } from './LayersSharp'; -export { default as LayersTwoTone } from './LayersTwoTone'; -export { default as Leaderboard } from './Leaderboard'; -export { default as LeaderboardOutlined } from './LeaderboardOutlined'; -export { default as LeaderboardRounded } from './LeaderboardRounded'; -export { default as LeaderboardSharp } from './LeaderboardSharp'; -export { default as LeaderboardTwoTone } from './LeaderboardTwoTone'; -export { default as LeakAdd } from './LeakAdd'; -export { default as LeakAddOutlined } from './LeakAddOutlined'; -export { default as LeakAddRounded } from './LeakAddRounded'; -export { default as LeakAddSharp } from './LeakAddSharp'; -export { default as LeakAddTwoTone } from './LeakAddTwoTone'; -export { default as LeakRemove } from './LeakRemove'; -export { default as LeakRemoveOutlined } from './LeakRemoveOutlined'; -export { default as LeakRemoveRounded } from './LeakRemoveRounded'; -export { default as LeakRemoveSharp } from './LeakRemoveSharp'; -export { default as LeakRemoveTwoTone } from './LeakRemoveTwoTone'; -export { default as LegendToggle } from './LegendToggle'; -export { default as LegendToggleOutlined } from './LegendToggleOutlined'; -export { default as LegendToggleRounded } from './LegendToggleRounded'; -export { default as LegendToggleSharp } from './LegendToggleSharp'; -export { default as LegendToggleTwoTone } from './LegendToggleTwoTone'; -export { default as Lens } from './Lens'; -export { default as LensBlur } from './LensBlur'; -export { default as LensBlurOutlined } from './LensBlurOutlined'; -export { default as LensBlurRounded } from './LensBlurRounded'; -export { default as LensBlurSharp } from './LensBlurSharp'; -export { default as LensBlurTwoTone } from './LensBlurTwoTone'; -export { default as LensOutlined } from './LensOutlined'; -export { default as LensRounded } from './LensRounded'; -export { default as LensSharp } from './LensSharp'; -export { default as LensTwoTone } from './LensTwoTone'; -export { default as LibraryAdd } from './LibraryAdd'; -export { default as LibraryAddCheck } from './LibraryAddCheck'; -export { default as LibraryAddCheckOutlined } from './LibraryAddCheckOutlined'; -export { default as LibraryAddCheckRounded } from './LibraryAddCheckRounded'; -export { default as LibraryAddCheckSharp } from './LibraryAddCheckSharp'; -export { default as LibraryAddCheckTwoTone } from './LibraryAddCheckTwoTone'; -export { default as LibraryAddOutlined } from './LibraryAddOutlined'; -export { default as LibraryAddRounded } from './LibraryAddRounded'; -export { default as LibraryAddSharp } from './LibraryAddSharp'; -export { default as LibraryAddTwoTone } from './LibraryAddTwoTone'; -export { default as LibraryBooks } from './LibraryBooks'; -export { default as LibraryBooksOutlined } from './LibraryBooksOutlined'; -export { default as LibraryBooksRounded } from './LibraryBooksRounded'; -export { default as LibraryBooksSharp } from './LibraryBooksSharp'; -export { default as LibraryBooksTwoTone } from './LibraryBooksTwoTone'; -export { default as LibraryMusic } from './LibraryMusic'; -export { default as LibraryMusicOutlined } from './LibraryMusicOutlined'; -export { default as LibraryMusicRounded } from './LibraryMusicRounded'; -export { default as LibraryMusicSharp } from './LibraryMusicSharp'; -export { default as LibraryMusicTwoTone } from './LibraryMusicTwoTone'; -export { default as Light } from './Light'; -export { default as LightMode } from './LightMode'; -export { default as LightModeOutlined } from './LightModeOutlined'; -export { default as LightModeRounded } from './LightModeRounded'; -export { default as LightModeSharp } from './LightModeSharp'; -export { default as LightModeTwoTone } from './LightModeTwoTone'; -export { default as LightOutlined } from './LightOutlined'; -export { default as LightRounded } from './LightRounded'; -export { default as LightSharp } from './LightSharp'; -export { default as LightTwoTone } from './LightTwoTone'; -export { default as Lightbulb } from './Lightbulb'; -export { default as LightbulbOutlined } from './LightbulbOutlined'; -export { default as LightbulbRounded } from './LightbulbRounded'; -export { default as LightbulbSharp } from './LightbulbSharp'; -export { default as LightbulbTwoTone } from './LightbulbTwoTone'; -export { default as LineStyle } from './LineStyle'; -export { default as LineStyleOutlined } from './LineStyleOutlined'; -export { default as LineStyleRounded } from './LineStyleRounded'; -export { default as LineStyleSharp } from './LineStyleSharp'; -export { default as LineStyleTwoTone } from './LineStyleTwoTone'; -export { default as LineWeight } from './LineWeight'; -export { default as LineWeightOutlined } from './LineWeightOutlined'; -export { default as LineWeightRounded } from './LineWeightRounded'; -export { default as LineWeightSharp } from './LineWeightSharp'; -export { default as LineWeightTwoTone } from './LineWeightTwoTone'; -export { default as LinearScale } from './LinearScale'; -export { default as LinearScaleOutlined } from './LinearScaleOutlined'; -export { default as LinearScaleRounded } from './LinearScaleRounded'; -export { default as LinearScaleSharp } from './LinearScaleSharp'; -export { default as LinearScaleTwoTone } from './LinearScaleTwoTone'; -export { default as Link } from './Link'; -export { default as LinkOff } from './LinkOff'; -export { default as LinkOffOutlined } from './LinkOffOutlined'; -export { default as LinkOffRounded } from './LinkOffRounded'; -export { default as LinkOffSharp } from './LinkOffSharp'; -export { default as LinkOffTwoTone } from './LinkOffTwoTone'; -export { default as LinkOutlined } from './LinkOutlined'; -export { default as LinkRounded } from './LinkRounded'; -export { default as LinkSharp } from './LinkSharp'; -export { default as LinkTwoTone } from './LinkTwoTone'; -export { default as LinkedCamera } from './LinkedCamera'; -export { default as LinkedCameraOutlined } from './LinkedCameraOutlined'; -export { default as LinkedCameraRounded } from './LinkedCameraRounded'; -export { default as LinkedCameraSharp } from './LinkedCameraSharp'; -export { default as LinkedCameraTwoTone } from './LinkedCameraTwoTone'; -export { default as LinkedIn } from './LinkedIn'; -export { default as Liquor } from './Liquor'; -export { default as LiquorOutlined } from './LiquorOutlined'; -export { default as LiquorRounded } from './LiquorRounded'; -export { default as LiquorSharp } from './LiquorSharp'; -export { default as LiquorTwoTone } from './LiquorTwoTone'; -export { default as List } from './List'; -export { default as ListAlt } from './ListAlt'; -export { default as ListAltOutlined } from './ListAltOutlined'; -export { default as ListAltRounded } from './ListAltRounded'; -export { default as ListAltSharp } from './ListAltSharp'; -export { default as ListAltTwoTone } from './ListAltTwoTone'; -export { default as ListOutlined } from './ListOutlined'; -export { default as ListRounded } from './ListRounded'; -export { default as ListSharp } from './ListSharp'; -export { default as ListTwoTone } from './ListTwoTone'; -export { default as LiveHelp } from './LiveHelp'; -export { default as LiveHelpOutlined } from './LiveHelpOutlined'; -export { default as LiveHelpRounded } from './LiveHelpRounded'; -export { default as LiveHelpSharp } from './LiveHelpSharp'; -export { default as LiveHelpTwoTone } from './LiveHelpTwoTone'; -export { default as LiveTv } from './LiveTv'; -export { default as LiveTvOutlined } from './LiveTvOutlined'; -export { default as LiveTvRounded } from './LiveTvRounded'; -export { default as LiveTvSharp } from './LiveTvSharp'; -export { default as LiveTvTwoTone } from './LiveTvTwoTone'; -export { default as Living } from './Living'; -export { default as LivingOutlined } from './LivingOutlined'; -export { default as LivingRounded } from './LivingRounded'; -export { default as LivingSharp } from './LivingSharp'; -export { default as LivingTwoTone } from './LivingTwoTone'; -export { default as LocalActivity } from './LocalActivity'; -export { default as LocalActivityOutlined } from './LocalActivityOutlined'; -export { default as LocalActivityRounded } from './LocalActivityRounded'; -export { default as LocalActivitySharp } from './LocalActivitySharp'; -export { default as LocalActivityTwoTone } from './LocalActivityTwoTone'; -export { default as LocalAirport } from './LocalAirport'; -export { default as LocalAirportOutlined } from './LocalAirportOutlined'; -export { default as LocalAirportRounded } from './LocalAirportRounded'; -export { default as LocalAirportSharp } from './LocalAirportSharp'; -export { default as LocalAirportTwoTone } from './LocalAirportTwoTone'; -export { default as LocalAtm } from './LocalAtm'; -export { default as LocalAtmOutlined } from './LocalAtmOutlined'; -export { default as LocalAtmRounded } from './LocalAtmRounded'; -export { default as LocalAtmSharp } from './LocalAtmSharp'; -export { default as LocalAtmTwoTone } from './LocalAtmTwoTone'; -export { default as LocalBar } from './LocalBar'; -export { default as LocalBarOutlined } from './LocalBarOutlined'; -export { default as LocalBarRounded } from './LocalBarRounded'; -export { default as LocalBarSharp } from './LocalBarSharp'; -export { default as LocalBarTwoTone } from './LocalBarTwoTone'; -export { default as LocalCafe } from './LocalCafe'; -export { default as LocalCafeOutlined } from './LocalCafeOutlined'; -export { default as LocalCafeRounded } from './LocalCafeRounded'; -export { default as LocalCafeSharp } from './LocalCafeSharp'; -export { default as LocalCafeTwoTone } from './LocalCafeTwoTone'; -export { default as LocalCarWash } from './LocalCarWash'; -export { default as LocalCarWashOutlined } from './LocalCarWashOutlined'; -export { default as LocalCarWashRounded } from './LocalCarWashRounded'; -export { default as LocalCarWashSharp } from './LocalCarWashSharp'; -export { default as LocalCarWashTwoTone } from './LocalCarWashTwoTone'; -export { default as LocalConvenienceStore } from './LocalConvenienceStore'; -export { default as LocalConvenienceStoreOutlined } from './LocalConvenienceStoreOutlined'; -export { default as LocalConvenienceStoreRounded } from './LocalConvenienceStoreRounded'; -export { default as LocalConvenienceStoreSharp } from './LocalConvenienceStoreSharp'; -export { default as LocalConvenienceStoreTwoTone } from './LocalConvenienceStoreTwoTone'; -export { default as LocalDining } from './LocalDining'; -export { default as LocalDiningOutlined } from './LocalDiningOutlined'; -export { default as LocalDiningRounded } from './LocalDiningRounded'; -export { default as LocalDiningSharp } from './LocalDiningSharp'; -export { default as LocalDiningTwoTone } from './LocalDiningTwoTone'; -export { default as LocalDrink } from './LocalDrink'; -export { default as LocalDrinkOutlined } from './LocalDrinkOutlined'; -export { default as LocalDrinkRounded } from './LocalDrinkRounded'; -export { default as LocalDrinkSharp } from './LocalDrinkSharp'; -export { default as LocalDrinkTwoTone } from './LocalDrinkTwoTone'; -export { default as LocalFireDepartment } from './LocalFireDepartment'; -export { default as LocalFireDepartmentOutlined } from './LocalFireDepartmentOutlined'; -export { default as LocalFireDepartmentRounded } from './LocalFireDepartmentRounded'; -export { default as LocalFireDepartmentSharp } from './LocalFireDepartmentSharp'; -export { default as LocalFireDepartmentTwoTone } from './LocalFireDepartmentTwoTone'; -export { default as LocalFlorist } from './LocalFlorist'; -export { default as LocalFloristOutlined } from './LocalFloristOutlined'; -export { default as LocalFloristRounded } from './LocalFloristRounded'; -export { default as LocalFloristSharp } from './LocalFloristSharp'; -export { default as LocalFloristTwoTone } from './LocalFloristTwoTone'; -export { default as LocalGasStation } from './LocalGasStation'; -export { default as LocalGasStationOutlined } from './LocalGasStationOutlined'; -export { default as LocalGasStationRounded } from './LocalGasStationRounded'; -export { default as LocalGasStationSharp } from './LocalGasStationSharp'; -export { default as LocalGasStationTwoTone } from './LocalGasStationTwoTone'; -export { default as LocalGroceryStore } from './LocalGroceryStore'; -export { default as LocalGroceryStoreOutlined } from './LocalGroceryStoreOutlined'; -export { default as LocalGroceryStoreRounded } from './LocalGroceryStoreRounded'; -export { default as LocalGroceryStoreSharp } from './LocalGroceryStoreSharp'; -export { default as LocalGroceryStoreTwoTone } from './LocalGroceryStoreTwoTone'; -export { default as LocalHospital } from './LocalHospital'; -export { default as LocalHospitalOutlined } from './LocalHospitalOutlined'; -export { default as LocalHospitalRounded } from './LocalHospitalRounded'; -export { default as LocalHospitalSharp } from './LocalHospitalSharp'; -export { default as LocalHospitalTwoTone } from './LocalHospitalTwoTone'; -export { default as LocalHotel } from './LocalHotel'; -export { default as LocalHotelOutlined } from './LocalHotelOutlined'; -export { default as LocalHotelRounded } from './LocalHotelRounded'; -export { default as LocalHotelSharp } from './LocalHotelSharp'; -export { default as LocalHotelTwoTone } from './LocalHotelTwoTone'; -export { default as LocalLaundryService } from './LocalLaundryService'; -export { default as LocalLaundryServiceOutlined } from './LocalLaundryServiceOutlined'; -export { default as LocalLaundryServiceRounded } from './LocalLaundryServiceRounded'; -export { default as LocalLaundryServiceSharp } from './LocalLaundryServiceSharp'; -export { default as LocalLaundryServiceTwoTone } from './LocalLaundryServiceTwoTone'; -export { default as LocalLibrary } from './LocalLibrary'; -export { default as LocalLibraryOutlined } from './LocalLibraryOutlined'; -export { default as LocalLibraryRounded } from './LocalLibraryRounded'; -export { default as LocalLibrarySharp } from './LocalLibrarySharp'; -export { default as LocalLibraryTwoTone } from './LocalLibraryTwoTone'; -export { default as LocalMall } from './LocalMall'; -export { default as LocalMallOutlined } from './LocalMallOutlined'; -export { default as LocalMallRounded } from './LocalMallRounded'; -export { default as LocalMallSharp } from './LocalMallSharp'; -export { default as LocalMallTwoTone } from './LocalMallTwoTone'; -export { default as LocalMovies } from './LocalMovies'; -export { default as LocalMoviesOutlined } from './LocalMoviesOutlined'; -export { default as LocalMoviesRounded } from './LocalMoviesRounded'; -export { default as LocalMoviesSharp } from './LocalMoviesSharp'; -export { default as LocalMoviesTwoTone } from './LocalMoviesTwoTone'; -export { default as LocalOffer } from './LocalOffer'; -export { default as LocalOfferOutlined } from './LocalOfferOutlined'; -export { default as LocalOfferRounded } from './LocalOfferRounded'; -export { default as LocalOfferSharp } from './LocalOfferSharp'; -export { default as LocalOfferTwoTone } from './LocalOfferTwoTone'; -export { default as LocalParking } from './LocalParking'; -export { default as LocalParkingOutlined } from './LocalParkingOutlined'; -export { default as LocalParkingRounded } from './LocalParkingRounded'; -export { default as LocalParkingSharp } from './LocalParkingSharp'; -export { default as LocalParkingTwoTone } from './LocalParkingTwoTone'; -export { default as LocalPharmacy } from './LocalPharmacy'; -export { default as LocalPharmacyOutlined } from './LocalPharmacyOutlined'; -export { default as LocalPharmacyRounded } from './LocalPharmacyRounded'; -export { default as LocalPharmacySharp } from './LocalPharmacySharp'; -export { default as LocalPharmacyTwoTone } from './LocalPharmacyTwoTone'; -export { default as LocalPhone } from './LocalPhone'; -export { default as LocalPhoneOutlined } from './LocalPhoneOutlined'; -export { default as LocalPhoneRounded } from './LocalPhoneRounded'; -export { default as LocalPhoneSharp } from './LocalPhoneSharp'; -export { default as LocalPhoneTwoTone } from './LocalPhoneTwoTone'; -export { default as LocalPizza } from './LocalPizza'; -export { default as LocalPizzaOutlined } from './LocalPizzaOutlined'; -export { default as LocalPizzaRounded } from './LocalPizzaRounded'; -export { default as LocalPizzaSharp } from './LocalPizzaSharp'; -export { default as LocalPizzaTwoTone } from './LocalPizzaTwoTone'; -export { default as LocalPlay } from './LocalPlay'; -export { default as LocalPlayOutlined } from './LocalPlayOutlined'; -export { default as LocalPlayRounded } from './LocalPlayRounded'; -export { default as LocalPlaySharp } from './LocalPlaySharp'; -export { default as LocalPlayTwoTone } from './LocalPlayTwoTone'; -export { default as LocalPolice } from './LocalPolice'; -export { default as LocalPoliceOutlined } from './LocalPoliceOutlined'; -export { default as LocalPoliceRounded } from './LocalPoliceRounded'; -export { default as LocalPoliceSharp } from './LocalPoliceSharp'; -export { default as LocalPoliceTwoTone } from './LocalPoliceTwoTone'; -export { default as LocalPostOffice } from './LocalPostOffice'; -export { default as LocalPostOfficeOutlined } from './LocalPostOfficeOutlined'; -export { default as LocalPostOfficeRounded } from './LocalPostOfficeRounded'; -export { default as LocalPostOfficeSharp } from './LocalPostOfficeSharp'; -export { default as LocalPostOfficeTwoTone } from './LocalPostOfficeTwoTone'; -export { default as LocalPrintshop } from './LocalPrintshop'; -export { default as LocalPrintshopOutlined } from './LocalPrintshopOutlined'; -export { default as LocalPrintshopRounded } from './LocalPrintshopRounded'; -export { default as LocalPrintshopSharp } from './LocalPrintshopSharp'; -export { default as LocalPrintshopTwoTone } from './LocalPrintshopTwoTone'; -export { default as LocalSee } from './LocalSee'; -export { default as LocalSeeOutlined } from './LocalSeeOutlined'; -export { default as LocalSeeRounded } from './LocalSeeRounded'; -export { default as LocalSeeSharp } from './LocalSeeSharp'; -export { default as LocalSeeTwoTone } from './LocalSeeTwoTone'; -export { default as LocalShipping } from './LocalShipping'; -export { default as LocalShippingOutlined } from './LocalShippingOutlined'; -export { default as LocalShippingRounded } from './LocalShippingRounded'; -export { default as LocalShippingSharp } from './LocalShippingSharp'; -export { default as LocalShippingTwoTone } from './LocalShippingTwoTone'; -export { default as LocalTaxi } from './LocalTaxi'; -export { default as LocalTaxiOutlined } from './LocalTaxiOutlined'; -export { default as LocalTaxiRounded } from './LocalTaxiRounded'; -export { default as LocalTaxiSharp } from './LocalTaxiSharp'; -export { default as LocalTaxiTwoTone } from './LocalTaxiTwoTone'; -export { default as LocationCity } from './LocationCity'; -export { default as LocationCityOutlined } from './LocationCityOutlined'; -export { default as LocationCityRounded } from './LocationCityRounded'; -export { default as LocationCitySharp } from './LocationCitySharp'; -export { default as LocationCityTwoTone } from './LocationCityTwoTone'; -export { default as LocationDisabled } from './LocationDisabled'; -export { default as LocationDisabledOutlined } from './LocationDisabledOutlined'; -export { default as LocationDisabledRounded } from './LocationDisabledRounded'; -export { default as LocationDisabledSharp } from './LocationDisabledSharp'; -export { default as LocationDisabledTwoTone } from './LocationDisabledTwoTone'; -export { default as LocationOff } from './LocationOff'; -export { default as LocationOffOutlined } from './LocationOffOutlined'; -export { default as LocationOffRounded } from './LocationOffRounded'; -export { default as LocationOffSharp } from './LocationOffSharp'; -export { default as LocationOffTwoTone } from './LocationOffTwoTone'; -export { default as LocationOn } from './LocationOn'; -export { default as LocationOnOutlined } from './LocationOnOutlined'; -export { default as LocationOnRounded } from './LocationOnRounded'; -export { default as LocationOnSharp } from './LocationOnSharp'; -export { default as LocationOnTwoTone } from './LocationOnTwoTone'; -export { default as LocationSearching } from './LocationSearching'; -export { default as LocationSearchingOutlined } from './LocationSearchingOutlined'; -export { default as LocationSearchingRounded } from './LocationSearchingRounded'; -export { default as LocationSearchingSharp } from './LocationSearchingSharp'; -export { default as LocationSearchingTwoTone } from './LocationSearchingTwoTone'; -export { default as Lock } from './Lock'; -export { default as LockClock } from './LockClock'; -export { default as LockClockOutlined } from './LockClockOutlined'; -export { default as LockClockRounded } from './LockClockRounded'; -export { default as LockClockSharp } from './LockClockSharp'; -export { default as LockClockTwoTone } from './LockClockTwoTone'; -export { default as LockOpen } from './LockOpen'; -export { default as LockOpenOutlined } from './LockOpenOutlined'; -export { default as LockOpenRounded } from './LockOpenRounded'; -export { default as LockOpenSharp } from './LockOpenSharp'; -export { default as LockOpenTwoTone } from './LockOpenTwoTone'; -export { default as LockOutlined } from './LockOutlined'; -export { default as LockRounded } from './LockRounded'; -export { default as LockSharp } from './LockSharp'; -export { default as LockTwoTone } from './LockTwoTone'; -export { default as Login } from './Login'; -export { default as LoginOutlined } from './LoginOutlined'; -export { default as LoginRounded } from './LoginRounded'; -export { default as LoginSharp } from './LoginSharp'; -export { default as LoginTwoTone } from './LoginTwoTone'; -export { default as Logout } from './Logout'; -export { default as LogoutOutlined } from './LogoutOutlined'; -export { default as LogoutRounded } from './LogoutRounded'; -export { default as LogoutSharp } from './LogoutSharp'; -export { default as LogoutTwoTone } from './LogoutTwoTone'; -export { default as Looks } from './Looks'; -export { default as Looks3 } from './Looks3'; -export { default as Looks3Outlined } from './Looks3Outlined'; -export { default as Looks3Rounded } from './Looks3Rounded'; -export { default as Looks3Sharp } from './Looks3Sharp'; -export { default as Looks3TwoTone } from './Looks3TwoTone'; -export { default as Looks4 } from './Looks4'; -export { default as Looks4Outlined } from './Looks4Outlined'; -export { default as Looks4Rounded } from './Looks4Rounded'; -export { default as Looks4Sharp } from './Looks4Sharp'; -export { default as Looks4TwoTone } from './Looks4TwoTone'; -export { default as Looks5 } from './Looks5'; -export { default as Looks5Outlined } from './Looks5Outlined'; -export { default as Looks5Rounded } from './Looks5Rounded'; -export { default as Looks5Sharp } from './Looks5Sharp'; -export { default as Looks5TwoTone } from './Looks5TwoTone'; -export { default as Looks6 } from './Looks6'; -export { default as Looks6Outlined } from './Looks6Outlined'; -export { default as Looks6Rounded } from './Looks6Rounded'; -export { default as Looks6Sharp } from './Looks6Sharp'; -export { default as Looks6TwoTone } from './Looks6TwoTone'; -export { default as LooksOne } from './LooksOne'; -export { default as LooksOneOutlined } from './LooksOneOutlined'; -export { default as LooksOneRounded } from './LooksOneRounded'; -export { default as LooksOneSharp } from './LooksOneSharp'; -export { default as LooksOneTwoTone } from './LooksOneTwoTone'; -export { default as LooksOutlined } from './LooksOutlined'; -export { default as LooksRounded } from './LooksRounded'; -export { default as LooksSharp } from './LooksSharp'; -export { default as LooksTwo } from './LooksTwo'; -export { default as LooksTwoOutlined } from './LooksTwoOutlined'; -export { default as LooksTwoRounded } from './LooksTwoRounded'; -export { default as LooksTwoSharp } from './LooksTwoSharp'; -export { default as LooksTwoTone } from './LooksTwoTone'; -export { default as LooksTwoTwoTone } from './LooksTwoTwoTone'; -export { default as Loop } from './Loop'; -export { default as LoopOutlined } from './LoopOutlined'; -export { default as LoopRounded } from './LoopRounded'; -export { default as LoopSharp } from './LoopSharp'; -export { default as LoopTwoTone } from './LoopTwoTone'; -export { default as Loupe } from './Loupe'; -export { default as LoupeOutlined } from './LoupeOutlined'; -export { default as LoupeRounded } from './LoupeRounded'; -export { default as LoupeSharp } from './LoupeSharp'; -export { default as LoupeTwoTone } from './LoupeTwoTone'; -export { default as LowPriority } from './LowPriority'; -export { default as LowPriorityOutlined } from './LowPriorityOutlined'; -export { default as LowPriorityRounded } from './LowPriorityRounded'; -export { default as LowPrioritySharp } from './LowPrioritySharp'; -export { default as LowPriorityTwoTone } from './LowPriorityTwoTone'; -export { default as Loyalty } from './Loyalty'; -export { default as LoyaltyOutlined } from './LoyaltyOutlined'; -export { default as LoyaltyRounded } from './LoyaltyRounded'; -export { default as LoyaltySharp } from './LoyaltySharp'; -export { default as LoyaltyTwoTone } from './LoyaltyTwoTone'; -export { default as LteMobiledata } from './LteMobiledata'; -export { default as LteMobiledataOutlined } from './LteMobiledataOutlined'; -export { default as LteMobiledataRounded } from './LteMobiledataRounded'; -export { default as LteMobiledataSharp } from './LteMobiledataSharp'; -export { default as LteMobiledataTwoTone } from './LteMobiledataTwoTone'; -export { default as LtePlusMobiledata } from './LtePlusMobiledata'; -export { default as LtePlusMobiledataOutlined } from './LtePlusMobiledataOutlined'; -export { default as LtePlusMobiledataRounded } from './LtePlusMobiledataRounded'; -export { default as LtePlusMobiledataSharp } from './LtePlusMobiledataSharp'; -export { default as LtePlusMobiledataTwoTone } from './LtePlusMobiledataTwoTone'; -export { default as Luggage } from './Luggage'; -export { default as LuggageOutlined } from './LuggageOutlined'; -export { default as LuggageRounded } from './LuggageRounded'; -export { default as LuggageSharp } from './LuggageSharp'; -export { default as LuggageTwoTone } from './LuggageTwoTone'; -export { default as LunchDining } from './LunchDining'; -export { default as LunchDiningOutlined } from './LunchDiningOutlined'; -export { default as LunchDiningRounded } from './LunchDiningRounded'; -export { default as LunchDiningSharp } from './LunchDiningSharp'; -export { default as LunchDiningTwoTone } from './LunchDiningTwoTone'; -export { default as Mail } from './Mail'; -export { default as MailOutline } from './MailOutline'; -export { default as MailOutlineOutlined } from './MailOutlineOutlined'; -export { default as MailOutlineRounded } from './MailOutlineRounded'; -export { default as MailOutlineSharp } from './MailOutlineSharp'; -export { default as MailOutlineTwoTone } from './MailOutlineTwoTone'; -export { default as MailOutlined } from './MailOutlined'; -export { default as MailRounded } from './MailRounded'; -export { default as MailSharp } from './MailSharp'; -export { default as MailTwoTone } from './MailTwoTone'; -export { default as Male } from './Male'; -export { default as MaleOutlined } from './MaleOutlined'; -export { default as MaleRounded } from './MaleRounded'; -export { default as MaleSharp } from './MaleSharp'; -export { default as MaleTwoTone } from './MaleTwoTone'; -export { default as ManageAccounts } from './ManageAccounts'; -export { default as ManageAccountsOutlined } from './ManageAccountsOutlined'; -export { default as ManageAccountsRounded } from './ManageAccountsRounded'; -export { default as ManageAccountsSharp } from './ManageAccountsSharp'; -export { default as ManageAccountsTwoTone } from './ManageAccountsTwoTone'; -export { default as ManageSearch } from './ManageSearch'; -export { default as ManageSearchOutlined } from './ManageSearchOutlined'; -export { default as ManageSearchRounded } from './ManageSearchRounded'; -export { default as ManageSearchSharp } from './ManageSearchSharp'; -export { default as ManageSearchTwoTone } from './ManageSearchTwoTone'; -export { default as Map } from './Map'; -export { default as MapOutlined } from './MapOutlined'; -export { default as MapRounded } from './MapRounded'; -export { default as MapSharp } from './MapSharp'; -export { default as MapTwoTone } from './MapTwoTone'; -export { default as MapsHomeWork } from './MapsHomeWork'; -export { default as MapsHomeWorkOutlined } from './MapsHomeWorkOutlined'; -export { default as MapsHomeWorkRounded } from './MapsHomeWorkRounded'; -export { default as MapsHomeWorkSharp } from './MapsHomeWorkSharp'; -export { default as MapsHomeWorkTwoTone } from './MapsHomeWorkTwoTone'; -export { default as MapsUgc } from './MapsUgc'; -export { default as MapsUgcOutlined } from './MapsUgcOutlined'; -export { default as MapsUgcRounded } from './MapsUgcRounded'; -export { default as MapsUgcSharp } from './MapsUgcSharp'; -export { default as MapsUgcTwoTone } from './MapsUgcTwoTone'; -export { default as Margin } from './Margin'; -export { default as MarginOutlined } from './MarginOutlined'; -export { default as MarginRounded } from './MarginRounded'; -export { default as MarginSharp } from './MarginSharp'; -export { default as MarginTwoTone } from './MarginTwoTone'; -export { default as MarkAsUnread } from './MarkAsUnread'; -export { default as MarkAsUnreadOutlined } from './MarkAsUnreadOutlined'; -export { default as MarkAsUnreadRounded } from './MarkAsUnreadRounded'; -export { default as MarkAsUnreadSharp } from './MarkAsUnreadSharp'; -export { default as MarkAsUnreadTwoTone } from './MarkAsUnreadTwoTone'; -export { default as MarkChatRead } from './MarkChatRead'; -export { default as MarkChatReadOutlined } from './MarkChatReadOutlined'; -export { default as MarkChatReadRounded } from './MarkChatReadRounded'; -export { default as MarkChatReadSharp } from './MarkChatReadSharp'; -export { default as MarkChatReadTwoTone } from './MarkChatReadTwoTone'; -export { default as MarkChatUnread } from './MarkChatUnread'; -export { default as MarkChatUnreadOutlined } from './MarkChatUnreadOutlined'; -export { default as MarkChatUnreadRounded } from './MarkChatUnreadRounded'; -export { default as MarkChatUnreadSharp } from './MarkChatUnreadSharp'; -export { default as MarkChatUnreadTwoTone } from './MarkChatUnreadTwoTone'; -export { default as MarkEmailRead } from './MarkEmailRead'; -export { default as MarkEmailReadOutlined } from './MarkEmailReadOutlined'; -export { default as MarkEmailReadRounded } from './MarkEmailReadRounded'; -export { default as MarkEmailReadSharp } from './MarkEmailReadSharp'; -export { default as MarkEmailReadTwoTone } from './MarkEmailReadTwoTone'; -export { default as MarkEmailUnread } from './MarkEmailUnread'; -export { default as MarkEmailUnreadOutlined } from './MarkEmailUnreadOutlined'; -export { default as MarkEmailUnreadRounded } from './MarkEmailUnreadRounded'; -export { default as MarkEmailUnreadSharp } from './MarkEmailUnreadSharp'; -export { default as MarkEmailUnreadTwoTone } from './MarkEmailUnreadTwoTone'; -export { default as Markunread } from './Markunread'; -export { default as MarkunreadMailbox } from './MarkunreadMailbox'; -export { default as MarkunreadMailboxOutlined } from './MarkunreadMailboxOutlined'; -export { default as MarkunreadMailboxRounded } from './MarkunreadMailboxRounded'; -export { default as MarkunreadMailboxSharp } from './MarkunreadMailboxSharp'; -export { default as MarkunreadMailboxTwoTone } from './MarkunreadMailboxTwoTone'; -export { default as MarkunreadOutlined } from './MarkunreadOutlined'; -export { default as MarkunreadRounded } from './MarkunreadRounded'; -export { default as MarkunreadSharp } from './MarkunreadSharp'; -export { default as MarkunreadTwoTone } from './MarkunreadTwoTone'; -export { default as Masks } from './Masks'; -export { default as MasksOutlined } from './MasksOutlined'; -export { default as MasksRounded } from './MasksRounded'; -export { default as MasksSharp } from './MasksSharp'; -export { default as MasksTwoTone } from './MasksTwoTone'; -export { default as Maximize } from './Maximize'; -export { default as MaximizeOutlined } from './MaximizeOutlined'; -export { default as MaximizeRounded } from './MaximizeRounded'; -export { default as MaximizeSharp } from './MaximizeSharp'; -export { default as MaximizeTwoTone } from './MaximizeTwoTone'; -export { default as MediaBluetoothOff } from './MediaBluetoothOff'; -export { default as MediaBluetoothOffOutlined } from './MediaBluetoothOffOutlined'; -export { default as MediaBluetoothOffRounded } from './MediaBluetoothOffRounded'; -export { default as MediaBluetoothOffSharp } from './MediaBluetoothOffSharp'; -export { default as MediaBluetoothOffTwoTone } from './MediaBluetoothOffTwoTone'; -export { default as MediaBluetoothOn } from './MediaBluetoothOn'; -export { default as MediaBluetoothOnOutlined } from './MediaBluetoothOnOutlined'; -export { default as MediaBluetoothOnRounded } from './MediaBluetoothOnRounded'; -export { default as MediaBluetoothOnSharp } from './MediaBluetoothOnSharp'; -export { default as MediaBluetoothOnTwoTone } from './MediaBluetoothOnTwoTone'; -export { default as Mediation } from './Mediation'; -export { default as MediationOutlined } from './MediationOutlined'; -export { default as MediationRounded } from './MediationRounded'; -export { default as MediationSharp } from './MediationSharp'; -export { default as MediationTwoTone } from './MediationTwoTone'; -export { default as MedicalServices } from './MedicalServices'; -export { default as MedicalServicesOutlined } from './MedicalServicesOutlined'; -export { default as MedicalServicesRounded } from './MedicalServicesRounded'; -export { default as MedicalServicesSharp } from './MedicalServicesSharp'; -export { default as MedicalServicesTwoTone } from './MedicalServicesTwoTone'; -export { default as Medication } from './Medication'; -export { default as MedicationOutlined } from './MedicationOutlined'; -export { default as MedicationRounded } from './MedicationRounded'; -export { default as MedicationSharp } from './MedicationSharp'; -export { default as MedicationTwoTone } from './MedicationTwoTone'; -export { default as MeetingRoom } from './MeetingRoom'; -export { default as MeetingRoomOutlined } from './MeetingRoomOutlined'; -export { default as MeetingRoomRounded } from './MeetingRoomRounded'; -export { default as MeetingRoomSharp } from './MeetingRoomSharp'; -export { default as MeetingRoomTwoTone } from './MeetingRoomTwoTone'; -export { default as Memory } from './Memory'; -export { default as MemoryOutlined } from './MemoryOutlined'; -export { default as MemoryRounded } from './MemoryRounded'; -export { default as MemorySharp } from './MemorySharp'; -export { default as MemoryTwoTone } from './MemoryTwoTone'; -export { default as Menu } from './Menu'; -export { default as MenuBook } from './MenuBook'; -export { default as MenuBookOutlined } from './MenuBookOutlined'; -export { default as MenuBookRounded } from './MenuBookRounded'; -export { default as MenuBookSharp } from './MenuBookSharp'; -export { default as MenuBookTwoTone } from './MenuBookTwoTone'; -export { default as MenuOpen } from './MenuOpen'; -export { default as MenuOpenOutlined } from './MenuOpenOutlined'; -export { default as MenuOpenRounded } from './MenuOpenRounded'; -export { default as MenuOpenSharp } from './MenuOpenSharp'; -export { default as MenuOpenTwoTone } from './MenuOpenTwoTone'; -export { default as MenuOutlined } from './MenuOutlined'; -export { default as MenuRounded } from './MenuRounded'; -export { default as MenuSharp } from './MenuSharp'; -export { default as MenuTwoTone } from './MenuTwoTone'; -export { default as MergeType } from './MergeType'; -export { default as MergeTypeOutlined } from './MergeTypeOutlined'; -export { default as MergeTypeRounded } from './MergeTypeRounded'; -export { default as MergeTypeSharp } from './MergeTypeSharp'; -export { default as MergeTypeTwoTone } from './MergeTypeTwoTone'; -export { default as Message } from './Message'; -export { default as MessageOutlined } from './MessageOutlined'; -export { default as MessageRounded } from './MessageRounded'; -export { default as MessageSharp } from './MessageSharp'; -export { default as MessageTwoTone } from './MessageTwoTone'; -export { default as Mic } from './Mic'; -export { default as MicExternalOff } from './MicExternalOff'; -export { default as MicExternalOffOutlined } from './MicExternalOffOutlined'; -export { default as MicExternalOffRounded } from './MicExternalOffRounded'; -export { default as MicExternalOffSharp } from './MicExternalOffSharp'; -export { default as MicExternalOffTwoTone } from './MicExternalOffTwoTone'; -export { default as MicExternalOn } from './MicExternalOn'; -export { default as MicExternalOnOutlined } from './MicExternalOnOutlined'; -export { default as MicExternalOnRounded } from './MicExternalOnRounded'; -export { default as MicExternalOnSharp } from './MicExternalOnSharp'; -export { default as MicExternalOnTwoTone } from './MicExternalOnTwoTone'; -export { default as MicNone } from './MicNone'; -export { default as MicNoneOutlined } from './MicNoneOutlined'; -export { default as MicNoneRounded } from './MicNoneRounded'; -export { default as MicNoneSharp } from './MicNoneSharp'; -export { default as MicNoneTwoTone } from './MicNoneTwoTone'; -export { default as MicOff } from './MicOff'; -export { default as MicOffOutlined } from './MicOffOutlined'; -export { default as MicOffRounded } from './MicOffRounded'; -export { default as MicOffSharp } from './MicOffSharp'; -export { default as MicOffTwoTone } from './MicOffTwoTone'; -export { default as MicOutlined } from './MicOutlined'; -export { default as MicRounded } from './MicRounded'; -export { default as MicSharp } from './MicSharp'; -export { default as MicTwoTone } from './MicTwoTone'; -export { default as Microwave } from './Microwave'; -export { default as MicrowaveOutlined } from './MicrowaveOutlined'; -export { default as MicrowaveRounded } from './MicrowaveRounded'; -export { default as MicrowaveSharp } from './MicrowaveSharp'; -export { default as MicrowaveTwoTone } from './MicrowaveTwoTone'; -export { default as MilitaryTech } from './MilitaryTech'; -export { default as MilitaryTechOutlined } from './MilitaryTechOutlined'; -export { default as MilitaryTechRounded } from './MilitaryTechRounded'; -export { default as MilitaryTechSharp } from './MilitaryTechSharp'; -export { default as MilitaryTechTwoTone } from './MilitaryTechTwoTone'; -export { default as Minimize } from './Minimize'; -export { default as MinimizeOutlined } from './MinimizeOutlined'; -export { default as MinimizeRounded } from './MinimizeRounded'; -export { default as MinimizeSharp } from './MinimizeSharp'; -export { default as MinimizeTwoTone } from './MinimizeTwoTone'; -export { default as MiscellaneousServices } from './MiscellaneousServices'; -export { default as MiscellaneousServicesOutlined } from './MiscellaneousServicesOutlined'; -export { default as MiscellaneousServicesRounded } from './MiscellaneousServicesRounded'; -export { default as MiscellaneousServicesSharp } from './MiscellaneousServicesSharp'; -export { default as MiscellaneousServicesTwoTone } from './MiscellaneousServicesTwoTone'; -export { default as MissedVideoCall } from './MissedVideoCall'; -export { default as MissedVideoCallOutlined } from './MissedVideoCallOutlined'; -export { default as MissedVideoCallRounded } from './MissedVideoCallRounded'; -export { default as MissedVideoCallSharp } from './MissedVideoCallSharp'; -export { default as MissedVideoCallTwoTone } from './MissedVideoCallTwoTone'; -export { default as Mms } from './Mms'; -export { default as MmsOutlined } from './MmsOutlined'; -export { default as MmsRounded } from './MmsRounded'; -export { default as MmsSharp } from './MmsSharp'; -export { default as MmsTwoTone } from './MmsTwoTone'; -export { default as MobileFriendly } from './MobileFriendly'; -export { default as MobileFriendlyOutlined } from './MobileFriendlyOutlined'; -export { default as MobileFriendlyRounded } from './MobileFriendlyRounded'; -export { default as MobileFriendlySharp } from './MobileFriendlySharp'; -export { default as MobileFriendlyTwoTone } from './MobileFriendlyTwoTone'; -export { default as MobileOff } from './MobileOff'; -export { default as MobileOffOutlined } from './MobileOffOutlined'; -export { default as MobileOffRounded } from './MobileOffRounded'; -export { default as MobileOffSharp } from './MobileOffSharp'; -export { default as MobileOffTwoTone } from './MobileOffTwoTone'; -export { default as MobileScreenShare } from './MobileScreenShare'; -export { default as MobileScreenShareOutlined } from './MobileScreenShareOutlined'; -export { default as MobileScreenShareRounded } from './MobileScreenShareRounded'; -export { default as MobileScreenShareSharp } from './MobileScreenShareSharp'; -export { default as MobileScreenShareTwoTone } from './MobileScreenShareTwoTone'; -export { default as MobiledataOff } from './MobiledataOff'; -export { default as MobiledataOffOutlined } from './MobiledataOffOutlined'; -export { default as MobiledataOffRounded } from './MobiledataOffRounded'; -export { default as MobiledataOffSharp } from './MobiledataOffSharp'; -export { default as MobiledataOffTwoTone } from './MobiledataOffTwoTone'; -export { default as Mode } from './Mode'; -export { default as ModeComment } from './ModeComment'; -export { default as ModeCommentOutlined } from './ModeCommentOutlined'; -export { default as ModeCommentRounded } from './ModeCommentRounded'; -export { default as ModeCommentSharp } from './ModeCommentSharp'; -export { default as ModeCommentTwoTone } from './ModeCommentTwoTone'; -export { default as ModeEdit } from './ModeEdit'; -export { default as ModeEditOutline } from './ModeEditOutline'; -export { default as ModeEditOutlineOutlined } from './ModeEditOutlineOutlined'; -export { default as ModeEditOutlineRounded } from './ModeEditOutlineRounded'; -export { default as ModeEditOutlineSharp } from './ModeEditOutlineSharp'; -export { default as ModeEditOutlineTwoTone } from './ModeEditOutlineTwoTone'; -export { default as ModeEditOutlined } from './ModeEditOutlined'; -export { default as ModeEditRounded } from './ModeEditRounded'; -export { default as ModeEditSharp } from './ModeEditSharp'; -export { default as ModeEditTwoTone } from './ModeEditTwoTone'; -export { default as ModeNight } from './ModeNight'; -export { default as ModeNightOutlined } from './ModeNightOutlined'; -export { default as ModeNightRounded } from './ModeNightRounded'; -export { default as ModeNightSharp } from './ModeNightSharp'; -export { default as ModeNightTwoTone } from './ModeNightTwoTone'; -export { default as ModeOutlined } from './ModeOutlined'; -export { default as ModeRounded } from './ModeRounded'; -export { default as ModeSharp } from './ModeSharp'; -export { default as ModeStandby } from './ModeStandby'; -export { default as ModeStandbyOutlined } from './ModeStandbyOutlined'; -export { default as ModeStandbyRounded } from './ModeStandbyRounded'; -export { default as ModeStandbySharp } from './ModeStandbySharp'; -export { default as ModeStandbyTwoTone } from './ModeStandbyTwoTone'; -export { default as ModeTwoTone } from './ModeTwoTone'; -export { default as ModelTraining } from './ModelTraining'; -export { default as ModelTrainingOutlined } from './ModelTrainingOutlined'; -export { default as ModelTrainingRounded } from './ModelTrainingRounded'; -export { default as ModelTrainingSharp } from './ModelTrainingSharp'; -export { default as ModelTrainingTwoTone } from './ModelTrainingTwoTone'; -export { default as MonetizationOn } from './MonetizationOn'; -export { default as MonetizationOnOutlined } from './MonetizationOnOutlined'; -export { default as MonetizationOnRounded } from './MonetizationOnRounded'; -export { default as MonetizationOnSharp } from './MonetizationOnSharp'; -export { default as MonetizationOnTwoTone } from './MonetizationOnTwoTone'; -export { default as Money } from './Money'; -export { default as MoneyOff } from './MoneyOff'; -export { default as MoneyOffCsred } from './MoneyOffCsred'; -export { default as MoneyOffCsredOutlined } from './MoneyOffCsredOutlined'; -export { default as MoneyOffCsredRounded } from './MoneyOffCsredRounded'; -export { default as MoneyOffCsredSharp } from './MoneyOffCsredSharp'; -export { default as MoneyOffCsredTwoTone } from './MoneyOffCsredTwoTone'; -export { default as MoneyOffOutlined } from './MoneyOffOutlined'; -export { default as MoneyOffRounded } from './MoneyOffRounded'; -export { default as MoneyOffSharp } from './MoneyOffSharp'; -export { default as MoneyOffTwoTone } from './MoneyOffTwoTone'; -export { default as MoneyOutlined } from './MoneyOutlined'; -export { default as MoneyRounded } from './MoneyRounded'; -export { default as MoneySharp } from './MoneySharp'; -export { default as MoneyTwoTone } from './MoneyTwoTone'; -export { default as Monitor } from './Monitor'; -export { default as MonitorOutlined } from './MonitorOutlined'; -export { default as MonitorRounded } from './MonitorRounded'; -export { default as MonitorSharp } from './MonitorSharp'; -export { default as MonitorTwoTone } from './MonitorTwoTone'; -export { default as MonitorWeight } from './MonitorWeight'; -export { default as MonitorWeightOutlined } from './MonitorWeightOutlined'; -export { default as MonitorWeightRounded } from './MonitorWeightRounded'; -export { default as MonitorWeightSharp } from './MonitorWeightSharp'; -export { default as MonitorWeightTwoTone } from './MonitorWeightTwoTone'; -export { default as MonochromePhotos } from './MonochromePhotos'; -export { default as MonochromePhotosOutlined } from './MonochromePhotosOutlined'; -export { default as MonochromePhotosRounded } from './MonochromePhotosRounded'; -export { default as MonochromePhotosSharp } from './MonochromePhotosSharp'; -export { default as MonochromePhotosTwoTone } from './MonochromePhotosTwoTone'; -export { default as Mood } from './Mood'; -export { default as MoodBad } from './MoodBad'; -export { default as MoodBadOutlined } from './MoodBadOutlined'; -export { default as MoodBadRounded } from './MoodBadRounded'; -export { default as MoodBadSharp } from './MoodBadSharp'; -export { default as MoodBadTwoTone } from './MoodBadTwoTone'; -export { default as MoodOutlined } from './MoodOutlined'; -export { default as MoodRounded } from './MoodRounded'; -export { default as MoodSharp } from './MoodSharp'; -export { default as MoodTwoTone } from './MoodTwoTone'; -export { default as Moped } from './Moped'; -export { default as MopedOutlined } from './MopedOutlined'; -export { default as MopedRounded } from './MopedRounded'; -export { default as MopedSharp } from './MopedSharp'; -export { default as MopedTwoTone } from './MopedTwoTone'; -export { default as More } from './More'; -export { default as MoreHoriz } from './MoreHoriz'; -export { default as MoreHorizOutlined } from './MoreHorizOutlined'; -export { default as MoreHorizRounded } from './MoreHorizRounded'; -export { default as MoreHorizSharp } from './MoreHorizSharp'; -export { default as MoreHorizTwoTone } from './MoreHorizTwoTone'; -export { default as MoreOutlined } from './MoreOutlined'; -export { default as MoreRounded } from './MoreRounded'; -export { default as MoreSharp } from './MoreSharp'; -export { default as MoreTime } from './MoreTime'; -export { default as MoreTimeOutlined } from './MoreTimeOutlined'; -export { default as MoreTimeRounded } from './MoreTimeRounded'; -export { default as MoreTimeSharp } from './MoreTimeSharp'; -export { default as MoreTimeTwoTone } from './MoreTimeTwoTone'; -export { default as MoreTwoTone } from './MoreTwoTone'; -export { default as MoreVert } from './MoreVert'; -export { default as MoreVertOutlined } from './MoreVertOutlined'; -export { default as MoreVertRounded } from './MoreVertRounded'; -export { default as MoreVertSharp } from './MoreVertSharp'; -export { default as MoreVertTwoTone } from './MoreVertTwoTone'; -export { default as MotionPhotosAuto } from './MotionPhotosAuto'; -export { default as MotionPhotosAutoOutlined } from './MotionPhotosAutoOutlined'; -export { default as MotionPhotosAutoRounded } from './MotionPhotosAutoRounded'; -export { default as MotionPhotosAutoSharp } from './MotionPhotosAutoSharp'; -export { default as MotionPhotosAutoTwoTone } from './MotionPhotosAutoTwoTone'; -export { default as MotionPhotosOff } from './MotionPhotosOff'; -export { default as MotionPhotosOffOutlined } from './MotionPhotosOffOutlined'; -export { default as MotionPhotosOffRounded } from './MotionPhotosOffRounded'; -export { default as MotionPhotosOffSharp } from './MotionPhotosOffSharp'; -export { default as MotionPhotosOffTwoTone } from './MotionPhotosOffTwoTone'; -export { default as Mouse } from './Mouse'; -export { default as MouseOutlined } from './MouseOutlined'; -export { default as MouseRounded } from './MouseRounded'; -export { default as MouseSharp } from './MouseSharp'; -export { default as MouseTwoTone } from './MouseTwoTone'; -export { default as MoveToInbox } from './MoveToInbox'; -export { default as MoveToInboxOutlined } from './MoveToInboxOutlined'; -export { default as MoveToInboxRounded } from './MoveToInboxRounded'; -export { default as MoveToInboxSharp } from './MoveToInboxSharp'; -export { default as MoveToInboxTwoTone } from './MoveToInboxTwoTone'; -export { default as Movie } from './Movie'; -export { default as MovieCreation } from './MovieCreation'; -export { default as MovieCreationOutlined } from './MovieCreationOutlined'; -export { default as MovieCreationRounded } from './MovieCreationRounded'; -export { default as MovieCreationSharp } from './MovieCreationSharp'; -export { default as MovieCreationTwoTone } from './MovieCreationTwoTone'; -export { default as MovieFilter } from './MovieFilter'; -export { default as MovieFilterOutlined } from './MovieFilterOutlined'; -export { default as MovieFilterRounded } from './MovieFilterRounded'; -export { default as MovieFilterSharp } from './MovieFilterSharp'; -export { default as MovieFilterTwoTone } from './MovieFilterTwoTone'; -export { default as MovieOutlined } from './MovieOutlined'; -export { default as MovieRounded } from './MovieRounded'; -export { default as MovieSharp } from './MovieSharp'; -export { default as MovieTwoTone } from './MovieTwoTone'; -export { default as Moving } from './Moving'; -export { default as MovingOutlined } from './MovingOutlined'; -export { default as MovingRounded } from './MovingRounded'; -export { default as MovingSharp } from './MovingSharp'; -export { default as MovingTwoTone } from './MovingTwoTone'; -export { default as Mp } from './Mp'; -export { default as MpOutlined } from './MpOutlined'; -export { default as MpRounded } from './MpRounded'; -export { default as MpSharp } from './MpSharp'; -export { default as MpTwoTone } from './MpTwoTone'; -export { default as MultilineChart } from './MultilineChart'; -export { default as MultilineChartOutlined } from './MultilineChartOutlined'; -export { default as MultilineChartRounded } from './MultilineChartRounded'; -export { default as MultilineChartSharp } from './MultilineChartSharp'; -export { default as MultilineChartTwoTone } from './MultilineChartTwoTone'; -export { default as MultipleStop } from './MultipleStop'; -export { default as MultipleStopOutlined } from './MultipleStopOutlined'; -export { default as MultipleStopRounded } from './MultipleStopRounded'; -export { default as MultipleStopSharp } from './MultipleStopSharp'; -export { default as MultipleStopTwoTone } from './MultipleStopTwoTone'; -export { default as Museum } from './Museum'; -export { default as MuseumOutlined } from './MuseumOutlined'; -export { default as MuseumRounded } from './MuseumRounded'; -export { default as MuseumSharp } from './MuseumSharp'; -export { default as MuseumTwoTone } from './MuseumTwoTone'; -export { default as MusicNote } from './MusicNote'; -export { default as MusicNoteOutlined } from './MusicNoteOutlined'; -export { default as MusicNoteRounded } from './MusicNoteRounded'; -export { default as MusicNoteSharp } from './MusicNoteSharp'; -export { default as MusicNoteTwoTone } from './MusicNoteTwoTone'; -export { default as MusicOff } from './MusicOff'; -export { default as MusicOffOutlined } from './MusicOffOutlined'; -export { default as MusicOffRounded } from './MusicOffRounded'; -export { default as MusicOffSharp } from './MusicOffSharp'; -export { default as MusicOffTwoTone } from './MusicOffTwoTone'; -export { default as MusicVideo } from './MusicVideo'; -export { default as MusicVideoOutlined } from './MusicVideoOutlined'; -export { default as MusicVideoRounded } from './MusicVideoRounded'; -export { default as MusicVideoSharp } from './MusicVideoSharp'; -export { default as MusicVideoTwoTone } from './MusicVideoTwoTone'; -export { default as MyLocation } from './MyLocation'; -export { default as MyLocationOutlined } from './MyLocationOutlined'; -export { default as MyLocationRounded } from './MyLocationRounded'; -export { default as MyLocationSharp } from './MyLocationSharp'; -export { default as MyLocationTwoTone } from './MyLocationTwoTone'; -export { default as Nat } from './Nat'; -export { default as NatOutlined } from './NatOutlined'; -export { default as NatRounded } from './NatRounded'; -export { default as NatSharp } from './NatSharp'; -export { default as NatTwoTone } from './NatTwoTone'; -export { default as Nature } from './Nature'; -export { default as NatureOutlined } from './NatureOutlined'; -export { default as NaturePeople } from './NaturePeople'; -export { default as NaturePeopleOutlined } from './NaturePeopleOutlined'; -export { default as NaturePeopleRounded } from './NaturePeopleRounded'; -export { default as NaturePeopleSharp } from './NaturePeopleSharp'; -export { default as NaturePeopleTwoTone } from './NaturePeopleTwoTone'; -export { default as NatureRounded } from './NatureRounded'; -export { default as NatureSharp } from './NatureSharp'; -export { default as NatureTwoTone } from './NatureTwoTone'; -export { default as NavigateBefore } from './NavigateBefore'; -export { default as NavigateBeforeOutlined } from './NavigateBeforeOutlined'; -export { default as NavigateBeforeRounded } from './NavigateBeforeRounded'; -export { default as NavigateBeforeSharp } from './NavigateBeforeSharp'; -export { default as NavigateBeforeTwoTone } from './NavigateBeforeTwoTone'; -export { default as NavigateNext } from './NavigateNext'; -export { default as NavigateNextOutlined } from './NavigateNextOutlined'; -export { default as NavigateNextRounded } from './NavigateNextRounded'; -export { default as NavigateNextSharp } from './NavigateNextSharp'; -export { default as NavigateNextTwoTone } from './NavigateNextTwoTone'; -export { default as Navigation } from './Navigation'; -export { default as NavigationOutlined } from './NavigationOutlined'; -export { default as NavigationRounded } from './NavigationRounded'; -export { default as NavigationSharp } from './NavigationSharp'; -export { default as NavigationTwoTone } from './NavigationTwoTone'; -export { default as NearMe } from './NearMe'; -export { default as NearMeDisabled } from './NearMeDisabled'; -export { default as NearMeDisabledOutlined } from './NearMeDisabledOutlined'; -export { default as NearMeDisabledRounded } from './NearMeDisabledRounded'; -export { default as NearMeDisabledSharp } from './NearMeDisabledSharp'; -export { default as NearMeDisabledTwoTone } from './NearMeDisabledTwoTone'; -export { default as NearMeOutlined } from './NearMeOutlined'; -export { default as NearMeRounded } from './NearMeRounded'; -export { default as NearMeSharp } from './NearMeSharp'; -export { default as NearMeTwoTone } from './NearMeTwoTone'; -export { default as NearbyError } from './NearbyError'; -export { default as NearbyErrorOutlined } from './NearbyErrorOutlined'; -export { default as NearbyErrorRounded } from './NearbyErrorRounded'; -export { default as NearbyErrorSharp } from './NearbyErrorSharp'; -export { default as NearbyErrorTwoTone } from './NearbyErrorTwoTone'; -export { default as NearbyOff } from './NearbyOff'; -export { default as NearbyOffOutlined } from './NearbyOffOutlined'; -export { default as NearbyOffRounded } from './NearbyOffRounded'; -export { default as NearbyOffSharp } from './NearbyOffSharp'; -export { default as NearbyOffTwoTone } from './NearbyOffTwoTone'; -export { default as NetworkCell } from './NetworkCell'; -export { default as NetworkCellOutlined } from './NetworkCellOutlined'; -export { default as NetworkCellRounded } from './NetworkCellRounded'; -export { default as NetworkCellSharp } from './NetworkCellSharp'; -export { default as NetworkCellTwoTone } from './NetworkCellTwoTone'; -export { default as NetworkCheck } from './NetworkCheck'; -export { default as NetworkCheckOutlined } from './NetworkCheckOutlined'; -export { default as NetworkCheckRounded } from './NetworkCheckRounded'; -export { default as NetworkCheckSharp } from './NetworkCheckSharp'; -export { default as NetworkCheckTwoTone } from './NetworkCheckTwoTone'; -export { default as NetworkLocked } from './NetworkLocked'; -export { default as NetworkLockedOutlined } from './NetworkLockedOutlined'; -export { default as NetworkLockedRounded } from './NetworkLockedRounded'; -export { default as NetworkLockedSharp } from './NetworkLockedSharp'; -export { default as NetworkLockedTwoTone } from './NetworkLockedTwoTone'; -export { default as NetworkWifi } from './NetworkWifi'; -export { default as NetworkWifiOutlined } from './NetworkWifiOutlined'; -export { default as NetworkWifiRounded } from './NetworkWifiRounded'; -export { default as NetworkWifiSharp } from './NetworkWifiSharp'; -export { default as NetworkWifiTwoTone } from './NetworkWifiTwoTone'; -export { default as NewReleases } from './NewReleases'; -export { default as NewReleasesOutlined } from './NewReleasesOutlined'; -export { default as NewReleasesRounded } from './NewReleasesRounded'; -export { default as NewReleasesSharp } from './NewReleasesSharp'; -export { default as NewReleasesTwoTone } from './NewReleasesTwoTone'; -export { default as NextPlan } from './NextPlan'; -export { default as NextPlanOutlined } from './NextPlanOutlined'; -export { default as NextPlanRounded } from './NextPlanRounded'; -export { default as NextPlanSharp } from './NextPlanSharp'; -export { default as NextPlanTwoTone } from './NextPlanTwoTone'; -export { default as NextWeek } from './NextWeek'; -export { default as NextWeekOutlined } from './NextWeekOutlined'; -export { default as NextWeekRounded } from './NextWeekRounded'; -export { default as NextWeekSharp } from './NextWeekSharp'; -export { default as NextWeekTwoTone } from './NextWeekTwoTone'; -export { default as Nfc } from './Nfc'; -export { default as NfcOutlined } from './NfcOutlined'; -export { default as NfcRounded } from './NfcRounded'; -export { default as NfcSharp } from './NfcSharp'; -export { default as NfcTwoTone } from './NfcTwoTone'; -export { default as NightShelter } from './NightShelter'; -export { default as NightShelterOutlined } from './NightShelterOutlined'; -export { default as NightShelterRounded } from './NightShelterRounded'; -export { default as NightShelterSharp } from './NightShelterSharp'; -export { default as NightShelterTwoTone } from './NightShelterTwoTone'; -export { default as Nightlife } from './Nightlife'; -export { default as NightlifeOutlined } from './NightlifeOutlined'; -export { default as NightlifeRounded } from './NightlifeRounded'; -export { default as NightlifeSharp } from './NightlifeSharp'; -export { default as NightlifeTwoTone } from './NightlifeTwoTone'; -export { default as Nightlight } from './Nightlight'; -export { default as NightlightOutlined } from './NightlightOutlined'; -export { default as NightlightRound } from './NightlightRound'; -export { default as NightlightRoundOutlined } from './NightlightRoundOutlined'; -export { default as NightlightRoundRounded } from './NightlightRoundRounded'; -export { default as NightlightRoundSharp } from './NightlightRoundSharp'; -export { default as NightlightRoundTwoTone } from './NightlightRoundTwoTone'; -export { default as NightlightRounded } from './NightlightRounded'; -export { default as NightlightSharp } from './NightlightSharp'; -export { default as NightlightTwoTone } from './NightlightTwoTone'; -export { default as NightsStay } from './NightsStay'; -export { default as NightsStayOutlined } from './NightsStayOutlined'; -export { default as NightsStayRounded } from './NightsStayRounded'; -export { default as NightsStaySharp } from './NightsStaySharp'; -export { default as NightsStayTwoTone } from './NightsStayTwoTone'; -export { default as NineK } from './NineK'; -export { default as NineKOutlined } from './NineKOutlined'; -export { default as NineKPlus } from './NineKPlus'; -export { default as NineKPlusOutlined } from './NineKPlusOutlined'; -export { default as NineKPlusRounded } from './NineKPlusRounded'; -export { default as NineKPlusSharp } from './NineKPlusSharp'; -export { default as NineKPlusTwoTone } from './NineKPlusTwoTone'; -export { default as NineKRounded } from './NineKRounded'; -export { default as NineKSharp } from './NineKSharp'; -export { default as NineKTwoTone } from './NineKTwoTone'; -export { default as NineMp } from './NineMp'; -export { default as NineMpOutlined } from './NineMpOutlined'; -export { default as NineMpRounded } from './NineMpRounded'; -export { default as NineMpSharp } from './NineMpSharp'; -export { default as NineMpTwoTone } from './NineMpTwoTone'; -export { default as NineteenMp } from './NineteenMp'; -export { default as NineteenMpOutlined } from './NineteenMpOutlined'; -export { default as NineteenMpRounded } from './NineteenMpRounded'; -export { default as NineteenMpSharp } from './NineteenMpSharp'; -export { default as NineteenMpTwoTone } from './NineteenMpTwoTone'; -export { default as NoAccounts } from './NoAccounts'; -export { default as NoAccountsOutlined } from './NoAccountsOutlined'; -export { default as NoAccountsRounded } from './NoAccountsRounded'; -export { default as NoAccountsSharp } from './NoAccountsSharp'; -export { default as NoAccountsTwoTone } from './NoAccountsTwoTone'; -export { default as NoBackpack } from './NoBackpack'; -export { default as NoBackpackOutlined } from './NoBackpackOutlined'; -export { default as NoBackpackRounded } from './NoBackpackRounded'; -export { default as NoBackpackSharp } from './NoBackpackSharp'; -export { default as NoBackpackTwoTone } from './NoBackpackTwoTone'; -export { default as NoCell } from './NoCell'; -export { default as NoCellOutlined } from './NoCellOutlined'; -export { default as NoCellRounded } from './NoCellRounded'; -export { default as NoCellSharp } from './NoCellSharp'; -export { default as NoCellTwoTone } from './NoCellTwoTone'; -export { default as NoDrinks } from './NoDrinks'; -export { default as NoDrinksOutlined } from './NoDrinksOutlined'; -export { default as NoDrinksRounded } from './NoDrinksRounded'; -export { default as NoDrinksSharp } from './NoDrinksSharp'; -export { default as NoDrinksTwoTone } from './NoDrinksTwoTone'; -export { default as NoEncryption } from './NoEncryption'; -export { default as NoEncryptionGmailerrorred } from './NoEncryptionGmailerrorred'; -export { default as NoEncryptionGmailerrorredOutlined } from './NoEncryptionGmailerrorredOutlined'; -export { default as NoEncryptionGmailerrorredRounded } from './NoEncryptionGmailerrorredRounded'; -export { default as NoEncryptionGmailerrorredSharp } from './NoEncryptionGmailerrorredSharp'; -export { default as NoEncryptionGmailerrorredTwoTone } from './NoEncryptionGmailerrorredTwoTone'; -export { default as NoEncryptionOutlined } from './NoEncryptionOutlined'; -export { default as NoEncryptionRounded } from './NoEncryptionRounded'; -export { default as NoEncryptionSharp } from './NoEncryptionSharp'; -export { default as NoEncryptionTwoTone } from './NoEncryptionTwoTone'; -export { default as NoFlash } from './NoFlash'; -export { default as NoFlashOutlined } from './NoFlashOutlined'; -export { default as NoFlashRounded } from './NoFlashRounded'; -export { default as NoFlashSharp } from './NoFlashSharp'; -export { default as NoFlashTwoTone } from './NoFlashTwoTone'; -export { default as NoFood } from './NoFood'; -export { default as NoFoodOutlined } from './NoFoodOutlined'; -export { default as NoFoodRounded } from './NoFoodRounded'; -export { default as NoFoodSharp } from './NoFoodSharp'; -export { default as NoFoodTwoTone } from './NoFoodTwoTone'; -export { default as NoLuggage } from './NoLuggage'; -export { default as NoLuggageOutlined } from './NoLuggageOutlined'; -export { default as NoLuggageRounded } from './NoLuggageRounded'; -export { default as NoLuggageSharp } from './NoLuggageSharp'; -export { default as NoLuggageTwoTone } from './NoLuggageTwoTone'; -export { default as NoMeals } from './NoMeals'; -export { default as NoMealsOutlined } from './NoMealsOutlined'; -export { default as NoMealsRounded } from './NoMealsRounded'; -export { default as NoMealsSharp } from './NoMealsSharp'; -export { default as NoMealsTwoTone } from './NoMealsTwoTone'; -export { default as NoMeetingRoom } from './NoMeetingRoom'; -export { default as NoMeetingRoomOutlined } from './NoMeetingRoomOutlined'; -export { default as NoMeetingRoomRounded } from './NoMeetingRoomRounded'; -export { default as NoMeetingRoomSharp } from './NoMeetingRoomSharp'; -export { default as NoMeetingRoomTwoTone } from './NoMeetingRoomTwoTone'; -export { default as NoPhotography } from './NoPhotography'; -export { default as NoPhotographyOutlined } from './NoPhotographyOutlined'; -export { default as NoPhotographyRounded } from './NoPhotographyRounded'; -export { default as NoPhotographySharp } from './NoPhotographySharp'; -export { default as NoPhotographyTwoTone } from './NoPhotographyTwoTone'; -export { default as NoSim } from './NoSim'; -export { default as NoSimOutlined } from './NoSimOutlined'; -export { default as NoSimRounded } from './NoSimRounded'; -export { default as NoSimSharp } from './NoSimSharp'; -export { default as NoSimTwoTone } from './NoSimTwoTone'; -export { default as NoStroller } from './NoStroller'; -export { default as NoStrollerOutlined } from './NoStrollerOutlined'; -export { default as NoStrollerRounded } from './NoStrollerRounded'; -export { default as NoStrollerSharp } from './NoStrollerSharp'; -export { default as NoStrollerTwoTone } from './NoStrollerTwoTone'; -export { default as NoTransfer } from './NoTransfer'; -export { default as NoTransferOutlined } from './NoTransferOutlined'; -export { default as NoTransferRounded } from './NoTransferRounded'; -export { default as NoTransferSharp } from './NoTransferSharp'; -export { default as NoTransferTwoTone } from './NoTransferTwoTone'; -export { default as NordicWalking } from './NordicWalking'; -export { default as NordicWalkingOutlined } from './NordicWalkingOutlined'; -export { default as NordicWalkingRounded } from './NordicWalkingRounded'; -export { default as NordicWalkingSharp } from './NordicWalkingSharp'; -export { default as NordicWalkingTwoTone } from './NordicWalkingTwoTone'; -export { default as North } from './North'; -export { default as NorthEast } from './NorthEast'; -export { default as NorthEastOutlined } from './NorthEastOutlined'; -export { default as NorthEastRounded } from './NorthEastRounded'; -export { default as NorthEastSharp } from './NorthEastSharp'; -export { default as NorthEastTwoTone } from './NorthEastTwoTone'; -export { default as NorthOutlined } from './NorthOutlined'; -export { default as NorthRounded } from './NorthRounded'; -export { default as NorthSharp } from './NorthSharp'; -export { default as NorthTwoTone } from './NorthTwoTone'; -export { default as NorthWest } from './NorthWest'; -export { default as NorthWestOutlined } from './NorthWestOutlined'; -export { default as NorthWestRounded } from './NorthWestRounded'; -export { default as NorthWestSharp } from './NorthWestSharp'; -export { default as NorthWestTwoTone } from './NorthWestTwoTone'; -export { default as NotAccessible } from './NotAccessible'; -export { default as NotAccessibleOutlined } from './NotAccessibleOutlined'; -export { default as NotAccessibleRounded } from './NotAccessibleRounded'; -export { default as NotAccessibleSharp } from './NotAccessibleSharp'; -export { default as NotAccessibleTwoTone } from './NotAccessibleTwoTone'; -export { default as NotInterested } from './NotInterested'; -export { default as NotInterestedOutlined } from './NotInterestedOutlined'; -export { default as NotInterestedRounded } from './NotInterestedRounded'; -export { default as NotInterestedSharp } from './NotInterestedSharp'; -export { default as NotInterestedTwoTone } from './NotInterestedTwoTone'; -export { default as NotListedLocation } from './NotListedLocation'; -export { default as NotListedLocationOutlined } from './NotListedLocationOutlined'; -export { default as NotListedLocationRounded } from './NotListedLocationRounded'; -export { default as NotListedLocationSharp } from './NotListedLocationSharp'; -export { default as NotListedLocationTwoTone } from './NotListedLocationTwoTone'; -export { default as NotStarted } from './NotStarted'; -export { default as NotStartedOutlined } from './NotStartedOutlined'; -export { default as NotStartedRounded } from './NotStartedRounded'; -export { default as NotStartedSharp } from './NotStartedSharp'; -export { default as NotStartedTwoTone } from './NotStartedTwoTone'; -export { default as Note } from './Note'; -export { default as NoteAdd } from './NoteAdd'; -export { default as NoteAddOutlined } from './NoteAddOutlined'; -export { default as NoteAddRounded } from './NoteAddRounded'; -export { default as NoteAddSharp } from './NoteAddSharp'; -export { default as NoteAddTwoTone } from './NoteAddTwoTone'; -export { default as NoteAlt } from './NoteAlt'; -export { default as NoteAltOutlined } from './NoteAltOutlined'; -export { default as NoteAltRounded } from './NoteAltRounded'; -export { default as NoteAltSharp } from './NoteAltSharp'; -export { default as NoteAltTwoTone } from './NoteAltTwoTone'; -export { default as NoteOutlined } from './NoteOutlined'; -export { default as NoteRounded } from './NoteRounded'; -export { default as NoteSharp } from './NoteSharp'; -export { default as NoteTwoTone } from './NoteTwoTone'; -export { default as Notes } from './Notes'; -export { default as NotesOutlined } from './NotesOutlined'; -export { default as NotesRounded } from './NotesRounded'; -export { default as NotesSharp } from './NotesSharp'; -export { default as NotesTwoTone } from './NotesTwoTone'; -export { default as NotificationAdd } from './NotificationAdd'; -export { default as NotificationAddOutlined } from './NotificationAddOutlined'; -export { default as NotificationAddRounded } from './NotificationAddRounded'; -export { default as NotificationAddSharp } from './NotificationAddSharp'; -export { default as NotificationAddTwoTone } from './NotificationAddTwoTone'; -export { default as NotificationImportant } from './NotificationImportant'; -export { default as NotificationImportantOutlined } from './NotificationImportantOutlined'; -export { default as NotificationImportantRounded } from './NotificationImportantRounded'; -export { default as NotificationImportantSharp } from './NotificationImportantSharp'; -export { default as NotificationImportantTwoTone } from './NotificationImportantTwoTone'; -export { default as Notifications } from './Notifications'; -export { default as NotificationsActive } from './NotificationsActive'; -export { default as NotificationsActiveOutlined } from './NotificationsActiveOutlined'; -export { default as NotificationsActiveRounded } from './NotificationsActiveRounded'; -export { default as NotificationsActiveSharp } from './NotificationsActiveSharp'; -export { default as NotificationsActiveTwoTone } from './NotificationsActiveTwoTone'; -export { default as NotificationsNone } from './NotificationsNone'; -export { default as NotificationsNoneOutlined } from './NotificationsNoneOutlined'; -export { default as NotificationsNoneRounded } from './NotificationsNoneRounded'; -export { default as NotificationsNoneSharp } from './NotificationsNoneSharp'; -export { default as NotificationsNoneTwoTone } from './NotificationsNoneTwoTone'; -export { default as NotificationsOff } from './NotificationsOff'; -export { default as NotificationsOffOutlined } from './NotificationsOffOutlined'; -export { default as NotificationsOffRounded } from './NotificationsOffRounded'; -export { default as NotificationsOffSharp } from './NotificationsOffSharp'; -export { default as NotificationsOffTwoTone } from './NotificationsOffTwoTone'; -export { default as NotificationsOutlined } from './NotificationsOutlined'; -export { default as NotificationsPaused } from './NotificationsPaused'; -export { default as NotificationsPausedOutlined } from './NotificationsPausedOutlined'; -export { default as NotificationsPausedRounded } from './NotificationsPausedRounded'; -export { default as NotificationsPausedSharp } from './NotificationsPausedSharp'; -export { default as NotificationsPausedTwoTone } from './NotificationsPausedTwoTone'; -export { default as NotificationsRounded } from './NotificationsRounded'; -export { default as NotificationsSharp } from './NotificationsSharp'; -export { default as NotificationsTwoTone } from './NotificationsTwoTone'; -export { default as OfflineBolt } from './OfflineBolt'; -export { default as OfflineBoltOutlined } from './OfflineBoltOutlined'; -export { default as OfflineBoltRounded } from './OfflineBoltRounded'; -export { default as OfflineBoltSharp } from './OfflineBoltSharp'; -export { default as OfflineBoltTwoTone } from './OfflineBoltTwoTone'; -export { default as OfflinePin } from './OfflinePin'; -export { default as OfflinePinOutlined } from './OfflinePinOutlined'; -export { default as OfflinePinRounded } from './OfflinePinRounded'; -export { default as OfflinePinSharp } from './OfflinePinSharp'; -export { default as OfflinePinTwoTone } from './OfflinePinTwoTone'; -export { default as OfflineShare } from './OfflineShare'; -export { default as OfflineShareOutlined } from './OfflineShareOutlined'; -export { default as OfflineShareRounded } from './OfflineShareRounded'; -export { default as OfflineShareSharp } from './OfflineShareSharp'; -export { default as OfflineShareTwoTone } from './OfflineShareTwoTone'; -export { default as OndemandVideo } from './OndemandVideo'; -export { default as OndemandVideoOutlined } from './OndemandVideoOutlined'; -export { default as OndemandVideoRounded } from './OndemandVideoRounded'; -export { default as OndemandVideoSharp } from './OndemandVideoSharp'; -export { default as OndemandVideoTwoTone } from './OndemandVideoTwoTone'; -export { default as OneK } from './OneK'; -export { default as OneKOutlined } from './OneKOutlined'; -export { default as OneKPlus } from './OneKPlus'; -export { default as OneKPlusOutlined } from './OneKPlusOutlined'; -export { default as OneKPlusRounded } from './OneKPlusRounded'; -export { default as OneKPlusSharp } from './OneKPlusSharp'; -export { default as OneKPlusTwoTone } from './OneKPlusTwoTone'; -export { default as OneKRounded } from './OneKRounded'; -export { default as OneKSharp } from './OneKSharp'; -export { default as OneKTwoTone } from './OneKTwoTone'; -export { default as OneKk } from './OneKk'; -export { default as OneKkOutlined } from './OneKkOutlined'; -export { default as OneKkRounded } from './OneKkRounded'; -export { default as OneKkSharp } from './OneKkSharp'; -export { default as OneKkTwoTone } from './OneKkTwoTone'; -export { default as OnlinePrediction } from './OnlinePrediction'; -export { default as OnlinePredictionOutlined } from './OnlinePredictionOutlined'; -export { default as OnlinePredictionRounded } from './OnlinePredictionRounded'; -export { default as OnlinePredictionSharp } from './OnlinePredictionSharp'; -export { default as OnlinePredictionTwoTone } from './OnlinePredictionTwoTone'; -export { default as Opacity } from './Opacity'; -export { default as OpacityOutlined } from './OpacityOutlined'; -export { default as OpacityRounded } from './OpacityRounded'; -export { default as OpacitySharp } from './OpacitySharp'; -export { default as OpacityTwoTone } from './OpacityTwoTone'; -export { default as OpenInBrowser } from './OpenInBrowser'; -export { default as OpenInBrowserOutlined } from './OpenInBrowserOutlined'; -export { default as OpenInBrowserRounded } from './OpenInBrowserRounded'; -export { default as OpenInBrowserSharp } from './OpenInBrowserSharp'; -export { default as OpenInBrowserTwoTone } from './OpenInBrowserTwoTone'; -export { default as OpenInFull } from './OpenInFull'; -export { default as OpenInFullOutlined } from './OpenInFullOutlined'; -export { default as OpenInFullRounded } from './OpenInFullRounded'; -export { default as OpenInFullSharp } from './OpenInFullSharp'; -export { default as OpenInFullTwoTone } from './OpenInFullTwoTone'; -export { default as OpenInNew } from './OpenInNew'; -export { default as OpenInNewOff } from './OpenInNewOff'; -export { default as OpenInNewOffOutlined } from './OpenInNewOffOutlined'; -export { default as OpenInNewOffRounded } from './OpenInNewOffRounded'; -export { default as OpenInNewOffSharp } from './OpenInNewOffSharp'; -export { default as OpenInNewOffTwoTone } from './OpenInNewOffTwoTone'; -export { default as OpenInNewOutlined } from './OpenInNewOutlined'; -export { default as OpenInNewRounded } from './OpenInNewRounded'; -export { default as OpenInNewSharp } from './OpenInNewSharp'; -export { default as OpenInNewTwoTone } from './OpenInNewTwoTone'; -export { default as OpenWith } from './OpenWith'; -export { default as OpenWithOutlined } from './OpenWithOutlined'; -export { default as OpenWithRounded } from './OpenWithRounded'; -export { default as OpenWithSharp } from './OpenWithSharp'; -export { default as OpenWithTwoTone } from './OpenWithTwoTone'; -export { default as OtherHouses } from './OtherHouses'; -export { default as OtherHousesOutlined } from './OtherHousesOutlined'; -export { default as OtherHousesRounded } from './OtherHousesRounded'; -export { default as OtherHousesSharp } from './OtherHousesSharp'; -export { default as OtherHousesTwoTone } from './OtherHousesTwoTone'; -export { default as Outbound } from './Outbound'; -export { default as OutboundOutlined } from './OutboundOutlined'; -export { default as OutboundRounded } from './OutboundRounded'; -export { default as OutboundSharp } from './OutboundSharp'; -export { default as OutboundTwoTone } from './OutboundTwoTone'; -export { default as Outbox } from './Outbox'; -export { default as OutboxOutlined } from './OutboxOutlined'; -export { default as OutboxRounded } from './OutboxRounded'; -export { default as OutboxSharp } from './OutboxSharp'; -export { default as OutboxTwoTone } from './OutboxTwoTone'; -export { default as OutdoorGrill } from './OutdoorGrill'; -export { default as OutdoorGrillOutlined } from './OutdoorGrillOutlined'; -export { default as OutdoorGrillRounded } from './OutdoorGrillRounded'; -export { default as OutdoorGrillSharp } from './OutdoorGrillSharp'; -export { default as OutdoorGrillTwoTone } from './OutdoorGrillTwoTone'; -export { default as Outlet } from './Outlet'; -export { default as OutletOutlined } from './OutletOutlined'; -export { default as OutletRounded } from './OutletRounded'; -export { default as OutletSharp } from './OutletSharp'; -export { default as OutletTwoTone } from './OutletTwoTone'; -export { default as OutlinedFlag } from './OutlinedFlag'; -export { default as OutlinedFlagOutlined } from './OutlinedFlagOutlined'; -export { default as OutlinedFlagRounded } from './OutlinedFlagRounded'; -export { default as OutlinedFlagSharp } from './OutlinedFlagSharp'; -export { default as OutlinedFlagTwoTone } from './OutlinedFlagTwoTone'; -export { default as Padding } from './Padding'; -export { default as PaddingOutlined } from './PaddingOutlined'; -export { default as PaddingRounded } from './PaddingRounded'; -export { default as PaddingSharp } from './PaddingSharp'; -export { default as PaddingTwoTone } from './PaddingTwoTone'; -export { default as Pages } from './Pages'; -export { default as PagesOutlined } from './PagesOutlined'; -export { default as PagesRounded } from './PagesRounded'; -export { default as PagesSharp } from './PagesSharp'; -export { default as PagesTwoTone } from './PagesTwoTone'; -export { default as Pageview } from './Pageview'; -export { default as PageviewOutlined } from './PageviewOutlined'; -export { default as PageviewRounded } from './PageviewRounded'; -export { default as PageviewSharp } from './PageviewSharp'; -export { default as PageviewTwoTone } from './PageviewTwoTone'; -export { default as Paid } from './Paid'; -export { default as PaidOutlined } from './PaidOutlined'; -export { default as PaidRounded } from './PaidRounded'; -export { default as PaidSharp } from './PaidSharp'; -export { default as PaidTwoTone } from './PaidTwoTone'; -export { default as Palette } from './Palette'; -export { default as PaletteOutlined } from './PaletteOutlined'; -export { default as PaletteRounded } from './PaletteRounded'; -export { default as PaletteSharp } from './PaletteSharp'; -export { default as PaletteTwoTone } from './PaletteTwoTone'; -export { default as PanTool } from './PanTool'; -export { default as PanToolOutlined } from './PanToolOutlined'; -export { default as PanToolRounded } from './PanToolRounded'; -export { default as PanToolSharp } from './PanToolSharp'; -export { default as PanToolTwoTone } from './PanToolTwoTone'; -export { default as Panorama } from './Panorama'; -export { default as PanoramaFishEye } from './PanoramaFishEye'; -export { default as PanoramaFishEyeOutlined } from './PanoramaFishEyeOutlined'; -export { default as PanoramaFishEyeRounded } from './PanoramaFishEyeRounded'; -export { default as PanoramaFishEyeSharp } from './PanoramaFishEyeSharp'; -export { default as PanoramaFishEyeTwoTone } from './PanoramaFishEyeTwoTone'; -export { default as PanoramaHorizontal } from './PanoramaHorizontal'; -export { default as PanoramaHorizontalOutlined } from './PanoramaHorizontalOutlined'; -export { default as PanoramaHorizontalRounded } from './PanoramaHorizontalRounded'; -export { default as PanoramaHorizontalSelect } from './PanoramaHorizontalSelect'; -export { default as PanoramaHorizontalSelectOutlined } from './PanoramaHorizontalSelectOutlined'; -export { default as PanoramaHorizontalSelectRounded } from './PanoramaHorizontalSelectRounded'; -export { default as PanoramaHorizontalSelectSharp } from './PanoramaHorizontalSelectSharp'; -export { default as PanoramaHorizontalSelectTwoTone } from './PanoramaHorizontalSelectTwoTone'; -export { default as PanoramaHorizontalSharp } from './PanoramaHorizontalSharp'; -export { default as PanoramaHorizontalTwoTone } from './PanoramaHorizontalTwoTone'; -export { default as PanoramaOutlined } from './PanoramaOutlined'; -export { default as PanoramaPhotosphere } from './PanoramaPhotosphere'; -export { default as PanoramaPhotosphereOutlined } from './PanoramaPhotosphereOutlined'; -export { default as PanoramaPhotosphereRounded } from './PanoramaPhotosphereRounded'; -export { default as PanoramaPhotosphereSelect } from './PanoramaPhotosphereSelect'; -export { default as PanoramaPhotosphereSelectOutlined } from './PanoramaPhotosphereSelectOutlined'; -export { default as PanoramaPhotosphereSelectRounded } from './PanoramaPhotosphereSelectRounded'; -export { default as PanoramaPhotosphereSelectSharp } from './PanoramaPhotosphereSelectSharp'; -export { default as PanoramaPhotosphereSelectTwoTone } from './PanoramaPhotosphereSelectTwoTone'; -export { default as PanoramaPhotosphereSharp } from './PanoramaPhotosphereSharp'; -export { default as PanoramaPhotosphereTwoTone } from './PanoramaPhotosphereTwoTone'; -export { default as PanoramaRounded } from './PanoramaRounded'; -export { default as PanoramaSharp } from './PanoramaSharp'; -export { default as PanoramaTwoTone } from './PanoramaTwoTone'; -export { default as PanoramaVertical } from './PanoramaVertical'; -export { default as PanoramaVerticalOutlined } from './PanoramaVerticalOutlined'; -export { default as PanoramaVerticalRounded } from './PanoramaVerticalRounded'; -export { default as PanoramaVerticalSelect } from './PanoramaVerticalSelect'; -export { default as PanoramaVerticalSelectOutlined } from './PanoramaVerticalSelectOutlined'; -export { default as PanoramaVerticalSelectRounded } from './PanoramaVerticalSelectRounded'; -export { default as PanoramaVerticalSelectSharp } from './PanoramaVerticalSelectSharp'; -export { default as PanoramaVerticalSelectTwoTone } from './PanoramaVerticalSelectTwoTone'; -export { default as PanoramaVerticalSharp } from './PanoramaVerticalSharp'; -export { default as PanoramaVerticalTwoTone } from './PanoramaVerticalTwoTone'; -export { default as PanoramaWideAngle } from './PanoramaWideAngle'; -export { default as PanoramaWideAngleOutlined } from './PanoramaWideAngleOutlined'; -export { default as PanoramaWideAngleRounded } from './PanoramaWideAngleRounded'; -export { default as PanoramaWideAngleSelect } from './PanoramaWideAngleSelect'; -export { default as PanoramaWideAngleSelectOutlined } from './PanoramaWideAngleSelectOutlined'; -export { default as PanoramaWideAngleSelectRounded } from './PanoramaWideAngleSelectRounded'; -export { default as PanoramaWideAngleSelectSharp } from './PanoramaWideAngleSelectSharp'; -export { default as PanoramaWideAngleSelectTwoTone } from './PanoramaWideAngleSelectTwoTone'; -export { default as PanoramaWideAngleSharp } from './PanoramaWideAngleSharp'; -export { default as PanoramaWideAngleTwoTone } from './PanoramaWideAngleTwoTone'; -export { default as Paragliding } from './Paragliding'; -export { default as ParaglidingOutlined } from './ParaglidingOutlined'; -export { default as ParaglidingRounded } from './ParaglidingRounded'; -export { default as ParaglidingSharp } from './ParaglidingSharp'; -export { default as ParaglidingTwoTone } from './ParaglidingTwoTone'; -export { default as Park } from './Park'; -export { default as ParkOutlined } from './ParkOutlined'; -export { default as ParkRounded } from './ParkRounded'; -export { default as ParkSharp } from './ParkSharp'; -export { default as ParkTwoTone } from './ParkTwoTone'; -export { default as PartyMode } from './PartyMode'; -export { default as PartyModeOutlined } from './PartyModeOutlined'; -export { default as PartyModeRounded } from './PartyModeRounded'; -export { default as PartyModeSharp } from './PartyModeSharp'; -export { default as PartyModeTwoTone } from './PartyModeTwoTone'; -export { default as Password } from './Password'; -export { default as PasswordOutlined } from './PasswordOutlined'; -export { default as PasswordRounded } from './PasswordRounded'; -export { default as PasswordSharp } from './PasswordSharp'; -export { default as PasswordTwoTone } from './PasswordTwoTone'; -export { default as Pattern } from './Pattern'; -export { default as PatternOutlined } from './PatternOutlined'; -export { default as PatternRounded } from './PatternRounded'; -export { default as PatternSharp } from './PatternSharp'; -export { default as PatternTwoTone } from './PatternTwoTone'; -export { default as Pause } from './Pause'; -export { default as PauseCircle } from './PauseCircle'; -export { default as PauseCircleFilled } from './PauseCircleFilled'; -export { default as PauseCircleFilledOutlined } from './PauseCircleFilledOutlined'; -export { default as PauseCircleFilledRounded } from './PauseCircleFilledRounded'; -export { default as PauseCircleFilledSharp } from './PauseCircleFilledSharp'; -export { default as PauseCircleFilledTwoTone } from './PauseCircleFilledTwoTone'; -export { default as PauseCircleOutline } from './PauseCircleOutline'; -export { default as PauseCircleOutlineOutlined } from './PauseCircleOutlineOutlined'; -export { default as PauseCircleOutlineRounded } from './PauseCircleOutlineRounded'; -export { default as PauseCircleOutlineSharp } from './PauseCircleOutlineSharp'; -export { default as PauseCircleOutlineTwoTone } from './PauseCircleOutlineTwoTone'; -export { default as PauseCircleOutlined } from './PauseCircleOutlined'; -export { default as PauseCircleRounded } from './PauseCircleRounded'; -export { default as PauseCircleSharp } from './PauseCircleSharp'; -export { default as PauseCircleTwoTone } from './PauseCircleTwoTone'; -export { default as PauseOutlined } from './PauseOutlined'; -export { default as PausePresentation } from './PausePresentation'; -export { default as PausePresentationOutlined } from './PausePresentationOutlined'; -export { default as PausePresentationRounded } from './PausePresentationRounded'; -export { default as PausePresentationSharp } from './PausePresentationSharp'; -export { default as PausePresentationTwoTone } from './PausePresentationTwoTone'; -export { default as PauseRounded } from './PauseRounded'; -export { default as PauseSharp } from './PauseSharp'; -export { default as PauseTwoTone } from './PauseTwoTone'; -export { default as Payment } from './Payment'; -export { default as PaymentOutlined } from './PaymentOutlined'; -export { default as PaymentRounded } from './PaymentRounded'; -export { default as PaymentSharp } from './PaymentSharp'; -export { default as PaymentTwoTone } from './PaymentTwoTone'; -export { default as Payments } from './Payments'; -export { default as PaymentsOutlined } from './PaymentsOutlined'; -export { default as PaymentsRounded } from './PaymentsRounded'; -export { default as PaymentsSharp } from './PaymentsSharp'; -export { default as PaymentsTwoTone } from './PaymentsTwoTone'; -export { default as PedalBike } from './PedalBike'; -export { default as PedalBikeOutlined } from './PedalBikeOutlined'; -export { default as PedalBikeRounded } from './PedalBikeRounded'; -export { default as PedalBikeSharp } from './PedalBikeSharp'; -export { default as PedalBikeTwoTone } from './PedalBikeTwoTone'; -export { default as Pending } from './Pending'; -export { default as PendingActions } from './PendingActions'; -export { default as PendingActionsOutlined } from './PendingActionsOutlined'; -export { default as PendingActionsRounded } from './PendingActionsRounded'; -export { default as PendingActionsSharp } from './PendingActionsSharp'; -export { default as PendingActionsTwoTone } from './PendingActionsTwoTone'; -export { default as PendingOutlined } from './PendingOutlined'; -export { default as PendingRounded } from './PendingRounded'; -export { default as PendingSharp } from './PendingSharp'; -export { default as PendingTwoTone } from './PendingTwoTone'; -export { default as People } from './People'; -export { default as PeopleAlt } from './PeopleAlt'; -export { default as PeopleAltOutlined } from './PeopleAltOutlined'; -export { default as PeopleAltRounded } from './PeopleAltRounded'; -export { default as PeopleAltSharp } from './PeopleAltSharp'; -export { default as PeopleAltTwoTone } from './PeopleAltTwoTone'; -export { default as PeopleOutline } from './PeopleOutline'; -export { default as PeopleOutlineOutlined } from './PeopleOutlineOutlined'; -export { default as PeopleOutlineRounded } from './PeopleOutlineRounded'; -export { default as PeopleOutlineSharp } from './PeopleOutlineSharp'; -export { default as PeopleOutlineTwoTone } from './PeopleOutlineTwoTone'; -export { default as PeopleOutlined } from './PeopleOutlined'; -export { default as PeopleRounded } from './PeopleRounded'; -export { default as PeopleSharp } from './PeopleSharp'; -export { default as PeopleTwoTone } from './PeopleTwoTone'; -export { default as PermCameraMic } from './PermCameraMic'; -export { default as PermCameraMicOutlined } from './PermCameraMicOutlined'; -export { default as PermCameraMicRounded } from './PermCameraMicRounded'; -export { default as PermCameraMicSharp } from './PermCameraMicSharp'; -export { default as PermCameraMicTwoTone } from './PermCameraMicTwoTone'; -export { default as PermContactCalendar } from './PermContactCalendar'; -export { default as PermContactCalendarOutlined } from './PermContactCalendarOutlined'; -export { default as PermContactCalendarRounded } from './PermContactCalendarRounded'; -export { default as PermContactCalendarSharp } from './PermContactCalendarSharp'; -export { default as PermContactCalendarTwoTone } from './PermContactCalendarTwoTone'; -export { default as PermDataSetting } from './PermDataSetting'; -export { default as PermDataSettingOutlined } from './PermDataSettingOutlined'; -export { default as PermDataSettingRounded } from './PermDataSettingRounded'; -export { default as PermDataSettingSharp } from './PermDataSettingSharp'; -export { default as PermDataSettingTwoTone } from './PermDataSettingTwoTone'; -export { default as PermDeviceInformation } from './PermDeviceInformation'; -export { default as PermDeviceInformationOutlined } from './PermDeviceInformationOutlined'; -export { default as PermDeviceInformationRounded } from './PermDeviceInformationRounded'; -export { default as PermDeviceInformationSharp } from './PermDeviceInformationSharp'; -export { default as PermDeviceInformationTwoTone } from './PermDeviceInformationTwoTone'; -export { default as PermIdentity } from './PermIdentity'; -export { default as PermIdentityOutlined } from './PermIdentityOutlined'; -export { default as PermIdentityRounded } from './PermIdentityRounded'; -export { default as PermIdentitySharp } from './PermIdentitySharp'; -export { default as PermIdentityTwoTone } from './PermIdentityTwoTone'; -export { default as PermMedia } from './PermMedia'; -export { default as PermMediaOutlined } from './PermMediaOutlined'; -export { default as PermMediaRounded } from './PermMediaRounded'; -export { default as PermMediaSharp } from './PermMediaSharp'; -export { default as PermMediaTwoTone } from './PermMediaTwoTone'; -export { default as PermPhoneMsg } from './PermPhoneMsg'; -export { default as PermPhoneMsgOutlined } from './PermPhoneMsgOutlined'; -export { default as PermPhoneMsgRounded } from './PermPhoneMsgRounded'; -export { default as PermPhoneMsgSharp } from './PermPhoneMsgSharp'; -export { default as PermPhoneMsgTwoTone } from './PermPhoneMsgTwoTone'; -export { default as PermScanWifi } from './PermScanWifi'; -export { default as PermScanWifiOutlined } from './PermScanWifiOutlined'; -export { default as PermScanWifiRounded } from './PermScanWifiRounded'; -export { default as PermScanWifiSharp } from './PermScanWifiSharp'; -export { default as PermScanWifiTwoTone } from './PermScanWifiTwoTone'; -export { default as Person } from './Person'; -export { default as PersonAdd } from './PersonAdd'; -export { default as PersonAddAlt } from './PersonAddAlt'; -export { default as PersonAddAlt1 } from './PersonAddAlt1'; -export { default as PersonAddAlt1Outlined } from './PersonAddAlt1Outlined'; -export { default as PersonAddAlt1Rounded } from './PersonAddAlt1Rounded'; -export { default as PersonAddAlt1Sharp } from './PersonAddAlt1Sharp'; -export { default as PersonAddAlt1TwoTone } from './PersonAddAlt1TwoTone'; -export { default as PersonAddAltOutlined } from './PersonAddAltOutlined'; -export { default as PersonAddAltRounded } from './PersonAddAltRounded'; -export { default as PersonAddAltSharp } from './PersonAddAltSharp'; -export { default as PersonAddAltTwoTone } from './PersonAddAltTwoTone'; -export { default as PersonAddDisabled } from './PersonAddDisabled'; -export { default as PersonAddDisabledOutlined } from './PersonAddDisabledOutlined'; -export { default as PersonAddDisabledRounded } from './PersonAddDisabledRounded'; -export { default as PersonAddDisabledSharp } from './PersonAddDisabledSharp'; -export { default as PersonAddDisabledTwoTone } from './PersonAddDisabledTwoTone'; -export { default as PersonAddOutlined } from './PersonAddOutlined'; -export { default as PersonAddRounded } from './PersonAddRounded'; -export { default as PersonAddSharp } from './PersonAddSharp'; -export { default as PersonAddTwoTone } from './PersonAddTwoTone'; -export { default as PersonOff } from './PersonOff'; -export { default as PersonOffOutlined } from './PersonOffOutlined'; -export { default as PersonOffRounded } from './PersonOffRounded'; -export { default as PersonOffSharp } from './PersonOffSharp'; -export { default as PersonOffTwoTone } from './PersonOffTwoTone'; -export { default as PersonOutline } from './PersonOutline'; -export { default as PersonOutlineOutlined } from './PersonOutlineOutlined'; -export { default as PersonOutlineRounded } from './PersonOutlineRounded'; -export { default as PersonOutlineSharp } from './PersonOutlineSharp'; -export { default as PersonOutlineTwoTone } from './PersonOutlineTwoTone'; -export { default as PersonOutlined } from './PersonOutlined'; -export { default as PersonPin } from './PersonPin'; -export { default as PersonPinCircle } from './PersonPinCircle'; -export { default as PersonPinCircleOutlined } from './PersonPinCircleOutlined'; -export { default as PersonPinCircleRounded } from './PersonPinCircleRounded'; -export { default as PersonPinCircleSharp } from './PersonPinCircleSharp'; -export { default as PersonPinCircleTwoTone } from './PersonPinCircleTwoTone'; -export { default as PersonPinOutlined } from './PersonPinOutlined'; -export { default as PersonPinRounded } from './PersonPinRounded'; -export { default as PersonPinSharp } from './PersonPinSharp'; -export { default as PersonPinTwoTone } from './PersonPinTwoTone'; -export { default as PersonRemove } from './PersonRemove'; -export { default as PersonRemoveAlt1 } from './PersonRemoveAlt1'; -export { default as PersonRemoveAlt1Outlined } from './PersonRemoveAlt1Outlined'; -export { default as PersonRemoveAlt1Rounded } from './PersonRemoveAlt1Rounded'; -export { default as PersonRemoveAlt1Sharp } from './PersonRemoveAlt1Sharp'; -export { default as PersonRemoveAlt1TwoTone } from './PersonRemoveAlt1TwoTone'; -export { default as PersonRemoveOutlined } from './PersonRemoveOutlined'; -export { default as PersonRemoveRounded } from './PersonRemoveRounded'; -export { default as PersonRemoveSharp } from './PersonRemoveSharp'; -export { default as PersonRemoveTwoTone } from './PersonRemoveTwoTone'; -export { default as PersonRounded } from './PersonRounded'; -export { default as PersonSearch } from './PersonSearch'; -export { default as PersonSearchOutlined } from './PersonSearchOutlined'; -export { default as PersonSearchRounded } from './PersonSearchRounded'; -export { default as PersonSearchSharp } from './PersonSearchSharp'; -export { default as PersonSearchTwoTone } from './PersonSearchTwoTone'; -export { default as PersonSharp } from './PersonSharp'; -export { default as PersonTwoTone } from './PersonTwoTone'; -export { default as PersonalVideo } from './PersonalVideo'; -export { default as PersonalVideoOutlined } from './PersonalVideoOutlined'; -export { default as PersonalVideoRounded } from './PersonalVideoRounded'; -export { default as PersonalVideoSharp } from './PersonalVideoSharp'; -export { default as PersonalVideoTwoTone } from './PersonalVideoTwoTone'; -export { default as PestControl } from './PestControl'; -export { default as PestControlOutlined } from './PestControlOutlined'; -export { default as PestControlRodent } from './PestControlRodent'; -export { default as PestControlRodentOutlined } from './PestControlRodentOutlined'; -export { default as PestControlRodentRounded } from './PestControlRodentRounded'; -export { default as PestControlRodentSharp } from './PestControlRodentSharp'; -export { default as PestControlRodentTwoTone } from './PestControlRodentTwoTone'; -export { default as PestControlRounded } from './PestControlRounded'; -export { default as PestControlSharp } from './PestControlSharp'; -export { default as PestControlTwoTone } from './PestControlTwoTone'; -export { default as Pets } from './Pets'; -export { default as PetsOutlined } from './PetsOutlined'; -export { default as PetsRounded } from './PetsRounded'; -export { default as PetsSharp } from './PetsSharp'; -export { default as PetsTwoTone } from './PetsTwoTone'; -export { default as Phone } from './Phone'; -export { default as PhoneAndroid } from './PhoneAndroid'; -export { default as PhoneAndroidOutlined } from './PhoneAndroidOutlined'; -export { default as PhoneAndroidRounded } from './PhoneAndroidRounded'; -export { default as PhoneAndroidSharp } from './PhoneAndroidSharp'; -export { default as PhoneAndroidTwoTone } from './PhoneAndroidTwoTone'; -export { default as PhoneBluetoothSpeaker } from './PhoneBluetoothSpeaker'; -export { default as PhoneBluetoothSpeakerOutlined } from './PhoneBluetoothSpeakerOutlined'; -export { default as PhoneBluetoothSpeakerRounded } from './PhoneBluetoothSpeakerRounded'; -export { default as PhoneBluetoothSpeakerSharp } from './PhoneBluetoothSpeakerSharp'; -export { default as PhoneBluetoothSpeakerTwoTone } from './PhoneBluetoothSpeakerTwoTone'; -export { default as PhoneCallback } from './PhoneCallback'; -export { default as PhoneCallbackOutlined } from './PhoneCallbackOutlined'; -export { default as PhoneCallbackRounded } from './PhoneCallbackRounded'; -export { default as PhoneCallbackSharp } from './PhoneCallbackSharp'; -export { default as PhoneCallbackTwoTone } from './PhoneCallbackTwoTone'; -export { default as PhoneDisabled } from './PhoneDisabled'; -export { default as PhoneDisabledOutlined } from './PhoneDisabledOutlined'; -export { default as PhoneDisabledRounded } from './PhoneDisabledRounded'; -export { default as PhoneDisabledSharp } from './PhoneDisabledSharp'; -export { default as PhoneDisabledTwoTone } from './PhoneDisabledTwoTone'; -export { default as PhoneEnabled } from './PhoneEnabled'; -export { default as PhoneEnabledOutlined } from './PhoneEnabledOutlined'; -export { default as PhoneEnabledRounded } from './PhoneEnabledRounded'; -export { default as PhoneEnabledSharp } from './PhoneEnabledSharp'; -export { default as PhoneEnabledTwoTone } from './PhoneEnabledTwoTone'; -export { default as PhoneForwarded } from './PhoneForwarded'; -export { default as PhoneForwardedOutlined } from './PhoneForwardedOutlined'; -export { default as PhoneForwardedRounded } from './PhoneForwardedRounded'; -export { default as PhoneForwardedSharp } from './PhoneForwardedSharp'; -export { default as PhoneForwardedTwoTone } from './PhoneForwardedTwoTone'; -export { default as PhoneInTalk } from './PhoneInTalk'; -export { default as PhoneInTalkOutlined } from './PhoneInTalkOutlined'; -export { default as PhoneInTalkRounded } from './PhoneInTalkRounded'; -export { default as PhoneInTalkSharp } from './PhoneInTalkSharp'; -export { default as PhoneInTalkTwoTone } from './PhoneInTalkTwoTone'; -export { default as PhoneIphone } from './PhoneIphone'; -export { default as PhoneIphoneOutlined } from './PhoneIphoneOutlined'; -export { default as PhoneIphoneRounded } from './PhoneIphoneRounded'; -export { default as PhoneIphoneSharp } from './PhoneIphoneSharp'; -export { default as PhoneIphoneTwoTone } from './PhoneIphoneTwoTone'; -export { default as PhoneLocked } from './PhoneLocked'; -export { default as PhoneLockedOutlined } from './PhoneLockedOutlined'; -export { default as PhoneLockedRounded } from './PhoneLockedRounded'; -export { default as PhoneLockedSharp } from './PhoneLockedSharp'; -export { default as PhoneLockedTwoTone } from './PhoneLockedTwoTone'; -export { default as PhoneMissed } from './PhoneMissed'; -export { default as PhoneMissedOutlined } from './PhoneMissedOutlined'; -export { default as PhoneMissedRounded } from './PhoneMissedRounded'; -export { default as PhoneMissedSharp } from './PhoneMissedSharp'; -export { default as PhoneMissedTwoTone } from './PhoneMissedTwoTone'; -export { default as PhoneOutlined } from './PhoneOutlined'; -export { default as PhonePaused } from './PhonePaused'; -export { default as PhonePausedOutlined } from './PhonePausedOutlined'; -export { default as PhonePausedRounded } from './PhonePausedRounded'; -export { default as PhonePausedSharp } from './PhonePausedSharp'; -export { default as PhonePausedTwoTone } from './PhonePausedTwoTone'; -export { default as PhoneRounded } from './PhoneRounded'; -export { default as PhoneSharp } from './PhoneSharp'; -export { default as PhoneTwoTone } from './PhoneTwoTone'; -export { default as Phonelink } from './Phonelink'; -export { default as PhonelinkErase } from './PhonelinkErase'; -export { default as PhonelinkEraseOutlined } from './PhonelinkEraseOutlined'; -export { default as PhonelinkEraseRounded } from './PhonelinkEraseRounded'; -export { default as PhonelinkEraseSharp } from './PhonelinkEraseSharp'; -export { default as PhonelinkEraseTwoTone } from './PhonelinkEraseTwoTone'; -export { default as PhonelinkLock } from './PhonelinkLock'; -export { default as PhonelinkLockOutlined } from './PhonelinkLockOutlined'; -export { default as PhonelinkLockRounded } from './PhonelinkLockRounded'; -export { default as PhonelinkLockSharp } from './PhonelinkLockSharp'; -export { default as PhonelinkLockTwoTone } from './PhonelinkLockTwoTone'; -export { default as PhonelinkOff } from './PhonelinkOff'; -export { default as PhonelinkOffOutlined } from './PhonelinkOffOutlined'; -export { default as PhonelinkOffRounded } from './PhonelinkOffRounded'; -export { default as PhonelinkOffSharp } from './PhonelinkOffSharp'; -export { default as PhonelinkOffTwoTone } from './PhonelinkOffTwoTone'; -export { default as PhonelinkOutlined } from './PhonelinkOutlined'; -export { default as PhonelinkRing } from './PhonelinkRing'; -export { default as PhonelinkRingOutlined } from './PhonelinkRingOutlined'; -export { default as PhonelinkRingRounded } from './PhonelinkRingRounded'; -export { default as PhonelinkRingSharp } from './PhonelinkRingSharp'; -export { default as PhonelinkRingTwoTone } from './PhonelinkRingTwoTone'; -export { default as PhonelinkRounded } from './PhonelinkRounded'; -export { default as PhonelinkSetup } from './PhonelinkSetup'; -export { default as PhonelinkSetupOutlined } from './PhonelinkSetupOutlined'; -export { default as PhonelinkSetupRounded } from './PhonelinkSetupRounded'; -export { default as PhonelinkSetupSharp } from './PhonelinkSetupSharp'; -export { default as PhonelinkSetupTwoTone } from './PhonelinkSetupTwoTone'; -export { default as PhonelinkSharp } from './PhonelinkSharp'; -export { default as PhonelinkTwoTone } from './PhonelinkTwoTone'; -export { default as Photo } from './Photo'; -export { default as PhotoAlbum } from './PhotoAlbum'; -export { default as PhotoAlbumOutlined } from './PhotoAlbumOutlined'; -export { default as PhotoAlbumRounded } from './PhotoAlbumRounded'; -export { default as PhotoAlbumSharp } from './PhotoAlbumSharp'; -export { default as PhotoAlbumTwoTone } from './PhotoAlbumTwoTone'; -export { default as PhotoCamera } from './PhotoCamera'; -export { default as PhotoCameraBack } from './PhotoCameraBack'; -export { default as PhotoCameraBackOutlined } from './PhotoCameraBackOutlined'; -export { default as PhotoCameraBackRounded } from './PhotoCameraBackRounded'; -export { default as PhotoCameraBackSharp } from './PhotoCameraBackSharp'; -export { default as PhotoCameraBackTwoTone } from './PhotoCameraBackTwoTone'; -export { default as PhotoCameraFront } from './PhotoCameraFront'; -export { default as PhotoCameraFrontOutlined } from './PhotoCameraFrontOutlined'; -export { default as PhotoCameraFrontRounded } from './PhotoCameraFrontRounded'; -export { default as PhotoCameraFrontSharp } from './PhotoCameraFrontSharp'; -export { default as PhotoCameraFrontTwoTone } from './PhotoCameraFrontTwoTone'; -export { default as PhotoCameraOutlined } from './PhotoCameraOutlined'; -export { default as PhotoCameraRounded } from './PhotoCameraRounded'; -export { default as PhotoCameraSharp } from './PhotoCameraSharp'; -export { default as PhotoCameraTwoTone } from './PhotoCameraTwoTone'; -export { default as PhotoFilter } from './PhotoFilter'; -export { default as PhotoFilterOutlined } from './PhotoFilterOutlined'; -export { default as PhotoFilterRounded } from './PhotoFilterRounded'; -export { default as PhotoFilterSharp } from './PhotoFilterSharp'; -export { default as PhotoFilterTwoTone } from './PhotoFilterTwoTone'; -export { default as PhotoLibrary } from './PhotoLibrary'; -export { default as PhotoLibraryOutlined } from './PhotoLibraryOutlined'; -export { default as PhotoLibraryRounded } from './PhotoLibraryRounded'; -export { default as PhotoLibrarySharp } from './PhotoLibrarySharp'; -export { default as PhotoLibraryTwoTone } from './PhotoLibraryTwoTone'; -export { default as PhotoOutlined } from './PhotoOutlined'; -export { default as PhotoRounded } from './PhotoRounded'; -export { default as PhotoSharp } from './PhotoSharp'; -export { default as PhotoSizeSelectActual } from './PhotoSizeSelectActual'; -export { default as PhotoSizeSelectActualOutlined } from './PhotoSizeSelectActualOutlined'; -export { default as PhotoSizeSelectActualRounded } from './PhotoSizeSelectActualRounded'; -export { default as PhotoSizeSelectActualSharp } from './PhotoSizeSelectActualSharp'; -export { default as PhotoSizeSelectActualTwoTone } from './PhotoSizeSelectActualTwoTone'; -export { default as PhotoSizeSelectLarge } from './PhotoSizeSelectLarge'; -export { default as PhotoSizeSelectLargeOutlined } from './PhotoSizeSelectLargeOutlined'; -export { default as PhotoSizeSelectLargeRounded } from './PhotoSizeSelectLargeRounded'; -export { default as PhotoSizeSelectLargeSharp } from './PhotoSizeSelectLargeSharp'; -export { default as PhotoSizeSelectLargeTwoTone } from './PhotoSizeSelectLargeTwoTone'; -export { default as PhotoSizeSelectSmall } from './PhotoSizeSelectSmall'; -export { default as PhotoSizeSelectSmallOutlined } from './PhotoSizeSelectSmallOutlined'; -export { default as PhotoSizeSelectSmallRounded } from './PhotoSizeSelectSmallRounded'; -export { default as PhotoSizeSelectSmallSharp } from './PhotoSizeSelectSmallSharp'; -export { default as PhotoSizeSelectSmallTwoTone } from './PhotoSizeSelectSmallTwoTone'; -export { default as PhotoTwoTone } from './PhotoTwoTone'; -export { default as Piano } from './Piano'; -export { default as PianoOff } from './PianoOff'; -export { default as PianoOffOutlined } from './PianoOffOutlined'; -export { default as PianoOffRounded } from './PianoOffRounded'; -export { default as PianoOffSharp } from './PianoOffSharp'; -export { default as PianoOffTwoTone } from './PianoOffTwoTone'; -export { default as PianoOutlined } from './PianoOutlined'; -export { default as PianoRounded } from './PianoRounded'; -export { default as PianoSharp } from './PianoSharp'; -export { default as PianoTwoTone } from './PianoTwoTone'; -export { default as PictureAsPdf } from './PictureAsPdf'; -export { default as PictureAsPdfOutlined } from './PictureAsPdfOutlined'; -export { default as PictureAsPdfRounded } from './PictureAsPdfRounded'; -export { default as PictureAsPdfSharp } from './PictureAsPdfSharp'; -export { default as PictureAsPdfTwoTone } from './PictureAsPdfTwoTone'; -export { default as PictureInPicture } from './PictureInPicture'; -export { default as PictureInPictureAlt } from './PictureInPictureAlt'; -export { default as PictureInPictureAltOutlined } from './PictureInPictureAltOutlined'; -export { default as PictureInPictureAltRounded } from './PictureInPictureAltRounded'; -export { default as PictureInPictureAltSharp } from './PictureInPictureAltSharp'; -export { default as PictureInPictureAltTwoTone } from './PictureInPictureAltTwoTone'; -export { default as PictureInPictureOutlined } from './PictureInPictureOutlined'; -export { default as PictureInPictureRounded } from './PictureInPictureRounded'; -export { default as PictureInPictureSharp } from './PictureInPictureSharp'; -export { default as PictureInPictureTwoTone } from './PictureInPictureTwoTone'; -export { default as PieChart } from './PieChart'; -export { default as PieChartOutline } from './PieChartOutline'; -export { default as PieChartOutlineOutlined } from './PieChartOutlineOutlined'; -export { default as PieChartOutlineRounded } from './PieChartOutlineRounded'; -export { default as PieChartOutlineSharp } from './PieChartOutlineSharp'; -export { default as PieChartOutlineTwoTone } from './PieChartOutlineTwoTone'; -export { default as PieChartOutlined } from './PieChartOutlined'; -export { default as PieChartRounded } from './PieChartRounded'; -export { default as PieChartSharp } from './PieChartSharp'; -export { default as PieChartTwoTone } from './PieChartTwoTone'; -export { default as Pin } from './Pin'; -export { default as PinDrop } from './PinDrop'; -export { default as PinDropOutlined } from './PinDropOutlined'; -export { default as PinDropRounded } from './PinDropRounded'; -export { default as PinDropSharp } from './PinDropSharp'; -export { default as PinDropTwoTone } from './PinDropTwoTone'; -export { default as PinOutlined } from './PinOutlined'; -export { default as PinRounded } from './PinRounded'; -export { default as PinSharp } from './PinSharp'; -export { default as PinTwoTone } from './PinTwoTone'; -export { default as Pinterest } from './Pinterest'; -export { default as PivotTableChart } from './PivotTableChart'; -export { default as PivotTableChartOutlined } from './PivotTableChartOutlined'; -export { default as PivotTableChartRounded } from './PivotTableChartRounded'; -export { default as PivotTableChartSharp } from './PivotTableChartSharp'; -export { default as PivotTableChartTwoTone } from './PivotTableChartTwoTone'; -export { default as Place } from './Place'; -export { default as PlaceOutlined } from './PlaceOutlined'; -export { default as PlaceRounded } from './PlaceRounded'; -export { default as PlaceSharp } from './PlaceSharp'; -export { default as PlaceTwoTone } from './PlaceTwoTone'; -export { default as Plagiarism } from './Plagiarism'; -export { default as PlagiarismOutlined } from './PlagiarismOutlined'; -export { default as PlagiarismRounded } from './PlagiarismRounded'; -export { default as PlagiarismSharp } from './PlagiarismSharp'; -export { default as PlagiarismTwoTone } from './PlagiarismTwoTone'; -export { default as PlayArrow } from './PlayArrow'; -export { default as PlayArrowOutlined } from './PlayArrowOutlined'; -export { default as PlayArrowRounded } from './PlayArrowRounded'; -export { default as PlayArrowSharp } from './PlayArrowSharp'; -export { default as PlayArrowTwoTone } from './PlayArrowTwoTone'; -export { default as PlayCircle } from './PlayCircle'; -export { default as PlayCircleFilled } from './PlayCircleFilled'; -export { default as PlayCircleFilledOutlined } from './PlayCircleFilledOutlined'; -export { default as PlayCircleFilledRounded } from './PlayCircleFilledRounded'; -export { default as PlayCircleFilledSharp } from './PlayCircleFilledSharp'; -export { default as PlayCircleFilledTwoTone } from './PlayCircleFilledTwoTone'; -export { default as PlayCircleFilledWhite } from './PlayCircleFilledWhite'; -export { default as PlayCircleFilledWhiteOutlined } from './PlayCircleFilledWhiteOutlined'; -export { default as PlayCircleFilledWhiteRounded } from './PlayCircleFilledWhiteRounded'; -export { default as PlayCircleFilledWhiteSharp } from './PlayCircleFilledWhiteSharp'; -export { default as PlayCircleFilledWhiteTwoTone } from './PlayCircleFilledWhiteTwoTone'; -export { default as PlayCircleOutline } from './PlayCircleOutline'; -export { default as PlayCircleOutlineOutlined } from './PlayCircleOutlineOutlined'; -export { default as PlayCircleOutlineRounded } from './PlayCircleOutlineRounded'; -export { default as PlayCircleOutlineSharp } from './PlayCircleOutlineSharp'; -export { default as PlayCircleOutlineTwoTone } from './PlayCircleOutlineTwoTone'; -export { default as PlayCircleOutlined } from './PlayCircleOutlined'; -export { default as PlayCircleRounded } from './PlayCircleRounded'; -export { default as PlayCircleSharp } from './PlayCircleSharp'; -export { default as PlayCircleTwoTone } from './PlayCircleTwoTone'; -export { default as PlayDisabled } from './PlayDisabled'; -export { default as PlayDisabledOutlined } from './PlayDisabledOutlined'; -export { default as PlayDisabledRounded } from './PlayDisabledRounded'; -export { default as PlayDisabledSharp } from './PlayDisabledSharp'; -export { default as PlayDisabledTwoTone } from './PlayDisabledTwoTone'; -export { default as PlayForWork } from './PlayForWork'; -export { default as PlayForWorkOutlined } from './PlayForWorkOutlined'; -export { default as PlayForWorkRounded } from './PlayForWorkRounded'; -export { default as PlayForWorkSharp } from './PlayForWorkSharp'; -export { default as PlayForWorkTwoTone } from './PlayForWorkTwoTone'; -export { default as PlayLesson } from './PlayLesson'; -export { default as PlayLessonOutlined } from './PlayLessonOutlined'; -export { default as PlayLessonRounded } from './PlayLessonRounded'; -export { default as PlayLessonSharp } from './PlayLessonSharp'; -export { default as PlayLessonTwoTone } from './PlayLessonTwoTone'; -export { default as PlaylistAdd } from './PlaylistAdd'; -export { default as PlaylistAddCheck } from './PlaylistAddCheck'; -export { default as PlaylistAddCheckOutlined } from './PlaylistAddCheckOutlined'; -export { default as PlaylistAddCheckRounded } from './PlaylistAddCheckRounded'; -export { default as PlaylistAddCheckSharp } from './PlaylistAddCheckSharp'; -export { default as PlaylistAddCheckTwoTone } from './PlaylistAddCheckTwoTone'; -export { default as PlaylistAddOutlined } from './PlaylistAddOutlined'; -export { default as PlaylistAddRounded } from './PlaylistAddRounded'; -export { default as PlaylistAddSharp } from './PlaylistAddSharp'; -export { default as PlaylistAddTwoTone } from './PlaylistAddTwoTone'; -export { default as PlaylistPlay } from './PlaylistPlay'; -export { default as PlaylistPlayOutlined } from './PlaylistPlayOutlined'; -export { default as PlaylistPlayRounded } from './PlaylistPlayRounded'; -export { default as PlaylistPlaySharp } from './PlaylistPlaySharp'; -export { default as PlaylistPlayTwoTone } from './PlaylistPlayTwoTone'; -export { default as Plumbing } from './Plumbing'; -export { default as PlumbingOutlined } from './PlumbingOutlined'; -export { default as PlumbingRounded } from './PlumbingRounded'; -export { default as PlumbingSharp } from './PlumbingSharp'; -export { default as PlumbingTwoTone } from './PlumbingTwoTone'; -export { default as PlusOne } from './PlusOne'; -export { default as PlusOneOutlined } from './PlusOneOutlined'; -export { default as PlusOneRounded } from './PlusOneRounded'; -export { default as PlusOneSharp } from './PlusOneSharp'; -export { default as PlusOneTwoTone } from './PlusOneTwoTone'; -export { default as Podcasts } from './Podcasts'; -export { default as PodcastsOutlined } from './PodcastsOutlined'; -export { default as PodcastsRounded } from './PodcastsRounded'; -export { default as PodcastsSharp } from './PodcastsSharp'; -export { default as PodcastsTwoTone } from './PodcastsTwoTone'; -export { default as PointOfSale } from './PointOfSale'; -export { default as PointOfSaleOutlined } from './PointOfSaleOutlined'; -export { default as PointOfSaleRounded } from './PointOfSaleRounded'; -export { default as PointOfSaleSharp } from './PointOfSaleSharp'; -export { default as PointOfSaleTwoTone } from './PointOfSaleTwoTone'; -export { default as Policy } from './Policy'; -export { default as PolicyOutlined } from './PolicyOutlined'; -export { default as PolicyRounded } from './PolicyRounded'; -export { default as PolicySharp } from './PolicySharp'; -export { default as PolicyTwoTone } from './PolicyTwoTone'; -export { default as Poll } from './Poll'; -export { default as PollOutlined } from './PollOutlined'; -export { default as PollRounded } from './PollRounded'; -export { default as PollSharp } from './PollSharp'; -export { default as PollTwoTone } from './PollTwoTone'; -export { default as Pool } from './Pool'; -export { default as PoolOutlined } from './PoolOutlined'; -export { default as PoolRounded } from './PoolRounded'; -export { default as PoolSharp } from './PoolSharp'; -export { default as PoolTwoTone } from './PoolTwoTone'; -export { default as PortableWifiOff } from './PortableWifiOff'; -export { default as PortableWifiOffOutlined } from './PortableWifiOffOutlined'; -export { default as PortableWifiOffRounded } from './PortableWifiOffRounded'; -export { default as PortableWifiOffSharp } from './PortableWifiOffSharp'; -export { default as PortableWifiOffTwoTone } from './PortableWifiOffTwoTone'; -export { default as Portrait } from './Portrait'; -export { default as PortraitOutlined } from './PortraitOutlined'; -export { default as PortraitRounded } from './PortraitRounded'; -export { default as PortraitSharp } from './PortraitSharp'; -export { default as PortraitTwoTone } from './PortraitTwoTone'; -export { default as PostAdd } from './PostAdd'; -export { default as PostAddOutlined } from './PostAddOutlined'; -export { default as PostAddRounded } from './PostAddRounded'; -export { default as PostAddSharp } from './PostAddSharp'; -export { default as PostAddTwoTone } from './PostAddTwoTone'; -export { default as Power } from './Power'; -export { default as PowerInput } from './PowerInput'; -export { default as PowerInputOutlined } from './PowerInputOutlined'; -export { default as PowerInputRounded } from './PowerInputRounded'; -export { default as PowerInputSharp } from './PowerInputSharp'; -export { default as PowerInputTwoTone } from './PowerInputTwoTone'; -export { default as PowerOff } from './PowerOff'; -export { default as PowerOffOutlined } from './PowerOffOutlined'; -export { default as PowerOffRounded } from './PowerOffRounded'; -export { default as PowerOffSharp } from './PowerOffSharp'; -export { default as PowerOffTwoTone } from './PowerOffTwoTone'; -export { default as PowerOutlined } from './PowerOutlined'; -export { default as PowerRounded } from './PowerRounded'; -export { default as PowerSettingsNew } from './PowerSettingsNew'; -export { default as PowerSettingsNewOutlined } from './PowerSettingsNewOutlined'; -export { default as PowerSettingsNewRounded } from './PowerSettingsNewRounded'; -export { default as PowerSettingsNewSharp } from './PowerSettingsNewSharp'; -export { default as PowerSettingsNewTwoTone } from './PowerSettingsNewTwoTone'; -export { default as PowerSharp } from './PowerSharp'; -export { default as PowerTwoTone } from './PowerTwoTone'; -export { default as PrecisionManufacturing } from './PrecisionManufacturing'; -export { default as PrecisionManufacturingOutlined } from './PrecisionManufacturingOutlined'; -export { default as PrecisionManufacturingRounded } from './PrecisionManufacturingRounded'; -export { default as PrecisionManufacturingSharp } from './PrecisionManufacturingSharp'; -export { default as PrecisionManufacturingTwoTone } from './PrecisionManufacturingTwoTone'; -export { default as PregnantWoman } from './PregnantWoman'; -export { default as PregnantWomanOutlined } from './PregnantWomanOutlined'; -export { default as PregnantWomanRounded } from './PregnantWomanRounded'; -export { default as PregnantWomanSharp } from './PregnantWomanSharp'; -export { default as PregnantWomanTwoTone } from './PregnantWomanTwoTone'; -export { default as PresentToAll } from './PresentToAll'; -export { default as PresentToAllOutlined } from './PresentToAllOutlined'; -export { default as PresentToAllRounded } from './PresentToAllRounded'; -export { default as PresentToAllSharp } from './PresentToAllSharp'; -export { default as PresentToAllTwoTone } from './PresentToAllTwoTone'; -export { default as Preview } from './Preview'; -export { default as PreviewOutlined } from './PreviewOutlined'; -export { default as PreviewRounded } from './PreviewRounded'; -export { default as PreviewSharp } from './PreviewSharp'; -export { default as PreviewTwoTone } from './PreviewTwoTone'; -export { default as PriceChange } from './PriceChange'; -export { default as PriceChangeOutlined } from './PriceChangeOutlined'; -export { default as PriceChangeRounded } from './PriceChangeRounded'; -export { default as PriceChangeSharp } from './PriceChangeSharp'; -export { default as PriceChangeTwoTone } from './PriceChangeTwoTone'; -export { default as PriceCheck } from './PriceCheck'; -export { default as PriceCheckOutlined } from './PriceCheckOutlined'; -export { default as PriceCheckRounded } from './PriceCheckRounded'; -export { default as PriceCheckSharp } from './PriceCheckSharp'; -export { default as PriceCheckTwoTone } from './PriceCheckTwoTone'; -export { default as Print } from './Print'; -export { default as PrintDisabled } from './PrintDisabled'; -export { default as PrintDisabledOutlined } from './PrintDisabledOutlined'; -export { default as PrintDisabledRounded } from './PrintDisabledRounded'; -export { default as PrintDisabledSharp } from './PrintDisabledSharp'; -export { default as PrintDisabledTwoTone } from './PrintDisabledTwoTone'; -export { default as PrintOutlined } from './PrintOutlined'; -export { default as PrintRounded } from './PrintRounded'; -export { default as PrintSharp } from './PrintSharp'; -export { default as PrintTwoTone } from './PrintTwoTone'; -export { default as PriorityHigh } from './PriorityHigh'; -export { default as PriorityHighOutlined } from './PriorityHighOutlined'; -export { default as PriorityHighRounded } from './PriorityHighRounded'; -export { default as PriorityHighSharp } from './PriorityHighSharp'; -export { default as PriorityHighTwoTone } from './PriorityHighTwoTone'; -export { default as PrivacyTip } from './PrivacyTip'; -export { default as PrivacyTipOutlined } from './PrivacyTipOutlined'; -export { default as PrivacyTipRounded } from './PrivacyTipRounded'; -export { default as PrivacyTipSharp } from './PrivacyTipSharp'; -export { default as PrivacyTipTwoTone } from './PrivacyTipTwoTone'; -export { default as ProductionQuantityLimits } from './ProductionQuantityLimits'; -export { default as ProductionQuantityLimitsOutlined } from './ProductionQuantityLimitsOutlined'; -export { default as ProductionQuantityLimitsRounded } from './ProductionQuantityLimitsRounded'; -export { default as ProductionQuantityLimitsSharp } from './ProductionQuantityLimitsSharp'; -export { default as ProductionQuantityLimitsTwoTone } from './ProductionQuantityLimitsTwoTone'; -export { default as Psychology } from './Psychology'; -export { default as PsychologyOutlined } from './PsychologyOutlined'; -export { default as PsychologyRounded } from './PsychologyRounded'; -export { default as PsychologySharp } from './PsychologySharp'; -export { default as PsychologyTwoTone } from './PsychologyTwoTone'; -export { default as Public } from './Public'; -export { default as PublicOff } from './PublicOff'; -export { default as PublicOffOutlined } from './PublicOffOutlined'; -export { default as PublicOffRounded } from './PublicOffRounded'; -export { default as PublicOffSharp } from './PublicOffSharp'; -export { default as PublicOffTwoTone } from './PublicOffTwoTone'; -export { default as PublicOutlined } from './PublicOutlined'; -export { default as PublicRounded } from './PublicRounded'; -export { default as PublicSharp } from './PublicSharp'; -export { default as PublicTwoTone } from './PublicTwoTone'; -export { default as Publish } from './Publish'; -export { default as PublishOutlined } from './PublishOutlined'; -export { default as PublishRounded } from './PublishRounded'; -export { default as PublishSharp } from './PublishSharp'; -export { default as PublishTwoTone } from './PublishTwoTone'; -export { default as PublishedWithChanges } from './PublishedWithChanges'; -export { default as PublishedWithChangesOutlined } from './PublishedWithChangesOutlined'; -export { default as PublishedWithChangesRounded } from './PublishedWithChangesRounded'; -export { default as PublishedWithChangesSharp } from './PublishedWithChangesSharp'; -export { default as PublishedWithChangesTwoTone } from './PublishedWithChangesTwoTone'; -export { default as PushPin } from './PushPin'; -export { default as PushPinOutlined } from './PushPinOutlined'; -export { default as PushPinRounded } from './PushPinRounded'; -export { default as PushPinSharp } from './PushPinSharp'; -export { default as PushPinTwoTone } from './PushPinTwoTone'; -export { default as QrCode } from './QrCode'; -export { default as QrCode2 } from './QrCode2'; -export { default as QrCode2Outlined } from './QrCode2Outlined'; -export { default as QrCode2Rounded } from './QrCode2Rounded'; -export { default as QrCode2Sharp } from './QrCode2Sharp'; -export { default as QrCode2TwoTone } from './QrCode2TwoTone'; -export { default as QrCodeOutlined } from './QrCodeOutlined'; -export { default as QrCodeRounded } from './QrCodeRounded'; -export { default as QrCodeScanner } from './QrCodeScanner'; -export { default as QrCodeScannerOutlined } from './QrCodeScannerOutlined'; -export { default as QrCodeScannerRounded } from './QrCodeScannerRounded'; -export { default as QrCodeScannerSharp } from './QrCodeScannerSharp'; -export { default as QrCodeScannerTwoTone } from './QrCodeScannerTwoTone'; -export { default as QrCodeSharp } from './QrCodeSharp'; -export { default as QrCodeTwoTone } from './QrCodeTwoTone'; -export { default as QueryBuilder } from './QueryBuilder'; -export { default as QueryBuilderOutlined } from './QueryBuilderOutlined'; -export { default as QueryBuilderRounded } from './QueryBuilderRounded'; -export { default as QueryBuilderSharp } from './QueryBuilderSharp'; -export { default as QueryBuilderTwoTone } from './QueryBuilderTwoTone'; -export { default as QueryStats } from './QueryStats'; -export { default as QueryStatsOutlined } from './QueryStatsOutlined'; -export { default as QueryStatsRounded } from './QueryStatsRounded'; -export { default as QueryStatsSharp } from './QueryStatsSharp'; -export { default as QueryStatsTwoTone } from './QueryStatsTwoTone'; -export { default as QuestionAnswer } from './QuestionAnswer'; -export { default as QuestionAnswerOutlined } from './QuestionAnswerOutlined'; -export { default as QuestionAnswerRounded } from './QuestionAnswerRounded'; -export { default as QuestionAnswerSharp } from './QuestionAnswerSharp'; -export { default as QuestionAnswerTwoTone } from './QuestionAnswerTwoTone'; -export { default as Queue } from './Queue'; -export { default as QueueMusic } from './QueueMusic'; -export { default as QueueMusicOutlined } from './QueueMusicOutlined'; -export { default as QueueMusicRounded } from './QueueMusicRounded'; -export { default as QueueMusicSharp } from './QueueMusicSharp'; -export { default as QueueMusicTwoTone } from './QueueMusicTwoTone'; -export { default as QueueOutlined } from './QueueOutlined'; -export { default as QueuePlayNext } from './QueuePlayNext'; -export { default as QueuePlayNextOutlined } from './QueuePlayNextOutlined'; -export { default as QueuePlayNextRounded } from './QueuePlayNextRounded'; -export { default as QueuePlayNextSharp } from './QueuePlayNextSharp'; -export { default as QueuePlayNextTwoTone } from './QueuePlayNextTwoTone'; -export { default as QueueRounded } from './QueueRounded'; -export { default as QueueSharp } from './QueueSharp'; -export { default as QueueTwoTone } from './QueueTwoTone'; -export { default as Quickreply } from './Quickreply'; -export { default as QuickreplyOutlined } from './QuickreplyOutlined'; -export { default as QuickreplyRounded } from './QuickreplyRounded'; -export { default as QuickreplySharp } from './QuickreplySharp'; -export { default as QuickreplyTwoTone } from './QuickreplyTwoTone'; -export { default as Quiz } from './Quiz'; -export { default as QuizOutlined } from './QuizOutlined'; -export { default as QuizRounded } from './QuizRounded'; -export { default as QuizSharp } from './QuizSharp'; -export { default as QuizTwoTone } from './QuizTwoTone'; -export { default as RMobiledata } from './RMobiledata'; -export { default as RMobiledataOutlined } from './RMobiledataOutlined'; -export { default as RMobiledataRounded } from './RMobiledataRounded'; -export { default as RMobiledataSharp } from './RMobiledataSharp'; -export { default as RMobiledataTwoTone } from './RMobiledataTwoTone'; -export { default as Radar } from './Radar'; -export { default as RadarOutlined } from './RadarOutlined'; -export { default as RadarRounded } from './RadarRounded'; -export { default as RadarSharp } from './RadarSharp'; -export { default as RadarTwoTone } from './RadarTwoTone'; -export { default as Radio } from './Radio'; -export { default as RadioButtonChecked } from './RadioButtonChecked'; -export { default as RadioButtonCheckedOutlined } from './RadioButtonCheckedOutlined'; -export { default as RadioButtonCheckedRounded } from './RadioButtonCheckedRounded'; -export { default as RadioButtonCheckedSharp } from './RadioButtonCheckedSharp'; -export { default as RadioButtonCheckedTwoTone } from './RadioButtonCheckedTwoTone'; -export { default as RadioButtonUnchecked } from './RadioButtonUnchecked'; -export { default as RadioButtonUncheckedOutlined } from './RadioButtonUncheckedOutlined'; -export { default as RadioButtonUncheckedRounded } from './RadioButtonUncheckedRounded'; -export { default as RadioButtonUncheckedSharp } from './RadioButtonUncheckedSharp'; -export { default as RadioButtonUncheckedTwoTone } from './RadioButtonUncheckedTwoTone'; -export { default as RadioOutlined } from './RadioOutlined'; -export { default as RadioRounded } from './RadioRounded'; -export { default as RadioSharp } from './RadioSharp'; -export { default as RadioTwoTone } from './RadioTwoTone'; -export { default as RailwayAlert } from './RailwayAlert'; -export { default as RailwayAlertOutlined } from './RailwayAlertOutlined'; -export { default as RailwayAlertRounded } from './RailwayAlertRounded'; -export { default as RailwayAlertSharp } from './RailwayAlertSharp'; -export { default as RailwayAlertTwoTone } from './RailwayAlertTwoTone'; -export { default as RamenDining } from './RamenDining'; -export { default as RamenDiningOutlined } from './RamenDiningOutlined'; -export { default as RamenDiningRounded } from './RamenDiningRounded'; -export { default as RamenDiningSharp } from './RamenDiningSharp'; -export { default as RamenDiningTwoTone } from './RamenDiningTwoTone'; -export { default as RateReview } from './RateReview'; -export { default as RateReviewOutlined } from './RateReviewOutlined'; -export { default as RateReviewRounded } from './RateReviewRounded'; -export { default as RateReviewSharp } from './RateReviewSharp'; -export { default as RateReviewTwoTone } from './RateReviewTwoTone'; -export { default as RawOff } from './RawOff'; -export { default as RawOffOutlined } from './RawOffOutlined'; -export { default as RawOffRounded } from './RawOffRounded'; -export { default as RawOffSharp } from './RawOffSharp'; -export { default as RawOffTwoTone } from './RawOffTwoTone'; -export { default as RawOn } from './RawOn'; -export { default as RawOnOutlined } from './RawOnOutlined'; -export { default as RawOnRounded } from './RawOnRounded'; -export { default as RawOnSharp } from './RawOnSharp'; -export { default as RawOnTwoTone } from './RawOnTwoTone'; -export { default as ReadMore } from './ReadMore'; -export { default as ReadMoreOutlined } from './ReadMoreOutlined'; -export { default as ReadMoreRounded } from './ReadMoreRounded'; -export { default as ReadMoreSharp } from './ReadMoreSharp'; -export { default as ReadMoreTwoTone } from './ReadMoreTwoTone'; -export { default as Receipt } from './Receipt'; -export { default as ReceiptLong } from './ReceiptLong'; -export { default as ReceiptLongOutlined } from './ReceiptLongOutlined'; -export { default as ReceiptLongRounded } from './ReceiptLongRounded'; -export { default as ReceiptLongSharp } from './ReceiptLongSharp'; -export { default as ReceiptLongTwoTone } from './ReceiptLongTwoTone'; -export { default as ReceiptOutlined } from './ReceiptOutlined'; -export { default as ReceiptRounded } from './ReceiptRounded'; -export { default as ReceiptSharp } from './ReceiptSharp'; -export { default as ReceiptTwoTone } from './ReceiptTwoTone'; -export { default as RecentActors } from './RecentActors'; -export { default as RecentActorsOutlined } from './RecentActorsOutlined'; -export { default as RecentActorsRounded } from './RecentActorsRounded'; -export { default as RecentActorsSharp } from './RecentActorsSharp'; -export { default as RecentActorsTwoTone } from './RecentActorsTwoTone'; -export { default as Recommend } from './Recommend'; -export { default as RecommendOutlined } from './RecommendOutlined'; -export { default as RecommendRounded } from './RecommendRounded'; -export { default as RecommendSharp } from './RecommendSharp'; -export { default as RecommendTwoTone } from './RecommendTwoTone'; -export { default as RecordVoiceOver } from './RecordVoiceOver'; -export { default as RecordVoiceOverOutlined } from './RecordVoiceOverOutlined'; -export { default as RecordVoiceOverRounded } from './RecordVoiceOverRounded'; -export { default as RecordVoiceOverSharp } from './RecordVoiceOverSharp'; -export { default as RecordVoiceOverTwoTone } from './RecordVoiceOverTwoTone'; -export { default as Reddit } from './Reddit'; -export { default as Redeem } from './Redeem'; -export { default as RedeemOutlined } from './RedeemOutlined'; -export { default as RedeemRounded } from './RedeemRounded'; -export { default as RedeemSharp } from './RedeemSharp'; -export { default as RedeemTwoTone } from './RedeemTwoTone'; -export { default as Redo } from './Redo'; -export { default as RedoOutlined } from './RedoOutlined'; -export { default as RedoRounded } from './RedoRounded'; -export { default as RedoSharp } from './RedoSharp'; -export { default as RedoTwoTone } from './RedoTwoTone'; -export { default as ReduceCapacity } from './ReduceCapacity'; -export { default as ReduceCapacityOutlined } from './ReduceCapacityOutlined'; -export { default as ReduceCapacityRounded } from './ReduceCapacityRounded'; -export { default as ReduceCapacitySharp } from './ReduceCapacitySharp'; -export { default as ReduceCapacityTwoTone } from './ReduceCapacityTwoTone'; -export { default as Refresh } from './Refresh'; -export { default as RefreshOutlined } from './RefreshOutlined'; -export { default as RefreshRounded } from './RefreshRounded'; -export { default as RefreshSharp } from './RefreshSharp'; -export { default as RefreshTwoTone } from './RefreshTwoTone'; -export { default as RememberMe } from './RememberMe'; -export { default as RememberMeOutlined } from './RememberMeOutlined'; -export { default as RememberMeRounded } from './RememberMeRounded'; -export { default as RememberMeSharp } from './RememberMeSharp'; -export { default as RememberMeTwoTone } from './RememberMeTwoTone'; -export { default as Remove } from './Remove'; -export { default as RemoveCircle } from './RemoveCircle'; -export { default as RemoveCircleOutline } from './RemoveCircleOutline'; -export { default as RemoveCircleOutlineOutlined } from './RemoveCircleOutlineOutlined'; -export { default as RemoveCircleOutlineRounded } from './RemoveCircleOutlineRounded'; -export { default as RemoveCircleOutlineSharp } from './RemoveCircleOutlineSharp'; -export { default as RemoveCircleOutlineTwoTone } from './RemoveCircleOutlineTwoTone'; -export { default as RemoveCircleOutlined } from './RemoveCircleOutlined'; -export { default as RemoveCircleRounded } from './RemoveCircleRounded'; -export { default as RemoveCircleSharp } from './RemoveCircleSharp'; -export { default as RemoveCircleTwoTone } from './RemoveCircleTwoTone'; -export { default as RemoveDone } from './RemoveDone'; -export { default as RemoveDoneOutlined } from './RemoveDoneOutlined'; -export { default as RemoveDoneRounded } from './RemoveDoneRounded'; -export { default as RemoveDoneSharp } from './RemoveDoneSharp'; -export { default as RemoveDoneTwoTone } from './RemoveDoneTwoTone'; -export { default as RemoveFromQueue } from './RemoveFromQueue'; -export { default as RemoveFromQueueOutlined } from './RemoveFromQueueOutlined'; -export { default as RemoveFromQueueRounded } from './RemoveFromQueueRounded'; -export { default as RemoveFromQueueSharp } from './RemoveFromQueueSharp'; -export { default as RemoveFromQueueTwoTone } from './RemoveFromQueueTwoTone'; -export { default as RemoveModerator } from './RemoveModerator'; -export { default as RemoveModeratorOutlined } from './RemoveModeratorOutlined'; -export { default as RemoveModeratorRounded } from './RemoveModeratorRounded'; -export { default as RemoveModeratorSharp } from './RemoveModeratorSharp'; -export { default as RemoveModeratorTwoTone } from './RemoveModeratorTwoTone'; -export { default as RemoveOutlined } from './RemoveOutlined'; -export { default as RemoveRedEye } from './RemoveRedEye'; -export { default as RemoveRedEyeOutlined } from './RemoveRedEyeOutlined'; -export { default as RemoveRedEyeRounded } from './RemoveRedEyeRounded'; -export { default as RemoveRedEyeSharp } from './RemoveRedEyeSharp'; -export { default as RemoveRedEyeTwoTone } from './RemoveRedEyeTwoTone'; -export { default as RemoveRounded } from './RemoveRounded'; -export { default as RemoveSharp } from './RemoveSharp'; -export { default as RemoveShoppingCart } from './RemoveShoppingCart'; -export { default as RemoveShoppingCartOutlined } from './RemoveShoppingCartOutlined'; -export { default as RemoveShoppingCartRounded } from './RemoveShoppingCartRounded'; -export { default as RemoveShoppingCartSharp } from './RemoveShoppingCartSharp'; -export { default as RemoveShoppingCartTwoTone } from './RemoveShoppingCartTwoTone'; -export { default as RemoveTwoTone } from './RemoveTwoTone'; -export { default as Reorder } from './Reorder'; -export { default as ReorderOutlined } from './ReorderOutlined'; -export { default as ReorderRounded } from './ReorderRounded'; -export { default as ReorderSharp } from './ReorderSharp'; -export { default as ReorderTwoTone } from './ReorderTwoTone'; -export { default as Repeat } from './Repeat'; -export { default as RepeatOn } from './RepeatOn'; -export { default as RepeatOnOutlined } from './RepeatOnOutlined'; -export { default as RepeatOnRounded } from './RepeatOnRounded'; -export { default as RepeatOnSharp } from './RepeatOnSharp'; -export { default as RepeatOnTwoTone } from './RepeatOnTwoTone'; -export { default as RepeatOne } from './RepeatOne'; -export { default as RepeatOneOn } from './RepeatOneOn'; -export { default as RepeatOneOnOutlined } from './RepeatOneOnOutlined'; -export { default as RepeatOneOnRounded } from './RepeatOneOnRounded'; -export { default as RepeatOneOnSharp } from './RepeatOneOnSharp'; -export { default as RepeatOneOnTwoTone } from './RepeatOneOnTwoTone'; -export { default as RepeatOneOutlined } from './RepeatOneOutlined'; -export { default as RepeatOneRounded } from './RepeatOneRounded'; -export { default as RepeatOneSharp } from './RepeatOneSharp'; -export { default as RepeatOneTwoTone } from './RepeatOneTwoTone'; -export { default as RepeatOutlined } from './RepeatOutlined'; -export { default as RepeatRounded } from './RepeatRounded'; -export { default as RepeatSharp } from './RepeatSharp'; -export { default as RepeatTwoTone } from './RepeatTwoTone'; -export { default as Replay } from './Replay'; -export { default as Replay10 } from './Replay10'; -export { default as Replay10Outlined } from './Replay10Outlined'; -export { default as Replay10Rounded } from './Replay10Rounded'; -export { default as Replay10Sharp } from './Replay10Sharp'; -export { default as Replay10TwoTone } from './Replay10TwoTone'; -export { default as Replay30 } from './Replay30'; -export { default as Replay30Outlined } from './Replay30Outlined'; -export { default as Replay30Rounded } from './Replay30Rounded'; -export { default as Replay30Sharp } from './Replay30Sharp'; -export { default as Replay30TwoTone } from './Replay30TwoTone'; -export { default as Replay5 } from './Replay5'; -export { default as Replay5Outlined } from './Replay5Outlined'; -export { default as Replay5Rounded } from './Replay5Rounded'; -export { default as Replay5Sharp } from './Replay5Sharp'; -export { default as Replay5TwoTone } from './Replay5TwoTone'; -export { default as ReplayCircleFilled } from './ReplayCircleFilled'; -export { default as ReplayCircleFilledOutlined } from './ReplayCircleFilledOutlined'; -export { default as ReplayCircleFilledRounded } from './ReplayCircleFilledRounded'; -export { default as ReplayCircleFilledSharp } from './ReplayCircleFilledSharp'; -export { default as ReplayCircleFilledTwoTone } from './ReplayCircleFilledTwoTone'; -export { default as ReplayOutlined } from './ReplayOutlined'; -export { default as ReplayRounded } from './ReplayRounded'; -export { default as ReplaySharp } from './ReplaySharp'; -export { default as ReplayTwoTone } from './ReplayTwoTone'; -export { default as Reply } from './Reply'; -export { default as ReplyAll } from './ReplyAll'; -export { default as ReplyAllOutlined } from './ReplyAllOutlined'; -export { default as ReplyAllRounded } from './ReplyAllRounded'; -export { default as ReplyAllSharp } from './ReplyAllSharp'; -export { default as ReplyAllTwoTone } from './ReplyAllTwoTone'; -export { default as ReplyOutlined } from './ReplyOutlined'; -export { default as ReplyRounded } from './ReplyRounded'; -export { default as ReplySharp } from './ReplySharp'; -export { default as ReplyTwoTone } from './ReplyTwoTone'; -export { default as Report } from './Report'; -export { default as ReportGmailerrorred } from './ReportGmailerrorred'; -export { default as ReportGmailerrorredOutlined } from './ReportGmailerrorredOutlined'; -export { default as ReportGmailerrorredRounded } from './ReportGmailerrorredRounded'; -export { default as ReportGmailerrorredSharp } from './ReportGmailerrorredSharp'; -export { default as ReportGmailerrorredTwoTone } from './ReportGmailerrorredTwoTone'; -export { default as ReportOff } from './ReportOff'; -export { default as ReportOffOutlined } from './ReportOffOutlined'; -export { default as ReportOffRounded } from './ReportOffRounded'; -export { default as ReportOffSharp } from './ReportOffSharp'; -export { default as ReportOffTwoTone } from './ReportOffTwoTone'; -export { default as ReportOutlined } from './ReportOutlined'; -export { default as ReportProblem } from './ReportProblem'; -export { default as ReportProblemOutlined } from './ReportProblemOutlined'; -export { default as ReportProblemRounded } from './ReportProblemRounded'; -export { default as ReportProblemSharp } from './ReportProblemSharp'; -export { default as ReportProblemTwoTone } from './ReportProblemTwoTone'; -export { default as ReportRounded } from './ReportRounded'; -export { default as ReportSharp } from './ReportSharp'; -export { default as ReportTwoTone } from './ReportTwoTone'; -export { default as RequestPage } from './RequestPage'; -export { default as RequestPageOutlined } from './RequestPageOutlined'; -export { default as RequestPageRounded } from './RequestPageRounded'; -export { default as RequestPageSharp } from './RequestPageSharp'; -export { default as RequestPageTwoTone } from './RequestPageTwoTone'; -export { default as RequestQuote } from './RequestQuote'; -export { default as RequestQuoteOutlined } from './RequestQuoteOutlined'; -export { default as RequestQuoteRounded } from './RequestQuoteRounded'; -export { default as RequestQuoteSharp } from './RequestQuoteSharp'; -export { default as RequestQuoteTwoTone } from './RequestQuoteTwoTone'; -export { default as ResetTv } from './ResetTv'; -export { default as ResetTvOutlined } from './ResetTvOutlined'; -export { default as ResetTvRounded } from './ResetTvRounded'; -export { default as ResetTvSharp } from './ResetTvSharp'; -export { default as ResetTvTwoTone } from './ResetTvTwoTone'; -export { default as RestartAlt } from './RestartAlt'; -export { default as RestartAltOutlined } from './RestartAltOutlined'; -export { default as RestartAltRounded } from './RestartAltRounded'; -export { default as RestartAltSharp } from './RestartAltSharp'; -export { default as RestartAltTwoTone } from './RestartAltTwoTone'; -export { default as Restaurant } from './Restaurant'; -export { default as RestaurantMenu } from './RestaurantMenu'; -export { default as RestaurantMenuOutlined } from './RestaurantMenuOutlined'; -export { default as RestaurantMenuRounded } from './RestaurantMenuRounded'; -export { default as RestaurantMenuSharp } from './RestaurantMenuSharp'; -export { default as RestaurantMenuTwoTone } from './RestaurantMenuTwoTone'; -export { default as RestaurantOutlined } from './RestaurantOutlined'; -export { default as RestaurantRounded } from './RestaurantRounded'; -export { default as RestaurantSharp } from './RestaurantSharp'; -export { default as RestaurantTwoTone } from './RestaurantTwoTone'; -export { default as Restore } from './Restore'; -export { default as RestoreFromTrash } from './RestoreFromTrash'; -export { default as RestoreFromTrashOutlined } from './RestoreFromTrashOutlined'; -export { default as RestoreFromTrashRounded } from './RestoreFromTrashRounded'; -export { default as RestoreFromTrashSharp } from './RestoreFromTrashSharp'; -export { default as RestoreFromTrashTwoTone } from './RestoreFromTrashTwoTone'; -export { default as RestoreOutlined } from './RestoreOutlined'; -export { default as RestorePage } from './RestorePage'; -export { default as RestorePageOutlined } from './RestorePageOutlined'; -export { default as RestorePageRounded } from './RestorePageRounded'; -export { default as RestorePageSharp } from './RestorePageSharp'; -export { default as RestorePageTwoTone } from './RestorePageTwoTone'; -export { default as RestoreRounded } from './RestoreRounded'; -export { default as RestoreSharp } from './RestoreSharp'; -export { default as RestoreTwoTone } from './RestoreTwoTone'; -export { default as Reviews } from './Reviews'; -export { default as ReviewsOutlined } from './ReviewsOutlined'; -export { default as ReviewsRounded } from './ReviewsRounded'; -export { default as ReviewsSharp } from './ReviewsSharp'; -export { default as ReviewsTwoTone } from './ReviewsTwoTone'; -export { default as RiceBowl } from './RiceBowl'; -export { default as RiceBowlOutlined } from './RiceBowlOutlined'; -export { default as RiceBowlRounded } from './RiceBowlRounded'; -export { default as RiceBowlSharp } from './RiceBowlSharp'; -export { default as RiceBowlTwoTone } from './RiceBowlTwoTone'; -export { default as RingVolume } from './RingVolume'; -export { default as RingVolumeOutlined } from './RingVolumeOutlined'; -export { default as RingVolumeRounded } from './RingVolumeRounded'; -export { default as RingVolumeSharp } from './RingVolumeSharp'; -export { default as RingVolumeTwoTone } from './RingVolumeTwoTone'; -export { default as Roofing } from './Roofing'; -export { default as RoofingOutlined } from './RoofingOutlined'; -export { default as RoofingRounded } from './RoofingRounded'; -export { default as RoofingSharp } from './RoofingSharp'; -export { default as RoofingTwoTone } from './RoofingTwoTone'; -export { default as Room } from './Room'; -export { default as RoomOutlined } from './RoomOutlined'; -export { default as RoomPreferences } from './RoomPreferences'; -export { default as RoomPreferencesOutlined } from './RoomPreferencesOutlined'; -export { default as RoomPreferencesRounded } from './RoomPreferencesRounded'; -export { default as RoomPreferencesSharp } from './RoomPreferencesSharp'; -export { default as RoomPreferencesTwoTone } from './RoomPreferencesTwoTone'; -export { default as RoomRounded } from './RoomRounded'; -export { default as RoomService } from './RoomService'; -export { default as RoomServiceOutlined } from './RoomServiceOutlined'; -export { default as RoomServiceRounded } from './RoomServiceRounded'; -export { default as RoomServiceSharp } from './RoomServiceSharp'; -export { default as RoomServiceTwoTone } from './RoomServiceTwoTone'; -export { default as RoomSharp } from './RoomSharp'; -export { default as RoomTwoTone } from './RoomTwoTone'; -export { default as Rotate90DegreesCcw } from './Rotate90DegreesCcw'; -export { default as Rotate90DegreesCcwOutlined } from './Rotate90DegreesCcwOutlined'; -export { default as Rotate90DegreesCcwRounded } from './Rotate90DegreesCcwRounded'; -export { default as Rotate90DegreesCcwSharp } from './Rotate90DegreesCcwSharp'; -export { default as Rotate90DegreesCcwTwoTone } from './Rotate90DegreesCcwTwoTone'; -export { default as RotateLeft } from './RotateLeft'; -export { default as RotateLeftOutlined } from './RotateLeftOutlined'; -export { default as RotateLeftRounded } from './RotateLeftRounded'; -export { default as RotateLeftSharp } from './RotateLeftSharp'; -export { default as RotateLeftTwoTone } from './RotateLeftTwoTone'; -export { default as RotateRight } from './RotateRight'; -export { default as RotateRightOutlined } from './RotateRightOutlined'; -export { default as RotateRightRounded } from './RotateRightRounded'; -export { default as RotateRightSharp } from './RotateRightSharp'; -export { default as RotateRightTwoTone } from './RotateRightTwoTone'; -export { default as RoundedCorner } from './RoundedCorner'; -export { default as RoundedCornerOutlined } from './RoundedCornerOutlined'; -export { default as RoundedCornerRounded } from './RoundedCornerRounded'; -export { default as RoundedCornerSharp } from './RoundedCornerSharp'; -export { default as RoundedCornerTwoTone } from './RoundedCornerTwoTone'; -export { default as Router } from './Router'; -export { default as RouterOutlined } from './RouterOutlined'; -export { default as RouterRounded } from './RouterRounded'; -export { default as RouterSharp } from './RouterSharp'; -export { default as RouterTwoTone } from './RouterTwoTone'; -export { default as Rowing } from './Rowing'; -export { default as RowingOutlined } from './RowingOutlined'; -export { default as RowingRounded } from './RowingRounded'; -export { default as RowingSharp } from './RowingSharp'; -export { default as RowingTwoTone } from './RowingTwoTone'; -export { default as RssFeed } from './RssFeed'; -export { default as RssFeedOutlined } from './RssFeedOutlined'; -export { default as RssFeedRounded } from './RssFeedRounded'; -export { default as RssFeedSharp } from './RssFeedSharp'; -export { default as RssFeedTwoTone } from './RssFeedTwoTone'; -export { default as Rsvp } from './Rsvp'; -export { default as RsvpOutlined } from './RsvpOutlined'; -export { default as RsvpRounded } from './RsvpRounded'; -export { default as RsvpSharp } from './RsvpSharp'; -export { default as RsvpTwoTone } from './RsvpTwoTone'; -export { default as Rtt } from './Rtt'; -export { default as RttOutlined } from './RttOutlined'; -export { default as RttRounded } from './RttRounded'; -export { default as RttSharp } from './RttSharp'; -export { default as RttTwoTone } from './RttTwoTone'; -export { default as Rule } from './Rule'; -export { default as RuleFolder } from './RuleFolder'; -export { default as RuleFolderOutlined } from './RuleFolderOutlined'; -export { default as RuleFolderRounded } from './RuleFolderRounded'; -export { default as RuleFolderSharp } from './RuleFolderSharp'; -export { default as RuleFolderTwoTone } from './RuleFolderTwoTone'; -export { default as RuleOutlined } from './RuleOutlined'; -export { default as RuleRounded } from './RuleRounded'; -export { default as RuleSharp } from './RuleSharp'; -export { default as RuleTwoTone } from './RuleTwoTone'; -export { default as RunCircle } from './RunCircle'; -export { default as RunCircleOutlined } from './RunCircleOutlined'; -export { default as RunCircleRounded } from './RunCircleRounded'; -export { default as RunCircleSharp } from './RunCircleSharp'; -export { default as RunCircleTwoTone } from './RunCircleTwoTone'; -export { default as RunningWithErrors } from './RunningWithErrors'; -export { default as RunningWithErrorsOutlined } from './RunningWithErrorsOutlined'; -export { default as RunningWithErrorsRounded } from './RunningWithErrorsRounded'; -export { default as RunningWithErrorsSharp } from './RunningWithErrorsSharp'; -export { default as RunningWithErrorsTwoTone } from './RunningWithErrorsTwoTone'; -export { default as RvHookup } from './RvHookup'; -export { default as RvHookupOutlined } from './RvHookupOutlined'; -export { default as RvHookupRounded } from './RvHookupRounded'; -export { default as RvHookupSharp } from './RvHookupSharp'; -export { default as RvHookupTwoTone } from './RvHookupTwoTone'; -export { default as SafetyDivider } from './SafetyDivider'; -export { default as SafetyDividerOutlined } from './SafetyDividerOutlined'; -export { default as SafetyDividerRounded } from './SafetyDividerRounded'; -export { default as SafetyDividerSharp } from './SafetyDividerSharp'; -export { default as SafetyDividerTwoTone } from './SafetyDividerTwoTone'; -export { default as Sailing } from './Sailing'; -export { default as SailingOutlined } from './SailingOutlined'; -export { default as SailingRounded } from './SailingRounded'; -export { default as SailingSharp } from './SailingSharp'; -export { default as SailingTwoTone } from './SailingTwoTone'; -export { default as Sanitizer } from './Sanitizer'; -export { default as SanitizerOutlined } from './SanitizerOutlined'; -export { default as SanitizerRounded } from './SanitizerRounded'; -export { default as SanitizerSharp } from './SanitizerSharp'; -export { default as SanitizerTwoTone } from './SanitizerTwoTone'; -export { default as Satellite } from './Satellite'; -export { default as SatelliteOutlined } from './SatelliteOutlined'; -export { default as SatelliteRounded } from './SatelliteRounded'; -export { default as SatelliteSharp } from './SatelliteSharp'; -export { default as SatelliteTwoTone } from './SatelliteTwoTone'; -export { default as Save } from './Save'; -export { default as SaveAlt } from './SaveAlt'; -export { default as SaveAltOutlined } from './SaveAltOutlined'; -export { default as SaveAltRounded } from './SaveAltRounded'; -export { default as SaveAltSharp } from './SaveAltSharp'; -export { default as SaveAltTwoTone } from './SaveAltTwoTone'; -export { default as SaveOutlined } from './SaveOutlined'; -export { default as SaveRounded } from './SaveRounded'; -export { default as SaveSharp } from './SaveSharp'; -export { default as SaveTwoTone } from './SaveTwoTone'; -export { default as SavedSearch } from './SavedSearch'; -export { default as SavedSearchOutlined } from './SavedSearchOutlined'; -export { default as SavedSearchRounded } from './SavedSearchRounded'; -export { default as SavedSearchSharp } from './SavedSearchSharp'; -export { default as SavedSearchTwoTone } from './SavedSearchTwoTone'; -export { default as Savings } from './Savings'; -export { default as SavingsOutlined } from './SavingsOutlined'; -export { default as SavingsRounded } from './SavingsRounded'; -export { default as SavingsSharp } from './SavingsSharp'; -export { default as SavingsTwoTone } from './SavingsTwoTone'; -export { default as Scanner } from './Scanner'; -export { default as ScannerOutlined } from './ScannerOutlined'; -export { default as ScannerRounded } from './ScannerRounded'; -export { default as ScannerSharp } from './ScannerSharp'; -export { default as ScannerTwoTone } from './ScannerTwoTone'; -export { default as ScatterPlot } from './ScatterPlot'; -export { default as ScatterPlotOutlined } from './ScatterPlotOutlined'; -export { default as ScatterPlotRounded } from './ScatterPlotRounded'; -export { default as ScatterPlotSharp } from './ScatterPlotSharp'; -export { default as ScatterPlotTwoTone } from './ScatterPlotTwoTone'; -export { default as Schedule } from './Schedule'; -export { default as ScheduleOutlined } from './ScheduleOutlined'; -export { default as ScheduleRounded } from './ScheduleRounded'; -export { default as ScheduleSend } from './ScheduleSend'; -export { default as ScheduleSendOutlined } from './ScheduleSendOutlined'; -export { default as ScheduleSendRounded } from './ScheduleSendRounded'; -export { default as ScheduleSendSharp } from './ScheduleSendSharp'; -export { default as ScheduleSendTwoTone } from './ScheduleSendTwoTone'; -export { default as ScheduleSharp } from './ScheduleSharp'; -export { default as ScheduleTwoTone } from './ScheduleTwoTone'; -export { default as Schema } from './Schema'; -export { default as SchemaOutlined } from './SchemaOutlined'; -export { default as SchemaRounded } from './SchemaRounded'; -export { default as SchemaSharp } from './SchemaSharp'; -export { default as SchemaTwoTone } from './SchemaTwoTone'; -export { default as School } from './School'; -export { default as SchoolOutlined } from './SchoolOutlined'; -export { default as SchoolRounded } from './SchoolRounded'; -export { default as SchoolSharp } from './SchoolSharp'; -export { default as SchoolTwoTone } from './SchoolTwoTone'; -export { default as Science } from './Science'; -export { default as ScienceOutlined } from './ScienceOutlined'; -export { default as ScienceRounded } from './ScienceRounded'; -export { default as ScienceSharp } from './ScienceSharp'; -export { default as ScienceTwoTone } from './ScienceTwoTone'; -export { default as Score } from './Score'; -export { default as ScoreOutlined } from './ScoreOutlined'; -export { default as ScoreRounded } from './ScoreRounded'; -export { default as ScoreSharp } from './ScoreSharp'; -export { default as ScoreTwoTone } from './ScoreTwoTone'; -export { default as ScreenLockLandscape } from './ScreenLockLandscape'; -export { default as ScreenLockLandscapeOutlined } from './ScreenLockLandscapeOutlined'; -export { default as ScreenLockLandscapeRounded } from './ScreenLockLandscapeRounded'; -export { default as ScreenLockLandscapeSharp } from './ScreenLockLandscapeSharp'; -export { default as ScreenLockLandscapeTwoTone } from './ScreenLockLandscapeTwoTone'; -export { default as ScreenLockPortrait } from './ScreenLockPortrait'; -export { default as ScreenLockPortraitOutlined } from './ScreenLockPortraitOutlined'; -export { default as ScreenLockPortraitRounded } from './ScreenLockPortraitRounded'; -export { default as ScreenLockPortraitSharp } from './ScreenLockPortraitSharp'; -export { default as ScreenLockPortraitTwoTone } from './ScreenLockPortraitTwoTone'; -export { default as ScreenLockRotation } from './ScreenLockRotation'; -export { default as ScreenLockRotationOutlined } from './ScreenLockRotationOutlined'; -export { default as ScreenLockRotationRounded } from './ScreenLockRotationRounded'; -export { default as ScreenLockRotationSharp } from './ScreenLockRotationSharp'; -export { default as ScreenLockRotationTwoTone } from './ScreenLockRotationTwoTone'; -export { default as ScreenRotation } from './ScreenRotation'; -export { default as ScreenRotationOutlined } from './ScreenRotationOutlined'; -export { default as ScreenRotationRounded } from './ScreenRotationRounded'; -export { default as ScreenRotationSharp } from './ScreenRotationSharp'; -export { default as ScreenRotationTwoTone } from './ScreenRotationTwoTone'; -export { default as ScreenSearchDesktop } from './ScreenSearchDesktop'; -export { default as ScreenSearchDesktopOutlined } from './ScreenSearchDesktopOutlined'; -export { default as ScreenSearchDesktopRounded } from './ScreenSearchDesktopRounded'; -export { default as ScreenSearchDesktopSharp } from './ScreenSearchDesktopSharp'; -export { default as ScreenSearchDesktopTwoTone } from './ScreenSearchDesktopTwoTone'; -export { default as ScreenShare } from './ScreenShare'; -export { default as ScreenShareOutlined } from './ScreenShareOutlined'; -export { default as ScreenShareRounded } from './ScreenShareRounded'; -export { default as ScreenShareSharp } from './ScreenShareSharp'; -export { default as ScreenShareTwoTone } from './ScreenShareTwoTone'; -export { default as Screenshot } from './Screenshot'; -export { default as ScreenshotOutlined } from './ScreenshotOutlined'; -export { default as ScreenshotRounded } from './ScreenshotRounded'; -export { default as ScreenshotSharp } from './ScreenshotSharp'; -export { default as ScreenshotTwoTone } from './ScreenshotTwoTone'; -export { default as Sd } from './Sd'; -export { default as SdCard } from './SdCard'; -export { default as SdCardAlert } from './SdCardAlert'; -export { default as SdCardAlertOutlined } from './SdCardAlertOutlined'; -export { default as SdCardAlertRounded } from './SdCardAlertRounded'; -export { default as SdCardAlertSharp } from './SdCardAlertSharp'; -export { default as SdCardAlertTwoTone } from './SdCardAlertTwoTone'; -export { default as SdCardOutlined } from './SdCardOutlined'; -export { default as SdCardRounded } from './SdCardRounded'; -export { default as SdCardSharp } from './SdCardSharp'; -export { default as SdCardTwoTone } from './SdCardTwoTone'; -export { default as SdOutlined } from './SdOutlined'; -export { default as SdRounded } from './SdRounded'; -export { default as SdSharp } from './SdSharp'; -export { default as SdStorage } from './SdStorage'; -export { default as SdStorageOutlined } from './SdStorageOutlined'; -export { default as SdStorageRounded } from './SdStorageRounded'; -export { default as SdStorageSharp } from './SdStorageSharp'; -export { default as SdStorageTwoTone } from './SdStorageTwoTone'; -export { default as SdTwoTone } from './SdTwoTone'; -export { default as Search } from './Search'; -export { default as SearchOff } from './SearchOff'; -export { default as SearchOffOutlined } from './SearchOffOutlined'; -export { default as SearchOffRounded } from './SearchOffRounded'; -export { default as SearchOffSharp } from './SearchOffSharp'; -export { default as SearchOffTwoTone } from './SearchOffTwoTone'; -export { default as SearchOutlined } from './SearchOutlined'; -export { default as SearchRounded } from './SearchRounded'; -export { default as SearchSharp } from './SearchSharp'; -export { default as SearchTwoTone } from './SearchTwoTone'; -export { default as Security } from './Security'; -export { default as SecurityOutlined } from './SecurityOutlined'; -export { default as SecurityRounded } from './SecurityRounded'; -export { default as SecuritySharp } from './SecuritySharp'; -export { default as SecurityTwoTone } from './SecurityTwoTone'; -export { default as SecurityUpdate } from './SecurityUpdate'; -export { default as SecurityUpdateGood } from './SecurityUpdateGood'; -export { default as SecurityUpdateGoodOutlined } from './SecurityUpdateGoodOutlined'; -export { default as SecurityUpdateGoodRounded } from './SecurityUpdateGoodRounded'; -export { default as SecurityUpdateGoodSharp } from './SecurityUpdateGoodSharp'; -export { default as SecurityUpdateGoodTwoTone } from './SecurityUpdateGoodTwoTone'; -export { default as SecurityUpdateOutlined } from './SecurityUpdateOutlined'; -export { default as SecurityUpdateRounded } from './SecurityUpdateRounded'; -export { default as SecurityUpdateSharp } from './SecurityUpdateSharp'; -export { default as SecurityUpdateTwoTone } from './SecurityUpdateTwoTone'; -export { default as SecurityUpdateWarning } from './SecurityUpdateWarning'; -export { default as SecurityUpdateWarningOutlined } from './SecurityUpdateWarningOutlined'; -export { default as SecurityUpdateWarningRounded } from './SecurityUpdateWarningRounded'; -export { default as SecurityUpdateWarningSharp } from './SecurityUpdateWarningSharp'; -export { default as SecurityUpdateWarningTwoTone } from './SecurityUpdateWarningTwoTone'; -export { default as Segment } from './Segment'; -export { default as SegmentOutlined } from './SegmentOutlined'; -export { default as SegmentRounded } from './SegmentRounded'; -export { default as SegmentSharp } from './SegmentSharp'; -export { default as SegmentTwoTone } from './SegmentTwoTone'; -export { default as SelectAll } from './SelectAll'; -export { default as SelectAllOutlined } from './SelectAllOutlined'; -export { default as SelectAllRounded } from './SelectAllRounded'; -export { default as SelectAllSharp } from './SelectAllSharp'; -export { default as SelectAllTwoTone } from './SelectAllTwoTone'; -export { default as SelfImprovement } from './SelfImprovement'; -export { default as SelfImprovementOutlined } from './SelfImprovementOutlined'; -export { default as SelfImprovementRounded } from './SelfImprovementRounded'; -export { default as SelfImprovementSharp } from './SelfImprovementSharp'; -export { default as SelfImprovementTwoTone } from './SelfImprovementTwoTone'; -export { default as Sell } from './Sell'; -export { default as SellOutlined } from './SellOutlined'; -export { default as SellRounded } from './SellRounded'; -export { default as SellSharp } from './SellSharp'; -export { default as SellTwoTone } from './SellTwoTone'; -export { default as Send } from './Send'; -export { default as SendAndArchive } from './SendAndArchive'; -export { default as SendAndArchiveOutlined } from './SendAndArchiveOutlined'; -export { default as SendAndArchiveRounded } from './SendAndArchiveRounded'; -export { default as SendAndArchiveSharp } from './SendAndArchiveSharp'; -export { default as SendAndArchiveTwoTone } from './SendAndArchiveTwoTone'; -export { default as SendOutlined } from './SendOutlined'; -export { default as SendRounded } from './SendRounded'; -export { default as SendSharp } from './SendSharp'; -export { default as SendToMobile } from './SendToMobile'; -export { default as SendToMobileOutlined } from './SendToMobileOutlined'; -export { default as SendToMobileRounded } from './SendToMobileRounded'; -export { default as SendToMobileSharp } from './SendToMobileSharp'; -export { default as SendToMobileTwoTone } from './SendToMobileTwoTone'; -export { default as SendTwoTone } from './SendTwoTone'; -export { default as SensorDoor } from './SensorDoor'; -export { default as SensorDoorOutlined } from './SensorDoorOutlined'; -export { default as SensorDoorRounded } from './SensorDoorRounded'; -export { default as SensorDoorSharp } from './SensorDoorSharp'; -export { default as SensorDoorTwoTone } from './SensorDoorTwoTone'; -export { default as SensorWindow } from './SensorWindow'; -export { default as SensorWindowOutlined } from './SensorWindowOutlined'; -export { default as SensorWindowRounded } from './SensorWindowRounded'; -export { default as SensorWindowSharp } from './SensorWindowSharp'; -export { default as SensorWindowTwoTone } from './SensorWindowTwoTone'; -export { default as Sensors } from './Sensors'; -export { default as SensorsOff } from './SensorsOff'; -export { default as SensorsOffOutlined } from './SensorsOffOutlined'; -export { default as SensorsOffRounded } from './SensorsOffRounded'; -export { default as SensorsOffSharp } from './SensorsOffSharp'; -export { default as SensorsOffTwoTone } from './SensorsOffTwoTone'; -export { default as SensorsOutlined } from './SensorsOutlined'; -export { default as SensorsRounded } from './SensorsRounded'; -export { default as SensorsSharp } from './SensorsSharp'; -export { default as SensorsTwoTone } from './SensorsTwoTone'; -export { default as SentimentDissatisfied } from './SentimentDissatisfied'; -export { default as SentimentDissatisfiedOutlined } from './SentimentDissatisfiedOutlined'; -export { default as SentimentDissatisfiedRounded } from './SentimentDissatisfiedRounded'; -export { default as SentimentDissatisfiedSharp } from './SentimentDissatisfiedSharp'; -export { default as SentimentDissatisfiedTwoTone } from './SentimentDissatisfiedTwoTone'; -export { default as SentimentNeutral } from './SentimentNeutral'; -export { default as SentimentNeutralOutlined } from './SentimentNeutralOutlined'; -export { default as SentimentNeutralRounded } from './SentimentNeutralRounded'; -export { default as SentimentNeutralSharp } from './SentimentNeutralSharp'; -export { default as SentimentNeutralTwoTone } from './SentimentNeutralTwoTone'; -export { default as SentimentSatisfied } from './SentimentSatisfied'; -export { default as SentimentSatisfiedAlt } from './SentimentSatisfiedAlt'; -export { default as SentimentSatisfiedAltOutlined } from './SentimentSatisfiedAltOutlined'; -export { default as SentimentSatisfiedAltRounded } from './SentimentSatisfiedAltRounded'; -export { default as SentimentSatisfiedAltSharp } from './SentimentSatisfiedAltSharp'; -export { default as SentimentSatisfiedAltTwoTone } from './SentimentSatisfiedAltTwoTone'; -export { default as SentimentSatisfiedOutlined } from './SentimentSatisfiedOutlined'; -export { default as SentimentSatisfiedRounded } from './SentimentSatisfiedRounded'; -export { default as SentimentSatisfiedSharp } from './SentimentSatisfiedSharp'; -export { default as SentimentSatisfiedTwoTone } from './SentimentSatisfiedTwoTone'; -export { default as SentimentVeryDissatisfied } from './SentimentVeryDissatisfied'; -export { default as SentimentVeryDissatisfiedOutlined } from './SentimentVeryDissatisfiedOutlined'; -export { default as SentimentVeryDissatisfiedRounded } from './SentimentVeryDissatisfiedRounded'; -export { default as SentimentVeryDissatisfiedSharp } from './SentimentVeryDissatisfiedSharp'; -export { default as SentimentVeryDissatisfiedTwoTone } from './SentimentVeryDissatisfiedTwoTone'; -export { default as SentimentVerySatisfied } from './SentimentVerySatisfied'; -export { default as SentimentVerySatisfiedOutlined } from './SentimentVerySatisfiedOutlined'; -export { default as SentimentVerySatisfiedRounded } from './SentimentVerySatisfiedRounded'; -export { default as SentimentVerySatisfiedSharp } from './SentimentVerySatisfiedSharp'; -export { default as SentimentVerySatisfiedTwoTone } from './SentimentVerySatisfiedTwoTone'; -export { default as SetMeal } from './SetMeal'; -export { default as SetMealOutlined } from './SetMealOutlined'; -export { default as SetMealRounded } from './SetMealRounded'; -export { default as SetMealSharp } from './SetMealSharp'; -export { default as SetMealTwoTone } from './SetMealTwoTone'; -export { default as Settings } from './Settings'; -export { default as SettingsAccessibility } from './SettingsAccessibility'; -export { default as SettingsAccessibilityOutlined } from './SettingsAccessibilityOutlined'; -export { default as SettingsAccessibilityRounded } from './SettingsAccessibilityRounded'; -export { default as SettingsAccessibilitySharp } from './SettingsAccessibilitySharp'; -export { default as SettingsAccessibilityTwoTone } from './SettingsAccessibilityTwoTone'; -export { default as SettingsApplications } from './SettingsApplications'; -export { default as SettingsApplicationsOutlined } from './SettingsApplicationsOutlined'; -export { default as SettingsApplicationsRounded } from './SettingsApplicationsRounded'; -export { default as SettingsApplicationsSharp } from './SettingsApplicationsSharp'; -export { default as SettingsApplicationsTwoTone } from './SettingsApplicationsTwoTone'; -export { default as SettingsBackupRestore } from './SettingsBackupRestore'; -export { default as SettingsBackupRestoreOutlined } from './SettingsBackupRestoreOutlined'; -export { default as SettingsBackupRestoreRounded } from './SettingsBackupRestoreRounded'; -export { default as SettingsBackupRestoreSharp } from './SettingsBackupRestoreSharp'; -export { default as SettingsBackupRestoreTwoTone } from './SettingsBackupRestoreTwoTone'; -export { default as SettingsBluetooth } from './SettingsBluetooth'; -export { default as SettingsBluetoothOutlined } from './SettingsBluetoothOutlined'; -export { default as SettingsBluetoothRounded } from './SettingsBluetoothRounded'; -export { default as SettingsBluetoothSharp } from './SettingsBluetoothSharp'; -export { default as SettingsBluetoothTwoTone } from './SettingsBluetoothTwoTone'; -export { default as SettingsBrightness } from './SettingsBrightness'; -export { default as SettingsBrightnessOutlined } from './SettingsBrightnessOutlined'; -export { default as SettingsBrightnessRounded } from './SettingsBrightnessRounded'; -export { default as SettingsBrightnessSharp } from './SettingsBrightnessSharp'; -export { default as SettingsBrightnessTwoTone } from './SettingsBrightnessTwoTone'; -export { default as SettingsCell } from './SettingsCell'; -export { default as SettingsCellOutlined } from './SettingsCellOutlined'; -export { default as SettingsCellRounded } from './SettingsCellRounded'; -export { default as SettingsCellSharp } from './SettingsCellSharp'; -export { default as SettingsCellTwoTone } from './SettingsCellTwoTone'; -export { default as SettingsEthernet } from './SettingsEthernet'; -export { default as SettingsEthernetOutlined } from './SettingsEthernetOutlined'; -export { default as SettingsEthernetRounded } from './SettingsEthernetRounded'; -export { default as SettingsEthernetSharp } from './SettingsEthernetSharp'; -export { default as SettingsEthernetTwoTone } from './SettingsEthernetTwoTone'; -export { default as SettingsInputAntenna } from './SettingsInputAntenna'; -export { default as SettingsInputAntennaOutlined } from './SettingsInputAntennaOutlined'; -export { default as SettingsInputAntennaRounded } from './SettingsInputAntennaRounded'; -export { default as SettingsInputAntennaSharp } from './SettingsInputAntennaSharp'; -export { default as SettingsInputAntennaTwoTone } from './SettingsInputAntennaTwoTone'; -export { default as SettingsInputComponent } from './SettingsInputComponent'; -export { default as SettingsInputComponentOutlined } from './SettingsInputComponentOutlined'; -export { default as SettingsInputComponentRounded } from './SettingsInputComponentRounded'; -export { default as SettingsInputComponentSharp } from './SettingsInputComponentSharp'; -export { default as SettingsInputComponentTwoTone } from './SettingsInputComponentTwoTone'; -export { default as SettingsInputComposite } from './SettingsInputComposite'; -export { default as SettingsInputCompositeOutlined } from './SettingsInputCompositeOutlined'; -export { default as SettingsInputCompositeRounded } from './SettingsInputCompositeRounded'; -export { default as SettingsInputCompositeSharp } from './SettingsInputCompositeSharp'; -export { default as SettingsInputCompositeTwoTone } from './SettingsInputCompositeTwoTone'; -export { default as SettingsInputHdmi } from './SettingsInputHdmi'; -export { default as SettingsInputHdmiOutlined } from './SettingsInputHdmiOutlined'; -export { default as SettingsInputHdmiRounded } from './SettingsInputHdmiRounded'; -export { default as SettingsInputHdmiSharp } from './SettingsInputHdmiSharp'; -export { default as SettingsInputHdmiTwoTone } from './SettingsInputHdmiTwoTone'; -export { default as SettingsInputSvideo } from './SettingsInputSvideo'; -export { default as SettingsInputSvideoOutlined } from './SettingsInputSvideoOutlined'; -export { default as SettingsInputSvideoRounded } from './SettingsInputSvideoRounded'; -export { default as SettingsInputSvideoSharp } from './SettingsInputSvideoSharp'; -export { default as SettingsInputSvideoTwoTone } from './SettingsInputSvideoTwoTone'; -export { default as SettingsOutlined } from './SettingsOutlined'; -export { default as SettingsOverscan } from './SettingsOverscan'; -export { default as SettingsOverscanOutlined } from './SettingsOverscanOutlined'; -export { default as SettingsOverscanRounded } from './SettingsOverscanRounded'; -export { default as SettingsOverscanSharp } from './SettingsOverscanSharp'; -export { default as SettingsOverscanTwoTone } from './SettingsOverscanTwoTone'; -export { default as SettingsPhone } from './SettingsPhone'; -export { default as SettingsPhoneOutlined } from './SettingsPhoneOutlined'; -export { default as SettingsPhoneRounded } from './SettingsPhoneRounded'; -export { default as SettingsPhoneSharp } from './SettingsPhoneSharp'; -export { default as SettingsPhoneTwoTone } from './SettingsPhoneTwoTone'; -export { default as SettingsPower } from './SettingsPower'; -export { default as SettingsPowerOutlined } from './SettingsPowerOutlined'; -export { default as SettingsPowerRounded } from './SettingsPowerRounded'; -export { default as SettingsPowerSharp } from './SettingsPowerSharp'; -export { default as SettingsPowerTwoTone } from './SettingsPowerTwoTone'; -export { default as SettingsRemote } from './SettingsRemote'; -export { default as SettingsRemoteOutlined } from './SettingsRemoteOutlined'; -export { default as SettingsRemoteRounded } from './SettingsRemoteRounded'; -export { default as SettingsRemoteSharp } from './SettingsRemoteSharp'; -export { default as SettingsRemoteTwoTone } from './SettingsRemoteTwoTone'; -export { default as SettingsRounded } from './SettingsRounded'; -export { default as SettingsSharp } from './SettingsSharp'; -export { default as SettingsSuggest } from './SettingsSuggest'; -export { default as SettingsSuggestOutlined } from './SettingsSuggestOutlined'; -export { default as SettingsSuggestRounded } from './SettingsSuggestRounded'; -export { default as SettingsSuggestSharp } from './SettingsSuggestSharp'; -export { default as SettingsSuggestTwoTone } from './SettingsSuggestTwoTone'; -export { default as SettingsSystemDaydream } from './SettingsSystemDaydream'; -export { default as SettingsSystemDaydreamOutlined } from './SettingsSystemDaydreamOutlined'; -export { default as SettingsSystemDaydreamRounded } from './SettingsSystemDaydreamRounded'; -export { default as SettingsSystemDaydreamSharp } from './SettingsSystemDaydreamSharp'; -export { default as SettingsSystemDaydreamTwoTone } from './SettingsSystemDaydreamTwoTone'; -export { default as SettingsTwoTone } from './SettingsTwoTone'; -export { default as SettingsVoice } from './SettingsVoice'; -export { default as SettingsVoiceOutlined } from './SettingsVoiceOutlined'; -export { default as SettingsVoiceRounded } from './SettingsVoiceRounded'; -export { default as SettingsVoiceSharp } from './SettingsVoiceSharp'; -export { default as SettingsVoiceTwoTone } from './SettingsVoiceTwoTone'; -export { default as SevenK } from './SevenK'; -export { default as SevenKOutlined } from './SevenKOutlined'; -export { default as SevenKPlus } from './SevenKPlus'; -export { default as SevenKPlusOutlined } from './SevenKPlusOutlined'; -export { default as SevenKPlusRounded } from './SevenKPlusRounded'; -export { default as SevenKPlusSharp } from './SevenKPlusSharp'; -export { default as SevenKPlusTwoTone } from './SevenKPlusTwoTone'; -export { default as SevenKRounded } from './SevenKRounded'; -export { default as SevenKSharp } from './SevenKSharp'; -export { default as SevenKTwoTone } from './SevenKTwoTone'; -export { default as SevenMp } from './SevenMp'; -export { default as SevenMpOutlined } from './SevenMpOutlined'; -export { default as SevenMpRounded } from './SevenMpRounded'; -export { default as SevenMpSharp } from './SevenMpSharp'; -export { default as SevenMpTwoTone } from './SevenMpTwoTone'; -export { default as SeventeenMp } from './SeventeenMp'; -export { default as SeventeenMpOutlined } from './SeventeenMpOutlined'; -export { default as SeventeenMpRounded } from './SeventeenMpRounded'; -export { default as SeventeenMpSharp } from './SeventeenMpSharp'; -export { default as SeventeenMpTwoTone } from './SeventeenMpTwoTone'; -export { default as Share } from './Share'; -export { default as ShareLocation } from './ShareLocation'; -export { default as ShareLocationOutlined } from './ShareLocationOutlined'; -export { default as ShareLocationRounded } from './ShareLocationRounded'; -export { default as ShareLocationSharp } from './ShareLocationSharp'; -export { default as ShareLocationTwoTone } from './ShareLocationTwoTone'; -export { default as ShareOutlined } from './ShareOutlined'; -export { default as ShareRounded } from './ShareRounded'; -export { default as ShareSharp } from './ShareSharp'; -export { default as ShareTwoTone } from './ShareTwoTone'; -export { default as Shield } from './Shield'; -export { default as ShieldOutlined } from './ShieldOutlined'; -export { default as ShieldRounded } from './ShieldRounded'; -export { default as ShieldSharp } from './ShieldSharp'; -export { default as ShieldTwoTone } from './ShieldTwoTone'; -export { default as Shop } from './Shop'; -export { default as Shop2 } from './Shop2'; -export { default as Shop2Outlined } from './Shop2Outlined'; -export { default as Shop2Rounded } from './Shop2Rounded'; -export { default as Shop2Sharp } from './Shop2Sharp'; -export { default as Shop2TwoTone } from './Shop2TwoTone'; -export { default as ShopOutlined } from './ShopOutlined'; -export { default as ShopRounded } from './ShopRounded'; -export { default as ShopSharp } from './ShopSharp'; -export { default as ShopTwo } from './ShopTwo'; -export { default as ShopTwoOutlined } from './ShopTwoOutlined'; -export { default as ShopTwoRounded } from './ShopTwoRounded'; -export { default as ShopTwoSharp } from './ShopTwoSharp'; -export { default as ShopTwoTone } from './ShopTwoTone'; -export { default as ShopTwoTwoTone } from './ShopTwoTwoTone'; -export { default as ShoppingBag } from './ShoppingBag'; -export { default as ShoppingBagOutlined } from './ShoppingBagOutlined'; -export { default as ShoppingBagRounded } from './ShoppingBagRounded'; -export { default as ShoppingBagSharp } from './ShoppingBagSharp'; -export { default as ShoppingBagTwoTone } from './ShoppingBagTwoTone'; -export { default as ShoppingBasket } from './ShoppingBasket'; -export { default as ShoppingBasketOutlined } from './ShoppingBasketOutlined'; -export { default as ShoppingBasketRounded } from './ShoppingBasketRounded'; -export { default as ShoppingBasketSharp } from './ShoppingBasketSharp'; -export { default as ShoppingBasketTwoTone } from './ShoppingBasketTwoTone'; -export { default as ShoppingCart } from './ShoppingCart'; -export { default as ShoppingCartOutlined } from './ShoppingCartOutlined'; -export { default as ShoppingCartRounded } from './ShoppingCartRounded'; -export { default as ShoppingCartSharp } from './ShoppingCartSharp'; -export { default as ShoppingCartTwoTone } from './ShoppingCartTwoTone'; -export { default as ShortText } from './ShortText'; -export { default as ShortTextOutlined } from './ShortTextOutlined'; -export { default as ShortTextRounded } from './ShortTextRounded'; -export { default as ShortTextSharp } from './ShortTextSharp'; -export { default as ShortTextTwoTone } from './ShortTextTwoTone'; -export { default as Shortcut } from './Shortcut'; -export { default as ShortcutOutlined } from './ShortcutOutlined'; -export { default as ShortcutRounded } from './ShortcutRounded'; -export { default as ShortcutSharp } from './ShortcutSharp'; -export { default as ShortcutTwoTone } from './ShortcutTwoTone'; -export { default as ShowChart } from './ShowChart'; -export { default as ShowChartOutlined } from './ShowChartOutlined'; -export { default as ShowChartRounded } from './ShowChartRounded'; -export { default as ShowChartSharp } from './ShowChartSharp'; -export { default as ShowChartTwoTone } from './ShowChartTwoTone'; -export { default as Shower } from './Shower'; -export { default as ShowerOutlined } from './ShowerOutlined'; -export { default as ShowerRounded } from './ShowerRounded'; -export { default as ShowerSharp } from './ShowerSharp'; -export { default as ShowerTwoTone } from './ShowerTwoTone'; -export { default as Shuffle } from './Shuffle'; -export { default as ShuffleOn } from './ShuffleOn'; -export { default as ShuffleOnOutlined } from './ShuffleOnOutlined'; -export { default as ShuffleOnRounded } from './ShuffleOnRounded'; -export { default as ShuffleOnSharp } from './ShuffleOnSharp'; -export { default as ShuffleOnTwoTone } from './ShuffleOnTwoTone'; -export { default as ShuffleOutlined } from './ShuffleOutlined'; -export { default as ShuffleRounded } from './ShuffleRounded'; -export { default as ShuffleSharp } from './ShuffleSharp'; -export { default as ShuffleTwoTone } from './ShuffleTwoTone'; -export { default as ShutterSpeed } from './ShutterSpeed'; -export { default as ShutterSpeedOutlined } from './ShutterSpeedOutlined'; -export { default as ShutterSpeedRounded } from './ShutterSpeedRounded'; -export { default as ShutterSpeedSharp } from './ShutterSpeedSharp'; -export { default as ShutterSpeedTwoTone } from './ShutterSpeedTwoTone'; -export { default as Sick } from './Sick'; -export { default as SickOutlined } from './SickOutlined'; -export { default as SickRounded } from './SickRounded'; -export { default as SickSharp } from './SickSharp'; -export { default as SickTwoTone } from './SickTwoTone'; -export { default as SignalCellular0Bar } from './SignalCellular0Bar'; -export { default as SignalCellular0BarOutlined } from './SignalCellular0BarOutlined'; -export { default as SignalCellular0BarRounded } from './SignalCellular0BarRounded'; -export { default as SignalCellular0BarSharp } from './SignalCellular0BarSharp'; -export { default as SignalCellular0BarTwoTone } from './SignalCellular0BarTwoTone'; -export { default as SignalCellular1Bar } from './SignalCellular1Bar'; -export { default as SignalCellular1BarOutlined } from './SignalCellular1BarOutlined'; -export { default as SignalCellular1BarRounded } from './SignalCellular1BarRounded'; -export { default as SignalCellular1BarSharp } from './SignalCellular1BarSharp'; -export { default as SignalCellular1BarTwoTone } from './SignalCellular1BarTwoTone'; -export { default as SignalCellular2Bar } from './SignalCellular2Bar'; -export { default as SignalCellular2BarOutlined } from './SignalCellular2BarOutlined'; -export { default as SignalCellular2BarRounded } from './SignalCellular2BarRounded'; -export { default as SignalCellular2BarSharp } from './SignalCellular2BarSharp'; -export { default as SignalCellular2BarTwoTone } from './SignalCellular2BarTwoTone'; -export { default as SignalCellular3Bar } from './SignalCellular3Bar'; -export { default as SignalCellular3BarOutlined } from './SignalCellular3BarOutlined'; -export { default as SignalCellular3BarRounded } from './SignalCellular3BarRounded'; -export { default as SignalCellular3BarSharp } from './SignalCellular3BarSharp'; -export { default as SignalCellular3BarTwoTone } from './SignalCellular3BarTwoTone'; -export { default as SignalCellular4Bar } from './SignalCellular4Bar'; -export { default as SignalCellular4BarOutlined } from './SignalCellular4BarOutlined'; -export { default as SignalCellular4BarRounded } from './SignalCellular4BarRounded'; -export { default as SignalCellular4BarSharp } from './SignalCellular4BarSharp'; -export { default as SignalCellular4BarTwoTone } from './SignalCellular4BarTwoTone'; -export { default as SignalCellularAlt } from './SignalCellularAlt'; -export { default as SignalCellularAltOutlined } from './SignalCellularAltOutlined'; -export { default as SignalCellularAltRounded } from './SignalCellularAltRounded'; -export { default as SignalCellularAltSharp } from './SignalCellularAltSharp'; -export { default as SignalCellularAltTwoTone } from './SignalCellularAltTwoTone'; -export { default as SignalCellularConnectedNoInternet0Bar } from './SignalCellularConnectedNoInternet0Bar'; -export { default as SignalCellularConnectedNoInternet0BarOutlined } from './SignalCellularConnectedNoInternet0BarOutlined'; -export { default as SignalCellularConnectedNoInternet0BarRounded } from './SignalCellularConnectedNoInternet0BarRounded'; -export { default as SignalCellularConnectedNoInternet0BarSharp } from './SignalCellularConnectedNoInternet0BarSharp'; -export { default as SignalCellularConnectedNoInternet0BarTwoTone } from './SignalCellularConnectedNoInternet0BarTwoTone'; -export { default as SignalCellularConnectedNoInternet1Bar } from './SignalCellularConnectedNoInternet1Bar'; -export { default as SignalCellularConnectedNoInternet1BarOutlined } from './SignalCellularConnectedNoInternet1BarOutlined'; -export { default as SignalCellularConnectedNoInternet1BarRounded } from './SignalCellularConnectedNoInternet1BarRounded'; -export { default as SignalCellularConnectedNoInternet1BarSharp } from './SignalCellularConnectedNoInternet1BarSharp'; -export { default as SignalCellularConnectedNoInternet1BarTwoTone } from './SignalCellularConnectedNoInternet1BarTwoTone'; -export { default as SignalCellularConnectedNoInternet2Bar } from './SignalCellularConnectedNoInternet2Bar'; -export { default as SignalCellularConnectedNoInternet2BarOutlined } from './SignalCellularConnectedNoInternet2BarOutlined'; -export { default as SignalCellularConnectedNoInternet2BarRounded } from './SignalCellularConnectedNoInternet2BarRounded'; -export { default as SignalCellularConnectedNoInternet2BarSharp } from './SignalCellularConnectedNoInternet2BarSharp'; -export { default as SignalCellularConnectedNoInternet2BarTwoTone } from './SignalCellularConnectedNoInternet2BarTwoTone'; -export { default as SignalCellularConnectedNoInternet3Bar } from './SignalCellularConnectedNoInternet3Bar'; -export { default as SignalCellularConnectedNoInternet3BarOutlined } from './SignalCellularConnectedNoInternet3BarOutlined'; -export { default as SignalCellularConnectedNoInternet3BarRounded } from './SignalCellularConnectedNoInternet3BarRounded'; -export { default as SignalCellularConnectedNoInternet3BarSharp } from './SignalCellularConnectedNoInternet3BarSharp'; -export { default as SignalCellularConnectedNoInternet3BarTwoTone } from './SignalCellularConnectedNoInternet3BarTwoTone'; -export { default as SignalCellularConnectedNoInternet4Bar } from './SignalCellularConnectedNoInternet4Bar'; -export { default as SignalCellularConnectedNoInternet4BarOutlined } from './SignalCellularConnectedNoInternet4BarOutlined'; -export { default as SignalCellularConnectedNoInternet4BarRounded } from './SignalCellularConnectedNoInternet4BarRounded'; -export { default as SignalCellularConnectedNoInternet4BarSharp } from './SignalCellularConnectedNoInternet4BarSharp'; -export { default as SignalCellularConnectedNoInternet4BarTwoTone } from './SignalCellularConnectedNoInternet4BarTwoTone'; -export { default as SignalCellularNoSim } from './SignalCellularNoSim'; -export { default as SignalCellularNoSimOutlined } from './SignalCellularNoSimOutlined'; -export { default as SignalCellularNoSimRounded } from './SignalCellularNoSimRounded'; -export { default as SignalCellularNoSimSharp } from './SignalCellularNoSimSharp'; -export { default as SignalCellularNoSimTwoTone } from './SignalCellularNoSimTwoTone'; -export { default as SignalCellularNodata } from './SignalCellularNodata'; -export { default as SignalCellularNodataOutlined } from './SignalCellularNodataOutlined'; -export { default as SignalCellularNodataRounded } from './SignalCellularNodataRounded'; -export { default as SignalCellularNodataSharp } from './SignalCellularNodataSharp'; -export { default as SignalCellularNodataTwoTone } from './SignalCellularNodataTwoTone'; -export { default as SignalCellularNull } from './SignalCellularNull'; -export { default as SignalCellularNullOutlined } from './SignalCellularNullOutlined'; -export { default as SignalCellularNullRounded } from './SignalCellularNullRounded'; -export { default as SignalCellularNullSharp } from './SignalCellularNullSharp'; -export { default as SignalCellularNullTwoTone } from './SignalCellularNullTwoTone'; -export { default as SignalCellularOff } from './SignalCellularOff'; -export { default as SignalCellularOffOutlined } from './SignalCellularOffOutlined'; -export { default as SignalCellularOffRounded } from './SignalCellularOffRounded'; -export { default as SignalCellularOffSharp } from './SignalCellularOffSharp'; -export { default as SignalCellularOffTwoTone } from './SignalCellularOffTwoTone'; -export { default as SignalWifi0Bar } from './SignalWifi0Bar'; -export { default as SignalWifi0BarOutlined } from './SignalWifi0BarOutlined'; -export { default as SignalWifi0BarRounded } from './SignalWifi0BarRounded'; -export { default as SignalWifi0BarSharp } from './SignalWifi0BarSharp'; -export { default as SignalWifi0BarTwoTone } from './SignalWifi0BarTwoTone'; -export { default as SignalWifi1Bar } from './SignalWifi1Bar'; -export { default as SignalWifi1BarLock } from './SignalWifi1BarLock'; -export { default as SignalWifi1BarLockOutlined } from './SignalWifi1BarLockOutlined'; -export { default as SignalWifi1BarLockRounded } from './SignalWifi1BarLockRounded'; -export { default as SignalWifi1BarLockSharp } from './SignalWifi1BarLockSharp'; -export { default as SignalWifi1BarLockTwoTone } from './SignalWifi1BarLockTwoTone'; -export { default as SignalWifi1BarOutlined } from './SignalWifi1BarOutlined'; -export { default as SignalWifi1BarRounded } from './SignalWifi1BarRounded'; -export { default as SignalWifi1BarSharp } from './SignalWifi1BarSharp'; -export { default as SignalWifi1BarTwoTone } from './SignalWifi1BarTwoTone'; -export { default as SignalWifi2Bar } from './SignalWifi2Bar'; -export { default as SignalWifi2BarLock } from './SignalWifi2BarLock'; -export { default as SignalWifi2BarLockOutlined } from './SignalWifi2BarLockOutlined'; -export { default as SignalWifi2BarLockRounded } from './SignalWifi2BarLockRounded'; -export { default as SignalWifi2BarLockSharp } from './SignalWifi2BarLockSharp'; -export { default as SignalWifi2BarLockTwoTone } from './SignalWifi2BarLockTwoTone'; -export { default as SignalWifi2BarOutlined } from './SignalWifi2BarOutlined'; -export { default as SignalWifi2BarRounded } from './SignalWifi2BarRounded'; -export { default as SignalWifi2BarSharp } from './SignalWifi2BarSharp'; -export { default as SignalWifi2BarTwoTone } from './SignalWifi2BarTwoTone'; -export { default as SignalWifi3Bar } from './SignalWifi3Bar'; -export { default as SignalWifi3BarLock } from './SignalWifi3BarLock'; -export { default as SignalWifi3BarLockOutlined } from './SignalWifi3BarLockOutlined'; -export { default as SignalWifi3BarLockRounded } from './SignalWifi3BarLockRounded'; -export { default as SignalWifi3BarLockSharp } from './SignalWifi3BarLockSharp'; -export { default as SignalWifi3BarLockTwoTone } from './SignalWifi3BarLockTwoTone'; -export { default as SignalWifi3BarOutlined } from './SignalWifi3BarOutlined'; -export { default as SignalWifi3BarRounded } from './SignalWifi3BarRounded'; -export { default as SignalWifi3BarSharp } from './SignalWifi3BarSharp'; -export { default as SignalWifi3BarTwoTone } from './SignalWifi3BarTwoTone'; -export { default as SignalWifi4Bar } from './SignalWifi4Bar'; -export { default as SignalWifi4BarLock } from './SignalWifi4BarLock'; -export { default as SignalWifi4BarLockOutlined } from './SignalWifi4BarLockOutlined'; -export { default as SignalWifi4BarLockRounded } from './SignalWifi4BarLockRounded'; -export { default as SignalWifi4BarLockSharp } from './SignalWifi4BarLockSharp'; -export { default as SignalWifi4BarLockTwoTone } from './SignalWifi4BarLockTwoTone'; -export { default as SignalWifi4BarOutlined } from './SignalWifi4BarOutlined'; -export { default as SignalWifi4BarRounded } from './SignalWifi4BarRounded'; -export { default as SignalWifi4BarSharp } from './SignalWifi4BarSharp'; -export { default as SignalWifi4BarTwoTone } from './SignalWifi4BarTwoTone'; -export { default as SignalWifiBad } from './SignalWifiBad'; -export { default as SignalWifiBadOutlined } from './SignalWifiBadOutlined'; -export { default as SignalWifiBadRounded } from './SignalWifiBadRounded'; -export { default as SignalWifiBadSharp } from './SignalWifiBadSharp'; -export { default as SignalWifiBadTwoTone } from './SignalWifiBadTwoTone'; -export { default as SignalWifiConnectedNoInternet4 } from './SignalWifiConnectedNoInternet4'; -export { default as SignalWifiConnectedNoInternet4Outlined } from './SignalWifiConnectedNoInternet4Outlined'; -export { default as SignalWifiConnectedNoInternet4Rounded } from './SignalWifiConnectedNoInternet4Rounded'; -export { default as SignalWifiConnectedNoInternet4Sharp } from './SignalWifiConnectedNoInternet4Sharp'; -export { default as SignalWifiConnectedNoInternet4TwoTone } from './SignalWifiConnectedNoInternet4TwoTone'; -export { default as SignalWifiOff } from './SignalWifiOff'; -export { default as SignalWifiOffOutlined } from './SignalWifiOffOutlined'; -export { default as SignalWifiOffRounded } from './SignalWifiOffRounded'; -export { default as SignalWifiOffSharp } from './SignalWifiOffSharp'; -export { default as SignalWifiOffTwoTone } from './SignalWifiOffTwoTone'; -export { default as SignalWifiStatusbar4Bar } from './SignalWifiStatusbar4Bar'; -export { default as SignalWifiStatusbar4BarOutlined } from './SignalWifiStatusbar4BarOutlined'; -export { default as SignalWifiStatusbar4BarRounded } from './SignalWifiStatusbar4BarRounded'; -export { default as SignalWifiStatusbar4BarSharp } from './SignalWifiStatusbar4BarSharp'; -export { default as SignalWifiStatusbar4BarTwoTone } from './SignalWifiStatusbar4BarTwoTone'; -export { default as SignalWifiStatusbarConnectedNoInternet4 } from './SignalWifiStatusbarConnectedNoInternet4'; -export { default as SignalWifiStatusbarConnectedNoInternet4Outlined } from './SignalWifiStatusbarConnectedNoInternet4Outlined'; -export { default as SignalWifiStatusbarConnectedNoInternet4Rounded } from './SignalWifiStatusbarConnectedNoInternet4Rounded'; -export { default as SignalWifiStatusbarConnectedNoInternet4Sharp } from './SignalWifiStatusbarConnectedNoInternet4Sharp'; -export { default as SignalWifiStatusbarConnectedNoInternet4TwoTone } from './SignalWifiStatusbarConnectedNoInternet4TwoTone'; -export { default as SignalWifiStatusbarNull } from './SignalWifiStatusbarNull'; -export { default as SignalWifiStatusbarNullOutlined } from './SignalWifiStatusbarNullOutlined'; -export { default as SignalWifiStatusbarNullRounded } from './SignalWifiStatusbarNullRounded'; -export { default as SignalWifiStatusbarNullSharp } from './SignalWifiStatusbarNullSharp'; -export { default as SignalWifiStatusbarNullTwoTone } from './SignalWifiStatusbarNullTwoTone'; -export { default as SimCard } from './SimCard'; -export { default as SimCardAlert } from './SimCardAlert'; -export { default as SimCardAlertOutlined } from './SimCardAlertOutlined'; -export { default as SimCardAlertRounded } from './SimCardAlertRounded'; -export { default as SimCardAlertSharp } from './SimCardAlertSharp'; -export { default as SimCardAlertTwoTone } from './SimCardAlertTwoTone'; -export { default as SimCardDownload } from './SimCardDownload'; -export { default as SimCardDownloadOutlined } from './SimCardDownloadOutlined'; -export { default as SimCardDownloadRounded } from './SimCardDownloadRounded'; -export { default as SimCardDownloadSharp } from './SimCardDownloadSharp'; -export { default as SimCardDownloadTwoTone } from './SimCardDownloadTwoTone'; -export { default as SimCardOutlined } from './SimCardOutlined'; -export { default as SimCardRounded } from './SimCardRounded'; -export { default as SimCardSharp } from './SimCardSharp'; -export { default as SimCardTwoTone } from './SimCardTwoTone'; -export { default as SingleBed } from './SingleBed'; -export { default as SingleBedOutlined } from './SingleBedOutlined'; -export { default as SingleBedRounded } from './SingleBedRounded'; -export { default as SingleBedSharp } from './SingleBedSharp'; -export { default as SingleBedTwoTone } from './SingleBedTwoTone'; -export { default as Sip } from './Sip'; -export { default as SipOutlined } from './SipOutlined'; -export { default as SipRounded } from './SipRounded'; -export { default as SipSharp } from './SipSharp'; -export { default as SipTwoTone } from './SipTwoTone'; -export { default as SixK } from './SixK'; -export { default as SixKOutlined } from './SixKOutlined'; -export { default as SixKPlus } from './SixKPlus'; -export { default as SixKPlusOutlined } from './SixKPlusOutlined'; -export { default as SixKPlusRounded } from './SixKPlusRounded'; -export { default as SixKPlusSharp } from './SixKPlusSharp'; -export { default as SixKPlusTwoTone } from './SixKPlusTwoTone'; -export { default as SixKRounded } from './SixKRounded'; -export { default as SixKSharp } from './SixKSharp'; -export { default as SixKTwoTone } from './SixKTwoTone'; -export { default as SixMp } from './SixMp'; -export { default as SixMpOutlined } from './SixMpOutlined'; -export { default as SixMpRounded } from './SixMpRounded'; -export { default as SixMpSharp } from './SixMpSharp'; -export { default as SixMpTwoTone } from './SixMpTwoTone'; -export { default as SixteenMp } from './SixteenMp'; -export { default as SixteenMpOutlined } from './SixteenMpOutlined'; -export { default as SixteenMpRounded } from './SixteenMpRounded'; -export { default as SixteenMpSharp } from './SixteenMpSharp'; -export { default as SixteenMpTwoTone } from './SixteenMpTwoTone'; -export { default as SixtyFps } from './SixtyFps'; -export { default as SixtyFpsOutlined } from './SixtyFpsOutlined'; -export { default as SixtyFpsRounded } from './SixtyFpsRounded'; -export { default as SixtyFpsSelect } from './SixtyFpsSelect'; -export { default as SixtyFpsSelectOutlined } from './SixtyFpsSelectOutlined'; -export { default as SixtyFpsSelectRounded } from './SixtyFpsSelectRounded'; -export { default as SixtyFpsSelectSharp } from './SixtyFpsSelectSharp'; -export { default as SixtyFpsSelectTwoTone } from './SixtyFpsSelectTwoTone'; -export { default as SixtyFpsSharp } from './SixtyFpsSharp'; -export { default as SixtyFpsTwoTone } from './SixtyFpsTwoTone'; -export { default as Skateboarding } from './Skateboarding'; -export { default as SkateboardingOutlined } from './SkateboardingOutlined'; -export { default as SkateboardingRounded } from './SkateboardingRounded'; -export { default as SkateboardingSharp } from './SkateboardingSharp'; -export { default as SkateboardingTwoTone } from './SkateboardingTwoTone'; -export { default as SkipNext } from './SkipNext'; -export { default as SkipNextOutlined } from './SkipNextOutlined'; -export { default as SkipNextRounded } from './SkipNextRounded'; -export { default as SkipNextSharp } from './SkipNextSharp'; -export { default as SkipNextTwoTone } from './SkipNextTwoTone'; -export { default as SkipPrevious } from './SkipPrevious'; -export { default as SkipPreviousOutlined } from './SkipPreviousOutlined'; -export { default as SkipPreviousRounded } from './SkipPreviousRounded'; -export { default as SkipPreviousSharp } from './SkipPreviousSharp'; -export { default as SkipPreviousTwoTone } from './SkipPreviousTwoTone'; -export { default as Sledding } from './Sledding'; -export { default as SleddingOutlined } from './SleddingOutlined'; -export { default as SleddingRounded } from './SleddingRounded'; -export { default as SleddingSharp } from './SleddingSharp'; -export { default as SleddingTwoTone } from './SleddingTwoTone'; -export { default as Slideshow } from './Slideshow'; -export { default as SlideshowOutlined } from './SlideshowOutlined'; -export { default as SlideshowRounded } from './SlideshowRounded'; -export { default as SlideshowSharp } from './SlideshowSharp'; -export { default as SlideshowTwoTone } from './SlideshowTwoTone'; -export { default as SlowMotionVideo } from './SlowMotionVideo'; -export { default as SlowMotionVideoOutlined } from './SlowMotionVideoOutlined'; -export { default as SlowMotionVideoRounded } from './SlowMotionVideoRounded'; -export { default as SlowMotionVideoSharp } from './SlowMotionVideoSharp'; -export { default as SlowMotionVideoTwoTone } from './SlowMotionVideoTwoTone'; -export { default as SmartButton } from './SmartButton'; -export { default as SmartButtonOutlined } from './SmartButtonOutlined'; -export { default as SmartButtonRounded } from './SmartButtonRounded'; -export { default as SmartButtonSharp } from './SmartButtonSharp'; -export { default as SmartButtonTwoTone } from './SmartButtonTwoTone'; -export { default as SmartDisplay } from './SmartDisplay'; -export { default as SmartDisplayOutlined } from './SmartDisplayOutlined'; -export { default as SmartDisplayRounded } from './SmartDisplayRounded'; -export { default as SmartDisplaySharp } from './SmartDisplaySharp'; -export { default as SmartDisplayTwoTone } from './SmartDisplayTwoTone'; -export { default as SmartScreen } from './SmartScreen'; -export { default as SmartScreenOutlined } from './SmartScreenOutlined'; -export { default as SmartScreenRounded } from './SmartScreenRounded'; -export { default as SmartScreenSharp } from './SmartScreenSharp'; -export { default as SmartScreenTwoTone } from './SmartScreenTwoTone'; -export { default as SmartToy } from './SmartToy'; -export { default as SmartToyOutlined } from './SmartToyOutlined'; -export { default as SmartToyRounded } from './SmartToyRounded'; -export { default as SmartToySharp } from './SmartToySharp'; -export { default as SmartToyTwoTone } from './SmartToyTwoTone'; -export { default as Smartphone } from './Smartphone'; -export { default as SmartphoneOutlined } from './SmartphoneOutlined'; -export { default as SmartphoneRounded } from './SmartphoneRounded'; -export { default as SmartphoneSharp } from './SmartphoneSharp'; -export { default as SmartphoneTwoTone } from './SmartphoneTwoTone'; -export { default as SmokeFree } from './SmokeFree'; -export { default as SmokeFreeOutlined } from './SmokeFreeOutlined'; -export { default as SmokeFreeRounded } from './SmokeFreeRounded'; -export { default as SmokeFreeSharp } from './SmokeFreeSharp'; -export { default as SmokeFreeTwoTone } from './SmokeFreeTwoTone'; -export { default as SmokingRooms } from './SmokingRooms'; -export { default as SmokingRoomsOutlined } from './SmokingRoomsOutlined'; -export { default as SmokingRoomsRounded } from './SmokingRoomsRounded'; -export { default as SmokingRoomsSharp } from './SmokingRoomsSharp'; -export { default as SmokingRoomsTwoTone } from './SmokingRoomsTwoTone'; -export { default as Sms } from './Sms'; -export { default as SmsFailed } from './SmsFailed'; -export { default as SmsFailedOutlined } from './SmsFailedOutlined'; -export { default as SmsFailedRounded } from './SmsFailedRounded'; -export { default as SmsFailedSharp } from './SmsFailedSharp'; -export { default as SmsFailedTwoTone } from './SmsFailedTwoTone'; -export { default as SmsOutlined } from './SmsOutlined'; -export { default as SmsRounded } from './SmsRounded'; -export { default as SmsSharp } from './SmsSharp'; -export { default as SmsTwoTone } from './SmsTwoTone'; -export { default as SnippetFolder } from './SnippetFolder'; -export { default as SnippetFolderOutlined } from './SnippetFolderOutlined'; -export { default as SnippetFolderRounded } from './SnippetFolderRounded'; -export { default as SnippetFolderSharp } from './SnippetFolderSharp'; -export { default as SnippetFolderTwoTone } from './SnippetFolderTwoTone'; -export { default as Snooze } from './Snooze'; -export { default as SnoozeOutlined } from './SnoozeOutlined'; -export { default as SnoozeRounded } from './SnoozeRounded'; -export { default as SnoozeSharp } from './SnoozeSharp'; -export { default as SnoozeTwoTone } from './SnoozeTwoTone'; -export { default as Snowboarding } from './Snowboarding'; -export { default as SnowboardingOutlined } from './SnowboardingOutlined'; -export { default as SnowboardingRounded } from './SnowboardingRounded'; -export { default as SnowboardingSharp } from './SnowboardingSharp'; -export { default as SnowboardingTwoTone } from './SnowboardingTwoTone'; -export { default as Snowmobile } from './Snowmobile'; -export { default as SnowmobileOutlined } from './SnowmobileOutlined'; -export { default as SnowmobileRounded } from './SnowmobileRounded'; -export { default as SnowmobileSharp } from './SnowmobileSharp'; -export { default as SnowmobileTwoTone } from './SnowmobileTwoTone'; -export { default as Snowshoeing } from './Snowshoeing'; -export { default as SnowshoeingOutlined } from './SnowshoeingOutlined'; -export { default as SnowshoeingRounded } from './SnowshoeingRounded'; -export { default as SnowshoeingSharp } from './SnowshoeingSharp'; -export { default as SnowshoeingTwoTone } from './SnowshoeingTwoTone'; -export { default as Soap } from './Soap'; -export { default as SoapOutlined } from './SoapOutlined'; -export { default as SoapRounded } from './SoapRounded'; -export { default as SoapSharp } from './SoapSharp'; -export { default as SoapTwoTone } from './SoapTwoTone'; -export { default as SocialDistance } from './SocialDistance'; -export { default as SocialDistanceOutlined } from './SocialDistanceOutlined'; -export { default as SocialDistanceRounded } from './SocialDistanceRounded'; -export { default as SocialDistanceSharp } from './SocialDistanceSharp'; -export { default as SocialDistanceTwoTone } from './SocialDistanceTwoTone'; -export { default as Sort } from './Sort'; -export { default as SortByAlpha } from './SortByAlpha'; -export { default as SortByAlphaOutlined } from './SortByAlphaOutlined'; -export { default as SortByAlphaRounded } from './SortByAlphaRounded'; -export { default as SortByAlphaSharp } from './SortByAlphaSharp'; -export { default as SortByAlphaTwoTone } from './SortByAlphaTwoTone'; -export { default as SortOutlined } from './SortOutlined'; -export { default as SortRounded } from './SortRounded'; -export { default as SortSharp } from './SortSharp'; -export { default as SortTwoTone } from './SortTwoTone'; -export { default as Source } from './Source'; -export { default as SourceOutlined } from './SourceOutlined'; -export { default as SourceRounded } from './SourceRounded'; -export { default as SourceSharp } from './SourceSharp'; -export { default as SourceTwoTone } from './SourceTwoTone'; -export { default as South } from './South'; -export { default as SouthEast } from './SouthEast'; -export { default as SouthEastOutlined } from './SouthEastOutlined'; -export { default as SouthEastRounded } from './SouthEastRounded'; -export { default as SouthEastSharp } from './SouthEastSharp'; -export { default as SouthEastTwoTone } from './SouthEastTwoTone'; -export { default as SouthOutlined } from './SouthOutlined'; -export { default as SouthRounded } from './SouthRounded'; -export { default as SouthSharp } from './SouthSharp'; -export { default as SouthTwoTone } from './SouthTwoTone'; -export { default as SouthWest } from './SouthWest'; -export { default as SouthWestOutlined } from './SouthWestOutlined'; -export { default as SouthWestRounded } from './SouthWestRounded'; -export { default as SouthWestSharp } from './SouthWestSharp'; -export { default as SouthWestTwoTone } from './SouthWestTwoTone'; -export { default as Spa } from './Spa'; -export { default as SpaOutlined } from './SpaOutlined'; -export { default as SpaRounded } from './SpaRounded'; -export { default as SpaSharp } from './SpaSharp'; -export { default as SpaTwoTone } from './SpaTwoTone'; -export { default as SpaceBar } from './SpaceBar'; -export { default as SpaceBarOutlined } from './SpaceBarOutlined'; -export { default as SpaceBarRounded } from './SpaceBarRounded'; -export { default as SpaceBarSharp } from './SpaceBarSharp'; -export { default as SpaceBarTwoTone } from './SpaceBarTwoTone'; -export { default as Speaker } from './Speaker'; -export { default as SpeakerGroup } from './SpeakerGroup'; -export { default as SpeakerGroupOutlined } from './SpeakerGroupOutlined'; -export { default as SpeakerGroupRounded } from './SpeakerGroupRounded'; -export { default as SpeakerGroupSharp } from './SpeakerGroupSharp'; -export { default as SpeakerGroupTwoTone } from './SpeakerGroupTwoTone'; -export { default as SpeakerNotes } from './SpeakerNotes'; -export { default as SpeakerNotesOff } from './SpeakerNotesOff'; -export { default as SpeakerNotesOffOutlined } from './SpeakerNotesOffOutlined'; -export { default as SpeakerNotesOffRounded } from './SpeakerNotesOffRounded'; -export { default as SpeakerNotesOffSharp } from './SpeakerNotesOffSharp'; -export { default as SpeakerNotesOffTwoTone } from './SpeakerNotesOffTwoTone'; -export { default as SpeakerNotesOutlined } from './SpeakerNotesOutlined'; -export { default as SpeakerNotesRounded } from './SpeakerNotesRounded'; -export { default as SpeakerNotesSharp } from './SpeakerNotesSharp'; -export { default as SpeakerNotesTwoTone } from './SpeakerNotesTwoTone'; -export { default as SpeakerOutlined } from './SpeakerOutlined'; -export { default as SpeakerPhone } from './SpeakerPhone'; -export { default as SpeakerPhoneOutlined } from './SpeakerPhoneOutlined'; -export { default as SpeakerPhoneRounded } from './SpeakerPhoneRounded'; -export { default as SpeakerPhoneSharp } from './SpeakerPhoneSharp'; -export { default as SpeakerPhoneTwoTone } from './SpeakerPhoneTwoTone'; -export { default as SpeakerRounded } from './SpeakerRounded'; -export { default as SpeakerSharp } from './SpeakerSharp'; -export { default as SpeakerTwoTone } from './SpeakerTwoTone'; -export { default as Speed } from './Speed'; -export { default as SpeedOutlined } from './SpeedOutlined'; -export { default as SpeedRounded } from './SpeedRounded'; -export { default as SpeedSharp } from './SpeedSharp'; -export { default as SpeedTwoTone } from './SpeedTwoTone'; -export { default as Spellcheck } from './Spellcheck'; -export { default as SpellcheckOutlined } from './SpellcheckOutlined'; -export { default as SpellcheckRounded } from './SpellcheckRounded'; -export { default as SpellcheckSharp } from './SpellcheckSharp'; -export { default as SpellcheckTwoTone } from './SpellcheckTwoTone'; -export { default as Splitscreen } from './Splitscreen'; -export { default as SplitscreenOutlined } from './SplitscreenOutlined'; -export { default as SplitscreenRounded } from './SplitscreenRounded'; -export { default as SplitscreenSharp } from './SplitscreenSharp'; -export { default as SplitscreenTwoTone } from './SplitscreenTwoTone'; -export { default as Sports } from './Sports'; -export { default as SportsBar } from './SportsBar'; -export { default as SportsBarOutlined } from './SportsBarOutlined'; -export { default as SportsBarRounded } from './SportsBarRounded'; -export { default as SportsBarSharp } from './SportsBarSharp'; -export { default as SportsBarTwoTone } from './SportsBarTwoTone'; -export { default as SportsBaseball } from './SportsBaseball'; -export { default as SportsBaseballOutlined } from './SportsBaseballOutlined'; -export { default as SportsBaseballRounded } from './SportsBaseballRounded'; -export { default as SportsBaseballSharp } from './SportsBaseballSharp'; -export { default as SportsBaseballTwoTone } from './SportsBaseballTwoTone'; -export { default as SportsBasketball } from './SportsBasketball'; -export { default as SportsBasketballOutlined } from './SportsBasketballOutlined'; -export { default as SportsBasketballRounded } from './SportsBasketballRounded'; -export { default as SportsBasketballSharp } from './SportsBasketballSharp'; -export { default as SportsBasketballTwoTone } from './SportsBasketballTwoTone'; -export { default as SportsCricket } from './SportsCricket'; -export { default as SportsCricketOutlined } from './SportsCricketOutlined'; -export { default as SportsCricketRounded } from './SportsCricketRounded'; -export { default as SportsCricketSharp } from './SportsCricketSharp'; -export { default as SportsCricketTwoTone } from './SportsCricketTwoTone'; -export { default as SportsEsports } from './SportsEsports'; -export { default as SportsEsportsOutlined } from './SportsEsportsOutlined'; -export { default as SportsEsportsRounded } from './SportsEsportsRounded'; -export { default as SportsEsportsSharp } from './SportsEsportsSharp'; -export { default as SportsEsportsTwoTone } from './SportsEsportsTwoTone'; -export { default as SportsFootball } from './SportsFootball'; -export { default as SportsFootballOutlined } from './SportsFootballOutlined'; -export { default as SportsFootballRounded } from './SportsFootballRounded'; -export { default as SportsFootballSharp } from './SportsFootballSharp'; -export { default as SportsFootballTwoTone } from './SportsFootballTwoTone'; -export { default as SportsGolf } from './SportsGolf'; -export { default as SportsGolfOutlined } from './SportsGolfOutlined'; -export { default as SportsGolfRounded } from './SportsGolfRounded'; -export { default as SportsGolfSharp } from './SportsGolfSharp'; -export { default as SportsGolfTwoTone } from './SportsGolfTwoTone'; -export { default as SportsHandball } from './SportsHandball'; -export { default as SportsHandballOutlined } from './SportsHandballOutlined'; -export { default as SportsHandballRounded } from './SportsHandballRounded'; -export { default as SportsHandballSharp } from './SportsHandballSharp'; -export { default as SportsHandballTwoTone } from './SportsHandballTwoTone'; -export { default as SportsHockey } from './SportsHockey'; -export { default as SportsHockeyOutlined } from './SportsHockeyOutlined'; -export { default as SportsHockeyRounded } from './SportsHockeyRounded'; -export { default as SportsHockeySharp } from './SportsHockeySharp'; -export { default as SportsHockeyTwoTone } from './SportsHockeyTwoTone'; -export { default as SportsKabaddi } from './SportsKabaddi'; -export { default as SportsKabaddiOutlined } from './SportsKabaddiOutlined'; -export { default as SportsKabaddiRounded } from './SportsKabaddiRounded'; -export { default as SportsKabaddiSharp } from './SportsKabaddiSharp'; -export { default as SportsKabaddiTwoTone } from './SportsKabaddiTwoTone'; -export { default as SportsMma } from './SportsMma'; -export { default as SportsMmaOutlined } from './SportsMmaOutlined'; -export { default as SportsMmaRounded } from './SportsMmaRounded'; -export { default as SportsMmaSharp } from './SportsMmaSharp'; -export { default as SportsMmaTwoTone } from './SportsMmaTwoTone'; -export { default as SportsMotorsports } from './SportsMotorsports'; -export { default as SportsMotorsportsOutlined } from './SportsMotorsportsOutlined'; -export { default as SportsMotorsportsRounded } from './SportsMotorsportsRounded'; -export { default as SportsMotorsportsSharp } from './SportsMotorsportsSharp'; -export { default as SportsMotorsportsTwoTone } from './SportsMotorsportsTwoTone'; -export { default as SportsOutlined } from './SportsOutlined'; -export { default as SportsRounded } from './SportsRounded'; -export { default as SportsRugby } from './SportsRugby'; -export { default as SportsRugbyOutlined } from './SportsRugbyOutlined'; -export { default as SportsRugbyRounded } from './SportsRugbyRounded'; -export { default as SportsRugbySharp } from './SportsRugbySharp'; -export { default as SportsRugbyTwoTone } from './SportsRugbyTwoTone'; -export { default as SportsScore } from './SportsScore'; -export { default as SportsScoreOutlined } from './SportsScoreOutlined'; -export { default as SportsScoreRounded } from './SportsScoreRounded'; -export { default as SportsScoreSharp } from './SportsScoreSharp'; -export { default as SportsScoreTwoTone } from './SportsScoreTwoTone'; -export { default as SportsSharp } from './SportsSharp'; -export { default as SportsSoccer } from './SportsSoccer'; -export { default as SportsSoccerOutlined } from './SportsSoccerOutlined'; -export { default as SportsSoccerRounded } from './SportsSoccerRounded'; -export { default as SportsSoccerSharp } from './SportsSoccerSharp'; -export { default as SportsSoccerTwoTone } from './SportsSoccerTwoTone'; -export { default as SportsTennis } from './SportsTennis'; -export { default as SportsTennisOutlined } from './SportsTennisOutlined'; -export { default as SportsTennisRounded } from './SportsTennisRounded'; -export { default as SportsTennisSharp } from './SportsTennisSharp'; -export { default as SportsTennisTwoTone } from './SportsTennisTwoTone'; -export { default as SportsTwoTone } from './SportsTwoTone'; -export { default as SportsVolleyball } from './SportsVolleyball'; -export { default as SportsVolleyballOutlined } from './SportsVolleyballOutlined'; -export { default as SportsVolleyballRounded } from './SportsVolleyballRounded'; -export { default as SportsVolleyballSharp } from './SportsVolleyballSharp'; -export { default as SportsVolleyballTwoTone } from './SportsVolleyballTwoTone'; -export { default as SquareFoot } from './SquareFoot'; -export { default as SquareFootOutlined } from './SquareFootOutlined'; -export { default as SquareFootRounded } from './SquareFootRounded'; -export { default as SquareFootSharp } from './SquareFootSharp'; -export { default as SquareFootTwoTone } from './SquareFootTwoTone'; -export { default as StackedBarChart } from './StackedBarChart'; -export { default as StackedBarChartOutlined } from './StackedBarChartOutlined'; -export { default as StackedBarChartRounded } from './StackedBarChartRounded'; -export { default as StackedBarChartSharp } from './StackedBarChartSharp'; -export { default as StackedBarChartTwoTone } from './StackedBarChartTwoTone'; -export { default as StackedLineChart } from './StackedLineChart'; -export { default as StackedLineChartOutlined } from './StackedLineChartOutlined'; -export { default as StackedLineChartRounded } from './StackedLineChartRounded'; -export { default as StackedLineChartSharp } from './StackedLineChartSharp'; -export { default as StackedLineChartTwoTone } from './StackedLineChartTwoTone'; -export { default as Stairs } from './Stairs'; -export { default as StairsOutlined } from './StairsOutlined'; -export { default as StairsRounded } from './StairsRounded'; -export { default as StairsSharp } from './StairsSharp'; -export { default as StairsTwoTone } from './StairsTwoTone'; -export { default as Star } from './Star'; -export { default as StarBorder } from './StarBorder'; -export { default as StarBorderOutlined } from './StarBorderOutlined'; -export { default as StarBorderPurple500 } from './StarBorderPurple500'; -export { default as StarBorderPurple500Outlined } from './StarBorderPurple500Outlined'; -export { default as StarBorderPurple500Rounded } from './StarBorderPurple500Rounded'; -export { default as StarBorderPurple500Sharp } from './StarBorderPurple500Sharp'; -export { default as StarBorderPurple500TwoTone } from './StarBorderPurple500TwoTone'; -export { default as StarBorderRounded } from './StarBorderRounded'; -export { default as StarBorderSharp } from './StarBorderSharp'; -export { default as StarBorderTwoTone } from './StarBorderTwoTone'; -export { default as StarHalf } from './StarHalf'; -export { default as StarHalfOutlined } from './StarHalfOutlined'; -export { default as StarHalfRounded } from './StarHalfRounded'; -export { default as StarHalfSharp } from './StarHalfSharp'; -export { default as StarHalfTwoTone } from './StarHalfTwoTone'; -export { default as StarOutline } from './StarOutline'; -export { default as StarOutlineOutlined } from './StarOutlineOutlined'; -export { default as StarOutlineRounded } from './StarOutlineRounded'; -export { default as StarOutlineSharp } from './StarOutlineSharp'; -export { default as StarOutlineTwoTone } from './StarOutlineTwoTone'; -export { default as StarOutlined } from './StarOutlined'; -export { default as StarPurple500 } from './StarPurple500'; -export { default as StarPurple500Outlined } from './StarPurple500Outlined'; -export { default as StarPurple500Rounded } from './StarPurple500Rounded'; -export { default as StarPurple500Sharp } from './StarPurple500Sharp'; -export { default as StarPurple500TwoTone } from './StarPurple500TwoTone'; -export { default as StarRate } from './StarRate'; -export { default as StarRateOutlined } from './StarRateOutlined'; -export { default as StarRateRounded } from './StarRateRounded'; -export { default as StarRateSharp } from './StarRateSharp'; -export { default as StarRateTwoTone } from './StarRateTwoTone'; -export { default as StarRounded } from './StarRounded'; -export { default as StarSharp } from './StarSharp'; -export { default as StarTwoTone } from './StarTwoTone'; -export { default as Stars } from './Stars'; -export { default as StarsOutlined } from './StarsOutlined'; -export { default as StarsRounded } from './StarsRounded'; -export { default as StarsSharp } from './StarsSharp'; -export { default as StarsTwoTone } from './StarsTwoTone'; -export { default as StayCurrentLandscape } from './StayCurrentLandscape'; -export { default as StayCurrentLandscapeOutlined } from './StayCurrentLandscapeOutlined'; -export { default as StayCurrentLandscapeRounded } from './StayCurrentLandscapeRounded'; -export { default as StayCurrentLandscapeSharp } from './StayCurrentLandscapeSharp'; -export { default as StayCurrentLandscapeTwoTone } from './StayCurrentLandscapeTwoTone'; -export { default as StayCurrentPortrait } from './StayCurrentPortrait'; -export { default as StayCurrentPortraitOutlined } from './StayCurrentPortraitOutlined'; -export { default as StayCurrentPortraitRounded } from './StayCurrentPortraitRounded'; -export { default as StayCurrentPortraitSharp } from './StayCurrentPortraitSharp'; -export { default as StayCurrentPortraitTwoTone } from './StayCurrentPortraitTwoTone'; -export { default as StayPrimaryLandscape } from './StayPrimaryLandscape'; -export { default as StayPrimaryLandscapeOutlined } from './StayPrimaryLandscapeOutlined'; -export { default as StayPrimaryLandscapeRounded } from './StayPrimaryLandscapeRounded'; -export { default as StayPrimaryLandscapeSharp } from './StayPrimaryLandscapeSharp'; -export { default as StayPrimaryLandscapeTwoTone } from './StayPrimaryLandscapeTwoTone'; -export { default as StayPrimaryPortrait } from './StayPrimaryPortrait'; -export { default as StayPrimaryPortraitOutlined } from './StayPrimaryPortraitOutlined'; -export { default as StayPrimaryPortraitRounded } from './StayPrimaryPortraitRounded'; -export { default as StayPrimaryPortraitSharp } from './StayPrimaryPortraitSharp'; -export { default as StayPrimaryPortraitTwoTone } from './StayPrimaryPortraitTwoTone'; -export { default as StickyNote2 } from './StickyNote2'; -export { default as StickyNote2Outlined } from './StickyNote2Outlined'; -export { default as StickyNote2Rounded } from './StickyNote2Rounded'; -export { default as StickyNote2Sharp } from './StickyNote2Sharp'; -export { default as StickyNote2TwoTone } from './StickyNote2TwoTone'; -export { default as Stop } from './Stop'; -export { default as StopCircle } from './StopCircle'; -export { default as StopCircleOutlined } from './StopCircleOutlined'; -export { default as StopCircleRounded } from './StopCircleRounded'; -export { default as StopCircleSharp } from './StopCircleSharp'; -export { default as StopCircleTwoTone } from './StopCircleTwoTone'; -export { default as StopOutlined } from './StopOutlined'; -export { default as StopRounded } from './StopRounded'; -export { default as StopScreenShare } from './StopScreenShare'; -export { default as StopScreenShareOutlined } from './StopScreenShareOutlined'; -export { default as StopScreenShareRounded } from './StopScreenShareRounded'; -export { default as StopScreenShareSharp } from './StopScreenShareSharp'; -export { default as StopScreenShareTwoTone } from './StopScreenShareTwoTone'; -export { default as StopSharp } from './StopSharp'; -export { default as StopTwoTone } from './StopTwoTone'; -export { default as Storage } from './Storage'; -export { default as StorageOutlined } from './StorageOutlined'; -export { default as StorageRounded } from './StorageRounded'; -export { default as StorageSharp } from './StorageSharp'; -export { default as StorageTwoTone } from './StorageTwoTone'; -export { default as Store } from './Store'; -export { default as StoreMallDirectory } from './StoreMallDirectory'; -export { default as StoreMallDirectoryOutlined } from './StoreMallDirectoryOutlined'; -export { default as StoreMallDirectoryRounded } from './StoreMallDirectoryRounded'; -export { default as StoreMallDirectorySharp } from './StoreMallDirectorySharp'; -export { default as StoreMallDirectoryTwoTone } from './StoreMallDirectoryTwoTone'; -export { default as StoreOutlined } from './StoreOutlined'; -export { default as StoreRounded } from './StoreRounded'; -export { default as StoreSharp } from './StoreSharp'; -export { default as StoreTwoTone } from './StoreTwoTone'; -export { default as Storefront } from './Storefront'; -export { default as StorefrontOutlined } from './StorefrontOutlined'; -export { default as StorefrontRounded } from './StorefrontRounded'; -export { default as StorefrontSharp } from './StorefrontSharp'; -export { default as StorefrontTwoTone } from './StorefrontTwoTone'; -export { default as Storm } from './Storm'; -export { default as StormOutlined } from './StormOutlined'; -export { default as StormRounded } from './StormRounded'; -export { default as StormSharp } from './StormSharp'; -export { default as StormTwoTone } from './StormTwoTone'; -export { default as Straighten } from './Straighten'; -export { default as StraightenOutlined } from './StraightenOutlined'; -export { default as StraightenRounded } from './StraightenRounded'; -export { default as StraightenSharp } from './StraightenSharp'; -export { default as StraightenTwoTone } from './StraightenTwoTone'; -export { default as Stream } from './Stream'; -export { default as StreamOutlined } from './StreamOutlined'; -export { default as StreamRounded } from './StreamRounded'; -export { default as StreamSharp } from './StreamSharp'; -export { default as StreamTwoTone } from './StreamTwoTone'; -export { default as Streetview } from './Streetview'; -export { default as StreetviewOutlined } from './StreetviewOutlined'; -export { default as StreetviewRounded } from './StreetviewRounded'; -export { default as StreetviewSharp } from './StreetviewSharp'; -export { default as StreetviewTwoTone } from './StreetviewTwoTone'; -export { default as StrikethroughS } from './StrikethroughS'; -export { default as StrikethroughSOutlined } from './StrikethroughSOutlined'; -export { default as StrikethroughSRounded } from './StrikethroughSRounded'; -export { default as StrikethroughSSharp } from './StrikethroughSSharp'; -export { default as StrikethroughSTwoTone } from './StrikethroughSTwoTone'; -export { default as Stroller } from './Stroller'; -export { default as StrollerOutlined } from './StrollerOutlined'; -export { default as StrollerRounded } from './StrollerRounded'; -export { default as StrollerSharp } from './StrollerSharp'; -export { default as StrollerTwoTone } from './StrollerTwoTone'; -export { default as Style } from './Style'; -export { default as StyleOutlined } from './StyleOutlined'; -export { default as StyleRounded } from './StyleRounded'; -export { default as StyleSharp } from './StyleSharp'; -export { default as StyleTwoTone } from './StyleTwoTone'; -export { default as SubdirectoryArrowLeft } from './SubdirectoryArrowLeft'; -export { default as SubdirectoryArrowLeftOutlined } from './SubdirectoryArrowLeftOutlined'; -export { default as SubdirectoryArrowLeftRounded } from './SubdirectoryArrowLeftRounded'; -export { default as SubdirectoryArrowLeftSharp } from './SubdirectoryArrowLeftSharp'; -export { default as SubdirectoryArrowLeftTwoTone } from './SubdirectoryArrowLeftTwoTone'; -export { default as SubdirectoryArrowRight } from './SubdirectoryArrowRight'; -export { default as SubdirectoryArrowRightOutlined } from './SubdirectoryArrowRightOutlined'; -export { default as SubdirectoryArrowRightRounded } from './SubdirectoryArrowRightRounded'; -export { default as SubdirectoryArrowRightSharp } from './SubdirectoryArrowRightSharp'; -export { default as SubdirectoryArrowRightTwoTone } from './SubdirectoryArrowRightTwoTone'; -export { default as Subject } from './Subject'; -export { default as SubjectOutlined } from './SubjectOutlined'; -export { default as SubjectRounded } from './SubjectRounded'; -export { default as SubjectSharp } from './SubjectSharp'; -export { default as SubjectTwoTone } from './SubjectTwoTone'; -export { default as Subscript } from './Subscript'; -export { default as SubscriptOutlined } from './SubscriptOutlined'; -export { default as SubscriptRounded } from './SubscriptRounded'; -export { default as SubscriptSharp } from './SubscriptSharp'; -export { default as SubscriptTwoTone } from './SubscriptTwoTone'; -export { default as Subscriptions } from './Subscriptions'; -export { default as SubscriptionsOutlined } from './SubscriptionsOutlined'; -export { default as SubscriptionsRounded } from './SubscriptionsRounded'; -export { default as SubscriptionsSharp } from './SubscriptionsSharp'; -export { default as SubscriptionsTwoTone } from './SubscriptionsTwoTone'; -export { default as Subtitles } from './Subtitles'; -export { default as SubtitlesOff } from './SubtitlesOff'; -export { default as SubtitlesOffOutlined } from './SubtitlesOffOutlined'; -export { default as SubtitlesOffRounded } from './SubtitlesOffRounded'; -export { default as SubtitlesOffSharp } from './SubtitlesOffSharp'; -export { default as SubtitlesOffTwoTone } from './SubtitlesOffTwoTone'; -export { default as SubtitlesOutlined } from './SubtitlesOutlined'; -export { default as SubtitlesRounded } from './SubtitlesRounded'; -export { default as SubtitlesSharp } from './SubtitlesSharp'; -export { default as SubtitlesTwoTone } from './SubtitlesTwoTone'; -export { default as Subway } from './Subway'; -export { default as SubwayOutlined } from './SubwayOutlined'; -export { default as SubwayRounded } from './SubwayRounded'; -export { default as SubwaySharp } from './SubwaySharp'; -export { default as SubwayTwoTone } from './SubwayTwoTone'; -export { default as Summarize } from './Summarize'; -export { default as SummarizeOutlined } from './SummarizeOutlined'; -export { default as SummarizeRounded } from './SummarizeRounded'; -export { default as SummarizeSharp } from './SummarizeSharp'; -export { default as SummarizeTwoTone } from './SummarizeTwoTone'; -export { default as Superscript } from './Superscript'; -export { default as SuperscriptOutlined } from './SuperscriptOutlined'; -export { default as SuperscriptRounded } from './SuperscriptRounded'; -export { default as SuperscriptSharp } from './SuperscriptSharp'; -export { default as SuperscriptTwoTone } from './SuperscriptTwoTone'; -export { default as SupervisedUserCircle } from './SupervisedUserCircle'; -export { default as SupervisedUserCircleOutlined } from './SupervisedUserCircleOutlined'; -export { default as SupervisedUserCircleRounded } from './SupervisedUserCircleRounded'; -export { default as SupervisedUserCircleSharp } from './SupervisedUserCircleSharp'; -export { default as SupervisedUserCircleTwoTone } from './SupervisedUserCircleTwoTone'; -export { default as SupervisorAccount } from './SupervisorAccount'; -export { default as SupervisorAccountOutlined } from './SupervisorAccountOutlined'; -export { default as SupervisorAccountRounded } from './SupervisorAccountRounded'; -export { default as SupervisorAccountSharp } from './SupervisorAccountSharp'; -export { default as SupervisorAccountTwoTone } from './SupervisorAccountTwoTone'; -export { default as Support } from './Support'; -export { default as SupportAgent } from './SupportAgent'; -export { default as SupportAgentOutlined } from './SupportAgentOutlined'; -export { default as SupportAgentRounded } from './SupportAgentRounded'; -export { default as SupportAgentSharp } from './SupportAgentSharp'; -export { default as SupportAgentTwoTone } from './SupportAgentTwoTone'; -export { default as SupportOutlined } from './SupportOutlined'; -export { default as SupportRounded } from './SupportRounded'; -export { default as SupportSharp } from './SupportSharp'; -export { default as SupportTwoTone } from './SupportTwoTone'; -export { default as Surfing } from './Surfing'; -export { default as SurfingOutlined } from './SurfingOutlined'; -export { default as SurfingRounded } from './SurfingRounded'; -export { default as SurfingSharp } from './SurfingSharp'; -export { default as SurfingTwoTone } from './SurfingTwoTone'; -export { default as SurroundSound } from './SurroundSound'; -export { default as SurroundSoundOutlined } from './SurroundSoundOutlined'; -export { default as SurroundSoundRounded } from './SurroundSoundRounded'; -export { default as SurroundSoundSharp } from './SurroundSoundSharp'; -export { default as SurroundSoundTwoTone } from './SurroundSoundTwoTone'; -export { default as SwapCalls } from './SwapCalls'; -export { default as SwapCallsOutlined } from './SwapCallsOutlined'; -export { default as SwapCallsRounded } from './SwapCallsRounded'; -export { default as SwapCallsSharp } from './SwapCallsSharp'; -export { default as SwapCallsTwoTone } from './SwapCallsTwoTone'; -export { default as SwapHoriz } from './SwapHoriz'; -export { default as SwapHorizOutlined } from './SwapHorizOutlined'; -export { default as SwapHorizRounded } from './SwapHorizRounded'; -export { default as SwapHorizSharp } from './SwapHorizSharp'; -export { default as SwapHorizTwoTone } from './SwapHorizTwoTone'; -export { default as SwapHorizontalCircle } from './SwapHorizontalCircle'; -export { default as SwapHorizontalCircleOutlined } from './SwapHorizontalCircleOutlined'; -export { default as SwapHorizontalCircleRounded } from './SwapHorizontalCircleRounded'; -export { default as SwapHorizontalCircleSharp } from './SwapHorizontalCircleSharp'; -export { default as SwapHorizontalCircleTwoTone } from './SwapHorizontalCircleTwoTone'; -export { default as SwapVert } from './SwapVert'; -export { default as SwapVertOutlined } from './SwapVertOutlined'; -export { default as SwapVertRounded } from './SwapVertRounded'; -export { default as SwapVertSharp } from './SwapVertSharp'; -export { default as SwapVertTwoTone } from './SwapVertTwoTone'; -export { default as SwapVerticalCircle } from './SwapVerticalCircle'; -export { default as SwapVerticalCircleOutlined } from './SwapVerticalCircleOutlined'; -export { default as SwapVerticalCircleRounded } from './SwapVerticalCircleRounded'; -export { default as SwapVerticalCircleSharp } from './SwapVerticalCircleSharp'; -export { default as SwapVerticalCircleTwoTone } from './SwapVerticalCircleTwoTone'; -export { default as Swipe } from './Swipe'; -export { default as SwipeOutlined } from './SwipeOutlined'; -export { default as SwipeRounded } from './SwipeRounded'; -export { default as SwipeSharp } from './SwipeSharp'; -export { default as SwipeTwoTone } from './SwipeTwoTone'; -export { default as SwitchAccount } from './SwitchAccount'; -export { default as SwitchAccountOutlined } from './SwitchAccountOutlined'; -export { default as SwitchAccountRounded } from './SwitchAccountRounded'; -export { default as SwitchAccountSharp } from './SwitchAccountSharp'; -export { default as SwitchAccountTwoTone } from './SwitchAccountTwoTone'; -export { default as SwitchCamera } from './SwitchCamera'; -export { default as SwitchCameraOutlined } from './SwitchCameraOutlined'; -export { default as SwitchCameraRounded } from './SwitchCameraRounded'; -export { default as SwitchCameraSharp } from './SwitchCameraSharp'; -export { default as SwitchCameraTwoTone } from './SwitchCameraTwoTone'; -export { default as SwitchLeft } from './SwitchLeft'; -export { default as SwitchLeftOutlined } from './SwitchLeftOutlined'; -export { default as SwitchLeftRounded } from './SwitchLeftRounded'; -export { default as SwitchLeftSharp } from './SwitchLeftSharp'; -export { default as SwitchLeftTwoTone } from './SwitchLeftTwoTone'; -export { default as SwitchRight } from './SwitchRight'; -export { default as SwitchRightOutlined } from './SwitchRightOutlined'; -export { default as SwitchRightRounded } from './SwitchRightRounded'; -export { default as SwitchRightSharp } from './SwitchRightSharp'; -export { default as SwitchRightTwoTone } from './SwitchRightTwoTone'; -export { default as SwitchVideo } from './SwitchVideo'; -export { default as SwitchVideoOutlined } from './SwitchVideoOutlined'; -export { default as SwitchVideoRounded } from './SwitchVideoRounded'; -export { default as SwitchVideoSharp } from './SwitchVideoSharp'; -export { default as SwitchVideoTwoTone } from './SwitchVideoTwoTone'; -export { default as Sync } from './Sync'; -export { default as SyncAlt } from './SyncAlt'; -export { default as SyncAltOutlined } from './SyncAltOutlined'; -export { default as SyncAltRounded } from './SyncAltRounded'; -export { default as SyncAltSharp } from './SyncAltSharp'; -export { default as SyncAltTwoTone } from './SyncAltTwoTone'; -export { default as SyncDisabled } from './SyncDisabled'; -export { default as SyncDisabledOutlined } from './SyncDisabledOutlined'; -export { default as SyncDisabledRounded } from './SyncDisabledRounded'; -export { default as SyncDisabledSharp } from './SyncDisabledSharp'; -export { default as SyncDisabledTwoTone } from './SyncDisabledTwoTone'; -export { default as SyncOutlined } from './SyncOutlined'; -export { default as SyncProblem } from './SyncProblem'; -export { default as SyncProblemOutlined } from './SyncProblemOutlined'; -export { default as SyncProblemRounded } from './SyncProblemRounded'; -export { default as SyncProblemSharp } from './SyncProblemSharp'; -export { default as SyncProblemTwoTone } from './SyncProblemTwoTone'; -export { default as SyncRounded } from './SyncRounded'; -export { default as SyncSharp } from './SyncSharp'; -export { default as SyncTwoTone } from './SyncTwoTone'; -export { default as SystemSecurityUpdate } from './SystemSecurityUpdate'; -export { default as SystemSecurityUpdateGood } from './SystemSecurityUpdateGood'; -export { default as SystemSecurityUpdateGoodOutlined } from './SystemSecurityUpdateGoodOutlined'; -export { default as SystemSecurityUpdateGoodRounded } from './SystemSecurityUpdateGoodRounded'; -export { default as SystemSecurityUpdateGoodSharp } from './SystemSecurityUpdateGoodSharp'; -export { default as SystemSecurityUpdateGoodTwoTone } from './SystemSecurityUpdateGoodTwoTone'; -export { default as SystemSecurityUpdateOutlined } from './SystemSecurityUpdateOutlined'; -export { default as SystemSecurityUpdateRounded } from './SystemSecurityUpdateRounded'; -export { default as SystemSecurityUpdateSharp } from './SystemSecurityUpdateSharp'; -export { default as SystemSecurityUpdateTwoTone } from './SystemSecurityUpdateTwoTone'; -export { default as SystemSecurityUpdateWarning } from './SystemSecurityUpdateWarning'; -export { default as SystemSecurityUpdateWarningOutlined } from './SystemSecurityUpdateWarningOutlined'; -export { default as SystemSecurityUpdateWarningRounded } from './SystemSecurityUpdateWarningRounded'; -export { default as SystemSecurityUpdateWarningSharp } from './SystemSecurityUpdateWarningSharp'; -export { default as SystemSecurityUpdateWarningTwoTone } from './SystemSecurityUpdateWarningTwoTone'; -export { default as SystemUpdate } from './SystemUpdate'; -export { default as SystemUpdateAlt } from './SystemUpdateAlt'; -export { default as SystemUpdateAltOutlined } from './SystemUpdateAltOutlined'; -export { default as SystemUpdateAltRounded } from './SystemUpdateAltRounded'; -export { default as SystemUpdateAltSharp } from './SystemUpdateAltSharp'; -export { default as SystemUpdateAltTwoTone } from './SystemUpdateAltTwoTone'; -export { default as SystemUpdateOutlined } from './SystemUpdateOutlined'; -export { default as SystemUpdateRounded } from './SystemUpdateRounded'; -export { default as SystemUpdateSharp } from './SystemUpdateSharp'; -export { default as SystemUpdateTwoTone } from './SystemUpdateTwoTone'; -export { default as Tab } from './Tab'; -export { default as TabOutlined } from './TabOutlined'; -export { default as TabRounded } from './TabRounded'; -export { default as TabSharp } from './TabSharp'; -export { default as TabTwoTone } from './TabTwoTone'; -export { default as TabUnselected } from './TabUnselected'; -export { default as TabUnselectedOutlined } from './TabUnselectedOutlined'; -export { default as TabUnselectedRounded } from './TabUnselectedRounded'; -export { default as TabUnselectedSharp } from './TabUnselectedSharp'; -export { default as TabUnselectedTwoTone } from './TabUnselectedTwoTone'; -export { default as TableChart } from './TableChart'; -export { default as TableChartOutlined } from './TableChartOutlined'; -export { default as TableChartRounded } from './TableChartRounded'; -export { default as TableChartSharp } from './TableChartSharp'; -export { default as TableChartTwoTone } from './TableChartTwoTone'; -export { default as TableRows } from './TableRows'; -export { default as TableRowsOutlined } from './TableRowsOutlined'; -export { default as TableRowsRounded } from './TableRowsRounded'; -export { default as TableRowsSharp } from './TableRowsSharp'; -export { default as TableRowsTwoTone } from './TableRowsTwoTone'; -export { default as TableView } from './TableView'; -export { default as TableViewOutlined } from './TableViewOutlined'; -export { default as TableViewRounded } from './TableViewRounded'; -export { default as TableViewSharp } from './TableViewSharp'; -export { default as TableViewTwoTone } from './TableViewTwoTone'; -export { default as Tablet } from './Tablet'; -export { default as TabletAndroid } from './TabletAndroid'; -export { default as TabletAndroidOutlined } from './TabletAndroidOutlined'; -export { default as TabletAndroidRounded } from './TabletAndroidRounded'; -export { default as TabletAndroidSharp } from './TabletAndroidSharp'; -export { default as TabletAndroidTwoTone } from './TabletAndroidTwoTone'; -export { default as TabletMac } from './TabletMac'; -export { default as TabletMacOutlined } from './TabletMacOutlined'; -export { default as TabletMacRounded } from './TabletMacRounded'; -export { default as TabletMacSharp } from './TabletMacSharp'; -export { default as TabletMacTwoTone } from './TabletMacTwoTone'; -export { default as TabletOutlined } from './TabletOutlined'; -export { default as TabletRounded } from './TabletRounded'; -export { default as TabletSharp } from './TabletSharp'; -export { default as TabletTwoTone } from './TabletTwoTone'; -export { default as Tag } from './Tag'; -export { default as TagFaces } from './TagFaces'; -export { default as TagFacesOutlined } from './TagFacesOutlined'; -export { default as TagFacesRounded } from './TagFacesRounded'; -export { default as TagFacesSharp } from './TagFacesSharp'; -export { default as TagFacesTwoTone } from './TagFacesTwoTone'; -export { default as TagOutlined } from './TagOutlined'; -export { default as TagRounded } from './TagRounded'; -export { default as TagSharp } from './TagSharp'; -export { default as TagTwoTone } from './TagTwoTone'; -export { default as TakeoutDining } from './TakeoutDining'; -export { default as TakeoutDiningOutlined } from './TakeoutDiningOutlined'; -export { default as TakeoutDiningRounded } from './TakeoutDiningRounded'; -export { default as TakeoutDiningSharp } from './TakeoutDiningSharp'; -export { default as TakeoutDiningTwoTone } from './TakeoutDiningTwoTone'; -export { default as TapAndPlay } from './TapAndPlay'; -export { default as TapAndPlayOutlined } from './TapAndPlayOutlined'; -export { default as TapAndPlayRounded } from './TapAndPlayRounded'; -export { default as TapAndPlaySharp } from './TapAndPlaySharp'; -export { default as TapAndPlayTwoTone } from './TapAndPlayTwoTone'; -export { default as Tapas } from './Tapas'; -export { default as TapasOutlined } from './TapasOutlined'; -export { default as TapasRounded } from './TapasRounded'; -export { default as TapasSharp } from './TapasSharp'; -export { default as TapasTwoTone } from './TapasTwoTone'; -export { default as Task } from './Task'; -export { default as TaskAlt } from './TaskAlt'; -export { default as TaskAltOutlined } from './TaskAltOutlined'; -export { default as TaskAltRounded } from './TaskAltRounded'; -export { default as TaskAltSharp } from './TaskAltSharp'; -export { default as TaskAltTwoTone } from './TaskAltTwoTone'; -export { default as TaskOutlined } from './TaskOutlined'; -export { default as TaskRounded } from './TaskRounded'; -export { default as TaskSharp } from './TaskSharp'; -export { default as TaskTwoTone } from './TaskTwoTone'; -export { default as TaxiAlert } from './TaxiAlert'; -export { default as TaxiAlertOutlined } from './TaxiAlertOutlined'; -export { default as TaxiAlertRounded } from './TaxiAlertRounded'; -export { default as TaxiAlertSharp } from './TaxiAlertSharp'; -export { default as TaxiAlertTwoTone } from './TaxiAlertTwoTone'; -export { default as Telegram } from './Telegram'; -export { default as TenMp } from './TenMp'; -export { default as TenMpOutlined } from './TenMpOutlined'; -export { default as TenMpRounded } from './TenMpRounded'; -export { default as TenMpSharp } from './TenMpSharp'; -export { default as TenMpTwoTone } from './TenMpTwoTone'; -export { default as Terrain } from './Terrain'; -export { default as TerrainOutlined } from './TerrainOutlined'; -export { default as TerrainRounded } from './TerrainRounded'; -export { default as TerrainSharp } from './TerrainSharp'; -export { default as TerrainTwoTone } from './TerrainTwoTone'; -export { default as TextFields } from './TextFields'; -export { default as TextFieldsOutlined } from './TextFieldsOutlined'; -export { default as TextFieldsRounded } from './TextFieldsRounded'; -export { default as TextFieldsSharp } from './TextFieldsSharp'; -export { default as TextFieldsTwoTone } from './TextFieldsTwoTone'; -export { default as TextFormat } from './TextFormat'; -export { default as TextFormatOutlined } from './TextFormatOutlined'; -export { default as TextFormatRounded } from './TextFormatRounded'; -export { default as TextFormatSharp } from './TextFormatSharp'; -export { default as TextFormatTwoTone } from './TextFormatTwoTone'; -export { default as TextRotateUp } from './TextRotateUp'; -export { default as TextRotateUpOutlined } from './TextRotateUpOutlined'; -export { default as TextRotateUpRounded } from './TextRotateUpRounded'; -export { default as TextRotateUpSharp } from './TextRotateUpSharp'; -export { default as TextRotateUpTwoTone } from './TextRotateUpTwoTone'; -export { default as TextRotateVertical } from './TextRotateVertical'; -export { default as TextRotateVerticalOutlined } from './TextRotateVerticalOutlined'; -export { default as TextRotateVerticalRounded } from './TextRotateVerticalRounded'; -export { default as TextRotateVerticalSharp } from './TextRotateVerticalSharp'; -export { default as TextRotateVerticalTwoTone } from './TextRotateVerticalTwoTone'; -export { default as TextRotationAngledown } from './TextRotationAngledown'; -export { default as TextRotationAngledownOutlined } from './TextRotationAngledownOutlined'; -export { default as TextRotationAngledownRounded } from './TextRotationAngledownRounded'; -export { default as TextRotationAngledownSharp } from './TextRotationAngledownSharp'; -export { default as TextRotationAngledownTwoTone } from './TextRotationAngledownTwoTone'; -export { default as TextRotationAngleup } from './TextRotationAngleup'; -export { default as TextRotationAngleupOutlined } from './TextRotationAngleupOutlined'; -export { default as TextRotationAngleupRounded } from './TextRotationAngleupRounded'; -export { default as TextRotationAngleupSharp } from './TextRotationAngleupSharp'; -export { default as TextRotationAngleupTwoTone } from './TextRotationAngleupTwoTone'; -export { default as TextRotationDown } from './TextRotationDown'; -export { default as TextRotationDownOutlined } from './TextRotationDownOutlined'; -export { default as TextRotationDownRounded } from './TextRotationDownRounded'; -export { default as TextRotationDownSharp } from './TextRotationDownSharp'; -export { default as TextRotationDownTwoTone } from './TextRotationDownTwoTone'; -export { default as TextRotationNone } from './TextRotationNone'; -export { default as TextRotationNoneOutlined } from './TextRotationNoneOutlined'; -export { default as TextRotationNoneRounded } from './TextRotationNoneRounded'; -export { default as TextRotationNoneSharp } from './TextRotationNoneSharp'; -export { default as TextRotationNoneTwoTone } from './TextRotationNoneTwoTone'; -export { default as TextSnippet } from './TextSnippet'; -export { default as TextSnippetOutlined } from './TextSnippetOutlined'; -export { default as TextSnippetRounded } from './TextSnippetRounded'; -export { default as TextSnippetSharp } from './TextSnippetSharp'; -export { default as TextSnippetTwoTone } from './TextSnippetTwoTone'; -export { default as Textsms } from './Textsms'; -export { default as TextsmsOutlined } from './TextsmsOutlined'; -export { default as TextsmsRounded } from './TextsmsRounded'; -export { default as TextsmsSharp } from './TextsmsSharp'; -export { default as TextsmsTwoTone } from './TextsmsTwoTone'; -export { default as Texture } from './Texture'; -export { default as TextureOutlined } from './TextureOutlined'; -export { default as TextureRounded } from './TextureRounded'; -export { default as TextureSharp } from './TextureSharp'; -export { default as TextureTwoTone } from './TextureTwoTone'; -export { default as TheaterComedy } from './TheaterComedy'; -export { default as TheaterComedyOutlined } from './TheaterComedyOutlined'; -export { default as TheaterComedyRounded } from './TheaterComedyRounded'; -export { default as TheaterComedySharp } from './TheaterComedySharp'; -export { default as TheaterComedyTwoTone } from './TheaterComedyTwoTone'; -export { default as Theaters } from './Theaters'; -export { default as TheatersOutlined } from './TheatersOutlined'; -export { default as TheatersRounded } from './TheatersRounded'; -export { default as TheatersSharp } from './TheatersSharp'; -export { default as TheatersTwoTone } from './TheatersTwoTone'; -export { default as Thermostat } from './Thermostat'; -export { default as ThermostatAuto } from './ThermostatAuto'; -export { default as ThermostatAutoOutlined } from './ThermostatAutoOutlined'; -export { default as ThermostatAutoRounded } from './ThermostatAutoRounded'; -export { default as ThermostatAutoSharp } from './ThermostatAutoSharp'; -export { default as ThermostatAutoTwoTone } from './ThermostatAutoTwoTone'; -export { default as ThermostatOutlined } from './ThermostatOutlined'; -export { default as ThermostatRounded } from './ThermostatRounded'; -export { default as ThermostatSharp } from './ThermostatSharp'; -export { default as ThermostatTwoTone } from './ThermostatTwoTone'; -export { default as ThirteenMp } from './ThirteenMp'; -export { default as ThirteenMpOutlined } from './ThirteenMpOutlined'; -export { default as ThirteenMpRounded } from './ThirteenMpRounded'; -export { default as ThirteenMpSharp } from './ThirteenMpSharp'; -export { default as ThirteenMpTwoTone } from './ThirteenMpTwoTone'; -export { default as ThirtyFps } from './ThirtyFps'; -export { default as ThirtyFpsOutlined } from './ThirtyFpsOutlined'; -export { default as ThirtyFpsRounded } from './ThirtyFpsRounded'; -export { default as ThirtyFpsSelect } from './ThirtyFpsSelect'; -export { default as ThirtyFpsSelectOutlined } from './ThirtyFpsSelectOutlined'; -export { default as ThirtyFpsSelectRounded } from './ThirtyFpsSelectRounded'; -export { default as ThirtyFpsSelectSharp } from './ThirtyFpsSelectSharp'; -export { default as ThirtyFpsSelectTwoTone } from './ThirtyFpsSelectTwoTone'; -export { default as ThirtyFpsSharp } from './ThirtyFpsSharp'; -export { default as ThirtyFpsTwoTone } from './ThirtyFpsTwoTone'; -export { default as ThreeDRotation } from './ThreeDRotation'; -export { default as ThreeDRotationOutlined } from './ThreeDRotationOutlined'; -export { default as ThreeDRotationRounded } from './ThreeDRotationRounded'; -export { default as ThreeDRotationSharp } from './ThreeDRotationSharp'; -export { default as ThreeDRotationTwoTone } from './ThreeDRotationTwoTone'; -export { default as ThreeGMobiledata } from './ThreeGMobiledata'; -export { default as ThreeGMobiledataOutlined } from './ThreeGMobiledataOutlined'; -export { default as ThreeGMobiledataRounded } from './ThreeGMobiledataRounded'; -export { default as ThreeGMobiledataSharp } from './ThreeGMobiledataSharp'; -export { default as ThreeGMobiledataTwoTone } from './ThreeGMobiledataTwoTone'; -export { default as ThreeK } from './ThreeK'; -export { default as ThreeKOutlined } from './ThreeKOutlined'; -export { default as ThreeKPlus } from './ThreeKPlus'; -export { default as ThreeKPlusOutlined } from './ThreeKPlusOutlined'; -export { default as ThreeKPlusRounded } from './ThreeKPlusRounded'; -export { default as ThreeKPlusSharp } from './ThreeKPlusSharp'; -export { default as ThreeKPlusTwoTone } from './ThreeKPlusTwoTone'; -export { default as ThreeKRounded } from './ThreeKRounded'; -export { default as ThreeKSharp } from './ThreeKSharp'; -export { default as ThreeKTwoTone } from './ThreeKTwoTone'; -export { default as ThreeMp } from './ThreeMp'; -export { default as ThreeMpOutlined } from './ThreeMpOutlined'; -export { default as ThreeMpRounded } from './ThreeMpRounded'; -export { default as ThreeMpSharp } from './ThreeMpSharp'; -export { default as ThreeMpTwoTone } from './ThreeMpTwoTone'; -export { default as ThreeP } from './ThreeP'; -export { default as ThreePOutlined } from './ThreePOutlined'; -export { default as ThreePRounded } from './ThreePRounded'; -export { default as ThreePSharp } from './ThreePSharp'; -export { default as ThreePTwoTone } from './ThreePTwoTone'; -export { default as ThreeSixty } from './ThreeSixty'; -export { default as ThreeSixtyOutlined } from './ThreeSixtyOutlined'; -export { default as ThreeSixtyRounded } from './ThreeSixtyRounded'; -export { default as ThreeSixtySharp } from './ThreeSixtySharp'; -export { default as ThreeSixtyTwoTone } from './ThreeSixtyTwoTone'; -export { default as ThumbDown } from './ThumbDown'; -export { default as ThumbDownAlt } from './ThumbDownAlt'; -export { default as ThumbDownAltOutlined } from './ThumbDownAltOutlined'; -export { default as ThumbDownAltRounded } from './ThumbDownAltRounded'; -export { default as ThumbDownAltSharp } from './ThumbDownAltSharp'; -export { default as ThumbDownAltTwoTone } from './ThumbDownAltTwoTone'; -export { default as ThumbDownOffAlt } from './ThumbDownOffAlt'; -export { default as ThumbDownOffAltOutlined } from './ThumbDownOffAltOutlined'; -export { default as ThumbDownOffAltRounded } from './ThumbDownOffAltRounded'; -export { default as ThumbDownOffAltSharp } from './ThumbDownOffAltSharp'; -export { default as ThumbDownOffAltTwoTone } from './ThumbDownOffAltTwoTone'; -export { default as ThumbDownOutlined } from './ThumbDownOutlined'; -export { default as ThumbDownRounded } from './ThumbDownRounded'; -export { default as ThumbDownSharp } from './ThumbDownSharp'; -export { default as ThumbDownTwoTone } from './ThumbDownTwoTone'; -export { default as ThumbUp } from './ThumbUp'; -export { default as ThumbUpAlt } from './ThumbUpAlt'; -export { default as ThumbUpAltOutlined } from './ThumbUpAltOutlined'; -export { default as ThumbUpAltRounded } from './ThumbUpAltRounded'; -export { default as ThumbUpAltSharp } from './ThumbUpAltSharp'; -export { default as ThumbUpAltTwoTone } from './ThumbUpAltTwoTone'; -export { default as ThumbUpOffAlt } from './ThumbUpOffAlt'; -export { default as ThumbUpOffAltOutlined } from './ThumbUpOffAltOutlined'; -export { default as ThumbUpOffAltRounded } from './ThumbUpOffAltRounded'; -export { default as ThumbUpOffAltSharp } from './ThumbUpOffAltSharp'; -export { default as ThumbUpOffAltTwoTone } from './ThumbUpOffAltTwoTone'; -export { default as ThumbUpOutlined } from './ThumbUpOutlined'; -export { default as ThumbUpRounded } from './ThumbUpRounded'; -export { default as ThumbUpSharp } from './ThumbUpSharp'; -export { default as ThumbUpTwoTone } from './ThumbUpTwoTone'; -export { default as ThumbsUpDown } from './ThumbsUpDown'; -export { default as ThumbsUpDownOutlined } from './ThumbsUpDownOutlined'; -export { default as ThumbsUpDownRounded } from './ThumbsUpDownRounded'; -export { default as ThumbsUpDownSharp } from './ThumbsUpDownSharp'; -export { default as ThumbsUpDownTwoTone } from './ThumbsUpDownTwoTone'; -export { default as TimeToLeave } from './TimeToLeave'; -export { default as TimeToLeaveOutlined } from './TimeToLeaveOutlined'; -export { default as TimeToLeaveRounded } from './TimeToLeaveRounded'; -export { default as TimeToLeaveSharp } from './TimeToLeaveSharp'; -export { default as TimeToLeaveTwoTone } from './TimeToLeaveTwoTone'; -export { default as Timelapse } from './Timelapse'; -export { default as TimelapseOutlined } from './TimelapseOutlined'; -export { default as TimelapseRounded } from './TimelapseRounded'; -export { default as TimelapseSharp } from './TimelapseSharp'; -export { default as TimelapseTwoTone } from './TimelapseTwoTone'; -export { default as Timeline } from './Timeline'; -export { default as TimelineOutlined } from './TimelineOutlined'; -export { default as TimelineRounded } from './TimelineRounded'; -export { default as TimelineSharp } from './TimelineSharp'; -export { default as TimelineTwoTone } from './TimelineTwoTone'; -export { default as Timer } from './Timer'; -export { default as Timer10 } from './Timer10'; -export { default as Timer10Outlined } from './Timer10Outlined'; -export { default as Timer10Rounded } from './Timer10Rounded'; -export { default as Timer10Select } from './Timer10Select'; -export { default as Timer10SelectOutlined } from './Timer10SelectOutlined'; -export { default as Timer10SelectRounded } from './Timer10SelectRounded'; -export { default as Timer10SelectSharp } from './Timer10SelectSharp'; -export { default as Timer10SelectTwoTone } from './Timer10SelectTwoTone'; -export { default as Timer10Sharp } from './Timer10Sharp'; -export { default as Timer10TwoTone } from './Timer10TwoTone'; -export { default as Timer3 } from './Timer3'; -export { default as Timer3Outlined } from './Timer3Outlined'; -export { default as Timer3Rounded } from './Timer3Rounded'; -export { default as Timer3Select } from './Timer3Select'; -export { default as Timer3SelectOutlined } from './Timer3SelectOutlined'; -export { default as Timer3SelectRounded } from './Timer3SelectRounded'; -export { default as Timer3SelectSharp } from './Timer3SelectSharp'; -export { default as Timer3SelectTwoTone } from './Timer3SelectTwoTone'; -export { default as Timer3Sharp } from './Timer3Sharp'; -export { default as Timer3TwoTone } from './Timer3TwoTone'; -export { default as TimerOff } from './TimerOff'; -export { default as TimerOffOutlined } from './TimerOffOutlined'; -export { default as TimerOffRounded } from './TimerOffRounded'; -export { default as TimerOffSharp } from './TimerOffSharp'; -export { default as TimerOffTwoTone } from './TimerOffTwoTone'; -export { default as TimerOutlined } from './TimerOutlined'; -export { default as TimerRounded } from './TimerRounded'; -export { default as TimerSharp } from './TimerSharp'; -export { default as TimerTwoTone } from './TimerTwoTone'; -export { default as TimesOneMobiledata } from './TimesOneMobiledata'; -export { default as TimesOneMobiledataOutlined } from './TimesOneMobiledataOutlined'; -export { default as TimesOneMobiledataRounded } from './TimesOneMobiledataRounded'; -export { default as TimesOneMobiledataSharp } from './TimesOneMobiledataSharp'; -export { default as TimesOneMobiledataTwoTone } from './TimesOneMobiledataTwoTone'; -export { default as Title } from './Title'; -export { default as TitleOutlined } from './TitleOutlined'; -export { default as TitleRounded } from './TitleRounded'; -export { default as TitleSharp } from './TitleSharp'; -export { default as TitleTwoTone } from './TitleTwoTone'; -export { default as Toc } from './Toc'; -export { default as TocOutlined } from './TocOutlined'; -export { default as TocRounded } from './TocRounded'; -export { default as TocSharp } from './TocSharp'; -export { default as TocTwoTone } from './TocTwoTone'; -export { default as Today } from './Today'; -export { default as TodayOutlined } from './TodayOutlined'; -export { default as TodayRounded } from './TodayRounded'; -export { default as TodaySharp } from './TodaySharp'; -export { default as TodayTwoTone } from './TodayTwoTone'; -export { default as ToggleOff } from './ToggleOff'; -export { default as ToggleOffOutlined } from './ToggleOffOutlined'; -export { default as ToggleOffRounded } from './ToggleOffRounded'; -export { default as ToggleOffSharp } from './ToggleOffSharp'; -export { default as ToggleOffTwoTone } from './ToggleOffTwoTone'; -export { default as ToggleOn } from './ToggleOn'; -export { default as ToggleOnOutlined } from './ToggleOnOutlined'; -export { default as ToggleOnRounded } from './ToggleOnRounded'; -export { default as ToggleOnSharp } from './ToggleOnSharp'; -export { default as ToggleOnTwoTone } from './ToggleOnTwoTone'; -export { default as Toll } from './Toll'; -export { default as TollOutlined } from './TollOutlined'; -export { default as TollRounded } from './TollRounded'; -export { default as TollSharp } from './TollSharp'; -export { default as TollTwoTone } from './TollTwoTone'; -export { default as Tonality } from './Tonality'; -export { default as TonalityOutlined } from './TonalityOutlined'; -export { default as TonalityRounded } from './TonalityRounded'; -export { default as TonalitySharp } from './TonalitySharp'; -export { default as TonalityTwoTone } from './TonalityTwoTone'; -export { default as Topic } from './Topic'; -export { default as TopicOutlined } from './TopicOutlined'; -export { default as TopicRounded } from './TopicRounded'; -export { default as TopicSharp } from './TopicSharp'; -export { default as TopicTwoTone } from './TopicTwoTone'; -export { default as TouchApp } from './TouchApp'; -export { default as TouchAppOutlined } from './TouchAppOutlined'; -export { default as TouchAppRounded } from './TouchAppRounded'; -export { default as TouchAppSharp } from './TouchAppSharp'; -export { default as TouchAppTwoTone } from './TouchAppTwoTone'; -export { default as Tour } from './Tour'; -export { default as TourOutlined } from './TourOutlined'; -export { default as TourRounded } from './TourRounded'; -export { default as TourSharp } from './TourSharp'; -export { default as TourTwoTone } from './TourTwoTone'; -export { default as Toys } from './Toys'; -export { default as ToysOutlined } from './ToysOutlined'; -export { default as ToysRounded } from './ToysRounded'; -export { default as ToysSharp } from './ToysSharp'; -export { default as ToysTwoTone } from './ToysTwoTone'; -export { default as TrackChanges } from './TrackChanges'; -export { default as TrackChangesOutlined } from './TrackChangesOutlined'; -export { default as TrackChangesRounded } from './TrackChangesRounded'; -export { default as TrackChangesSharp } from './TrackChangesSharp'; -export { default as TrackChangesTwoTone } from './TrackChangesTwoTone'; -export { default as Traffic } from './Traffic'; -export { default as TrafficOutlined } from './TrafficOutlined'; -export { default as TrafficRounded } from './TrafficRounded'; -export { default as TrafficSharp } from './TrafficSharp'; -export { default as TrafficTwoTone } from './TrafficTwoTone'; -export { default as Train } from './Train'; -export { default as TrainOutlined } from './TrainOutlined'; -export { default as TrainRounded } from './TrainRounded'; -export { default as TrainSharp } from './TrainSharp'; -export { default as TrainTwoTone } from './TrainTwoTone'; -export { default as Tram } from './Tram'; -export { default as TramOutlined } from './TramOutlined'; -export { default as TramRounded } from './TramRounded'; -export { default as TramSharp } from './TramSharp'; -export { default as TramTwoTone } from './TramTwoTone'; -export { default as TransferWithinAStation } from './TransferWithinAStation'; -export { default as TransferWithinAStationOutlined } from './TransferWithinAStationOutlined'; -export { default as TransferWithinAStationRounded } from './TransferWithinAStationRounded'; -export { default as TransferWithinAStationSharp } from './TransferWithinAStationSharp'; -export { default as TransferWithinAStationTwoTone } from './TransferWithinAStationTwoTone'; -export { default as Transform } from './Transform'; -export { default as TransformOutlined } from './TransformOutlined'; -export { default as TransformRounded } from './TransformRounded'; -export { default as TransformSharp } from './TransformSharp'; -export { default as TransformTwoTone } from './TransformTwoTone'; -export { default as Transgender } from './Transgender'; -export { default as TransgenderOutlined } from './TransgenderOutlined'; -export { default as TransgenderRounded } from './TransgenderRounded'; -export { default as TransgenderSharp } from './TransgenderSharp'; -export { default as TransgenderTwoTone } from './TransgenderTwoTone'; -export { default as TransitEnterexit } from './TransitEnterexit'; -export { default as TransitEnterexitOutlined } from './TransitEnterexitOutlined'; -export { default as TransitEnterexitRounded } from './TransitEnterexitRounded'; -export { default as TransitEnterexitSharp } from './TransitEnterexitSharp'; -export { default as TransitEnterexitTwoTone } from './TransitEnterexitTwoTone'; -export { default as Translate } from './Translate'; -export { default as TranslateOutlined } from './TranslateOutlined'; -export { default as TranslateRounded } from './TranslateRounded'; -export { default as TranslateSharp } from './TranslateSharp'; -export { default as TranslateTwoTone } from './TranslateTwoTone'; -export { default as TravelExplore } from './TravelExplore'; -export { default as TravelExploreOutlined } from './TravelExploreOutlined'; -export { default as TravelExploreRounded } from './TravelExploreRounded'; -export { default as TravelExploreSharp } from './TravelExploreSharp'; -export { default as TravelExploreTwoTone } from './TravelExploreTwoTone'; -export { default as TrendingDown } from './TrendingDown'; -export { default as TrendingDownOutlined } from './TrendingDownOutlined'; -export { default as TrendingDownRounded } from './TrendingDownRounded'; -export { default as TrendingDownSharp } from './TrendingDownSharp'; -export { default as TrendingDownTwoTone } from './TrendingDownTwoTone'; -export { default as TrendingFlat } from './TrendingFlat'; -export { default as TrendingFlatOutlined } from './TrendingFlatOutlined'; -export { default as TrendingFlatRounded } from './TrendingFlatRounded'; -export { default as TrendingFlatSharp } from './TrendingFlatSharp'; -export { default as TrendingFlatTwoTone } from './TrendingFlatTwoTone'; -export { default as TrendingUp } from './TrendingUp'; -export { default as TrendingUpOutlined } from './TrendingUpOutlined'; -export { default as TrendingUpRounded } from './TrendingUpRounded'; -export { default as TrendingUpSharp } from './TrendingUpSharp'; -export { default as TrendingUpTwoTone } from './TrendingUpTwoTone'; -export { default as TripOrigin } from './TripOrigin'; -export { default as TripOriginOutlined } from './TripOriginOutlined'; -export { default as TripOriginRounded } from './TripOriginRounded'; -export { default as TripOriginSharp } from './TripOriginSharp'; -export { default as TripOriginTwoTone } from './TripOriginTwoTone'; -export { default as Try } from './Try'; -export { default as TryOutlined } from './TryOutlined'; -export { default as TryRounded } from './TryRounded'; -export { default as TrySharp } from './TrySharp'; -export { default as TryTwoTone } from './TryTwoTone'; -export { default as Tty } from './Tty'; -export { default as TtyOutlined } from './TtyOutlined'; -export { default as TtyRounded } from './TtyRounded'; -export { default as TtySharp } from './TtySharp'; -export { default as TtyTwoTone } from './TtyTwoTone'; -export { default as Tune } from './Tune'; -export { default as TuneOutlined } from './TuneOutlined'; -export { default as TuneRounded } from './TuneRounded'; -export { default as TuneSharp } from './TuneSharp'; -export { default as TuneTwoTone } from './TuneTwoTone'; -export { default as Tungsten } from './Tungsten'; -export { default as TungstenOutlined } from './TungstenOutlined'; -export { default as TungstenRounded } from './TungstenRounded'; -export { default as TungstenSharp } from './TungstenSharp'; -export { default as TungstenTwoTone } from './TungstenTwoTone'; -export { default as TurnedIn } from './TurnedIn'; -export { default as TurnedInNot } from './TurnedInNot'; -export { default as TurnedInNotOutlined } from './TurnedInNotOutlined'; -export { default as TurnedInNotRounded } from './TurnedInNotRounded'; -export { default as TurnedInNotSharp } from './TurnedInNotSharp'; -export { default as TurnedInNotTwoTone } from './TurnedInNotTwoTone'; -export { default as TurnedInOutlined } from './TurnedInOutlined'; -export { default as TurnedInRounded } from './TurnedInRounded'; -export { default as TurnedInSharp } from './TurnedInSharp'; -export { default as TurnedInTwoTone } from './TurnedInTwoTone'; -export { default as Tv } from './Tv'; -export { default as TvOff } from './TvOff'; -export { default as TvOffOutlined } from './TvOffOutlined'; -export { default as TvOffRounded } from './TvOffRounded'; -export { default as TvOffSharp } from './TvOffSharp'; -export { default as TvOffTwoTone } from './TvOffTwoTone'; -export { default as TvOutlined } from './TvOutlined'; -export { default as TvRounded } from './TvRounded'; -export { default as TvSharp } from './TvSharp'; -export { default as TvTwoTone } from './TvTwoTone'; -export { default as TwelveMp } from './TwelveMp'; -export { default as TwelveMpOutlined } from './TwelveMpOutlined'; -export { default as TwelveMpRounded } from './TwelveMpRounded'; -export { default as TwelveMpSharp } from './TwelveMpSharp'; -export { default as TwelveMpTwoTone } from './TwelveMpTwoTone'; -export { default as TwentyFourMp } from './TwentyFourMp'; -export { default as TwentyFourMpOutlined } from './TwentyFourMpOutlined'; -export { default as TwentyFourMpRounded } from './TwentyFourMpRounded'; -export { default as TwentyFourMpSharp } from './TwentyFourMpSharp'; -export { default as TwentyFourMpTwoTone } from './TwentyFourMpTwoTone'; -export { default as TwentyOneMp } from './TwentyOneMp'; -export { default as TwentyOneMpOutlined } from './TwentyOneMpOutlined'; -export { default as TwentyOneMpRounded } from './TwentyOneMpRounded'; -export { default as TwentyOneMpSharp } from './TwentyOneMpSharp'; -export { default as TwentyOneMpTwoTone } from './TwentyOneMpTwoTone'; -export { default as TwentyThreeMp } from './TwentyThreeMp'; -export { default as TwentyThreeMpOutlined } from './TwentyThreeMpOutlined'; -export { default as TwentyThreeMpRounded } from './TwentyThreeMpRounded'; -export { default as TwentyThreeMpSharp } from './TwentyThreeMpSharp'; -export { default as TwentyThreeMpTwoTone } from './TwentyThreeMpTwoTone'; -export { default as TwentyTwoMp } from './TwentyTwoMp'; -export { default as TwentyTwoMpOutlined } from './TwentyTwoMpOutlined'; -export { default as TwentyTwoMpRounded } from './TwentyTwoMpRounded'; -export { default as TwentyTwoMpSharp } from './TwentyTwoMpSharp'; -export { default as TwentyTwoMpTwoTone } from './TwentyTwoMpTwoTone'; -export { default as TwentyZeroMp } from './TwentyZeroMp'; -export { default as TwentyZeroMpOutlined } from './TwentyZeroMpOutlined'; -export { default as TwentyZeroMpRounded } from './TwentyZeroMpRounded'; -export { default as TwentyZeroMpSharp } from './TwentyZeroMpSharp'; -export { default as TwentyZeroMpTwoTone } from './TwentyZeroMpTwoTone'; -export { default as Twitter } from './Twitter'; -export { default as TwoK } from './TwoK'; -export { default as TwoKOutlined } from './TwoKOutlined'; -export { default as TwoKPlus } from './TwoKPlus'; -export { default as TwoKPlusOutlined } from './TwoKPlusOutlined'; -export { default as TwoKPlusRounded } from './TwoKPlusRounded'; -export { default as TwoKPlusSharp } from './TwoKPlusSharp'; -export { default as TwoKPlusTwoTone } from './TwoKPlusTwoTone'; -export { default as TwoKRounded } from './TwoKRounded'; -export { default as TwoKSharp } from './TwoKSharp'; -export { default as TwoKTwoTone } from './TwoKTwoTone'; -export { default as TwoMp } from './TwoMp'; -export { default as TwoMpOutlined } from './TwoMpOutlined'; -export { default as TwoMpRounded } from './TwoMpRounded'; -export { default as TwoMpSharp } from './TwoMpSharp'; -export { default as TwoMpTwoTone } from './TwoMpTwoTone'; -export { default as TwoWheeler } from './TwoWheeler'; -export { default as TwoWheelerOutlined } from './TwoWheelerOutlined'; -export { default as TwoWheelerRounded } from './TwoWheelerRounded'; -export { default as TwoWheelerSharp } from './TwoWheelerSharp'; -export { default as TwoWheelerTwoTone } from './TwoWheelerTwoTone'; -export { default as Umbrella } from './Umbrella'; -export { default as UmbrellaOutlined } from './UmbrellaOutlined'; -export { default as UmbrellaRounded } from './UmbrellaRounded'; -export { default as UmbrellaSharp } from './UmbrellaSharp'; -export { default as UmbrellaTwoTone } from './UmbrellaTwoTone'; -export { default as Unarchive } from './Unarchive'; -export { default as UnarchiveOutlined } from './UnarchiveOutlined'; -export { default as UnarchiveRounded } from './UnarchiveRounded'; -export { default as UnarchiveSharp } from './UnarchiveSharp'; -export { default as UnarchiveTwoTone } from './UnarchiveTwoTone'; -export { default as Undo } from './Undo'; -export { default as UndoOutlined } from './UndoOutlined'; -export { default as UndoRounded } from './UndoRounded'; -export { default as UndoSharp } from './UndoSharp'; -export { default as UndoTwoTone } from './UndoTwoTone'; -export { default as UnfoldLess } from './UnfoldLess'; -export { default as UnfoldLessOutlined } from './UnfoldLessOutlined'; -export { default as UnfoldLessRounded } from './UnfoldLessRounded'; -export { default as UnfoldLessSharp } from './UnfoldLessSharp'; -export { default as UnfoldLessTwoTone } from './UnfoldLessTwoTone'; -export { default as UnfoldMore } from './UnfoldMore'; -export { default as UnfoldMoreOutlined } from './UnfoldMoreOutlined'; -export { default as UnfoldMoreRounded } from './UnfoldMoreRounded'; -export { default as UnfoldMoreSharp } from './UnfoldMoreSharp'; -export { default as UnfoldMoreTwoTone } from './UnfoldMoreTwoTone'; -export { default as Unpublished } from './Unpublished'; -export { default as UnpublishedOutlined } from './UnpublishedOutlined'; -export { default as UnpublishedRounded } from './UnpublishedRounded'; -export { default as UnpublishedSharp } from './UnpublishedSharp'; -export { default as UnpublishedTwoTone } from './UnpublishedTwoTone'; -export { default as Unsubscribe } from './Unsubscribe'; -export { default as UnsubscribeOutlined } from './UnsubscribeOutlined'; -export { default as UnsubscribeRounded } from './UnsubscribeRounded'; -export { default as UnsubscribeSharp } from './UnsubscribeSharp'; -export { default as UnsubscribeTwoTone } from './UnsubscribeTwoTone'; -export { default as Upcoming } from './Upcoming'; -export { default as UpcomingOutlined } from './UpcomingOutlined'; -export { default as UpcomingRounded } from './UpcomingRounded'; -export { default as UpcomingSharp } from './UpcomingSharp'; -export { default as UpcomingTwoTone } from './UpcomingTwoTone'; -export { default as Update } from './Update'; -export { default as UpdateDisabled } from './UpdateDisabled'; -export { default as UpdateDisabledOutlined } from './UpdateDisabledOutlined'; -export { default as UpdateDisabledRounded } from './UpdateDisabledRounded'; -export { default as UpdateDisabledSharp } from './UpdateDisabledSharp'; -export { default as UpdateDisabledTwoTone } from './UpdateDisabledTwoTone'; -export { default as UpdateOutlined } from './UpdateOutlined'; -export { default as UpdateRounded } from './UpdateRounded'; -export { default as UpdateSharp } from './UpdateSharp'; -export { default as UpdateTwoTone } from './UpdateTwoTone'; -export { default as Upgrade } from './Upgrade'; -export { default as UpgradeOutlined } from './UpgradeOutlined'; -export { default as UpgradeRounded } from './UpgradeRounded'; -export { default as UpgradeSharp } from './UpgradeSharp'; -export { default as UpgradeTwoTone } from './UpgradeTwoTone'; -export { default as Upload } from './Upload'; -export { default as UploadFile } from './UploadFile'; -export { default as UploadFileOutlined } from './UploadFileOutlined'; -export { default as UploadFileRounded } from './UploadFileRounded'; -export { default as UploadFileSharp } from './UploadFileSharp'; -export { default as UploadFileTwoTone } from './UploadFileTwoTone'; -export { default as UploadOutlined } from './UploadOutlined'; -export { default as UploadRounded } from './UploadRounded'; -export { default as UploadSharp } from './UploadSharp'; -export { default as UploadTwoTone } from './UploadTwoTone'; -export { default as Usb } from './Usb'; -export { default as UsbOff } from './UsbOff'; -export { default as UsbOffOutlined } from './UsbOffOutlined'; -export { default as UsbOffRounded } from './UsbOffRounded'; -export { default as UsbOffSharp } from './UsbOffSharp'; -export { default as UsbOffTwoTone } from './UsbOffTwoTone'; -export { default as UsbOutlined } from './UsbOutlined'; -export { default as UsbRounded } from './UsbRounded'; -export { default as UsbSharp } from './UsbSharp'; -export { default as UsbTwoTone } from './UsbTwoTone'; -export { default as Verified } from './Verified'; -export { default as VerifiedOutlined } from './VerifiedOutlined'; -export { default as VerifiedRounded } from './VerifiedRounded'; -export { default as VerifiedSharp } from './VerifiedSharp'; -export { default as VerifiedTwoTone } from './VerifiedTwoTone'; -export { default as VerifiedUser } from './VerifiedUser'; -export { default as VerifiedUserOutlined } from './VerifiedUserOutlined'; -export { default as VerifiedUserRounded } from './VerifiedUserRounded'; -export { default as VerifiedUserSharp } from './VerifiedUserSharp'; -export { default as VerifiedUserTwoTone } from './VerifiedUserTwoTone'; -export { default as VerticalAlignBottom } from './VerticalAlignBottom'; -export { default as VerticalAlignBottomOutlined } from './VerticalAlignBottomOutlined'; -export { default as VerticalAlignBottomRounded } from './VerticalAlignBottomRounded'; -export { default as VerticalAlignBottomSharp } from './VerticalAlignBottomSharp'; -export { default as VerticalAlignBottomTwoTone } from './VerticalAlignBottomTwoTone'; -export { default as VerticalAlignCenter } from './VerticalAlignCenter'; -export { default as VerticalAlignCenterOutlined } from './VerticalAlignCenterOutlined'; -export { default as VerticalAlignCenterRounded } from './VerticalAlignCenterRounded'; -export { default as VerticalAlignCenterSharp } from './VerticalAlignCenterSharp'; -export { default as VerticalAlignCenterTwoTone } from './VerticalAlignCenterTwoTone'; -export { default as VerticalAlignTop } from './VerticalAlignTop'; -export { default as VerticalAlignTopOutlined } from './VerticalAlignTopOutlined'; -export { default as VerticalAlignTopRounded } from './VerticalAlignTopRounded'; -export { default as VerticalAlignTopSharp } from './VerticalAlignTopSharp'; -export { default as VerticalAlignTopTwoTone } from './VerticalAlignTopTwoTone'; -export { default as VerticalSplit } from './VerticalSplit'; -export { default as VerticalSplitOutlined } from './VerticalSplitOutlined'; -export { default as VerticalSplitRounded } from './VerticalSplitRounded'; -export { default as VerticalSplitSharp } from './VerticalSplitSharp'; -export { default as VerticalSplitTwoTone } from './VerticalSplitTwoTone'; -export { default as Vibration } from './Vibration'; -export { default as VibrationOutlined } from './VibrationOutlined'; -export { default as VibrationRounded } from './VibrationRounded'; -export { default as VibrationSharp } from './VibrationSharp'; -export { default as VibrationTwoTone } from './VibrationTwoTone'; -export { default as VideoCall } from './VideoCall'; -export { default as VideoCallOutlined } from './VideoCallOutlined'; -export { default as VideoCallRounded } from './VideoCallRounded'; -export { default as VideoCallSharp } from './VideoCallSharp'; -export { default as VideoCallTwoTone } from './VideoCallTwoTone'; -export { default as VideoCameraBack } from './VideoCameraBack'; -export { default as VideoCameraBackOutlined } from './VideoCameraBackOutlined'; -export { default as VideoCameraBackRounded } from './VideoCameraBackRounded'; -export { default as VideoCameraBackSharp } from './VideoCameraBackSharp'; -export { default as VideoCameraBackTwoTone } from './VideoCameraBackTwoTone'; -export { default as VideoCameraFront } from './VideoCameraFront'; -export { default as VideoCameraFrontOutlined } from './VideoCameraFrontOutlined'; -export { default as VideoCameraFrontRounded } from './VideoCameraFrontRounded'; -export { default as VideoCameraFrontSharp } from './VideoCameraFrontSharp'; -export { default as VideoCameraFrontTwoTone } from './VideoCameraFrontTwoTone'; -export { default as VideoLabel } from './VideoLabel'; -export { default as VideoLabelOutlined } from './VideoLabelOutlined'; -export { default as VideoLabelRounded } from './VideoLabelRounded'; -export { default as VideoLabelSharp } from './VideoLabelSharp'; -export { default as VideoLabelTwoTone } from './VideoLabelTwoTone'; -export { default as VideoLibrary } from './VideoLibrary'; -export { default as VideoLibraryOutlined } from './VideoLibraryOutlined'; -export { default as VideoLibraryRounded } from './VideoLibraryRounded'; -export { default as VideoLibrarySharp } from './VideoLibrarySharp'; -export { default as VideoLibraryTwoTone } from './VideoLibraryTwoTone'; -export { default as VideoSettings } from './VideoSettings'; -export { default as VideoSettingsOutlined } from './VideoSettingsOutlined'; -export { default as VideoSettingsRounded } from './VideoSettingsRounded'; -export { default as VideoSettingsSharp } from './VideoSettingsSharp'; -export { default as VideoSettingsTwoTone } from './VideoSettingsTwoTone'; -export { default as VideoStable } from './VideoStable'; -export { default as VideoStableOutlined } from './VideoStableOutlined'; -export { default as VideoStableRounded } from './VideoStableRounded'; -export { default as VideoStableSharp } from './VideoStableSharp'; -export { default as VideoStableTwoTone } from './VideoStableTwoTone'; -export { default as Videocam } from './Videocam'; -export { default as VideocamOff } from './VideocamOff'; -export { default as VideocamOffOutlined } from './VideocamOffOutlined'; -export { default as VideocamOffRounded } from './VideocamOffRounded'; -export { default as VideocamOffSharp } from './VideocamOffSharp'; -export { default as VideocamOffTwoTone } from './VideocamOffTwoTone'; -export { default as VideocamOutlined } from './VideocamOutlined'; -export { default as VideocamRounded } from './VideocamRounded'; -export { default as VideocamSharp } from './VideocamSharp'; -export { default as VideocamTwoTone } from './VideocamTwoTone'; -export { default as VideogameAsset } from './VideogameAsset'; -export { default as VideogameAssetOff } from './VideogameAssetOff'; -export { default as VideogameAssetOffOutlined } from './VideogameAssetOffOutlined'; -export { default as VideogameAssetOffRounded } from './VideogameAssetOffRounded'; -export { default as VideogameAssetOffSharp } from './VideogameAssetOffSharp'; -export { default as VideogameAssetOffTwoTone } from './VideogameAssetOffTwoTone'; -export { default as VideogameAssetOutlined } from './VideogameAssetOutlined'; -export { default as VideogameAssetRounded } from './VideogameAssetRounded'; -export { default as VideogameAssetSharp } from './VideogameAssetSharp'; -export { default as VideogameAssetTwoTone } from './VideogameAssetTwoTone'; -export { default as ViewAgenda } from './ViewAgenda'; -export { default as ViewAgendaOutlined } from './ViewAgendaOutlined'; -export { default as ViewAgendaRounded } from './ViewAgendaRounded'; -export { default as ViewAgendaSharp } from './ViewAgendaSharp'; -export { default as ViewAgendaTwoTone } from './ViewAgendaTwoTone'; -export { default as ViewArray } from './ViewArray'; -export { default as ViewArrayOutlined } from './ViewArrayOutlined'; -export { default as ViewArrayRounded } from './ViewArrayRounded'; -export { default as ViewArraySharp } from './ViewArraySharp'; -export { default as ViewArrayTwoTone } from './ViewArrayTwoTone'; -export { default as ViewCarousel } from './ViewCarousel'; -export { default as ViewCarouselOutlined } from './ViewCarouselOutlined'; -export { default as ViewCarouselRounded } from './ViewCarouselRounded'; -export { default as ViewCarouselSharp } from './ViewCarouselSharp'; -export { default as ViewCarouselTwoTone } from './ViewCarouselTwoTone'; -export { default as ViewColumn } from './ViewColumn'; -export { default as ViewColumnOutlined } from './ViewColumnOutlined'; -export { default as ViewColumnRounded } from './ViewColumnRounded'; -export { default as ViewColumnSharp } from './ViewColumnSharp'; -export { default as ViewColumnTwoTone } from './ViewColumnTwoTone'; -export { default as ViewComfy } from './ViewComfy'; -export { default as ViewComfyOutlined } from './ViewComfyOutlined'; -export { default as ViewComfyRounded } from './ViewComfyRounded'; -export { default as ViewComfySharp } from './ViewComfySharp'; -export { default as ViewComfyTwoTone } from './ViewComfyTwoTone'; -export { default as ViewCompact } from './ViewCompact'; -export { default as ViewCompactOutlined } from './ViewCompactOutlined'; -export { default as ViewCompactRounded } from './ViewCompactRounded'; -export { default as ViewCompactSharp } from './ViewCompactSharp'; -export { default as ViewCompactTwoTone } from './ViewCompactTwoTone'; -export { default as ViewDay } from './ViewDay'; -export { default as ViewDayOutlined } from './ViewDayOutlined'; -export { default as ViewDayRounded } from './ViewDayRounded'; -export { default as ViewDaySharp } from './ViewDaySharp'; -export { default as ViewDayTwoTone } from './ViewDayTwoTone'; -export { default as ViewHeadline } from './ViewHeadline'; -export { default as ViewHeadlineOutlined } from './ViewHeadlineOutlined'; -export { default as ViewHeadlineRounded } from './ViewHeadlineRounded'; -export { default as ViewHeadlineSharp } from './ViewHeadlineSharp'; -export { default as ViewHeadlineTwoTone } from './ViewHeadlineTwoTone'; -export { default as ViewInAr } from './ViewInAr'; -export { default as ViewInArOutlined } from './ViewInArOutlined'; -export { default as ViewInArRounded } from './ViewInArRounded'; -export { default as ViewInArSharp } from './ViewInArSharp'; -export { default as ViewInArTwoTone } from './ViewInArTwoTone'; -export { default as ViewList } from './ViewList'; -export { default as ViewListOutlined } from './ViewListOutlined'; -export { default as ViewListRounded } from './ViewListRounded'; -export { default as ViewListSharp } from './ViewListSharp'; -export { default as ViewListTwoTone } from './ViewListTwoTone'; -export { default as ViewModule } from './ViewModule'; -export { default as ViewModuleOutlined } from './ViewModuleOutlined'; -export { default as ViewModuleRounded } from './ViewModuleRounded'; -export { default as ViewModuleSharp } from './ViewModuleSharp'; -export { default as ViewModuleTwoTone } from './ViewModuleTwoTone'; -export { default as ViewQuilt } from './ViewQuilt'; -export { default as ViewQuiltOutlined } from './ViewQuiltOutlined'; -export { default as ViewQuiltRounded } from './ViewQuiltRounded'; -export { default as ViewQuiltSharp } from './ViewQuiltSharp'; -export { default as ViewQuiltTwoTone } from './ViewQuiltTwoTone'; -export { default as ViewSidebar } from './ViewSidebar'; -export { default as ViewSidebarOutlined } from './ViewSidebarOutlined'; -export { default as ViewSidebarRounded } from './ViewSidebarRounded'; -export { default as ViewSidebarSharp } from './ViewSidebarSharp'; -export { default as ViewSidebarTwoTone } from './ViewSidebarTwoTone'; -export { default as ViewStream } from './ViewStream'; -export { default as ViewStreamOutlined } from './ViewStreamOutlined'; -export { default as ViewStreamRounded } from './ViewStreamRounded'; -export { default as ViewStreamSharp } from './ViewStreamSharp'; -export { default as ViewStreamTwoTone } from './ViewStreamTwoTone'; -export { default as ViewWeek } from './ViewWeek'; -export { default as ViewWeekOutlined } from './ViewWeekOutlined'; -export { default as ViewWeekRounded } from './ViewWeekRounded'; -export { default as ViewWeekSharp } from './ViewWeekSharp'; -export { default as ViewWeekTwoTone } from './ViewWeekTwoTone'; -export { default as Vignette } from './Vignette'; -export { default as VignetteOutlined } from './VignetteOutlined'; -export { default as VignetteRounded } from './VignetteRounded'; -export { default as VignetteSharp } from './VignetteSharp'; -export { default as VignetteTwoTone } from './VignetteTwoTone'; -export { default as Villa } from './Villa'; -export { default as VillaOutlined } from './VillaOutlined'; -export { default as VillaRounded } from './VillaRounded'; -export { default as VillaSharp } from './VillaSharp'; -export { default as VillaTwoTone } from './VillaTwoTone'; -export { default as Visibility } from './Visibility'; -export { default as VisibilityOff } from './VisibilityOff'; -export { default as VisibilityOffOutlined } from './VisibilityOffOutlined'; -export { default as VisibilityOffRounded } from './VisibilityOffRounded'; -export { default as VisibilityOffSharp } from './VisibilityOffSharp'; -export { default as VisibilityOffTwoTone } from './VisibilityOffTwoTone'; -export { default as VisibilityOutlined } from './VisibilityOutlined'; -export { default as VisibilityRounded } from './VisibilityRounded'; -export { default as VisibilitySharp } from './VisibilitySharp'; -export { default as VisibilityTwoTone } from './VisibilityTwoTone'; -export { default as VoiceChat } from './VoiceChat'; -export { default as VoiceChatOutlined } from './VoiceChatOutlined'; -export { default as VoiceChatRounded } from './VoiceChatRounded'; -export { default as VoiceChatSharp } from './VoiceChatSharp'; -export { default as VoiceChatTwoTone } from './VoiceChatTwoTone'; -export { default as VoiceOverOff } from './VoiceOverOff'; -export { default as VoiceOverOffOutlined } from './VoiceOverOffOutlined'; -export { default as VoiceOverOffRounded } from './VoiceOverOffRounded'; -export { default as VoiceOverOffSharp } from './VoiceOverOffSharp'; -export { default as VoiceOverOffTwoTone } from './VoiceOverOffTwoTone'; -export { default as Voicemail } from './Voicemail'; -export { default as VoicemailOutlined } from './VoicemailOutlined'; -export { default as VoicemailRounded } from './VoicemailRounded'; -export { default as VoicemailSharp } from './VoicemailSharp'; -export { default as VoicemailTwoTone } from './VoicemailTwoTone'; -export { default as VolumeDown } from './VolumeDown'; -export { default as VolumeDownOutlined } from './VolumeDownOutlined'; -export { default as VolumeDownRounded } from './VolumeDownRounded'; -export { default as VolumeDownSharp } from './VolumeDownSharp'; -export { default as VolumeDownTwoTone } from './VolumeDownTwoTone'; -export { default as VolumeMute } from './VolumeMute'; -export { default as VolumeMuteOutlined } from './VolumeMuteOutlined'; -export { default as VolumeMuteRounded } from './VolumeMuteRounded'; -export { default as VolumeMuteSharp } from './VolumeMuteSharp'; -export { default as VolumeMuteTwoTone } from './VolumeMuteTwoTone'; -export { default as VolumeOff } from './VolumeOff'; -export { default as VolumeOffOutlined } from './VolumeOffOutlined'; -export { default as VolumeOffRounded } from './VolumeOffRounded'; -export { default as VolumeOffSharp } from './VolumeOffSharp'; -export { default as VolumeOffTwoTone } from './VolumeOffTwoTone'; -export { default as VolumeUp } from './VolumeUp'; -export { default as VolumeUpOutlined } from './VolumeUpOutlined'; -export { default as VolumeUpRounded } from './VolumeUpRounded'; -export { default as VolumeUpSharp } from './VolumeUpSharp'; -export { default as VolumeUpTwoTone } from './VolumeUpTwoTone'; -export { default as VolunteerActivism } from './VolunteerActivism'; -export { default as VolunteerActivismOutlined } from './VolunteerActivismOutlined'; -export { default as VolunteerActivismRounded } from './VolunteerActivismRounded'; -export { default as VolunteerActivismSharp } from './VolunteerActivismSharp'; -export { default as VolunteerActivismTwoTone } from './VolunteerActivismTwoTone'; -export { default as VpnKey } from './VpnKey'; -export { default as VpnKeyOutlined } from './VpnKeyOutlined'; -export { default as VpnKeyRounded } from './VpnKeyRounded'; -export { default as VpnKeySharp } from './VpnKeySharp'; -export { default as VpnKeyTwoTone } from './VpnKeyTwoTone'; -export { default as VpnLock } from './VpnLock'; -export { default as VpnLockOutlined } from './VpnLockOutlined'; -export { default as VpnLockRounded } from './VpnLockRounded'; -export { default as VpnLockSharp } from './VpnLockSharp'; -export { default as VpnLockTwoTone } from './VpnLockTwoTone'; -export { default as Vrpano } from './Vrpano'; -export { default as VrpanoOutlined } from './VrpanoOutlined'; -export { default as VrpanoRounded } from './VrpanoRounded'; -export { default as VrpanoSharp } from './VrpanoSharp'; -export { default as VrpanoTwoTone } from './VrpanoTwoTone'; -export { default as Wallpaper } from './Wallpaper'; -export { default as WallpaperOutlined } from './WallpaperOutlined'; -export { default as WallpaperRounded } from './WallpaperRounded'; -export { default as WallpaperSharp } from './WallpaperSharp'; -export { default as WallpaperTwoTone } from './WallpaperTwoTone'; -export { default as Warning } from './Warning'; -export { default as WarningAmber } from './WarningAmber'; -export { default as WarningAmberOutlined } from './WarningAmberOutlined'; -export { default as WarningAmberRounded } from './WarningAmberRounded'; -export { default as WarningAmberSharp } from './WarningAmberSharp'; -export { default as WarningAmberTwoTone } from './WarningAmberTwoTone'; -export { default as WarningOutlined } from './WarningOutlined'; -export { default as WarningRounded } from './WarningRounded'; -export { default as WarningSharp } from './WarningSharp'; -export { default as WarningTwoTone } from './WarningTwoTone'; -export { default as Wash } from './Wash'; -export { default as WashOutlined } from './WashOutlined'; -export { default as WashRounded } from './WashRounded'; -export { default as WashSharp } from './WashSharp'; -export { default as WashTwoTone } from './WashTwoTone'; -export { default as Watch } from './Watch'; -export { default as WatchLater } from './WatchLater'; -export { default as WatchLaterOutlined } from './WatchLaterOutlined'; -export { default as WatchLaterRounded } from './WatchLaterRounded'; -export { default as WatchLaterSharp } from './WatchLaterSharp'; -export { default as WatchLaterTwoTone } from './WatchLaterTwoTone'; -export { default as WatchOutlined } from './WatchOutlined'; -export { default as WatchRounded } from './WatchRounded'; -export { default as WatchSharp } from './WatchSharp'; -export { default as WatchTwoTone } from './WatchTwoTone'; -export { default as Water } from './Water'; -export { default as WaterDamage } from './WaterDamage'; -export { default as WaterDamageOutlined } from './WaterDamageOutlined'; -export { default as WaterDamageRounded } from './WaterDamageRounded'; -export { default as WaterDamageSharp } from './WaterDamageSharp'; -export { default as WaterDamageTwoTone } from './WaterDamageTwoTone'; -export { default as WaterOutlined } from './WaterOutlined'; -export { default as WaterRounded } from './WaterRounded'; -export { default as WaterSharp } from './WaterSharp'; -export { default as WaterTwoTone } from './WaterTwoTone'; -export { default as WaterfallChart } from './WaterfallChart'; -export { default as WaterfallChartOutlined } from './WaterfallChartOutlined'; -export { default as WaterfallChartRounded } from './WaterfallChartRounded'; -export { default as WaterfallChartSharp } from './WaterfallChartSharp'; -export { default as WaterfallChartTwoTone } from './WaterfallChartTwoTone'; -export { default as Waves } from './Waves'; -export { default as WavesOutlined } from './WavesOutlined'; -export { default as WavesRounded } from './WavesRounded'; -export { default as WavesSharp } from './WavesSharp'; -export { default as WavesTwoTone } from './WavesTwoTone'; -export { default as WbAuto } from './WbAuto'; -export { default as WbAutoOutlined } from './WbAutoOutlined'; -export { default as WbAutoRounded } from './WbAutoRounded'; -export { default as WbAutoSharp } from './WbAutoSharp'; -export { default as WbAutoTwoTone } from './WbAutoTwoTone'; -export { default as WbCloudy } from './WbCloudy'; -export { default as WbCloudyOutlined } from './WbCloudyOutlined'; -export { default as WbCloudyRounded } from './WbCloudyRounded'; -export { default as WbCloudySharp } from './WbCloudySharp'; -export { default as WbCloudyTwoTone } from './WbCloudyTwoTone'; -export { default as WbIncandescent } from './WbIncandescent'; -export { default as WbIncandescentOutlined } from './WbIncandescentOutlined'; -export { default as WbIncandescentRounded } from './WbIncandescentRounded'; -export { default as WbIncandescentSharp } from './WbIncandescentSharp'; -export { default as WbIncandescentTwoTone } from './WbIncandescentTwoTone'; -export { default as WbIridescent } from './WbIridescent'; -export { default as WbIridescentOutlined } from './WbIridescentOutlined'; -export { default as WbIridescentRounded } from './WbIridescentRounded'; -export { default as WbIridescentSharp } from './WbIridescentSharp'; -export { default as WbIridescentTwoTone } from './WbIridescentTwoTone'; -export { default as WbShade } from './WbShade'; -export { default as WbShadeOutlined } from './WbShadeOutlined'; -export { default as WbShadeRounded } from './WbShadeRounded'; -export { default as WbShadeSharp } from './WbShadeSharp'; -export { default as WbShadeTwoTone } from './WbShadeTwoTone'; -export { default as WbSunny } from './WbSunny'; -export { default as WbSunnyOutlined } from './WbSunnyOutlined'; -export { default as WbSunnyRounded } from './WbSunnyRounded'; -export { default as WbSunnySharp } from './WbSunnySharp'; -export { default as WbSunnyTwoTone } from './WbSunnyTwoTone'; -export { default as WbTwilight } from './WbTwilight'; -export { default as WbTwilightOutlined } from './WbTwilightOutlined'; -export { default as WbTwilightRounded } from './WbTwilightRounded'; -export { default as WbTwilightSharp } from './WbTwilightSharp'; -export { default as WbTwilightTwoTone } from './WbTwilightTwoTone'; -export { default as Wc } from './Wc'; -export { default as WcOutlined } from './WcOutlined'; -export { default as WcRounded } from './WcRounded'; -export { default as WcSharp } from './WcSharp'; -export { default as WcTwoTone } from './WcTwoTone'; -export { default as Web } from './Web'; -export { default as WebAsset } from './WebAsset'; -export { default as WebAssetOff } from './WebAssetOff'; -export { default as WebAssetOffOutlined } from './WebAssetOffOutlined'; -export { default as WebAssetOffRounded } from './WebAssetOffRounded'; -export { default as WebAssetOffSharp } from './WebAssetOffSharp'; -export { default as WebAssetOffTwoTone } from './WebAssetOffTwoTone'; -export { default as WebAssetOutlined } from './WebAssetOutlined'; -export { default as WebAssetRounded } from './WebAssetRounded'; -export { default as WebAssetSharp } from './WebAssetSharp'; -export { default as WebAssetTwoTone } from './WebAssetTwoTone'; -export { default as WebOutlined } from './WebOutlined'; -export { default as WebRounded } from './WebRounded'; -export { default as WebSharp } from './WebSharp'; -export { default as WebTwoTone } from './WebTwoTone'; -export { default as Weekend } from './Weekend'; -export { default as WeekendOutlined } from './WeekendOutlined'; -export { default as WeekendRounded } from './WeekendRounded'; -export { default as WeekendSharp } from './WeekendSharp'; -export { default as WeekendTwoTone } from './WeekendTwoTone'; -export { default as West } from './West'; -export { default as WestOutlined } from './WestOutlined'; -export { default as WestRounded } from './WestRounded'; -export { default as WestSharp } from './WestSharp'; -export { default as WestTwoTone } from './WestTwoTone'; -export { default as WhatsApp } from './WhatsApp'; -export { default as Whatshot } from './Whatshot'; -export { default as WhatshotOutlined } from './WhatshotOutlined'; -export { default as WhatshotRounded } from './WhatshotRounded'; -export { default as WhatshotSharp } from './WhatshotSharp'; -export { default as WhatshotTwoTone } from './WhatshotTwoTone'; -export { default as WheelchairPickup } from './WheelchairPickup'; -export { default as WheelchairPickupOutlined } from './WheelchairPickupOutlined'; -export { default as WheelchairPickupRounded } from './WheelchairPickupRounded'; -export { default as WheelchairPickupSharp } from './WheelchairPickupSharp'; -export { default as WheelchairPickupTwoTone } from './WheelchairPickupTwoTone'; -export { default as WhereToVote } from './WhereToVote'; -export { default as WhereToVoteOutlined } from './WhereToVoteOutlined'; -export { default as WhereToVoteRounded } from './WhereToVoteRounded'; -export { default as WhereToVoteSharp } from './WhereToVoteSharp'; -export { default as WhereToVoteTwoTone } from './WhereToVoteTwoTone'; -export { default as Widgets } from './Widgets'; -export { default as WidgetsOutlined } from './WidgetsOutlined'; -export { default as WidgetsRounded } from './WidgetsRounded'; -export { default as WidgetsSharp } from './WidgetsSharp'; -export { default as WidgetsTwoTone } from './WidgetsTwoTone'; -export { default as Wifi } from './Wifi'; -export { default as WifiCalling } from './WifiCalling'; -export { default as WifiCalling3 } from './WifiCalling3'; -export { default as WifiCalling3Outlined } from './WifiCalling3Outlined'; -export { default as WifiCalling3Rounded } from './WifiCalling3Rounded'; -export { default as WifiCalling3Sharp } from './WifiCalling3Sharp'; -export { default as WifiCalling3TwoTone } from './WifiCalling3TwoTone'; -export { default as WifiCallingOutlined } from './WifiCallingOutlined'; -export { default as WifiCallingRounded } from './WifiCallingRounded'; -export { default as WifiCallingSharp } from './WifiCallingSharp'; -export { default as WifiCallingTwoTone } from './WifiCallingTwoTone'; -export { default as WifiLock } from './WifiLock'; -export { default as WifiLockOutlined } from './WifiLockOutlined'; -export { default as WifiLockRounded } from './WifiLockRounded'; -export { default as WifiLockSharp } from './WifiLockSharp'; -export { default as WifiLockTwoTone } from './WifiLockTwoTone'; -export { default as WifiOff } from './WifiOff'; -export { default as WifiOffOutlined } from './WifiOffOutlined'; -export { default as WifiOffRounded } from './WifiOffRounded'; -export { default as WifiOffSharp } from './WifiOffSharp'; -export { default as WifiOffTwoTone } from './WifiOffTwoTone'; -export { default as WifiOutlined } from './WifiOutlined'; -export { default as WifiProtectedSetup } from './WifiProtectedSetup'; -export { default as WifiProtectedSetupOutlined } from './WifiProtectedSetupOutlined'; -export { default as WifiProtectedSetupRounded } from './WifiProtectedSetupRounded'; -export { default as WifiProtectedSetupSharp } from './WifiProtectedSetupSharp'; -export { default as WifiProtectedSetupTwoTone } from './WifiProtectedSetupTwoTone'; -export { default as WifiRounded } from './WifiRounded'; -export { default as WifiSharp } from './WifiSharp'; -export { default as WifiTethering } from './WifiTethering'; -export { default as WifiTetheringErrorRounded } from './WifiTetheringErrorRounded'; -export { default as WifiTetheringErrorRoundedOutlined } from './WifiTetheringErrorRoundedOutlined'; -export { default as WifiTetheringErrorRoundedRounded } from './WifiTetheringErrorRoundedRounded'; -export { default as WifiTetheringErrorRoundedSharp } from './WifiTetheringErrorRoundedSharp'; -export { default as WifiTetheringErrorRoundedTwoTone } from './WifiTetheringErrorRoundedTwoTone'; -export { default as WifiTetheringOff } from './WifiTetheringOff'; -export { default as WifiTetheringOffOutlined } from './WifiTetheringOffOutlined'; -export { default as WifiTetheringOffRounded } from './WifiTetheringOffRounded'; -export { default as WifiTetheringOffSharp } from './WifiTetheringOffSharp'; -export { default as WifiTetheringOffTwoTone } from './WifiTetheringOffTwoTone'; -export { default as WifiTetheringOutlined } from './WifiTetheringOutlined'; -export { default as WifiTetheringRounded } from './WifiTetheringRounded'; -export { default as WifiTetheringSharp } from './WifiTetheringSharp'; -export { default as WifiTetheringTwoTone } from './WifiTetheringTwoTone'; -export { default as WifiTwoTone } from './WifiTwoTone'; -export { default as Window } from './Window'; -export { default as WindowOutlined } from './WindowOutlined'; -export { default as WindowRounded } from './WindowRounded'; -export { default as WindowSharp } from './WindowSharp'; -export { default as WindowTwoTone } from './WindowTwoTone'; -export { default as WineBar } from './WineBar'; -export { default as WineBarOutlined } from './WineBarOutlined'; -export { default as WineBarRounded } from './WineBarRounded'; -export { default as WineBarSharp } from './WineBarSharp'; -export { default as WineBarTwoTone } from './WineBarTwoTone'; -export { default as Work } from './Work'; -export { default as WorkOff } from './WorkOff'; -export { default as WorkOffOutlined } from './WorkOffOutlined'; -export { default as WorkOffRounded } from './WorkOffRounded'; -export { default as WorkOffSharp } from './WorkOffSharp'; -export { default as WorkOffTwoTone } from './WorkOffTwoTone'; -export { default as WorkOutline } from './WorkOutline'; -export { default as WorkOutlineOutlined } from './WorkOutlineOutlined'; -export { default as WorkOutlineRounded } from './WorkOutlineRounded'; -export { default as WorkOutlineSharp } from './WorkOutlineSharp'; -export { default as WorkOutlineTwoTone } from './WorkOutlineTwoTone'; -export { default as WorkOutlined } from './WorkOutlined'; -export { default as WorkRounded } from './WorkRounded'; -export { default as WorkSharp } from './WorkSharp'; -export { default as WorkTwoTone } from './WorkTwoTone'; -export { default as Workspaces } from './Workspaces'; -export { default as WorkspacesOutlined } from './WorkspacesOutlined'; -export { default as WorkspacesRounded } from './WorkspacesRounded'; -export { default as WorkspacesSharp } from './WorkspacesSharp'; -export { default as WorkspacesTwoTone } from './WorkspacesTwoTone'; -export { default as WrapText } from './WrapText'; -export { default as WrapTextOutlined } from './WrapTextOutlined'; -export { default as WrapTextRounded } from './WrapTextRounded'; -export { default as WrapTextSharp } from './WrapTextSharp'; -export { default as WrapTextTwoTone } from './WrapTextTwoTone'; -export { default as WrongLocation } from './WrongLocation'; -export { default as WrongLocationOutlined } from './WrongLocationOutlined'; -export { default as WrongLocationRounded } from './WrongLocationRounded'; -export { default as WrongLocationSharp } from './WrongLocationSharp'; -export { default as WrongLocationTwoTone } from './WrongLocationTwoTone'; -export { default as Wysiwyg } from './Wysiwyg'; -export { default as WysiwygOutlined } from './WysiwygOutlined'; -export { default as WysiwygRounded } from './WysiwygRounded'; -export { default as WysiwygSharp } from './WysiwygSharp'; -export { default as WysiwygTwoTone } from './WysiwygTwoTone'; -export { default as Yard } from './Yard'; -export { default as YardOutlined } from './YardOutlined'; -export { default as YardRounded } from './YardRounded'; -export { default as YardSharp } from './YardSharp'; -export { default as YardTwoTone } from './YardTwoTone'; -export { default as YouTube } from './YouTube'; -export { default as YoutubeSearchedFor } from './YoutubeSearchedFor'; -export { default as YoutubeSearchedForOutlined } from './YoutubeSearchedForOutlined'; -export { default as YoutubeSearchedForRounded } from './YoutubeSearchedForRounded'; -export { default as YoutubeSearchedForSharp } from './YoutubeSearchedForSharp'; -export { default as YoutubeSearchedForTwoTone } from './YoutubeSearchedForTwoTone'; -export { default as ZoomIn } from './ZoomIn'; -export { default as ZoomInOutlined } from './ZoomInOutlined'; -export { default as ZoomInRounded } from './ZoomInRounded'; -export { default as ZoomInSharp } from './ZoomInSharp'; -export { default as ZoomInTwoTone } from './ZoomInTwoTone'; -export { default as ZoomOut } from './ZoomOut'; -export { default as ZoomOutMap } from './ZoomOutMap'; -export { default as ZoomOutMapOutlined } from './ZoomOutMapOutlined'; -export { default as ZoomOutMapRounded } from './ZoomOutMapRounded'; -export { default as ZoomOutMapSharp } from './ZoomOutMapSharp'; -export { default as ZoomOutMapTwoTone } from './ZoomOutMapTwoTone'; -export { default as ZoomOutOutlined } from './ZoomOutOutlined'; -export { default as ZoomOutRounded } from './ZoomOutRounded'; -export { default as ZoomOutSharp } from './ZoomOutSharp'; -export { default as ZoomOutTwoTone } from './ZoomOutTwoTone'; \ No newline at end of file +"use strict"; + +var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +Object.defineProperty(exports, "AcUnit", { + enumerable: true, + get: function () { + return _AcUnit.default; + } +}); +Object.defineProperty(exports, "AcUnitOutlined", { + enumerable: true, + get: function () { + return _AcUnitOutlined.default; + } +}); +Object.defineProperty(exports, "AcUnitRounded", { + enumerable: true, + get: function () { + return _AcUnitRounded.default; + } +}); +Object.defineProperty(exports, "AcUnitSharp", { + enumerable: true, + get: function () { + return _AcUnitSharp.default; + } +}); +Object.defineProperty(exports, "AcUnitTwoTone", { + enumerable: true, + get: function () { + return _AcUnitTwoTone.default; + } +}); +Object.defineProperty(exports, "AccessAlarm", { + enumerable: true, + get: function () { + return _AccessAlarm.default; + } +}); +Object.defineProperty(exports, "AccessAlarmOutlined", { + enumerable: true, + get: function () { + return _AccessAlarmOutlined.default; + } +}); +Object.defineProperty(exports, "AccessAlarmRounded", { + enumerable: true, + get: function () { + return _AccessAlarmRounded.default; + } +}); +Object.defineProperty(exports, "AccessAlarmSharp", { + enumerable: true, + get: function () { + return _AccessAlarmSharp.default; + } +}); +Object.defineProperty(exports, "AccessAlarmTwoTone", { + enumerable: true, + get: function () { + return _AccessAlarmTwoTone.default; + } +}); +Object.defineProperty(exports, "AccessAlarms", { + enumerable: true, + get: function () { + return _AccessAlarms.default; + } +}); +Object.defineProperty(exports, "AccessAlarmsOutlined", { + enumerable: true, + get: function () { + return _AccessAlarmsOutlined.default; + } +}); +Object.defineProperty(exports, "AccessAlarmsRounded", { + enumerable: true, + get: function () { + return _AccessAlarmsRounded.default; + } +}); +Object.defineProperty(exports, "AccessAlarmsSharp", { + enumerable: true, + get: function () { + return _AccessAlarmsSharp.default; + } +}); +Object.defineProperty(exports, "AccessAlarmsTwoTone", { + enumerable: true, + get: function () { + return _AccessAlarmsTwoTone.default; + } +}); +Object.defineProperty(exports, "AccessTime", { + enumerable: true, + get: function () { + return _AccessTime.default; + } +}); +Object.defineProperty(exports, "AccessTimeFilled", { + enumerable: true, + get: function () { + return _AccessTimeFilled.default; + } +}); +Object.defineProperty(exports, "AccessTimeFilledOutlined", { + enumerable: true, + get: function () { + return _AccessTimeFilledOutlined.default; + } +}); +Object.defineProperty(exports, "AccessTimeFilledRounded", { + enumerable: true, + get: function () { + return _AccessTimeFilledRounded.default; + } +}); +Object.defineProperty(exports, "AccessTimeFilledSharp", { + enumerable: true, + get: function () { + return _AccessTimeFilledSharp.default; + } +}); +Object.defineProperty(exports, "AccessTimeFilledTwoTone", { + enumerable: true, + get: function () { + return _AccessTimeFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "AccessTimeOutlined", { + enumerable: true, + get: function () { + return _AccessTimeOutlined.default; + } +}); +Object.defineProperty(exports, "AccessTimeRounded", { + enumerable: true, + get: function () { + return _AccessTimeRounded.default; + } +}); +Object.defineProperty(exports, "AccessTimeSharp", { + enumerable: true, + get: function () { + return _AccessTimeSharp.default; + } +}); +Object.defineProperty(exports, "AccessTimeTwoTone", { + enumerable: true, + get: function () { + return _AccessTimeTwoTone.default; + } +}); +Object.defineProperty(exports, "Accessibility", { + enumerable: true, + get: function () { + return _Accessibility.default; + } +}); +Object.defineProperty(exports, "AccessibilityNew", { + enumerable: true, + get: function () { + return _AccessibilityNew.default; + } +}); +Object.defineProperty(exports, "AccessibilityNewOutlined", { + enumerable: true, + get: function () { + return _AccessibilityNewOutlined.default; + } +}); +Object.defineProperty(exports, "AccessibilityNewRounded", { + enumerable: true, + get: function () { + return _AccessibilityNewRounded.default; + } +}); +Object.defineProperty(exports, "AccessibilityNewSharp", { + enumerable: true, + get: function () { + return _AccessibilityNewSharp.default; + } +}); +Object.defineProperty(exports, "AccessibilityNewTwoTone", { + enumerable: true, + get: function () { + return _AccessibilityNewTwoTone.default; + } +}); +Object.defineProperty(exports, "AccessibilityOutlined", { + enumerable: true, + get: function () { + return _AccessibilityOutlined.default; + } +}); +Object.defineProperty(exports, "AccessibilityRounded", { + enumerable: true, + get: function () { + return _AccessibilityRounded.default; + } +}); +Object.defineProperty(exports, "AccessibilitySharp", { + enumerable: true, + get: function () { + return _AccessibilitySharp.default; + } +}); +Object.defineProperty(exports, "AccessibilityTwoTone", { + enumerable: true, + get: function () { + return _AccessibilityTwoTone.default; + } +}); +Object.defineProperty(exports, "Accessible", { + enumerable: true, + get: function () { + return _Accessible.default; + } +}); +Object.defineProperty(exports, "AccessibleForward", { + enumerable: true, + get: function () { + return _AccessibleForward.default; + } +}); +Object.defineProperty(exports, "AccessibleForwardOutlined", { + enumerable: true, + get: function () { + return _AccessibleForwardOutlined.default; + } +}); +Object.defineProperty(exports, "AccessibleForwardRounded", { + enumerable: true, + get: function () { + return _AccessibleForwardRounded.default; + } +}); +Object.defineProperty(exports, "AccessibleForwardSharp", { + enumerable: true, + get: function () { + return _AccessibleForwardSharp.default; + } +}); +Object.defineProperty(exports, "AccessibleForwardTwoTone", { + enumerable: true, + get: function () { + return _AccessibleForwardTwoTone.default; + } +}); +Object.defineProperty(exports, "AccessibleOutlined", { + enumerable: true, + get: function () { + return _AccessibleOutlined.default; + } +}); +Object.defineProperty(exports, "AccessibleRounded", { + enumerable: true, + get: function () { + return _AccessibleRounded.default; + } +}); +Object.defineProperty(exports, "AccessibleSharp", { + enumerable: true, + get: function () { + return _AccessibleSharp.default; + } +}); +Object.defineProperty(exports, "AccessibleTwoTone", { + enumerable: true, + get: function () { + return _AccessibleTwoTone.default; + } +}); +Object.defineProperty(exports, "AccountBalance", { + enumerable: true, + get: function () { + return _AccountBalance.default; + } +}); +Object.defineProperty(exports, "AccountBalanceOutlined", { + enumerable: true, + get: function () { + return _AccountBalanceOutlined.default; + } +}); +Object.defineProperty(exports, "AccountBalanceRounded", { + enumerable: true, + get: function () { + return _AccountBalanceRounded.default; + } +}); +Object.defineProperty(exports, "AccountBalanceSharp", { + enumerable: true, + get: function () { + return _AccountBalanceSharp.default; + } +}); +Object.defineProperty(exports, "AccountBalanceTwoTone", { + enumerable: true, + get: function () { + return _AccountBalanceTwoTone.default; + } +}); +Object.defineProperty(exports, "AccountBalanceWallet", { + enumerable: true, + get: function () { + return _AccountBalanceWallet.default; + } +}); +Object.defineProperty(exports, "AccountBalanceWalletOutlined", { + enumerable: true, + get: function () { + return _AccountBalanceWalletOutlined.default; + } +}); +Object.defineProperty(exports, "AccountBalanceWalletRounded", { + enumerable: true, + get: function () { + return _AccountBalanceWalletRounded.default; + } +}); +Object.defineProperty(exports, "AccountBalanceWalletSharp", { + enumerable: true, + get: function () { + return _AccountBalanceWalletSharp.default; + } +}); +Object.defineProperty(exports, "AccountBalanceWalletTwoTone", { + enumerable: true, + get: function () { + return _AccountBalanceWalletTwoTone.default; + } +}); +Object.defineProperty(exports, "AccountBox", { + enumerable: true, + get: function () { + return _AccountBox.default; + } +}); +Object.defineProperty(exports, "AccountBoxOutlined", { + enumerable: true, + get: function () { + return _AccountBoxOutlined.default; + } +}); +Object.defineProperty(exports, "AccountBoxRounded", { + enumerable: true, + get: function () { + return _AccountBoxRounded.default; + } +}); +Object.defineProperty(exports, "AccountBoxSharp", { + enumerable: true, + get: function () { + return _AccountBoxSharp.default; + } +}); +Object.defineProperty(exports, "AccountBoxTwoTone", { + enumerable: true, + get: function () { + return _AccountBoxTwoTone.default; + } +}); +Object.defineProperty(exports, "AccountCircle", { + enumerable: true, + get: function () { + return _AccountCircle.default; + } +}); +Object.defineProperty(exports, "AccountCircleOutlined", { + enumerable: true, + get: function () { + return _AccountCircleOutlined.default; + } +}); +Object.defineProperty(exports, "AccountCircleRounded", { + enumerable: true, + get: function () { + return _AccountCircleRounded.default; + } +}); +Object.defineProperty(exports, "AccountCircleSharp", { + enumerable: true, + get: function () { + return _AccountCircleSharp.default; + } +}); +Object.defineProperty(exports, "AccountCircleTwoTone", { + enumerable: true, + get: function () { + return _AccountCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "AccountTree", { + enumerable: true, + get: function () { + return _AccountTree.default; + } +}); +Object.defineProperty(exports, "AccountTreeOutlined", { + enumerable: true, + get: function () { + return _AccountTreeOutlined.default; + } +}); +Object.defineProperty(exports, "AccountTreeRounded", { + enumerable: true, + get: function () { + return _AccountTreeRounded.default; + } +}); +Object.defineProperty(exports, "AccountTreeSharp", { + enumerable: true, + get: function () { + return _AccountTreeSharp.default; + } +}); +Object.defineProperty(exports, "AccountTreeTwoTone", { + enumerable: true, + get: function () { + return _AccountTreeTwoTone.default; + } +}); +Object.defineProperty(exports, "AdUnits", { + enumerable: true, + get: function () { + return _AdUnits.default; + } +}); +Object.defineProperty(exports, "AdUnitsOutlined", { + enumerable: true, + get: function () { + return _AdUnitsOutlined.default; + } +}); +Object.defineProperty(exports, "AdUnitsRounded", { + enumerable: true, + get: function () { + return _AdUnitsRounded.default; + } +}); +Object.defineProperty(exports, "AdUnitsSharp", { + enumerable: true, + get: function () { + return _AdUnitsSharp.default; + } +}); +Object.defineProperty(exports, "AdUnitsTwoTone", { + enumerable: true, + get: function () { + return _AdUnitsTwoTone.default; + } +}); +Object.defineProperty(exports, "Adb", { + enumerable: true, + get: function () { + return _Adb.default; + } +}); +Object.defineProperty(exports, "AdbOutlined", { + enumerable: true, + get: function () { + return _AdbOutlined.default; + } +}); +Object.defineProperty(exports, "AdbRounded", { + enumerable: true, + get: function () { + return _AdbRounded.default; + } +}); +Object.defineProperty(exports, "AdbSharp", { + enumerable: true, + get: function () { + return _AdbSharp.default; + } +}); +Object.defineProperty(exports, "AdbTwoTone", { + enumerable: true, + get: function () { + return _AdbTwoTone.default; + } +}); +Object.defineProperty(exports, "Add", { + enumerable: true, + get: function () { + return _Add.default; + } +}); +Object.defineProperty(exports, "AddAPhoto", { + enumerable: true, + get: function () { + return _AddAPhoto.default; + } +}); +Object.defineProperty(exports, "AddAPhotoOutlined", { + enumerable: true, + get: function () { + return _AddAPhotoOutlined.default; + } +}); +Object.defineProperty(exports, "AddAPhotoRounded", { + enumerable: true, + get: function () { + return _AddAPhotoRounded.default; + } +}); +Object.defineProperty(exports, "AddAPhotoSharp", { + enumerable: true, + get: function () { + return _AddAPhotoSharp.default; + } +}); +Object.defineProperty(exports, "AddAPhotoTwoTone", { + enumerable: true, + get: function () { + return _AddAPhotoTwoTone.default; + } +}); +Object.defineProperty(exports, "AddAlarm", { + enumerable: true, + get: function () { + return _AddAlarm.default; + } +}); +Object.defineProperty(exports, "AddAlarmOutlined", { + enumerable: true, + get: function () { + return _AddAlarmOutlined.default; + } +}); +Object.defineProperty(exports, "AddAlarmRounded", { + enumerable: true, + get: function () { + return _AddAlarmRounded.default; + } +}); +Object.defineProperty(exports, "AddAlarmSharp", { + enumerable: true, + get: function () { + return _AddAlarmSharp.default; + } +}); +Object.defineProperty(exports, "AddAlarmTwoTone", { + enumerable: true, + get: function () { + return _AddAlarmTwoTone.default; + } +}); +Object.defineProperty(exports, "AddAlert", { + enumerable: true, + get: function () { + return _AddAlert.default; + } +}); +Object.defineProperty(exports, "AddAlertOutlined", { + enumerable: true, + get: function () { + return _AddAlertOutlined.default; + } +}); +Object.defineProperty(exports, "AddAlertRounded", { + enumerable: true, + get: function () { + return _AddAlertRounded.default; + } +}); +Object.defineProperty(exports, "AddAlertSharp", { + enumerable: true, + get: function () { + return _AddAlertSharp.default; + } +}); +Object.defineProperty(exports, "AddAlertTwoTone", { + enumerable: true, + get: function () { + return _AddAlertTwoTone.default; + } +}); +Object.defineProperty(exports, "AddBox", { + enumerable: true, + get: function () { + return _AddBox.default; + } +}); +Object.defineProperty(exports, "AddBoxOutlined", { + enumerable: true, + get: function () { + return _AddBoxOutlined.default; + } +}); +Object.defineProperty(exports, "AddBoxRounded", { + enumerable: true, + get: function () { + return _AddBoxRounded.default; + } +}); +Object.defineProperty(exports, "AddBoxSharp", { + enumerable: true, + get: function () { + return _AddBoxSharp.default; + } +}); +Object.defineProperty(exports, "AddBoxTwoTone", { + enumerable: true, + get: function () { + return _AddBoxTwoTone.default; + } +}); +Object.defineProperty(exports, "AddBusiness", { + enumerable: true, + get: function () { + return _AddBusiness.default; + } +}); +Object.defineProperty(exports, "AddBusinessOutlined", { + enumerable: true, + get: function () { + return _AddBusinessOutlined.default; + } +}); +Object.defineProperty(exports, "AddBusinessRounded", { + enumerable: true, + get: function () { + return _AddBusinessRounded.default; + } +}); +Object.defineProperty(exports, "AddBusinessSharp", { + enumerable: true, + get: function () { + return _AddBusinessSharp.default; + } +}); +Object.defineProperty(exports, "AddBusinessTwoTone", { + enumerable: true, + get: function () { + return _AddBusinessTwoTone.default; + } +}); +Object.defineProperty(exports, "AddCircle", { + enumerable: true, + get: function () { + return _AddCircle.default; + } +}); +Object.defineProperty(exports, "AddCircleOutline", { + enumerable: true, + get: function () { + return _AddCircleOutline.default; + } +}); +Object.defineProperty(exports, "AddCircleOutlineOutlined", { + enumerable: true, + get: function () { + return _AddCircleOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "AddCircleOutlineRounded", { + enumerable: true, + get: function () { + return _AddCircleOutlineRounded.default; + } +}); +Object.defineProperty(exports, "AddCircleOutlineSharp", { + enumerable: true, + get: function () { + return _AddCircleOutlineSharp.default; + } +}); +Object.defineProperty(exports, "AddCircleOutlineTwoTone", { + enumerable: true, + get: function () { + return _AddCircleOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "AddCircleOutlined", { + enumerable: true, + get: function () { + return _AddCircleOutlined.default; + } +}); +Object.defineProperty(exports, "AddCircleRounded", { + enumerable: true, + get: function () { + return _AddCircleRounded.default; + } +}); +Object.defineProperty(exports, "AddCircleSharp", { + enumerable: true, + get: function () { + return _AddCircleSharp.default; + } +}); +Object.defineProperty(exports, "AddCircleTwoTone", { + enumerable: true, + get: function () { + return _AddCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "AddComment", { + enumerable: true, + get: function () { + return _AddComment.default; + } +}); +Object.defineProperty(exports, "AddCommentOutlined", { + enumerable: true, + get: function () { + return _AddCommentOutlined.default; + } +}); +Object.defineProperty(exports, "AddCommentRounded", { + enumerable: true, + get: function () { + return _AddCommentRounded.default; + } +}); +Object.defineProperty(exports, "AddCommentSharp", { + enumerable: true, + get: function () { + return _AddCommentSharp.default; + } +}); +Object.defineProperty(exports, "AddCommentTwoTone", { + enumerable: true, + get: function () { + return _AddCommentTwoTone.default; + } +}); +Object.defineProperty(exports, "AddIcCall", { + enumerable: true, + get: function () { + return _AddIcCall.default; + } +}); +Object.defineProperty(exports, "AddIcCallOutlined", { + enumerable: true, + get: function () { + return _AddIcCallOutlined.default; + } +}); +Object.defineProperty(exports, "AddIcCallRounded", { + enumerable: true, + get: function () { + return _AddIcCallRounded.default; + } +}); +Object.defineProperty(exports, "AddIcCallSharp", { + enumerable: true, + get: function () { + return _AddIcCallSharp.default; + } +}); +Object.defineProperty(exports, "AddIcCallTwoTone", { + enumerable: true, + get: function () { + return _AddIcCallTwoTone.default; + } +}); +Object.defineProperty(exports, "AddLink", { + enumerable: true, + get: function () { + return _AddLink.default; + } +}); +Object.defineProperty(exports, "AddLinkOutlined", { + enumerable: true, + get: function () { + return _AddLinkOutlined.default; + } +}); +Object.defineProperty(exports, "AddLinkRounded", { + enumerable: true, + get: function () { + return _AddLinkRounded.default; + } +}); +Object.defineProperty(exports, "AddLinkSharp", { + enumerable: true, + get: function () { + return _AddLinkSharp.default; + } +}); +Object.defineProperty(exports, "AddLinkTwoTone", { + enumerable: true, + get: function () { + return _AddLinkTwoTone.default; + } +}); +Object.defineProperty(exports, "AddLocation", { + enumerable: true, + get: function () { + return _AddLocation.default; + } +}); +Object.defineProperty(exports, "AddLocationAlt", { + enumerable: true, + get: function () { + return _AddLocationAlt.default; + } +}); +Object.defineProperty(exports, "AddLocationAltOutlined", { + enumerable: true, + get: function () { + return _AddLocationAltOutlined.default; + } +}); +Object.defineProperty(exports, "AddLocationAltRounded", { + enumerable: true, + get: function () { + return _AddLocationAltRounded.default; + } +}); +Object.defineProperty(exports, "AddLocationAltSharp", { + enumerable: true, + get: function () { + return _AddLocationAltSharp.default; + } +}); +Object.defineProperty(exports, "AddLocationAltTwoTone", { + enumerable: true, + get: function () { + return _AddLocationAltTwoTone.default; + } +}); +Object.defineProperty(exports, "AddLocationOutlined", { + enumerable: true, + get: function () { + return _AddLocationOutlined.default; + } +}); +Object.defineProperty(exports, "AddLocationRounded", { + enumerable: true, + get: function () { + return _AddLocationRounded.default; + } +}); +Object.defineProperty(exports, "AddLocationSharp", { + enumerable: true, + get: function () { + return _AddLocationSharp.default; + } +}); +Object.defineProperty(exports, "AddLocationTwoTone", { + enumerable: true, + get: function () { + return _AddLocationTwoTone.default; + } +}); +Object.defineProperty(exports, "AddModerator", { + enumerable: true, + get: function () { + return _AddModerator.default; + } +}); +Object.defineProperty(exports, "AddModeratorOutlined", { + enumerable: true, + get: function () { + return _AddModeratorOutlined.default; + } +}); +Object.defineProperty(exports, "AddModeratorRounded", { + enumerable: true, + get: function () { + return _AddModeratorRounded.default; + } +}); +Object.defineProperty(exports, "AddModeratorSharp", { + enumerable: true, + get: function () { + return _AddModeratorSharp.default; + } +}); +Object.defineProperty(exports, "AddModeratorTwoTone", { + enumerable: true, + get: function () { + return _AddModeratorTwoTone.default; + } +}); +Object.defineProperty(exports, "AddOutlined", { + enumerable: true, + get: function () { + return _AddOutlined.default; + } +}); +Object.defineProperty(exports, "AddPhotoAlternate", { + enumerable: true, + get: function () { + return _AddPhotoAlternate.default; + } +}); +Object.defineProperty(exports, "AddPhotoAlternateOutlined", { + enumerable: true, + get: function () { + return _AddPhotoAlternateOutlined.default; + } +}); +Object.defineProperty(exports, "AddPhotoAlternateRounded", { + enumerable: true, + get: function () { + return _AddPhotoAlternateRounded.default; + } +}); +Object.defineProperty(exports, "AddPhotoAlternateSharp", { + enumerable: true, + get: function () { + return _AddPhotoAlternateSharp.default; + } +}); +Object.defineProperty(exports, "AddPhotoAlternateTwoTone", { + enumerable: true, + get: function () { + return _AddPhotoAlternateTwoTone.default; + } +}); +Object.defineProperty(exports, "AddReaction", { + enumerable: true, + get: function () { + return _AddReaction.default; + } +}); +Object.defineProperty(exports, "AddReactionOutlined", { + enumerable: true, + get: function () { + return _AddReactionOutlined.default; + } +}); +Object.defineProperty(exports, "AddReactionRounded", { + enumerable: true, + get: function () { + return _AddReactionRounded.default; + } +}); +Object.defineProperty(exports, "AddReactionSharp", { + enumerable: true, + get: function () { + return _AddReactionSharp.default; + } +}); +Object.defineProperty(exports, "AddReactionTwoTone", { + enumerable: true, + get: function () { + return _AddReactionTwoTone.default; + } +}); +Object.defineProperty(exports, "AddRoad", { + enumerable: true, + get: function () { + return _AddRoad.default; + } +}); +Object.defineProperty(exports, "AddRoadOutlined", { + enumerable: true, + get: function () { + return _AddRoadOutlined.default; + } +}); +Object.defineProperty(exports, "AddRoadRounded", { + enumerable: true, + get: function () { + return _AddRoadRounded.default; + } +}); +Object.defineProperty(exports, "AddRoadSharp", { + enumerable: true, + get: function () { + return _AddRoadSharp.default; + } +}); +Object.defineProperty(exports, "AddRoadTwoTone", { + enumerable: true, + get: function () { + return _AddRoadTwoTone.default; + } +}); +Object.defineProperty(exports, "AddRounded", { + enumerable: true, + get: function () { + return _AddRounded.default; + } +}); +Object.defineProperty(exports, "AddSharp", { + enumerable: true, + get: function () { + return _AddSharp.default; + } +}); +Object.defineProperty(exports, "AddShoppingCart", { + enumerable: true, + get: function () { + return _AddShoppingCart.default; + } +}); +Object.defineProperty(exports, "AddShoppingCartOutlined", { + enumerable: true, + get: function () { + return _AddShoppingCartOutlined.default; + } +}); +Object.defineProperty(exports, "AddShoppingCartRounded", { + enumerable: true, + get: function () { + return _AddShoppingCartRounded.default; + } +}); +Object.defineProperty(exports, "AddShoppingCartSharp", { + enumerable: true, + get: function () { + return _AddShoppingCartSharp.default; + } +}); +Object.defineProperty(exports, "AddShoppingCartTwoTone", { + enumerable: true, + get: function () { + return _AddShoppingCartTwoTone.default; + } +}); +Object.defineProperty(exports, "AddTask", { + enumerable: true, + get: function () { + return _AddTask.default; + } +}); +Object.defineProperty(exports, "AddTaskOutlined", { + enumerable: true, + get: function () { + return _AddTaskOutlined.default; + } +}); +Object.defineProperty(exports, "AddTaskRounded", { + enumerable: true, + get: function () { + return _AddTaskRounded.default; + } +}); +Object.defineProperty(exports, "AddTaskSharp", { + enumerable: true, + get: function () { + return _AddTaskSharp.default; + } +}); +Object.defineProperty(exports, "AddTaskTwoTone", { + enumerable: true, + get: function () { + return _AddTaskTwoTone.default; + } +}); +Object.defineProperty(exports, "AddToDrive", { + enumerable: true, + get: function () { + return _AddToDrive.default; + } +}); +Object.defineProperty(exports, "AddToDriveOutlined", { + enumerable: true, + get: function () { + return _AddToDriveOutlined.default; + } +}); +Object.defineProperty(exports, "AddToDriveRounded", { + enumerable: true, + get: function () { + return _AddToDriveRounded.default; + } +}); +Object.defineProperty(exports, "AddToDriveSharp", { + enumerable: true, + get: function () { + return _AddToDriveSharp.default; + } +}); +Object.defineProperty(exports, "AddToDriveTwoTone", { + enumerable: true, + get: function () { + return _AddToDriveTwoTone.default; + } +}); +Object.defineProperty(exports, "AddToHomeScreen", { + enumerable: true, + get: function () { + return _AddToHomeScreen.default; + } +}); +Object.defineProperty(exports, "AddToHomeScreenOutlined", { + enumerable: true, + get: function () { + return _AddToHomeScreenOutlined.default; + } +}); +Object.defineProperty(exports, "AddToHomeScreenRounded", { + enumerable: true, + get: function () { + return _AddToHomeScreenRounded.default; + } +}); +Object.defineProperty(exports, "AddToHomeScreenSharp", { + enumerable: true, + get: function () { + return _AddToHomeScreenSharp.default; + } +}); +Object.defineProperty(exports, "AddToHomeScreenTwoTone", { + enumerable: true, + get: function () { + return _AddToHomeScreenTwoTone.default; + } +}); +Object.defineProperty(exports, "AddToPhotos", { + enumerable: true, + get: function () { + return _AddToPhotos.default; + } +}); +Object.defineProperty(exports, "AddToPhotosOutlined", { + enumerable: true, + get: function () { + return _AddToPhotosOutlined.default; + } +}); +Object.defineProperty(exports, "AddToPhotosRounded", { + enumerable: true, + get: function () { + return _AddToPhotosRounded.default; + } +}); +Object.defineProperty(exports, "AddToPhotosSharp", { + enumerable: true, + get: function () { + return _AddToPhotosSharp.default; + } +}); +Object.defineProperty(exports, "AddToPhotosTwoTone", { + enumerable: true, + get: function () { + return _AddToPhotosTwoTone.default; + } +}); +Object.defineProperty(exports, "AddToQueue", { + enumerable: true, + get: function () { + return _AddToQueue.default; + } +}); +Object.defineProperty(exports, "AddToQueueOutlined", { + enumerable: true, + get: function () { + return _AddToQueueOutlined.default; + } +}); +Object.defineProperty(exports, "AddToQueueRounded", { + enumerable: true, + get: function () { + return _AddToQueueRounded.default; + } +}); +Object.defineProperty(exports, "AddToQueueSharp", { + enumerable: true, + get: function () { + return _AddToQueueSharp.default; + } +}); +Object.defineProperty(exports, "AddToQueueTwoTone", { + enumerable: true, + get: function () { + return _AddToQueueTwoTone.default; + } +}); +Object.defineProperty(exports, "AddTwoTone", { + enumerable: true, + get: function () { + return _AddTwoTone.default; + } +}); +Object.defineProperty(exports, "Addchart", { + enumerable: true, + get: function () { + return _Addchart.default; + } +}); +Object.defineProperty(exports, "AddchartOutlined", { + enumerable: true, + get: function () { + return _AddchartOutlined.default; + } +}); +Object.defineProperty(exports, "AddchartRounded", { + enumerable: true, + get: function () { + return _AddchartRounded.default; + } +}); +Object.defineProperty(exports, "AddchartSharp", { + enumerable: true, + get: function () { + return _AddchartSharp.default; + } +}); +Object.defineProperty(exports, "AddchartTwoTone", { + enumerable: true, + get: function () { + return _AddchartTwoTone.default; + } +}); +Object.defineProperty(exports, "Adjust", { + enumerable: true, + get: function () { + return _Adjust.default; + } +}); +Object.defineProperty(exports, "AdjustOutlined", { + enumerable: true, + get: function () { + return _AdjustOutlined.default; + } +}); +Object.defineProperty(exports, "AdjustRounded", { + enumerable: true, + get: function () { + return _AdjustRounded.default; + } +}); +Object.defineProperty(exports, "AdjustSharp", { + enumerable: true, + get: function () { + return _AdjustSharp.default; + } +}); +Object.defineProperty(exports, "AdjustTwoTone", { + enumerable: true, + get: function () { + return _AdjustTwoTone.default; + } +}); +Object.defineProperty(exports, "AdminPanelSettings", { + enumerable: true, + get: function () { + return _AdminPanelSettings.default; + } +}); +Object.defineProperty(exports, "AdminPanelSettingsOutlined", { + enumerable: true, + get: function () { + return _AdminPanelSettingsOutlined.default; + } +}); +Object.defineProperty(exports, "AdminPanelSettingsRounded", { + enumerable: true, + get: function () { + return _AdminPanelSettingsRounded.default; + } +}); +Object.defineProperty(exports, "AdminPanelSettingsSharp", { + enumerable: true, + get: function () { + return _AdminPanelSettingsSharp.default; + } +}); +Object.defineProperty(exports, "AdminPanelSettingsTwoTone", { + enumerable: true, + get: function () { + return _AdminPanelSettingsTwoTone.default; + } +}); +Object.defineProperty(exports, "Agriculture", { + enumerable: true, + get: function () { + return _Agriculture.default; + } +}); +Object.defineProperty(exports, "AgricultureOutlined", { + enumerable: true, + get: function () { + return _AgricultureOutlined.default; + } +}); +Object.defineProperty(exports, "AgricultureRounded", { + enumerable: true, + get: function () { + return _AgricultureRounded.default; + } +}); +Object.defineProperty(exports, "AgricultureSharp", { + enumerable: true, + get: function () { + return _AgricultureSharp.default; + } +}); +Object.defineProperty(exports, "AgricultureTwoTone", { + enumerable: true, + get: function () { + return _AgricultureTwoTone.default; + } +}); +Object.defineProperty(exports, "Air", { + enumerable: true, + get: function () { + return _Air.default; + } +}); +Object.defineProperty(exports, "AirOutlined", { + enumerable: true, + get: function () { + return _AirOutlined.default; + } +}); +Object.defineProperty(exports, "AirRounded", { + enumerable: true, + get: function () { + return _AirRounded.default; + } +}); +Object.defineProperty(exports, "AirSharp", { + enumerable: true, + get: function () { + return _AirSharp.default; + } +}); +Object.defineProperty(exports, "AirTwoTone", { + enumerable: true, + get: function () { + return _AirTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlat", { + enumerable: true, + get: function () { + return _AirlineSeatFlat.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatAngled", { + enumerable: true, + get: function () { + return _AirlineSeatFlatAngled.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatAngledOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatFlatAngledOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatAngledRounded", { + enumerable: true, + get: function () { + return _AirlineSeatFlatAngledRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatAngledSharp", { + enumerable: true, + get: function () { + return _AirlineSeatFlatAngledSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatAngledTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatFlatAngledTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatFlatOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatRounded", { + enumerable: true, + get: function () { + return _AirlineSeatFlatRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatSharp", { + enumerable: true, + get: function () { + return _AirlineSeatFlatSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatFlatTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatFlatTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatIndividualSuite", { + enumerable: true, + get: function () { + return _AirlineSeatIndividualSuite.default; + } +}); +Object.defineProperty(exports, "AirlineSeatIndividualSuiteOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatIndividualSuiteOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatIndividualSuiteRounded", { + enumerable: true, + get: function () { + return _AirlineSeatIndividualSuiteRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatIndividualSuiteSharp", { + enumerable: true, + get: function () { + return _AirlineSeatIndividualSuiteSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatIndividualSuiteTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatIndividualSuiteTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomExtra", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomExtra.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomExtraOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomExtraOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomExtraRounded", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomExtraRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomExtraSharp", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomExtraSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomExtraTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomExtraTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomNormal", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomNormal.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomNormalOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomNormalOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomNormalRounded", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomNormalRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomNormalSharp", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomNormalSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomNormalTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomNormalTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomReduced", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomReduced.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomReducedOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomReducedOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomReducedRounded", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomReducedRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomReducedSharp", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomReducedSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatLegroomReducedTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatLegroomReducedTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineExtra", { + enumerable: true, + get: function () { + return _AirlineSeatReclineExtra.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineExtraOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatReclineExtraOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineExtraRounded", { + enumerable: true, + get: function () { + return _AirlineSeatReclineExtraRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineExtraSharp", { + enumerable: true, + get: function () { + return _AirlineSeatReclineExtraSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineExtraTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatReclineExtraTwoTone.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineNormal", { + enumerable: true, + get: function () { + return _AirlineSeatReclineNormal.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineNormalOutlined", { + enumerable: true, + get: function () { + return _AirlineSeatReclineNormalOutlined.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineNormalRounded", { + enumerable: true, + get: function () { + return _AirlineSeatReclineNormalRounded.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineNormalSharp", { + enumerable: true, + get: function () { + return _AirlineSeatReclineNormalSharp.default; + } +}); +Object.defineProperty(exports, "AirlineSeatReclineNormalTwoTone", { + enumerable: true, + get: function () { + return _AirlineSeatReclineNormalTwoTone.default; + } +}); +Object.defineProperty(exports, "AirplaneTicket", { + enumerable: true, + get: function () { + return _AirplaneTicket.default; + } +}); +Object.defineProperty(exports, "AirplaneTicketOutlined", { + enumerable: true, + get: function () { + return _AirplaneTicketOutlined.default; + } +}); +Object.defineProperty(exports, "AirplaneTicketRounded", { + enumerable: true, + get: function () { + return _AirplaneTicketRounded.default; + } +}); +Object.defineProperty(exports, "AirplaneTicketSharp", { + enumerable: true, + get: function () { + return _AirplaneTicketSharp.default; + } +}); +Object.defineProperty(exports, "AirplaneTicketTwoTone", { + enumerable: true, + get: function () { + return _AirplaneTicketTwoTone.default; + } +}); +Object.defineProperty(exports, "AirplanemodeActive", { + enumerable: true, + get: function () { + return _AirplanemodeActive.default; + } +}); +Object.defineProperty(exports, "AirplanemodeActiveOutlined", { + enumerable: true, + get: function () { + return _AirplanemodeActiveOutlined.default; + } +}); +Object.defineProperty(exports, "AirplanemodeActiveRounded", { + enumerable: true, + get: function () { + return _AirplanemodeActiveRounded.default; + } +}); +Object.defineProperty(exports, "AirplanemodeActiveSharp", { + enumerable: true, + get: function () { + return _AirplanemodeActiveSharp.default; + } +}); +Object.defineProperty(exports, "AirplanemodeActiveTwoTone", { + enumerable: true, + get: function () { + return _AirplanemodeActiveTwoTone.default; + } +}); +Object.defineProperty(exports, "AirplanemodeInactive", { + enumerable: true, + get: function () { + return _AirplanemodeInactive.default; + } +}); +Object.defineProperty(exports, "AirplanemodeInactiveOutlined", { + enumerable: true, + get: function () { + return _AirplanemodeInactiveOutlined.default; + } +}); +Object.defineProperty(exports, "AirplanemodeInactiveRounded", { + enumerable: true, + get: function () { + return _AirplanemodeInactiveRounded.default; + } +}); +Object.defineProperty(exports, "AirplanemodeInactiveSharp", { + enumerable: true, + get: function () { + return _AirplanemodeInactiveSharp.default; + } +}); +Object.defineProperty(exports, "AirplanemodeInactiveTwoTone", { + enumerable: true, + get: function () { + return _AirplanemodeInactiveTwoTone.default; + } +}); +Object.defineProperty(exports, "Airplay", { + enumerable: true, + get: function () { + return _Airplay.default; + } +}); +Object.defineProperty(exports, "AirplayOutlined", { + enumerable: true, + get: function () { + return _AirplayOutlined.default; + } +}); +Object.defineProperty(exports, "AirplayRounded", { + enumerable: true, + get: function () { + return _AirplayRounded.default; + } +}); +Object.defineProperty(exports, "AirplaySharp", { + enumerable: true, + get: function () { + return _AirplaySharp.default; + } +}); +Object.defineProperty(exports, "AirplayTwoTone", { + enumerable: true, + get: function () { + return _AirplayTwoTone.default; + } +}); +Object.defineProperty(exports, "AirportShuttle", { + enumerable: true, + get: function () { + return _AirportShuttle.default; + } +}); +Object.defineProperty(exports, "AirportShuttleOutlined", { + enumerable: true, + get: function () { + return _AirportShuttleOutlined.default; + } +}); +Object.defineProperty(exports, "AirportShuttleRounded", { + enumerable: true, + get: function () { + return _AirportShuttleRounded.default; + } +}); +Object.defineProperty(exports, "AirportShuttleSharp", { + enumerable: true, + get: function () { + return _AirportShuttleSharp.default; + } +}); +Object.defineProperty(exports, "AirportShuttleTwoTone", { + enumerable: true, + get: function () { + return _AirportShuttleTwoTone.default; + } +}); +Object.defineProperty(exports, "Alarm", { + enumerable: true, + get: function () { + return _Alarm.default; + } +}); +Object.defineProperty(exports, "AlarmAdd", { + enumerable: true, + get: function () { + return _AlarmAdd.default; + } +}); +Object.defineProperty(exports, "AlarmAddOutlined", { + enumerable: true, + get: function () { + return _AlarmAddOutlined.default; + } +}); +Object.defineProperty(exports, "AlarmAddRounded", { + enumerable: true, + get: function () { + return _AlarmAddRounded.default; + } +}); +Object.defineProperty(exports, "AlarmAddSharp", { + enumerable: true, + get: function () { + return _AlarmAddSharp.default; + } +}); +Object.defineProperty(exports, "AlarmAddTwoTone", { + enumerable: true, + get: function () { + return _AlarmAddTwoTone.default; + } +}); +Object.defineProperty(exports, "AlarmOff", { + enumerable: true, + get: function () { + return _AlarmOff.default; + } +}); +Object.defineProperty(exports, "AlarmOffOutlined", { + enumerable: true, + get: function () { + return _AlarmOffOutlined.default; + } +}); +Object.defineProperty(exports, "AlarmOffRounded", { + enumerable: true, + get: function () { + return _AlarmOffRounded.default; + } +}); +Object.defineProperty(exports, "AlarmOffSharp", { + enumerable: true, + get: function () { + return _AlarmOffSharp.default; + } +}); +Object.defineProperty(exports, "AlarmOffTwoTone", { + enumerable: true, + get: function () { + return _AlarmOffTwoTone.default; + } +}); +Object.defineProperty(exports, "AlarmOn", { + enumerable: true, + get: function () { + return _AlarmOn.default; + } +}); +Object.defineProperty(exports, "AlarmOnOutlined", { + enumerable: true, + get: function () { + return _AlarmOnOutlined.default; + } +}); +Object.defineProperty(exports, "AlarmOnRounded", { + enumerable: true, + get: function () { + return _AlarmOnRounded.default; + } +}); +Object.defineProperty(exports, "AlarmOnSharp", { + enumerable: true, + get: function () { + return _AlarmOnSharp.default; + } +}); +Object.defineProperty(exports, "AlarmOnTwoTone", { + enumerable: true, + get: function () { + return _AlarmOnTwoTone.default; + } +}); +Object.defineProperty(exports, "AlarmOutlined", { + enumerable: true, + get: function () { + return _AlarmOutlined.default; + } +}); +Object.defineProperty(exports, "AlarmRounded", { + enumerable: true, + get: function () { + return _AlarmRounded.default; + } +}); +Object.defineProperty(exports, "AlarmSharp", { + enumerable: true, + get: function () { + return _AlarmSharp.default; + } +}); +Object.defineProperty(exports, "AlarmTwoTone", { + enumerable: true, + get: function () { + return _AlarmTwoTone.default; + } +}); +Object.defineProperty(exports, "Album", { + enumerable: true, + get: function () { + return _Album.default; + } +}); +Object.defineProperty(exports, "AlbumOutlined", { + enumerable: true, + get: function () { + return _AlbumOutlined.default; + } +}); +Object.defineProperty(exports, "AlbumRounded", { + enumerable: true, + get: function () { + return _AlbumRounded.default; + } +}); +Object.defineProperty(exports, "AlbumSharp", { + enumerable: true, + get: function () { + return _AlbumSharp.default; + } +}); +Object.defineProperty(exports, "AlbumTwoTone", { + enumerable: true, + get: function () { + return _AlbumTwoTone.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalCenter", { + enumerable: true, + get: function () { + return _AlignHorizontalCenter.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalCenterOutlined", { + enumerable: true, + get: function () { + return _AlignHorizontalCenterOutlined.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalCenterRounded", { + enumerable: true, + get: function () { + return _AlignHorizontalCenterRounded.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalCenterSharp", { + enumerable: true, + get: function () { + return _AlignHorizontalCenterSharp.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalCenterTwoTone", { + enumerable: true, + get: function () { + return _AlignHorizontalCenterTwoTone.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalLeft", { + enumerable: true, + get: function () { + return _AlignHorizontalLeft.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalLeftOutlined", { + enumerable: true, + get: function () { + return _AlignHorizontalLeftOutlined.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalLeftRounded", { + enumerable: true, + get: function () { + return _AlignHorizontalLeftRounded.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalLeftSharp", { + enumerable: true, + get: function () { + return _AlignHorizontalLeftSharp.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalLeftTwoTone", { + enumerable: true, + get: function () { + return _AlignHorizontalLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalRight", { + enumerable: true, + get: function () { + return _AlignHorizontalRight.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalRightOutlined", { + enumerable: true, + get: function () { + return _AlignHorizontalRightOutlined.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalRightRounded", { + enumerable: true, + get: function () { + return _AlignHorizontalRightRounded.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalRightSharp", { + enumerable: true, + get: function () { + return _AlignHorizontalRightSharp.default; + } +}); +Object.defineProperty(exports, "AlignHorizontalRightTwoTone", { + enumerable: true, + get: function () { + return _AlignHorizontalRightTwoTone.default; + } +}); +Object.defineProperty(exports, "AlignVerticalBottom", { + enumerable: true, + get: function () { + return _AlignVerticalBottom.default; + } +}); +Object.defineProperty(exports, "AlignVerticalBottomOutlined", { + enumerable: true, + get: function () { + return _AlignVerticalBottomOutlined.default; + } +}); +Object.defineProperty(exports, "AlignVerticalBottomRounded", { + enumerable: true, + get: function () { + return _AlignVerticalBottomRounded.default; + } +}); +Object.defineProperty(exports, "AlignVerticalBottomSharp", { + enumerable: true, + get: function () { + return _AlignVerticalBottomSharp.default; + } +}); +Object.defineProperty(exports, "AlignVerticalBottomTwoTone", { + enumerable: true, + get: function () { + return _AlignVerticalBottomTwoTone.default; + } +}); +Object.defineProperty(exports, "AlignVerticalCenter", { + enumerable: true, + get: function () { + return _AlignVerticalCenter.default; + } +}); +Object.defineProperty(exports, "AlignVerticalCenterOutlined", { + enumerable: true, + get: function () { + return _AlignVerticalCenterOutlined.default; + } +}); +Object.defineProperty(exports, "AlignVerticalCenterRounded", { + enumerable: true, + get: function () { + return _AlignVerticalCenterRounded.default; + } +}); +Object.defineProperty(exports, "AlignVerticalCenterSharp", { + enumerable: true, + get: function () { + return _AlignVerticalCenterSharp.default; + } +}); +Object.defineProperty(exports, "AlignVerticalCenterTwoTone", { + enumerable: true, + get: function () { + return _AlignVerticalCenterTwoTone.default; + } +}); +Object.defineProperty(exports, "AlignVerticalTop", { + enumerable: true, + get: function () { + return _AlignVerticalTop.default; + } +}); +Object.defineProperty(exports, "AlignVerticalTopOutlined", { + enumerable: true, + get: function () { + return _AlignVerticalTopOutlined.default; + } +}); +Object.defineProperty(exports, "AlignVerticalTopRounded", { + enumerable: true, + get: function () { + return _AlignVerticalTopRounded.default; + } +}); +Object.defineProperty(exports, "AlignVerticalTopSharp", { + enumerable: true, + get: function () { + return _AlignVerticalTopSharp.default; + } +}); +Object.defineProperty(exports, "AlignVerticalTopTwoTone", { + enumerable: true, + get: function () { + return _AlignVerticalTopTwoTone.default; + } +}); +Object.defineProperty(exports, "AllInbox", { + enumerable: true, + get: function () { + return _AllInbox.default; + } +}); +Object.defineProperty(exports, "AllInboxOutlined", { + enumerable: true, + get: function () { + return _AllInboxOutlined.default; + } +}); +Object.defineProperty(exports, "AllInboxRounded", { + enumerable: true, + get: function () { + return _AllInboxRounded.default; + } +}); +Object.defineProperty(exports, "AllInboxSharp", { + enumerable: true, + get: function () { + return _AllInboxSharp.default; + } +}); +Object.defineProperty(exports, "AllInboxTwoTone", { + enumerable: true, + get: function () { + return _AllInboxTwoTone.default; + } +}); +Object.defineProperty(exports, "AllInclusive", { + enumerable: true, + get: function () { + return _AllInclusive.default; + } +}); +Object.defineProperty(exports, "AllInclusiveOutlined", { + enumerable: true, + get: function () { + return _AllInclusiveOutlined.default; + } +}); +Object.defineProperty(exports, "AllInclusiveRounded", { + enumerable: true, + get: function () { + return _AllInclusiveRounded.default; + } +}); +Object.defineProperty(exports, "AllInclusiveSharp", { + enumerable: true, + get: function () { + return _AllInclusiveSharp.default; + } +}); +Object.defineProperty(exports, "AllInclusiveTwoTone", { + enumerable: true, + get: function () { + return _AllInclusiveTwoTone.default; + } +}); +Object.defineProperty(exports, "AllOut", { + enumerable: true, + get: function () { + return _AllOut.default; + } +}); +Object.defineProperty(exports, "AllOutOutlined", { + enumerable: true, + get: function () { + return _AllOutOutlined.default; + } +}); +Object.defineProperty(exports, "AllOutRounded", { + enumerable: true, + get: function () { + return _AllOutRounded.default; + } +}); +Object.defineProperty(exports, "AllOutSharp", { + enumerable: true, + get: function () { + return _AllOutSharp.default; + } +}); +Object.defineProperty(exports, "AllOutTwoTone", { + enumerable: true, + get: function () { + return _AllOutTwoTone.default; + } +}); +Object.defineProperty(exports, "AltRoute", { + enumerable: true, + get: function () { + return _AltRoute.default; + } +}); +Object.defineProperty(exports, "AltRouteOutlined", { + enumerable: true, + get: function () { + return _AltRouteOutlined.default; + } +}); +Object.defineProperty(exports, "AltRouteRounded", { + enumerable: true, + get: function () { + return _AltRouteRounded.default; + } +}); +Object.defineProperty(exports, "AltRouteSharp", { + enumerable: true, + get: function () { + return _AltRouteSharp.default; + } +}); +Object.defineProperty(exports, "AltRouteTwoTone", { + enumerable: true, + get: function () { + return _AltRouteTwoTone.default; + } +}); +Object.defineProperty(exports, "AlternateEmail", { + enumerable: true, + get: function () { + return _AlternateEmail.default; + } +}); +Object.defineProperty(exports, "AlternateEmailOutlined", { + enumerable: true, + get: function () { + return _AlternateEmailOutlined.default; + } +}); +Object.defineProperty(exports, "AlternateEmailRounded", { + enumerable: true, + get: function () { + return _AlternateEmailRounded.default; + } +}); +Object.defineProperty(exports, "AlternateEmailSharp", { + enumerable: true, + get: function () { + return _AlternateEmailSharp.default; + } +}); +Object.defineProperty(exports, "AlternateEmailTwoTone", { + enumerable: true, + get: function () { + return _AlternateEmailTwoTone.default; + } +}); +Object.defineProperty(exports, "Analytics", { + enumerable: true, + get: function () { + return _Analytics.default; + } +}); +Object.defineProperty(exports, "AnalyticsOutlined", { + enumerable: true, + get: function () { + return _AnalyticsOutlined.default; + } +}); +Object.defineProperty(exports, "AnalyticsRounded", { + enumerable: true, + get: function () { + return _AnalyticsRounded.default; + } +}); +Object.defineProperty(exports, "AnalyticsSharp", { + enumerable: true, + get: function () { + return _AnalyticsSharp.default; + } +}); +Object.defineProperty(exports, "AnalyticsTwoTone", { + enumerable: true, + get: function () { + return _AnalyticsTwoTone.default; + } +}); +Object.defineProperty(exports, "Anchor", { + enumerable: true, + get: function () { + return _Anchor.default; + } +}); +Object.defineProperty(exports, "AnchorOutlined", { + enumerable: true, + get: function () { + return _AnchorOutlined.default; + } +}); +Object.defineProperty(exports, "AnchorRounded", { + enumerable: true, + get: function () { + return _AnchorRounded.default; + } +}); +Object.defineProperty(exports, "AnchorSharp", { + enumerable: true, + get: function () { + return _AnchorSharp.default; + } +}); +Object.defineProperty(exports, "AnchorTwoTone", { + enumerable: true, + get: function () { + return _AnchorTwoTone.default; + } +}); +Object.defineProperty(exports, "Android", { + enumerable: true, + get: function () { + return _Android.default; + } +}); +Object.defineProperty(exports, "AndroidOutlined", { + enumerable: true, + get: function () { + return _AndroidOutlined.default; + } +}); +Object.defineProperty(exports, "AndroidRounded", { + enumerable: true, + get: function () { + return _AndroidRounded.default; + } +}); +Object.defineProperty(exports, "AndroidSharp", { + enumerable: true, + get: function () { + return _AndroidSharp.default; + } +}); +Object.defineProperty(exports, "AndroidTwoTone", { + enumerable: true, + get: function () { + return _AndroidTwoTone.default; + } +}); +Object.defineProperty(exports, "Animation", { + enumerable: true, + get: function () { + return _Animation.default; + } +}); +Object.defineProperty(exports, "AnimationOutlined", { + enumerable: true, + get: function () { + return _AnimationOutlined.default; + } +}); +Object.defineProperty(exports, "AnimationRounded", { + enumerable: true, + get: function () { + return _AnimationRounded.default; + } +}); +Object.defineProperty(exports, "AnimationSharp", { + enumerable: true, + get: function () { + return _AnimationSharp.default; + } +}); +Object.defineProperty(exports, "AnimationTwoTone", { + enumerable: true, + get: function () { + return _AnimationTwoTone.default; + } +}); +Object.defineProperty(exports, "Announcement", { + enumerable: true, + get: function () { + return _Announcement.default; + } +}); +Object.defineProperty(exports, "AnnouncementOutlined", { + enumerable: true, + get: function () { + return _AnnouncementOutlined.default; + } +}); +Object.defineProperty(exports, "AnnouncementRounded", { + enumerable: true, + get: function () { + return _AnnouncementRounded.default; + } +}); +Object.defineProperty(exports, "AnnouncementSharp", { + enumerable: true, + get: function () { + return _AnnouncementSharp.default; + } +}); +Object.defineProperty(exports, "AnnouncementTwoTone", { + enumerable: true, + get: function () { + return _AnnouncementTwoTone.default; + } +}); +Object.defineProperty(exports, "Aod", { + enumerable: true, + get: function () { + return _Aod.default; + } +}); +Object.defineProperty(exports, "AodOutlined", { + enumerable: true, + get: function () { + return _AodOutlined.default; + } +}); +Object.defineProperty(exports, "AodRounded", { + enumerable: true, + get: function () { + return _AodRounded.default; + } +}); +Object.defineProperty(exports, "AodSharp", { + enumerable: true, + get: function () { + return _AodSharp.default; + } +}); +Object.defineProperty(exports, "AodTwoTone", { + enumerable: true, + get: function () { + return _AodTwoTone.default; + } +}); +Object.defineProperty(exports, "Apartment", { + enumerable: true, + get: function () { + return _Apartment.default; + } +}); +Object.defineProperty(exports, "ApartmentOutlined", { + enumerable: true, + get: function () { + return _ApartmentOutlined.default; + } +}); +Object.defineProperty(exports, "ApartmentRounded", { + enumerable: true, + get: function () { + return _ApartmentRounded.default; + } +}); +Object.defineProperty(exports, "ApartmentSharp", { + enumerable: true, + get: function () { + return _ApartmentSharp.default; + } +}); +Object.defineProperty(exports, "ApartmentTwoTone", { + enumerable: true, + get: function () { + return _ApartmentTwoTone.default; + } +}); +Object.defineProperty(exports, "Api", { + enumerable: true, + get: function () { + return _Api.default; + } +}); +Object.defineProperty(exports, "ApiOutlined", { + enumerable: true, + get: function () { + return _ApiOutlined.default; + } +}); +Object.defineProperty(exports, "ApiRounded", { + enumerable: true, + get: function () { + return _ApiRounded.default; + } +}); +Object.defineProperty(exports, "ApiSharp", { + enumerable: true, + get: function () { + return _ApiSharp.default; + } +}); +Object.defineProperty(exports, "ApiTwoTone", { + enumerable: true, + get: function () { + return _ApiTwoTone.default; + } +}); +Object.defineProperty(exports, "AppBlocking", { + enumerable: true, + get: function () { + return _AppBlocking.default; + } +}); +Object.defineProperty(exports, "AppBlockingOutlined", { + enumerable: true, + get: function () { + return _AppBlockingOutlined.default; + } +}); +Object.defineProperty(exports, "AppBlockingRounded", { + enumerable: true, + get: function () { + return _AppBlockingRounded.default; + } +}); +Object.defineProperty(exports, "AppBlockingSharp", { + enumerable: true, + get: function () { + return _AppBlockingSharp.default; + } +}); +Object.defineProperty(exports, "AppBlockingTwoTone", { + enumerable: true, + get: function () { + return _AppBlockingTwoTone.default; + } +}); +Object.defineProperty(exports, "AppRegistration", { + enumerable: true, + get: function () { + return _AppRegistration.default; + } +}); +Object.defineProperty(exports, "AppRegistrationOutlined", { + enumerable: true, + get: function () { + return _AppRegistrationOutlined.default; + } +}); +Object.defineProperty(exports, "AppRegistrationRounded", { + enumerable: true, + get: function () { + return _AppRegistrationRounded.default; + } +}); +Object.defineProperty(exports, "AppRegistrationSharp", { + enumerable: true, + get: function () { + return _AppRegistrationSharp.default; + } +}); +Object.defineProperty(exports, "AppRegistrationTwoTone", { + enumerable: true, + get: function () { + return _AppRegistrationTwoTone.default; + } +}); +Object.defineProperty(exports, "AppSettingsAlt", { + enumerable: true, + get: function () { + return _AppSettingsAlt.default; + } +}); +Object.defineProperty(exports, "AppSettingsAltOutlined", { + enumerable: true, + get: function () { + return _AppSettingsAltOutlined.default; + } +}); +Object.defineProperty(exports, "AppSettingsAltRounded", { + enumerable: true, + get: function () { + return _AppSettingsAltRounded.default; + } +}); +Object.defineProperty(exports, "AppSettingsAltSharp", { + enumerable: true, + get: function () { + return _AppSettingsAltSharp.default; + } +}); +Object.defineProperty(exports, "AppSettingsAltTwoTone", { + enumerable: true, + get: function () { + return _AppSettingsAltTwoTone.default; + } +}); +Object.defineProperty(exports, "Apple", { + enumerable: true, + get: function () { + return _Apple.default; + } +}); +Object.defineProperty(exports, "Approval", { + enumerable: true, + get: function () { + return _Approval.default; + } +}); +Object.defineProperty(exports, "ApprovalOutlined", { + enumerable: true, + get: function () { + return _ApprovalOutlined.default; + } +}); +Object.defineProperty(exports, "ApprovalRounded", { + enumerable: true, + get: function () { + return _ApprovalRounded.default; + } +}); +Object.defineProperty(exports, "ApprovalSharp", { + enumerable: true, + get: function () { + return _ApprovalSharp.default; + } +}); +Object.defineProperty(exports, "ApprovalTwoTone", { + enumerable: true, + get: function () { + return _ApprovalTwoTone.default; + } +}); +Object.defineProperty(exports, "Apps", { + enumerable: true, + get: function () { + return _Apps.default; + } +}); +Object.defineProperty(exports, "AppsOutlined", { + enumerable: true, + get: function () { + return _AppsOutlined.default; + } +}); +Object.defineProperty(exports, "AppsRounded", { + enumerable: true, + get: function () { + return _AppsRounded.default; + } +}); +Object.defineProperty(exports, "AppsSharp", { + enumerable: true, + get: function () { + return _AppsSharp.default; + } +}); +Object.defineProperty(exports, "AppsTwoTone", { + enumerable: true, + get: function () { + return _AppsTwoTone.default; + } +}); +Object.defineProperty(exports, "Architecture", { + enumerable: true, + get: function () { + return _Architecture.default; + } +}); +Object.defineProperty(exports, "ArchitectureOutlined", { + enumerable: true, + get: function () { + return _ArchitectureOutlined.default; + } +}); +Object.defineProperty(exports, "ArchitectureRounded", { + enumerable: true, + get: function () { + return _ArchitectureRounded.default; + } +}); +Object.defineProperty(exports, "ArchitectureSharp", { + enumerable: true, + get: function () { + return _ArchitectureSharp.default; + } +}); +Object.defineProperty(exports, "ArchitectureTwoTone", { + enumerable: true, + get: function () { + return _ArchitectureTwoTone.default; + } +}); +Object.defineProperty(exports, "Archive", { + enumerable: true, + get: function () { + return _Archive.default; + } +}); +Object.defineProperty(exports, "ArchiveOutlined", { + enumerable: true, + get: function () { + return _ArchiveOutlined.default; + } +}); +Object.defineProperty(exports, "ArchiveRounded", { + enumerable: true, + get: function () { + return _ArchiveRounded.default; + } +}); +Object.defineProperty(exports, "ArchiveSharp", { + enumerable: true, + get: function () { + return _ArchiveSharp.default; + } +}); +Object.defineProperty(exports, "ArchiveTwoTone", { + enumerable: true, + get: function () { + return _ArchiveTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowBack", { + enumerable: true, + get: function () { + return _ArrowBack.default; + } +}); +Object.defineProperty(exports, "ArrowBackIos", { + enumerable: true, + get: function () { + return _ArrowBackIos.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosNew", { + enumerable: true, + get: function () { + return _ArrowBackIosNew.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosNewOutlined", { + enumerable: true, + get: function () { + return _ArrowBackIosNewOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosNewRounded", { + enumerable: true, + get: function () { + return _ArrowBackIosNewRounded.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosNewSharp", { + enumerable: true, + get: function () { + return _ArrowBackIosNewSharp.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosNewTwoTone", { + enumerable: true, + get: function () { + return _ArrowBackIosNewTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosOutlined", { + enumerable: true, + get: function () { + return _ArrowBackIosOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosRounded", { + enumerable: true, + get: function () { + return _ArrowBackIosRounded.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosSharp", { + enumerable: true, + get: function () { + return _ArrowBackIosSharp.default; + } +}); +Object.defineProperty(exports, "ArrowBackIosTwoTone", { + enumerable: true, + get: function () { + return _ArrowBackIosTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowBackOutlined", { + enumerable: true, + get: function () { + return _ArrowBackOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowBackRounded", { + enumerable: true, + get: function () { + return _ArrowBackRounded.default; + } +}); +Object.defineProperty(exports, "ArrowBackSharp", { + enumerable: true, + get: function () { + return _ArrowBackSharp.default; + } +}); +Object.defineProperty(exports, "ArrowBackTwoTone", { + enumerable: true, + get: function () { + return _ArrowBackTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowCircleDown", { + enumerable: true, + get: function () { + return _ArrowCircleDown.default; + } +}); +Object.defineProperty(exports, "ArrowCircleDownOutlined", { + enumerable: true, + get: function () { + return _ArrowCircleDownOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowCircleDownRounded", { + enumerable: true, + get: function () { + return _ArrowCircleDownRounded.default; + } +}); +Object.defineProperty(exports, "ArrowCircleDownSharp", { + enumerable: true, + get: function () { + return _ArrowCircleDownSharp.default; + } +}); +Object.defineProperty(exports, "ArrowCircleDownTwoTone", { + enumerable: true, + get: function () { + return _ArrowCircleDownTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowCircleUp", { + enumerable: true, + get: function () { + return _ArrowCircleUp.default; + } +}); +Object.defineProperty(exports, "ArrowCircleUpOutlined", { + enumerable: true, + get: function () { + return _ArrowCircleUpOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowCircleUpRounded", { + enumerable: true, + get: function () { + return _ArrowCircleUpRounded.default; + } +}); +Object.defineProperty(exports, "ArrowCircleUpSharp", { + enumerable: true, + get: function () { + return _ArrowCircleUpSharp.default; + } +}); +Object.defineProperty(exports, "ArrowCircleUpTwoTone", { + enumerable: true, + get: function () { + return _ArrowCircleUpTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowDownward", { + enumerable: true, + get: function () { + return _ArrowDownward.default; + } +}); +Object.defineProperty(exports, "ArrowDownwardOutlined", { + enumerable: true, + get: function () { + return _ArrowDownwardOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowDownwardRounded", { + enumerable: true, + get: function () { + return _ArrowDownwardRounded.default; + } +}); +Object.defineProperty(exports, "ArrowDownwardSharp", { + enumerable: true, + get: function () { + return _ArrowDownwardSharp.default; + } +}); +Object.defineProperty(exports, "ArrowDownwardTwoTone", { + enumerable: true, + get: function () { + return _ArrowDownwardTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowDropDown", { + enumerable: true, + get: function () { + return _ArrowDropDown.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownCircle", { + enumerable: true, + get: function () { + return _ArrowDropDownCircle.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownCircleOutlined", { + enumerable: true, + get: function () { + return _ArrowDropDownCircleOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownCircleRounded", { + enumerable: true, + get: function () { + return _ArrowDropDownCircleRounded.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownCircleSharp", { + enumerable: true, + get: function () { + return _ArrowDropDownCircleSharp.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownCircleTwoTone", { + enumerable: true, + get: function () { + return _ArrowDropDownCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownOutlined", { + enumerable: true, + get: function () { + return _ArrowDropDownOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownRounded", { + enumerable: true, + get: function () { + return _ArrowDropDownRounded.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownSharp", { + enumerable: true, + get: function () { + return _ArrowDropDownSharp.default; + } +}); +Object.defineProperty(exports, "ArrowDropDownTwoTone", { + enumerable: true, + get: function () { + return _ArrowDropDownTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowDropUp", { + enumerable: true, + get: function () { + return _ArrowDropUp.default; + } +}); +Object.defineProperty(exports, "ArrowDropUpOutlined", { + enumerable: true, + get: function () { + return _ArrowDropUpOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowDropUpRounded", { + enumerable: true, + get: function () { + return _ArrowDropUpRounded.default; + } +}); +Object.defineProperty(exports, "ArrowDropUpSharp", { + enumerable: true, + get: function () { + return _ArrowDropUpSharp.default; + } +}); +Object.defineProperty(exports, "ArrowDropUpTwoTone", { + enumerable: true, + get: function () { + return _ArrowDropUpTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowForward", { + enumerable: true, + get: function () { + return _ArrowForward.default; + } +}); +Object.defineProperty(exports, "ArrowForwardIos", { + enumerable: true, + get: function () { + return _ArrowForwardIos.default; + } +}); +Object.defineProperty(exports, "ArrowForwardIosOutlined", { + enumerable: true, + get: function () { + return _ArrowForwardIosOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowForwardIosRounded", { + enumerable: true, + get: function () { + return _ArrowForwardIosRounded.default; + } +}); +Object.defineProperty(exports, "ArrowForwardIosSharp", { + enumerable: true, + get: function () { + return _ArrowForwardIosSharp.default; + } +}); +Object.defineProperty(exports, "ArrowForwardIosTwoTone", { + enumerable: true, + get: function () { + return _ArrowForwardIosTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowForwardOutlined", { + enumerable: true, + get: function () { + return _ArrowForwardOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowForwardRounded", { + enumerable: true, + get: function () { + return _ArrowForwardRounded.default; + } +}); +Object.defineProperty(exports, "ArrowForwardSharp", { + enumerable: true, + get: function () { + return _ArrowForwardSharp.default; + } +}); +Object.defineProperty(exports, "ArrowForwardTwoTone", { + enumerable: true, + get: function () { + return _ArrowForwardTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowLeft", { + enumerable: true, + get: function () { + return _ArrowLeft.default; + } +}); +Object.defineProperty(exports, "ArrowLeftOutlined", { + enumerable: true, + get: function () { + return _ArrowLeftOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowLeftRounded", { + enumerable: true, + get: function () { + return _ArrowLeftRounded.default; + } +}); +Object.defineProperty(exports, "ArrowLeftSharp", { + enumerable: true, + get: function () { + return _ArrowLeftSharp.default; + } +}); +Object.defineProperty(exports, "ArrowLeftTwoTone", { + enumerable: true, + get: function () { + return _ArrowLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowRight", { + enumerable: true, + get: function () { + return _ArrowRight.default; + } +}); +Object.defineProperty(exports, "ArrowRightAlt", { + enumerable: true, + get: function () { + return _ArrowRightAlt.default; + } +}); +Object.defineProperty(exports, "ArrowRightAltOutlined", { + enumerable: true, + get: function () { + return _ArrowRightAltOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowRightAltRounded", { + enumerable: true, + get: function () { + return _ArrowRightAltRounded.default; + } +}); +Object.defineProperty(exports, "ArrowRightAltSharp", { + enumerable: true, + get: function () { + return _ArrowRightAltSharp.default; + } +}); +Object.defineProperty(exports, "ArrowRightAltTwoTone", { + enumerable: true, + get: function () { + return _ArrowRightAltTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowRightOutlined", { + enumerable: true, + get: function () { + return _ArrowRightOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowRightRounded", { + enumerable: true, + get: function () { + return _ArrowRightRounded.default; + } +}); +Object.defineProperty(exports, "ArrowRightSharp", { + enumerable: true, + get: function () { + return _ArrowRightSharp.default; + } +}); +Object.defineProperty(exports, "ArrowRightTwoTone", { + enumerable: true, + get: function () { + return _ArrowRightTwoTone.default; + } +}); +Object.defineProperty(exports, "ArrowUpward", { + enumerable: true, + get: function () { + return _ArrowUpward.default; + } +}); +Object.defineProperty(exports, "ArrowUpwardOutlined", { + enumerable: true, + get: function () { + return _ArrowUpwardOutlined.default; + } +}); +Object.defineProperty(exports, "ArrowUpwardRounded", { + enumerable: true, + get: function () { + return _ArrowUpwardRounded.default; + } +}); +Object.defineProperty(exports, "ArrowUpwardSharp", { + enumerable: true, + get: function () { + return _ArrowUpwardSharp.default; + } +}); +Object.defineProperty(exports, "ArrowUpwardTwoTone", { + enumerable: true, + get: function () { + return _ArrowUpwardTwoTone.default; + } +}); +Object.defineProperty(exports, "ArtTrack", { + enumerable: true, + get: function () { + return _ArtTrack.default; + } +}); +Object.defineProperty(exports, "ArtTrackOutlined", { + enumerable: true, + get: function () { + return _ArtTrackOutlined.default; + } +}); +Object.defineProperty(exports, "ArtTrackRounded", { + enumerable: true, + get: function () { + return _ArtTrackRounded.default; + } +}); +Object.defineProperty(exports, "ArtTrackSharp", { + enumerable: true, + get: function () { + return _ArtTrackSharp.default; + } +}); +Object.defineProperty(exports, "ArtTrackTwoTone", { + enumerable: true, + get: function () { + return _ArtTrackTwoTone.default; + } +}); +Object.defineProperty(exports, "Article", { + enumerable: true, + get: function () { + return _Article.default; + } +}); +Object.defineProperty(exports, "ArticleOutlined", { + enumerable: true, + get: function () { + return _ArticleOutlined.default; + } +}); +Object.defineProperty(exports, "ArticleRounded", { + enumerable: true, + get: function () { + return _ArticleRounded.default; + } +}); +Object.defineProperty(exports, "ArticleSharp", { + enumerable: true, + get: function () { + return _ArticleSharp.default; + } +}); +Object.defineProperty(exports, "ArticleTwoTone", { + enumerable: true, + get: function () { + return _ArticleTwoTone.default; + } +}); +Object.defineProperty(exports, "AspectRatio", { + enumerable: true, + get: function () { + return _AspectRatio.default; + } +}); +Object.defineProperty(exports, "AspectRatioOutlined", { + enumerable: true, + get: function () { + return _AspectRatioOutlined.default; + } +}); +Object.defineProperty(exports, "AspectRatioRounded", { + enumerable: true, + get: function () { + return _AspectRatioRounded.default; + } +}); +Object.defineProperty(exports, "AspectRatioSharp", { + enumerable: true, + get: function () { + return _AspectRatioSharp.default; + } +}); +Object.defineProperty(exports, "AspectRatioTwoTone", { + enumerable: true, + get: function () { + return _AspectRatioTwoTone.default; + } +}); +Object.defineProperty(exports, "Assessment", { + enumerable: true, + get: function () { + return _Assessment.default; + } +}); +Object.defineProperty(exports, "AssessmentOutlined", { + enumerable: true, + get: function () { + return _AssessmentOutlined.default; + } +}); +Object.defineProperty(exports, "AssessmentRounded", { + enumerable: true, + get: function () { + return _AssessmentRounded.default; + } +}); +Object.defineProperty(exports, "AssessmentSharp", { + enumerable: true, + get: function () { + return _AssessmentSharp.default; + } +}); +Object.defineProperty(exports, "AssessmentTwoTone", { + enumerable: true, + get: function () { + return _AssessmentTwoTone.default; + } +}); +Object.defineProperty(exports, "Assignment", { + enumerable: true, + get: function () { + return _Assignment.default; + } +}); +Object.defineProperty(exports, "AssignmentInd", { + enumerable: true, + get: function () { + return _AssignmentInd.default; + } +}); +Object.defineProperty(exports, "AssignmentIndOutlined", { + enumerable: true, + get: function () { + return _AssignmentIndOutlined.default; + } +}); +Object.defineProperty(exports, "AssignmentIndRounded", { + enumerable: true, + get: function () { + return _AssignmentIndRounded.default; + } +}); +Object.defineProperty(exports, "AssignmentIndSharp", { + enumerable: true, + get: function () { + return _AssignmentIndSharp.default; + } +}); +Object.defineProperty(exports, "AssignmentIndTwoTone", { + enumerable: true, + get: function () { + return _AssignmentIndTwoTone.default; + } +}); +Object.defineProperty(exports, "AssignmentLate", { + enumerable: true, + get: function () { + return _AssignmentLate.default; + } +}); +Object.defineProperty(exports, "AssignmentLateOutlined", { + enumerable: true, + get: function () { + return _AssignmentLateOutlined.default; + } +}); +Object.defineProperty(exports, "AssignmentLateRounded", { + enumerable: true, + get: function () { + return _AssignmentLateRounded.default; + } +}); +Object.defineProperty(exports, "AssignmentLateSharp", { + enumerable: true, + get: function () { + return _AssignmentLateSharp.default; + } +}); +Object.defineProperty(exports, "AssignmentLateTwoTone", { + enumerable: true, + get: function () { + return _AssignmentLateTwoTone.default; + } +}); +Object.defineProperty(exports, "AssignmentOutlined", { + enumerable: true, + get: function () { + return _AssignmentOutlined.default; + } +}); +Object.defineProperty(exports, "AssignmentReturn", { + enumerable: true, + get: function () { + return _AssignmentReturn.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnOutlined", { + enumerable: true, + get: function () { + return _AssignmentReturnOutlined.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnRounded", { + enumerable: true, + get: function () { + return _AssignmentReturnRounded.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnSharp", { + enumerable: true, + get: function () { + return _AssignmentReturnSharp.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnTwoTone", { + enumerable: true, + get: function () { + return _AssignmentReturnTwoTone.default; + } +}); +Object.defineProperty(exports, "AssignmentReturned", { + enumerable: true, + get: function () { + return _AssignmentReturned.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnedOutlined", { + enumerable: true, + get: function () { + return _AssignmentReturnedOutlined.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnedRounded", { + enumerable: true, + get: function () { + return _AssignmentReturnedRounded.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnedSharp", { + enumerable: true, + get: function () { + return _AssignmentReturnedSharp.default; + } +}); +Object.defineProperty(exports, "AssignmentReturnedTwoTone", { + enumerable: true, + get: function () { + return _AssignmentReturnedTwoTone.default; + } +}); +Object.defineProperty(exports, "AssignmentRounded", { + enumerable: true, + get: function () { + return _AssignmentRounded.default; + } +}); +Object.defineProperty(exports, "AssignmentSharp", { + enumerable: true, + get: function () { + return _AssignmentSharp.default; + } +}); +Object.defineProperty(exports, "AssignmentTurnedIn", { + enumerable: true, + get: function () { + return _AssignmentTurnedIn.default; + } +}); +Object.defineProperty(exports, "AssignmentTurnedInOutlined", { + enumerable: true, + get: function () { + return _AssignmentTurnedInOutlined.default; + } +}); +Object.defineProperty(exports, "AssignmentTurnedInRounded", { + enumerable: true, + get: function () { + return _AssignmentTurnedInRounded.default; + } +}); +Object.defineProperty(exports, "AssignmentTurnedInSharp", { + enumerable: true, + get: function () { + return _AssignmentTurnedInSharp.default; + } +}); +Object.defineProperty(exports, "AssignmentTurnedInTwoTone", { + enumerable: true, + get: function () { + return _AssignmentTurnedInTwoTone.default; + } +}); +Object.defineProperty(exports, "AssignmentTwoTone", { + enumerable: true, + get: function () { + return _AssignmentTwoTone.default; + } +}); +Object.defineProperty(exports, "Assistant", { + enumerable: true, + get: function () { + return _Assistant.default; + } +}); +Object.defineProperty(exports, "AssistantDirection", { + enumerable: true, + get: function () { + return _AssistantDirection.default; + } +}); +Object.defineProperty(exports, "AssistantDirectionOutlined", { + enumerable: true, + get: function () { + return _AssistantDirectionOutlined.default; + } +}); +Object.defineProperty(exports, "AssistantDirectionRounded", { + enumerable: true, + get: function () { + return _AssistantDirectionRounded.default; + } +}); +Object.defineProperty(exports, "AssistantDirectionSharp", { + enumerable: true, + get: function () { + return _AssistantDirectionSharp.default; + } +}); +Object.defineProperty(exports, "AssistantDirectionTwoTone", { + enumerable: true, + get: function () { + return _AssistantDirectionTwoTone.default; + } +}); +Object.defineProperty(exports, "AssistantOutlined", { + enumerable: true, + get: function () { + return _AssistantOutlined.default; + } +}); +Object.defineProperty(exports, "AssistantPhoto", { + enumerable: true, + get: function () { + return _AssistantPhoto.default; + } +}); +Object.defineProperty(exports, "AssistantPhotoOutlined", { + enumerable: true, + get: function () { + return _AssistantPhotoOutlined.default; + } +}); +Object.defineProperty(exports, "AssistantPhotoRounded", { + enumerable: true, + get: function () { + return _AssistantPhotoRounded.default; + } +}); +Object.defineProperty(exports, "AssistantPhotoSharp", { + enumerable: true, + get: function () { + return _AssistantPhotoSharp.default; + } +}); +Object.defineProperty(exports, "AssistantPhotoTwoTone", { + enumerable: true, + get: function () { + return _AssistantPhotoTwoTone.default; + } +}); +Object.defineProperty(exports, "AssistantRounded", { + enumerable: true, + get: function () { + return _AssistantRounded.default; + } +}); +Object.defineProperty(exports, "AssistantSharp", { + enumerable: true, + get: function () { + return _AssistantSharp.default; + } +}); +Object.defineProperty(exports, "AssistantTwoTone", { + enumerable: true, + get: function () { + return _AssistantTwoTone.default; + } +}); +Object.defineProperty(exports, "Atm", { + enumerable: true, + get: function () { + return _Atm.default; + } +}); +Object.defineProperty(exports, "AtmOutlined", { + enumerable: true, + get: function () { + return _AtmOutlined.default; + } +}); +Object.defineProperty(exports, "AtmRounded", { + enumerable: true, + get: function () { + return _AtmRounded.default; + } +}); +Object.defineProperty(exports, "AtmSharp", { + enumerable: true, + get: function () { + return _AtmSharp.default; + } +}); +Object.defineProperty(exports, "AtmTwoTone", { + enumerable: true, + get: function () { + return _AtmTwoTone.default; + } +}); +Object.defineProperty(exports, "AttachEmail", { + enumerable: true, + get: function () { + return _AttachEmail.default; + } +}); +Object.defineProperty(exports, "AttachEmailOutlined", { + enumerable: true, + get: function () { + return _AttachEmailOutlined.default; + } +}); +Object.defineProperty(exports, "AttachEmailRounded", { + enumerable: true, + get: function () { + return _AttachEmailRounded.default; + } +}); +Object.defineProperty(exports, "AttachEmailSharp", { + enumerable: true, + get: function () { + return _AttachEmailSharp.default; + } +}); +Object.defineProperty(exports, "AttachEmailTwoTone", { + enumerable: true, + get: function () { + return _AttachEmailTwoTone.default; + } +}); +Object.defineProperty(exports, "AttachFile", { + enumerable: true, + get: function () { + return _AttachFile.default; + } +}); +Object.defineProperty(exports, "AttachFileOutlined", { + enumerable: true, + get: function () { + return _AttachFileOutlined.default; + } +}); +Object.defineProperty(exports, "AttachFileRounded", { + enumerable: true, + get: function () { + return _AttachFileRounded.default; + } +}); +Object.defineProperty(exports, "AttachFileSharp", { + enumerable: true, + get: function () { + return _AttachFileSharp.default; + } +}); +Object.defineProperty(exports, "AttachFileTwoTone", { + enumerable: true, + get: function () { + return _AttachFileTwoTone.default; + } +}); +Object.defineProperty(exports, "AttachMoney", { + enumerable: true, + get: function () { + return _AttachMoney.default; + } +}); +Object.defineProperty(exports, "AttachMoneyOutlined", { + enumerable: true, + get: function () { + return _AttachMoneyOutlined.default; + } +}); +Object.defineProperty(exports, "AttachMoneyRounded", { + enumerable: true, + get: function () { + return _AttachMoneyRounded.default; + } +}); +Object.defineProperty(exports, "AttachMoneySharp", { + enumerable: true, + get: function () { + return _AttachMoneySharp.default; + } +}); +Object.defineProperty(exports, "AttachMoneyTwoTone", { + enumerable: true, + get: function () { + return _AttachMoneyTwoTone.default; + } +}); +Object.defineProperty(exports, "Attachment", { + enumerable: true, + get: function () { + return _Attachment.default; + } +}); +Object.defineProperty(exports, "AttachmentOutlined", { + enumerable: true, + get: function () { + return _AttachmentOutlined.default; + } +}); +Object.defineProperty(exports, "AttachmentRounded", { + enumerable: true, + get: function () { + return _AttachmentRounded.default; + } +}); +Object.defineProperty(exports, "AttachmentSharp", { + enumerable: true, + get: function () { + return _AttachmentSharp.default; + } +}); +Object.defineProperty(exports, "AttachmentTwoTone", { + enumerable: true, + get: function () { + return _AttachmentTwoTone.default; + } +}); +Object.defineProperty(exports, "Attractions", { + enumerable: true, + get: function () { + return _Attractions.default; + } +}); +Object.defineProperty(exports, "AttractionsOutlined", { + enumerable: true, + get: function () { + return _AttractionsOutlined.default; + } +}); +Object.defineProperty(exports, "AttractionsRounded", { + enumerable: true, + get: function () { + return _AttractionsRounded.default; + } +}); +Object.defineProperty(exports, "AttractionsSharp", { + enumerable: true, + get: function () { + return _AttractionsSharp.default; + } +}); +Object.defineProperty(exports, "AttractionsTwoTone", { + enumerable: true, + get: function () { + return _AttractionsTwoTone.default; + } +}); +Object.defineProperty(exports, "Attribution", { + enumerable: true, + get: function () { + return _Attribution.default; + } +}); +Object.defineProperty(exports, "AttributionOutlined", { + enumerable: true, + get: function () { + return _AttributionOutlined.default; + } +}); +Object.defineProperty(exports, "AttributionRounded", { + enumerable: true, + get: function () { + return _AttributionRounded.default; + } +}); +Object.defineProperty(exports, "AttributionSharp", { + enumerable: true, + get: function () { + return _AttributionSharp.default; + } +}); +Object.defineProperty(exports, "AttributionTwoTone", { + enumerable: true, + get: function () { + return _AttributionTwoTone.default; + } +}); +Object.defineProperty(exports, "Audiotrack", { + enumerable: true, + get: function () { + return _Audiotrack.default; + } +}); +Object.defineProperty(exports, "AudiotrackOutlined", { + enumerable: true, + get: function () { + return _AudiotrackOutlined.default; + } +}); +Object.defineProperty(exports, "AudiotrackRounded", { + enumerable: true, + get: function () { + return _AudiotrackRounded.default; + } +}); +Object.defineProperty(exports, "AudiotrackSharp", { + enumerable: true, + get: function () { + return _AudiotrackSharp.default; + } +}); +Object.defineProperty(exports, "AudiotrackTwoTone", { + enumerable: true, + get: function () { + return _AudiotrackTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoAwesome", { + enumerable: true, + get: function () { + return _AutoAwesome.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMosaic", { + enumerable: true, + get: function () { + return _AutoAwesomeMosaic.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMosaicOutlined", { + enumerable: true, + get: function () { + return _AutoAwesomeMosaicOutlined.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMosaicRounded", { + enumerable: true, + get: function () { + return _AutoAwesomeMosaicRounded.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMosaicSharp", { + enumerable: true, + get: function () { + return _AutoAwesomeMosaicSharp.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMosaicTwoTone", { + enumerable: true, + get: function () { + return _AutoAwesomeMosaicTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMotion", { + enumerable: true, + get: function () { + return _AutoAwesomeMotion.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMotionOutlined", { + enumerable: true, + get: function () { + return _AutoAwesomeMotionOutlined.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMotionRounded", { + enumerable: true, + get: function () { + return _AutoAwesomeMotionRounded.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMotionSharp", { + enumerable: true, + get: function () { + return _AutoAwesomeMotionSharp.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeMotionTwoTone", { + enumerable: true, + get: function () { + return _AutoAwesomeMotionTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeOutlined", { + enumerable: true, + get: function () { + return _AutoAwesomeOutlined.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeRounded", { + enumerable: true, + get: function () { + return _AutoAwesomeRounded.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeSharp", { + enumerable: true, + get: function () { + return _AutoAwesomeSharp.default; + } +}); +Object.defineProperty(exports, "AutoAwesomeTwoTone", { + enumerable: true, + get: function () { + return _AutoAwesomeTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoDelete", { + enumerable: true, + get: function () { + return _AutoDelete.default; + } +}); +Object.defineProperty(exports, "AutoDeleteOutlined", { + enumerable: true, + get: function () { + return _AutoDeleteOutlined.default; + } +}); +Object.defineProperty(exports, "AutoDeleteRounded", { + enumerable: true, + get: function () { + return _AutoDeleteRounded.default; + } +}); +Object.defineProperty(exports, "AutoDeleteSharp", { + enumerable: true, + get: function () { + return _AutoDeleteSharp.default; + } +}); +Object.defineProperty(exports, "AutoDeleteTwoTone", { + enumerable: true, + get: function () { + return _AutoDeleteTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoFixHigh", { + enumerable: true, + get: function () { + return _AutoFixHigh.default; + } +}); +Object.defineProperty(exports, "AutoFixHighOutlined", { + enumerable: true, + get: function () { + return _AutoFixHighOutlined.default; + } +}); +Object.defineProperty(exports, "AutoFixHighRounded", { + enumerable: true, + get: function () { + return _AutoFixHighRounded.default; + } +}); +Object.defineProperty(exports, "AutoFixHighSharp", { + enumerable: true, + get: function () { + return _AutoFixHighSharp.default; + } +}); +Object.defineProperty(exports, "AutoFixHighTwoTone", { + enumerable: true, + get: function () { + return _AutoFixHighTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoFixNormal", { + enumerable: true, + get: function () { + return _AutoFixNormal.default; + } +}); +Object.defineProperty(exports, "AutoFixNormalOutlined", { + enumerable: true, + get: function () { + return _AutoFixNormalOutlined.default; + } +}); +Object.defineProperty(exports, "AutoFixNormalRounded", { + enumerable: true, + get: function () { + return _AutoFixNormalRounded.default; + } +}); +Object.defineProperty(exports, "AutoFixNormalSharp", { + enumerable: true, + get: function () { + return _AutoFixNormalSharp.default; + } +}); +Object.defineProperty(exports, "AutoFixNormalTwoTone", { + enumerable: true, + get: function () { + return _AutoFixNormalTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoFixOff", { + enumerable: true, + get: function () { + return _AutoFixOff.default; + } +}); +Object.defineProperty(exports, "AutoFixOffOutlined", { + enumerable: true, + get: function () { + return _AutoFixOffOutlined.default; + } +}); +Object.defineProperty(exports, "AutoFixOffRounded", { + enumerable: true, + get: function () { + return _AutoFixOffRounded.default; + } +}); +Object.defineProperty(exports, "AutoFixOffSharp", { + enumerable: true, + get: function () { + return _AutoFixOffSharp.default; + } +}); +Object.defineProperty(exports, "AutoFixOffTwoTone", { + enumerable: true, + get: function () { + return _AutoFixOffTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoGraph", { + enumerable: true, + get: function () { + return _AutoGraph.default; + } +}); +Object.defineProperty(exports, "AutoGraphOutlined", { + enumerable: true, + get: function () { + return _AutoGraphOutlined.default; + } +}); +Object.defineProperty(exports, "AutoGraphRounded", { + enumerable: true, + get: function () { + return _AutoGraphRounded.default; + } +}); +Object.defineProperty(exports, "AutoGraphSharp", { + enumerable: true, + get: function () { + return _AutoGraphSharp.default; + } +}); +Object.defineProperty(exports, "AutoGraphTwoTone", { + enumerable: true, + get: function () { + return _AutoGraphTwoTone.default; + } +}); +Object.defineProperty(exports, "AutoStories", { + enumerable: true, + get: function () { + return _AutoStories.default; + } +}); +Object.defineProperty(exports, "AutoStoriesOutlined", { + enumerable: true, + get: function () { + return _AutoStoriesOutlined.default; + } +}); +Object.defineProperty(exports, "AutoStoriesRounded", { + enumerable: true, + get: function () { + return _AutoStoriesRounded.default; + } +}); +Object.defineProperty(exports, "AutoStoriesSharp", { + enumerable: true, + get: function () { + return _AutoStoriesSharp.default; + } +}); +Object.defineProperty(exports, "AutoStoriesTwoTone", { + enumerable: true, + get: function () { + return _AutoStoriesTwoTone.default; + } +}); +Object.defineProperty(exports, "AutofpsSelect", { + enumerable: true, + get: function () { + return _AutofpsSelect.default; + } +}); +Object.defineProperty(exports, "AutofpsSelectOutlined", { + enumerable: true, + get: function () { + return _AutofpsSelectOutlined.default; + } +}); +Object.defineProperty(exports, "AutofpsSelectRounded", { + enumerable: true, + get: function () { + return _AutofpsSelectRounded.default; + } +}); +Object.defineProperty(exports, "AutofpsSelectSharp", { + enumerable: true, + get: function () { + return _AutofpsSelectSharp.default; + } +}); +Object.defineProperty(exports, "AutofpsSelectTwoTone", { + enumerable: true, + get: function () { + return _AutofpsSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "Autorenew", { + enumerable: true, + get: function () { + return _Autorenew.default; + } +}); +Object.defineProperty(exports, "AutorenewOutlined", { + enumerable: true, + get: function () { + return _AutorenewOutlined.default; + } +}); +Object.defineProperty(exports, "AutorenewRounded", { + enumerable: true, + get: function () { + return _AutorenewRounded.default; + } +}); +Object.defineProperty(exports, "AutorenewSharp", { + enumerable: true, + get: function () { + return _AutorenewSharp.default; + } +}); +Object.defineProperty(exports, "AutorenewTwoTone", { + enumerable: true, + get: function () { + return _AutorenewTwoTone.default; + } +}); +Object.defineProperty(exports, "AvTimer", { + enumerable: true, + get: function () { + return _AvTimer.default; + } +}); +Object.defineProperty(exports, "AvTimerOutlined", { + enumerable: true, + get: function () { + return _AvTimerOutlined.default; + } +}); +Object.defineProperty(exports, "AvTimerRounded", { + enumerable: true, + get: function () { + return _AvTimerRounded.default; + } +}); +Object.defineProperty(exports, "AvTimerSharp", { + enumerable: true, + get: function () { + return _AvTimerSharp.default; + } +}); +Object.defineProperty(exports, "AvTimerTwoTone", { + enumerable: true, + get: function () { + return _AvTimerTwoTone.default; + } +}); +Object.defineProperty(exports, "BabyChangingStation", { + enumerable: true, + get: function () { + return _BabyChangingStation.default; + } +}); +Object.defineProperty(exports, "BabyChangingStationOutlined", { + enumerable: true, + get: function () { + return _BabyChangingStationOutlined.default; + } +}); +Object.defineProperty(exports, "BabyChangingStationRounded", { + enumerable: true, + get: function () { + return _BabyChangingStationRounded.default; + } +}); +Object.defineProperty(exports, "BabyChangingStationSharp", { + enumerable: true, + get: function () { + return _BabyChangingStationSharp.default; + } +}); +Object.defineProperty(exports, "BabyChangingStationTwoTone", { + enumerable: true, + get: function () { + return _BabyChangingStationTwoTone.default; + } +}); +Object.defineProperty(exports, "Backpack", { + enumerable: true, + get: function () { + return _Backpack.default; + } +}); +Object.defineProperty(exports, "BackpackOutlined", { + enumerable: true, + get: function () { + return _BackpackOutlined.default; + } +}); +Object.defineProperty(exports, "BackpackRounded", { + enumerable: true, + get: function () { + return _BackpackRounded.default; + } +}); +Object.defineProperty(exports, "BackpackSharp", { + enumerable: true, + get: function () { + return _BackpackSharp.default; + } +}); +Object.defineProperty(exports, "BackpackTwoTone", { + enumerable: true, + get: function () { + return _BackpackTwoTone.default; + } +}); +Object.defineProperty(exports, "Backspace", { + enumerable: true, + get: function () { + return _Backspace.default; + } +}); +Object.defineProperty(exports, "BackspaceOutlined", { + enumerable: true, + get: function () { + return _BackspaceOutlined.default; + } +}); +Object.defineProperty(exports, "BackspaceRounded", { + enumerable: true, + get: function () { + return _BackspaceRounded.default; + } +}); +Object.defineProperty(exports, "BackspaceSharp", { + enumerable: true, + get: function () { + return _BackspaceSharp.default; + } +}); +Object.defineProperty(exports, "BackspaceTwoTone", { + enumerable: true, + get: function () { + return _BackspaceTwoTone.default; + } +}); +Object.defineProperty(exports, "Backup", { + enumerable: true, + get: function () { + return _Backup.default; + } +}); +Object.defineProperty(exports, "BackupOutlined", { + enumerable: true, + get: function () { + return _BackupOutlined.default; + } +}); +Object.defineProperty(exports, "BackupRounded", { + enumerable: true, + get: function () { + return _BackupRounded.default; + } +}); +Object.defineProperty(exports, "BackupSharp", { + enumerable: true, + get: function () { + return _BackupSharp.default; + } +}); +Object.defineProperty(exports, "BackupTable", { + enumerable: true, + get: function () { + return _BackupTable.default; + } +}); +Object.defineProperty(exports, "BackupTableOutlined", { + enumerable: true, + get: function () { + return _BackupTableOutlined.default; + } +}); +Object.defineProperty(exports, "BackupTableRounded", { + enumerable: true, + get: function () { + return _BackupTableRounded.default; + } +}); +Object.defineProperty(exports, "BackupTableSharp", { + enumerable: true, + get: function () { + return _BackupTableSharp.default; + } +}); +Object.defineProperty(exports, "BackupTableTwoTone", { + enumerable: true, + get: function () { + return _BackupTableTwoTone.default; + } +}); +Object.defineProperty(exports, "BackupTwoTone", { + enumerable: true, + get: function () { + return _BackupTwoTone.default; + } +}); +Object.defineProperty(exports, "Badge", { + enumerable: true, + get: function () { + return _Badge.default; + } +}); +Object.defineProperty(exports, "BadgeOutlined", { + enumerable: true, + get: function () { + return _BadgeOutlined.default; + } +}); +Object.defineProperty(exports, "BadgeRounded", { + enumerable: true, + get: function () { + return _BadgeRounded.default; + } +}); +Object.defineProperty(exports, "BadgeSharp", { + enumerable: true, + get: function () { + return _BadgeSharp.default; + } +}); +Object.defineProperty(exports, "BadgeTwoTone", { + enumerable: true, + get: function () { + return _BadgeTwoTone.default; + } +}); +Object.defineProperty(exports, "BakeryDining", { + enumerable: true, + get: function () { + return _BakeryDining.default; + } +}); +Object.defineProperty(exports, "BakeryDiningOutlined", { + enumerable: true, + get: function () { + return _BakeryDiningOutlined.default; + } +}); +Object.defineProperty(exports, "BakeryDiningRounded", { + enumerable: true, + get: function () { + return _BakeryDiningRounded.default; + } +}); +Object.defineProperty(exports, "BakeryDiningSharp", { + enumerable: true, + get: function () { + return _BakeryDiningSharp.default; + } +}); +Object.defineProperty(exports, "BakeryDiningTwoTone", { + enumerable: true, + get: function () { + return _BakeryDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "Balcony", { + enumerable: true, + get: function () { + return _Balcony.default; + } +}); +Object.defineProperty(exports, "BalconyOutlined", { + enumerable: true, + get: function () { + return _BalconyOutlined.default; + } +}); +Object.defineProperty(exports, "BalconyRounded", { + enumerable: true, + get: function () { + return _BalconyRounded.default; + } +}); +Object.defineProperty(exports, "BalconySharp", { + enumerable: true, + get: function () { + return _BalconySharp.default; + } +}); +Object.defineProperty(exports, "BalconyTwoTone", { + enumerable: true, + get: function () { + return _BalconyTwoTone.default; + } +}); +Object.defineProperty(exports, "Ballot", { + enumerable: true, + get: function () { + return _Ballot.default; + } +}); +Object.defineProperty(exports, "BallotOutlined", { + enumerable: true, + get: function () { + return _BallotOutlined.default; + } +}); +Object.defineProperty(exports, "BallotRounded", { + enumerable: true, + get: function () { + return _BallotRounded.default; + } +}); +Object.defineProperty(exports, "BallotSharp", { + enumerable: true, + get: function () { + return _BallotSharp.default; + } +}); +Object.defineProperty(exports, "BallotTwoTone", { + enumerable: true, + get: function () { + return _BallotTwoTone.default; + } +}); +Object.defineProperty(exports, "BarChart", { + enumerable: true, + get: function () { + return _BarChart.default; + } +}); +Object.defineProperty(exports, "BarChartOutlined", { + enumerable: true, + get: function () { + return _BarChartOutlined.default; + } +}); +Object.defineProperty(exports, "BarChartRounded", { + enumerable: true, + get: function () { + return _BarChartRounded.default; + } +}); +Object.defineProperty(exports, "BarChartSharp", { + enumerable: true, + get: function () { + return _BarChartSharp.default; + } +}); +Object.defineProperty(exports, "BarChartTwoTone", { + enumerable: true, + get: function () { + return _BarChartTwoTone.default; + } +}); +Object.defineProperty(exports, "BatchPrediction", { + enumerable: true, + get: function () { + return _BatchPrediction.default; + } +}); +Object.defineProperty(exports, "BatchPredictionOutlined", { + enumerable: true, + get: function () { + return _BatchPredictionOutlined.default; + } +}); +Object.defineProperty(exports, "BatchPredictionRounded", { + enumerable: true, + get: function () { + return _BatchPredictionRounded.default; + } +}); +Object.defineProperty(exports, "BatchPredictionSharp", { + enumerable: true, + get: function () { + return _BatchPredictionSharp.default; + } +}); +Object.defineProperty(exports, "BatchPredictionTwoTone", { + enumerable: true, + get: function () { + return _BatchPredictionTwoTone.default; + } +}); +Object.defineProperty(exports, "Bathroom", { + enumerable: true, + get: function () { + return _Bathroom.default; + } +}); +Object.defineProperty(exports, "BathroomOutlined", { + enumerable: true, + get: function () { + return _BathroomOutlined.default; + } +}); +Object.defineProperty(exports, "BathroomRounded", { + enumerable: true, + get: function () { + return _BathroomRounded.default; + } +}); +Object.defineProperty(exports, "BathroomSharp", { + enumerable: true, + get: function () { + return _BathroomSharp.default; + } +}); +Object.defineProperty(exports, "BathroomTwoTone", { + enumerable: true, + get: function () { + return _BathroomTwoTone.default; + } +}); +Object.defineProperty(exports, "Bathtub", { + enumerable: true, + get: function () { + return _Bathtub.default; + } +}); +Object.defineProperty(exports, "BathtubOutlined", { + enumerable: true, + get: function () { + return _BathtubOutlined.default; + } +}); +Object.defineProperty(exports, "BathtubRounded", { + enumerable: true, + get: function () { + return _BathtubRounded.default; + } +}); +Object.defineProperty(exports, "BathtubSharp", { + enumerable: true, + get: function () { + return _BathtubSharp.default; + } +}); +Object.defineProperty(exports, "BathtubTwoTone", { + enumerable: true, + get: function () { + return _BathtubTwoTone.default; + } +}); +Object.defineProperty(exports, "Battery20", { + enumerable: true, + get: function () { + return _Battery.default; + } +}); +Object.defineProperty(exports, "Battery20Outlined", { + enumerable: true, + get: function () { + return _Battery20Outlined.default; + } +}); +Object.defineProperty(exports, "Battery20Rounded", { + enumerable: true, + get: function () { + return _Battery20Rounded.default; + } +}); +Object.defineProperty(exports, "Battery20Sharp", { + enumerable: true, + get: function () { + return _Battery20Sharp.default; + } +}); +Object.defineProperty(exports, "Battery20TwoTone", { + enumerable: true, + get: function () { + return _Battery20TwoTone.default; + } +}); +Object.defineProperty(exports, "Battery30", { + enumerable: true, + get: function () { + return _Battery2.default; + } +}); +Object.defineProperty(exports, "Battery30Outlined", { + enumerable: true, + get: function () { + return _Battery30Outlined.default; + } +}); +Object.defineProperty(exports, "Battery30Rounded", { + enumerable: true, + get: function () { + return _Battery30Rounded.default; + } +}); +Object.defineProperty(exports, "Battery30Sharp", { + enumerable: true, + get: function () { + return _Battery30Sharp.default; + } +}); +Object.defineProperty(exports, "Battery30TwoTone", { + enumerable: true, + get: function () { + return _Battery30TwoTone.default; + } +}); +Object.defineProperty(exports, "Battery50", { + enumerable: true, + get: function () { + return _Battery3.default; + } +}); +Object.defineProperty(exports, "Battery50Outlined", { + enumerable: true, + get: function () { + return _Battery50Outlined.default; + } +}); +Object.defineProperty(exports, "Battery50Rounded", { + enumerable: true, + get: function () { + return _Battery50Rounded.default; + } +}); +Object.defineProperty(exports, "Battery50Sharp", { + enumerable: true, + get: function () { + return _Battery50Sharp.default; + } +}); +Object.defineProperty(exports, "Battery50TwoTone", { + enumerable: true, + get: function () { + return _Battery50TwoTone.default; + } +}); +Object.defineProperty(exports, "Battery60", { + enumerable: true, + get: function () { + return _Battery4.default; + } +}); +Object.defineProperty(exports, "Battery60Outlined", { + enumerable: true, + get: function () { + return _Battery60Outlined.default; + } +}); +Object.defineProperty(exports, "Battery60Rounded", { + enumerable: true, + get: function () { + return _Battery60Rounded.default; + } +}); +Object.defineProperty(exports, "Battery60Sharp", { + enumerable: true, + get: function () { + return _Battery60Sharp.default; + } +}); +Object.defineProperty(exports, "Battery60TwoTone", { + enumerable: true, + get: function () { + return _Battery60TwoTone.default; + } +}); +Object.defineProperty(exports, "Battery80", { + enumerable: true, + get: function () { + return _Battery5.default; + } +}); +Object.defineProperty(exports, "Battery80Outlined", { + enumerable: true, + get: function () { + return _Battery80Outlined.default; + } +}); +Object.defineProperty(exports, "Battery80Rounded", { + enumerable: true, + get: function () { + return _Battery80Rounded.default; + } +}); +Object.defineProperty(exports, "Battery80Sharp", { + enumerable: true, + get: function () { + return _Battery80Sharp.default; + } +}); +Object.defineProperty(exports, "Battery80TwoTone", { + enumerable: true, + get: function () { + return _Battery80TwoTone.default; + } +}); +Object.defineProperty(exports, "Battery90", { + enumerable: true, + get: function () { + return _Battery6.default; + } +}); +Object.defineProperty(exports, "Battery90Outlined", { + enumerable: true, + get: function () { + return _Battery90Outlined.default; + } +}); +Object.defineProperty(exports, "Battery90Rounded", { + enumerable: true, + get: function () { + return _Battery90Rounded.default; + } +}); +Object.defineProperty(exports, "Battery90Sharp", { + enumerable: true, + get: function () { + return _Battery90Sharp.default; + } +}); +Object.defineProperty(exports, "Battery90TwoTone", { + enumerable: true, + get: function () { + return _Battery90TwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryAlert", { + enumerable: true, + get: function () { + return _BatteryAlert.default; + } +}); +Object.defineProperty(exports, "BatteryAlertOutlined", { + enumerable: true, + get: function () { + return _BatteryAlertOutlined.default; + } +}); +Object.defineProperty(exports, "BatteryAlertRounded", { + enumerable: true, + get: function () { + return _BatteryAlertRounded.default; + } +}); +Object.defineProperty(exports, "BatteryAlertSharp", { + enumerable: true, + get: function () { + return _BatteryAlertSharp.default; + } +}); +Object.defineProperty(exports, "BatteryAlertTwoTone", { + enumerable: true, + get: function () { + return _BatteryAlertTwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryCharging20", { + enumerable: true, + get: function () { + return _BatteryCharging.default; + } +}); +Object.defineProperty(exports, "BatteryCharging20Outlined", { + enumerable: true, + get: function () { + return _BatteryCharging20Outlined.default; + } +}); +Object.defineProperty(exports, "BatteryCharging20Rounded", { + enumerable: true, + get: function () { + return _BatteryCharging20Rounded.default; + } +}); +Object.defineProperty(exports, "BatteryCharging20Sharp", { + enumerable: true, + get: function () { + return _BatteryCharging20Sharp.default; + } +}); +Object.defineProperty(exports, "BatteryCharging20TwoTone", { + enumerable: true, + get: function () { + return _BatteryCharging20TwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryCharging30", { + enumerable: true, + get: function () { + return _BatteryCharging2.default; + } +}); +Object.defineProperty(exports, "BatteryCharging30Outlined", { + enumerable: true, + get: function () { + return _BatteryCharging30Outlined.default; + } +}); +Object.defineProperty(exports, "BatteryCharging30Rounded", { + enumerable: true, + get: function () { + return _BatteryCharging30Rounded.default; + } +}); +Object.defineProperty(exports, "BatteryCharging30Sharp", { + enumerable: true, + get: function () { + return _BatteryCharging30Sharp.default; + } +}); +Object.defineProperty(exports, "BatteryCharging30TwoTone", { + enumerable: true, + get: function () { + return _BatteryCharging30TwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryCharging50", { + enumerable: true, + get: function () { + return _BatteryCharging3.default; + } +}); +Object.defineProperty(exports, "BatteryCharging50Outlined", { + enumerable: true, + get: function () { + return _BatteryCharging50Outlined.default; + } +}); +Object.defineProperty(exports, "BatteryCharging50Rounded", { + enumerable: true, + get: function () { + return _BatteryCharging50Rounded.default; + } +}); +Object.defineProperty(exports, "BatteryCharging50Sharp", { + enumerable: true, + get: function () { + return _BatteryCharging50Sharp.default; + } +}); +Object.defineProperty(exports, "BatteryCharging50TwoTone", { + enumerable: true, + get: function () { + return _BatteryCharging50TwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryCharging60", { + enumerable: true, + get: function () { + return _BatteryCharging4.default; + } +}); +Object.defineProperty(exports, "BatteryCharging60Outlined", { + enumerable: true, + get: function () { + return _BatteryCharging60Outlined.default; + } +}); +Object.defineProperty(exports, "BatteryCharging60Rounded", { + enumerable: true, + get: function () { + return _BatteryCharging60Rounded.default; + } +}); +Object.defineProperty(exports, "BatteryCharging60Sharp", { + enumerable: true, + get: function () { + return _BatteryCharging60Sharp.default; + } +}); +Object.defineProperty(exports, "BatteryCharging60TwoTone", { + enumerable: true, + get: function () { + return _BatteryCharging60TwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryCharging80", { + enumerable: true, + get: function () { + return _BatteryCharging5.default; + } +}); +Object.defineProperty(exports, "BatteryCharging80Outlined", { + enumerable: true, + get: function () { + return _BatteryCharging80Outlined.default; + } +}); +Object.defineProperty(exports, "BatteryCharging80Rounded", { + enumerable: true, + get: function () { + return _BatteryCharging80Rounded.default; + } +}); +Object.defineProperty(exports, "BatteryCharging80Sharp", { + enumerable: true, + get: function () { + return _BatteryCharging80Sharp.default; + } +}); +Object.defineProperty(exports, "BatteryCharging80TwoTone", { + enumerable: true, + get: function () { + return _BatteryCharging80TwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryCharging90", { + enumerable: true, + get: function () { + return _BatteryCharging6.default; + } +}); +Object.defineProperty(exports, "BatteryCharging90Outlined", { + enumerable: true, + get: function () { + return _BatteryCharging90Outlined.default; + } +}); +Object.defineProperty(exports, "BatteryCharging90Rounded", { + enumerable: true, + get: function () { + return _BatteryCharging90Rounded.default; + } +}); +Object.defineProperty(exports, "BatteryCharging90Sharp", { + enumerable: true, + get: function () { + return _BatteryCharging90Sharp.default; + } +}); +Object.defineProperty(exports, "BatteryCharging90TwoTone", { + enumerable: true, + get: function () { + return _BatteryCharging90TwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryChargingFull", { + enumerable: true, + get: function () { + return _BatteryChargingFull.default; + } +}); +Object.defineProperty(exports, "BatteryChargingFullOutlined", { + enumerable: true, + get: function () { + return _BatteryChargingFullOutlined.default; + } +}); +Object.defineProperty(exports, "BatteryChargingFullRounded", { + enumerable: true, + get: function () { + return _BatteryChargingFullRounded.default; + } +}); +Object.defineProperty(exports, "BatteryChargingFullSharp", { + enumerable: true, + get: function () { + return _BatteryChargingFullSharp.default; + } +}); +Object.defineProperty(exports, "BatteryChargingFullTwoTone", { + enumerable: true, + get: function () { + return _BatteryChargingFullTwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryFull", { + enumerable: true, + get: function () { + return _BatteryFull.default; + } +}); +Object.defineProperty(exports, "BatteryFullOutlined", { + enumerable: true, + get: function () { + return _BatteryFullOutlined.default; + } +}); +Object.defineProperty(exports, "BatteryFullRounded", { + enumerable: true, + get: function () { + return _BatteryFullRounded.default; + } +}); +Object.defineProperty(exports, "BatteryFullSharp", { + enumerable: true, + get: function () { + return _BatteryFullSharp.default; + } +}); +Object.defineProperty(exports, "BatteryFullTwoTone", { + enumerable: true, + get: function () { + return _BatteryFullTwoTone.default; + } +}); +Object.defineProperty(exports, "BatterySaver", { + enumerable: true, + get: function () { + return _BatterySaver.default; + } +}); +Object.defineProperty(exports, "BatterySaverOutlined", { + enumerable: true, + get: function () { + return _BatterySaverOutlined.default; + } +}); +Object.defineProperty(exports, "BatterySaverRounded", { + enumerable: true, + get: function () { + return _BatterySaverRounded.default; + } +}); +Object.defineProperty(exports, "BatterySaverSharp", { + enumerable: true, + get: function () { + return _BatterySaverSharp.default; + } +}); +Object.defineProperty(exports, "BatterySaverTwoTone", { + enumerable: true, + get: function () { + return _BatterySaverTwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryStd", { + enumerable: true, + get: function () { + return _BatteryStd.default; + } +}); +Object.defineProperty(exports, "BatteryStdOutlined", { + enumerable: true, + get: function () { + return _BatteryStdOutlined.default; + } +}); +Object.defineProperty(exports, "BatteryStdRounded", { + enumerable: true, + get: function () { + return _BatteryStdRounded.default; + } +}); +Object.defineProperty(exports, "BatteryStdSharp", { + enumerable: true, + get: function () { + return _BatteryStdSharp.default; + } +}); +Object.defineProperty(exports, "BatteryStdTwoTone", { + enumerable: true, + get: function () { + return _BatteryStdTwoTone.default; + } +}); +Object.defineProperty(exports, "BatteryUnknown", { + enumerable: true, + get: function () { + return _BatteryUnknown.default; + } +}); +Object.defineProperty(exports, "BatteryUnknownOutlined", { + enumerable: true, + get: function () { + return _BatteryUnknownOutlined.default; + } +}); +Object.defineProperty(exports, "BatteryUnknownRounded", { + enumerable: true, + get: function () { + return _BatteryUnknownRounded.default; + } +}); +Object.defineProperty(exports, "BatteryUnknownSharp", { + enumerable: true, + get: function () { + return _BatteryUnknownSharp.default; + } +}); +Object.defineProperty(exports, "BatteryUnknownTwoTone", { + enumerable: true, + get: function () { + return _BatteryUnknownTwoTone.default; + } +}); +Object.defineProperty(exports, "BeachAccess", { + enumerable: true, + get: function () { + return _BeachAccess.default; + } +}); +Object.defineProperty(exports, "BeachAccessOutlined", { + enumerable: true, + get: function () { + return _BeachAccessOutlined.default; + } +}); +Object.defineProperty(exports, "BeachAccessRounded", { + enumerable: true, + get: function () { + return _BeachAccessRounded.default; + } +}); +Object.defineProperty(exports, "BeachAccessSharp", { + enumerable: true, + get: function () { + return _BeachAccessSharp.default; + } +}); +Object.defineProperty(exports, "BeachAccessTwoTone", { + enumerable: true, + get: function () { + return _BeachAccessTwoTone.default; + } +}); +Object.defineProperty(exports, "Bed", { + enumerable: true, + get: function () { + return _Bed.default; + } +}); +Object.defineProperty(exports, "BedOutlined", { + enumerable: true, + get: function () { + return _BedOutlined.default; + } +}); +Object.defineProperty(exports, "BedRounded", { + enumerable: true, + get: function () { + return _BedRounded.default; + } +}); +Object.defineProperty(exports, "BedSharp", { + enumerable: true, + get: function () { + return _BedSharp.default; + } +}); +Object.defineProperty(exports, "BedTwoTone", { + enumerable: true, + get: function () { + return _BedTwoTone.default; + } +}); +Object.defineProperty(exports, "BedroomBaby", { + enumerable: true, + get: function () { + return _BedroomBaby.default; + } +}); +Object.defineProperty(exports, "BedroomBabyOutlined", { + enumerable: true, + get: function () { + return _BedroomBabyOutlined.default; + } +}); +Object.defineProperty(exports, "BedroomBabyRounded", { + enumerable: true, + get: function () { + return _BedroomBabyRounded.default; + } +}); +Object.defineProperty(exports, "BedroomBabySharp", { + enumerable: true, + get: function () { + return _BedroomBabySharp.default; + } +}); +Object.defineProperty(exports, "BedroomBabyTwoTone", { + enumerable: true, + get: function () { + return _BedroomBabyTwoTone.default; + } +}); +Object.defineProperty(exports, "BedroomChild", { + enumerable: true, + get: function () { + return _BedroomChild.default; + } +}); +Object.defineProperty(exports, "BedroomChildOutlined", { + enumerable: true, + get: function () { + return _BedroomChildOutlined.default; + } +}); +Object.defineProperty(exports, "BedroomChildRounded", { + enumerable: true, + get: function () { + return _BedroomChildRounded.default; + } +}); +Object.defineProperty(exports, "BedroomChildSharp", { + enumerable: true, + get: function () { + return _BedroomChildSharp.default; + } +}); +Object.defineProperty(exports, "BedroomChildTwoTone", { + enumerable: true, + get: function () { + return _BedroomChildTwoTone.default; + } +}); +Object.defineProperty(exports, "BedroomParent", { + enumerable: true, + get: function () { + return _BedroomParent.default; + } +}); +Object.defineProperty(exports, "BedroomParentOutlined", { + enumerable: true, + get: function () { + return _BedroomParentOutlined.default; + } +}); +Object.defineProperty(exports, "BedroomParentRounded", { + enumerable: true, + get: function () { + return _BedroomParentRounded.default; + } +}); +Object.defineProperty(exports, "BedroomParentSharp", { + enumerable: true, + get: function () { + return _BedroomParentSharp.default; + } +}); +Object.defineProperty(exports, "BedroomParentTwoTone", { + enumerable: true, + get: function () { + return _BedroomParentTwoTone.default; + } +}); +Object.defineProperty(exports, "Bedtime", { + enumerable: true, + get: function () { + return _Bedtime.default; + } +}); +Object.defineProperty(exports, "BedtimeOutlined", { + enumerable: true, + get: function () { + return _BedtimeOutlined.default; + } +}); +Object.defineProperty(exports, "BedtimeRounded", { + enumerable: true, + get: function () { + return _BedtimeRounded.default; + } +}); +Object.defineProperty(exports, "BedtimeSharp", { + enumerable: true, + get: function () { + return _BedtimeSharp.default; + } +}); +Object.defineProperty(exports, "BedtimeTwoTone", { + enumerable: true, + get: function () { + return _BedtimeTwoTone.default; + } +}); +Object.defineProperty(exports, "Beenhere", { + enumerable: true, + get: function () { + return _Beenhere.default; + } +}); +Object.defineProperty(exports, "BeenhereOutlined", { + enumerable: true, + get: function () { + return _BeenhereOutlined.default; + } +}); +Object.defineProperty(exports, "BeenhereRounded", { + enumerable: true, + get: function () { + return _BeenhereRounded.default; + } +}); +Object.defineProperty(exports, "BeenhereSharp", { + enumerable: true, + get: function () { + return _BeenhereSharp.default; + } +}); +Object.defineProperty(exports, "BeenhereTwoTone", { + enumerable: true, + get: function () { + return _BeenhereTwoTone.default; + } +}); +Object.defineProperty(exports, "Bento", { + enumerable: true, + get: function () { + return _Bento.default; + } +}); +Object.defineProperty(exports, "BentoOutlined", { + enumerable: true, + get: function () { + return _BentoOutlined.default; + } +}); +Object.defineProperty(exports, "BentoRounded", { + enumerable: true, + get: function () { + return _BentoRounded.default; + } +}); +Object.defineProperty(exports, "BentoSharp", { + enumerable: true, + get: function () { + return _BentoSharp.default; + } +}); +Object.defineProperty(exports, "BentoTwoTone", { + enumerable: true, + get: function () { + return _BentoTwoTone.default; + } +}); +Object.defineProperty(exports, "BikeScooter", { + enumerable: true, + get: function () { + return _BikeScooter.default; + } +}); +Object.defineProperty(exports, "BikeScooterOutlined", { + enumerable: true, + get: function () { + return _BikeScooterOutlined.default; + } +}); +Object.defineProperty(exports, "BikeScooterRounded", { + enumerable: true, + get: function () { + return _BikeScooterRounded.default; + } +}); +Object.defineProperty(exports, "BikeScooterSharp", { + enumerable: true, + get: function () { + return _BikeScooterSharp.default; + } +}); +Object.defineProperty(exports, "BikeScooterTwoTone", { + enumerable: true, + get: function () { + return _BikeScooterTwoTone.default; + } +}); +Object.defineProperty(exports, "Biotech", { + enumerable: true, + get: function () { + return _Biotech.default; + } +}); +Object.defineProperty(exports, "BiotechOutlined", { + enumerable: true, + get: function () { + return _BiotechOutlined.default; + } +}); +Object.defineProperty(exports, "BiotechRounded", { + enumerable: true, + get: function () { + return _BiotechRounded.default; + } +}); +Object.defineProperty(exports, "BiotechSharp", { + enumerable: true, + get: function () { + return _BiotechSharp.default; + } +}); +Object.defineProperty(exports, "BiotechTwoTone", { + enumerable: true, + get: function () { + return _BiotechTwoTone.default; + } +}); +Object.defineProperty(exports, "Blender", { + enumerable: true, + get: function () { + return _Blender.default; + } +}); +Object.defineProperty(exports, "BlenderOutlined", { + enumerable: true, + get: function () { + return _BlenderOutlined.default; + } +}); +Object.defineProperty(exports, "BlenderRounded", { + enumerable: true, + get: function () { + return _BlenderRounded.default; + } +}); +Object.defineProperty(exports, "BlenderSharp", { + enumerable: true, + get: function () { + return _BlenderSharp.default; + } +}); +Object.defineProperty(exports, "BlenderTwoTone", { + enumerable: true, + get: function () { + return _BlenderTwoTone.default; + } +}); +Object.defineProperty(exports, "Block", { + enumerable: true, + get: function () { + return _Block.default; + } +}); +Object.defineProperty(exports, "BlockOutlined", { + enumerable: true, + get: function () { + return _BlockOutlined.default; + } +}); +Object.defineProperty(exports, "BlockRounded", { + enumerable: true, + get: function () { + return _BlockRounded.default; + } +}); +Object.defineProperty(exports, "BlockSharp", { + enumerable: true, + get: function () { + return _BlockSharp.default; + } +}); +Object.defineProperty(exports, "BlockTwoTone", { + enumerable: true, + get: function () { + return _BlockTwoTone.default; + } +}); +Object.defineProperty(exports, "Bloodtype", { + enumerable: true, + get: function () { + return _Bloodtype.default; + } +}); +Object.defineProperty(exports, "BloodtypeOutlined", { + enumerable: true, + get: function () { + return _BloodtypeOutlined.default; + } +}); +Object.defineProperty(exports, "BloodtypeRounded", { + enumerable: true, + get: function () { + return _BloodtypeRounded.default; + } +}); +Object.defineProperty(exports, "BloodtypeSharp", { + enumerable: true, + get: function () { + return _BloodtypeSharp.default; + } +}); +Object.defineProperty(exports, "BloodtypeTwoTone", { + enumerable: true, + get: function () { + return _BloodtypeTwoTone.default; + } +}); +Object.defineProperty(exports, "Bluetooth", { + enumerable: true, + get: function () { + return _Bluetooth.default; + } +}); +Object.defineProperty(exports, "BluetoothAudio", { + enumerable: true, + get: function () { + return _BluetoothAudio.default; + } +}); +Object.defineProperty(exports, "BluetoothAudioOutlined", { + enumerable: true, + get: function () { + return _BluetoothAudioOutlined.default; + } +}); +Object.defineProperty(exports, "BluetoothAudioRounded", { + enumerable: true, + get: function () { + return _BluetoothAudioRounded.default; + } +}); +Object.defineProperty(exports, "BluetoothAudioSharp", { + enumerable: true, + get: function () { + return _BluetoothAudioSharp.default; + } +}); +Object.defineProperty(exports, "BluetoothAudioTwoTone", { + enumerable: true, + get: function () { + return _BluetoothAudioTwoTone.default; + } +}); +Object.defineProperty(exports, "BluetoothConnected", { + enumerable: true, + get: function () { + return _BluetoothConnected.default; + } +}); +Object.defineProperty(exports, "BluetoothConnectedOutlined", { + enumerable: true, + get: function () { + return _BluetoothConnectedOutlined.default; + } +}); +Object.defineProperty(exports, "BluetoothConnectedRounded", { + enumerable: true, + get: function () { + return _BluetoothConnectedRounded.default; + } +}); +Object.defineProperty(exports, "BluetoothConnectedSharp", { + enumerable: true, + get: function () { + return _BluetoothConnectedSharp.default; + } +}); +Object.defineProperty(exports, "BluetoothConnectedTwoTone", { + enumerable: true, + get: function () { + return _BluetoothConnectedTwoTone.default; + } +}); +Object.defineProperty(exports, "BluetoothDisabled", { + enumerable: true, + get: function () { + return _BluetoothDisabled.default; + } +}); +Object.defineProperty(exports, "BluetoothDisabledOutlined", { + enumerable: true, + get: function () { + return _BluetoothDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "BluetoothDisabledRounded", { + enumerable: true, + get: function () { + return _BluetoothDisabledRounded.default; + } +}); +Object.defineProperty(exports, "BluetoothDisabledSharp", { + enumerable: true, + get: function () { + return _BluetoothDisabledSharp.default; + } +}); +Object.defineProperty(exports, "BluetoothDisabledTwoTone", { + enumerable: true, + get: function () { + return _BluetoothDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "BluetoothDrive", { + enumerable: true, + get: function () { + return _BluetoothDrive.default; + } +}); +Object.defineProperty(exports, "BluetoothDriveOutlined", { + enumerable: true, + get: function () { + return _BluetoothDriveOutlined.default; + } +}); +Object.defineProperty(exports, "BluetoothDriveRounded", { + enumerable: true, + get: function () { + return _BluetoothDriveRounded.default; + } +}); +Object.defineProperty(exports, "BluetoothDriveSharp", { + enumerable: true, + get: function () { + return _BluetoothDriveSharp.default; + } +}); +Object.defineProperty(exports, "BluetoothDriveTwoTone", { + enumerable: true, + get: function () { + return _BluetoothDriveTwoTone.default; + } +}); +Object.defineProperty(exports, "BluetoothOutlined", { + enumerable: true, + get: function () { + return _BluetoothOutlined.default; + } +}); +Object.defineProperty(exports, "BluetoothRounded", { + enumerable: true, + get: function () { + return _BluetoothRounded.default; + } +}); +Object.defineProperty(exports, "BluetoothSearching", { + enumerable: true, + get: function () { + return _BluetoothSearching.default; + } +}); +Object.defineProperty(exports, "BluetoothSearchingOutlined", { + enumerable: true, + get: function () { + return _BluetoothSearchingOutlined.default; + } +}); +Object.defineProperty(exports, "BluetoothSearchingRounded", { + enumerable: true, + get: function () { + return _BluetoothSearchingRounded.default; + } +}); +Object.defineProperty(exports, "BluetoothSearchingSharp", { + enumerable: true, + get: function () { + return _BluetoothSearchingSharp.default; + } +}); +Object.defineProperty(exports, "BluetoothSearchingTwoTone", { + enumerable: true, + get: function () { + return _BluetoothSearchingTwoTone.default; + } +}); +Object.defineProperty(exports, "BluetoothSharp", { + enumerable: true, + get: function () { + return _BluetoothSharp.default; + } +}); +Object.defineProperty(exports, "BluetoothTwoTone", { + enumerable: true, + get: function () { + return _BluetoothTwoTone.default; + } +}); +Object.defineProperty(exports, "BlurCircular", { + enumerable: true, + get: function () { + return _BlurCircular.default; + } +}); +Object.defineProperty(exports, "BlurCircularOutlined", { + enumerable: true, + get: function () { + return _BlurCircularOutlined.default; + } +}); +Object.defineProperty(exports, "BlurCircularRounded", { + enumerable: true, + get: function () { + return _BlurCircularRounded.default; + } +}); +Object.defineProperty(exports, "BlurCircularSharp", { + enumerable: true, + get: function () { + return _BlurCircularSharp.default; + } +}); +Object.defineProperty(exports, "BlurCircularTwoTone", { + enumerable: true, + get: function () { + return _BlurCircularTwoTone.default; + } +}); +Object.defineProperty(exports, "BlurLinear", { + enumerable: true, + get: function () { + return _BlurLinear.default; + } +}); +Object.defineProperty(exports, "BlurLinearOutlined", { + enumerable: true, + get: function () { + return _BlurLinearOutlined.default; + } +}); +Object.defineProperty(exports, "BlurLinearRounded", { + enumerable: true, + get: function () { + return _BlurLinearRounded.default; + } +}); +Object.defineProperty(exports, "BlurLinearSharp", { + enumerable: true, + get: function () { + return _BlurLinearSharp.default; + } +}); +Object.defineProperty(exports, "BlurLinearTwoTone", { + enumerable: true, + get: function () { + return _BlurLinearTwoTone.default; + } +}); +Object.defineProperty(exports, "BlurOff", { + enumerable: true, + get: function () { + return _BlurOff.default; + } +}); +Object.defineProperty(exports, "BlurOffOutlined", { + enumerable: true, + get: function () { + return _BlurOffOutlined.default; + } +}); +Object.defineProperty(exports, "BlurOffRounded", { + enumerable: true, + get: function () { + return _BlurOffRounded.default; + } +}); +Object.defineProperty(exports, "BlurOffSharp", { + enumerable: true, + get: function () { + return _BlurOffSharp.default; + } +}); +Object.defineProperty(exports, "BlurOffTwoTone", { + enumerable: true, + get: function () { + return _BlurOffTwoTone.default; + } +}); +Object.defineProperty(exports, "BlurOn", { + enumerable: true, + get: function () { + return _BlurOn.default; + } +}); +Object.defineProperty(exports, "BlurOnOutlined", { + enumerable: true, + get: function () { + return _BlurOnOutlined.default; + } +}); +Object.defineProperty(exports, "BlurOnRounded", { + enumerable: true, + get: function () { + return _BlurOnRounded.default; + } +}); +Object.defineProperty(exports, "BlurOnSharp", { + enumerable: true, + get: function () { + return _BlurOnSharp.default; + } +}); +Object.defineProperty(exports, "BlurOnTwoTone", { + enumerable: true, + get: function () { + return _BlurOnTwoTone.default; + } +}); +Object.defineProperty(exports, "Bolt", { + enumerable: true, + get: function () { + return _Bolt.default; + } +}); +Object.defineProperty(exports, "BoltOutlined", { + enumerable: true, + get: function () { + return _BoltOutlined.default; + } +}); +Object.defineProperty(exports, "BoltRounded", { + enumerable: true, + get: function () { + return _BoltRounded.default; + } +}); +Object.defineProperty(exports, "BoltSharp", { + enumerable: true, + get: function () { + return _BoltSharp.default; + } +}); +Object.defineProperty(exports, "BoltTwoTone", { + enumerable: true, + get: function () { + return _BoltTwoTone.default; + } +}); +Object.defineProperty(exports, "Book", { + enumerable: true, + get: function () { + return _Book.default; + } +}); +Object.defineProperty(exports, "BookOnline", { + enumerable: true, + get: function () { + return _BookOnline.default; + } +}); +Object.defineProperty(exports, "BookOnlineOutlined", { + enumerable: true, + get: function () { + return _BookOnlineOutlined.default; + } +}); +Object.defineProperty(exports, "BookOnlineRounded", { + enumerable: true, + get: function () { + return _BookOnlineRounded.default; + } +}); +Object.defineProperty(exports, "BookOnlineSharp", { + enumerable: true, + get: function () { + return _BookOnlineSharp.default; + } +}); +Object.defineProperty(exports, "BookOnlineTwoTone", { + enumerable: true, + get: function () { + return _BookOnlineTwoTone.default; + } +}); +Object.defineProperty(exports, "BookOutlined", { + enumerable: true, + get: function () { + return _BookOutlined.default; + } +}); +Object.defineProperty(exports, "BookRounded", { + enumerable: true, + get: function () { + return _BookRounded.default; + } +}); +Object.defineProperty(exports, "BookSharp", { + enumerable: true, + get: function () { + return _BookSharp.default; + } +}); +Object.defineProperty(exports, "BookTwoTone", { + enumerable: true, + get: function () { + return _BookTwoTone.default; + } +}); +Object.defineProperty(exports, "Bookmark", { + enumerable: true, + get: function () { + return _Bookmark.default; + } +}); +Object.defineProperty(exports, "BookmarkAdd", { + enumerable: true, + get: function () { + return _BookmarkAdd.default; + } +}); +Object.defineProperty(exports, "BookmarkAddOutlined", { + enumerable: true, + get: function () { + return _BookmarkAddOutlined.default; + } +}); +Object.defineProperty(exports, "BookmarkAddRounded", { + enumerable: true, + get: function () { + return _BookmarkAddRounded.default; + } +}); +Object.defineProperty(exports, "BookmarkAddSharp", { + enumerable: true, + get: function () { + return _BookmarkAddSharp.default; + } +}); +Object.defineProperty(exports, "BookmarkAddTwoTone", { + enumerable: true, + get: function () { + return _BookmarkAddTwoTone.default; + } +}); +Object.defineProperty(exports, "BookmarkAdded", { + enumerable: true, + get: function () { + return _BookmarkAdded.default; + } +}); +Object.defineProperty(exports, "BookmarkAddedOutlined", { + enumerable: true, + get: function () { + return _BookmarkAddedOutlined.default; + } +}); +Object.defineProperty(exports, "BookmarkAddedRounded", { + enumerable: true, + get: function () { + return _BookmarkAddedRounded.default; + } +}); +Object.defineProperty(exports, "BookmarkAddedSharp", { + enumerable: true, + get: function () { + return _BookmarkAddedSharp.default; + } +}); +Object.defineProperty(exports, "BookmarkAddedTwoTone", { + enumerable: true, + get: function () { + return _BookmarkAddedTwoTone.default; + } +}); +Object.defineProperty(exports, "BookmarkBorder", { + enumerable: true, + get: function () { + return _BookmarkBorder.default; + } +}); +Object.defineProperty(exports, "BookmarkBorderOutlined", { + enumerable: true, + get: function () { + return _BookmarkBorderOutlined.default; + } +}); +Object.defineProperty(exports, "BookmarkBorderRounded", { + enumerable: true, + get: function () { + return _BookmarkBorderRounded.default; + } +}); +Object.defineProperty(exports, "BookmarkBorderSharp", { + enumerable: true, + get: function () { + return _BookmarkBorderSharp.default; + } +}); +Object.defineProperty(exports, "BookmarkBorderTwoTone", { + enumerable: true, + get: function () { + return _BookmarkBorderTwoTone.default; + } +}); +Object.defineProperty(exports, "BookmarkOutlined", { + enumerable: true, + get: function () { + return _BookmarkOutlined.default; + } +}); +Object.defineProperty(exports, "BookmarkRemove", { + enumerable: true, + get: function () { + return _BookmarkRemove.default; + } +}); +Object.defineProperty(exports, "BookmarkRemoveOutlined", { + enumerable: true, + get: function () { + return _BookmarkRemoveOutlined.default; + } +}); +Object.defineProperty(exports, "BookmarkRemoveRounded", { + enumerable: true, + get: function () { + return _BookmarkRemoveRounded.default; + } +}); +Object.defineProperty(exports, "BookmarkRemoveSharp", { + enumerable: true, + get: function () { + return _BookmarkRemoveSharp.default; + } +}); +Object.defineProperty(exports, "BookmarkRemoveTwoTone", { + enumerable: true, + get: function () { + return _BookmarkRemoveTwoTone.default; + } +}); +Object.defineProperty(exports, "BookmarkRounded", { + enumerable: true, + get: function () { + return _BookmarkRounded.default; + } +}); +Object.defineProperty(exports, "BookmarkSharp", { + enumerable: true, + get: function () { + return _BookmarkSharp.default; + } +}); +Object.defineProperty(exports, "BookmarkTwoTone", { + enumerable: true, + get: function () { + return _BookmarkTwoTone.default; + } +}); +Object.defineProperty(exports, "Bookmarks", { + enumerable: true, + get: function () { + return _Bookmarks.default; + } +}); +Object.defineProperty(exports, "BookmarksOutlined", { + enumerable: true, + get: function () { + return _BookmarksOutlined.default; + } +}); +Object.defineProperty(exports, "BookmarksRounded", { + enumerable: true, + get: function () { + return _BookmarksRounded.default; + } +}); +Object.defineProperty(exports, "BookmarksSharp", { + enumerable: true, + get: function () { + return _BookmarksSharp.default; + } +}); +Object.defineProperty(exports, "BookmarksTwoTone", { + enumerable: true, + get: function () { + return _BookmarksTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderAll", { + enumerable: true, + get: function () { + return _BorderAll.default; + } +}); +Object.defineProperty(exports, "BorderAllOutlined", { + enumerable: true, + get: function () { + return _BorderAllOutlined.default; + } +}); +Object.defineProperty(exports, "BorderAllRounded", { + enumerable: true, + get: function () { + return _BorderAllRounded.default; + } +}); +Object.defineProperty(exports, "BorderAllSharp", { + enumerable: true, + get: function () { + return _BorderAllSharp.default; + } +}); +Object.defineProperty(exports, "BorderAllTwoTone", { + enumerable: true, + get: function () { + return _BorderAllTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderBottom", { + enumerable: true, + get: function () { + return _BorderBottom.default; + } +}); +Object.defineProperty(exports, "BorderBottomOutlined", { + enumerable: true, + get: function () { + return _BorderBottomOutlined.default; + } +}); +Object.defineProperty(exports, "BorderBottomRounded", { + enumerable: true, + get: function () { + return _BorderBottomRounded.default; + } +}); +Object.defineProperty(exports, "BorderBottomSharp", { + enumerable: true, + get: function () { + return _BorderBottomSharp.default; + } +}); +Object.defineProperty(exports, "BorderBottomTwoTone", { + enumerable: true, + get: function () { + return _BorderBottomTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderClear", { + enumerable: true, + get: function () { + return _BorderClear.default; + } +}); +Object.defineProperty(exports, "BorderClearOutlined", { + enumerable: true, + get: function () { + return _BorderClearOutlined.default; + } +}); +Object.defineProperty(exports, "BorderClearRounded", { + enumerable: true, + get: function () { + return _BorderClearRounded.default; + } +}); +Object.defineProperty(exports, "BorderClearSharp", { + enumerable: true, + get: function () { + return _BorderClearSharp.default; + } +}); +Object.defineProperty(exports, "BorderClearTwoTone", { + enumerable: true, + get: function () { + return _BorderClearTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderColor", { + enumerable: true, + get: function () { + return _BorderColor.default; + } +}); +Object.defineProperty(exports, "BorderColorOutlined", { + enumerable: true, + get: function () { + return _BorderColorOutlined.default; + } +}); +Object.defineProperty(exports, "BorderColorRounded", { + enumerable: true, + get: function () { + return _BorderColorRounded.default; + } +}); +Object.defineProperty(exports, "BorderColorSharp", { + enumerable: true, + get: function () { + return _BorderColorSharp.default; + } +}); +Object.defineProperty(exports, "BorderColorTwoTone", { + enumerable: true, + get: function () { + return _BorderColorTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderHorizontal", { + enumerable: true, + get: function () { + return _BorderHorizontal.default; + } +}); +Object.defineProperty(exports, "BorderHorizontalOutlined", { + enumerable: true, + get: function () { + return _BorderHorizontalOutlined.default; + } +}); +Object.defineProperty(exports, "BorderHorizontalRounded", { + enumerable: true, + get: function () { + return _BorderHorizontalRounded.default; + } +}); +Object.defineProperty(exports, "BorderHorizontalSharp", { + enumerable: true, + get: function () { + return _BorderHorizontalSharp.default; + } +}); +Object.defineProperty(exports, "BorderHorizontalTwoTone", { + enumerable: true, + get: function () { + return _BorderHorizontalTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderInner", { + enumerable: true, + get: function () { + return _BorderInner.default; + } +}); +Object.defineProperty(exports, "BorderInnerOutlined", { + enumerable: true, + get: function () { + return _BorderInnerOutlined.default; + } +}); +Object.defineProperty(exports, "BorderInnerRounded", { + enumerable: true, + get: function () { + return _BorderInnerRounded.default; + } +}); +Object.defineProperty(exports, "BorderInnerSharp", { + enumerable: true, + get: function () { + return _BorderInnerSharp.default; + } +}); +Object.defineProperty(exports, "BorderInnerTwoTone", { + enumerable: true, + get: function () { + return _BorderInnerTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderLeft", { + enumerable: true, + get: function () { + return _BorderLeft.default; + } +}); +Object.defineProperty(exports, "BorderLeftOutlined", { + enumerable: true, + get: function () { + return _BorderLeftOutlined.default; + } +}); +Object.defineProperty(exports, "BorderLeftRounded", { + enumerable: true, + get: function () { + return _BorderLeftRounded.default; + } +}); +Object.defineProperty(exports, "BorderLeftSharp", { + enumerable: true, + get: function () { + return _BorderLeftSharp.default; + } +}); +Object.defineProperty(exports, "BorderLeftTwoTone", { + enumerable: true, + get: function () { + return _BorderLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderOuter", { + enumerable: true, + get: function () { + return _BorderOuter.default; + } +}); +Object.defineProperty(exports, "BorderOuterOutlined", { + enumerable: true, + get: function () { + return _BorderOuterOutlined.default; + } +}); +Object.defineProperty(exports, "BorderOuterRounded", { + enumerable: true, + get: function () { + return _BorderOuterRounded.default; + } +}); +Object.defineProperty(exports, "BorderOuterSharp", { + enumerable: true, + get: function () { + return _BorderOuterSharp.default; + } +}); +Object.defineProperty(exports, "BorderOuterTwoTone", { + enumerable: true, + get: function () { + return _BorderOuterTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderRight", { + enumerable: true, + get: function () { + return _BorderRight.default; + } +}); +Object.defineProperty(exports, "BorderRightOutlined", { + enumerable: true, + get: function () { + return _BorderRightOutlined.default; + } +}); +Object.defineProperty(exports, "BorderRightRounded", { + enumerable: true, + get: function () { + return _BorderRightRounded.default; + } +}); +Object.defineProperty(exports, "BorderRightSharp", { + enumerable: true, + get: function () { + return _BorderRightSharp.default; + } +}); +Object.defineProperty(exports, "BorderRightTwoTone", { + enumerable: true, + get: function () { + return _BorderRightTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderStyle", { + enumerable: true, + get: function () { + return _BorderStyle.default; + } +}); +Object.defineProperty(exports, "BorderStyleOutlined", { + enumerable: true, + get: function () { + return _BorderStyleOutlined.default; + } +}); +Object.defineProperty(exports, "BorderStyleRounded", { + enumerable: true, + get: function () { + return _BorderStyleRounded.default; + } +}); +Object.defineProperty(exports, "BorderStyleSharp", { + enumerable: true, + get: function () { + return _BorderStyleSharp.default; + } +}); +Object.defineProperty(exports, "BorderStyleTwoTone", { + enumerable: true, + get: function () { + return _BorderStyleTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderTop", { + enumerable: true, + get: function () { + return _BorderTop.default; + } +}); +Object.defineProperty(exports, "BorderTopOutlined", { + enumerable: true, + get: function () { + return _BorderTopOutlined.default; + } +}); +Object.defineProperty(exports, "BorderTopRounded", { + enumerable: true, + get: function () { + return _BorderTopRounded.default; + } +}); +Object.defineProperty(exports, "BorderTopSharp", { + enumerable: true, + get: function () { + return _BorderTopSharp.default; + } +}); +Object.defineProperty(exports, "BorderTopTwoTone", { + enumerable: true, + get: function () { + return _BorderTopTwoTone.default; + } +}); +Object.defineProperty(exports, "BorderVertical", { + enumerable: true, + get: function () { + return _BorderVertical.default; + } +}); +Object.defineProperty(exports, "BorderVerticalOutlined", { + enumerable: true, + get: function () { + return _BorderVerticalOutlined.default; + } +}); +Object.defineProperty(exports, "BorderVerticalRounded", { + enumerable: true, + get: function () { + return _BorderVerticalRounded.default; + } +}); +Object.defineProperty(exports, "BorderVerticalSharp", { + enumerable: true, + get: function () { + return _BorderVerticalSharp.default; + } +}); +Object.defineProperty(exports, "BorderVerticalTwoTone", { + enumerable: true, + get: function () { + return _BorderVerticalTwoTone.default; + } +}); +Object.defineProperty(exports, "BrandingWatermark", { + enumerable: true, + get: function () { + return _BrandingWatermark.default; + } +}); +Object.defineProperty(exports, "BrandingWatermarkOutlined", { + enumerable: true, + get: function () { + return _BrandingWatermarkOutlined.default; + } +}); +Object.defineProperty(exports, "BrandingWatermarkRounded", { + enumerable: true, + get: function () { + return _BrandingWatermarkRounded.default; + } +}); +Object.defineProperty(exports, "BrandingWatermarkSharp", { + enumerable: true, + get: function () { + return _BrandingWatermarkSharp.default; + } +}); +Object.defineProperty(exports, "BrandingWatermarkTwoTone", { + enumerable: true, + get: function () { + return _BrandingWatermarkTwoTone.default; + } +}); +Object.defineProperty(exports, "BreakfastDining", { + enumerable: true, + get: function () { + return _BreakfastDining.default; + } +}); +Object.defineProperty(exports, "BreakfastDiningOutlined", { + enumerable: true, + get: function () { + return _BreakfastDiningOutlined.default; + } +}); +Object.defineProperty(exports, "BreakfastDiningRounded", { + enumerable: true, + get: function () { + return _BreakfastDiningRounded.default; + } +}); +Object.defineProperty(exports, "BreakfastDiningSharp", { + enumerable: true, + get: function () { + return _BreakfastDiningSharp.default; + } +}); +Object.defineProperty(exports, "BreakfastDiningTwoTone", { + enumerable: true, + get: function () { + return _BreakfastDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "Brightness1", { + enumerable: true, + get: function () { + return _Brightness.default; + } +}); +Object.defineProperty(exports, "Brightness1Outlined", { + enumerable: true, + get: function () { + return _Brightness1Outlined.default; + } +}); +Object.defineProperty(exports, "Brightness1Rounded", { + enumerable: true, + get: function () { + return _Brightness1Rounded.default; + } +}); +Object.defineProperty(exports, "Brightness1Sharp", { + enumerable: true, + get: function () { + return _Brightness1Sharp.default; + } +}); +Object.defineProperty(exports, "Brightness1TwoTone", { + enumerable: true, + get: function () { + return _Brightness1TwoTone.default; + } +}); +Object.defineProperty(exports, "Brightness2", { + enumerable: true, + get: function () { + return _Brightness2.default; + } +}); +Object.defineProperty(exports, "Brightness2Outlined", { + enumerable: true, + get: function () { + return _Brightness2Outlined.default; + } +}); +Object.defineProperty(exports, "Brightness2Rounded", { + enumerable: true, + get: function () { + return _Brightness2Rounded.default; + } +}); +Object.defineProperty(exports, "Brightness2Sharp", { + enumerable: true, + get: function () { + return _Brightness2Sharp.default; + } +}); +Object.defineProperty(exports, "Brightness2TwoTone", { + enumerable: true, + get: function () { + return _Brightness2TwoTone.default; + } +}); +Object.defineProperty(exports, "Brightness3", { + enumerable: true, + get: function () { + return _Brightness3.default; + } +}); +Object.defineProperty(exports, "Brightness3Outlined", { + enumerable: true, + get: function () { + return _Brightness3Outlined.default; + } +}); +Object.defineProperty(exports, "Brightness3Rounded", { + enumerable: true, + get: function () { + return _Brightness3Rounded.default; + } +}); +Object.defineProperty(exports, "Brightness3Sharp", { + enumerable: true, + get: function () { + return _Brightness3Sharp.default; + } +}); +Object.defineProperty(exports, "Brightness3TwoTone", { + enumerable: true, + get: function () { + return _Brightness3TwoTone.default; + } +}); +Object.defineProperty(exports, "Brightness4", { + enumerable: true, + get: function () { + return _Brightness4.default; + } +}); +Object.defineProperty(exports, "Brightness4Outlined", { + enumerable: true, + get: function () { + return _Brightness4Outlined.default; + } +}); +Object.defineProperty(exports, "Brightness4Rounded", { + enumerable: true, + get: function () { + return _Brightness4Rounded.default; + } +}); +Object.defineProperty(exports, "Brightness4Sharp", { + enumerable: true, + get: function () { + return _Brightness4Sharp.default; + } +}); +Object.defineProperty(exports, "Brightness4TwoTone", { + enumerable: true, + get: function () { + return _Brightness4TwoTone.default; + } +}); +Object.defineProperty(exports, "Brightness5", { + enumerable: true, + get: function () { + return _Brightness5.default; + } +}); +Object.defineProperty(exports, "Brightness5Outlined", { + enumerable: true, + get: function () { + return _Brightness5Outlined.default; + } +}); +Object.defineProperty(exports, "Brightness5Rounded", { + enumerable: true, + get: function () { + return _Brightness5Rounded.default; + } +}); +Object.defineProperty(exports, "Brightness5Sharp", { + enumerable: true, + get: function () { + return _Brightness5Sharp.default; + } +}); +Object.defineProperty(exports, "Brightness5TwoTone", { + enumerable: true, + get: function () { + return _Brightness5TwoTone.default; + } +}); +Object.defineProperty(exports, "Brightness6", { + enumerable: true, + get: function () { + return _Brightness6.default; + } +}); +Object.defineProperty(exports, "Brightness6Outlined", { + enumerable: true, + get: function () { + return _Brightness6Outlined.default; + } +}); +Object.defineProperty(exports, "Brightness6Rounded", { + enumerable: true, + get: function () { + return _Brightness6Rounded.default; + } +}); +Object.defineProperty(exports, "Brightness6Sharp", { + enumerable: true, + get: function () { + return _Brightness6Sharp.default; + } +}); +Object.defineProperty(exports, "Brightness6TwoTone", { + enumerable: true, + get: function () { + return _Brightness6TwoTone.default; + } +}); +Object.defineProperty(exports, "Brightness7", { + enumerable: true, + get: function () { + return _Brightness7.default; + } +}); +Object.defineProperty(exports, "Brightness7Outlined", { + enumerable: true, + get: function () { + return _Brightness7Outlined.default; + } +}); +Object.defineProperty(exports, "Brightness7Rounded", { + enumerable: true, + get: function () { + return _Brightness7Rounded.default; + } +}); +Object.defineProperty(exports, "Brightness7Sharp", { + enumerable: true, + get: function () { + return _Brightness7Sharp.default; + } +}); +Object.defineProperty(exports, "Brightness7TwoTone", { + enumerable: true, + get: function () { + return _Brightness7TwoTone.default; + } +}); +Object.defineProperty(exports, "BrightnessAuto", { + enumerable: true, + get: function () { + return _BrightnessAuto.default; + } +}); +Object.defineProperty(exports, "BrightnessAutoOutlined", { + enumerable: true, + get: function () { + return _BrightnessAutoOutlined.default; + } +}); +Object.defineProperty(exports, "BrightnessAutoRounded", { + enumerable: true, + get: function () { + return _BrightnessAutoRounded.default; + } +}); +Object.defineProperty(exports, "BrightnessAutoSharp", { + enumerable: true, + get: function () { + return _BrightnessAutoSharp.default; + } +}); +Object.defineProperty(exports, "BrightnessAutoTwoTone", { + enumerable: true, + get: function () { + return _BrightnessAutoTwoTone.default; + } +}); +Object.defineProperty(exports, "BrightnessHigh", { + enumerable: true, + get: function () { + return _BrightnessHigh.default; + } +}); +Object.defineProperty(exports, "BrightnessHighOutlined", { + enumerable: true, + get: function () { + return _BrightnessHighOutlined.default; + } +}); +Object.defineProperty(exports, "BrightnessHighRounded", { + enumerable: true, + get: function () { + return _BrightnessHighRounded.default; + } +}); +Object.defineProperty(exports, "BrightnessHighSharp", { + enumerable: true, + get: function () { + return _BrightnessHighSharp.default; + } +}); +Object.defineProperty(exports, "BrightnessHighTwoTone", { + enumerable: true, + get: function () { + return _BrightnessHighTwoTone.default; + } +}); +Object.defineProperty(exports, "BrightnessLow", { + enumerable: true, + get: function () { + return _BrightnessLow.default; + } +}); +Object.defineProperty(exports, "BrightnessLowOutlined", { + enumerable: true, + get: function () { + return _BrightnessLowOutlined.default; + } +}); +Object.defineProperty(exports, "BrightnessLowRounded", { + enumerable: true, + get: function () { + return _BrightnessLowRounded.default; + } +}); +Object.defineProperty(exports, "BrightnessLowSharp", { + enumerable: true, + get: function () { + return _BrightnessLowSharp.default; + } +}); +Object.defineProperty(exports, "BrightnessLowTwoTone", { + enumerable: true, + get: function () { + return _BrightnessLowTwoTone.default; + } +}); +Object.defineProperty(exports, "BrightnessMedium", { + enumerable: true, + get: function () { + return _BrightnessMedium.default; + } +}); +Object.defineProperty(exports, "BrightnessMediumOutlined", { + enumerable: true, + get: function () { + return _BrightnessMediumOutlined.default; + } +}); +Object.defineProperty(exports, "BrightnessMediumRounded", { + enumerable: true, + get: function () { + return _BrightnessMediumRounded.default; + } +}); +Object.defineProperty(exports, "BrightnessMediumSharp", { + enumerable: true, + get: function () { + return _BrightnessMediumSharp.default; + } +}); +Object.defineProperty(exports, "BrightnessMediumTwoTone", { + enumerable: true, + get: function () { + return _BrightnessMediumTwoTone.default; + } +}); +Object.defineProperty(exports, "BrokenImage", { + enumerable: true, + get: function () { + return _BrokenImage.default; + } +}); +Object.defineProperty(exports, "BrokenImageOutlined", { + enumerable: true, + get: function () { + return _BrokenImageOutlined.default; + } +}); +Object.defineProperty(exports, "BrokenImageRounded", { + enumerable: true, + get: function () { + return _BrokenImageRounded.default; + } +}); +Object.defineProperty(exports, "BrokenImageSharp", { + enumerable: true, + get: function () { + return _BrokenImageSharp.default; + } +}); +Object.defineProperty(exports, "BrokenImageTwoTone", { + enumerable: true, + get: function () { + return _BrokenImageTwoTone.default; + } +}); +Object.defineProperty(exports, "BrowserNotSupported", { + enumerable: true, + get: function () { + return _BrowserNotSupported.default; + } +}); +Object.defineProperty(exports, "BrowserNotSupportedOutlined", { + enumerable: true, + get: function () { + return _BrowserNotSupportedOutlined.default; + } +}); +Object.defineProperty(exports, "BrowserNotSupportedRounded", { + enumerable: true, + get: function () { + return _BrowserNotSupportedRounded.default; + } +}); +Object.defineProperty(exports, "BrowserNotSupportedSharp", { + enumerable: true, + get: function () { + return _BrowserNotSupportedSharp.default; + } +}); +Object.defineProperty(exports, "BrowserNotSupportedTwoTone", { + enumerable: true, + get: function () { + return _BrowserNotSupportedTwoTone.default; + } +}); +Object.defineProperty(exports, "BrunchDining", { + enumerable: true, + get: function () { + return _BrunchDining.default; + } +}); +Object.defineProperty(exports, "BrunchDiningOutlined", { + enumerable: true, + get: function () { + return _BrunchDiningOutlined.default; + } +}); +Object.defineProperty(exports, "BrunchDiningRounded", { + enumerable: true, + get: function () { + return _BrunchDiningRounded.default; + } +}); +Object.defineProperty(exports, "BrunchDiningSharp", { + enumerable: true, + get: function () { + return _BrunchDiningSharp.default; + } +}); +Object.defineProperty(exports, "BrunchDiningTwoTone", { + enumerable: true, + get: function () { + return _BrunchDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "Brush", { + enumerable: true, + get: function () { + return _Brush.default; + } +}); +Object.defineProperty(exports, "BrushOutlined", { + enumerable: true, + get: function () { + return _BrushOutlined.default; + } +}); +Object.defineProperty(exports, "BrushRounded", { + enumerable: true, + get: function () { + return _BrushRounded.default; + } +}); +Object.defineProperty(exports, "BrushSharp", { + enumerable: true, + get: function () { + return _BrushSharp.default; + } +}); +Object.defineProperty(exports, "BrushTwoTone", { + enumerable: true, + get: function () { + return _BrushTwoTone.default; + } +}); +Object.defineProperty(exports, "BubbleChart", { + enumerable: true, + get: function () { + return _BubbleChart.default; + } +}); +Object.defineProperty(exports, "BubbleChartOutlined", { + enumerable: true, + get: function () { + return _BubbleChartOutlined.default; + } +}); +Object.defineProperty(exports, "BubbleChartRounded", { + enumerable: true, + get: function () { + return _BubbleChartRounded.default; + } +}); +Object.defineProperty(exports, "BubbleChartSharp", { + enumerable: true, + get: function () { + return _BubbleChartSharp.default; + } +}); +Object.defineProperty(exports, "BubbleChartTwoTone", { + enumerable: true, + get: function () { + return _BubbleChartTwoTone.default; + } +}); +Object.defineProperty(exports, "BugReport", { + enumerable: true, + get: function () { + return _BugReport.default; + } +}); +Object.defineProperty(exports, "BugReportOutlined", { + enumerable: true, + get: function () { + return _BugReportOutlined.default; + } +}); +Object.defineProperty(exports, "BugReportRounded", { + enumerable: true, + get: function () { + return _BugReportRounded.default; + } +}); +Object.defineProperty(exports, "BugReportSharp", { + enumerable: true, + get: function () { + return _BugReportSharp.default; + } +}); +Object.defineProperty(exports, "BugReportTwoTone", { + enumerable: true, + get: function () { + return _BugReportTwoTone.default; + } +}); +Object.defineProperty(exports, "Build", { + enumerable: true, + get: function () { + return _Build.default; + } +}); +Object.defineProperty(exports, "BuildCircle", { + enumerable: true, + get: function () { + return _BuildCircle.default; + } +}); +Object.defineProperty(exports, "BuildCircleOutlined", { + enumerable: true, + get: function () { + return _BuildCircleOutlined.default; + } +}); +Object.defineProperty(exports, "BuildCircleRounded", { + enumerable: true, + get: function () { + return _BuildCircleRounded.default; + } +}); +Object.defineProperty(exports, "BuildCircleSharp", { + enumerable: true, + get: function () { + return _BuildCircleSharp.default; + } +}); +Object.defineProperty(exports, "BuildCircleTwoTone", { + enumerable: true, + get: function () { + return _BuildCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "BuildOutlined", { + enumerable: true, + get: function () { + return _BuildOutlined.default; + } +}); +Object.defineProperty(exports, "BuildRounded", { + enumerable: true, + get: function () { + return _BuildRounded.default; + } +}); +Object.defineProperty(exports, "BuildSharp", { + enumerable: true, + get: function () { + return _BuildSharp.default; + } +}); +Object.defineProperty(exports, "BuildTwoTone", { + enumerable: true, + get: function () { + return _BuildTwoTone.default; + } +}); +Object.defineProperty(exports, "Bungalow", { + enumerable: true, + get: function () { + return _Bungalow.default; + } +}); +Object.defineProperty(exports, "BungalowOutlined", { + enumerable: true, + get: function () { + return _BungalowOutlined.default; + } +}); +Object.defineProperty(exports, "BungalowRounded", { + enumerable: true, + get: function () { + return _BungalowRounded.default; + } +}); +Object.defineProperty(exports, "BungalowSharp", { + enumerable: true, + get: function () { + return _BungalowSharp.default; + } +}); +Object.defineProperty(exports, "BungalowTwoTone", { + enumerable: true, + get: function () { + return _BungalowTwoTone.default; + } +}); +Object.defineProperty(exports, "BurstMode", { + enumerable: true, + get: function () { + return _BurstMode.default; + } +}); +Object.defineProperty(exports, "BurstModeOutlined", { + enumerable: true, + get: function () { + return _BurstModeOutlined.default; + } +}); +Object.defineProperty(exports, "BurstModeRounded", { + enumerable: true, + get: function () { + return _BurstModeRounded.default; + } +}); +Object.defineProperty(exports, "BurstModeSharp", { + enumerable: true, + get: function () { + return _BurstModeSharp.default; + } +}); +Object.defineProperty(exports, "BurstModeTwoTone", { + enumerable: true, + get: function () { + return _BurstModeTwoTone.default; + } +}); +Object.defineProperty(exports, "BusAlert", { + enumerable: true, + get: function () { + return _BusAlert.default; + } +}); +Object.defineProperty(exports, "BusAlertOutlined", { + enumerable: true, + get: function () { + return _BusAlertOutlined.default; + } +}); +Object.defineProperty(exports, "BusAlertRounded", { + enumerable: true, + get: function () { + return _BusAlertRounded.default; + } +}); +Object.defineProperty(exports, "BusAlertSharp", { + enumerable: true, + get: function () { + return _BusAlertSharp.default; + } +}); +Object.defineProperty(exports, "BusAlertTwoTone", { + enumerable: true, + get: function () { + return _BusAlertTwoTone.default; + } +}); +Object.defineProperty(exports, "Business", { + enumerable: true, + get: function () { + return _Business.default; + } +}); +Object.defineProperty(exports, "BusinessCenter", { + enumerable: true, + get: function () { + return _BusinessCenter.default; + } +}); +Object.defineProperty(exports, "BusinessCenterOutlined", { + enumerable: true, + get: function () { + return _BusinessCenterOutlined.default; + } +}); +Object.defineProperty(exports, "BusinessCenterRounded", { + enumerable: true, + get: function () { + return _BusinessCenterRounded.default; + } +}); +Object.defineProperty(exports, "BusinessCenterSharp", { + enumerable: true, + get: function () { + return _BusinessCenterSharp.default; + } +}); +Object.defineProperty(exports, "BusinessCenterTwoTone", { + enumerable: true, + get: function () { + return _BusinessCenterTwoTone.default; + } +}); +Object.defineProperty(exports, "BusinessOutlined", { + enumerable: true, + get: function () { + return _BusinessOutlined.default; + } +}); +Object.defineProperty(exports, "BusinessRounded", { + enumerable: true, + get: function () { + return _BusinessRounded.default; + } +}); +Object.defineProperty(exports, "BusinessSharp", { + enumerable: true, + get: function () { + return _BusinessSharp.default; + } +}); +Object.defineProperty(exports, "BusinessTwoTone", { + enumerable: true, + get: function () { + return _BusinessTwoTone.default; + } +}); +Object.defineProperty(exports, "Cabin", { + enumerable: true, + get: function () { + return _Cabin.default; + } +}); +Object.defineProperty(exports, "CabinOutlined", { + enumerable: true, + get: function () { + return _CabinOutlined.default; + } +}); +Object.defineProperty(exports, "CabinRounded", { + enumerable: true, + get: function () { + return _CabinRounded.default; + } +}); +Object.defineProperty(exports, "CabinSharp", { + enumerable: true, + get: function () { + return _CabinSharp.default; + } +}); +Object.defineProperty(exports, "CabinTwoTone", { + enumerable: true, + get: function () { + return _CabinTwoTone.default; + } +}); +Object.defineProperty(exports, "Cable", { + enumerable: true, + get: function () { + return _Cable.default; + } +}); +Object.defineProperty(exports, "CableOutlined", { + enumerable: true, + get: function () { + return _CableOutlined.default; + } +}); +Object.defineProperty(exports, "CableRounded", { + enumerable: true, + get: function () { + return _CableRounded.default; + } +}); +Object.defineProperty(exports, "CableSharp", { + enumerable: true, + get: function () { + return _CableSharp.default; + } +}); +Object.defineProperty(exports, "CableTwoTone", { + enumerable: true, + get: function () { + return _CableTwoTone.default; + } +}); +Object.defineProperty(exports, "Cached", { + enumerable: true, + get: function () { + return _Cached.default; + } +}); +Object.defineProperty(exports, "CachedOutlined", { + enumerable: true, + get: function () { + return _CachedOutlined.default; + } +}); +Object.defineProperty(exports, "CachedRounded", { + enumerable: true, + get: function () { + return _CachedRounded.default; + } +}); +Object.defineProperty(exports, "CachedSharp", { + enumerable: true, + get: function () { + return _CachedSharp.default; + } +}); +Object.defineProperty(exports, "CachedTwoTone", { + enumerable: true, + get: function () { + return _CachedTwoTone.default; + } +}); +Object.defineProperty(exports, "Cake", { + enumerable: true, + get: function () { + return _Cake.default; + } +}); +Object.defineProperty(exports, "CakeOutlined", { + enumerable: true, + get: function () { + return _CakeOutlined.default; + } +}); +Object.defineProperty(exports, "CakeRounded", { + enumerable: true, + get: function () { + return _CakeRounded.default; + } +}); +Object.defineProperty(exports, "CakeSharp", { + enumerable: true, + get: function () { + return _CakeSharp.default; + } +}); +Object.defineProperty(exports, "CakeTwoTone", { + enumerable: true, + get: function () { + return _CakeTwoTone.default; + } +}); +Object.defineProperty(exports, "Calculate", { + enumerable: true, + get: function () { + return _Calculate.default; + } +}); +Object.defineProperty(exports, "CalculateOutlined", { + enumerable: true, + get: function () { + return _CalculateOutlined.default; + } +}); +Object.defineProperty(exports, "CalculateRounded", { + enumerable: true, + get: function () { + return _CalculateRounded.default; + } +}); +Object.defineProperty(exports, "CalculateSharp", { + enumerable: true, + get: function () { + return _CalculateSharp.default; + } +}); +Object.defineProperty(exports, "CalculateTwoTone", { + enumerable: true, + get: function () { + return _CalculateTwoTone.default; + } +}); +Object.defineProperty(exports, "CalendarToday", { + enumerable: true, + get: function () { + return _CalendarToday.default; + } +}); +Object.defineProperty(exports, "CalendarTodayOutlined", { + enumerable: true, + get: function () { + return _CalendarTodayOutlined.default; + } +}); +Object.defineProperty(exports, "CalendarTodayRounded", { + enumerable: true, + get: function () { + return _CalendarTodayRounded.default; + } +}); +Object.defineProperty(exports, "CalendarTodaySharp", { + enumerable: true, + get: function () { + return _CalendarTodaySharp.default; + } +}); +Object.defineProperty(exports, "CalendarTodayTwoTone", { + enumerable: true, + get: function () { + return _CalendarTodayTwoTone.default; + } +}); +Object.defineProperty(exports, "CalendarViewDay", { + enumerable: true, + get: function () { + return _CalendarViewDay.default; + } +}); +Object.defineProperty(exports, "CalendarViewDayOutlined", { + enumerable: true, + get: function () { + return _CalendarViewDayOutlined.default; + } +}); +Object.defineProperty(exports, "CalendarViewDayRounded", { + enumerable: true, + get: function () { + return _CalendarViewDayRounded.default; + } +}); +Object.defineProperty(exports, "CalendarViewDaySharp", { + enumerable: true, + get: function () { + return _CalendarViewDaySharp.default; + } +}); +Object.defineProperty(exports, "CalendarViewDayTwoTone", { + enumerable: true, + get: function () { + return _CalendarViewDayTwoTone.default; + } +}); +Object.defineProperty(exports, "CalendarViewMonth", { + enumerable: true, + get: function () { + return _CalendarViewMonth.default; + } +}); +Object.defineProperty(exports, "CalendarViewMonthOutlined", { + enumerable: true, + get: function () { + return _CalendarViewMonthOutlined.default; + } +}); +Object.defineProperty(exports, "CalendarViewMonthRounded", { + enumerable: true, + get: function () { + return _CalendarViewMonthRounded.default; + } +}); +Object.defineProperty(exports, "CalendarViewMonthSharp", { + enumerable: true, + get: function () { + return _CalendarViewMonthSharp.default; + } +}); +Object.defineProperty(exports, "CalendarViewMonthTwoTone", { + enumerable: true, + get: function () { + return _CalendarViewMonthTwoTone.default; + } +}); +Object.defineProperty(exports, "CalendarViewWeek", { + enumerable: true, + get: function () { + return _CalendarViewWeek.default; + } +}); +Object.defineProperty(exports, "CalendarViewWeekOutlined", { + enumerable: true, + get: function () { + return _CalendarViewWeekOutlined.default; + } +}); +Object.defineProperty(exports, "CalendarViewWeekRounded", { + enumerable: true, + get: function () { + return _CalendarViewWeekRounded.default; + } +}); +Object.defineProperty(exports, "CalendarViewWeekSharp", { + enumerable: true, + get: function () { + return _CalendarViewWeekSharp.default; + } +}); +Object.defineProperty(exports, "CalendarViewWeekTwoTone", { + enumerable: true, + get: function () { + return _CalendarViewWeekTwoTone.default; + } +}); +Object.defineProperty(exports, "Call", { + enumerable: true, + get: function () { + return _Call.default; + } +}); +Object.defineProperty(exports, "CallEnd", { + enumerable: true, + get: function () { + return _CallEnd.default; + } +}); +Object.defineProperty(exports, "CallEndOutlined", { + enumerable: true, + get: function () { + return _CallEndOutlined.default; + } +}); +Object.defineProperty(exports, "CallEndRounded", { + enumerable: true, + get: function () { + return _CallEndRounded.default; + } +}); +Object.defineProperty(exports, "CallEndSharp", { + enumerable: true, + get: function () { + return _CallEndSharp.default; + } +}); +Object.defineProperty(exports, "CallEndTwoTone", { + enumerable: true, + get: function () { + return _CallEndTwoTone.default; + } +}); +Object.defineProperty(exports, "CallMade", { + enumerable: true, + get: function () { + return _CallMade.default; + } +}); +Object.defineProperty(exports, "CallMadeOutlined", { + enumerable: true, + get: function () { + return _CallMadeOutlined.default; + } +}); +Object.defineProperty(exports, "CallMadeRounded", { + enumerable: true, + get: function () { + return _CallMadeRounded.default; + } +}); +Object.defineProperty(exports, "CallMadeSharp", { + enumerable: true, + get: function () { + return _CallMadeSharp.default; + } +}); +Object.defineProperty(exports, "CallMadeTwoTone", { + enumerable: true, + get: function () { + return _CallMadeTwoTone.default; + } +}); +Object.defineProperty(exports, "CallMerge", { + enumerable: true, + get: function () { + return _CallMerge.default; + } +}); +Object.defineProperty(exports, "CallMergeOutlined", { + enumerable: true, + get: function () { + return _CallMergeOutlined.default; + } +}); +Object.defineProperty(exports, "CallMergeRounded", { + enumerable: true, + get: function () { + return _CallMergeRounded.default; + } +}); +Object.defineProperty(exports, "CallMergeSharp", { + enumerable: true, + get: function () { + return _CallMergeSharp.default; + } +}); +Object.defineProperty(exports, "CallMergeTwoTone", { + enumerable: true, + get: function () { + return _CallMergeTwoTone.default; + } +}); +Object.defineProperty(exports, "CallMissed", { + enumerable: true, + get: function () { + return _CallMissed.default; + } +}); +Object.defineProperty(exports, "CallMissedOutgoing", { + enumerable: true, + get: function () { + return _CallMissedOutgoing.default; + } +}); +Object.defineProperty(exports, "CallMissedOutgoingOutlined", { + enumerable: true, + get: function () { + return _CallMissedOutgoingOutlined.default; + } +}); +Object.defineProperty(exports, "CallMissedOutgoingRounded", { + enumerable: true, + get: function () { + return _CallMissedOutgoingRounded.default; + } +}); +Object.defineProperty(exports, "CallMissedOutgoingSharp", { + enumerable: true, + get: function () { + return _CallMissedOutgoingSharp.default; + } +}); +Object.defineProperty(exports, "CallMissedOutgoingTwoTone", { + enumerable: true, + get: function () { + return _CallMissedOutgoingTwoTone.default; + } +}); +Object.defineProperty(exports, "CallMissedOutlined", { + enumerable: true, + get: function () { + return _CallMissedOutlined.default; + } +}); +Object.defineProperty(exports, "CallMissedRounded", { + enumerable: true, + get: function () { + return _CallMissedRounded.default; + } +}); +Object.defineProperty(exports, "CallMissedSharp", { + enumerable: true, + get: function () { + return _CallMissedSharp.default; + } +}); +Object.defineProperty(exports, "CallMissedTwoTone", { + enumerable: true, + get: function () { + return _CallMissedTwoTone.default; + } +}); +Object.defineProperty(exports, "CallOutlined", { + enumerable: true, + get: function () { + return _CallOutlined.default; + } +}); +Object.defineProperty(exports, "CallReceived", { + enumerable: true, + get: function () { + return _CallReceived.default; + } +}); +Object.defineProperty(exports, "CallReceivedOutlined", { + enumerable: true, + get: function () { + return _CallReceivedOutlined.default; + } +}); +Object.defineProperty(exports, "CallReceivedRounded", { + enumerable: true, + get: function () { + return _CallReceivedRounded.default; + } +}); +Object.defineProperty(exports, "CallReceivedSharp", { + enumerable: true, + get: function () { + return _CallReceivedSharp.default; + } +}); +Object.defineProperty(exports, "CallReceivedTwoTone", { + enumerable: true, + get: function () { + return _CallReceivedTwoTone.default; + } +}); +Object.defineProperty(exports, "CallRounded", { + enumerable: true, + get: function () { + return _CallRounded.default; + } +}); +Object.defineProperty(exports, "CallSharp", { + enumerable: true, + get: function () { + return _CallSharp.default; + } +}); +Object.defineProperty(exports, "CallSplit", { + enumerable: true, + get: function () { + return _CallSplit.default; + } +}); +Object.defineProperty(exports, "CallSplitOutlined", { + enumerable: true, + get: function () { + return _CallSplitOutlined.default; + } +}); +Object.defineProperty(exports, "CallSplitRounded", { + enumerable: true, + get: function () { + return _CallSplitRounded.default; + } +}); +Object.defineProperty(exports, "CallSplitSharp", { + enumerable: true, + get: function () { + return _CallSplitSharp.default; + } +}); +Object.defineProperty(exports, "CallSplitTwoTone", { + enumerable: true, + get: function () { + return _CallSplitTwoTone.default; + } +}); +Object.defineProperty(exports, "CallToAction", { + enumerable: true, + get: function () { + return _CallToAction.default; + } +}); +Object.defineProperty(exports, "CallToActionOutlined", { + enumerable: true, + get: function () { + return _CallToActionOutlined.default; + } +}); +Object.defineProperty(exports, "CallToActionRounded", { + enumerable: true, + get: function () { + return _CallToActionRounded.default; + } +}); +Object.defineProperty(exports, "CallToActionSharp", { + enumerable: true, + get: function () { + return _CallToActionSharp.default; + } +}); +Object.defineProperty(exports, "CallToActionTwoTone", { + enumerable: true, + get: function () { + return _CallToActionTwoTone.default; + } +}); +Object.defineProperty(exports, "CallTwoTone", { + enumerable: true, + get: function () { + return _CallTwoTone.default; + } +}); +Object.defineProperty(exports, "Camera", { + enumerable: true, + get: function () { + return _Camera.default; + } +}); +Object.defineProperty(exports, "CameraAlt", { + enumerable: true, + get: function () { + return _CameraAlt.default; + } +}); +Object.defineProperty(exports, "CameraAltOutlined", { + enumerable: true, + get: function () { + return _CameraAltOutlined.default; + } +}); +Object.defineProperty(exports, "CameraAltRounded", { + enumerable: true, + get: function () { + return _CameraAltRounded.default; + } +}); +Object.defineProperty(exports, "CameraAltSharp", { + enumerable: true, + get: function () { + return _CameraAltSharp.default; + } +}); +Object.defineProperty(exports, "CameraAltTwoTone", { + enumerable: true, + get: function () { + return _CameraAltTwoTone.default; + } +}); +Object.defineProperty(exports, "CameraEnhance", { + enumerable: true, + get: function () { + return _CameraEnhance.default; + } +}); +Object.defineProperty(exports, "CameraEnhanceOutlined", { + enumerable: true, + get: function () { + return _CameraEnhanceOutlined.default; + } +}); +Object.defineProperty(exports, "CameraEnhanceRounded", { + enumerable: true, + get: function () { + return _CameraEnhanceRounded.default; + } +}); +Object.defineProperty(exports, "CameraEnhanceSharp", { + enumerable: true, + get: function () { + return _CameraEnhanceSharp.default; + } +}); +Object.defineProperty(exports, "CameraEnhanceTwoTone", { + enumerable: true, + get: function () { + return _CameraEnhanceTwoTone.default; + } +}); +Object.defineProperty(exports, "CameraFront", { + enumerable: true, + get: function () { + return _CameraFront.default; + } +}); +Object.defineProperty(exports, "CameraFrontOutlined", { + enumerable: true, + get: function () { + return _CameraFrontOutlined.default; + } +}); +Object.defineProperty(exports, "CameraFrontRounded", { + enumerable: true, + get: function () { + return _CameraFrontRounded.default; + } +}); +Object.defineProperty(exports, "CameraFrontSharp", { + enumerable: true, + get: function () { + return _CameraFrontSharp.default; + } +}); +Object.defineProperty(exports, "CameraFrontTwoTone", { + enumerable: true, + get: function () { + return _CameraFrontTwoTone.default; + } +}); +Object.defineProperty(exports, "CameraIndoor", { + enumerable: true, + get: function () { + return _CameraIndoor.default; + } +}); +Object.defineProperty(exports, "CameraIndoorOutlined", { + enumerable: true, + get: function () { + return _CameraIndoorOutlined.default; + } +}); +Object.defineProperty(exports, "CameraIndoorRounded", { + enumerable: true, + get: function () { + return _CameraIndoorRounded.default; + } +}); +Object.defineProperty(exports, "CameraIndoorSharp", { + enumerable: true, + get: function () { + return _CameraIndoorSharp.default; + } +}); +Object.defineProperty(exports, "CameraIndoorTwoTone", { + enumerable: true, + get: function () { + return _CameraIndoorTwoTone.default; + } +}); +Object.defineProperty(exports, "CameraOutdoor", { + enumerable: true, + get: function () { + return _CameraOutdoor.default; + } +}); +Object.defineProperty(exports, "CameraOutdoorOutlined", { + enumerable: true, + get: function () { + return _CameraOutdoorOutlined.default; + } +}); +Object.defineProperty(exports, "CameraOutdoorRounded", { + enumerable: true, + get: function () { + return _CameraOutdoorRounded.default; + } +}); +Object.defineProperty(exports, "CameraOutdoorSharp", { + enumerable: true, + get: function () { + return _CameraOutdoorSharp.default; + } +}); +Object.defineProperty(exports, "CameraOutdoorTwoTone", { + enumerable: true, + get: function () { + return _CameraOutdoorTwoTone.default; + } +}); +Object.defineProperty(exports, "CameraOutlined", { + enumerable: true, + get: function () { + return _CameraOutlined.default; + } +}); +Object.defineProperty(exports, "CameraRear", { + enumerable: true, + get: function () { + return _CameraRear.default; + } +}); +Object.defineProperty(exports, "CameraRearOutlined", { + enumerable: true, + get: function () { + return _CameraRearOutlined.default; + } +}); +Object.defineProperty(exports, "CameraRearRounded", { + enumerable: true, + get: function () { + return _CameraRearRounded.default; + } +}); +Object.defineProperty(exports, "CameraRearSharp", { + enumerable: true, + get: function () { + return _CameraRearSharp.default; + } +}); +Object.defineProperty(exports, "CameraRearTwoTone", { + enumerable: true, + get: function () { + return _CameraRearTwoTone.default; + } +}); +Object.defineProperty(exports, "CameraRoll", { + enumerable: true, + get: function () { + return _CameraRoll.default; + } +}); +Object.defineProperty(exports, "CameraRollOutlined", { + enumerable: true, + get: function () { + return _CameraRollOutlined.default; + } +}); +Object.defineProperty(exports, "CameraRollRounded", { + enumerable: true, + get: function () { + return _CameraRollRounded.default; + } +}); +Object.defineProperty(exports, "CameraRollSharp", { + enumerable: true, + get: function () { + return _CameraRollSharp.default; + } +}); +Object.defineProperty(exports, "CameraRollTwoTone", { + enumerable: true, + get: function () { + return _CameraRollTwoTone.default; + } +}); +Object.defineProperty(exports, "CameraRounded", { + enumerable: true, + get: function () { + return _CameraRounded.default; + } +}); +Object.defineProperty(exports, "CameraSharp", { + enumerable: true, + get: function () { + return _CameraSharp.default; + } +}); +Object.defineProperty(exports, "CameraTwoTone", { + enumerable: true, + get: function () { + return _CameraTwoTone.default; + } +}); +Object.defineProperty(exports, "Cameraswitch", { + enumerable: true, + get: function () { + return _Cameraswitch.default; + } +}); +Object.defineProperty(exports, "CameraswitchOutlined", { + enumerable: true, + get: function () { + return _CameraswitchOutlined.default; + } +}); +Object.defineProperty(exports, "CameraswitchRounded", { + enumerable: true, + get: function () { + return _CameraswitchRounded.default; + } +}); +Object.defineProperty(exports, "CameraswitchSharp", { + enumerable: true, + get: function () { + return _CameraswitchSharp.default; + } +}); +Object.defineProperty(exports, "CameraswitchTwoTone", { + enumerable: true, + get: function () { + return _CameraswitchTwoTone.default; + } +}); +Object.defineProperty(exports, "Campaign", { + enumerable: true, + get: function () { + return _Campaign.default; + } +}); +Object.defineProperty(exports, "CampaignOutlined", { + enumerable: true, + get: function () { + return _CampaignOutlined.default; + } +}); +Object.defineProperty(exports, "CampaignRounded", { + enumerable: true, + get: function () { + return _CampaignRounded.default; + } +}); +Object.defineProperty(exports, "CampaignSharp", { + enumerable: true, + get: function () { + return _CampaignSharp.default; + } +}); +Object.defineProperty(exports, "CampaignTwoTone", { + enumerable: true, + get: function () { + return _CampaignTwoTone.default; + } +}); +Object.defineProperty(exports, "Cancel", { + enumerable: true, + get: function () { + return _Cancel.default; + } +}); +Object.defineProperty(exports, "CancelOutlined", { + enumerable: true, + get: function () { + return _CancelOutlined.default; + } +}); +Object.defineProperty(exports, "CancelPresentation", { + enumerable: true, + get: function () { + return _CancelPresentation.default; + } +}); +Object.defineProperty(exports, "CancelPresentationOutlined", { + enumerable: true, + get: function () { + return _CancelPresentationOutlined.default; + } +}); +Object.defineProperty(exports, "CancelPresentationRounded", { + enumerable: true, + get: function () { + return _CancelPresentationRounded.default; + } +}); +Object.defineProperty(exports, "CancelPresentationSharp", { + enumerable: true, + get: function () { + return _CancelPresentationSharp.default; + } +}); +Object.defineProperty(exports, "CancelPresentationTwoTone", { + enumerable: true, + get: function () { + return _CancelPresentationTwoTone.default; + } +}); +Object.defineProperty(exports, "CancelRounded", { + enumerable: true, + get: function () { + return _CancelRounded.default; + } +}); +Object.defineProperty(exports, "CancelScheduleSend", { + enumerable: true, + get: function () { + return _CancelScheduleSend.default; + } +}); +Object.defineProperty(exports, "CancelScheduleSendOutlined", { + enumerable: true, + get: function () { + return _CancelScheduleSendOutlined.default; + } +}); +Object.defineProperty(exports, "CancelScheduleSendRounded", { + enumerable: true, + get: function () { + return _CancelScheduleSendRounded.default; + } +}); +Object.defineProperty(exports, "CancelScheduleSendSharp", { + enumerable: true, + get: function () { + return _CancelScheduleSendSharp.default; + } +}); +Object.defineProperty(exports, "CancelScheduleSendTwoTone", { + enumerable: true, + get: function () { + return _CancelScheduleSendTwoTone.default; + } +}); +Object.defineProperty(exports, "CancelSharp", { + enumerable: true, + get: function () { + return _CancelSharp.default; + } +}); +Object.defineProperty(exports, "CancelTwoTone", { + enumerable: true, + get: function () { + return _CancelTwoTone.default; + } +}); +Object.defineProperty(exports, "CarRental", { + enumerable: true, + get: function () { + return _CarRental.default; + } +}); +Object.defineProperty(exports, "CarRentalOutlined", { + enumerable: true, + get: function () { + return _CarRentalOutlined.default; + } +}); +Object.defineProperty(exports, "CarRentalRounded", { + enumerable: true, + get: function () { + return _CarRentalRounded.default; + } +}); +Object.defineProperty(exports, "CarRentalSharp", { + enumerable: true, + get: function () { + return _CarRentalSharp.default; + } +}); +Object.defineProperty(exports, "CarRentalTwoTone", { + enumerable: true, + get: function () { + return _CarRentalTwoTone.default; + } +}); +Object.defineProperty(exports, "CarRepair", { + enumerable: true, + get: function () { + return _CarRepair.default; + } +}); +Object.defineProperty(exports, "CarRepairOutlined", { + enumerable: true, + get: function () { + return _CarRepairOutlined.default; + } +}); +Object.defineProperty(exports, "CarRepairRounded", { + enumerable: true, + get: function () { + return _CarRepairRounded.default; + } +}); +Object.defineProperty(exports, "CarRepairSharp", { + enumerable: true, + get: function () { + return _CarRepairSharp.default; + } +}); +Object.defineProperty(exports, "CarRepairTwoTone", { + enumerable: true, + get: function () { + return _CarRepairTwoTone.default; + } +}); +Object.defineProperty(exports, "CardGiftcard", { + enumerable: true, + get: function () { + return _CardGiftcard.default; + } +}); +Object.defineProperty(exports, "CardGiftcardOutlined", { + enumerable: true, + get: function () { + return _CardGiftcardOutlined.default; + } +}); +Object.defineProperty(exports, "CardGiftcardRounded", { + enumerable: true, + get: function () { + return _CardGiftcardRounded.default; + } +}); +Object.defineProperty(exports, "CardGiftcardSharp", { + enumerable: true, + get: function () { + return _CardGiftcardSharp.default; + } +}); +Object.defineProperty(exports, "CardGiftcardTwoTone", { + enumerable: true, + get: function () { + return _CardGiftcardTwoTone.default; + } +}); +Object.defineProperty(exports, "CardMembership", { + enumerable: true, + get: function () { + return _CardMembership.default; + } +}); +Object.defineProperty(exports, "CardMembershipOutlined", { + enumerable: true, + get: function () { + return _CardMembershipOutlined.default; + } +}); +Object.defineProperty(exports, "CardMembershipRounded", { + enumerable: true, + get: function () { + return _CardMembershipRounded.default; + } +}); +Object.defineProperty(exports, "CardMembershipSharp", { + enumerable: true, + get: function () { + return _CardMembershipSharp.default; + } +}); +Object.defineProperty(exports, "CardMembershipTwoTone", { + enumerable: true, + get: function () { + return _CardMembershipTwoTone.default; + } +}); +Object.defineProperty(exports, "CardTravel", { + enumerable: true, + get: function () { + return _CardTravel.default; + } +}); +Object.defineProperty(exports, "CardTravelOutlined", { + enumerable: true, + get: function () { + return _CardTravelOutlined.default; + } +}); +Object.defineProperty(exports, "CardTravelRounded", { + enumerable: true, + get: function () { + return _CardTravelRounded.default; + } +}); +Object.defineProperty(exports, "CardTravelSharp", { + enumerable: true, + get: function () { + return _CardTravelSharp.default; + } +}); +Object.defineProperty(exports, "CardTravelTwoTone", { + enumerable: true, + get: function () { + return _CardTravelTwoTone.default; + } +}); +Object.defineProperty(exports, "Carpenter", { + enumerable: true, + get: function () { + return _Carpenter.default; + } +}); +Object.defineProperty(exports, "CarpenterOutlined", { + enumerable: true, + get: function () { + return _CarpenterOutlined.default; + } +}); +Object.defineProperty(exports, "CarpenterRounded", { + enumerable: true, + get: function () { + return _CarpenterRounded.default; + } +}); +Object.defineProperty(exports, "CarpenterSharp", { + enumerable: true, + get: function () { + return _CarpenterSharp.default; + } +}); +Object.defineProperty(exports, "CarpenterTwoTone", { + enumerable: true, + get: function () { + return _CarpenterTwoTone.default; + } +}); +Object.defineProperty(exports, "Cases", { + enumerable: true, + get: function () { + return _Cases.default; + } +}); +Object.defineProperty(exports, "CasesOutlined", { + enumerable: true, + get: function () { + return _CasesOutlined.default; + } +}); +Object.defineProperty(exports, "CasesRounded", { + enumerable: true, + get: function () { + return _CasesRounded.default; + } +}); +Object.defineProperty(exports, "CasesSharp", { + enumerable: true, + get: function () { + return _CasesSharp.default; + } +}); +Object.defineProperty(exports, "CasesTwoTone", { + enumerable: true, + get: function () { + return _CasesTwoTone.default; + } +}); +Object.defineProperty(exports, "Casino", { + enumerable: true, + get: function () { + return _Casino.default; + } +}); +Object.defineProperty(exports, "CasinoOutlined", { + enumerable: true, + get: function () { + return _CasinoOutlined.default; + } +}); +Object.defineProperty(exports, "CasinoRounded", { + enumerable: true, + get: function () { + return _CasinoRounded.default; + } +}); +Object.defineProperty(exports, "CasinoSharp", { + enumerable: true, + get: function () { + return _CasinoSharp.default; + } +}); +Object.defineProperty(exports, "CasinoTwoTone", { + enumerable: true, + get: function () { + return _CasinoTwoTone.default; + } +}); +Object.defineProperty(exports, "Cast", { + enumerable: true, + get: function () { + return _Cast.default; + } +}); +Object.defineProperty(exports, "CastConnected", { + enumerable: true, + get: function () { + return _CastConnected.default; + } +}); +Object.defineProperty(exports, "CastConnectedOutlined", { + enumerable: true, + get: function () { + return _CastConnectedOutlined.default; + } +}); +Object.defineProperty(exports, "CastConnectedRounded", { + enumerable: true, + get: function () { + return _CastConnectedRounded.default; + } +}); +Object.defineProperty(exports, "CastConnectedSharp", { + enumerable: true, + get: function () { + return _CastConnectedSharp.default; + } +}); +Object.defineProperty(exports, "CastConnectedTwoTone", { + enumerable: true, + get: function () { + return _CastConnectedTwoTone.default; + } +}); +Object.defineProperty(exports, "CastForEducation", { + enumerable: true, + get: function () { + return _CastForEducation.default; + } +}); +Object.defineProperty(exports, "CastForEducationOutlined", { + enumerable: true, + get: function () { + return _CastForEducationOutlined.default; + } +}); +Object.defineProperty(exports, "CastForEducationRounded", { + enumerable: true, + get: function () { + return _CastForEducationRounded.default; + } +}); +Object.defineProperty(exports, "CastForEducationSharp", { + enumerable: true, + get: function () { + return _CastForEducationSharp.default; + } +}); +Object.defineProperty(exports, "CastForEducationTwoTone", { + enumerable: true, + get: function () { + return _CastForEducationTwoTone.default; + } +}); +Object.defineProperty(exports, "CastOutlined", { + enumerable: true, + get: function () { + return _CastOutlined.default; + } +}); +Object.defineProperty(exports, "CastRounded", { + enumerable: true, + get: function () { + return _CastRounded.default; + } +}); +Object.defineProperty(exports, "CastSharp", { + enumerable: true, + get: function () { + return _CastSharp.default; + } +}); +Object.defineProperty(exports, "CastTwoTone", { + enumerable: true, + get: function () { + return _CastTwoTone.default; + } +}); +Object.defineProperty(exports, "CatchingPokemon", { + enumerable: true, + get: function () { + return _CatchingPokemon.default; + } +}); +Object.defineProperty(exports, "CatchingPokemonOutlined", { + enumerable: true, + get: function () { + return _CatchingPokemonOutlined.default; + } +}); +Object.defineProperty(exports, "CatchingPokemonRounded", { + enumerable: true, + get: function () { + return _CatchingPokemonRounded.default; + } +}); +Object.defineProperty(exports, "CatchingPokemonSharp", { + enumerable: true, + get: function () { + return _CatchingPokemonSharp.default; + } +}); +Object.defineProperty(exports, "CatchingPokemonTwoTone", { + enumerable: true, + get: function () { + return _CatchingPokemonTwoTone.default; + } +}); +Object.defineProperty(exports, "Category", { + enumerable: true, + get: function () { + return _Category.default; + } +}); +Object.defineProperty(exports, "CategoryOutlined", { + enumerable: true, + get: function () { + return _CategoryOutlined.default; + } +}); +Object.defineProperty(exports, "CategoryRounded", { + enumerable: true, + get: function () { + return _CategoryRounded.default; + } +}); +Object.defineProperty(exports, "CategorySharp", { + enumerable: true, + get: function () { + return _CategorySharp.default; + } +}); +Object.defineProperty(exports, "CategoryTwoTone", { + enumerable: true, + get: function () { + return _CategoryTwoTone.default; + } +}); +Object.defineProperty(exports, "Celebration", { + enumerable: true, + get: function () { + return _Celebration.default; + } +}); +Object.defineProperty(exports, "CelebrationOutlined", { + enumerable: true, + get: function () { + return _CelebrationOutlined.default; + } +}); +Object.defineProperty(exports, "CelebrationRounded", { + enumerable: true, + get: function () { + return _CelebrationRounded.default; + } +}); +Object.defineProperty(exports, "CelebrationSharp", { + enumerable: true, + get: function () { + return _CelebrationSharp.default; + } +}); +Object.defineProperty(exports, "CelebrationTwoTone", { + enumerable: true, + get: function () { + return _CelebrationTwoTone.default; + } +}); +Object.defineProperty(exports, "CellWifi", { + enumerable: true, + get: function () { + return _CellWifi.default; + } +}); +Object.defineProperty(exports, "CellWifiOutlined", { + enumerable: true, + get: function () { + return _CellWifiOutlined.default; + } +}); +Object.defineProperty(exports, "CellWifiRounded", { + enumerable: true, + get: function () { + return _CellWifiRounded.default; + } +}); +Object.defineProperty(exports, "CellWifiSharp", { + enumerable: true, + get: function () { + return _CellWifiSharp.default; + } +}); +Object.defineProperty(exports, "CellWifiTwoTone", { + enumerable: true, + get: function () { + return _CellWifiTwoTone.default; + } +}); +Object.defineProperty(exports, "CenterFocusStrong", { + enumerable: true, + get: function () { + return _CenterFocusStrong.default; + } +}); +Object.defineProperty(exports, "CenterFocusStrongOutlined", { + enumerable: true, + get: function () { + return _CenterFocusStrongOutlined.default; + } +}); +Object.defineProperty(exports, "CenterFocusStrongRounded", { + enumerable: true, + get: function () { + return _CenterFocusStrongRounded.default; + } +}); +Object.defineProperty(exports, "CenterFocusStrongSharp", { + enumerable: true, + get: function () { + return _CenterFocusStrongSharp.default; + } +}); +Object.defineProperty(exports, "CenterFocusStrongTwoTone", { + enumerable: true, + get: function () { + return _CenterFocusStrongTwoTone.default; + } +}); +Object.defineProperty(exports, "CenterFocusWeak", { + enumerable: true, + get: function () { + return _CenterFocusWeak.default; + } +}); +Object.defineProperty(exports, "CenterFocusWeakOutlined", { + enumerable: true, + get: function () { + return _CenterFocusWeakOutlined.default; + } +}); +Object.defineProperty(exports, "CenterFocusWeakRounded", { + enumerable: true, + get: function () { + return _CenterFocusWeakRounded.default; + } +}); +Object.defineProperty(exports, "CenterFocusWeakSharp", { + enumerable: true, + get: function () { + return _CenterFocusWeakSharp.default; + } +}); +Object.defineProperty(exports, "CenterFocusWeakTwoTone", { + enumerable: true, + get: function () { + return _CenterFocusWeakTwoTone.default; + } +}); +Object.defineProperty(exports, "Chair", { + enumerable: true, + get: function () { + return _Chair.default; + } +}); +Object.defineProperty(exports, "ChairAlt", { + enumerable: true, + get: function () { + return _ChairAlt.default; + } +}); +Object.defineProperty(exports, "ChairAltOutlined", { + enumerable: true, + get: function () { + return _ChairAltOutlined.default; + } +}); +Object.defineProperty(exports, "ChairAltRounded", { + enumerable: true, + get: function () { + return _ChairAltRounded.default; + } +}); +Object.defineProperty(exports, "ChairAltSharp", { + enumerable: true, + get: function () { + return _ChairAltSharp.default; + } +}); +Object.defineProperty(exports, "ChairAltTwoTone", { + enumerable: true, + get: function () { + return _ChairAltTwoTone.default; + } +}); +Object.defineProperty(exports, "ChairOutlined", { + enumerable: true, + get: function () { + return _ChairOutlined.default; + } +}); +Object.defineProperty(exports, "ChairRounded", { + enumerable: true, + get: function () { + return _ChairRounded.default; + } +}); +Object.defineProperty(exports, "ChairSharp", { + enumerable: true, + get: function () { + return _ChairSharp.default; + } +}); +Object.defineProperty(exports, "ChairTwoTone", { + enumerable: true, + get: function () { + return _ChairTwoTone.default; + } +}); +Object.defineProperty(exports, "Chalet", { + enumerable: true, + get: function () { + return _Chalet.default; + } +}); +Object.defineProperty(exports, "ChaletOutlined", { + enumerable: true, + get: function () { + return _ChaletOutlined.default; + } +}); +Object.defineProperty(exports, "ChaletRounded", { + enumerable: true, + get: function () { + return _ChaletRounded.default; + } +}); +Object.defineProperty(exports, "ChaletSharp", { + enumerable: true, + get: function () { + return _ChaletSharp.default; + } +}); +Object.defineProperty(exports, "ChaletTwoTone", { + enumerable: true, + get: function () { + return _ChaletTwoTone.default; + } +}); +Object.defineProperty(exports, "ChangeCircle", { + enumerable: true, + get: function () { + return _ChangeCircle.default; + } +}); +Object.defineProperty(exports, "ChangeCircleOutlined", { + enumerable: true, + get: function () { + return _ChangeCircleOutlined.default; + } +}); +Object.defineProperty(exports, "ChangeCircleRounded", { + enumerable: true, + get: function () { + return _ChangeCircleRounded.default; + } +}); +Object.defineProperty(exports, "ChangeCircleSharp", { + enumerable: true, + get: function () { + return _ChangeCircleSharp.default; + } +}); +Object.defineProperty(exports, "ChangeCircleTwoTone", { + enumerable: true, + get: function () { + return _ChangeCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "ChangeHistory", { + enumerable: true, + get: function () { + return _ChangeHistory.default; + } +}); +Object.defineProperty(exports, "ChangeHistoryOutlined", { + enumerable: true, + get: function () { + return _ChangeHistoryOutlined.default; + } +}); +Object.defineProperty(exports, "ChangeHistoryRounded", { + enumerable: true, + get: function () { + return _ChangeHistoryRounded.default; + } +}); +Object.defineProperty(exports, "ChangeHistorySharp", { + enumerable: true, + get: function () { + return _ChangeHistorySharp.default; + } +}); +Object.defineProperty(exports, "ChangeHistoryTwoTone", { + enumerable: true, + get: function () { + return _ChangeHistoryTwoTone.default; + } +}); +Object.defineProperty(exports, "ChargingStation", { + enumerable: true, + get: function () { + return _ChargingStation.default; + } +}); +Object.defineProperty(exports, "ChargingStationOutlined", { + enumerable: true, + get: function () { + return _ChargingStationOutlined.default; + } +}); +Object.defineProperty(exports, "ChargingStationRounded", { + enumerable: true, + get: function () { + return _ChargingStationRounded.default; + } +}); +Object.defineProperty(exports, "ChargingStationSharp", { + enumerable: true, + get: function () { + return _ChargingStationSharp.default; + } +}); +Object.defineProperty(exports, "ChargingStationTwoTone", { + enumerable: true, + get: function () { + return _ChargingStationTwoTone.default; + } +}); +Object.defineProperty(exports, "Chat", { + enumerable: true, + get: function () { + return _Chat.default; + } +}); +Object.defineProperty(exports, "ChatBubble", { + enumerable: true, + get: function () { + return _ChatBubble.default; + } +}); +Object.defineProperty(exports, "ChatBubbleOutline", { + enumerable: true, + get: function () { + return _ChatBubbleOutline.default; + } +}); +Object.defineProperty(exports, "ChatBubbleOutlineOutlined", { + enumerable: true, + get: function () { + return _ChatBubbleOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "ChatBubbleOutlineRounded", { + enumerable: true, + get: function () { + return _ChatBubbleOutlineRounded.default; + } +}); +Object.defineProperty(exports, "ChatBubbleOutlineSharp", { + enumerable: true, + get: function () { + return _ChatBubbleOutlineSharp.default; + } +}); +Object.defineProperty(exports, "ChatBubbleOutlineTwoTone", { + enumerable: true, + get: function () { + return _ChatBubbleOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "ChatBubbleOutlined", { + enumerable: true, + get: function () { + return _ChatBubbleOutlined.default; + } +}); +Object.defineProperty(exports, "ChatBubbleRounded", { + enumerable: true, + get: function () { + return _ChatBubbleRounded.default; + } +}); +Object.defineProperty(exports, "ChatBubbleSharp", { + enumerable: true, + get: function () { + return _ChatBubbleSharp.default; + } +}); +Object.defineProperty(exports, "ChatBubbleTwoTone", { + enumerable: true, + get: function () { + return _ChatBubbleTwoTone.default; + } +}); +Object.defineProperty(exports, "ChatOutlined", { + enumerable: true, + get: function () { + return _ChatOutlined.default; + } +}); +Object.defineProperty(exports, "ChatRounded", { + enumerable: true, + get: function () { + return _ChatRounded.default; + } +}); +Object.defineProperty(exports, "ChatSharp", { + enumerable: true, + get: function () { + return _ChatSharp.default; + } +}); +Object.defineProperty(exports, "ChatTwoTone", { + enumerable: true, + get: function () { + return _ChatTwoTone.default; + } +}); +Object.defineProperty(exports, "Check", { + enumerable: true, + get: function () { + return _Check.default; + } +}); +Object.defineProperty(exports, "CheckBox", { + enumerable: true, + get: function () { + return _CheckBox.default; + } +}); +Object.defineProperty(exports, "CheckBoxOutlineBlank", { + enumerable: true, + get: function () { + return _CheckBoxOutlineBlank.default; + } +}); +Object.defineProperty(exports, "CheckBoxOutlineBlankOutlined", { + enumerable: true, + get: function () { + return _CheckBoxOutlineBlankOutlined.default; + } +}); +Object.defineProperty(exports, "CheckBoxOutlineBlankRounded", { + enumerable: true, + get: function () { + return _CheckBoxOutlineBlankRounded.default; + } +}); +Object.defineProperty(exports, "CheckBoxOutlineBlankSharp", { + enumerable: true, + get: function () { + return _CheckBoxOutlineBlankSharp.default; + } +}); +Object.defineProperty(exports, "CheckBoxOutlineBlankTwoTone", { + enumerable: true, + get: function () { + return _CheckBoxOutlineBlankTwoTone.default; + } +}); +Object.defineProperty(exports, "CheckBoxOutlined", { + enumerable: true, + get: function () { + return _CheckBoxOutlined.default; + } +}); +Object.defineProperty(exports, "CheckBoxRounded", { + enumerable: true, + get: function () { + return _CheckBoxRounded.default; + } +}); +Object.defineProperty(exports, "CheckBoxSharp", { + enumerable: true, + get: function () { + return _CheckBoxSharp.default; + } +}); +Object.defineProperty(exports, "CheckBoxTwoTone", { + enumerable: true, + get: function () { + return _CheckBoxTwoTone.default; + } +}); +Object.defineProperty(exports, "CheckCircle", { + enumerable: true, + get: function () { + return _CheckCircle.default; + } +}); +Object.defineProperty(exports, "CheckCircleOutline", { + enumerable: true, + get: function () { + return _CheckCircleOutline.default; + } +}); +Object.defineProperty(exports, "CheckCircleOutlineOutlined", { + enumerable: true, + get: function () { + return _CheckCircleOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "CheckCircleOutlineRounded", { + enumerable: true, + get: function () { + return _CheckCircleOutlineRounded.default; + } +}); +Object.defineProperty(exports, "CheckCircleOutlineSharp", { + enumerable: true, + get: function () { + return _CheckCircleOutlineSharp.default; + } +}); +Object.defineProperty(exports, "CheckCircleOutlineTwoTone", { + enumerable: true, + get: function () { + return _CheckCircleOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "CheckCircleOutlined", { + enumerable: true, + get: function () { + return _CheckCircleOutlined.default; + } +}); +Object.defineProperty(exports, "CheckCircleRounded", { + enumerable: true, + get: function () { + return _CheckCircleRounded.default; + } +}); +Object.defineProperty(exports, "CheckCircleSharp", { + enumerable: true, + get: function () { + return _CheckCircleSharp.default; + } +}); +Object.defineProperty(exports, "CheckCircleTwoTone", { + enumerable: true, + get: function () { + return _CheckCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "CheckOutlined", { + enumerable: true, + get: function () { + return _CheckOutlined.default; + } +}); +Object.defineProperty(exports, "CheckRounded", { + enumerable: true, + get: function () { + return _CheckRounded.default; + } +}); +Object.defineProperty(exports, "CheckSharp", { + enumerable: true, + get: function () { + return _CheckSharp.default; + } +}); +Object.defineProperty(exports, "CheckTwoTone", { + enumerable: true, + get: function () { + return _CheckTwoTone.default; + } +}); +Object.defineProperty(exports, "Checkroom", { + enumerable: true, + get: function () { + return _Checkroom.default; + } +}); +Object.defineProperty(exports, "CheckroomOutlined", { + enumerable: true, + get: function () { + return _CheckroomOutlined.default; + } +}); +Object.defineProperty(exports, "CheckroomRounded", { + enumerable: true, + get: function () { + return _CheckroomRounded.default; + } +}); +Object.defineProperty(exports, "CheckroomSharp", { + enumerable: true, + get: function () { + return _CheckroomSharp.default; + } +}); +Object.defineProperty(exports, "CheckroomTwoTone", { + enumerable: true, + get: function () { + return _CheckroomTwoTone.default; + } +}); +Object.defineProperty(exports, "ChevronLeft", { + enumerable: true, + get: function () { + return _ChevronLeft.default; + } +}); +Object.defineProperty(exports, "ChevronLeftOutlined", { + enumerable: true, + get: function () { + return _ChevronLeftOutlined.default; + } +}); +Object.defineProperty(exports, "ChevronLeftRounded", { + enumerable: true, + get: function () { + return _ChevronLeftRounded.default; + } +}); +Object.defineProperty(exports, "ChevronLeftSharp", { + enumerable: true, + get: function () { + return _ChevronLeftSharp.default; + } +}); +Object.defineProperty(exports, "ChevronLeftTwoTone", { + enumerable: true, + get: function () { + return _ChevronLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "ChevronRight", { + enumerable: true, + get: function () { + return _ChevronRight.default; + } +}); +Object.defineProperty(exports, "ChevronRightOutlined", { + enumerable: true, + get: function () { + return _ChevronRightOutlined.default; + } +}); +Object.defineProperty(exports, "ChevronRightRounded", { + enumerable: true, + get: function () { + return _ChevronRightRounded.default; + } +}); +Object.defineProperty(exports, "ChevronRightSharp", { + enumerable: true, + get: function () { + return _ChevronRightSharp.default; + } +}); +Object.defineProperty(exports, "ChevronRightTwoTone", { + enumerable: true, + get: function () { + return _ChevronRightTwoTone.default; + } +}); +Object.defineProperty(exports, "ChildCare", { + enumerable: true, + get: function () { + return _ChildCare.default; + } +}); +Object.defineProperty(exports, "ChildCareOutlined", { + enumerable: true, + get: function () { + return _ChildCareOutlined.default; + } +}); +Object.defineProperty(exports, "ChildCareRounded", { + enumerable: true, + get: function () { + return _ChildCareRounded.default; + } +}); +Object.defineProperty(exports, "ChildCareSharp", { + enumerable: true, + get: function () { + return _ChildCareSharp.default; + } +}); +Object.defineProperty(exports, "ChildCareTwoTone", { + enumerable: true, + get: function () { + return _ChildCareTwoTone.default; + } +}); +Object.defineProperty(exports, "ChildFriendly", { + enumerable: true, + get: function () { + return _ChildFriendly.default; + } +}); +Object.defineProperty(exports, "ChildFriendlyOutlined", { + enumerable: true, + get: function () { + return _ChildFriendlyOutlined.default; + } +}); +Object.defineProperty(exports, "ChildFriendlyRounded", { + enumerable: true, + get: function () { + return _ChildFriendlyRounded.default; + } +}); +Object.defineProperty(exports, "ChildFriendlySharp", { + enumerable: true, + get: function () { + return _ChildFriendlySharp.default; + } +}); +Object.defineProperty(exports, "ChildFriendlyTwoTone", { + enumerable: true, + get: function () { + return _ChildFriendlyTwoTone.default; + } +}); +Object.defineProperty(exports, "ChromeReaderMode", { + enumerable: true, + get: function () { + return _ChromeReaderMode.default; + } +}); +Object.defineProperty(exports, "ChromeReaderModeOutlined", { + enumerable: true, + get: function () { + return _ChromeReaderModeOutlined.default; + } +}); +Object.defineProperty(exports, "ChromeReaderModeRounded", { + enumerable: true, + get: function () { + return _ChromeReaderModeRounded.default; + } +}); +Object.defineProperty(exports, "ChromeReaderModeSharp", { + enumerable: true, + get: function () { + return _ChromeReaderModeSharp.default; + } +}); +Object.defineProperty(exports, "ChromeReaderModeTwoTone", { + enumerable: true, + get: function () { + return _ChromeReaderModeTwoTone.default; + } +}); +Object.defineProperty(exports, "Circle", { + enumerable: true, + get: function () { + return _Circle.default; + } +}); +Object.defineProperty(exports, "CircleNotifications", { + enumerable: true, + get: function () { + return _CircleNotifications.default; + } +}); +Object.defineProperty(exports, "CircleNotificationsOutlined", { + enumerable: true, + get: function () { + return _CircleNotificationsOutlined.default; + } +}); +Object.defineProperty(exports, "CircleNotificationsRounded", { + enumerable: true, + get: function () { + return _CircleNotificationsRounded.default; + } +}); +Object.defineProperty(exports, "CircleNotificationsSharp", { + enumerable: true, + get: function () { + return _CircleNotificationsSharp.default; + } +}); +Object.defineProperty(exports, "CircleNotificationsTwoTone", { + enumerable: true, + get: function () { + return _CircleNotificationsTwoTone.default; + } +}); +Object.defineProperty(exports, "CircleOutlined", { + enumerable: true, + get: function () { + return _CircleOutlined.default; + } +}); +Object.defineProperty(exports, "CircleRounded", { + enumerable: true, + get: function () { + return _CircleRounded.default; + } +}); +Object.defineProperty(exports, "CircleSharp", { + enumerable: true, + get: function () { + return _CircleSharp.default; + } +}); +Object.defineProperty(exports, "CircleTwoTone", { + enumerable: true, + get: function () { + return _CircleTwoTone.default; + } +}); +Object.defineProperty(exports, "Class", { + enumerable: true, + get: function () { + return _Class.default; + } +}); +Object.defineProperty(exports, "ClassOutlined", { + enumerable: true, + get: function () { + return _ClassOutlined.default; + } +}); +Object.defineProperty(exports, "ClassRounded", { + enumerable: true, + get: function () { + return _ClassRounded.default; + } +}); +Object.defineProperty(exports, "ClassSharp", { + enumerable: true, + get: function () { + return _ClassSharp.default; + } +}); +Object.defineProperty(exports, "ClassTwoTone", { + enumerable: true, + get: function () { + return _ClassTwoTone.default; + } +}); +Object.defineProperty(exports, "CleanHands", { + enumerable: true, + get: function () { + return _CleanHands.default; + } +}); +Object.defineProperty(exports, "CleanHandsOutlined", { + enumerable: true, + get: function () { + return _CleanHandsOutlined.default; + } +}); +Object.defineProperty(exports, "CleanHandsRounded", { + enumerable: true, + get: function () { + return _CleanHandsRounded.default; + } +}); +Object.defineProperty(exports, "CleanHandsSharp", { + enumerable: true, + get: function () { + return _CleanHandsSharp.default; + } +}); +Object.defineProperty(exports, "CleanHandsTwoTone", { + enumerable: true, + get: function () { + return _CleanHandsTwoTone.default; + } +}); +Object.defineProperty(exports, "CleaningServices", { + enumerable: true, + get: function () { + return _CleaningServices.default; + } +}); +Object.defineProperty(exports, "CleaningServicesOutlined", { + enumerable: true, + get: function () { + return _CleaningServicesOutlined.default; + } +}); +Object.defineProperty(exports, "CleaningServicesRounded", { + enumerable: true, + get: function () { + return _CleaningServicesRounded.default; + } +}); +Object.defineProperty(exports, "CleaningServicesSharp", { + enumerable: true, + get: function () { + return _CleaningServicesSharp.default; + } +}); +Object.defineProperty(exports, "CleaningServicesTwoTone", { + enumerable: true, + get: function () { + return _CleaningServicesTwoTone.default; + } +}); +Object.defineProperty(exports, "Clear", { + enumerable: true, + get: function () { + return _Clear.default; + } +}); +Object.defineProperty(exports, "ClearAll", { + enumerable: true, + get: function () { + return _ClearAll.default; + } +}); +Object.defineProperty(exports, "ClearAllOutlined", { + enumerable: true, + get: function () { + return _ClearAllOutlined.default; + } +}); +Object.defineProperty(exports, "ClearAllRounded", { + enumerable: true, + get: function () { + return _ClearAllRounded.default; + } +}); +Object.defineProperty(exports, "ClearAllSharp", { + enumerable: true, + get: function () { + return _ClearAllSharp.default; + } +}); +Object.defineProperty(exports, "ClearAllTwoTone", { + enumerable: true, + get: function () { + return _ClearAllTwoTone.default; + } +}); +Object.defineProperty(exports, "ClearOutlined", { + enumerable: true, + get: function () { + return _ClearOutlined.default; + } +}); +Object.defineProperty(exports, "ClearRounded", { + enumerable: true, + get: function () { + return _ClearRounded.default; + } +}); +Object.defineProperty(exports, "ClearSharp", { + enumerable: true, + get: function () { + return _ClearSharp.default; + } +}); +Object.defineProperty(exports, "ClearTwoTone", { + enumerable: true, + get: function () { + return _ClearTwoTone.default; + } +}); +Object.defineProperty(exports, "Close", { + enumerable: true, + get: function () { + return _Close.default; + } +}); +Object.defineProperty(exports, "CloseFullscreen", { + enumerable: true, + get: function () { + return _CloseFullscreen.default; + } +}); +Object.defineProperty(exports, "CloseFullscreenOutlined", { + enumerable: true, + get: function () { + return _CloseFullscreenOutlined.default; + } +}); +Object.defineProperty(exports, "CloseFullscreenRounded", { + enumerable: true, + get: function () { + return _CloseFullscreenRounded.default; + } +}); +Object.defineProperty(exports, "CloseFullscreenSharp", { + enumerable: true, + get: function () { + return _CloseFullscreenSharp.default; + } +}); +Object.defineProperty(exports, "CloseFullscreenTwoTone", { + enumerable: true, + get: function () { + return _CloseFullscreenTwoTone.default; + } +}); +Object.defineProperty(exports, "CloseOutlined", { + enumerable: true, + get: function () { + return _CloseOutlined.default; + } +}); +Object.defineProperty(exports, "CloseRounded", { + enumerable: true, + get: function () { + return _CloseRounded.default; + } +}); +Object.defineProperty(exports, "CloseSharp", { + enumerable: true, + get: function () { + return _CloseSharp.default; + } +}); +Object.defineProperty(exports, "CloseTwoTone", { + enumerable: true, + get: function () { + return _CloseTwoTone.default; + } +}); +Object.defineProperty(exports, "ClosedCaption", { + enumerable: true, + get: function () { + return _ClosedCaption.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionDisabled", { + enumerable: true, + get: function () { + return _ClosedCaptionDisabled.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionDisabledOutlined", { + enumerable: true, + get: function () { + return _ClosedCaptionDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionDisabledRounded", { + enumerable: true, + get: function () { + return _ClosedCaptionDisabledRounded.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionDisabledSharp", { + enumerable: true, + get: function () { + return _ClosedCaptionDisabledSharp.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionDisabledTwoTone", { + enumerable: true, + get: function () { + return _ClosedCaptionDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionOff", { + enumerable: true, + get: function () { + return _ClosedCaptionOff.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionOffOutlined", { + enumerable: true, + get: function () { + return _ClosedCaptionOffOutlined.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionOffRounded", { + enumerable: true, + get: function () { + return _ClosedCaptionOffRounded.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionOffSharp", { + enumerable: true, + get: function () { + return _ClosedCaptionOffSharp.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionOffTwoTone", { + enumerable: true, + get: function () { + return _ClosedCaptionOffTwoTone.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionOutlined", { + enumerable: true, + get: function () { + return _ClosedCaptionOutlined.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionRounded", { + enumerable: true, + get: function () { + return _ClosedCaptionRounded.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionSharp", { + enumerable: true, + get: function () { + return _ClosedCaptionSharp.default; + } +}); +Object.defineProperty(exports, "ClosedCaptionTwoTone", { + enumerable: true, + get: function () { + return _ClosedCaptionTwoTone.default; + } +}); +Object.defineProperty(exports, "Cloud", { + enumerable: true, + get: function () { + return _Cloud.default; + } +}); +Object.defineProperty(exports, "CloudCircle", { + enumerable: true, + get: function () { + return _CloudCircle.default; + } +}); +Object.defineProperty(exports, "CloudCircleOutlined", { + enumerable: true, + get: function () { + return _CloudCircleOutlined.default; + } +}); +Object.defineProperty(exports, "CloudCircleRounded", { + enumerable: true, + get: function () { + return _CloudCircleRounded.default; + } +}); +Object.defineProperty(exports, "CloudCircleSharp", { + enumerable: true, + get: function () { + return _CloudCircleSharp.default; + } +}); +Object.defineProperty(exports, "CloudCircleTwoTone", { + enumerable: true, + get: function () { + return _CloudCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "CloudDone", { + enumerable: true, + get: function () { + return _CloudDone.default; + } +}); +Object.defineProperty(exports, "CloudDoneOutlined", { + enumerable: true, + get: function () { + return _CloudDoneOutlined.default; + } +}); +Object.defineProperty(exports, "CloudDoneRounded", { + enumerable: true, + get: function () { + return _CloudDoneRounded.default; + } +}); +Object.defineProperty(exports, "CloudDoneSharp", { + enumerable: true, + get: function () { + return _CloudDoneSharp.default; + } +}); +Object.defineProperty(exports, "CloudDoneTwoTone", { + enumerable: true, + get: function () { + return _CloudDoneTwoTone.default; + } +}); +Object.defineProperty(exports, "CloudDownload", { + enumerable: true, + get: function () { + return _CloudDownload.default; + } +}); +Object.defineProperty(exports, "CloudDownloadOutlined", { + enumerable: true, + get: function () { + return _CloudDownloadOutlined.default; + } +}); +Object.defineProperty(exports, "CloudDownloadRounded", { + enumerable: true, + get: function () { + return _CloudDownloadRounded.default; + } +}); +Object.defineProperty(exports, "CloudDownloadSharp", { + enumerable: true, + get: function () { + return _CloudDownloadSharp.default; + } +}); +Object.defineProperty(exports, "CloudDownloadTwoTone", { + enumerable: true, + get: function () { + return _CloudDownloadTwoTone.default; + } +}); +Object.defineProperty(exports, "CloudOff", { + enumerable: true, + get: function () { + return _CloudOff.default; + } +}); +Object.defineProperty(exports, "CloudOffOutlined", { + enumerable: true, + get: function () { + return _CloudOffOutlined.default; + } +}); +Object.defineProperty(exports, "CloudOffRounded", { + enumerable: true, + get: function () { + return _CloudOffRounded.default; + } +}); +Object.defineProperty(exports, "CloudOffSharp", { + enumerable: true, + get: function () { + return _CloudOffSharp.default; + } +}); +Object.defineProperty(exports, "CloudOffTwoTone", { + enumerable: true, + get: function () { + return _CloudOffTwoTone.default; + } +}); +Object.defineProperty(exports, "CloudOutlined", { + enumerable: true, + get: function () { + return _CloudOutlined.default; + } +}); +Object.defineProperty(exports, "CloudQueue", { + enumerable: true, + get: function () { + return _CloudQueue.default; + } +}); +Object.defineProperty(exports, "CloudQueueOutlined", { + enumerable: true, + get: function () { + return _CloudQueueOutlined.default; + } +}); +Object.defineProperty(exports, "CloudQueueRounded", { + enumerable: true, + get: function () { + return _CloudQueueRounded.default; + } +}); +Object.defineProperty(exports, "CloudQueueSharp", { + enumerable: true, + get: function () { + return _CloudQueueSharp.default; + } +}); +Object.defineProperty(exports, "CloudQueueTwoTone", { + enumerable: true, + get: function () { + return _CloudQueueTwoTone.default; + } +}); +Object.defineProperty(exports, "CloudRounded", { + enumerable: true, + get: function () { + return _CloudRounded.default; + } +}); +Object.defineProperty(exports, "CloudSharp", { + enumerable: true, + get: function () { + return _CloudSharp.default; + } +}); +Object.defineProperty(exports, "CloudTwoTone", { + enumerable: true, + get: function () { + return _CloudTwoTone.default; + } +}); +Object.defineProperty(exports, "CloudUpload", { + enumerable: true, + get: function () { + return _CloudUpload.default; + } +}); +Object.defineProperty(exports, "CloudUploadOutlined", { + enumerable: true, + get: function () { + return _CloudUploadOutlined.default; + } +}); +Object.defineProperty(exports, "CloudUploadRounded", { + enumerable: true, + get: function () { + return _CloudUploadRounded.default; + } +}); +Object.defineProperty(exports, "CloudUploadSharp", { + enumerable: true, + get: function () { + return _CloudUploadSharp.default; + } +}); +Object.defineProperty(exports, "CloudUploadTwoTone", { + enumerable: true, + get: function () { + return _CloudUploadTwoTone.default; + } +}); +Object.defineProperty(exports, "Code", { + enumerable: true, + get: function () { + return _Code.default; + } +}); +Object.defineProperty(exports, "CodeOff", { + enumerable: true, + get: function () { + return _CodeOff.default; + } +}); +Object.defineProperty(exports, "CodeOffOutlined", { + enumerable: true, + get: function () { + return _CodeOffOutlined.default; + } +}); +Object.defineProperty(exports, "CodeOffRounded", { + enumerable: true, + get: function () { + return _CodeOffRounded.default; + } +}); +Object.defineProperty(exports, "CodeOffSharp", { + enumerable: true, + get: function () { + return _CodeOffSharp.default; + } +}); +Object.defineProperty(exports, "CodeOffTwoTone", { + enumerable: true, + get: function () { + return _CodeOffTwoTone.default; + } +}); +Object.defineProperty(exports, "CodeOutlined", { + enumerable: true, + get: function () { + return _CodeOutlined.default; + } +}); +Object.defineProperty(exports, "CodeRounded", { + enumerable: true, + get: function () { + return _CodeRounded.default; + } +}); +Object.defineProperty(exports, "CodeSharp", { + enumerable: true, + get: function () { + return _CodeSharp.default; + } +}); +Object.defineProperty(exports, "CodeTwoTone", { + enumerable: true, + get: function () { + return _CodeTwoTone.default; + } +}); +Object.defineProperty(exports, "Coffee", { + enumerable: true, + get: function () { + return _Coffee.default; + } +}); +Object.defineProperty(exports, "CoffeeMaker", { + enumerable: true, + get: function () { + return _CoffeeMaker.default; + } +}); +Object.defineProperty(exports, "CoffeeMakerOutlined", { + enumerable: true, + get: function () { + return _CoffeeMakerOutlined.default; + } +}); +Object.defineProperty(exports, "CoffeeMakerRounded", { + enumerable: true, + get: function () { + return _CoffeeMakerRounded.default; + } +}); +Object.defineProperty(exports, "CoffeeMakerSharp", { + enumerable: true, + get: function () { + return _CoffeeMakerSharp.default; + } +}); +Object.defineProperty(exports, "CoffeeMakerTwoTone", { + enumerable: true, + get: function () { + return _CoffeeMakerTwoTone.default; + } +}); +Object.defineProperty(exports, "CoffeeOutlined", { + enumerable: true, + get: function () { + return _CoffeeOutlined.default; + } +}); +Object.defineProperty(exports, "CoffeeRounded", { + enumerable: true, + get: function () { + return _CoffeeRounded.default; + } +}); +Object.defineProperty(exports, "CoffeeSharp", { + enumerable: true, + get: function () { + return _CoffeeSharp.default; + } +}); +Object.defineProperty(exports, "CoffeeTwoTone", { + enumerable: true, + get: function () { + return _CoffeeTwoTone.default; + } +}); +Object.defineProperty(exports, "Collections", { + enumerable: true, + get: function () { + return _Collections.default; + } +}); +Object.defineProperty(exports, "CollectionsBookmark", { + enumerable: true, + get: function () { + return _CollectionsBookmark.default; + } +}); +Object.defineProperty(exports, "CollectionsBookmarkOutlined", { + enumerable: true, + get: function () { + return _CollectionsBookmarkOutlined.default; + } +}); +Object.defineProperty(exports, "CollectionsBookmarkRounded", { + enumerable: true, + get: function () { + return _CollectionsBookmarkRounded.default; + } +}); +Object.defineProperty(exports, "CollectionsBookmarkSharp", { + enumerable: true, + get: function () { + return _CollectionsBookmarkSharp.default; + } +}); +Object.defineProperty(exports, "CollectionsBookmarkTwoTone", { + enumerable: true, + get: function () { + return _CollectionsBookmarkTwoTone.default; + } +}); +Object.defineProperty(exports, "CollectionsOutlined", { + enumerable: true, + get: function () { + return _CollectionsOutlined.default; + } +}); +Object.defineProperty(exports, "CollectionsRounded", { + enumerable: true, + get: function () { + return _CollectionsRounded.default; + } +}); +Object.defineProperty(exports, "CollectionsSharp", { + enumerable: true, + get: function () { + return _CollectionsSharp.default; + } +}); +Object.defineProperty(exports, "CollectionsTwoTone", { + enumerable: true, + get: function () { + return _CollectionsTwoTone.default; + } +}); +Object.defineProperty(exports, "ColorLens", { + enumerable: true, + get: function () { + return _ColorLens.default; + } +}); +Object.defineProperty(exports, "ColorLensOutlined", { + enumerable: true, + get: function () { + return _ColorLensOutlined.default; + } +}); +Object.defineProperty(exports, "ColorLensRounded", { + enumerable: true, + get: function () { + return _ColorLensRounded.default; + } +}); +Object.defineProperty(exports, "ColorLensSharp", { + enumerable: true, + get: function () { + return _ColorLensSharp.default; + } +}); +Object.defineProperty(exports, "ColorLensTwoTone", { + enumerable: true, + get: function () { + return _ColorLensTwoTone.default; + } +}); +Object.defineProperty(exports, "Colorize", { + enumerable: true, + get: function () { + return _Colorize.default; + } +}); +Object.defineProperty(exports, "ColorizeOutlined", { + enumerable: true, + get: function () { + return _ColorizeOutlined.default; + } +}); +Object.defineProperty(exports, "ColorizeRounded", { + enumerable: true, + get: function () { + return _ColorizeRounded.default; + } +}); +Object.defineProperty(exports, "ColorizeSharp", { + enumerable: true, + get: function () { + return _ColorizeSharp.default; + } +}); +Object.defineProperty(exports, "ColorizeTwoTone", { + enumerable: true, + get: function () { + return _ColorizeTwoTone.default; + } +}); +Object.defineProperty(exports, "Comment", { + enumerable: true, + get: function () { + return _Comment.default; + } +}); +Object.defineProperty(exports, "CommentBank", { + enumerable: true, + get: function () { + return _CommentBank.default; + } +}); +Object.defineProperty(exports, "CommentBankOutlined", { + enumerable: true, + get: function () { + return _CommentBankOutlined.default; + } +}); +Object.defineProperty(exports, "CommentBankRounded", { + enumerable: true, + get: function () { + return _CommentBankRounded.default; + } +}); +Object.defineProperty(exports, "CommentBankSharp", { + enumerable: true, + get: function () { + return _CommentBankSharp.default; + } +}); +Object.defineProperty(exports, "CommentBankTwoTone", { + enumerable: true, + get: function () { + return _CommentBankTwoTone.default; + } +}); +Object.defineProperty(exports, "CommentOutlined", { + enumerable: true, + get: function () { + return _CommentOutlined.default; + } +}); +Object.defineProperty(exports, "CommentRounded", { + enumerable: true, + get: function () { + return _CommentRounded.default; + } +}); +Object.defineProperty(exports, "CommentSharp", { + enumerable: true, + get: function () { + return _CommentSharp.default; + } +}); +Object.defineProperty(exports, "CommentTwoTone", { + enumerable: true, + get: function () { + return _CommentTwoTone.default; + } +}); +Object.defineProperty(exports, "Commute", { + enumerable: true, + get: function () { + return _Commute.default; + } +}); +Object.defineProperty(exports, "CommuteOutlined", { + enumerable: true, + get: function () { + return _CommuteOutlined.default; + } +}); +Object.defineProperty(exports, "CommuteRounded", { + enumerable: true, + get: function () { + return _CommuteRounded.default; + } +}); +Object.defineProperty(exports, "CommuteSharp", { + enumerable: true, + get: function () { + return _CommuteSharp.default; + } +}); +Object.defineProperty(exports, "CommuteTwoTone", { + enumerable: true, + get: function () { + return _CommuteTwoTone.default; + } +}); +Object.defineProperty(exports, "Compare", { + enumerable: true, + get: function () { + return _Compare.default; + } +}); +Object.defineProperty(exports, "CompareArrows", { + enumerable: true, + get: function () { + return _CompareArrows.default; + } +}); +Object.defineProperty(exports, "CompareArrowsOutlined", { + enumerable: true, + get: function () { + return _CompareArrowsOutlined.default; + } +}); +Object.defineProperty(exports, "CompareArrowsRounded", { + enumerable: true, + get: function () { + return _CompareArrowsRounded.default; + } +}); +Object.defineProperty(exports, "CompareArrowsSharp", { + enumerable: true, + get: function () { + return _CompareArrowsSharp.default; + } +}); +Object.defineProperty(exports, "CompareArrowsTwoTone", { + enumerable: true, + get: function () { + return _CompareArrowsTwoTone.default; + } +}); +Object.defineProperty(exports, "CompareOutlined", { + enumerable: true, + get: function () { + return _CompareOutlined.default; + } +}); +Object.defineProperty(exports, "CompareRounded", { + enumerable: true, + get: function () { + return _CompareRounded.default; + } +}); +Object.defineProperty(exports, "CompareSharp", { + enumerable: true, + get: function () { + return _CompareSharp.default; + } +}); +Object.defineProperty(exports, "CompareTwoTone", { + enumerable: true, + get: function () { + return _CompareTwoTone.default; + } +}); +Object.defineProperty(exports, "CompassCalibration", { + enumerable: true, + get: function () { + return _CompassCalibration.default; + } +}); +Object.defineProperty(exports, "CompassCalibrationOutlined", { + enumerable: true, + get: function () { + return _CompassCalibrationOutlined.default; + } +}); +Object.defineProperty(exports, "CompassCalibrationRounded", { + enumerable: true, + get: function () { + return _CompassCalibrationRounded.default; + } +}); +Object.defineProperty(exports, "CompassCalibrationSharp", { + enumerable: true, + get: function () { + return _CompassCalibrationSharp.default; + } +}); +Object.defineProperty(exports, "CompassCalibrationTwoTone", { + enumerable: true, + get: function () { + return _CompassCalibrationTwoTone.default; + } +}); +Object.defineProperty(exports, "Compress", { + enumerable: true, + get: function () { + return _Compress.default; + } +}); +Object.defineProperty(exports, "CompressOutlined", { + enumerable: true, + get: function () { + return _CompressOutlined.default; + } +}); +Object.defineProperty(exports, "CompressRounded", { + enumerable: true, + get: function () { + return _CompressRounded.default; + } +}); +Object.defineProperty(exports, "CompressSharp", { + enumerable: true, + get: function () { + return _CompressSharp.default; + } +}); +Object.defineProperty(exports, "CompressTwoTone", { + enumerable: true, + get: function () { + return _CompressTwoTone.default; + } +}); +Object.defineProperty(exports, "Computer", { + enumerable: true, + get: function () { + return _Computer.default; + } +}); +Object.defineProperty(exports, "ComputerOutlined", { + enumerable: true, + get: function () { + return _ComputerOutlined.default; + } +}); +Object.defineProperty(exports, "ComputerRounded", { + enumerable: true, + get: function () { + return _ComputerRounded.default; + } +}); +Object.defineProperty(exports, "ComputerSharp", { + enumerable: true, + get: function () { + return _ComputerSharp.default; + } +}); +Object.defineProperty(exports, "ComputerTwoTone", { + enumerable: true, + get: function () { + return _ComputerTwoTone.default; + } +}); +Object.defineProperty(exports, "ConfirmationNumber", { + enumerable: true, + get: function () { + return _ConfirmationNumber.default; + } +}); +Object.defineProperty(exports, "ConfirmationNumberOutlined", { + enumerable: true, + get: function () { + return _ConfirmationNumberOutlined.default; + } +}); +Object.defineProperty(exports, "ConfirmationNumberRounded", { + enumerable: true, + get: function () { + return _ConfirmationNumberRounded.default; + } +}); +Object.defineProperty(exports, "ConfirmationNumberSharp", { + enumerable: true, + get: function () { + return _ConfirmationNumberSharp.default; + } +}); +Object.defineProperty(exports, "ConfirmationNumberTwoTone", { + enumerable: true, + get: function () { + return _ConfirmationNumberTwoTone.default; + } +}); +Object.defineProperty(exports, "ConnectWithoutContact", { + enumerable: true, + get: function () { + return _ConnectWithoutContact.default; + } +}); +Object.defineProperty(exports, "ConnectWithoutContactOutlined", { + enumerable: true, + get: function () { + return _ConnectWithoutContactOutlined.default; + } +}); +Object.defineProperty(exports, "ConnectWithoutContactRounded", { + enumerable: true, + get: function () { + return _ConnectWithoutContactRounded.default; + } +}); +Object.defineProperty(exports, "ConnectWithoutContactSharp", { + enumerable: true, + get: function () { + return _ConnectWithoutContactSharp.default; + } +}); +Object.defineProperty(exports, "ConnectWithoutContactTwoTone", { + enumerable: true, + get: function () { + return _ConnectWithoutContactTwoTone.default; + } +}); +Object.defineProperty(exports, "ConnectedTv", { + enumerable: true, + get: function () { + return _ConnectedTv.default; + } +}); +Object.defineProperty(exports, "ConnectedTvOutlined", { + enumerable: true, + get: function () { + return _ConnectedTvOutlined.default; + } +}); +Object.defineProperty(exports, "ConnectedTvRounded", { + enumerable: true, + get: function () { + return _ConnectedTvRounded.default; + } +}); +Object.defineProperty(exports, "ConnectedTvSharp", { + enumerable: true, + get: function () { + return _ConnectedTvSharp.default; + } +}); +Object.defineProperty(exports, "ConnectedTvTwoTone", { + enumerable: true, + get: function () { + return _ConnectedTvTwoTone.default; + } +}); +Object.defineProperty(exports, "Construction", { + enumerable: true, + get: function () { + return _Construction.default; + } +}); +Object.defineProperty(exports, "ConstructionOutlined", { + enumerable: true, + get: function () { + return _ConstructionOutlined.default; + } +}); +Object.defineProperty(exports, "ConstructionRounded", { + enumerable: true, + get: function () { + return _ConstructionRounded.default; + } +}); +Object.defineProperty(exports, "ConstructionSharp", { + enumerable: true, + get: function () { + return _ConstructionSharp.default; + } +}); +Object.defineProperty(exports, "ConstructionTwoTone", { + enumerable: true, + get: function () { + return _ConstructionTwoTone.default; + } +}); +Object.defineProperty(exports, "ContactMail", { + enumerable: true, + get: function () { + return _ContactMail.default; + } +}); +Object.defineProperty(exports, "ContactMailOutlined", { + enumerable: true, + get: function () { + return _ContactMailOutlined.default; + } +}); +Object.defineProperty(exports, "ContactMailRounded", { + enumerable: true, + get: function () { + return _ContactMailRounded.default; + } +}); +Object.defineProperty(exports, "ContactMailSharp", { + enumerable: true, + get: function () { + return _ContactMailSharp.default; + } +}); +Object.defineProperty(exports, "ContactMailTwoTone", { + enumerable: true, + get: function () { + return _ContactMailTwoTone.default; + } +}); +Object.defineProperty(exports, "ContactPage", { + enumerable: true, + get: function () { + return _ContactPage.default; + } +}); +Object.defineProperty(exports, "ContactPageOutlined", { + enumerable: true, + get: function () { + return _ContactPageOutlined.default; + } +}); +Object.defineProperty(exports, "ContactPageRounded", { + enumerable: true, + get: function () { + return _ContactPageRounded.default; + } +}); +Object.defineProperty(exports, "ContactPageSharp", { + enumerable: true, + get: function () { + return _ContactPageSharp.default; + } +}); +Object.defineProperty(exports, "ContactPageTwoTone", { + enumerable: true, + get: function () { + return _ContactPageTwoTone.default; + } +}); +Object.defineProperty(exports, "ContactPhone", { + enumerable: true, + get: function () { + return _ContactPhone.default; + } +}); +Object.defineProperty(exports, "ContactPhoneOutlined", { + enumerable: true, + get: function () { + return _ContactPhoneOutlined.default; + } +}); +Object.defineProperty(exports, "ContactPhoneRounded", { + enumerable: true, + get: function () { + return _ContactPhoneRounded.default; + } +}); +Object.defineProperty(exports, "ContactPhoneSharp", { + enumerable: true, + get: function () { + return _ContactPhoneSharp.default; + } +}); +Object.defineProperty(exports, "ContactPhoneTwoTone", { + enumerable: true, + get: function () { + return _ContactPhoneTwoTone.default; + } +}); +Object.defineProperty(exports, "ContactSupport", { + enumerable: true, + get: function () { + return _ContactSupport.default; + } +}); +Object.defineProperty(exports, "ContactSupportOutlined", { + enumerable: true, + get: function () { + return _ContactSupportOutlined.default; + } +}); +Object.defineProperty(exports, "ContactSupportRounded", { + enumerable: true, + get: function () { + return _ContactSupportRounded.default; + } +}); +Object.defineProperty(exports, "ContactSupportSharp", { + enumerable: true, + get: function () { + return _ContactSupportSharp.default; + } +}); +Object.defineProperty(exports, "ContactSupportTwoTone", { + enumerable: true, + get: function () { + return _ContactSupportTwoTone.default; + } +}); +Object.defineProperty(exports, "Contactless", { + enumerable: true, + get: function () { + return _Contactless.default; + } +}); +Object.defineProperty(exports, "ContactlessOutlined", { + enumerable: true, + get: function () { + return _ContactlessOutlined.default; + } +}); +Object.defineProperty(exports, "ContactlessRounded", { + enumerable: true, + get: function () { + return _ContactlessRounded.default; + } +}); +Object.defineProperty(exports, "ContactlessSharp", { + enumerable: true, + get: function () { + return _ContactlessSharp.default; + } +}); +Object.defineProperty(exports, "ContactlessTwoTone", { + enumerable: true, + get: function () { + return _ContactlessTwoTone.default; + } +}); +Object.defineProperty(exports, "Contacts", { + enumerable: true, + get: function () { + return _Contacts.default; + } +}); +Object.defineProperty(exports, "ContactsOutlined", { + enumerable: true, + get: function () { + return _ContactsOutlined.default; + } +}); +Object.defineProperty(exports, "ContactsRounded", { + enumerable: true, + get: function () { + return _ContactsRounded.default; + } +}); +Object.defineProperty(exports, "ContactsSharp", { + enumerable: true, + get: function () { + return _ContactsSharp.default; + } +}); +Object.defineProperty(exports, "ContactsTwoTone", { + enumerable: true, + get: function () { + return _ContactsTwoTone.default; + } +}); +Object.defineProperty(exports, "ContentCopy", { + enumerable: true, + get: function () { + return _ContentCopy.default; + } +}); +Object.defineProperty(exports, "ContentCopyOutlined", { + enumerable: true, + get: function () { + return _ContentCopyOutlined.default; + } +}); +Object.defineProperty(exports, "ContentCopyRounded", { + enumerable: true, + get: function () { + return _ContentCopyRounded.default; + } +}); +Object.defineProperty(exports, "ContentCopySharp", { + enumerable: true, + get: function () { + return _ContentCopySharp.default; + } +}); +Object.defineProperty(exports, "ContentCopyTwoTone", { + enumerable: true, + get: function () { + return _ContentCopyTwoTone.default; + } +}); +Object.defineProperty(exports, "ContentCut", { + enumerable: true, + get: function () { + return _ContentCut.default; + } +}); +Object.defineProperty(exports, "ContentCutOutlined", { + enumerable: true, + get: function () { + return _ContentCutOutlined.default; + } +}); +Object.defineProperty(exports, "ContentCutRounded", { + enumerable: true, + get: function () { + return _ContentCutRounded.default; + } +}); +Object.defineProperty(exports, "ContentCutSharp", { + enumerable: true, + get: function () { + return _ContentCutSharp.default; + } +}); +Object.defineProperty(exports, "ContentCutTwoTone", { + enumerable: true, + get: function () { + return _ContentCutTwoTone.default; + } +}); +Object.defineProperty(exports, "ContentPaste", { + enumerable: true, + get: function () { + return _ContentPaste.default; + } +}); +Object.defineProperty(exports, "ContentPasteOff", { + enumerable: true, + get: function () { + return _ContentPasteOff.default; + } +}); +Object.defineProperty(exports, "ContentPasteOffOutlined", { + enumerable: true, + get: function () { + return _ContentPasteOffOutlined.default; + } +}); +Object.defineProperty(exports, "ContentPasteOffRounded", { + enumerable: true, + get: function () { + return _ContentPasteOffRounded.default; + } +}); +Object.defineProperty(exports, "ContentPasteOffSharp", { + enumerable: true, + get: function () { + return _ContentPasteOffSharp.default; + } +}); +Object.defineProperty(exports, "ContentPasteOffTwoTone", { + enumerable: true, + get: function () { + return _ContentPasteOffTwoTone.default; + } +}); +Object.defineProperty(exports, "ContentPasteOutlined", { + enumerable: true, + get: function () { + return _ContentPasteOutlined.default; + } +}); +Object.defineProperty(exports, "ContentPasteRounded", { + enumerable: true, + get: function () { + return _ContentPasteRounded.default; + } +}); +Object.defineProperty(exports, "ContentPasteSharp", { + enumerable: true, + get: function () { + return _ContentPasteSharp.default; + } +}); +Object.defineProperty(exports, "ContentPasteTwoTone", { + enumerable: true, + get: function () { + return _ContentPasteTwoTone.default; + } +}); +Object.defineProperty(exports, "ControlCamera", { + enumerable: true, + get: function () { + return _ControlCamera.default; + } +}); +Object.defineProperty(exports, "ControlCameraOutlined", { + enumerable: true, + get: function () { + return _ControlCameraOutlined.default; + } +}); +Object.defineProperty(exports, "ControlCameraRounded", { + enumerable: true, + get: function () { + return _ControlCameraRounded.default; + } +}); +Object.defineProperty(exports, "ControlCameraSharp", { + enumerable: true, + get: function () { + return _ControlCameraSharp.default; + } +}); +Object.defineProperty(exports, "ControlCameraTwoTone", { + enumerable: true, + get: function () { + return _ControlCameraTwoTone.default; + } +}); +Object.defineProperty(exports, "ControlPoint", { + enumerable: true, + get: function () { + return _ControlPoint.default; + } +}); +Object.defineProperty(exports, "ControlPointDuplicate", { + enumerable: true, + get: function () { + return _ControlPointDuplicate.default; + } +}); +Object.defineProperty(exports, "ControlPointDuplicateOutlined", { + enumerable: true, + get: function () { + return _ControlPointDuplicateOutlined.default; + } +}); +Object.defineProperty(exports, "ControlPointDuplicateRounded", { + enumerable: true, + get: function () { + return _ControlPointDuplicateRounded.default; + } +}); +Object.defineProperty(exports, "ControlPointDuplicateSharp", { + enumerable: true, + get: function () { + return _ControlPointDuplicateSharp.default; + } +}); +Object.defineProperty(exports, "ControlPointDuplicateTwoTone", { + enumerable: true, + get: function () { + return _ControlPointDuplicateTwoTone.default; + } +}); +Object.defineProperty(exports, "ControlPointOutlined", { + enumerable: true, + get: function () { + return _ControlPointOutlined.default; + } +}); +Object.defineProperty(exports, "ControlPointRounded", { + enumerable: true, + get: function () { + return _ControlPointRounded.default; + } +}); +Object.defineProperty(exports, "ControlPointSharp", { + enumerable: true, + get: function () { + return _ControlPointSharp.default; + } +}); +Object.defineProperty(exports, "ControlPointTwoTone", { + enumerable: true, + get: function () { + return _ControlPointTwoTone.default; + } +}); +Object.defineProperty(exports, "CopyAll", { + enumerable: true, + get: function () { + return _CopyAll.default; + } +}); +Object.defineProperty(exports, "CopyAllOutlined", { + enumerable: true, + get: function () { + return _CopyAllOutlined.default; + } +}); +Object.defineProperty(exports, "CopyAllRounded", { + enumerable: true, + get: function () { + return _CopyAllRounded.default; + } +}); +Object.defineProperty(exports, "CopyAllSharp", { + enumerable: true, + get: function () { + return _CopyAllSharp.default; + } +}); +Object.defineProperty(exports, "CopyAllTwoTone", { + enumerable: true, + get: function () { + return _CopyAllTwoTone.default; + } +}); +Object.defineProperty(exports, "Copyright", { + enumerable: true, + get: function () { + return _Copyright.default; + } +}); +Object.defineProperty(exports, "CopyrightOutlined", { + enumerable: true, + get: function () { + return _CopyrightOutlined.default; + } +}); +Object.defineProperty(exports, "CopyrightRounded", { + enumerable: true, + get: function () { + return _CopyrightRounded.default; + } +}); +Object.defineProperty(exports, "CopyrightSharp", { + enumerable: true, + get: function () { + return _CopyrightSharp.default; + } +}); +Object.defineProperty(exports, "CopyrightTwoTone", { + enumerable: true, + get: function () { + return _CopyrightTwoTone.default; + } +}); +Object.defineProperty(exports, "Coronavirus", { + enumerable: true, + get: function () { + return _Coronavirus.default; + } +}); +Object.defineProperty(exports, "CoronavirusOutlined", { + enumerable: true, + get: function () { + return _CoronavirusOutlined.default; + } +}); +Object.defineProperty(exports, "CoronavirusRounded", { + enumerable: true, + get: function () { + return _CoronavirusRounded.default; + } +}); +Object.defineProperty(exports, "CoronavirusSharp", { + enumerable: true, + get: function () { + return _CoronavirusSharp.default; + } +}); +Object.defineProperty(exports, "CoronavirusTwoTone", { + enumerable: true, + get: function () { + return _CoronavirusTwoTone.default; + } +}); +Object.defineProperty(exports, "CorporateFare", { + enumerable: true, + get: function () { + return _CorporateFare.default; + } +}); +Object.defineProperty(exports, "CorporateFareOutlined", { + enumerable: true, + get: function () { + return _CorporateFareOutlined.default; + } +}); +Object.defineProperty(exports, "CorporateFareRounded", { + enumerable: true, + get: function () { + return _CorporateFareRounded.default; + } +}); +Object.defineProperty(exports, "CorporateFareSharp", { + enumerable: true, + get: function () { + return _CorporateFareSharp.default; + } +}); +Object.defineProperty(exports, "CorporateFareTwoTone", { + enumerable: true, + get: function () { + return _CorporateFareTwoTone.default; + } +}); +Object.defineProperty(exports, "Cottage", { + enumerable: true, + get: function () { + return _Cottage.default; + } +}); +Object.defineProperty(exports, "CottageOutlined", { + enumerable: true, + get: function () { + return _CottageOutlined.default; + } +}); +Object.defineProperty(exports, "CottageRounded", { + enumerable: true, + get: function () { + return _CottageRounded.default; + } +}); +Object.defineProperty(exports, "CottageSharp", { + enumerable: true, + get: function () { + return _CottageSharp.default; + } +}); +Object.defineProperty(exports, "CottageTwoTone", { + enumerable: true, + get: function () { + return _CottageTwoTone.default; + } +}); +Object.defineProperty(exports, "Countertops", { + enumerable: true, + get: function () { + return _Countertops.default; + } +}); +Object.defineProperty(exports, "CountertopsOutlined", { + enumerable: true, + get: function () { + return _CountertopsOutlined.default; + } +}); +Object.defineProperty(exports, "CountertopsRounded", { + enumerable: true, + get: function () { + return _CountertopsRounded.default; + } +}); +Object.defineProperty(exports, "CountertopsSharp", { + enumerable: true, + get: function () { + return _CountertopsSharp.default; + } +}); +Object.defineProperty(exports, "CountertopsTwoTone", { + enumerable: true, + get: function () { + return _CountertopsTwoTone.default; + } +}); +Object.defineProperty(exports, "Create", { + enumerable: true, + get: function () { + return _Create.default; + } +}); +Object.defineProperty(exports, "CreateNewFolder", { + enumerable: true, + get: function () { + return _CreateNewFolder.default; + } +}); +Object.defineProperty(exports, "CreateNewFolderOutlined", { + enumerable: true, + get: function () { + return _CreateNewFolderOutlined.default; + } +}); +Object.defineProperty(exports, "CreateNewFolderRounded", { + enumerable: true, + get: function () { + return _CreateNewFolderRounded.default; + } +}); +Object.defineProperty(exports, "CreateNewFolderSharp", { + enumerable: true, + get: function () { + return _CreateNewFolderSharp.default; + } +}); +Object.defineProperty(exports, "CreateNewFolderTwoTone", { + enumerable: true, + get: function () { + return _CreateNewFolderTwoTone.default; + } +}); +Object.defineProperty(exports, "CreateOutlined", { + enumerable: true, + get: function () { + return _CreateOutlined.default; + } +}); +Object.defineProperty(exports, "CreateRounded", { + enumerable: true, + get: function () { + return _CreateRounded.default; + } +}); +Object.defineProperty(exports, "CreateSharp", { + enumerable: true, + get: function () { + return _CreateSharp.default; + } +}); +Object.defineProperty(exports, "CreateTwoTone", { + enumerable: true, + get: function () { + return _CreateTwoTone.default; + } +}); +Object.defineProperty(exports, "CreditCard", { + enumerable: true, + get: function () { + return _CreditCard.default; + } +}); +Object.defineProperty(exports, "CreditCardOff", { + enumerable: true, + get: function () { + return _CreditCardOff.default; + } +}); +Object.defineProperty(exports, "CreditCardOffOutlined", { + enumerable: true, + get: function () { + return _CreditCardOffOutlined.default; + } +}); +Object.defineProperty(exports, "CreditCardOffRounded", { + enumerable: true, + get: function () { + return _CreditCardOffRounded.default; + } +}); +Object.defineProperty(exports, "CreditCardOffSharp", { + enumerable: true, + get: function () { + return _CreditCardOffSharp.default; + } +}); +Object.defineProperty(exports, "CreditCardOffTwoTone", { + enumerable: true, + get: function () { + return _CreditCardOffTwoTone.default; + } +}); +Object.defineProperty(exports, "CreditCardOutlined", { + enumerable: true, + get: function () { + return _CreditCardOutlined.default; + } +}); +Object.defineProperty(exports, "CreditCardRounded", { + enumerable: true, + get: function () { + return _CreditCardRounded.default; + } +}); +Object.defineProperty(exports, "CreditCardSharp", { + enumerable: true, + get: function () { + return _CreditCardSharp.default; + } +}); +Object.defineProperty(exports, "CreditCardTwoTone", { + enumerable: true, + get: function () { + return _CreditCardTwoTone.default; + } +}); +Object.defineProperty(exports, "CreditScore", { + enumerable: true, + get: function () { + return _CreditScore.default; + } +}); +Object.defineProperty(exports, "CreditScoreOutlined", { + enumerable: true, + get: function () { + return _CreditScoreOutlined.default; + } +}); +Object.defineProperty(exports, "CreditScoreRounded", { + enumerable: true, + get: function () { + return _CreditScoreRounded.default; + } +}); +Object.defineProperty(exports, "CreditScoreSharp", { + enumerable: true, + get: function () { + return _CreditScoreSharp.default; + } +}); +Object.defineProperty(exports, "CreditScoreTwoTone", { + enumerable: true, + get: function () { + return _CreditScoreTwoTone.default; + } +}); +Object.defineProperty(exports, "Crib", { + enumerable: true, + get: function () { + return _Crib.default; + } +}); +Object.defineProperty(exports, "CribOutlined", { + enumerable: true, + get: function () { + return _CribOutlined.default; + } +}); +Object.defineProperty(exports, "CribRounded", { + enumerable: true, + get: function () { + return _CribRounded.default; + } +}); +Object.defineProperty(exports, "CribSharp", { + enumerable: true, + get: function () { + return _CribSharp.default; + } +}); +Object.defineProperty(exports, "CribTwoTone", { + enumerable: true, + get: function () { + return _CribTwoTone.default; + } +}); +Object.defineProperty(exports, "Crop", { + enumerable: true, + get: function () { + return _Crop.default; + } +}); +Object.defineProperty(exports, "Crop169", { + enumerable: true, + get: function () { + return _Crop2.default; + } +}); +Object.defineProperty(exports, "Crop169Outlined", { + enumerable: true, + get: function () { + return _Crop169Outlined.default; + } +}); +Object.defineProperty(exports, "Crop169Rounded", { + enumerable: true, + get: function () { + return _Crop169Rounded.default; + } +}); +Object.defineProperty(exports, "Crop169Sharp", { + enumerable: true, + get: function () { + return _Crop169Sharp.default; + } +}); +Object.defineProperty(exports, "Crop169TwoTone", { + enumerable: true, + get: function () { + return _Crop169TwoTone.default; + } +}); +Object.defineProperty(exports, "Crop32", { + enumerable: true, + get: function () { + return _Crop3.default; + } +}); +Object.defineProperty(exports, "Crop32Outlined", { + enumerable: true, + get: function () { + return _Crop32Outlined.default; + } +}); +Object.defineProperty(exports, "Crop32Rounded", { + enumerable: true, + get: function () { + return _Crop32Rounded.default; + } +}); +Object.defineProperty(exports, "Crop32Sharp", { + enumerable: true, + get: function () { + return _Crop32Sharp.default; + } +}); +Object.defineProperty(exports, "Crop32TwoTone", { + enumerable: true, + get: function () { + return _Crop32TwoTone.default; + } +}); +Object.defineProperty(exports, "Crop54", { + enumerable: true, + get: function () { + return _Crop4.default; + } +}); +Object.defineProperty(exports, "Crop54Outlined", { + enumerable: true, + get: function () { + return _Crop54Outlined.default; + } +}); +Object.defineProperty(exports, "Crop54Rounded", { + enumerable: true, + get: function () { + return _Crop54Rounded.default; + } +}); +Object.defineProperty(exports, "Crop54Sharp", { + enumerable: true, + get: function () { + return _Crop54Sharp.default; + } +}); +Object.defineProperty(exports, "Crop54TwoTone", { + enumerable: true, + get: function () { + return _Crop54TwoTone.default; + } +}); +Object.defineProperty(exports, "Crop75", { + enumerable: true, + get: function () { + return _Crop5.default; + } +}); +Object.defineProperty(exports, "Crop75Outlined", { + enumerable: true, + get: function () { + return _Crop75Outlined.default; + } +}); +Object.defineProperty(exports, "Crop75Rounded", { + enumerable: true, + get: function () { + return _Crop75Rounded.default; + } +}); +Object.defineProperty(exports, "Crop75Sharp", { + enumerable: true, + get: function () { + return _Crop75Sharp.default; + } +}); +Object.defineProperty(exports, "Crop75TwoTone", { + enumerable: true, + get: function () { + return _Crop75TwoTone.default; + } +}); +Object.defineProperty(exports, "CropDin", { + enumerable: true, + get: function () { + return _CropDin.default; + } +}); +Object.defineProperty(exports, "CropDinOutlined", { + enumerable: true, + get: function () { + return _CropDinOutlined.default; + } +}); +Object.defineProperty(exports, "CropDinRounded", { + enumerable: true, + get: function () { + return _CropDinRounded.default; + } +}); +Object.defineProperty(exports, "CropDinSharp", { + enumerable: true, + get: function () { + return _CropDinSharp.default; + } +}); +Object.defineProperty(exports, "CropDinTwoTone", { + enumerable: true, + get: function () { + return _CropDinTwoTone.default; + } +}); +Object.defineProperty(exports, "CropFree", { + enumerable: true, + get: function () { + return _CropFree.default; + } +}); +Object.defineProperty(exports, "CropFreeOutlined", { + enumerable: true, + get: function () { + return _CropFreeOutlined.default; + } +}); +Object.defineProperty(exports, "CropFreeRounded", { + enumerable: true, + get: function () { + return _CropFreeRounded.default; + } +}); +Object.defineProperty(exports, "CropFreeSharp", { + enumerable: true, + get: function () { + return _CropFreeSharp.default; + } +}); +Object.defineProperty(exports, "CropFreeTwoTone", { + enumerable: true, + get: function () { + return _CropFreeTwoTone.default; + } +}); +Object.defineProperty(exports, "CropLandscape", { + enumerable: true, + get: function () { + return _CropLandscape.default; + } +}); +Object.defineProperty(exports, "CropLandscapeOutlined", { + enumerable: true, + get: function () { + return _CropLandscapeOutlined.default; + } +}); +Object.defineProperty(exports, "CropLandscapeRounded", { + enumerable: true, + get: function () { + return _CropLandscapeRounded.default; + } +}); +Object.defineProperty(exports, "CropLandscapeSharp", { + enumerable: true, + get: function () { + return _CropLandscapeSharp.default; + } +}); +Object.defineProperty(exports, "CropLandscapeTwoTone", { + enumerable: true, + get: function () { + return _CropLandscapeTwoTone.default; + } +}); +Object.defineProperty(exports, "CropOriginal", { + enumerable: true, + get: function () { + return _CropOriginal.default; + } +}); +Object.defineProperty(exports, "CropOriginalOutlined", { + enumerable: true, + get: function () { + return _CropOriginalOutlined.default; + } +}); +Object.defineProperty(exports, "CropOriginalRounded", { + enumerable: true, + get: function () { + return _CropOriginalRounded.default; + } +}); +Object.defineProperty(exports, "CropOriginalSharp", { + enumerable: true, + get: function () { + return _CropOriginalSharp.default; + } +}); +Object.defineProperty(exports, "CropOriginalTwoTone", { + enumerable: true, + get: function () { + return _CropOriginalTwoTone.default; + } +}); +Object.defineProperty(exports, "CropOutlined", { + enumerable: true, + get: function () { + return _CropOutlined.default; + } +}); +Object.defineProperty(exports, "CropPortrait", { + enumerable: true, + get: function () { + return _CropPortrait.default; + } +}); +Object.defineProperty(exports, "CropPortraitOutlined", { + enumerable: true, + get: function () { + return _CropPortraitOutlined.default; + } +}); +Object.defineProperty(exports, "CropPortraitRounded", { + enumerable: true, + get: function () { + return _CropPortraitRounded.default; + } +}); +Object.defineProperty(exports, "CropPortraitSharp", { + enumerable: true, + get: function () { + return _CropPortraitSharp.default; + } +}); +Object.defineProperty(exports, "CropPortraitTwoTone", { + enumerable: true, + get: function () { + return _CropPortraitTwoTone.default; + } +}); +Object.defineProperty(exports, "CropRotate", { + enumerable: true, + get: function () { + return _CropRotate.default; + } +}); +Object.defineProperty(exports, "CropRotateOutlined", { + enumerable: true, + get: function () { + return _CropRotateOutlined.default; + } +}); +Object.defineProperty(exports, "CropRotateRounded", { + enumerable: true, + get: function () { + return _CropRotateRounded.default; + } +}); +Object.defineProperty(exports, "CropRotateSharp", { + enumerable: true, + get: function () { + return _CropRotateSharp.default; + } +}); +Object.defineProperty(exports, "CropRotateTwoTone", { + enumerable: true, + get: function () { + return _CropRotateTwoTone.default; + } +}); +Object.defineProperty(exports, "CropRounded", { + enumerable: true, + get: function () { + return _CropRounded.default; + } +}); +Object.defineProperty(exports, "CropSharp", { + enumerable: true, + get: function () { + return _CropSharp.default; + } +}); +Object.defineProperty(exports, "CropSquare", { + enumerable: true, + get: function () { + return _CropSquare.default; + } +}); +Object.defineProperty(exports, "CropSquareOutlined", { + enumerable: true, + get: function () { + return _CropSquareOutlined.default; + } +}); +Object.defineProperty(exports, "CropSquareRounded", { + enumerable: true, + get: function () { + return _CropSquareRounded.default; + } +}); +Object.defineProperty(exports, "CropSquareSharp", { + enumerable: true, + get: function () { + return _CropSquareSharp.default; + } +}); +Object.defineProperty(exports, "CropSquareTwoTone", { + enumerable: true, + get: function () { + return _CropSquareTwoTone.default; + } +}); +Object.defineProperty(exports, "CropTwoTone", { + enumerable: true, + get: function () { + return _CropTwoTone.default; + } +}); +Object.defineProperty(exports, "Dangerous", { + enumerable: true, + get: function () { + return _Dangerous.default; + } +}); +Object.defineProperty(exports, "DangerousOutlined", { + enumerable: true, + get: function () { + return _DangerousOutlined.default; + } +}); +Object.defineProperty(exports, "DangerousRounded", { + enumerable: true, + get: function () { + return _DangerousRounded.default; + } +}); +Object.defineProperty(exports, "DangerousSharp", { + enumerable: true, + get: function () { + return _DangerousSharp.default; + } +}); +Object.defineProperty(exports, "DangerousTwoTone", { + enumerable: true, + get: function () { + return _DangerousTwoTone.default; + } +}); +Object.defineProperty(exports, "DarkMode", { + enumerable: true, + get: function () { + return _DarkMode.default; + } +}); +Object.defineProperty(exports, "DarkModeOutlined", { + enumerable: true, + get: function () { + return _DarkModeOutlined.default; + } +}); +Object.defineProperty(exports, "DarkModeRounded", { + enumerable: true, + get: function () { + return _DarkModeRounded.default; + } +}); +Object.defineProperty(exports, "DarkModeSharp", { + enumerable: true, + get: function () { + return _DarkModeSharp.default; + } +}); +Object.defineProperty(exports, "DarkModeTwoTone", { + enumerable: true, + get: function () { + return _DarkModeTwoTone.default; + } +}); +Object.defineProperty(exports, "Dashboard", { + enumerable: true, + get: function () { + return _Dashboard.default; + } +}); +Object.defineProperty(exports, "DashboardCustomize", { + enumerable: true, + get: function () { + return _DashboardCustomize.default; + } +}); +Object.defineProperty(exports, "DashboardCustomizeOutlined", { + enumerable: true, + get: function () { + return _DashboardCustomizeOutlined.default; + } +}); +Object.defineProperty(exports, "DashboardCustomizeRounded", { + enumerable: true, + get: function () { + return _DashboardCustomizeRounded.default; + } +}); +Object.defineProperty(exports, "DashboardCustomizeSharp", { + enumerable: true, + get: function () { + return _DashboardCustomizeSharp.default; + } +}); +Object.defineProperty(exports, "DashboardCustomizeTwoTone", { + enumerable: true, + get: function () { + return _DashboardCustomizeTwoTone.default; + } +}); +Object.defineProperty(exports, "DashboardOutlined", { + enumerable: true, + get: function () { + return _DashboardOutlined.default; + } +}); +Object.defineProperty(exports, "DashboardRounded", { + enumerable: true, + get: function () { + return _DashboardRounded.default; + } +}); +Object.defineProperty(exports, "DashboardSharp", { + enumerable: true, + get: function () { + return _DashboardSharp.default; + } +}); +Object.defineProperty(exports, "DashboardTwoTone", { + enumerable: true, + get: function () { + return _DashboardTwoTone.default; + } +}); +Object.defineProperty(exports, "DataSaverOff", { + enumerable: true, + get: function () { + return _DataSaverOff.default; + } +}); +Object.defineProperty(exports, "DataSaverOffOutlined", { + enumerable: true, + get: function () { + return _DataSaverOffOutlined.default; + } +}); +Object.defineProperty(exports, "DataSaverOffRounded", { + enumerable: true, + get: function () { + return _DataSaverOffRounded.default; + } +}); +Object.defineProperty(exports, "DataSaverOffSharp", { + enumerable: true, + get: function () { + return _DataSaverOffSharp.default; + } +}); +Object.defineProperty(exports, "DataSaverOffTwoTone", { + enumerable: true, + get: function () { + return _DataSaverOffTwoTone.default; + } +}); +Object.defineProperty(exports, "DataSaverOn", { + enumerable: true, + get: function () { + return _DataSaverOn.default; + } +}); +Object.defineProperty(exports, "DataSaverOnOutlined", { + enumerable: true, + get: function () { + return _DataSaverOnOutlined.default; + } +}); +Object.defineProperty(exports, "DataSaverOnRounded", { + enumerable: true, + get: function () { + return _DataSaverOnRounded.default; + } +}); +Object.defineProperty(exports, "DataSaverOnSharp", { + enumerable: true, + get: function () { + return _DataSaverOnSharp.default; + } +}); +Object.defineProperty(exports, "DataSaverOnTwoTone", { + enumerable: true, + get: function () { + return _DataSaverOnTwoTone.default; + } +}); +Object.defineProperty(exports, "DataUsage", { + enumerable: true, + get: function () { + return _DataUsage.default; + } +}); +Object.defineProperty(exports, "DataUsageOutlined", { + enumerable: true, + get: function () { + return _DataUsageOutlined.default; + } +}); +Object.defineProperty(exports, "DataUsageRounded", { + enumerable: true, + get: function () { + return _DataUsageRounded.default; + } +}); +Object.defineProperty(exports, "DataUsageSharp", { + enumerable: true, + get: function () { + return _DataUsageSharp.default; + } +}); +Object.defineProperty(exports, "DataUsageTwoTone", { + enumerable: true, + get: function () { + return _DataUsageTwoTone.default; + } +}); +Object.defineProperty(exports, "DateRange", { + enumerable: true, + get: function () { + return _DateRange.default; + } +}); +Object.defineProperty(exports, "DateRangeOutlined", { + enumerable: true, + get: function () { + return _DateRangeOutlined.default; + } +}); +Object.defineProperty(exports, "DateRangeRounded", { + enumerable: true, + get: function () { + return _DateRangeRounded.default; + } +}); +Object.defineProperty(exports, "DateRangeSharp", { + enumerable: true, + get: function () { + return _DateRangeSharp.default; + } +}); +Object.defineProperty(exports, "DateRangeTwoTone", { + enumerable: true, + get: function () { + return _DateRangeTwoTone.default; + } +}); +Object.defineProperty(exports, "Deck", { + enumerable: true, + get: function () { + return _Deck.default; + } +}); +Object.defineProperty(exports, "DeckOutlined", { + enumerable: true, + get: function () { + return _DeckOutlined.default; + } +}); +Object.defineProperty(exports, "DeckRounded", { + enumerable: true, + get: function () { + return _DeckRounded.default; + } +}); +Object.defineProperty(exports, "DeckSharp", { + enumerable: true, + get: function () { + return _DeckSharp.default; + } +}); +Object.defineProperty(exports, "DeckTwoTone", { + enumerable: true, + get: function () { + return _DeckTwoTone.default; + } +}); +Object.defineProperty(exports, "Dehaze", { + enumerable: true, + get: function () { + return _Dehaze.default; + } +}); +Object.defineProperty(exports, "DehazeOutlined", { + enumerable: true, + get: function () { + return _DehazeOutlined.default; + } +}); +Object.defineProperty(exports, "DehazeRounded", { + enumerable: true, + get: function () { + return _DehazeRounded.default; + } +}); +Object.defineProperty(exports, "DehazeSharp", { + enumerable: true, + get: function () { + return _DehazeSharp.default; + } +}); +Object.defineProperty(exports, "DehazeTwoTone", { + enumerable: true, + get: function () { + return _DehazeTwoTone.default; + } +}); +Object.defineProperty(exports, "Delete", { + enumerable: true, + get: function () { + return _Delete.default; + } +}); +Object.defineProperty(exports, "DeleteForever", { + enumerable: true, + get: function () { + return _DeleteForever.default; + } +}); +Object.defineProperty(exports, "DeleteForeverOutlined", { + enumerable: true, + get: function () { + return _DeleteForeverOutlined.default; + } +}); +Object.defineProperty(exports, "DeleteForeverRounded", { + enumerable: true, + get: function () { + return _DeleteForeverRounded.default; + } +}); +Object.defineProperty(exports, "DeleteForeverSharp", { + enumerable: true, + get: function () { + return _DeleteForeverSharp.default; + } +}); +Object.defineProperty(exports, "DeleteForeverTwoTone", { + enumerable: true, + get: function () { + return _DeleteForeverTwoTone.default; + } +}); +Object.defineProperty(exports, "DeleteOutline", { + enumerable: true, + get: function () { + return _DeleteOutline.default; + } +}); +Object.defineProperty(exports, "DeleteOutlineOutlined", { + enumerable: true, + get: function () { + return _DeleteOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "DeleteOutlineRounded", { + enumerable: true, + get: function () { + return _DeleteOutlineRounded.default; + } +}); +Object.defineProperty(exports, "DeleteOutlineSharp", { + enumerable: true, + get: function () { + return _DeleteOutlineSharp.default; + } +}); +Object.defineProperty(exports, "DeleteOutlineTwoTone", { + enumerable: true, + get: function () { + return _DeleteOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "DeleteOutlined", { + enumerable: true, + get: function () { + return _DeleteOutlined.default; + } +}); +Object.defineProperty(exports, "DeleteRounded", { + enumerable: true, + get: function () { + return _DeleteRounded.default; + } +}); +Object.defineProperty(exports, "DeleteSharp", { + enumerable: true, + get: function () { + return _DeleteSharp.default; + } +}); +Object.defineProperty(exports, "DeleteSweep", { + enumerable: true, + get: function () { + return _DeleteSweep.default; + } +}); +Object.defineProperty(exports, "DeleteSweepOutlined", { + enumerable: true, + get: function () { + return _DeleteSweepOutlined.default; + } +}); +Object.defineProperty(exports, "DeleteSweepRounded", { + enumerable: true, + get: function () { + return _DeleteSweepRounded.default; + } +}); +Object.defineProperty(exports, "DeleteSweepSharp", { + enumerable: true, + get: function () { + return _DeleteSweepSharp.default; + } +}); +Object.defineProperty(exports, "DeleteSweepTwoTone", { + enumerable: true, + get: function () { + return _DeleteSweepTwoTone.default; + } +}); +Object.defineProperty(exports, "DeleteTwoTone", { + enumerable: true, + get: function () { + return _DeleteTwoTone.default; + } +}); +Object.defineProperty(exports, "DeliveryDining", { + enumerable: true, + get: function () { + return _DeliveryDining.default; + } +}); +Object.defineProperty(exports, "DeliveryDiningOutlined", { + enumerable: true, + get: function () { + return _DeliveryDiningOutlined.default; + } +}); +Object.defineProperty(exports, "DeliveryDiningRounded", { + enumerable: true, + get: function () { + return _DeliveryDiningRounded.default; + } +}); +Object.defineProperty(exports, "DeliveryDiningSharp", { + enumerable: true, + get: function () { + return _DeliveryDiningSharp.default; + } +}); +Object.defineProperty(exports, "DeliveryDiningTwoTone", { + enumerable: true, + get: function () { + return _DeliveryDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "DepartureBoard", { + enumerable: true, + get: function () { + return _DepartureBoard.default; + } +}); +Object.defineProperty(exports, "DepartureBoardOutlined", { + enumerable: true, + get: function () { + return _DepartureBoardOutlined.default; + } +}); +Object.defineProperty(exports, "DepartureBoardRounded", { + enumerable: true, + get: function () { + return _DepartureBoardRounded.default; + } +}); +Object.defineProperty(exports, "DepartureBoardSharp", { + enumerable: true, + get: function () { + return _DepartureBoardSharp.default; + } +}); +Object.defineProperty(exports, "DepartureBoardTwoTone", { + enumerable: true, + get: function () { + return _DepartureBoardTwoTone.default; + } +}); +Object.defineProperty(exports, "Description", { + enumerable: true, + get: function () { + return _Description.default; + } +}); +Object.defineProperty(exports, "DescriptionOutlined", { + enumerable: true, + get: function () { + return _DescriptionOutlined.default; + } +}); +Object.defineProperty(exports, "DescriptionRounded", { + enumerable: true, + get: function () { + return _DescriptionRounded.default; + } +}); +Object.defineProperty(exports, "DescriptionSharp", { + enumerable: true, + get: function () { + return _DescriptionSharp.default; + } +}); +Object.defineProperty(exports, "DescriptionTwoTone", { + enumerable: true, + get: function () { + return _DescriptionTwoTone.default; + } +}); +Object.defineProperty(exports, "DesignServices", { + enumerable: true, + get: function () { + return _DesignServices.default; + } +}); +Object.defineProperty(exports, "DesignServicesOutlined", { + enumerable: true, + get: function () { + return _DesignServicesOutlined.default; + } +}); +Object.defineProperty(exports, "DesignServicesRounded", { + enumerable: true, + get: function () { + return _DesignServicesRounded.default; + } +}); +Object.defineProperty(exports, "DesignServicesSharp", { + enumerable: true, + get: function () { + return _DesignServicesSharp.default; + } +}); +Object.defineProperty(exports, "DesignServicesTwoTone", { + enumerable: true, + get: function () { + return _DesignServicesTwoTone.default; + } +}); +Object.defineProperty(exports, "DesktopAccessDisabled", { + enumerable: true, + get: function () { + return _DesktopAccessDisabled.default; + } +}); +Object.defineProperty(exports, "DesktopAccessDisabledOutlined", { + enumerable: true, + get: function () { + return _DesktopAccessDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "DesktopAccessDisabledRounded", { + enumerable: true, + get: function () { + return _DesktopAccessDisabledRounded.default; + } +}); +Object.defineProperty(exports, "DesktopAccessDisabledSharp", { + enumerable: true, + get: function () { + return _DesktopAccessDisabledSharp.default; + } +}); +Object.defineProperty(exports, "DesktopAccessDisabledTwoTone", { + enumerable: true, + get: function () { + return _DesktopAccessDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "DesktopMac", { + enumerable: true, + get: function () { + return _DesktopMac.default; + } +}); +Object.defineProperty(exports, "DesktopMacOutlined", { + enumerable: true, + get: function () { + return _DesktopMacOutlined.default; + } +}); +Object.defineProperty(exports, "DesktopMacRounded", { + enumerable: true, + get: function () { + return _DesktopMacRounded.default; + } +}); +Object.defineProperty(exports, "DesktopMacSharp", { + enumerable: true, + get: function () { + return _DesktopMacSharp.default; + } +}); +Object.defineProperty(exports, "DesktopMacTwoTone", { + enumerable: true, + get: function () { + return _DesktopMacTwoTone.default; + } +}); +Object.defineProperty(exports, "DesktopWindows", { + enumerable: true, + get: function () { + return _DesktopWindows.default; + } +}); +Object.defineProperty(exports, "DesktopWindowsOutlined", { + enumerable: true, + get: function () { + return _DesktopWindowsOutlined.default; + } +}); +Object.defineProperty(exports, "DesktopWindowsRounded", { + enumerable: true, + get: function () { + return _DesktopWindowsRounded.default; + } +}); +Object.defineProperty(exports, "DesktopWindowsSharp", { + enumerable: true, + get: function () { + return _DesktopWindowsSharp.default; + } +}); +Object.defineProperty(exports, "DesktopWindowsTwoTone", { + enumerable: true, + get: function () { + return _DesktopWindowsTwoTone.default; + } +}); +Object.defineProperty(exports, "Details", { + enumerable: true, + get: function () { + return _Details.default; + } +}); +Object.defineProperty(exports, "DetailsOutlined", { + enumerable: true, + get: function () { + return _DetailsOutlined.default; + } +}); +Object.defineProperty(exports, "DetailsRounded", { + enumerable: true, + get: function () { + return _DetailsRounded.default; + } +}); +Object.defineProperty(exports, "DetailsSharp", { + enumerable: true, + get: function () { + return _DetailsSharp.default; + } +}); +Object.defineProperty(exports, "DetailsTwoTone", { + enumerable: true, + get: function () { + return _DetailsTwoTone.default; + } +}); +Object.defineProperty(exports, "DeveloperBoard", { + enumerable: true, + get: function () { + return _DeveloperBoard.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardOff", { + enumerable: true, + get: function () { + return _DeveloperBoardOff.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardOffOutlined", { + enumerable: true, + get: function () { + return _DeveloperBoardOffOutlined.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardOffRounded", { + enumerable: true, + get: function () { + return _DeveloperBoardOffRounded.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardOffSharp", { + enumerable: true, + get: function () { + return _DeveloperBoardOffSharp.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardOffTwoTone", { + enumerable: true, + get: function () { + return _DeveloperBoardOffTwoTone.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardOutlined", { + enumerable: true, + get: function () { + return _DeveloperBoardOutlined.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardRounded", { + enumerable: true, + get: function () { + return _DeveloperBoardRounded.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardSharp", { + enumerable: true, + get: function () { + return _DeveloperBoardSharp.default; + } +}); +Object.defineProperty(exports, "DeveloperBoardTwoTone", { + enumerable: true, + get: function () { + return _DeveloperBoardTwoTone.default; + } +}); +Object.defineProperty(exports, "DeveloperMode", { + enumerable: true, + get: function () { + return _DeveloperMode.default; + } +}); +Object.defineProperty(exports, "DeveloperModeOutlined", { + enumerable: true, + get: function () { + return _DeveloperModeOutlined.default; + } +}); +Object.defineProperty(exports, "DeveloperModeRounded", { + enumerable: true, + get: function () { + return _DeveloperModeRounded.default; + } +}); +Object.defineProperty(exports, "DeveloperModeSharp", { + enumerable: true, + get: function () { + return _DeveloperModeSharp.default; + } +}); +Object.defineProperty(exports, "DeveloperModeTwoTone", { + enumerable: true, + get: function () { + return _DeveloperModeTwoTone.default; + } +}); +Object.defineProperty(exports, "DeviceHub", { + enumerable: true, + get: function () { + return _DeviceHub.default; + } +}); +Object.defineProperty(exports, "DeviceHubOutlined", { + enumerable: true, + get: function () { + return _DeviceHubOutlined.default; + } +}); +Object.defineProperty(exports, "DeviceHubRounded", { + enumerable: true, + get: function () { + return _DeviceHubRounded.default; + } +}); +Object.defineProperty(exports, "DeviceHubSharp", { + enumerable: true, + get: function () { + return _DeviceHubSharp.default; + } +}); +Object.defineProperty(exports, "DeviceHubTwoTone", { + enumerable: true, + get: function () { + return _DeviceHubTwoTone.default; + } +}); +Object.defineProperty(exports, "DeviceThermostat", { + enumerable: true, + get: function () { + return _DeviceThermostat.default; + } +}); +Object.defineProperty(exports, "DeviceThermostatOutlined", { + enumerable: true, + get: function () { + return _DeviceThermostatOutlined.default; + } +}); +Object.defineProperty(exports, "DeviceThermostatRounded", { + enumerable: true, + get: function () { + return _DeviceThermostatRounded.default; + } +}); +Object.defineProperty(exports, "DeviceThermostatSharp", { + enumerable: true, + get: function () { + return _DeviceThermostatSharp.default; + } +}); +Object.defineProperty(exports, "DeviceThermostatTwoTone", { + enumerable: true, + get: function () { + return _DeviceThermostatTwoTone.default; + } +}); +Object.defineProperty(exports, "DeviceUnknown", { + enumerable: true, + get: function () { + return _DeviceUnknown.default; + } +}); +Object.defineProperty(exports, "DeviceUnknownOutlined", { + enumerable: true, + get: function () { + return _DeviceUnknownOutlined.default; + } +}); +Object.defineProperty(exports, "DeviceUnknownRounded", { + enumerable: true, + get: function () { + return _DeviceUnknownRounded.default; + } +}); +Object.defineProperty(exports, "DeviceUnknownSharp", { + enumerable: true, + get: function () { + return _DeviceUnknownSharp.default; + } +}); +Object.defineProperty(exports, "DeviceUnknownTwoTone", { + enumerable: true, + get: function () { + return _DeviceUnknownTwoTone.default; + } +}); +Object.defineProperty(exports, "Devices", { + enumerable: true, + get: function () { + return _Devices.default; + } +}); +Object.defineProperty(exports, "DevicesOther", { + enumerable: true, + get: function () { + return _DevicesOther.default; + } +}); +Object.defineProperty(exports, "DevicesOtherOutlined", { + enumerable: true, + get: function () { + return _DevicesOtherOutlined.default; + } +}); +Object.defineProperty(exports, "DevicesOtherRounded", { + enumerable: true, + get: function () { + return _DevicesOtherRounded.default; + } +}); +Object.defineProperty(exports, "DevicesOtherSharp", { + enumerable: true, + get: function () { + return _DevicesOtherSharp.default; + } +}); +Object.defineProperty(exports, "DevicesOtherTwoTone", { + enumerable: true, + get: function () { + return _DevicesOtherTwoTone.default; + } +}); +Object.defineProperty(exports, "DevicesOutlined", { + enumerable: true, + get: function () { + return _DevicesOutlined.default; + } +}); +Object.defineProperty(exports, "DevicesRounded", { + enumerable: true, + get: function () { + return _DevicesRounded.default; + } +}); +Object.defineProperty(exports, "DevicesSharp", { + enumerable: true, + get: function () { + return _DevicesSharp.default; + } +}); +Object.defineProperty(exports, "DevicesTwoTone", { + enumerable: true, + get: function () { + return _DevicesTwoTone.default; + } +}); +Object.defineProperty(exports, "DialerSip", { + enumerable: true, + get: function () { + return _DialerSip.default; + } +}); +Object.defineProperty(exports, "DialerSipOutlined", { + enumerable: true, + get: function () { + return _DialerSipOutlined.default; + } +}); +Object.defineProperty(exports, "DialerSipRounded", { + enumerable: true, + get: function () { + return _DialerSipRounded.default; + } +}); +Object.defineProperty(exports, "DialerSipSharp", { + enumerable: true, + get: function () { + return _DialerSipSharp.default; + } +}); +Object.defineProperty(exports, "DialerSipTwoTone", { + enumerable: true, + get: function () { + return _DialerSipTwoTone.default; + } +}); +Object.defineProperty(exports, "Dialpad", { + enumerable: true, + get: function () { + return _Dialpad.default; + } +}); +Object.defineProperty(exports, "DialpadOutlined", { + enumerable: true, + get: function () { + return _DialpadOutlined.default; + } +}); +Object.defineProperty(exports, "DialpadRounded", { + enumerable: true, + get: function () { + return _DialpadRounded.default; + } +}); +Object.defineProperty(exports, "DialpadSharp", { + enumerable: true, + get: function () { + return _DialpadSharp.default; + } +}); +Object.defineProperty(exports, "DialpadTwoTone", { + enumerable: true, + get: function () { + return _DialpadTwoTone.default; + } +}); +Object.defineProperty(exports, "Dining", { + enumerable: true, + get: function () { + return _Dining.default; + } +}); +Object.defineProperty(exports, "DiningOutlined", { + enumerable: true, + get: function () { + return _DiningOutlined.default; + } +}); +Object.defineProperty(exports, "DiningRounded", { + enumerable: true, + get: function () { + return _DiningRounded.default; + } +}); +Object.defineProperty(exports, "DiningSharp", { + enumerable: true, + get: function () { + return _DiningSharp.default; + } +}); +Object.defineProperty(exports, "DiningTwoTone", { + enumerable: true, + get: function () { + return _DiningTwoTone.default; + } +}); +Object.defineProperty(exports, "DinnerDining", { + enumerable: true, + get: function () { + return _DinnerDining.default; + } +}); +Object.defineProperty(exports, "DinnerDiningOutlined", { + enumerable: true, + get: function () { + return _DinnerDiningOutlined.default; + } +}); +Object.defineProperty(exports, "DinnerDiningRounded", { + enumerable: true, + get: function () { + return _DinnerDiningRounded.default; + } +}); +Object.defineProperty(exports, "DinnerDiningSharp", { + enumerable: true, + get: function () { + return _DinnerDiningSharp.default; + } +}); +Object.defineProperty(exports, "DinnerDiningTwoTone", { + enumerable: true, + get: function () { + return _DinnerDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "Directions", { + enumerable: true, + get: function () { + return _Directions.default; + } +}); +Object.defineProperty(exports, "DirectionsBike", { + enumerable: true, + get: function () { + return _DirectionsBike.default; + } +}); +Object.defineProperty(exports, "DirectionsBikeOutlined", { + enumerable: true, + get: function () { + return _DirectionsBikeOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsBikeRounded", { + enumerable: true, + get: function () { + return _DirectionsBikeRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsBikeSharp", { + enumerable: true, + get: function () { + return _DirectionsBikeSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsBikeTwoTone", { + enumerable: true, + get: function () { + return _DirectionsBikeTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsBoat", { + enumerable: true, + get: function () { + return _DirectionsBoat.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatFilled", { + enumerable: true, + get: function () { + return _DirectionsBoatFilled.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatFilledOutlined", { + enumerable: true, + get: function () { + return _DirectionsBoatFilledOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatFilledRounded", { + enumerable: true, + get: function () { + return _DirectionsBoatFilledRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatFilledSharp", { + enumerable: true, + get: function () { + return _DirectionsBoatFilledSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatFilledTwoTone", { + enumerable: true, + get: function () { + return _DirectionsBoatFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatOutlined", { + enumerable: true, + get: function () { + return _DirectionsBoatOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatRounded", { + enumerable: true, + get: function () { + return _DirectionsBoatRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatSharp", { + enumerable: true, + get: function () { + return _DirectionsBoatSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsBoatTwoTone", { + enumerable: true, + get: function () { + return _DirectionsBoatTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsBus", { + enumerable: true, + get: function () { + return _DirectionsBus.default; + } +}); +Object.defineProperty(exports, "DirectionsBusFilled", { + enumerable: true, + get: function () { + return _DirectionsBusFilled.default; + } +}); +Object.defineProperty(exports, "DirectionsBusFilledOutlined", { + enumerable: true, + get: function () { + return _DirectionsBusFilledOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsBusFilledRounded", { + enumerable: true, + get: function () { + return _DirectionsBusFilledRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsBusFilledSharp", { + enumerable: true, + get: function () { + return _DirectionsBusFilledSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsBusFilledTwoTone", { + enumerable: true, + get: function () { + return _DirectionsBusFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsBusOutlined", { + enumerable: true, + get: function () { + return _DirectionsBusOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsBusRounded", { + enumerable: true, + get: function () { + return _DirectionsBusRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsBusSharp", { + enumerable: true, + get: function () { + return _DirectionsBusSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsBusTwoTone", { + enumerable: true, + get: function () { + return _DirectionsBusTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsCar", { + enumerable: true, + get: function () { + return _DirectionsCar.default; + } +}); +Object.defineProperty(exports, "DirectionsCarFilled", { + enumerable: true, + get: function () { + return _DirectionsCarFilled.default; + } +}); +Object.defineProperty(exports, "DirectionsCarFilledOutlined", { + enumerable: true, + get: function () { + return _DirectionsCarFilledOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsCarFilledRounded", { + enumerable: true, + get: function () { + return _DirectionsCarFilledRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsCarFilledSharp", { + enumerable: true, + get: function () { + return _DirectionsCarFilledSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsCarFilledTwoTone", { + enumerable: true, + get: function () { + return _DirectionsCarFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsCarOutlined", { + enumerable: true, + get: function () { + return _DirectionsCarOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsCarRounded", { + enumerable: true, + get: function () { + return _DirectionsCarRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsCarSharp", { + enumerable: true, + get: function () { + return _DirectionsCarSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsCarTwoTone", { + enumerable: true, + get: function () { + return _DirectionsCarTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsOff", { + enumerable: true, + get: function () { + return _DirectionsOff.default; + } +}); +Object.defineProperty(exports, "DirectionsOffOutlined", { + enumerable: true, + get: function () { + return _DirectionsOffOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsOffRounded", { + enumerable: true, + get: function () { + return _DirectionsOffRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsOffSharp", { + enumerable: true, + get: function () { + return _DirectionsOffSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsOffTwoTone", { + enumerable: true, + get: function () { + return _DirectionsOffTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsOutlined", { + enumerable: true, + get: function () { + return _DirectionsOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsRailway", { + enumerable: true, + get: function () { + return _DirectionsRailway.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayFilled", { + enumerable: true, + get: function () { + return _DirectionsRailwayFilled.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayFilledOutlined", { + enumerable: true, + get: function () { + return _DirectionsRailwayFilledOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayFilledRounded", { + enumerable: true, + get: function () { + return _DirectionsRailwayFilledRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayFilledSharp", { + enumerable: true, + get: function () { + return _DirectionsRailwayFilledSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayFilledTwoTone", { + enumerable: true, + get: function () { + return _DirectionsRailwayFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayOutlined", { + enumerable: true, + get: function () { + return _DirectionsRailwayOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayRounded", { + enumerable: true, + get: function () { + return _DirectionsRailwayRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwaySharp", { + enumerable: true, + get: function () { + return _DirectionsRailwaySharp.default; + } +}); +Object.defineProperty(exports, "DirectionsRailwayTwoTone", { + enumerable: true, + get: function () { + return _DirectionsRailwayTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsRounded", { + enumerable: true, + get: function () { + return _DirectionsRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsRun", { + enumerable: true, + get: function () { + return _DirectionsRun.default; + } +}); +Object.defineProperty(exports, "DirectionsRunOutlined", { + enumerable: true, + get: function () { + return _DirectionsRunOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsRunRounded", { + enumerable: true, + get: function () { + return _DirectionsRunRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsRunSharp", { + enumerable: true, + get: function () { + return _DirectionsRunSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsRunTwoTone", { + enumerable: true, + get: function () { + return _DirectionsRunTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsSharp", { + enumerable: true, + get: function () { + return _DirectionsSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsSubway", { + enumerable: true, + get: function () { + return _DirectionsSubway.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayFilled", { + enumerable: true, + get: function () { + return _DirectionsSubwayFilled.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayFilledOutlined", { + enumerable: true, + get: function () { + return _DirectionsSubwayFilledOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayFilledRounded", { + enumerable: true, + get: function () { + return _DirectionsSubwayFilledRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayFilledSharp", { + enumerable: true, + get: function () { + return _DirectionsSubwayFilledSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayFilledTwoTone", { + enumerable: true, + get: function () { + return _DirectionsSubwayFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayOutlined", { + enumerable: true, + get: function () { + return _DirectionsSubwayOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayRounded", { + enumerable: true, + get: function () { + return _DirectionsSubwayRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwaySharp", { + enumerable: true, + get: function () { + return _DirectionsSubwaySharp.default; + } +}); +Object.defineProperty(exports, "DirectionsSubwayTwoTone", { + enumerable: true, + get: function () { + return _DirectionsSubwayTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsTransit", { + enumerable: true, + get: function () { + return _DirectionsTransit.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitFilled", { + enumerable: true, + get: function () { + return _DirectionsTransitFilled.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitFilledOutlined", { + enumerable: true, + get: function () { + return _DirectionsTransitFilledOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitFilledRounded", { + enumerable: true, + get: function () { + return _DirectionsTransitFilledRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitFilledSharp", { + enumerable: true, + get: function () { + return _DirectionsTransitFilledSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitFilledTwoTone", { + enumerable: true, + get: function () { + return _DirectionsTransitFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitOutlined", { + enumerable: true, + get: function () { + return _DirectionsTransitOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitRounded", { + enumerable: true, + get: function () { + return _DirectionsTransitRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitSharp", { + enumerable: true, + get: function () { + return _DirectionsTransitSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsTransitTwoTone", { + enumerable: true, + get: function () { + return _DirectionsTransitTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsTwoTone", { + enumerable: true, + get: function () { + return _DirectionsTwoTone.default; + } +}); +Object.defineProperty(exports, "DirectionsWalk", { + enumerable: true, + get: function () { + return _DirectionsWalk.default; + } +}); +Object.defineProperty(exports, "DirectionsWalkOutlined", { + enumerable: true, + get: function () { + return _DirectionsWalkOutlined.default; + } +}); +Object.defineProperty(exports, "DirectionsWalkRounded", { + enumerable: true, + get: function () { + return _DirectionsWalkRounded.default; + } +}); +Object.defineProperty(exports, "DirectionsWalkSharp", { + enumerable: true, + get: function () { + return _DirectionsWalkSharp.default; + } +}); +Object.defineProperty(exports, "DirectionsWalkTwoTone", { + enumerable: true, + get: function () { + return _DirectionsWalkTwoTone.default; + } +}); +Object.defineProperty(exports, "DirtyLens", { + enumerable: true, + get: function () { + return _DirtyLens.default; + } +}); +Object.defineProperty(exports, "DirtyLensOutlined", { + enumerable: true, + get: function () { + return _DirtyLensOutlined.default; + } +}); +Object.defineProperty(exports, "DirtyLensRounded", { + enumerable: true, + get: function () { + return _DirtyLensRounded.default; + } +}); +Object.defineProperty(exports, "DirtyLensSharp", { + enumerable: true, + get: function () { + return _DirtyLensSharp.default; + } +}); +Object.defineProperty(exports, "DirtyLensTwoTone", { + enumerable: true, + get: function () { + return _DirtyLensTwoTone.default; + } +}); +Object.defineProperty(exports, "DisabledByDefault", { + enumerable: true, + get: function () { + return _DisabledByDefault.default; + } +}); +Object.defineProperty(exports, "DisabledByDefaultOutlined", { + enumerable: true, + get: function () { + return _DisabledByDefaultOutlined.default; + } +}); +Object.defineProperty(exports, "DisabledByDefaultRounded", { + enumerable: true, + get: function () { + return _DisabledByDefaultRounded.default; + } +}); +Object.defineProperty(exports, "DisabledByDefaultSharp", { + enumerable: true, + get: function () { + return _DisabledByDefaultSharp.default; + } +}); +Object.defineProperty(exports, "DisabledByDefaultTwoTone", { + enumerable: true, + get: function () { + return _DisabledByDefaultTwoTone.default; + } +}); +Object.defineProperty(exports, "DiscFull", { + enumerable: true, + get: function () { + return _DiscFull.default; + } +}); +Object.defineProperty(exports, "DiscFullOutlined", { + enumerable: true, + get: function () { + return _DiscFullOutlined.default; + } +}); +Object.defineProperty(exports, "DiscFullRounded", { + enumerable: true, + get: function () { + return _DiscFullRounded.default; + } +}); +Object.defineProperty(exports, "DiscFullSharp", { + enumerable: true, + get: function () { + return _DiscFullSharp.default; + } +}); +Object.defineProperty(exports, "DiscFullTwoTone", { + enumerable: true, + get: function () { + return _DiscFullTwoTone.default; + } +}); +Object.defineProperty(exports, "Dns", { + enumerable: true, + get: function () { + return _Dns.default; + } +}); +Object.defineProperty(exports, "DnsOutlined", { + enumerable: true, + get: function () { + return _DnsOutlined.default; + } +}); +Object.defineProperty(exports, "DnsRounded", { + enumerable: true, + get: function () { + return _DnsRounded.default; + } +}); +Object.defineProperty(exports, "DnsSharp", { + enumerable: true, + get: function () { + return _DnsSharp.default; + } +}); +Object.defineProperty(exports, "DnsTwoTone", { + enumerable: true, + get: function () { + return _DnsTwoTone.default; + } +}); +Object.defineProperty(exports, "DoDisturb", { + enumerable: true, + get: function () { + return _DoDisturb.default; + } +}); +Object.defineProperty(exports, "DoDisturbAlt", { + enumerable: true, + get: function () { + return _DoDisturbAlt.default; + } +}); +Object.defineProperty(exports, "DoDisturbAltOutlined", { + enumerable: true, + get: function () { + return _DoDisturbAltOutlined.default; + } +}); +Object.defineProperty(exports, "DoDisturbAltRounded", { + enumerable: true, + get: function () { + return _DoDisturbAltRounded.default; + } +}); +Object.defineProperty(exports, "DoDisturbAltSharp", { + enumerable: true, + get: function () { + return _DoDisturbAltSharp.default; + } +}); +Object.defineProperty(exports, "DoDisturbAltTwoTone", { + enumerable: true, + get: function () { + return _DoDisturbAltTwoTone.default; + } +}); +Object.defineProperty(exports, "DoDisturbOff", { + enumerable: true, + get: function () { + return _DoDisturbOff.default; + } +}); +Object.defineProperty(exports, "DoDisturbOffOutlined", { + enumerable: true, + get: function () { + return _DoDisturbOffOutlined.default; + } +}); +Object.defineProperty(exports, "DoDisturbOffRounded", { + enumerable: true, + get: function () { + return _DoDisturbOffRounded.default; + } +}); +Object.defineProperty(exports, "DoDisturbOffSharp", { + enumerable: true, + get: function () { + return _DoDisturbOffSharp.default; + } +}); +Object.defineProperty(exports, "DoDisturbOffTwoTone", { + enumerable: true, + get: function () { + return _DoDisturbOffTwoTone.default; + } +}); +Object.defineProperty(exports, "DoDisturbOn", { + enumerable: true, + get: function () { + return _DoDisturbOn.default; + } +}); +Object.defineProperty(exports, "DoDisturbOnOutlined", { + enumerable: true, + get: function () { + return _DoDisturbOnOutlined.default; + } +}); +Object.defineProperty(exports, "DoDisturbOnRounded", { + enumerable: true, + get: function () { + return _DoDisturbOnRounded.default; + } +}); +Object.defineProperty(exports, "DoDisturbOnSharp", { + enumerable: true, + get: function () { + return _DoDisturbOnSharp.default; + } +}); +Object.defineProperty(exports, "DoDisturbOnTwoTone", { + enumerable: true, + get: function () { + return _DoDisturbOnTwoTone.default; + } +}); +Object.defineProperty(exports, "DoDisturbOutlined", { + enumerable: true, + get: function () { + return _DoDisturbOutlined.default; + } +}); +Object.defineProperty(exports, "DoDisturbRounded", { + enumerable: true, + get: function () { + return _DoDisturbRounded.default; + } +}); +Object.defineProperty(exports, "DoDisturbSharp", { + enumerable: true, + get: function () { + return _DoDisturbSharp.default; + } +}); +Object.defineProperty(exports, "DoDisturbTwoTone", { + enumerable: true, + get: function () { + return _DoDisturbTwoTone.default; + } +}); +Object.defineProperty(exports, "DoNotDisturb", { + enumerable: true, + get: function () { + return _DoNotDisturb.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbAlt", { + enumerable: true, + get: function () { + return _DoNotDisturbAlt.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbAltOutlined", { + enumerable: true, + get: function () { + return _DoNotDisturbAltOutlined.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbAltRounded", { + enumerable: true, + get: function () { + return _DoNotDisturbAltRounded.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbAltSharp", { + enumerable: true, + get: function () { + return _DoNotDisturbAltSharp.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbAltTwoTone", { + enumerable: true, + get: function () { + return _DoNotDisturbAltTwoTone.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOff", { + enumerable: true, + get: function () { + return _DoNotDisturbOff.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOffOutlined", { + enumerable: true, + get: function () { + return _DoNotDisturbOffOutlined.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOffRounded", { + enumerable: true, + get: function () { + return _DoNotDisturbOffRounded.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOffSharp", { + enumerable: true, + get: function () { + return _DoNotDisturbOffSharp.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOffTwoTone", { + enumerable: true, + get: function () { + return _DoNotDisturbOffTwoTone.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOn", { + enumerable: true, + get: function () { + return _DoNotDisturbOn.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnOutlined", { + enumerable: true, + get: function () { + return _DoNotDisturbOnOutlined.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnRounded", { + enumerable: true, + get: function () { + return _DoNotDisturbOnRounded.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnSharp", { + enumerable: true, + get: function () { + return _DoNotDisturbOnSharp.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnTotalSilence", { + enumerable: true, + get: function () { + return _DoNotDisturbOnTotalSilence.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnTotalSilenceOutlined", { + enumerable: true, + get: function () { + return _DoNotDisturbOnTotalSilenceOutlined.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnTotalSilenceRounded", { + enumerable: true, + get: function () { + return _DoNotDisturbOnTotalSilenceRounded.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnTotalSilenceSharp", { + enumerable: true, + get: function () { + return _DoNotDisturbOnTotalSilenceSharp.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnTotalSilenceTwoTone", { + enumerable: true, + get: function () { + return _DoNotDisturbOnTotalSilenceTwoTone.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOnTwoTone", { + enumerable: true, + get: function () { + return _DoNotDisturbOnTwoTone.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbOutlined", { + enumerable: true, + get: function () { + return _DoNotDisturbOutlined.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbRounded", { + enumerable: true, + get: function () { + return _DoNotDisturbRounded.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbSharp", { + enumerable: true, + get: function () { + return _DoNotDisturbSharp.default; + } +}); +Object.defineProperty(exports, "DoNotDisturbTwoTone", { + enumerable: true, + get: function () { + return _DoNotDisturbTwoTone.default; + } +}); +Object.defineProperty(exports, "DoNotStep", { + enumerable: true, + get: function () { + return _DoNotStep.default; + } +}); +Object.defineProperty(exports, "DoNotStepOutlined", { + enumerable: true, + get: function () { + return _DoNotStepOutlined.default; + } +}); +Object.defineProperty(exports, "DoNotStepRounded", { + enumerable: true, + get: function () { + return _DoNotStepRounded.default; + } +}); +Object.defineProperty(exports, "DoNotStepSharp", { + enumerable: true, + get: function () { + return _DoNotStepSharp.default; + } +}); +Object.defineProperty(exports, "DoNotStepTwoTone", { + enumerable: true, + get: function () { + return _DoNotStepTwoTone.default; + } +}); +Object.defineProperty(exports, "DoNotTouch", { + enumerable: true, + get: function () { + return _DoNotTouch.default; + } +}); +Object.defineProperty(exports, "DoNotTouchOutlined", { + enumerable: true, + get: function () { + return _DoNotTouchOutlined.default; + } +}); +Object.defineProperty(exports, "DoNotTouchRounded", { + enumerable: true, + get: function () { + return _DoNotTouchRounded.default; + } +}); +Object.defineProperty(exports, "DoNotTouchSharp", { + enumerable: true, + get: function () { + return _DoNotTouchSharp.default; + } +}); +Object.defineProperty(exports, "DoNotTouchTwoTone", { + enumerable: true, + get: function () { + return _DoNotTouchTwoTone.default; + } +}); +Object.defineProperty(exports, "Dock", { + enumerable: true, + get: function () { + return _Dock.default; + } +}); +Object.defineProperty(exports, "DockOutlined", { + enumerable: true, + get: function () { + return _DockOutlined.default; + } +}); +Object.defineProperty(exports, "DockRounded", { + enumerable: true, + get: function () { + return _DockRounded.default; + } +}); +Object.defineProperty(exports, "DockSharp", { + enumerable: true, + get: function () { + return _DockSharp.default; + } +}); +Object.defineProperty(exports, "DockTwoTone", { + enumerable: true, + get: function () { + return _DockTwoTone.default; + } +}); +Object.defineProperty(exports, "DocumentScanner", { + enumerable: true, + get: function () { + return _DocumentScanner.default; + } +}); +Object.defineProperty(exports, "DocumentScannerOutlined", { + enumerable: true, + get: function () { + return _DocumentScannerOutlined.default; + } +}); +Object.defineProperty(exports, "DocumentScannerRounded", { + enumerable: true, + get: function () { + return _DocumentScannerRounded.default; + } +}); +Object.defineProperty(exports, "DocumentScannerSharp", { + enumerable: true, + get: function () { + return _DocumentScannerSharp.default; + } +}); +Object.defineProperty(exports, "DocumentScannerTwoTone", { + enumerable: true, + get: function () { + return _DocumentScannerTwoTone.default; + } +}); +Object.defineProperty(exports, "Domain", { + enumerable: true, + get: function () { + return _Domain.default; + } +}); +Object.defineProperty(exports, "DomainDisabled", { + enumerable: true, + get: function () { + return _DomainDisabled.default; + } +}); +Object.defineProperty(exports, "DomainDisabledOutlined", { + enumerable: true, + get: function () { + return _DomainDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "DomainDisabledRounded", { + enumerable: true, + get: function () { + return _DomainDisabledRounded.default; + } +}); +Object.defineProperty(exports, "DomainDisabledSharp", { + enumerable: true, + get: function () { + return _DomainDisabledSharp.default; + } +}); +Object.defineProperty(exports, "DomainDisabledTwoTone", { + enumerable: true, + get: function () { + return _DomainDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "DomainOutlined", { + enumerable: true, + get: function () { + return _DomainOutlined.default; + } +}); +Object.defineProperty(exports, "DomainRounded", { + enumerable: true, + get: function () { + return _DomainRounded.default; + } +}); +Object.defineProperty(exports, "DomainSharp", { + enumerable: true, + get: function () { + return _DomainSharp.default; + } +}); +Object.defineProperty(exports, "DomainTwoTone", { + enumerable: true, + get: function () { + return _DomainTwoTone.default; + } +}); +Object.defineProperty(exports, "DomainVerification", { + enumerable: true, + get: function () { + return _DomainVerification.default; + } +}); +Object.defineProperty(exports, "DomainVerificationOutlined", { + enumerable: true, + get: function () { + return _DomainVerificationOutlined.default; + } +}); +Object.defineProperty(exports, "DomainVerificationRounded", { + enumerable: true, + get: function () { + return _DomainVerificationRounded.default; + } +}); +Object.defineProperty(exports, "DomainVerificationSharp", { + enumerable: true, + get: function () { + return _DomainVerificationSharp.default; + } +}); +Object.defineProperty(exports, "DomainVerificationTwoTone", { + enumerable: true, + get: function () { + return _DomainVerificationTwoTone.default; + } +}); +Object.defineProperty(exports, "Done", { + enumerable: true, + get: function () { + return _Done.default; + } +}); +Object.defineProperty(exports, "DoneAll", { + enumerable: true, + get: function () { + return _DoneAll.default; + } +}); +Object.defineProperty(exports, "DoneAllOutlined", { + enumerable: true, + get: function () { + return _DoneAllOutlined.default; + } +}); +Object.defineProperty(exports, "DoneAllRounded", { + enumerable: true, + get: function () { + return _DoneAllRounded.default; + } +}); +Object.defineProperty(exports, "DoneAllSharp", { + enumerable: true, + get: function () { + return _DoneAllSharp.default; + } +}); +Object.defineProperty(exports, "DoneAllTwoTone", { + enumerable: true, + get: function () { + return _DoneAllTwoTone.default; + } +}); +Object.defineProperty(exports, "DoneOutline", { + enumerable: true, + get: function () { + return _DoneOutline.default; + } +}); +Object.defineProperty(exports, "DoneOutlineOutlined", { + enumerable: true, + get: function () { + return _DoneOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "DoneOutlineRounded", { + enumerable: true, + get: function () { + return _DoneOutlineRounded.default; + } +}); +Object.defineProperty(exports, "DoneOutlineSharp", { + enumerable: true, + get: function () { + return _DoneOutlineSharp.default; + } +}); +Object.defineProperty(exports, "DoneOutlineTwoTone", { + enumerable: true, + get: function () { + return _DoneOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "DoneOutlined", { + enumerable: true, + get: function () { + return _DoneOutlined.default; + } +}); +Object.defineProperty(exports, "DoneRounded", { + enumerable: true, + get: function () { + return _DoneRounded.default; + } +}); +Object.defineProperty(exports, "DoneSharp", { + enumerable: true, + get: function () { + return _DoneSharp.default; + } +}); +Object.defineProperty(exports, "DoneTwoTone", { + enumerable: true, + get: function () { + return _DoneTwoTone.default; + } +}); +Object.defineProperty(exports, "DonutLarge", { + enumerable: true, + get: function () { + return _DonutLarge.default; + } +}); +Object.defineProperty(exports, "DonutLargeOutlined", { + enumerable: true, + get: function () { + return _DonutLargeOutlined.default; + } +}); +Object.defineProperty(exports, "DonutLargeRounded", { + enumerable: true, + get: function () { + return _DonutLargeRounded.default; + } +}); +Object.defineProperty(exports, "DonutLargeSharp", { + enumerable: true, + get: function () { + return _DonutLargeSharp.default; + } +}); +Object.defineProperty(exports, "DonutLargeTwoTone", { + enumerable: true, + get: function () { + return _DonutLargeTwoTone.default; + } +}); +Object.defineProperty(exports, "DonutSmall", { + enumerable: true, + get: function () { + return _DonutSmall.default; + } +}); +Object.defineProperty(exports, "DonutSmallOutlined", { + enumerable: true, + get: function () { + return _DonutSmallOutlined.default; + } +}); +Object.defineProperty(exports, "DonutSmallRounded", { + enumerable: true, + get: function () { + return _DonutSmallRounded.default; + } +}); +Object.defineProperty(exports, "DonutSmallSharp", { + enumerable: true, + get: function () { + return _DonutSmallSharp.default; + } +}); +Object.defineProperty(exports, "DonutSmallTwoTone", { + enumerable: true, + get: function () { + return _DonutSmallTwoTone.default; + } +}); +Object.defineProperty(exports, "DoorBack", { + enumerable: true, + get: function () { + return _DoorBack.default; + } +}); +Object.defineProperty(exports, "DoorBackOutlined", { + enumerable: true, + get: function () { + return _DoorBackOutlined.default; + } +}); +Object.defineProperty(exports, "DoorBackRounded", { + enumerable: true, + get: function () { + return _DoorBackRounded.default; + } +}); +Object.defineProperty(exports, "DoorBackSharp", { + enumerable: true, + get: function () { + return _DoorBackSharp.default; + } +}); +Object.defineProperty(exports, "DoorBackTwoTone", { + enumerable: true, + get: function () { + return _DoorBackTwoTone.default; + } +}); +Object.defineProperty(exports, "DoorFront", { + enumerable: true, + get: function () { + return _DoorFront.default; + } +}); +Object.defineProperty(exports, "DoorFrontOutlined", { + enumerable: true, + get: function () { + return _DoorFrontOutlined.default; + } +}); +Object.defineProperty(exports, "DoorFrontRounded", { + enumerable: true, + get: function () { + return _DoorFrontRounded.default; + } +}); +Object.defineProperty(exports, "DoorFrontSharp", { + enumerable: true, + get: function () { + return _DoorFrontSharp.default; + } +}); +Object.defineProperty(exports, "DoorFrontTwoTone", { + enumerable: true, + get: function () { + return _DoorFrontTwoTone.default; + } +}); +Object.defineProperty(exports, "DoorSliding", { + enumerable: true, + get: function () { + return _DoorSliding.default; + } +}); +Object.defineProperty(exports, "DoorSlidingOutlined", { + enumerable: true, + get: function () { + return _DoorSlidingOutlined.default; + } +}); +Object.defineProperty(exports, "DoorSlidingRounded", { + enumerable: true, + get: function () { + return _DoorSlidingRounded.default; + } +}); +Object.defineProperty(exports, "DoorSlidingSharp", { + enumerable: true, + get: function () { + return _DoorSlidingSharp.default; + } +}); +Object.defineProperty(exports, "DoorSlidingTwoTone", { + enumerable: true, + get: function () { + return _DoorSlidingTwoTone.default; + } +}); +Object.defineProperty(exports, "Doorbell", { + enumerable: true, + get: function () { + return _Doorbell.default; + } +}); +Object.defineProperty(exports, "DoorbellOutlined", { + enumerable: true, + get: function () { + return _DoorbellOutlined.default; + } +}); +Object.defineProperty(exports, "DoorbellRounded", { + enumerable: true, + get: function () { + return _DoorbellRounded.default; + } +}); +Object.defineProperty(exports, "DoorbellSharp", { + enumerable: true, + get: function () { + return _DoorbellSharp.default; + } +}); +Object.defineProperty(exports, "DoorbellTwoTone", { + enumerable: true, + get: function () { + return _DoorbellTwoTone.default; + } +}); +Object.defineProperty(exports, "DoubleArrow", { + enumerable: true, + get: function () { + return _DoubleArrow.default; + } +}); +Object.defineProperty(exports, "DoubleArrowOutlined", { + enumerable: true, + get: function () { + return _DoubleArrowOutlined.default; + } +}); +Object.defineProperty(exports, "DoubleArrowRounded", { + enumerable: true, + get: function () { + return _DoubleArrowRounded.default; + } +}); +Object.defineProperty(exports, "DoubleArrowSharp", { + enumerable: true, + get: function () { + return _DoubleArrowSharp.default; + } +}); +Object.defineProperty(exports, "DoubleArrowTwoTone", { + enumerable: true, + get: function () { + return _DoubleArrowTwoTone.default; + } +}); +Object.defineProperty(exports, "DownhillSkiing", { + enumerable: true, + get: function () { + return _DownhillSkiing.default; + } +}); +Object.defineProperty(exports, "DownhillSkiingOutlined", { + enumerable: true, + get: function () { + return _DownhillSkiingOutlined.default; + } +}); +Object.defineProperty(exports, "DownhillSkiingRounded", { + enumerable: true, + get: function () { + return _DownhillSkiingRounded.default; + } +}); +Object.defineProperty(exports, "DownhillSkiingSharp", { + enumerable: true, + get: function () { + return _DownhillSkiingSharp.default; + } +}); +Object.defineProperty(exports, "DownhillSkiingTwoTone", { + enumerable: true, + get: function () { + return _DownhillSkiingTwoTone.default; + } +}); +Object.defineProperty(exports, "Download", { + enumerable: true, + get: function () { + return _Download.default; + } +}); +Object.defineProperty(exports, "DownloadDone", { + enumerable: true, + get: function () { + return _DownloadDone.default; + } +}); +Object.defineProperty(exports, "DownloadDoneOutlined", { + enumerable: true, + get: function () { + return _DownloadDoneOutlined.default; + } +}); +Object.defineProperty(exports, "DownloadDoneRounded", { + enumerable: true, + get: function () { + return _DownloadDoneRounded.default; + } +}); +Object.defineProperty(exports, "DownloadDoneSharp", { + enumerable: true, + get: function () { + return _DownloadDoneSharp.default; + } +}); +Object.defineProperty(exports, "DownloadDoneTwoTone", { + enumerable: true, + get: function () { + return _DownloadDoneTwoTone.default; + } +}); +Object.defineProperty(exports, "DownloadForOffline", { + enumerable: true, + get: function () { + return _DownloadForOffline.default; + } +}); +Object.defineProperty(exports, "DownloadForOfflineOutlined", { + enumerable: true, + get: function () { + return _DownloadForOfflineOutlined.default; + } +}); +Object.defineProperty(exports, "DownloadForOfflineRounded", { + enumerable: true, + get: function () { + return _DownloadForOfflineRounded.default; + } +}); +Object.defineProperty(exports, "DownloadForOfflineSharp", { + enumerable: true, + get: function () { + return _DownloadForOfflineSharp.default; + } +}); +Object.defineProperty(exports, "DownloadForOfflineTwoTone", { + enumerable: true, + get: function () { + return _DownloadForOfflineTwoTone.default; + } +}); +Object.defineProperty(exports, "DownloadOutlined", { + enumerable: true, + get: function () { + return _DownloadOutlined.default; + } +}); +Object.defineProperty(exports, "DownloadRounded", { + enumerable: true, + get: function () { + return _DownloadRounded.default; + } +}); +Object.defineProperty(exports, "DownloadSharp", { + enumerable: true, + get: function () { + return _DownloadSharp.default; + } +}); +Object.defineProperty(exports, "DownloadTwoTone", { + enumerable: true, + get: function () { + return _DownloadTwoTone.default; + } +}); +Object.defineProperty(exports, "Downloading", { + enumerable: true, + get: function () { + return _Downloading.default; + } +}); +Object.defineProperty(exports, "DownloadingOutlined", { + enumerable: true, + get: function () { + return _DownloadingOutlined.default; + } +}); +Object.defineProperty(exports, "DownloadingRounded", { + enumerable: true, + get: function () { + return _DownloadingRounded.default; + } +}); +Object.defineProperty(exports, "DownloadingSharp", { + enumerable: true, + get: function () { + return _DownloadingSharp.default; + } +}); +Object.defineProperty(exports, "DownloadingTwoTone", { + enumerable: true, + get: function () { + return _DownloadingTwoTone.default; + } +}); +Object.defineProperty(exports, "Drafts", { + enumerable: true, + get: function () { + return _Drafts.default; + } +}); +Object.defineProperty(exports, "DraftsOutlined", { + enumerable: true, + get: function () { + return _DraftsOutlined.default; + } +}); +Object.defineProperty(exports, "DraftsRounded", { + enumerable: true, + get: function () { + return _DraftsRounded.default; + } +}); +Object.defineProperty(exports, "DraftsSharp", { + enumerable: true, + get: function () { + return _DraftsSharp.default; + } +}); +Object.defineProperty(exports, "DraftsTwoTone", { + enumerable: true, + get: function () { + return _DraftsTwoTone.default; + } +}); +Object.defineProperty(exports, "DragHandle", { + enumerable: true, + get: function () { + return _DragHandle.default; + } +}); +Object.defineProperty(exports, "DragHandleOutlined", { + enumerable: true, + get: function () { + return _DragHandleOutlined.default; + } +}); +Object.defineProperty(exports, "DragHandleRounded", { + enumerable: true, + get: function () { + return _DragHandleRounded.default; + } +}); +Object.defineProperty(exports, "DragHandleSharp", { + enumerable: true, + get: function () { + return _DragHandleSharp.default; + } +}); +Object.defineProperty(exports, "DragHandleTwoTone", { + enumerable: true, + get: function () { + return _DragHandleTwoTone.default; + } +}); +Object.defineProperty(exports, "DragIndicator", { + enumerable: true, + get: function () { + return _DragIndicator.default; + } +}); +Object.defineProperty(exports, "DragIndicatorOutlined", { + enumerable: true, + get: function () { + return _DragIndicatorOutlined.default; + } +}); +Object.defineProperty(exports, "DragIndicatorRounded", { + enumerable: true, + get: function () { + return _DragIndicatorRounded.default; + } +}); +Object.defineProperty(exports, "DragIndicatorSharp", { + enumerable: true, + get: function () { + return _DragIndicatorSharp.default; + } +}); +Object.defineProperty(exports, "DragIndicatorTwoTone", { + enumerable: true, + get: function () { + return _DragIndicatorTwoTone.default; + } +}); +Object.defineProperty(exports, "DriveEta", { + enumerable: true, + get: function () { + return _DriveEta.default; + } +}); +Object.defineProperty(exports, "DriveEtaOutlined", { + enumerable: true, + get: function () { + return _DriveEtaOutlined.default; + } +}); +Object.defineProperty(exports, "DriveEtaRounded", { + enumerable: true, + get: function () { + return _DriveEtaRounded.default; + } +}); +Object.defineProperty(exports, "DriveEtaSharp", { + enumerable: true, + get: function () { + return _DriveEtaSharp.default; + } +}); +Object.defineProperty(exports, "DriveEtaTwoTone", { + enumerable: true, + get: function () { + return _DriveEtaTwoTone.default; + } +}); +Object.defineProperty(exports, "DriveFileMove", { + enumerable: true, + get: function () { + return _DriveFileMove.default; + } +}); +Object.defineProperty(exports, "DriveFileMoveOutlined", { + enumerable: true, + get: function () { + return _DriveFileMoveOutlined.default; + } +}); +Object.defineProperty(exports, "DriveFileMoveRounded", { + enumerable: true, + get: function () { + return _DriveFileMoveRounded.default; + } +}); +Object.defineProperty(exports, "DriveFileMoveSharp", { + enumerable: true, + get: function () { + return _DriveFileMoveSharp.default; + } +}); +Object.defineProperty(exports, "DriveFileMoveTwoTone", { + enumerable: true, + get: function () { + return _DriveFileMoveTwoTone.default; + } +}); +Object.defineProperty(exports, "DriveFileRenameOutline", { + enumerable: true, + get: function () { + return _DriveFileRenameOutline.default; + } +}); +Object.defineProperty(exports, "DriveFileRenameOutlineOutlined", { + enumerable: true, + get: function () { + return _DriveFileRenameOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "DriveFileRenameOutlineRounded", { + enumerable: true, + get: function () { + return _DriveFileRenameOutlineRounded.default; + } +}); +Object.defineProperty(exports, "DriveFileRenameOutlineSharp", { + enumerable: true, + get: function () { + return _DriveFileRenameOutlineSharp.default; + } +}); +Object.defineProperty(exports, "DriveFileRenameOutlineTwoTone", { + enumerable: true, + get: function () { + return _DriveFileRenameOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "DriveFolderUpload", { + enumerable: true, + get: function () { + return _DriveFolderUpload.default; + } +}); +Object.defineProperty(exports, "DriveFolderUploadOutlined", { + enumerable: true, + get: function () { + return _DriveFolderUploadOutlined.default; + } +}); +Object.defineProperty(exports, "DriveFolderUploadRounded", { + enumerable: true, + get: function () { + return _DriveFolderUploadRounded.default; + } +}); +Object.defineProperty(exports, "DriveFolderUploadSharp", { + enumerable: true, + get: function () { + return _DriveFolderUploadSharp.default; + } +}); +Object.defineProperty(exports, "DriveFolderUploadTwoTone", { + enumerable: true, + get: function () { + return _DriveFolderUploadTwoTone.default; + } +}); +Object.defineProperty(exports, "Dry", { + enumerable: true, + get: function () { + return _Dry.default; + } +}); +Object.defineProperty(exports, "DryCleaning", { + enumerable: true, + get: function () { + return _DryCleaning.default; + } +}); +Object.defineProperty(exports, "DryCleaningOutlined", { + enumerable: true, + get: function () { + return _DryCleaningOutlined.default; + } +}); +Object.defineProperty(exports, "DryCleaningRounded", { + enumerable: true, + get: function () { + return _DryCleaningRounded.default; + } +}); +Object.defineProperty(exports, "DryCleaningSharp", { + enumerable: true, + get: function () { + return _DryCleaningSharp.default; + } +}); +Object.defineProperty(exports, "DryCleaningTwoTone", { + enumerable: true, + get: function () { + return _DryCleaningTwoTone.default; + } +}); +Object.defineProperty(exports, "DryOutlined", { + enumerable: true, + get: function () { + return _DryOutlined.default; + } +}); +Object.defineProperty(exports, "DryRounded", { + enumerable: true, + get: function () { + return _DryRounded.default; + } +}); +Object.defineProperty(exports, "DrySharp", { + enumerable: true, + get: function () { + return _DrySharp.default; + } +}); +Object.defineProperty(exports, "DryTwoTone", { + enumerable: true, + get: function () { + return _DryTwoTone.default; + } +}); +Object.defineProperty(exports, "Duo", { + enumerable: true, + get: function () { + return _Duo.default; + } +}); +Object.defineProperty(exports, "DuoOutlined", { + enumerable: true, + get: function () { + return _DuoOutlined.default; + } +}); +Object.defineProperty(exports, "DuoRounded", { + enumerable: true, + get: function () { + return _DuoRounded.default; + } +}); +Object.defineProperty(exports, "DuoSharp", { + enumerable: true, + get: function () { + return _DuoSharp.default; + } +}); +Object.defineProperty(exports, "DuoTwoTone", { + enumerable: true, + get: function () { + return _DuoTwoTone.default; + } +}); +Object.defineProperty(exports, "Dvr", { + enumerable: true, + get: function () { + return _Dvr.default; + } +}); +Object.defineProperty(exports, "DvrOutlined", { + enumerable: true, + get: function () { + return _DvrOutlined.default; + } +}); +Object.defineProperty(exports, "DvrRounded", { + enumerable: true, + get: function () { + return _DvrRounded.default; + } +}); +Object.defineProperty(exports, "DvrSharp", { + enumerable: true, + get: function () { + return _DvrSharp.default; + } +}); +Object.defineProperty(exports, "DvrTwoTone", { + enumerable: true, + get: function () { + return _DvrTwoTone.default; + } +}); +Object.defineProperty(exports, "DynamicFeed", { + enumerable: true, + get: function () { + return _DynamicFeed.default; + } +}); +Object.defineProperty(exports, "DynamicFeedOutlined", { + enumerable: true, + get: function () { + return _DynamicFeedOutlined.default; + } +}); +Object.defineProperty(exports, "DynamicFeedRounded", { + enumerable: true, + get: function () { + return _DynamicFeedRounded.default; + } +}); +Object.defineProperty(exports, "DynamicFeedSharp", { + enumerable: true, + get: function () { + return _DynamicFeedSharp.default; + } +}); +Object.defineProperty(exports, "DynamicFeedTwoTone", { + enumerable: true, + get: function () { + return _DynamicFeedTwoTone.default; + } +}); +Object.defineProperty(exports, "DynamicForm", { + enumerable: true, + get: function () { + return _DynamicForm.default; + } +}); +Object.defineProperty(exports, "DynamicFormOutlined", { + enumerable: true, + get: function () { + return _DynamicFormOutlined.default; + } +}); +Object.defineProperty(exports, "DynamicFormRounded", { + enumerable: true, + get: function () { + return _DynamicFormRounded.default; + } +}); +Object.defineProperty(exports, "DynamicFormSharp", { + enumerable: true, + get: function () { + return _DynamicFormSharp.default; + } +}); +Object.defineProperty(exports, "DynamicFormTwoTone", { + enumerable: true, + get: function () { + return _DynamicFormTwoTone.default; + } +}); +Object.defineProperty(exports, "EMobiledata", { + enumerable: true, + get: function () { + return _EMobiledata.default; + } +}); +Object.defineProperty(exports, "EMobiledataOutlined", { + enumerable: true, + get: function () { + return _EMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "EMobiledataRounded", { + enumerable: true, + get: function () { + return _EMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "EMobiledataSharp", { + enumerable: true, + get: function () { + return _EMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "EMobiledataTwoTone", { + enumerable: true, + get: function () { + return _EMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "Earbuds", { + enumerable: true, + get: function () { + return _Earbuds.default; + } +}); +Object.defineProperty(exports, "EarbudsBattery", { + enumerable: true, + get: function () { + return _EarbudsBattery.default; + } +}); +Object.defineProperty(exports, "EarbudsBatteryOutlined", { + enumerable: true, + get: function () { + return _EarbudsBatteryOutlined.default; + } +}); +Object.defineProperty(exports, "EarbudsBatteryRounded", { + enumerable: true, + get: function () { + return _EarbudsBatteryRounded.default; + } +}); +Object.defineProperty(exports, "EarbudsBatterySharp", { + enumerable: true, + get: function () { + return _EarbudsBatterySharp.default; + } +}); +Object.defineProperty(exports, "EarbudsBatteryTwoTone", { + enumerable: true, + get: function () { + return _EarbudsBatteryTwoTone.default; + } +}); +Object.defineProperty(exports, "EarbudsOutlined", { + enumerable: true, + get: function () { + return _EarbudsOutlined.default; + } +}); +Object.defineProperty(exports, "EarbudsRounded", { + enumerable: true, + get: function () { + return _EarbudsRounded.default; + } +}); +Object.defineProperty(exports, "EarbudsSharp", { + enumerable: true, + get: function () { + return _EarbudsSharp.default; + } +}); +Object.defineProperty(exports, "EarbudsTwoTone", { + enumerable: true, + get: function () { + return _EarbudsTwoTone.default; + } +}); +Object.defineProperty(exports, "East", { + enumerable: true, + get: function () { + return _East.default; + } +}); +Object.defineProperty(exports, "EastOutlined", { + enumerable: true, + get: function () { + return _EastOutlined.default; + } +}); +Object.defineProperty(exports, "EastRounded", { + enumerable: true, + get: function () { + return _EastRounded.default; + } +}); +Object.defineProperty(exports, "EastSharp", { + enumerable: true, + get: function () { + return _EastSharp.default; + } +}); +Object.defineProperty(exports, "EastTwoTone", { + enumerable: true, + get: function () { + return _EastTwoTone.default; + } +}); +Object.defineProperty(exports, "EdgesensorHigh", { + enumerable: true, + get: function () { + return _EdgesensorHigh.default; + } +}); +Object.defineProperty(exports, "EdgesensorHighOutlined", { + enumerable: true, + get: function () { + return _EdgesensorHighOutlined.default; + } +}); +Object.defineProperty(exports, "EdgesensorHighRounded", { + enumerable: true, + get: function () { + return _EdgesensorHighRounded.default; + } +}); +Object.defineProperty(exports, "EdgesensorHighSharp", { + enumerable: true, + get: function () { + return _EdgesensorHighSharp.default; + } +}); +Object.defineProperty(exports, "EdgesensorHighTwoTone", { + enumerable: true, + get: function () { + return _EdgesensorHighTwoTone.default; + } +}); +Object.defineProperty(exports, "EdgesensorLow", { + enumerable: true, + get: function () { + return _EdgesensorLow.default; + } +}); +Object.defineProperty(exports, "EdgesensorLowOutlined", { + enumerable: true, + get: function () { + return _EdgesensorLowOutlined.default; + } +}); +Object.defineProperty(exports, "EdgesensorLowRounded", { + enumerable: true, + get: function () { + return _EdgesensorLowRounded.default; + } +}); +Object.defineProperty(exports, "EdgesensorLowSharp", { + enumerable: true, + get: function () { + return _EdgesensorLowSharp.default; + } +}); +Object.defineProperty(exports, "EdgesensorLowTwoTone", { + enumerable: true, + get: function () { + return _EdgesensorLowTwoTone.default; + } +}); +Object.defineProperty(exports, "Edit", { + enumerable: true, + get: function () { + return _Edit.default; + } +}); +Object.defineProperty(exports, "EditAttributes", { + enumerable: true, + get: function () { + return _EditAttributes.default; + } +}); +Object.defineProperty(exports, "EditAttributesOutlined", { + enumerable: true, + get: function () { + return _EditAttributesOutlined.default; + } +}); +Object.defineProperty(exports, "EditAttributesRounded", { + enumerable: true, + get: function () { + return _EditAttributesRounded.default; + } +}); +Object.defineProperty(exports, "EditAttributesSharp", { + enumerable: true, + get: function () { + return _EditAttributesSharp.default; + } +}); +Object.defineProperty(exports, "EditAttributesTwoTone", { + enumerable: true, + get: function () { + return _EditAttributesTwoTone.default; + } +}); +Object.defineProperty(exports, "EditLocation", { + enumerable: true, + get: function () { + return _EditLocation.default; + } +}); +Object.defineProperty(exports, "EditLocationAlt", { + enumerable: true, + get: function () { + return _EditLocationAlt.default; + } +}); +Object.defineProperty(exports, "EditLocationAltOutlined", { + enumerable: true, + get: function () { + return _EditLocationAltOutlined.default; + } +}); +Object.defineProperty(exports, "EditLocationAltRounded", { + enumerable: true, + get: function () { + return _EditLocationAltRounded.default; + } +}); +Object.defineProperty(exports, "EditLocationAltSharp", { + enumerable: true, + get: function () { + return _EditLocationAltSharp.default; + } +}); +Object.defineProperty(exports, "EditLocationAltTwoTone", { + enumerable: true, + get: function () { + return _EditLocationAltTwoTone.default; + } +}); +Object.defineProperty(exports, "EditLocationOutlined", { + enumerable: true, + get: function () { + return _EditLocationOutlined.default; + } +}); +Object.defineProperty(exports, "EditLocationRounded", { + enumerable: true, + get: function () { + return _EditLocationRounded.default; + } +}); +Object.defineProperty(exports, "EditLocationSharp", { + enumerable: true, + get: function () { + return _EditLocationSharp.default; + } +}); +Object.defineProperty(exports, "EditLocationTwoTone", { + enumerable: true, + get: function () { + return _EditLocationTwoTone.default; + } +}); +Object.defineProperty(exports, "EditNotifications", { + enumerable: true, + get: function () { + return _EditNotifications.default; + } +}); +Object.defineProperty(exports, "EditNotificationsOutlined", { + enumerable: true, + get: function () { + return _EditNotificationsOutlined.default; + } +}); +Object.defineProperty(exports, "EditNotificationsRounded", { + enumerable: true, + get: function () { + return _EditNotificationsRounded.default; + } +}); +Object.defineProperty(exports, "EditNotificationsSharp", { + enumerable: true, + get: function () { + return _EditNotificationsSharp.default; + } +}); +Object.defineProperty(exports, "EditNotificationsTwoTone", { + enumerable: true, + get: function () { + return _EditNotificationsTwoTone.default; + } +}); +Object.defineProperty(exports, "EditOff", { + enumerable: true, + get: function () { + return _EditOff.default; + } +}); +Object.defineProperty(exports, "EditOffOutlined", { + enumerable: true, + get: function () { + return _EditOffOutlined.default; + } +}); +Object.defineProperty(exports, "EditOffRounded", { + enumerable: true, + get: function () { + return _EditOffRounded.default; + } +}); +Object.defineProperty(exports, "EditOffSharp", { + enumerable: true, + get: function () { + return _EditOffSharp.default; + } +}); +Object.defineProperty(exports, "EditOffTwoTone", { + enumerable: true, + get: function () { + return _EditOffTwoTone.default; + } +}); +Object.defineProperty(exports, "EditOutlined", { + enumerable: true, + get: function () { + return _EditOutlined.default; + } +}); +Object.defineProperty(exports, "EditRoad", { + enumerable: true, + get: function () { + return _EditRoad.default; + } +}); +Object.defineProperty(exports, "EditRoadOutlined", { + enumerable: true, + get: function () { + return _EditRoadOutlined.default; + } +}); +Object.defineProperty(exports, "EditRoadRounded", { + enumerable: true, + get: function () { + return _EditRoadRounded.default; + } +}); +Object.defineProperty(exports, "EditRoadSharp", { + enumerable: true, + get: function () { + return _EditRoadSharp.default; + } +}); +Object.defineProperty(exports, "EditRoadTwoTone", { + enumerable: true, + get: function () { + return _EditRoadTwoTone.default; + } +}); +Object.defineProperty(exports, "EditRounded", { + enumerable: true, + get: function () { + return _EditRounded.default; + } +}); +Object.defineProperty(exports, "EditSharp", { + enumerable: true, + get: function () { + return _EditSharp.default; + } +}); +Object.defineProperty(exports, "EditTwoTone", { + enumerable: true, + get: function () { + return _EditTwoTone.default; + } +}); +Object.defineProperty(exports, "EightK", { + enumerable: true, + get: function () { + return _EightK.default; + } +}); +Object.defineProperty(exports, "EightKOutlined", { + enumerable: true, + get: function () { + return _EightKOutlined.default; + } +}); +Object.defineProperty(exports, "EightKPlus", { + enumerable: true, + get: function () { + return _EightKPlus.default; + } +}); +Object.defineProperty(exports, "EightKPlusOutlined", { + enumerable: true, + get: function () { + return _EightKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "EightKPlusRounded", { + enumerable: true, + get: function () { + return _EightKPlusRounded.default; + } +}); +Object.defineProperty(exports, "EightKPlusSharp", { + enumerable: true, + get: function () { + return _EightKPlusSharp.default; + } +}); +Object.defineProperty(exports, "EightKPlusTwoTone", { + enumerable: true, + get: function () { + return _EightKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "EightKRounded", { + enumerable: true, + get: function () { + return _EightKRounded.default; + } +}); +Object.defineProperty(exports, "EightKSharp", { + enumerable: true, + get: function () { + return _EightKSharp.default; + } +}); +Object.defineProperty(exports, "EightKTwoTone", { + enumerable: true, + get: function () { + return _EightKTwoTone.default; + } +}); +Object.defineProperty(exports, "EightMp", { + enumerable: true, + get: function () { + return _EightMp.default; + } +}); +Object.defineProperty(exports, "EightMpOutlined", { + enumerable: true, + get: function () { + return _EightMpOutlined.default; + } +}); +Object.defineProperty(exports, "EightMpRounded", { + enumerable: true, + get: function () { + return _EightMpRounded.default; + } +}); +Object.defineProperty(exports, "EightMpSharp", { + enumerable: true, + get: function () { + return _EightMpSharp.default; + } +}); +Object.defineProperty(exports, "EightMpTwoTone", { + enumerable: true, + get: function () { + return _EightMpTwoTone.default; + } +}); +Object.defineProperty(exports, "EightteenMp", { + enumerable: true, + get: function () { + return _EightteenMp.default; + } +}); +Object.defineProperty(exports, "EightteenMpOutlined", { + enumerable: true, + get: function () { + return _EightteenMpOutlined.default; + } +}); +Object.defineProperty(exports, "EightteenMpRounded", { + enumerable: true, + get: function () { + return _EightteenMpRounded.default; + } +}); +Object.defineProperty(exports, "EightteenMpSharp", { + enumerable: true, + get: function () { + return _EightteenMpSharp.default; + } +}); +Object.defineProperty(exports, "EightteenMpTwoTone", { + enumerable: true, + get: function () { + return _EightteenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "Eject", { + enumerable: true, + get: function () { + return _Eject.default; + } +}); +Object.defineProperty(exports, "EjectOutlined", { + enumerable: true, + get: function () { + return _EjectOutlined.default; + } +}); +Object.defineProperty(exports, "EjectRounded", { + enumerable: true, + get: function () { + return _EjectRounded.default; + } +}); +Object.defineProperty(exports, "EjectSharp", { + enumerable: true, + get: function () { + return _EjectSharp.default; + } +}); +Object.defineProperty(exports, "EjectTwoTone", { + enumerable: true, + get: function () { + return _EjectTwoTone.default; + } +}); +Object.defineProperty(exports, "Elderly", { + enumerable: true, + get: function () { + return _Elderly.default; + } +}); +Object.defineProperty(exports, "ElderlyOutlined", { + enumerable: true, + get: function () { + return _ElderlyOutlined.default; + } +}); +Object.defineProperty(exports, "ElderlyRounded", { + enumerable: true, + get: function () { + return _ElderlyRounded.default; + } +}); +Object.defineProperty(exports, "ElderlySharp", { + enumerable: true, + get: function () { + return _ElderlySharp.default; + } +}); +Object.defineProperty(exports, "ElderlyTwoTone", { + enumerable: true, + get: function () { + return _ElderlyTwoTone.default; + } +}); +Object.defineProperty(exports, "ElectricBike", { + enumerable: true, + get: function () { + return _ElectricBike.default; + } +}); +Object.defineProperty(exports, "ElectricBikeOutlined", { + enumerable: true, + get: function () { + return _ElectricBikeOutlined.default; + } +}); +Object.defineProperty(exports, "ElectricBikeRounded", { + enumerable: true, + get: function () { + return _ElectricBikeRounded.default; + } +}); +Object.defineProperty(exports, "ElectricBikeSharp", { + enumerable: true, + get: function () { + return _ElectricBikeSharp.default; + } +}); +Object.defineProperty(exports, "ElectricBikeTwoTone", { + enumerable: true, + get: function () { + return _ElectricBikeTwoTone.default; + } +}); +Object.defineProperty(exports, "ElectricCar", { + enumerable: true, + get: function () { + return _ElectricCar.default; + } +}); +Object.defineProperty(exports, "ElectricCarOutlined", { + enumerable: true, + get: function () { + return _ElectricCarOutlined.default; + } +}); +Object.defineProperty(exports, "ElectricCarRounded", { + enumerable: true, + get: function () { + return _ElectricCarRounded.default; + } +}); +Object.defineProperty(exports, "ElectricCarSharp", { + enumerable: true, + get: function () { + return _ElectricCarSharp.default; + } +}); +Object.defineProperty(exports, "ElectricCarTwoTone", { + enumerable: true, + get: function () { + return _ElectricCarTwoTone.default; + } +}); +Object.defineProperty(exports, "ElectricMoped", { + enumerable: true, + get: function () { + return _ElectricMoped.default; + } +}); +Object.defineProperty(exports, "ElectricMopedOutlined", { + enumerable: true, + get: function () { + return _ElectricMopedOutlined.default; + } +}); +Object.defineProperty(exports, "ElectricMopedRounded", { + enumerable: true, + get: function () { + return _ElectricMopedRounded.default; + } +}); +Object.defineProperty(exports, "ElectricMopedSharp", { + enumerable: true, + get: function () { + return _ElectricMopedSharp.default; + } +}); +Object.defineProperty(exports, "ElectricMopedTwoTone", { + enumerable: true, + get: function () { + return _ElectricMopedTwoTone.default; + } +}); +Object.defineProperty(exports, "ElectricRickshaw", { + enumerable: true, + get: function () { + return _ElectricRickshaw.default; + } +}); +Object.defineProperty(exports, "ElectricRickshawOutlined", { + enumerable: true, + get: function () { + return _ElectricRickshawOutlined.default; + } +}); +Object.defineProperty(exports, "ElectricRickshawRounded", { + enumerable: true, + get: function () { + return _ElectricRickshawRounded.default; + } +}); +Object.defineProperty(exports, "ElectricRickshawSharp", { + enumerable: true, + get: function () { + return _ElectricRickshawSharp.default; + } +}); +Object.defineProperty(exports, "ElectricRickshawTwoTone", { + enumerable: true, + get: function () { + return _ElectricRickshawTwoTone.default; + } +}); +Object.defineProperty(exports, "ElectricScooter", { + enumerable: true, + get: function () { + return _ElectricScooter.default; + } +}); +Object.defineProperty(exports, "ElectricScooterOutlined", { + enumerable: true, + get: function () { + return _ElectricScooterOutlined.default; + } +}); +Object.defineProperty(exports, "ElectricScooterRounded", { + enumerable: true, + get: function () { + return _ElectricScooterRounded.default; + } +}); +Object.defineProperty(exports, "ElectricScooterSharp", { + enumerable: true, + get: function () { + return _ElectricScooterSharp.default; + } +}); +Object.defineProperty(exports, "ElectricScooterTwoTone", { + enumerable: true, + get: function () { + return _ElectricScooterTwoTone.default; + } +}); +Object.defineProperty(exports, "ElectricalServices", { + enumerable: true, + get: function () { + return _ElectricalServices.default; + } +}); +Object.defineProperty(exports, "ElectricalServicesOutlined", { + enumerable: true, + get: function () { + return _ElectricalServicesOutlined.default; + } +}); +Object.defineProperty(exports, "ElectricalServicesRounded", { + enumerable: true, + get: function () { + return _ElectricalServicesRounded.default; + } +}); +Object.defineProperty(exports, "ElectricalServicesSharp", { + enumerable: true, + get: function () { + return _ElectricalServicesSharp.default; + } +}); +Object.defineProperty(exports, "ElectricalServicesTwoTone", { + enumerable: true, + get: function () { + return _ElectricalServicesTwoTone.default; + } +}); +Object.defineProperty(exports, "Elevator", { + enumerable: true, + get: function () { + return _Elevator.default; + } +}); +Object.defineProperty(exports, "ElevatorOutlined", { + enumerable: true, + get: function () { + return _ElevatorOutlined.default; + } +}); +Object.defineProperty(exports, "ElevatorRounded", { + enumerable: true, + get: function () { + return _ElevatorRounded.default; + } +}); +Object.defineProperty(exports, "ElevatorSharp", { + enumerable: true, + get: function () { + return _ElevatorSharp.default; + } +}); +Object.defineProperty(exports, "ElevatorTwoTone", { + enumerable: true, + get: function () { + return _ElevatorTwoTone.default; + } +}); +Object.defineProperty(exports, "ElevenMp", { + enumerable: true, + get: function () { + return _ElevenMp.default; + } +}); +Object.defineProperty(exports, "ElevenMpOutlined", { + enumerable: true, + get: function () { + return _ElevenMpOutlined.default; + } +}); +Object.defineProperty(exports, "ElevenMpRounded", { + enumerable: true, + get: function () { + return _ElevenMpRounded.default; + } +}); +Object.defineProperty(exports, "ElevenMpSharp", { + enumerable: true, + get: function () { + return _ElevenMpSharp.default; + } +}); +Object.defineProperty(exports, "ElevenMpTwoTone", { + enumerable: true, + get: function () { + return _ElevenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "Email", { + enumerable: true, + get: function () { + return _Email.default; + } +}); +Object.defineProperty(exports, "EmailOutlined", { + enumerable: true, + get: function () { + return _EmailOutlined.default; + } +}); +Object.defineProperty(exports, "EmailRounded", { + enumerable: true, + get: function () { + return _EmailRounded.default; + } +}); +Object.defineProperty(exports, "EmailSharp", { + enumerable: true, + get: function () { + return _EmailSharp.default; + } +}); +Object.defineProperty(exports, "EmailTwoTone", { + enumerable: true, + get: function () { + return _EmailTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiEmotions", { + enumerable: true, + get: function () { + return _EmojiEmotions.default; + } +}); +Object.defineProperty(exports, "EmojiEmotionsOutlined", { + enumerable: true, + get: function () { + return _EmojiEmotionsOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiEmotionsRounded", { + enumerable: true, + get: function () { + return _EmojiEmotionsRounded.default; + } +}); +Object.defineProperty(exports, "EmojiEmotionsSharp", { + enumerable: true, + get: function () { + return _EmojiEmotionsSharp.default; + } +}); +Object.defineProperty(exports, "EmojiEmotionsTwoTone", { + enumerable: true, + get: function () { + return _EmojiEmotionsTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiEvents", { + enumerable: true, + get: function () { + return _EmojiEvents.default; + } +}); +Object.defineProperty(exports, "EmojiEventsOutlined", { + enumerable: true, + get: function () { + return _EmojiEventsOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiEventsRounded", { + enumerable: true, + get: function () { + return _EmojiEventsRounded.default; + } +}); +Object.defineProperty(exports, "EmojiEventsSharp", { + enumerable: true, + get: function () { + return _EmojiEventsSharp.default; + } +}); +Object.defineProperty(exports, "EmojiEventsTwoTone", { + enumerable: true, + get: function () { + return _EmojiEventsTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiFlags", { + enumerable: true, + get: function () { + return _EmojiFlags.default; + } +}); +Object.defineProperty(exports, "EmojiFlagsOutlined", { + enumerable: true, + get: function () { + return _EmojiFlagsOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiFlagsRounded", { + enumerable: true, + get: function () { + return _EmojiFlagsRounded.default; + } +}); +Object.defineProperty(exports, "EmojiFlagsSharp", { + enumerable: true, + get: function () { + return _EmojiFlagsSharp.default; + } +}); +Object.defineProperty(exports, "EmojiFlagsTwoTone", { + enumerable: true, + get: function () { + return _EmojiFlagsTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiFoodBeverage", { + enumerable: true, + get: function () { + return _EmojiFoodBeverage.default; + } +}); +Object.defineProperty(exports, "EmojiFoodBeverageOutlined", { + enumerable: true, + get: function () { + return _EmojiFoodBeverageOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiFoodBeverageRounded", { + enumerable: true, + get: function () { + return _EmojiFoodBeverageRounded.default; + } +}); +Object.defineProperty(exports, "EmojiFoodBeverageSharp", { + enumerable: true, + get: function () { + return _EmojiFoodBeverageSharp.default; + } +}); +Object.defineProperty(exports, "EmojiFoodBeverageTwoTone", { + enumerable: true, + get: function () { + return _EmojiFoodBeverageTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiNature", { + enumerable: true, + get: function () { + return _EmojiNature.default; + } +}); +Object.defineProperty(exports, "EmojiNatureOutlined", { + enumerable: true, + get: function () { + return _EmojiNatureOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiNatureRounded", { + enumerable: true, + get: function () { + return _EmojiNatureRounded.default; + } +}); +Object.defineProperty(exports, "EmojiNatureSharp", { + enumerable: true, + get: function () { + return _EmojiNatureSharp.default; + } +}); +Object.defineProperty(exports, "EmojiNatureTwoTone", { + enumerable: true, + get: function () { + return _EmojiNatureTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiObjects", { + enumerable: true, + get: function () { + return _EmojiObjects.default; + } +}); +Object.defineProperty(exports, "EmojiObjectsOutlined", { + enumerable: true, + get: function () { + return _EmojiObjectsOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiObjectsRounded", { + enumerable: true, + get: function () { + return _EmojiObjectsRounded.default; + } +}); +Object.defineProperty(exports, "EmojiObjectsSharp", { + enumerable: true, + get: function () { + return _EmojiObjectsSharp.default; + } +}); +Object.defineProperty(exports, "EmojiObjectsTwoTone", { + enumerable: true, + get: function () { + return _EmojiObjectsTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiPeople", { + enumerable: true, + get: function () { + return _EmojiPeople.default; + } +}); +Object.defineProperty(exports, "EmojiPeopleOutlined", { + enumerable: true, + get: function () { + return _EmojiPeopleOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiPeopleRounded", { + enumerable: true, + get: function () { + return _EmojiPeopleRounded.default; + } +}); +Object.defineProperty(exports, "EmojiPeopleSharp", { + enumerable: true, + get: function () { + return _EmojiPeopleSharp.default; + } +}); +Object.defineProperty(exports, "EmojiPeopleTwoTone", { + enumerable: true, + get: function () { + return _EmojiPeopleTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiSymbols", { + enumerable: true, + get: function () { + return _EmojiSymbols.default; + } +}); +Object.defineProperty(exports, "EmojiSymbolsOutlined", { + enumerable: true, + get: function () { + return _EmojiSymbolsOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiSymbolsRounded", { + enumerable: true, + get: function () { + return _EmojiSymbolsRounded.default; + } +}); +Object.defineProperty(exports, "EmojiSymbolsSharp", { + enumerable: true, + get: function () { + return _EmojiSymbolsSharp.default; + } +}); +Object.defineProperty(exports, "EmojiSymbolsTwoTone", { + enumerable: true, + get: function () { + return _EmojiSymbolsTwoTone.default; + } +}); +Object.defineProperty(exports, "EmojiTransportation", { + enumerable: true, + get: function () { + return _EmojiTransportation.default; + } +}); +Object.defineProperty(exports, "EmojiTransportationOutlined", { + enumerable: true, + get: function () { + return _EmojiTransportationOutlined.default; + } +}); +Object.defineProperty(exports, "EmojiTransportationRounded", { + enumerable: true, + get: function () { + return _EmojiTransportationRounded.default; + } +}); +Object.defineProperty(exports, "EmojiTransportationSharp", { + enumerable: true, + get: function () { + return _EmojiTransportationSharp.default; + } +}); +Object.defineProperty(exports, "EmojiTransportationTwoTone", { + enumerable: true, + get: function () { + return _EmojiTransportationTwoTone.default; + } +}); +Object.defineProperty(exports, "Engineering", { + enumerable: true, + get: function () { + return _Engineering.default; + } +}); +Object.defineProperty(exports, "EngineeringOutlined", { + enumerable: true, + get: function () { + return _EngineeringOutlined.default; + } +}); +Object.defineProperty(exports, "EngineeringRounded", { + enumerable: true, + get: function () { + return _EngineeringRounded.default; + } +}); +Object.defineProperty(exports, "EngineeringSharp", { + enumerable: true, + get: function () { + return _EngineeringSharp.default; + } +}); +Object.defineProperty(exports, "EngineeringTwoTone", { + enumerable: true, + get: function () { + return _EngineeringTwoTone.default; + } +}); +Object.defineProperty(exports, "EnhancedEncryption", { + enumerable: true, + get: function () { + return _EnhancedEncryption.default; + } +}); +Object.defineProperty(exports, "EnhancedEncryptionOutlined", { + enumerable: true, + get: function () { + return _EnhancedEncryptionOutlined.default; + } +}); +Object.defineProperty(exports, "EnhancedEncryptionRounded", { + enumerable: true, + get: function () { + return _EnhancedEncryptionRounded.default; + } +}); +Object.defineProperty(exports, "EnhancedEncryptionSharp", { + enumerable: true, + get: function () { + return _EnhancedEncryptionSharp.default; + } +}); +Object.defineProperty(exports, "EnhancedEncryptionTwoTone", { + enumerable: true, + get: function () { + return _EnhancedEncryptionTwoTone.default; + } +}); +Object.defineProperty(exports, "Equalizer", { + enumerable: true, + get: function () { + return _Equalizer.default; + } +}); +Object.defineProperty(exports, "EqualizerOutlined", { + enumerable: true, + get: function () { + return _EqualizerOutlined.default; + } +}); +Object.defineProperty(exports, "EqualizerRounded", { + enumerable: true, + get: function () { + return _EqualizerRounded.default; + } +}); +Object.defineProperty(exports, "EqualizerSharp", { + enumerable: true, + get: function () { + return _EqualizerSharp.default; + } +}); +Object.defineProperty(exports, "EqualizerTwoTone", { + enumerable: true, + get: function () { + return _EqualizerTwoTone.default; + } +}); +Object.defineProperty(exports, "Error", { + enumerable: true, + get: function () { + return _Error.default; + } +}); +Object.defineProperty(exports, "ErrorOutline", { + enumerable: true, + get: function () { + return _ErrorOutline.default; + } +}); +Object.defineProperty(exports, "ErrorOutlineOutlined", { + enumerable: true, + get: function () { + return _ErrorOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "ErrorOutlineRounded", { + enumerable: true, + get: function () { + return _ErrorOutlineRounded.default; + } +}); +Object.defineProperty(exports, "ErrorOutlineSharp", { + enumerable: true, + get: function () { + return _ErrorOutlineSharp.default; + } +}); +Object.defineProperty(exports, "ErrorOutlineTwoTone", { + enumerable: true, + get: function () { + return _ErrorOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "ErrorOutlined", { + enumerable: true, + get: function () { + return _ErrorOutlined.default; + } +}); +Object.defineProperty(exports, "ErrorRounded", { + enumerable: true, + get: function () { + return _ErrorRounded.default; + } +}); +Object.defineProperty(exports, "ErrorSharp", { + enumerable: true, + get: function () { + return _ErrorSharp.default; + } +}); +Object.defineProperty(exports, "ErrorTwoTone", { + enumerable: true, + get: function () { + return _ErrorTwoTone.default; + } +}); +Object.defineProperty(exports, "Escalator", { + enumerable: true, + get: function () { + return _Escalator.default; + } +}); +Object.defineProperty(exports, "EscalatorOutlined", { + enumerable: true, + get: function () { + return _EscalatorOutlined.default; + } +}); +Object.defineProperty(exports, "EscalatorRounded", { + enumerable: true, + get: function () { + return _EscalatorRounded.default; + } +}); +Object.defineProperty(exports, "EscalatorSharp", { + enumerable: true, + get: function () { + return _EscalatorSharp.default; + } +}); +Object.defineProperty(exports, "EscalatorTwoTone", { + enumerable: true, + get: function () { + return _EscalatorTwoTone.default; + } +}); +Object.defineProperty(exports, "EscalatorWarning", { + enumerable: true, + get: function () { + return _EscalatorWarning.default; + } +}); +Object.defineProperty(exports, "EscalatorWarningOutlined", { + enumerable: true, + get: function () { + return _EscalatorWarningOutlined.default; + } +}); +Object.defineProperty(exports, "EscalatorWarningRounded", { + enumerable: true, + get: function () { + return _EscalatorWarningRounded.default; + } +}); +Object.defineProperty(exports, "EscalatorWarningSharp", { + enumerable: true, + get: function () { + return _EscalatorWarningSharp.default; + } +}); +Object.defineProperty(exports, "EscalatorWarningTwoTone", { + enumerable: true, + get: function () { + return _EscalatorWarningTwoTone.default; + } +}); +Object.defineProperty(exports, "Euro", { + enumerable: true, + get: function () { + return _Euro.default; + } +}); +Object.defineProperty(exports, "EuroOutlined", { + enumerable: true, + get: function () { + return _EuroOutlined.default; + } +}); +Object.defineProperty(exports, "EuroRounded", { + enumerable: true, + get: function () { + return _EuroRounded.default; + } +}); +Object.defineProperty(exports, "EuroSharp", { + enumerable: true, + get: function () { + return _EuroSharp.default; + } +}); +Object.defineProperty(exports, "EuroSymbol", { + enumerable: true, + get: function () { + return _EuroSymbol.default; + } +}); +Object.defineProperty(exports, "EuroSymbolOutlined", { + enumerable: true, + get: function () { + return _EuroSymbolOutlined.default; + } +}); +Object.defineProperty(exports, "EuroSymbolRounded", { + enumerable: true, + get: function () { + return _EuroSymbolRounded.default; + } +}); +Object.defineProperty(exports, "EuroSymbolSharp", { + enumerable: true, + get: function () { + return _EuroSymbolSharp.default; + } +}); +Object.defineProperty(exports, "EuroSymbolTwoTone", { + enumerable: true, + get: function () { + return _EuroSymbolTwoTone.default; + } +}); +Object.defineProperty(exports, "EuroTwoTone", { + enumerable: true, + get: function () { + return _EuroTwoTone.default; + } +}); +Object.defineProperty(exports, "EvStation", { + enumerable: true, + get: function () { + return _EvStation.default; + } +}); +Object.defineProperty(exports, "EvStationOutlined", { + enumerable: true, + get: function () { + return _EvStationOutlined.default; + } +}); +Object.defineProperty(exports, "EvStationRounded", { + enumerable: true, + get: function () { + return _EvStationRounded.default; + } +}); +Object.defineProperty(exports, "EvStationSharp", { + enumerable: true, + get: function () { + return _EvStationSharp.default; + } +}); +Object.defineProperty(exports, "EvStationTwoTone", { + enumerable: true, + get: function () { + return _EvStationTwoTone.default; + } +}); +Object.defineProperty(exports, "Event", { + enumerable: true, + get: function () { + return _Event.default; + } +}); +Object.defineProperty(exports, "EventAvailable", { + enumerable: true, + get: function () { + return _EventAvailable.default; + } +}); +Object.defineProperty(exports, "EventAvailableOutlined", { + enumerable: true, + get: function () { + return _EventAvailableOutlined.default; + } +}); +Object.defineProperty(exports, "EventAvailableRounded", { + enumerable: true, + get: function () { + return _EventAvailableRounded.default; + } +}); +Object.defineProperty(exports, "EventAvailableSharp", { + enumerable: true, + get: function () { + return _EventAvailableSharp.default; + } +}); +Object.defineProperty(exports, "EventAvailableTwoTone", { + enumerable: true, + get: function () { + return _EventAvailableTwoTone.default; + } +}); +Object.defineProperty(exports, "EventBusy", { + enumerable: true, + get: function () { + return _EventBusy.default; + } +}); +Object.defineProperty(exports, "EventBusyOutlined", { + enumerable: true, + get: function () { + return _EventBusyOutlined.default; + } +}); +Object.defineProperty(exports, "EventBusyRounded", { + enumerable: true, + get: function () { + return _EventBusyRounded.default; + } +}); +Object.defineProperty(exports, "EventBusySharp", { + enumerable: true, + get: function () { + return _EventBusySharp.default; + } +}); +Object.defineProperty(exports, "EventBusyTwoTone", { + enumerable: true, + get: function () { + return _EventBusyTwoTone.default; + } +}); +Object.defineProperty(exports, "EventNote", { + enumerable: true, + get: function () { + return _EventNote.default; + } +}); +Object.defineProperty(exports, "EventNoteOutlined", { + enumerable: true, + get: function () { + return _EventNoteOutlined.default; + } +}); +Object.defineProperty(exports, "EventNoteRounded", { + enumerable: true, + get: function () { + return _EventNoteRounded.default; + } +}); +Object.defineProperty(exports, "EventNoteSharp", { + enumerable: true, + get: function () { + return _EventNoteSharp.default; + } +}); +Object.defineProperty(exports, "EventNoteTwoTone", { + enumerable: true, + get: function () { + return _EventNoteTwoTone.default; + } +}); +Object.defineProperty(exports, "EventOutlined", { + enumerable: true, + get: function () { + return _EventOutlined.default; + } +}); +Object.defineProperty(exports, "EventRounded", { + enumerable: true, + get: function () { + return _EventRounded.default; + } +}); +Object.defineProperty(exports, "EventSeat", { + enumerable: true, + get: function () { + return _EventSeat.default; + } +}); +Object.defineProperty(exports, "EventSeatOutlined", { + enumerable: true, + get: function () { + return _EventSeatOutlined.default; + } +}); +Object.defineProperty(exports, "EventSeatRounded", { + enumerable: true, + get: function () { + return _EventSeatRounded.default; + } +}); +Object.defineProperty(exports, "EventSeatSharp", { + enumerable: true, + get: function () { + return _EventSeatSharp.default; + } +}); +Object.defineProperty(exports, "EventSeatTwoTone", { + enumerable: true, + get: function () { + return _EventSeatTwoTone.default; + } +}); +Object.defineProperty(exports, "EventSharp", { + enumerable: true, + get: function () { + return _EventSharp.default; + } +}); +Object.defineProperty(exports, "EventTwoTone", { + enumerable: true, + get: function () { + return _EventTwoTone.default; + } +}); +Object.defineProperty(exports, "ExitToApp", { + enumerable: true, + get: function () { + return _ExitToApp.default; + } +}); +Object.defineProperty(exports, "ExitToAppOutlined", { + enumerable: true, + get: function () { + return _ExitToAppOutlined.default; + } +}); +Object.defineProperty(exports, "ExitToAppRounded", { + enumerable: true, + get: function () { + return _ExitToAppRounded.default; + } +}); +Object.defineProperty(exports, "ExitToAppSharp", { + enumerable: true, + get: function () { + return _ExitToAppSharp.default; + } +}); +Object.defineProperty(exports, "ExitToAppTwoTone", { + enumerable: true, + get: function () { + return _ExitToAppTwoTone.default; + } +}); +Object.defineProperty(exports, "Expand", { + enumerable: true, + get: function () { + return _Expand.default; + } +}); +Object.defineProperty(exports, "ExpandLess", { + enumerable: true, + get: function () { + return _ExpandLess.default; + } +}); +Object.defineProperty(exports, "ExpandLessOutlined", { + enumerable: true, + get: function () { + return _ExpandLessOutlined.default; + } +}); +Object.defineProperty(exports, "ExpandLessRounded", { + enumerable: true, + get: function () { + return _ExpandLessRounded.default; + } +}); +Object.defineProperty(exports, "ExpandLessSharp", { + enumerable: true, + get: function () { + return _ExpandLessSharp.default; + } +}); +Object.defineProperty(exports, "ExpandLessTwoTone", { + enumerable: true, + get: function () { + return _ExpandLessTwoTone.default; + } +}); +Object.defineProperty(exports, "ExpandMore", { + enumerable: true, + get: function () { + return _ExpandMore.default; + } +}); +Object.defineProperty(exports, "ExpandMoreOutlined", { + enumerable: true, + get: function () { + return _ExpandMoreOutlined.default; + } +}); +Object.defineProperty(exports, "ExpandMoreRounded", { + enumerable: true, + get: function () { + return _ExpandMoreRounded.default; + } +}); +Object.defineProperty(exports, "ExpandMoreSharp", { + enumerable: true, + get: function () { + return _ExpandMoreSharp.default; + } +}); +Object.defineProperty(exports, "ExpandMoreTwoTone", { + enumerable: true, + get: function () { + return _ExpandMoreTwoTone.default; + } +}); +Object.defineProperty(exports, "ExpandOutlined", { + enumerable: true, + get: function () { + return _ExpandOutlined.default; + } +}); +Object.defineProperty(exports, "ExpandRounded", { + enumerable: true, + get: function () { + return _ExpandRounded.default; + } +}); +Object.defineProperty(exports, "ExpandSharp", { + enumerable: true, + get: function () { + return _ExpandSharp.default; + } +}); +Object.defineProperty(exports, "ExpandTwoTone", { + enumerable: true, + get: function () { + return _ExpandTwoTone.default; + } +}); +Object.defineProperty(exports, "Explicit", { + enumerable: true, + get: function () { + return _Explicit.default; + } +}); +Object.defineProperty(exports, "ExplicitOutlined", { + enumerable: true, + get: function () { + return _ExplicitOutlined.default; + } +}); +Object.defineProperty(exports, "ExplicitRounded", { + enumerable: true, + get: function () { + return _ExplicitRounded.default; + } +}); +Object.defineProperty(exports, "ExplicitSharp", { + enumerable: true, + get: function () { + return _ExplicitSharp.default; + } +}); +Object.defineProperty(exports, "ExplicitTwoTone", { + enumerable: true, + get: function () { + return _ExplicitTwoTone.default; + } +}); +Object.defineProperty(exports, "Explore", { + enumerable: true, + get: function () { + return _Explore.default; + } +}); +Object.defineProperty(exports, "ExploreOff", { + enumerable: true, + get: function () { + return _ExploreOff.default; + } +}); +Object.defineProperty(exports, "ExploreOffOutlined", { + enumerable: true, + get: function () { + return _ExploreOffOutlined.default; + } +}); +Object.defineProperty(exports, "ExploreOffRounded", { + enumerable: true, + get: function () { + return _ExploreOffRounded.default; + } +}); +Object.defineProperty(exports, "ExploreOffSharp", { + enumerable: true, + get: function () { + return _ExploreOffSharp.default; + } +}); +Object.defineProperty(exports, "ExploreOffTwoTone", { + enumerable: true, + get: function () { + return _ExploreOffTwoTone.default; + } +}); +Object.defineProperty(exports, "ExploreOutlined", { + enumerable: true, + get: function () { + return _ExploreOutlined.default; + } +}); +Object.defineProperty(exports, "ExploreRounded", { + enumerable: true, + get: function () { + return _ExploreRounded.default; + } +}); +Object.defineProperty(exports, "ExploreSharp", { + enumerable: true, + get: function () { + return _ExploreSharp.default; + } +}); +Object.defineProperty(exports, "ExploreTwoTone", { + enumerable: true, + get: function () { + return _ExploreTwoTone.default; + } +}); +Object.defineProperty(exports, "Exposure", { + enumerable: true, + get: function () { + return _Exposure.default; + } +}); +Object.defineProperty(exports, "ExposureOutlined", { + enumerable: true, + get: function () { + return _ExposureOutlined.default; + } +}); +Object.defineProperty(exports, "ExposureRounded", { + enumerable: true, + get: function () { + return _ExposureRounded.default; + } +}); +Object.defineProperty(exports, "ExposureSharp", { + enumerable: true, + get: function () { + return _ExposureSharp.default; + } +}); +Object.defineProperty(exports, "ExposureTwoTone", { + enumerable: true, + get: function () { + return _ExposureTwoTone.default; + } +}); +Object.defineProperty(exports, "Extension", { + enumerable: true, + get: function () { + return _Extension.default; + } +}); +Object.defineProperty(exports, "ExtensionOff", { + enumerable: true, + get: function () { + return _ExtensionOff.default; + } +}); +Object.defineProperty(exports, "ExtensionOffOutlined", { + enumerable: true, + get: function () { + return _ExtensionOffOutlined.default; + } +}); +Object.defineProperty(exports, "ExtensionOffRounded", { + enumerable: true, + get: function () { + return _ExtensionOffRounded.default; + } +}); +Object.defineProperty(exports, "ExtensionOffSharp", { + enumerable: true, + get: function () { + return _ExtensionOffSharp.default; + } +}); +Object.defineProperty(exports, "ExtensionOffTwoTone", { + enumerable: true, + get: function () { + return _ExtensionOffTwoTone.default; + } +}); +Object.defineProperty(exports, "ExtensionOutlined", { + enumerable: true, + get: function () { + return _ExtensionOutlined.default; + } +}); +Object.defineProperty(exports, "ExtensionRounded", { + enumerable: true, + get: function () { + return _ExtensionRounded.default; + } +}); +Object.defineProperty(exports, "ExtensionSharp", { + enumerable: true, + get: function () { + return _ExtensionSharp.default; + } +}); +Object.defineProperty(exports, "ExtensionTwoTone", { + enumerable: true, + get: function () { + return _ExtensionTwoTone.default; + } +}); +Object.defineProperty(exports, "Face", { + enumerable: true, + get: function () { + return _Face.default; + } +}); +Object.defineProperty(exports, "FaceOutlined", { + enumerable: true, + get: function () { + return _FaceOutlined.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingNatural", { + enumerable: true, + get: function () { + return _FaceRetouchingNatural.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingNaturalOutlined", { + enumerable: true, + get: function () { + return _FaceRetouchingNaturalOutlined.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingNaturalRounded", { + enumerable: true, + get: function () { + return _FaceRetouchingNaturalRounded.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingNaturalSharp", { + enumerable: true, + get: function () { + return _FaceRetouchingNaturalSharp.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingNaturalTwoTone", { + enumerable: true, + get: function () { + return _FaceRetouchingNaturalTwoTone.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingOff", { + enumerable: true, + get: function () { + return _FaceRetouchingOff.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingOffOutlined", { + enumerable: true, + get: function () { + return _FaceRetouchingOffOutlined.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingOffRounded", { + enumerable: true, + get: function () { + return _FaceRetouchingOffRounded.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingOffSharp", { + enumerable: true, + get: function () { + return _FaceRetouchingOffSharp.default; + } +}); +Object.defineProperty(exports, "FaceRetouchingOffTwoTone", { + enumerable: true, + get: function () { + return _FaceRetouchingOffTwoTone.default; + } +}); +Object.defineProperty(exports, "FaceRounded", { + enumerable: true, + get: function () { + return _FaceRounded.default; + } +}); +Object.defineProperty(exports, "FaceSharp", { + enumerable: true, + get: function () { + return _FaceSharp.default; + } +}); +Object.defineProperty(exports, "FaceTwoTone", { + enumerable: true, + get: function () { + return _FaceTwoTone.default; + } +}); +Object.defineProperty(exports, "Facebook", { + enumerable: true, + get: function () { + return _Facebook.default; + } +}); +Object.defineProperty(exports, "FacebookOutlined", { + enumerable: true, + get: function () { + return _FacebookOutlined.default; + } +}); +Object.defineProperty(exports, "FacebookRounded", { + enumerable: true, + get: function () { + return _FacebookRounded.default; + } +}); +Object.defineProperty(exports, "FacebookSharp", { + enumerable: true, + get: function () { + return _FacebookSharp.default; + } +}); +Object.defineProperty(exports, "FacebookTwoTone", { + enumerable: true, + get: function () { + return _FacebookTwoTone.default; + } +}); +Object.defineProperty(exports, "FactCheck", { + enumerable: true, + get: function () { + return _FactCheck.default; + } +}); +Object.defineProperty(exports, "FactCheckOutlined", { + enumerable: true, + get: function () { + return _FactCheckOutlined.default; + } +}); +Object.defineProperty(exports, "FactCheckRounded", { + enumerable: true, + get: function () { + return _FactCheckRounded.default; + } +}); +Object.defineProperty(exports, "FactCheckSharp", { + enumerable: true, + get: function () { + return _FactCheckSharp.default; + } +}); +Object.defineProperty(exports, "FactCheckTwoTone", { + enumerable: true, + get: function () { + return _FactCheckTwoTone.default; + } +}); +Object.defineProperty(exports, "FamilyRestroom", { + enumerable: true, + get: function () { + return _FamilyRestroom.default; + } +}); +Object.defineProperty(exports, "FamilyRestroomOutlined", { + enumerable: true, + get: function () { + return _FamilyRestroomOutlined.default; + } +}); +Object.defineProperty(exports, "FamilyRestroomRounded", { + enumerable: true, + get: function () { + return _FamilyRestroomRounded.default; + } +}); +Object.defineProperty(exports, "FamilyRestroomSharp", { + enumerable: true, + get: function () { + return _FamilyRestroomSharp.default; + } +}); +Object.defineProperty(exports, "FamilyRestroomTwoTone", { + enumerable: true, + get: function () { + return _FamilyRestroomTwoTone.default; + } +}); +Object.defineProperty(exports, "FastForward", { + enumerable: true, + get: function () { + return _FastForward.default; + } +}); +Object.defineProperty(exports, "FastForwardOutlined", { + enumerable: true, + get: function () { + return _FastForwardOutlined.default; + } +}); +Object.defineProperty(exports, "FastForwardRounded", { + enumerable: true, + get: function () { + return _FastForwardRounded.default; + } +}); +Object.defineProperty(exports, "FastForwardSharp", { + enumerable: true, + get: function () { + return _FastForwardSharp.default; + } +}); +Object.defineProperty(exports, "FastForwardTwoTone", { + enumerable: true, + get: function () { + return _FastForwardTwoTone.default; + } +}); +Object.defineProperty(exports, "FastRewind", { + enumerable: true, + get: function () { + return _FastRewind.default; + } +}); +Object.defineProperty(exports, "FastRewindOutlined", { + enumerable: true, + get: function () { + return _FastRewindOutlined.default; + } +}); +Object.defineProperty(exports, "FastRewindRounded", { + enumerable: true, + get: function () { + return _FastRewindRounded.default; + } +}); +Object.defineProperty(exports, "FastRewindSharp", { + enumerable: true, + get: function () { + return _FastRewindSharp.default; + } +}); +Object.defineProperty(exports, "FastRewindTwoTone", { + enumerable: true, + get: function () { + return _FastRewindTwoTone.default; + } +}); +Object.defineProperty(exports, "Fastfood", { + enumerable: true, + get: function () { + return _Fastfood.default; + } +}); +Object.defineProperty(exports, "FastfoodOutlined", { + enumerable: true, + get: function () { + return _FastfoodOutlined.default; + } +}); +Object.defineProperty(exports, "FastfoodRounded", { + enumerable: true, + get: function () { + return _FastfoodRounded.default; + } +}); +Object.defineProperty(exports, "FastfoodSharp", { + enumerable: true, + get: function () { + return _FastfoodSharp.default; + } +}); +Object.defineProperty(exports, "FastfoodTwoTone", { + enumerable: true, + get: function () { + return _FastfoodTwoTone.default; + } +}); +Object.defineProperty(exports, "Favorite", { + enumerable: true, + get: function () { + return _Favorite.default; + } +}); +Object.defineProperty(exports, "FavoriteBorder", { + enumerable: true, + get: function () { + return _FavoriteBorder.default; + } +}); +Object.defineProperty(exports, "FavoriteBorderOutlined", { + enumerable: true, + get: function () { + return _FavoriteBorderOutlined.default; + } +}); +Object.defineProperty(exports, "FavoriteBorderRounded", { + enumerable: true, + get: function () { + return _FavoriteBorderRounded.default; + } +}); +Object.defineProperty(exports, "FavoriteBorderSharp", { + enumerable: true, + get: function () { + return _FavoriteBorderSharp.default; + } +}); +Object.defineProperty(exports, "FavoriteBorderTwoTone", { + enumerable: true, + get: function () { + return _FavoriteBorderTwoTone.default; + } +}); +Object.defineProperty(exports, "FavoriteOutlined", { + enumerable: true, + get: function () { + return _FavoriteOutlined.default; + } +}); +Object.defineProperty(exports, "FavoriteRounded", { + enumerable: true, + get: function () { + return _FavoriteRounded.default; + } +}); +Object.defineProperty(exports, "FavoriteSharp", { + enumerable: true, + get: function () { + return _FavoriteSharp.default; + } +}); +Object.defineProperty(exports, "FavoriteTwoTone", { + enumerable: true, + get: function () { + return _FavoriteTwoTone.default; + } +}); +Object.defineProperty(exports, "FeaturedPlayList", { + enumerable: true, + get: function () { + return _FeaturedPlayList.default; + } +}); +Object.defineProperty(exports, "FeaturedPlayListOutlined", { + enumerable: true, + get: function () { + return _FeaturedPlayListOutlined.default; + } +}); +Object.defineProperty(exports, "FeaturedPlayListRounded", { + enumerable: true, + get: function () { + return _FeaturedPlayListRounded.default; + } +}); +Object.defineProperty(exports, "FeaturedPlayListSharp", { + enumerable: true, + get: function () { + return _FeaturedPlayListSharp.default; + } +}); +Object.defineProperty(exports, "FeaturedPlayListTwoTone", { + enumerable: true, + get: function () { + return _FeaturedPlayListTwoTone.default; + } +}); +Object.defineProperty(exports, "FeaturedVideo", { + enumerable: true, + get: function () { + return _FeaturedVideo.default; + } +}); +Object.defineProperty(exports, "FeaturedVideoOutlined", { + enumerable: true, + get: function () { + return _FeaturedVideoOutlined.default; + } +}); +Object.defineProperty(exports, "FeaturedVideoRounded", { + enumerable: true, + get: function () { + return _FeaturedVideoRounded.default; + } +}); +Object.defineProperty(exports, "FeaturedVideoSharp", { + enumerable: true, + get: function () { + return _FeaturedVideoSharp.default; + } +}); +Object.defineProperty(exports, "FeaturedVideoTwoTone", { + enumerable: true, + get: function () { + return _FeaturedVideoTwoTone.default; + } +}); +Object.defineProperty(exports, "Feed", { + enumerable: true, + get: function () { + return _Feed.default; + } +}); +Object.defineProperty(exports, "FeedOutlined", { + enumerable: true, + get: function () { + return _FeedOutlined.default; + } +}); +Object.defineProperty(exports, "FeedRounded", { + enumerable: true, + get: function () { + return _FeedRounded.default; + } +}); +Object.defineProperty(exports, "FeedSharp", { + enumerable: true, + get: function () { + return _FeedSharp.default; + } +}); +Object.defineProperty(exports, "FeedTwoTone", { + enumerable: true, + get: function () { + return _FeedTwoTone.default; + } +}); +Object.defineProperty(exports, "Feedback", { + enumerable: true, + get: function () { + return _Feedback.default; + } +}); +Object.defineProperty(exports, "FeedbackOutlined", { + enumerable: true, + get: function () { + return _FeedbackOutlined.default; + } +}); +Object.defineProperty(exports, "FeedbackRounded", { + enumerable: true, + get: function () { + return _FeedbackRounded.default; + } +}); +Object.defineProperty(exports, "FeedbackSharp", { + enumerable: true, + get: function () { + return _FeedbackSharp.default; + } +}); +Object.defineProperty(exports, "FeedbackTwoTone", { + enumerable: true, + get: function () { + return _FeedbackTwoTone.default; + } +}); +Object.defineProperty(exports, "Female", { + enumerable: true, + get: function () { + return _Female.default; + } +}); +Object.defineProperty(exports, "FemaleOutlined", { + enumerable: true, + get: function () { + return _FemaleOutlined.default; + } +}); +Object.defineProperty(exports, "FemaleRounded", { + enumerable: true, + get: function () { + return _FemaleRounded.default; + } +}); +Object.defineProperty(exports, "FemaleSharp", { + enumerable: true, + get: function () { + return _FemaleSharp.default; + } +}); +Object.defineProperty(exports, "FemaleTwoTone", { + enumerable: true, + get: function () { + return _FemaleTwoTone.default; + } +}); +Object.defineProperty(exports, "Fence", { + enumerable: true, + get: function () { + return _Fence.default; + } +}); +Object.defineProperty(exports, "FenceOutlined", { + enumerable: true, + get: function () { + return _FenceOutlined.default; + } +}); +Object.defineProperty(exports, "FenceRounded", { + enumerable: true, + get: function () { + return _FenceRounded.default; + } +}); +Object.defineProperty(exports, "FenceSharp", { + enumerable: true, + get: function () { + return _FenceSharp.default; + } +}); +Object.defineProperty(exports, "FenceTwoTone", { + enumerable: true, + get: function () { + return _FenceTwoTone.default; + } +}); +Object.defineProperty(exports, "Festival", { + enumerable: true, + get: function () { + return _Festival.default; + } +}); +Object.defineProperty(exports, "FestivalOutlined", { + enumerable: true, + get: function () { + return _FestivalOutlined.default; + } +}); +Object.defineProperty(exports, "FestivalRounded", { + enumerable: true, + get: function () { + return _FestivalRounded.default; + } +}); +Object.defineProperty(exports, "FestivalSharp", { + enumerable: true, + get: function () { + return _FestivalSharp.default; + } +}); +Object.defineProperty(exports, "FestivalTwoTone", { + enumerable: true, + get: function () { + return _FestivalTwoTone.default; + } +}); +Object.defineProperty(exports, "FiberDvr", { + enumerable: true, + get: function () { + return _FiberDvr.default; + } +}); +Object.defineProperty(exports, "FiberDvrOutlined", { + enumerable: true, + get: function () { + return _FiberDvrOutlined.default; + } +}); +Object.defineProperty(exports, "FiberDvrRounded", { + enumerable: true, + get: function () { + return _FiberDvrRounded.default; + } +}); +Object.defineProperty(exports, "FiberDvrSharp", { + enumerable: true, + get: function () { + return _FiberDvrSharp.default; + } +}); +Object.defineProperty(exports, "FiberDvrTwoTone", { + enumerable: true, + get: function () { + return _FiberDvrTwoTone.default; + } +}); +Object.defineProperty(exports, "FiberManualRecord", { + enumerable: true, + get: function () { + return _FiberManualRecord.default; + } +}); +Object.defineProperty(exports, "FiberManualRecordOutlined", { + enumerable: true, + get: function () { + return _FiberManualRecordOutlined.default; + } +}); +Object.defineProperty(exports, "FiberManualRecordRounded", { + enumerable: true, + get: function () { + return _FiberManualRecordRounded.default; + } +}); +Object.defineProperty(exports, "FiberManualRecordSharp", { + enumerable: true, + get: function () { + return _FiberManualRecordSharp.default; + } +}); +Object.defineProperty(exports, "FiberManualRecordTwoTone", { + enumerable: true, + get: function () { + return _FiberManualRecordTwoTone.default; + } +}); +Object.defineProperty(exports, "FiberNew", { + enumerable: true, + get: function () { + return _FiberNew.default; + } +}); +Object.defineProperty(exports, "FiberNewOutlined", { + enumerable: true, + get: function () { + return _FiberNewOutlined.default; + } +}); +Object.defineProperty(exports, "FiberNewRounded", { + enumerable: true, + get: function () { + return _FiberNewRounded.default; + } +}); +Object.defineProperty(exports, "FiberNewSharp", { + enumerable: true, + get: function () { + return _FiberNewSharp.default; + } +}); +Object.defineProperty(exports, "FiberNewTwoTone", { + enumerable: true, + get: function () { + return _FiberNewTwoTone.default; + } +}); +Object.defineProperty(exports, "FiberPin", { + enumerable: true, + get: function () { + return _FiberPin.default; + } +}); +Object.defineProperty(exports, "FiberPinOutlined", { + enumerable: true, + get: function () { + return _FiberPinOutlined.default; + } +}); +Object.defineProperty(exports, "FiberPinRounded", { + enumerable: true, + get: function () { + return _FiberPinRounded.default; + } +}); +Object.defineProperty(exports, "FiberPinSharp", { + enumerable: true, + get: function () { + return _FiberPinSharp.default; + } +}); +Object.defineProperty(exports, "FiberPinTwoTone", { + enumerable: true, + get: function () { + return _FiberPinTwoTone.default; + } +}); +Object.defineProperty(exports, "FiberSmartRecord", { + enumerable: true, + get: function () { + return _FiberSmartRecord.default; + } +}); +Object.defineProperty(exports, "FiberSmartRecordOutlined", { + enumerable: true, + get: function () { + return _FiberSmartRecordOutlined.default; + } +}); +Object.defineProperty(exports, "FiberSmartRecordRounded", { + enumerable: true, + get: function () { + return _FiberSmartRecordRounded.default; + } +}); +Object.defineProperty(exports, "FiberSmartRecordSharp", { + enumerable: true, + get: function () { + return _FiberSmartRecordSharp.default; + } +}); +Object.defineProperty(exports, "FiberSmartRecordTwoTone", { + enumerable: true, + get: function () { + return _FiberSmartRecordTwoTone.default; + } +}); +Object.defineProperty(exports, "FileCopy", { + enumerable: true, + get: function () { + return _FileCopy.default; + } +}); +Object.defineProperty(exports, "FileCopyOutlined", { + enumerable: true, + get: function () { + return _FileCopyOutlined.default; + } +}); +Object.defineProperty(exports, "FileCopyRounded", { + enumerable: true, + get: function () { + return _FileCopyRounded.default; + } +}); +Object.defineProperty(exports, "FileCopySharp", { + enumerable: true, + get: function () { + return _FileCopySharp.default; + } +}); +Object.defineProperty(exports, "FileCopyTwoTone", { + enumerable: true, + get: function () { + return _FileCopyTwoTone.default; + } +}); +Object.defineProperty(exports, "FileDownload", { + enumerable: true, + get: function () { + return _FileDownload.default; + } +}); +Object.defineProperty(exports, "FileDownloadDone", { + enumerable: true, + get: function () { + return _FileDownloadDone.default; + } +}); +Object.defineProperty(exports, "FileDownloadDoneOutlined", { + enumerable: true, + get: function () { + return _FileDownloadDoneOutlined.default; + } +}); +Object.defineProperty(exports, "FileDownloadDoneRounded", { + enumerable: true, + get: function () { + return _FileDownloadDoneRounded.default; + } +}); +Object.defineProperty(exports, "FileDownloadDoneSharp", { + enumerable: true, + get: function () { + return _FileDownloadDoneSharp.default; + } +}); +Object.defineProperty(exports, "FileDownloadDoneTwoTone", { + enumerable: true, + get: function () { + return _FileDownloadDoneTwoTone.default; + } +}); +Object.defineProperty(exports, "FileDownloadOff", { + enumerable: true, + get: function () { + return _FileDownloadOff.default; + } +}); +Object.defineProperty(exports, "FileDownloadOffOutlined", { + enumerable: true, + get: function () { + return _FileDownloadOffOutlined.default; + } +}); +Object.defineProperty(exports, "FileDownloadOffRounded", { + enumerable: true, + get: function () { + return _FileDownloadOffRounded.default; + } +}); +Object.defineProperty(exports, "FileDownloadOffSharp", { + enumerable: true, + get: function () { + return _FileDownloadOffSharp.default; + } +}); +Object.defineProperty(exports, "FileDownloadOffTwoTone", { + enumerable: true, + get: function () { + return _FileDownloadOffTwoTone.default; + } +}); +Object.defineProperty(exports, "FileDownloadOutlined", { + enumerable: true, + get: function () { + return _FileDownloadOutlined.default; + } +}); +Object.defineProperty(exports, "FileDownloadRounded", { + enumerable: true, + get: function () { + return _FileDownloadRounded.default; + } +}); +Object.defineProperty(exports, "FileDownloadSharp", { + enumerable: true, + get: function () { + return _FileDownloadSharp.default; + } +}); +Object.defineProperty(exports, "FileDownloadTwoTone", { + enumerable: true, + get: function () { + return _FileDownloadTwoTone.default; + } +}); +Object.defineProperty(exports, "FilePresent", { + enumerable: true, + get: function () { + return _FilePresent.default; + } +}); +Object.defineProperty(exports, "FilePresentOutlined", { + enumerable: true, + get: function () { + return _FilePresentOutlined.default; + } +}); +Object.defineProperty(exports, "FilePresentRounded", { + enumerable: true, + get: function () { + return _FilePresentRounded.default; + } +}); +Object.defineProperty(exports, "FilePresentSharp", { + enumerable: true, + get: function () { + return _FilePresentSharp.default; + } +}); +Object.defineProperty(exports, "FilePresentTwoTone", { + enumerable: true, + get: function () { + return _FilePresentTwoTone.default; + } +}); +Object.defineProperty(exports, "FileUpload", { + enumerable: true, + get: function () { + return _FileUpload.default; + } +}); +Object.defineProperty(exports, "FileUploadOutlined", { + enumerable: true, + get: function () { + return _FileUploadOutlined.default; + } +}); +Object.defineProperty(exports, "FileUploadRounded", { + enumerable: true, + get: function () { + return _FileUploadRounded.default; + } +}); +Object.defineProperty(exports, "FileUploadSharp", { + enumerable: true, + get: function () { + return _FileUploadSharp.default; + } +}); +Object.defineProperty(exports, "FileUploadTwoTone", { + enumerable: true, + get: function () { + return _FileUploadTwoTone.default; + } +}); +Object.defineProperty(exports, "Filter", { + enumerable: true, + get: function () { + return _Filter.default; + } +}); +Object.defineProperty(exports, "Filter1", { + enumerable: true, + get: function () { + return _Filter2.default; + } +}); +Object.defineProperty(exports, "Filter1Outlined", { + enumerable: true, + get: function () { + return _Filter1Outlined.default; + } +}); +Object.defineProperty(exports, "Filter1Rounded", { + enumerable: true, + get: function () { + return _Filter1Rounded.default; + } +}); +Object.defineProperty(exports, "Filter1Sharp", { + enumerable: true, + get: function () { + return _Filter1Sharp.default; + } +}); +Object.defineProperty(exports, "Filter1TwoTone", { + enumerable: true, + get: function () { + return _Filter1TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter2", { + enumerable: true, + get: function () { + return _Filter3.default; + } +}); +Object.defineProperty(exports, "Filter2Outlined", { + enumerable: true, + get: function () { + return _Filter2Outlined.default; + } +}); +Object.defineProperty(exports, "Filter2Rounded", { + enumerable: true, + get: function () { + return _Filter2Rounded.default; + } +}); +Object.defineProperty(exports, "Filter2Sharp", { + enumerable: true, + get: function () { + return _Filter2Sharp.default; + } +}); +Object.defineProperty(exports, "Filter2TwoTone", { + enumerable: true, + get: function () { + return _Filter2TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter3", { + enumerable: true, + get: function () { + return _Filter4.default; + } +}); +Object.defineProperty(exports, "Filter3Outlined", { + enumerable: true, + get: function () { + return _Filter3Outlined.default; + } +}); +Object.defineProperty(exports, "Filter3Rounded", { + enumerable: true, + get: function () { + return _Filter3Rounded.default; + } +}); +Object.defineProperty(exports, "Filter3Sharp", { + enumerable: true, + get: function () { + return _Filter3Sharp.default; + } +}); +Object.defineProperty(exports, "Filter3TwoTone", { + enumerable: true, + get: function () { + return _Filter3TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter4", { + enumerable: true, + get: function () { + return _Filter5.default; + } +}); +Object.defineProperty(exports, "Filter4Outlined", { + enumerable: true, + get: function () { + return _Filter4Outlined.default; + } +}); +Object.defineProperty(exports, "Filter4Rounded", { + enumerable: true, + get: function () { + return _Filter4Rounded.default; + } +}); +Object.defineProperty(exports, "Filter4Sharp", { + enumerable: true, + get: function () { + return _Filter4Sharp.default; + } +}); +Object.defineProperty(exports, "Filter4TwoTone", { + enumerable: true, + get: function () { + return _Filter4TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter5", { + enumerable: true, + get: function () { + return _Filter6.default; + } +}); +Object.defineProperty(exports, "Filter5Outlined", { + enumerable: true, + get: function () { + return _Filter5Outlined.default; + } +}); +Object.defineProperty(exports, "Filter5Rounded", { + enumerable: true, + get: function () { + return _Filter5Rounded.default; + } +}); +Object.defineProperty(exports, "Filter5Sharp", { + enumerable: true, + get: function () { + return _Filter5Sharp.default; + } +}); +Object.defineProperty(exports, "Filter5TwoTone", { + enumerable: true, + get: function () { + return _Filter5TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter6", { + enumerable: true, + get: function () { + return _Filter7.default; + } +}); +Object.defineProperty(exports, "Filter6Outlined", { + enumerable: true, + get: function () { + return _Filter6Outlined.default; + } +}); +Object.defineProperty(exports, "Filter6Rounded", { + enumerable: true, + get: function () { + return _Filter6Rounded.default; + } +}); +Object.defineProperty(exports, "Filter6Sharp", { + enumerable: true, + get: function () { + return _Filter6Sharp.default; + } +}); +Object.defineProperty(exports, "Filter6TwoTone", { + enumerable: true, + get: function () { + return _Filter6TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter7", { + enumerable: true, + get: function () { + return _Filter8.default; + } +}); +Object.defineProperty(exports, "Filter7Outlined", { + enumerable: true, + get: function () { + return _Filter7Outlined.default; + } +}); +Object.defineProperty(exports, "Filter7Rounded", { + enumerable: true, + get: function () { + return _Filter7Rounded.default; + } +}); +Object.defineProperty(exports, "Filter7Sharp", { + enumerable: true, + get: function () { + return _Filter7Sharp.default; + } +}); +Object.defineProperty(exports, "Filter7TwoTone", { + enumerable: true, + get: function () { + return _Filter7TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter8", { + enumerable: true, + get: function () { + return _Filter9.default; + } +}); +Object.defineProperty(exports, "Filter8Outlined", { + enumerable: true, + get: function () { + return _Filter8Outlined.default; + } +}); +Object.defineProperty(exports, "Filter8Rounded", { + enumerable: true, + get: function () { + return _Filter8Rounded.default; + } +}); +Object.defineProperty(exports, "Filter8Sharp", { + enumerable: true, + get: function () { + return _Filter8Sharp.default; + } +}); +Object.defineProperty(exports, "Filter8TwoTone", { + enumerable: true, + get: function () { + return _Filter8TwoTone.default; + } +}); +Object.defineProperty(exports, "Filter9", { + enumerable: true, + get: function () { + return _Filter10.default; + } +}); +Object.defineProperty(exports, "Filter9Outlined", { + enumerable: true, + get: function () { + return _Filter9Outlined.default; + } +}); +Object.defineProperty(exports, "Filter9Plus", { + enumerable: true, + get: function () { + return _Filter9Plus.default; + } +}); +Object.defineProperty(exports, "Filter9PlusOutlined", { + enumerable: true, + get: function () { + return _Filter9PlusOutlined.default; + } +}); +Object.defineProperty(exports, "Filter9PlusRounded", { + enumerable: true, + get: function () { + return _Filter9PlusRounded.default; + } +}); +Object.defineProperty(exports, "Filter9PlusSharp", { + enumerable: true, + get: function () { + return _Filter9PlusSharp.default; + } +}); +Object.defineProperty(exports, "Filter9PlusTwoTone", { + enumerable: true, + get: function () { + return _Filter9PlusTwoTone.default; + } +}); +Object.defineProperty(exports, "Filter9Rounded", { + enumerable: true, + get: function () { + return _Filter9Rounded.default; + } +}); +Object.defineProperty(exports, "Filter9Sharp", { + enumerable: true, + get: function () { + return _Filter9Sharp.default; + } +}); +Object.defineProperty(exports, "Filter9TwoTone", { + enumerable: true, + get: function () { + return _Filter9TwoTone.default; + } +}); +Object.defineProperty(exports, "FilterAlt", { + enumerable: true, + get: function () { + return _FilterAlt.default; + } +}); +Object.defineProperty(exports, "FilterAltOutlined", { + enumerable: true, + get: function () { + return _FilterAltOutlined.default; + } +}); +Object.defineProperty(exports, "FilterAltRounded", { + enumerable: true, + get: function () { + return _FilterAltRounded.default; + } +}); +Object.defineProperty(exports, "FilterAltSharp", { + enumerable: true, + get: function () { + return _FilterAltSharp.default; + } +}); +Object.defineProperty(exports, "FilterAltTwoTone", { + enumerable: true, + get: function () { + return _FilterAltTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterBAndW", { + enumerable: true, + get: function () { + return _FilterBAndW.default; + } +}); +Object.defineProperty(exports, "FilterBAndWOutlined", { + enumerable: true, + get: function () { + return _FilterBAndWOutlined.default; + } +}); +Object.defineProperty(exports, "FilterBAndWRounded", { + enumerable: true, + get: function () { + return _FilterBAndWRounded.default; + } +}); +Object.defineProperty(exports, "FilterBAndWSharp", { + enumerable: true, + get: function () { + return _FilterBAndWSharp.default; + } +}); +Object.defineProperty(exports, "FilterBAndWTwoTone", { + enumerable: true, + get: function () { + return _FilterBAndWTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterCenterFocus", { + enumerable: true, + get: function () { + return _FilterCenterFocus.default; + } +}); +Object.defineProperty(exports, "FilterCenterFocusOutlined", { + enumerable: true, + get: function () { + return _FilterCenterFocusOutlined.default; + } +}); +Object.defineProperty(exports, "FilterCenterFocusRounded", { + enumerable: true, + get: function () { + return _FilterCenterFocusRounded.default; + } +}); +Object.defineProperty(exports, "FilterCenterFocusSharp", { + enumerable: true, + get: function () { + return _FilterCenterFocusSharp.default; + } +}); +Object.defineProperty(exports, "FilterCenterFocusTwoTone", { + enumerable: true, + get: function () { + return _FilterCenterFocusTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterDrama", { + enumerable: true, + get: function () { + return _FilterDrama.default; + } +}); +Object.defineProperty(exports, "FilterDramaOutlined", { + enumerable: true, + get: function () { + return _FilterDramaOutlined.default; + } +}); +Object.defineProperty(exports, "FilterDramaRounded", { + enumerable: true, + get: function () { + return _FilterDramaRounded.default; + } +}); +Object.defineProperty(exports, "FilterDramaSharp", { + enumerable: true, + get: function () { + return _FilterDramaSharp.default; + } +}); +Object.defineProperty(exports, "FilterDramaTwoTone", { + enumerable: true, + get: function () { + return _FilterDramaTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterFrames", { + enumerable: true, + get: function () { + return _FilterFrames.default; + } +}); +Object.defineProperty(exports, "FilterFramesOutlined", { + enumerable: true, + get: function () { + return _FilterFramesOutlined.default; + } +}); +Object.defineProperty(exports, "FilterFramesRounded", { + enumerable: true, + get: function () { + return _FilterFramesRounded.default; + } +}); +Object.defineProperty(exports, "FilterFramesSharp", { + enumerable: true, + get: function () { + return _FilterFramesSharp.default; + } +}); +Object.defineProperty(exports, "FilterFramesTwoTone", { + enumerable: true, + get: function () { + return _FilterFramesTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterHdr", { + enumerable: true, + get: function () { + return _FilterHdr.default; + } +}); +Object.defineProperty(exports, "FilterHdrOutlined", { + enumerable: true, + get: function () { + return _FilterHdrOutlined.default; + } +}); +Object.defineProperty(exports, "FilterHdrRounded", { + enumerable: true, + get: function () { + return _FilterHdrRounded.default; + } +}); +Object.defineProperty(exports, "FilterHdrSharp", { + enumerable: true, + get: function () { + return _FilterHdrSharp.default; + } +}); +Object.defineProperty(exports, "FilterHdrTwoTone", { + enumerable: true, + get: function () { + return _FilterHdrTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterList", { + enumerable: true, + get: function () { + return _FilterList.default; + } +}); +Object.defineProperty(exports, "FilterListOutlined", { + enumerable: true, + get: function () { + return _FilterListOutlined.default; + } +}); +Object.defineProperty(exports, "FilterListRounded", { + enumerable: true, + get: function () { + return _FilterListRounded.default; + } +}); +Object.defineProperty(exports, "FilterListSharp", { + enumerable: true, + get: function () { + return _FilterListSharp.default; + } +}); +Object.defineProperty(exports, "FilterListTwoTone", { + enumerable: true, + get: function () { + return _FilterListTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterNone", { + enumerable: true, + get: function () { + return _FilterNone.default; + } +}); +Object.defineProperty(exports, "FilterNoneOutlined", { + enumerable: true, + get: function () { + return _FilterNoneOutlined.default; + } +}); +Object.defineProperty(exports, "FilterNoneRounded", { + enumerable: true, + get: function () { + return _FilterNoneRounded.default; + } +}); +Object.defineProperty(exports, "FilterNoneSharp", { + enumerable: true, + get: function () { + return _FilterNoneSharp.default; + } +}); +Object.defineProperty(exports, "FilterNoneTwoTone", { + enumerable: true, + get: function () { + return _FilterNoneTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterOutlined", { + enumerable: true, + get: function () { + return _FilterOutlined.default; + } +}); +Object.defineProperty(exports, "FilterRounded", { + enumerable: true, + get: function () { + return _FilterRounded.default; + } +}); +Object.defineProperty(exports, "FilterSharp", { + enumerable: true, + get: function () { + return _FilterSharp.default; + } +}); +Object.defineProperty(exports, "FilterTiltShift", { + enumerable: true, + get: function () { + return _FilterTiltShift.default; + } +}); +Object.defineProperty(exports, "FilterTiltShiftOutlined", { + enumerable: true, + get: function () { + return _FilterTiltShiftOutlined.default; + } +}); +Object.defineProperty(exports, "FilterTiltShiftRounded", { + enumerable: true, + get: function () { + return _FilterTiltShiftRounded.default; + } +}); +Object.defineProperty(exports, "FilterTiltShiftSharp", { + enumerable: true, + get: function () { + return _FilterTiltShiftSharp.default; + } +}); +Object.defineProperty(exports, "FilterTiltShiftTwoTone", { + enumerable: true, + get: function () { + return _FilterTiltShiftTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterTwoTone", { + enumerable: true, + get: function () { + return _FilterTwoTone.default; + } +}); +Object.defineProperty(exports, "FilterVintage", { + enumerable: true, + get: function () { + return _FilterVintage.default; + } +}); +Object.defineProperty(exports, "FilterVintageOutlined", { + enumerable: true, + get: function () { + return _FilterVintageOutlined.default; + } +}); +Object.defineProperty(exports, "FilterVintageRounded", { + enumerable: true, + get: function () { + return _FilterVintageRounded.default; + } +}); +Object.defineProperty(exports, "FilterVintageSharp", { + enumerable: true, + get: function () { + return _FilterVintageSharp.default; + } +}); +Object.defineProperty(exports, "FilterVintageTwoTone", { + enumerable: true, + get: function () { + return _FilterVintageTwoTone.default; + } +}); +Object.defineProperty(exports, "FindInPage", { + enumerable: true, + get: function () { + return _FindInPage.default; + } +}); +Object.defineProperty(exports, "FindInPageOutlined", { + enumerable: true, + get: function () { + return _FindInPageOutlined.default; + } +}); +Object.defineProperty(exports, "FindInPageRounded", { + enumerable: true, + get: function () { + return _FindInPageRounded.default; + } +}); +Object.defineProperty(exports, "FindInPageSharp", { + enumerable: true, + get: function () { + return _FindInPageSharp.default; + } +}); +Object.defineProperty(exports, "FindInPageTwoTone", { + enumerable: true, + get: function () { + return _FindInPageTwoTone.default; + } +}); +Object.defineProperty(exports, "FindReplace", { + enumerable: true, + get: function () { + return _FindReplace.default; + } +}); +Object.defineProperty(exports, "FindReplaceOutlined", { + enumerable: true, + get: function () { + return _FindReplaceOutlined.default; + } +}); +Object.defineProperty(exports, "FindReplaceRounded", { + enumerable: true, + get: function () { + return _FindReplaceRounded.default; + } +}); +Object.defineProperty(exports, "FindReplaceSharp", { + enumerable: true, + get: function () { + return _FindReplaceSharp.default; + } +}); +Object.defineProperty(exports, "FindReplaceTwoTone", { + enumerable: true, + get: function () { + return _FindReplaceTwoTone.default; + } +}); +Object.defineProperty(exports, "Fingerprint", { + enumerable: true, + get: function () { + return _Fingerprint.default; + } +}); +Object.defineProperty(exports, "FingerprintOutlined", { + enumerable: true, + get: function () { + return _FingerprintOutlined.default; + } +}); +Object.defineProperty(exports, "FingerprintRounded", { + enumerable: true, + get: function () { + return _FingerprintRounded.default; + } +}); +Object.defineProperty(exports, "FingerprintSharp", { + enumerable: true, + get: function () { + return _FingerprintSharp.default; + } +}); +Object.defineProperty(exports, "FingerprintTwoTone", { + enumerable: true, + get: function () { + return _FingerprintTwoTone.default; + } +}); +Object.defineProperty(exports, "FireExtinguisher", { + enumerable: true, + get: function () { + return _FireExtinguisher.default; + } +}); +Object.defineProperty(exports, "FireExtinguisherOutlined", { + enumerable: true, + get: function () { + return _FireExtinguisherOutlined.default; + } +}); +Object.defineProperty(exports, "FireExtinguisherRounded", { + enumerable: true, + get: function () { + return _FireExtinguisherRounded.default; + } +}); +Object.defineProperty(exports, "FireExtinguisherSharp", { + enumerable: true, + get: function () { + return _FireExtinguisherSharp.default; + } +}); +Object.defineProperty(exports, "FireExtinguisherTwoTone", { + enumerable: true, + get: function () { + return _FireExtinguisherTwoTone.default; + } +}); +Object.defineProperty(exports, "Fireplace", { + enumerable: true, + get: function () { + return _Fireplace.default; + } +}); +Object.defineProperty(exports, "FireplaceOutlined", { + enumerable: true, + get: function () { + return _FireplaceOutlined.default; + } +}); +Object.defineProperty(exports, "FireplaceRounded", { + enumerable: true, + get: function () { + return _FireplaceRounded.default; + } +}); +Object.defineProperty(exports, "FireplaceSharp", { + enumerable: true, + get: function () { + return _FireplaceSharp.default; + } +}); +Object.defineProperty(exports, "FireplaceTwoTone", { + enumerable: true, + get: function () { + return _FireplaceTwoTone.default; + } +}); +Object.defineProperty(exports, "FirstPage", { + enumerable: true, + get: function () { + return _FirstPage.default; + } +}); +Object.defineProperty(exports, "FirstPageOutlined", { + enumerable: true, + get: function () { + return _FirstPageOutlined.default; + } +}); +Object.defineProperty(exports, "FirstPageRounded", { + enumerable: true, + get: function () { + return _FirstPageRounded.default; + } +}); +Object.defineProperty(exports, "FirstPageSharp", { + enumerable: true, + get: function () { + return _FirstPageSharp.default; + } +}); +Object.defineProperty(exports, "FirstPageTwoTone", { + enumerable: true, + get: function () { + return _FirstPageTwoTone.default; + } +}); +Object.defineProperty(exports, "FitScreen", { + enumerable: true, + get: function () { + return _FitScreen.default; + } +}); +Object.defineProperty(exports, "FitScreenOutlined", { + enumerable: true, + get: function () { + return _FitScreenOutlined.default; + } +}); +Object.defineProperty(exports, "FitScreenRounded", { + enumerable: true, + get: function () { + return _FitScreenRounded.default; + } +}); +Object.defineProperty(exports, "FitScreenSharp", { + enumerable: true, + get: function () { + return _FitScreenSharp.default; + } +}); +Object.defineProperty(exports, "FitScreenTwoTone", { + enumerable: true, + get: function () { + return _FitScreenTwoTone.default; + } +}); +Object.defineProperty(exports, "FitnessCenter", { + enumerable: true, + get: function () { + return _FitnessCenter.default; + } +}); +Object.defineProperty(exports, "FitnessCenterOutlined", { + enumerable: true, + get: function () { + return _FitnessCenterOutlined.default; + } +}); +Object.defineProperty(exports, "FitnessCenterRounded", { + enumerable: true, + get: function () { + return _FitnessCenterRounded.default; + } +}); +Object.defineProperty(exports, "FitnessCenterSharp", { + enumerable: true, + get: function () { + return _FitnessCenterSharp.default; + } +}); +Object.defineProperty(exports, "FitnessCenterTwoTone", { + enumerable: true, + get: function () { + return _FitnessCenterTwoTone.default; + } +}); +Object.defineProperty(exports, "FiveG", { + enumerable: true, + get: function () { + return _FiveG.default; + } +}); +Object.defineProperty(exports, "FiveGOutlined", { + enumerable: true, + get: function () { + return _FiveGOutlined.default; + } +}); +Object.defineProperty(exports, "FiveGRounded", { + enumerable: true, + get: function () { + return _FiveGRounded.default; + } +}); +Object.defineProperty(exports, "FiveGSharp", { + enumerable: true, + get: function () { + return _FiveGSharp.default; + } +}); +Object.defineProperty(exports, "FiveGTwoTone", { + enumerable: true, + get: function () { + return _FiveGTwoTone.default; + } +}); +Object.defineProperty(exports, "FiveK", { + enumerable: true, + get: function () { + return _FiveK.default; + } +}); +Object.defineProperty(exports, "FiveKOutlined", { + enumerable: true, + get: function () { + return _FiveKOutlined.default; + } +}); +Object.defineProperty(exports, "FiveKPlus", { + enumerable: true, + get: function () { + return _FiveKPlus.default; + } +}); +Object.defineProperty(exports, "FiveKPlusOutlined", { + enumerable: true, + get: function () { + return _FiveKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "FiveKPlusRounded", { + enumerable: true, + get: function () { + return _FiveKPlusRounded.default; + } +}); +Object.defineProperty(exports, "FiveKPlusSharp", { + enumerable: true, + get: function () { + return _FiveKPlusSharp.default; + } +}); +Object.defineProperty(exports, "FiveKPlusTwoTone", { + enumerable: true, + get: function () { + return _FiveKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "FiveKRounded", { + enumerable: true, + get: function () { + return _FiveKRounded.default; + } +}); +Object.defineProperty(exports, "FiveKSharp", { + enumerable: true, + get: function () { + return _FiveKSharp.default; + } +}); +Object.defineProperty(exports, "FiveKTwoTone", { + enumerable: true, + get: function () { + return _FiveKTwoTone.default; + } +}); +Object.defineProperty(exports, "FiveMp", { + enumerable: true, + get: function () { + return _FiveMp.default; + } +}); +Object.defineProperty(exports, "FiveMpOutlined", { + enumerable: true, + get: function () { + return _FiveMpOutlined.default; + } +}); +Object.defineProperty(exports, "FiveMpRounded", { + enumerable: true, + get: function () { + return _FiveMpRounded.default; + } +}); +Object.defineProperty(exports, "FiveMpSharp", { + enumerable: true, + get: function () { + return _FiveMpSharp.default; + } +}); +Object.defineProperty(exports, "FiveMpTwoTone", { + enumerable: true, + get: function () { + return _FiveMpTwoTone.default; + } +}); +Object.defineProperty(exports, "FivteenMp", { + enumerable: true, + get: function () { + return _FivteenMp.default; + } +}); +Object.defineProperty(exports, "FivteenMpOutlined", { + enumerable: true, + get: function () { + return _FivteenMpOutlined.default; + } +}); +Object.defineProperty(exports, "FivteenMpRounded", { + enumerable: true, + get: function () { + return _FivteenMpRounded.default; + } +}); +Object.defineProperty(exports, "FivteenMpSharp", { + enumerable: true, + get: function () { + return _FivteenMpSharp.default; + } +}); +Object.defineProperty(exports, "FivteenMpTwoTone", { + enumerable: true, + get: function () { + return _FivteenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "Flag", { + enumerable: true, + get: function () { + return _Flag.default; + } +}); +Object.defineProperty(exports, "FlagOutlined", { + enumerable: true, + get: function () { + return _FlagOutlined.default; + } +}); +Object.defineProperty(exports, "FlagRounded", { + enumerable: true, + get: function () { + return _FlagRounded.default; + } +}); +Object.defineProperty(exports, "FlagSharp", { + enumerable: true, + get: function () { + return _FlagSharp.default; + } +}); +Object.defineProperty(exports, "FlagTwoTone", { + enumerable: true, + get: function () { + return _FlagTwoTone.default; + } +}); +Object.defineProperty(exports, "Flaky", { + enumerable: true, + get: function () { + return _Flaky.default; + } +}); +Object.defineProperty(exports, "FlakyOutlined", { + enumerable: true, + get: function () { + return _FlakyOutlined.default; + } +}); +Object.defineProperty(exports, "FlakyRounded", { + enumerable: true, + get: function () { + return _FlakyRounded.default; + } +}); +Object.defineProperty(exports, "FlakySharp", { + enumerable: true, + get: function () { + return _FlakySharp.default; + } +}); +Object.defineProperty(exports, "FlakyTwoTone", { + enumerable: true, + get: function () { + return _FlakyTwoTone.default; + } +}); +Object.defineProperty(exports, "Flare", { + enumerable: true, + get: function () { + return _Flare.default; + } +}); +Object.defineProperty(exports, "FlareOutlined", { + enumerable: true, + get: function () { + return _FlareOutlined.default; + } +}); +Object.defineProperty(exports, "FlareRounded", { + enumerable: true, + get: function () { + return _FlareRounded.default; + } +}); +Object.defineProperty(exports, "FlareSharp", { + enumerable: true, + get: function () { + return _FlareSharp.default; + } +}); +Object.defineProperty(exports, "FlareTwoTone", { + enumerable: true, + get: function () { + return _FlareTwoTone.default; + } +}); +Object.defineProperty(exports, "FlashAuto", { + enumerable: true, + get: function () { + return _FlashAuto.default; + } +}); +Object.defineProperty(exports, "FlashAutoOutlined", { + enumerable: true, + get: function () { + return _FlashAutoOutlined.default; + } +}); +Object.defineProperty(exports, "FlashAutoRounded", { + enumerable: true, + get: function () { + return _FlashAutoRounded.default; + } +}); +Object.defineProperty(exports, "FlashAutoSharp", { + enumerable: true, + get: function () { + return _FlashAutoSharp.default; + } +}); +Object.defineProperty(exports, "FlashAutoTwoTone", { + enumerable: true, + get: function () { + return _FlashAutoTwoTone.default; + } +}); +Object.defineProperty(exports, "FlashOff", { + enumerable: true, + get: function () { + return _FlashOff.default; + } +}); +Object.defineProperty(exports, "FlashOffOutlined", { + enumerable: true, + get: function () { + return _FlashOffOutlined.default; + } +}); +Object.defineProperty(exports, "FlashOffRounded", { + enumerable: true, + get: function () { + return _FlashOffRounded.default; + } +}); +Object.defineProperty(exports, "FlashOffSharp", { + enumerable: true, + get: function () { + return _FlashOffSharp.default; + } +}); +Object.defineProperty(exports, "FlashOffTwoTone", { + enumerable: true, + get: function () { + return _FlashOffTwoTone.default; + } +}); +Object.defineProperty(exports, "FlashOn", { + enumerable: true, + get: function () { + return _FlashOn.default; + } +}); +Object.defineProperty(exports, "FlashOnOutlined", { + enumerable: true, + get: function () { + return _FlashOnOutlined.default; + } +}); +Object.defineProperty(exports, "FlashOnRounded", { + enumerable: true, + get: function () { + return _FlashOnRounded.default; + } +}); +Object.defineProperty(exports, "FlashOnSharp", { + enumerable: true, + get: function () { + return _FlashOnSharp.default; + } +}); +Object.defineProperty(exports, "FlashOnTwoTone", { + enumerable: true, + get: function () { + return _FlashOnTwoTone.default; + } +}); +Object.defineProperty(exports, "FlashlightOff", { + enumerable: true, + get: function () { + return _FlashlightOff.default; + } +}); +Object.defineProperty(exports, "FlashlightOffOutlined", { + enumerable: true, + get: function () { + return _FlashlightOffOutlined.default; + } +}); +Object.defineProperty(exports, "FlashlightOffRounded", { + enumerable: true, + get: function () { + return _FlashlightOffRounded.default; + } +}); +Object.defineProperty(exports, "FlashlightOffSharp", { + enumerable: true, + get: function () { + return _FlashlightOffSharp.default; + } +}); +Object.defineProperty(exports, "FlashlightOffTwoTone", { + enumerable: true, + get: function () { + return _FlashlightOffTwoTone.default; + } +}); +Object.defineProperty(exports, "FlashlightOn", { + enumerable: true, + get: function () { + return _FlashlightOn.default; + } +}); +Object.defineProperty(exports, "FlashlightOnOutlined", { + enumerable: true, + get: function () { + return _FlashlightOnOutlined.default; + } +}); +Object.defineProperty(exports, "FlashlightOnRounded", { + enumerable: true, + get: function () { + return _FlashlightOnRounded.default; + } +}); +Object.defineProperty(exports, "FlashlightOnSharp", { + enumerable: true, + get: function () { + return _FlashlightOnSharp.default; + } +}); +Object.defineProperty(exports, "FlashlightOnTwoTone", { + enumerable: true, + get: function () { + return _FlashlightOnTwoTone.default; + } +}); +Object.defineProperty(exports, "Flatware", { + enumerable: true, + get: function () { + return _Flatware.default; + } +}); +Object.defineProperty(exports, "FlatwareOutlined", { + enumerable: true, + get: function () { + return _FlatwareOutlined.default; + } +}); +Object.defineProperty(exports, "FlatwareRounded", { + enumerable: true, + get: function () { + return _FlatwareRounded.default; + } +}); +Object.defineProperty(exports, "FlatwareSharp", { + enumerable: true, + get: function () { + return _FlatwareSharp.default; + } +}); +Object.defineProperty(exports, "FlatwareTwoTone", { + enumerable: true, + get: function () { + return _FlatwareTwoTone.default; + } +}); +Object.defineProperty(exports, "Flight", { + enumerable: true, + get: function () { + return _Flight.default; + } +}); +Object.defineProperty(exports, "FlightLand", { + enumerable: true, + get: function () { + return _FlightLand.default; + } +}); +Object.defineProperty(exports, "FlightLandOutlined", { + enumerable: true, + get: function () { + return _FlightLandOutlined.default; + } +}); +Object.defineProperty(exports, "FlightLandRounded", { + enumerable: true, + get: function () { + return _FlightLandRounded.default; + } +}); +Object.defineProperty(exports, "FlightLandSharp", { + enumerable: true, + get: function () { + return _FlightLandSharp.default; + } +}); +Object.defineProperty(exports, "FlightLandTwoTone", { + enumerable: true, + get: function () { + return _FlightLandTwoTone.default; + } +}); +Object.defineProperty(exports, "FlightOutlined", { + enumerable: true, + get: function () { + return _FlightOutlined.default; + } +}); +Object.defineProperty(exports, "FlightRounded", { + enumerable: true, + get: function () { + return _FlightRounded.default; + } +}); +Object.defineProperty(exports, "FlightSharp", { + enumerable: true, + get: function () { + return _FlightSharp.default; + } +}); +Object.defineProperty(exports, "FlightTakeoff", { + enumerable: true, + get: function () { + return _FlightTakeoff.default; + } +}); +Object.defineProperty(exports, "FlightTakeoffOutlined", { + enumerable: true, + get: function () { + return _FlightTakeoffOutlined.default; + } +}); +Object.defineProperty(exports, "FlightTakeoffRounded", { + enumerable: true, + get: function () { + return _FlightTakeoffRounded.default; + } +}); +Object.defineProperty(exports, "FlightTakeoffSharp", { + enumerable: true, + get: function () { + return _FlightTakeoffSharp.default; + } +}); +Object.defineProperty(exports, "FlightTakeoffTwoTone", { + enumerable: true, + get: function () { + return _FlightTakeoffTwoTone.default; + } +}); +Object.defineProperty(exports, "FlightTwoTone", { + enumerable: true, + get: function () { + return _FlightTwoTone.default; + } +}); +Object.defineProperty(exports, "Flip", { + enumerable: true, + get: function () { + return _Flip.default; + } +}); +Object.defineProperty(exports, "FlipCameraAndroid", { + enumerable: true, + get: function () { + return _FlipCameraAndroid.default; + } +}); +Object.defineProperty(exports, "FlipCameraAndroidOutlined", { + enumerable: true, + get: function () { + return _FlipCameraAndroidOutlined.default; + } +}); +Object.defineProperty(exports, "FlipCameraAndroidRounded", { + enumerable: true, + get: function () { + return _FlipCameraAndroidRounded.default; + } +}); +Object.defineProperty(exports, "FlipCameraAndroidSharp", { + enumerable: true, + get: function () { + return _FlipCameraAndroidSharp.default; + } +}); +Object.defineProperty(exports, "FlipCameraAndroidTwoTone", { + enumerable: true, + get: function () { + return _FlipCameraAndroidTwoTone.default; + } +}); +Object.defineProperty(exports, "FlipCameraIos", { + enumerable: true, + get: function () { + return _FlipCameraIos.default; + } +}); +Object.defineProperty(exports, "FlipCameraIosOutlined", { + enumerable: true, + get: function () { + return _FlipCameraIosOutlined.default; + } +}); +Object.defineProperty(exports, "FlipCameraIosRounded", { + enumerable: true, + get: function () { + return _FlipCameraIosRounded.default; + } +}); +Object.defineProperty(exports, "FlipCameraIosSharp", { + enumerable: true, + get: function () { + return _FlipCameraIosSharp.default; + } +}); +Object.defineProperty(exports, "FlipCameraIosTwoTone", { + enumerable: true, + get: function () { + return _FlipCameraIosTwoTone.default; + } +}); +Object.defineProperty(exports, "FlipOutlined", { + enumerable: true, + get: function () { + return _FlipOutlined.default; + } +}); +Object.defineProperty(exports, "FlipRounded", { + enumerable: true, + get: function () { + return _FlipRounded.default; + } +}); +Object.defineProperty(exports, "FlipSharp", { + enumerable: true, + get: function () { + return _FlipSharp.default; + } +}); +Object.defineProperty(exports, "FlipToBack", { + enumerable: true, + get: function () { + return _FlipToBack.default; + } +}); +Object.defineProperty(exports, "FlipToBackOutlined", { + enumerable: true, + get: function () { + return _FlipToBackOutlined.default; + } +}); +Object.defineProperty(exports, "FlipToBackRounded", { + enumerable: true, + get: function () { + return _FlipToBackRounded.default; + } +}); +Object.defineProperty(exports, "FlipToBackSharp", { + enumerable: true, + get: function () { + return _FlipToBackSharp.default; + } +}); +Object.defineProperty(exports, "FlipToBackTwoTone", { + enumerable: true, + get: function () { + return _FlipToBackTwoTone.default; + } +}); +Object.defineProperty(exports, "FlipToFront", { + enumerable: true, + get: function () { + return _FlipToFront.default; + } +}); +Object.defineProperty(exports, "FlipToFrontOutlined", { + enumerable: true, + get: function () { + return _FlipToFrontOutlined.default; + } +}); +Object.defineProperty(exports, "FlipToFrontRounded", { + enumerable: true, + get: function () { + return _FlipToFrontRounded.default; + } +}); +Object.defineProperty(exports, "FlipToFrontSharp", { + enumerable: true, + get: function () { + return _FlipToFrontSharp.default; + } +}); +Object.defineProperty(exports, "FlipToFrontTwoTone", { + enumerable: true, + get: function () { + return _FlipToFrontTwoTone.default; + } +}); +Object.defineProperty(exports, "FlipTwoTone", { + enumerable: true, + get: function () { + return _FlipTwoTone.default; + } +}); +Object.defineProperty(exports, "Flourescent", { + enumerable: true, + get: function () { + return _Flourescent.default; + } +}); +Object.defineProperty(exports, "FlourescentOutlined", { + enumerable: true, + get: function () { + return _FlourescentOutlined.default; + } +}); +Object.defineProperty(exports, "FlourescentRounded", { + enumerable: true, + get: function () { + return _FlourescentRounded.default; + } +}); +Object.defineProperty(exports, "FlourescentSharp", { + enumerable: true, + get: function () { + return _FlourescentSharp.default; + } +}); +Object.defineProperty(exports, "FlourescentTwoTone", { + enumerable: true, + get: function () { + return _FlourescentTwoTone.default; + } +}); +Object.defineProperty(exports, "FlutterDash", { + enumerable: true, + get: function () { + return _FlutterDash.default; + } +}); +Object.defineProperty(exports, "FlutterDashOutlined", { + enumerable: true, + get: function () { + return _FlutterDashOutlined.default; + } +}); +Object.defineProperty(exports, "FlutterDashRounded", { + enumerable: true, + get: function () { + return _FlutterDashRounded.default; + } +}); +Object.defineProperty(exports, "FlutterDashSharp", { + enumerable: true, + get: function () { + return _FlutterDashSharp.default; + } +}); +Object.defineProperty(exports, "FlutterDashTwoTone", { + enumerable: true, + get: function () { + return _FlutterDashTwoTone.default; + } +}); +Object.defineProperty(exports, "FmdBad", { + enumerable: true, + get: function () { + return _FmdBad.default; + } +}); +Object.defineProperty(exports, "FmdBadOutlined", { + enumerable: true, + get: function () { + return _FmdBadOutlined.default; + } +}); +Object.defineProperty(exports, "FmdBadRounded", { + enumerable: true, + get: function () { + return _FmdBadRounded.default; + } +}); +Object.defineProperty(exports, "FmdBadSharp", { + enumerable: true, + get: function () { + return _FmdBadSharp.default; + } +}); +Object.defineProperty(exports, "FmdBadTwoTone", { + enumerable: true, + get: function () { + return _FmdBadTwoTone.default; + } +}); +Object.defineProperty(exports, "FmdGood", { + enumerable: true, + get: function () { + return _FmdGood.default; + } +}); +Object.defineProperty(exports, "FmdGoodOutlined", { + enumerable: true, + get: function () { + return _FmdGoodOutlined.default; + } +}); +Object.defineProperty(exports, "FmdGoodRounded", { + enumerable: true, + get: function () { + return _FmdGoodRounded.default; + } +}); +Object.defineProperty(exports, "FmdGoodSharp", { + enumerable: true, + get: function () { + return _FmdGoodSharp.default; + } +}); +Object.defineProperty(exports, "FmdGoodTwoTone", { + enumerable: true, + get: function () { + return _FmdGoodTwoTone.default; + } +}); +Object.defineProperty(exports, "Folder", { + enumerable: true, + get: function () { + return _Folder.default; + } +}); +Object.defineProperty(exports, "FolderOpen", { + enumerable: true, + get: function () { + return _FolderOpen.default; + } +}); +Object.defineProperty(exports, "FolderOpenOutlined", { + enumerable: true, + get: function () { + return _FolderOpenOutlined.default; + } +}); +Object.defineProperty(exports, "FolderOpenRounded", { + enumerable: true, + get: function () { + return _FolderOpenRounded.default; + } +}); +Object.defineProperty(exports, "FolderOpenSharp", { + enumerable: true, + get: function () { + return _FolderOpenSharp.default; + } +}); +Object.defineProperty(exports, "FolderOpenTwoTone", { + enumerable: true, + get: function () { + return _FolderOpenTwoTone.default; + } +}); +Object.defineProperty(exports, "FolderOutlined", { + enumerable: true, + get: function () { + return _FolderOutlined.default; + } +}); +Object.defineProperty(exports, "FolderRounded", { + enumerable: true, + get: function () { + return _FolderRounded.default; + } +}); +Object.defineProperty(exports, "FolderShared", { + enumerable: true, + get: function () { + return _FolderShared.default; + } +}); +Object.defineProperty(exports, "FolderSharedOutlined", { + enumerable: true, + get: function () { + return _FolderSharedOutlined.default; + } +}); +Object.defineProperty(exports, "FolderSharedRounded", { + enumerable: true, + get: function () { + return _FolderSharedRounded.default; + } +}); +Object.defineProperty(exports, "FolderSharedSharp", { + enumerable: true, + get: function () { + return _FolderSharedSharp.default; + } +}); +Object.defineProperty(exports, "FolderSharedTwoTone", { + enumerable: true, + get: function () { + return _FolderSharedTwoTone.default; + } +}); +Object.defineProperty(exports, "FolderSharp", { + enumerable: true, + get: function () { + return _FolderSharp.default; + } +}); +Object.defineProperty(exports, "FolderSpecial", { + enumerable: true, + get: function () { + return _FolderSpecial.default; + } +}); +Object.defineProperty(exports, "FolderSpecialOutlined", { + enumerable: true, + get: function () { + return _FolderSpecialOutlined.default; + } +}); +Object.defineProperty(exports, "FolderSpecialRounded", { + enumerable: true, + get: function () { + return _FolderSpecialRounded.default; + } +}); +Object.defineProperty(exports, "FolderSpecialSharp", { + enumerable: true, + get: function () { + return _FolderSpecialSharp.default; + } +}); +Object.defineProperty(exports, "FolderSpecialTwoTone", { + enumerable: true, + get: function () { + return _FolderSpecialTwoTone.default; + } +}); +Object.defineProperty(exports, "FolderTwoTone", { + enumerable: true, + get: function () { + return _FolderTwoTone.default; + } +}); +Object.defineProperty(exports, "FollowTheSigns", { + enumerable: true, + get: function () { + return _FollowTheSigns.default; + } +}); +Object.defineProperty(exports, "FollowTheSignsOutlined", { + enumerable: true, + get: function () { + return _FollowTheSignsOutlined.default; + } +}); +Object.defineProperty(exports, "FollowTheSignsRounded", { + enumerable: true, + get: function () { + return _FollowTheSignsRounded.default; + } +}); +Object.defineProperty(exports, "FollowTheSignsSharp", { + enumerable: true, + get: function () { + return _FollowTheSignsSharp.default; + } +}); +Object.defineProperty(exports, "FollowTheSignsTwoTone", { + enumerable: true, + get: function () { + return _FollowTheSignsTwoTone.default; + } +}); +Object.defineProperty(exports, "FontDownload", { + enumerable: true, + get: function () { + return _FontDownload.default; + } +}); +Object.defineProperty(exports, "FontDownloadOff", { + enumerable: true, + get: function () { + return _FontDownloadOff.default; + } +}); +Object.defineProperty(exports, "FontDownloadOffOutlined", { + enumerable: true, + get: function () { + return _FontDownloadOffOutlined.default; + } +}); +Object.defineProperty(exports, "FontDownloadOffRounded", { + enumerable: true, + get: function () { + return _FontDownloadOffRounded.default; + } +}); +Object.defineProperty(exports, "FontDownloadOffSharp", { + enumerable: true, + get: function () { + return _FontDownloadOffSharp.default; + } +}); +Object.defineProperty(exports, "FontDownloadOffTwoTone", { + enumerable: true, + get: function () { + return _FontDownloadOffTwoTone.default; + } +}); +Object.defineProperty(exports, "FontDownloadOutlined", { + enumerable: true, + get: function () { + return _FontDownloadOutlined.default; + } +}); +Object.defineProperty(exports, "FontDownloadRounded", { + enumerable: true, + get: function () { + return _FontDownloadRounded.default; + } +}); +Object.defineProperty(exports, "FontDownloadSharp", { + enumerable: true, + get: function () { + return _FontDownloadSharp.default; + } +}); +Object.defineProperty(exports, "FontDownloadTwoTone", { + enumerable: true, + get: function () { + return _FontDownloadTwoTone.default; + } +}); +Object.defineProperty(exports, "FoodBank", { + enumerable: true, + get: function () { + return _FoodBank.default; + } +}); +Object.defineProperty(exports, "FoodBankOutlined", { + enumerable: true, + get: function () { + return _FoodBankOutlined.default; + } +}); +Object.defineProperty(exports, "FoodBankRounded", { + enumerable: true, + get: function () { + return _FoodBankRounded.default; + } +}); +Object.defineProperty(exports, "FoodBankSharp", { + enumerable: true, + get: function () { + return _FoodBankSharp.default; + } +}); +Object.defineProperty(exports, "FoodBankTwoTone", { + enumerable: true, + get: function () { + return _FoodBankTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatAlignCenter", { + enumerable: true, + get: function () { + return _FormatAlignCenter.default; + } +}); +Object.defineProperty(exports, "FormatAlignCenterOutlined", { + enumerable: true, + get: function () { + return _FormatAlignCenterOutlined.default; + } +}); +Object.defineProperty(exports, "FormatAlignCenterRounded", { + enumerable: true, + get: function () { + return _FormatAlignCenterRounded.default; + } +}); +Object.defineProperty(exports, "FormatAlignCenterSharp", { + enumerable: true, + get: function () { + return _FormatAlignCenterSharp.default; + } +}); +Object.defineProperty(exports, "FormatAlignCenterTwoTone", { + enumerable: true, + get: function () { + return _FormatAlignCenterTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatAlignJustify", { + enumerable: true, + get: function () { + return _FormatAlignJustify.default; + } +}); +Object.defineProperty(exports, "FormatAlignJustifyOutlined", { + enumerable: true, + get: function () { + return _FormatAlignJustifyOutlined.default; + } +}); +Object.defineProperty(exports, "FormatAlignJustifyRounded", { + enumerable: true, + get: function () { + return _FormatAlignJustifyRounded.default; + } +}); +Object.defineProperty(exports, "FormatAlignJustifySharp", { + enumerable: true, + get: function () { + return _FormatAlignJustifySharp.default; + } +}); +Object.defineProperty(exports, "FormatAlignJustifyTwoTone", { + enumerable: true, + get: function () { + return _FormatAlignJustifyTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatAlignLeft", { + enumerable: true, + get: function () { + return _FormatAlignLeft.default; + } +}); +Object.defineProperty(exports, "FormatAlignLeftOutlined", { + enumerable: true, + get: function () { + return _FormatAlignLeftOutlined.default; + } +}); +Object.defineProperty(exports, "FormatAlignLeftRounded", { + enumerable: true, + get: function () { + return _FormatAlignLeftRounded.default; + } +}); +Object.defineProperty(exports, "FormatAlignLeftSharp", { + enumerable: true, + get: function () { + return _FormatAlignLeftSharp.default; + } +}); +Object.defineProperty(exports, "FormatAlignLeftTwoTone", { + enumerable: true, + get: function () { + return _FormatAlignLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatAlignRight", { + enumerable: true, + get: function () { + return _FormatAlignRight.default; + } +}); +Object.defineProperty(exports, "FormatAlignRightOutlined", { + enumerable: true, + get: function () { + return _FormatAlignRightOutlined.default; + } +}); +Object.defineProperty(exports, "FormatAlignRightRounded", { + enumerable: true, + get: function () { + return _FormatAlignRightRounded.default; + } +}); +Object.defineProperty(exports, "FormatAlignRightSharp", { + enumerable: true, + get: function () { + return _FormatAlignRightSharp.default; + } +}); +Object.defineProperty(exports, "FormatAlignRightTwoTone", { + enumerable: true, + get: function () { + return _FormatAlignRightTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatBold", { + enumerable: true, + get: function () { + return _FormatBold.default; + } +}); +Object.defineProperty(exports, "FormatBoldOutlined", { + enumerable: true, + get: function () { + return _FormatBoldOutlined.default; + } +}); +Object.defineProperty(exports, "FormatBoldRounded", { + enumerable: true, + get: function () { + return _FormatBoldRounded.default; + } +}); +Object.defineProperty(exports, "FormatBoldSharp", { + enumerable: true, + get: function () { + return _FormatBoldSharp.default; + } +}); +Object.defineProperty(exports, "FormatBoldTwoTone", { + enumerable: true, + get: function () { + return _FormatBoldTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatClear", { + enumerable: true, + get: function () { + return _FormatClear.default; + } +}); +Object.defineProperty(exports, "FormatClearOutlined", { + enumerable: true, + get: function () { + return _FormatClearOutlined.default; + } +}); +Object.defineProperty(exports, "FormatClearRounded", { + enumerable: true, + get: function () { + return _FormatClearRounded.default; + } +}); +Object.defineProperty(exports, "FormatClearSharp", { + enumerable: true, + get: function () { + return _FormatClearSharp.default; + } +}); +Object.defineProperty(exports, "FormatClearTwoTone", { + enumerable: true, + get: function () { + return _FormatClearTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatColorFill", { + enumerable: true, + get: function () { + return _FormatColorFill.default; + } +}); +Object.defineProperty(exports, "FormatColorFillOutlined", { + enumerable: true, + get: function () { + return _FormatColorFillOutlined.default; + } +}); +Object.defineProperty(exports, "FormatColorFillRounded", { + enumerable: true, + get: function () { + return _FormatColorFillRounded.default; + } +}); +Object.defineProperty(exports, "FormatColorFillSharp", { + enumerable: true, + get: function () { + return _FormatColorFillSharp.default; + } +}); +Object.defineProperty(exports, "FormatColorFillTwoTone", { + enumerable: true, + get: function () { + return _FormatColorFillTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatColorReset", { + enumerable: true, + get: function () { + return _FormatColorReset.default; + } +}); +Object.defineProperty(exports, "FormatColorResetOutlined", { + enumerable: true, + get: function () { + return _FormatColorResetOutlined.default; + } +}); +Object.defineProperty(exports, "FormatColorResetRounded", { + enumerable: true, + get: function () { + return _FormatColorResetRounded.default; + } +}); +Object.defineProperty(exports, "FormatColorResetSharp", { + enumerable: true, + get: function () { + return _FormatColorResetSharp.default; + } +}); +Object.defineProperty(exports, "FormatColorResetTwoTone", { + enumerable: true, + get: function () { + return _FormatColorResetTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatColorText", { + enumerable: true, + get: function () { + return _FormatColorText.default; + } +}); +Object.defineProperty(exports, "FormatColorTextOutlined", { + enumerable: true, + get: function () { + return _FormatColorTextOutlined.default; + } +}); +Object.defineProperty(exports, "FormatColorTextRounded", { + enumerable: true, + get: function () { + return _FormatColorTextRounded.default; + } +}); +Object.defineProperty(exports, "FormatColorTextSharp", { + enumerable: true, + get: function () { + return _FormatColorTextSharp.default; + } +}); +Object.defineProperty(exports, "FormatColorTextTwoTone", { + enumerable: true, + get: function () { + return _FormatColorTextTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatIndentDecrease", { + enumerable: true, + get: function () { + return _FormatIndentDecrease.default; + } +}); +Object.defineProperty(exports, "FormatIndentDecreaseOutlined", { + enumerable: true, + get: function () { + return _FormatIndentDecreaseOutlined.default; + } +}); +Object.defineProperty(exports, "FormatIndentDecreaseRounded", { + enumerable: true, + get: function () { + return _FormatIndentDecreaseRounded.default; + } +}); +Object.defineProperty(exports, "FormatIndentDecreaseSharp", { + enumerable: true, + get: function () { + return _FormatIndentDecreaseSharp.default; + } +}); +Object.defineProperty(exports, "FormatIndentDecreaseTwoTone", { + enumerable: true, + get: function () { + return _FormatIndentDecreaseTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatIndentIncrease", { + enumerable: true, + get: function () { + return _FormatIndentIncrease.default; + } +}); +Object.defineProperty(exports, "FormatIndentIncreaseOutlined", { + enumerable: true, + get: function () { + return _FormatIndentIncreaseOutlined.default; + } +}); +Object.defineProperty(exports, "FormatIndentIncreaseRounded", { + enumerable: true, + get: function () { + return _FormatIndentIncreaseRounded.default; + } +}); +Object.defineProperty(exports, "FormatIndentIncreaseSharp", { + enumerable: true, + get: function () { + return _FormatIndentIncreaseSharp.default; + } +}); +Object.defineProperty(exports, "FormatIndentIncreaseTwoTone", { + enumerable: true, + get: function () { + return _FormatIndentIncreaseTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatItalic", { + enumerable: true, + get: function () { + return _FormatItalic.default; + } +}); +Object.defineProperty(exports, "FormatItalicOutlined", { + enumerable: true, + get: function () { + return _FormatItalicOutlined.default; + } +}); +Object.defineProperty(exports, "FormatItalicRounded", { + enumerable: true, + get: function () { + return _FormatItalicRounded.default; + } +}); +Object.defineProperty(exports, "FormatItalicSharp", { + enumerable: true, + get: function () { + return _FormatItalicSharp.default; + } +}); +Object.defineProperty(exports, "FormatItalicTwoTone", { + enumerable: true, + get: function () { + return _FormatItalicTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatLineSpacing", { + enumerable: true, + get: function () { + return _FormatLineSpacing.default; + } +}); +Object.defineProperty(exports, "FormatLineSpacingOutlined", { + enumerable: true, + get: function () { + return _FormatLineSpacingOutlined.default; + } +}); +Object.defineProperty(exports, "FormatLineSpacingRounded", { + enumerable: true, + get: function () { + return _FormatLineSpacingRounded.default; + } +}); +Object.defineProperty(exports, "FormatLineSpacingSharp", { + enumerable: true, + get: function () { + return _FormatLineSpacingSharp.default; + } +}); +Object.defineProperty(exports, "FormatLineSpacingTwoTone", { + enumerable: true, + get: function () { + return _FormatLineSpacingTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatListBulleted", { + enumerable: true, + get: function () { + return _FormatListBulleted.default; + } +}); +Object.defineProperty(exports, "FormatListBulletedOutlined", { + enumerable: true, + get: function () { + return _FormatListBulletedOutlined.default; + } +}); +Object.defineProperty(exports, "FormatListBulletedRounded", { + enumerable: true, + get: function () { + return _FormatListBulletedRounded.default; + } +}); +Object.defineProperty(exports, "FormatListBulletedSharp", { + enumerable: true, + get: function () { + return _FormatListBulletedSharp.default; + } +}); +Object.defineProperty(exports, "FormatListBulletedTwoTone", { + enumerable: true, + get: function () { + return _FormatListBulletedTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatListNumbered", { + enumerable: true, + get: function () { + return _FormatListNumbered.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedOutlined", { + enumerable: true, + get: function () { + return _FormatListNumberedOutlined.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedRounded", { + enumerable: true, + get: function () { + return _FormatListNumberedRounded.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedRtl", { + enumerable: true, + get: function () { + return _FormatListNumberedRtl.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedRtlOutlined", { + enumerable: true, + get: function () { + return _FormatListNumberedRtlOutlined.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedRtlRounded", { + enumerable: true, + get: function () { + return _FormatListNumberedRtlRounded.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedRtlSharp", { + enumerable: true, + get: function () { + return _FormatListNumberedRtlSharp.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedRtlTwoTone", { + enumerable: true, + get: function () { + return _FormatListNumberedRtlTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedSharp", { + enumerable: true, + get: function () { + return _FormatListNumberedSharp.default; + } +}); +Object.defineProperty(exports, "FormatListNumberedTwoTone", { + enumerable: true, + get: function () { + return _FormatListNumberedTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatPaint", { + enumerable: true, + get: function () { + return _FormatPaint.default; + } +}); +Object.defineProperty(exports, "FormatPaintOutlined", { + enumerable: true, + get: function () { + return _FormatPaintOutlined.default; + } +}); +Object.defineProperty(exports, "FormatPaintRounded", { + enumerable: true, + get: function () { + return _FormatPaintRounded.default; + } +}); +Object.defineProperty(exports, "FormatPaintSharp", { + enumerable: true, + get: function () { + return _FormatPaintSharp.default; + } +}); +Object.defineProperty(exports, "FormatPaintTwoTone", { + enumerable: true, + get: function () { + return _FormatPaintTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatQuote", { + enumerable: true, + get: function () { + return _FormatQuote.default; + } +}); +Object.defineProperty(exports, "FormatQuoteOutlined", { + enumerable: true, + get: function () { + return _FormatQuoteOutlined.default; + } +}); +Object.defineProperty(exports, "FormatQuoteRounded", { + enumerable: true, + get: function () { + return _FormatQuoteRounded.default; + } +}); +Object.defineProperty(exports, "FormatQuoteSharp", { + enumerable: true, + get: function () { + return _FormatQuoteSharp.default; + } +}); +Object.defineProperty(exports, "FormatQuoteTwoTone", { + enumerable: true, + get: function () { + return _FormatQuoteTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatShapes", { + enumerable: true, + get: function () { + return _FormatShapes.default; + } +}); +Object.defineProperty(exports, "FormatShapesOutlined", { + enumerable: true, + get: function () { + return _FormatShapesOutlined.default; + } +}); +Object.defineProperty(exports, "FormatShapesRounded", { + enumerable: true, + get: function () { + return _FormatShapesRounded.default; + } +}); +Object.defineProperty(exports, "FormatShapesSharp", { + enumerable: true, + get: function () { + return _FormatShapesSharp.default; + } +}); +Object.defineProperty(exports, "FormatShapesTwoTone", { + enumerable: true, + get: function () { + return _FormatShapesTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatSize", { + enumerable: true, + get: function () { + return _FormatSize.default; + } +}); +Object.defineProperty(exports, "FormatSizeOutlined", { + enumerable: true, + get: function () { + return _FormatSizeOutlined.default; + } +}); +Object.defineProperty(exports, "FormatSizeRounded", { + enumerable: true, + get: function () { + return _FormatSizeRounded.default; + } +}); +Object.defineProperty(exports, "FormatSizeSharp", { + enumerable: true, + get: function () { + return _FormatSizeSharp.default; + } +}); +Object.defineProperty(exports, "FormatSizeTwoTone", { + enumerable: true, + get: function () { + return _FormatSizeTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatStrikethrough", { + enumerable: true, + get: function () { + return _FormatStrikethrough.default; + } +}); +Object.defineProperty(exports, "FormatStrikethroughOutlined", { + enumerable: true, + get: function () { + return _FormatStrikethroughOutlined.default; + } +}); +Object.defineProperty(exports, "FormatStrikethroughRounded", { + enumerable: true, + get: function () { + return _FormatStrikethroughRounded.default; + } +}); +Object.defineProperty(exports, "FormatStrikethroughSharp", { + enumerable: true, + get: function () { + return _FormatStrikethroughSharp.default; + } +}); +Object.defineProperty(exports, "FormatStrikethroughTwoTone", { + enumerable: true, + get: function () { + return _FormatStrikethroughTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionLToR", { + enumerable: true, + get: function () { + return _FormatTextdirectionLToR.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionLToROutlined", { + enumerable: true, + get: function () { + return _FormatTextdirectionLToROutlined.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionLToRRounded", { + enumerable: true, + get: function () { + return _FormatTextdirectionLToRRounded.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionLToRSharp", { + enumerable: true, + get: function () { + return _FormatTextdirectionLToRSharp.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionLToRTwoTone", { + enumerable: true, + get: function () { + return _FormatTextdirectionLToRTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionRToL", { + enumerable: true, + get: function () { + return _FormatTextdirectionRToL.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionRToLOutlined", { + enumerable: true, + get: function () { + return _FormatTextdirectionRToLOutlined.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionRToLRounded", { + enumerable: true, + get: function () { + return _FormatTextdirectionRToLRounded.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionRToLSharp", { + enumerable: true, + get: function () { + return _FormatTextdirectionRToLSharp.default; + } +}); +Object.defineProperty(exports, "FormatTextdirectionRToLTwoTone", { + enumerable: true, + get: function () { + return _FormatTextdirectionRToLTwoTone.default; + } +}); +Object.defineProperty(exports, "FormatUnderlined", { + enumerable: true, + get: function () { + return _FormatUnderlined.default; + } +}); +Object.defineProperty(exports, "FormatUnderlinedOutlined", { + enumerable: true, + get: function () { + return _FormatUnderlinedOutlined.default; + } +}); +Object.defineProperty(exports, "FormatUnderlinedRounded", { + enumerable: true, + get: function () { + return _FormatUnderlinedRounded.default; + } +}); +Object.defineProperty(exports, "FormatUnderlinedSharp", { + enumerable: true, + get: function () { + return _FormatUnderlinedSharp.default; + } +}); +Object.defineProperty(exports, "FormatUnderlinedTwoTone", { + enumerable: true, + get: function () { + return _FormatUnderlinedTwoTone.default; + } +}); +Object.defineProperty(exports, "Forum", { + enumerable: true, + get: function () { + return _Forum.default; + } +}); +Object.defineProperty(exports, "ForumOutlined", { + enumerable: true, + get: function () { + return _ForumOutlined.default; + } +}); +Object.defineProperty(exports, "ForumRounded", { + enumerable: true, + get: function () { + return _ForumRounded.default; + } +}); +Object.defineProperty(exports, "ForumSharp", { + enumerable: true, + get: function () { + return _ForumSharp.default; + } +}); +Object.defineProperty(exports, "ForumTwoTone", { + enumerable: true, + get: function () { + return _ForumTwoTone.default; + } +}); +Object.defineProperty(exports, "Forward", { + enumerable: true, + get: function () { + return _Forward.default; + } +}); +Object.defineProperty(exports, "Forward10", { + enumerable: true, + get: function () { + return _Forward2.default; + } +}); +Object.defineProperty(exports, "Forward10Outlined", { + enumerable: true, + get: function () { + return _Forward10Outlined.default; + } +}); +Object.defineProperty(exports, "Forward10Rounded", { + enumerable: true, + get: function () { + return _Forward10Rounded.default; + } +}); +Object.defineProperty(exports, "Forward10Sharp", { + enumerable: true, + get: function () { + return _Forward10Sharp.default; + } +}); +Object.defineProperty(exports, "Forward10TwoTone", { + enumerable: true, + get: function () { + return _Forward10TwoTone.default; + } +}); +Object.defineProperty(exports, "Forward30", { + enumerable: true, + get: function () { + return _Forward3.default; + } +}); +Object.defineProperty(exports, "Forward30Outlined", { + enumerable: true, + get: function () { + return _Forward30Outlined.default; + } +}); +Object.defineProperty(exports, "Forward30Rounded", { + enumerable: true, + get: function () { + return _Forward30Rounded.default; + } +}); +Object.defineProperty(exports, "Forward30Sharp", { + enumerable: true, + get: function () { + return _Forward30Sharp.default; + } +}); +Object.defineProperty(exports, "Forward30TwoTone", { + enumerable: true, + get: function () { + return _Forward30TwoTone.default; + } +}); +Object.defineProperty(exports, "Forward5", { + enumerable: true, + get: function () { + return _Forward4.default; + } +}); +Object.defineProperty(exports, "Forward5Outlined", { + enumerable: true, + get: function () { + return _Forward5Outlined.default; + } +}); +Object.defineProperty(exports, "Forward5Rounded", { + enumerable: true, + get: function () { + return _Forward5Rounded.default; + } +}); +Object.defineProperty(exports, "Forward5Sharp", { + enumerable: true, + get: function () { + return _Forward5Sharp.default; + } +}); +Object.defineProperty(exports, "Forward5TwoTone", { + enumerable: true, + get: function () { + return _Forward5TwoTone.default; + } +}); +Object.defineProperty(exports, "ForwardOutlined", { + enumerable: true, + get: function () { + return _ForwardOutlined.default; + } +}); +Object.defineProperty(exports, "ForwardRounded", { + enumerable: true, + get: function () { + return _ForwardRounded.default; + } +}); +Object.defineProperty(exports, "ForwardSharp", { + enumerable: true, + get: function () { + return _ForwardSharp.default; + } +}); +Object.defineProperty(exports, "ForwardToInbox", { + enumerable: true, + get: function () { + return _ForwardToInbox.default; + } +}); +Object.defineProperty(exports, "ForwardToInboxOutlined", { + enumerable: true, + get: function () { + return _ForwardToInboxOutlined.default; + } +}); +Object.defineProperty(exports, "ForwardToInboxRounded", { + enumerable: true, + get: function () { + return _ForwardToInboxRounded.default; + } +}); +Object.defineProperty(exports, "ForwardToInboxSharp", { + enumerable: true, + get: function () { + return _ForwardToInboxSharp.default; + } +}); +Object.defineProperty(exports, "ForwardToInboxTwoTone", { + enumerable: true, + get: function () { + return _ForwardToInboxTwoTone.default; + } +}); +Object.defineProperty(exports, "ForwardTwoTone", { + enumerable: true, + get: function () { + return _ForwardTwoTone.default; + } +}); +Object.defineProperty(exports, "Foundation", { + enumerable: true, + get: function () { + return _Foundation.default; + } +}); +Object.defineProperty(exports, "FoundationOutlined", { + enumerable: true, + get: function () { + return _FoundationOutlined.default; + } +}); +Object.defineProperty(exports, "FoundationRounded", { + enumerable: true, + get: function () { + return _FoundationRounded.default; + } +}); +Object.defineProperty(exports, "FoundationSharp", { + enumerable: true, + get: function () { + return _FoundationSharp.default; + } +}); +Object.defineProperty(exports, "FoundationTwoTone", { + enumerable: true, + get: function () { + return _FoundationTwoTone.default; + } +}); +Object.defineProperty(exports, "FourGMobiledata", { + enumerable: true, + get: function () { + return _FourGMobiledata.default; + } +}); +Object.defineProperty(exports, "FourGMobiledataOutlined", { + enumerable: true, + get: function () { + return _FourGMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "FourGMobiledataRounded", { + enumerable: true, + get: function () { + return _FourGMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "FourGMobiledataSharp", { + enumerable: true, + get: function () { + return _FourGMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "FourGMobiledataTwoTone", { + enumerable: true, + get: function () { + return _FourGMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "FourGPlusMobiledata", { + enumerable: true, + get: function () { + return _FourGPlusMobiledata.default; + } +}); +Object.defineProperty(exports, "FourGPlusMobiledataOutlined", { + enumerable: true, + get: function () { + return _FourGPlusMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "FourGPlusMobiledataRounded", { + enumerable: true, + get: function () { + return _FourGPlusMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "FourGPlusMobiledataSharp", { + enumerable: true, + get: function () { + return _FourGPlusMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "FourGPlusMobiledataTwoTone", { + enumerable: true, + get: function () { + return _FourGPlusMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "FourK", { + enumerable: true, + get: function () { + return _FourK.default; + } +}); +Object.defineProperty(exports, "FourKOutlined", { + enumerable: true, + get: function () { + return _FourKOutlined.default; + } +}); +Object.defineProperty(exports, "FourKPlus", { + enumerable: true, + get: function () { + return _FourKPlus.default; + } +}); +Object.defineProperty(exports, "FourKPlusOutlined", { + enumerable: true, + get: function () { + return _FourKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "FourKPlusRounded", { + enumerable: true, + get: function () { + return _FourKPlusRounded.default; + } +}); +Object.defineProperty(exports, "FourKPlusSharp", { + enumerable: true, + get: function () { + return _FourKPlusSharp.default; + } +}); +Object.defineProperty(exports, "FourKPlusTwoTone", { + enumerable: true, + get: function () { + return _FourKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "FourKRounded", { + enumerable: true, + get: function () { + return _FourKRounded.default; + } +}); +Object.defineProperty(exports, "FourKSharp", { + enumerable: true, + get: function () { + return _FourKSharp.default; + } +}); +Object.defineProperty(exports, "FourKTwoTone", { + enumerable: true, + get: function () { + return _FourKTwoTone.default; + } +}); +Object.defineProperty(exports, "FourMp", { + enumerable: true, + get: function () { + return _FourMp.default; + } +}); +Object.defineProperty(exports, "FourMpOutlined", { + enumerable: true, + get: function () { + return _FourMpOutlined.default; + } +}); +Object.defineProperty(exports, "FourMpRounded", { + enumerable: true, + get: function () { + return _FourMpRounded.default; + } +}); +Object.defineProperty(exports, "FourMpSharp", { + enumerable: true, + get: function () { + return _FourMpSharp.default; + } +}); +Object.defineProperty(exports, "FourMpTwoTone", { + enumerable: true, + get: function () { + return _FourMpTwoTone.default; + } +}); +Object.defineProperty(exports, "FourteenMp", { + enumerable: true, + get: function () { + return _FourteenMp.default; + } +}); +Object.defineProperty(exports, "FourteenMpOutlined", { + enumerable: true, + get: function () { + return _FourteenMpOutlined.default; + } +}); +Object.defineProperty(exports, "FourteenMpRounded", { + enumerable: true, + get: function () { + return _FourteenMpRounded.default; + } +}); +Object.defineProperty(exports, "FourteenMpSharp", { + enumerable: true, + get: function () { + return _FourteenMpSharp.default; + } +}); +Object.defineProperty(exports, "FourteenMpTwoTone", { + enumerable: true, + get: function () { + return _FourteenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "FreeBreakfast", { + enumerable: true, + get: function () { + return _FreeBreakfast.default; + } +}); +Object.defineProperty(exports, "FreeBreakfastOutlined", { + enumerable: true, + get: function () { + return _FreeBreakfastOutlined.default; + } +}); +Object.defineProperty(exports, "FreeBreakfastRounded", { + enumerable: true, + get: function () { + return _FreeBreakfastRounded.default; + } +}); +Object.defineProperty(exports, "FreeBreakfastSharp", { + enumerable: true, + get: function () { + return _FreeBreakfastSharp.default; + } +}); +Object.defineProperty(exports, "FreeBreakfastTwoTone", { + enumerable: true, + get: function () { + return _FreeBreakfastTwoTone.default; + } +}); +Object.defineProperty(exports, "Fullscreen", { + enumerable: true, + get: function () { + return _Fullscreen.default; + } +}); +Object.defineProperty(exports, "FullscreenExit", { + enumerable: true, + get: function () { + return _FullscreenExit.default; + } +}); +Object.defineProperty(exports, "FullscreenExitOutlined", { + enumerable: true, + get: function () { + return _FullscreenExitOutlined.default; + } +}); +Object.defineProperty(exports, "FullscreenExitRounded", { + enumerable: true, + get: function () { + return _FullscreenExitRounded.default; + } +}); +Object.defineProperty(exports, "FullscreenExitSharp", { + enumerable: true, + get: function () { + return _FullscreenExitSharp.default; + } +}); +Object.defineProperty(exports, "FullscreenExitTwoTone", { + enumerable: true, + get: function () { + return _FullscreenExitTwoTone.default; + } +}); +Object.defineProperty(exports, "FullscreenOutlined", { + enumerable: true, + get: function () { + return _FullscreenOutlined.default; + } +}); +Object.defineProperty(exports, "FullscreenRounded", { + enumerable: true, + get: function () { + return _FullscreenRounded.default; + } +}); +Object.defineProperty(exports, "FullscreenSharp", { + enumerable: true, + get: function () { + return _FullscreenSharp.default; + } +}); +Object.defineProperty(exports, "FullscreenTwoTone", { + enumerable: true, + get: function () { + return _FullscreenTwoTone.default; + } +}); +Object.defineProperty(exports, "Functions", { + enumerable: true, + get: function () { + return _Functions.default; + } +}); +Object.defineProperty(exports, "FunctionsOutlined", { + enumerable: true, + get: function () { + return _FunctionsOutlined.default; + } +}); +Object.defineProperty(exports, "FunctionsRounded", { + enumerable: true, + get: function () { + return _FunctionsRounded.default; + } +}); +Object.defineProperty(exports, "FunctionsSharp", { + enumerable: true, + get: function () { + return _FunctionsSharp.default; + } +}); +Object.defineProperty(exports, "FunctionsTwoTone", { + enumerable: true, + get: function () { + return _FunctionsTwoTone.default; + } +}); +Object.defineProperty(exports, "GMobiledata", { + enumerable: true, + get: function () { + return _GMobiledata.default; + } +}); +Object.defineProperty(exports, "GMobiledataOutlined", { + enumerable: true, + get: function () { + return _GMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "GMobiledataRounded", { + enumerable: true, + get: function () { + return _GMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "GMobiledataSharp", { + enumerable: true, + get: function () { + return _GMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "GMobiledataTwoTone", { + enumerable: true, + get: function () { + return _GMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "GTranslate", { + enumerable: true, + get: function () { + return _GTranslate.default; + } +}); +Object.defineProperty(exports, "GTranslateOutlined", { + enumerable: true, + get: function () { + return _GTranslateOutlined.default; + } +}); +Object.defineProperty(exports, "GTranslateRounded", { + enumerable: true, + get: function () { + return _GTranslateRounded.default; + } +}); +Object.defineProperty(exports, "GTranslateSharp", { + enumerable: true, + get: function () { + return _GTranslateSharp.default; + } +}); +Object.defineProperty(exports, "GTranslateTwoTone", { + enumerable: true, + get: function () { + return _GTranslateTwoTone.default; + } +}); +Object.defineProperty(exports, "Gamepad", { + enumerable: true, + get: function () { + return _Gamepad.default; + } +}); +Object.defineProperty(exports, "GamepadOutlined", { + enumerable: true, + get: function () { + return _GamepadOutlined.default; + } +}); +Object.defineProperty(exports, "GamepadRounded", { + enumerable: true, + get: function () { + return _GamepadRounded.default; + } +}); +Object.defineProperty(exports, "GamepadSharp", { + enumerable: true, + get: function () { + return _GamepadSharp.default; + } +}); +Object.defineProperty(exports, "GamepadTwoTone", { + enumerable: true, + get: function () { + return _GamepadTwoTone.default; + } +}); +Object.defineProperty(exports, "Games", { + enumerable: true, + get: function () { + return _Games.default; + } +}); +Object.defineProperty(exports, "GamesOutlined", { + enumerable: true, + get: function () { + return _GamesOutlined.default; + } +}); +Object.defineProperty(exports, "GamesRounded", { + enumerable: true, + get: function () { + return _GamesRounded.default; + } +}); +Object.defineProperty(exports, "GamesSharp", { + enumerable: true, + get: function () { + return _GamesSharp.default; + } +}); +Object.defineProperty(exports, "GamesTwoTone", { + enumerable: true, + get: function () { + return _GamesTwoTone.default; + } +}); +Object.defineProperty(exports, "Garage", { + enumerable: true, + get: function () { + return _Garage.default; + } +}); +Object.defineProperty(exports, "GarageOutlined", { + enumerable: true, + get: function () { + return _GarageOutlined.default; + } +}); +Object.defineProperty(exports, "GarageRounded", { + enumerable: true, + get: function () { + return _GarageRounded.default; + } +}); +Object.defineProperty(exports, "GarageSharp", { + enumerable: true, + get: function () { + return _GarageSharp.default; + } +}); +Object.defineProperty(exports, "GarageTwoTone", { + enumerable: true, + get: function () { + return _GarageTwoTone.default; + } +}); +Object.defineProperty(exports, "Gavel", { + enumerable: true, + get: function () { + return _Gavel.default; + } +}); +Object.defineProperty(exports, "GavelOutlined", { + enumerable: true, + get: function () { + return _GavelOutlined.default; + } +}); +Object.defineProperty(exports, "GavelRounded", { + enumerable: true, + get: function () { + return _GavelRounded.default; + } +}); +Object.defineProperty(exports, "GavelSharp", { + enumerable: true, + get: function () { + return _GavelSharp.default; + } +}); +Object.defineProperty(exports, "GavelTwoTone", { + enumerable: true, + get: function () { + return _GavelTwoTone.default; + } +}); +Object.defineProperty(exports, "Gesture", { + enumerable: true, + get: function () { + return _Gesture.default; + } +}); +Object.defineProperty(exports, "GestureOutlined", { + enumerable: true, + get: function () { + return _GestureOutlined.default; + } +}); +Object.defineProperty(exports, "GestureRounded", { + enumerable: true, + get: function () { + return _GestureRounded.default; + } +}); +Object.defineProperty(exports, "GestureSharp", { + enumerable: true, + get: function () { + return _GestureSharp.default; + } +}); +Object.defineProperty(exports, "GestureTwoTone", { + enumerable: true, + get: function () { + return _GestureTwoTone.default; + } +}); +Object.defineProperty(exports, "GetApp", { + enumerable: true, + get: function () { + return _GetApp.default; + } +}); +Object.defineProperty(exports, "GetAppOutlined", { + enumerable: true, + get: function () { + return _GetAppOutlined.default; + } +}); +Object.defineProperty(exports, "GetAppRounded", { + enumerable: true, + get: function () { + return _GetAppRounded.default; + } +}); +Object.defineProperty(exports, "GetAppSharp", { + enumerable: true, + get: function () { + return _GetAppSharp.default; + } +}); +Object.defineProperty(exports, "GetAppTwoTone", { + enumerable: true, + get: function () { + return _GetAppTwoTone.default; + } +}); +Object.defineProperty(exports, "Gif", { + enumerable: true, + get: function () { + return _Gif.default; + } +}); +Object.defineProperty(exports, "GifOutlined", { + enumerable: true, + get: function () { + return _GifOutlined.default; + } +}); +Object.defineProperty(exports, "GifRounded", { + enumerable: true, + get: function () { + return _GifRounded.default; + } +}); +Object.defineProperty(exports, "GifSharp", { + enumerable: true, + get: function () { + return _GifSharp.default; + } +}); +Object.defineProperty(exports, "GifTwoTone", { + enumerable: true, + get: function () { + return _GifTwoTone.default; + } +}); +Object.defineProperty(exports, "GitHub", { + enumerable: true, + get: function () { + return _GitHub.default; + } +}); +Object.defineProperty(exports, "Gite", { + enumerable: true, + get: function () { + return _Gite.default; + } +}); +Object.defineProperty(exports, "GiteOutlined", { + enumerable: true, + get: function () { + return _GiteOutlined.default; + } +}); +Object.defineProperty(exports, "GiteRounded", { + enumerable: true, + get: function () { + return _GiteRounded.default; + } +}); +Object.defineProperty(exports, "GiteSharp", { + enumerable: true, + get: function () { + return _GiteSharp.default; + } +}); +Object.defineProperty(exports, "GiteTwoTone", { + enumerable: true, + get: function () { + return _GiteTwoTone.default; + } +}); +Object.defineProperty(exports, "GolfCourse", { + enumerable: true, + get: function () { + return _GolfCourse.default; + } +}); +Object.defineProperty(exports, "GolfCourseOutlined", { + enumerable: true, + get: function () { + return _GolfCourseOutlined.default; + } +}); +Object.defineProperty(exports, "GolfCourseRounded", { + enumerable: true, + get: function () { + return _GolfCourseRounded.default; + } +}); +Object.defineProperty(exports, "GolfCourseSharp", { + enumerable: true, + get: function () { + return _GolfCourseSharp.default; + } +}); +Object.defineProperty(exports, "GolfCourseTwoTone", { + enumerable: true, + get: function () { + return _GolfCourseTwoTone.default; + } +}); +Object.defineProperty(exports, "Google", { + enumerable: true, + get: function () { + return _Google.default; + } +}); +Object.defineProperty(exports, "GppBad", { + enumerable: true, + get: function () { + return _GppBad.default; + } +}); +Object.defineProperty(exports, "GppBadOutlined", { + enumerable: true, + get: function () { + return _GppBadOutlined.default; + } +}); +Object.defineProperty(exports, "GppBadRounded", { + enumerable: true, + get: function () { + return _GppBadRounded.default; + } +}); +Object.defineProperty(exports, "GppBadSharp", { + enumerable: true, + get: function () { + return _GppBadSharp.default; + } +}); +Object.defineProperty(exports, "GppBadTwoTone", { + enumerable: true, + get: function () { + return _GppBadTwoTone.default; + } +}); +Object.defineProperty(exports, "GppGood", { + enumerable: true, + get: function () { + return _GppGood.default; + } +}); +Object.defineProperty(exports, "GppGoodOutlined", { + enumerable: true, + get: function () { + return _GppGoodOutlined.default; + } +}); +Object.defineProperty(exports, "GppGoodRounded", { + enumerable: true, + get: function () { + return _GppGoodRounded.default; + } +}); +Object.defineProperty(exports, "GppGoodSharp", { + enumerable: true, + get: function () { + return _GppGoodSharp.default; + } +}); +Object.defineProperty(exports, "GppGoodTwoTone", { + enumerable: true, + get: function () { + return _GppGoodTwoTone.default; + } +}); +Object.defineProperty(exports, "GppMaybe", { + enumerable: true, + get: function () { + return _GppMaybe.default; + } +}); +Object.defineProperty(exports, "GppMaybeOutlined", { + enumerable: true, + get: function () { + return _GppMaybeOutlined.default; + } +}); +Object.defineProperty(exports, "GppMaybeRounded", { + enumerable: true, + get: function () { + return _GppMaybeRounded.default; + } +}); +Object.defineProperty(exports, "GppMaybeSharp", { + enumerable: true, + get: function () { + return _GppMaybeSharp.default; + } +}); +Object.defineProperty(exports, "GppMaybeTwoTone", { + enumerable: true, + get: function () { + return _GppMaybeTwoTone.default; + } +}); +Object.defineProperty(exports, "GpsFixed", { + enumerable: true, + get: function () { + return _GpsFixed.default; + } +}); +Object.defineProperty(exports, "GpsFixedOutlined", { + enumerable: true, + get: function () { + return _GpsFixedOutlined.default; + } +}); +Object.defineProperty(exports, "GpsFixedRounded", { + enumerable: true, + get: function () { + return _GpsFixedRounded.default; + } +}); +Object.defineProperty(exports, "GpsFixedSharp", { + enumerable: true, + get: function () { + return _GpsFixedSharp.default; + } +}); +Object.defineProperty(exports, "GpsFixedTwoTone", { + enumerable: true, + get: function () { + return _GpsFixedTwoTone.default; + } +}); +Object.defineProperty(exports, "GpsNotFixed", { + enumerable: true, + get: function () { + return _GpsNotFixed.default; + } +}); +Object.defineProperty(exports, "GpsNotFixedOutlined", { + enumerable: true, + get: function () { + return _GpsNotFixedOutlined.default; + } +}); +Object.defineProperty(exports, "GpsNotFixedRounded", { + enumerable: true, + get: function () { + return _GpsNotFixedRounded.default; + } +}); +Object.defineProperty(exports, "GpsNotFixedSharp", { + enumerable: true, + get: function () { + return _GpsNotFixedSharp.default; + } +}); +Object.defineProperty(exports, "GpsNotFixedTwoTone", { + enumerable: true, + get: function () { + return _GpsNotFixedTwoTone.default; + } +}); +Object.defineProperty(exports, "GpsOff", { + enumerable: true, + get: function () { + return _GpsOff.default; + } +}); +Object.defineProperty(exports, "GpsOffOutlined", { + enumerable: true, + get: function () { + return _GpsOffOutlined.default; + } +}); +Object.defineProperty(exports, "GpsOffRounded", { + enumerable: true, + get: function () { + return _GpsOffRounded.default; + } +}); +Object.defineProperty(exports, "GpsOffSharp", { + enumerable: true, + get: function () { + return _GpsOffSharp.default; + } +}); +Object.defineProperty(exports, "GpsOffTwoTone", { + enumerable: true, + get: function () { + return _GpsOffTwoTone.default; + } +}); +Object.defineProperty(exports, "Grade", { + enumerable: true, + get: function () { + return _Grade.default; + } +}); +Object.defineProperty(exports, "GradeOutlined", { + enumerable: true, + get: function () { + return _GradeOutlined.default; + } +}); +Object.defineProperty(exports, "GradeRounded", { + enumerable: true, + get: function () { + return _GradeRounded.default; + } +}); +Object.defineProperty(exports, "GradeSharp", { + enumerable: true, + get: function () { + return _GradeSharp.default; + } +}); +Object.defineProperty(exports, "GradeTwoTone", { + enumerable: true, + get: function () { + return _GradeTwoTone.default; + } +}); +Object.defineProperty(exports, "Gradient", { + enumerable: true, + get: function () { + return _Gradient.default; + } +}); +Object.defineProperty(exports, "GradientOutlined", { + enumerable: true, + get: function () { + return _GradientOutlined.default; + } +}); +Object.defineProperty(exports, "GradientRounded", { + enumerable: true, + get: function () { + return _GradientRounded.default; + } +}); +Object.defineProperty(exports, "GradientSharp", { + enumerable: true, + get: function () { + return _GradientSharp.default; + } +}); +Object.defineProperty(exports, "GradientTwoTone", { + enumerable: true, + get: function () { + return _GradientTwoTone.default; + } +}); +Object.defineProperty(exports, "Grading", { + enumerable: true, + get: function () { + return _Grading.default; + } +}); +Object.defineProperty(exports, "GradingOutlined", { + enumerable: true, + get: function () { + return _GradingOutlined.default; + } +}); +Object.defineProperty(exports, "GradingRounded", { + enumerable: true, + get: function () { + return _GradingRounded.default; + } +}); +Object.defineProperty(exports, "GradingSharp", { + enumerable: true, + get: function () { + return _GradingSharp.default; + } +}); +Object.defineProperty(exports, "GradingTwoTone", { + enumerable: true, + get: function () { + return _GradingTwoTone.default; + } +}); +Object.defineProperty(exports, "Grain", { + enumerable: true, + get: function () { + return _Grain.default; + } +}); +Object.defineProperty(exports, "GrainOutlined", { + enumerable: true, + get: function () { + return _GrainOutlined.default; + } +}); +Object.defineProperty(exports, "GrainRounded", { + enumerable: true, + get: function () { + return _GrainRounded.default; + } +}); +Object.defineProperty(exports, "GrainSharp", { + enumerable: true, + get: function () { + return _GrainSharp.default; + } +}); +Object.defineProperty(exports, "GrainTwoTone", { + enumerable: true, + get: function () { + return _GrainTwoTone.default; + } +}); +Object.defineProperty(exports, "GraphicEq", { + enumerable: true, + get: function () { + return _GraphicEq.default; + } +}); +Object.defineProperty(exports, "GraphicEqOutlined", { + enumerable: true, + get: function () { + return _GraphicEqOutlined.default; + } +}); +Object.defineProperty(exports, "GraphicEqRounded", { + enumerable: true, + get: function () { + return _GraphicEqRounded.default; + } +}); +Object.defineProperty(exports, "GraphicEqSharp", { + enumerable: true, + get: function () { + return _GraphicEqSharp.default; + } +}); +Object.defineProperty(exports, "GraphicEqTwoTone", { + enumerable: true, + get: function () { + return _GraphicEqTwoTone.default; + } +}); +Object.defineProperty(exports, "Grass", { + enumerable: true, + get: function () { + return _Grass.default; + } +}); +Object.defineProperty(exports, "GrassOutlined", { + enumerable: true, + get: function () { + return _GrassOutlined.default; + } +}); +Object.defineProperty(exports, "GrassRounded", { + enumerable: true, + get: function () { + return _GrassRounded.default; + } +}); +Object.defineProperty(exports, "GrassSharp", { + enumerable: true, + get: function () { + return _GrassSharp.default; + } +}); +Object.defineProperty(exports, "GrassTwoTone", { + enumerable: true, + get: function () { + return _GrassTwoTone.default; + } +}); +Object.defineProperty(exports, "Grid3x3", { + enumerable: true, + get: function () { + return _Grid3x.default; + } +}); +Object.defineProperty(exports, "Grid3x3Outlined", { + enumerable: true, + get: function () { + return _Grid3x3Outlined.default; + } +}); +Object.defineProperty(exports, "Grid3x3Rounded", { + enumerable: true, + get: function () { + return _Grid3x3Rounded.default; + } +}); +Object.defineProperty(exports, "Grid3x3Sharp", { + enumerable: true, + get: function () { + return _Grid3x3Sharp.default; + } +}); +Object.defineProperty(exports, "Grid3x3TwoTone", { + enumerable: true, + get: function () { + return _Grid3x3TwoTone.default; + } +}); +Object.defineProperty(exports, "Grid4x4", { + enumerable: true, + get: function () { + return _Grid4x.default; + } +}); +Object.defineProperty(exports, "Grid4x4Outlined", { + enumerable: true, + get: function () { + return _Grid4x4Outlined.default; + } +}); +Object.defineProperty(exports, "Grid4x4Rounded", { + enumerable: true, + get: function () { + return _Grid4x4Rounded.default; + } +}); +Object.defineProperty(exports, "Grid4x4Sharp", { + enumerable: true, + get: function () { + return _Grid4x4Sharp.default; + } +}); +Object.defineProperty(exports, "Grid4x4TwoTone", { + enumerable: true, + get: function () { + return _Grid4x4TwoTone.default; + } +}); +Object.defineProperty(exports, "GridGoldenratio", { + enumerable: true, + get: function () { + return _GridGoldenratio.default; + } +}); +Object.defineProperty(exports, "GridGoldenratioOutlined", { + enumerable: true, + get: function () { + return _GridGoldenratioOutlined.default; + } +}); +Object.defineProperty(exports, "GridGoldenratioRounded", { + enumerable: true, + get: function () { + return _GridGoldenratioRounded.default; + } +}); +Object.defineProperty(exports, "GridGoldenratioSharp", { + enumerable: true, + get: function () { + return _GridGoldenratioSharp.default; + } +}); +Object.defineProperty(exports, "GridGoldenratioTwoTone", { + enumerable: true, + get: function () { + return _GridGoldenratioTwoTone.default; + } +}); +Object.defineProperty(exports, "GridOff", { + enumerable: true, + get: function () { + return _GridOff.default; + } +}); +Object.defineProperty(exports, "GridOffOutlined", { + enumerable: true, + get: function () { + return _GridOffOutlined.default; + } +}); +Object.defineProperty(exports, "GridOffRounded", { + enumerable: true, + get: function () { + return _GridOffRounded.default; + } +}); +Object.defineProperty(exports, "GridOffSharp", { + enumerable: true, + get: function () { + return _GridOffSharp.default; + } +}); +Object.defineProperty(exports, "GridOffTwoTone", { + enumerable: true, + get: function () { + return _GridOffTwoTone.default; + } +}); +Object.defineProperty(exports, "GridOn", { + enumerable: true, + get: function () { + return _GridOn.default; + } +}); +Object.defineProperty(exports, "GridOnOutlined", { + enumerable: true, + get: function () { + return _GridOnOutlined.default; + } +}); +Object.defineProperty(exports, "GridOnRounded", { + enumerable: true, + get: function () { + return _GridOnRounded.default; + } +}); +Object.defineProperty(exports, "GridOnSharp", { + enumerable: true, + get: function () { + return _GridOnSharp.default; + } +}); +Object.defineProperty(exports, "GridOnTwoTone", { + enumerable: true, + get: function () { + return _GridOnTwoTone.default; + } +}); +Object.defineProperty(exports, "GridView", { + enumerable: true, + get: function () { + return _GridView.default; + } +}); +Object.defineProperty(exports, "GridViewOutlined", { + enumerable: true, + get: function () { + return _GridViewOutlined.default; + } +}); +Object.defineProperty(exports, "GridViewRounded", { + enumerable: true, + get: function () { + return _GridViewRounded.default; + } +}); +Object.defineProperty(exports, "GridViewSharp", { + enumerable: true, + get: function () { + return _GridViewSharp.default; + } +}); +Object.defineProperty(exports, "GridViewTwoTone", { + enumerable: true, + get: function () { + return _GridViewTwoTone.default; + } +}); +Object.defineProperty(exports, "Group", { + enumerable: true, + get: function () { + return _Group.default; + } +}); +Object.defineProperty(exports, "GroupAdd", { + enumerable: true, + get: function () { + return _GroupAdd.default; + } +}); +Object.defineProperty(exports, "GroupAddOutlined", { + enumerable: true, + get: function () { + return _GroupAddOutlined.default; + } +}); +Object.defineProperty(exports, "GroupAddRounded", { + enumerable: true, + get: function () { + return _GroupAddRounded.default; + } +}); +Object.defineProperty(exports, "GroupAddSharp", { + enumerable: true, + get: function () { + return _GroupAddSharp.default; + } +}); +Object.defineProperty(exports, "GroupAddTwoTone", { + enumerable: true, + get: function () { + return _GroupAddTwoTone.default; + } +}); +Object.defineProperty(exports, "GroupOutlined", { + enumerable: true, + get: function () { + return _GroupOutlined.default; + } +}); +Object.defineProperty(exports, "GroupRounded", { + enumerable: true, + get: function () { + return _GroupRounded.default; + } +}); +Object.defineProperty(exports, "GroupSharp", { + enumerable: true, + get: function () { + return _GroupSharp.default; + } +}); +Object.defineProperty(exports, "GroupTwoTone", { + enumerable: true, + get: function () { + return _GroupTwoTone.default; + } +}); +Object.defineProperty(exports, "GroupWork", { + enumerable: true, + get: function () { + return _GroupWork.default; + } +}); +Object.defineProperty(exports, "GroupWorkOutlined", { + enumerable: true, + get: function () { + return _GroupWorkOutlined.default; + } +}); +Object.defineProperty(exports, "GroupWorkRounded", { + enumerable: true, + get: function () { + return _GroupWorkRounded.default; + } +}); +Object.defineProperty(exports, "GroupWorkSharp", { + enumerable: true, + get: function () { + return _GroupWorkSharp.default; + } +}); +Object.defineProperty(exports, "GroupWorkTwoTone", { + enumerable: true, + get: function () { + return _GroupWorkTwoTone.default; + } +}); +Object.defineProperty(exports, "Groups", { + enumerable: true, + get: function () { + return _Groups.default; + } +}); +Object.defineProperty(exports, "GroupsOutlined", { + enumerable: true, + get: function () { + return _GroupsOutlined.default; + } +}); +Object.defineProperty(exports, "GroupsRounded", { + enumerable: true, + get: function () { + return _GroupsRounded.default; + } +}); +Object.defineProperty(exports, "GroupsSharp", { + enumerable: true, + get: function () { + return _GroupsSharp.default; + } +}); +Object.defineProperty(exports, "GroupsTwoTone", { + enumerable: true, + get: function () { + return _GroupsTwoTone.default; + } +}); +Object.defineProperty(exports, "HMobiledata", { + enumerable: true, + get: function () { + return _HMobiledata.default; + } +}); +Object.defineProperty(exports, "HMobiledataOutlined", { + enumerable: true, + get: function () { + return _HMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "HMobiledataRounded", { + enumerable: true, + get: function () { + return _HMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "HMobiledataSharp", { + enumerable: true, + get: function () { + return _HMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "HMobiledataTwoTone", { + enumerable: true, + get: function () { + return _HMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "HPlusMobiledata", { + enumerable: true, + get: function () { + return _HPlusMobiledata.default; + } +}); +Object.defineProperty(exports, "HPlusMobiledataOutlined", { + enumerable: true, + get: function () { + return _HPlusMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "HPlusMobiledataRounded", { + enumerable: true, + get: function () { + return _HPlusMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "HPlusMobiledataSharp", { + enumerable: true, + get: function () { + return _HPlusMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "HPlusMobiledataTwoTone", { + enumerable: true, + get: function () { + return _HPlusMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "Hail", { + enumerable: true, + get: function () { + return _Hail.default; + } +}); +Object.defineProperty(exports, "HailOutlined", { + enumerable: true, + get: function () { + return _HailOutlined.default; + } +}); +Object.defineProperty(exports, "HailRounded", { + enumerable: true, + get: function () { + return _HailRounded.default; + } +}); +Object.defineProperty(exports, "HailSharp", { + enumerable: true, + get: function () { + return _HailSharp.default; + } +}); +Object.defineProperty(exports, "HailTwoTone", { + enumerable: true, + get: function () { + return _HailTwoTone.default; + } +}); +Object.defineProperty(exports, "Handyman", { + enumerable: true, + get: function () { + return _Handyman.default; + } +}); +Object.defineProperty(exports, "HandymanOutlined", { + enumerable: true, + get: function () { + return _HandymanOutlined.default; + } +}); +Object.defineProperty(exports, "HandymanRounded", { + enumerable: true, + get: function () { + return _HandymanRounded.default; + } +}); +Object.defineProperty(exports, "HandymanSharp", { + enumerable: true, + get: function () { + return _HandymanSharp.default; + } +}); +Object.defineProperty(exports, "HandymanTwoTone", { + enumerable: true, + get: function () { + return _HandymanTwoTone.default; + } +}); +Object.defineProperty(exports, "Hardware", { + enumerable: true, + get: function () { + return _Hardware.default; + } +}); +Object.defineProperty(exports, "HardwareOutlined", { + enumerable: true, + get: function () { + return _HardwareOutlined.default; + } +}); +Object.defineProperty(exports, "HardwareRounded", { + enumerable: true, + get: function () { + return _HardwareRounded.default; + } +}); +Object.defineProperty(exports, "HardwareSharp", { + enumerable: true, + get: function () { + return _HardwareSharp.default; + } +}); +Object.defineProperty(exports, "HardwareTwoTone", { + enumerable: true, + get: function () { + return _HardwareTwoTone.default; + } +}); +Object.defineProperty(exports, "Hd", { + enumerable: true, + get: function () { + return _Hd.default; + } +}); +Object.defineProperty(exports, "HdOutlined", { + enumerable: true, + get: function () { + return _HdOutlined.default; + } +}); +Object.defineProperty(exports, "HdRounded", { + enumerable: true, + get: function () { + return _HdRounded.default; + } +}); +Object.defineProperty(exports, "HdSharp", { + enumerable: true, + get: function () { + return _HdSharp.default; + } +}); +Object.defineProperty(exports, "HdTwoTone", { + enumerable: true, + get: function () { + return _HdTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrAuto", { + enumerable: true, + get: function () { + return _HdrAuto.default; + } +}); +Object.defineProperty(exports, "HdrAutoOutlined", { + enumerable: true, + get: function () { + return _HdrAutoOutlined.default; + } +}); +Object.defineProperty(exports, "HdrAutoRounded", { + enumerable: true, + get: function () { + return _HdrAutoRounded.default; + } +}); +Object.defineProperty(exports, "HdrAutoSelect", { + enumerable: true, + get: function () { + return _HdrAutoSelect.default; + } +}); +Object.defineProperty(exports, "HdrAutoSelectOutlined", { + enumerable: true, + get: function () { + return _HdrAutoSelectOutlined.default; + } +}); +Object.defineProperty(exports, "HdrAutoSelectRounded", { + enumerable: true, + get: function () { + return _HdrAutoSelectRounded.default; + } +}); +Object.defineProperty(exports, "HdrAutoSelectSharp", { + enumerable: true, + get: function () { + return _HdrAutoSelectSharp.default; + } +}); +Object.defineProperty(exports, "HdrAutoSelectTwoTone", { + enumerable: true, + get: function () { + return _HdrAutoSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrAutoSharp", { + enumerable: true, + get: function () { + return _HdrAutoSharp.default; + } +}); +Object.defineProperty(exports, "HdrAutoTwoTone", { + enumerable: true, + get: function () { + return _HdrAutoTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrEnhancedSelect", { + enumerable: true, + get: function () { + return _HdrEnhancedSelect.default; + } +}); +Object.defineProperty(exports, "HdrEnhancedSelectOutlined", { + enumerable: true, + get: function () { + return _HdrEnhancedSelectOutlined.default; + } +}); +Object.defineProperty(exports, "HdrEnhancedSelectRounded", { + enumerable: true, + get: function () { + return _HdrEnhancedSelectRounded.default; + } +}); +Object.defineProperty(exports, "HdrEnhancedSelectSharp", { + enumerable: true, + get: function () { + return _HdrEnhancedSelectSharp.default; + } +}); +Object.defineProperty(exports, "HdrEnhancedSelectTwoTone", { + enumerable: true, + get: function () { + return _HdrEnhancedSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrOff", { + enumerable: true, + get: function () { + return _HdrOff.default; + } +}); +Object.defineProperty(exports, "HdrOffOutlined", { + enumerable: true, + get: function () { + return _HdrOffOutlined.default; + } +}); +Object.defineProperty(exports, "HdrOffRounded", { + enumerable: true, + get: function () { + return _HdrOffRounded.default; + } +}); +Object.defineProperty(exports, "HdrOffSelect", { + enumerable: true, + get: function () { + return _HdrOffSelect.default; + } +}); +Object.defineProperty(exports, "HdrOffSelectOutlined", { + enumerable: true, + get: function () { + return _HdrOffSelectOutlined.default; + } +}); +Object.defineProperty(exports, "HdrOffSelectRounded", { + enumerable: true, + get: function () { + return _HdrOffSelectRounded.default; + } +}); +Object.defineProperty(exports, "HdrOffSelectSharp", { + enumerable: true, + get: function () { + return _HdrOffSelectSharp.default; + } +}); +Object.defineProperty(exports, "HdrOffSelectTwoTone", { + enumerable: true, + get: function () { + return _HdrOffSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrOffSharp", { + enumerable: true, + get: function () { + return _HdrOffSharp.default; + } +}); +Object.defineProperty(exports, "HdrOffTwoTone", { + enumerable: true, + get: function () { + return _HdrOffTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrOn", { + enumerable: true, + get: function () { + return _HdrOn.default; + } +}); +Object.defineProperty(exports, "HdrOnOutlined", { + enumerable: true, + get: function () { + return _HdrOnOutlined.default; + } +}); +Object.defineProperty(exports, "HdrOnRounded", { + enumerable: true, + get: function () { + return _HdrOnRounded.default; + } +}); +Object.defineProperty(exports, "HdrOnSelect", { + enumerable: true, + get: function () { + return _HdrOnSelect.default; + } +}); +Object.defineProperty(exports, "HdrOnSelectOutlined", { + enumerable: true, + get: function () { + return _HdrOnSelectOutlined.default; + } +}); +Object.defineProperty(exports, "HdrOnSelectRounded", { + enumerable: true, + get: function () { + return _HdrOnSelectRounded.default; + } +}); +Object.defineProperty(exports, "HdrOnSelectSharp", { + enumerable: true, + get: function () { + return _HdrOnSelectSharp.default; + } +}); +Object.defineProperty(exports, "HdrOnSelectTwoTone", { + enumerable: true, + get: function () { + return _HdrOnSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrOnSharp", { + enumerable: true, + get: function () { + return _HdrOnSharp.default; + } +}); +Object.defineProperty(exports, "HdrOnTwoTone", { + enumerable: true, + get: function () { + return _HdrOnTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrPlus", { + enumerable: true, + get: function () { + return _HdrPlus.default; + } +}); +Object.defineProperty(exports, "HdrPlusOutlined", { + enumerable: true, + get: function () { + return _HdrPlusOutlined.default; + } +}); +Object.defineProperty(exports, "HdrPlusRounded", { + enumerable: true, + get: function () { + return _HdrPlusRounded.default; + } +}); +Object.defineProperty(exports, "HdrPlusSharp", { + enumerable: true, + get: function () { + return _HdrPlusSharp.default; + } +}); +Object.defineProperty(exports, "HdrPlusTwoTone", { + enumerable: true, + get: function () { + return _HdrPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrStrong", { + enumerable: true, + get: function () { + return _HdrStrong.default; + } +}); +Object.defineProperty(exports, "HdrStrongOutlined", { + enumerable: true, + get: function () { + return _HdrStrongOutlined.default; + } +}); +Object.defineProperty(exports, "HdrStrongRounded", { + enumerable: true, + get: function () { + return _HdrStrongRounded.default; + } +}); +Object.defineProperty(exports, "HdrStrongSharp", { + enumerable: true, + get: function () { + return _HdrStrongSharp.default; + } +}); +Object.defineProperty(exports, "HdrStrongTwoTone", { + enumerable: true, + get: function () { + return _HdrStrongTwoTone.default; + } +}); +Object.defineProperty(exports, "HdrWeak", { + enumerable: true, + get: function () { + return _HdrWeak.default; + } +}); +Object.defineProperty(exports, "HdrWeakOutlined", { + enumerable: true, + get: function () { + return _HdrWeakOutlined.default; + } +}); +Object.defineProperty(exports, "HdrWeakRounded", { + enumerable: true, + get: function () { + return _HdrWeakRounded.default; + } +}); +Object.defineProperty(exports, "HdrWeakSharp", { + enumerable: true, + get: function () { + return _HdrWeakSharp.default; + } +}); +Object.defineProperty(exports, "HdrWeakTwoTone", { + enumerable: true, + get: function () { + return _HdrWeakTwoTone.default; + } +}); +Object.defineProperty(exports, "Headphones", { + enumerable: true, + get: function () { + return _Headphones.default; + } +}); +Object.defineProperty(exports, "HeadphonesBattery", { + enumerable: true, + get: function () { + return _HeadphonesBattery.default; + } +}); +Object.defineProperty(exports, "HeadphonesBatteryOutlined", { + enumerable: true, + get: function () { + return _HeadphonesBatteryOutlined.default; + } +}); +Object.defineProperty(exports, "HeadphonesBatteryRounded", { + enumerable: true, + get: function () { + return _HeadphonesBatteryRounded.default; + } +}); +Object.defineProperty(exports, "HeadphonesBatterySharp", { + enumerable: true, + get: function () { + return _HeadphonesBatterySharp.default; + } +}); +Object.defineProperty(exports, "HeadphonesBatteryTwoTone", { + enumerable: true, + get: function () { + return _HeadphonesBatteryTwoTone.default; + } +}); +Object.defineProperty(exports, "HeadphonesOutlined", { + enumerable: true, + get: function () { + return _HeadphonesOutlined.default; + } +}); +Object.defineProperty(exports, "HeadphonesRounded", { + enumerable: true, + get: function () { + return _HeadphonesRounded.default; + } +}); +Object.defineProperty(exports, "HeadphonesSharp", { + enumerable: true, + get: function () { + return _HeadphonesSharp.default; + } +}); +Object.defineProperty(exports, "HeadphonesTwoTone", { + enumerable: true, + get: function () { + return _HeadphonesTwoTone.default; + } +}); +Object.defineProperty(exports, "Headset", { + enumerable: true, + get: function () { + return _Headset.default; + } +}); +Object.defineProperty(exports, "HeadsetMic", { + enumerable: true, + get: function () { + return _HeadsetMic.default; + } +}); +Object.defineProperty(exports, "HeadsetMicOutlined", { + enumerable: true, + get: function () { + return _HeadsetMicOutlined.default; + } +}); +Object.defineProperty(exports, "HeadsetMicRounded", { + enumerable: true, + get: function () { + return _HeadsetMicRounded.default; + } +}); +Object.defineProperty(exports, "HeadsetMicSharp", { + enumerable: true, + get: function () { + return _HeadsetMicSharp.default; + } +}); +Object.defineProperty(exports, "HeadsetMicTwoTone", { + enumerable: true, + get: function () { + return _HeadsetMicTwoTone.default; + } +}); +Object.defineProperty(exports, "HeadsetOff", { + enumerable: true, + get: function () { + return _HeadsetOff.default; + } +}); +Object.defineProperty(exports, "HeadsetOffOutlined", { + enumerable: true, + get: function () { + return _HeadsetOffOutlined.default; + } +}); +Object.defineProperty(exports, "HeadsetOffRounded", { + enumerable: true, + get: function () { + return _HeadsetOffRounded.default; + } +}); +Object.defineProperty(exports, "HeadsetOffSharp", { + enumerable: true, + get: function () { + return _HeadsetOffSharp.default; + } +}); +Object.defineProperty(exports, "HeadsetOffTwoTone", { + enumerable: true, + get: function () { + return _HeadsetOffTwoTone.default; + } +}); +Object.defineProperty(exports, "HeadsetOutlined", { + enumerable: true, + get: function () { + return _HeadsetOutlined.default; + } +}); +Object.defineProperty(exports, "HeadsetRounded", { + enumerable: true, + get: function () { + return _HeadsetRounded.default; + } +}); +Object.defineProperty(exports, "HeadsetSharp", { + enumerable: true, + get: function () { + return _HeadsetSharp.default; + } +}); +Object.defineProperty(exports, "HeadsetTwoTone", { + enumerable: true, + get: function () { + return _HeadsetTwoTone.default; + } +}); +Object.defineProperty(exports, "Healing", { + enumerable: true, + get: function () { + return _Healing.default; + } +}); +Object.defineProperty(exports, "HealingOutlined", { + enumerable: true, + get: function () { + return _HealingOutlined.default; + } +}); +Object.defineProperty(exports, "HealingRounded", { + enumerable: true, + get: function () { + return _HealingRounded.default; + } +}); +Object.defineProperty(exports, "HealingSharp", { + enumerable: true, + get: function () { + return _HealingSharp.default; + } +}); +Object.defineProperty(exports, "HealingTwoTone", { + enumerable: true, + get: function () { + return _HealingTwoTone.default; + } +}); +Object.defineProperty(exports, "HealthAndSafety", { + enumerable: true, + get: function () { + return _HealthAndSafety.default; + } +}); +Object.defineProperty(exports, "HealthAndSafetyOutlined", { + enumerable: true, + get: function () { + return _HealthAndSafetyOutlined.default; + } +}); +Object.defineProperty(exports, "HealthAndSafetyRounded", { + enumerable: true, + get: function () { + return _HealthAndSafetyRounded.default; + } +}); +Object.defineProperty(exports, "HealthAndSafetySharp", { + enumerable: true, + get: function () { + return _HealthAndSafetySharp.default; + } +}); +Object.defineProperty(exports, "HealthAndSafetyTwoTone", { + enumerable: true, + get: function () { + return _HealthAndSafetyTwoTone.default; + } +}); +Object.defineProperty(exports, "Hearing", { + enumerable: true, + get: function () { + return _Hearing.default; + } +}); +Object.defineProperty(exports, "HearingDisabled", { + enumerable: true, + get: function () { + return _HearingDisabled.default; + } +}); +Object.defineProperty(exports, "HearingDisabledOutlined", { + enumerable: true, + get: function () { + return _HearingDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "HearingDisabledRounded", { + enumerable: true, + get: function () { + return _HearingDisabledRounded.default; + } +}); +Object.defineProperty(exports, "HearingDisabledSharp", { + enumerable: true, + get: function () { + return _HearingDisabledSharp.default; + } +}); +Object.defineProperty(exports, "HearingDisabledTwoTone", { + enumerable: true, + get: function () { + return _HearingDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "HearingOutlined", { + enumerable: true, + get: function () { + return _HearingOutlined.default; + } +}); +Object.defineProperty(exports, "HearingRounded", { + enumerable: true, + get: function () { + return _HearingRounded.default; + } +}); +Object.defineProperty(exports, "HearingSharp", { + enumerable: true, + get: function () { + return _HearingSharp.default; + } +}); +Object.defineProperty(exports, "HearingTwoTone", { + enumerable: true, + get: function () { + return _HearingTwoTone.default; + } +}); +Object.defineProperty(exports, "Height", { + enumerable: true, + get: function () { + return _Height.default; + } +}); +Object.defineProperty(exports, "HeightOutlined", { + enumerable: true, + get: function () { + return _HeightOutlined.default; + } +}); +Object.defineProperty(exports, "HeightRounded", { + enumerable: true, + get: function () { + return _HeightRounded.default; + } +}); +Object.defineProperty(exports, "HeightSharp", { + enumerable: true, + get: function () { + return _HeightSharp.default; + } +}); +Object.defineProperty(exports, "HeightTwoTone", { + enumerable: true, + get: function () { + return _HeightTwoTone.default; + } +}); +Object.defineProperty(exports, "Help", { + enumerable: true, + get: function () { + return _Help.default; + } +}); +Object.defineProperty(exports, "HelpCenter", { + enumerable: true, + get: function () { + return _HelpCenter.default; + } +}); +Object.defineProperty(exports, "HelpCenterOutlined", { + enumerable: true, + get: function () { + return _HelpCenterOutlined.default; + } +}); +Object.defineProperty(exports, "HelpCenterRounded", { + enumerable: true, + get: function () { + return _HelpCenterRounded.default; + } +}); +Object.defineProperty(exports, "HelpCenterSharp", { + enumerable: true, + get: function () { + return _HelpCenterSharp.default; + } +}); +Object.defineProperty(exports, "HelpCenterTwoTone", { + enumerable: true, + get: function () { + return _HelpCenterTwoTone.default; + } +}); +Object.defineProperty(exports, "HelpOutline", { + enumerable: true, + get: function () { + return _HelpOutline.default; + } +}); +Object.defineProperty(exports, "HelpOutlineOutlined", { + enumerable: true, + get: function () { + return _HelpOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "HelpOutlineRounded", { + enumerable: true, + get: function () { + return _HelpOutlineRounded.default; + } +}); +Object.defineProperty(exports, "HelpOutlineSharp", { + enumerable: true, + get: function () { + return _HelpOutlineSharp.default; + } +}); +Object.defineProperty(exports, "HelpOutlineTwoTone", { + enumerable: true, + get: function () { + return _HelpOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "HelpOutlined", { + enumerable: true, + get: function () { + return _HelpOutlined.default; + } +}); +Object.defineProperty(exports, "HelpRounded", { + enumerable: true, + get: function () { + return _HelpRounded.default; + } +}); +Object.defineProperty(exports, "HelpSharp", { + enumerable: true, + get: function () { + return _HelpSharp.default; + } +}); +Object.defineProperty(exports, "HelpTwoTone", { + enumerable: true, + get: function () { + return _HelpTwoTone.default; + } +}); +Object.defineProperty(exports, "Hevc", { + enumerable: true, + get: function () { + return _Hevc.default; + } +}); +Object.defineProperty(exports, "HevcOutlined", { + enumerable: true, + get: function () { + return _HevcOutlined.default; + } +}); +Object.defineProperty(exports, "HevcRounded", { + enumerable: true, + get: function () { + return _HevcRounded.default; + } +}); +Object.defineProperty(exports, "HevcSharp", { + enumerable: true, + get: function () { + return _HevcSharp.default; + } +}); +Object.defineProperty(exports, "HevcTwoTone", { + enumerable: true, + get: function () { + return _HevcTwoTone.default; + } +}); +Object.defineProperty(exports, "HideImage", { + enumerable: true, + get: function () { + return _HideImage.default; + } +}); +Object.defineProperty(exports, "HideImageOutlined", { + enumerable: true, + get: function () { + return _HideImageOutlined.default; + } +}); +Object.defineProperty(exports, "HideImageRounded", { + enumerable: true, + get: function () { + return _HideImageRounded.default; + } +}); +Object.defineProperty(exports, "HideImageSharp", { + enumerable: true, + get: function () { + return _HideImageSharp.default; + } +}); +Object.defineProperty(exports, "HideImageTwoTone", { + enumerable: true, + get: function () { + return _HideImageTwoTone.default; + } +}); +Object.defineProperty(exports, "HideSource", { + enumerable: true, + get: function () { + return _HideSource.default; + } +}); +Object.defineProperty(exports, "HideSourceOutlined", { + enumerable: true, + get: function () { + return _HideSourceOutlined.default; + } +}); +Object.defineProperty(exports, "HideSourceRounded", { + enumerable: true, + get: function () { + return _HideSourceRounded.default; + } +}); +Object.defineProperty(exports, "HideSourceSharp", { + enumerable: true, + get: function () { + return _HideSourceSharp.default; + } +}); +Object.defineProperty(exports, "HideSourceTwoTone", { + enumerable: true, + get: function () { + return _HideSourceTwoTone.default; + } +}); +Object.defineProperty(exports, "HighQuality", { + enumerable: true, + get: function () { + return _HighQuality.default; + } +}); +Object.defineProperty(exports, "HighQualityOutlined", { + enumerable: true, + get: function () { + return _HighQualityOutlined.default; + } +}); +Object.defineProperty(exports, "HighQualityRounded", { + enumerable: true, + get: function () { + return _HighQualityRounded.default; + } +}); +Object.defineProperty(exports, "HighQualitySharp", { + enumerable: true, + get: function () { + return _HighQualitySharp.default; + } +}); +Object.defineProperty(exports, "HighQualityTwoTone", { + enumerable: true, + get: function () { + return _HighQualityTwoTone.default; + } +}); +Object.defineProperty(exports, "Highlight", { + enumerable: true, + get: function () { + return _Highlight.default; + } +}); +Object.defineProperty(exports, "HighlightAlt", { + enumerable: true, + get: function () { + return _HighlightAlt.default; + } +}); +Object.defineProperty(exports, "HighlightAltOutlined", { + enumerable: true, + get: function () { + return _HighlightAltOutlined.default; + } +}); +Object.defineProperty(exports, "HighlightAltRounded", { + enumerable: true, + get: function () { + return _HighlightAltRounded.default; + } +}); +Object.defineProperty(exports, "HighlightAltSharp", { + enumerable: true, + get: function () { + return _HighlightAltSharp.default; + } +}); +Object.defineProperty(exports, "HighlightAltTwoTone", { + enumerable: true, + get: function () { + return _HighlightAltTwoTone.default; + } +}); +Object.defineProperty(exports, "HighlightOff", { + enumerable: true, + get: function () { + return _HighlightOff.default; + } +}); +Object.defineProperty(exports, "HighlightOffOutlined", { + enumerable: true, + get: function () { + return _HighlightOffOutlined.default; + } +}); +Object.defineProperty(exports, "HighlightOffRounded", { + enumerable: true, + get: function () { + return _HighlightOffRounded.default; + } +}); +Object.defineProperty(exports, "HighlightOffSharp", { + enumerable: true, + get: function () { + return _HighlightOffSharp.default; + } +}); +Object.defineProperty(exports, "HighlightOffTwoTone", { + enumerable: true, + get: function () { + return _HighlightOffTwoTone.default; + } +}); +Object.defineProperty(exports, "HighlightOutlined", { + enumerable: true, + get: function () { + return _HighlightOutlined.default; + } +}); +Object.defineProperty(exports, "HighlightRounded", { + enumerable: true, + get: function () { + return _HighlightRounded.default; + } +}); +Object.defineProperty(exports, "HighlightSharp", { + enumerable: true, + get: function () { + return _HighlightSharp.default; + } +}); +Object.defineProperty(exports, "HighlightTwoTone", { + enumerable: true, + get: function () { + return _HighlightTwoTone.default; + } +}); +Object.defineProperty(exports, "Hiking", { + enumerable: true, + get: function () { + return _Hiking.default; + } +}); +Object.defineProperty(exports, "HikingOutlined", { + enumerable: true, + get: function () { + return _HikingOutlined.default; + } +}); +Object.defineProperty(exports, "HikingRounded", { + enumerable: true, + get: function () { + return _HikingRounded.default; + } +}); +Object.defineProperty(exports, "HikingSharp", { + enumerable: true, + get: function () { + return _HikingSharp.default; + } +}); +Object.defineProperty(exports, "HikingTwoTone", { + enumerable: true, + get: function () { + return _HikingTwoTone.default; + } +}); +Object.defineProperty(exports, "History", { + enumerable: true, + get: function () { + return _History.default; + } +}); +Object.defineProperty(exports, "HistoryEdu", { + enumerable: true, + get: function () { + return _HistoryEdu.default; + } +}); +Object.defineProperty(exports, "HistoryEduOutlined", { + enumerable: true, + get: function () { + return _HistoryEduOutlined.default; + } +}); +Object.defineProperty(exports, "HistoryEduRounded", { + enumerable: true, + get: function () { + return _HistoryEduRounded.default; + } +}); +Object.defineProperty(exports, "HistoryEduSharp", { + enumerable: true, + get: function () { + return _HistoryEduSharp.default; + } +}); +Object.defineProperty(exports, "HistoryEduTwoTone", { + enumerable: true, + get: function () { + return _HistoryEduTwoTone.default; + } +}); +Object.defineProperty(exports, "HistoryOutlined", { + enumerable: true, + get: function () { + return _HistoryOutlined.default; + } +}); +Object.defineProperty(exports, "HistoryRounded", { + enumerable: true, + get: function () { + return _HistoryRounded.default; + } +}); +Object.defineProperty(exports, "HistorySharp", { + enumerable: true, + get: function () { + return _HistorySharp.default; + } +}); +Object.defineProperty(exports, "HistoryToggleOff", { + enumerable: true, + get: function () { + return _HistoryToggleOff.default; + } +}); +Object.defineProperty(exports, "HistoryToggleOffOutlined", { + enumerable: true, + get: function () { + return _HistoryToggleOffOutlined.default; + } +}); +Object.defineProperty(exports, "HistoryToggleOffRounded", { + enumerable: true, + get: function () { + return _HistoryToggleOffRounded.default; + } +}); +Object.defineProperty(exports, "HistoryToggleOffSharp", { + enumerable: true, + get: function () { + return _HistoryToggleOffSharp.default; + } +}); +Object.defineProperty(exports, "HistoryToggleOffTwoTone", { + enumerable: true, + get: function () { + return _HistoryToggleOffTwoTone.default; + } +}); +Object.defineProperty(exports, "HistoryTwoTone", { + enumerable: true, + get: function () { + return _HistoryTwoTone.default; + } +}); +Object.defineProperty(exports, "HolidayVillage", { + enumerable: true, + get: function () { + return _HolidayVillage.default; + } +}); +Object.defineProperty(exports, "HolidayVillageOutlined", { + enumerable: true, + get: function () { + return _HolidayVillageOutlined.default; + } +}); +Object.defineProperty(exports, "HolidayVillageRounded", { + enumerable: true, + get: function () { + return _HolidayVillageRounded.default; + } +}); +Object.defineProperty(exports, "HolidayVillageSharp", { + enumerable: true, + get: function () { + return _HolidayVillageSharp.default; + } +}); +Object.defineProperty(exports, "HolidayVillageTwoTone", { + enumerable: true, + get: function () { + return _HolidayVillageTwoTone.default; + } +}); +Object.defineProperty(exports, "Home", { + enumerable: true, + get: function () { + return _Home.default; + } +}); +Object.defineProperty(exports, "HomeMax", { + enumerable: true, + get: function () { + return _HomeMax.default; + } +}); +Object.defineProperty(exports, "HomeMaxOutlined", { + enumerable: true, + get: function () { + return _HomeMaxOutlined.default; + } +}); +Object.defineProperty(exports, "HomeMaxRounded", { + enumerable: true, + get: function () { + return _HomeMaxRounded.default; + } +}); +Object.defineProperty(exports, "HomeMaxSharp", { + enumerable: true, + get: function () { + return _HomeMaxSharp.default; + } +}); +Object.defineProperty(exports, "HomeMaxTwoTone", { + enumerable: true, + get: function () { + return _HomeMaxTwoTone.default; + } +}); +Object.defineProperty(exports, "HomeMini", { + enumerable: true, + get: function () { + return _HomeMini.default; + } +}); +Object.defineProperty(exports, "HomeMiniOutlined", { + enumerable: true, + get: function () { + return _HomeMiniOutlined.default; + } +}); +Object.defineProperty(exports, "HomeMiniRounded", { + enumerable: true, + get: function () { + return _HomeMiniRounded.default; + } +}); +Object.defineProperty(exports, "HomeMiniSharp", { + enumerable: true, + get: function () { + return _HomeMiniSharp.default; + } +}); +Object.defineProperty(exports, "HomeMiniTwoTone", { + enumerable: true, + get: function () { + return _HomeMiniTwoTone.default; + } +}); +Object.defineProperty(exports, "HomeOutlined", { + enumerable: true, + get: function () { + return _HomeOutlined.default; + } +}); +Object.defineProperty(exports, "HomeRepairService", { + enumerable: true, + get: function () { + return _HomeRepairService.default; + } +}); +Object.defineProperty(exports, "HomeRepairServiceOutlined", { + enumerable: true, + get: function () { + return _HomeRepairServiceOutlined.default; + } +}); +Object.defineProperty(exports, "HomeRepairServiceRounded", { + enumerable: true, + get: function () { + return _HomeRepairServiceRounded.default; + } +}); +Object.defineProperty(exports, "HomeRepairServiceSharp", { + enumerable: true, + get: function () { + return _HomeRepairServiceSharp.default; + } +}); +Object.defineProperty(exports, "HomeRepairServiceTwoTone", { + enumerable: true, + get: function () { + return _HomeRepairServiceTwoTone.default; + } +}); +Object.defineProperty(exports, "HomeRounded", { + enumerable: true, + get: function () { + return _HomeRounded.default; + } +}); +Object.defineProperty(exports, "HomeSharp", { + enumerable: true, + get: function () { + return _HomeSharp.default; + } +}); +Object.defineProperty(exports, "HomeTwoTone", { + enumerable: true, + get: function () { + return _HomeTwoTone.default; + } +}); +Object.defineProperty(exports, "HomeWork", { + enumerable: true, + get: function () { + return _HomeWork.default; + } +}); +Object.defineProperty(exports, "HomeWorkOutlined", { + enumerable: true, + get: function () { + return _HomeWorkOutlined.default; + } +}); +Object.defineProperty(exports, "HomeWorkRounded", { + enumerable: true, + get: function () { + return _HomeWorkRounded.default; + } +}); +Object.defineProperty(exports, "HomeWorkSharp", { + enumerable: true, + get: function () { + return _HomeWorkSharp.default; + } +}); +Object.defineProperty(exports, "HomeWorkTwoTone", { + enumerable: true, + get: function () { + return _HomeWorkTwoTone.default; + } +}); +Object.defineProperty(exports, "HorizontalRule", { + enumerable: true, + get: function () { + return _HorizontalRule.default; + } +}); +Object.defineProperty(exports, "HorizontalRuleOutlined", { + enumerable: true, + get: function () { + return _HorizontalRuleOutlined.default; + } +}); +Object.defineProperty(exports, "HorizontalRuleRounded", { + enumerable: true, + get: function () { + return _HorizontalRuleRounded.default; + } +}); +Object.defineProperty(exports, "HorizontalRuleSharp", { + enumerable: true, + get: function () { + return _HorizontalRuleSharp.default; + } +}); +Object.defineProperty(exports, "HorizontalRuleTwoTone", { + enumerable: true, + get: function () { + return _HorizontalRuleTwoTone.default; + } +}); +Object.defineProperty(exports, "HorizontalSplit", { + enumerable: true, + get: function () { + return _HorizontalSplit.default; + } +}); +Object.defineProperty(exports, "HorizontalSplitOutlined", { + enumerable: true, + get: function () { + return _HorizontalSplitOutlined.default; + } +}); +Object.defineProperty(exports, "HorizontalSplitRounded", { + enumerable: true, + get: function () { + return _HorizontalSplitRounded.default; + } +}); +Object.defineProperty(exports, "HorizontalSplitSharp", { + enumerable: true, + get: function () { + return _HorizontalSplitSharp.default; + } +}); +Object.defineProperty(exports, "HorizontalSplitTwoTone", { + enumerable: true, + get: function () { + return _HorizontalSplitTwoTone.default; + } +}); +Object.defineProperty(exports, "HotTub", { + enumerable: true, + get: function () { + return _HotTub.default; + } +}); +Object.defineProperty(exports, "HotTubOutlined", { + enumerable: true, + get: function () { + return _HotTubOutlined.default; + } +}); +Object.defineProperty(exports, "HotTubRounded", { + enumerable: true, + get: function () { + return _HotTubRounded.default; + } +}); +Object.defineProperty(exports, "HotTubSharp", { + enumerable: true, + get: function () { + return _HotTubSharp.default; + } +}); +Object.defineProperty(exports, "HotTubTwoTone", { + enumerable: true, + get: function () { + return _HotTubTwoTone.default; + } +}); +Object.defineProperty(exports, "Hotel", { + enumerable: true, + get: function () { + return _Hotel.default; + } +}); +Object.defineProperty(exports, "HotelOutlined", { + enumerable: true, + get: function () { + return _HotelOutlined.default; + } +}); +Object.defineProperty(exports, "HotelRounded", { + enumerable: true, + get: function () { + return _HotelRounded.default; + } +}); +Object.defineProperty(exports, "HotelSharp", { + enumerable: true, + get: function () { + return _HotelSharp.default; + } +}); +Object.defineProperty(exports, "HotelTwoTone", { + enumerable: true, + get: function () { + return _HotelTwoTone.default; + } +}); +Object.defineProperty(exports, "HourglassBottom", { + enumerable: true, + get: function () { + return _HourglassBottom.default; + } +}); +Object.defineProperty(exports, "HourglassBottomOutlined", { + enumerable: true, + get: function () { + return _HourglassBottomOutlined.default; + } +}); +Object.defineProperty(exports, "HourglassBottomRounded", { + enumerable: true, + get: function () { + return _HourglassBottomRounded.default; + } +}); +Object.defineProperty(exports, "HourglassBottomSharp", { + enumerable: true, + get: function () { + return _HourglassBottomSharp.default; + } +}); +Object.defineProperty(exports, "HourglassBottomTwoTone", { + enumerable: true, + get: function () { + return _HourglassBottomTwoTone.default; + } +}); +Object.defineProperty(exports, "HourglassDisabled", { + enumerable: true, + get: function () { + return _HourglassDisabled.default; + } +}); +Object.defineProperty(exports, "HourglassDisabledOutlined", { + enumerable: true, + get: function () { + return _HourglassDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "HourglassDisabledRounded", { + enumerable: true, + get: function () { + return _HourglassDisabledRounded.default; + } +}); +Object.defineProperty(exports, "HourglassDisabledSharp", { + enumerable: true, + get: function () { + return _HourglassDisabledSharp.default; + } +}); +Object.defineProperty(exports, "HourglassDisabledTwoTone", { + enumerable: true, + get: function () { + return _HourglassDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "HourglassEmpty", { + enumerable: true, + get: function () { + return _HourglassEmpty.default; + } +}); +Object.defineProperty(exports, "HourglassEmptyOutlined", { + enumerable: true, + get: function () { + return _HourglassEmptyOutlined.default; + } +}); +Object.defineProperty(exports, "HourglassEmptyRounded", { + enumerable: true, + get: function () { + return _HourglassEmptyRounded.default; + } +}); +Object.defineProperty(exports, "HourglassEmptySharp", { + enumerable: true, + get: function () { + return _HourglassEmptySharp.default; + } +}); +Object.defineProperty(exports, "HourglassEmptyTwoTone", { + enumerable: true, + get: function () { + return _HourglassEmptyTwoTone.default; + } +}); +Object.defineProperty(exports, "HourglassFull", { + enumerable: true, + get: function () { + return _HourglassFull.default; + } +}); +Object.defineProperty(exports, "HourglassFullOutlined", { + enumerable: true, + get: function () { + return _HourglassFullOutlined.default; + } +}); +Object.defineProperty(exports, "HourglassFullRounded", { + enumerable: true, + get: function () { + return _HourglassFullRounded.default; + } +}); +Object.defineProperty(exports, "HourglassFullSharp", { + enumerable: true, + get: function () { + return _HourglassFullSharp.default; + } +}); +Object.defineProperty(exports, "HourglassFullTwoTone", { + enumerable: true, + get: function () { + return _HourglassFullTwoTone.default; + } +}); +Object.defineProperty(exports, "HourglassTop", { + enumerable: true, + get: function () { + return _HourglassTop.default; + } +}); +Object.defineProperty(exports, "HourglassTopOutlined", { + enumerable: true, + get: function () { + return _HourglassTopOutlined.default; + } +}); +Object.defineProperty(exports, "HourglassTopRounded", { + enumerable: true, + get: function () { + return _HourglassTopRounded.default; + } +}); +Object.defineProperty(exports, "HourglassTopSharp", { + enumerable: true, + get: function () { + return _HourglassTopSharp.default; + } +}); +Object.defineProperty(exports, "HourglassTopTwoTone", { + enumerable: true, + get: function () { + return _HourglassTopTwoTone.default; + } +}); +Object.defineProperty(exports, "House", { + enumerable: true, + get: function () { + return _House.default; + } +}); +Object.defineProperty(exports, "HouseOutlined", { + enumerable: true, + get: function () { + return _HouseOutlined.default; + } +}); +Object.defineProperty(exports, "HouseRounded", { + enumerable: true, + get: function () { + return _HouseRounded.default; + } +}); +Object.defineProperty(exports, "HouseSharp", { + enumerable: true, + get: function () { + return _HouseSharp.default; + } +}); +Object.defineProperty(exports, "HouseSiding", { + enumerable: true, + get: function () { + return _HouseSiding.default; + } +}); +Object.defineProperty(exports, "HouseSidingOutlined", { + enumerable: true, + get: function () { + return _HouseSidingOutlined.default; + } +}); +Object.defineProperty(exports, "HouseSidingRounded", { + enumerable: true, + get: function () { + return _HouseSidingRounded.default; + } +}); +Object.defineProperty(exports, "HouseSidingSharp", { + enumerable: true, + get: function () { + return _HouseSidingSharp.default; + } +}); +Object.defineProperty(exports, "HouseSidingTwoTone", { + enumerable: true, + get: function () { + return _HouseSidingTwoTone.default; + } +}); +Object.defineProperty(exports, "HouseTwoTone", { + enumerable: true, + get: function () { + return _HouseTwoTone.default; + } +}); +Object.defineProperty(exports, "Houseboat", { + enumerable: true, + get: function () { + return _Houseboat.default; + } +}); +Object.defineProperty(exports, "HouseboatOutlined", { + enumerable: true, + get: function () { + return _HouseboatOutlined.default; + } +}); +Object.defineProperty(exports, "HouseboatRounded", { + enumerable: true, + get: function () { + return _HouseboatRounded.default; + } +}); +Object.defineProperty(exports, "HouseboatSharp", { + enumerable: true, + get: function () { + return _HouseboatSharp.default; + } +}); +Object.defineProperty(exports, "HouseboatTwoTone", { + enumerable: true, + get: function () { + return _HouseboatTwoTone.default; + } +}); +Object.defineProperty(exports, "HowToReg", { + enumerable: true, + get: function () { + return _HowToReg.default; + } +}); +Object.defineProperty(exports, "HowToRegOutlined", { + enumerable: true, + get: function () { + return _HowToRegOutlined.default; + } +}); +Object.defineProperty(exports, "HowToRegRounded", { + enumerable: true, + get: function () { + return _HowToRegRounded.default; + } +}); +Object.defineProperty(exports, "HowToRegSharp", { + enumerable: true, + get: function () { + return _HowToRegSharp.default; + } +}); +Object.defineProperty(exports, "HowToRegTwoTone", { + enumerable: true, + get: function () { + return _HowToRegTwoTone.default; + } +}); +Object.defineProperty(exports, "HowToVote", { + enumerable: true, + get: function () { + return _HowToVote.default; + } +}); +Object.defineProperty(exports, "HowToVoteOutlined", { + enumerable: true, + get: function () { + return _HowToVoteOutlined.default; + } +}); +Object.defineProperty(exports, "HowToVoteRounded", { + enumerable: true, + get: function () { + return _HowToVoteRounded.default; + } +}); +Object.defineProperty(exports, "HowToVoteSharp", { + enumerable: true, + get: function () { + return _HowToVoteSharp.default; + } +}); +Object.defineProperty(exports, "HowToVoteTwoTone", { + enumerable: true, + get: function () { + return _HowToVoteTwoTone.default; + } +}); +Object.defineProperty(exports, "Http", { + enumerable: true, + get: function () { + return _Http.default; + } +}); +Object.defineProperty(exports, "HttpOutlined", { + enumerable: true, + get: function () { + return _HttpOutlined.default; + } +}); +Object.defineProperty(exports, "HttpRounded", { + enumerable: true, + get: function () { + return _HttpRounded.default; + } +}); +Object.defineProperty(exports, "HttpSharp", { + enumerable: true, + get: function () { + return _HttpSharp.default; + } +}); +Object.defineProperty(exports, "HttpTwoTone", { + enumerable: true, + get: function () { + return _HttpTwoTone.default; + } +}); +Object.defineProperty(exports, "Https", { + enumerable: true, + get: function () { + return _Https.default; + } +}); +Object.defineProperty(exports, "HttpsOutlined", { + enumerable: true, + get: function () { + return _HttpsOutlined.default; + } +}); +Object.defineProperty(exports, "HttpsRounded", { + enumerable: true, + get: function () { + return _HttpsRounded.default; + } +}); +Object.defineProperty(exports, "HttpsSharp", { + enumerable: true, + get: function () { + return _HttpsSharp.default; + } +}); +Object.defineProperty(exports, "HttpsTwoTone", { + enumerable: true, + get: function () { + return _HttpsTwoTone.default; + } +}); +Object.defineProperty(exports, "Hvac", { + enumerable: true, + get: function () { + return _Hvac.default; + } +}); +Object.defineProperty(exports, "HvacOutlined", { + enumerable: true, + get: function () { + return _HvacOutlined.default; + } +}); +Object.defineProperty(exports, "HvacRounded", { + enumerable: true, + get: function () { + return _HvacRounded.default; + } +}); +Object.defineProperty(exports, "HvacSharp", { + enumerable: true, + get: function () { + return _HvacSharp.default; + } +}); +Object.defineProperty(exports, "HvacTwoTone", { + enumerable: true, + get: function () { + return _HvacTwoTone.default; + } +}); +Object.defineProperty(exports, "IceSkating", { + enumerable: true, + get: function () { + return _IceSkating.default; + } +}); +Object.defineProperty(exports, "IceSkatingOutlined", { + enumerable: true, + get: function () { + return _IceSkatingOutlined.default; + } +}); +Object.defineProperty(exports, "IceSkatingRounded", { + enumerable: true, + get: function () { + return _IceSkatingRounded.default; + } +}); +Object.defineProperty(exports, "IceSkatingSharp", { + enumerable: true, + get: function () { + return _IceSkatingSharp.default; + } +}); +Object.defineProperty(exports, "IceSkatingTwoTone", { + enumerable: true, + get: function () { + return _IceSkatingTwoTone.default; + } +}); +Object.defineProperty(exports, "Icecream", { + enumerable: true, + get: function () { + return _Icecream.default; + } +}); +Object.defineProperty(exports, "IcecreamOutlined", { + enumerable: true, + get: function () { + return _IcecreamOutlined.default; + } +}); +Object.defineProperty(exports, "IcecreamRounded", { + enumerable: true, + get: function () { + return _IcecreamRounded.default; + } +}); +Object.defineProperty(exports, "IcecreamSharp", { + enumerable: true, + get: function () { + return _IcecreamSharp.default; + } +}); +Object.defineProperty(exports, "IcecreamTwoTone", { + enumerable: true, + get: function () { + return _IcecreamTwoTone.default; + } +}); +Object.defineProperty(exports, "Image", { + enumerable: true, + get: function () { + return _Image.default; + } +}); +Object.defineProperty(exports, "ImageAspectRatio", { + enumerable: true, + get: function () { + return _ImageAspectRatio.default; + } +}); +Object.defineProperty(exports, "ImageAspectRatioOutlined", { + enumerable: true, + get: function () { + return _ImageAspectRatioOutlined.default; + } +}); +Object.defineProperty(exports, "ImageAspectRatioRounded", { + enumerable: true, + get: function () { + return _ImageAspectRatioRounded.default; + } +}); +Object.defineProperty(exports, "ImageAspectRatioSharp", { + enumerable: true, + get: function () { + return _ImageAspectRatioSharp.default; + } +}); +Object.defineProperty(exports, "ImageAspectRatioTwoTone", { + enumerable: true, + get: function () { + return _ImageAspectRatioTwoTone.default; + } +}); +Object.defineProperty(exports, "ImageNotSupported", { + enumerable: true, + get: function () { + return _ImageNotSupported.default; + } +}); +Object.defineProperty(exports, "ImageNotSupportedOutlined", { + enumerable: true, + get: function () { + return _ImageNotSupportedOutlined.default; + } +}); +Object.defineProperty(exports, "ImageNotSupportedRounded", { + enumerable: true, + get: function () { + return _ImageNotSupportedRounded.default; + } +}); +Object.defineProperty(exports, "ImageNotSupportedSharp", { + enumerable: true, + get: function () { + return _ImageNotSupportedSharp.default; + } +}); +Object.defineProperty(exports, "ImageNotSupportedTwoTone", { + enumerable: true, + get: function () { + return _ImageNotSupportedTwoTone.default; + } +}); +Object.defineProperty(exports, "ImageOutlined", { + enumerable: true, + get: function () { + return _ImageOutlined.default; + } +}); +Object.defineProperty(exports, "ImageRounded", { + enumerable: true, + get: function () { + return _ImageRounded.default; + } +}); +Object.defineProperty(exports, "ImageSearch", { + enumerable: true, + get: function () { + return _ImageSearch.default; + } +}); +Object.defineProperty(exports, "ImageSearchOutlined", { + enumerable: true, + get: function () { + return _ImageSearchOutlined.default; + } +}); +Object.defineProperty(exports, "ImageSearchRounded", { + enumerable: true, + get: function () { + return _ImageSearchRounded.default; + } +}); +Object.defineProperty(exports, "ImageSearchSharp", { + enumerable: true, + get: function () { + return _ImageSearchSharp.default; + } +}); +Object.defineProperty(exports, "ImageSearchTwoTone", { + enumerable: true, + get: function () { + return _ImageSearchTwoTone.default; + } +}); +Object.defineProperty(exports, "ImageSharp", { + enumerable: true, + get: function () { + return _ImageSharp.default; + } +}); +Object.defineProperty(exports, "ImageTwoTone", { + enumerable: true, + get: function () { + return _ImageTwoTone.default; + } +}); +Object.defineProperty(exports, "ImagesearchRoller", { + enumerable: true, + get: function () { + return _ImagesearchRoller.default; + } +}); +Object.defineProperty(exports, "ImagesearchRollerOutlined", { + enumerable: true, + get: function () { + return _ImagesearchRollerOutlined.default; + } +}); +Object.defineProperty(exports, "ImagesearchRollerRounded", { + enumerable: true, + get: function () { + return _ImagesearchRollerRounded.default; + } +}); +Object.defineProperty(exports, "ImagesearchRollerSharp", { + enumerable: true, + get: function () { + return _ImagesearchRollerSharp.default; + } +}); +Object.defineProperty(exports, "ImagesearchRollerTwoTone", { + enumerable: true, + get: function () { + return _ImagesearchRollerTwoTone.default; + } +}); +Object.defineProperty(exports, "ImportContacts", { + enumerable: true, + get: function () { + return _ImportContacts.default; + } +}); +Object.defineProperty(exports, "ImportContactsOutlined", { + enumerable: true, + get: function () { + return _ImportContactsOutlined.default; + } +}); +Object.defineProperty(exports, "ImportContactsRounded", { + enumerable: true, + get: function () { + return _ImportContactsRounded.default; + } +}); +Object.defineProperty(exports, "ImportContactsSharp", { + enumerable: true, + get: function () { + return _ImportContactsSharp.default; + } +}); +Object.defineProperty(exports, "ImportContactsTwoTone", { + enumerable: true, + get: function () { + return _ImportContactsTwoTone.default; + } +}); +Object.defineProperty(exports, "ImportExport", { + enumerable: true, + get: function () { + return _ImportExport.default; + } +}); +Object.defineProperty(exports, "ImportExportOutlined", { + enumerable: true, + get: function () { + return _ImportExportOutlined.default; + } +}); +Object.defineProperty(exports, "ImportExportRounded", { + enumerable: true, + get: function () { + return _ImportExportRounded.default; + } +}); +Object.defineProperty(exports, "ImportExportSharp", { + enumerable: true, + get: function () { + return _ImportExportSharp.default; + } +}); +Object.defineProperty(exports, "ImportExportTwoTone", { + enumerable: true, + get: function () { + return _ImportExportTwoTone.default; + } +}); +Object.defineProperty(exports, "ImportantDevices", { + enumerable: true, + get: function () { + return _ImportantDevices.default; + } +}); +Object.defineProperty(exports, "ImportantDevicesOutlined", { + enumerable: true, + get: function () { + return _ImportantDevicesOutlined.default; + } +}); +Object.defineProperty(exports, "ImportantDevicesRounded", { + enumerable: true, + get: function () { + return _ImportantDevicesRounded.default; + } +}); +Object.defineProperty(exports, "ImportantDevicesSharp", { + enumerable: true, + get: function () { + return _ImportantDevicesSharp.default; + } +}); +Object.defineProperty(exports, "ImportantDevicesTwoTone", { + enumerable: true, + get: function () { + return _ImportantDevicesTwoTone.default; + } +}); +Object.defineProperty(exports, "Inbox", { + enumerable: true, + get: function () { + return _Inbox.default; + } +}); +Object.defineProperty(exports, "InboxOutlined", { + enumerable: true, + get: function () { + return _InboxOutlined.default; + } +}); +Object.defineProperty(exports, "InboxRounded", { + enumerable: true, + get: function () { + return _InboxRounded.default; + } +}); +Object.defineProperty(exports, "InboxSharp", { + enumerable: true, + get: function () { + return _InboxSharp.default; + } +}); +Object.defineProperty(exports, "InboxTwoTone", { + enumerable: true, + get: function () { + return _InboxTwoTone.default; + } +}); +Object.defineProperty(exports, "IndeterminateCheckBox", { + enumerable: true, + get: function () { + return _IndeterminateCheckBox.default; + } +}); +Object.defineProperty(exports, "IndeterminateCheckBoxOutlined", { + enumerable: true, + get: function () { + return _IndeterminateCheckBoxOutlined.default; + } +}); +Object.defineProperty(exports, "IndeterminateCheckBoxRounded", { + enumerable: true, + get: function () { + return _IndeterminateCheckBoxRounded.default; + } +}); +Object.defineProperty(exports, "IndeterminateCheckBoxSharp", { + enumerable: true, + get: function () { + return _IndeterminateCheckBoxSharp.default; + } +}); +Object.defineProperty(exports, "IndeterminateCheckBoxTwoTone", { + enumerable: true, + get: function () { + return _IndeterminateCheckBoxTwoTone.default; + } +}); +Object.defineProperty(exports, "Info", { + enumerable: true, + get: function () { + return _Info.default; + } +}); +Object.defineProperty(exports, "InfoOutlined", { + enumerable: true, + get: function () { + return _InfoOutlined.default; + } +}); +Object.defineProperty(exports, "InfoRounded", { + enumerable: true, + get: function () { + return _InfoRounded.default; + } +}); +Object.defineProperty(exports, "InfoSharp", { + enumerable: true, + get: function () { + return _InfoSharp.default; + } +}); +Object.defineProperty(exports, "InfoTwoTone", { + enumerable: true, + get: function () { + return _InfoTwoTone.default; + } +}); +Object.defineProperty(exports, "Input", { + enumerable: true, + get: function () { + return _Input.default; + } +}); +Object.defineProperty(exports, "InputOutlined", { + enumerable: true, + get: function () { + return _InputOutlined.default; + } +}); +Object.defineProperty(exports, "InputRounded", { + enumerable: true, + get: function () { + return _InputRounded.default; + } +}); +Object.defineProperty(exports, "InputSharp", { + enumerable: true, + get: function () { + return _InputSharp.default; + } +}); +Object.defineProperty(exports, "InputTwoTone", { + enumerable: true, + get: function () { + return _InputTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertChart", { + enumerable: true, + get: function () { + return _InsertChart.default; + } +}); +Object.defineProperty(exports, "InsertChartOutlined", { + enumerable: true, + get: function () { + return _InsertChartOutlined.default; + } +}); +Object.defineProperty(exports, "InsertChartOutlinedOutlined", { + enumerable: true, + get: function () { + return _InsertChartOutlinedOutlined.default; + } +}); +Object.defineProperty(exports, "InsertChartOutlinedRounded", { + enumerable: true, + get: function () { + return _InsertChartOutlinedRounded.default; + } +}); +Object.defineProperty(exports, "InsertChartOutlinedSharp", { + enumerable: true, + get: function () { + return _InsertChartOutlinedSharp.default; + } +}); +Object.defineProperty(exports, "InsertChartOutlinedTwoTone", { + enumerable: true, + get: function () { + return _InsertChartOutlinedTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertChartRounded", { + enumerable: true, + get: function () { + return _InsertChartRounded.default; + } +}); +Object.defineProperty(exports, "InsertChartSharp", { + enumerable: true, + get: function () { + return _InsertChartSharp.default; + } +}); +Object.defineProperty(exports, "InsertChartTwoTone", { + enumerable: true, + get: function () { + return _InsertChartTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertComment", { + enumerable: true, + get: function () { + return _InsertComment.default; + } +}); +Object.defineProperty(exports, "InsertCommentOutlined", { + enumerable: true, + get: function () { + return _InsertCommentOutlined.default; + } +}); +Object.defineProperty(exports, "InsertCommentRounded", { + enumerable: true, + get: function () { + return _InsertCommentRounded.default; + } +}); +Object.defineProperty(exports, "InsertCommentSharp", { + enumerable: true, + get: function () { + return _InsertCommentSharp.default; + } +}); +Object.defineProperty(exports, "InsertCommentTwoTone", { + enumerable: true, + get: function () { + return _InsertCommentTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertDriveFile", { + enumerable: true, + get: function () { + return _InsertDriveFile.default; + } +}); +Object.defineProperty(exports, "InsertDriveFileOutlined", { + enumerable: true, + get: function () { + return _InsertDriveFileOutlined.default; + } +}); +Object.defineProperty(exports, "InsertDriveFileRounded", { + enumerable: true, + get: function () { + return _InsertDriveFileRounded.default; + } +}); +Object.defineProperty(exports, "InsertDriveFileSharp", { + enumerable: true, + get: function () { + return _InsertDriveFileSharp.default; + } +}); +Object.defineProperty(exports, "InsertDriveFileTwoTone", { + enumerable: true, + get: function () { + return _InsertDriveFileTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertEmoticon", { + enumerable: true, + get: function () { + return _InsertEmoticon.default; + } +}); +Object.defineProperty(exports, "InsertEmoticonOutlined", { + enumerable: true, + get: function () { + return _InsertEmoticonOutlined.default; + } +}); +Object.defineProperty(exports, "InsertEmoticonRounded", { + enumerable: true, + get: function () { + return _InsertEmoticonRounded.default; + } +}); +Object.defineProperty(exports, "InsertEmoticonSharp", { + enumerable: true, + get: function () { + return _InsertEmoticonSharp.default; + } +}); +Object.defineProperty(exports, "InsertEmoticonTwoTone", { + enumerable: true, + get: function () { + return _InsertEmoticonTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertInvitation", { + enumerable: true, + get: function () { + return _InsertInvitation.default; + } +}); +Object.defineProperty(exports, "InsertInvitationOutlined", { + enumerable: true, + get: function () { + return _InsertInvitationOutlined.default; + } +}); +Object.defineProperty(exports, "InsertInvitationRounded", { + enumerable: true, + get: function () { + return _InsertInvitationRounded.default; + } +}); +Object.defineProperty(exports, "InsertInvitationSharp", { + enumerable: true, + get: function () { + return _InsertInvitationSharp.default; + } +}); +Object.defineProperty(exports, "InsertInvitationTwoTone", { + enumerable: true, + get: function () { + return _InsertInvitationTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertLink", { + enumerable: true, + get: function () { + return _InsertLink.default; + } +}); +Object.defineProperty(exports, "InsertLinkOutlined", { + enumerable: true, + get: function () { + return _InsertLinkOutlined.default; + } +}); +Object.defineProperty(exports, "InsertLinkRounded", { + enumerable: true, + get: function () { + return _InsertLinkRounded.default; + } +}); +Object.defineProperty(exports, "InsertLinkSharp", { + enumerable: true, + get: function () { + return _InsertLinkSharp.default; + } +}); +Object.defineProperty(exports, "InsertLinkTwoTone", { + enumerable: true, + get: function () { + return _InsertLinkTwoTone.default; + } +}); +Object.defineProperty(exports, "InsertPhoto", { + enumerable: true, + get: function () { + return _InsertPhoto.default; + } +}); +Object.defineProperty(exports, "InsertPhotoOutlined", { + enumerable: true, + get: function () { + return _InsertPhotoOutlined.default; + } +}); +Object.defineProperty(exports, "InsertPhotoRounded", { + enumerable: true, + get: function () { + return _InsertPhotoRounded.default; + } +}); +Object.defineProperty(exports, "InsertPhotoSharp", { + enumerable: true, + get: function () { + return _InsertPhotoSharp.default; + } +}); +Object.defineProperty(exports, "InsertPhotoTwoTone", { + enumerable: true, + get: function () { + return _InsertPhotoTwoTone.default; + } +}); +Object.defineProperty(exports, "Insights", { + enumerable: true, + get: function () { + return _Insights.default; + } +}); +Object.defineProperty(exports, "InsightsOutlined", { + enumerable: true, + get: function () { + return _InsightsOutlined.default; + } +}); +Object.defineProperty(exports, "InsightsRounded", { + enumerable: true, + get: function () { + return _InsightsRounded.default; + } +}); +Object.defineProperty(exports, "InsightsSharp", { + enumerable: true, + get: function () { + return _InsightsSharp.default; + } +}); +Object.defineProperty(exports, "InsightsTwoTone", { + enumerable: true, + get: function () { + return _InsightsTwoTone.default; + } +}); +Object.defineProperty(exports, "Instagram", { + enumerable: true, + get: function () { + return _Instagram.default; + } +}); +Object.defineProperty(exports, "IntegrationInstructions", { + enumerable: true, + get: function () { + return _IntegrationInstructions.default; + } +}); +Object.defineProperty(exports, "IntegrationInstructionsOutlined", { + enumerable: true, + get: function () { + return _IntegrationInstructionsOutlined.default; + } +}); +Object.defineProperty(exports, "IntegrationInstructionsRounded", { + enumerable: true, + get: function () { + return _IntegrationInstructionsRounded.default; + } +}); +Object.defineProperty(exports, "IntegrationInstructionsSharp", { + enumerable: true, + get: function () { + return _IntegrationInstructionsSharp.default; + } +}); +Object.defineProperty(exports, "IntegrationInstructionsTwoTone", { + enumerable: true, + get: function () { + return _IntegrationInstructionsTwoTone.default; + } +}); +Object.defineProperty(exports, "Inventory", { + enumerable: true, + get: function () { + return _Inventory.default; + } +}); +Object.defineProperty(exports, "Inventory2", { + enumerable: true, + get: function () { + return _Inventory2.default; + } +}); +Object.defineProperty(exports, "Inventory2Outlined", { + enumerable: true, + get: function () { + return _Inventory2Outlined.default; + } +}); +Object.defineProperty(exports, "Inventory2Rounded", { + enumerable: true, + get: function () { + return _Inventory2Rounded.default; + } +}); +Object.defineProperty(exports, "Inventory2Sharp", { + enumerable: true, + get: function () { + return _Inventory2Sharp.default; + } +}); +Object.defineProperty(exports, "Inventory2TwoTone", { + enumerable: true, + get: function () { + return _Inventory2TwoTone.default; + } +}); +Object.defineProperty(exports, "InventoryOutlined", { + enumerable: true, + get: function () { + return _InventoryOutlined.default; + } +}); +Object.defineProperty(exports, "InventoryRounded", { + enumerable: true, + get: function () { + return _InventoryRounded.default; + } +}); +Object.defineProperty(exports, "InventorySharp", { + enumerable: true, + get: function () { + return _InventorySharp.default; + } +}); +Object.defineProperty(exports, "InventoryTwoTone", { + enumerable: true, + get: function () { + return _InventoryTwoTone.default; + } +}); +Object.defineProperty(exports, "InvertColors", { + enumerable: true, + get: function () { + return _InvertColors.default; + } +}); +Object.defineProperty(exports, "InvertColorsOff", { + enumerable: true, + get: function () { + return _InvertColorsOff.default; + } +}); +Object.defineProperty(exports, "InvertColorsOffOutlined", { + enumerable: true, + get: function () { + return _InvertColorsOffOutlined.default; + } +}); +Object.defineProperty(exports, "InvertColorsOffRounded", { + enumerable: true, + get: function () { + return _InvertColorsOffRounded.default; + } +}); +Object.defineProperty(exports, "InvertColorsOffSharp", { + enumerable: true, + get: function () { + return _InvertColorsOffSharp.default; + } +}); +Object.defineProperty(exports, "InvertColorsOffTwoTone", { + enumerable: true, + get: function () { + return _InvertColorsOffTwoTone.default; + } +}); +Object.defineProperty(exports, "InvertColorsOutlined", { + enumerable: true, + get: function () { + return _InvertColorsOutlined.default; + } +}); +Object.defineProperty(exports, "InvertColorsRounded", { + enumerable: true, + get: function () { + return _InvertColorsRounded.default; + } +}); +Object.defineProperty(exports, "InvertColorsSharp", { + enumerable: true, + get: function () { + return _InvertColorsSharp.default; + } +}); +Object.defineProperty(exports, "InvertColorsTwoTone", { + enumerable: true, + get: function () { + return _InvertColorsTwoTone.default; + } +}); +Object.defineProperty(exports, "IosShare", { + enumerable: true, + get: function () { + return _IosShare.default; + } +}); +Object.defineProperty(exports, "IosShareOutlined", { + enumerable: true, + get: function () { + return _IosShareOutlined.default; + } +}); +Object.defineProperty(exports, "IosShareRounded", { + enumerable: true, + get: function () { + return _IosShareRounded.default; + } +}); +Object.defineProperty(exports, "IosShareSharp", { + enumerable: true, + get: function () { + return _IosShareSharp.default; + } +}); +Object.defineProperty(exports, "IosShareTwoTone", { + enumerable: true, + get: function () { + return _IosShareTwoTone.default; + } +}); +Object.defineProperty(exports, "Iron", { + enumerable: true, + get: function () { + return _Iron.default; + } +}); +Object.defineProperty(exports, "IronOutlined", { + enumerable: true, + get: function () { + return _IronOutlined.default; + } +}); +Object.defineProperty(exports, "IronRounded", { + enumerable: true, + get: function () { + return _IronRounded.default; + } +}); +Object.defineProperty(exports, "IronSharp", { + enumerable: true, + get: function () { + return _IronSharp.default; + } +}); +Object.defineProperty(exports, "IronTwoTone", { + enumerable: true, + get: function () { + return _IronTwoTone.default; + } +}); +Object.defineProperty(exports, "Iso", { + enumerable: true, + get: function () { + return _Iso.default; + } +}); +Object.defineProperty(exports, "IsoOutlined", { + enumerable: true, + get: function () { + return _IsoOutlined.default; + } +}); +Object.defineProperty(exports, "IsoRounded", { + enumerable: true, + get: function () { + return _IsoRounded.default; + } +}); +Object.defineProperty(exports, "IsoSharp", { + enumerable: true, + get: function () { + return _IsoSharp.default; + } +}); +Object.defineProperty(exports, "IsoTwoTone", { + enumerable: true, + get: function () { + return _IsoTwoTone.default; + } +}); +Object.defineProperty(exports, "Kayaking", { + enumerable: true, + get: function () { + return _Kayaking.default; + } +}); +Object.defineProperty(exports, "KayakingOutlined", { + enumerable: true, + get: function () { + return _KayakingOutlined.default; + } +}); +Object.defineProperty(exports, "KayakingRounded", { + enumerable: true, + get: function () { + return _KayakingRounded.default; + } +}); +Object.defineProperty(exports, "KayakingSharp", { + enumerable: true, + get: function () { + return _KayakingSharp.default; + } +}); +Object.defineProperty(exports, "KayakingTwoTone", { + enumerable: true, + get: function () { + return _KayakingTwoTone.default; + } +}); +Object.defineProperty(exports, "Keyboard", { + enumerable: true, + get: function () { + return _Keyboard.default; + } +}); +Object.defineProperty(exports, "KeyboardAlt", { + enumerable: true, + get: function () { + return _KeyboardAlt.default; + } +}); +Object.defineProperty(exports, "KeyboardAltOutlined", { + enumerable: true, + get: function () { + return _KeyboardAltOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardAltRounded", { + enumerable: true, + get: function () { + return _KeyboardAltRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardAltSharp", { + enumerable: true, + get: function () { + return _KeyboardAltSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardAltTwoTone", { + enumerable: true, + get: function () { + return _KeyboardAltTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowDown", { + enumerable: true, + get: function () { + return _KeyboardArrowDown.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowDownOutlined", { + enumerable: true, + get: function () { + return _KeyboardArrowDownOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowDownRounded", { + enumerable: true, + get: function () { + return _KeyboardArrowDownRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowDownSharp", { + enumerable: true, + get: function () { + return _KeyboardArrowDownSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowDownTwoTone", { + enumerable: true, + get: function () { + return _KeyboardArrowDownTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowLeft", { + enumerable: true, + get: function () { + return _KeyboardArrowLeft.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowLeftOutlined", { + enumerable: true, + get: function () { + return _KeyboardArrowLeftOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowLeftRounded", { + enumerable: true, + get: function () { + return _KeyboardArrowLeftRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowLeftSharp", { + enumerable: true, + get: function () { + return _KeyboardArrowLeftSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowLeftTwoTone", { + enumerable: true, + get: function () { + return _KeyboardArrowLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowRight", { + enumerable: true, + get: function () { + return _KeyboardArrowRight.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowRightOutlined", { + enumerable: true, + get: function () { + return _KeyboardArrowRightOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowRightRounded", { + enumerable: true, + get: function () { + return _KeyboardArrowRightRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowRightSharp", { + enumerable: true, + get: function () { + return _KeyboardArrowRightSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowRightTwoTone", { + enumerable: true, + get: function () { + return _KeyboardArrowRightTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowUp", { + enumerable: true, + get: function () { + return _KeyboardArrowUp.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowUpOutlined", { + enumerable: true, + get: function () { + return _KeyboardArrowUpOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowUpRounded", { + enumerable: true, + get: function () { + return _KeyboardArrowUpRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowUpSharp", { + enumerable: true, + get: function () { + return _KeyboardArrowUpSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardArrowUpTwoTone", { + enumerable: true, + get: function () { + return _KeyboardArrowUpTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardBackspace", { + enumerable: true, + get: function () { + return _KeyboardBackspace.default; + } +}); +Object.defineProperty(exports, "KeyboardBackspaceOutlined", { + enumerable: true, + get: function () { + return _KeyboardBackspaceOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardBackspaceRounded", { + enumerable: true, + get: function () { + return _KeyboardBackspaceRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardBackspaceSharp", { + enumerable: true, + get: function () { + return _KeyboardBackspaceSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardBackspaceTwoTone", { + enumerable: true, + get: function () { + return _KeyboardBackspaceTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardCapslock", { + enumerable: true, + get: function () { + return _KeyboardCapslock.default; + } +}); +Object.defineProperty(exports, "KeyboardCapslockOutlined", { + enumerable: true, + get: function () { + return _KeyboardCapslockOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardCapslockRounded", { + enumerable: true, + get: function () { + return _KeyboardCapslockRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardCapslockSharp", { + enumerable: true, + get: function () { + return _KeyboardCapslockSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardCapslockTwoTone", { + enumerable: true, + get: function () { + return _KeyboardCapslockTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardHide", { + enumerable: true, + get: function () { + return _KeyboardHide.default; + } +}); +Object.defineProperty(exports, "KeyboardHideOutlined", { + enumerable: true, + get: function () { + return _KeyboardHideOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardHideRounded", { + enumerable: true, + get: function () { + return _KeyboardHideRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardHideSharp", { + enumerable: true, + get: function () { + return _KeyboardHideSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardHideTwoTone", { + enumerable: true, + get: function () { + return _KeyboardHideTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardOutlined", { + enumerable: true, + get: function () { + return _KeyboardOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardReturn", { + enumerable: true, + get: function () { + return _KeyboardReturn.default; + } +}); +Object.defineProperty(exports, "KeyboardReturnOutlined", { + enumerable: true, + get: function () { + return _KeyboardReturnOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardReturnRounded", { + enumerable: true, + get: function () { + return _KeyboardReturnRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardReturnSharp", { + enumerable: true, + get: function () { + return _KeyboardReturnSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardReturnTwoTone", { + enumerable: true, + get: function () { + return _KeyboardReturnTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardRounded", { + enumerable: true, + get: function () { + return _KeyboardRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardSharp", { + enumerable: true, + get: function () { + return _KeyboardSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardTab", { + enumerable: true, + get: function () { + return _KeyboardTab.default; + } +}); +Object.defineProperty(exports, "KeyboardTabOutlined", { + enumerable: true, + get: function () { + return _KeyboardTabOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardTabRounded", { + enumerable: true, + get: function () { + return _KeyboardTabRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardTabSharp", { + enumerable: true, + get: function () { + return _KeyboardTabSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardTabTwoTone", { + enumerable: true, + get: function () { + return _KeyboardTabTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardTwoTone", { + enumerable: true, + get: function () { + return _KeyboardTwoTone.default; + } +}); +Object.defineProperty(exports, "KeyboardVoice", { + enumerable: true, + get: function () { + return _KeyboardVoice.default; + } +}); +Object.defineProperty(exports, "KeyboardVoiceOutlined", { + enumerable: true, + get: function () { + return _KeyboardVoiceOutlined.default; + } +}); +Object.defineProperty(exports, "KeyboardVoiceRounded", { + enumerable: true, + get: function () { + return _KeyboardVoiceRounded.default; + } +}); +Object.defineProperty(exports, "KeyboardVoiceSharp", { + enumerable: true, + get: function () { + return _KeyboardVoiceSharp.default; + } +}); +Object.defineProperty(exports, "KeyboardVoiceTwoTone", { + enumerable: true, + get: function () { + return _KeyboardVoiceTwoTone.default; + } +}); +Object.defineProperty(exports, "KingBed", { + enumerable: true, + get: function () { + return _KingBed.default; + } +}); +Object.defineProperty(exports, "KingBedOutlined", { + enumerable: true, + get: function () { + return _KingBedOutlined.default; + } +}); +Object.defineProperty(exports, "KingBedRounded", { + enumerable: true, + get: function () { + return _KingBedRounded.default; + } +}); +Object.defineProperty(exports, "KingBedSharp", { + enumerable: true, + get: function () { + return _KingBedSharp.default; + } +}); +Object.defineProperty(exports, "KingBedTwoTone", { + enumerable: true, + get: function () { + return _KingBedTwoTone.default; + } +}); +Object.defineProperty(exports, "Kitchen", { + enumerable: true, + get: function () { + return _Kitchen.default; + } +}); +Object.defineProperty(exports, "KitchenOutlined", { + enumerable: true, + get: function () { + return _KitchenOutlined.default; + } +}); +Object.defineProperty(exports, "KitchenRounded", { + enumerable: true, + get: function () { + return _KitchenRounded.default; + } +}); +Object.defineProperty(exports, "KitchenSharp", { + enumerable: true, + get: function () { + return _KitchenSharp.default; + } +}); +Object.defineProperty(exports, "KitchenTwoTone", { + enumerable: true, + get: function () { + return _KitchenTwoTone.default; + } +}); +Object.defineProperty(exports, "Kitesurfing", { + enumerable: true, + get: function () { + return _Kitesurfing.default; + } +}); +Object.defineProperty(exports, "KitesurfingOutlined", { + enumerable: true, + get: function () { + return _KitesurfingOutlined.default; + } +}); +Object.defineProperty(exports, "KitesurfingRounded", { + enumerable: true, + get: function () { + return _KitesurfingRounded.default; + } +}); +Object.defineProperty(exports, "KitesurfingSharp", { + enumerable: true, + get: function () { + return _KitesurfingSharp.default; + } +}); +Object.defineProperty(exports, "KitesurfingTwoTone", { + enumerable: true, + get: function () { + return _KitesurfingTwoTone.default; + } +}); +Object.defineProperty(exports, "Label", { + enumerable: true, + get: function () { + return _Label.default; + } +}); +Object.defineProperty(exports, "LabelImportant", { + enumerable: true, + get: function () { + return _LabelImportant.default; + } +}); +Object.defineProperty(exports, "LabelImportantOutlined", { + enumerable: true, + get: function () { + return _LabelImportantOutlined.default; + } +}); +Object.defineProperty(exports, "LabelImportantRounded", { + enumerable: true, + get: function () { + return _LabelImportantRounded.default; + } +}); +Object.defineProperty(exports, "LabelImportantSharp", { + enumerable: true, + get: function () { + return _LabelImportantSharp.default; + } +}); +Object.defineProperty(exports, "LabelImportantTwoTone", { + enumerable: true, + get: function () { + return _LabelImportantTwoTone.default; + } +}); +Object.defineProperty(exports, "LabelOff", { + enumerable: true, + get: function () { + return _LabelOff.default; + } +}); +Object.defineProperty(exports, "LabelOffOutlined", { + enumerable: true, + get: function () { + return _LabelOffOutlined.default; + } +}); +Object.defineProperty(exports, "LabelOffRounded", { + enumerable: true, + get: function () { + return _LabelOffRounded.default; + } +}); +Object.defineProperty(exports, "LabelOffSharp", { + enumerable: true, + get: function () { + return _LabelOffSharp.default; + } +}); +Object.defineProperty(exports, "LabelOffTwoTone", { + enumerable: true, + get: function () { + return _LabelOffTwoTone.default; + } +}); +Object.defineProperty(exports, "LabelOutlined", { + enumerable: true, + get: function () { + return _LabelOutlined.default; + } +}); +Object.defineProperty(exports, "LabelRounded", { + enumerable: true, + get: function () { + return _LabelRounded.default; + } +}); +Object.defineProperty(exports, "LabelSharp", { + enumerable: true, + get: function () { + return _LabelSharp.default; + } +}); +Object.defineProperty(exports, "LabelTwoTone", { + enumerable: true, + get: function () { + return _LabelTwoTone.default; + } +}); +Object.defineProperty(exports, "Landscape", { + enumerable: true, + get: function () { + return _Landscape.default; + } +}); +Object.defineProperty(exports, "LandscapeOutlined", { + enumerable: true, + get: function () { + return _LandscapeOutlined.default; + } +}); +Object.defineProperty(exports, "LandscapeRounded", { + enumerable: true, + get: function () { + return _LandscapeRounded.default; + } +}); +Object.defineProperty(exports, "LandscapeSharp", { + enumerable: true, + get: function () { + return _LandscapeSharp.default; + } +}); +Object.defineProperty(exports, "LandscapeTwoTone", { + enumerable: true, + get: function () { + return _LandscapeTwoTone.default; + } +}); +Object.defineProperty(exports, "Language", { + enumerable: true, + get: function () { + return _Language.default; + } +}); +Object.defineProperty(exports, "LanguageOutlined", { + enumerable: true, + get: function () { + return _LanguageOutlined.default; + } +}); +Object.defineProperty(exports, "LanguageRounded", { + enumerable: true, + get: function () { + return _LanguageRounded.default; + } +}); +Object.defineProperty(exports, "LanguageSharp", { + enumerable: true, + get: function () { + return _LanguageSharp.default; + } +}); +Object.defineProperty(exports, "LanguageTwoTone", { + enumerable: true, + get: function () { + return _LanguageTwoTone.default; + } +}); +Object.defineProperty(exports, "Laptop", { + enumerable: true, + get: function () { + return _Laptop.default; + } +}); +Object.defineProperty(exports, "LaptopChromebook", { + enumerable: true, + get: function () { + return _LaptopChromebook.default; + } +}); +Object.defineProperty(exports, "LaptopChromebookOutlined", { + enumerable: true, + get: function () { + return _LaptopChromebookOutlined.default; + } +}); +Object.defineProperty(exports, "LaptopChromebookRounded", { + enumerable: true, + get: function () { + return _LaptopChromebookRounded.default; + } +}); +Object.defineProperty(exports, "LaptopChromebookSharp", { + enumerable: true, + get: function () { + return _LaptopChromebookSharp.default; + } +}); +Object.defineProperty(exports, "LaptopChromebookTwoTone", { + enumerable: true, + get: function () { + return _LaptopChromebookTwoTone.default; + } +}); +Object.defineProperty(exports, "LaptopMac", { + enumerable: true, + get: function () { + return _LaptopMac.default; + } +}); +Object.defineProperty(exports, "LaptopMacOutlined", { + enumerable: true, + get: function () { + return _LaptopMacOutlined.default; + } +}); +Object.defineProperty(exports, "LaptopMacRounded", { + enumerable: true, + get: function () { + return _LaptopMacRounded.default; + } +}); +Object.defineProperty(exports, "LaptopMacSharp", { + enumerable: true, + get: function () { + return _LaptopMacSharp.default; + } +}); +Object.defineProperty(exports, "LaptopMacTwoTone", { + enumerable: true, + get: function () { + return _LaptopMacTwoTone.default; + } +}); +Object.defineProperty(exports, "LaptopOutlined", { + enumerable: true, + get: function () { + return _LaptopOutlined.default; + } +}); +Object.defineProperty(exports, "LaptopRounded", { + enumerable: true, + get: function () { + return _LaptopRounded.default; + } +}); +Object.defineProperty(exports, "LaptopSharp", { + enumerable: true, + get: function () { + return _LaptopSharp.default; + } +}); +Object.defineProperty(exports, "LaptopTwoTone", { + enumerable: true, + get: function () { + return _LaptopTwoTone.default; + } +}); +Object.defineProperty(exports, "LaptopWindows", { + enumerable: true, + get: function () { + return _LaptopWindows.default; + } +}); +Object.defineProperty(exports, "LaptopWindowsOutlined", { + enumerable: true, + get: function () { + return _LaptopWindowsOutlined.default; + } +}); +Object.defineProperty(exports, "LaptopWindowsRounded", { + enumerable: true, + get: function () { + return _LaptopWindowsRounded.default; + } +}); +Object.defineProperty(exports, "LaptopWindowsSharp", { + enumerable: true, + get: function () { + return _LaptopWindowsSharp.default; + } +}); +Object.defineProperty(exports, "LaptopWindowsTwoTone", { + enumerable: true, + get: function () { + return _LaptopWindowsTwoTone.default; + } +}); +Object.defineProperty(exports, "LastPage", { + enumerable: true, + get: function () { + return _LastPage.default; + } +}); +Object.defineProperty(exports, "LastPageOutlined", { + enumerable: true, + get: function () { + return _LastPageOutlined.default; + } +}); +Object.defineProperty(exports, "LastPageRounded", { + enumerable: true, + get: function () { + return _LastPageRounded.default; + } +}); +Object.defineProperty(exports, "LastPageSharp", { + enumerable: true, + get: function () { + return _LastPageSharp.default; + } +}); +Object.defineProperty(exports, "LastPageTwoTone", { + enumerable: true, + get: function () { + return _LastPageTwoTone.default; + } +}); +Object.defineProperty(exports, "Launch", { + enumerable: true, + get: function () { + return _Launch.default; + } +}); +Object.defineProperty(exports, "LaunchOutlined", { + enumerable: true, + get: function () { + return _LaunchOutlined.default; + } +}); +Object.defineProperty(exports, "LaunchRounded", { + enumerable: true, + get: function () { + return _LaunchRounded.default; + } +}); +Object.defineProperty(exports, "LaunchSharp", { + enumerable: true, + get: function () { + return _LaunchSharp.default; + } +}); +Object.defineProperty(exports, "LaunchTwoTone", { + enumerable: true, + get: function () { + return _LaunchTwoTone.default; + } +}); +Object.defineProperty(exports, "Layers", { + enumerable: true, + get: function () { + return _Layers.default; + } +}); +Object.defineProperty(exports, "LayersClear", { + enumerable: true, + get: function () { + return _LayersClear.default; + } +}); +Object.defineProperty(exports, "LayersClearOutlined", { + enumerable: true, + get: function () { + return _LayersClearOutlined.default; + } +}); +Object.defineProperty(exports, "LayersClearRounded", { + enumerable: true, + get: function () { + return _LayersClearRounded.default; + } +}); +Object.defineProperty(exports, "LayersClearSharp", { + enumerable: true, + get: function () { + return _LayersClearSharp.default; + } +}); +Object.defineProperty(exports, "LayersClearTwoTone", { + enumerable: true, + get: function () { + return _LayersClearTwoTone.default; + } +}); +Object.defineProperty(exports, "LayersOutlined", { + enumerable: true, + get: function () { + return _LayersOutlined.default; + } +}); +Object.defineProperty(exports, "LayersRounded", { + enumerable: true, + get: function () { + return _LayersRounded.default; + } +}); +Object.defineProperty(exports, "LayersSharp", { + enumerable: true, + get: function () { + return _LayersSharp.default; + } +}); +Object.defineProperty(exports, "LayersTwoTone", { + enumerable: true, + get: function () { + return _LayersTwoTone.default; + } +}); +Object.defineProperty(exports, "Leaderboard", { + enumerable: true, + get: function () { + return _Leaderboard.default; + } +}); +Object.defineProperty(exports, "LeaderboardOutlined", { + enumerable: true, + get: function () { + return _LeaderboardOutlined.default; + } +}); +Object.defineProperty(exports, "LeaderboardRounded", { + enumerable: true, + get: function () { + return _LeaderboardRounded.default; + } +}); +Object.defineProperty(exports, "LeaderboardSharp", { + enumerable: true, + get: function () { + return _LeaderboardSharp.default; + } +}); +Object.defineProperty(exports, "LeaderboardTwoTone", { + enumerable: true, + get: function () { + return _LeaderboardTwoTone.default; + } +}); +Object.defineProperty(exports, "LeakAdd", { + enumerable: true, + get: function () { + return _LeakAdd.default; + } +}); +Object.defineProperty(exports, "LeakAddOutlined", { + enumerable: true, + get: function () { + return _LeakAddOutlined.default; + } +}); +Object.defineProperty(exports, "LeakAddRounded", { + enumerable: true, + get: function () { + return _LeakAddRounded.default; + } +}); +Object.defineProperty(exports, "LeakAddSharp", { + enumerable: true, + get: function () { + return _LeakAddSharp.default; + } +}); +Object.defineProperty(exports, "LeakAddTwoTone", { + enumerable: true, + get: function () { + return _LeakAddTwoTone.default; + } +}); +Object.defineProperty(exports, "LeakRemove", { + enumerable: true, + get: function () { + return _LeakRemove.default; + } +}); +Object.defineProperty(exports, "LeakRemoveOutlined", { + enumerable: true, + get: function () { + return _LeakRemoveOutlined.default; + } +}); +Object.defineProperty(exports, "LeakRemoveRounded", { + enumerable: true, + get: function () { + return _LeakRemoveRounded.default; + } +}); +Object.defineProperty(exports, "LeakRemoveSharp", { + enumerable: true, + get: function () { + return _LeakRemoveSharp.default; + } +}); +Object.defineProperty(exports, "LeakRemoveTwoTone", { + enumerable: true, + get: function () { + return _LeakRemoveTwoTone.default; + } +}); +Object.defineProperty(exports, "LegendToggle", { + enumerable: true, + get: function () { + return _LegendToggle.default; + } +}); +Object.defineProperty(exports, "LegendToggleOutlined", { + enumerable: true, + get: function () { + return _LegendToggleOutlined.default; + } +}); +Object.defineProperty(exports, "LegendToggleRounded", { + enumerable: true, + get: function () { + return _LegendToggleRounded.default; + } +}); +Object.defineProperty(exports, "LegendToggleSharp", { + enumerable: true, + get: function () { + return _LegendToggleSharp.default; + } +}); +Object.defineProperty(exports, "LegendToggleTwoTone", { + enumerable: true, + get: function () { + return _LegendToggleTwoTone.default; + } +}); +Object.defineProperty(exports, "Lens", { + enumerable: true, + get: function () { + return _Lens.default; + } +}); +Object.defineProperty(exports, "LensBlur", { + enumerable: true, + get: function () { + return _LensBlur.default; + } +}); +Object.defineProperty(exports, "LensBlurOutlined", { + enumerable: true, + get: function () { + return _LensBlurOutlined.default; + } +}); +Object.defineProperty(exports, "LensBlurRounded", { + enumerable: true, + get: function () { + return _LensBlurRounded.default; + } +}); +Object.defineProperty(exports, "LensBlurSharp", { + enumerable: true, + get: function () { + return _LensBlurSharp.default; + } +}); +Object.defineProperty(exports, "LensBlurTwoTone", { + enumerable: true, + get: function () { + return _LensBlurTwoTone.default; + } +}); +Object.defineProperty(exports, "LensOutlined", { + enumerable: true, + get: function () { + return _LensOutlined.default; + } +}); +Object.defineProperty(exports, "LensRounded", { + enumerable: true, + get: function () { + return _LensRounded.default; + } +}); +Object.defineProperty(exports, "LensSharp", { + enumerable: true, + get: function () { + return _LensSharp.default; + } +}); +Object.defineProperty(exports, "LensTwoTone", { + enumerable: true, + get: function () { + return _LensTwoTone.default; + } +}); +Object.defineProperty(exports, "LibraryAdd", { + enumerable: true, + get: function () { + return _LibraryAdd.default; + } +}); +Object.defineProperty(exports, "LibraryAddCheck", { + enumerable: true, + get: function () { + return _LibraryAddCheck.default; + } +}); +Object.defineProperty(exports, "LibraryAddCheckOutlined", { + enumerable: true, + get: function () { + return _LibraryAddCheckOutlined.default; + } +}); +Object.defineProperty(exports, "LibraryAddCheckRounded", { + enumerable: true, + get: function () { + return _LibraryAddCheckRounded.default; + } +}); +Object.defineProperty(exports, "LibraryAddCheckSharp", { + enumerable: true, + get: function () { + return _LibraryAddCheckSharp.default; + } +}); +Object.defineProperty(exports, "LibraryAddCheckTwoTone", { + enumerable: true, + get: function () { + return _LibraryAddCheckTwoTone.default; + } +}); +Object.defineProperty(exports, "LibraryAddOutlined", { + enumerable: true, + get: function () { + return _LibraryAddOutlined.default; + } +}); +Object.defineProperty(exports, "LibraryAddRounded", { + enumerable: true, + get: function () { + return _LibraryAddRounded.default; + } +}); +Object.defineProperty(exports, "LibraryAddSharp", { + enumerable: true, + get: function () { + return _LibraryAddSharp.default; + } +}); +Object.defineProperty(exports, "LibraryAddTwoTone", { + enumerable: true, + get: function () { + return _LibraryAddTwoTone.default; + } +}); +Object.defineProperty(exports, "LibraryBooks", { + enumerable: true, + get: function () { + return _LibraryBooks.default; + } +}); +Object.defineProperty(exports, "LibraryBooksOutlined", { + enumerable: true, + get: function () { + return _LibraryBooksOutlined.default; + } +}); +Object.defineProperty(exports, "LibraryBooksRounded", { + enumerable: true, + get: function () { + return _LibraryBooksRounded.default; + } +}); +Object.defineProperty(exports, "LibraryBooksSharp", { + enumerable: true, + get: function () { + return _LibraryBooksSharp.default; + } +}); +Object.defineProperty(exports, "LibraryBooksTwoTone", { + enumerable: true, + get: function () { + return _LibraryBooksTwoTone.default; + } +}); +Object.defineProperty(exports, "LibraryMusic", { + enumerable: true, + get: function () { + return _LibraryMusic.default; + } +}); +Object.defineProperty(exports, "LibraryMusicOutlined", { + enumerable: true, + get: function () { + return _LibraryMusicOutlined.default; + } +}); +Object.defineProperty(exports, "LibraryMusicRounded", { + enumerable: true, + get: function () { + return _LibraryMusicRounded.default; + } +}); +Object.defineProperty(exports, "LibraryMusicSharp", { + enumerable: true, + get: function () { + return _LibraryMusicSharp.default; + } +}); +Object.defineProperty(exports, "LibraryMusicTwoTone", { + enumerable: true, + get: function () { + return _LibraryMusicTwoTone.default; + } +}); +Object.defineProperty(exports, "Light", { + enumerable: true, + get: function () { + return _Light.default; + } +}); +Object.defineProperty(exports, "LightMode", { + enumerable: true, + get: function () { + return _LightMode.default; + } +}); +Object.defineProperty(exports, "LightModeOutlined", { + enumerable: true, + get: function () { + return _LightModeOutlined.default; + } +}); +Object.defineProperty(exports, "LightModeRounded", { + enumerable: true, + get: function () { + return _LightModeRounded.default; + } +}); +Object.defineProperty(exports, "LightModeSharp", { + enumerable: true, + get: function () { + return _LightModeSharp.default; + } +}); +Object.defineProperty(exports, "LightModeTwoTone", { + enumerable: true, + get: function () { + return _LightModeTwoTone.default; + } +}); +Object.defineProperty(exports, "LightOutlined", { + enumerable: true, + get: function () { + return _LightOutlined.default; + } +}); +Object.defineProperty(exports, "LightRounded", { + enumerable: true, + get: function () { + return _LightRounded.default; + } +}); +Object.defineProperty(exports, "LightSharp", { + enumerable: true, + get: function () { + return _LightSharp.default; + } +}); +Object.defineProperty(exports, "LightTwoTone", { + enumerable: true, + get: function () { + return _LightTwoTone.default; + } +}); +Object.defineProperty(exports, "Lightbulb", { + enumerable: true, + get: function () { + return _Lightbulb.default; + } +}); +Object.defineProperty(exports, "LightbulbOutlined", { + enumerable: true, + get: function () { + return _LightbulbOutlined.default; + } +}); +Object.defineProperty(exports, "LightbulbRounded", { + enumerable: true, + get: function () { + return _LightbulbRounded.default; + } +}); +Object.defineProperty(exports, "LightbulbSharp", { + enumerable: true, + get: function () { + return _LightbulbSharp.default; + } +}); +Object.defineProperty(exports, "LightbulbTwoTone", { + enumerable: true, + get: function () { + return _LightbulbTwoTone.default; + } +}); +Object.defineProperty(exports, "LineStyle", { + enumerable: true, + get: function () { + return _LineStyle.default; + } +}); +Object.defineProperty(exports, "LineStyleOutlined", { + enumerable: true, + get: function () { + return _LineStyleOutlined.default; + } +}); +Object.defineProperty(exports, "LineStyleRounded", { + enumerable: true, + get: function () { + return _LineStyleRounded.default; + } +}); +Object.defineProperty(exports, "LineStyleSharp", { + enumerable: true, + get: function () { + return _LineStyleSharp.default; + } +}); +Object.defineProperty(exports, "LineStyleTwoTone", { + enumerable: true, + get: function () { + return _LineStyleTwoTone.default; + } +}); +Object.defineProperty(exports, "LineWeight", { + enumerable: true, + get: function () { + return _LineWeight.default; + } +}); +Object.defineProperty(exports, "LineWeightOutlined", { + enumerable: true, + get: function () { + return _LineWeightOutlined.default; + } +}); +Object.defineProperty(exports, "LineWeightRounded", { + enumerable: true, + get: function () { + return _LineWeightRounded.default; + } +}); +Object.defineProperty(exports, "LineWeightSharp", { + enumerable: true, + get: function () { + return _LineWeightSharp.default; + } +}); +Object.defineProperty(exports, "LineWeightTwoTone", { + enumerable: true, + get: function () { + return _LineWeightTwoTone.default; + } +}); +Object.defineProperty(exports, "LinearScale", { + enumerable: true, + get: function () { + return _LinearScale.default; + } +}); +Object.defineProperty(exports, "LinearScaleOutlined", { + enumerable: true, + get: function () { + return _LinearScaleOutlined.default; + } +}); +Object.defineProperty(exports, "LinearScaleRounded", { + enumerable: true, + get: function () { + return _LinearScaleRounded.default; + } +}); +Object.defineProperty(exports, "LinearScaleSharp", { + enumerable: true, + get: function () { + return _LinearScaleSharp.default; + } +}); +Object.defineProperty(exports, "LinearScaleTwoTone", { + enumerable: true, + get: function () { + return _LinearScaleTwoTone.default; + } +}); +Object.defineProperty(exports, "Link", { + enumerable: true, + get: function () { + return _Link.default; + } +}); +Object.defineProperty(exports, "LinkOff", { + enumerable: true, + get: function () { + return _LinkOff.default; + } +}); +Object.defineProperty(exports, "LinkOffOutlined", { + enumerable: true, + get: function () { + return _LinkOffOutlined.default; + } +}); +Object.defineProperty(exports, "LinkOffRounded", { + enumerable: true, + get: function () { + return _LinkOffRounded.default; + } +}); +Object.defineProperty(exports, "LinkOffSharp", { + enumerable: true, + get: function () { + return _LinkOffSharp.default; + } +}); +Object.defineProperty(exports, "LinkOffTwoTone", { + enumerable: true, + get: function () { + return _LinkOffTwoTone.default; + } +}); +Object.defineProperty(exports, "LinkOutlined", { + enumerable: true, + get: function () { + return _LinkOutlined.default; + } +}); +Object.defineProperty(exports, "LinkRounded", { + enumerable: true, + get: function () { + return _LinkRounded.default; + } +}); +Object.defineProperty(exports, "LinkSharp", { + enumerable: true, + get: function () { + return _LinkSharp.default; + } +}); +Object.defineProperty(exports, "LinkTwoTone", { + enumerable: true, + get: function () { + return _LinkTwoTone.default; + } +}); +Object.defineProperty(exports, "LinkedCamera", { + enumerable: true, + get: function () { + return _LinkedCamera.default; + } +}); +Object.defineProperty(exports, "LinkedCameraOutlined", { + enumerable: true, + get: function () { + return _LinkedCameraOutlined.default; + } +}); +Object.defineProperty(exports, "LinkedCameraRounded", { + enumerable: true, + get: function () { + return _LinkedCameraRounded.default; + } +}); +Object.defineProperty(exports, "LinkedCameraSharp", { + enumerable: true, + get: function () { + return _LinkedCameraSharp.default; + } +}); +Object.defineProperty(exports, "LinkedCameraTwoTone", { + enumerable: true, + get: function () { + return _LinkedCameraTwoTone.default; + } +}); +Object.defineProperty(exports, "LinkedIn", { + enumerable: true, + get: function () { + return _LinkedIn.default; + } +}); +Object.defineProperty(exports, "Liquor", { + enumerable: true, + get: function () { + return _Liquor.default; + } +}); +Object.defineProperty(exports, "LiquorOutlined", { + enumerable: true, + get: function () { + return _LiquorOutlined.default; + } +}); +Object.defineProperty(exports, "LiquorRounded", { + enumerable: true, + get: function () { + return _LiquorRounded.default; + } +}); +Object.defineProperty(exports, "LiquorSharp", { + enumerable: true, + get: function () { + return _LiquorSharp.default; + } +}); +Object.defineProperty(exports, "LiquorTwoTone", { + enumerable: true, + get: function () { + return _LiquorTwoTone.default; + } +}); +Object.defineProperty(exports, "List", { + enumerable: true, + get: function () { + return _List.default; + } +}); +Object.defineProperty(exports, "ListAlt", { + enumerable: true, + get: function () { + return _ListAlt.default; + } +}); +Object.defineProperty(exports, "ListAltOutlined", { + enumerable: true, + get: function () { + return _ListAltOutlined.default; + } +}); +Object.defineProperty(exports, "ListAltRounded", { + enumerable: true, + get: function () { + return _ListAltRounded.default; + } +}); +Object.defineProperty(exports, "ListAltSharp", { + enumerable: true, + get: function () { + return _ListAltSharp.default; + } +}); +Object.defineProperty(exports, "ListAltTwoTone", { + enumerable: true, + get: function () { + return _ListAltTwoTone.default; + } +}); +Object.defineProperty(exports, "ListOutlined", { + enumerable: true, + get: function () { + return _ListOutlined.default; + } +}); +Object.defineProperty(exports, "ListRounded", { + enumerable: true, + get: function () { + return _ListRounded.default; + } +}); +Object.defineProperty(exports, "ListSharp", { + enumerable: true, + get: function () { + return _ListSharp.default; + } +}); +Object.defineProperty(exports, "ListTwoTone", { + enumerable: true, + get: function () { + return _ListTwoTone.default; + } +}); +Object.defineProperty(exports, "LiveHelp", { + enumerable: true, + get: function () { + return _LiveHelp.default; + } +}); +Object.defineProperty(exports, "LiveHelpOutlined", { + enumerable: true, + get: function () { + return _LiveHelpOutlined.default; + } +}); +Object.defineProperty(exports, "LiveHelpRounded", { + enumerable: true, + get: function () { + return _LiveHelpRounded.default; + } +}); +Object.defineProperty(exports, "LiveHelpSharp", { + enumerable: true, + get: function () { + return _LiveHelpSharp.default; + } +}); +Object.defineProperty(exports, "LiveHelpTwoTone", { + enumerable: true, + get: function () { + return _LiveHelpTwoTone.default; + } +}); +Object.defineProperty(exports, "LiveTv", { + enumerable: true, + get: function () { + return _LiveTv.default; + } +}); +Object.defineProperty(exports, "LiveTvOutlined", { + enumerable: true, + get: function () { + return _LiveTvOutlined.default; + } +}); +Object.defineProperty(exports, "LiveTvRounded", { + enumerable: true, + get: function () { + return _LiveTvRounded.default; + } +}); +Object.defineProperty(exports, "LiveTvSharp", { + enumerable: true, + get: function () { + return _LiveTvSharp.default; + } +}); +Object.defineProperty(exports, "LiveTvTwoTone", { + enumerable: true, + get: function () { + return _LiveTvTwoTone.default; + } +}); +Object.defineProperty(exports, "Living", { + enumerable: true, + get: function () { + return _Living.default; + } +}); +Object.defineProperty(exports, "LivingOutlined", { + enumerable: true, + get: function () { + return _LivingOutlined.default; + } +}); +Object.defineProperty(exports, "LivingRounded", { + enumerable: true, + get: function () { + return _LivingRounded.default; + } +}); +Object.defineProperty(exports, "LivingSharp", { + enumerable: true, + get: function () { + return _LivingSharp.default; + } +}); +Object.defineProperty(exports, "LivingTwoTone", { + enumerable: true, + get: function () { + return _LivingTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalActivity", { + enumerable: true, + get: function () { + return _LocalActivity.default; + } +}); +Object.defineProperty(exports, "LocalActivityOutlined", { + enumerable: true, + get: function () { + return _LocalActivityOutlined.default; + } +}); +Object.defineProperty(exports, "LocalActivityRounded", { + enumerable: true, + get: function () { + return _LocalActivityRounded.default; + } +}); +Object.defineProperty(exports, "LocalActivitySharp", { + enumerable: true, + get: function () { + return _LocalActivitySharp.default; + } +}); +Object.defineProperty(exports, "LocalActivityTwoTone", { + enumerable: true, + get: function () { + return _LocalActivityTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalAirport", { + enumerable: true, + get: function () { + return _LocalAirport.default; + } +}); +Object.defineProperty(exports, "LocalAirportOutlined", { + enumerable: true, + get: function () { + return _LocalAirportOutlined.default; + } +}); +Object.defineProperty(exports, "LocalAirportRounded", { + enumerable: true, + get: function () { + return _LocalAirportRounded.default; + } +}); +Object.defineProperty(exports, "LocalAirportSharp", { + enumerable: true, + get: function () { + return _LocalAirportSharp.default; + } +}); +Object.defineProperty(exports, "LocalAirportTwoTone", { + enumerable: true, + get: function () { + return _LocalAirportTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalAtm", { + enumerable: true, + get: function () { + return _LocalAtm.default; + } +}); +Object.defineProperty(exports, "LocalAtmOutlined", { + enumerable: true, + get: function () { + return _LocalAtmOutlined.default; + } +}); +Object.defineProperty(exports, "LocalAtmRounded", { + enumerable: true, + get: function () { + return _LocalAtmRounded.default; + } +}); +Object.defineProperty(exports, "LocalAtmSharp", { + enumerable: true, + get: function () { + return _LocalAtmSharp.default; + } +}); +Object.defineProperty(exports, "LocalAtmTwoTone", { + enumerable: true, + get: function () { + return _LocalAtmTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalBar", { + enumerable: true, + get: function () { + return _LocalBar.default; + } +}); +Object.defineProperty(exports, "LocalBarOutlined", { + enumerable: true, + get: function () { + return _LocalBarOutlined.default; + } +}); +Object.defineProperty(exports, "LocalBarRounded", { + enumerable: true, + get: function () { + return _LocalBarRounded.default; + } +}); +Object.defineProperty(exports, "LocalBarSharp", { + enumerable: true, + get: function () { + return _LocalBarSharp.default; + } +}); +Object.defineProperty(exports, "LocalBarTwoTone", { + enumerable: true, + get: function () { + return _LocalBarTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalCafe", { + enumerable: true, + get: function () { + return _LocalCafe.default; + } +}); +Object.defineProperty(exports, "LocalCafeOutlined", { + enumerable: true, + get: function () { + return _LocalCafeOutlined.default; + } +}); +Object.defineProperty(exports, "LocalCafeRounded", { + enumerable: true, + get: function () { + return _LocalCafeRounded.default; + } +}); +Object.defineProperty(exports, "LocalCafeSharp", { + enumerable: true, + get: function () { + return _LocalCafeSharp.default; + } +}); +Object.defineProperty(exports, "LocalCafeTwoTone", { + enumerable: true, + get: function () { + return _LocalCafeTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalCarWash", { + enumerable: true, + get: function () { + return _LocalCarWash.default; + } +}); +Object.defineProperty(exports, "LocalCarWashOutlined", { + enumerable: true, + get: function () { + return _LocalCarWashOutlined.default; + } +}); +Object.defineProperty(exports, "LocalCarWashRounded", { + enumerable: true, + get: function () { + return _LocalCarWashRounded.default; + } +}); +Object.defineProperty(exports, "LocalCarWashSharp", { + enumerable: true, + get: function () { + return _LocalCarWashSharp.default; + } +}); +Object.defineProperty(exports, "LocalCarWashTwoTone", { + enumerable: true, + get: function () { + return _LocalCarWashTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalConvenienceStore", { + enumerable: true, + get: function () { + return _LocalConvenienceStore.default; + } +}); +Object.defineProperty(exports, "LocalConvenienceStoreOutlined", { + enumerable: true, + get: function () { + return _LocalConvenienceStoreOutlined.default; + } +}); +Object.defineProperty(exports, "LocalConvenienceStoreRounded", { + enumerable: true, + get: function () { + return _LocalConvenienceStoreRounded.default; + } +}); +Object.defineProperty(exports, "LocalConvenienceStoreSharp", { + enumerable: true, + get: function () { + return _LocalConvenienceStoreSharp.default; + } +}); +Object.defineProperty(exports, "LocalConvenienceStoreTwoTone", { + enumerable: true, + get: function () { + return _LocalConvenienceStoreTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalDining", { + enumerable: true, + get: function () { + return _LocalDining.default; + } +}); +Object.defineProperty(exports, "LocalDiningOutlined", { + enumerable: true, + get: function () { + return _LocalDiningOutlined.default; + } +}); +Object.defineProperty(exports, "LocalDiningRounded", { + enumerable: true, + get: function () { + return _LocalDiningRounded.default; + } +}); +Object.defineProperty(exports, "LocalDiningSharp", { + enumerable: true, + get: function () { + return _LocalDiningSharp.default; + } +}); +Object.defineProperty(exports, "LocalDiningTwoTone", { + enumerable: true, + get: function () { + return _LocalDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalDrink", { + enumerable: true, + get: function () { + return _LocalDrink.default; + } +}); +Object.defineProperty(exports, "LocalDrinkOutlined", { + enumerable: true, + get: function () { + return _LocalDrinkOutlined.default; + } +}); +Object.defineProperty(exports, "LocalDrinkRounded", { + enumerable: true, + get: function () { + return _LocalDrinkRounded.default; + } +}); +Object.defineProperty(exports, "LocalDrinkSharp", { + enumerable: true, + get: function () { + return _LocalDrinkSharp.default; + } +}); +Object.defineProperty(exports, "LocalDrinkTwoTone", { + enumerable: true, + get: function () { + return _LocalDrinkTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalFireDepartment", { + enumerable: true, + get: function () { + return _LocalFireDepartment.default; + } +}); +Object.defineProperty(exports, "LocalFireDepartmentOutlined", { + enumerable: true, + get: function () { + return _LocalFireDepartmentOutlined.default; + } +}); +Object.defineProperty(exports, "LocalFireDepartmentRounded", { + enumerable: true, + get: function () { + return _LocalFireDepartmentRounded.default; + } +}); +Object.defineProperty(exports, "LocalFireDepartmentSharp", { + enumerable: true, + get: function () { + return _LocalFireDepartmentSharp.default; + } +}); +Object.defineProperty(exports, "LocalFireDepartmentTwoTone", { + enumerable: true, + get: function () { + return _LocalFireDepartmentTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalFlorist", { + enumerable: true, + get: function () { + return _LocalFlorist.default; + } +}); +Object.defineProperty(exports, "LocalFloristOutlined", { + enumerable: true, + get: function () { + return _LocalFloristOutlined.default; + } +}); +Object.defineProperty(exports, "LocalFloristRounded", { + enumerable: true, + get: function () { + return _LocalFloristRounded.default; + } +}); +Object.defineProperty(exports, "LocalFloristSharp", { + enumerable: true, + get: function () { + return _LocalFloristSharp.default; + } +}); +Object.defineProperty(exports, "LocalFloristTwoTone", { + enumerable: true, + get: function () { + return _LocalFloristTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalGasStation", { + enumerable: true, + get: function () { + return _LocalGasStation.default; + } +}); +Object.defineProperty(exports, "LocalGasStationOutlined", { + enumerable: true, + get: function () { + return _LocalGasStationOutlined.default; + } +}); +Object.defineProperty(exports, "LocalGasStationRounded", { + enumerable: true, + get: function () { + return _LocalGasStationRounded.default; + } +}); +Object.defineProperty(exports, "LocalGasStationSharp", { + enumerable: true, + get: function () { + return _LocalGasStationSharp.default; + } +}); +Object.defineProperty(exports, "LocalGasStationTwoTone", { + enumerable: true, + get: function () { + return _LocalGasStationTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalGroceryStore", { + enumerable: true, + get: function () { + return _LocalGroceryStore.default; + } +}); +Object.defineProperty(exports, "LocalGroceryStoreOutlined", { + enumerable: true, + get: function () { + return _LocalGroceryStoreOutlined.default; + } +}); +Object.defineProperty(exports, "LocalGroceryStoreRounded", { + enumerable: true, + get: function () { + return _LocalGroceryStoreRounded.default; + } +}); +Object.defineProperty(exports, "LocalGroceryStoreSharp", { + enumerable: true, + get: function () { + return _LocalGroceryStoreSharp.default; + } +}); +Object.defineProperty(exports, "LocalGroceryStoreTwoTone", { + enumerable: true, + get: function () { + return _LocalGroceryStoreTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalHospital", { + enumerable: true, + get: function () { + return _LocalHospital.default; + } +}); +Object.defineProperty(exports, "LocalHospitalOutlined", { + enumerable: true, + get: function () { + return _LocalHospitalOutlined.default; + } +}); +Object.defineProperty(exports, "LocalHospitalRounded", { + enumerable: true, + get: function () { + return _LocalHospitalRounded.default; + } +}); +Object.defineProperty(exports, "LocalHospitalSharp", { + enumerable: true, + get: function () { + return _LocalHospitalSharp.default; + } +}); +Object.defineProperty(exports, "LocalHospitalTwoTone", { + enumerable: true, + get: function () { + return _LocalHospitalTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalHotel", { + enumerable: true, + get: function () { + return _LocalHotel.default; + } +}); +Object.defineProperty(exports, "LocalHotelOutlined", { + enumerable: true, + get: function () { + return _LocalHotelOutlined.default; + } +}); +Object.defineProperty(exports, "LocalHotelRounded", { + enumerable: true, + get: function () { + return _LocalHotelRounded.default; + } +}); +Object.defineProperty(exports, "LocalHotelSharp", { + enumerable: true, + get: function () { + return _LocalHotelSharp.default; + } +}); +Object.defineProperty(exports, "LocalHotelTwoTone", { + enumerable: true, + get: function () { + return _LocalHotelTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalLaundryService", { + enumerable: true, + get: function () { + return _LocalLaundryService.default; + } +}); +Object.defineProperty(exports, "LocalLaundryServiceOutlined", { + enumerable: true, + get: function () { + return _LocalLaundryServiceOutlined.default; + } +}); +Object.defineProperty(exports, "LocalLaundryServiceRounded", { + enumerable: true, + get: function () { + return _LocalLaundryServiceRounded.default; + } +}); +Object.defineProperty(exports, "LocalLaundryServiceSharp", { + enumerable: true, + get: function () { + return _LocalLaundryServiceSharp.default; + } +}); +Object.defineProperty(exports, "LocalLaundryServiceTwoTone", { + enumerable: true, + get: function () { + return _LocalLaundryServiceTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalLibrary", { + enumerable: true, + get: function () { + return _LocalLibrary.default; + } +}); +Object.defineProperty(exports, "LocalLibraryOutlined", { + enumerable: true, + get: function () { + return _LocalLibraryOutlined.default; + } +}); +Object.defineProperty(exports, "LocalLibraryRounded", { + enumerable: true, + get: function () { + return _LocalLibraryRounded.default; + } +}); +Object.defineProperty(exports, "LocalLibrarySharp", { + enumerable: true, + get: function () { + return _LocalLibrarySharp.default; + } +}); +Object.defineProperty(exports, "LocalLibraryTwoTone", { + enumerable: true, + get: function () { + return _LocalLibraryTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalMall", { + enumerable: true, + get: function () { + return _LocalMall.default; + } +}); +Object.defineProperty(exports, "LocalMallOutlined", { + enumerable: true, + get: function () { + return _LocalMallOutlined.default; + } +}); +Object.defineProperty(exports, "LocalMallRounded", { + enumerable: true, + get: function () { + return _LocalMallRounded.default; + } +}); +Object.defineProperty(exports, "LocalMallSharp", { + enumerable: true, + get: function () { + return _LocalMallSharp.default; + } +}); +Object.defineProperty(exports, "LocalMallTwoTone", { + enumerable: true, + get: function () { + return _LocalMallTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalMovies", { + enumerable: true, + get: function () { + return _LocalMovies.default; + } +}); +Object.defineProperty(exports, "LocalMoviesOutlined", { + enumerable: true, + get: function () { + return _LocalMoviesOutlined.default; + } +}); +Object.defineProperty(exports, "LocalMoviesRounded", { + enumerable: true, + get: function () { + return _LocalMoviesRounded.default; + } +}); +Object.defineProperty(exports, "LocalMoviesSharp", { + enumerable: true, + get: function () { + return _LocalMoviesSharp.default; + } +}); +Object.defineProperty(exports, "LocalMoviesTwoTone", { + enumerable: true, + get: function () { + return _LocalMoviesTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalOffer", { + enumerable: true, + get: function () { + return _LocalOffer.default; + } +}); +Object.defineProperty(exports, "LocalOfferOutlined", { + enumerable: true, + get: function () { + return _LocalOfferOutlined.default; + } +}); +Object.defineProperty(exports, "LocalOfferRounded", { + enumerable: true, + get: function () { + return _LocalOfferRounded.default; + } +}); +Object.defineProperty(exports, "LocalOfferSharp", { + enumerable: true, + get: function () { + return _LocalOfferSharp.default; + } +}); +Object.defineProperty(exports, "LocalOfferTwoTone", { + enumerable: true, + get: function () { + return _LocalOfferTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalParking", { + enumerable: true, + get: function () { + return _LocalParking.default; + } +}); +Object.defineProperty(exports, "LocalParkingOutlined", { + enumerable: true, + get: function () { + return _LocalParkingOutlined.default; + } +}); +Object.defineProperty(exports, "LocalParkingRounded", { + enumerable: true, + get: function () { + return _LocalParkingRounded.default; + } +}); +Object.defineProperty(exports, "LocalParkingSharp", { + enumerable: true, + get: function () { + return _LocalParkingSharp.default; + } +}); +Object.defineProperty(exports, "LocalParkingTwoTone", { + enumerable: true, + get: function () { + return _LocalParkingTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalPharmacy", { + enumerable: true, + get: function () { + return _LocalPharmacy.default; + } +}); +Object.defineProperty(exports, "LocalPharmacyOutlined", { + enumerable: true, + get: function () { + return _LocalPharmacyOutlined.default; + } +}); +Object.defineProperty(exports, "LocalPharmacyRounded", { + enumerable: true, + get: function () { + return _LocalPharmacyRounded.default; + } +}); +Object.defineProperty(exports, "LocalPharmacySharp", { + enumerable: true, + get: function () { + return _LocalPharmacySharp.default; + } +}); +Object.defineProperty(exports, "LocalPharmacyTwoTone", { + enumerable: true, + get: function () { + return _LocalPharmacyTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalPhone", { + enumerable: true, + get: function () { + return _LocalPhone.default; + } +}); +Object.defineProperty(exports, "LocalPhoneOutlined", { + enumerable: true, + get: function () { + return _LocalPhoneOutlined.default; + } +}); +Object.defineProperty(exports, "LocalPhoneRounded", { + enumerable: true, + get: function () { + return _LocalPhoneRounded.default; + } +}); +Object.defineProperty(exports, "LocalPhoneSharp", { + enumerable: true, + get: function () { + return _LocalPhoneSharp.default; + } +}); +Object.defineProperty(exports, "LocalPhoneTwoTone", { + enumerable: true, + get: function () { + return _LocalPhoneTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalPizza", { + enumerable: true, + get: function () { + return _LocalPizza.default; + } +}); +Object.defineProperty(exports, "LocalPizzaOutlined", { + enumerable: true, + get: function () { + return _LocalPizzaOutlined.default; + } +}); +Object.defineProperty(exports, "LocalPizzaRounded", { + enumerable: true, + get: function () { + return _LocalPizzaRounded.default; + } +}); +Object.defineProperty(exports, "LocalPizzaSharp", { + enumerable: true, + get: function () { + return _LocalPizzaSharp.default; + } +}); +Object.defineProperty(exports, "LocalPizzaTwoTone", { + enumerable: true, + get: function () { + return _LocalPizzaTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalPlay", { + enumerable: true, + get: function () { + return _LocalPlay.default; + } +}); +Object.defineProperty(exports, "LocalPlayOutlined", { + enumerable: true, + get: function () { + return _LocalPlayOutlined.default; + } +}); +Object.defineProperty(exports, "LocalPlayRounded", { + enumerable: true, + get: function () { + return _LocalPlayRounded.default; + } +}); +Object.defineProperty(exports, "LocalPlaySharp", { + enumerable: true, + get: function () { + return _LocalPlaySharp.default; + } +}); +Object.defineProperty(exports, "LocalPlayTwoTone", { + enumerable: true, + get: function () { + return _LocalPlayTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalPolice", { + enumerable: true, + get: function () { + return _LocalPolice.default; + } +}); +Object.defineProperty(exports, "LocalPoliceOutlined", { + enumerable: true, + get: function () { + return _LocalPoliceOutlined.default; + } +}); +Object.defineProperty(exports, "LocalPoliceRounded", { + enumerable: true, + get: function () { + return _LocalPoliceRounded.default; + } +}); +Object.defineProperty(exports, "LocalPoliceSharp", { + enumerable: true, + get: function () { + return _LocalPoliceSharp.default; + } +}); +Object.defineProperty(exports, "LocalPoliceTwoTone", { + enumerable: true, + get: function () { + return _LocalPoliceTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalPostOffice", { + enumerable: true, + get: function () { + return _LocalPostOffice.default; + } +}); +Object.defineProperty(exports, "LocalPostOfficeOutlined", { + enumerable: true, + get: function () { + return _LocalPostOfficeOutlined.default; + } +}); +Object.defineProperty(exports, "LocalPostOfficeRounded", { + enumerable: true, + get: function () { + return _LocalPostOfficeRounded.default; + } +}); +Object.defineProperty(exports, "LocalPostOfficeSharp", { + enumerable: true, + get: function () { + return _LocalPostOfficeSharp.default; + } +}); +Object.defineProperty(exports, "LocalPostOfficeTwoTone", { + enumerable: true, + get: function () { + return _LocalPostOfficeTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalPrintshop", { + enumerable: true, + get: function () { + return _LocalPrintshop.default; + } +}); +Object.defineProperty(exports, "LocalPrintshopOutlined", { + enumerable: true, + get: function () { + return _LocalPrintshopOutlined.default; + } +}); +Object.defineProperty(exports, "LocalPrintshopRounded", { + enumerable: true, + get: function () { + return _LocalPrintshopRounded.default; + } +}); +Object.defineProperty(exports, "LocalPrintshopSharp", { + enumerable: true, + get: function () { + return _LocalPrintshopSharp.default; + } +}); +Object.defineProperty(exports, "LocalPrintshopTwoTone", { + enumerable: true, + get: function () { + return _LocalPrintshopTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalSee", { + enumerable: true, + get: function () { + return _LocalSee.default; + } +}); +Object.defineProperty(exports, "LocalSeeOutlined", { + enumerable: true, + get: function () { + return _LocalSeeOutlined.default; + } +}); +Object.defineProperty(exports, "LocalSeeRounded", { + enumerable: true, + get: function () { + return _LocalSeeRounded.default; + } +}); +Object.defineProperty(exports, "LocalSeeSharp", { + enumerable: true, + get: function () { + return _LocalSeeSharp.default; + } +}); +Object.defineProperty(exports, "LocalSeeTwoTone", { + enumerable: true, + get: function () { + return _LocalSeeTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalShipping", { + enumerable: true, + get: function () { + return _LocalShipping.default; + } +}); +Object.defineProperty(exports, "LocalShippingOutlined", { + enumerable: true, + get: function () { + return _LocalShippingOutlined.default; + } +}); +Object.defineProperty(exports, "LocalShippingRounded", { + enumerable: true, + get: function () { + return _LocalShippingRounded.default; + } +}); +Object.defineProperty(exports, "LocalShippingSharp", { + enumerable: true, + get: function () { + return _LocalShippingSharp.default; + } +}); +Object.defineProperty(exports, "LocalShippingTwoTone", { + enumerable: true, + get: function () { + return _LocalShippingTwoTone.default; + } +}); +Object.defineProperty(exports, "LocalTaxi", { + enumerable: true, + get: function () { + return _LocalTaxi.default; + } +}); +Object.defineProperty(exports, "LocalTaxiOutlined", { + enumerable: true, + get: function () { + return _LocalTaxiOutlined.default; + } +}); +Object.defineProperty(exports, "LocalTaxiRounded", { + enumerable: true, + get: function () { + return _LocalTaxiRounded.default; + } +}); +Object.defineProperty(exports, "LocalTaxiSharp", { + enumerable: true, + get: function () { + return _LocalTaxiSharp.default; + } +}); +Object.defineProperty(exports, "LocalTaxiTwoTone", { + enumerable: true, + get: function () { + return _LocalTaxiTwoTone.default; + } +}); +Object.defineProperty(exports, "LocationCity", { + enumerable: true, + get: function () { + return _LocationCity.default; + } +}); +Object.defineProperty(exports, "LocationCityOutlined", { + enumerable: true, + get: function () { + return _LocationCityOutlined.default; + } +}); +Object.defineProperty(exports, "LocationCityRounded", { + enumerable: true, + get: function () { + return _LocationCityRounded.default; + } +}); +Object.defineProperty(exports, "LocationCitySharp", { + enumerable: true, + get: function () { + return _LocationCitySharp.default; + } +}); +Object.defineProperty(exports, "LocationCityTwoTone", { + enumerable: true, + get: function () { + return _LocationCityTwoTone.default; + } +}); +Object.defineProperty(exports, "LocationDisabled", { + enumerable: true, + get: function () { + return _LocationDisabled.default; + } +}); +Object.defineProperty(exports, "LocationDisabledOutlined", { + enumerable: true, + get: function () { + return _LocationDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "LocationDisabledRounded", { + enumerable: true, + get: function () { + return _LocationDisabledRounded.default; + } +}); +Object.defineProperty(exports, "LocationDisabledSharp", { + enumerable: true, + get: function () { + return _LocationDisabledSharp.default; + } +}); +Object.defineProperty(exports, "LocationDisabledTwoTone", { + enumerable: true, + get: function () { + return _LocationDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "LocationOff", { + enumerable: true, + get: function () { + return _LocationOff.default; + } +}); +Object.defineProperty(exports, "LocationOffOutlined", { + enumerable: true, + get: function () { + return _LocationOffOutlined.default; + } +}); +Object.defineProperty(exports, "LocationOffRounded", { + enumerable: true, + get: function () { + return _LocationOffRounded.default; + } +}); +Object.defineProperty(exports, "LocationOffSharp", { + enumerable: true, + get: function () { + return _LocationOffSharp.default; + } +}); +Object.defineProperty(exports, "LocationOffTwoTone", { + enumerable: true, + get: function () { + return _LocationOffTwoTone.default; + } +}); +Object.defineProperty(exports, "LocationOn", { + enumerable: true, + get: function () { + return _LocationOn.default; + } +}); +Object.defineProperty(exports, "LocationOnOutlined", { + enumerable: true, + get: function () { + return _LocationOnOutlined.default; + } +}); +Object.defineProperty(exports, "LocationOnRounded", { + enumerable: true, + get: function () { + return _LocationOnRounded.default; + } +}); +Object.defineProperty(exports, "LocationOnSharp", { + enumerable: true, + get: function () { + return _LocationOnSharp.default; + } +}); +Object.defineProperty(exports, "LocationOnTwoTone", { + enumerable: true, + get: function () { + return _LocationOnTwoTone.default; + } +}); +Object.defineProperty(exports, "LocationSearching", { + enumerable: true, + get: function () { + return _LocationSearching.default; + } +}); +Object.defineProperty(exports, "LocationSearchingOutlined", { + enumerable: true, + get: function () { + return _LocationSearchingOutlined.default; + } +}); +Object.defineProperty(exports, "LocationSearchingRounded", { + enumerable: true, + get: function () { + return _LocationSearchingRounded.default; + } +}); +Object.defineProperty(exports, "LocationSearchingSharp", { + enumerable: true, + get: function () { + return _LocationSearchingSharp.default; + } +}); +Object.defineProperty(exports, "LocationSearchingTwoTone", { + enumerable: true, + get: function () { + return _LocationSearchingTwoTone.default; + } +}); +Object.defineProperty(exports, "Lock", { + enumerable: true, + get: function () { + return _Lock.default; + } +}); +Object.defineProperty(exports, "LockClock", { + enumerable: true, + get: function () { + return _LockClock.default; + } +}); +Object.defineProperty(exports, "LockClockOutlined", { + enumerable: true, + get: function () { + return _LockClockOutlined.default; + } +}); +Object.defineProperty(exports, "LockClockRounded", { + enumerable: true, + get: function () { + return _LockClockRounded.default; + } +}); +Object.defineProperty(exports, "LockClockSharp", { + enumerable: true, + get: function () { + return _LockClockSharp.default; + } +}); +Object.defineProperty(exports, "LockClockTwoTone", { + enumerable: true, + get: function () { + return _LockClockTwoTone.default; + } +}); +Object.defineProperty(exports, "LockOpen", { + enumerable: true, + get: function () { + return _LockOpen.default; + } +}); +Object.defineProperty(exports, "LockOpenOutlined", { + enumerable: true, + get: function () { + return _LockOpenOutlined.default; + } +}); +Object.defineProperty(exports, "LockOpenRounded", { + enumerable: true, + get: function () { + return _LockOpenRounded.default; + } +}); +Object.defineProperty(exports, "LockOpenSharp", { + enumerable: true, + get: function () { + return _LockOpenSharp.default; + } +}); +Object.defineProperty(exports, "LockOpenTwoTone", { + enumerable: true, + get: function () { + return _LockOpenTwoTone.default; + } +}); +Object.defineProperty(exports, "LockOutlined", { + enumerable: true, + get: function () { + return _LockOutlined.default; + } +}); +Object.defineProperty(exports, "LockRounded", { + enumerable: true, + get: function () { + return _LockRounded.default; + } +}); +Object.defineProperty(exports, "LockSharp", { + enumerable: true, + get: function () { + return _LockSharp.default; + } +}); +Object.defineProperty(exports, "LockTwoTone", { + enumerable: true, + get: function () { + return _LockTwoTone.default; + } +}); +Object.defineProperty(exports, "Login", { + enumerable: true, + get: function () { + return _Login.default; + } +}); +Object.defineProperty(exports, "LoginOutlined", { + enumerable: true, + get: function () { + return _LoginOutlined.default; + } +}); +Object.defineProperty(exports, "LoginRounded", { + enumerable: true, + get: function () { + return _LoginRounded.default; + } +}); +Object.defineProperty(exports, "LoginSharp", { + enumerable: true, + get: function () { + return _LoginSharp.default; + } +}); +Object.defineProperty(exports, "LoginTwoTone", { + enumerable: true, + get: function () { + return _LoginTwoTone.default; + } +}); +Object.defineProperty(exports, "Logout", { + enumerable: true, + get: function () { + return _Logout.default; + } +}); +Object.defineProperty(exports, "LogoutOutlined", { + enumerable: true, + get: function () { + return _LogoutOutlined.default; + } +}); +Object.defineProperty(exports, "LogoutRounded", { + enumerable: true, + get: function () { + return _LogoutRounded.default; + } +}); +Object.defineProperty(exports, "LogoutSharp", { + enumerable: true, + get: function () { + return _LogoutSharp.default; + } +}); +Object.defineProperty(exports, "LogoutTwoTone", { + enumerable: true, + get: function () { + return _LogoutTwoTone.default; + } +}); +Object.defineProperty(exports, "Looks", { + enumerable: true, + get: function () { + return _Looks.default; + } +}); +Object.defineProperty(exports, "Looks3", { + enumerable: true, + get: function () { + return _Looks2.default; + } +}); +Object.defineProperty(exports, "Looks3Outlined", { + enumerable: true, + get: function () { + return _Looks3Outlined.default; + } +}); +Object.defineProperty(exports, "Looks3Rounded", { + enumerable: true, + get: function () { + return _Looks3Rounded.default; + } +}); +Object.defineProperty(exports, "Looks3Sharp", { + enumerable: true, + get: function () { + return _Looks3Sharp.default; + } +}); +Object.defineProperty(exports, "Looks3TwoTone", { + enumerable: true, + get: function () { + return _Looks3TwoTone.default; + } +}); +Object.defineProperty(exports, "Looks4", { + enumerable: true, + get: function () { + return _Looks3.default; + } +}); +Object.defineProperty(exports, "Looks4Outlined", { + enumerable: true, + get: function () { + return _Looks4Outlined.default; + } +}); +Object.defineProperty(exports, "Looks4Rounded", { + enumerable: true, + get: function () { + return _Looks4Rounded.default; + } +}); +Object.defineProperty(exports, "Looks4Sharp", { + enumerable: true, + get: function () { + return _Looks4Sharp.default; + } +}); +Object.defineProperty(exports, "Looks4TwoTone", { + enumerable: true, + get: function () { + return _Looks4TwoTone.default; + } +}); +Object.defineProperty(exports, "Looks5", { + enumerable: true, + get: function () { + return _Looks4.default; + } +}); +Object.defineProperty(exports, "Looks5Outlined", { + enumerable: true, + get: function () { + return _Looks5Outlined.default; + } +}); +Object.defineProperty(exports, "Looks5Rounded", { + enumerable: true, + get: function () { + return _Looks5Rounded.default; + } +}); +Object.defineProperty(exports, "Looks5Sharp", { + enumerable: true, + get: function () { + return _Looks5Sharp.default; + } +}); +Object.defineProperty(exports, "Looks5TwoTone", { + enumerable: true, + get: function () { + return _Looks5TwoTone.default; + } +}); +Object.defineProperty(exports, "Looks6", { + enumerable: true, + get: function () { + return _Looks5.default; + } +}); +Object.defineProperty(exports, "Looks6Outlined", { + enumerable: true, + get: function () { + return _Looks6Outlined.default; + } +}); +Object.defineProperty(exports, "Looks6Rounded", { + enumerable: true, + get: function () { + return _Looks6Rounded.default; + } +}); +Object.defineProperty(exports, "Looks6Sharp", { + enumerable: true, + get: function () { + return _Looks6Sharp.default; + } +}); +Object.defineProperty(exports, "Looks6TwoTone", { + enumerable: true, + get: function () { + return _Looks6TwoTone.default; + } +}); +Object.defineProperty(exports, "LooksOne", { + enumerable: true, + get: function () { + return _LooksOne.default; + } +}); +Object.defineProperty(exports, "LooksOneOutlined", { + enumerable: true, + get: function () { + return _LooksOneOutlined.default; + } +}); +Object.defineProperty(exports, "LooksOneRounded", { + enumerable: true, + get: function () { + return _LooksOneRounded.default; + } +}); +Object.defineProperty(exports, "LooksOneSharp", { + enumerable: true, + get: function () { + return _LooksOneSharp.default; + } +}); +Object.defineProperty(exports, "LooksOneTwoTone", { + enumerable: true, + get: function () { + return _LooksOneTwoTone.default; + } +}); +Object.defineProperty(exports, "LooksOutlined", { + enumerable: true, + get: function () { + return _LooksOutlined.default; + } +}); +Object.defineProperty(exports, "LooksRounded", { + enumerable: true, + get: function () { + return _LooksRounded.default; + } +}); +Object.defineProperty(exports, "LooksSharp", { + enumerable: true, + get: function () { + return _LooksSharp.default; + } +}); +Object.defineProperty(exports, "LooksTwo", { + enumerable: true, + get: function () { + return _LooksTwo.default; + } +}); +Object.defineProperty(exports, "LooksTwoOutlined", { + enumerable: true, + get: function () { + return _LooksTwoOutlined.default; + } +}); +Object.defineProperty(exports, "LooksTwoRounded", { + enumerable: true, + get: function () { + return _LooksTwoRounded.default; + } +}); +Object.defineProperty(exports, "LooksTwoSharp", { + enumerable: true, + get: function () { + return _LooksTwoSharp.default; + } +}); +Object.defineProperty(exports, "LooksTwoTone", { + enumerable: true, + get: function () { + return _LooksTwoTone.default; + } +}); +Object.defineProperty(exports, "LooksTwoTwoTone", { + enumerable: true, + get: function () { + return _LooksTwoTwoTone.default; + } +}); +Object.defineProperty(exports, "Loop", { + enumerable: true, + get: function () { + return _Loop.default; + } +}); +Object.defineProperty(exports, "LoopOutlined", { + enumerable: true, + get: function () { + return _LoopOutlined.default; + } +}); +Object.defineProperty(exports, "LoopRounded", { + enumerable: true, + get: function () { + return _LoopRounded.default; + } +}); +Object.defineProperty(exports, "LoopSharp", { + enumerable: true, + get: function () { + return _LoopSharp.default; + } +}); +Object.defineProperty(exports, "LoopTwoTone", { + enumerable: true, + get: function () { + return _LoopTwoTone.default; + } +}); +Object.defineProperty(exports, "Loupe", { + enumerable: true, + get: function () { + return _Loupe.default; + } +}); +Object.defineProperty(exports, "LoupeOutlined", { + enumerable: true, + get: function () { + return _LoupeOutlined.default; + } +}); +Object.defineProperty(exports, "LoupeRounded", { + enumerable: true, + get: function () { + return _LoupeRounded.default; + } +}); +Object.defineProperty(exports, "LoupeSharp", { + enumerable: true, + get: function () { + return _LoupeSharp.default; + } +}); +Object.defineProperty(exports, "LoupeTwoTone", { + enumerable: true, + get: function () { + return _LoupeTwoTone.default; + } +}); +Object.defineProperty(exports, "LowPriority", { + enumerable: true, + get: function () { + return _LowPriority.default; + } +}); +Object.defineProperty(exports, "LowPriorityOutlined", { + enumerable: true, + get: function () { + return _LowPriorityOutlined.default; + } +}); +Object.defineProperty(exports, "LowPriorityRounded", { + enumerable: true, + get: function () { + return _LowPriorityRounded.default; + } +}); +Object.defineProperty(exports, "LowPrioritySharp", { + enumerable: true, + get: function () { + return _LowPrioritySharp.default; + } +}); +Object.defineProperty(exports, "LowPriorityTwoTone", { + enumerable: true, + get: function () { + return _LowPriorityTwoTone.default; + } +}); +Object.defineProperty(exports, "Loyalty", { + enumerable: true, + get: function () { + return _Loyalty.default; + } +}); +Object.defineProperty(exports, "LoyaltyOutlined", { + enumerable: true, + get: function () { + return _LoyaltyOutlined.default; + } +}); +Object.defineProperty(exports, "LoyaltyRounded", { + enumerable: true, + get: function () { + return _LoyaltyRounded.default; + } +}); +Object.defineProperty(exports, "LoyaltySharp", { + enumerable: true, + get: function () { + return _LoyaltySharp.default; + } +}); +Object.defineProperty(exports, "LoyaltyTwoTone", { + enumerable: true, + get: function () { + return _LoyaltyTwoTone.default; + } +}); +Object.defineProperty(exports, "LteMobiledata", { + enumerable: true, + get: function () { + return _LteMobiledata.default; + } +}); +Object.defineProperty(exports, "LteMobiledataOutlined", { + enumerable: true, + get: function () { + return _LteMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "LteMobiledataRounded", { + enumerable: true, + get: function () { + return _LteMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "LteMobiledataSharp", { + enumerable: true, + get: function () { + return _LteMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "LteMobiledataTwoTone", { + enumerable: true, + get: function () { + return _LteMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "LtePlusMobiledata", { + enumerable: true, + get: function () { + return _LtePlusMobiledata.default; + } +}); +Object.defineProperty(exports, "LtePlusMobiledataOutlined", { + enumerable: true, + get: function () { + return _LtePlusMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "LtePlusMobiledataRounded", { + enumerable: true, + get: function () { + return _LtePlusMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "LtePlusMobiledataSharp", { + enumerable: true, + get: function () { + return _LtePlusMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "LtePlusMobiledataTwoTone", { + enumerable: true, + get: function () { + return _LtePlusMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "Luggage", { + enumerable: true, + get: function () { + return _Luggage.default; + } +}); +Object.defineProperty(exports, "LuggageOutlined", { + enumerable: true, + get: function () { + return _LuggageOutlined.default; + } +}); +Object.defineProperty(exports, "LuggageRounded", { + enumerable: true, + get: function () { + return _LuggageRounded.default; + } +}); +Object.defineProperty(exports, "LuggageSharp", { + enumerable: true, + get: function () { + return _LuggageSharp.default; + } +}); +Object.defineProperty(exports, "LuggageTwoTone", { + enumerable: true, + get: function () { + return _LuggageTwoTone.default; + } +}); +Object.defineProperty(exports, "LunchDining", { + enumerable: true, + get: function () { + return _LunchDining.default; + } +}); +Object.defineProperty(exports, "LunchDiningOutlined", { + enumerable: true, + get: function () { + return _LunchDiningOutlined.default; + } +}); +Object.defineProperty(exports, "LunchDiningRounded", { + enumerable: true, + get: function () { + return _LunchDiningRounded.default; + } +}); +Object.defineProperty(exports, "LunchDiningSharp", { + enumerable: true, + get: function () { + return _LunchDiningSharp.default; + } +}); +Object.defineProperty(exports, "LunchDiningTwoTone", { + enumerable: true, + get: function () { + return _LunchDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "Mail", { + enumerable: true, + get: function () { + return _Mail.default; + } +}); +Object.defineProperty(exports, "MailOutline", { + enumerable: true, + get: function () { + return _MailOutline.default; + } +}); +Object.defineProperty(exports, "MailOutlineOutlined", { + enumerable: true, + get: function () { + return _MailOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "MailOutlineRounded", { + enumerable: true, + get: function () { + return _MailOutlineRounded.default; + } +}); +Object.defineProperty(exports, "MailOutlineSharp", { + enumerable: true, + get: function () { + return _MailOutlineSharp.default; + } +}); +Object.defineProperty(exports, "MailOutlineTwoTone", { + enumerable: true, + get: function () { + return _MailOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "MailOutlined", { + enumerable: true, + get: function () { + return _MailOutlined.default; + } +}); +Object.defineProperty(exports, "MailRounded", { + enumerable: true, + get: function () { + return _MailRounded.default; + } +}); +Object.defineProperty(exports, "MailSharp", { + enumerable: true, + get: function () { + return _MailSharp.default; + } +}); +Object.defineProperty(exports, "MailTwoTone", { + enumerable: true, + get: function () { + return _MailTwoTone.default; + } +}); +Object.defineProperty(exports, "Male", { + enumerable: true, + get: function () { + return _Male.default; + } +}); +Object.defineProperty(exports, "MaleOutlined", { + enumerable: true, + get: function () { + return _MaleOutlined.default; + } +}); +Object.defineProperty(exports, "MaleRounded", { + enumerable: true, + get: function () { + return _MaleRounded.default; + } +}); +Object.defineProperty(exports, "MaleSharp", { + enumerable: true, + get: function () { + return _MaleSharp.default; + } +}); +Object.defineProperty(exports, "MaleTwoTone", { + enumerable: true, + get: function () { + return _MaleTwoTone.default; + } +}); +Object.defineProperty(exports, "ManageAccounts", { + enumerable: true, + get: function () { + return _ManageAccounts.default; + } +}); +Object.defineProperty(exports, "ManageAccountsOutlined", { + enumerable: true, + get: function () { + return _ManageAccountsOutlined.default; + } +}); +Object.defineProperty(exports, "ManageAccountsRounded", { + enumerable: true, + get: function () { + return _ManageAccountsRounded.default; + } +}); +Object.defineProperty(exports, "ManageAccountsSharp", { + enumerable: true, + get: function () { + return _ManageAccountsSharp.default; + } +}); +Object.defineProperty(exports, "ManageAccountsTwoTone", { + enumerable: true, + get: function () { + return _ManageAccountsTwoTone.default; + } +}); +Object.defineProperty(exports, "ManageSearch", { + enumerable: true, + get: function () { + return _ManageSearch.default; + } +}); +Object.defineProperty(exports, "ManageSearchOutlined", { + enumerable: true, + get: function () { + return _ManageSearchOutlined.default; + } +}); +Object.defineProperty(exports, "ManageSearchRounded", { + enumerable: true, + get: function () { + return _ManageSearchRounded.default; + } +}); +Object.defineProperty(exports, "ManageSearchSharp", { + enumerable: true, + get: function () { + return _ManageSearchSharp.default; + } +}); +Object.defineProperty(exports, "ManageSearchTwoTone", { + enumerable: true, + get: function () { + return _ManageSearchTwoTone.default; + } +}); +Object.defineProperty(exports, "Map", { + enumerable: true, + get: function () { + return _Map.default; + } +}); +Object.defineProperty(exports, "MapOutlined", { + enumerable: true, + get: function () { + return _MapOutlined.default; + } +}); +Object.defineProperty(exports, "MapRounded", { + enumerable: true, + get: function () { + return _MapRounded.default; + } +}); +Object.defineProperty(exports, "MapSharp", { + enumerable: true, + get: function () { + return _MapSharp.default; + } +}); +Object.defineProperty(exports, "MapTwoTone", { + enumerable: true, + get: function () { + return _MapTwoTone.default; + } +}); +Object.defineProperty(exports, "MapsHomeWork", { + enumerable: true, + get: function () { + return _MapsHomeWork.default; + } +}); +Object.defineProperty(exports, "MapsHomeWorkOutlined", { + enumerable: true, + get: function () { + return _MapsHomeWorkOutlined.default; + } +}); +Object.defineProperty(exports, "MapsHomeWorkRounded", { + enumerable: true, + get: function () { + return _MapsHomeWorkRounded.default; + } +}); +Object.defineProperty(exports, "MapsHomeWorkSharp", { + enumerable: true, + get: function () { + return _MapsHomeWorkSharp.default; + } +}); +Object.defineProperty(exports, "MapsHomeWorkTwoTone", { + enumerable: true, + get: function () { + return _MapsHomeWorkTwoTone.default; + } +}); +Object.defineProperty(exports, "MapsUgc", { + enumerable: true, + get: function () { + return _MapsUgc.default; + } +}); +Object.defineProperty(exports, "MapsUgcOutlined", { + enumerable: true, + get: function () { + return _MapsUgcOutlined.default; + } +}); +Object.defineProperty(exports, "MapsUgcRounded", { + enumerable: true, + get: function () { + return _MapsUgcRounded.default; + } +}); +Object.defineProperty(exports, "MapsUgcSharp", { + enumerable: true, + get: function () { + return _MapsUgcSharp.default; + } +}); +Object.defineProperty(exports, "MapsUgcTwoTone", { + enumerable: true, + get: function () { + return _MapsUgcTwoTone.default; + } +}); +Object.defineProperty(exports, "Margin", { + enumerable: true, + get: function () { + return _Margin.default; + } +}); +Object.defineProperty(exports, "MarginOutlined", { + enumerable: true, + get: function () { + return _MarginOutlined.default; + } +}); +Object.defineProperty(exports, "MarginRounded", { + enumerable: true, + get: function () { + return _MarginRounded.default; + } +}); +Object.defineProperty(exports, "MarginSharp", { + enumerable: true, + get: function () { + return _MarginSharp.default; + } +}); +Object.defineProperty(exports, "MarginTwoTone", { + enumerable: true, + get: function () { + return _MarginTwoTone.default; + } +}); +Object.defineProperty(exports, "MarkAsUnread", { + enumerable: true, + get: function () { + return _MarkAsUnread.default; + } +}); +Object.defineProperty(exports, "MarkAsUnreadOutlined", { + enumerable: true, + get: function () { + return _MarkAsUnreadOutlined.default; + } +}); +Object.defineProperty(exports, "MarkAsUnreadRounded", { + enumerable: true, + get: function () { + return _MarkAsUnreadRounded.default; + } +}); +Object.defineProperty(exports, "MarkAsUnreadSharp", { + enumerable: true, + get: function () { + return _MarkAsUnreadSharp.default; + } +}); +Object.defineProperty(exports, "MarkAsUnreadTwoTone", { + enumerable: true, + get: function () { + return _MarkAsUnreadTwoTone.default; + } +}); +Object.defineProperty(exports, "MarkChatRead", { + enumerable: true, + get: function () { + return _MarkChatRead.default; + } +}); +Object.defineProperty(exports, "MarkChatReadOutlined", { + enumerable: true, + get: function () { + return _MarkChatReadOutlined.default; + } +}); +Object.defineProperty(exports, "MarkChatReadRounded", { + enumerable: true, + get: function () { + return _MarkChatReadRounded.default; + } +}); +Object.defineProperty(exports, "MarkChatReadSharp", { + enumerable: true, + get: function () { + return _MarkChatReadSharp.default; + } +}); +Object.defineProperty(exports, "MarkChatReadTwoTone", { + enumerable: true, + get: function () { + return _MarkChatReadTwoTone.default; + } +}); +Object.defineProperty(exports, "MarkChatUnread", { + enumerable: true, + get: function () { + return _MarkChatUnread.default; + } +}); +Object.defineProperty(exports, "MarkChatUnreadOutlined", { + enumerable: true, + get: function () { + return _MarkChatUnreadOutlined.default; + } +}); +Object.defineProperty(exports, "MarkChatUnreadRounded", { + enumerable: true, + get: function () { + return _MarkChatUnreadRounded.default; + } +}); +Object.defineProperty(exports, "MarkChatUnreadSharp", { + enumerable: true, + get: function () { + return _MarkChatUnreadSharp.default; + } +}); +Object.defineProperty(exports, "MarkChatUnreadTwoTone", { + enumerable: true, + get: function () { + return _MarkChatUnreadTwoTone.default; + } +}); +Object.defineProperty(exports, "MarkEmailRead", { + enumerable: true, + get: function () { + return _MarkEmailRead.default; + } +}); +Object.defineProperty(exports, "MarkEmailReadOutlined", { + enumerable: true, + get: function () { + return _MarkEmailReadOutlined.default; + } +}); +Object.defineProperty(exports, "MarkEmailReadRounded", { + enumerable: true, + get: function () { + return _MarkEmailReadRounded.default; + } +}); +Object.defineProperty(exports, "MarkEmailReadSharp", { + enumerable: true, + get: function () { + return _MarkEmailReadSharp.default; + } +}); +Object.defineProperty(exports, "MarkEmailReadTwoTone", { + enumerable: true, + get: function () { + return _MarkEmailReadTwoTone.default; + } +}); +Object.defineProperty(exports, "MarkEmailUnread", { + enumerable: true, + get: function () { + return _MarkEmailUnread.default; + } +}); +Object.defineProperty(exports, "MarkEmailUnreadOutlined", { + enumerable: true, + get: function () { + return _MarkEmailUnreadOutlined.default; + } +}); +Object.defineProperty(exports, "MarkEmailUnreadRounded", { + enumerable: true, + get: function () { + return _MarkEmailUnreadRounded.default; + } +}); +Object.defineProperty(exports, "MarkEmailUnreadSharp", { + enumerable: true, + get: function () { + return _MarkEmailUnreadSharp.default; + } +}); +Object.defineProperty(exports, "MarkEmailUnreadTwoTone", { + enumerable: true, + get: function () { + return _MarkEmailUnreadTwoTone.default; + } +}); +Object.defineProperty(exports, "Markunread", { + enumerable: true, + get: function () { + return _Markunread.default; + } +}); +Object.defineProperty(exports, "MarkunreadMailbox", { + enumerable: true, + get: function () { + return _MarkunreadMailbox.default; + } +}); +Object.defineProperty(exports, "MarkunreadMailboxOutlined", { + enumerable: true, + get: function () { + return _MarkunreadMailboxOutlined.default; + } +}); +Object.defineProperty(exports, "MarkunreadMailboxRounded", { + enumerable: true, + get: function () { + return _MarkunreadMailboxRounded.default; + } +}); +Object.defineProperty(exports, "MarkunreadMailboxSharp", { + enumerable: true, + get: function () { + return _MarkunreadMailboxSharp.default; + } +}); +Object.defineProperty(exports, "MarkunreadMailboxTwoTone", { + enumerable: true, + get: function () { + return _MarkunreadMailboxTwoTone.default; + } +}); +Object.defineProperty(exports, "MarkunreadOutlined", { + enumerable: true, + get: function () { + return _MarkunreadOutlined.default; + } +}); +Object.defineProperty(exports, "MarkunreadRounded", { + enumerable: true, + get: function () { + return _MarkunreadRounded.default; + } +}); +Object.defineProperty(exports, "MarkunreadSharp", { + enumerable: true, + get: function () { + return _MarkunreadSharp.default; + } +}); +Object.defineProperty(exports, "MarkunreadTwoTone", { + enumerable: true, + get: function () { + return _MarkunreadTwoTone.default; + } +}); +Object.defineProperty(exports, "Masks", { + enumerable: true, + get: function () { + return _Masks.default; + } +}); +Object.defineProperty(exports, "MasksOutlined", { + enumerable: true, + get: function () { + return _MasksOutlined.default; + } +}); +Object.defineProperty(exports, "MasksRounded", { + enumerable: true, + get: function () { + return _MasksRounded.default; + } +}); +Object.defineProperty(exports, "MasksSharp", { + enumerable: true, + get: function () { + return _MasksSharp.default; + } +}); +Object.defineProperty(exports, "MasksTwoTone", { + enumerable: true, + get: function () { + return _MasksTwoTone.default; + } +}); +Object.defineProperty(exports, "Maximize", { + enumerable: true, + get: function () { + return _Maximize.default; + } +}); +Object.defineProperty(exports, "MaximizeOutlined", { + enumerable: true, + get: function () { + return _MaximizeOutlined.default; + } +}); +Object.defineProperty(exports, "MaximizeRounded", { + enumerable: true, + get: function () { + return _MaximizeRounded.default; + } +}); +Object.defineProperty(exports, "MaximizeSharp", { + enumerable: true, + get: function () { + return _MaximizeSharp.default; + } +}); +Object.defineProperty(exports, "MaximizeTwoTone", { + enumerable: true, + get: function () { + return _MaximizeTwoTone.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOff", { + enumerable: true, + get: function () { + return _MediaBluetoothOff.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOffOutlined", { + enumerable: true, + get: function () { + return _MediaBluetoothOffOutlined.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOffRounded", { + enumerable: true, + get: function () { + return _MediaBluetoothOffRounded.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOffSharp", { + enumerable: true, + get: function () { + return _MediaBluetoothOffSharp.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOffTwoTone", { + enumerable: true, + get: function () { + return _MediaBluetoothOffTwoTone.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOn", { + enumerable: true, + get: function () { + return _MediaBluetoothOn.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOnOutlined", { + enumerable: true, + get: function () { + return _MediaBluetoothOnOutlined.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOnRounded", { + enumerable: true, + get: function () { + return _MediaBluetoothOnRounded.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOnSharp", { + enumerable: true, + get: function () { + return _MediaBluetoothOnSharp.default; + } +}); +Object.defineProperty(exports, "MediaBluetoothOnTwoTone", { + enumerable: true, + get: function () { + return _MediaBluetoothOnTwoTone.default; + } +}); +Object.defineProperty(exports, "Mediation", { + enumerable: true, + get: function () { + return _Mediation.default; + } +}); +Object.defineProperty(exports, "MediationOutlined", { + enumerable: true, + get: function () { + return _MediationOutlined.default; + } +}); +Object.defineProperty(exports, "MediationRounded", { + enumerable: true, + get: function () { + return _MediationRounded.default; + } +}); +Object.defineProperty(exports, "MediationSharp", { + enumerable: true, + get: function () { + return _MediationSharp.default; + } +}); +Object.defineProperty(exports, "MediationTwoTone", { + enumerable: true, + get: function () { + return _MediationTwoTone.default; + } +}); +Object.defineProperty(exports, "MedicalServices", { + enumerable: true, + get: function () { + return _MedicalServices.default; + } +}); +Object.defineProperty(exports, "MedicalServicesOutlined", { + enumerable: true, + get: function () { + return _MedicalServicesOutlined.default; + } +}); +Object.defineProperty(exports, "MedicalServicesRounded", { + enumerable: true, + get: function () { + return _MedicalServicesRounded.default; + } +}); +Object.defineProperty(exports, "MedicalServicesSharp", { + enumerable: true, + get: function () { + return _MedicalServicesSharp.default; + } +}); +Object.defineProperty(exports, "MedicalServicesTwoTone", { + enumerable: true, + get: function () { + return _MedicalServicesTwoTone.default; + } +}); +Object.defineProperty(exports, "Medication", { + enumerable: true, + get: function () { + return _Medication.default; + } +}); +Object.defineProperty(exports, "MedicationOutlined", { + enumerable: true, + get: function () { + return _MedicationOutlined.default; + } +}); +Object.defineProperty(exports, "MedicationRounded", { + enumerable: true, + get: function () { + return _MedicationRounded.default; + } +}); +Object.defineProperty(exports, "MedicationSharp", { + enumerable: true, + get: function () { + return _MedicationSharp.default; + } +}); +Object.defineProperty(exports, "MedicationTwoTone", { + enumerable: true, + get: function () { + return _MedicationTwoTone.default; + } +}); +Object.defineProperty(exports, "MeetingRoom", { + enumerable: true, + get: function () { + return _MeetingRoom.default; + } +}); +Object.defineProperty(exports, "MeetingRoomOutlined", { + enumerable: true, + get: function () { + return _MeetingRoomOutlined.default; + } +}); +Object.defineProperty(exports, "MeetingRoomRounded", { + enumerable: true, + get: function () { + return _MeetingRoomRounded.default; + } +}); +Object.defineProperty(exports, "MeetingRoomSharp", { + enumerable: true, + get: function () { + return _MeetingRoomSharp.default; + } +}); +Object.defineProperty(exports, "MeetingRoomTwoTone", { + enumerable: true, + get: function () { + return _MeetingRoomTwoTone.default; + } +}); +Object.defineProperty(exports, "Memory", { + enumerable: true, + get: function () { + return _Memory.default; + } +}); +Object.defineProperty(exports, "MemoryOutlined", { + enumerable: true, + get: function () { + return _MemoryOutlined.default; + } +}); +Object.defineProperty(exports, "MemoryRounded", { + enumerable: true, + get: function () { + return _MemoryRounded.default; + } +}); +Object.defineProperty(exports, "MemorySharp", { + enumerable: true, + get: function () { + return _MemorySharp.default; + } +}); +Object.defineProperty(exports, "MemoryTwoTone", { + enumerable: true, + get: function () { + return _MemoryTwoTone.default; + } +}); +Object.defineProperty(exports, "Menu", { + enumerable: true, + get: function () { + return _Menu.default; + } +}); +Object.defineProperty(exports, "MenuBook", { + enumerable: true, + get: function () { + return _MenuBook.default; + } +}); +Object.defineProperty(exports, "MenuBookOutlined", { + enumerable: true, + get: function () { + return _MenuBookOutlined.default; + } +}); +Object.defineProperty(exports, "MenuBookRounded", { + enumerable: true, + get: function () { + return _MenuBookRounded.default; + } +}); +Object.defineProperty(exports, "MenuBookSharp", { + enumerable: true, + get: function () { + return _MenuBookSharp.default; + } +}); +Object.defineProperty(exports, "MenuBookTwoTone", { + enumerable: true, + get: function () { + return _MenuBookTwoTone.default; + } +}); +Object.defineProperty(exports, "MenuOpen", { + enumerable: true, + get: function () { + return _MenuOpen.default; + } +}); +Object.defineProperty(exports, "MenuOpenOutlined", { + enumerable: true, + get: function () { + return _MenuOpenOutlined.default; + } +}); +Object.defineProperty(exports, "MenuOpenRounded", { + enumerable: true, + get: function () { + return _MenuOpenRounded.default; + } +}); +Object.defineProperty(exports, "MenuOpenSharp", { + enumerable: true, + get: function () { + return _MenuOpenSharp.default; + } +}); +Object.defineProperty(exports, "MenuOpenTwoTone", { + enumerable: true, + get: function () { + return _MenuOpenTwoTone.default; + } +}); +Object.defineProperty(exports, "MenuOutlined", { + enumerable: true, + get: function () { + return _MenuOutlined.default; + } +}); +Object.defineProperty(exports, "MenuRounded", { + enumerable: true, + get: function () { + return _MenuRounded.default; + } +}); +Object.defineProperty(exports, "MenuSharp", { + enumerable: true, + get: function () { + return _MenuSharp.default; + } +}); +Object.defineProperty(exports, "MenuTwoTone", { + enumerable: true, + get: function () { + return _MenuTwoTone.default; + } +}); +Object.defineProperty(exports, "MergeType", { + enumerable: true, + get: function () { + return _MergeType.default; + } +}); +Object.defineProperty(exports, "MergeTypeOutlined", { + enumerable: true, + get: function () { + return _MergeTypeOutlined.default; + } +}); +Object.defineProperty(exports, "MergeTypeRounded", { + enumerable: true, + get: function () { + return _MergeTypeRounded.default; + } +}); +Object.defineProperty(exports, "MergeTypeSharp", { + enumerable: true, + get: function () { + return _MergeTypeSharp.default; + } +}); +Object.defineProperty(exports, "MergeTypeTwoTone", { + enumerable: true, + get: function () { + return _MergeTypeTwoTone.default; + } +}); +Object.defineProperty(exports, "Message", { + enumerable: true, + get: function () { + return _Message.default; + } +}); +Object.defineProperty(exports, "MessageOutlined", { + enumerable: true, + get: function () { + return _MessageOutlined.default; + } +}); +Object.defineProperty(exports, "MessageRounded", { + enumerable: true, + get: function () { + return _MessageRounded.default; + } +}); +Object.defineProperty(exports, "MessageSharp", { + enumerable: true, + get: function () { + return _MessageSharp.default; + } +}); +Object.defineProperty(exports, "MessageTwoTone", { + enumerable: true, + get: function () { + return _MessageTwoTone.default; + } +}); +Object.defineProperty(exports, "Mic", { + enumerable: true, + get: function () { + return _Mic.default; + } +}); +Object.defineProperty(exports, "MicExternalOff", { + enumerable: true, + get: function () { + return _MicExternalOff.default; + } +}); +Object.defineProperty(exports, "MicExternalOffOutlined", { + enumerable: true, + get: function () { + return _MicExternalOffOutlined.default; + } +}); +Object.defineProperty(exports, "MicExternalOffRounded", { + enumerable: true, + get: function () { + return _MicExternalOffRounded.default; + } +}); +Object.defineProperty(exports, "MicExternalOffSharp", { + enumerable: true, + get: function () { + return _MicExternalOffSharp.default; + } +}); +Object.defineProperty(exports, "MicExternalOffTwoTone", { + enumerable: true, + get: function () { + return _MicExternalOffTwoTone.default; + } +}); +Object.defineProperty(exports, "MicExternalOn", { + enumerable: true, + get: function () { + return _MicExternalOn.default; + } +}); +Object.defineProperty(exports, "MicExternalOnOutlined", { + enumerable: true, + get: function () { + return _MicExternalOnOutlined.default; + } +}); +Object.defineProperty(exports, "MicExternalOnRounded", { + enumerable: true, + get: function () { + return _MicExternalOnRounded.default; + } +}); +Object.defineProperty(exports, "MicExternalOnSharp", { + enumerable: true, + get: function () { + return _MicExternalOnSharp.default; + } +}); +Object.defineProperty(exports, "MicExternalOnTwoTone", { + enumerable: true, + get: function () { + return _MicExternalOnTwoTone.default; + } +}); +Object.defineProperty(exports, "MicNone", { + enumerable: true, + get: function () { + return _MicNone.default; + } +}); +Object.defineProperty(exports, "MicNoneOutlined", { + enumerable: true, + get: function () { + return _MicNoneOutlined.default; + } +}); +Object.defineProperty(exports, "MicNoneRounded", { + enumerable: true, + get: function () { + return _MicNoneRounded.default; + } +}); +Object.defineProperty(exports, "MicNoneSharp", { + enumerable: true, + get: function () { + return _MicNoneSharp.default; + } +}); +Object.defineProperty(exports, "MicNoneTwoTone", { + enumerable: true, + get: function () { + return _MicNoneTwoTone.default; + } +}); +Object.defineProperty(exports, "MicOff", { + enumerable: true, + get: function () { + return _MicOff.default; + } +}); +Object.defineProperty(exports, "MicOffOutlined", { + enumerable: true, + get: function () { + return _MicOffOutlined.default; + } +}); +Object.defineProperty(exports, "MicOffRounded", { + enumerable: true, + get: function () { + return _MicOffRounded.default; + } +}); +Object.defineProperty(exports, "MicOffSharp", { + enumerable: true, + get: function () { + return _MicOffSharp.default; + } +}); +Object.defineProperty(exports, "MicOffTwoTone", { + enumerable: true, + get: function () { + return _MicOffTwoTone.default; + } +}); +Object.defineProperty(exports, "MicOutlined", { + enumerable: true, + get: function () { + return _MicOutlined.default; + } +}); +Object.defineProperty(exports, "MicRounded", { + enumerable: true, + get: function () { + return _MicRounded.default; + } +}); +Object.defineProperty(exports, "MicSharp", { + enumerable: true, + get: function () { + return _MicSharp.default; + } +}); +Object.defineProperty(exports, "MicTwoTone", { + enumerable: true, + get: function () { + return _MicTwoTone.default; + } +}); +Object.defineProperty(exports, "Microwave", { + enumerable: true, + get: function () { + return _Microwave.default; + } +}); +Object.defineProperty(exports, "MicrowaveOutlined", { + enumerable: true, + get: function () { + return _MicrowaveOutlined.default; + } +}); +Object.defineProperty(exports, "MicrowaveRounded", { + enumerable: true, + get: function () { + return _MicrowaveRounded.default; + } +}); +Object.defineProperty(exports, "MicrowaveSharp", { + enumerable: true, + get: function () { + return _MicrowaveSharp.default; + } +}); +Object.defineProperty(exports, "MicrowaveTwoTone", { + enumerable: true, + get: function () { + return _MicrowaveTwoTone.default; + } +}); +Object.defineProperty(exports, "MilitaryTech", { + enumerable: true, + get: function () { + return _MilitaryTech.default; + } +}); +Object.defineProperty(exports, "MilitaryTechOutlined", { + enumerable: true, + get: function () { + return _MilitaryTechOutlined.default; + } +}); +Object.defineProperty(exports, "MilitaryTechRounded", { + enumerable: true, + get: function () { + return _MilitaryTechRounded.default; + } +}); +Object.defineProperty(exports, "MilitaryTechSharp", { + enumerable: true, + get: function () { + return _MilitaryTechSharp.default; + } +}); +Object.defineProperty(exports, "MilitaryTechTwoTone", { + enumerable: true, + get: function () { + return _MilitaryTechTwoTone.default; + } +}); +Object.defineProperty(exports, "Minimize", { + enumerable: true, + get: function () { + return _Minimize.default; + } +}); +Object.defineProperty(exports, "MinimizeOutlined", { + enumerable: true, + get: function () { + return _MinimizeOutlined.default; + } +}); +Object.defineProperty(exports, "MinimizeRounded", { + enumerable: true, + get: function () { + return _MinimizeRounded.default; + } +}); +Object.defineProperty(exports, "MinimizeSharp", { + enumerable: true, + get: function () { + return _MinimizeSharp.default; + } +}); +Object.defineProperty(exports, "MinimizeTwoTone", { + enumerable: true, + get: function () { + return _MinimizeTwoTone.default; + } +}); +Object.defineProperty(exports, "MiscellaneousServices", { + enumerable: true, + get: function () { + return _MiscellaneousServices.default; + } +}); +Object.defineProperty(exports, "MiscellaneousServicesOutlined", { + enumerable: true, + get: function () { + return _MiscellaneousServicesOutlined.default; + } +}); +Object.defineProperty(exports, "MiscellaneousServicesRounded", { + enumerable: true, + get: function () { + return _MiscellaneousServicesRounded.default; + } +}); +Object.defineProperty(exports, "MiscellaneousServicesSharp", { + enumerable: true, + get: function () { + return _MiscellaneousServicesSharp.default; + } +}); +Object.defineProperty(exports, "MiscellaneousServicesTwoTone", { + enumerable: true, + get: function () { + return _MiscellaneousServicesTwoTone.default; + } +}); +Object.defineProperty(exports, "MissedVideoCall", { + enumerable: true, + get: function () { + return _MissedVideoCall.default; + } +}); +Object.defineProperty(exports, "MissedVideoCallOutlined", { + enumerable: true, + get: function () { + return _MissedVideoCallOutlined.default; + } +}); +Object.defineProperty(exports, "MissedVideoCallRounded", { + enumerable: true, + get: function () { + return _MissedVideoCallRounded.default; + } +}); +Object.defineProperty(exports, "MissedVideoCallSharp", { + enumerable: true, + get: function () { + return _MissedVideoCallSharp.default; + } +}); +Object.defineProperty(exports, "MissedVideoCallTwoTone", { + enumerable: true, + get: function () { + return _MissedVideoCallTwoTone.default; + } +}); +Object.defineProperty(exports, "Mms", { + enumerable: true, + get: function () { + return _Mms.default; + } +}); +Object.defineProperty(exports, "MmsOutlined", { + enumerable: true, + get: function () { + return _MmsOutlined.default; + } +}); +Object.defineProperty(exports, "MmsRounded", { + enumerable: true, + get: function () { + return _MmsRounded.default; + } +}); +Object.defineProperty(exports, "MmsSharp", { + enumerable: true, + get: function () { + return _MmsSharp.default; + } +}); +Object.defineProperty(exports, "MmsTwoTone", { + enumerable: true, + get: function () { + return _MmsTwoTone.default; + } +}); +Object.defineProperty(exports, "MobileFriendly", { + enumerable: true, + get: function () { + return _MobileFriendly.default; + } +}); +Object.defineProperty(exports, "MobileFriendlyOutlined", { + enumerable: true, + get: function () { + return _MobileFriendlyOutlined.default; + } +}); +Object.defineProperty(exports, "MobileFriendlyRounded", { + enumerable: true, + get: function () { + return _MobileFriendlyRounded.default; + } +}); +Object.defineProperty(exports, "MobileFriendlySharp", { + enumerable: true, + get: function () { + return _MobileFriendlySharp.default; + } +}); +Object.defineProperty(exports, "MobileFriendlyTwoTone", { + enumerable: true, + get: function () { + return _MobileFriendlyTwoTone.default; + } +}); +Object.defineProperty(exports, "MobileOff", { + enumerable: true, + get: function () { + return _MobileOff.default; + } +}); +Object.defineProperty(exports, "MobileOffOutlined", { + enumerable: true, + get: function () { + return _MobileOffOutlined.default; + } +}); +Object.defineProperty(exports, "MobileOffRounded", { + enumerable: true, + get: function () { + return _MobileOffRounded.default; + } +}); +Object.defineProperty(exports, "MobileOffSharp", { + enumerable: true, + get: function () { + return _MobileOffSharp.default; + } +}); +Object.defineProperty(exports, "MobileOffTwoTone", { + enumerable: true, + get: function () { + return _MobileOffTwoTone.default; + } +}); +Object.defineProperty(exports, "MobileScreenShare", { + enumerable: true, + get: function () { + return _MobileScreenShare.default; + } +}); +Object.defineProperty(exports, "MobileScreenShareOutlined", { + enumerable: true, + get: function () { + return _MobileScreenShareOutlined.default; + } +}); +Object.defineProperty(exports, "MobileScreenShareRounded", { + enumerable: true, + get: function () { + return _MobileScreenShareRounded.default; + } +}); +Object.defineProperty(exports, "MobileScreenShareSharp", { + enumerable: true, + get: function () { + return _MobileScreenShareSharp.default; + } +}); +Object.defineProperty(exports, "MobileScreenShareTwoTone", { + enumerable: true, + get: function () { + return _MobileScreenShareTwoTone.default; + } +}); +Object.defineProperty(exports, "MobiledataOff", { + enumerable: true, + get: function () { + return _MobiledataOff.default; + } +}); +Object.defineProperty(exports, "MobiledataOffOutlined", { + enumerable: true, + get: function () { + return _MobiledataOffOutlined.default; + } +}); +Object.defineProperty(exports, "MobiledataOffRounded", { + enumerable: true, + get: function () { + return _MobiledataOffRounded.default; + } +}); +Object.defineProperty(exports, "MobiledataOffSharp", { + enumerable: true, + get: function () { + return _MobiledataOffSharp.default; + } +}); +Object.defineProperty(exports, "MobiledataOffTwoTone", { + enumerable: true, + get: function () { + return _MobiledataOffTwoTone.default; + } +}); +Object.defineProperty(exports, "Mode", { + enumerable: true, + get: function () { + return _Mode.default; + } +}); +Object.defineProperty(exports, "ModeComment", { + enumerable: true, + get: function () { + return _ModeComment.default; + } +}); +Object.defineProperty(exports, "ModeCommentOutlined", { + enumerable: true, + get: function () { + return _ModeCommentOutlined.default; + } +}); +Object.defineProperty(exports, "ModeCommentRounded", { + enumerable: true, + get: function () { + return _ModeCommentRounded.default; + } +}); +Object.defineProperty(exports, "ModeCommentSharp", { + enumerable: true, + get: function () { + return _ModeCommentSharp.default; + } +}); +Object.defineProperty(exports, "ModeCommentTwoTone", { + enumerable: true, + get: function () { + return _ModeCommentTwoTone.default; + } +}); +Object.defineProperty(exports, "ModeEdit", { + enumerable: true, + get: function () { + return _ModeEdit.default; + } +}); +Object.defineProperty(exports, "ModeEditOutline", { + enumerable: true, + get: function () { + return _ModeEditOutline.default; + } +}); +Object.defineProperty(exports, "ModeEditOutlineOutlined", { + enumerable: true, + get: function () { + return _ModeEditOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "ModeEditOutlineRounded", { + enumerable: true, + get: function () { + return _ModeEditOutlineRounded.default; + } +}); +Object.defineProperty(exports, "ModeEditOutlineSharp", { + enumerable: true, + get: function () { + return _ModeEditOutlineSharp.default; + } +}); +Object.defineProperty(exports, "ModeEditOutlineTwoTone", { + enumerable: true, + get: function () { + return _ModeEditOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "ModeEditOutlined", { + enumerable: true, + get: function () { + return _ModeEditOutlined.default; + } +}); +Object.defineProperty(exports, "ModeEditRounded", { + enumerable: true, + get: function () { + return _ModeEditRounded.default; + } +}); +Object.defineProperty(exports, "ModeEditSharp", { + enumerable: true, + get: function () { + return _ModeEditSharp.default; + } +}); +Object.defineProperty(exports, "ModeEditTwoTone", { + enumerable: true, + get: function () { + return _ModeEditTwoTone.default; + } +}); +Object.defineProperty(exports, "ModeNight", { + enumerable: true, + get: function () { + return _ModeNight.default; + } +}); +Object.defineProperty(exports, "ModeNightOutlined", { + enumerable: true, + get: function () { + return _ModeNightOutlined.default; + } +}); +Object.defineProperty(exports, "ModeNightRounded", { + enumerable: true, + get: function () { + return _ModeNightRounded.default; + } +}); +Object.defineProperty(exports, "ModeNightSharp", { + enumerable: true, + get: function () { + return _ModeNightSharp.default; + } +}); +Object.defineProperty(exports, "ModeNightTwoTone", { + enumerable: true, + get: function () { + return _ModeNightTwoTone.default; + } +}); +Object.defineProperty(exports, "ModeOutlined", { + enumerable: true, + get: function () { + return _ModeOutlined.default; + } +}); +Object.defineProperty(exports, "ModeRounded", { + enumerable: true, + get: function () { + return _ModeRounded.default; + } +}); +Object.defineProperty(exports, "ModeSharp", { + enumerable: true, + get: function () { + return _ModeSharp.default; + } +}); +Object.defineProperty(exports, "ModeStandby", { + enumerable: true, + get: function () { + return _ModeStandby.default; + } +}); +Object.defineProperty(exports, "ModeStandbyOutlined", { + enumerable: true, + get: function () { + return _ModeStandbyOutlined.default; + } +}); +Object.defineProperty(exports, "ModeStandbyRounded", { + enumerable: true, + get: function () { + return _ModeStandbyRounded.default; + } +}); +Object.defineProperty(exports, "ModeStandbySharp", { + enumerable: true, + get: function () { + return _ModeStandbySharp.default; + } +}); +Object.defineProperty(exports, "ModeStandbyTwoTone", { + enumerable: true, + get: function () { + return _ModeStandbyTwoTone.default; + } +}); +Object.defineProperty(exports, "ModeTwoTone", { + enumerable: true, + get: function () { + return _ModeTwoTone.default; + } +}); +Object.defineProperty(exports, "ModelTraining", { + enumerable: true, + get: function () { + return _ModelTraining.default; + } +}); +Object.defineProperty(exports, "ModelTrainingOutlined", { + enumerable: true, + get: function () { + return _ModelTrainingOutlined.default; + } +}); +Object.defineProperty(exports, "ModelTrainingRounded", { + enumerable: true, + get: function () { + return _ModelTrainingRounded.default; + } +}); +Object.defineProperty(exports, "ModelTrainingSharp", { + enumerable: true, + get: function () { + return _ModelTrainingSharp.default; + } +}); +Object.defineProperty(exports, "ModelTrainingTwoTone", { + enumerable: true, + get: function () { + return _ModelTrainingTwoTone.default; + } +}); +Object.defineProperty(exports, "MonetizationOn", { + enumerable: true, + get: function () { + return _MonetizationOn.default; + } +}); +Object.defineProperty(exports, "MonetizationOnOutlined", { + enumerable: true, + get: function () { + return _MonetizationOnOutlined.default; + } +}); +Object.defineProperty(exports, "MonetizationOnRounded", { + enumerable: true, + get: function () { + return _MonetizationOnRounded.default; + } +}); +Object.defineProperty(exports, "MonetizationOnSharp", { + enumerable: true, + get: function () { + return _MonetizationOnSharp.default; + } +}); +Object.defineProperty(exports, "MonetizationOnTwoTone", { + enumerable: true, + get: function () { + return _MonetizationOnTwoTone.default; + } +}); +Object.defineProperty(exports, "Money", { + enumerable: true, + get: function () { + return _Money.default; + } +}); +Object.defineProperty(exports, "MoneyOff", { + enumerable: true, + get: function () { + return _MoneyOff.default; + } +}); +Object.defineProperty(exports, "MoneyOffCsred", { + enumerable: true, + get: function () { + return _MoneyOffCsred.default; + } +}); +Object.defineProperty(exports, "MoneyOffCsredOutlined", { + enumerable: true, + get: function () { + return _MoneyOffCsredOutlined.default; + } +}); +Object.defineProperty(exports, "MoneyOffCsredRounded", { + enumerable: true, + get: function () { + return _MoneyOffCsredRounded.default; + } +}); +Object.defineProperty(exports, "MoneyOffCsredSharp", { + enumerable: true, + get: function () { + return _MoneyOffCsredSharp.default; + } +}); +Object.defineProperty(exports, "MoneyOffCsredTwoTone", { + enumerable: true, + get: function () { + return _MoneyOffCsredTwoTone.default; + } +}); +Object.defineProperty(exports, "MoneyOffOutlined", { + enumerable: true, + get: function () { + return _MoneyOffOutlined.default; + } +}); +Object.defineProperty(exports, "MoneyOffRounded", { + enumerable: true, + get: function () { + return _MoneyOffRounded.default; + } +}); +Object.defineProperty(exports, "MoneyOffSharp", { + enumerable: true, + get: function () { + return _MoneyOffSharp.default; + } +}); +Object.defineProperty(exports, "MoneyOffTwoTone", { + enumerable: true, + get: function () { + return _MoneyOffTwoTone.default; + } +}); +Object.defineProperty(exports, "MoneyOutlined", { + enumerable: true, + get: function () { + return _MoneyOutlined.default; + } +}); +Object.defineProperty(exports, "MoneyRounded", { + enumerable: true, + get: function () { + return _MoneyRounded.default; + } +}); +Object.defineProperty(exports, "MoneySharp", { + enumerable: true, + get: function () { + return _MoneySharp.default; + } +}); +Object.defineProperty(exports, "MoneyTwoTone", { + enumerable: true, + get: function () { + return _MoneyTwoTone.default; + } +}); +Object.defineProperty(exports, "Monitor", { + enumerable: true, + get: function () { + return _Monitor.default; + } +}); +Object.defineProperty(exports, "MonitorOutlined", { + enumerable: true, + get: function () { + return _MonitorOutlined.default; + } +}); +Object.defineProperty(exports, "MonitorRounded", { + enumerable: true, + get: function () { + return _MonitorRounded.default; + } +}); +Object.defineProperty(exports, "MonitorSharp", { + enumerable: true, + get: function () { + return _MonitorSharp.default; + } +}); +Object.defineProperty(exports, "MonitorTwoTone", { + enumerable: true, + get: function () { + return _MonitorTwoTone.default; + } +}); +Object.defineProperty(exports, "MonitorWeight", { + enumerable: true, + get: function () { + return _MonitorWeight.default; + } +}); +Object.defineProperty(exports, "MonitorWeightOutlined", { + enumerable: true, + get: function () { + return _MonitorWeightOutlined.default; + } +}); +Object.defineProperty(exports, "MonitorWeightRounded", { + enumerable: true, + get: function () { + return _MonitorWeightRounded.default; + } +}); +Object.defineProperty(exports, "MonitorWeightSharp", { + enumerable: true, + get: function () { + return _MonitorWeightSharp.default; + } +}); +Object.defineProperty(exports, "MonitorWeightTwoTone", { + enumerable: true, + get: function () { + return _MonitorWeightTwoTone.default; + } +}); +Object.defineProperty(exports, "MonochromePhotos", { + enumerable: true, + get: function () { + return _MonochromePhotos.default; + } +}); +Object.defineProperty(exports, "MonochromePhotosOutlined", { + enumerable: true, + get: function () { + return _MonochromePhotosOutlined.default; + } +}); +Object.defineProperty(exports, "MonochromePhotosRounded", { + enumerable: true, + get: function () { + return _MonochromePhotosRounded.default; + } +}); +Object.defineProperty(exports, "MonochromePhotosSharp", { + enumerable: true, + get: function () { + return _MonochromePhotosSharp.default; + } +}); +Object.defineProperty(exports, "MonochromePhotosTwoTone", { + enumerable: true, + get: function () { + return _MonochromePhotosTwoTone.default; + } +}); +Object.defineProperty(exports, "Mood", { + enumerable: true, + get: function () { + return _Mood.default; + } +}); +Object.defineProperty(exports, "MoodBad", { + enumerable: true, + get: function () { + return _MoodBad.default; + } +}); +Object.defineProperty(exports, "MoodBadOutlined", { + enumerable: true, + get: function () { + return _MoodBadOutlined.default; + } +}); +Object.defineProperty(exports, "MoodBadRounded", { + enumerable: true, + get: function () { + return _MoodBadRounded.default; + } +}); +Object.defineProperty(exports, "MoodBadSharp", { + enumerable: true, + get: function () { + return _MoodBadSharp.default; + } +}); +Object.defineProperty(exports, "MoodBadTwoTone", { + enumerable: true, + get: function () { + return _MoodBadTwoTone.default; + } +}); +Object.defineProperty(exports, "MoodOutlined", { + enumerable: true, + get: function () { + return _MoodOutlined.default; + } +}); +Object.defineProperty(exports, "MoodRounded", { + enumerable: true, + get: function () { + return _MoodRounded.default; + } +}); +Object.defineProperty(exports, "MoodSharp", { + enumerable: true, + get: function () { + return _MoodSharp.default; + } +}); +Object.defineProperty(exports, "MoodTwoTone", { + enumerable: true, + get: function () { + return _MoodTwoTone.default; + } +}); +Object.defineProperty(exports, "Moped", { + enumerable: true, + get: function () { + return _Moped.default; + } +}); +Object.defineProperty(exports, "MopedOutlined", { + enumerable: true, + get: function () { + return _MopedOutlined.default; + } +}); +Object.defineProperty(exports, "MopedRounded", { + enumerable: true, + get: function () { + return _MopedRounded.default; + } +}); +Object.defineProperty(exports, "MopedSharp", { + enumerable: true, + get: function () { + return _MopedSharp.default; + } +}); +Object.defineProperty(exports, "MopedTwoTone", { + enumerable: true, + get: function () { + return _MopedTwoTone.default; + } +}); +Object.defineProperty(exports, "More", { + enumerable: true, + get: function () { + return _More.default; + } +}); +Object.defineProperty(exports, "MoreHoriz", { + enumerable: true, + get: function () { + return _MoreHoriz.default; + } +}); +Object.defineProperty(exports, "MoreHorizOutlined", { + enumerable: true, + get: function () { + return _MoreHorizOutlined.default; + } +}); +Object.defineProperty(exports, "MoreHorizRounded", { + enumerable: true, + get: function () { + return _MoreHorizRounded.default; + } +}); +Object.defineProperty(exports, "MoreHorizSharp", { + enumerable: true, + get: function () { + return _MoreHorizSharp.default; + } +}); +Object.defineProperty(exports, "MoreHorizTwoTone", { + enumerable: true, + get: function () { + return _MoreHorizTwoTone.default; + } +}); +Object.defineProperty(exports, "MoreOutlined", { + enumerable: true, + get: function () { + return _MoreOutlined.default; + } +}); +Object.defineProperty(exports, "MoreRounded", { + enumerable: true, + get: function () { + return _MoreRounded.default; + } +}); +Object.defineProperty(exports, "MoreSharp", { + enumerable: true, + get: function () { + return _MoreSharp.default; + } +}); +Object.defineProperty(exports, "MoreTime", { + enumerable: true, + get: function () { + return _MoreTime.default; + } +}); +Object.defineProperty(exports, "MoreTimeOutlined", { + enumerable: true, + get: function () { + return _MoreTimeOutlined.default; + } +}); +Object.defineProperty(exports, "MoreTimeRounded", { + enumerable: true, + get: function () { + return _MoreTimeRounded.default; + } +}); +Object.defineProperty(exports, "MoreTimeSharp", { + enumerable: true, + get: function () { + return _MoreTimeSharp.default; + } +}); +Object.defineProperty(exports, "MoreTimeTwoTone", { + enumerable: true, + get: function () { + return _MoreTimeTwoTone.default; + } +}); +Object.defineProperty(exports, "MoreTwoTone", { + enumerable: true, + get: function () { + return _MoreTwoTone.default; + } +}); +Object.defineProperty(exports, "MoreVert", { + enumerable: true, + get: function () { + return _MoreVert.default; + } +}); +Object.defineProperty(exports, "MoreVertOutlined", { + enumerable: true, + get: function () { + return _MoreVertOutlined.default; + } +}); +Object.defineProperty(exports, "MoreVertRounded", { + enumerable: true, + get: function () { + return _MoreVertRounded.default; + } +}); +Object.defineProperty(exports, "MoreVertSharp", { + enumerable: true, + get: function () { + return _MoreVertSharp.default; + } +}); +Object.defineProperty(exports, "MoreVertTwoTone", { + enumerable: true, + get: function () { + return _MoreVertTwoTone.default; + } +}); +Object.defineProperty(exports, "MotionPhotosAuto", { + enumerable: true, + get: function () { + return _MotionPhotosAuto.default; + } +}); +Object.defineProperty(exports, "MotionPhotosAutoOutlined", { + enumerable: true, + get: function () { + return _MotionPhotosAutoOutlined.default; + } +}); +Object.defineProperty(exports, "MotionPhotosAutoRounded", { + enumerable: true, + get: function () { + return _MotionPhotosAutoRounded.default; + } +}); +Object.defineProperty(exports, "MotionPhotosAutoSharp", { + enumerable: true, + get: function () { + return _MotionPhotosAutoSharp.default; + } +}); +Object.defineProperty(exports, "MotionPhotosAutoTwoTone", { + enumerable: true, + get: function () { + return _MotionPhotosAutoTwoTone.default; + } +}); +Object.defineProperty(exports, "MotionPhotosOff", { + enumerable: true, + get: function () { + return _MotionPhotosOff.default; + } +}); +Object.defineProperty(exports, "MotionPhotosOffOutlined", { + enumerable: true, + get: function () { + return _MotionPhotosOffOutlined.default; + } +}); +Object.defineProperty(exports, "MotionPhotosOffRounded", { + enumerable: true, + get: function () { + return _MotionPhotosOffRounded.default; + } +}); +Object.defineProperty(exports, "MotionPhotosOffSharp", { + enumerable: true, + get: function () { + return _MotionPhotosOffSharp.default; + } +}); +Object.defineProperty(exports, "MotionPhotosOffTwoTone", { + enumerable: true, + get: function () { + return _MotionPhotosOffTwoTone.default; + } +}); +Object.defineProperty(exports, "Mouse", { + enumerable: true, + get: function () { + return _Mouse.default; + } +}); +Object.defineProperty(exports, "MouseOutlined", { + enumerable: true, + get: function () { + return _MouseOutlined.default; + } +}); +Object.defineProperty(exports, "MouseRounded", { + enumerable: true, + get: function () { + return _MouseRounded.default; + } +}); +Object.defineProperty(exports, "MouseSharp", { + enumerable: true, + get: function () { + return _MouseSharp.default; + } +}); +Object.defineProperty(exports, "MouseTwoTone", { + enumerable: true, + get: function () { + return _MouseTwoTone.default; + } +}); +Object.defineProperty(exports, "MoveToInbox", { + enumerable: true, + get: function () { + return _MoveToInbox.default; + } +}); +Object.defineProperty(exports, "MoveToInboxOutlined", { + enumerable: true, + get: function () { + return _MoveToInboxOutlined.default; + } +}); +Object.defineProperty(exports, "MoveToInboxRounded", { + enumerable: true, + get: function () { + return _MoveToInboxRounded.default; + } +}); +Object.defineProperty(exports, "MoveToInboxSharp", { + enumerable: true, + get: function () { + return _MoveToInboxSharp.default; + } +}); +Object.defineProperty(exports, "MoveToInboxTwoTone", { + enumerable: true, + get: function () { + return _MoveToInboxTwoTone.default; + } +}); +Object.defineProperty(exports, "Movie", { + enumerable: true, + get: function () { + return _Movie.default; + } +}); +Object.defineProperty(exports, "MovieCreation", { + enumerable: true, + get: function () { + return _MovieCreation.default; + } +}); +Object.defineProperty(exports, "MovieCreationOutlined", { + enumerable: true, + get: function () { + return _MovieCreationOutlined.default; + } +}); +Object.defineProperty(exports, "MovieCreationRounded", { + enumerable: true, + get: function () { + return _MovieCreationRounded.default; + } +}); +Object.defineProperty(exports, "MovieCreationSharp", { + enumerable: true, + get: function () { + return _MovieCreationSharp.default; + } +}); +Object.defineProperty(exports, "MovieCreationTwoTone", { + enumerable: true, + get: function () { + return _MovieCreationTwoTone.default; + } +}); +Object.defineProperty(exports, "MovieFilter", { + enumerable: true, + get: function () { + return _MovieFilter.default; + } +}); +Object.defineProperty(exports, "MovieFilterOutlined", { + enumerable: true, + get: function () { + return _MovieFilterOutlined.default; + } +}); +Object.defineProperty(exports, "MovieFilterRounded", { + enumerable: true, + get: function () { + return _MovieFilterRounded.default; + } +}); +Object.defineProperty(exports, "MovieFilterSharp", { + enumerable: true, + get: function () { + return _MovieFilterSharp.default; + } +}); +Object.defineProperty(exports, "MovieFilterTwoTone", { + enumerable: true, + get: function () { + return _MovieFilterTwoTone.default; + } +}); +Object.defineProperty(exports, "MovieOutlined", { + enumerable: true, + get: function () { + return _MovieOutlined.default; + } +}); +Object.defineProperty(exports, "MovieRounded", { + enumerable: true, + get: function () { + return _MovieRounded.default; + } +}); +Object.defineProperty(exports, "MovieSharp", { + enumerable: true, + get: function () { + return _MovieSharp.default; + } +}); +Object.defineProperty(exports, "MovieTwoTone", { + enumerable: true, + get: function () { + return _MovieTwoTone.default; + } +}); +Object.defineProperty(exports, "Moving", { + enumerable: true, + get: function () { + return _Moving.default; + } +}); +Object.defineProperty(exports, "MovingOutlined", { + enumerable: true, + get: function () { + return _MovingOutlined.default; + } +}); +Object.defineProperty(exports, "MovingRounded", { + enumerable: true, + get: function () { + return _MovingRounded.default; + } +}); +Object.defineProperty(exports, "MovingSharp", { + enumerable: true, + get: function () { + return _MovingSharp.default; + } +}); +Object.defineProperty(exports, "MovingTwoTone", { + enumerable: true, + get: function () { + return _MovingTwoTone.default; + } +}); +Object.defineProperty(exports, "Mp", { + enumerable: true, + get: function () { + return _Mp.default; + } +}); +Object.defineProperty(exports, "MpOutlined", { + enumerable: true, + get: function () { + return _MpOutlined.default; + } +}); +Object.defineProperty(exports, "MpRounded", { + enumerable: true, + get: function () { + return _MpRounded.default; + } +}); +Object.defineProperty(exports, "MpSharp", { + enumerable: true, + get: function () { + return _MpSharp.default; + } +}); +Object.defineProperty(exports, "MpTwoTone", { + enumerable: true, + get: function () { + return _MpTwoTone.default; + } +}); +Object.defineProperty(exports, "MultilineChart", { + enumerable: true, + get: function () { + return _MultilineChart.default; + } +}); +Object.defineProperty(exports, "MultilineChartOutlined", { + enumerable: true, + get: function () { + return _MultilineChartOutlined.default; + } +}); +Object.defineProperty(exports, "MultilineChartRounded", { + enumerable: true, + get: function () { + return _MultilineChartRounded.default; + } +}); +Object.defineProperty(exports, "MultilineChartSharp", { + enumerable: true, + get: function () { + return _MultilineChartSharp.default; + } +}); +Object.defineProperty(exports, "MultilineChartTwoTone", { + enumerable: true, + get: function () { + return _MultilineChartTwoTone.default; + } +}); +Object.defineProperty(exports, "MultipleStop", { + enumerable: true, + get: function () { + return _MultipleStop.default; + } +}); +Object.defineProperty(exports, "MultipleStopOutlined", { + enumerable: true, + get: function () { + return _MultipleStopOutlined.default; + } +}); +Object.defineProperty(exports, "MultipleStopRounded", { + enumerable: true, + get: function () { + return _MultipleStopRounded.default; + } +}); +Object.defineProperty(exports, "MultipleStopSharp", { + enumerable: true, + get: function () { + return _MultipleStopSharp.default; + } +}); +Object.defineProperty(exports, "MultipleStopTwoTone", { + enumerable: true, + get: function () { + return _MultipleStopTwoTone.default; + } +}); +Object.defineProperty(exports, "Museum", { + enumerable: true, + get: function () { + return _Museum.default; + } +}); +Object.defineProperty(exports, "MuseumOutlined", { + enumerable: true, + get: function () { + return _MuseumOutlined.default; + } +}); +Object.defineProperty(exports, "MuseumRounded", { + enumerable: true, + get: function () { + return _MuseumRounded.default; + } +}); +Object.defineProperty(exports, "MuseumSharp", { + enumerable: true, + get: function () { + return _MuseumSharp.default; + } +}); +Object.defineProperty(exports, "MuseumTwoTone", { + enumerable: true, + get: function () { + return _MuseumTwoTone.default; + } +}); +Object.defineProperty(exports, "MusicNote", { + enumerable: true, + get: function () { + return _MusicNote.default; + } +}); +Object.defineProperty(exports, "MusicNoteOutlined", { + enumerable: true, + get: function () { + return _MusicNoteOutlined.default; + } +}); +Object.defineProperty(exports, "MusicNoteRounded", { + enumerable: true, + get: function () { + return _MusicNoteRounded.default; + } +}); +Object.defineProperty(exports, "MusicNoteSharp", { + enumerable: true, + get: function () { + return _MusicNoteSharp.default; + } +}); +Object.defineProperty(exports, "MusicNoteTwoTone", { + enumerable: true, + get: function () { + return _MusicNoteTwoTone.default; + } +}); +Object.defineProperty(exports, "MusicOff", { + enumerable: true, + get: function () { + return _MusicOff.default; + } +}); +Object.defineProperty(exports, "MusicOffOutlined", { + enumerable: true, + get: function () { + return _MusicOffOutlined.default; + } +}); +Object.defineProperty(exports, "MusicOffRounded", { + enumerable: true, + get: function () { + return _MusicOffRounded.default; + } +}); +Object.defineProperty(exports, "MusicOffSharp", { + enumerable: true, + get: function () { + return _MusicOffSharp.default; + } +}); +Object.defineProperty(exports, "MusicOffTwoTone", { + enumerable: true, + get: function () { + return _MusicOffTwoTone.default; + } +}); +Object.defineProperty(exports, "MusicVideo", { + enumerable: true, + get: function () { + return _MusicVideo.default; + } +}); +Object.defineProperty(exports, "MusicVideoOutlined", { + enumerable: true, + get: function () { + return _MusicVideoOutlined.default; + } +}); +Object.defineProperty(exports, "MusicVideoRounded", { + enumerable: true, + get: function () { + return _MusicVideoRounded.default; + } +}); +Object.defineProperty(exports, "MusicVideoSharp", { + enumerable: true, + get: function () { + return _MusicVideoSharp.default; + } +}); +Object.defineProperty(exports, "MusicVideoTwoTone", { + enumerable: true, + get: function () { + return _MusicVideoTwoTone.default; + } +}); +Object.defineProperty(exports, "MyLocation", { + enumerable: true, + get: function () { + return _MyLocation.default; + } +}); +Object.defineProperty(exports, "MyLocationOutlined", { + enumerable: true, + get: function () { + return _MyLocationOutlined.default; + } +}); +Object.defineProperty(exports, "MyLocationRounded", { + enumerable: true, + get: function () { + return _MyLocationRounded.default; + } +}); +Object.defineProperty(exports, "MyLocationSharp", { + enumerable: true, + get: function () { + return _MyLocationSharp.default; + } +}); +Object.defineProperty(exports, "MyLocationTwoTone", { + enumerable: true, + get: function () { + return _MyLocationTwoTone.default; + } +}); +Object.defineProperty(exports, "Nat", { + enumerable: true, + get: function () { + return _Nat.default; + } +}); +Object.defineProperty(exports, "NatOutlined", { + enumerable: true, + get: function () { + return _NatOutlined.default; + } +}); +Object.defineProperty(exports, "NatRounded", { + enumerable: true, + get: function () { + return _NatRounded.default; + } +}); +Object.defineProperty(exports, "NatSharp", { + enumerable: true, + get: function () { + return _NatSharp.default; + } +}); +Object.defineProperty(exports, "NatTwoTone", { + enumerable: true, + get: function () { + return _NatTwoTone.default; + } +}); +Object.defineProperty(exports, "Nature", { + enumerable: true, + get: function () { + return _Nature.default; + } +}); +Object.defineProperty(exports, "NatureOutlined", { + enumerable: true, + get: function () { + return _NatureOutlined.default; + } +}); +Object.defineProperty(exports, "NaturePeople", { + enumerable: true, + get: function () { + return _NaturePeople.default; + } +}); +Object.defineProperty(exports, "NaturePeopleOutlined", { + enumerable: true, + get: function () { + return _NaturePeopleOutlined.default; + } +}); +Object.defineProperty(exports, "NaturePeopleRounded", { + enumerable: true, + get: function () { + return _NaturePeopleRounded.default; + } +}); +Object.defineProperty(exports, "NaturePeopleSharp", { + enumerable: true, + get: function () { + return _NaturePeopleSharp.default; + } +}); +Object.defineProperty(exports, "NaturePeopleTwoTone", { + enumerable: true, + get: function () { + return _NaturePeopleTwoTone.default; + } +}); +Object.defineProperty(exports, "NatureRounded", { + enumerable: true, + get: function () { + return _NatureRounded.default; + } +}); +Object.defineProperty(exports, "NatureSharp", { + enumerable: true, + get: function () { + return _NatureSharp.default; + } +}); +Object.defineProperty(exports, "NatureTwoTone", { + enumerable: true, + get: function () { + return _NatureTwoTone.default; + } +}); +Object.defineProperty(exports, "NavigateBefore", { + enumerable: true, + get: function () { + return _NavigateBefore.default; + } +}); +Object.defineProperty(exports, "NavigateBeforeOutlined", { + enumerable: true, + get: function () { + return _NavigateBeforeOutlined.default; + } +}); +Object.defineProperty(exports, "NavigateBeforeRounded", { + enumerable: true, + get: function () { + return _NavigateBeforeRounded.default; + } +}); +Object.defineProperty(exports, "NavigateBeforeSharp", { + enumerable: true, + get: function () { + return _NavigateBeforeSharp.default; + } +}); +Object.defineProperty(exports, "NavigateBeforeTwoTone", { + enumerable: true, + get: function () { + return _NavigateBeforeTwoTone.default; + } +}); +Object.defineProperty(exports, "NavigateNext", { + enumerable: true, + get: function () { + return _NavigateNext.default; + } +}); +Object.defineProperty(exports, "NavigateNextOutlined", { + enumerable: true, + get: function () { + return _NavigateNextOutlined.default; + } +}); +Object.defineProperty(exports, "NavigateNextRounded", { + enumerable: true, + get: function () { + return _NavigateNextRounded.default; + } +}); +Object.defineProperty(exports, "NavigateNextSharp", { + enumerable: true, + get: function () { + return _NavigateNextSharp.default; + } +}); +Object.defineProperty(exports, "NavigateNextTwoTone", { + enumerable: true, + get: function () { + return _NavigateNextTwoTone.default; + } +}); +Object.defineProperty(exports, "Navigation", { + enumerable: true, + get: function () { + return _Navigation.default; + } +}); +Object.defineProperty(exports, "NavigationOutlined", { + enumerable: true, + get: function () { + return _NavigationOutlined.default; + } +}); +Object.defineProperty(exports, "NavigationRounded", { + enumerable: true, + get: function () { + return _NavigationRounded.default; + } +}); +Object.defineProperty(exports, "NavigationSharp", { + enumerable: true, + get: function () { + return _NavigationSharp.default; + } +}); +Object.defineProperty(exports, "NavigationTwoTone", { + enumerable: true, + get: function () { + return _NavigationTwoTone.default; + } +}); +Object.defineProperty(exports, "NearMe", { + enumerable: true, + get: function () { + return _NearMe.default; + } +}); +Object.defineProperty(exports, "NearMeDisabled", { + enumerable: true, + get: function () { + return _NearMeDisabled.default; + } +}); +Object.defineProperty(exports, "NearMeDisabledOutlined", { + enumerable: true, + get: function () { + return _NearMeDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "NearMeDisabledRounded", { + enumerable: true, + get: function () { + return _NearMeDisabledRounded.default; + } +}); +Object.defineProperty(exports, "NearMeDisabledSharp", { + enumerable: true, + get: function () { + return _NearMeDisabledSharp.default; + } +}); +Object.defineProperty(exports, "NearMeDisabledTwoTone", { + enumerable: true, + get: function () { + return _NearMeDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "NearMeOutlined", { + enumerable: true, + get: function () { + return _NearMeOutlined.default; + } +}); +Object.defineProperty(exports, "NearMeRounded", { + enumerable: true, + get: function () { + return _NearMeRounded.default; + } +}); +Object.defineProperty(exports, "NearMeSharp", { + enumerable: true, + get: function () { + return _NearMeSharp.default; + } +}); +Object.defineProperty(exports, "NearMeTwoTone", { + enumerable: true, + get: function () { + return _NearMeTwoTone.default; + } +}); +Object.defineProperty(exports, "NearbyError", { + enumerable: true, + get: function () { + return _NearbyError.default; + } +}); +Object.defineProperty(exports, "NearbyErrorOutlined", { + enumerable: true, + get: function () { + return _NearbyErrorOutlined.default; + } +}); +Object.defineProperty(exports, "NearbyErrorRounded", { + enumerable: true, + get: function () { + return _NearbyErrorRounded.default; + } +}); +Object.defineProperty(exports, "NearbyErrorSharp", { + enumerable: true, + get: function () { + return _NearbyErrorSharp.default; + } +}); +Object.defineProperty(exports, "NearbyErrorTwoTone", { + enumerable: true, + get: function () { + return _NearbyErrorTwoTone.default; + } +}); +Object.defineProperty(exports, "NearbyOff", { + enumerable: true, + get: function () { + return _NearbyOff.default; + } +}); +Object.defineProperty(exports, "NearbyOffOutlined", { + enumerable: true, + get: function () { + return _NearbyOffOutlined.default; + } +}); +Object.defineProperty(exports, "NearbyOffRounded", { + enumerable: true, + get: function () { + return _NearbyOffRounded.default; + } +}); +Object.defineProperty(exports, "NearbyOffSharp", { + enumerable: true, + get: function () { + return _NearbyOffSharp.default; + } +}); +Object.defineProperty(exports, "NearbyOffTwoTone", { + enumerable: true, + get: function () { + return _NearbyOffTwoTone.default; + } +}); +Object.defineProperty(exports, "NetworkCell", { + enumerable: true, + get: function () { + return _NetworkCell.default; + } +}); +Object.defineProperty(exports, "NetworkCellOutlined", { + enumerable: true, + get: function () { + return _NetworkCellOutlined.default; + } +}); +Object.defineProperty(exports, "NetworkCellRounded", { + enumerable: true, + get: function () { + return _NetworkCellRounded.default; + } +}); +Object.defineProperty(exports, "NetworkCellSharp", { + enumerable: true, + get: function () { + return _NetworkCellSharp.default; + } +}); +Object.defineProperty(exports, "NetworkCellTwoTone", { + enumerable: true, + get: function () { + return _NetworkCellTwoTone.default; + } +}); +Object.defineProperty(exports, "NetworkCheck", { + enumerable: true, + get: function () { + return _NetworkCheck.default; + } +}); +Object.defineProperty(exports, "NetworkCheckOutlined", { + enumerable: true, + get: function () { + return _NetworkCheckOutlined.default; + } +}); +Object.defineProperty(exports, "NetworkCheckRounded", { + enumerable: true, + get: function () { + return _NetworkCheckRounded.default; + } +}); +Object.defineProperty(exports, "NetworkCheckSharp", { + enumerable: true, + get: function () { + return _NetworkCheckSharp.default; + } +}); +Object.defineProperty(exports, "NetworkCheckTwoTone", { + enumerable: true, + get: function () { + return _NetworkCheckTwoTone.default; + } +}); +Object.defineProperty(exports, "NetworkLocked", { + enumerable: true, + get: function () { + return _NetworkLocked.default; + } +}); +Object.defineProperty(exports, "NetworkLockedOutlined", { + enumerable: true, + get: function () { + return _NetworkLockedOutlined.default; + } +}); +Object.defineProperty(exports, "NetworkLockedRounded", { + enumerable: true, + get: function () { + return _NetworkLockedRounded.default; + } +}); +Object.defineProperty(exports, "NetworkLockedSharp", { + enumerable: true, + get: function () { + return _NetworkLockedSharp.default; + } +}); +Object.defineProperty(exports, "NetworkLockedTwoTone", { + enumerable: true, + get: function () { + return _NetworkLockedTwoTone.default; + } +}); +Object.defineProperty(exports, "NetworkWifi", { + enumerable: true, + get: function () { + return _NetworkWifi.default; + } +}); +Object.defineProperty(exports, "NetworkWifiOutlined", { + enumerable: true, + get: function () { + return _NetworkWifiOutlined.default; + } +}); +Object.defineProperty(exports, "NetworkWifiRounded", { + enumerable: true, + get: function () { + return _NetworkWifiRounded.default; + } +}); +Object.defineProperty(exports, "NetworkWifiSharp", { + enumerable: true, + get: function () { + return _NetworkWifiSharp.default; + } +}); +Object.defineProperty(exports, "NetworkWifiTwoTone", { + enumerable: true, + get: function () { + return _NetworkWifiTwoTone.default; + } +}); +Object.defineProperty(exports, "NewReleases", { + enumerable: true, + get: function () { + return _NewReleases.default; + } +}); +Object.defineProperty(exports, "NewReleasesOutlined", { + enumerable: true, + get: function () { + return _NewReleasesOutlined.default; + } +}); +Object.defineProperty(exports, "NewReleasesRounded", { + enumerable: true, + get: function () { + return _NewReleasesRounded.default; + } +}); +Object.defineProperty(exports, "NewReleasesSharp", { + enumerable: true, + get: function () { + return _NewReleasesSharp.default; + } +}); +Object.defineProperty(exports, "NewReleasesTwoTone", { + enumerable: true, + get: function () { + return _NewReleasesTwoTone.default; + } +}); +Object.defineProperty(exports, "NextPlan", { + enumerable: true, + get: function () { + return _NextPlan.default; + } +}); +Object.defineProperty(exports, "NextPlanOutlined", { + enumerable: true, + get: function () { + return _NextPlanOutlined.default; + } +}); +Object.defineProperty(exports, "NextPlanRounded", { + enumerable: true, + get: function () { + return _NextPlanRounded.default; + } +}); +Object.defineProperty(exports, "NextPlanSharp", { + enumerable: true, + get: function () { + return _NextPlanSharp.default; + } +}); +Object.defineProperty(exports, "NextPlanTwoTone", { + enumerable: true, + get: function () { + return _NextPlanTwoTone.default; + } +}); +Object.defineProperty(exports, "NextWeek", { + enumerable: true, + get: function () { + return _NextWeek.default; + } +}); +Object.defineProperty(exports, "NextWeekOutlined", { + enumerable: true, + get: function () { + return _NextWeekOutlined.default; + } +}); +Object.defineProperty(exports, "NextWeekRounded", { + enumerable: true, + get: function () { + return _NextWeekRounded.default; + } +}); +Object.defineProperty(exports, "NextWeekSharp", { + enumerable: true, + get: function () { + return _NextWeekSharp.default; + } +}); +Object.defineProperty(exports, "NextWeekTwoTone", { + enumerable: true, + get: function () { + return _NextWeekTwoTone.default; + } +}); +Object.defineProperty(exports, "Nfc", { + enumerable: true, + get: function () { + return _Nfc.default; + } +}); +Object.defineProperty(exports, "NfcOutlined", { + enumerable: true, + get: function () { + return _NfcOutlined.default; + } +}); +Object.defineProperty(exports, "NfcRounded", { + enumerable: true, + get: function () { + return _NfcRounded.default; + } +}); +Object.defineProperty(exports, "NfcSharp", { + enumerable: true, + get: function () { + return _NfcSharp.default; + } +}); +Object.defineProperty(exports, "NfcTwoTone", { + enumerable: true, + get: function () { + return _NfcTwoTone.default; + } +}); +Object.defineProperty(exports, "NightShelter", { + enumerable: true, + get: function () { + return _NightShelter.default; + } +}); +Object.defineProperty(exports, "NightShelterOutlined", { + enumerable: true, + get: function () { + return _NightShelterOutlined.default; + } +}); +Object.defineProperty(exports, "NightShelterRounded", { + enumerable: true, + get: function () { + return _NightShelterRounded.default; + } +}); +Object.defineProperty(exports, "NightShelterSharp", { + enumerable: true, + get: function () { + return _NightShelterSharp.default; + } +}); +Object.defineProperty(exports, "NightShelterTwoTone", { + enumerable: true, + get: function () { + return _NightShelterTwoTone.default; + } +}); +Object.defineProperty(exports, "Nightlife", { + enumerable: true, + get: function () { + return _Nightlife.default; + } +}); +Object.defineProperty(exports, "NightlifeOutlined", { + enumerable: true, + get: function () { + return _NightlifeOutlined.default; + } +}); +Object.defineProperty(exports, "NightlifeRounded", { + enumerable: true, + get: function () { + return _NightlifeRounded.default; + } +}); +Object.defineProperty(exports, "NightlifeSharp", { + enumerable: true, + get: function () { + return _NightlifeSharp.default; + } +}); +Object.defineProperty(exports, "NightlifeTwoTone", { + enumerable: true, + get: function () { + return _NightlifeTwoTone.default; + } +}); +Object.defineProperty(exports, "Nightlight", { + enumerable: true, + get: function () { + return _Nightlight.default; + } +}); +Object.defineProperty(exports, "NightlightOutlined", { + enumerable: true, + get: function () { + return _NightlightOutlined.default; + } +}); +Object.defineProperty(exports, "NightlightRound", { + enumerable: true, + get: function () { + return _NightlightRound.default; + } +}); +Object.defineProperty(exports, "NightlightRoundOutlined", { + enumerable: true, + get: function () { + return _NightlightRoundOutlined.default; + } +}); +Object.defineProperty(exports, "NightlightRoundRounded", { + enumerable: true, + get: function () { + return _NightlightRoundRounded.default; + } +}); +Object.defineProperty(exports, "NightlightRoundSharp", { + enumerable: true, + get: function () { + return _NightlightRoundSharp.default; + } +}); +Object.defineProperty(exports, "NightlightRoundTwoTone", { + enumerable: true, + get: function () { + return _NightlightRoundTwoTone.default; + } +}); +Object.defineProperty(exports, "NightlightRounded", { + enumerable: true, + get: function () { + return _NightlightRounded.default; + } +}); +Object.defineProperty(exports, "NightlightSharp", { + enumerable: true, + get: function () { + return _NightlightSharp.default; + } +}); +Object.defineProperty(exports, "NightlightTwoTone", { + enumerable: true, + get: function () { + return _NightlightTwoTone.default; + } +}); +Object.defineProperty(exports, "NightsStay", { + enumerable: true, + get: function () { + return _NightsStay.default; + } +}); +Object.defineProperty(exports, "NightsStayOutlined", { + enumerable: true, + get: function () { + return _NightsStayOutlined.default; + } +}); +Object.defineProperty(exports, "NightsStayRounded", { + enumerable: true, + get: function () { + return _NightsStayRounded.default; + } +}); +Object.defineProperty(exports, "NightsStaySharp", { + enumerable: true, + get: function () { + return _NightsStaySharp.default; + } +}); +Object.defineProperty(exports, "NightsStayTwoTone", { + enumerable: true, + get: function () { + return _NightsStayTwoTone.default; + } +}); +Object.defineProperty(exports, "NineK", { + enumerable: true, + get: function () { + return _NineK.default; + } +}); +Object.defineProperty(exports, "NineKOutlined", { + enumerable: true, + get: function () { + return _NineKOutlined.default; + } +}); +Object.defineProperty(exports, "NineKPlus", { + enumerable: true, + get: function () { + return _NineKPlus.default; + } +}); +Object.defineProperty(exports, "NineKPlusOutlined", { + enumerable: true, + get: function () { + return _NineKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "NineKPlusRounded", { + enumerable: true, + get: function () { + return _NineKPlusRounded.default; + } +}); +Object.defineProperty(exports, "NineKPlusSharp", { + enumerable: true, + get: function () { + return _NineKPlusSharp.default; + } +}); +Object.defineProperty(exports, "NineKPlusTwoTone", { + enumerable: true, + get: function () { + return _NineKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "NineKRounded", { + enumerable: true, + get: function () { + return _NineKRounded.default; + } +}); +Object.defineProperty(exports, "NineKSharp", { + enumerable: true, + get: function () { + return _NineKSharp.default; + } +}); +Object.defineProperty(exports, "NineKTwoTone", { + enumerable: true, + get: function () { + return _NineKTwoTone.default; + } +}); +Object.defineProperty(exports, "NineMp", { + enumerable: true, + get: function () { + return _NineMp.default; + } +}); +Object.defineProperty(exports, "NineMpOutlined", { + enumerable: true, + get: function () { + return _NineMpOutlined.default; + } +}); +Object.defineProperty(exports, "NineMpRounded", { + enumerable: true, + get: function () { + return _NineMpRounded.default; + } +}); +Object.defineProperty(exports, "NineMpSharp", { + enumerable: true, + get: function () { + return _NineMpSharp.default; + } +}); +Object.defineProperty(exports, "NineMpTwoTone", { + enumerable: true, + get: function () { + return _NineMpTwoTone.default; + } +}); +Object.defineProperty(exports, "NineteenMp", { + enumerable: true, + get: function () { + return _NineteenMp.default; + } +}); +Object.defineProperty(exports, "NineteenMpOutlined", { + enumerable: true, + get: function () { + return _NineteenMpOutlined.default; + } +}); +Object.defineProperty(exports, "NineteenMpRounded", { + enumerable: true, + get: function () { + return _NineteenMpRounded.default; + } +}); +Object.defineProperty(exports, "NineteenMpSharp", { + enumerable: true, + get: function () { + return _NineteenMpSharp.default; + } +}); +Object.defineProperty(exports, "NineteenMpTwoTone", { + enumerable: true, + get: function () { + return _NineteenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "NoAccounts", { + enumerable: true, + get: function () { + return _NoAccounts.default; + } +}); +Object.defineProperty(exports, "NoAccountsOutlined", { + enumerable: true, + get: function () { + return _NoAccountsOutlined.default; + } +}); +Object.defineProperty(exports, "NoAccountsRounded", { + enumerable: true, + get: function () { + return _NoAccountsRounded.default; + } +}); +Object.defineProperty(exports, "NoAccountsSharp", { + enumerable: true, + get: function () { + return _NoAccountsSharp.default; + } +}); +Object.defineProperty(exports, "NoAccountsTwoTone", { + enumerable: true, + get: function () { + return _NoAccountsTwoTone.default; + } +}); +Object.defineProperty(exports, "NoBackpack", { + enumerable: true, + get: function () { + return _NoBackpack.default; + } +}); +Object.defineProperty(exports, "NoBackpackOutlined", { + enumerable: true, + get: function () { + return _NoBackpackOutlined.default; + } +}); +Object.defineProperty(exports, "NoBackpackRounded", { + enumerable: true, + get: function () { + return _NoBackpackRounded.default; + } +}); +Object.defineProperty(exports, "NoBackpackSharp", { + enumerable: true, + get: function () { + return _NoBackpackSharp.default; + } +}); +Object.defineProperty(exports, "NoBackpackTwoTone", { + enumerable: true, + get: function () { + return _NoBackpackTwoTone.default; + } +}); +Object.defineProperty(exports, "NoCell", { + enumerable: true, + get: function () { + return _NoCell.default; + } +}); +Object.defineProperty(exports, "NoCellOutlined", { + enumerable: true, + get: function () { + return _NoCellOutlined.default; + } +}); +Object.defineProperty(exports, "NoCellRounded", { + enumerable: true, + get: function () { + return _NoCellRounded.default; + } +}); +Object.defineProperty(exports, "NoCellSharp", { + enumerable: true, + get: function () { + return _NoCellSharp.default; + } +}); +Object.defineProperty(exports, "NoCellTwoTone", { + enumerable: true, + get: function () { + return _NoCellTwoTone.default; + } +}); +Object.defineProperty(exports, "NoDrinks", { + enumerable: true, + get: function () { + return _NoDrinks.default; + } +}); +Object.defineProperty(exports, "NoDrinksOutlined", { + enumerable: true, + get: function () { + return _NoDrinksOutlined.default; + } +}); +Object.defineProperty(exports, "NoDrinksRounded", { + enumerable: true, + get: function () { + return _NoDrinksRounded.default; + } +}); +Object.defineProperty(exports, "NoDrinksSharp", { + enumerable: true, + get: function () { + return _NoDrinksSharp.default; + } +}); +Object.defineProperty(exports, "NoDrinksTwoTone", { + enumerable: true, + get: function () { + return _NoDrinksTwoTone.default; + } +}); +Object.defineProperty(exports, "NoEncryption", { + enumerable: true, + get: function () { + return _NoEncryption.default; + } +}); +Object.defineProperty(exports, "NoEncryptionGmailerrorred", { + enumerable: true, + get: function () { + return _NoEncryptionGmailerrorred.default; + } +}); +Object.defineProperty(exports, "NoEncryptionGmailerrorredOutlined", { + enumerable: true, + get: function () { + return _NoEncryptionGmailerrorredOutlined.default; + } +}); +Object.defineProperty(exports, "NoEncryptionGmailerrorredRounded", { + enumerable: true, + get: function () { + return _NoEncryptionGmailerrorredRounded.default; + } +}); +Object.defineProperty(exports, "NoEncryptionGmailerrorredSharp", { + enumerable: true, + get: function () { + return _NoEncryptionGmailerrorredSharp.default; + } +}); +Object.defineProperty(exports, "NoEncryptionGmailerrorredTwoTone", { + enumerable: true, + get: function () { + return _NoEncryptionGmailerrorredTwoTone.default; + } +}); +Object.defineProperty(exports, "NoEncryptionOutlined", { + enumerable: true, + get: function () { + return _NoEncryptionOutlined.default; + } +}); +Object.defineProperty(exports, "NoEncryptionRounded", { + enumerable: true, + get: function () { + return _NoEncryptionRounded.default; + } +}); +Object.defineProperty(exports, "NoEncryptionSharp", { + enumerable: true, + get: function () { + return _NoEncryptionSharp.default; + } +}); +Object.defineProperty(exports, "NoEncryptionTwoTone", { + enumerable: true, + get: function () { + return _NoEncryptionTwoTone.default; + } +}); +Object.defineProperty(exports, "NoFlash", { + enumerable: true, + get: function () { + return _NoFlash.default; + } +}); +Object.defineProperty(exports, "NoFlashOutlined", { + enumerable: true, + get: function () { + return _NoFlashOutlined.default; + } +}); +Object.defineProperty(exports, "NoFlashRounded", { + enumerable: true, + get: function () { + return _NoFlashRounded.default; + } +}); +Object.defineProperty(exports, "NoFlashSharp", { + enumerable: true, + get: function () { + return _NoFlashSharp.default; + } +}); +Object.defineProperty(exports, "NoFlashTwoTone", { + enumerable: true, + get: function () { + return _NoFlashTwoTone.default; + } +}); +Object.defineProperty(exports, "NoFood", { + enumerable: true, + get: function () { + return _NoFood.default; + } +}); +Object.defineProperty(exports, "NoFoodOutlined", { + enumerable: true, + get: function () { + return _NoFoodOutlined.default; + } +}); +Object.defineProperty(exports, "NoFoodRounded", { + enumerable: true, + get: function () { + return _NoFoodRounded.default; + } +}); +Object.defineProperty(exports, "NoFoodSharp", { + enumerable: true, + get: function () { + return _NoFoodSharp.default; + } +}); +Object.defineProperty(exports, "NoFoodTwoTone", { + enumerable: true, + get: function () { + return _NoFoodTwoTone.default; + } +}); +Object.defineProperty(exports, "NoLuggage", { + enumerable: true, + get: function () { + return _NoLuggage.default; + } +}); +Object.defineProperty(exports, "NoLuggageOutlined", { + enumerable: true, + get: function () { + return _NoLuggageOutlined.default; + } +}); +Object.defineProperty(exports, "NoLuggageRounded", { + enumerable: true, + get: function () { + return _NoLuggageRounded.default; + } +}); +Object.defineProperty(exports, "NoLuggageSharp", { + enumerable: true, + get: function () { + return _NoLuggageSharp.default; + } +}); +Object.defineProperty(exports, "NoLuggageTwoTone", { + enumerable: true, + get: function () { + return _NoLuggageTwoTone.default; + } +}); +Object.defineProperty(exports, "NoMeals", { + enumerable: true, + get: function () { + return _NoMeals.default; + } +}); +Object.defineProperty(exports, "NoMealsOutlined", { + enumerable: true, + get: function () { + return _NoMealsOutlined.default; + } +}); +Object.defineProperty(exports, "NoMealsRounded", { + enumerable: true, + get: function () { + return _NoMealsRounded.default; + } +}); +Object.defineProperty(exports, "NoMealsSharp", { + enumerable: true, + get: function () { + return _NoMealsSharp.default; + } +}); +Object.defineProperty(exports, "NoMealsTwoTone", { + enumerable: true, + get: function () { + return _NoMealsTwoTone.default; + } +}); +Object.defineProperty(exports, "NoMeetingRoom", { + enumerable: true, + get: function () { + return _NoMeetingRoom.default; + } +}); +Object.defineProperty(exports, "NoMeetingRoomOutlined", { + enumerable: true, + get: function () { + return _NoMeetingRoomOutlined.default; + } +}); +Object.defineProperty(exports, "NoMeetingRoomRounded", { + enumerable: true, + get: function () { + return _NoMeetingRoomRounded.default; + } +}); +Object.defineProperty(exports, "NoMeetingRoomSharp", { + enumerable: true, + get: function () { + return _NoMeetingRoomSharp.default; + } +}); +Object.defineProperty(exports, "NoMeetingRoomTwoTone", { + enumerable: true, + get: function () { + return _NoMeetingRoomTwoTone.default; + } +}); +Object.defineProperty(exports, "NoPhotography", { + enumerable: true, + get: function () { + return _NoPhotography.default; + } +}); +Object.defineProperty(exports, "NoPhotographyOutlined", { + enumerable: true, + get: function () { + return _NoPhotographyOutlined.default; + } +}); +Object.defineProperty(exports, "NoPhotographyRounded", { + enumerable: true, + get: function () { + return _NoPhotographyRounded.default; + } +}); +Object.defineProperty(exports, "NoPhotographySharp", { + enumerable: true, + get: function () { + return _NoPhotographySharp.default; + } +}); +Object.defineProperty(exports, "NoPhotographyTwoTone", { + enumerable: true, + get: function () { + return _NoPhotographyTwoTone.default; + } +}); +Object.defineProperty(exports, "NoSim", { + enumerable: true, + get: function () { + return _NoSim.default; + } +}); +Object.defineProperty(exports, "NoSimOutlined", { + enumerable: true, + get: function () { + return _NoSimOutlined.default; + } +}); +Object.defineProperty(exports, "NoSimRounded", { + enumerable: true, + get: function () { + return _NoSimRounded.default; + } +}); +Object.defineProperty(exports, "NoSimSharp", { + enumerable: true, + get: function () { + return _NoSimSharp.default; + } +}); +Object.defineProperty(exports, "NoSimTwoTone", { + enumerable: true, + get: function () { + return _NoSimTwoTone.default; + } +}); +Object.defineProperty(exports, "NoStroller", { + enumerable: true, + get: function () { + return _NoStroller.default; + } +}); +Object.defineProperty(exports, "NoStrollerOutlined", { + enumerable: true, + get: function () { + return _NoStrollerOutlined.default; + } +}); +Object.defineProperty(exports, "NoStrollerRounded", { + enumerable: true, + get: function () { + return _NoStrollerRounded.default; + } +}); +Object.defineProperty(exports, "NoStrollerSharp", { + enumerable: true, + get: function () { + return _NoStrollerSharp.default; + } +}); +Object.defineProperty(exports, "NoStrollerTwoTone", { + enumerable: true, + get: function () { + return _NoStrollerTwoTone.default; + } +}); +Object.defineProperty(exports, "NoTransfer", { + enumerable: true, + get: function () { + return _NoTransfer.default; + } +}); +Object.defineProperty(exports, "NoTransferOutlined", { + enumerable: true, + get: function () { + return _NoTransferOutlined.default; + } +}); +Object.defineProperty(exports, "NoTransferRounded", { + enumerable: true, + get: function () { + return _NoTransferRounded.default; + } +}); +Object.defineProperty(exports, "NoTransferSharp", { + enumerable: true, + get: function () { + return _NoTransferSharp.default; + } +}); +Object.defineProperty(exports, "NoTransferTwoTone", { + enumerable: true, + get: function () { + return _NoTransferTwoTone.default; + } +}); +Object.defineProperty(exports, "NordicWalking", { + enumerable: true, + get: function () { + return _NordicWalking.default; + } +}); +Object.defineProperty(exports, "NordicWalkingOutlined", { + enumerable: true, + get: function () { + return _NordicWalkingOutlined.default; + } +}); +Object.defineProperty(exports, "NordicWalkingRounded", { + enumerable: true, + get: function () { + return _NordicWalkingRounded.default; + } +}); +Object.defineProperty(exports, "NordicWalkingSharp", { + enumerable: true, + get: function () { + return _NordicWalkingSharp.default; + } +}); +Object.defineProperty(exports, "NordicWalkingTwoTone", { + enumerable: true, + get: function () { + return _NordicWalkingTwoTone.default; + } +}); +Object.defineProperty(exports, "North", { + enumerable: true, + get: function () { + return _North.default; + } +}); +Object.defineProperty(exports, "NorthEast", { + enumerable: true, + get: function () { + return _NorthEast.default; + } +}); +Object.defineProperty(exports, "NorthEastOutlined", { + enumerable: true, + get: function () { + return _NorthEastOutlined.default; + } +}); +Object.defineProperty(exports, "NorthEastRounded", { + enumerable: true, + get: function () { + return _NorthEastRounded.default; + } +}); +Object.defineProperty(exports, "NorthEastSharp", { + enumerable: true, + get: function () { + return _NorthEastSharp.default; + } +}); +Object.defineProperty(exports, "NorthEastTwoTone", { + enumerable: true, + get: function () { + return _NorthEastTwoTone.default; + } +}); +Object.defineProperty(exports, "NorthOutlined", { + enumerable: true, + get: function () { + return _NorthOutlined.default; + } +}); +Object.defineProperty(exports, "NorthRounded", { + enumerable: true, + get: function () { + return _NorthRounded.default; + } +}); +Object.defineProperty(exports, "NorthSharp", { + enumerable: true, + get: function () { + return _NorthSharp.default; + } +}); +Object.defineProperty(exports, "NorthTwoTone", { + enumerable: true, + get: function () { + return _NorthTwoTone.default; + } +}); +Object.defineProperty(exports, "NorthWest", { + enumerable: true, + get: function () { + return _NorthWest.default; + } +}); +Object.defineProperty(exports, "NorthWestOutlined", { + enumerable: true, + get: function () { + return _NorthWestOutlined.default; + } +}); +Object.defineProperty(exports, "NorthWestRounded", { + enumerable: true, + get: function () { + return _NorthWestRounded.default; + } +}); +Object.defineProperty(exports, "NorthWestSharp", { + enumerable: true, + get: function () { + return _NorthWestSharp.default; + } +}); +Object.defineProperty(exports, "NorthWestTwoTone", { + enumerable: true, + get: function () { + return _NorthWestTwoTone.default; + } +}); +Object.defineProperty(exports, "NotAccessible", { + enumerable: true, + get: function () { + return _NotAccessible.default; + } +}); +Object.defineProperty(exports, "NotAccessibleOutlined", { + enumerable: true, + get: function () { + return _NotAccessibleOutlined.default; + } +}); +Object.defineProperty(exports, "NotAccessibleRounded", { + enumerable: true, + get: function () { + return _NotAccessibleRounded.default; + } +}); +Object.defineProperty(exports, "NotAccessibleSharp", { + enumerable: true, + get: function () { + return _NotAccessibleSharp.default; + } +}); +Object.defineProperty(exports, "NotAccessibleTwoTone", { + enumerable: true, + get: function () { + return _NotAccessibleTwoTone.default; + } +}); +Object.defineProperty(exports, "NotInterested", { + enumerable: true, + get: function () { + return _NotInterested.default; + } +}); +Object.defineProperty(exports, "NotInterestedOutlined", { + enumerable: true, + get: function () { + return _NotInterestedOutlined.default; + } +}); +Object.defineProperty(exports, "NotInterestedRounded", { + enumerable: true, + get: function () { + return _NotInterestedRounded.default; + } +}); +Object.defineProperty(exports, "NotInterestedSharp", { + enumerable: true, + get: function () { + return _NotInterestedSharp.default; + } +}); +Object.defineProperty(exports, "NotInterestedTwoTone", { + enumerable: true, + get: function () { + return _NotInterestedTwoTone.default; + } +}); +Object.defineProperty(exports, "NotListedLocation", { + enumerable: true, + get: function () { + return _NotListedLocation.default; + } +}); +Object.defineProperty(exports, "NotListedLocationOutlined", { + enumerable: true, + get: function () { + return _NotListedLocationOutlined.default; + } +}); +Object.defineProperty(exports, "NotListedLocationRounded", { + enumerable: true, + get: function () { + return _NotListedLocationRounded.default; + } +}); +Object.defineProperty(exports, "NotListedLocationSharp", { + enumerable: true, + get: function () { + return _NotListedLocationSharp.default; + } +}); +Object.defineProperty(exports, "NotListedLocationTwoTone", { + enumerable: true, + get: function () { + return _NotListedLocationTwoTone.default; + } +}); +Object.defineProperty(exports, "NotStarted", { + enumerable: true, + get: function () { + return _NotStarted.default; + } +}); +Object.defineProperty(exports, "NotStartedOutlined", { + enumerable: true, + get: function () { + return _NotStartedOutlined.default; + } +}); +Object.defineProperty(exports, "NotStartedRounded", { + enumerable: true, + get: function () { + return _NotStartedRounded.default; + } +}); +Object.defineProperty(exports, "NotStartedSharp", { + enumerable: true, + get: function () { + return _NotStartedSharp.default; + } +}); +Object.defineProperty(exports, "NotStartedTwoTone", { + enumerable: true, + get: function () { + return _NotStartedTwoTone.default; + } +}); +Object.defineProperty(exports, "Note", { + enumerable: true, + get: function () { + return _Note.default; + } +}); +Object.defineProperty(exports, "NoteAdd", { + enumerable: true, + get: function () { + return _NoteAdd.default; + } +}); +Object.defineProperty(exports, "NoteAddOutlined", { + enumerable: true, + get: function () { + return _NoteAddOutlined.default; + } +}); +Object.defineProperty(exports, "NoteAddRounded", { + enumerable: true, + get: function () { + return _NoteAddRounded.default; + } +}); +Object.defineProperty(exports, "NoteAddSharp", { + enumerable: true, + get: function () { + return _NoteAddSharp.default; + } +}); +Object.defineProperty(exports, "NoteAddTwoTone", { + enumerable: true, + get: function () { + return _NoteAddTwoTone.default; + } +}); +Object.defineProperty(exports, "NoteAlt", { + enumerable: true, + get: function () { + return _NoteAlt.default; + } +}); +Object.defineProperty(exports, "NoteAltOutlined", { + enumerable: true, + get: function () { + return _NoteAltOutlined.default; + } +}); +Object.defineProperty(exports, "NoteAltRounded", { + enumerable: true, + get: function () { + return _NoteAltRounded.default; + } +}); +Object.defineProperty(exports, "NoteAltSharp", { + enumerable: true, + get: function () { + return _NoteAltSharp.default; + } +}); +Object.defineProperty(exports, "NoteAltTwoTone", { + enumerable: true, + get: function () { + return _NoteAltTwoTone.default; + } +}); +Object.defineProperty(exports, "NoteOutlined", { + enumerable: true, + get: function () { + return _NoteOutlined.default; + } +}); +Object.defineProperty(exports, "NoteRounded", { + enumerable: true, + get: function () { + return _NoteRounded.default; + } +}); +Object.defineProperty(exports, "NoteSharp", { + enumerable: true, + get: function () { + return _NoteSharp.default; + } +}); +Object.defineProperty(exports, "NoteTwoTone", { + enumerable: true, + get: function () { + return _NoteTwoTone.default; + } +}); +Object.defineProperty(exports, "Notes", { + enumerable: true, + get: function () { + return _Notes.default; + } +}); +Object.defineProperty(exports, "NotesOutlined", { + enumerable: true, + get: function () { + return _NotesOutlined.default; + } +}); +Object.defineProperty(exports, "NotesRounded", { + enumerable: true, + get: function () { + return _NotesRounded.default; + } +}); +Object.defineProperty(exports, "NotesSharp", { + enumerable: true, + get: function () { + return _NotesSharp.default; + } +}); +Object.defineProperty(exports, "NotesTwoTone", { + enumerable: true, + get: function () { + return _NotesTwoTone.default; + } +}); +Object.defineProperty(exports, "NotificationAdd", { + enumerable: true, + get: function () { + return _NotificationAdd.default; + } +}); +Object.defineProperty(exports, "NotificationAddOutlined", { + enumerable: true, + get: function () { + return _NotificationAddOutlined.default; + } +}); +Object.defineProperty(exports, "NotificationAddRounded", { + enumerable: true, + get: function () { + return _NotificationAddRounded.default; + } +}); +Object.defineProperty(exports, "NotificationAddSharp", { + enumerable: true, + get: function () { + return _NotificationAddSharp.default; + } +}); +Object.defineProperty(exports, "NotificationAddTwoTone", { + enumerable: true, + get: function () { + return _NotificationAddTwoTone.default; + } +}); +Object.defineProperty(exports, "NotificationImportant", { + enumerable: true, + get: function () { + return _NotificationImportant.default; + } +}); +Object.defineProperty(exports, "NotificationImportantOutlined", { + enumerable: true, + get: function () { + return _NotificationImportantOutlined.default; + } +}); +Object.defineProperty(exports, "NotificationImportantRounded", { + enumerable: true, + get: function () { + return _NotificationImportantRounded.default; + } +}); +Object.defineProperty(exports, "NotificationImportantSharp", { + enumerable: true, + get: function () { + return _NotificationImportantSharp.default; + } +}); +Object.defineProperty(exports, "NotificationImportantTwoTone", { + enumerable: true, + get: function () { + return _NotificationImportantTwoTone.default; + } +}); +Object.defineProperty(exports, "Notifications", { + enumerable: true, + get: function () { + return _Notifications.default; + } +}); +Object.defineProperty(exports, "NotificationsActive", { + enumerable: true, + get: function () { + return _NotificationsActive.default; + } +}); +Object.defineProperty(exports, "NotificationsActiveOutlined", { + enumerable: true, + get: function () { + return _NotificationsActiveOutlined.default; + } +}); +Object.defineProperty(exports, "NotificationsActiveRounded", { + enumerable: true, + get: function () { + return _NotificationsActiveRounded.default; + } +}); +Object.defineProperty(exports, "NotificationsActiveSharp", { + enumerable: true, + get: function () { + return _NotificationsActiveSharp.default; + } +}); +Object.defineProperty(exports, "NotificationsActiveTwoTone", { + enumerable: true, + get: function () { + return _NotificationsActiveTwoTone.default; + } +}); +Object.defineProperty(exports, "NotificationsNone", { + enumerable: true, + get: function () { + return _NotificationsNone.default; + } +}); +Object.defineProperty(exports, "NotificationsNoneOutlined", { + enumerable: true, + get: function () { + return _NotificationsNoneOutlined.default; + } +}); +Object.defineProperty(exports, "NotificationsNoneRounded", { + enumerable: true, + get: function () { + return _NotificationsNoneRounded.default; + } +}); +Object.defineProperty(exports, "NotificationsNoneSharp", { + enumerable: true, + get: function () { + return _NotificationsNoneSharp.default; + } +}); +Object.defineProperty(exports, "NotificationsNoneTwoTone", { + enumerable: true, + get: function () { + return _NotificationsNoneTwoTone.default; + } +}); +Object.defineProperty(exports, "NotificationsOff", { + enumerable: true, + get: function () { + return _NotificationsOff.default; + } +}); +Object.defineProperty(exports, "NotificationsOffOutlined", { + enumerable: true, + get: function () { + return _NotificationsOffOutlined.default; + } +}); +Object.defineProperty(exports, "NotificationsOffRounded", { + enumerable: true, + get: function () { + return _NotificationsOffRounded.default; + } +}); +Object.defineProperty(exports, "NotificationsOffSharp", { + enumerable: true, + get: function () { + return _NotificationsOffSharp.default; + } +}); +Object.defineProperty(exports, "NotificationsOffTwoTone", { + enumerable: true, + get: function () { + return _NotificationsOffTwoTone.default; + } +}); +Object.defineProperty(exports, "NotificationsOutlined", { + enumerable: true, + get: function () { + return _NotificationsOutlined.default; + } +}); +Object.defineProperty(exports, "NotificationsPaused", { + enumerable: true, + get: function () { + return _NotificationsPaused.default; + } +}); +Object.defineProperty(exports, "NotificationsPausedOutlined", { + enumerable: true, + get: function () { + return _NotificationsPausedOutlined.default; + } +}); +Object.defineProperty(exports, "NotificationsPausedRounded", { + enumerable: true, + get: function () { + return _NotificationsPausedRounded.default; + } +}); +Object.defineProperty(exports, "NotificationsPausedSharp", { + enumerable: true, + get: function () { + return _NotificationsPausedSharp.default; + } +}); +Object.defineProperty(exports, "NotificationsPausedTwoTone", { + enumerable: true, + get: function () { + return _NotificationsPausedTwoTone.default; + } +}); +Object.defineProperty(exports, "NotificationsRounded", { + enumerable: true, + get: function () { + return _NotificationsRounded.default; + } +}); +Object.defineProperty(exports, "NotificationsSharp", { + enumerable: true, + get: function () { + return _NotificationsSharp.default; + } +}); +Object.defineProperty(exports, "NotificationsTwoTone", { + enumerable: true, + get: function () { + return _NotificationsTwoTone.default; + } +}); +Object.defineProperty(exports, "OfflineBolt", { + enumerable: true, + get: function () { + return _OfflineBolt.default; + } +}); +Object.defineProperty(exports, "OfflineBoltOutlined", { + enumerable: true, + get: function () { + return _OfflineBoltOutlined.default; + } +}); +Object.defineProperty(exports, "OfflineBoltRounded", { + enumerable: true, + get: function () { + return _OfflineBoltRounded.default; + } +}); +Object.defineProperty(exports, "OfflineBoltSharp", { + enumerable: true, + get: function () { + return _OfflineBoltSharp.default; + } +}); +Object.defineProperty(exports, "OfflineBoltTwoTone", { + enumerable: true, + get: function () { + return _OfflineBoltTwoTone.default; + } +}); +Object.defineProperty(exports, "OfflinePin", { + enumerable: true, + get: function () { + return _OfflinePin.default; + } +}); +Object.defineProperty(exports, "OfflinePinOutlined", { + enumerable: true, + get: function () { + return _OfflinePinOutlined.default; + } +}); +Object.defineProperty(exports, "OfflinePinRounded", { + enumerable: true, + get: function () { + return _OfflinePinRounded.default; + } +}); +Object.defineProperty(exports, "OfflinePinSharp", { + enumerable: true, + get: function () { + return _OfflinePinSharp.default; + } +}); +Object.defineProperty(exports, "OfflinePinTwoTone", { + enumerable: true, + get: function () { + return _OfflinePinTwoTone.default; + } +}); +Object.defineProperty(exports, "OfflineShare", { + enumerable: true, + get: function () { + return _OfflineShare.default; + } +}); +Object.defineProperty(exports, "OfflineShareOutlined", { + enumerable: true, + get: function () { + return _OfflineShareOutlined.default; + } +}); +Object.defineProperty(exports, "OfflineShareRounded", { + enumerable: true, + get: function () { + return _OfflineShareRounded.default; + } +}); +Object.defineProperty(exports, "OfflineShareSharp", { + enumerable: true, + get: function () { + return _OfflineShareSharp.default; + } +}); +Object.defineProperty(exports, "OfflineShareTwoTone", { + enumerable: true, + get: function () { + return _OfflineShareTwoTone.default; + } +}); +Object.defineProperty(exports, "OndemandVideo", { + enumerable: true, + get: function () { + return _OndemandVideo.default; + } +}); +Object.defineProperty(exports, "OndemandVideoOutlined", { + enumerable: true, + get: function () { + return _OndemandVideoOutlined.default; + } +}); +Object.defineProperty(exports, "OndemandVideoRounded", { + enumerable: true, + get: function () { + return _OndemandVideoRounded.default; + } +}); +Object.defineProperty(exports, "OndemandVideoSharp", { + enumerable: true, + get: function () { + return _OndemandVideoSharp.default; + } +}); +Object.defineProperty(exports, "OndemandVideoTwoTone", { + enumerable: true, + get: function () { + return _OndemandVideoTwoTone.default; + } +}); +Object.defineProperty(exports, "OneK", { + enumerable: true, + get: function () { + return _OneK.default; + } +}); +Object.defineProperty(exports, "OneKOutlined", { + enumerable: true, + get: function () { + return _OneKOutlined.default; + } +}); +Object.defineProperty(exports, "OneKPlus", { + enumerable: true, + get: function () { + return _OneKPlus.default; + } +}); +Object.defineProperty(exports, "OneKPlusOutlined", { + enumerable: true, + get: function () { + return _OneKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "OneKPlusRounded", { + enumerable: true, + get: function () { + return _OneKPlusRounded.default; + } +}); +Object.defineProperty(exports, "OneKPlusSharp", { + enumerable: true, + get: function () { + return _OneKPlusSharp.default; + } +}); +Object.defineProperty(exports, "OneKPlusTwoTone", { + enumerable: true, + get: function () { + return _OneKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "OneKRounded", { + enumerable: true, + get: function () { + return _OneKRounded.default; + } +}); +Object.defineProperty(exports, "OneKSharp", { + enumerable: true, + get: function () { + return _OneKSharp.default; + } +}); +Object.defineProperty(exports, "OneKTwoTone", { + enumerable: true, + get: function () { + return _OneKTwoTone.default; + } +}); +Object.defineProperty(exports, "OneKk", { + enumerable: true, + get: function () { + return _OneKk.default; + } +}); +Object.defineProperty(exports, "OneKkOutlined", { + enumerable: true, + get: function () { + return _OneKkOutlined.default; + } +}); +Object.defineProperty(exports, "OneKkRounded", { + enumerable: true, + get: function () { + return _OneKkRounded.default; + } +}); +Object.defineProperty(exports, "OneKkSharp", { + enumerable: true, + get: function () { + return _OneKkSharp.default; + } +}); +Object.defineProperty(exports, "OneKkTwoTone", { + enumerable: true, + get: function () { + return _OneKkTwoTone.default; + } +}); +Object.defineProperty(exports, "OnlinePrediction", { + enumerable: true, + get: function () { + return _OnlinePrediction.default; + } +}); +Object.defineProperty(exports, "OnlinePredictionOutlined", { + enumerable: true, + get: function () { + return _OnlinePredictionOutlined.default; + } +}); +Object.defineProperty(exports, "OnlinePredictionRounded", { + enumerable: true, + get: function () { + return _OnlinePredictionRounded.default; + } +}); +Object.defineProperty(exports, "OnlinePredictionSharp", { + enumerable: true, + get: function () { + return _OnlinePredictionSharp.default; + } +}); +Object.defineProperty(exports, "OnlinePredictionTwoTone", { + enumerable: true, + get: function () { + return _OnlinePredictionTwoTone.default; + } +}); +Object.defineProperty(exports, "Opacity", { + enumerable: true, + get: function () { + return _Opacity.default; + } +}); +Object.defineProperty(exports, "OpacityOutlined", { + enumerable: true, + get: function () { + return _OpacityOutlined.default; + } +}); +Object.defineProperty(exports, "OpacityRounded", { + enumerable: true, + get: function () { + return _OpacityRounded.default; + } +}); +Object.defineProperty(exports, "OpacitySharp", { + enumerable: true, + get: function () { + return _OpacitySharp.default; + } +}); +Object.defineProperty(exports, "OpacityTwoTone", { + enumerable: true, + get: function () { + return _OpacityTwoTone.default; + } +}); +Object.defineProperty(exports, "OpenInBrowser", { + enumerable: true, + get: function () { + return _OpenInBrowser.default; + } +}); +Object.defineProperty(exports, "OpenInBrowserOutlined", { + enumerable: true, + get: function () { + return _OpenInBrowserOutlined.default; + } +}); +Object.defineProperty(exports, "OpenInBrowserRounded", { + enumerable: true, + get: function () { + return _OpenInBrowserRounded.default; + } +}); +Object.defineProperty(exports, "OpenInBrowserSharp", { + enumerable: true, + get: function () { + return _OpenInBrowserSharp.default; + } +}); +Object.defineProperty(exports, "OpenInBrowserTwoTone", { + enumerable: true, + get: function () { + return _OpenInBrowserTwoTone.default; + } +}); +Object.defineProperty(exports, "OpenInFull", { + enumerable: true, + get: function () { + return _OpenInFull.default; + } +}); +Object.defineProperty(exports, "OpenInFullOutlined", { + enumerable: true, + get: function () { + return _OpenInFullOutlined.default; + } +}); +Object.defineProperty(exports, "OpenInFullRounded", { + enumerable: true, + get: function () { + return _OpenInFullRounded.default; + } +}); +Object.defineProperty(exports, "OpenInFullSharp", { + enumerable: true, + get: function () { + return _OpenInFullSharp.default; + } +}); +Object.defineProperty(exports, "OpenInFullTwoTone", { + enumerable: true, + get: function () { + return _OpenInFullTwoTone.default; + } +}); +Object.defineProperty(exports, "OpenInNew", { + enumerable: true, + get: function () { + return _OpenInNew.default; + } +}); +Object.defineProperty(exports, "OpenInNewOff", { + enumerable: true, + get: function () { + return _OpenInNewOff.default; + } +}); +Object.defineProperty(exports, "OpenInNewOffOutlined", { + enumerable: true, + get: function () { + return _OpenInNewOffOutlined.default; + } +}); +Object.defineProperty(exports, "OpenInNewOffRounded", { + enumerable: true, + get: function () { + return _OpenInNewOffRounded.default; + } +}); +Object.defineProperty(exports, "OpenInNewOffSharp", { + enumerable: true, + get: function () { + return _OpenInNewOffSharp.default; + } +}); +Object.defineProperty(exports, "OpenInNewOffTwoTone", { + enumerable: true, + get: function () { + return _OpenInNewOffTwoTone.default; + } +}); +Object.defineProperty(exports, "OpenInNewOutlined", { + enumerable: true, + get: function () { + return _OpenInNewOutlined.default; + } +}); +Object.defineProperty(exports, "OpenInNewRounded", { + enumerable: true, + get: function () { + return _OpenInNewRounded.default; + } +}); +Object.defineProperty(exports, "OpenInNewSharp", { + enumerable: true, + get: function () { + return _OpenInNewSharp.default; + } +}); +Object.defineProperty(exports, "OpenInNewTwoTone", { + enumerable: true, + get: function () { + return _OpenInNewTwoTone.default; + } +}); +Object.defineProperty(exports, "OpenWith", { + enumerable: true, + get: function () { + return _OpenWith.default; + } +}); +Object.defineProperty(exports, "OpenWithOutlined", { + enumerable: true, + get: function () { + return _OpenWithOutlined.default; + } +}); +Object.defineProperty(exports, "OpenWithRounded", { + enumerable: true, + get: function () { + return _OpenWithRounded.default; + } +}); +Object.defineProperty(exports, "OpenWithSharp", { + enumerable: true, + get: function () { + return _OpenWithSharp.default; + } +}); +Object.defineProperty(exports, "OpenWithTwoTone", { + enumerable: true, + get: function () { + return _OpenWithTwoTone.default; + } +}); +Object.defineProperty(exports, "OtherHouses", { + enumerable: true, + get: function () { + return _OtherHouses.default; + } +}); +Object.defineProperty(exports, "OtherHousesOutlined", { + enumerable: true, + get: function () { + return _OtherHousesOutlined.default; + } +}); +Object.defineProperty(exports, "OtherHousesRounded", { + enumerable: true, + get: function () { + return _OtherHousesRounded.default; + } +}); +Object.defineProperty(exports, "OtherHousesSharp", { + enumerable: true, + get: function () { + return _OtherHousesSharp.default; + } +}); +Object.defineProperty(exports, "OtherHousesTwoTone", { + enumerable: true, + get: function () { + return _OtherHousesTwoTone.default; + } +}); +Object.defineProperty(exports, "Outbound", { + enumerable: true, + get: function () { + return _Outbound.default; + } +}); +Object.defineProperty(exports, "OutboundOutlined", { + enumerable: true, + get: function () { + return _OutboundOutlined.default; + } +}); +Object.defineProperty(exports, "OutboundRounded", { + enumerable: true, + get: function () { + return _OutboundRounded.default; + } +}); +Object.defineProperty(exports, "OutboundSharp", { + enumerable: true, + get: function () { + return _OutboundSharp.default; + } +}); +Object.defineProperty(exports, "OutboundTwoTone", { + enumerable: true, + get: function () { + return _OutboundTwoTone.default; + } +}); +Object.defineProperty(exports, "Outbox", { + enumerable: true, + get: function () { + return _Outbox.default; + } +}); +Object.defineProperty(exports, "OutboxOutlined", { + enumerable: true, + get: function () { + return _OutboxOutlined.default; + } +}); +Object.defineProperty(exports, "OutboxRounded", { + enumerable: true, + get: function () { + return _OutboxRounded.default; + } +}); +Object.defineProperty(exports, "OutboxSharp", { + enumerable: true, + get: function () { + return _OutboxSharp.default; + } +}); +Object.defineProperty(exports, "OutboxTwoTone", { + enumerable: true, + get: function () { + return _OutboxTwoTone.default; + } +}); +Object.defineProperty(exports, "OutdoorGrill", { + enumerable: true, + get: function () { + return _OutdoorGrill.default; + } +}); +Object.defineProperty(exports, "OutdoorGrillOutlined", { + enumerable: true, + get: function () { + return _OutdoorGrillOutlined.default; + } +}); +Object.defineProperty(exports, "OutdoorGrillRounded", { + enumerable: true, + get: function () { + return _OutdoorGrillRounded.default; + } +}); +Object.defineProperty(exports, "OutdoorGrillSharp", { + enumerable: true, + get: function () { + return _OutdoorGrillSharp.default; + } +}); +Object.defineProperty(exports, "OutdoorGrillTwoTone", { + enumerable: true, + get: function () { + return _OutdoorGrillTwoTone.default; + } +}); +Object.defineProperty(exports, "Outlet", { + enumerable: true, + get: function () { + return _Outlet.default; + } +}); +Object.defineProperty(exports, "OutletOutlined", { + enumerable: true, + get: function () { + return _OutletOutlined.default; + } +}); +Object.defineProperty(exports, "OutletRounded", { + enumerable: true, + get: function () { + return _OutletRounded.default; + } +}); +Object.defineProperty(exports, "OutletSharp", { + enumerable: true, + get: function () { + return _OutletSharp.default; + } +}); +Object.defineProperty(exports, "OutletTwoTone", { + enumerable: true, + get: function () { + return _OutletTwoTone.default; + } +}); +Object.defineProperty(exports, "OutlinedFlag", { + enumerable: true, + get: function () { + return _OutlinedFlag.default; + } +}); +Object.defineProperty(exports, "OutlinedFlagOutlined", { + enumerable: true, + get: function () { + return _OutlinedFlagOutlined.default; + } +}); +Object.defineProperty(exports, "OutlinedFlagRounded", { + enumerable: true, + get: function () { + return _OutlinedFlagRounded.default; + } +}); +Object.defineProperty(exports, "OutlinedFlagSharp", { + enumerable: true, + get: function () { + return _OutlinedFlagSharp.default; + } +}); +Object.defineProperty(exports, "OutlinedFlagTwoTone", { + enumerable: true, + get: function () { + return _OutlinedFlagTwoTone.default; + } +}); +Object.defineProperty(exports, "Padding", { + enumerable: true, + get: function () { + return _Padding.default; + } +}); +Object.defineProperty(exports, "PaddingOutlined", { + enumerable: true, + get: function () { + return _PaddingOutlined.default; + } +}); +Object.defineProperty(exports, "PaddingRounded", { + enumerable: true, + get: function () { + return _PaddingRounded.default; + } +}); +Object.defineProperty(exports, "PaddingSharp", { + enumerable: true, + get: function () { + return _PaddingSharp.default; + } +}); +Object.defineProperty(exports, "PaddingTwoTone", { + enumerable: true, + get: function () { + return _PaddingTwoTone.default; + } +}); +Object.defineProperty(exports, "Pages", { + enumerable: true, + get: function () { + return _Pages.default; + } +}); +Object.defineProperty(exports, "PagesOutlined", { + enumerable: true, + get: function () { + return _PagesOutlined.default; + } +}); +Object.defineProperty(exports, "PagesRounded", { + enumerable: true, + get: function () { + return _PagesRounded.default; + } +}); +Object.defineProperty(exports, "PagesSharp", { + enumerable: true, + get: function () { + return _PagesSharp.default; + } +}); +Object.defineProperty(exports, "PagesTwoTone", { + enumerable: true, + get: function () { + return _PagesTwoTone.default; + } +}); +Object.defineProperty(exports, "Pageview", { + enumerable: true, + get: function () { + return _Pageview.default; + } +}); +Object.defineProperty(exports, "PageviewOutlined", { + enumerable: true, + get: function () { + return _PageviewOutlined.default; + } +}); +Object.defineProperty(exports, "PageviewRounded", { + enumerable: true, + get: function () { + return _PageviewRounded.default; + } +}); +Object.defineProperty(exports, "PageviewSharp", { + enumerable: true, + get: function () { + return _PageviewSharp.default; + } +}); +Object.defineProperty(exports, "PageviewTwoTone", { + enumerable: true, + get: function () { + return _PageviewTwoTone.default; + } +}); +Object.defineProperty(exports, "Paid", { + enumerable: true, + get: function () { + return _Paid.default; + } +}); +Object.defineProperty(exports, "PaidOutlined", { + enumerable: true, + get: function () { + return _PaidOutlined.default; + } +}); +Object.defineProperty(exports, "PaidRounded", { + enumerable: true, + get: function () { + return _PaidRounded.default; + } +}); +Object.defineProperty(exports, "PaidSharp", { + enumerable: true, + get: function () { + return _PaidSharp.default; + } +}); +Object.defineProperty(exports, "PaidTwoTone", { + enumerable: true, + get: function () { + return _PaidTwoTone.default; + } +}); +Object.defineProperty(exports, "Palette", { + enumerable: true, + get: function () { + return _Palette.default; + } +}); +Object.defineProperty(exports, "PaletteOutlined", { + enumerable: true, + get: function () { + return _PaletteOutlined.default; + } +}); +Object.defineProperty(exports, "PaletteRounded", { + enumerable: true, + get: function () { + return _PaletteRounded.default; + } +}); +Object.defineProperty(exports, "PaletteSharp", { + enumerable: true, + get: function () { + return _PaletteSharp.default; + } +}); +Object.defineProperty(exports, "PaletteTwoTone", { + enumerable: true, + get: function () { + return _PaletteTwoTone.default; + } +}); +Object.defineProperty(exports, "PanTool", { + enumerable: true, + get: function () { + return _PanTool.default; + } +}); +Object.defineProperty(exports, "PanToolOutlined", { + enumerable: true, + get: function () { + return _PanToolOutlined.default; + } +}); +Object.defineProperty(exports, "PanToolRounded", { + enumerable: true, + get: function () { + return _PanToolRounded.default; + } +}); +Object.defineProperty(exports, "PanToolSharp", { + enumerable: true, + get: function () { + return _PanToolSharp.default; + } +}); +Object.defineProperty(exports, "PanToolTwoTone", { + enumerable: true, + get: function () { + return _PanToolTwoTone.default; + } +}); +Object.defineProperty(exports, "Panorama", { + enumerable: true, + get: function () { + return _Panorama.default; + } +}); +Object.defineProperty(exports, "PanoramaFishEye", { + enumerable: true, + get: function () { + return _PanoramaFishEye.default; + } +}); +Object.defineProperty(exports, "PanoramaFishEyeOutlined", { + enumerable: true, + get: function () { + return _PanoramaFishEyeOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaFishEyeRounded", { + enumerable: true, + get: function () { + return _PanoramaFishEyeRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaFishEyeSharp", { + enumerable: true, + get: function () { + return _PanoramaFishEyeSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaFishEyeTwoTone", { + enumerable: true, + get: function () { + return _PanoramaFishEyeTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontal", { + enumerable: true, + get: function () { + return _PanoramaHorizontal.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalOutlined", { + enumerable: true, + get: function () { + return _PanoramaHorizontalOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalRounded", { + enumerable: true, + get: function () { + return _PanoramaHorizontalRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalSelect", { + enumerable: true, + get: function () { + return _PanoramaHorizontalSelect.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalSelectOutlined", { + enumerable: true, + get: function () { + return _PanoramaHorizontalSelectOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalSelectRounded", { + enumerable: true, + get: function () { + return _PanoramaHorizontalSelectRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalSelectSharp", { + enumerable: true, + get: function () { + return _PanoramaHorizontalSelectSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalSelectTwoTone", { + enumerable: true, + get: function () { + return _PanoramaHorizontalSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalSharp", { + enumerable: true, + get: function () { + return _PanoramaHorizontalSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaHorizontalTwoTone", { + enumerable: true, + get: function () { + return _PanoramaHorizontalTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaOutlined", { + enumerable: true, + get: function () { + return _PanoramaOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphere", { + enumerable: true, + get: function () { + return _PanoramaPhotosphere.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereOutlined", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereRounded", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereSelect", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereSelect.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereSelectOutlined", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereSelectOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereSelectRounded", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereSelectRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereSelectSharp", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereSelectSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereSelectTwoTone", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereSharp", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaPhotosphereTwoTone", { + enumerable: true, + get: function () { + return _PanoramaPhotosphereTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaRounded", { + enumerable: true, + get: function () { + return _PanoramaRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaSharp", { + enumerable: true, + get: function () { + return _PanoramaSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaTwoTone", { + enumerable: true, + get: function () { + return _PanoramaTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaVertical", { + enumerable: true, + get: function () { + return _PanoramaVertical.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalOutlined", { + enumerable: true, + get: function () { + return _PanoramaVerticalOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalRounded", { + enumerable: true, + get: function () { + return _PanoramaVerticalRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalSelect", { + enumerable: true, + get: function () { + return _PanoramaVerticalSelect.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalSelectOutlined", { + enumerable: true, + get: function () { + return _PanoramaVerticalSelectOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalSelectRounded", { + enumerable: true, + get: function () { + return _PanoramaVerticalSelectRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalSelectSharp", { + enumerable: true, + get: function () { + return _PanoramaVerticalSelectSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalSelectTwoTone", { + enumerable: true, + get: function () { + return _PanoramaVerticalSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalSharp", { + enumerable: true, + get: function () { + return _PanoramaVerticalSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaVerticalTwoTone", { + enumerable: true, + get: function () { + return _PanoramaVerticalTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngle", { + enumerable: true, + get: function () { + return _PanoramaWideAngle.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleOutlined", { + enumerable: true, + get: function () { + return _PanoramaWideAngleOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleRounded", { + enumerable: true, + get: function () { + return _PanoramaWideAngleRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleSelect", { + enumerable: true, + get: function () { + return _PanoramaWideAngleSelect.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleSelectOutlined", { + enumerable: true, + get: function () { + return _PanoramaWideAngleSelectOutlined.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleSelectRounded", { + enumerable: true, + get: function () { + return _PanoramaWideAngleSelectRounded.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleSelectSharp", { + enumerable: true, + get: function () { + return _PanoramaWideAngleSelectSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleSelectTwoTone", { + enumerable: true, + get: function () { + return _PanoramaWideAngleSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleSharp", { + enumerable: true, + get: function () { + return _PanoramaWideAngleSharp.default; + } +}); +Object.defineProperty(exports, "PanoramaWideAngleTwoTone", { + enumerable: true, + get: function () { + return _PanoramaWideAngleTwoTone.default; + } +}); +Object.defineProperty(exports, "Paragliding", { + enumerable: true, + get: function () { + return _Paragliding.default; + } +}); +Object.defineProperty(exports, "ParaglidingOutlined", { + enumerable: true, + get: function () { + return _ParaglidingOutlined.default; + } +}); +Object.defineProperty(exports, "ParaglidingRounded", { + enumerable: true, + get: function () { + return _ParaglidingRounded.default; + } +}); +Object.defineProperty(exports, "ParaglidingSharp", { + enumerable: true, + get: function () { + return _ParaglidingSharp.default; + } +}); +Object.defineProperty(exports, "ParaglidingTwoTone", { + enumerable: true, + get: function () { + return _ParaglidingTwoTone.default; + } +}); +Object.defineProperty(exports, "Park", { + enumerable: true, + get: function () { + return _Park.default; + } +}); +Object.defineProperty(exports, "ParkOutlined", { + enumerable: true, + get: function () { + return _ParkOutlined.default; + } +}); +Object.defineProperty(exports, "ParkRounded", { + enumerable: true, + get: function () { + return _ParkRounded.default; + } +}); +Object.defineProperty(exports, "ParkSharp", { + enumerable: true, + get: function () { + return _ParkSharp.default; + } +}); +Object.defineProperty(exports, "ParkTwoTone", { + enumerable: true, + get: function () { + return _ParkTwoTone.default; + } +}); +Object.defineProperty(exports, "PartyMode", { + enumerable: true, + get: function () { + return _PartyMode.default; + } +}); +Object.defineProperty(exports, "PartyModeOutlined", { + enumerable: true, + get: function () { + return _PartyModeOutlined.default; + } +}); +Object.defineProperty(exports, "PartyModeRounded", { + enumerable: true, + get: function () { + return _PartyModeRounded.default; + } +}); +Object.defineProperty(exports, "PartyModeSharp", { + enumerable: true, + get: function () { + return _PartyModeSharp.default; + } +}); +Object.defineProperty(exports, "PartyModeTwoTone", { + enumerable: true, + get: function () { + return _PartyModeTwoTone.default; + } +}); +Object.defineProperty(exports, "Password", { + enumerable: true, + get: function () { + return _Password.default; + } +}); +Object.defineProperty(exports, "PasswordOutlined", { + enumerable: true, + get: function () { + return _PasswordOutlined.default; + } +}); +Object.defineProperty(exports, "PasswordRounded", { + enumerable: true, + get: function () { + return _PasswordRounded.default; + } +}); +Object.defineProperty(exports, "PasswordSharp", { + enumerable: true, + get: function () { + return _PasswordSharp.default; + } +}); +Object.defineProperty(exports, "PasswordTwoTone", { + enumerable: true, + get: function () { + return _PasswordTwoTone.default; + } +}); +Object.defineProperty(exports, "Pattern", { + enumerable: true, + get: function () { + return _Pattern.default; + } +}); +Object.defineProperty(exports, "PatternOutlined", { + enumerable: true, + get: function () { + return _PatternOutlined.default; + } +}); +Object.defineProperty(exports, "PatternRounded", { + enumerable: true, + get: function () { + return _PatternRounded.default; + } +}); +Object.defineProperty(exports, "PatternSharp", { + enumerable: true, + get: function () { + return _PatternSharp.default; + } +}); +Object.defineProperty(exports, "PatternTwoTone", { + enumerable: true, + get: function () { + return _PatternTwoTone.default; + } +}); +Object.defineProperty(exports, "Pause", { + enumerable: true, + get: function () { + return _Pause.default; + } +}); +Object.defineProperty(exports, "PauseCircle", { + enumerable: true, + get: function () { + return _PauseCircle.default; + } +}); +Object.defineProperty(exports, "PauseCircleFilled", { + enumerable: true, + get: function () { + return _PauseCircleFilled.default; + } +}); +Object.defineProperty(exports, "PauseCircleFilledOutlined", { + enumerable: true, + get: function () { + return _PauseCircleFilledOutlined.default; + } +}); +Object.defineProperty(exports, "PauseCircleFilledRounded", { + enumerable: true, + get: function () { + return _PauseCircleFilledRounded.default; + } +}); +Object.defineProperty(exports, "PauseCircleFilledSharp", { + enumerable: true, + get: function () { + return _PauseCircleFilledSharp.default; + } +}); +Object.defineProperty(exports, "PauseCircleFilledTwoTone", { + enumerable: true, + get: function () { + return _PauseCircleFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "PauseCircleOutline", { + enumerable: true, + get: function () { + return _PauseCircleOutline.default; + } +}); +Object.defineProperty(exports, "PauseCircleOutlineOutlined", { + enumerable: true, + get: function () { + return _PauseCircleOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "PauseCircleOutlineRounded", { + enumerable: true, + get: function () { + return _PauseCircleOutlineRounded.default; + } +}); +Object.defineProperty(exports, "PauseCircleOutlineSharp", { + enumerable: true, + get: function () { + return _PauseCircleOutlineSharp.default; + } +}); +Object.defineProperty(exports, "PauseCircleOutlineTwoTone", { + enumerable: true, + get: function () { + return _PauseCircleOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "PauseCircleOutlined", { + enumerable: true, + get: function () { + return _PauseCircleOutlined.default; + } +}); +Object.defineProperty(exports, "PauseCircleRounded", { + enumerable: true, + get: function () { + return _PauseCircleRounded.default; + } +}); +Object.defineProperty(exports, "PauseCircleSharp", { + enumerable: true, + get: function () { + return _PauseCircleSharp.default; + } +}); +Object.defineProperty(exports, "PauseCircleTwoTone", { + enumerable: true, + get: function () { + return _PauseCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "PauseOutlined", { + enumerable: true, + get: function () { + return _PauseOutlined.default; + } +}); +Object.defineProperty(exports, "PausePresentation", { + enumerable: true, + get: function () { + return _PausePresentation.default; + } +}); +Object.defineProperty(exports, "PausePresentationOutlined", { + enumerable: true, + get: function () { + return _PausePresentationOutlined.default; + } +}); +Object.defineProperty(exports, "PausePresentationRounded", { + enumerable: true, + get: function () { + return _PausePresentationRounded.default; + } +}); +Object.defineProperty(exports, "PausePresentationSharp", { + enumerable: true, + get: function () { + return _PausePresentationSharp.default; + } +}); +Object.defineProperty(exports, "PausePresentationTwoTone", { + enumerable: true, + get: function () { + return _PausePresentationTwoTone.default; + } +}); +Object.defineProperty(exports, "PauseRounded", { + enumerable: true, + get: function () { + return _PauseRounded.default; + } +}); +Object.defineProperty(exports, "PauseSharp", { + enumerable: true, + get: function () { + return _PauseSharp.default; + } +}); +Object.defineProperty(exports, "PauseTwoTone", { + enumerable: true, + get: function () { + return _PauseTwoTone.default; + } +}); +Object.defineProperty(exports, "Payment", { + enumerable: true, + get: function () { + return _Payment.default; + } +}); +Object.defineProperty(exports, "PaymentOutlined", { + enumerable: true, + get: function () { + return _PaymentOutlined.default; + } +}); +Object.defineProperty(exports, "PaymentRounded", { + enumerable: true, + get: function () { + return _PaymentRounded.default; + } +}); +Object.defineProperty(exports, "PaymentSharp", { + enumerable: true, + get: function () { + return _PaymentSharp.default; + } +}); +Object.defineProperty(exports, "PaymentTwoTone", { + enumerable: true, + get: function () { + return _PaymentTwoTone.default; + } +}); +Object.defineProperty(exports, "Payments", { + enumerable: true, + get: function () { + return _Payments.default; + } +}); +Object.defineProperty(exports, "PaymentsOutlined", { + enumerable: true, + get: function () { + return _PaymentsOutlined.default; + } +}); +Object.defineProperty(exports, "PaymentsRounded", { + enumerable: true, + get: function () { + return _PaymentsRounded.default; + } +}); +Object.defineProperty(exports, "PaymentsSharp", { + enumerable: true, + get: function () { + return _PaymentsSharp.default; + } +}); +Object.defineProperty(exports, "PaymentsTwoTone", { + enumerable: true, + get: function () { + return _PaymentsTwoTone.default; + } +}); +Object.defineProperty(exports, "PedalBike", { + enumerable: true, + get: function () { + return _PedalBike.default; + } +}); +Object.defineProperty(exports, "PedalBikeOutlined", { + enumerable: true, + get: function () { + return _PedalBikeOutlined.default; + } +}); +Object.defineProperty(exports, "PedalBikeRounded", { + enumerable: true, + get: function () { + return _PedalBikeRounded.default; + } +}); +Object.defineProperty(exports, "PedalBikeSharp", { + enumerable: true, + get: function () { + return _PedalBikeSharp.default; + } +}); +Object.defineProperty(exports, "PedalBikeTwoTone", { + enumerable: true, + get: function () { + return _PedalBikeTwoTone.default; + } +}); +Object.defineProperty(exports, "Pending", { + enumerable: true, + get: function () { + return _Pending.default; + } +}); +Object.defineProperty(exports, "PendingActions", { + enumerable: true, + get: function () { + return _PendingActions.default; + } +}); +Object.defineProperty(exports, "PendingActionsOutlined", { + enumerable: true, + get: function () { + return _PendingActionsOutlined.default; + } +}); +Object.defineProperty(exports, "PendingActionsRounded", { + enumerable: true, + get: function () { + return _PendingActionsRounded.default; + } +}); +Object.defineProperty(exports, "PendingActionsSharp", { + enumerable: true, + get: function () { + return _PendingActionsSharp.default; + } +}); +Object.defineProperty(exports, "PendingActionsTwoTone", { + enumerable: true, + get: function () { + return _PendingActionsTwoTone.default; + } +}); +Object.defineProperty(exports, "PendingOutlined", { + enumerable: true, + get: function () { + return _PendingOutlined.default; + } +}); +Object.defineProperty(exports, "PendingRounded", { + enumerable: true, + get: function () { + return _PendingRounded.default; + } +}); +Object.defineProperty(exports, "PendingSharp", { + enumerable: true, + get: function () { + return _PendingSharp.default; + } +}); +Object.defineProperty(exports, "PendingTwoTone", { + enumerable: true, + get: function () { + return _PendingTwoTone.default; + } +}); +Object.defineProperty(exports, "People", { + enumerable: true, + get: function () { + return _People.default; + } +}); +Object.defineProperty(exports, "PeopleAlt", { + enumerable: true, + get: function () { + return _PeopleAlt.default; + } +}); +Object.defineProperty(exports, "PeopleAltOutlined", { + enumerable: true, + get: function () { + return _PeopleAltOutlined.default; + } +}); +Object.defineProperty(exports, "PeopleAltRounded", { + enumerable: true, + get: function () { + return _PeopleAltRounded.default; + } +}); +Object.defineProperty(exports, "PeopleAltSharp", { + enumerable: true, + get: function () { + return _PeopleAltSharp.default; + } +}); +Object.defineProperty(exports, "PeopleAltTwoTone", { + enumerable: true, + get: function () { + return _PeopleAltTwoTone.default; + } +}); +Object.defineProperty(exports, "PeopleOutline", { + enumerable: true, + get: function () { + return _PeopleOutline.default; + } +}); +Object.defineProperty(exports, "PeopleOutlineOutlined", { + enumerable: true, + get: function () { + return _PeopleOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "PeopleOutlineRounded", { + enumerable: true, + get: function () { + return _PeopleOutlineRounded.default; + } +}); +Object.defineProperty(exports, "PeopleOutlineSharp", { + enumerable: true, + get: function () { + return _PeopleOutlineSharp.default; + } +}); +Object.defineProperty(exports, "PeopleOutlineTwoTone", { + enumerable: true, + get: function () { + return _PeopleOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "PeopleOutlined", { + enumerable: true, + get: function () { + return _PeopleOutlined.default; + } +}); +Object.defineProperty(exports, "PeopleRounded", { + enumerable: true, + get: function () { + return _PeopleRounded.default; + } +}); +Object.defineProperty(exports, "PeopleSharp", { + enumerable: true, + get: function () { + return _PeopleSharp.default; + } +}); +Object.defineProperty(exports, "PeopleTwoTone", { + enumerable: true, + get: function () { + return _PeopleTwoTone.default; + } +}); +Object.defineProperty(exports, "PermCameraMic", { + enumerable: true, + get: function () { + return _PermCameraMic.default; + } +}); +Object.defineProperty(exports, "PermCameraMicOutlined", { + enumerable: true, + get: function () { + return _PermCameraMicOutlined.default; + } +}); +Object.defineProperty(exports, "PermCameraMicRounded", { + enumerable: true, + get: function () { + return _PermCameraMicRounded.default; + } +}); +Object.defineProperty(exports, "PermCameraMicSharp", { + enumerable: true, + get: function () { + return _PermCameraMicSharp.default; + } +}); +Object.defineProperty(exports, "PermCameraMicTwoTone", { + enumerable: true, + get: function () { + return _PermCameraMicTwoTone.default; + } +}); +Object.defineProperty(exports, "PermContactCalendar", { + enumerable: true, + get: function () { + return _PermContactCalendar.default; + } +}); +Object.defineProperty(exports, "PermContactCalendarOutlined", { + enumerable: true, + get: function () { + return _PermContactCalendarOutlined.default; + } +}); +Object.defineProperty(exports, "PermContactCalendarRounded", { + enumerable: true, + get: function () { + return _PermContactCalendarRounded.default; + } +}); +Object.defineProperty(exports, "PermContactCalendarSharp", { + enumerable: true, + get: function () { + return _PermContactCalendarSharp.default; + } +}); +Object.defineProperty(exports, "PermContactCalendarTwoTone", { + enumerable: true, + get: function () { + return _PermContactCalendarTwoTone.default; + } +}); +Object.defineProperty(exports, "PermDataSetting", { + enumerable: true, + get: function () { + return _PermDataSetting.default; + } +}); +Object.defineProperty(exports, "PermDataSettingOutlined", { + enumerable: true, + get: function () { + return _PermDataSettingOutlined.default; + } +}); +Object.defineProperty(exports, "PermDataSettingRounded", { + enumerable: true, + get: function () { + return _PermDataSettingRounded.default; + } +}); +Object.defineProperty(exports, "PermDataSettingSharp", { + enumerable: true, + get: function () { + return _PermDataSettingSharp.default; + } +}); +Object.defineProperty(exports, "PermDataSettingTwoTone", { + enumerable: true, + get: function () { + return _PermDataSettingTwoTone.default; + } +}); +Object.defineProperty(exports, "PermDeviceInformation", { + enumerable: true, + get: function () { + return _PermDeviceInformation.default; + } +}); +Object.defineProperty(exports, "PermDeviceInformationOutlined", { + enumerable: true, + get: function () { + return _PermDeviceInformationOutlined.default; + } +}); +Object.defineProperty(exports, "PermDeviceInformationRounded", { + enumerable: true, + get: function () { + return _PermDeviceInformationRounded.default; + } +}); +Object.defineProperty(exports, "PermDeviceInformationSharp", { + enumerable: true, + get: function () { + return _PermDeviceInformationSharp.default; + } +}); +Object.defineProperty(exports, "PermDeviceInformationTwoTone", { + enumerable: true, + get: function () { + return _PermDeviceInformationTwoTone.default; + } +}); +Object.defineProperty(exports, "PermIdentity", { + enumerable: true, + get: function () { + return _PermIdentity.default; + } +}); +Object.defineProperty(exports, "PermIdentityOutlined", { + enumerable: true, + get: function () { + return _PermIdentityOutlined.default; + } +}); +Object.defineProperty(exports, "PermIdentityRounded", { + enumerable: true, + get: function () { + return _PermIdentityRounded.default; + } +}); +Object.defineProperty(exports, "PermIdentitySharp", { + enumerable: true, + get: function () { + return _PermIdentitySharp.default; + } +}); +Object.defineProperty(exports, "PermIdentityTwoTone", { + enumerable: true, + get: function () { + return _PermIdentityTwoTone.default; + } +}); +Object.defineProperty(exports, "PermMedia", { + enumerable: true, + get: function () { + return _PermMedia.default; + } +}); +Object.defineProperty(exports, "PermMediaOutlined", { + enumerable: true, + get: function () { + return _PermMediaOutlined.default; + } +}); +Object.defineProperty(exports, "PermMediaRounded", { + enumerable: true, + get: function () { + return _PermMediaRounded.default; + } +}); +Object.defineProperty(exports, "PermMediaSharp", { + enumerable: true, + get: function () { + return _PermMediaSharp.default; + } +}); +Object.defineProperty(exports, "PermMediaTwoTone", { + enumerable: true, + get: function () { + return _PermMediaTwoTone.default; + } +}); +Object.defineProperty(exports, "PermPhoneMsg", { + enumerable: true, + get: function () { + return _PermPhoneMsg.default; + } +}); +Object.defineProperty(exports, "PermPhoneMsgOutlined", { + enumerable: true, + get: function () { + return _PermPhoneMsgOutlined.default; + } +}); +Object.defineProperty(exports, "PermPhoneMsgRounded", { + enumerable: true, + get: function () { + return _PermPhoneMsgRounded.default; + } +}); +Object.defineProperty(exports, "PermPhoneMsgSharp", { + enumerable: true, + get: function () { + return _PermPhoneMsgSharp.default; + } +}); +Object.defineProperty(exports, "PermPhoneMsgTwoTone", { + enumerable: true, + get: function () { + return _PermPhoneMsgTwoTone.default; + } +}); +Object.defineProperty(exports, "PermScanWifi", { + enumerable: true, + get: function () { + return _PermScanWifi.default; + } +}); +Object.defineProperty(exports, "PermScanWifiOutlined", { + enumerable: true, + get: function () { + return _PermScanWifiOutlined.default; + } +}); +Object.defineProperty(exports, "PermScanWifiRounded", { + enumerable: true, + get: function () { + return _PermScanWifiRounded.default; + } +}); +Object.defineProperty(exports, "PermScanWifiSharp", { + enumerable: true, + get: function () { + return _PermScanWifiSharp.default; + } +}); +Object.defineProperty(exports, "PermScanWifiTwoTone", { + enumerable: true, + get: function () { + return _PermScanWifiTwoTone.default; + } +}); +Object.defineProperty(exports, "Person", { + enumerable: true, + get: function () { + return _Person.default; + } +}); +Object.defineProperty(exports, "PersonAdd", { + enumerable: true, + get: function () { + return _PersonAdd.default; + } +}); +Object.defineProperty(exports, "PersonAddAlt", { + enumerable: true, + get: function () { + return _PersonAddAlt.default; + } +}); +Object.defineProperty(exports, "PersonAddAlt1", { + enumerable: true, + get: function () { + return _PersonAddAlt2.default; + } +}); +Object.defineProperty(exports, "PersonAddAlt1Outlined", { + enumerable: true, + get: function () { + return _PersonAddAlt1Outlined.default; + } +}); +Object.defineProperty(exports, "PersonAddAlt1Rounded", { + enumerable: true, + get: function () { + return _PersonAddAlt1Rounded.default; + } +}); +Object.defineProperty(exports, "PersonAddAlt1Sharp", { + enumerable: true, + get: function () { + return _PersonAddAlt1Sharp.default; + } +}); +Object.defineProperty(exports, "PersonAddAlt1TwoTone", { + enumerable: true, + get: function () { + return _PersonAddAlt1TwoTone.default; + } +}); +Object.defineProperty(exports, "PersonAddAltOutlined", { + enumerable: true, + get: function () { + return _PersonAddAltOutlined.default; + } +}); +Object.defineProperty(exports, "PersonAddAltRounded", { + enumerable: true, + get: function () { + return _PersonAddAltRounded.default; + } +}); +Object.defineProperty(exports, "PersonAddAltSharp", { + enumerable: true, + get: function () { + return _PersonAddAltSharp.default; + } +}); +Object.defineProperty(exports, "PersonAddAltTwoTone", { + enumerable: true, + get: function () { + return _PersonAddAltTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonAddDisabled", { + enumerable: true, + get: function () { + return _PersonAddDisabled.default; + } +}); +Object.defineProperty(exports, "PersonAddDisabledOutlined", { + enumerable: true, + get: function () { + return _PersonAddDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "PersonAddDisabledRounded", { + enumerable: true, + get: function () { + return _PersonAddDisabledRounded.default; + } +}); +Object.defineProperty(exports, "PersonAddDisabledSharp", { + enumerable: true, + get: function () { + return _PersonAddDisabledSharp.default; + } +}); +Object.defineProperty(exports, "PersonAddDisabledTwoTone", { + enumerable: true, + get: function () { + return _PersonAddDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonAddOutlined", { + enumerable: true, + get: function () { + return _PersonAddOutlined.default; + } +}); +Object.defineProperty(exports, "PersonAddRounded", { + enumerable: true, + get: function () { + return _PersonAddRounded.default; + } +}); +Object.defineProperty(exports, "PersonAddSharp", { + enumerable: true, + get: function () { + return _PersonAddSharp.default; + } +}); +Object.defineProperty(exports, "PersonAddTwoTone", { + enumerable: true, + get: function () { + return _PersonAddTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonOff", { + enumerable: true, + get: function () { + return _PersonOff.default; + } +}); +Object.defineProperty(exports, "PersonOffOutlined", { + enumerable: true, + get: function () { + return _PersonOffOutlined.default; + } +}); +Object.defineProperty(exports, "PersonOffRounded", { + enumerable: true, + get: function () { + return _PersonOffRounded.default; + } +}); +Object.defineProperty(exports, "PersonOffSharp", { + enumerable: true, + get: function () { + return _PersonOffSharp.default; + } +}); +Object.defineProperty(exports, "PersonOffTwoTone", { + enumerable: true, + get: function () { + return _PersonOffTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonOutline", { + enumerable: true, + get: function () { + return _PersonOutline.default; + } +}); +Object.defineProperty(exports, "PersonOutlineOutlined", { + enumerable: true, + get: function () { + return _PersonOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "PersonOutlineRounded", { + enumerable: true, + get: function () { + return _PersonOutlineRounded.default; + } +}); +Object.defineProperty(exports, "PersonOutlineSharp", { + enumerable: true, + get: function () { + return _PersonOutlineSharp.default; + } +}); +Object.defineProperty(exports, "PersonOutlineTwoTone", { + enumerable: true, + get: function () { + return _PersonOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonOutlined", { + enumerable: true, + get: function () { + return _PersonOutlined.default; + } +}); +Object.defineProperty(exports, "PersonPin", { + enumerable: true, + get: function () { + return _PersonPin.default; + } +}); +Object.defineProperty(exports, "PersonPinCircle", { + enumerable: true, + get: function () { + return _PersonPinCircle.default; + } +}); +Object.defineProperty(exports, "PersonPinCircleOutlined", { + enumerable: true, + get: function () { + return _PersonPinCircleOutlined.default; + } +}); +Object.defineProperty(exports, "PersonPinCircleRounded", { + enumerable: true, + get: function () { + return _PersonPinCircleRounded.default; + } +}); +Object.defineProperty(exports, "PersonPinCircleSharp", { + enumerable: true, + get: function () { + return _PersonPinCircleSharp.default; + } +}); +Object.defineProperty(exports, "PersonPinCircleTwoTone", { + enumerable: true, + get: function () { + return _PersonPinCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonPinOutlined", { + enumerable: true, + get: function () { + return _PersonPinOutlined.default; + } +}); +Object.defineProperty(exports, "PersonPinRounded", { + enumerable: true, + get: function () { + return _PersonPinRounded.default; + } +}); +Object.defineProperty(exports, "PersonPinSharp", { + enumerable: true, + get: function () { + return _PersonPinSharp.default; + } +}); +Object.defineProperty(exports, "PersonPinTwoTone", { + enumerable: true, + get: function () { + return _PersonPinTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonRemove", { + enumerable: true, + get: function () { + return _PersonRemove.default; + } +}); +Object.defineProperty(exports, "PersonRemoveAlt1", { + enumerable: true, + get: function () { + return _PersonRemoveAlt.default; + } +}); +Object.defineProperty(exports, "PersonRemoveAlt1Outlined", { + enumerable: true, + get: function () { + return _PersonRemoveAlt1Outlined.default; + } +}); +Object.defineProperty(exports, "PersonRemoveAlt1Rounded", { + enumerable: true, + get: function () { + return _PersonRemoveAlt1Rounded.default; + } +}); +Object.defineProperty(exports, "PersonRemoveAlt1Sharp", { + enumerable: true, + get: function () { + return _PersonRemoveAlt1Sharp.default; + } +}); +Object.defineProperty(exports, "PersonRemoveAlt1TwoTone", { + enumerable: true, + get: function () { + return _PersonRemoveAlt1TwoTone.default; + } +}); +Object.defineProperty(exports, "PersonRemoveOutlined", { + enumerable: true, + get: function () { + return _PersonRemoveOutlined.default; + } +}); +Object.defineProperty(exports, "PersonRemoveRounded", { + enumerable: true, + get: function () { + return _PersonRemoveRounded.default; + } +}); +Object.defineProperty(exports, "PersonRemoveSharp", { + enumerable: true, + get: function () { + return _PersonRemoveSharp.default; + } +}); +Object.defineProperty(exports, "PersonRemoveTwoTone", { + enumerable: true, + get: function () { + return _PersonRemoveTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonRounded", { + enumerable: true, + get: function () { + return _PersonRounded.default; + } +}); +Object.defineProperty(exports, "PersonSearch", { + enumerable: true, + get: function () { + return _PersonSearch.default; + } +}); +Object.defineProperty(exports, "PersonSearchOutlined", { + enumerable: true, + get: function () { + return _PersonSearchOutlined.default; + } +}); +Object.defineProperty(exports, "PersonSearchRounded", { + enumerable: true, + get: function () { + return _PersonSearchRounded.default; + } +}); +Object.defineProperty(exports, "PersonSearchSharp", { + enumerable: true, + get: function () { + return _PersonSearchSharp.default; + } +}); +Object.defineProperty(exports, "PersonSearchTwoTone", { + enumerable: true, + get: function () { + return _PersonSearchTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonSharp", { + enumerable: true, + get: function () { + return _PersonSharp.default; + } +}); +Object.defineProperty(exports, "PersonTwoTone", { + enumerable: true, + get: function () { + return _PersonTwoTone.default; + } +}); +Object.defineProperty(exports, "PersonalVideo", { + enumerable: true, + get: function () { + return _PersonalVideo.default; + } +}); +Object.defineProperty(exports, "PersonalVideoOutlined", { + enumerable: true, + get: function () { + return _PersonalVideoOutlined.default; + } +}); +Object.defineProperty(exports, "PersonalVideoRounded", { + enumerable: true, + get: function () { + return _PersonalVideoRounded.default; + } +}); +Object.defineProperty(exports, "PersonalVideoSharp", { + enumerable: true, + get: function () { + return _PersonalVideoSharp.default; + } +}); +Object.defineProperty(exports, "PersonalVideoTwoTone", { + enumerable: true, + get: function () { + return _PersonalVideoTwoTone.default; + } +}); +Object.defineProperty(exports, "PestControl", { + enumerable: true, + get: function () { + return _PestControl.default; + } +}); +Object.defineProperty(exports, "PestControlOutlined", { + enumerable: true, + get: function () { + return _PestControlOutlined.default; + } +}); +Object.defineProperty(exports, "PestControlRodent", { + enumerable: true, + get: function () { + return _PestControlRodent.default; + } +}); +Object.defineProperty(exports, "PestControlRodentOutlined", { + enumerable: true, + get: function () { + return _PestControlRodentOutlined.default; + } +}); +Object.defineProperty(exports, "PestControlRodentRounded", { + enumerable: true, + get: function () { + return _PestControlRodentRounded.default; + } +}); +Object.defineProperty(exports, "PestControlRodentSharp", { + enumerable: true, + get: function () { + return _PestControlRodentSharp.default; + } +}); +Object.defineProperty(exports, "PestControlRodentTwoTone", { + enumerable: true, + get: function () { + return _PestControlRodentTwoTone.default; + } +}); +Object.defineProperty(exports, "PestControlRounded", { + enumerable: true, + get: function () { + return _PestControlRounded.default; + } +}); +Object.defineProperty(exports, "PestControlSharp", { + enumerable: true, + get: function () { + return _PestControlSharp.default; + } +}); +Object.defineProperty(exports, "PestControlTwoTone", { + enumerable: true, + get: function () { + return _PestControlTwoTone.default; + } +}); +Object.defineProperty(exports, "Pets", { + enumerable: true, + get: function () { + return _Pets.default; + } +}); +Object.defineProperty(exports, "PetsOutlined", { + enumerable: true, + get: function () { + return _PetsOutlined.default; + } +}); +Object.defineProperty(exports, "PetsRounded", { + enumerable: true, + get: function () { + return _PetsRounded.default; + } +}); +Object.defineProperty(exports, "PetsSharp", { + enumerable: true, + get: function () { + return _PetsSharp.default; + } +}); +Object.defineProperty(exports, "PetsTwoTone", { + enumerable: true, + get: function () { + return _PetsTwoTone.default; + } +}); +Object.defineProperty(exports, "Phone", { + enumerable: true, + get: function () { + return _Phone.default; + } +}); +Object.defineProperty(exports, "PhoneAndroid", { + enumerable: true, + get: function () { + return _PhoneAndroid.default; + } +}); +Object.defineProperty(exports, "PhoneAndroidOutlined", { + enumerable: true, + get: function () { + return _PhoneAndroidOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneAndroidRounded", { + enumerable: true, + get: function () { + return _PhoneAndroidRounded.default; + } +}); +Object.defineProperty(exports, "PhoneAndroidSharp", { + enumerable: true, + get: function () { + return _PhoneAndroidSharp.default; + } +}); +Object.defineProperty(exports, "PhoneAndroidTwoTone", { + enumerable: true, + get: function () { + return _PhoneAndroidTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneBluetoothSpeaker", { + enumerable: true, + get: function () { + return _PhoneBluetoothSpeaker.default; + } +}); +Object.defineProperty(exports, "PhoneBluetoothSpeakerOutlined", { + enumerable: true, + get: function () { + return _PhoneBluetoothSpeakerOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneBluetoothSpeakerRounded", { + enumerable: true, + get: function () { + return _PhoneBluetoothSpeakerRounded.default; + } +}); +Object.defineProperty(exports, "PhoneBluetoothSpeakerSharp", { + enumerable: true, + get: function () { + return _PhoneBluetoothSpeakerSharp.default; + } +}); +Object.defineProperty(exports, "PhoneBluetoothSpeakerTwoTone", { + enumerable: true, + get: function () { + return _PhoneBluetoothSpeakerTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneCallback", { + enumerable: true, + get: function () { + return _PhoneCallback.default; + } +}); +Object.defineProperty(exports, "PhoneCallbackOutlined", { + enumerable: true, + get: function () { + return _PhoneCallbackOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneCallbackRounded", { + enumerable: true, + get: function () { + return _PhoneCallbackRounded.default; + } +}); +Object.defineProperty(exports, "PhoneCallbackSharp", { + enumerable: true, + get: function () { + return _PhoneCallbackSharp.default; + } +}); +Object.defineProperty(exports, "PhoneCallbackTwoTone", { + enumerable: true, + get: function () { + return _PhoneCallbackTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneDisabled", { + enumerable: true, + get: function () { + return _PhoneDisabled.default; + } +}); +Object.defineProperty(exports, "PhoneDisabledOutlined", { + enumerable: true, + get: function () { + return _PhoneDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneDisabledRounded", { + enumerable: true, + get: function () { + return _PhoneDisabledRounded.default; + } +}); +Object.defineProperty(exports, "PhoneDisabledSharp", { + enumerable: true, + get: function () { + return _PhoneDisabledSharp.default; + } +}); +Object.defineProperty(exports, "PhoneDisabledTwoTone", { + enumerable: true, + get: function () { + return _PhoneDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneEnabled", { + enumerable: true, + get: function () { + return _PhoneEnabled.default; + } +}); +Object.defineProperty(exports, "PhoneEnabledOutlined", { + enumerable: true, + get: function () { + return _PhoneEnabledOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneEnabledRounded", { + enumerable: true, + get: function () { + return _PhoneEnabledRounded.default; + } +}); +Object.defineProperty(exports, "PhoneEnabledSharp", { + enumerable: true, + get: function () { + return _PhoneEnabledSharp.default; + } +}); +Object.defineProperty(exports, "PhoneEnabledTwoTone", { + enumerable: true, + get: function () { + return _PhoneEnabledTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneForwarded", { + enumerable: true, + get: function () { + return _PhoneForwarded.default; + } +}); +Object.defineProperty(exports, "PhoneForwardedOutlined", { + enumerable: true, + get: function () { + return _PhoneForwardedOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneForwardedRounded", { + enumerable: true, + get: function () { + return _PhoneForwardedRounded.default; + } +}); +Object.defineProperty(exports, "PhoneForwardedSharp", { + enumerable: true, + get: function () { + return _PhoneForwardedSharp.default; + } +}); +Object.defineProperty(exports, "PhoneForwardedTwoTone", { + enumerable: true, + get: function () { + return _PhoneForwardedTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneInTalk", { + enumerable: true, + get: function () { + return _PhoneInTalk.default; + } +}); +Object.defineProperty(exports, "PhoneInTalkOutlined", { + enumerable: true, + get: function () { + return _PhoneInTalkOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneInTalkRounded", { + enumerable: true, + get: function () { + return _PhoneInTalkRounded.default; + } +}); +Object.defineProperty(exports, "PhoneInTalkSharp", { + enumerable: true, + get: function () { + return _PhoneInTalkSharp.default; + } +}); +Object.defineProperty(exports, "PhoneInTalkTwoTone", { + enumerable: true, + get: function () { + return _PhoneInTalkTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneIphone", { + enumerable: true, + get: function () { + return _PhoneIphone.default; + } +}); +Object.defineProperty(exports, "PhoneIphoneOutlined", { + enumerable: true, + get: function () { + return _PhoneIphoneOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneIphoneRounded", { + enumerable: true, + get: function () { + return _PhoneIphoneRounded.default; + } +}); +Object.defineProperty(exports, "PhoneIphoneSharp", { + enumerable: true, + get: function () { + return _PhoneIphoneSharp.default; + } +}); +Object.defineProperty(exports, "PhoneIphoneTwoTone", { + enumerable: true, + get: function () { + return _PhoneIphoneTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneLocked", { + enumerable: true, + get: function () { + return _PhoneLocked.default; + } +}); +Object.defineProperty(exports, "PhoneLockedOutlined", { + enumerable: true, + get: function () { + return _PhoneLockedOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneLockedRounded", { + enumerable: true, + get: function () { + return _PhoneLockedRounded.default; + } +}); +Object.defineProperty(exports, "PhoneLockedSharp", { + enumerable: true, + get: function () { + return _PhoneLockedSharp.default; + } +}); +Object.defineProperty(exports, "PhoneLockedTwoTone", { + enumerable: true, + get: function () { + return _PhoneLockedTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneMissed", { + enumerable: true, + get: function () { + return _PhoneMissed.default; + } +}); +Object.defineProperty(exports, "PhoneMissedOutlined", { + enumerable: true, + get: function () { + return _PhoneMissedOutlined.default; + } +}); +Object.defineProperty(exports, "PhoneMissedRounded", { + enumerable: true, + get: function () { + return _PhoneMissedRounded.default; + } +}); +Object.defineProperty(exports, "PhoneMissedSharp", { + enumerable: true, + get: function () { + return _PhoneMissedSharp.default; + } +}); +Object.defineProperty(exports, "PhoneMissedTwoTone", { + enumerable: true, + get: function () { + return _PhoneMissedTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneOutlined", { + enumerable: true, + get: function () { + return _PhoneOutlined.default; + } +}); +Object.defineProperty(exports, "PhonePaused", { + enumerable: true, + get: function () { + return _PhonePaused.default; + } +}); +Object.defineProperty(exports, "PhonePausedOutlined", { + enumerable: true, + get: function () { + return _PhonePausedOutlined.default; + } +}); +Object.defineProperty(exports, "PhonePausedRounded", { + enumerable: true, + get: function () { + return _PhonePausedRounded.default; + } +}); +Object.defineProperty(exports, "PhonePausedSharp", { + enumerable: true, + get: function () { + return _PhonePausedSharp.default; + } +}); +Object.defineProperty(exports, "PhonePausedTwoTone", { + enumerable: true, + get: function () { + return _PhonePausedTwoTone.default; + } +}); +Object.defineProperty(exports, "PhoneRounded", { + enumerable: true, + get: function () { + return _PhoneRounded.default; + } +}); +Object.defineProperty(exports, "PhoneSharp", { + enumerable: true, + get: function () { + return _PhoneSharp.default; + } +}); +Object.defineProperty(exports, "PhoneTwoTone", { + enumerable: true, + get: function () { + return _PhoneTwoTone.default; + } +}); +Object.defineProperty(exports, "Phonelink", { + enumerable: true, + get: function () { + return _Phonelink.default; + } +}); +Object.defineProperty(exports, "PhonelinkErase", { + enumerable: true, + get: function () { + return _PhonelinkErase.default; + } +}); +Object.defineProperty(exports, "PhonelinkEraseOutlined", { + enumerable: true, + get: function () { + return _PhonelinkEraseOutlined.default; + } +}); +Object.defineProperty(exports, "PhonelinkEraseRounded", { + enumerable: true, + get: function () { + return _PhonelinkEraseRounded.default; + } +}); +Object.defineProperty(exports, "PhonelinkEraseSharp", { + enumerable: true, + get: function () { + return _PhonelinkEraseSharp.default; + } +}); +Object.defineProperty(exports, "PhonelinkEraseTwoTone", { + enumerable: true, + get: function () { + return _PhonelinkEraseTwoTone.default; + } +}); +Object.defineProperty(exports, "PhonelinkLock", { + enumerable: true, + get: function () { + return _PhonelinkLock.default; + } +}); +Object.defineProperty(exports, "PhonelinkLockOutlined", { + enumerable: true, + get: function () { + return _PhonelinkLockOutlined.default; + } +}); +Object.defineProperty(exports, "PhonelinkLockRounded", { + enumerable: true, + get: function () { + return _PhonelinkLockRounded.default; + } +}); +Object.defineProperty(exports, "PhonelinkLockSharp", { + enumerable: true, + get: function () { + return _PhonelinkLockSharp.default; + } +}); +Object.defineProperty(exports, "PhonelinkLockTwoTone", { + enumerable: true, + get: function () { + return _PhonelinkLockTwoTone.default; + } +}); +Object.defineProperty(exports, "PhonelinkOff", { + enumerable: true, + get: function () { + return _PhonelinkOff.default; + } +}); +Object.defineProperty(exports, "PhonelinkOffOutlined", { + enumerable: true, + get: function () { + return _PhonelinkOffOutlined.default; + } +}); +Object.defineProperty(exports, "PhonelinkOffRounded", { + enumerable: true, + get: function () { + return _PhonelinkOffRounded.default; + } +}); +Object.defineProperty(exports, "PhonelinkOffSharp", { + enumerable: true, + get: function () { + return _PhonelinkOffSharp.default; + } +}); +Object.defineProperty(exports, "PhonelinkOffTwoTone", { + enumerable: true, + get: function () { + return _PhonelinkOffTwoTone.default; + } +}); +Object.defineProperty(exports, "PhonelinkOutlined", { + enumerable: true, + get: function () { + return _PhonelinkOutlined.default; + } +}); +Object.defineProperty(exports, "PhonelinkRing", { + enumerable: true, + get: function () { + return _PhonelinkRing.default; + } +}); +Object.defineProperty(exports, "PhonelinkRingOutlined", { + enumerable: true, + get: function () { + return _PhonelinkRingOutlined.default; + } +}); +Object.defineProperty(exports, "PhonelinkRingRounded", { + enumerable: true, + get: function () { + return _PhonelinkRingRounded.default; + } +}); +Object.defineProperty(exports, "PhonelinkRingSharp", { + enumerable: true, + get: function () { + return _PhonelinkRingSharp.default; + } +}); +Object.defineProperty(exports, "PhonelinkRingTwoTone", { + enumerable: true, + get: function () { + return _PhonelinkRingTwoTone.default; + } +}); +Object.defineProperty(exports, "PhonelinkRounded", { + enumerable: true, + get: function () { + return _PhonelinkRounded.default; + } +}); +Object.defineProperty(exports, "PhonelinkSetup", { + enumerable: true, + get: function () { + return _PhonelinkSetup.default; + } +}); +Object.defineProperty(exports, "PhonelinkSetupOutlined", { + enumerable: true, + get: function () { + return _PhonelinkSetupOutlined.default; + } +}); +Object.defineProperty(exports, "PhonelinkSetupRounded", { + enumerable: true, + get: function () { + return _PhonelinkSetupRounded.default; + } +}); +Object.defineProperty(exports, "PhonelinkSetupSharp", { + enumerable: true, + get: function () { + return _PhonelinkSetupSharp.default; + } +}); +Object.defineProperty(exports, "PhonelinkSetupTwoTone", { + enumerable: true, + get: function () { + return _PhonelinkSetupTwoTone.default; + } +}); +Object.defineProperty(exports, "PhonelinkSharp", { + enumerable: true, + get: function () { + return _PhonelinkSharp.default; + } +}); +Object.defineProperty(exports, "PhonelinkTwoTone", { + enumerable: true, + get: function () { + return _PhonelinkTwoTone.default; + } +}); +Object.defineProperty(exports, "Photo", { + enumerable: true, + get: function () { + return _Photo.default; + } +}); +Object.defineProperty(exports, "PhotoAlbum", { + enumerable: true, + get: function () { + return _PhotoAlbum.default; + } +}); +Object.defineProperty(exports, "PhotoAlbumOutlined", { + enumerable: true, + get: function () { + return _PhotoAlbumOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoAlbumRounded", { + enumerable: true, + get: function () { + return _PhotoAlbumRounded.default; + } +}); +Object.defineProperty(exports, "PhotoAlbumSharp", { + enumerable: true, + get: function () { + return _PhotoAlbumSharp.default; + } +}); +Object.defineProperty(exports, "PhotoAlbumTwoTone", { + enumerable: true, + get: function () { + return _PhotoAlbumTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoCamera", { + enumerable: true, + get: function () { + return _PhotoCamera.default; + } +}); +Object.defineProperty(exports, "PhotoCameraBack", { + enumerable: true, + get: function () { + return _PhotoCameraBack.default; + } +}); +Object.defineProperty(exports, "PhotoCameraBackOutlined", { + enumerable: true, + get: function () { + return _PhotoCameraBackOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoCameraBackRounded", { + enumerable: true, + get: function () { + return _PhotoCameraBackRounded.default; + } +}); +Object.defineProperty(exports, "PhotoCameraBackSharp", { + enumerable: true, + get: function () { + return _PhotoCameraBackSharp.default; + } +}); +Object.defineProperty(exports, "PhotoCameraBackTwoTone", { + enumerable: true, + get: function () { + return _PhotoCameraBackTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoCameraFront", { + enumerable: true, + get: function () { + return _PhotoCameraFront.default; + } +}); +Object.defineProperty(exports, "PhotoCameraFrontOutlined", { + enumerable: true, + get: function () { + return _PhotoCameraFrontOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoCameraFrontRounded", { + enumerable: true, + get: function () { + return _PhotoCameraFrontRounded.default; + } +}); +Object.defineProperty(exports, "PhotoCameraFrontSharp", { + enumerable: true, + get: function () { + return _PhotoCameraFrontSharp.default; + } +}); +Object.defineProperty(exports, "PhotoCameraFrontTwoTone", { + enumerable: true, + get: function () { + return _PhotoCameraFrontTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoCameraOutlined", { + enumerable: true, + get: function () { + return _PhotoCameraOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoCameraRounded", { + enumerable: true, + get: function () { + return _PhotoCameraRounded.default; + } +}); +Object.defineProperty(exports, "PhotoCameraSharp", { + enumerable: true, + get: function () { + return _PhotoCameraSharp.default; + } +}); +Object.defineProperty(exports, "PhotoCameraTwoTone", { + enumerable: true, + get: function () { + return _PhotoCameraTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoFilter", { + enumerable: true, + get: function () { + return _PhotoFilter.default; + } +}); +Object.defineProperty(exports, "PhotoFilterOutlined", { + enumerable: true, + get: function () { + return _PhotoFilterOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoFilterRounded", { + enumerable: true, + get: function () { + return _PhotoFilterRounded.default; + } +}); +Object.defineProperty(exports, "PhotoFilterSharp", { + enumerable: true, + get: function () { + return _PhotoFilterSharp.default; + } +}); +Object.defineProperty(exports, "PhotoFilterTwoTone", { + enumerable: true, + get: function () { + return _PhotoFilterTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoLibrary", { + enumerable: true, + get: function () { + return _PhotoLibrary.default; + } +}); +Object.defineProperty(exports, "PhotoLibraryOutlined", { + enumerable: true, + get: function () { + return _PhotoLibraryOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoLibraryRounded", { + enumerable: true, + get: function () { + return _PhotoLibraryRounded.default; + } +}); +Object.defineProperty(exports, "PhotoLibrarySharp", { + enumerable: true, + get: function () { + return _PhotoLibrarySharp.default; + } +}); +Object.defineProperty(exports, "PhotoLibraryTwoTone", { + enumerable: true, + get: function () { + return _PhotoLibraryTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoOutlined", { + enumerable: true, + get: function () { + return _PhotoOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoRounded", { + enumerable: true, + get: function () { + return _PhotoRounded.default; + } +}); +Object.defineProperty(exports, "PhotoSharp", { + enumerable: true, + get: function () { + return _PhotoSharp.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectActual", { + enumerable: true, + get: function () { + return _PhotoSizeSelectActual.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectActualOutlined", { + enumerable: true, + get: function () { + return _PhotoSizeSelectActualOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectActualRounded", { + enumerable: true, + get: function () { + return _PhotoSizeSelectActualRounded.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectActualSharp", { + enumerable: true, + get: function () { + return _PhotoSizeSelectActualSharp.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectActualTwoTone", { + enumerable: true, + get: function () { + return _PhotoSizeSelectActualTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectLarge", { + enumerable: true, + get: function () { + return _PhotoSizeSelectLarge.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectLargeOutlined", { + enumerable: true, + get: function () { + return _PhotoSizeSelectLargeOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectLargeRounded", { + enumerable: true, + get: function () { + return _PhotoSizeSelectLargeRounded.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectLargeSharp", { + enumerable: true, + get: function () { + return _PhotoSizeSelectLargeSharp.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectLargeTwoTone", { + enumerable: true, + get: function () { + return _PhotoSizeSelectLargeTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectSmall", { + enumerable: true, + get: function () { + return _PhotoSizeSelectSmall.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectSmallOutlined", { + enumerable: true, + get: function () { + return _PhotoSizeSelectSmallOutlined.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectSmallRounded", { + enumerable: true, + get: function () { + return _PhotoSizeSelectSmallRounded.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectSmallSharp", { + enumerable: true, + get: function () { + return _PhotoSizeSelectSmallSharp.default; + } +}); +Object.defineProperty(exports, "PhotoSizeSelectSmallTwoTone", { + enumerable: true, + get: function () { + return _PhotoSizeSelectSmallTwoTone.default; + } +}); +Object.defineProperty(exports, "PhotoTwoTone", { + enumerable: true, + get: function () { + return _PhotoTwoTone.default; + } +}); +Object.defineProperty(exports, "Piano", { + enumerable: true, + get: function () { + return _Piano.default; + } +}); +Object.defineProperty(exports, "PianoOff", { + enumerable: true, + get: function () { + return _PianoOff.default; + } +}); +Object.defineProperty(exports, "PianoOffOutlined", { + enumerable: true, + get: function () { + return _PianoOffOutlined.default; + } +}); +Object.defineProperty(exports, "PianoOffRounded", { + enumerable: true, + get: function () { + return _PianoOffRounded.default; + } +}); +Object.defineProperty(exports, "PianoOffSharp", { + enumerable: true, + get: function () { + return _PianoOffSharp.default; + } +}); +Object.defineProperty(exports, "PianoOffTwoTone", { + enumerable: true, + get: function () { + return _PianoOffTwoTone.default; + } +}); +Object.defineProperty(exports, "PianoOutlined", { + enumerable: true, + get: function () { + return _PianoOutlined.default; + } +}); +Object.defineProperty(exports, "PianoRounded", { + enumerable: true, + get: function () { + return _PianoRounded.default; + } +}); +Object.defineProperty(exports, "PianoSharp", { + enumerable: true, + get: function () { + return _PianoSharp.default; + } +}); +Object.defineProperty(exports, "PianoTwoTone", { + enumerable: true, + get: function () { + return _PianoTwoTone.default; + } +}); +Object.defineProperty(exports, "PictureAsPdf", { + enumerable: true, + get: function () { + return _PictureAsPdf.default; + } +}); +Object.defineProperty(exports, "PictureAsPdfOutlined", { + enumerable: true, + get: function () { + return _PictureAsPdfOutlined.default; + } +}); +Object.defineProperty(exports, "PictureAsPdfRounded", { + enumerable: true, + get: function () { + return _PictureAsPdfRounded.default; + } +}); +Object.defineProperty(exports, "PictureAsPdfSharp", { + enumerable: true, + get: function () { + return _PictureAsPdfSharp.default; + } +}); +Object.defineProperty(exports, "PictureAsPdfTwoTone", { + enumerable: true, + get: function () { + return _PictureAsPdfTwoTone.default; + } +}); +Object.defineProperty(exports, "PictureInPicture", { + enumerable: true, + get: function () { + return _PictureInPicture.default; + } +}); +Object.defineProperty(exports, "PictureInPictureAlt", { + enumerable: true, + get: function () { + return _PictureInPictureAlt.default; + } +}); +Object.defineProperty(exports, "PictureInPictureAltOutlined", { + enumerable: true, + get: function () { + return _PictureInPictureAltOutlined.default; + } +}); +Object.defineProperty(exports, "PictureInPictureAltRounded", { + enumerable: true, + get: function () { + return _PictureInPictureAltRounded.default; + } +}); +Object.defineProperty(exports, "PictureInPictureAltSharp", { + enumerable: true, + get: function () { + return _PictureInPictureAltSharp.default; + } +}); +Object.defineProperty(exports, "PictureInPictureAltTwoTone", { + enumerable: true, + get: function () { + return _PictureInPictureAltTwoTone.default; + } +}); +Object.defineProperty(exports, "PictureInPictureOutlined", { + enumerable: true, + get: function () { + return _PictureInPictureOutlined.default; + } +}); +Object.defineProperty(exports, "PictureInPictureRounded", { + enumerable: true, + get: function () { + return _PictureInPictureRounded.default; + } +}); +Object.defineProperty(exports, "PictureInPictureSharp", { + enumerable: true, + get: function () { + return _PictureInPictureSharp.default; + } +}); +Object.defineProperty(exports, "PictureInPictureTwoTone", { + enumerable: true, + get: function () { + return _PictureInPictureTwoTone.default; + } +}); +Object.defineProperty(exports, "PieChart", { + enumerable: true, + get: function () { + return _PieChart.default; + } +}); +Object.defineProperty(exports, "PieChartOutline", { + enumerable: true, + get: function () { + return _PieChartOutline.default; + } +}); +Object.defineProperty(exports, "PieChartOutlineOutlined", { + enumerable: true, + get: function () { + return _PieChartOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "PieChartOutlineRounded", { + enumerable: true, + get: function () { + return _PieChartOutlineRounded.default; + } +}); +Object.defineProperty(exports, "PieChartOutlineSharp", { + enumerable: true, + get: function () { + return _PieChartOutlineSharp.default; + } +}); +Object.defineProperty(exports, "PieChartOutlineTwoTone", { + enumerable: true, + get: function () { + return _PieChartOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "PieChartOutlined", { + enumerable: true, + get: function () { + return _PieChartOutlined.default; + } +}); +Object.defineProperty(exports, "PieChartRounded", { + enumerable: true, + get: function () { + return _PieChartRounded.default; + } +}); +Object.defineProperty(exports, "PieChartSharp", { + enumerable: true, + get: function () { + return _PieChartSharp.default; + } +}); +Object.defineProperty(exports, "PieChartTwoTone", { + enumerable: true, + get: function () { + return _PieChartTwoTone.default; + } +}); +Object.defineProperty(exports, "Pin", { + enumerable: true, + get: function () { + return _Pin.default; + } +}); +Object.defineProperty(exports, "PinDrop", { + enumerable: true, + get: function () { + return _PinDrop.default; + } +}); +Object.defineProperty(exports, "PinDropOutlined", { + enumerable: true, + get: function () { + return _PinDropOutlined.default; + } +}); +Object.defineProperty(exports, "PinDropRounded", { + enumerable: true, + get: function () { + return _PinDropRounded.default; + } +}); +Object.defineProperty(exports, "PinDropSharp", { + enumerable: true, + get: function () { + return _PinDropSharp.default; + } +}); +Object.defineProperty(exports, "PinDropTwoTone", { + enumerable: true, + get: function () { + return _PinDropTwoTone.default; + } +}); +Object.defineProperty(exports, "PinOutlined", { + enumerable: true, + get: function () { + return _PinOutlined.default; + } +}); +Object.defineProperty(exports, "PinRounded", { + enumerable: true, + get: function () { + return _PinRounded.default; + } +}); +Object.defineProperty(exports, "PinSharp", { + enumerable: true, + get: function () { + return _PinSharp.default; + } +}); +Object.defineProperty(exports, "PinTwoTone", { + enumerable: true, + get: function () { + return _PinTwoTone.default; + } +}); +Object.defineProperty(exports, "Pinterest", { + enumerable: true, + get: function () { + return _Pinterest.default; + } +}); +Object.defineProperty(exports, "PivotTableChart", { + enumerable: true, + get: function () { + return _PivotTableChart.default; + } +}); +Object.defineProperty(exports, "PivotTableChartOutlined", { + enumerable: true, + get: function () { + return _PivotTableChartOutlined.default; + } +}); +Object.defineProperty(exports, "PivotTableChartRounded", { + enumerable: true, + get: function () { + return _PivotTableChartRounded.default; + } +}); +Object.defineProperty(exports, "PivotTableChartSharp", { + enumerable: true, + get: function () { + return _PivotTableChartSharp.default; + } +}); +Object.defineProperty(exports, "PivotTableChartTwoTone", { + enumerable: true, + get: function () { + return _PivotTableChartTwoTone.default; + } +}); +Object.defineProperty(exports, "Place", { + enumerable: true, + get: function () { + return _Place.default; + } +}); +Object.defineProperty(exports, "PlaceOutlined", { + enumerable: true, + get: function () { + return _PlaceOutlined.default; + } +}); +Object.defineProperty(exports, "PlaceRounded", { + enumerable: true, + get: function () { + return _PlaceRounded.default; + } +}); +Object.defineProperty(exports, "PlaceSharp", { + enumerable: true, + get: function () { + return _PlaceSharp.default; + } +}); +Object.defineProperty(exports, "PlaceTwoTone", { + enumerable: true, + get: function () { + return _PlaceTwoTone.default; + } +}); +Object.defineProperty(exports, "Plagiarism", { + enumerable: true, + get: function () { + return _Plagiarism.default; + } +}); +Object.defineProperty(exports, "PlagiarismOutlined", { + enumerable: true, + get: function () { + return _PlagiarismOutlined.default; + } +}); +Object.defineProperty(exports, "PlagiarismRounded", { + enumerable: true, + get: function () { + return _PlagiarismRounded.default; + } +}); +Object.defineProperty(exports, "PlagiarismSharp", { + enumerable: true, + get: function () { + return _PlagiarismSharp.default; + } +}); +Object.defineProperty(exports, "PlagiarismTwoTone", { + enumerable: true, + get: function () { + return _PlagiarismTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayArrow", { + enumerable: true, + get: function () { + return _PlayArrow.default; + } +}); +Object.defineProperty(exports, "PlayArrowOutlined", { + enumerable: true, + get: function () { + return _PlayArrowOutlined.default; + } +}); +Object.defineProperty(exports, "PlayArrowRounded", { + enumerable: true, + get: function () { + return _PlayArrowRounded.default; + } +}); +Object.defineProperty(exports, "PlayArrowSharp", { + enumerable: true, + get: function () { + return _PlayArrowSharp.default; + } +}); +Object.defineProperty(exports, "PlayArrowTwoTone", { + enumerable: true, + get: function () { + return _PlayArrowTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayCircle", { + enumerable: true, + get: function () { + return _PlayCircle.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilled", { + enumerable: true, + get: function () { + return _PlayCircleFilled.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledOutlined", { + enumerable: true, + get: function () { + return _PlayCircleFilledOutlined.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledRounded", { + enumerable: true, + get: function () { + return _PlayCircleFilledRounded.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledSharp", { + enumerable: true, + get: function () { + return _PlayCircleFilledSharp.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledTwoTone", { + enumerable: true, + get: function () { + return _PlayCircleFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledWhite", { + enumerable: true, + get: function () { + return _PlayCircleFilledWhite.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledWhiteOutlined", { + enumerable: true, + get: function () { + return _PlayCircleFilledWhiteOutlined.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledWhiteRounded", { + enumerable: true, + get: function () { + return _PlayCircleFilledWhiteRounded.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledWhiteSharp", { + enumerable: true, + get: function () { + return _PlayCircleFilledWhiteSharp.default; + } +}); +Object.defineProperty(exports, "PlayCircleFilledWhiteTwoTone", { + enumerable: true, + get: function () { + return _PlayCircleFilledWhiteTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayCircleOutline", { + enumerable: true, + get: function () { + return _PlayCircleOutline.default; + } +}); +Object.defineProperty(exports, "PlayCircleOutlineOutlined", { + enumerable: true, + get: function () { + return _PlayCircleOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "PlayCircleOutlineRounded", { + enumerable: true, + get: function () { + return _PlayCircleOutlineRounded.default; + } +}); +Object.defineProperty(exports, "PlayCircleOutlineSharp", { + enumerable: true, + get: function () { + return _PlayCircleOutlineSharp.default; + } +}); +Object.defineProperty(exports, "PlayCircleOutlineTwoTone", { + enumerable: true, + get: function () { + return _PlayCircleOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayCircleOutlined", { + enumerable: true, + get: function () { + return _PlayCircleOutlined.default; + } +}); +Object.defineProperty(exports, "PlayCircleRounded", { + enumerable: true, + get: function () { + return _PlayCircleRounded.default; + } +}); +Object.defineProperty(exports, "PlayCircleSharp", { + enumerable: true, + get: function () { + return _PlayCircleSharp.default; + } +}); +Object.defineProperty(exports, "PlayCircleTwoTone", { + enumerable: true, + get: function () { + return _PlayCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayDisabled", { + enumerable: true, + get: function () { + return _PlayDisabled.default; + } +}); +Object.defineProperty(exports, "PlayDisabledOutlined", { + enumerable: true, + get: function () { + return _PlayDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "PlayDisabledRounded", { + enumerable: true, + get: function () { + return _PlayDisabledRounded.default; + } +}); +Object.defineProperty(exports, "PlayDisabledSharp", { + enumerable: true, + get: function () { + return _PlayDisabledSharp.default; + } +}); +Object.defineProperty(exports, "PlayDisabledTwoTone", { + enumerable: true, + get: function () { + return _PlayDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayForWork", { + enumerable: true, + get: function () { + return _PlayForWork.default; + } +}); +Object.defineProperty(exports, "PlayForWorkOutlined", { + enumerable: true, + get: function () { + return _PlayForWorkOutlined.default; + } +}); +Object.defineProperty(exports, "PlayForWorkRounded", { + enumerable: true, + get: function () { + return _PlayForWorkRounded.default; + } +}); +Object.defineProperty(exports, "PlayForWorkSharp", { + enumerable: true, + get: function () { + return _PlayForWorkSharp.default; + } +}); +Object.defineProperty(exports, "PlayForWorkTwoTone", { + enumerable: true, + get: function () { + return _PlayForWorkTwoTone.default; + } +}); +Object.defineProperty(exports, "PlayLesson", { + enumerable: true, + get: function () { + return _PlayLesson.default; + } +}); +Object.defineProperty(exports, "PlayLessonOutlined", { + enumerable: true, + get: function () { + return _PlayLessonOutlined.default; + } +}); +Object.defineProperty(exports, "PlayLessonRounded", { + enumerable: true, + get: function () { + return _PlayLessonRounded.default; + } +}); +Object.defineProperty(exports, "PlayLessonSharp", { + enumerable: true, + get: function () { + return _PlayLessonSharp.default; + } +}); +Object.defineProperty(exports, "PlayLessonTwoTone", { + enumerable: true, + get: function () { + return _PlayLessonTwoTone.default; + } +}); +Object.defineProperty(exports, "PlaylistAdd", { + enumerable: true, + get: function () { + return _PlaylistAdd.default; + } +}); +Object.defineProperty(exports, "PlaylistAddCheck", { + enumerable: true, + get: function () { + return _PlaylistAddCheck.default; + } +}); +Object.defineProperty(exports, "PlaylistAddCheckOutlined", { + enumerable: true, + get: function () { + return _PlaylistAddCheckOutlined.default; + } +}); +Object.defineProperty(exports, "PlaylistAddCheckRounded", { + enumerable: true, + get: function () { + return _PlaylistAddCheckRounded.default; + } +}); +Object.defineProperty(exports, "PlaylistAddCheckSharp", { + enumerable: true, + get: function () { + return _PlaylistAddCheckSharp.default; + } +}); +Object.defineProperty(exports, "PlaylistAddCheckTwoTone", { + enumerable: true, + get: function () { + return _PlaylistAddCheckTwoTone.default; + } +}); +Object.defineProperty(exports, "PlaylistAddOutlined", { + enumerable: true, + get: function () { + return _PlaylistAddOutlined.default; + } +}); +Object.defineProperty(exports, "PlaylistAddRounded", { + enumerable: true, + get: function () { + return _PlaylistAddRounded.default; + } +}); +Object.defineProperty(exports, "PlaylistAddSharp", { + enumerable: true, + get: function () { + return _PlaylistAddSharp.default; + } +}); +Object.defineProperty(exports, "PlaylistAddTwoTone", { + enumerable: true, + get: function () { + return _PlaylistAddTwoTone.default; + } +}); +Object.defineProperty(exports, "PlaylistPlay", { + enumerable: true, + get: function () { + return _PlaylistPlay.default; + } +}); +Object.defineProperty(exports, "PlaylistPlayOutlined", { + enumerable: true, + get: function () { + return _PlaylistPlayOutlined.default; + } +}); +Object.defineProperty(exports, "PlaylistPlayRounded", { + enumerable: true, + get: function () { + return _PlaylistPlayRounded.default; + } +}); +Object.defineProperty(exports, "PlaylistPlaySharp", { + enumerable: true, + get: function () { + return _PlaylistPlaySharp.default; + } +}); +Object.defineProperty(exports, "PlaylistPlayTwoTone", { + enumerable: true, + get: function () { + return _PlaylistPlayTwoTone.default; + } +}); +Object.defineProperty(exports, "Plumbing", { + enumerable: true, + get: function () { + return _Plumbing.default; + } +}); +Object.defineProperty(exports, "PlumbingOutlined", { + enumerable: true, + get: function () { + return _PlumbingOutlined.default; + } +}); +Object.defineProperty(exports, "PlumbingRounded", { + enumerable: true, + get: function () { + return _PlumbingRounded.default; + } +}); +Object.defineProperty(exports, "PlumbingSharp", { + enumerable: true, + get: function () { + return _PlumbingSharp.default; + } +}); +Object.defineProperty(exports, "PlumbingTwoTone", { + enumerable: true, + get: function () { + return _PlumbingTwoTone.default; + } +}); +Object.defineProperty(exports, "PlusOne", { + enumerable: true, + get: function () { + return _PlusOne.default; + } +}); +Object.defineProperty(exports, "PlusOneOutlined", { + enumerable: true, + get: function () { + return _PlusOneOutlined.default; + } +}); +Object.defineProperty(exports, "PlusOneRounded", { + enumerable: true, + get: function () { + return _PlusOneRounded.default; + } +}); +Object.defineProperty(exports, "PlusOneSharp", { + enumerable: true, + get: function () { + return _PlusOneSharp.default; + } +}); +Object.defineProperty(exports, "PlusOneTwoTone", { + enumerable: true, + get: function () { + return _PlusOneTwoTone.default; + } +}); +Object.defineProperty(exports, "Podcasts", { + enumerable: true, + get: function () { + return _Podcasts.default; + } +}); +Object.defineProperty(exports, "PodcastsOutlined", { + enumerable: true, + get: function () { + return _PodcastsOutlined.default; + } +}); +Object.defineProperty(exports, "PodcastsRounded", { + enumerable: true, + get: function () { + return _PodcastsRounded.default; + } +}); +Object.defineProperty(exports, "PodcastsSharp", { + enumerable: true, + get: function () { + return _PodcastsSharp.default; + } +}); +Object.defineProperty(exports, "PodcastsTwoTone", { + enumerable: true, + get: function () { + return _PodcastsTwoTone.default; + } +}); +Object.defineProperty(exports, "PointOfSale", { + enumerable: true, + get: function () { + return _PointOfSale.default; + } +}); +Object.defineProperty(exports, "PointOfSaleOutlined", { + enumerable: true, + get: function () { + return _PointOfSaleOutlined.default; + } +}); +Object.defineProperty(exports, "PointOfSaleRounded", { + enumerable: true, + get: function () { + return _PointOfSaleRounded.default; + } +}); +Object.defineProperty(exports, "PointOfSaleSharp", { + enumerable: true, + get: function () { + return _PointOfSaleSharp.default; + } +}); +Object.defineProperty(exports, "PointOfSaleTwoTone", { + enumerable: true, + get: function () { + return _PointOfSaleTwoTone.default; + } +}); +Object.defineProperty(exports, "Policy", { + enumerable: true, + get: function () { + return _Policy.default; + } +}); +Object.defineProperty(exports, "PolicyOutlined", { + enumerable: true, + get: function () { + return _PolicyOutlined.default; + } +}); +Object.defineProperty(exports, "PolicyRounded", { + enumerable: true, + get: function () { + return _PolicyRounded.default; + } +}); +Object.defineProperty(exports, "PolicySharp", { + enumerable: true, + get: function () { + return _PolicySharp.default; + } +}); +Object.defineProperty(exports, "PolicyTwoTone", { + enumerable: true, + get: function () { + return _PolicyTwoTone.default; + } +}); +Object.defineProperty(exports, "Poll", { + enumerable: true, + get: function () { + return _Poll.default; + } +}); +Object.defineProperty(exports, "PollOutlined", { + enumerable: true, + get: function () { + return _PollOutlined.default; + } +}); +Object.defineProperty(exports, "PollRounded", { + enumerable: true, + get: function () { + return _PollRounded.default; + } +}); +Object.defineProperty(exports, "PollSharp", { + enumerable: true, + get: function () { + return _PollSharp.default; + } +}); +Object.defineProperty(exports, "PollTwoTone", { + enumerable: true, + get: function () { + return _PollTwoTone.default; + } +}); +Object.defineProperty(exports, "Pool", { + enumerable: true, + get: function () { + return _Pool.default; + } +}); +Object.defineProperty(exports, "PoolOutlined", { + enumerable: true, + get: function () { + return _PoolOutlined.default; + } +}); +Object.defineProperty(exports, "PoolRounded", { + enumerable: true, + get: function () { + return _PoolRounded.default; + } +}); +Object.defineProperty(exports, "PoolSharp", { + enumerable: true, + get: function () { + return _PoolSharp.default; + } +}); +Object.defineProperty(exports, "PoolTwoTone", { + enumerable: true, + get: function () { + return _PoolTwoTone.default; + } +}); +Object.defineProperty(exports, "PortableWifiOff", { + enumerable: true, + get: function () { + return _PortableWifiOff.default; + } +}); +Object.defineProperty(exports, "PortableWifiOffOutlined", { + enumerable: true, + get: function () { + return _PortableWifiOffOutlined.default; + } +}); +Object.defineProperty(exports, "PortableWifiOffRounded", { + enumerable: true, + get: function () { + return _PortableWifiOffRounded.default; + } +}); +Object.defineProperty(exports, "PortableWifiOffSharp", { + enumerable: true, + get: function () { + return _PortableWifiOffSharp.default; + } +}); +Object.defineProperty(exports, "PortableWifiOffTwoTone", { + enumerable: true, + get: function () { + return _PortableWifiOffTwoTone.default; + } +}); +Object.defineProperty(exports, "Portrait", { + enumerable: true, + get: function () { + return _Portrait.default; + } +}); +Object.defineProperty(exports, "PortraitOutlined", { + enumerable: true, + get: function () { + return _PortraitOutlined.default; + } +}); +Object.defineProperty(exports, "PortraitRounded", { + enumerable: true, + get: function () { + return _PortraitRounded.default; + } +}); +Object.defineProperty(exports, "PortraitSharp", { + enumerable: true, + get: function () { + return _PortraitSharp.default; + } +}); +Object.defineProperty(exports, "PortraitTwoTone", { + enumerable: true, + get: function () { + return _PortraitTwoTone.default; + } +}); +Object.defineProperty(exports, "PostAdd", { + enumerable: true, + get: function () { + return _PostAdd.default; + } +}); +Object.defineProperty(exports, "PostAddOutlined", { + enumerable: true, + get: function () { + return _PostAddOutlined.default; + } +}); +Object.defineProperty(exports, "PostAddRounded", { + enumerable: true, + get: function () { + return _PostAddRounded.default; + } +}); +Object.defineProperty(exports, "PostAddSharp", { + enumerable: true, + get: function () { + return _PostAddSharp.default; + } +}); +Object.defineProperty(exports, "PostAddTwoTone", { + enumerable: true, + get: function () { + return _PostAddTwoTone.default; + } +}); +Object.defineProperty(exports, "Power", { + enumerable: true, + get: function () { + return _Power.default; + } +}); +Object.defineProperty(exports, "PowerInput", { + enumerable: true, + get: function () { + return _PowerInput.default; + } +}); +Object.defineProperty(exports, "PowerInputOutlined", { + enumerable: true, + get: function () { + return _PowerInputOutlined.default; + } +}); +Object.defineProperty(exports, "PowerInputRounded", { + enumerable: true, + get: function () { + return _PowerInputRounded.default; + } +}); +Object.defineProperty(exports, "PowerInputSharp", { + enumerable: true, + get: function () { + return _PowerInputSharp.default; + } +}); +Object.defineProperty(exports, "PowerInputTwoTone", { + enumerable: true, + get: function () { + return _PowerInputTwoTone.default; + } +}); +Object.defineProperty(exports, "PowerOff", { + enumerable: true, + get: function () { + return _PowerOff.default; + } +}); +Object.defineProperty(exports, "PowerOffOutlined", { + enumerable: true, + get: function () { + return _PowerOffOutlined.default; + } +}); +Object.defineProperty(exports, "PowerOffRounded", { + enumerable: true, + get: function () { + return _PowerOffRounded.default; + } +}); +Object.defineProperty(exports, "PowerOffSharp", { + enumerable: true, + get: function () { + return _PowerOffSharp.default; + } +}); +Object.defineProperty(exports, "PowerOffTwoTone", { + enumerable: true, + get: function () { + return _PowerOffTwoTone.default; + } +}); +Object.defineProperty(exports, "PowerOutlined", { + enumerable: true, + get: function () { + return _PowerOutlined.default; + } +}); +Object.defineProperty(exports, "PowerRounded", { + enumerable: true, + get: function () { + return _PowerRounded.default; + } +}); +Object.defineProperty(exports, "PowerSettingsNew", { + enumerable: true, + get: function () { + return _PowerSettingsNew.default; + } +}); +Object.defineProperty(exports, "PowerSettingsNewOutlined", { + enumerable: true, + get: function () { + return _PowerSettingsNewOutlined.default; + } +}); +Object.defineProperty(exports, "PowerSettingsNewRounded", { + enumerable: true, + get: function () { + return _PowerSettingsNewRounded.default; + } +}); +Object.defineProperty(exports, "PowerSettingsNewSharp", { + enumerable: true, + get: function () { + return _PowerSettingsNewSharp.default; + } +}); +Object.defineProperty(exports, "PowerSettingsNewTwoTone", { + enumerable: true, + get: function () { + return _PowerSettingsNewTwoTone.default; + } +}); +Object.defineProperty(exports, "PowerSharp", { + enumerable: true, + get: function () { + return _PowerSharp.default; + } +}); +Object.defineProperty(exports, "PowerTwoTone", { + enumerable: true, + get: function () { + return _PowerTwoTone.default; + } +}); +Object.defineProperty(exports, "PrecisionManufacturing", { + enumerable: true, + get: function () { + return _PrecisionManufacturing.default; + } +}); +Object.defineProperty(exports, "PrecisionManufacturingOutlined", { + enumerable: true, + get: function () { + return _PrecisionManufacturingOutlined.default; + } +}); +Object.defineProperty(exports, "PrecisionManufacturingRounded", { + enumerable: true, + get: function () { + return _PrecisionManufacturingRounded.default; + } +}); +Object.defineProperty(exports, "PrecisionManufacturingSharp", { + enumerable: true, + get: function () { + return _PrecisionManufacturingSharp.default; + } +}); +Object.defineProperty(exports, "PrecisionManufacturingTwoTone", { + enumerable: true, + get: function () { + return _PrecisionManufacturingTwoTone.default; + } +}); +Object.defineProperty(exports, "PregnantWoman", { + enumerable: true, + get: function () { + return _PregnantWoman.default; + } +}); +Object.defineProperty(exports, "PregnantWomanOutlined", { + enumerable: true, + get: function () { + return _PregnantWomanOutlined.default; + } +}); +Object.defineProperty(exports, "PregnantWomanRounded", { + enumerable: true, + get: function () { + return _PregnantWomanRounded.default; + } +}); +Object.defineProperty(exports, "PregnantWomanSharp", { + enumerable: true, + get: function () { + return _PregnantWomanSharp.default; + } +}); +Object.defineProperty(exports, "PregnantWomanTwoTone", { + enumerable: true, + get: function () { + return _PregnantWomanTwoTone.default; + } +}); +Object.defineProperty(exports, "PresentToAll", { + enumerable: true, + get: function () { + return _PresentToAll.default; + } +}); +Object.defineProperty(exports, "PresentToAllOutlined", { + enumerable: true, + get: function () { + return _PresentToAllOutlined.default; + } +}); +Object.defineProperty(exports, "PresentToAllRounded", { + enumerable: true, + get: function () { + return _PresentToAllRounded.default; + } +}); +Object.defineProperty(exports, "PresentToAllSharp", { + enumerable: true, + get: function () { + return _PresentToAllSharp.default; + } +}); +Object.defineProperty(exports, "PresentToAllTwoTone", { + enumerable: true, + get: function () { + return _PresentToAllTwoTone.default; + } +}); +Object.defineProperty(exports, "Preview", { + enumerable: true, + get: function () { + return _Preview.default; + } +}); +Object.defineProperty(exports, "PreviewOutlined", { + enumerable: true, + get: function () { + return _PreviewOutlined.default; + } +}); +Object.defineProperty(exports, "PreviewRounded", { + enumerable: true, + get: function () { + return _PreviewRounded.default; + } +}); +Object.defineProperty(exports, "PreviewSharp", { + enumerable: true, + get: function () { + return _PreviewSharp.default; + } +}); +Object.defineProperty(exports, "PreviewTwoTone", { + enumerable: true, + get: function () { + return _PreviewTwoTone.default; + } +}); +Object.defineProperty(exports, "PriceChange", { + enumerable: true, + get: function () { + return _PriceChange.default; + } +}); +Object.defineProperty(exports, "PriceChangeOutlined", { + enumerable: true, + get: function () { + return _PriceChangeOutlined.default; + } +}); +Object.defineProperty(exports, "PriceChangeRounded", { + enumerable: true, + get: function () { + return _PriceChangeRounded.default; + } +}); +Object.defineProperty(exports, "PriceChangeSharp", { + enumerable: true, + get: function () { + return _PriceChangeSharp.default; + } +}); +Object.defineProperty(exports, "PriceChangeTwoTone", { + enumerable: true, + get: function () { + return _PriceChangeTwoTone.default; + } +}); +Object.defineProperty(exports, "PriceCheck", { + enumerable: true, + get: function () { + return _PriceCheck.default; + } +}); +Object.defineProperty(exports, "PriceCheckOutlined", { + enumerable: true, + get: function () { + return _PriceCheckOutlined.default; + } +}); +Object.defineProperty(exports, "PriceCheckRounded", { + enumerable: true, + get: function () { + return _PriceCheckRounded.default; + } +}); +Object.defineProperty(exports, "PriceCheckSharp", { + enumerable: true, + get: function () { + return _PriceCheckSharp.default; + } +}); +Object.defineProperty(exports, "PriceCheckTwoTone", { + enumerable: true, + get: function () { + return _PriceCheckTwoTone.default; + } +}); +Object.defineProperty(exports, "Print", { + enumerable: true, + get: function () { + return _Print.default; + } +}); +Object.defineProperty(exports, "PrintDisabled", { + enumerable: true, + get: function () { + return _PrintDisabled.default; + } +}); +Object.defineProperty(exports, "PrintDisabledOutlined", { + enumerable: true, + get: function () { + return _PrintDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "PrintDisabledRounded", { + enumerable: true, + get: function () { + return _PrintDisabledRounded.default; + } +}); +Object.defineProperty(exports, "PrintDisabledSharp", { + enumerable: true, + get: function () { + return _PrintDisabledSharp.default; + } +}); +Object.defineProperty(exports, "PrintDisabledTwoTone", { + enumerable: true, + get: function () { + return _PrintDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "PrintOutlined", { + enumerable: true, + get: function () { + return _PrintOutlined.default; + } +}); +Object.defineProperty(exports, "PrintRounded", { + enumerable: true, + get: function () { + return _PrintRounded.default; + } +}); +Object.defineProperty(exports, "PrintSharp", { + enumerable: true, + get: function () { + return _PrintSharp.default; + } +}); +Object.defineProperty(exports, "PrintTwoTone", { + enumerable: true, + get: function () { + return _PrintTwoTone.default; + } +}); +Object.defineProperty(exports, "PriorityHigh", { + enumerable: true, + get: function () { + return _PriorityHigh.default; + } +}); +Object.defineProperty(exports, "PriorityHighOutlined", { + enumerable: true, + get: function () { + return _PriorityHighOutlined.default; + } +}); +Object.defineProperty(exports, "PriorityHighRounded", { + enumerable: true, + get: function () { + return _PriorityHighRounded.default; + } +}); +Object.defineProperty(exports, "PriorityHighSharp", { + enumerable: true, + get: function () { + return _PriorityHighSharp.default; + } +}); +Object.defineProperty(exports, "PriorityHighTwoTone", { + enumerable: true, + get: function () { + return _PriorityHighTwoTone.default; + } +}); +Object.defineProperty(exports, "PrivacyTip", { + enumerable: true, + get: function () { + return _PrivacyTip.default; + } +}); +Object.defineProperty(exports, "PrivacyTipOutlined", { + enumerable: true, + get: function () { + return _PrivacyTipOutlined.default; + } +}); +Object.defineProperty(exports, "PrivacyTipRounded", { + enumerable: true, + get: function () { + return _PrivacyTipRounded.default; + } +}); +Object.defineProperty(exports, "PrivacyTipSharp", { + enumerable: true, + get: function () { + return _PrivacyTipSharp.default; + } +}); +Object.defineProperty(exports, "PrivacyTipTwoTone", { + enumerable: true, + get: function () { + return _PrivacyTipTwoTone.default; + } +}); +Object.defineProperty(exports, "ProductionQuantityLimits", { + enumerable: true, + get: function () { + return _ProductionQuantityLimits.default; + } +}); +Object.defineProperty(exports, "ProductionQuantityLimitsOutlined", { + enumerable: true, + get: function () { + return _ProductionQuantityLimitsOutlined.default; + } +}); +Object.defineProperty(exports, "ProductionQuantityLimitsRounded", { + enumerable: true, + get: function () { + return _ProductionQuantityLimitsRounded.default; + } +}); +Object.defineProperty(exports, "ProductionQuantityLimitsSharp", { + enumerable: true, + get: function () { + return _ProductionQuantityLimitsSharp.default; + } +}); +Object.defineProperty(exports, "ProductionQuantityLimitsTwoTone", { + enumerable: true, + get: function () { + return _ProductionQuantityLimitsTwoTone.default; + } +}); +Object.defineProperty(exports, "Psychology", { + enumerable: true, + get: function () { + return _Psychology.default; + } +}); +Object.defineProperty(exports, "PsychologyOutlined", { + enumerable: true, + get: function () { + return _PsychologyOutlined.default; + } +}); +Object.defineProperty(exports, "PsychologyRounded", { + enumerable: true, + get: function () { + return _PsychologyRounded.default; + } +}); +Object.defineProperty(exports, "PsychologySharp", { + enumerable: true, + get: function () { + return _PsychologySharp.default; + } +}); +Object.defineProperty(exports, "PsychologyTwoTone", { + enumerable: true, + get: function () { + return _PsychologyTwoTone.default; + } +}); +Object.defineProperty(exports, "Public", { + enumerable: true, + get: function () { + return _Public.default; + } +}); +Object.defineProperty(exports, "PublicOff", { + enumerable: true, + get: function () { + return _PublicOff.default; + } +}); +Object.defineProperty(exports, "PublicOffOutlined", { + enumerable: true, + get: function () { + return _PublicOffOutlined.default; + } +}); +Object.defineProperty(exports, "PublicOffRounded", { + enumerable: true, + get: function () { + return _PublicOffRounded.default; + } +}); +Object.defineProperty(exports, "PublicOffSharp", { + enumerable: true, + get: function () { + return _PublicOffSharp.default; + } +}); +Object.defineProperty(exports, "PublicOffTwoTone", { + enumerable: true, + get: function () { + return _PublicOffTwoTone.default; + } +}); +Object.defineProperty(exports, "PublicOutlined", { + enumerable: true, + get: function () { + return _PublicOutlined.default; + } +}); +Object.defineProperty(exports, "PublicRounded", { + enumerable: true, + get: function () { + return _PublicRounded.default; + } +}); +Object.defineProperty(exports, "PublicSharp", { + enumerable: true, + get: function () { + return _PublicSharp.default; + } +}); +Object.defineProperty(exports, "PublicTwoTone", { + enumerable: true, + get: function () { + return _PublicTwoTone.default; + } +}); +Object.defineProperty(exports, "Publish", { + enumerable: true, + get: function () { + return _Publish.default; + } +}); +Object.defineProperty(exports, "PublishOutlined", { + enumerable: true, + get: function () { + return _PublishOutlined.default; + } +}); +Object.defineProperty(exports, "PublishRounded", { + enumerable: true, + get: function () { + return _PublishRounded.default; + } +}); +Object.defineProperty(exports, "PublishSharp", { + enumerable: true, + get: function () { + return _PublishSharp.default; + } +}); +Object.defineProperty(exports, "PublishTwoTone", { + enumerable: true, + get: function () { + return _PublishTwoTone.default; + } +}); +Object.defineProperty(exports, "PublishedWithChanges", { + enumerable: true, + get: function () { + return _PublishedWithChanges.default; + } +}); +Object.defineProperty(exports, "PublishedWithChangesOutlined", { + enumerable: true, + get: function () { + return _PublishedWithChangesOutlined.default; + } +}); +Object.defineProperty(exports, "PublishedWithChangesRounded", { + enumerable: true, + get: function () { + return _PublishedWithChangesRounded.default; + } +}); +Object.defineProperty(exports, "PublishedWithChangesSharp", { + enumerable: true, + get: function () { + return _PublishedWithChangesSharp.default; + } +}); +Object.defineProperty(exports, "PublishedWithChangesTwoTone", { + enumerable: true, + get: function () { + return _PublishedWithChangesTwoTone.default; + } +}); +Object.defineProperty(exports, "PushPin", { + enumerable: true, + get: function () { + return _PushPin.default; + } +}); +Object.defineProperty(exports, "PushPinOutlined", { + enumerable: true, + get: function () { + return _PushPinOutlined.default; + } +}); +Object.defineProperty(exports, "PushPinRounded", { + enumerable: true, + get: function () { + return _PushPinRounded.default; + } +}); +Object.defineProperty(exports, "PushPinSharp", { + enumerable: true, + get: function () { + return _PushPinSharp.default; + } +}); +Object.defineProperty(exports, "PushPinTwoTone", { + enumerable: true, + get: function () { + return _PushPinTwoTone.default; + } +}); +Object.defineProperty(exports, "QrCode", { + enumerable: true, + get: function () { + return _QrCode.default; + } +}); +Object.defineProperty(exports, "QrCode2", { + enumerable: true, + get: function () { + return _QrCode2.default; + } +}); +Object.defineProperty(exports, "QrCode2Outlined", { + enumerable: true, + get: function () { + return _QrCode2Outlined.default; + } +}); +Object.defineProperty(exports, "QrCode2Rounded", { + enumerable: true, + get: function () { + return _QrCode2Rounded.default; + } +}); +Object.defineProperty(exports, "QrCode2Sharp", { + enumerable: true, + get: function () { + return _QrCode2Sharp.default; + } +}); +Object.defineProperty(exports, "QrCode2TwoTone", { + enumerable: true, + get: function () { + return _QrCode2TwoTone.default; + } +}); +Object.defineProperty(exports, "QrCodeOutlined", { + enumerable: true, + get: function () { + return _QrCodeOutlined.default; + } +}); +Object.defineProperty(exports, "QrCodeRounded", { + enumerable: true, + get: function () { + return _QrCodeRounded.default; + } +}); +Object.defineProperty(exports, "QrCodeScanner", { + enumerable: true, + get: function () { + return _QrCodeScanner.default; + } +}); +Object.defineProperty(exports, "QrCodeScannerOutlined", { + enumerable: true, + get: function () { + return _QrCodeScannerOutlined.default; + } +}); +Object.defineProperty(exports, "QrCodeScannerRounded", { + enumerable: true, + get: function () { + return _QrCodeScannerRounded.default; + } +}); +Object.defineProperty(exports, "QrCodeScannerSharp", { + enumerable: true, + get: function () { + return _QrCodeScannerSharp.default; + } +}); +Object.defineProperty(exports, "QrCodeScannerTwoTone", { + enumerable: true, + get: function () { + return _QrCodeScannerTwoTone.default; + } +}); +Object.defineProperty(exports, "QrCodeSharp", { + enumerable: true, + get: function () { + return _QrCodeSharp.default; + } +}); +Object.defineProperty(exports, "QrCodeTwoTone", { + enumerable: true, + get: function () { + return _QrCodeTwoTone.default; + } +}); +Object.defineProperty(exports, "QueryBuilder", { + enumerable: true, + get: function () { + return _QueryBuilder.default; + } +}); +Object.defineProperty(exports, "QueryBuilderOutlined", { + enumerable: true, + get: function () { + return _QueryBuilderOutlined.default; + } +}); +Object.defineProperty(exports, "QueryBuilderRounded", { + enumerable: true, + get: function () { + return _QueryBuilderRounded.default; + } +}); +Object.defineProperty(exports, "QueryBuilderSharp", { + enumerable: true, + get: function () { + return _QueryBuilderSharp.default; + } +}); +Object.defineProperty(exports, "QueryBuilderTwoTone", { + enumerable: true, + get: function () { + return _QueryBuilderTwoTone.default; + } +}); +Object.defineProperty(exports, "QueryStats", { + enumerable: true, + get: function () { + return _QueryStats.default; + } +}); +Object.defineProperty(exports, "QueryStatsOutlined", { + enumerable: true, + get: function () { + return _QueryStatsOutlined.default; + } +}); +Object.defineProperty(exports, "QueryStatsRounded", { + enumerable: true, + get: function () { + return _QueryStatsRounded.default; + } +}); +Object.defineProperty(exports, "QueryStatsSharp", { + enumerable: true, + get: function () { + return _QueryStatsSharp.default; + } +}); +Object.defineProperty(exports, "QueryStatsTwoTone", { + enumerable: true, + get: function () { + return _QueryStatsTwoTone.default; + } +}); +Object.defineProperty(exports, "QuestionAnswer", { + enumerable: true, + get: function () { + return _QuestionAnswer.default; + } +}); +Object.defineProperty(exports, "QuestionAnswerOutlined", { + enumerable: true, + get: function () { + return _QuestionAnswerOutlined.default; + } +}); +Object.defineProperty(exports, "QuestionAnswerRounded", { + enumerable: true, + get: function () { + return _QuestionAnswerRounded.default; + } +}); +Object.defineProperty(exports, "QuestionAnswerSharp", { + enumerable: true, + get: function () { + return _QuestionAnswerSharp.default; + } +}); +Object.defineProperty(exports, "QuestionAnswerTwoTone", { + enumerable: true, + get: function () { + return _QuestionAnswerTwoTone.default; + } +}); +Object.defineProperty(exports, "Queue", { + enumerable: true, + get: function () { + return _Queue.default; + } +}); +Object.defineProperty(exports, "QueueMusic", { + enumerable: true, + get: function () { + return _QueueMusic.default; + } +}); +Object.defineProperty(exports, "QueueMusicOutlined", { + enumerable: true, + get: function () { + return _QueueMusicOutlined.default; + } +}); +Object.defineProperty(exports, "QueueMusicRounded", { + enumerable: true, + get: function () { + return _QueueMusicRounded.default; + } +}); +Object.defineProperty(exports, "QueueMusicSharp", { + enumerable: true, + get: function () { + return _QueueMusicSharp.default; + } +}); +Object.defineProperty(exports, "QueueMusicTwoTone", { + enumerable: true, + get: function () { + return _QueueMusicTwoTone.default; + } +}); +Object.defineProperty(exports, "QueueOutlined", { + enumerable: true, + get: function () { + return _QueueOutlined.default; + } +}); +Object.defineProperty(exports, "QueuePlayNext", { + enumerable: true, + get: function () { + return _QueuePlayNext.default; + } +}); +Object.defineProperty(exports, "QueuePlayNextOutlined", { + enumerable: true, + get: function () { + return _QueuePlayNextOutlined.default; + } +}); +Object.defineProperty(exports, "QueuePlayNextRounded", { + enumerable: true, + get: function () { + return _QueuePlayNextRounded.default; + } +}); +Object.defineProperty(exports, "QueuePlayNextSharp", { + enumerable: true, + get: function () { + return _QueuePlayNextSharp.default; + } +}); +Object.defineProperty(exports, "QueuePlayNextTwoTone", { + enumerable: true, + get: function () { + return _QueuePlayNextTwoTone.default; + } +}); +Object.defineProperty(exports, "QueueRounded", { + enumerable: true, + get: function () { + return _QueueRounded.default; + } +}); +Object.defineProperty(exports, "QueueSharp", { + enumerable: true, + get: function () { + return _QueueSharp.default; + } +}); +Object.defineProperty(exports, "QueueTwoTone", { + enumerable: true, + get: function () { + return _QueueTwoTone.default; + } +}); +Object.defineProperty(exports, "Quickreply", { + enumerable: true, + get: function () { + return _Quickreply.default; + } +}); +Object.defineProperty(exports, "QuickreplyOutlined", { + enumerable: true, + get: function () { + return _QuickreplyOutlined.default; + } +}); +Object.defineProperty(exports, "QuickreplyRounded", { + enumerable: true, + get: function () { + return _QuickreplyRounded.default; + } +}); +Object.defineProperty(exports, "QuickreplySharp", { + enumerable: true, + get: function () { + return _QuickreplySharp.default; + } +}); +Object.defineProperty(exports, "QuickreplyTwoTone", { + enumerable: true, + get: function () { + return _QuickreplyTwoTone.default; + } +}); +Object.defineProperty(exports, "Quiz", { + enumerable: true, + get: function () { + return _Quiz.default; + } +}); +Object.defineProperty(exports, "QuizOutlined", { + enumerable: true, + get: function () { + return _QuizOutlined.default; + } +}); +Object.defineProperty(exports, "QuizRounded", { + enumerable: true, + get: function () { + return _QuizRounded.default; + } +}); +Object.defineProperty(exports, "QuizSharp", { + enumerable: true, + get: function () { + return _QuizSharp.default; + } +}); +Object.defineProperty(exports, "QuizTwoTone", { + enumerable: true, + get: function () { + return _QuizTwoTone.default; + } +}); +Object.defineProperty(exports, "RMobiledata", { + enumerable: true, + get: function () { + return _RMobiledata.default; + } +}); +Object.defineProperty(exports, "RMobiledataOutlined", { + enumerable: true, + get: function () { + return _RMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "RMobiledataRounded", { + enumerable: true, + get: function () { + return _RMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "RMobiledataSharp", { + enumerable: true, + get: function () { + return _RMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "RMobiledataTwoTone", { + enumerable: true, + get: function () { + return _RMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "Radar", { + enumerable: true, + get: function () { + return _Radar.default; + } +}); +Object.defineProperty(exports, "RadarOutlined", { + enumerable: true, + get: function () { + return _RadarOutlined.default; + } +}); +Object.defineProperty(exports, "RadarRounded", { + enumerable: true, + get: function () { + return _RadarRounded.default; + } +}); +Object.defineProperty(exports, "RadarSharp", { + enumerable: true, + get: function () { + return _RadarSharp.default; + } +}); +Object.defineProperty(exports, "RadarTwoTone", { + enumerable: true, + get: function () { + return _RadarTwoTone.default; + } +}); +Object.defineProperty(exports, "Radio", { + enumerable: true, + get: function () { + return _Radio.default; + } +}); +Object.defineProperty(exports, "RadioButtonChecked", { + enumerable: true, + get: function () { + return _RadioButtonChecked.default; + } +}); +Object.defineProperty(exports, "RadioButtonCheckedOutlined", { + enumerable: true, + get: function () { + return _RadioButtonCheckedOutlined.default; + } +}); +Object.defineProperty(exports, "RadioButtonCheckedRounded", { + enumerable: true, + get: function () { + return _RadioButtonCheckedRounded.default; + } +}); +Object.defineProperty(exports, "RadioButtonCheckedSharp", { + enumerable: true, + get: function () { + return _RadioButtonCheckedSharp.default; + } +}); +Object.defineProperty(exports, "RadioButtonCheckedTwoTone", { + enumerable: true, + get: function () { + return _RadioButtonCheckedTwoTone.default; + } +}); +Object.defineProperty(exports, "RadioButtonUnchecked", { + enumerable: true, + get: function () { + return _RadioButtonUnchecked.default; + } +}); +Object.defineProperty(exports, "RadioButtonUncheckedOutlined", { + enumerable: true, + get: function () { + return _RadioButtonUncheckedOutlined.default; + } +}); +Object.defineProperty(exports, "RadioButtonUncheckedRounded", { + enumerable: true, + get: function () { + return _RadioButtonUncheckedRounded.default; + } +}); +Object.defineProperty(exports, "RadioButtonUncheckedSharp", { + enumerable: true, + get: function () { + return _RadioButtonUncheckedSharp.default; + } +}); +Object.defineProperty(exports, "RadioButtonUncheckedTwoTone", { + enumerable: true, + get: function () { + return _RadioButtonUncheckedTwoTone.default; + } +}); +Object.defineProperty(exports, "RadioOutlined", { + enumerable: true, + get: function () { + return _RadioOutlined.default; + } +}); +Object.defineProperty(exports, "RadioRounded", { + enumerable: true, + get: function () { + return _RadioRounded.default; + } +}); +Object.defineProperty(exports, "RadioSharp", { + enumerable: true, + get: function () { + return _RadioSharp.default; + } +}); +Object.defineProperty(exports, "RadioTwoTone", { + enumerable: true, + get: function () { + return _RadioTwoTone.default; + } +}); +Object.defineProperty(exports, "RailwayAlert", { + enumerable: true, + get: function () { + return _RailwayAlert.default; + } +}); +Object.defineProperty(exports, "RailwayAlertOutlined", { + enumerable: true, + get: function () { + return _RailwayAlertOutlined.default; + } +}); +Object.defineProperty(exports, "RailwayAlertRounded", { + enumerable: true, + get: function () { + return _RailwayAlertRounded.default; + } +}); +Object.defineProperty(exports, "RailwayAlertSharp", { + enumerable: true, + get: function () { + return _RailwayAlertSharp.default; + } +}); +Object.defineProperty(exports, "RailwayAlertTwoTone", { + enumerable: true, + get: function () { + return _RailwayAlertTwoTone.default; + } +}); +Object.defineProperty(exports, "RamenDining", { + enumerable: true, + get: function () { + return _RamenDining.default; + } +}); +Object.defineProperty(exports, "RamenDiningOutlined", { + enumerable: true, + get: function () { + return _RamenDiningOutlined.default; + } +}); +Object.defineProperty(exports, "RamenDiningRounded", { + enumerable: true, + get: function () { + return _RamenDiningRounded.default; + } +}); +Object.defineProperty(exports, "RamenDiningSharp", { + enumerable: true, + get: function () { + return _RamenDiningSharp.default; + } +}); +Object.defineProperty(exports, "RamenDiningTwoTone", { + enumerable: true, + get: function () { + return _RamenDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "RateReview", { + enumerable: true, + get: function () { + return _RateReview.default; + } +}); +Object.defineProperty(exports, "RateReviewOutlined", { + enumerable: true, + get: function () { + return _RateReviewOutlined.default; + } +}); +Object.defineProperty(exports, "RateReviewRounded", { + enumerable: true, + get: function () { + return _RateReviewRounded.default; + } +}); +Object.defineProperty(exports, "RateReviewSharp", { + enumerable: true, + get: function () { + return _RateReviewSharp.default; + } +}); +Object.defineProperty(exports, "RateReviewTwoTone", { + enumerable: true, + get: function () { + return _RateReviewTwoTone.default; + } +}); +Object.defineProperty(exports, "RawOff", { + enumerable: true, + get: function () { + return _RawOff.default; + } +}); +Object.defineProperty(exports, "RawOffOutlined", { + enumerable: true, + get: function () { + return _RawOffOutlined.default; + } +}); +Object.defineProperty(exports, "RawOffRounded", { + enumerable: true, + get: function () { + return _RawOffRounded.default; + } +}); +Object.defineProperty(exports, "RawOffSharp", { + enumerable: true, + get: function () { + return _RawOffSharp.default; + } +}); +Object.defineProperty(exports, "RawOffTwoTone", { + enumerable: true, + get: function () { + return _RawOffTwoTone.default; + } +}); +Object.defineProperty(exports, "RawOn", { + enumerable: true, + get: function () { + return _RawOn.default; + } +}); +Object.defineProperty(exports, "RawOnOutlined", { + enumerable: true, + get: function () { + return _RawOnOutlined.default; + } +}); +Object.defineProperty(exports, "RawOnRounded", { + enumerable: true, + get: function () { + return _RawOnRounded.default; + } +}); +Object.defineProperty(exports, "RawOnSharp", { + enumerable: true, + get: function () { + return _RawOnSharp.default; + } +}); +Object.defineProperty(exports, "RawOnTwoTone", { + enumerable: true, + get: function () { + return _RawOnTwoTone.default; + } +}); +Object.defineProperty(exports, "ReadMore", { + enumerable: true, + get: function () { + return _ReadMore.default; + } +}); +Object.defineProperty(exports, "ReadMoreOutlined", { + enumerable: true, + get: function () { + return _ReadMoreOutlined.default; + } +}); +Object.defineProperty(exports, "ReadMoreRounded", { + enumerable: true, + get: function () { + return _ReadMoreRounded.default; + } +}); +Object.defineProperty(exports, "ReadMoreSharp", { + enumerable: true, + get: function () { + return _ReadMoreSharp.default; + } +}); +Object.defineProperty(exports, "ReadMoreTwoTone", { + enumerable: true, + get: function () { + return _ReadMoreTwoTone.default; + } +}); +Object.defineProperty(exports, "Receipt", { + enumerable: true, + get: function () { + return _Receipt.default; + } +}); +Object.defineProperty(exports, "ReceiptLong", { + enumerable: true, + get: function () { + return _ReceiptLong.default; + } +}); +Object.defineProperty(exports, "ReceiptLongOutlined", { + enumerable: true, + get: function () { + return _ReceiptLongOutlined.default; + } +}); +Object.defineProperty(exports, "ReceiptLongRounded", { + enumerable: true, + get: function () { + return _ReceiptLongRounded.default; + } +}); +Object.defineProperty(exports, "ReceiptLongSharp", { + enumerable: true, + get: function () { + return _ReceiptLongSharp.default; + } +}); +Object.defineProperty(exports, "ReceiptLongTwoTone", { + enumerable: true, + get: function () { + return _ReceiptLongTwoTone.default; + } +}); +Object.defineProperty(exports, "ReceiptOutlined", { + enumerable: true, + get: function () { + return _ReceiptOutlined.default; + } +}); +Object.defineProperty(exports, "ReceiptRounded", { + enumerable: true, + get: function () { + return _ReceiptRounded.default; + } +}); +Object.defineProperty(exports, "ReceiptSharp", { + enumerable: true, + get: function () { + return _ReceiptSharp.default; + } +}); +Object.defineProperty(exports, "ReceiptTwoTone", { + enumerable: true, + get: function () { + return _ReceiptTwoTone.default; + } +}); +Object.defineProperty(exports, "RecentActors", { + enumerable: true, + get: function () { + return _RecentActors.default; + } +}); +Object.defineProperty(exports, "RecentActorsOutlined", { + enumerable: true, + get: function () { + return _RecentActorsOutlined.default; + } +}); +Object.defineProperty(exports, "RecentActorsRounded", { + enumerable: true, + get: function () { + return _RecentActorsRounded.default; + } +}); +Object.defineProperty(exports, "RecentActorsSharp", { + enumerable: true, + get: function () { + return _RecentActorsSharp.default; + } +}); +Object.defineProperty(exports, "RecentActorsTwoTone", { + enumerable: true, + get: function () { + return _RecentActorsTwoTone.default; + } +}); +Object.defineProperty(exports, "Recommend", { + enumerable: true, + get: function () { + return _Recommend.default; + } +}); +Object.defineProperty(exports, "RecommendOutlined", { + enumerable: true, + get: function () { + return _RecommendOutlined.default; + } +}); +Object.defineProperty(exports, "RecommendRounded", { + enumerable: true, + get: function () { + return _RecommendRounded.default; + } +}); +Object.defineProperty(exports, "RecommendSharp", { + enumerable: true, + get: function () { + return _RecommendSharp.default; + } +}); +Object.defineProperty(exports, "RecommendTwoTone", { + enumerable: true, + get: function () { + return _RecommendTwoTone.default; + } +}); +Object.defineProperty(exports, "RecordVoiceOver", { + enumerable: true, + get: function () { + return _RecordVoiceOver.default; + } +}); +Object.defineProperty(exports, "RecordVoiceOverOutlined", { + enumerable: true, + get: function () { + return _RecordVoiceOverOutlined.default; + } +}); +Object.defineProperty(exports, "RecordVoiceOverRounded", { + enumerable: true, + get: function () { + return _RecordVoiceOverRounded.default; + } +}); +Object.defineProperty(exports, "RecordVoiceOverSharp", { + enumerable: true, + get: function () { + return _RecordVoiceOverSharp.default; + } +}); +Object.defineProperty(exports, "RecordVoiceOverTwoTone", { + enumerable: true, + get: function () { + return _RecordVoiceOverTwoTone.default; + } +}); +Object.defineProperty(exports, "Reddit", { + enumerable: true, + get: function () { + return _Reddit.default; + } +}); +Object.defineProperty(exports, "Redeem", { + enumerable: true, + get: function () { + return _Redeem.default; + } +}); +Object.defineProperty(exports, "RedeemOutlined", { + enumerable: true, + get: function () { + return _RedeemOutlined.default; + } +}); +Object.defineProperty(exports, "RedeemRounded", { + enumerable: true, + get: function () { + return _RedeemRounded.default; + } +}); +Object.defineProperty(exports, "RedeemSharp", { + enumerable: true, + get: function () { + return _RedeemSharp.default; + } +}); +Object.defineProperty(exports, "RedeemTwoTone", { + enumerable: true, + get: function () { + return _RedeemTwoTone.default; + } +}); +Object.defineProperty(exports, "Redo", { + enumerable: true, + get: function () { + return _Redo.default; + } +}); +Object.defineProperty(exports, "RedoOutlined", { + enumerable: true, + get: function () { + return _RedoOutlined.default; + } +}); +Object.defineProperty(exports, "RedoRounded", { + enumerable: true, + get: function () { + return _RedoRounded.default; + } +}); +Object.defineProperty(exports, "RedoSharp", { + enumerable: true, + get: function () { + return _RedoSharp.default; + } +}); +Object.defineProperty(exports, "RedoTwoTone", { + enumerable: true, + get: function () { + return _RedoTwoTone.default; + } +}); +Object.defineProperty(exports, "ReduceCapacity", { + enumerable: true, + get: function () { + return _ReduceCapacity.default; + } +}); +Object.defineProperty(exports, "ReduceCapacityOutlined", { + enumerable: true, + get: function () { + return _ReduceCapacityOutlined.default; + } +}); +Object.defineProperty(exports, "ReduceCapacityRounded", { + enumerable: true, + get: function () { + return _ReduceCapacityRounded.default; + } +}); +Object.defineProperty(exports, "ReduceCapacitySharp", { + enumerable: true, + get: function () { + return _ReduceCapacitySharp.default; + } +}); +Object.defineProperty(exports, "ReduceCapacityTwoTone", { + enumerable: true, + get: function () { + return _ReduceCapacityTwoTone.default; + } +}); +Object.defineProperty(exports, "Refresh", { + enumerable: true, + get: function () { + return _Refresh.default; + } +}); +Object.defineProperty(exports, "RefreshOutlined", { + enumerable: true, + get: function () { + return _RefreshOutlined.default; + } +}); +Object.defineProperty(exports, "RefreshRounded", { + enumerable: true, + get: function () { + return _RefreshRounded.default; + } +}); +Object.defineProperty(exports, "RefreshSharp", { + enumerable: true, + get: function () { + return _RefreshSharp.default; + } +}); +Object.defineProperty(exports, "RefreshTwoTone", { + enumerable: true, + get: function () { + return _RefreshTwoTone.default; + } +}); +Object.defineProperty(exports, "RememberMe", { + enumerable: true, + get: function () { + return _RememberMe.default; + } +}); +Object.defineProperty(exports, "RememberMeOutlined", { + enumerable: true, + get: function () { + return _RememberMeOutlined.default; + } +}); +Object.defineProperty(exports, "RememberMeRounded", { + enumerable: true, + get: function () { + return _RememberMeRounded.default; + } +}); +Object.defineProperty(exports, "RememberMeSharp", { + enumerable: true, + get: function () { + return _RememberMeSharp.default; + } +}); +Object.defineProperty(exports, "RememberMeTwoTone", { + enumerable: true, + get: function () { + return _RememberMeTwoTone.default; + } +}); +Object.defineProperty(exports, "Remove", { + enumerable: true, + get: function () { + return _Remove.default; + } +}); +Object.defineProperty(exports, "RemoveCircle", { + enumerable: true, + get: function () { + return _RemoveCircle.default; + } +}); +Object.defineProperty(exports, "RemoveCircleOutline", { + enumerable: true, + get: function () { + return _RemoveCircleOutline.default; + } +}); +Object.defineProperty(exports, "RemoveCircleOutlineOutlined", { + enumerable: true, + get: function () { + return _RemoveCircleOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveCircleOutlineRounded", { + enumerable: true, + get: function () { + return _RemoveCircleOutlineRounded.default; + } +}); +Object.defineProperty(exports, "RemoveCircleOutlineSharp", { + enumerable: true, + get: function () { + return _RemoveCircleOutlineSharp.default; + } +}); +Object.defineProperty(exports, "RemoveCircleOutlineTwoTone", { + enumerable: true, + get: function () { + return _RemoveCircleOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "RemoveCircleOutlined", { + enumerable: true, + get: function () { + return _RemoveCircleOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveCircleRounded", { + enumerable: true, + get: function () { + return _RemoveCircleRounded.default; + } +}); +Object.defineProperty(exports, "RemoveCircleSharp", { + enumerable: true, + get: function () { + return _RemoveCircleSharp.default; + } +}); +Object.defineProperty(exports, "RemoveCircleTwoTone", { + enumerable: true, + get: function () { + return _RemoveCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "RemoveDone", { + enumerable: true, + get: function () { + return _RemoveDone.default; + } +}); +Object.defineProperty(exports, "RemoveDoneOutlined", { + enumerable: true, + get: function () { + return _RemoveDoneOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveDoneRounded", { + enumerable: true, + get: function () { + return _RemoveDoneRounded.default; + } +}); +Object.defineProperty(exports, "RemoveDoneSharp", { + enumerable: true, + get: function () { + return _RemoveDoneSharp.default; + } +}); +Object.defineProperty(exports, "RemoveDoneTwoTone", { + enumerable: true, + get: function () { + return _RemoveDoneTwoTone.default; + } +}); +Object.defineProperty(exports, "RemoveFromQueue", { + enumerable: true, + get: function () { + return _RemoveFromQueue.default; + } +}); +Object.defineProperty(exports, "RemoveFromQueueOutlined", { + enumerable: true, + get: function () { + return _RemoveFromQueueOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveFromQueueRounded", { + enumerable: true, + get: function () { + return _RemoveFromQueueRounded.default; + } +}); +Object.defineProperty(exports, "RemoveFromQueueSharp", { + enumerable: true, + get: function () { + return _RemoveFromQueueSharp.default; + } +}); +Object.defineProperty(exports, "RemoveFromQueueTwoTone", { + enumerable: true, + get: function () { + return _RemoveFromQueueTwoTone.default; + } +}); +Object.defineProperty(exports, "RemoveModerator", { + enumerable: true, + get: function () { + return _RemoveModerator.default; + } +}); +Object.defineProperty(exports, "RemoveModeratorOutlined", { + enumerable: true, + get: function () { + return _RemoveModeratorOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveModeratorRounded", { + enumerable: true, + get: function () { + return _RemoveModeratorRounded.default; + } +}); +Object.defineProperty(exports, "RemoveModeratorSharp", { + enumerable: true, + get: function () { + return _RemoveModeratorSharp.default; + } +}); +Object.defineProperty(exports, "RemoveModeratorTwoTone", { + enumerable: true, + get: function () { + return _RemoveModeratorTwoTone.default; + } +}); +Object.defineProperty(exports, "RemoveOutlined", { + enumerable: true, + get: function () { + return _RemoveOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveRedEye", { + enumerable: true, + get: function () { + return _RemoveRedEye.default; + } +}); +Object.defineProperty(exports, "RemoveRedEyeOutlined", { + enumerable: true, + get: function () { + return _RemoveRedEyeOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveRedEyeRounded", { + enumerable: true, + get: function () { + return _RemoveRedEyeRounded.default; + } +}); +Object.defineProperty(exports, "RemoveRedEyeSharp", { + enumerable: true, + get: function () { + return _RemoveRedEyeSharp.default; + } +}); +Object.defineProperty(exports, "RemoveRedEyeTwoTone", { + enumerable: true, + get: function () { + return _RemoveRedEyeTwoTone.default; + } +}); +Object.defineProperty(exports, "RemoveRounded", { + enumerable: true, + get: function () { + return _RemoveRounded.default; + } +}); +Object.defineProperty(exports, "RemoveSharp", { + enumerable: true, + get: function () { + return _RemoveSharp.default; + } +}); +Object.defineProperty(exports, "RemoveShoppingCart", { + enumerable: true, + get: function () { + return _RemoveShoppingCart.default; + } +}); +Object.defineProperty(exports, "RemoveShoppingCartOutlined", { + enumerable: true, + get: function () { + return _RemoveShoppingCartOutlined.default; + } +}); +Object.defineProperty(exports, "RemoveShoppingCartRounded", { + enumerable: true, + get: function () { + return _RemoveShoppingCartRounded.default; + } +}); +Object.defineProperty(exports, "RemoveShoppingCartSharp", { + enumerable: true, + get: function () { + return _RemoveShoppingCartSharp.default; + } +}); +Object.defineProperty(exports, "RemoveShoppingCartTwoTone", { + enumerable: true, + get: function () { + return _RemoveShoppingCartTwoTone.default; + } +}); +Object.defineProperty(exports, "RemoveTwoTone", { + enumerable: true, + get: function () { + return _RemoveTwoTone.default; + } +}); +Object.defineProperty(exports, "Reorder", { + enumerable: true, + get: function () { + return _Reorder.default; + } +}); +Object.defineProperty(exports, "ReorderOutlined", { + enumerable: true, + get: function () { + return _ReorderOutlined.default; + } +}); +Object.defineProperty(exports, "ReorderRounded", { + enumerable: true, + get: function () { + return _ReorderRounded.default; + } +}); +Object.defineProperty(exports, "ReorderSharp", { + enumerable: true, + get: function () { + return _ReorderSharp.default; + } +}); +Object.defineProperty(exports, "ReorderTwoTone", { + enumerable: true, + get: function () { + return _ReorderTwoTone.default; + } +}); +Object.defineProperty(exports, "Repeat", { + enumerable: true, + get: function () { + return _Repeat.default; + } +}); +Object.defineProperty(exports, "RepeatOn", { + enumerable: true, + get: function () { + return _RepeatOn.default; + } +}); +Object.defineProperty(exports, "RepeatOnOutlined", { + enumerable: true, + get: function () { + return _RepeatOnOutlined.default; + } +}); +Object.defineProperty(exports, "RepeatOnRounded", { + enumerable: true, + get: function () { + return _RepeatOnRounded.default; + } +}); +Object.defineProperty(exports, "RepeatOnSharp", { + enumerable: true, + get: function () { + return _RepeatOnSharp.default; + } +}); +Object.defineProperty(exports, "RepeatOnTwoTone", { + enumerable: true, + get: function () { + return _RepeatOnTwoTone.default; + } +}); +Object.defineProperty(exports, "RepeatOne", { + enumerable: true, + get: function () { + return _RepeatOne.default; + } +}); +Object.defineProperty(exports, "RepeatOneOn", { + enumerable: true, + get: function () { + return _RepeatOneOn.default; + } +}); +Object.defineProperty(exports, "RepeatOneOnOutlined", { + enumerable: true, + get: function () { + return _RepeatOneOnOutlined.default; + } +}); +Object.defineProperty(exports, "RepeatOneOnRounded", { + enumerable: true, + get: function () { + return _RepeatOneOnRounded.default; + } +}); +Object.defineProperty(exports, "RepeatOneOnSharp", { + enumerable: true, + get: function () { + return _RepeatOneOnSharp.default; + } +}); +Object.defineProperty(exports, "RepeatOneOnTwoTone", { + enumerable: true, + get: function () { + return _RepeatOneOnTwoTone.default; + } +}); +Object.defineProperty(exports, "RepeatOneOutlined", { + enumerable: true, + get: function () { + return _RepeatOneOutlined.default; + } +}); +Object.defineProperty(exports, "RepeatOneRounded", { + enumerable: true, + get: function () { + return _RepeatOneRounded.default; + } +}); +Object.defineProperty(exports, "RepeatOneSharp", { + enumerable: true, + get: function () { + return _RepeatOneSharp.default; + } +}); +Object.defineProperty(exports, "RepeatOneTwoTone", { + enumerable: true, + get: function () { + return _RepeatOneTwoTone.default; + } +}); +Object.defineProperty(exports, "RepeatOutlined", { + enumerable: true, + get: function () { + return _RepeatOutlined.default; + } +}); +Object.defineProperty(exports, "RepeatRounded", { + enumerable: true, + get: function () { + return _RepeatRounded.default; + } +}); +Object.defineProperty(exports, "RepeatSharp", { + enumerable: true, + get: function () { + return _RepeatSharp.default; + } +}); +Object.defineProperty(exports, "RepeatTwoTone", { + enumerable: true, + get: function () { + return _RepeatTwoTone.default; + } +}); +Object.defineProperty(exports, "Replay", { + enumerable: true, + get: function () { + return _Replay.default; + } +}); +Object.defineProperty(exports, "Replay10", { + enumerable: true, + get: function () { + return _Replay2.default; + } +}); +Object.defineProperty(exports, "Replay10Outlined", { + enumerable: true, + get: function () { + return _Replay10Outlined.default; + } +}); +Object.defineProperty(exports, "Replay10Rounded", { + enumerable: true, + get: function () { + return _Replay10Rounded.default; + } +}); +Object.defineProperty(exports, "Replay10Sharp", { + enumerable: true, + get: function () { + return _Replay10Sharp.default; + } +}); +Object.defineProperty(exports, "Replay10TwoTone", { + enumerable: true, + get: function () { + return _Replay10TwoTone.default; + } +}); +Object.defineProperty(exports, "Replay30", { + enumerable: true, + get: function () { + return _Replay3.default; + } +}); +Object.defineProperty(exports, "Replay30Outlined", { + enumerable: true, + get: function () { + return _Replay30Outlined.default; + } +}); +Object.defineProperty(exports, "Replay30Rounded", { + enumerable: true, + get: function () { + return _Replay30Rounded.default; + } +}); +Object.defineProperty(exports, "Replay30Sharp", { + enumerable: true, + get: function () { + return _Replay30Sharp.default; + } +}); +Object.defineProperty(exports, "Replay30TwoTone", { + enumerable: true, + get: function () { + return _Replay30TwoTone.default; + } +}); +Object.defineProperty(exports, "Replay5", { + enumerable: true, + get: function () { + return _Replay4.default; + } +}); +Object.defineProperty(exports, "Replay5Outlined", { + enumerable: true, + get: function () { + return _Replay5Outlined.default; + } +}); +Object.defineProperty(exports, "Replay5Rounded", { + enumerable: true, + get: function () { + return _Replay5Rounded.default; + } +}); +Object.defineProperty(exports, "Replay5Sharp", { + enumerable: true, + get: function () { + return _Replay5Sharp.default; + } +}); +Object.defineProperty(exports, "Replay5TwoTone", { + enumerable: true, + get: function () { + return _Replay5TwoTone.default; + } +}); +Object.defineProperty(exports, "ReplayCircleFilled", { + enumerable: true, + get: function () { + return _ReplayCircleFilled.default; + } +}); +Object.defineProperty(exports, "ReplayCircleFilledOutlined", { + enumerable: true, + get: function () { + return _ReplayCircleFilledOutlined.default; + } +}); +Object.defineProperty(exports, "ReplayCircleFilledRounded", { + enumerable: true, + get: function () { + return _ReplayCircleFilledRounded.default; + } +}); +Object.defineProperty(exports, "ReplayCircleFilledSharp", { + enumerable: true, + get: function () { + return _ReplayCircleFilledSharp.default; + } +}); +Object.defineProperty(exports, "ReplayCircleFilledTwoTone", { + enumerable: true, + get: function () { + return _ReplayCircleFilledTwoTone.default; + } +}); +Object.defineProperty(exports, "ReplayOutlined", { + enumerable: true, + get: function () { + return _ReplayOutlined.default; + } +}); +Object.defineProperty(exports, "ReplayRounded", { + enumerable: true, + get: function () { + return _ReplayRounded.default; + } +}); +Object.defineProperty(exports, "ReplaySharp", { + enumerable: true, + get: function () { + return _ReplaySharp.default; + } +}); +Object.defineProperty(exports, "ReplayTwoTone", { + enumerable: true, + get: function () { + return _ReplayTwoTone.default; + } +}); +Object.defineProperty(exports, "Reply", { + enumerable: true, + get: function () { + return _Reply.default; + } +}); +Object.defineProperty(exports, "ReplyAll", { + enumerable: true, + get: function () { + return _ReplyAll.default; + } +}); +Object.defineProperty(exports, "ReplyAllOutlined", { + enumerable: true, + get: function () { + return _ReplyAllOutlined.default; + } +}); +Object.defineProperty(exports, "ReplyAllRounded", { + enumerable: true, + get: function () { + return _ReplyAllRounded.default; + } +}); +Object.defineProperty(exports, "ReplyAllSharp", { + enumerable: true, + get: function () { + return _ReplyAllSharp.default; + } +}); +Object.defineProperty(exports, "ReplyAllTwoTone", { + enumerable: true, + get: function () { + return _ReplyAllTwoTone.default; + } +}); +Object.defineProperty(exports, "ReplyOutlined", { + enumerable: true, + get: function () { + return _ReplyOutlined.default; + } +}); +Object.defineProperty(exports, "ReplyRounded", { + enumerable: true, + get: function () { + return _ReplyRounded.default; + } +}); +Object.defineProperty(exports, "ReplySharp", { + enumerable: true, + get: function () { + return _ReplySharp.default; + } +}); +Object.defineProperty(exports, "ReplyTwoTone", { + enumerable: true, + get: function () { + return _ReplyTwoTone.default; + } +}); +Object.defineProperty(exports, "Report", { + enumerable: true, + get: function () { + return _Report.default; + } +}); +Object.defineProperty(exports, "ReportGmailerrorred", { + enumerable: true, + get: function () { + return _ReportGmailerrorred.default; + } +}); +Object.defineProperty(exports, "ReportGmailerrorredOutlined", { + enumerable: true, + get: function () { + return _ReportGmailerrorredOutlined.default; + } +}); +Object.defineProperty(exports, "ReportGmailerrorredRounded", { + enumerable: true, + get: function () { + return _ReportGmailerrorredRounded.default; + } +}); +Object.defineProperty(exports, "ReportGmailerrorredSharp", { + enumerable: true, + get: function () { + return _ReportGmailerrorredSharp.default; + } +}); +Object.defineProperty(exports, "ReportGmailerrorredTwoTone", { + enumerable: true, + get: function () { + return _ReportGmailerrorredTwoTone.default; + } +}); +Object.defineProperty(exports, "ReportOff", { + enumerable: true, + get: function () { + return _ReportOff.default; + } +}); +Object.defineProperty(exports, "ReportOffOutlined", { + enumerable: true, + get: function () { + return _ReportOffOutlined.default; + } +}); +Object.defineProperty(exports, "ReportOffRounded", { + enumerable: true, + get: function () { + return _ReportOffRounded.default; + } +}); +Object.defineProperty(exports, "ReportOffSharp", { + enumerable: true, + get: function () { + return _ReportOffSharp.default; + } +}); +Object.defineProperty(exports, "ReportOffTwoTone", { + enumerable: true, + get: function () { + return _ReportOffTwoTone.default; + } +}); +Object.defineProperty(exports, "ReportOutlined", { + enumerable: true, + get: function () { + return _ReportOutlined.default; + } +}); +Object.defineProperty(exports, "ReportProblem", { + enumerable: true, + get: function () { + return _ReportProblem.default; + } +}); +Object.defineProperty(exports, "ReportProblemOutlined", { + enumerable: true, + get: function () { + return _ReportProblemOutlined.default; + } +}); +Object.defineProperty(exports, "ReportProblemRounded", { + enumerable: true, + get: function () { + return _ReportProblemRounded.default; + } +}); +Object.defineProperty(exports, "ReportProblemSharp", { + enumerable: true, + get: function () { + return _ReportProblemSharp.default; + } +}); +Object.defineProperty(exports, "ReportProblemTwoTone", { + enumerable: true, + get: function () { + return _ReportProblemTwoTone.default; + } +}); +Object.defineProperty(exports, "ReportRounded", { + enumerable: true, + get: function () { + return _ReportRounded.default; + } +}); +Object.defineProperty(exports, "ReportSharp", { + enumerable: true, + get: function () { + return _ReportSharp.default; + } +}); +Object.defineProperty(exports, "ReportTwoTone", { + enumerable: true, + get: function () { + return _ReportTwoTone.default; + } +}); +Object.defineProperty(exports, "RequestPage", { + enumerable: true, + get: function () { + return _RequestPage.default; + } +}); +Object.defineProperty(exports, "RequestPageOutlined", { + enumerable: true, + get: function () { + return _RequestPageOutlined.default; + } +}); +Object.defineProperty(exports, "RequestPageRounded", { + enumerable: true, + get: function () { + return _RequestPageRounded.default; + } +}); +Object.defineProperty(exports, "RequestPageSharp", { + enumerable: true, + get: function () { + return _RequestPageSharp.default; + } +}); +Object.defineProperty(exports, "RequestPageTwoTone", { + enumerable: true, + get: function () { + return _RequestPageTwoTone.default; + } +}); +Object.defineProperty(exports, "RequestQuote", { + enumerable: true, + get: function () { + return _RequestQuote.default; + } +}); +Object.defineProperty(exports, "RequestQuoteOutlined", { + enumerable: true, + get: function () { + return _RequestQuoteOutlined.default; + } +}); +Object.defineProperty(exports, "RequestQuoteRounded", { + enumerable: true, + get: function () { + return _RequestQuoteRounded.default; + } +}); +Object.defineProperty(exports, "RequestQuoteSharp", { + enumerable: true, + get: function () { + return _RequestQuoteSharp.default; + } +}); +Object.defineProperty(exports, "RequestQuoteTwoTone", { + enumerable: true, + get: function () { + return _RequestQuoteTwoTone.default; + } +}); +Object.defineProperty(exports, "ResetTv", { + enumerable: true, + get: function () { + return _ResetTv.default; + } +}); +Object.defineProperty(exports, "ResetTvOutlined", { + enumerable: true, + get: function () { + return _ResetTvOutlined.default; + } +}); +Object.defineProperty(exports, "ResetTvRounded", { + enumerable: true, + get: function () { + return _ResetTvRounded.default; + } +}); +Object.defineProperty(exports, "ResetTvSharp", { + enumerable: true, + get: function () { + return _ResetTvSharp.default; + } +}); +Object.defineProperty(exports, "ResetTvTwoTone", { + enumerable: true, + get: function () { + return _ResetTvTwoTone.default; + } +}); +Object.defineProperty(exports, "RestartAlt", { + enumerable: true, + get: function () { + return _RestartAlt.default; + } +}); +Object.defineProperty(exports, "RestartAltOutlined", { + enumerable: true, + get: function () { + return _RestartAltOutlined.default; + } +}); +Object.defineProperty(exports, "RestartAltRounded", { + enumerable: true, + get: function () { + return _RestartAltRounded.default; + } +}); +Object.defineProperty(exports, "RestartAltSharp", { + enumerable: true, + get: function () { + return _RestartAltSharp.default; + } +}); +Object.defineProperty(exports, "RestartAltTwoTone", { + enumerable: true, + get: function () { + return _RestartAltTwoTone.default; + } +}); +Object.defineProperty(exports, "Restaurant", { + enumerable: true, + get: function () { + return _Restaurant.default; + } +}); +Object.defineProperty(exports, "RestaurantMenu", { + enumerable: true, + get: function () { + return _RestaurantMenu.default; + } +}); +Object.defineProperty(exports, "RestaurantMenuOutlined", { + enumerable: true, + get: function () { + return _RestaurantMenuOutlined.default; + } +}); +Object.defineProperty(exports, "RestaurantMenuRounded", { + enumerable: true, + get: function () { + return _RestaurantMenuRounded.default; + } +}); +Object.defineProperty(exports, "RestaurantMenuSharp", { + enumerable: true, + get: function () { + return _RestaurantMenuSharp.default; + } +}); +Object.defineProperty(exports, "RestaurantMenuTwoTone", { + enumerable: true, + get: function () { + return _RestaurantMenuTwoTone.default; + } +}); +Object.defineProperty(exports, "RestaurantOutlined", { + enumerable: true, + get: function () { + return _RestaurantOutlined.default; + } +}); +Object.defineProperty(exports, "RestaurantRounded", { + enumerable: true, + get: function () { + return _RestaurantRounded.default; + } +}); +Object.defineProperty(exports, "RestaurantSharp", { + enumerable: true, + get: function () { + return _RestaurantSharp.default; + } +}); +Object.defineProperty(exports, "RestaurantTwoTone", { + enumerable: true, + get: function () { + return _RestaurantTwoTone.default; + } +}); +Object.defineProperty(exports, "Restore", { + enumerable: true, + get: function () { + return _Restore.default; + } +}); +Object.defineProperty(exports, "RestoreFromTrash", { + enumerable: true, + get: function () { + return _RestoreFromTrash.default; + } +}); +Object.defineProperty(exports, "RestoreFromTrashOutlined", { + enumerable: true, + get: function () { + return _RestoreFromTrashOutlined.default; + } +}); +Object.defineProperty(exports, "RestoreFromTrashRounded", { + enumerable: true, + get: function () { + return _RestoreFromTrashRounded.default; + } +}); +Object.defineProperty(exports, "RestoreFromTrashSharp", { + enumerable: true, + get: function () { + return _RestoreFromTrashSharp.default; + } +}); +Object.defineProperty(exports, "RestoreFromTrashTwoTone", { + enumerable: true, + get: function () { + return _RestoreFromTrashTwoTone.default; + } +}); +Object.defineProperty(exports, "RestoreOutlined", { + enumerable: true, + get: function () { + return _RestoreOutlined.default; + } +}); +Object.defineProperty(exports, "RestorePage", { + enumerable: true, + get: function () { + return _RestorePage.default; + } +}); +Object.defineProperty(exports, "RestorePageOutlined", { + enumerable: true, + get: function () { + return _RestorePageOutlined.default; + } +}); +Object.defineProperty(exports, "RestorePageRounded", { + enumerable: true, + get: function () { + return _RestorePageRounded.default; + } +}); +Object.defineProperty(exports, "RestorePageSharp", { + enumerable: true, + get: function () { + return _RestorePageSharp.default; + } +}); +Object.defineProperty(exports, "RestorePageTwoTone", { + enumerable: true, + get: function () { + return _RestorePageTwoTone.default; + } +}); +Object.defineProperty(exports, "RestoreRounded", { + enumerable: true, + get: function () { + return _RestoreRounded.default; + } +}); +Object.defineProperty(exports, "RestoreSharp", { + enumerable: true, + get: function () { + return _RestoreSharp.default; + } +}); +Object.defineProperty(exports, "RestoreTwoTone", { + enumerable: true, + get: function () { + return _RestoreTwoTone.default; + } +}); +Object.defineProperty(exports, "Reviews", { + enumerable: true, + get: function () { + return _Reviews.default; + } +}); +Object.defineProperty(exports, "ReviewsOutlined", { + enumerable: true, + get: function () { + return _ReviewsOutlined.default; + } +}); +Object.defineProperty(exports, "ReviewsRounded", { + enumerable: true, + get: function () { + return _ReviewsRounded.default; + } +}); +Object.defineProperty(exports, "ReviewsSharp", { + enumerable: true, + get: function () { + return _ReviewsSharp.default; + } +}); +Object.defineProperty(exports, "ReviewsTwoTone", { + enumerable: true, + get: function () { + return _ReviewsTwoTone.default; + } +}); +Object.defineProperty(exports, "RiceBowl", { + enumerable: true, + get: function () { + return _RiceBowl.default; + } +}); +Object.defineProperty(exports, "RiceBowlOutlined", { + enumerable: true, + get: function () { + return _RiceBowlOutlined.default; + } +}); +Object.defineProperty(exports, "RiceBowlRounded", { + enumerable: true, + get: function () { + return _RiceBowlRounded.default; + } +}); +Object.defineProperty(exports, "RiceBowlSharp", { + enumerable: true, + get: function () { + return _RiceBowlSharp.default; + } +}); +Object.defineProperty(exports, "RiceBowlTwoTone", { + enumerable: true, + get: function () { + return _RiceBowlTwoTone.default; + } +}); +Object.defineProperty(exports, "RingVolume", { + enumerable: true, + get: function () { + return _RingVolume.default; + } +}); +Object.defineProperty(exports, "RingVolumeOutlined", { + enumerable: true, + get: function () { + return _RingVolumeOutlined.default; + } +}); +Object.defineProperty(exports, "RingVolumeRounded", { + enumerable: true, + get: function () { + return _RingVolumeRounded.default; + } +}); +Object.defineProperty(exports, "RingVolumeSharp", { + enumerable: true, + get: function () { + return _RingVolumeSharp.default; + } +}); +Object.defineProperty(exports, "RingVolumeTwoTone", { + enumerable: true, + get: function () { + return _RingVolumeTwoTone.default; + } +}); +Object.defineProperty(exports, "Roofing", { + enumerable: true, + get: function () { + return _Roofing.default; + } +}); +Object.defineProperty(exports, "RoofingOutlined", { + enumerable: true, + get: function () { + return _RoofingOutlined.default; + } +}); +Object.defineProperty(exports, "RoofingRounded", { + enumerable: true, + get: function () { + return _RoofingRounded.default; + } +}); +Object.defineProperty(exports, "RoofingSharp", { + enumerable: true, + get: function () { + return _RoofingSharp.default; + } +}); +Object.defineProperty(exports, "RoofingTwoTone", { + enumerable: true, + get: function () { + return _RoofingTwoTone.default; + } +}); +Object.defineProperty(exports, "Room", { + enumerable: true, + get: function () { + return _Room.default; + } +}); +Object.defineProperty(exports, "RoomOutlined", { + enumerable: true, + get: function () { + return _RoomOutlined.default; + } +}); +Object.defineProperty(exports, "RoomPreferences", { + enumerable: true, + get: function () { + return _RoomPreferences.default; + } +}); +Object.defineProperty(exports, "RoomPreferencesOutlined", { + enumerable: true, + get: function () { + return _RoomPreferencesOutlined.default; + } +}); +Object.defineProperty(exports, "RoomPreferencesRounded", { + enumerable: true, + get: function () { + return _RoomPreferencesRounded.default; + } +}); +Object.defineProperty(exports, "RoomPreferencesSharp", { + enumerable: true, + get: function () { + return _RoomPreferencesSharp.default; + } +}); +Object.defineProperty(exports, "RoomPreferencesTwoTone", { + enumerable: true, + get: function () { + return _RoomPreferencesTwoTone.default; + } +}); +Object.defineProperty(exports, "RoomRounded", { + enumerable: true, + get: function () { + return _RoomRounded.default; + } +}); +Object.defineProperty(exports, "RoomService", { + enumerable: true, + get: function () { + return _RoomService.default; + } +}); +Object.defineProperty(exports, "RoomServiceOutlined", { + enumerable: true, + get: function () { + return _RoomServiceOutlined.default; + } +}); +Object.defineProperty(exports, "RoomServiceRounded", { + enumerable: true, + get: function () { + return _RoomServiceRounded.default; + } +}); +Object.defineProperty(exports, "RoomServiceSharp", { + enumerable: true, + get: function () { + return _RoomServiceSharp.default; + } +}); +Object.defineProperty(exports, "RoomServiceTwoTone", { + enumerable: true, + get: function () { + return _RoomServiceTwoTone.default; + } +}); +Object.defineProperty(exports, "RoomSharp", { + enumerable: true, + get: function () { + return _RoomSharp.default; + } +}); +Object.defineProperty(exports, "RoomTwoTone", { + enumerable: true, + get: function () { + return _RoomTwoTone.default; + } +}); +Object.defineProperty(exports, "Rotate90DegreesCcw", { + enumerable: true, + get: function () { + return _Rotate90DegreesCcw.default; + } +}); +Object.defineProperty(exports, "Rotate90DegreesCcwOutlined", { + enumerable: true, + get: function () { + return _Rotate90DegreesCcwOutlined.default; + } +}); +Object.defineProperty(exports, "Rotate90DegreesCcwRounded", { + enumerable: true, + get: function () { + return _Rotate90DegreesCcwRounded.default; + } +}); +Object.defineProperty(exports, "Rotate90DegreesCcwSharp", { + enumerable: true, + get: function () { + return _Rotate90DegreesCcwSharp.default; + } +}); +Object.defineProperty(exports, "Rotate90DegreesCcwTwoTone", { + enumerable: true, + get: function () { + return _Rotate90DegreesCcwTwoTone.default; + } +}); +Object.defineProperty(exports, "RotateLeft", { + enumerable: true, + get: function () { + return _RotateLeft.default; + } +}); +Object.defineProperty(exports, "RotateLeftOutlined", { + enumerable: true, + get: function () { + return _RotateLeftOutlined.default; + } +}); +Object.defineProperty(exports, "RotateLeftRounded", { + enumerable: true, + get: function () { + return _RotateLeftRounded.default; + } +}); +Object.defineProperty(exports, "RotateLeftSharp", { + enumerable: true, + get: function () { + return _RotateLeftSharp.default; + } +}); +Object.defineProperty(exports, "RotateLeftTwoTone", { + enumerable: true, + get: function () { + return _RotateLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "RotateRight", { + enumerable: true, + get: function () { + return _RotateRight.default; + } +}); +Object.defineProperty(exports, "RotateRightOutlined", { + enumerable: true, + get: function () { + return _RotateRightOutlined.default; + } +}); +Object.defineProperty(exports, "RotateRightRounded", { + enumerable: true, + get: function () { + return _RotateRightRounded.default; + } +}); +Object.defineProperty(exports, "RotateRightSharp", { + enumerable: true, + get: function () { + return _RotateRightSharp.default; + } +}); +Object.defineProperty(exports, "RotateRightTwoTone", { + enumerable: true, + get: function () { + return _RotateRightTwoTone.default; + } +}); +Object.defineProperty(exports, "RoundedCorner", { + enumerable: true, + get: function () { + return _RoundedCorner.default; + } +}); +Object.defineProperty(exports, "RoundedCornerOutlined", { + enumerable: true, + get: function () { + return _RoundedCornerOutlined.default; + } +}); +Object.defineProperty(exports, "RoundedCornerRounded", { + enumerable: true, + get: function () { + return _RoundedCornerRounded.default; + } +}); +Object.defineProperty(exports, "RoundedCornerSharp", { + enumerable: true, + get: function () { + return _RoundedCornerSharp.default; + } +}); +Object.defineProperty(exports, "RoundedCornerTwoTone", { + enumerable: true, + get: function () { + return _RoundedCornerTwoTone.default; + } +}); +Object.defineProperty(exports, "Router", { + enumerable: true, + get: function () { + return _Router.default; + } +}); +Object.defineProperty(exports, "RouterOutlined", { + enumerable: true, + get: function () { + return _RouterOutlined.default; + } +}); +Object.defineProperty(exports, "RouterRounded", { + enumerable: true, + get: function () { + return _RouterRounded.default; + } +}); +Object.defineProperty(exports, "RouterSharp", { + enumerable: true, + get: function () { + return _RouterSharp.default; + } +}); +Object.defineProperty(exports, "RouterTwoTone", { + enumerable: true, + get: function () { + return _RouterTwoTone.default; + } +}); +Object.defineProperty(exports, "Rowing", { + enumerable: true, + get: function () { + return _Rowing.default; + } +}); +Object.defineProperty(exports, "RowingOutlined", { + enumerable: true, + get: function () { + return _RowingOutlined.default; + } +}); +Object.defineProperty(exports, "RowingRounded", { + enumerable: true, + get: function () { + return _RowingRounded.default; + } +}); +Object.defineProperty(exports, "RowingSharp", { + enumerable: true, + get: function () { + return _RowingSharp.default; + } +}); +Object.defineProperty(exports, "RowingTwoTone", { + enumerable: true, + get: function () { + return _RowingTwoTone.default; + } +}); +Object.defineProperty(exports, "RssFeed", { + enumerable: true, + get: function () { + return _RssFeed.default; + } +}); +Object.defineProperty(exports, "RssFeedOutlined", { + enumerable: true, + get: function () { + return _RssFeedOutlined.default; + } +}); +Object.defineProperty(exports, "RssFeedRounded", { + enumerable: true, + get: function () { + return _RssFeedRounded.default; + } +}); +Object.defineProperty(exports, "RssFeedSharp", { + enumerable: true, + get: function () { + return _RssFeedSharp.default; + } +}); +Object.defineProperty(exports, "RssFeedTwoTone", { + enumerable: true, + get: function () { + return _RssFeedTwoTone.default; + } +}); +Object.defineProperty(exports, "Rsvp", { + enumerable: true, + get: function () { + return _Rsvp.default; + } +}); +Object.defineProperty(exports, "RsvpOutlined", { + enumerable: true, + get: function () { + return _RsvpOutlined.default; + } +}); +Object.defineProperty(exports, "RsvpRounded", { + enumerable: true, + get: function () { + return _RsvpRounded.default; + } +}); +Object.defineProperty(exports, "RsvpSharp", { + enumerable: true, + get: function () { + return _RsvpSharp.default; + } +}); +Object.defineProperty(exports, "RsvpTwoTone", { + enumerable: true, + get: function () { + return _RsvpTwoTone.default; + } +}); +Object.defineProperty(exports, "Rtt", { + enumerable: true, + get: function () { + return _Rtt.default; + } +}); +Object.defineProperty(exports, "RttOutlined", { + enumerable: true, + get: function () { + return _RttOutlined.default; + } +}); +Object.defineProperty(exports, "RttRounded", { + enumerable: true, + get: function () { + return _RttRounded.default; + } +}); +Object.defineProperty(exports, "RttSharp", { + enumerable: true, + get: function () { + return _RttSharp.default; + } +}); +Object.defineProperty(exports, "RttTwoTone", { + enumerable: true, + get: function () { + return _RttTwoTone.default; + } +}); +Object.defineProperty(exports, "Rule", { + enumerable: true, + get: function () { + return _Rule.default; + } +}); +Object.defineProperty(exports, "RuleFolder", { + enumerable: true, + get: function () { + return _RuleFolder.default; + } +}); +Object.defineProperty(exports, "RuleFolderOutlined", { + enumerable: true, + get: function () { + return _RuleFolderOutlined.default; + } +}); +Object.defineProperty(exports, "RuleFolderRounded", { + enumerable: true, + get: function () { + return _RuleFolderRounded.default; + } +}); +Object.defineProperty(exports, "RuleFolderSharp", { + enumerable: true, + get: function () { + return _RuleFolderSharp.default; + } +}); +Object.defineProperty(exports, "RuleFolderTwoTone", { + enumerable: true, + get: function () { + return _RuleFolderTwoTone.default; + } +}); +Object.defineProperty(exports, "RuleOutlined", { + enumerable: true, + get: function () { + return _RuleOutlined.default; + } +}); +Object.defineProperty(exports, "RuleRounded", { + enumerable: true, + get: function () { + return _RuleRounded.default; + } +}); +Object.defineProperty(exports, "RuleSharp", { + enumerable: true, + get: function () { + return _RuleSharp.default; + } +}); +Object.defineProperty(exports, "RuleTwoTone", { + enumerable: true, + get: function () { + return _RuleTwoTone.default; + } +}); +Object.defineProperty(exports, "RunCircle", { + enumerable: true, + get: function () { + return _RunCircle.default; + } +}); +Object.defineProperty(exports, "RunCircleOutlined", { + enumerable: true, + get: function () { + return _RunCircleOutlined.default; + } +}); +Object.defineProperty(exports, "RunCircleRounded", { + enumerable: true, + get: function () { + return _RunCircleRounded.default; + } +}); +Object.defineProperty(exports, "RunCircleSharp", { + enumerable: true, + get: function () { + return _RunCircleSharp.default; + } +}); +Object.defineProperty(exports, "RunCircleTwoTone", { + enumerable: true, + get: function () { + return _RunCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "RunningWithErrors", { + enumerable: true, + get: function () { + return _RunningWithErrors.default; + } +}); +Object.defineProperty(exports, "RunningWithErrorsOutlined", { + enumerable: true, + get: function () { + return _RunningWithErrorsOutlined.default; + } +}); +Object.defineProperty(exports, "RunningWithErrorsRounded", { + enumerable: true, + get: function () { + return _RunningWithErrorsRounded.default; + } +}); +Object.defineProperty(exports, "RunningWithErrorsSharp", { + enumerable: true, + get: function () { + return _RunningWithErrorsSharp.default; + } +}); +Object.defineProperty(exports, "RunningWithErrorsTwoTone", { + enumerable: true, + get: function () { + return _RunningWithErrorsTwoTone.default; + } +}); +Object.defineProperty(exports, "RvHookup", { + enumerable: true, + get: function () { + return _RvHookup.default; + } +}); +Object.defineProperty(exports, "RvHookupOutlined", { + enumerable: true, + get: function () { + return _RvHookupOutlined.default; + } +}); +Object.defineProperty(exports, "RvHookupRounded", { + enumerable: true, + get: function () { + return _RvHookupRounded.default; + } +}); +Object.defineProperty(exports, "RvHookupSharp", { + enumerable: true, + get: function () { + return _RvHookupSharp.default; + } +}); +Object.defineProperty(exports, "RvHookupTwoTone", { + enumerable: true, + get: function () { + return _RvHookupTwoTone.default; + } +}); +Object.defineProperty(exports, "SafetyDivider", { + enumerable: true, + get: function () { + return _SafetyDivider.default; + } +}); +Object.defineProperty(exports, "SafetyDividerOutlined", { + enumerable: true, + get: function () { + return _SafetyDividerOutlined.default; + } +}); +Object.defineProperty(exports, "SafetyDividerRounded", { + enumerable: true, + get: function () { + return _SafetyDividerRounded.default; + } +}); +Object.defineProperty(exports, "SafetyDividerSharp", { + enumerable: true, + get: function () { + return _SafetyDividerSharp.default; + } +}); +Object.defineProperty(exports, "SafetyDividerTwoTone", { + enumerable: true, + get: function () { + return _SafetyDividerTwoTone.default; + } +}); +Object.defineProperty(exports, "Sailing", { + enumerable: true, + get: function () { + return _Sailing.default; + } +}); +Object.defineProperty(exports, "SailingOutlined", { + enumerable: true, + get: function () { + return _SailingOutlined.default; + } +}); +Object.defineProperty(exports, "SailingRounded", { + enumerable: true, + get: function () { + return _SailingRounded.default; + } +}); +Object.defineProperty(exports, "SailingSharp", { + enumerable: true, + get: function () { + return _SailingSharp.default; + } +}); +Object.defineProperty(exports, "SailingTwoTone", { + enumerable: true, + get: function () { + return _SailingTwoTone.default; + } +}); +Object.defineProperty(exports, "Sanitizer", { + enumerable: true, + get: function () { + return _Sanitizer.default; + } +}); +Object.defineProperty(exports, "SanitizerOutlined", { + enumerable: true, + get: function () { + return _SanitizerOutlined.default; + } +}); +Object.defineProperty(exports, "SanitizerRounded", { + enumerable: true, + get: function () { + return _SanitizerRounded.default; + } +}); +Object.defineProperty(exports, "SanitizerSharp", { + enumerable: true, + get: function () { + return _SanitizerSharp.default; + } +}); +Object.defineProperty(exports, "SanitizerTwoTone", { + enumerable: true, + get: function () { + return _SanitizerTwoTone.default; + } +}); +Object.defineProperty(exports, "Satellite", { + enumerable: true, + get: function () { + return _Satellite.default; + } +}); +Object.defineProperty(exports, "SatelliteOutlined", { + enumerable: true, + get: function () { + return _SatelliteOutlined.default; + } +}); +Object.defineProperty(exports, "SatelliteRounded", { + enumerable: true, + get: function () { + return _SatelliteRounded.default; + } +}); +Object.defineProperty(exports, "SatelliteSharp", { + enumerable: true, + get: function () { + return _SatelliteSharp.default; + } +}); +Object.defineProperty(exports, "SatelliteTwoTone", { + enumerable: true, + get: function () { + return _SatelliteTwoTone.default; + } +}); +Object.defineProperty(exports, "Save", { + enumerable: true, + get: function () { + return _Save.default; + } +}); +Object.defineProperty(exports, "SaveAlt", { + enumerable: true, + get: function () { + return _SaveAlt.default; + } +}); +Object.defineProperty(exports, "SaveAltOutlined", { + enumerable: true, + get: function () { + return _SaveAltOutlined.default; + } +}); +Object.defineProperty(exports, "SaveAltRounded", { + enumerable: true, + get: function () { + return _SaveAltRounded.default; + } +}); +Object.defineProperty(exports, "SaveAltSharp", { + enumerable: true, + get: function () { + return _SaveAltSharp.default; + } +}); +Object.defineProperty(exports, "SaveAltTwoTone", { + enumerable: true, + get: function () { + return _SaveAltTwoTone.default; + } +}); +Object.defineProperty(exports, "SaveOutlined", { + enumerable: true, + get: function () { + return _SaveOutlined.default; + } +}); +Object.defineProperty(exports, "SaveRounded", { + enumerable: true, + get: function () { + return _SaveRounded.default; + } +}); +Object.defineProperty(exports, "SaveSharp", { + enumerable: true, + get: function () { + return _SaveSharp.default; + } +}); +Object.defineProperty(exports, "SaveTwoTone", { + enumerable: true, + get: function () { + return _SaveTwoTone.default; + } +}); +Object.defineProperty(exports, "SavedSearch", { + enumerable: true, + get: function () { + return _SavedSearch.default; + } +}); +Object.defineProperty(exports, "SavedSearchOutlined", { + enumerable: true, + get: function () { + return _SavedSearchOutlined.default; + } +}); +Object.defineProperty(exports, "SavedSearchRounded", { + enumerable: true, + get: function () { + return _SavedSearchRounded.default; + } +}); +Object.defineProperty(exports, "SavedSearchSharp", { + enumerable: true, + get: function () { + return _SavedSearchSharp.default; + } +}); +Object.defineProperty(exports, "SavedSearchTwoTone", { + enumerable: true, + get: function () { + return _SavedSearchTwoTone.default; + } +}); +Object.defineProperty(exports, "Savings", { + enumerable: true, + get: function () { + return _Savings.default; + } +}); +Object.defineProperty(exports, "SavingsOutlined", { + enumerable: true, + get: function () { + return _SavingsOutlined.default; + } +}); +Object.defineProperty(exports, "SavingsRounded", { + enumerable: true, + get: function () { + return _SavingsRounded.default; + } +}); +Object.defineProperty(exports, "SavingsSharp", { + enumerable: true, + get: function () { + return _SavingsSharp.default; + } +}); +Object.defineProperty(exports, "SavingsTwoTone", { + enumerable: true, + get: function () { + return _SavingsTwoTone.default; + } +}); +Object.defineProperty(exports, "Scanner", { + enumerable: true, + get: function () { + return _Scanner.default; + } +}); +Object.defineProperty(exports, "ScannerOutlined", { + enumerable: true, + get: function () { + return _ScannerOutlined.default; + } +}); +Object.defineProperty(exports, "ScannerRounded", { + enumerable: true, + get: function () { + return _ScannerRounded.default; + } +}); +Object.defineProperty(exports, "ScannerSharp", { + enumerable: true, + get: function () { + return _ScannerSharp.default; + } +}); +Object.defineProperty(exports, "ScannerTwoTone", { + enumerable: true, + get: function () { + return _ScannerTwoTone.default; + } +}); +Object.defineProperty(exports, "ScatterPlot", { + enumerable: true, + get: function () { + return _ScatterPlot.default; + } +}); +Object.defineProperty(exports, "ScatterPlotOutlined", { + enumerable: true, + get: function () { + return _ScatterPlotOutlined.default; + } +}); +Object.defineProperty(exports, "ScatterPlotRounded", { + enumerable: true, + get: function () { + return _ScatterPlotRounded.default; + } +}); +Object.defineProperty(exports, "ScatterPlotSharp", { + enumerable: true, + get: function () { + return _ScatterPlotSharp.default; + } +}); +Object.defineProperty(exports, "ScatterPlotTwoTone", { + enumerable: true, + get: function () { + return _ScatterPlotTwoTone.default; + } +}); +Object.defineProperty(exports, "Schedule", { + enumerable: true, + get: function () { + return _Schedule.default; + } +}); +Object.defineProperty(exports, "ScheduleOutlined", { + enumerable: true, + get: function () { + return _ScheduleOutlined.default; + } +}); +Object.defineProperty(exports, "ScheduleRounded", { + enumerable: true, + get: function () { + return _ScheduleRounded.default; + } +}); +Object.defineProperty(exports, "ScheduleSend", { + enumerable: true, + get: function () { + return _ScheduleSend.default; + } +}); +Object.defineProperty(exports, "ScheduleSendOutlined", { + enumerable: true, + get: function () { + return _ScheduleSendOutlined.default; + } +}); +Object.defineProperty(exports, "ScheduleSendRounded", { + enumerable: true, + get: function () { + return _ScheduleSendRounded.default; + } +}); +Object.defineProperty(exports, "ScheduleSendSharp", { + enumerable: true, + get: function () { + return _ScheduleSendSharp.default; + } +}); +Object.defineProperty(exports, "ScheduleSendTwoTone", { + enumerable: true, + get: function () { + return _ScheduleSendTwoTone.default; + } +}); +Object.defineProperty(exports, "ScheduleSharp", { + enumerable: true, + get: function () { + return _ScheduleSharp.default; + } +}); +Object.defineProperty(exports, "ScheduleTwoTone", { + enumerable: true, + get: function () { + return _ScheduleTwoTone.default; + } +}); +Object.defineProperty(exports, "Schema", { + enumerable: true, + get: function () { + return _Schema.default; + } +}); +Object.defineProperty(exports, "SchemaOutlined", { + enumerable: true, + get: function () { + return _SchemaOutlined.default; + } +}); +Object.defineProperty(exports, "SchemaRounded", { + enumerable: true, + get: function () { + return _SchemaRounded.default; + } +}); +Object.defineProperty(exports, "SchemaSharp", { + enumerable: true, + get: function () { + return _SchemaSharp.default; + } +}); +Object.defineProperty(exports, "SchemaTwoTone", { + enumerable: true, + get: function () { + return _SchemaTwoTone.default; + } +}); +Object.defineProperty(exports, "School", { + enumerable: true, + get: function () { + return _School.default; + } +}); +Object.defineProperty(exports, "SchoolOutlined", { + enumerable: true, + get: function () { + return _SchoolOutlined.default; + } +}); +Object.defineProperty(exports, "SchoolRounded", { + enumerable: true, + get: function () { + return _SchoolRounded.default; + } +}); +Object.defineProperty(exports, "SchoolSharp", { + enumerable: true, + get: function () { + return _SchoolSharp.default; + } +}); +Object.defineProperty(exports, "SchoolTwoTone", { + enumerable: true, + get: function () { + return _SchoolTwoTone.default; + } +}); +Object.defineProperty(exports, "Science", { + enumerable: true, + get: function () { + return _Science.default; + } +}); +Object.defineProperty(exports, "ScienceOutlined", { + enumerable: true, + get: function () { + return _ScienceOutlined.default; + } +}); +Object.defineProperty(exports, "ScienceRounded", { + enumerable: true, + get: function () { + return _ScienceRounded.default; + } +}); +Object.defineProperty(exports, "ScienceSharp", { + enumerable: true, + get: function () { + return _ScienceSharp.default; + } +}); +Object.defineProperty(exports, "ScienceTwoTone", { + enumerable: true, + get: function () { + return _ScienceTwoTone.default; + } +}); +Object.defineProperty(exports, "Score", { + enumerable: true, + get: function () { + return _Score.default; + } +}); +Object.defineProperty(exports, "ScoreOutlined", { + enumerable: true, + get: function () { + return _ScoreOutlined.default; + } +}); +Object.defineProperty(exports, "ScoreRounded", { + enumerable: true, + get: function () { + return _ScoreRounded.default; + } +}); +Object.defineProperty(exports, "ScoreSharp", { + enumerable: true, + get: function () { + return _ScoreSharp.default; + } +}); +Object.defineProperty(exports, "ScoreTwoTone", { + enumerable: true, + get: function () { + return _ScoreTwoTone.default; + } +}); +Object.defineProperty(exports, "ScreenLockLandscape", { + enumerable: true, + get: function () { + return _ScreenLockLandscape.default; + } +}); +Object.defineProperty(exports, "ScreenLockLandscapeOutlined", { + enumerable: true, + get: function () { + return _ScreenLockLandscapeOutlined.default; + } +}); +Object.defineProperty(exports, "ScreenLockLandscapeRounded", { + enumerable: true, + get: function () { + return _ScreenLockLandscapeRounded.default; + } +}); +Object.defineProperty(exports, "ScreenLockLandscapeSharp", { + enumerable: true, + get: function () { + return _ScreenLockLandscapeSharp.default; + } +}); +Object.defineProperty(exports, "ScreenLockLandscapeTwoTone", { + enumerable: true, + get: function () { + return _ScreenLockLandscapeTwoTone.default; + } +}); +Object.defineProperty(exports, "ScreenLockPortrait", { + enumerable: true, + get: function () { + return _ScreenLockPortrait.default; + } +}); +Object.defineProperty(exports, "ScreenLockPortraitOutlined", { + enumerable: true, + get: function () { + return _ScreenLockPortraitOutlined.default; + } +}); +Object.defineProperty(exports, "ScreenLockPortraitRounded", { + enumerable: true, + get: function () { + return _ScreenLockPortraitRounded.default; + } +}); +Object.defineProperty(exports, "ScreenLockPortraitSharp", { + enumerable: true, + get: function () { + return _ScreenLockPortraitSharp.default; + } +}); +Object.defineProperty(exports, "ScreenLockPortraitTwoTone", { + enumerable: true, + get: function () { + return _ScreenLockPortraitTwoTone.default; + } +}); +Object.defineProperty(exports, "ScreenLockRotation", { + enumerable: true, + get: function () { + return _ScreenLockRotation.default; + } +}); +Object.defineProperty(exports, "ScreenLockRotationOutlined", { + enumerable: true, + get: function () { + return _ScreenLockRotationOutlined.default; + } +}); +Object.defineProperty(exports, "ScreenLockRotationRounded", { + enumerable: true, + get: function () { + return _ScreenLockRotationRounded.default; + } +}); +Object.defineProperty(exports, "ScreenLockRotationSharp", { + enumerable: true, + get: function () { + return _ScreenLockRotationSharp.default; + } +}); +Object.defineProperty(exports, "ScreenLockRotationTwoTone", { + enumerable: true, + get: function () { + return _ScreenLockRotationTwoTone.default; + } +}); +Object.defineProperty(exports, "ScreenRotation", { + enumerable: true, + get: function () { + return _ScreenRotation.default; + } +}); +Object.defineProperty(exports, "ScreenRotationOutlined", { + enumerable: true, + get: function () { + return _ScreenRotationOutlined.default; + } +}); +Object.defineProperty(exports, "ScreenRotationRounded", { + enumerable: true, + get: function () { + return _ScreenRotationRounded.default; + } +}); +Object.defineProperty(exports, "ScreenRotationSharp", { + enumerable: true, + get: function () { + return _ScreenRotationSharp.default; + } +}); +Object.defineProperty(exports, "ScreenRotationTwoTone", { + enumerable: true, + get: function () { + return _ScreenRotationTwoTone.default; + } +}); +Object.defineProperty(exports, "ScreenSearchDesktop", { + enumerable: true, + get: function () { + return _ScreenSearchDesktop.default; + } +}); +Object.defineProperty(exports, "ScreenSearchDesktopOutlined", { + enumerable: true, + get: function () { + return _ScreenSearchDesktopOutlined.default; + } +}); +Object.defineProperty(exports, "ScreenSearchDesktopRounded", { + enumerable: true, + get: function () { + return _ScreenSearchDesktopRounded.default; + } +}); +Object.defineProperty(exports, "ScreenSearchDesktopSharp", { + enumerable: true, + get: function () { + return _ScreenSearchDesktopSharp.default; + } +}); +Object.defineProperty(exports, "ScreenSearchDesktopTwoTone", { + enumerable: true, + get: function () { + return _ScreenSearchDesktopTwoTone.default; + } +}); +Object.defineProperty(exports, "ScreenShare", { + enumerable: true, + get: function () { + return _ScreenShare.default; + } +}); +Object.defineProperty(exports, "ScreenShareOutlined", { + enumerable: true, + get: function () { + return _ScreenShareOutlined.default; + } +}); +Object.defineProperty(exports, "ScreenShareRounded", { + enumerable: true, + get: function () { + return _ScreenShareRounded.default; + } +}); +Object.defineProperty(exports, "ScreenShareSharp", { + enumerable: true, + get: function () { + return _ScreenShareSharp.default; + } +}); +Object.defineProperty(exports, "ScreenShareTwoTone", { + enumerable: true, + get: function () { + return _ScreenShareTwoTone.default; + } +}); +Object.defineProperty(exports, "Screenshot", { + enumerable: true, + get: function () { + return _Screenshot.default; + } +}); +Object.defineProperty(exports, "ScreenshotOutlined", { + enumerable: true, + get: function () { + return _ScreenshotOutlined.default; + } +}); +Object.defineProperty(exports, "ScreenshotRounded", { + enumerable: true, + get: function () { + return _ScreenshotRounded.default; + } +}); +Object.defineProperty(exports, "ScreenshotSharp", { + enumerable: true, + get: function () { + return _ScreenshotSharp.default; + } +}); +Object.defineProperty(exports, "ScreenshotTwoTone", { + enumerable: true, + get: function () { + return _ScreenshotTwoTone.default; + } +}); +Object.defineProperty(exports, "Sd", { + enumerable: true, + get: function () { + return _Sd.default; + } +}); +Object.defineProperty(exports, "SdCard", { + enumerable: true, + get: function () { + return _SdCard.default; + } +}); +Object.defineProperty(exports, "SdCardAlert", { + enumerable: true, + get: function () { + return _SdCardAlert.default; + } +}); +Object.defineProperty(exports, "SdCardAlertOutlined", { + enumerable: true, + get: function () { + return _SdCardAlertOutlined.default; + } +}); +Object.defineProperty(exports, "SdCardAlertRounded", { + enumerable: true, + get: function () { + return _SdCardAlertRounded.default; + } +}); +Object.defineProperty(exports, "SdCardAlertSharp", { + enumerable: true, + get: function () { + return _SdCardAlertSharp.default; + } +}); +Object.defineProperty(exports, "SdCardAlertTwoTone", { + enumerable: true, + get: function () { + return _SdCardAlertTwoTone.default; + } +}); +Object.defineProperty(exports, "SdCardOutlined", { + enumerable: true, + get: function () { + return _SdCardOutlined.default; + } +}); +Object.defineProperty(exports, "SdCardRounded", { + enumerable: true, + get: function () { + return _SdCardRounded.default; + } +}); +Object.defineProperty(exports, "SdCardSharp", { + enumerable: true, + get: function () { + return _SdCardSharp.default; + } +}); +Object.defineProperty(exports, "SdCardTwoTone", { + enumerable: true, + get: function () { + return _SdCardTwoTone.default; + } +}); +Object.defineProperty(exports, "SdOutlined", { + enumerable: true, + get: function () { + return _SdOutlined.default; + } +}); +Object.defineProperty(exports, "SdRounded", { + enumerable: true, + get: function () { + return _SdRounded.default; + } +}); +Object.defineProperty(exports, "SdSharp", { + enumerable: true, + get: function () { + return _SdSharp.default; + } +}); +Object.defineProperty(exports, "SdStorage", { + enumerable: true, + get: function () { + return _SdStorage.default; + } +}); +Object.defineProperty(exports, "SdStorageOutlined", { + enumerable: true, + get: function () { + return _SdStorageOutlined.default; + } +}); +Object.defineProperty(exports, "SdStorageRounded", { + enumerable: true, + get: function () { + return _SdStorageRounded.default; + } +}); +Object.defineProperty(exports, "SdStorageSharp", { + enumerable: true, + get: function () { + return _SdStorageSharp.default; + } +}); +Object.defineProperty(exports, "SdStorageTwoTone", { + enumerable: true, + get: function () { + return _SdStorageTwoTone.default; + } +}); +Object.defineProperty(exports, "SdTwoTone", { + enumerable: true, + get: function () { + return _SdTwoTone.default; + } +}); +Object.defineProperty(exports, "Search", { + enumerable: true, + get: function () { + return _Search.default; + } +}); +Object.defineProperty(exports, "SearchOff", { + enumerable: true, + get: function () { + return _SearchOff.default; + } +}); +Object.defineProperty(exports, "SearchOffOutlined", { + enumerable: true, + get: function () { + return _SearchOffOutlined.default; + } +}); +Object.defineProperty(exports, "SearchOffRounded", { + enumerable: true, + get: function () { + return _SearchOffRounded.default; + } +}); +Object.defineProperty(exports, "SearchOffSharp", { + enumerable: true, + get: function () { + return _SearchOffSharp.default; + } +}); +Object.defineProperty(exports, "SearchOffTwoTone", { + enumerable: true, + get: function () { + return _SearchOffTwoTone.default; + } +}); +Object.defineProperty(exports, "SearchOutlined", { + enumerable: true, + get: function () { + return _SearchOutlined.default; + } +}); +Object.defineProperty(exports, "SearchRounded", { + enumerable: true, + get: function () { + return _SearchRounded.default; + } +}); +Object.defineProperty(exports, "SearchSharp", { + enumerable: true, + get: function () { + return _SearchSharp.default; + } +}); +Object.defineProperty(exports, "SearchTwoTone", { + enumerable: true, + get: function () { + return _SearchTwoTone.default; + } +}); +Object.defineProperty(exports, "Security", { + enumerable: true, + get: function () { + return _Security.default; + } +}); +Object.defineProperty(exports, "SecurityOutlined", { + enumerable: true, + get: function () { + return _SecurityOutlined.default; + } +}); +Object.defineProperty(exports, "SecurityRounded", { + enumerable: true, + get: function () { + return _SecurityRounded.default; + } +}); +Object.defineProperty(exports, "SecuritySharp", { + enumerable: true, + get: function () { + return _SecuritySharp.default; + } +}); +Object.defineProperty(exports, "SecurityTwoTone", { + enumerable: true, + get: function () { + return _SecurityTwoTone.default; + } +}); +Object.defineProperty(exports, "SecurityUpdate", { + enumerable: true, + get: function () { + return _SecurityUpdate.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateGood", { + enumerable: true, + get: function () { + return _SecurityUpdateGood.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateGoodOutlined", { + enumerable: true, + get: function () { + return _SecurityUpdateGoodOutlined.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateGoodRounded", { + enumerable: true, + get: function () { + return _SecurityUpdateGoodRounded.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateGoodSharp", { + enumerable: true, + get: function () { + return _SecurityUpdateGoodSharp.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateGoodTwoTone", { + enumerable: true, + get: function () { + return _SecurityUpdateGoodTwoTone.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateOutlined", { + enumerable: true, + get: function () { + return _SecurityUpdateOutlined.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateRounded", { + enumerable: true, + get: function () { + return _SecurityUpdateRounded.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateSharp", { + enumerable: true, + get: function () { + return _SecurityUpdateSharp.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateTwoTone", { + enumerable: true, + get: function () { + return _SecurityUpdateTwoTone.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateWarning", { + enumerable: true, + get: function () { + return _SecurityUpdateWarning.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateWarningOutlined", { + enumerable: true, + get: function () { + return _SecurityUpdateWarningOutlined.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateWarningRounded", { + enumerable: true, + get: function () { + return _SecurityUpdateWarningRounded.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateWarningSharp", { + enumerable: true, + get: function () { + return _SecurityUpdateWarningSharp.default; + } +}); +Object.defineProperty(exports, "SecurityUpdateWarningTwoTone", { + enumerable: true, + get: function () { + return _SecurityUpdateWarningTwoTone.default; + } +}); +Object.defineProperty(exports, "Segment", { + enumerable: true, + get: function () { + return _Segment.default; + } +}); +Object.defineProperty(exports, "SegmentOutlined", { + enumerable: true, + get: function () { + return _SegmentOutlined.default; + } +}); +Object.defineProperty(exports, "SegmentRounded", { + enumerable: true, + get: function () { + return _SegmentRounded.default; + } +}); +Object.defineProperty(exports, "SegmentSharp", { + enumerable: true, + get: function () { + return _SegmentSharp.default; + } +}); +Object.defineProperty(exports, "SegmentTwoTone", { + enumerable: true, + get: function () { + return _SegmentTwoTone.default; + } +}); +Object.defineProperty(exports, "SelectAll", { + enumerable: true, + get: function () { + return _SelectAll.default; + } +}); +Object.defineProperty(exports, "SelectAllOutlined", { + enumerable: true, + get: function () { + return _SelectAllOutlined.default; + } +}); +Object.defineProperty(exports, "SelectAllRounded", { + enumerable: true, + get: function () { + return _SelectAllRounded.default; + } +}); +Object.defineProperty(exports, "SelectAllSharp", { + enumerable: true, + get: function () { + return _SelectAllSharp.default; + } +}); +Object.defineProperty(exports, "SelectAllTwoTone", { + enumerable: true, + get: function () { + return _SelectAllTwoTone.default; + } +}); +Object.defineProperty(exports, "SelfImprovement", { + enumerable: true, + get: function () { + return _SelfImprovement.default; + } +}); +Object.defineProperty(exports, "SelfImprovementOutlined", { + enumerable: true, + get: function () { + return _SelfImprovementOutlined.default; + } +}); +Object.defineProperty(exports, "SelfImprovementRounded", { + enumerable: true, + get: function () { + return _SelfImprovementRounded.default; + } +}); +Object.defineProperty(exports, "SelfImprovementSharp", { + enumerable: true, + get: function () { + return _SelfImprovementSharp.default; + } +}); +Object.defineProperty(exports, "SelfImprovementTwoTone", { + enumerable: true, + get: function () { + return _SelfImprovementTwoTone.default; + } +}); +Object.defineProperty(exports, "Sell", { + enumerable: true, + get: function () { + return _Sell.default; + } +}); +Object.defineProperty(exports, "SellOutlined", { + enumerable: true, + get: function () { + return _SellOutlined.default; + } +}); +Object.defineProperty(exports, "SellRounded", { + enumerable: true, + get: function () { + return _SellRounded.default; + } +}); +Object.defineProperty(exports, "SellSharp", { + enumerable: true, + get: function () { + return _SellSharp.default; + } +}); +Object.defineProperty(exports, "SellTwoTone", { + enumerable: true, + get: function () { + return _SellTwoTone.default; + } +}); +Object.defineProperty(exports, "Send", { + enumerable: true, + get: function () { + return _Send.default; + } +}); +Object.defineProperty(exports, "SendAndArchive", { + enumerable: true, + get: function () { + return _SendAndArchive.default; + } +}); +Object.defineProperty(exports, "SendAndArchiveOutlined", { + enumerable: true, + get: function () { + return _SendAndArchiveOutlined.default; + } +}); +Object.defineProperty(exports, "SendAndArchiveRounded", { + enumerable: true, + get: function () { + return _SendAndArchiveRounded.default; + } +}); +Object.defineProperty(exports, "SendAndArchiveSharp", { + enumerable: true, + get: function () { + return _SendAndArchiveSharp.default; + } +}); +Object.defineProperty(exports, "SendAndArchiveTwoTone", { + enumerable: true, + get: function () { + return _SendAndArchiveTwoTone.default; + } +}); +Object.defineProperty(exports, "SendOutlined", { + enumerable: true, + get: function () { + return _SendOutlined.default; + } +}); +Object.defineProperty(exports, "SendRounded", { + enumerable: true, + get: function () { + return _SendRounded.default; + } +}); +Object.defineProperty(exports, "SendSharp", { + enumerable: true, + get: function () { + return _SendSharp.default; + } +}); +Object.defineProperty(exports, "SendToMobile", { + enumerable: true, + get: function () { + return _SendToMobile.default; + } +}); +Object.defineProperty(exports, "SendToMobileOutlined", { + enumerable: true, + get: function () { + return _SendToMobileOutlined.default; + } +}); +Object.defineProperty(exports, "SendToMobileRounded", { + enumerable: true, + get: function () { + return _SendToMobileRounded.default; + } +}); +Object.defineProperty(exports, "SendToMobileSharp", { + enumerable: true, + get: function () { + return _SendToMobileSharp.default; + } +}); +Object.defineProperty(exports, "SendToMobileTwoTone", { + enumerable: true, + get: function () { + return _SendToMobileTwoTone.default; + } +}); +Object.defineProperty(exports, "SendTwoTone", { + enumerable: true, + get: function () { + return _SendTwoTone.default; + } +}); +Object.defineProperty(exports, "SensorDoor", { + enumerable: true, + get: function () { + return _SensorDoor.default; + } +}); +Object.defineProperty(exports, "SensorDoorOutlined", { + enumerable: true, + get: function () { + return _SensorDoorOutlined.default; + } +}); +Object.defineProperty(exports, "SensorDoorRounded", { + enumerable: true, + get: function () { + return _SensorDoorRounded.default; + } +}); +Object.defineProperty(exports, "SensorDoorSharp", { + enumerable: true, + get: function () { + return _SensorDoorSharp.default; + } +}); +Object.defineProperty(exports, "SensorDoorTwoTone", { + enumerable: true, + get: function () { + return _SensorDoorTwoTone.default; + } +}); +Object.defineProperty(exports, "SensorWindow", { + enumerable: true, + get: function () { + return _SensorWindow.default; + } +}); +Object.defineProperty(exports, "SensorWindowOutlined", { + enumerable: true, + get: function () { + return _SensorWindowOutlined.default; + } +}); +Object.defineProperty(exports, "SensorWindowRounded", { + enumerable: true, + get: function () { + return _SensorWindowRounded.default; + } +}); +Object.defineProperty(exports, "SensorWindowSharp", { + enumerable: true, + get: function () { + return _SensorWindowSharp.default; + } +}); +Object.defineProperty(exports, "SensorWindowTwoTone", { + enumerable: true, + get: function () { + return _SensorWindowTwoTone.default; + } +}); +Object.defineProperty(exports, "Sensors", { + enumerable: true, + get: function () { + return _Sensors.default; + } +}); +Object.defineProperty(exports, "SensorsOff", { + enumerable: true, + get: function () { + return _SensorsOff.default; + } +}); +Object.defineProperty(exports, "SensorsOffOutlined", { + enumerable: true, + get: function () { + return _SensorsOffOutlined.default; + } +}); +Object.defineProperty(exports, "SensorsOffRounded", { + enumerable: true, + get: function () { + return _SensorsOffRounded.default; + } +}); +Object.defineProperty(exports, "SensorsOffSharp", { + enumerable: true, + get: function () { + return _SensorsOffSharp.default; + } +}); +Object.defineProperty(exports, "SensorsOffTwoTone", { + enumerable: true, + get: function () { + return _SensorsOffTwoTone.default; + } +}); +Object.defineProperty(exports, "SensorsOutlined", { + enumerable: true, + get: function () { + return _SensorsOutlined.default; + } +}); +Object.defineProperty(exports, "SensorsRounded", { + enumerable: true, + get: function () { + return _SensorsRounded.default; + } +}); +Object.defineProperty(exports, "SensorsSharp", { + enumerable: true, + get: function () { + return _SensorsSharp.default; + } +}); +Object.defineProperty(exports, "SensorsTwoTone", { + enumerable: true, + get: function () { + return _SensorsTwoTone.default; + } +}); +Object.defineProperty(exports, "SentimentDissatisfied", { + enumerable: true, + get: function () { + return _SentimentDissatisfied.default; + } +}); +Object.defineProperty(exports, "SentimentDissatisfiedOutlined", { + enumerable: true, + get: function () { + return _SentimentDissatisfiedOutlined.default; + } +}); +Object.defineProperty(exports, "SentimentDissatisfiedRounded", { + enumerable: true, + get: function () { + return _SentimentDissatisfiedRounded.default; + } +}); +Object.defineProperty(exports, "SentimentDissatisfiedSharp", { + enumerable: true, + get: function () { + return _SentimentDissatisfiedSharp.default; + } +}); +Object.defineProperty(exports, "SentimentDissatisfiedTwoTone", { + enumerable: true, + get: function () { + return _SentimentDissatisfiedTwoTone.default; + } +}); +Object.defineProperty(exports, "SentimentNeutral", { + enumerable: true, + get: function () { + return _SentimentNeutral.default; + } +}); +Object.defineProperty(exports, "SentimentNeutralOutlined", { + enumerable: true, + get: function () { + return _SentimentNeutralOutlined.default; + } +}); +Object.defineProperty(exports, "SentimentNeutralRounded", { + enumerable: true, + get: function () { + return _SentimentNeutralRounded.default; + } +}); +Object.defineProperty(exports, "SentimentNeutralSharp", { + enumerable: true, + get: function () { + return _SentimentNeutralSharp.default; + } +}); +Object.defineProperty(exports, "SentimentNeutralTwoTone", { + enumerable: true, + get: function () { + return _SentimentNeutralTwoTone.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfied", { + enumerable: true, + get: function () { + return _SentimentSatisfied.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedAlt", { + enumerable: true, + get: function () { + return _SentimentSatisfiedAlt.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedAltOutlined", { + enumerable: true, + get: function () { + return _SentimentSatisfiedAltOutlined.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedAltRounded", { + enumerable: true, + get: function () { + return _SentimentSatisfiedAltRounded.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedAltSharp", { + enumerable: true, + get: function () { + return _SentimentSatisfiedAltSharp.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedAltTwoTone", { + enumerable: true, + get: function () { + return _SentimentSatisfiedAltTwoTone.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedOutlined", { + enumerable: true, + get: function () { + return _SentimentSatisfiedOutlined.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedRounded", { + enumerable: true, + get: function () { + return _SentimentSatisfiedRounded.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedSharp", { + enumerable: true, + get: function () { + return _SentimentSatisfiedSharp.default; + } +}); +Object.defineProperty(exports, "SentimentSatisfiedTwoTone", { + enumerable: true, + get: function () { + return _SentimentSatisfiedTwoTone.default; + } +}); +Object.defineProperty(exports, "SentimentVeryDissatisfied", { + enumerable: true, + get: function () { + return _SentimentVeryDissatisfied.default; + } +}); +Object.defineProperty(exports, "SentimentVeryDissatisfiedOutlined", { + enumerable: true, + get: function () { + return _SentimentVeryDissatisfiedOutlined.default; + } +}); +Object.defineProperty(exports, "SentimentVeryDissatisfiedRounded", { + enumerable: true, + get: function () { + return _SentimentVeryDissatisfiedRounded.default; + } +}); +Object.defineProperty(exports, "SentimentVeryDissatisfiedSharp", { + enumerable: true, + get: function () { + return _SentimentVeryDissatisfiedSharp.default; + } +}); +Object.defineProperty(exports, "SentimentVeryDissatisfiedTwoTone", { + enumerable: true, + get: function () { + return _SentimentVeryDissatisfiedTwoTone.default; + } +}); +Object.defineProperty(exports, "SentimentVerySatisfied", { + enumerable: true, + get: function () { + return _SentimentVerySatisfied.default; + } +}); +Object.defineProperty(exports, "SentimentVerySatisfiedOutlined", { + enumerable: true, + get: function () { + return _SentimentVerySatisfiedOutlined.default; + } +}); +Object.defineProperty(exports, "SentimentVerySatisfiedRounded", { + enumerable: true, + get: function () { + return _SentimentVerySatisfiedRounded.default; + } +}); +Object.defineProperty(exports, "SentimentVerySatisfiedSharp", { + enumerable: true, + get: function () { + return _SentimentVerySatisfiedSharp.default; + } +}); +Object.defineProperty(exports, "SentimentVerySatisfiedTwoTone", { + enumerable: true, + get: function () { + return _SentimentVerySatisfiedTwoTone.default; + } +}); +Object.defineProperty(exports, "SetMeal", { + enumerable: true, + get: function () { + return _SetMeal.default; + } +}); +Object.defineProperty(exports, "SetMealOutlined", { + enumerable: true, + get: function () { + return _SetMealOutlined.default; + } +}); +Object.defineProperty(exports, "SetMealRounded", { + enumerable: true, + get: function () { + return _SetMealRounded.default; + } +}); +Object.defineProperty(exports, "SetMealSharp", { + enumerable: true, + get: function () { + return _SetMealSharp.default; + } +}); +Object.defineProperty(exports, "SetMealTwoTone", { + enumerable: true, + get: function () { + return _SetMealTwoTone.default; + } +}); +Object.defineProperty(exports, "Settings", { + enumerable: true, + get: function () { + return _Settings.default; + } +}); +Object.defineProperty(exports, "SettingsAccessibility", { + enumerable: true, + get: function () { + return _SettingsAccessibility.default; + } +}); +Object.defineProperty(exports, "SettingsAccessibilityOutlined", { + enumerable: true, + get: function () { + return _SettingsAccessibilityOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsAccessibilityRounded", { + enumerable: true, + get: function () { + return _SettingsAccessibilityRounded.default; + } +}); +Object.defineProperty(exports, "SettingsAccessibilitySharp", { + enumerable: true, + get: function () { + return _SettingsAccessibilitySharp.default; + } +}); +Object.defineProperty(exports, "SettingsAccessibilityTwoTone", { + enumerable: true, + get: function () { + return _SettingsAccessibilityTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsApplications", { + enumerable: true, + get: function () { + return _SettingsApplications.default; + } +}); +Object.defineProperty(exports, "SettingsApplicationsOutlined", { + enumerable: true, + get: function () { + return _SettingsApplicationsOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsApplicationsRounded", { + enumerable: true, + get: function () { + return _SettingsApplicationsRounded.default; + } +}); +Object.defineProperty(exports, "SettingsApplicationsSharp", { + enumerable: true, + get: function () { + return _SettingsApplicationsSharp.default; + } +}); +Object.defineProperty(exports, "SettingsApplicationsTwoTone", { + enumerable: true, + get: function () { + return _SettingsApplicationsTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsBackupRestore", { + enumerable: true, + get: function () { + return _SettingsBackupRestore.default; + } +}); +Object.defineProperty(exports, "SettingsBackupRestoreOutlined", { + enumerable: true, + get: function () { + return _SettingsBackupRestoreOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsBackupRestoreRounded", { + enumerable: true, + get: function () { + return _SettingsBackupRestoreRounded.default; + } +}); +Object.defineProperty(exports, "SettingsBackupRestoreSharp", { + enumerable: true, + get: function () { + return _SettingsBackupRestoreSharp.default; + } +}); +Object.defineProperty(exports, "SettingsBackupRestoreTwoTone", { + enumerable: true, + get: function () { + return _SettingsBackupRestoreTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsBluetooth", { + enumerable: true, + get: function () { + return _SettingsBluetooth.default; + } +}); +Object.defineProperty(exports, "SettingsBluetoothOutlined", { + enumerable: true, + get: function () { + return _SettingsBluetoothOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsBluetoothRounded", { + enumerable: true, + get: function () { + return _SettingsBluetoothRounded.default; + } +}); +Object.defineProperty(exports, "SettingsBluetoothSharp", { + enumerable: true, + get: function () { + return _SettingsBluetoothSharp.default; + } +}); +Object.defineProperty(exports, "SettingsBluetoothTwoTone", { + enumerable: true, + get: function () { + return _SettingsBluetoothTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsBrightness", { + enumerable: true, + get: function () { + return _SettingsBrightness.default; + } +}); +Object.defineProperty(exports, "SettingsBrightnessOutlined", { + enumerable: true, + get: function () { + return _SettingsBrightnessOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsBrightnessRounded", { + enumerable: true, + get: function () { + return _SettingsBrightnessRounded.default; + } +}); +Object.defineProperty(exports, "SettingsBrightnessSharp", { + enumerable: true, + get: function () { + return _SettingsBrightnessSharp.default; + } +}); +Object.defineProperty(exports, "SettingsBrightnessTwoTone", { + enumerable: true, + get: function () { + return _SettingsBrightnessTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsCell", { + enumerable: true, + get: function () { + return _SettingsCell.default; + } +}); +Object.defineProperty(exports, "SettingsCellOutlined", { + enumerable: true, + get: function () { + return _SettingsCellOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsCellRounded", { + enumerable: true, + get: function () { + return _SettingsCellRounded.default; + } +}); +Object.defineProperty(exports, "SettingsCellSharp", { + enumerable: true, + get: function () { + return _SettingsCellSharp.default; + } +}); +Object.defineProperty(exports, "SettingsCellTwoTone", { + enumerable: true, + get: function () { + return _SettingsCellTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsEthernet", { + enumerable: true, + get: function () { + return _SettingsEthernet.default; + } +}); +Object.defineProperty(exports, "SettingsEthernetOutlined", { + enumerable: true, + get: function () { + return _SettingsEthernetOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsEthernetRounded", { + enumerable: true, + get: function () { + return _SettingsEthernetRounded.default; + } +}); +Object.defineProperty(exports, "SettingsEthernetSharp", { + enumerable: true, + get: function () { + return _SettingsEthernetSharp.default; + } +}); +Object.defineProperty(exports, "SettingsEthernetTwoTone", { + enumerable: true, + get: function () { + return _SettingsEthernetTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsInputAntenna", { + enumerable: true, + get: function () { + return _SettingsInputAntenna.default; + } +}); +Object.defineProperty(exports, "SettingsInputAntennaOutlined", { + enumerable: true, + get: function () { + return _SettingsInputAntennaOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsInputAntennaRounded", { + enumerable: true, + get: function () { + return _SettingsInputAntennaRounded.default; + } +}); +Object.defineProperty(exports, "SettingsInputAntennaSharp", { + enumerable: true, + get: function () { + return _SettingsInputAntennaSharp.default; + } +}); +Object.defineProperty(exports, "SettingsInputAntennaTwoTone", { + enumerable: true, + get: function () { + return _SettingsInputAntennaTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsInputComponent", { + enumerable: true, + get: function () { + return _SettingsInputComponent.default; + } +}); +Object.defineProperty(exports, "SettingsInputComponentOutlined", { + enumerable: true, + get: function () { + return _SettingsInputComponentOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsInputComponentRounded", { + enumerable: true, + get: function () { + return _SettingsInputComponentRounded.default; + } +}); +Object.defineProperty(exports, "SettingsInputComponentSharp", { + enumerable: true, + get: function () { + return _SettingsInputComponentSharp.default; + } +}); +Object.defineProperty(exports, "SettingsInputComponentTwoTone", { + enumerable: true, + get: function () { + return _SettingsInputComponentTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsInputComposite", { + enumerable: true, + get: function () { + return _SettingsInputComposite.default; + } +}); +Object.defineProperty(exports, "SettingsInputCompositeOutlined", { + enumerable: true, + get: function () { + return _SettingsInputCompositeOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsInputCompositeRounded", { + enumerable: true, + get: function () { + return _SettingsInputCompositeRounded.default; + } +}); +Object.defineProperty(exports, "SettingsInputCompositeSharp", { + enumerable: true, + get: function () { + return _SettingsInputCompositeSharp.default; + } +}); +Object.defineProperty(exports, "SettingsInputCompositeTwoTone", { + enumerable: true, + get: function () { + return _SettingsInputCompositeTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsInputHdmi", { + enumerable: true, + get: function () { + return _SettingsInputHdmi.default; + } +}); +Object.defineProperty(exports, "SettingsInputHdmiOutlined", { + enumerable: true, + get: function () { + return _SettingsInputHdmiOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsInputHdmiRounded", { + enumerable: true, + get: function () { + return _SettingsInputHdmiRounded.default; + } +}); +Object.defineProperty(exports, "SettingsInputHdmiSharp", { + enumerable: true, + get: function () { + return _SettingsInputHdmiSharp.default; + } +}); +Object.defineProperty(exports, "SettingsInputHdmiTwoTone", { + enumerable: true, + get: function () { + return _SettingsInputHdmiTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsInputSvideo", { + enumerable: true, + get: function () { + return _SettingsInputSvideo.default; + } +}); +Object.defineProperty(exports, "SettingsInputSvideoOutlined", { + enumerable: true, + get: function () { + return _SettingsInputSvideoOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsInputSvideoRounded", { + enumerable: true, + get: function () { + return _SettingsInputSvideoRounded.default; + } +}); +Object.defineProperty(exports, "SettingsInputSvideoSharp", { + enumerable: true, + get: function () { + return _SettingsInputSvideoSharp.default; + } +}); +Object.defineProperty(exports, "SettingsInputSvideoTwoTone", { + enumerable: true, + get: function () { + return _SettingsInputSvideoTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsOutlined", { + enumerable: true, + get: function () { + return _SettingsOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsOverscan", { + enumerable: true, + get: function () { + return _SettingsOverscan.default; + } +}); +Object.defineProperty(exports, "SettingsOverscanOutlined", { + enumerable: true, + get: function () { + return _SettingsOverscanOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsOverscanRounded", { + enumerable: true, + get: function () { + return _SettingsOverscanRounded.default; + } +}); +Object.defineProperty(exports, "SettingsOverscanSharp", { + enumerable: true, + get: function () { + return _SettingsOverscanSharp.default; + } +}); +Object.defineProperty(exports, "SettingsOverscanTwoTone", { + enumerable: true, + get: function () { + return _SettingsOverscanTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsPhone", { + enumerable: true, + get: function () { + return _SettingsPhone.default; + } +}); +Object.defineProperty(exports, "SettingsPhoneOutlined", { + enumerable: true, + get: function () { + return _SettingsPhoneOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsPhoneRounded", { + enumerable: true, + get: function () { + return _SettingsPhoneRounded.default; + } +}); +Object.defineProperty(exports, "SettingsPhoneSharp", { + enumerable: true, + get: function () { + return _SettingsPhoneSharp.default; + } +}); +Object.defineProperty(exports, "SettingsPhoneTwoTone", { + enumerable: true, + get: function () { + return _SettingsPhoneTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsPower", { + enumerable: true, + get: function () { + return _SettingsPower.default; + } +}); +Object.defineProperty(exports, "SettingsPowerOutlined", { + enumerable: true, + get: function () { + return _SettingsPowerOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsPowerRounded", { + enumerable: true, + get: function () { + return _SettingsPowerRounded.default; + } +}); +Object.defineProperty(exports, "SettingsPowerSharp", { + enumerable: true, + get: function () { + return _SettingsPowerSharp.default; + } +}); +Object.defineProperty(exports, "SettingsPowerTwoTone", { + enumerable: true, + get: function () { + return _SettingsPowerTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsRemote", { + enumerable: true, + get: function () { + return _SettingsRemote.default; + } +}); +Object.defineProperty(exports, "SettingsRemoteOutlined", { + enumerable: true, + get: function () { + return _SettingsRemoteOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsRemoteRounded", { + enumerable: true, + get: function () { + return _SettingsRemoteRounded.default; + } +}); +Object.defineProperty(exports, "SettingsRemoteSharp", { + enumerable: true, + get: function () { + return _SettingsRemoteSharp.default; + } +}); +Object.defineProperty(exports, "SettingsRemoteTwoTone", { + enumerable: true, + get: function () { + return _SettingsRemoteTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsRounded", { + enumerable: true, + get: function () { + return _SettingsRounded.default; + } +}); +Object.defineProperty(exports, "SettingsSharp", { + enumerable: true, + get: function () { + return _SettingsSharp.default; + } +}); +Object.defineProperty(exports, "SettingsSuggest", { + enumerable: true, + get: function () { + return _SettingsSuggest.default; + } +}); +Object.defineProperty(exports, "SettingsSuggestOutlined", { + enumerable: true, + get: function () { + return _SettingsSuggestOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsSuggestRounded", { + enumerable: true, + get: function () { + return _SettingsSuggestRounded.default; + } +}); +Object.defineProperty(exports, "SettingsSuggestSharp", { + enumerable: true, + get: function () { + return _SettingsSuggestSharp.default; + } +}); +Object.defineProperty(exports, "SettingsSuggestTwoTone", { + enumerable: true, + get: function () { + return _SettingsSuggestTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsSystemDaydream", { + enumerable: true, + get: function () { + return _SettingsSystemDaydream.default; + } +}); +Object.defineProperty(exports, "SettingsSystemDaydreamOutlined", { + enumerable: true, + get: function () { + return _SettingsSystemDaydreamOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsSystemDaydreamRounded", { + enumerable: true, + get: function () { + return _SettingsSystemDaydreamRounded.default; + } +}); +Object.defineProperty(exports, "SettingsSystemDaydreamSharp", { + enumerable: true, + get: function () { + return _SettingsSystemDaydreamSharp.default; + } +}); +Object.defineProperty(exports, "SettingsSystemDaydreamTwoTone", { + enumerable: true, + get: function () { + return _SettingsSystemDaydreamTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsTwoTone", { + enumerable: true, + get: function () { + return _SettingsTwoTone.default; + } +}); +Object.defineProperty(exports, "SettingsVoice", { + enumerable: true, + get: function () { + return _SettingsVoice.default; + } +}); +Object.defineProperty(exports, "SettingsVoiceOutlined", { + enumerable: true, + get: function () { + return _SettingsVoiceOutlined.default; + } +}); +Object.defineProperty(exports, "SettingsVoiceRounded", { + enumerable: true, + get: function () { + return _SettingsVoiceRounded.default; + } +}); +Object.defineProperty(exports, "SettingsVoiceSharp", { + enumerable: true, + get: function () { + return _SettingsVoiceSharp.default; + } +}); +Object.defineProperty(exports, "SettingsVoiceTwoTone", { + enumerable: true, + get: function () { + return _SettingsVoiceTwoTone.default; + } +}); +Object.defineProperty(exports, "SevenK", { + enumerable: true, + get: function () { + return _SevenK.default; + } +}); +Object.defineProperty(exports, "SevenKOutlined", { + enumerable: true, + get: function () { + return _SevenKOutlined.default; + } +}); +Object.defineProperty(exports, "SevenKPlus", { + enumerable: true, + get: function () { + return _SevenKPlus.default; + } +}); +Object.defineProperty(exports, "SevenKPlusOutlined", { + enumerable: true, + get: function () { + return _SevenKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "SevenKPlusRounded", { + enumerable: true, + get: function () { + return _SevenKPlusRounded.default; + } +}); +Object.defineProperty(exports, "SevenKPlusSharp", { + enumerable: true, + get: function () { + return _SevenKPlusSharp.default; + } +}); +Object.defineProperty(exports, "SevenKPlusTwoTone", { + enumerable: true, + get: function () { + return _SevenKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "SevenKRounded", { + enumerable: true, + get: function () { + return _SevenKRounded.default; + } +}); +Object.defineProperty(exports, "SevenKSharp", { + enumerable: true, + get: function () { + return _SevenKSharp.default; + } +}); +Object.defineProperty(exports, "SevenKTwoTone", { + enumerable: true, + get: function () { + return _SevenKTwoTone.default; + } +}); +Object.defineProperty(exports, "SevenMp", { + enumerable: true, + get: function () { + return _SevenMp.default; + } +}); +Object.defineProperty(exports, "SevenMpOutlined", { + enumerable: true, + get: function () { + return _SevenMpOutlined.default; + } +}); +Object.defineProperty(exports, "SevenMpRounded", { + enumerable: true, + get: function () { + return _SevenMpRounded.default; + } +}); +Object.defineProperty(exports, "SevenMpSharp", { + enumerable: true, + get: function () { + return _SevenMpSharp.default; + } +}); +Object.defineProperty(exports, "SevenMpTwoTone", { + enumerable: true, + get: function () { + return _SevenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "SeventeenMp", { + enumerable: true, + get: function () { + return _SeventeenMp.default; + } +}); +Object.defineProperty(exports, "SeventeenMpOutlined", { + enumerable: true, + get: function () { + return _SeventeenMpOutlined.default; + } +}); +Object.defineProperty(exports, "SeventeenMpRounded", { + enumerable: true, + get: function () { + return _SeventeenMpRounded.default; + } +}); +Object.defineProperty(exports, "SeventeenMpSharp", { + enumerable: true, + get: function () { + return _SeventeenMpSharp.default; + } +}); +Object.defineProperty(exports, "SeventeenMpTwoTone", { + enumerable: true, + get: function () { + return _SeventeenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "Share", { + enumerable: true, + get: function () { + return _Share.default; + } +}); +Object.defineProperty(exports, "ShareLocation", { + enumerable: true, + get: function () { + return _ShareLocation.default; + } +}); +Object.defineProperty(exports, "ShareLocationOutlined", { + enumerable: true, + get: function () { + return _ShareLocationOutlined.default; + } +}); +Object.defineProperty(exports, "ShareLocationRounded", { + enumerable: true, + get: function () { + return _ShareLocationRounded.default; + } +}); +Object.defineProperty(exports, "ShareLocationSharp", { + enumerable: true, + get: function () { + return _ShareLocationSharp.default; + } +}); +Object.defineProperty(exports, "ShareLocationTwoTone", { + enumerable: true, + get: function () { + return _ShareLocationTwoTone.default; + } +}); +Object.defineProperty(exports, "ShareOutlined", { + enumerable: true, + get: function () { + return _ShareOutlined.default; + } +}); +Object.defineProperty(exports, "ShareRounded", { + enumerable: true, + get: function () { + return _ShareRounded.default; + } +}); +Object.defineProperty(exports, "ShareSharp", { + enumerable: true, + get: function () { + return _ShareSharp.default; + } +}); +Object.defineProperty(exports, "ShareTwoTone", { + enumerable: true, + get: function () { + return _ShareTwoTone.default; + } +}); +Object.defineProperty(exports, "Shield", { + enumerable: true, + get: function () { + return _Shield.default; + } +}); +Object.defineProperty(exports, "ShieldOutlined", { + enumerable: true, + get: function () { + return _ShieldOutlined.default; + } +}); +Object.defineProperty(exports, "ShieldRounded", { + enumerable: true, + get: function () { + return _ShieldRounded.default; + } +}); +Object.defineProperty(exports, "ShieldSharp", { + enumerable: true, + get: function () { + return _ShieldSharp.default; + } +}); +Object.defineProperty(exports, "ShieldTwoTone", { + enumerable: true, + get: function () { + return _ShieldTwoTone.default; + } +}); +Object.defineProperty(exports, "Shop", { + enumerable: true, + get: function () { + return _Shop.default; + } +}); +Object.defineProperty(exports, "Shop2", { + enumerable: true, + get: function () { + return _Shop2.default; + } +}); +Object.defineProperty(exports, "Shop2Outlined", { + enumerable: true, + get: function () { + return _Shop2Outlined.default; + } +}); +Object.defineProperty(exports, "Shop2Rounded", { + enumerable: true, + get: function () { + return _Shop2Rounded.default; + } +}); +Object.defineProperty(exports, "Shop2Sharp", { + enumerable: true, + get: function () { + return _Shop2Sharp.default; + } +}); +Object.defineProperty(exports, "Shop2TwoTone", { + enumerable: true, + get: function () { + return _Shop2TwoTone.default; + } +}); +Object.defineProperty(exports, "ShopOutlined", { + enumerable: true, + get: function () { + return _ShopOutlined.default; + } +}); +Object.defineProperty(exports, "ShopRounded", { + enumerable: true, + get: function () { + return _ShopRounded.default; + } +}); +Object.defineProperty(exports, "ShopSharp", { + enumerable: true, + get: function () { + return _ShopSharp.default; + } +}); +Object.defineProperty(exports, "ShopTwo", { + enumerable: true, + get: function () { + return _ShopTwo.default; + } +}); +Object.defineProperty(exports, "ShopTwoOutlined", { + enumerable: true, + get: function () { + return _ShopTwoOutlined.default; + } +}); +Object.defineProperty(exports, "ShopTwoRounded", { + enumerable: true, + get: function () { + return _ShopTwoRounded.default; + } +}); +Object.defineProperty(exports, "ShopTwoSharp", { + enumerable: true, + get: function () { + return _ShopTwoSharp.default; + } +}); +Object.defineProperty(exports, "ShopTwoTone", { + enumerable: true, + get: function () { + return _ShopTwoTone.default; + } +}); +Object.defineProperty(exports, "ShopTwoTwoTone", { + enumerable: true, + get: function () { + return _ShopTwoTwoTone.default; + } +}); +Object.defineProperty(exports, "ShoppingBag", { + enumerable: true, + get: function () { + return _ShoppingBag.default; + } +}); +Object.defineProperty(exports, "ShoppingBagOutlined", { + enumerable: true, + get: function () { + return _ShoppingBagOutlined.default; + } +}); +Object.defineProperty(exports, "ShoppingBagRounded", { + enumerable: true, + get: function () { + return _ShoppingBagRounded.default; + } +}); +Object.defineProperty(exports, "ShoppingBagSharp", { + enumerable: true, + get: function () { + return _ShoppingBagSharp.default; + } +}); +Object.defineProperty(exports, "ShoppingBagTwoTone", { + enumerable: true, + get: function () { + return _ShoppingBagTwoTone.default; + } +}); +Object.defineProperty(exports, "ShoppingBasket", { + enumerable: true, + get: function () { + return _ShoppingBasket.default; + } +}); +Object.defineProperty(exports, "ShoppingBasketOutlined", { + enumerable: true, + get: function () { + return _ShoppingBasketOutlined.default; + } +}); +Object.defineProperty(exports, "ShoppingBasketRounded", { + enumerable: true, + get: function () { + return _ShoppingBasketRounded.default; + } +}); +Object.defineProperty(exports, "ShoppingBasketSharp", { + enumerable: true, + get: function () { + return _ShoppingBasketSharp.default; + } +}); +Object.defineProperty(exports, "ShoppingBasketTwoTone", { + enumerable: true, + get: function () { + return _ShoppingBasketTwoTone.default; + } +}); +Object.defineProperty(exports, "ShoppingCart", { + enumerable: true, + get: function () { + return _ShoppingCart.default; + } +}); +Object.defineProperty(exports, "ShoppingCartOutlined", { + enumerable: true, + get: function () { + return _ShoppingCartOutlined.default; + } +}); +Object.defineProperty(exports, "ShoppingCartRounded", { + enumerable: true, + get: function () { + return _ShoppingCartRounded.default; + } +}); +Object.defineProperty(exports, "ShoppingCartSharp", { + enumerable: true, + get: function () { + return _ShoppingCartSharp.default; + } +}); +Object.defineProperty(exports, "ShoppingCartTwoTone", { + enumerable: true, + get: function () { + return _ShoppingCartTwoTone.default; + } +}); +Object.defineProperty(exports, "ShortText", { + enumerable: true, + get: function () { + return _ShortText.default; + } +}); +Object.defineProperty(exports, "ShortTextOutlined", { + enumerable: true, + get: function () { + return _ShortTextOutlined.default; + } +}); +Object.defineProperty(exports, "ShortTextRounded", { + enumerable: true, + get: function () { + return _ShortTextRounded.default; + } +}); +Object.defineProperty(exports, "ShortTextSharp", { + enumerable: true, + get: function () { + return _ShortTextSharp.default; + } +}); +Object.defineProperty(exports, "ShortTextTwoTone", { + enumerable: true, + get: function () { + return _ShortTextTwoTone.default; + } +}); +Object.defineProperty(exports, "Shortcut", { + enumerable: true, + get: function () { + return _Shortcut.default; + } +}); +Object.defineProperty(exports, "ShortcutOutlined", { + enumerable: true, + get: function () { + return _ShortcutOutlined.default; + } +}); +Object.defineProperty(exports, "ShortcutRounded", { + enumerable: true, + get: function () { + return _ShortcutRounded.default; + } +}); +Object.defineProperty(exports, "ShortcutSharp", { + enumerable: true, + get: function () { + return _ShortcutSharp.default; + } +}); +Object.defineProperty(exports, "ShortcutTwoTone", { + enumerable: true, + get: function () { + return _ShortcutTwoTone.default; + } +}); +Object.defineProperty(exports, "ShowChart", { + enumerable: true, + get: function () { + return _ShowChart.default; + } +}); +Object.defineProperty(exports, "ShowChartOutlined", { + enumerable: true, + get: function () { + return _ShowChartOutlined.default; + } +}); +Object.defineProperty(exports, "ShowChartRounded", { + enumerable: true, + get: function () { + return _ShowChartRounded.default; + } +}); +Object.defineProperty(exports, "ShowChartSharp", { + enumerable: true, + get: function () { + return _ShowChartSharp.default; + } +}); +Object.defineProperty(exports, "ShowChartTwoTone", { + enumerable: true, + get: function () { + return _ShowChartTwoTone.default; + } +}); +Object.defineProperty(exports, "Shower", { + enumerable: true, + get: function () { + return _Shower.default; + } +}); +Object.defineProperty(exports, "ShowerOutlined", { + enumerable: true, + get: function () { + return _ShowerOutlined.default; + } +}); +Object.defineProperty(exports, "ShowerRounded", { + enumerable: true, + get: function () { + return _ShowerRounded.default; + } +}); +Object.defineProperty(exports, "ShowerSharp", { + enumerable: true, + get: function () { + return _ShowerSharp.default; + } +}); +Object.defineProperty(exports, "ShowerTwoTone", { + enumerable: true, + get: function () { + return _ShowerTwoTone.default; + } +}); +Object.defineProperty(exports, "Shuffle", { + enumerable: true, + get: function () { + return _Shuffle.default; + } +}); +Object.defineProperty(exports, "ShuffleOn", { + enumerable: true, + get: function () { + return _ShuffleOn.default; + } +}); +Object.defineProperty(exports, "ShuffleOnOutlined", { + enumerable: true, + get: function () { + return _ShuffleOnOutlined.default; + } +}); +Object.defineProperty(exports, "ShuffleOnRounded", { + enumerable: true, + get: function () { + return _ShuffleOnRounded.default; + } +}); +Object.defineProperty(exports, "ShuffleOnSharp", { + enumerable: true, + get: function () { + return _ShuffleOnSharp.default; + } +}); +Object.defineProperty(exports, "ShuffleOnTwoTone", { + enumerable: true, + get: function () { + return _ShuffleOnTwoTone.default; + } +}); +Object.defineProperty(exports, "ShuffleOutlined", { + enumerable: true, + get: function () { + return _ShuffleOutlined.default; + } +}); +Object.defineProperty(exports, "ShuffleRounded", { + enumerable: true, + get: function () { + return _ShuffleRounded.default; + } +}); +Object.defineProperty(exports, "ShuffleSharp", { + enumerable: true, + get: function () { + return _ShuffleSharp.default; + } +}); +Object.defineProperty(exports, "ShuffleTwoTone", { + enumerable: true, + get: function () { + return _ShuffleTwoTone.default; + } +}); +Object.defineProperty(exports, "ShutterSpeed", { + enumerable: true, + get: function () { + return _ShutterSpeed.default; + } +}); +Object.defineProperty(exports, "ShutterSpeedOutlined", { + enumerable: true, + get: function () { + return _ShutterSpeedOutlined.default; + } +}); +Object.defineProperty(exports, "ShutterSpeedRounded", { + enumerable: true, + get: function () { + return _ShutterSpeedRounded.default; + } +}); +Object.defineProperty(exports, "ShutterSpeedSharp", { + enumerable: true, + get: function () { + return _ShutterSpeedSharp.default; + } +}); +Object.defineProperty(exports, "ShutterSpeedTwoTone", { + enumerable: true, + get: function () { + return _ShutterSpeedTwoTone.default; + } +}); +Object.defineProperty(exports, "Sick", { + enumerable: true, + get: function () { + return _Sick.default; + } +}); +Object.defineProperty(exports, "SickOutlined", { + enumerable: true, + get: function () { + return _SickOutlined.default; + } +}); +Object.defineProperty(exports, "SickRounded", { + enumerable: true, + get: function () { + return _SickRounded.default; + } +}); +Object.defineProperty(exports, "SickSharp", { + enumerable: true, + get: function () { + return _SickSharp.default; + } +}); +Object.defineProperty(exports, "SickTwoTone", { + enumerable: true, + get: function () { + return _SickTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellular0Bar", { + enumerable: true, + get: function () { + return _SignalCellular0Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellular0BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellular0BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellular0BarRounded", { + enumerable: true, + get: function () { + return _SignalCellular0BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellular0BarSharp", { + enumerable: true, + get: function () { + return _SignalCellular0BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellular0BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellular0BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellular1Bar", { + enumerable: true, + get: function () { + return _SignalCellular1Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellular1BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellular1BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellular1BarRounded", { + enumerable: true, + get: function () { + return _SignalCellular1BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellular1BarSharp", { + enumerable: true, + get: function () { + return _SignalCellular1BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellular1BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellular1BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellular2Bar", { + enumerable: true, + get: function () { + return _SignalCellular2Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellular2BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellular2BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellular2BarRounded", { + enumerable: true, + get: function () { + return _SignalCellular2BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellular2BarSharp", { + enumerable: true, + get: function () { + return _SignalCellular2BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellular2BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellular2BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellular3Bar", { + enumerable: true, + get: function () { + return _SignalCellular3Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellular3BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellular3BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellular3BarRounded", { + enumerable: true, + get: function () { + return _SignalCellular3BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellular3BarSharp", { + enumerable: true, + get: function () { + return _SignalCellular3BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellular3BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellular3BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellular4Bar", { + enumerable: true, + get: function () { + return _SignalCellular4Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellular4BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellular4BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellular4BarRounded", { + enumerable: true, + get: function () { + return _SignalCellular4BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellular4BarSharp", { + enumerable: true, + get: function () { + return _SignalCellular4BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellular4BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellular4BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularAlt", { + enumerable: true, + get: function () { + return _SignalCellularAlt.default; + } +}); +Object.defineProperty(exports, "SignalCellularAltOutlined", { + enumerable: true, + get: function () { + return _SignalCellularAltOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularAltRounded", { + enumerable: true, + get: function () { + return _SignalCellularAltRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularAltSharp", { + enumerable: true, + get: function () { + return _SignalCellularAltSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularAltTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularAltTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet0Bar", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet0Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet0BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet0BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet0BarRounded", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet0BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet0BarSharp", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet0BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet0BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet0BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet1Bar", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet1Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet1BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet1BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet1BarRounded", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet1BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet1BarSharp", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet1BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet1BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet1BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet2Bar", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet2Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet2BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet2BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet2BarRounded", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet2BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet2BarSharp", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet2BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet2BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet2BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet3Bar", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet3Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet3BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet3BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet3BarRounded", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet3BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet3BarSharp", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet3BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet3BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet3BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet4Bar", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet4Bar.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet4BarOutlined", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet4BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet4BarRounded", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet4BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet4BarSharp", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet4BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularConnectedNoInternet4BarTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularConnectedNoInternet4BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularNoSim", { + enumerable: true, + get: function () { + return _SignalCellularNoSim.default; + } +}); +Object.defineProperty(exports, "SignalCellularNoSimOutlined", { + enumerable: true, + get: function () { + return _SignalCellularNoSimOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularNoSimRounded", { + enumerable: true, + get: function () { + return _SignalCellularNoSimRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularNoSimSharp", { + enumerable: true, + get: function () { + return _SignalCellularNoSimSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularNoSimTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularNoSimTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularNodata", { + enumerable: true, + get: function () { + return _SignalCellularNodata.default; + } +}); +Object.defineProperty(exports, "SignalCellularNodataOutlined", { + enumerable: true, + get: function () { + return _SignalCellularNodataOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularNodataRounded", { + enumerable: true, + get: function () { + return _SignalCellularNodataRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularNodataSharp", { + enumerable: true, + get: function () { + return _SignalCellularNodataSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularNodataTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularNodataTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularNull", { + enumerable: true, + get: function () { + return _SignalCellularNull.default; + } +}); +Object.defineProperty(exports, "SignalCellularNullOutlined", { + enumerable: true, + get: function () { + return _SignalCellularNullOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularNullRounded", { + enumerable: true, + get: function () { + return _SignalCellularNullRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularNullSharp", { + enumerable: true, + get: function () { + return _SignalCellularNullSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularNullTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularNullTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalCellularOff", { + enumerable: true, + get: function () { + return _SignalCellularOff.default; + } +}); +Object.defineProperty(exports, "SignalCellularOffOutlined", { + enumerable: true, + get: function () { + return _SignalCellularOffOutlined.default; + } +}); +Object.defineProperty(exports, "SignalCellularOffRounded", { + enumerable: true, + get: function () { + return _SignalCellularOffRounded.default; + } +}); +Object.defineProperty(exports, "SignalCellularOffSharp", { + enumerable: true, + get: function () { + return _SignalCellularOffSharp.default; + } +}); +Object.defineProperty(exports, "SignalCellularOffTwoTone", { + enumerable: true, + get: function () { + return _SignalCellularOffTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi0Bar", { + enumerable: true, + get: function () { + return _SignalWifi0Bar.default; + } +}); +Object.defineProperty(exports, "SignalWifi0BarOutlined", { + enumerable: true, + get: function () { + return _SignalWifi0BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi0BarRounded", { + enumerable: true, + get: function () { + return _SignalWifi0BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi0BarSharp", { + enumerable: true, + get: function () { + return _SignalWifi0BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi0BarTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi0BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi1Bar", { + enumerable: true, + get: function () { + return _SignalWifi1Bar.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarLock", { + enumerable: true, + get: function () { + return _SignalWifi1BarLock.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarLockOutlined", { + enumerable: true, + get: function () { + return _SignalWifi1BarLockOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarLockRounded", { + enumerable: true, + get: function () { + return _SignalWifi1BarLockRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarLockSharp", { + enumerable: true, + get: function () { + return _SignalWifi1BarLockSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarLockTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi1BarLockTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarOutlined", { + enumerable: true, + get: function () { + return _SignalWifi1BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarRounded", { + enumerable: true, + get: function () { + return _SignalWifi1BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarSharp", { + enumerable: true, + get: function () { + return _SignalWifi1BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi1BarTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi1BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi2Bar", { + enumerable: true, + get: function () { + return _SignalWifi2Bar.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarLock", { + enumerable: true, + get: function () { + return _SignalWifi2BarLock.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarLockOutlined", { + enumerable: true, + get: function () { + return _SignalWifi2BarLockOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarLockRounded", { + enumerable: true, + get: function () { + return _SignalWifi2BarLockRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarLockSharp", { + enumerable: true, + get: function () { + return _SignalWifi2BarLockSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarLockTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi2BarLockTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarOutlined", { + enumerable: true, + get: function () { + return _SignalWifi2BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarRounded", { + enumerable: true, + get: function () { + return _SignalWifi2BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarSharp", { + enumerable: true, + get: function () { + return _SignalWifi2BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi2BarTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi2BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi3Bar", { + enumerable: true, + get: function () { + return _SignalWifi3Bar.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarLock", { + enumerable: true, + get: function () { + return _SignalWifi3BarLock.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarLockOutlined", { + enumerable: true, + get: function () { + return _SignalWifi3BarLockOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarLockRounded", { + enumerable: true, + get: function () { + return _SignalWifi3BarLockRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarLockSharp", { + enumerable: true, + get: function () { + return _SignalWifi3BarLockSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarLockTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi3BarLockTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarOutlined", { + enumerable: true, + get: function () { + return _SignalWifi3BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarRounded", { + enumerable: true, + get: function () { + return _SignalWifi3BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarSharp", { + enumerable: true, + get: function () { + return _SignalWifi3BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi3BarTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi3BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi4Bar", { + enumerable: true, + get: function () { + return _SignalWifi4Bar.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarLock", { + enumerable: true, + get: function () { + return _SignalWifi4BarLock.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarLockOutlined", { + enumerable: true, + get: function () { + return _SignalWifi4BarLockOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarLockRounded", { + enumerable: true, + get: function () { + return _SignalWifi4BarLockRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarLockSharp", { + enumerable: true, + get: function () { + return _SignalWifi4BarLockSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarLockTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi4BarLockTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarOutlined", { + enumerable: true, + get: function () { + return _SignalWifi4BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarRounded", { + enumerable: true, + get: function () { + return _SignalWifi4BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarSharp", { + enumerable: true, + get: function () { + return _SignalWifi4BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifi4BarTwoTone", { + enumerable: true, + get: function () { + return _SignalWifi4BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifiBad", { + enumerable: true, + get: function () { + return _SignalWifiBad.default; + } +}); +Object.defineProperty(exports, "SignalWifiBadOutlined", { + enumerable: true, + get: function () { + return _SignalWifiBadOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifiBadRounded", { + enumerable: true, + get: function () { + return _SignalWifiBadRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifiBadSharp", { + enumerable: true, + get: function () { + return _SignalWifiBadSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifiBadTwoTone", { + enumerable: true, + get: function () { + return _SignalWifiBadTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifiConnectedNoInternet4", { + enumerable: true, + get: function () { + return _SignalWifiConnectedNoInternet.default; + } +}); +Object.defineProperty(exports, "SignalWifiConnectedNoInternet4Outlined", { + enumerable: true, + get: function () { + return _SignalWifiConnectedNoInternet4Outlined.default; + } +}); +Object.defineProperty(exports, "SignalWifiConnectedNoInternet4Rounded", { + enumerable: true, + get: function () { + return _SignalWifiConnectedNoInternet4Rounded.default; + } +}); +Object.defineProperty(exports, "SignalWifiConnectedNoInternet4Sharp", { + enumerable: true, + get: function () { + return _SignalWifiConnectedNoInternet4Sharp.default; + } +}); +Object.defineProperty(exports, "SignalWifiConnectedNoInternet4TwoTone", { + enumerable: true, + get: function () { + return _SignalWifiConnectedNoInternet4TwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifiOff", { + enumerable: true, + get: function () { + return _SignalWifiOff.default; + } +}); +Object.defineProperty(exports, "SignalWifiOffOutlined", { + enumerable: true, + get: function () { + return _SignalWifiOffOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifiOffRounded", { + enumerable: true, + get: function () { + return _SignalWifiOffRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifiOffSharp", { + enumerable: true, + get: function () { + return _SignalWifiOffSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifiOffTwoTone", { + enumerable: true, + get: function () { + return _SignalWifiOffTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbar4Bar", { + enumerable: true, + get: function () { + return _SignalWifiStatusbar4Bar.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbar4BarOutlined", { + enumerable: true, + get: function () { + return _SignalWifiStatusbar4BarOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbar4BarRounded", { + enumerable: true, + get: function () { + return _SignalWifiStatusbar4BarRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbar4BarSharp", { + enumerable: true, + get: function () { + return _SignalWifiStatusbar4BarSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbar4BarTwoTone", { + enumerable: true, + get: function () { + return _SignalWifiStatusbar4BarTwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarConnectedNoInternet4", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarConnectedNoInternet.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarConnectedNoInternet4Outlined", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarConnectedNoInternet4Outlined.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarConnectedNoInternet4Rounded", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarConnectedNoInternet4Rounded.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarConnectedNoInternet4Sharp", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarConnectedNoInternet4Sharp.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarConnectedNoInternet4TwoTone", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarConnectedNoInternet4TwoTone.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarNull", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarNull.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarNullOutlined", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarNullOutlined.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarNullRounded", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarNullRounded.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarNullSharp", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarNullSharp.default; + } +}); +Object.defineProperty(exports, "SignalWifiStatusbarNullTwoTone", { + enumerable: true, + get: function () { + return _SignalWifiStatusbarNullTwoTone.default; + } +}); +Object.defineProperty(exports, "SimCard", { + enumerable: true, + get: function () { + return _SimCard.default; + } +}); +Object.defineProperty(exports, "SimCardAlert", { + enumerable: true, + get: function () { + return _SimCardAlert.default; + } +}); +Object.defineProperty(exports, "SimCardAlertOutlined", { + enumerable: true, + get: function () { + return _SimCardAlertOutlined.default; + } +}); +Object.defineProperty(exports, "SimCardAlertRounded", { + enumerable: true, + get: function () { + return _SimCardAlertRounded.default; + } +}); +Object.defineProperty(exports, "SimCardAlertSharp", { + enumerable: true, + get: function () { + return _SimCardAlertSharp.default; + } +}); +Object.defineProperty(exports, "SimCardAlertTwoTone", { + enumerable: true, + get: function () { + return _SimCardAlertTwoTone.default; + } +}); +Object.defineProperty(exports, "SimCardDownload", { + enumerable: true, + get: function () { + return _SimCardDownload.default; + } +}); +Object.defineProperty(exports, "SimCardDownloadOutlined", { + enumerable: true, + get: function () { + return _SimCardDownloadOutlined.default; + } +}); +Object.defineProperty(exports, "SimCardDownloadRounded", { + enumerable: true, + get: function () { + return _SimCardDownloadRounded.default; + } +}); +Object.defineProperty(exports, "SimCardDownloadSharp", { + enumerable: true, + get: function () { + return _SimCardDownloadSharp.default; + } +}); +Object.defineProperty(exports, "SimCardDownloadTwoTone", { + enumerable: true, + get: function () { + return _SimCardDownloadTwoTone.default; + } +}); +Object.defineProperty(exports, "SimCardOutlined", { + enumerable: true, + get: function () { + return _SimCardOutlined.default; + } +}); +Object.defineProperty(exports, "SimCardRounded", { + enumerable: true, + get: function () { + return _SimCardRounded.default; + } +}); +Object.defineProperty(exports, "SimCardSharp", { + enumerable: true, + get: function () { + return _SimCardSharp.default; + } +}); +Object.defineProperty(exports, "SimCardTwoTone", { + enumerable: true, + get: function () { + return _SimCardTwoTone.default; + } +}); +Object.defineProperty(exports, "SingleBed", { + enumerable: true, + get: function () { + return _SingleBed.default; + } +}); +Object.defineProperty(exports, "SingleBedOutlined", { + enumerable: true, + get: function () { + return _SingleBedOutlined.default; + } +}); +Object.defineProperty(exports, "SingleBedRounded", { + enumerable: true, + get: function () { + return _SingleBedRounded.default; + } +}); +Object.defineProperty(exports, "SingleBedSharp", { + enumerable: true, + get: function () { + return _SingleBedSharp.default; + } +}); +Object.defineProperty(exports, "SingleBedTwoTone", { + enumerable: true, + get: function () { + return _SingleBedTwoTone.default; + } +}); +Object.defineProperty(exports, "Sip", { + enumerable: true, + get: function () { + return _Sip.default; + } +}); +Object.defineProperty(exports, "SipOutlined", { + enumerable: true, + get: function () { + return _SipOutlined.default; + } +}); +Object.defineProperty(exports, "SipRounded", { + enumerable: true, + get: function () { + return _SipRounded.default; + } +}); +Object.defineProperty(exports, "SipSharp", { + enumerable: true, + get: function () { + return _SipSharp.default; + } +}); +Object.defineProperty(exports, "SipTwoTone", { + enumerable: true, + get: function () { + return _SipTwoTone.default; + } +}); +Object.defineProperty(exports, "SixK", { + enumerable: true, + get: function () { + return _SixK.default; + } +}); +Object.defineProperty(exports, "SixKOutlined", { + enumerable: true, + get: function () { + return _SixKOutlined.default; + } +}); +Object.defineProperty(exports, "SixKPlus", { + enumerable: true, + get: function () { + return _SixKPlus.default; + } +}); +Object.defineProperty(exports, "SixKPlusOutlined", { + enumerable: true, + get: function () { + return _SixKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "SixKPlusRounded", { + enumerable: true, + get: function () { + return _SixKPlusRounded.default; + } +}); +Object.defineProperty(exports, "SixKPlusSharp", { + enumerable: true, + get: function () { + return _SixKPlusSharp.default; + } +}); +Object.defineProperty(exports, "SixKPlusTwoTone", { + enumerable: true, + get: function () { + return _SixKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "SixKRounded", { + enumerable: true, + get: function () { + return _SixKRounded.default; + } +}); +Object.defineProperty(exports, "SixKSharp", { + enumerable: true, + get: function () { + return _SixKSharp.default; + } +}); +Object.defineProperty(exports, "SixKTwoTone", { + enumerable: true, + get: function () { + return _SixKTwoTone.default; + } +}); +Object.defineProperty(exports, "SixMp", { + enumerable: true, + get: function () { + return _SixMp.default; + } +}); +Object.defineProperty(exports, "SixMpOutlined", { + enumerable: true, + get: function () { + return _SixMpOutlined.default; + } +}); +Object.defineProperty(exports, "SixMpRounded", { + enumerable: true, + get: function () { + return _SixMpRounded.default; + } +}); +Object.defineProperty(exports, "SixMpSharp", { + enumerable: true, + get: function () { + return _SixMpSharp.default; + } +}); +Object.defineProperty(exports, "SixMpTwoTone", { + enumerable: true, + get: function () { + return _SixMpTwoTone.default; + } +}); +Object.defineProperty(exports, "SixteenMp", { + enumerable: true, + get: function () { + return _SixteenMp.default; + } +}); +Object.defineProperty(exports, "SixteenMpOutlined", { + enumerable: true, + get: function () { + return _SixteenMpOutlined.default; + } +}); +Object.defineProperty(exports, "SixteenMpRounded", { + enumerable: true, + get: function () { + return _SixteenMpRounded.default; + } +}); +Object.defineProperty(exports, "SixteenMpSharp", { + enumerable: true, + get: function () { + return _SixteenMpSharp.default; + } +}); +Object.defineProperty(exports, "SixteenMpTwoTone", { + enumerable: true, + get: function () { + return _SixteenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "SixtyFps", { + enumerable: true, + get: function () { + return _SixtyFps.default; + } +}); +Object.defineProperty(exports, "SixtyFpsOutlined", { + enumerable: true, + get: function () { + return _SixtyFpsOutlined.default; + } +}); +Object.defineProperty(exports, "SixtyFpsRounded", { + enumerable: true, + get: function () { + return _SixtyFpsRounded.default; + } +}); +Object.defineProperty(exports, "SixtyFpsSelect", { + enumerable: true, + get: function () { + return _SixtyFpsSelect.default; + } +}); +Object.defineProperty(exports, "SixtyFpsSelectOutlined", { + enumerable: true, + get: function () { + return _SixtyFpsSelectOutlined.default; + } +}); +Object.defineProperty(exports, "SixtyFpsSelectRounded", { + enumerable: true, + get: function () { + return _SixtyFpsSelectRounded.default; + } +}); +Object.defineProperty(exports, "SixtyFpsSelectSharp", { + enumerable: true, + get: function () { + return _SixtyFpsSelectSharp.default; + } +}); +Object.defineProperty(exports, "SixtyFpsSelectTwoTone", { + enumerable: true, + get: function () { + return _SixtyFpsSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "SixtyFpsSharp", { + enumerable: true, + get: function () { + return _SixtyFpsSharp.default; + } +}); +Object.defineProperty(exports, "SixtyFpsTwoTone", { + enumerable: true, + get: function () { + return _SixtyFpsTwoTone.default; + } +}); +Object.defineProperty(exports, "Skateboarding", { + enumerable: true, + get: function () { + return _Skateboarding.default; + } +}); +Object.defineProperty(exports, "SkateboardingOutlined", { + enumerable: true, + get: function () { + return _SkateboardingOutlined.default; + } +}); +Object.defineProperty(exports, "SkateboardingRounded", { + enumerable: true, + get: function () { + return _SkateboardingRounded.default; + } +}); +Object.defineProperty(exports, "SkateboardingSharp", { + enumerable: true, + get: function () { + return _SkateboardingSharp.default; + } +}); +Object.defineProperty(exports, "SkateboardingTwoTone", { + enumerable: true, + get: function () { + return _SkateboardingTwoTone.default; + } +}); +Object.defineProperty(exports, "SkipNext", { + enumerable: true, + get: function () { + return _SkipNext.default; + } +}); +Object.defineProperty(exports, "SkipNextOutlined", { + enumerable: true, + get: function () { + return _SkipNextOutlined.default; + } +}); +Object.defineProperty(exports, "SkipNextRounded", { + enumerable: true, + get: function () { + return _SkipNextRounded.default; + } +}); +Object.defineProperty(exports, "SkipNextSharp", { + enumerable: true, + get: function () { + return _SkipNextSharp.default; + } +}); +Object.defineProperty(exports, "SkipNextTwoTone", { + enumerable: true, + get: function () { + return _SkipNextTwoTone.default; + } +}); +Object.defineProperty(exports, "SkipPrevious", { + enumerable: true, + get: function () { + return _SkipPrevious.default; + } +}); +Object.defineProperty(exports, "SkipPreviousOutlined", { + enumerable: true, + get: function () { + return _SkipPreviousOutlined.default; + } +}); +Object.defineProperty(exports, "SkipPreviousRounded", { + enumerable: true, + get: function () { + return _SkipPreviousRounded.default; + } +}); +Object.defineProperty(exports, "SkipPreviousSharp", { + enumerable: true, + get: function () { + return _SkipPreviousSharp.default; + } +}); +Object.defineProperty(exports, "SkipPreviousTwoTone", { + enumerable: true, + get: function () { + return _SkipPreviousTwoTone.default; + } +}); +Object.defineProperty(exports, "Sledding", { + enumerable: true, + get: function () { + return _Sledding.default; + } +}); +Object.defineProperty(exports, "SleddingOutlined", { + enumerable: true, + get: function () { + return _SleddingOutlined.default; + } +}); +Object.defineProperty(exports, "SleddingRounded", { + enumerable: true, + get: function () { + return _SleddingRounded.default; + } +}); +Object.defineProperty(exports, "SleddingSharp", { + enumerable: true, + get: function () { + return _SleddingSharp.default; + } +}); +Object.defineProperty(exports, "SleddingTwoTone", { + enumerable: true, + get: function () { + return _SleddingTwoTone.default; + } +}); +Object.defineProperty(exports, "Slideshow", { + enumerable: true, + get: function () { + return _Slideshow.default; + } +}); +Object.defineProperty(exports, "SlideshowOutlined", { + enumerable: true, + get: function () { + return _SlideshowOutlined.default; + } +}); +Object.defineProperty(exports, "SlideshowRounded", { + enumerable: true, + get: function () { + return _SlideshowRounded.default; + } +}); +Object.defineProperty(exports, "SlideshowSharp", { + enumerable: true, + get: function () { + return _SlideshowSharp.default; + } +}); +Object.defineProperty(exports, "SlideshowTwoTone", { + enumerable: true, + get: function () { + return _SlideshowTwoTone.default; + } +}); +Object.defineProperty(exports, "SlowMotionVideo", { + enumerable: true, + get: function () { + return _SlowMotionVideo.default; + } +}); +Object.defineProperty(exports, "SlowMotionVideoOutlined", { + enumerable: true, + get: function () { + return _SlowMotionVideoOutlined.default; + } +}); +Object.defineProperty(exports, "SlowMotionVideoRounded", { + enumerable: true, + get: function () { + return _SlowMotionVideoRounded.default; + } +}); +Object.defineProperty(exports, "SlowMotionVideoSharp", { + enumerable: true, + get: function () { + return _SlowMotionVideoSharp.default; + } +}); +Object.defineProperty(exports, "SlowMotionVideoTwoTone", { + enumerable: true, + get: function () { + return _SlowMotionVideoTwoTone.default; + } +}); +Object.defineProperty(exports, "SmartButton", { + enumerable: true, + get: function () { + return _SmartButton.default; + } +}); +Object.defineProperty(exports, "SmartButtonOutlined", { + enumerable: true, + get: function () { + return _SmartButtonOutlined.default; + } +}); +Object.defineProperty(exports, "SmartButtonRounded", { + enumerable: true, + get: function () { + return _SmartButtonRounded.default; + } +}); +Object.defineProperty(exports, "SmartButtonSharp", { + enumerable: true, + get: function () { + return _SmartButtonSharp.default; + } +}); +Object.defineProperty(exports, "SmartButtonTwoTone", { + enumerable: true, + get: function () { + return _SmartButtonTwoTone.default; + } +}); +Object.defineProperty(exports, "SmartDisplay", { + enumerable: true, + get: function () { + return _SmartDisplay.default; + } +}); +Object.defineProperty(exports, "SmartDisplayOutlined", { + enumerable: true, + get: function () { + return _SmartDisplayOutlined.default; + } +}); +Object.defineProperty(exports, "SmartDisplayRounded", { + enumerable: true, + get: function () { + return _SmartDisplayRounded.default; + } +}); +Object.defineProperty(exports, "SmartDisplaySharp", { + enumerable: true, + get: function () { + return _SmartDisplaySharp.default; + } +}); +Object.defineProperty(exports, "SmartDisplayTwoTone", { + enumerable: true, + get: function () { + return _SmartDisplayTwoTone.default; + } +}); +Object.defineProperty(exports, "SmartScreen", { + enumerable: true, + get: function () { + return _SmartScreen.default; + } +}); +Object.defineProperty(exports, "SmartScreenOutlined", { + enumerable: true, + get: function () { + return _SmartScreenOutlined.default; + } +}); +Object.defineProperty(exports, "SmartScreenRounded", { + enumerable: true, + get: function () { + return _SmartScreenRounded.default; + } +}); +Object.defineProperty(exports, "SmartScreenSharp", { + enumerable: true, + get: function () { + return _SmartScreenSharp.default; + } +}); +Object.defineProperty(exports, "SmartScreenTwoTone", { + enumerable: true, + get: function () { + return _SmartScreenTwoTone.default; + } +}); +Object.defineProperty(exports, "SmartToy", { + enumerable: true, + get: function () { + return _SmartToy.default; + } +}); +Object.defineProperty(exports, "SmartToyOutlined", { + enumerable: true, + get: function () { + return _SmartToyOutlined.default; + } +}); +Object.defineProperty(exports, "SmartToyRounded", { + enumerable: true, + get: function () { + return _SmartToyRounded.default; + } +}); +Object.defineProperty(exports, "SmartToySharp", { + enumerable: true, + get: function () { + return _SmartToySharp.default; + } +}); +Object.defineProperty(exports, "SmartToyTwoTone", { + enumerable: true, + get: function () { + return _SmartToyTwoTone.default; + } +}); +Object.defineProperty(exports, "Smartphone", { + enumerable: true, + get: function () { + return _Smartphone.default; + } +}); +Object.defineProperty(exports, "SmartphoneOutlined", { + enumerable: true, + get: function () { + return _SmartphoneOutlined.default; + } +}); +Object.defineProperty(exports, "SmartphoneRounded", { + enumerable: true, + get: function () { + return _SmartphoneRounded.default; + } +}); +Object.defineProperty(exports, "SmartphoneSharp", { + enumerable: true, + get: function () { + return _SmartphoneSharp.default; + } +}); +Object.defineProperty(exports, "SmartphoneTwoTone", { + enumerable: true, + get: function () { + return _SmartphoneTwoTone.default; + } +}); +Object.defineProperty(exports, "SmokeFree", { + enumerable: true, + get: function () { + return _SmokeFree.default; + } +}); +Object.defineProperty(exports, "SmokeFreeOutlined", { + enumerable: true, + get: function () { + return _SmokeFreeOutlined.default; + } +}); +Object.defineProperty(exports, "SmokeFreeRounded", { + enumerable: true, + get: function () { + return _SmokeFreeRounded.default; + } +}); +Object.defineProperty(exports, "SmokeFreeSharp", { + enumerable: true, + get: function () { + return _SmokeFreeSharp.default; + } +}); +Object.defineProperty(exports, "SmokeFreeTwoTone", { + enumerable: true, + get: function () { + return _SmokeFreeTwoTone.default; + } +}); +Object.defineProperty(exports, "SmokingRooms", { + enumerable: true, + get: function () { + return _SmokingRooms.default; + } +}); +Object.defineProperty(exports, "SmokingRoomsOutlined", { + enumerable: true, + get: function () { + return _SmokingRoomsOutlined.default; + } +}); +Object.defineProperty(exports, "SmokingRoomsRounded", { + enumerable: true, + get: function () { + return _SmokingRoomsRounded.default; + } +}); +Object.defineProperty(exports, "SmokingRoomsSharp", { + enumerable: true, + get: function () { + return _SmokingRoomsSharp.default; + } +}); +Object.defineProperty(exports, "SmokingRoomsTwoTone", { + enumerable: true, + get: function () { + return _SmokingRoomsTwoTone.default; + } +}); +Object.defineProperty(exports, "Sms", { + enumerable: true, + get: function () { + return _Sms.default; + } +}); +Object.defineProperty(exports, "SmsFailed", { + enumerable: true, + get: function () { + return _SmsFailed.default; + } +}); +Object.defineProperty(exports, "SmsFailedOutlined", { + enumerable: true, + get: function () { + return _SmsFailedOutlined.default; + } +}); +Object.defineProperty(exports, "SmsFailedRounded", { + enumerable: true, + get: function () { + return _SmsFailedRounded.default; + } +}); +Object.defineProperty(exports, "SmsFailedSharp", { + enumerable: true, + get: function () { + return _SmsFailedSharp.default; + } +}); +Object.defineProperty(exports, "SmsFailedTwoTone", { + enumerable: true, + get: function () { + return _SmsFailedTwoTone.default; + } +}); +Object.defineProperty(exports, "SmsOutlined", { + enumerable: true, + get: function () { + return _SmsOutlined.default; + } +}); +Object.defineProperty(exports, "SmsRounded", { + enumerable: true, + get: function () { + return _SmsRounded.default; + } +}); +Object.defineProperty(exports, "SmsSharp", { + enumerable: true, + get: function () { + return _SmsSharp.default; + } +}); +Object.defineProperty(exports, "SmsTwoTone", { + enumerable: true, + get: function () { + return _SmsTwoTone.default; + } +}); +Object.defineProperty(exports, "SnippetFolder", { + enumerable: true, + get: function () { + return _SnippetFolder.default; + } +}); +Object.defineProperty(exports, "SnippetFolderOutlined", { + enumerable: true, + get: function () { + return _SnippetFolderOutlined.default; + } +}); +Object.defineProperty(exports, "SnippetFolderRounded", { + enumerable: true, + get: function () { + return _SnippetFolderRounded.default; + } +}); +Object.defineProperty(exports, "SnippetFolderSharp", { + enumerable: true, + get: function () { + return _SnippetFolderSharp.default; + } +}); +Object.defineProperty(exports, "SnippetFolderTwoTone", { + enumerable: true, + get: function () { + return _SnippetFolderTwoTone.default; + } +}); +Object.defineProperty(exports, "Snooze", { + enumerable: true, + get: function () { + return _Snooze.default; + } +}); +Object.defineProperty(exports, "SnoozeOutlined", { + enumerable: true, + get: function () { + return _SnoozeOutlined.default; + } +}); +Object.defineProperty(exports, "SnoozeRounded", { + enumerable: true, + get: function () { + return _SnoozeRounded.default; + } +}); +Object.defineProperty(exports, "SnoozeSharp", { + enumerable: true, + get: function () { + return _SnoozeSharp.default; + } +}); +Object.defineProperty(exports, "SnoozeTwoTone", { + enumerable: true, + get: function () { + return _SnoozeTwoTone.default; + } +}); +Object.defineProperty(exports, "Snowboarding", { + enumerable: true, + get: function () { + return _Snowboarding.default; + } +}); +Object.defineProperty(exports, "SnowboardingOutlined", { + enumerable: true, + get: function () { + return _SnowboardingOutlined.default; + } +}); +Object.defineProperty(exports, "SnowboardingRounded", { + enumerable: true, + get: function () { + return _SnowboardingRounded.default; + } +}); +Object.defineProperty(exports, "SnowboardingSharp", { + enumerable: true, + get: function () { + return _SnowboardingSharp.default; + } +}); +Object.defineProperty(exports, "SnowboardingTwoTone", { + enumerable: true, + get: function () { + return _SnowboardingTwoTone.default; + } +}); +Object.defineProperty(exports, "Snowmobile", { + enumerable: true, + get: function () { + return _Snowmobile.default; + } +}); +Object.defineProperty(exports, "SnowmobileOutlined", { + enumerable: true, + get: function () { + return _SnowmobileOutlined.default; + } +}); +Object.defineProperty(exports, "SnowmobileRounded", { + enumerable: true, + get: function () { + return _SnowmobileRounded.default; + } +}); +Object.defineProperty(exports, "SnowmobileSharp", { + enumerable: true, + get: function () { + return _SnowmobileSharp.default; + } +}); +Object.defineProperty(exports, "SnowmobileTwoTone", { + enumerable: true, + get: function () { + return _SnowmobileTwoTone.default; + } +}); +Object.defineProperty(exports, "Snowshoeing", { + enumerable: true, + get: function () { + return _Snowshoeing.default; + } +}); +Object.defineProperty(exports, "SnowshoeingOutlined", { + enumerable: true, + get: function () { + return _SnowshoeingOutlined.default; + } +}); +Object.defineProperty(exports, "SnowshoeingRounded", { + enumerable: true, + get: function () { + return _SnowshoeingRounded.default; + } +}); +Object.defineProperty(exports, "SnowshoeingSharp", { + enumerable: true, + get: function () { + return _SnowshoeingSharp.default; + } +}); +Object.defineProperty(exports, "SnowshoeingTwoTone", { + enumerable: true, + get: function () { + return _SnowshoeingTwoTone.default; + } +}); +Object.defineProperty(exports, "Soap", { + enumerable: true, + get: function () { + return _Soap.default; + } +}); +Object.defineProperty(exports, "SoapOutlined", { + enumerable: true, + get: function () { + return _SoapOutlined.default; + } +}); +Object.defineProperty(exports, "SoapRounded", { + enumerable: true, + get: function () { + return _SoapRounded.default; + } +}); +Object.defineProperty(exports, "SoapSharp", { + enumerable: true, + get: function () { + return _SoapSharp.default; + } +}); +Object.defineProperty(exports, "SoapTwoTone", { + enumerable: true, + get: function () { + return _SoapTwoTone.default; + } +}); +Object.defineProperty(exports, "SocialDistance", { + enumerable: true, + get: function () { + return _SocialDistance.default; + } +}); +Object.defineProperty(exports, "SocialDistanceOutlined", { + enumerable: true, + get: function () { + return _SocialDistanceOutlined.default; + } +}); +Object.defineProperty(exports, "SocialDistanceRounded", { + enumerable: true, + get: function () { + return _SocialDistanceRounded.default; + } +}); +Object.defineProperty(exports, "SocialDistanceSharp", { + enumerable: true, + get: function () { + return _SocialDistanceSharp.default; + } +}); +Object.defineProperty(exports, "SocialDistanceTwoTone", { + enumerable: true, + get: function () { + return _SocialDistanceTwoTone.default; + } +}); +Object.defineProperty(exports, "Sort", { + enumerable: true, + get: function () { + return _Sort.default; + } +}); +Object.defineProperty(exports, "SortByAlpha", { + enumerable: true, + get: function () { + return _SortByAlpha.default; + } +}); +Object.defineProperty(exports, "SortByAlphaOutlined", { + enumerable: true, + get: function () { + return _SortByAlphaOutlined.default; + } +}); +Object.defineProperty(exports, "SortByAlphaRounded", { + enumerable: true, + get: function () { + return _SortByAlphaRounded.default; + } +}); +Object.defineProperty(exports, "SortByAlphaSharp", { + enumerable: true, + get: function () { + return _SortByAlphaSharp.default; + } +}); +Object.defineProperty(exports, "SortByAlphaTwoTone", { + enumerable: true, + get: function () { + return _SortByAlphaTwoTone.default; + } +}); +Object.defineProperty(exports, "SortOutlined", { + enumerable: true, + get: function () { + return _SortOutlined.default; + } +}); +Object.defineProperty(exports, "SortRounded", { + enumerable: true, + get: function () { + return _SortRounded.default; + } +}); +Object.defineProperty(exports, "SortSharp", { + enumerable: true, + get: function () { + return _SortSharp.default; + } +}); +Object.defineProperty(exports, "SortTwoTone", { + enumerable: true, + get: function () { + return _SortTwoTone.default; + } +}); +Object.defineProperty(exports, "Source", { + enumerable: true, + get: function () { + return _Source.default; + } +}); +Object.defineProperty(exports, "SourceOutlined", { + enumerable: true, + get: function () { + return _SourceOutlined.default; + } +}); +Object.defineProperty(exports, "SourceRounded", { + enumerable: true, + get: function () { + return _SourceRounded.default; + } +}); +Object.defineProperty(exports, "SourceSharp", { + enumerable: true, + get: function () { + return _SourceSharp.default; + } +}); +Object.defineProperty(exports, "SourceTwoTone", { + enumerable: true, + get: function () { + return _SourceTwoTone.default; + } +}); +Object.defineProperty(exports, "South", { + enumerable: true, + get: function () { + return _South.default; + } +}); +Object.defineProperty(exports, "SouthEast", { + enumerable: true, + get: function () { + return _SouthEast.default; + } +}); +Object.defineProperty(exports, "SouthEastOutlined", { + enumerable: true, + get: function () { + return _SouthEastOutlined.default; + } +}); +Object.defineProperty(exports, "SouthEastRounded", { + enumerable: true, + get: function () { + return _SouthEastRounded.default; + } +}); +Object.defineProperty(exports, "SouthEastSharp", { + enumerable: true, + get: function () { + return _SouthEastSharp.default; + } +}); +Object.defineProperty(exports, "SouthEastTwoTone", { + enumerable: true, + get: function () { + return _SouthEastTwoTone.default; + } +}); +Object.defineProperty(exports, "SouthOutlined", { + enumerable: true, + get: function () { + return _SouthOutlined.default; + } +}); +Object.defineProperty(exports, "SouthRounded", { + enumerable: true, + get: function () { + return _SouthRounded.default; + } +}); +Object.defineProperty(exports, "SouthSharp", { + enumerable: true, + get: function () { + return _SouthSharp.default; + } +}); +Object.defineProperty(exports, "SouthTwoTone", { + enumerable: true, + get: function () { + return _SouthTwoTone.default; + } +}); +Object.defineProperty(exports, "SouthWest", { + enumerable: true, + get: function () { + return _SouthWest.default; + } +}); +Object.defineProperty(exports, "SouthWestOutlined", { + enumerable: true, + get: function () { + return _SouthWestOutlined.default; + } +}); +Object.defineProperty(exports, "SouthWestRounded", { + enumerable: true, + get: function () { + return _SouthWestRounded.default; + } +}); +Object.defineProperty(exports, "SouthWestSharp", { + enumerable: true, + get: function () { + return _SouthWestSharp.default; + } +}); +Object.defineProperty(exports, "SouthWestTwoTone", { + enumerable: true, + get: function () { + return _SouthWestTwoTone.default; + } +}); +Object.defineProperty(exports, "Spa", { + enumerable: true, + get: function () { + return _Spa.default; + } +}); +Object.defineProperty(exports, "SpaOutlined", { + enumerable: true, + get: function () { + return _SpaOutlined.default; + } +}); +Object.defineProperty(exports, "SpaRounded", { + enumerable: true, + get: function () { + return _SpaRounded.default; + } +}); +Object.defineProperty(exports, "SpaSharp", { + enumerable: true, + get: function () { + return _SpaSharp.default; + } +}); +Object.defineProperty(exports, "SpaTwoTone", { + enumerable: true, + get: function () { + return _SpaTwoTone.default; + } +}); +Object.defineProperty(exports, "SpaceBar", { + enumerable: true, + get: function () { + return _SpaceBar.default; + } +}); +Object.defineProperty(exports, "SpaceBarOutlined", { + enumerable: true, + get: function () { + return _SpaceBarOutlined.default; + } +}); +Object.defineProperty(exports, "SpaceBarRounded", { + enumerable: true, + get: function () { + return _SpaceBarRounded.default; + } +}); +Object.defineProperty(exports, "SpaceBarSharp", { + enumerable: true, + get: function () { + return _SpaceBarSharp.default; + } +}); +Object.defineProperty(exports, "SpaceBarTwoTone", { + enumerable: true, + get: function () { + return _SpaceBarTwoTone.default; + } +}); +Object.defineProperty(exports, "Speaker", { + enumerable: true, + get: function () { + return _Speaker.default; + } +}); +Object.defineProperty(exports, "SpeakerGroup", { + enumerable: true, + get: function () { + return _SpeakerGroup.default; + } +}); +Object.defineProperty(exports, "SpeakerGroupOutlined", { + enumerable: true, + get: function () { + return _SpeakerGroupOutlined.default; + } +}); +Object.defineProperty(exports, "SpeakerGroupRounded", { + enumerable: true, + get: function () { + return _SpeakerGroupRounded.default; + } +}); +Object.defineProperty(exports, "SpeakerGroupSharp", { + enumerable: true, + get: function () { + return _SpeakerGroupSharp.default; + } +}); +Object.defineProperty(exports, "SpeakerGroupTwoTone", { + enumerable: true, + get: function () { + return _SpeakerGroupTwoTone.default; + } +}); +Object.defineProperty(exports, "SpeakerNotes", { + enumerable: true, + get: function () { + return _SpeakerNotes.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesOff", { + enumerable: true, + get: function () { + return _SpeakerNotesOff.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesOffOutlined", { + enumerable: true, + get: function () { + return _SpeakerNotesOffOutlined.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesOffRounded", { + enumerable: true, + get: function () { + return _SpeakerNotesOffRounded.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesOffSharp", { + enumerable: true, + get: function () { + return _SpeakerNotesOffSharp.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesOffTwoTone", { + enumerable: true, + get: function () { + return _SpeakerNotesOffTwoTone.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesOutlined", { + enumerable: true, + get: function () { + return _SpeakerNotesOutlined.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesRounded", { + enumerable: true, + get: function () { + return _SpeakerNotesRounded.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesSharp", { + enumerable: true, + get: function () { + return _SpeakerNotesSharp.default; + } +}); +Object.defineProperty(exports, "SpeakerNotesTwoTone", { + enumerable: true, + get: function () { + return _SpeakerNotesTwoTone.default; + } +}); +Object.defineProperty(exports, "SpeakerOutlined", { + enumerable: true, + get: function () { + return _SpeakerOutlined.default; + } +}); +Object.defineProperty(exports, "SpeakerPhone", { + enumerable: true, + get: function () { + return _SpeakerPhone.default; + } +}); +Object.defineProperty(exports, "SpeakerPhoneOutlined", { + enumerable: true, + get: function () { + return _SpeakerPhoneOutlined.default; + } +}); +Object.defineProperty(exports, "SpeakerPhoneRounded", { + enumerable: true, + get: function () { + return _SpeakerPhoneRounded.default; + } +}); +Object.defineProperty(exports, "SpeakerPhoneSharp", { + enumerable: true, + get: function () { + return _SpeakerPhoneSharp.default; + } +}); +Object.defineProperty(exports, "SpeakerPhoneTwoTone", { + enumerable: true, + get: function () { + return _SpeakerPhoneTwoTone.default; + } +}); +Object.defineProperty(exports, "SpeakerRounded", { + enumerable: true, + get: function () { + return _SpeakerRounded.default; + } +}); +Object.defineProperty(exports, "SpeakerSharp", { + enumerable: true, + get: function () { + return _SpeakerSharp.default; + } +}); +Object.defineProperty(exports, "SpeakerTwoTone", { + enumerable: true, + get: function () { + return _SpeakerTwoTone.default; + } +}); +Object.defineProperty(exports, "Speed", { + enumerable: true, + get: function () { + return _Speed.default; + } +}); +Object.defineProperty(exports, "SpeedOutlined", { + enumerable: true, + get: function () { + return _SpeedOutlined.default; + } +}); +Object.defineProperty(exports, "SpeedRounded", { + enumerable: true, + get: function () { + return _SpeedRounded.default; + } +}); +Object.defineProperty(exports, "SpeedSharp", { + enumerable: true, + get: function () { + return _SpeedSharp.default; + } +}); +Object.defineProperty(exports, "SpeedTwoTone", { + enumerable: true, + get: function () { + return _SpeedTwoTone.default; + } +}); +Object.defineProperty(exports, "Spellcheck", { + enumerable: true, + get: function () { + return _Spellcheck.default; + } +}); +Object.defineProperty(exports, "SpellcheckOutlined", { + enumerable: true, + get: function () { + return _SpellcheckOutlined.default; + } +}); +Object.defineProperty(exports, "SpellcheckRounded", { + enumerable: true, + get: function () { + return _SpellcheckRounded.default; + } +}); +Object.defineProperty(exports, "SpellcheckSharp", { + enumerable: true, + get: function () { + return _SpellcheckSharp.default; + } +}); +Object.defineProperty(exports, "SpellcheckTwoTone", { + enumerable: true, + get: function () { + return _SpellcheckTwoTone.default; + } +}); +Object.defineProperty(exports, "Splitscreen", { + enumerable: true, + get: function () { + return _Splitscreen.default; + } +}); +Object.defineProperty(exports, "SplitscreenOutlined", { + enumerable: true, + get: function () { + return _SplitscreenOutlined.default; + } +}); +Object.defineProperty(exports, "SplitscreenRounded", { + enumerable: true, + get: function () { + return _SplitscreenRounded.default; + } +}); +Object.defineProperty(exports, "SplitscreenSharp", { + enumerable: true, + get: function () { + return _SplitscreenSharp.default; + } +}); +Object.defineProperty(exports, "SplitscreenTwoTone", { + enumerable: true, + get: function () { + return _SplitscreenTwoTone.default; + } +}); +Object.defineProperty(exports, "Sports", { + enumerable: true, + get: function () { + return _Sports.default; + } +}); +Object.defineProperty(exports, "SportsBar", { + enumerable: true, + get: function () { + return _SportsBar.default; + } +}); +Object.defineProperty(exports, "SportsBarOutlined", { + enumerable: true, + get: function () { + return _SportsBarOutlined.default; + } +}); +Object.defineProperty(exports, "SportsBarRounded", { + enumerable: true, + get: function () { + return _SportsBarRounded.default; + } +}); +Object.defineProperty(exports, "SportsBarSharp", { + enumerable: true, + get: function () { + return _SportsBarSharp.default; + } +}); +Object.defineProperty(exports, "SportsBarTwoTone", { + enumerable: true, + get: function () { + return _SportsBarTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsBaseball", { + enumerable: true, + get: function () { + return _SportsBaseball.default; + } +}); +Object.defineProperty(exports, "SportsBaseballOutlined", { + enumerable: true, + get: function () { + return _SportsBaseballOutlined.default; + } +}); +Object.defineProperty(exports, "SportsBaseballRounded", { + enumerable: true, + get: function () { + return _SportsBaseballRounded.default; + } +}); +Object.defineProperty(exports, "SportsBaseballSharp", { + enumerable: true, + get: function () { + return _SportsBaseballSharp.default; + } +}); +Object.defineProperty(exports, "SportsBaseballTwoTone", { + enumerable: true, + get: function () { + return _SportsBaseballTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsBasketball", { + enumerable: true, + get: function () { + return _SportsBasketball.default; + } +}); +Object.defineProperty(exports, "SportsBasketballOutlined", { + enumerable: true, + get: function () { + return _SportsBasketballOutlined.default; + } +}); +Object.defineProperty(exports, "SportsBasketballRounded", { + enumerable: true, + get: function () { + return _SportsBasketballRounded.default; + } +}); +Object.defineProperty(exports, "SportsBasketballSharp", { + enumerable: true, + get: function () { + return _SportsBasketballSharp.default; + } +}); +Object.defineProperty(exports, "SportsBasketballTwoTone", { + enumerable: true, + get: function () { + return _SportsBasketballTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsCricket", { + enumerable: true, + get: function () { + return _SportsCricket.default; + } +}); +Object.defineProperty(exports, "SportsCricketOutlined", { + enumerable: true, + get: function () { + return _SportsCricketOutlined.default; + } +}); +Object.defineProperty(exports, "SportsCricketRounded", { + enumerable: true, + get: function () { + return _SportsCricketRounded.default; + } +}); +Object.defineProperty(exports, "SportsCricketSharp", { + enumerable: true, + get: function () { + return _SportsCricketSharp.default; + } +}); +Object.defineProperty(exports, "SportsCricketTwoTone", { + enumerable: true, + get: function () { + return _SportsCricketTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsEsports", { + enumerable: true, + get: function () { + return _SportsEsports.default; + } +}); +Object.defineProperty(exports, "SportsEsportsOutlined", { + enumerable: true, + get: function () { + return _SportsEsportsOutlined.default; + } +}); +Object.defineProperty(exports, "SportsEsportsRounded", { + enumerable: true, + get: function () { + return _SportsEsportsRounded.default; + } +}); +Object.defineProperty(exports, "SportsEsportsSharp", { + enumerable: true, + get: function () { + return _SportsEsportsSharp.default; + } +}); +Object.defineProperty(exports, "SportsEsportsTwoTone", { + enumerable: true, + get: function () { + return _SportsEsportsTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsFootball", { + enumerable: true, + get: function () { + return _SportsFootball.default; + } +}); +Object.defineProperty(exports, "SportsFootballOutlined", { + enumerable: true, + get: function () { + return _SportsFootballOutlined.default; + } +}); +Object.defineProperty(exports, "SportsFootballRounded", { + enumerable: true, + get: function () { + return _SportsFootballRounded.default; + } +}); +Object.defineProperty(exports, "SportsFootballSharp", { + enumerable: true, + get: function () { + return _SportsFootballSharp.default; + } +}); +Object.defineProperty(exports, "SportsFootballTwoTone", { + enumerable: true, + get: function () { + return _SportsFootballTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsGolf", { + enumerable: true, + get: function () { + return _SportsGolf.default; + } +}); +Object.defineProperty(exports, "SportsGolfOutlined", { + enumerable: true, + get: function () { + return _SportsGolfOutlined.default; + } +}); +Object.defineProperty(exports, "SportsGolfRounded", { + enumerable: true, + get: function () { + return _SportsGolfRounded.default; + } +}); +Object.defineProperty(exports, "SportsGolfSharp", { + enumerable: true, + get: function () { + return _SportsGolfSharp.default; + } +}); +Object.defineProperty(exports, "SportsGolfTwoTone", { + enumerable: true, + get: function () { + return _SportsGolfTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsHandball", { + enumerable: true, + get: function () { + return _SportsHandball.default; + } +}); +Object.defineProperty(exports, "SportsHandballOutlined", { + enumerable: true, + get: function () { + return _SportsHandballOutlined.default; + } +}); +Object.defineProperty(exports, "SportsHandballRounded", { + enumerable: true, + get: function () { + return _SportsHandballRounded.default; + } +}); +Object.defineProperty(exports, "SportsHandballSharp", { + enumerable: true, + get: function () { + return _SportsHandballSharp.default; + } +}); +Object.defineProperty(exports, "SportsHandballTwoTone", { + enumerable: true, + get: function () { + return _SportsHandballTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsHockey", { + enumerable: true, + get: function () { + return _SportsHockey.default; + } +}); +Object.defineProperty(exports, "SportsHockeyOutlined", { + enumerable: true, + get: function () { + return _SportsHockeyOutlined.default; + } +}); +Object.defineProperty(exports, "SportsHockeyRounded", { + enumerable: true, + get: function () { + return _SportsHockeyRounded.default; + } +}); +Object.defineProperty(exports, "SportsHockeySharp", { + enumerable: true, + get: function () { + return _SportsHockeySharp.default; + } +}); +Object.defineProperty(exports, "SportsHockeyTwoTone", { + enumerable: true, + get: function () { + return _SportsHockeyTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsKabaddi", { + enumerable: true, + get: function () { + return _SportsKabaddi.default; + } +}); +Object.defineProperty(exports, "SportsKabaddiOutlined", { + enumerable: true, + get: function () { + return _SportsKabaddiOutlined.default; + } +}); +Object.defineProperty(exports, "SportsKabaddiRounded", { + enumerable: true, + get: function () { + return _SportsKabaddiRounded.default; + } +}); +Object.defineProperty(exports, "SportsKabaddiSharp", { + enumerable: true, + get: function () { + return _SportsKabaddiSharp.default; + } +}); +Object.defineProperty(exports, "SportsKabaddiTwoTone", { + enumerable: true, + get: function () { + return _SportsKabaddiTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsMma", { + enumerable: true, + get: function () { + return _SportsMma.default; + } +}); +Object.defineProperty(exports, "SportsMmaOutlined", { + enumerable: true, + get: function () { + return _SportsMmaOutlined.default; + } +}); +Object.defineProperty(exports, "SportsMmaRounded", { + enumerable: true, + get: function () { + return _SportsMmaRounded.default; + } +}); +Object.defineProperty(exports, "SportsMmaSharp", { + enumerable: true, + get: function () { + return _SportsMmaSharp.default; + } +}); +Object.defineProperty(exports, "SportsMmaTwoTone", { + enumerable: true, + get: function () { + return _SportsMmaTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsMotorsports", { + enumerable: true, + get: function () { + return _SportsMotorsports.default; + } +}); +Object.defineProperty(exports, "SportsMotorsportsOutlined", { + enumerable: true, + get: function () { + return _SportsMotorsportsOutlined.default; + } +}); +Object.defineProperty(exports, "SportsMotorsportsRounded", { + enumerable: true, + get: function () { + return _SportsMotorsportsRounded.default; + } +}); +Object.defineProperty(exports, "SportsMotorsportsSharp", { + enumerable: true, + get: function () { + return _SportsMotorsportsSharp.default; + } +}); +Object.defineProperty(exports, "SportsMotorsportsTwoTone", { + enumerable: true, + get: function () { + return _SportsMotorsportsTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsOutlined", { + enumerable: true, + get: function () { + return _SportsOutlined.default; + } +}); +Object.defineProperty(exports, "SportsRounded", { + enumerable: true, + get: function () { + return _SportsRounded.default; + } +}); +Object.defineProperty(exports, "SportsRugby", { + enumerable: true, + get: function () { + return _SportsRugby.default; + } +}); +Object.defineProperty(exports, "SportsRugbyOutlined", { + enumerable: true, + get: function () { + return _SportsRugbyOutlined.default; + } +}); +Object.defineProperty(exports, "SportsRugbyRounded", { + enumerable: true, + get: function () { + return _SportsRugbyRounded.default; + } +}); +Object.defineProperty(exports, "SportsRugbySharp", { + enumerable: true, + get: function () { + return _SportsRugbySharp.default; + } +}); +Object.defineProperty(exports, "SportsRugbyTwoTone", { + enumerable: true, + get: function () { + return _SportsRugbyTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsScore", { + enumerable: true, + get: function () { + return _SportsScore.default; + } +}); +Object.defineProperty(exports, "SportsScoreOutlined", { + enumerable: true, + get: function () { + return _SportsScoreOutlined.default; + } +}); +Object.defineProperty(exports, "SportsScoreRounded", { + enumerable: true, + get: function () { + return _SportsScoreRounded.default; + } +}); +Object.defineProperty(exports, "SportsScoreSharp", { + enumerable: true, + get: function () { + return _SportsScoreSharp.default; + } +}); +Object.defineProperty(exports, "SportsScoreTwoTone", { + enumerable: true, + get: function () { + return _SportsScoreTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsSharp", { + enumerable: true, + get: function () { + return _SportsSharp.default; + } +}); +Object.defineProperty(exports, "SportsSoccer", { + enumerable: true, + get: function () { + return _SportsSoccer.default; + } +}); +Object.defineProperty(exports, "SportsSoccerOutlined", { + enumerable: true, + get: function () { + return _SportsSoccerOutlined.default; + } +}); +Object.defineProperty(exports, "SportsSoccerRounded", { + enumerable: true, + get: function () { + return _SportsSoccerRounded.default; + } +}); +Object.defineProperty(exports, "SportsSoccerSharp", { + enumerable: true, + get: function () { + return _SportsSoccerSharp.default; + } +}); +Object.defineProperty(exports, "SportsSoccerTwoTone", { + enumerable: true, + get: function () { + return _SportsSoccerTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsTennis", { + enumerable: true, + get: function () { + return _SportsTennis.default; + } +}); +Object.defineProperty(exports, "SportsTennisOutlined", { + enumerable: true, + get: function () { + return _SportsTennisOutlined.default; + } +}); +Object.defineProperty(exports, "SportsTennisRounded", { + enumerable: true, + get: function () { + return _SportsTennisRounded.default; + } +}); +Object.defineProperty(exports, "SportsTennisSharp", { + enumerable: true, + get: function () { + return _SportsTennisSharp.default; + } +}); +Object.defineProperty(exports, "SportsTennisTwoTone", { + enumerable: true, + get: function () { + return _SportsTennisTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsTwoTone", { + enumerable: true, + get: function () { + return _SportsTwoTone.default; + } +}); +Object.defineProperty(exports, "SportsVolleyball", { + enumerable: true, + get: function () { + return _SportsVolleyball.default; + } +}); +Object.defineProperty(exports, "SportsVolleyballOutlined", { + enumerable: true, + get: function () { + return _SportsVolleyballOutlined.default; + } +}); +Object.defineProperty(exports, "SportsVolleyballRounded", { + enumerable: true, + get: function () { + return _SportsVolleyballRounded.default; + } +}); +Object.defineProperty(exports, "SportsVolleyballSharp", { + enumerable: true, + get: function () { + return _SportsVolleyballSharp.default; + } +}); +Object.defineProperty(exports, "SportsVolleyballTwoTone", { + enumerable: true, + get: function () { + return _SportsVolleyballTwoTone.default; + } +}); +Object.defineProperty(exports, "SquareFoot", { + enumerable: true, + get: function () { + return _SquareFoot.default; + } +}); +Object.defineProperty(exports, "SquareFootOutlined", { + enumerable: true, + get: function () { + return _SquareFootOutlined.default; + } +}); +Object.defineProperty(exports, "SquareFootRounded", { + enumerable: true, + get: function () { + return _SquareFootRounded.default; + } +}); +Object.defineProperty(exports, "SquareFootSharp", { + enumerable: true, + get: function () { + return _SquareFootSharp.default; + } +}); +Object.defineProperty(exports, "SquareFootTwoTone", { + enumerable: true, + get: function () { + return _SquareFootTwoTone.default; + } +}); +Object.defineProperty(exports, "StackedBarChart", { + enumerable: true, + get: function () { + return _StackedBarChart.default; + } +}); +Object.defineProperty(exports, "StackedBarChartOutlined", { + enumerable: true, + get: function () { + return _StackedBarChartOutlined.default; + } +}); +Object.defineProperty(exports, "StackedBarChartRounded", { + enumerable: true, + get: function () { + return _StackedBarChartRounded.default; + } +}); +Object.defineProperty(exports, "StackedBarChartSharp", { + enumerable: true, + get: function () { + return _StackedBarChartSharp.default; + } +}); +Object.defineProperty(exports, "StackedBarChartTwoTone", { + enumerable: true, + get: function () { + return _StackedBarChartTwoTone.default; + } +}); +Object.defineProperty(exports, "StackedLineChart", { + enumerable: true, + get: function () { + return _StackedLineChart.default; + } +}); +Object.defineProperty(exports, "StackedLineChartOutlined", { + enumerable: true, + get: function () { + return _StackedLineChartOutlined.default; + } +}); +Object.defineProperty(exports, "StackedLineChartRounded", { + enumerable: true, + get: function () { + return _StackedLineChartRounded.default; + } +}); +Object.defineProperty(exports, "StackedLineChartSharp", { + enumerable: true, + get: function () { + return _StackedLineChartSharp.default; + } +}); +Object.defineProperty(exports, "StackedLineChartTwoTone", { + enumerable: true, + get: function () { + return _StackedLineChartTwoTone.default; + } +}); +Object.defineProperty(exports, "Stairs", { + enumerable: true, + get: function () { + return _Stairs.default; + } +}); +Object.defineProperty(exports, "StairsOutlined", { + enumerable: true, + get: function () { + return _StairsOutlined.default; + } +}); +Object.defineProperty(exports, "StairsRounded", { + enumerable: true, + get: function () { + return _StairsRounded.default; + } +}); +Object.defineProperty(exports, "StairsSharp", { + enumerable: true, + get: function () { + return _StairsSharp.default; + } +}); +Object.defineProperty(exports, "StairsTwoTone", { + enumerable: true, + get: function () { + return _StairsTwoTone.default; + } +}); +Object.defineProperty(exports, "Star", { + enumerable: true, + get: function () { + return _Star.default; + } +}); +Object.defineProperty(exports, "StarBorder", { + enumerable: true, + get: function () { + return _StarBorder.default; + } +}); +Object.defineProperty(exports, "StarBorderOutlined", { + enumerable: true, + get: function () { + return _StarBorderOutlined.default; + } +}); +Object.defineProperty(exports, "StarBorderPurple500", { + enumerable: true, + get: function () { + return _StarBorderPurple.default; + } +}); +Object.defineProperty(exports, "StarBorderPurple500Outlined", { + enumerable: true, + get: function () { + return _StarBorderPurple500Outlined.default; + } +}); +Object.defineProperty(exports, "StarBorderPurple500Rounded", { + enumerable: true, + get: function () { + return _StarBorderPurple500Rounded.default; + } +}); +Object.defineProperty(exports, "StarBorderPurple500Sharp", { + enumerable: true, + get: function () { + return _StarBorderPurple500Sharp.default; + } +}); +Object.defineProperty(exports, "StarBorderPurple500TwoTone", { + enumerable: true, + get: function () { + return _StarBorderPurple500TwoTone.default; + } +}); +Object.defineProperty(exports, "StarBorderRounded", { + enumerable: true, + get: function () { + return _StarBorderRounded.default; + } +}); +Object.defineProperty(exports, "StarBorderSharp", { + enumerable: true, + get: function () { + return _StarBorderSharp.default; + } +}); +Object.defineProperty(exports, "StarBorderTwoTone", { + enumerable: true, + get: function () { + return _StarBorderTwoTone.default; + } +}); +Object.defineProperty(exports, "StarHalf", { + enumerable: true, + get: function () { + return _StarHalf.default; + } +}); +Object.defineProperty(exports, "StarHalfOutlined", { + enumerable: true, + get: function () { + return _StarHalfOutlined.default; + } +}); +Object.defineProperty(exports, "StarHalfRounded", { + enumerable: true, + get: function () { + return _StarHalfRounded.default; + } +}); +Object.defineProperty(exports, "StarHalfSharp", { + enumerable: true, + get: function () { + return _StarHalfSharp.default; + } +}); +Object.defineProperty(exports, "StarHalfTwoTone", { + enumerable: true, + get: function () { + return _StarHalfTwoTone.default; + } +}); +Object.defineProperty(exports, "StarOutline", { + enumerable: true, + get: function () { + return _StarOutline.default; + } +}); +Object.defineProperty(exports, "StarOutlineOutlined", { + enumerable: true, + get: function () { + return _StarOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "StarOutlineRounded", { + enumerable: true, + get: function () { + return _StarOutlineRounded.default; + } +}); +Object.defineProperty(exports, "StarOutlineSharp", { + enumerable: true, + get: function () { + return _StarOutlineSharp.default; + } +}); +Object.defineProperty(exports, "StarOutlineTwoTone", { + enumerable: true, + get: function () { + return _StarOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "StarOutlined", { + enumerable: true, + get: function () { + return _StarOutlined.default; + } +}); +Object.defineProperty(exports, "StarPurple500", { + enumerable: true, + get: function () { + return _StarPurple.default; + } +}); +Object.defineProperty(exports, "StarPurple500Outlined", { + enumerable: true, + get: function () { + return _StarPurple500Outlined.default; + } +}); +Object.defineProperty(exports, "StarPurple500Rounded", { + enumerable: true, + get: function () { + return _StarPurple500Rounded.default; + } +}); +Object.defineProperty(exports, "StarPurple500Sharp", { + enumerable: true, + get: function () { + return _StarPurple500Sharp.default; + } +}); +Object.defineProperty(exports, "StarPurple500TwoTone", { + enumerable: true, + get: function () { + return _StarPurple500TwoTone.default; + } +}); +Object.defineProperty(exports, "StarRate", { + enumerable: true, + get: function () { + return _StarRate.default; + } +}); +Object.defineProperty(exports, "StarRateOutlined", { + enumerable: true, + get: function () { + return _StarRateOutlined.default; + } +}); +Object.defineProperty(exports, "StarRateRounded", { + enumerable: true, + get: function () { + return _StarRateRounded.default; + } +}); +Object.defineProperty(exports, "StarRateSharp", { + enumerable: true, + get: function () { + return _StarRateSharp.default; + } +}); +Object.defineProperty(exports, "StarRateTwoTone", { + enumerable: true, + get: function () { + return _StarRateTwoTone.default; + } +}); +Object.defineProperty(exports, "StarRounded", { + enumerable: true, + get: function () { + return _StarRounded.default; + } +}); +Object.defineProperty(exports, "StarSharp", { + enumerable: true, + get: function () { + return _StarSharp.default; + } +}); +Object.defineProperty(exports, "StarTwoTone", { + enumerable: true, + get: function () { + return _StarTwoTone.default; + } +}); +Object.defineProperty(exports, "Stars", { + enumerable: true, + get: function () { + return _Stars.default; + } +}); +Object.defineProperty(exports, "StarsOutlined", { + enumerable: true, + get: function () { + return _StarsOutlined.default; + } +}); +Object.defineProperty(exports, "StarsRounded", { + enumerable: true, + get: function () { + return _StarsRounded.default; + } +}); +Object.defineProperty(exports, "StarsSharp", { + enumerable: true, + get: function () { + return _StarsSharp.default; + } +}); +Object.defineProperty(exports, "StarsTwoTone", { + enumerable: true, + get: function () { + return _StarsTwoTone.default; + } +}); +Object.defineProperty(exports, "StayCurrentLandscape", { + enumerable: true, + get: function () { + return _StayCurrentLandscape.default; + } +}); +Object.defineProperty(exports, "StayCurrentLandscapeOutlined", { + enumerable: true, + get: function () { + return _StayCurrentLandscapeOutlined.default; + } +}); +Object.defineProperty(exports, "StayCurrentLandscapeRounded", { + enumerable: true, + get: function () { + return _StayCurrentLandscapeRounded.default; + } +}); +Object.defineProperty(exports, "StayCurrentLandscapeSharp", { + enumerable: true, + get: function () { + return _StayCurrentLandscapeSharp.default; + } +}); +Object.defineProperty(exports, "StayCurrentLandscapeTwoTone", { + enumerable: true, + get: function () { + return _StayCurrentLandscapeTwoTone.default; + } +}); +Object.defineProperty(exports, "StayCurrentPortrait", { + enumerable: true, + get: function () { + return _StayCurrentPortrait.default; + } +}); +Object.defineProperty(exports, "StayCurrentPortraitOutlined", { + enumerable: true, + get: function () { + return _StayCurrentPortraitOutlined.default; + } +}); +Object.defineProperty(exports, "StayCurrentPortraitRounded", { + enumerable: true, + get: function () { + return _StayCurrentPortraitRounded.default; + } +}); +Object.defineProperty(exports, "StayCurrentPortraitSharp", { + enumerable: true, + get: function () { + return _StayCurrentPortraitSharp.default; + } +}); +Object.defineProperty(exports, "StayCurrentPortraitTwoTone", { + enumerable: true, + get: function () { + return _StayCurrentPortraitTwoTone.default; + } +}); +Object.defineProperty(exports, "StayPrimaryLandscape", { + enumerable: true, + get: function () { + return _StayPrimaryLandscape.default; + } +}); +Object.defineProperty(exports, "StayPrimaryLandscapeOutlined", { + enumerable: true, + get: function () { + return _StayPrimaryLandscapeOutlined.default; + } +}); +Object.defineProperty(exports, "StayPrimaryLandscapeRounded", { + enumerable: true, + get: function () { + return _StayPrimaryLandscapeRounded.default; + } +}); +Object.defineProperty(exports, "StayPrimaryLandscapeSharp", { + enumerable: true, + get: function () { + return _StayPrimaryLandscapeSharp.default; + } +}); +Object.defineProperty(exports, "StayPrimaryLandscapeTwoTone", { + enumerable: true, + get: function () { + return _StayPrimaryLandscapeTwoTone.default; + } +}); +Object.defineProperty(exports, "StayPrimaryPortrait", { + enumerable: true, + get: function () { + return _StayPrimaryPortrait.default; + } +}); +Object.defineProperty(exports, "StayPrimaryPortraitOutlined", { + enumerable: true, + get: function () { + return _StayPrimaryPortraitOutlined.default; + } +}); +Object.defineProperty(exports, "StayPrimaryPortraitRounded", { + enumerable: true, + get: function () { + return _StayPrimaryPortraitRounded.default; + } +}); +Object.defineProperty(exports, "StayPrimaryPortraitSharp", { + enumerable: true, + get: function () { + return _StayPrimaryPortraitSharp.default; + } +}); +Object.defineProperty(exports, "StayPrimaryPortraitTwoTone", { + enumerable: true, + get: function () { + return _StayPrimaryPortraitTwoTone.default; + } +}); +Object.defineProperty(exports, "StickyNote2", { + enumerable: true, + get: function () { + return _StickyNote.default; + } +}); +Object.defineProperty(exports, "StickyNote2Outlined", { + enumerable: true, + get: function () { + return _StickyNote2Outlined.default; + } +}); +Object.defineProperty(exports, "StickyNote2Rounded", { + enumerable: true, + get: function () { + return _StickyNote2Rounded.default; + } +}); +Object.defineProperty(exports, "StickyNote2Sharp", { + enumerable: true, + get: function () { + return _StickyNote2Sharp.default; + } +}); +Object.defineProperty(exports, "StickyNote2TwoTone", { + enumerable: true, + get: function () { + return _StickyNote2TwoTone.default; + } +}); +Object.defineProperty(exports, "Stop", { + enumerable: true, + get: function () { + return _Stop.default; + } +}); +Object.defineProperty(exports, "StopCircle", { + enumerable: true, + get: function () { + return _StopCircle.default; + } +}); +Object.defineProperty(exports, "StopCircleOutlined", { + enumerable: true, + get: function () { + return _StopCircleOutlined.default; + } +}); +Object.defineProperty(exports, "StopCircleRounded", { + enumerable: true, + get: function () { + return _StopCircleRounded.default; + } +}); +Object.defineProperty(exports, "StopCircleSharp", { + enumerable: true, + get: function () { + return _StopCircleSharp.default; + } +}); +Object.defineProperty(exports, "StopCircleTwoTone", { + enumerable: true, + get: function () { + return _StopCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "StopOutlined", { + enumerable: true, + get: function () { + return _StopOutlined.default; + } +}); +Object.defineProperty(exports, "StopRounded", { + enumerable: true, + get: function () { + return _StopRounded.default; + } +}); +Object.defineProperty(exports, "StopScreenShare", { + enumerable: true, + get: function () { + return _StopScreenShare.default; + } +}); +Object.defineProperty(exports, "StopScreenShareOutlined", { + enumerable: true, + get: function () { + return _StopScreenShareOutlined.default; + } +}); +Object.defineProperty(exports, "StopScreenShareRounded", { + enumerable: true, + get: function () { + return _StopScreenShareRounded.default; + } +}); +Object.defineProperty(exports, "StopScreenShareSharp", { + enumerable: true, + get: function () { + return _StopScreenShareSharp.default; + } +}); +Object.defineProperty(exports, "StopScreenShareTwoTone", { + enumerable: true, + get: function () { + return _StopScreenShareTwoTone.default; + } +}); +Object.defineProperty(exports, "StopSharp", { + enumerable: true, + get: function () { + return _StopSharp.default; + } +}); +Object.defineProperty(exports, "StopTwoTone", { + enumerable: true, + get: function () { + return _StopTwoTone.default; + } +}); +Object.defineProperty(exports, "Storage", { + enumerable: true, + get: function () { + return _Storage.default; + } +}); +Object.defineProperty(exports, "StorageOutlined", { + enumerable: true, + get: function () { + return _StorageOutlined.default; + } +}); +Object.defineProperty(exports, "StorageRounded", { + enumerable: true, + get: function () { + return _StorageRounded.default; + } +}); +Object.defineProperty(exports, "StorageSharp", { + enumerable: true, + get: function () { + return _StorageSharp.default; + } +}); +Object.defineProperty(exports, "StorageTwoTone", { + enumerable: true, + get: function () { + return _StorageTwoTone.default; + } +}); +Object.defineProperty(exports, "Store", { + enumerable: true, + get: function () { + return _Store.default; + } +}); +Object.defineProperty(exports, "StoreMallDirectory", { + enumerable: true, + get: function () { + return _StoreMallDirectory.default; + } +}); +Object.defineProperty(exports, "StoreMallDirectoryOutlined", { + enumerable: true, + get: function () { + return _StoreMallDirectoryOutlined.default; + } +}); +Object.defineProperty(exports, "StoreMallDirectoryRounded", { + enumerable: true, + get: function () { + return _StoreMallDirectoryRounded.default; + } +}); +Object.defineProperty(exports, "StoreMallDirectorySharp", { + enumerable: true, + get: function () { + return _StoreMallDirectorySharp.default; + } +}); +Object.defineProperty(exports, "StoreMallDirectoryTwoTone", { + enumerable: true, + get: function () { + return _StoreMallDirectoryTwoTone.default; + } +}); +Object.defineProperty(exports, "StoreOutlined", { + enumerable: true, + get: function () { + return _StoreOutlined.default; + } +}); +Object.defineProperty(exports, "StoreRounded", { + enumerable: true, + get: function () { + return _StoreRounded.default; + } +}); +Object.defineProperty(exports, "StoreSharp", { + enumerable: true, + get: function () { + return _StoreSharp.default; + } +}); +Object.defineProperty(exports, "StoreTwoTone", { + enumerable: true, + get: function () { + return _StoreTwoTone.default; + } +}); +Object.defineProperty(exports, "Storefront", { + enumerable: true, + get: function () { + return _Storefront.default; + } +}); +Object.defineProperty(exports, "StorefrontOutlined", { + enumerable: true, + get: function () { + return _StorefrontOutlined.default; + } +}); +Object.defineProperty(exports, "StorefrontRounded", { + enumerable: true, + get: function () { + return _StorefrontRounded.default; + } +}); +Object.defineProperty(exports, "StorefrontSharp", { + enumerable: true, + get: function () { + return _StorefrontSharp.default; + } +}); +Object.defineProperty(exports, "StorefrontTwoTone", { + enumerable: true, + get: function () { + return _StorefrontTwoTone.default; + } +}); +Object.defineProperty(exports, "Storm", { + enumerable: true, + get: function () { + return _Storm.default; + } +}); +Object.defineProperty(exports, "StormOutlined", { + enumerable: true, + get: function () { + return _StormOutlined.default; + } +}); +Object.defineProperty(exports, "StormRounded", { + enumerable: true, + get: function () { + return _StormRounded.default; + } +}); +Object.defineProperty(exports, "StormSharp", { + enumerable: true, + get: function () { + return _StormSharp.default; + } +}); +Object.defineProperty(exports, "StormTwoTone", { + enumerable: true, + get: function () { + return _StormTwoTone.default; + } +}); +Object.defineProperty(exports, "Straighten", { + enumerable: true, + get: function () { + return _Straighten.default; + } +}); +Object.defineProperty(exports, "StraightenOutlined", { + enumerable: true, + get: function () { + return _StraightenOutlined.default; + } +}); +Object.defineProperty(exports, "StraightenRounded", { + enumerable: true, + get: function () { + return _StraightenRounded.default; + } +}); +Object.defineProperty(exports, "StraightenSharp", { + enumerable: true, + get: function () { + return _StraightenSharp.default; + } +}); +Object.defineProperty(exports, "StraightenTwoTone", { + enumerable: true, + get: function () { + return _StraightenTwoTone.default; + } +}); +Object.defineProperty(exports, "Stream", { + enumerable: true, + get: function () { + return _Stream.default; + } +}); +Object.defineProperty(exports, "StreamOutlined", { + enumerable: true, + get: function () { + return _StreamOutlined.default; + } +}); +Object.defineProperty(exports, "StreamRounded", { + enumerable: true, + get: function () { + return _StreamRounded.default; + } +}); +Object.defineProperty(exports, "StreamSharp", { + enumerable: true, + get: function () { + return _StreamSharp.default; + } +}); +Object.defineProperty(exports, "StreamTwoTone", { + enumerable: true, + get: function () { + return _StreamTwoTone.default; + } +}); +Object.defineProperty(exports, "Streetview", { + enumerable: true, + get: function () { + return _Streetview.default; + } +}); +Object.defineProperty(exports, "StreetviewOutlined", { + enumerable: true, + get: function () { + return _StreetviewOutlined.default; + } +}); +Object.defineProperty(exports, "StreetviewRounded", { + enumerable: true, + get: function () { + return _StreetviewRounded.default; + } +}); +Object.defineProperty(exports, "StreetviewSharp", { + enumerable: true, + get: function () { + return _StreetviewSharp.default; + } +}); +Object.defineProperty(exports, "StreetviewTwoTone", { + enumerable: true, + get: function () { + return _StreetviewTwoTone.default; + } +}); +Object.defineProperty(exports, "StrikethroughS", { + enumerable: true, + get: function () { + return _StrikethroughS.default; + } +}); +Object.defineProperty(exports, "StrikethroughSOutlined", { + enumerable: true, + get: function () { + return _StrikethroughSOutlined.default; + } +}); +Object.defineProperty(exports, "StrikethroughSRounded", { + enumerable: true, + get: function () { + return _StrikethroughSRounded.default; + } +}); +Object.defineProperty(exports, "StrikethroughSSharp", { + enumerable: true, + get: function () { + return _StrikethroughSSharp.default; + } +}); +Object.defineProperty(exports, "StrikethroughSTwoTone", { + enumerable: true, + get: function () { + return _StrikethroughSTwoTone.default; + } +}); +Object.defineProperty(exports, "Stroller", { + enumerable: true, + get: function () { + return _Stroller.default; + } +}); +Object.defineProperty(exports, "StrollerOutlined", { + enumerable: true, + get: function () { + return _StrollerOutlined.default; + } +}); +Object.defineProperty(exports, "StrollerRounded", { + enumerable: true, + get: function () { + return _StrollerRounded.default; + } +}); +Object.defineProperty(exports, "StrollerSharp", { + enumerable: true, + get: function () { + return _StrollerSharp.default; + } +}); +Object.defineProperty(exports, "StrollerTwoTone", { + enumerable: true, + get: function () { + return _StrollerTwoTone.default; + } +}); +Object.defineProperty(exports, "Style", { + enumerable: true, + get: function () { + return _Style.default; + } +}); +Object.defineProperty(exports, "StyleOutlined", { + enumerable: true, + get: function () { + return _StyleOutlined.default; + } +}); +Object.defineProperty(exports, "StyleRounded", { + enumerable: true, + get: function () { + return _StyleRounded.default; + } +}); +Object.defineProperty(exports, "StyleSharp", { + enumerable: true, + get: function () { + return _StyleSharp.default; + } +}); +Object.defineProperty(exports, "StyleTwoTone", { + enumerable: true, + get: function () { + return _StyleTwoTone.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowLeft", { + enumerable: true, + get: function () { + return _SubdirectoryArrowLeft.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowLeftOutlined", { + enumerable: true, + get: function () { + return _SubdirectoryArrowLeftOutlined.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowLeftRounded", { + enumerable: true, + get: function () { + return _SubdirectoryArrowLeftRounded.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowLeftSharp", { + enumerable: true, + get: function () { + return _SubdirectoryArrowLeftSharp.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowLeftTwoTone", { + enumerable: true, + get: function () { + return _SubdirectoryArrowLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowRight", { + enumerable: true, + get: function () { + return _SubdirectoryArrowRight.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowRightOutlined", { + enumerable: true, + get: function () { + return _SubdirectoryArrowRightOutlined.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowRightRounded", { + enumerable: true, + get: function () { + return _SubdirectoryArrowRightRounded.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowRightSharp", { + enumerable: true, + get: function () { + return _SubdirectoryArrowRightSharp.default; + } +}); +Object.defineProperty(exports, "SubdirectoryArrowRightTwoTone", { + enumerable: true, + get: function () { + return _SubdirectoryArrowRightTwoTone.default; + } +}); +Object.defineProperty(exports, "Subject", { + enumerable: true, + get: function () { + return _Subject.default; + } +}); +Object.defineProperty(exports, "SubjectOutlined", { + enumerable: true, + get: function () { + return _SubjectOutlined.default; + } +}); +Object.defineProperty(exports, "SubjectRounded", { + enumerable: true, + get: function () { + return _SubjectRounded.default; + } +}); +Object.defineProperty(exports, "SubjectSharp", { + enumerable: true, + get: function () { + return _SubjectSharp.default; + } +}); +Object.defineProperty(exports, "SubjectTwoTone", { + enumerable: true, + get: function () { + return _SubjectTwoTone.default; + } +}); +Object.defineProperty(exports, "Subscript", { + enumerable: true, + get: function () { + return _Subscript.default; + } +}); +Object.defineProperty(exports, "SubscriptOutlined", { + enumerable: true, + get: function () { + return _SubscriptOutlined.default; + } +}); +Object.defineProperty(exports, "SubscriptRounded", { + enumerable: true, + get: function () { + return _SubscriptRounded.default; + } +}); +Object.defineProperty(exports, "SubscriptSharp", { + enumerable: true, + get: function () { + return _SubscriptSharp.default; + } +}); +Object.defineProperty(exports, "SubscriptTwoTone", { + enumerable: true, + get: function () { + return _SubscriptTwoTone.default; + } +}); +Object.defineProperty(exports, "Subscriptions", { + enumerable: true, + get: function () { + return _Subscriptions.default; + } +}); +Object.defineProperty(exports, "SubscriptionsOutlined", { + enumerable: true, + get: function () { + return _SubscriptionsOutlined.default; + } +}); +Object.defineProperty(exports, "SubscriptionsRounded", { + enumerable: true, + get: function () { + return _SubscriptionsRounded.default; + } +}); +Object.defineProperty(exports, "SubscriptionsSharp", { + enumerable: true, + get: function () { + return _SubscriptionsSharp.default; + } +}); +Object.defineProperty(exports, "SubscriptionsTwoTone", { + enumerable: true, + get: function () { + return _SubscriptionsTwoTone.default; + } +}); +Object.defineProperty(exports, "Subtitles", { + enumerable: true, + get: function () { + return _Subtitles.default; + } +}); +Object.defineProperty(exports, "SubtitlesOff", { + enumerable: true, + get: function () { + return _SubtitlesOff.default; + } +}); +Object.defineProperty(exports, "SubtitlesOffOutlined", { + enumerable: true, + get: function () { + return _SubtitlesOffOutlined.default; + } +}); +Object.defineProperty(exports, "SubtitlesOffRounded", { + enumerable: true, + get: function () { + return _SubtitlesOffRounded.default; + } +}); +Object.defineProperty(exports, "SubtitlesOffSharp", { + enumerable: true, + get: function () { + return _SubtitlesOffSharp.default; + } +}); +Object.defineProperty(exports, "SubtitlesOffTwoTone", { + enumerable: true, + get: function () { + return _SubtitlesOffTwoTone.default; + } +}); +Object.defineProperty(exports, "SubtitlesOutlined", { + enumerable: true, + get: function () { + return _SubtitlesOutlined.default; + } +}); +Object.defineProperty(exports, "SubtitlesRounded", { + enumerable: true, + get: function () { + return _SubtitlesRounded.default; + } +}); +Object.defineProperty(exports, "SubtitlesSharp", { + enumerable: true, + get: function () { + return _SubtitlesSharp.default; + } +}); +Object.defineProperty(exports, "SubtitlesTwoTone", { + enumerable: true, + get: function () { + return _SubtitlesTwoTone.default; + } +}); +Object.defineProperty(exports, "Subway", { + enumerable: true, + get: function () { + return _Subway.default; + } +}); +Object.defineProperty(exports, "SubwayOutlined", { + enumerable: true, + get: function () { + return _SubwayOutlined.default; + } +}); +Object.defineProperty(exports, "SubwayRounded", { + enumerable: true, + get: function () { + return _SubwayRounded.default; + } +}); +Object.defineProperty(exports, "SubwaySharp", { + enumerable: true, + get: function () { + return _SubwaySharp.default; + } +}); +Object.defineProperty(exports, "SubwayTwoTone", { + enumerable: true, + get: function () { + return _SubwayTwoTone.default; + } +}); +Object.defineProperty(exports, "Summarize", { + enumerable: true, + get: function () { + return _Summarize.default; + } +}); +Object.defineProperty(exports, "SummarizeOutlined", { + enumerable: true, + get: function () { + return _SummarizeOutlined.default; + } +}); +Object.defineProperty(exports, "SummarizeRounded", { + enumerable: true, + get: function () { + return _SummarizeRounded.default; + } +}); +Object.defineProperty(exports, "SummarizeSharp", { + enumerable: true, + get: function () { + return _SummarizeSharp.default; + } +}); +Object.defineProperty(exports, "SummarizeTwoTone", { + enumerable: true, + get: function () { + return _SummarizeTwoTone.default; + } +}); +Object.defineProperty(exports, "Superscript", { + enumerable: true, + get: function () { + return _Superscript.default; + } +}); +Object.defineProperty(exports, "SuperscriptOutlined", { + enumerable: true, + get: function () { + return _SuperscriptOutlined.default; + } +}); +Object.defineProperty(exports, "SuperscriptRounded", { + enumerable: true, + get: function () { + return _SuperscriptRounded.default; + } +}); +Object.defineProperty(exports, "SuperscriptSharp", { + enumerable: true, + get: function () { + return _SuperscriptSharp.default; + } +}); +Object.defineProperty(exports, "SuperscriptTwoTone", { + enumerable: true, + get: function () { + return _SuperscriptTwoTone.default; + } +}); +Object.defineProperty(exports, "SupervisedUserCircle", { + enumerable: true, + get: function () { + return _SupervisedUserCircle.default; + } +}); +Object.defineProperty(exports, "SupervisedUserCircleOutlined", { + enumerable: true, + get: function () { + return _SupervisedUserCircleOutlined.default; + } +}); +Object.defineProperty(exports, "SupervisedUserCircleRounded", { + enumerable: true, + get: function () { + return _SupervisedUserCircleRounded.default; + } +}); +Object.defineProperty(exports, "SupervisedUserCircleSharp", { + enumerable: true, + get: function () { + return _SupervisedUserCircleSharp.default; + } +}); +Object.defineProperty(exports, "SupervisedUserCircleTwoTone", { + enumerable: true, + get: function () { + return _SupervisedUserCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "SupervisorAccount", { + enumerable: true, + get: function () { + return _SupervisorAccount.default; + } +}); +Object.defineProperty(exports, "SupervisorAccountOutlined", { + enumerable: true, + get: function () { + return _SupervisorAccountOutlined.default; + } +}); +Object.defineProperty(exports, "SupervisorAccountRounded", { + enumerable: true, + get: function () { + return _SupervisorAccountRounded.default; + } +}); +Object.defineProperty(exports, "SupervisorAccountSharp", { + enumerable: true, + get: function () { + return _SupervisorAccountSharp.default; + } +}); +Object.defineProperty(exports, "SupervisorAccountTwoTone", { + enumerable: true, + get: function () { + return _SupervisorAccountTwoTone.default; + } +}); +Object.defineProperty(exports, "Support", { + enumerable: true, + get: function () { + return _Support.default; + } +}); +Object.defineProperty(exports, "SupportAgent", { + enumerable: true, + get: function () { + return _SupportAgent.default; + } +}); +Object.defineProperty(exports, "SupportAgentOutlined", { + enumerable: true, + get: function () { + return _SupportAgentOutlined.default; + } +}); +Object.defineProperty(exports, "SupportAgentRounded", { + enumerable: true, + get: function () { + return _SupportAgentRounded.default; + } +}); +Object.defineProperty(exports, "SupportAgentSharp", { + enumerable: true, + get: function () { + return _SupportAgentSharp.default; + } +}); +Object.defineProperty(exports, "SupportAgentTwoTone", { + enumerable: true, + get: function () { + return _SupportAgentTwoTone.default; + } +}); +Object.defineProperty(exports, "SupportOutlined", { + enumerable: true, + get: function () { + return _SupportOutlined.default; + } +}); +Object.defineProperty(exports, "SupportRounded", { + enumerable: true, + get: function () { + return _SupportRounded.default; + } +}); +Object.defineProperty(exports, "SupportSharp", { + enumerable: true, + get: function () { + return _SupportSharp.default; + } +}); +Object.defineProperty(exports, "SupportTwoTone", { + enumerable: true, + get: function () { + return _SupportTwoTone.default; + } +}); +Object.defineProperty(exports, "Surfing", { + enumerable: true, + get: function () { + return _Surfing.default; + } +}); +Object.defineProperty(exports, "SurfingOutlined", { + enumerable: true, + get: function () { + return _SurfingOutlined.default; + } +}); +Object.defineProperty(exports, "SurfingRounded", { + enumerable: true, + get: function () { + return _SurfingRounded.default; + } +}); +Object.defineProperty(exports, "SurfingSharp", { + enumerable: true, + get: function () { + return _SurfingSharp.default; + } +}); +Object.defineProperty(exports, "SurfingTwoTone", { + enumerable: true, + get: function () { + return _SurfingTwoTone.default; + } +}); +Object.defineProperty(exports, "SurroundSound", { + enumerable: true, + get: function () { + return _SurroundSound.default; + } +}); +Object.defineProperty(exports, "SurroundSoundOutlined", { + enumerable: true, + get: function () { + return _SurroundSoundOutlined.default; + } +}); +Object.defineProperty(exports, "SurroundSoundRounded", { + enumerable: true, + get: function () { + return _SurroundSoundRounded.default; + } +}); +Object.defineProperty(exports, "SurroundSoundSharp", { + enumerable: true, + get: function () { + return _SurroundSoundSharp.default; + } +}); +Object.defineProperty(exports, "SurroundSoundTwoTone", { + enumerable: true, + get: function () { + return _SurroundSoundTwoTone.default; + } +}); +Object.defineProperty(exports, "SwapCalls", { + enumerable: true, + get: function () { + return _SwapCalls.default; + } +}); +Object.defineProperty(exports, "SwapCallsOutlined", { + enumerable: true, + get: function () { + return _SwapCallsOutlined.default; + } +}); +Object.defineProperty(exports, "SwapCallsRounded", { + enumerable: true, + get: function () { + return _SwapCallsRounded.default; + } +}); +Object.defineProperty(exports, "SwapCallsSharp", { + enumerable: true, + get: function () { + return _SwapCallsSharp.default; + } +}); +Object.defineProperty(exports, "SwapCallsTwoTone", { + enumerable: true, + get: function () { + return _SwapCallsTwoTone.default; + } +}); +Object.defineProperty(exports, "SwapHoriz", { + enumerable: true, + get: function () { + return _SwapHoriz.default; + } +}); +Object.defineProperty(exports, "SwapHorizOutlined", { + enumerable: true, + get: function () { + return _SwapHorizOutlined.default; + } +}); +Object.defineProperty(exports, "SwapHorizRounded", { + enumerable: true, + get: function () { + return _SwapHorizRounded.default; + } +}); +Object.defineProperty(exports, "SwapHorizSharp", { + enumerable: true, + get: function () { + return _SwapHorizSharp.default; + } +}); +Object.defineProperty(exports, "SwapHorizTwoTone", { + enumerable: true, + get: function () { + return _SwapHorizTwoTone.default; + } +}); +Object.defineProperty(exports, "SwapHorizontalCircle", { + enumerable: true, + get: function () { + return _SwapHorizontalCircle.default; + } +}); +Object.defineProperty(exports, "SwapHorizontalCircleOutlined", { + enumerable: true, + get: function () { + return _SwapHorizontalCircleOutlined.default; + } +}); +Object.defineProperty(exports, "SwapHorizontalCircleRounded", { + enumerable: true, + get: function () { + return _SwapHorizontalCircleRounded.default; + } +}); +Object.defineProperty(exports, "SwapHorizontalCircleSharp", { + enumerable: true, + get: function () { + return _SwapHorizontalCircleSharp.default; + } +}); +Object.defineProperty(exports, "SwapHorizontalCircleTwoTone", { + enumerable: true, + get: function () { + return _SwapHorizontalCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "SwapVert", { + enumerable: true, + get: function () { + return _SwapVert.default; + } +}); +Object.defineProperty(exports, "SwapVertOutlined", { + enumerable: true, + get: function () { + return _SwapVertOutlined.default; + } +}); +Object.defineProperty(exports, "SwapVertRounded", { + enumerable: true, + get: function () { + return _SwapVertRounded.default; + } +}); +Object.defineProperty(exports, "SwapVertSharp", { + enumerable: true, + get: function () { + return _SwapVertSharp.default; + } +}); +Object.defineProperty(exports, "SwapVertTwoTone", { + enumerable: true, + get: function () { + return _SwapVertTwoTone.default; + } +}); +Object.defineProperty(exports, "SwapVerticalCircle", { + enumerable: true, + get: function () { + return _SwapVerticalCircle.default; + } +}); +Object.defineProperty(exports, "SwapVerticalCircleOutlined", { + enumerable: true, + get: function () { + return _SwapVerticalCircleOutlined.default; + } +}); +Object.defineProperty(exports, "SwapVerticalCircleRounded", { + enumerable: true, + get: function () { + return _SwapVerticalCircleRounded.default; + } +}); +Object.defineProperty(exports, "SwapVerticalCircleSharp", { + enumerable: true, + get: function () { + return _SwapVerticalCircleSharp.default; + } +}); +Object.defineProperty(exports, "SwapVerticalCircleTwoTone", { + enumerable: true, + get: function () { + return _SwapVerticalCircleTwoTone.default; + } +}); +Object.defineProperty(exports, "Swipe", { + enumerable: true, + get: function () { + return _Swipe.default; + } +}); +Object.defineProperty(exports, "SwipeOutlined", { + enumerable: true, + get: function () { + return _SwipeOutlined.default; + } +}); +Object.defineProperty(exports, "SwipeRounded", { + enumerable: true, + get: function () { + return _SwipeRounded.default; + } +}); +Object.defineProperty(exports, "SwipeSharp", { + enumerable: true, + get: function () { + return _SwipeSharp.default; + } +}); +Object.defineProperty(exports, "SwipeTwoTone", { + enumerable: true, + get: function () { + return _SwipeTwoTone.default; + } +}); +Object.defineProperty(exports, "SwitchAccount", { + enumerable: true, + get: function () { + return _SwitchAccount.default; + } +}); +Object.defineProperty(exports, "SwitchAccountOutlined", { + enumerable: true, + get: function () { + return _SwitchAccountOutlined.default; + } +}); +Object.defineProperty(exports, "SwitchAccountRounded", { + enumerable: true, + get: function () { + return _SwitchAccountRounded.default; + } +}); +Object.defineProperty(exports, "SwitchAccountSharp", { + enumerable: true, + get: function () { + return _SwitchAccountSharp.default; + } +}); +Object.defineProperty(exports, "SwitchAccountTwoTone", { + enumerable: true, + get: function () { + return _SwitchAccountTwoTone.default; + } +}); +Object.defineProperty(exports, "SwitchCamera", { + enumerable: true, + get: function () { + return _SwitchCamera.default; + } +}); +Object.defineProperty(exports, "SwitchCameraOutlined", { + enumerable: true, + get: function () { + return _SwitchCameraOutlined.default; + } +}); +Object.defineProperty(exports, "SwitchCameraRounded", { + enumerable: true, + get: function () { + return _SwitchCameraRounded.default; + } +}); +Object.defineProperty(exports, "SwitchCameraSharp", { + enumerable: true, + get: function () { + return _SwitchCameraSharp.default; + } +}); +Object.defineProperty(exports, "SwitchCameraTwoTone", { + enumerable: true, + get: function () { + return _SwitchCameraTwoTone.default; + } +}); +Object.defineProperty(exports, "SwitchLeft", { + enumerable: true, + get: function () { + return _SwitchLeft.default; + } +}); +Object.defineProperty(exports, "SwitchLeftOutlined", { + enumerable: true, + get: function () { + return _SwitchLeftOutlined.default; + } +}); +Object.defineProperty(exports, "SwitchLeftRounded", { + enumerable: true, + get: function () { + return _SwitchLeftRounded.default; + } +}); +Object.defineProperty(exports, "SwitchLeftSharp", { + enumerable: true, + get: function () { + return _SwitchLeftSharp.default; + } +}); +Object.defineProperty(exports, "SwitchLeftTwoTone", { + enumerable: true, + get: function () { + return _SwitchLeftTwoTone.default; + } +}); +Object.defineProperty(exports, "SwitchRight", { + enumerable: true, + get: function () { + return _SwitchRight.default; + } +}); +Object.defineProperty(exports, "SwitchRightOutlined", { + enumerable: true, + get: function () { + return _SwitchRightOutlined.default; + } +}); +Object.defineProperty(exports, "SwitchRightRounded", { + enumerable: true, + get: function () { + return _SwitchRightRounded.default; + } +}); +Object.defineProperty(exports, "SwitchRightSharp", { + enumerable: true, + get: function () { + return _SwitchRightSharp.default; + } +}); +Object.defineProperty(exports, "SwitchRightTwoTone", { + enumerable: true, + get: function () { + return _SwitchRightTwoTone.default; + } +}); +Object.defineProperty(exports, "SwitchVideo", { + enumerable: true, + get: function () { + return _SwitchVideo.default; + } +}); +Object.defineProperty(exports, "SwitchVideoOutlined", { + enumerable: true, + get: function () { + return _SwitchVideoOutlined.default; + } +}); +Object.defineProperty(exports, "SwitchVideoRounded", { + enumerable: true, + get: function () { + return _SwitchVideoRounded.default; + } +}); +Object.defineProperty(exports, "SwitchVideoSharp", { + enumerable: true, + get: function () { + return _SwitchVideoSharp.default; + } +}); +Object.defineProperty(exports, "SwitchVideoTwoTone", { + enumerable: true, + get: function () { + return _SwitchVideoTwoTone.default; + } +}); +Object.defineProperty(exports, "Sync", { + enumerable: true, + get: function () { + return _Sync.default; + } +}); +Object.defineProperty(exports, "SyncAlt", { + enumerable: true, + get: function () { + return _SyncAlt.default; + } +}); +Object.defineProperty(exports, "SyncAltOutlined", { + enumerable: true, + get: function () { + return _SyncAltOutlined.default; + } +}); +Object.defineProperty(exports, "SyncAltRounded", { + enumerable: true, + get: function () { + return _SyncAltRounded.default; + } +}); +Object.defineProperty(exports, "SyncAltSharp", { + enumerable: true, + get: function () { + return _SyncAltSharp.default; + } +}); +Object.defineProperty(exports, "SyncAltTwoTone", { + enumerable: true, + get: function () { + return _SyncAltTwoTone.default; + } +}); +Object.defineProperty(exports, "SyncDisabled", { + enumerable: true, + get: function () { + return _SyncDisabled.default; + } +}); +Object.defineProperty(exports, "SyncDisabledOutlined", { + enumerable: true, + get: function () { + return _SyncDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "SyncDisabledRounded", { + enumerable: true, + get: function () { + return _SyncDisabledRounded.default; + } +}); +Object.defineProperty(exports, "SyncDisabledSharp", { + enumerable: true, + get: function () { + return _SyncDisabledSharp.default; + } +}); +Object.defineProperty(exports, "SyncDisabledTwoTone", { + enumerable: true, + get: function () { + return _SyncDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "SyncOutlined", { + enumerable: true, + get: function () { + return _SyncOutlined.default; + } +}); +Object.defineProperty(exports, "SyncProblem", { + enumerable: true, + get: function () { + return _SyncProblem.default; + } +}); +Object.defineProperty(exports, "SyncProblemOutlined", { + enumerable: true, + get: function () { + return _SyncProblemOutlined.default; + } +}); +Object.defineProperty(exports, "SyncProblemRounded", { + enumerable: true, + get: function () { + return _SyncProblemRounded.default; + } +}); +Object.defineProperty(exports, "SyncProblemSharp", { + enumerable: true, + get: function () { + return _SyncProblemSharp.default; + } +}); +Object.defineProperty(exports, "SyncProblemTwoTone", { + enumerable: true, + get: function () { + return _SyncProblemTwoTone.default; + } +}); +Object.defineProperty(exports, "SyncRounded", { + enumerable: true, + get: function () { + return _SyncRounded.default; + } +}); +Object.defineProperty(exports, "SyncSharp", { + enumerable: true, + get: function () { + return _SyncSharp.default; + } +}); +Object.defineProperty(exports, "SyncTwoTone", { + enumerable: true, + get: function () { + return _SyncTwoTone.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdate", { + enumerable: true, + get: function () { + return _SystemSecurityUpdate.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateGood", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateGood.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateGoodOutlined", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateGoodOutlined.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateGoodRounded", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateGoodRounded.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateGoodSharp", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateGoodSharp.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateGoodTwoTone", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateGoodTwoTone.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateOutlined", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateOutlined.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateRounded", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateRounded.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateSharp", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateSharp.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateTwoTone", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateTwoTone.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateWarning", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateWarning.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateWarningOutlined", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateWarningOutlined.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateWarningRounded", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateWarningRounded.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateWarningSharp", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateWarningSharp.default; + } +}); +Object.defineProperty(exports, "SystemSecurityUpdateWarningTwoTone", { + enumerable: true, + get: function () { + return _SystemSecurityUpdateWarningTwoTone.default; + } +}); +Object.defineProperty(exports, "SystemUpdate", { + enumerable: true, + get: function () { + return _SystemUpdate.default; + } +}); +Object.defineProperty(exports, "SystemUpdateAlt", { + enumerable: true, + get: function () { + return _SystemUpdateAlt.default; + } +}); +Object.defineProperty(exports, "SystemUpdateAltOutlined", { + enumerable: true, + get: function () { + return _SystemUpdateAltOutlined.default; + } +}); +Object.defineProperty(exports, "SystemUpdateAltRounded", { + enumerable: true, + get: function () { + return _SystemUpdateAltRounded.default; + } +}); +Object.defineProperty(exports, "SystemUpdateAltSharp", { + enumerable: true, + get: function () { + return _SystemUpdateAltSharp.default; + } +}); +Object.defineProperty(exports, "SystemUpdateAltTwoTone", { + enumerable: true, + get: function () { + return _SystemUpdateAltTwoTone.default; + } +}); +Object.defineProperty(exports, "SystemUpdateOutlined", { + enumerable: true, + get: function () { + return _SystemUpdateOutlined.default; + } +}); +Object.defineProperty(exports, "SystemUpdateRounded", { + enumerable: true, + get: function () { + return _SystemUpdateRounded.default; + } +}); +Object.defineProperty(exports, "SystemUpdateSharp", { + enumerable: true, + get: function () { + return _SystemUpdateSharp.default; + } +}); +Object.defineProperty(exports, "SystemUpdateTwoTone", { + enumerable: true, + get: function () { + return _SystemUpdateTwoTone.default; + } +}); +Object.defineProperty(exports, "Tab", { + enumerable: true, + get: function () { + return _Tab.default; + } +}); +Object.defineProperty(exports, "TabOutlined", { + enumerable: true, + get: function () { + return _TabOutlined.default; + } +}); +Object.defineProperty(exports, "TabRounded", { + enumerable: true, + get: function () { + return _TabRounded.default; + } +}); +Object.defineProperty(exports, "TabSharp", { + enumerable: true, + get: function () { + return _TabSharp.default; + } +}); +Object.defineProperty(exports, "TabTwoTone", { + enumerable: true, + get: function () { + return _TabTwoTone.default; + } +}); +Object.defineProperty(exports, "TabUnselected", { + enumerable: true, + get: function () { + return _TabUnselected.default; + } +}); +Object.defineProperty(exports, "TabUnselectedOutlined", { + enumerable: true, + get: function () { + return _TabUnselectedOutlined.default; + } +}); +Object.defineProperty(exports, "TabUnselectedRounded", { + enumerable: true, + get: function () { + return _TabUnselectedRounded.default; + } +}); +Object.defineProperty(exports, "TabUnselectedSharp", { + enumerable: true, + get: function () { + return _TabUnselectedSharp.default; + } +}); +Object.defineProperty(exports, "TabUnselectedTwoTone", { + enumerable: true, + get: function () { + return _TabUnselectedTwoTone.default; + } +}); +Object.defineProperty(exports, "TableChart", { + enumerable: true, + get: function () { + return _TableChart.default; + } +}); +Object.defineProperty(exports, "TableChartOutlined", { + enumerable: true, + get: function () { + return _TableChartOutlined.default; + } +}); +Object.defineProperty(exports, "TableChartRounded", { + enumerable: true, + get: function () { + return _TableChartRounded.default; + } +}); +Object.defineProperty(exports, "TableChartSharp", { + enumerable: true, + get: function () { + return _TableChartSharp.default; + } +}); +Object.defineProperty(exports, "TableChartTwoTone", { + enumerable: true, + get: function () { + return _TableChartTwoTone.default; + } +}); +Object.defineProperty(exports, "TableRows", { + enumerable: true, + get: function () { + return _TableRows.default; + } +}); +Object.defineProperty(exports, "TableRowsOutlined", { + enumerable: true, + get: function () { + return _TableRowsOutlined.default; + } +}); +Object.defineProperty(exports, "TableRowsRounded", { + enumerable: true, + get: function () { + return _TableRowsRounded.default; + } +}); +Object.defineProperty(exports, "TableRowsSharp", { + enumerable: true, + get: function () { + return _TableRowsSharp.default; + } +}); +Object.defineProperty(exports, "TableRowsTwoTone", { + enumerable: true, + get: function () { + return _TableRowsTwoTone.default; + } +}); +Object.defineProperty(exports, "TableView", { + enumerable: true, + get: function () { + return _TableView.default; + } +}); +Object.defineProperty(exports, "TableViewOutlined", { + enumerable: true, + get: function () { + return _TableViewOutlined.default; + } +}); +Object.defineProperty(exports, "TableViewRounded", { + enumerable: true, + get: function () { + return _TableViewRounded.default; + } +}); +Object.defineProperty(exports, "TableViewSharp", { + enumerable: true, + get: function () { + return _TableViewSharp.default; + } +}); +Object.defineProperty(exports, "TableViewTwoTone", { + enumerable: true, + get: function () { + return _TableViewTwoTone.default; + } +}); +Object.defineProperty(exports, "Tablet", { + enumerable: true, + get: function () { + return _Tablet.default; + } +}); +Object.defineProperty(exports, "TabletAndroid", { + enumerable: true, + get: function () { + return _TabletAndroid.default; + } +}); +Object.defineProperty(exports, "TabletAndroidOutlined", { + enumerable: true, + get: function () { + return _TabletAndroidOutlined.default; + } +}); +Object.defineProperty(exports, "TabletAndroidRounded", { + enumerable: true, + get: function () { + return _TabletAndroidRounded.default; + } +}); +Object.defineProperty(exports, "TabletAndroidSharp", { + enumerable: true, + get: function () { + return _TabletAndroidSharp.default; + } +}); +Object.defineProperty(exports, "TabletAndroidTwoTone", { + enumerable: true, + get: function () { + return _TabletAndroidTwoTone.default; + } +}); +Object.defineProperty(exports, "TabletMac", { + enumerable: true, + get: function () { + return _TabletMac.default; + } +}); +Object.defineProperty(exports, "TabletMacOutlined", { + enumerable: true, + get: function () { + return _TabletMacOutlined.default; + } +}); +Object.defineProperty(exports, "TabletMacRounded", { + enumerable: true, + get: function () { + return _TabletMacRounded.default; + } +}); +Object.defineProperty(exports, "TabletMacSharp", { + enumerable: true, + get: function () { + return _TabletMacSharp.default; + } +}); +Object.defineProperty(exports, "TabletMacTwoTone", { + enumerable: true, + get: function () { + return _TabletMacTwoTone.default; + } +}); +Object.defineProperty(exports, "TabletOutlined", { + enumerable: true, + get: function () { + return _TabletOutlined.default; + } +}); +Object.defineProperty(exports, "TabletRounded", { + enumerable: true, + get: function () { + return _TabletRounded.default; + } +}); +Object.defineProperty(exports, "TabletSharp", { + enumerable: true, + get: function () { + return _TabletSharp.default; + } +}); +Object.defineProperty(exports, "TabletTwoTone", { + enumerable: true, + get: function () { + return _TabletTwoTone.default; + } +}); +Object.defineProperty(exports, "Tag", { + enumerable: true, + get: function () { + return _Tag.default; + } +}); +Object.defineProperty(exports, "TagFaces", { + enumerable: true, + get: function () { + return _TagFaces.default; + } +}); +Object.defineProperty(exports, "TagFacesOutlined", { + enumerable: true, + get: function () { + return _TagFacesOutlined.default; + } +}); +Object.defineProperty(exports, "TagFacesRounded", { + enumerable: true, + get: function () { + return _TagFacesRounded.default; + } +}); +Object.defineProperty(exports, "TagFacesSharp", { + enumerable: true, + get: function () { + return _TagFacesSharp.default; + } +}); +Object.defineProperty(exports, "TagFacesTwoTone", { + enumerable: true, + get: function () { + return _TagFacesTwoTone.default; + } +}); +Object.defineProperty(exports, "TagOutlined", { + enumerable: true, + get: function () { + return _TagOutlined.default; + } +}); +Object.defineProperty(exports, "TagRounded", { + enumerable: true, + get: function () { + return _TagRounded.default; + } +}); +Object.defineProperty(exports, "TagSharp", { + enumerable: true, + get: function () { + return _TagSharp.default; + } +}); +Object.defineProperty(exports, "TagTwoTone", { + enumerable: true, + get: function () { + return _TagTwoTone.default; + } +}); +Object.defineProperty(exports, "TakeoutDining", { + enumerable: true, + get: function () { + return _TakeoutDining.default; + } +}); +Object.defineProperty(exports, "TakeoutDiningOutlined", { + enumerable: true, + get: function () { + return _TakeoutDiningOutlined.default; + } +}); +Object.defineProperty(exports, "TakeoutDiningRounded", { + enumerable: true, + get: function () { + return _TakeoutDiningRounded.default; + } +}); +Object.defineProperty(exports, "TakeoutDiningSharp", { + enumerable: true, + get: function () { + return _TakeoutDiningSharp.default; + } +}); +Object.defineProperty(exports, "TakeoutDiningTwoTone", { + enumerable: true, + get: function () { + return _TakeoutDiningTwoTone.default; + } +}); +Object.defineProperty(exports, "TapAndPlay", { + enumerable: true, + get: function () { + return _TapAndPlay.default; + } +}); +Object.defineProperty(exports, "TapAndPlayOutlined", { + enumerable: true, + get: function () { + return _TapAndPlayOutlined.default; + } +}); +Object.defineProperty(exports, "TapAndPlayRounded", { + enumerable: true, + get: function () { + return _TapAndPlayRounded.default; + } +}); +Object.defineProperty(exports, "TapAndPlaySharp", { + enumerable: true, + get: function () { + return _TapAndPlaySharp.default; + } +}); +Object.defineProperty(exports, "TapAndPlayTwoTone", { + enumerable: true, + get: function () { + return _TapAndPlayTwoTone.default; + } +}); +Object.defineProperty(exports, "Tapas", { + enumerable: true, + get: function () { + return _Tapas.default; + } +}); +Object.defineProperty(exports, "TapasOutlined", { + enumerable: true, + get: function () { + return _TapasOutlined.default; + } +}); +Object.defineProperty(exports, "TapasRounded", { + enumerable: true, + get: function () { + return _TapasRounded.default; + } +}); +Object.defineProperty(exports, "TapasSharp", { + enumerable: true, + get: function () { + return _TapasSharp.default; + } +}); +Object.defineProperty(exports, "TapasTwoTone", { + enumerable: true, + get: function () { + return _TapasTwoTone.default; + } +}); +Object.defineProperty(exports, "Task", { + enumerable: true, + get: function () { + return _Task.default; + } +}); +Object.defineProperty(exports, "TaskAlt", { + enumerable: true, + get: function () { + return _TaskAlt.default; + } +}); +Object.defineProperty(exports, "TaskAltOutlined", { + enumerable: true, + get: function () { + return _TaskAltOutlined.default; + } +}); +Object.defineProperty(exports, "TaskAltRounded", { + enumerable: true, + get: function () { + return _TaskAltRounded.default; + } +}); +Object.defineProperty(exports, "TaskAltSharp", { + enumerable: true, + get: function () { + return _TaskAltSharp.default; + } +}); +Object.defineProperty(exports, "TaskAltTwoTone", { + enumerable: true, + get: function () { + return _TaskAltTwoTone.default; + } +}); +Object.defineProperty(exports, "TaskOutlined", { + enumerable: true, + get: function () { + return _TaskOutlined.default; + } +}); +Object.defineProperty(exports, "TaskRounded", { + enumerable: true, + get: function () { + return _TaskRounded.default; + } +}); +Object.defineProperty(exports, "TaskSharp", { + enumerable: true, + get: function () { + return _TaskSharp.default; + } +}); +Object.defineProperty(exports, "TaskTwoTone", { + enumerable: true, + get: function () { + return _TaskTwoTone.default; + } +}); +Object.defineProperty(exports, "TaxiAlert", { + enumerable: true, + get: function () { + return _TaxiAlert.default; + } +}); +Object.defineProperty(exports, "TaxiAlertOutlined", { + enumerable: true, + get: function () { + return _TaxiAlertOutlined.default; + } +}); +Object.defineProperty(exports, "TaxiAlertRounded", { + enumerable: true, + get: function () { + return _TaxiAlertRounded.default; + } +}); +Object.defineProperty(exports, "TaxiAlertSharp", { + enumerable: true, + get: function () { + return _TaxiAlertSharp.default; + } +}); +Object.defineProperty(exports, "TaxiAlertTwoTone", { + enumerable: true, + get: function () { + return _TaxiAlertTwoTone.default; + } +}); +Object.defineProperty(exports, "Telegram", { + enumerable: true, + get: function () { + return _Telegram.default; + } +}); +Object.defineProperty(exports, "TenMp", { + enumerable: true, + get: function () { + return _TenMp.default; + } +}); +Object.defineProperty(exports, "TenMpOutlined", { + enumerable: true, + get: function () { + return _TenMpOutlined.default; + } +}); +Object.defineProperty(exports, "TenMpRounded", { + enumerable: true, + get: function () { + return _TenMpRounded.default; + } +}); +Object.defineProperty(exports, "TenMpSharp", { + enumerable: true, + get: function () { + return _TenMpSharp.default; + } +}); +Object.defineProperty(exports, "TenMpTwoTone", { + enumerable: true, + get: function () { + return _TenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "Terrain", { + enumerable: true, + get: function () { + return _Terrain.default; + } +}); +Object.defineProperty(exports, "TerrainOutlined", { + enumerable: true, + get: function () { + return _TerrainOutlined.default; + } +}); +Object.defineProperty(exports, "TerrainRounded", { + enumerable: true, + get: function () { + return _TerrainRounded.default; + } +}); +Object.defineProperty(exports, "TerrainSharp", { + enumerable: true, + get: function () { + return _TerrainSharp.default; + } +}); +Object.defineProperty(exports, "TerrainTwoTone", { + enumerable: true, + get: function () { + return _TerrainTwoTone.default; + } +}); +Object.defineProperty(exports, "TextFields", { + enumerable: true, + get: function () { + return _TextFields.default; + } +}); +Object.defineProperty(exports, "TextFieldsOutlined", { + enumerable: true, + get: function () { + return _TextFieldsOutlined.default; + } +}); +Object.defineProperty(exports, "TextFieldsRounded", { + enumerable: true, + get: function () { + return _TextFieldsRounded.default; + } +}); +Object.defineProperty(exports, "TextFieldsSharp", { + enumerable: true, + get: function () { + return _TextFieldsSharp.default; + } +}); +Object.defineProperty(exports, "TextFieldsTwoTone", { + enumerable: true, + get: function () { + return _TextFieldsTwoTone.default; + } +}); +Object.defineProperty(exports, "TextFormat", { + enumerable: true, + get: function () { + return _TextFormat.default; + } +}); +Object.defineProperty(exports, "TextFormatOutlined", { + enumerable: true, + get: function () { + return _TextFormatOutlined.default; + } +}); +Object.defineProperty(exports, "TextFormatRounded", { + enumerable: true, + get: function () { + return _TextFormatRounded.default; + } +}); +Object.defineProperty(exports, "TextFormatSharp", { + enumerable: true, + get: function () { + return _TextFormatSharp.default; + } +}); +Object.defineProperty(exports, "TextFormatTwoTone", { + enumerable: true, + get: function () { + return _TextFormatTwoTone.default; + } +}); +Object.defineProperty(exports, "TextRotateUp", { + enumerable: true, + get: function () { + return _TextRotateUp.default; + } +}); +Object.defineProperty(exports, "TextRotateUpOutlined", { + enumerable: true, + get: function () { + return _TextRotateUpOutlined.default; + } +}); +Object.defineProperty(exports, "TextRotateUpRounded", { + enumerable: true, + get: function () { + return _TextRotateUpRounded.default; + } +}); +Object.defineProperty(exports, "TextRotateUpSharp", { + enumerable: true, + get: function () { + return _TextRotateUpSharp.default; + } +}); +Object.defineProperty(exports, "TextRotateUpTwoTone", { + enumerable: true, + get: function () { + return _TextRotateUpTwoTone.default; + } +}); +Object.defineProperty(exports, "TextRotateVertical", { + enumerable: true, + get: function () { + return _TextRotateVertical.default; + } +}); +Object.defineProperty(exports, "TextRotateVerticalOutlined", { + enumerable: true, + get: function () { + return _TextRotateVerticalOutlined.default; + } +}); +Object.defineProperty(exports, "TextRotateVerticalRounded", { + enumerable: true, + get: function () { + return _TextRotateVerticalRounded.default; + } +}); +Object.defineProperty(exports, "TextRotateVerticalSharp", { + enumerable: true, + get: function () { + return _TextRotateVerticalSharp.default; + } +}); +Object.defineProperty(exports, "TextRotateVerticalTwoTone", { + enumerable: true, + get: function () { + return _TextRotateVerticalTwoTone.default; + } +}); +Object.defineProperty(exports, "TextRotationAngledown", { + enumerable: true, + get: function () { + return _TextRotationAngledown.default; + } +}); +Object.defineProperty(exports, "TextRotationAngledownOutlined", { + enumerable: true, + get: function () { + return _TextRotationAngledownOutlined.default; + } +}); +Object.defineProperty(exports, "TextRotationAngledownRounded", { + enumerable: true, + get: function () { + return _TextRotationAngledownRounded.default; + } +}); +Object.defineProperty(exports, "TextRotationAngledownSharp", { + enumerable: true, + get: function () { + return _TextRotationAngledownSharp.default; + } +}); +Object.defineProperty(exports, "TextRotationAngledownTwoTone", { + enumerable: true, + get: function () { + return _TextRotationAngledownTwoTone.default; + } +}); +Object.defineProperty(exports, "TextRotationAngleup", { + enumerable: true, + get: function () { + return _TextRotationAngleup.default; + } +}); +Object.defineProperty(exports, "TextRotationAngleupOutlined", { + enumerable: true, + get: function () { + return _TextRotationAngleupOutlined.default; + } +}); +Object.defineProperty(exports, "TextRotationAngleupRounded", { + enumerable: true, + get: function () { + return _TextRotationAngleupRounded.default; + } +}); +Object.defineProperty(exports, "TextRotationAngleupSharp", { + enumerable: true, + get: function () { + return _TextRotationAngleupSharp.default; + } +}); +Object.defineProperty(exports, "TextRotationAngleupTwoTone", { + enumerable: true, + get: function () { + return _TextRotationAngleupTwoTone.default; + } +}); +Object.defineProperty(exports, "TextRotationDown", { + enumerable: true, + get: function () { + return _TextRotationDown.default; + } +}); +Object.defineProperty(exports, "TextRotationDownOutlined", { + enumerable: true, + get: function () { + return _TextRotationDownOutlined.default; + } +}); +Object.defineProperty(exports, "TextRotationDownRounded", { + enumerable: true, + get: function () { + return _TextRotationDownRounded.default; + } +}); +Object.defineProperty(exports, "TextRotationDownSharp", { + enumerable: true, + get: function () { + return _TextRotationDownSharp.default; + } +}); +Object.defineProperty(exports, "TextRotationDownTwoTone", { + enumerable: true, + get: function () { + return _TextRotationDownTwoTone.default; + } +}); +Object.defineProperty(exports, "TextRotationNone", { + enumerable: true, + get: function () { + return _TextRotationNone.default; + } +}); +Object.defineProperty(exports, "TextRotationNoneOutlined", { + enumerable: true, + get: function () { + return _TextRotationNoneOutlined.default; + } +}); +Object.defineProperty(exports, "TextRotationNoneRounded", { + enumerable: true, + get: function () { + return _TextRotationNoneRounded.default; + } +}); +Object.defineProperty(exports, "TextRotationNoneSharp", { + enumerable: true, + get: function () { + return _TextRotationNoneSharp.default; + } +}); +Object.defineProperty(exports, "TextRotationNoneTwoTone", { + enumerable: true, + get: function () { + return _TextRotationNoneTwoTone.default; + } +}); +Object.defineProperty(exports, "TextSnippet", { + enumerable: true, + get: function () { + return _TextSnippet.default; + } +}); +Object.defineProperty(exports, "TextSnippetOutlined", { + enumerable: true, + get: function () { + return _TextSnippetOutlined.default; + } +}); +Object.defineProperty(exports, "TextSnippetRounded", { + enumerable: true, + get: function () { + return _TextSnippetRounded.default; + } +}); +Object.defineProperty(exports, "TextSnippetSharp", { + enumerable: true, + get: function () { + return _TextSnippetSharp.default; + } +}); +Object.defineProperty(exports, "TextSnippetTwoTone", { + enumerable: true, + get: function () { + return _TextSnippetTwoTone.default; + } +}); +Object.defineProperty(exports, "Textsms", { + enumerable: true, + get: function () { + return _Textsms.default; + } +}); +Object.defineProperty(exports, "TextsmsOutlined", { + enumerable: true, + get: function () { + return _TextsmsOutlined.default; + } +}); +Object.defineProperty(exports, "TextsmsRounded", { + enumerable: true, + get: function () { + return _TextsmsRounded.default; + } +}); +Object.defineProperty(exports, "TextsmsSharp", { + enumerable: true, + get: function () { + return _TextsmsSharp.default; + } +}); +Object.defineProperty(exports, "TextsmsTwoTone", { + enumerable: true, + get: function () { + return _TextsmsTwoTone.default; + } +}); +Object.defineProperty(exports, "Texture", { + enumerable: true, + get: function () { + return _Texture.default; + } +}); +Object.defineProperty(exports, "TextureOutlined", { + enumerable: true, + get: function () { + return _TextureOutlined.default; + } +}); +Object.defineProperty(exports, "TextureRounded", { + enumerable: true, + get: function () { + return _TextureRounded.default; + } +}); +Object.defineProperty(exports, "TextureSharp", { + enumerable: true, + get: function () { + return _TextureSharp.default; + } +}); +Object.defineProperty(exports, "TextureTwoTone", { + enumerable: true, + get: function () { + return _TextureTwoTone.default; + } +}); +Object.defineProperty(exports, "TheaterComedy", { + enumerable: true, + get: function () { + return _TheaterComedy.default; + } +}); +Object.defineProperty(exports, "TheaterComedyOutlined", { + enumerable: true, + get: function () { + return _TheaterComedyOutlined.default; + } +}); +Object.defineProperty(exports, "TheaterComedyRounded", { + enumerable: true, + get: function () { + return _TheaterComedyRounded.default; + } +}); +Object.defineProperty(exports, "TheaterComedySharp", { + enumerable: true, + get: function () { + return _TheaterComedySharp.default; + } +}); +Object.defineProperty(exports, "TheaterComedyTwoTone", { + enumerable: true, + get: function () { + return _TheaterComedyTwoTone.default; + } +}); +Object.defineProperty(exports, "Theaters", { + enumerable: true, + get: function () { + return _Theaters.default; + } +}); +Object.defineProperty(exports, "TheatersOutlined", { + enumerable: true, + get: function () { + return _TheatersOutlined.default; + } +}); +Object.defineProperty(exports, "TheatersRounded", { + enumerable: true, + get: function () { + return _TheatersRounded.default; + } +}); +Object.defineProperty(exports, "TheatersSharp", { + enumerable: true, + get: function () { + return _TheatersSharp.default; + } +}); +Object.defineProperty(exports, "TheatersTwoTone", { + enumerable: true, + get: function () { + return _TheatersTwoTone.default; + } +}); +Object.defineProperty(exports, "Thermostat", { + enumerable: true, + get: function () { + return _Thermostat.default; + } +}); +Object.defineProperty(exports, "ThermostatAuto", { + enumerable: true, + get: function () { + return _ThermostatAuto.default; + } +}); +Object.defineProperty(exports, "ThermostatAutoOutlined", { + enumerable: true, + get: function () { + return _ThermostatAutoOutlined.default; + } +}); +Object.defineProperty(exports, "ThermostatAutoRounded", { + enumerable: true, + get: function () { + return _ThermostatAutoRounded.default; + } +}); +Object.defineProperty(exports, "ThermostatAutoSharp", { + enumerable: true, + get: function () { + return _ThermostatAutoSharp.default; + } +}); +Object.defineProperty(exports, "ThermostatAutoTwoTone", { + enumerable: true, + get: function () { + return _ThermostatAutoTwoTone.default; + } +}); +Object.defineProperty(exports, "ThermostatOutlined", { + enumerable: true, + get: function () { + return _ThermostatOutlined.default; + } +}); +Object.defineProperty(exports, "ThermostatRounded", { + enumerable: true, + get: function () { + return _ThermostatRounded.default; + } +}); +Object.defineProperty(exports, "ThermostatSharp", { + enumerable: true, + get: function () { + return _ThermostatSharp.default; + } +}); +Object.defineProperty(exports, "ThermostatTwoTone", { + enumerable: true, + get: function () { + return _ThermostatTwoTone.default; + } +}); +Object.defineProperty(exports, "ThirteenMp", { + enumerable: true, + get: function () { + return _ThirteenMp.default; + } +}); +Object.defineProperty(exports, "ThirteenMpOutlined", { + enumerable: true, + get: function () { + return _ThirteenMpOutlined.default; + } +}); +Object.defineProperty(exports, "ThirteenMpRounded", { + enumerable: true, + get: function () { + return _ThirteenMpRounded.default; + } +}); +Object.defineProperty(exports, "ThirteenMpSharp", { + enumerable: true, + get: function () { + return _ThirteenMpSharp.default; + } +}); +Object.defineProperty(exports, "ThirteenMpTwoTone", { + enumerable: true, + get: function () { + return _ThirteenMpTwoTone.default; + } +}); +Object.defineProperty(exports, "ThirtyFps", { + enumerable: true, + get: function () { + return _ThirtyFps.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsOutlined", { + enumerable: true, + get: function () { + return _ThirtyFpsOutlined.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsRounded", { + enumerable: true, + get: function () { + return _ThirtyFpsRounded.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsSelect", { + enumerable: true, + get: function () { + return _ThirtyFpsSelect.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsSelectOutlined", { + enumerable: true, + get: function () { + return _ThirtyFpsSelectOutlined.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsSelectRounded", { + enumerable: true, + get: function () { + return _ThirtyFpsSelectRounded.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsSelectSharp", { + enumerable: true, + get: function () { + return _ThirtyFpsSelectSharp.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsSelectTwoTone", { + enumerable: true, + get: function () { + return _ThirtyFpsSelectTwoTone.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsSharp", { + enumerable: true, + get: function () { + return _ThirtyFpsSharp.default; + } +}); +Object.defineProperty(exports, "ThirtyFpsTwoTone", { + enumerable: true, + get: function () { + return _ThirtyFpsTwoTone.default; + } +}); +Object.defineProperty(exports, "ThreeDRotation", { + enumerable: true, + get: function () { + return _ThreeDRotation.default; + } +}); +Object.defineProperty(exports, "ThreeDRotationOutlined", { + enumerable: true, + get: function () { + return _ThreeDRotationOutlined.default; + } +}); +Object.defineProperty(exports, "ThreeDRotationRounded", { + enumerable: true, + get: function () { + return _ThreeDRotationRounded.default; + } +}); +Object.defineProperty(exports, "ThreeDRotationSharp", { + enumerable: true, + get: function () { + return _ThreeDRotationSharp.default; + } +}); +Object.defineProperty(exports, "ThreeDRotationTwoTone", { + enumerable: true, + get: function () { + return _ThreeDRotationTwoTone.default; + } +}); +Object.defineProperty(exports, "ThreeGMobiledata", { + enumerable: true, + get: function () { + return _ThreeGMobiledata.default; + } +}); +Object.defineProperty(exports, "ThreeGMobiledataOutlined", { + enumerable: true, + get: function () { + return _ThreeGMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "ThreeGMobiledataRounded", { + enumerable: true, + get: function () { + return _ThreeGMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "ThreeGMobiledataSharp", { + enumerable: true, + get: function () { + return _ThreeGMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "ThreeGMobiledataTwoTone", { + enumerable: true, + get: function () { + return _ThreeGMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "ThreeK", { + enumerable: true, + get: function () { + return _ThreeK.default; + } +}); +Object.defineProperty(exports, "ThreeKOutlined", { + enumerable: true, + get: function () { + return _ThreeKOutlined.default; + } +}); +Object.defineProperty(exports, "ThreeKPlus", { + enumerable: true, + get: function () { + return _ThreeKPlus.default; + } +}); +Object.defineProperty(exports, "ThreeKPlusOutlined", { + enumerable: true, + get: function () { + return _ThreeKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "ThreeKPlusRounded", { + enumerable: true, + get: function () { + return _ThreeKPlusRounded.default; + } +}); +Object.defineProperty(exports, "ThreeKPlusSharp", { + enumerable: true, + get: function () { + return _ThreeKPlusSharp.default; + } +}); +Object.defineProperty(exports, "ThreeKPlusTwoTone", { + enumerable: true, + get: function () { + return _ThreeKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "ThreeKRounded", { + enumerable: true, + get: function () { + return _ThreeKRounded.default; + } +}); +Object.defineProperty(exports, "ThreeKSharp", { + enumerable: true, + get: function () { + return _ThreeKSharp.default; + } +}); +Object.defineProperty(exports, "ThreeKTwoTone", { + enumerable: true, + get: function () { + return _ThreeKTwoTone.default; + } +}); +Object.defineProperty(exports, "ThreeMp", { + enumerable: true, + get: function () { + return _ThreeMp.default; + } +}); +Object.defineProperty(exports, "ThreeMpOutlined", { + enumerable: true, + get: function () { + return _ThreeMpOutlined.default; + } +}); +Object.defineProperty(exports, "ThreeMpRounded", { + enumerable: true, + get: function () { + return _ThreeMpRounded.default; + } +}); +Object.defineProperty(exports, "ThreeMpSharp", { + enumerable: true, + get: function () { + return _ThreeMpSharp.default; + } +}); +Object.defineProperty(exports, "ThreeMpTwoTone", { + enumerable: true, + get: function () { + return _ThreeMpTwoTone.default; + } +}); +Object.defineProperty(exports, "ThreeP", { + enumerable: true, + get: function () { + return _ThreeP.default; + } +}); +Object.defineProperty(exports, "ThreePOutlined", { + enumerable: true, + get: function () { + return _ThreePOutlined.default; + } +}); +Object.defineProperty(exports, "ThreePRounded", { + enumerable: true, + get: function () { + return _ThreePRounded.default; + } +}); +Object.defineProperty(exports, "ThreePSharp", { + enumerable: true, + get: function () { + return _ThreePSharp.default; + } +}); +Object.defineProperty(exports, "ThreePTwoTone", { + enumerable: true, + get: function () { + return _ThreePTwoTone.default; + } +}); +Object.defineProperty(exports, "ThreeSixty", { + enumerable: true, + get: function () { + return _ThreeSixty.default; + } +}); +Object.defineProperty(exports, "ThreeSixtyOutlined", { + enumerable: true, + get: function () { + return _ThreeSixtyOutlined.default; + } +}); +Object.defineProperty(exports, "ThreeSixtyRounded", { + enumerable: true, + get: function () { + return _ThreeSixtyRounded.default; + } +}); +Object.defineProperty(exports, "ThreeSixtySharp", { + enumerable: true, + get: function () { + return _ThreeSixtySharp.default; + } +}); +Object.defineProperty(exports, "ThreeSixtyTwoTone", { + enumerable: true, + get: function () { + return _ThreeSixtyTwoTone.default; + } +}); +Object.defineProperty(exports, "ThumbDown", { + enumerable: true, + get: function () { + return _ThumbDown.default; + } +}); +Object.defineProperty(exports, "ThumbDownAlt", { + enumerable: true, + get: function () { + return _ThumbDownAlt.default; + } +}); +Object.defineProperty(exports, "ThumbDownAltOutlined", { + enumerable: true, + get: function () { + return _ThumbDownAltOutlined.default; + } +}); +Object.defineProperty(exports, "ThumbDownAltRounded", { + enumerable: true, + get: function () { + return _ThumbDownAltRounded.default; + } +}); +Object.defineProperty(exports, "ThumbDownAltSharp", { + enumerable: true, + get: function () { + return _ThumbDownAltSharp.default; + } +}); +Object.defineProperty(exports, "ThumbDownAltTwoTone", { + enumerable: true, + get: function () { + return _ThumbDownAltTwoTone.default; + } +}); +Object.defineProperty(exports, "ThumbDownOffAlt", { + enumerable: true, + get: function () { + return _ThumbDownOffAlt.default; + } +}); +Object.defineProperty(exports, "ThumbDownOffAltOutlined", { + enumerable: true, + get: function () { + return _ThumbDownOffAltOutlined.default; + } +}); +Object.defineProperty(exports, "ThumbDownOffAltRounded", { + enumerable: true, + get: function () { + return _ThumbDownOffAltRounded.default; + } +}); +Object.defineProperty(exports, "ThumbDownOffAltSharp", { + enumerable: true, + get: function () { + return _ThumbDownOffAltSharp.default; + } +}); +Object.defineProperty(exports, "ThumbDownOffAltTwoTone", { + enumerable: true, + get: function () { + return _ThumbDownOffAltTwoTone.default; + } +}); +Object.defineProperty(exports, "ThumbDownOutlined", { + enumerable: true, + get: function () { + return _ThumbDownOutlined.default; + } +}); +Object.defineProperty(exports, "ThumbDownRounded", { + enumerable: true, + get: function () { + return _ThumbDownRounded.default; + } +}); +Object.defineProperty(exports, "ThumbDownSharp", { + enumerable: true, + get: function () { + return _ThumbDownSharp.default; + } +}); +Object.defineProperty(exports, "ThumbDownTwoTone", { + enumerable: true, + get: function () { + return _ThumbDownTwoTone.default; + } +}); +Object.defineProperty(exports, "ThumbUp", { + enumerable: true, + get: function () { + return _ThumbUp.default; + } +}); +Object.defineProperty(exports, "ThumbUpAlt", { + enumerable: true, + get: function () { + return _ThumbUpAlt.default; + } +}); +Object.defineProperty(exports, "ThumbUpAltOutlined", { + enumerable: true, + get: function () { + return _ThumbUpAltOutlined.default; + } +}); +Object.defineProperty(exports, "ThumbUpAltRounded", { + enumerable: true, + get: function () { + return _ThumbUpAltRounded.default; + } +}); +Object.defineProperty(exports, "ThumbUpAltSharp", { + enumerable: true, + get: function () { + return _ThumbUpAltSharp.default; + } +}); +Object.defineProperty(exports, "ThumbUpAltTwoTone", { + enumerable: true, + get: function () { + return _ThumbUpAltTwoTone.default; + } +}); +Object.defineProperty(exports, "ThumbUpOffAlt", { + enumerable: true, + get: function () { + return _ThumbUpOffAlt.default; + } +}); +Object.defineProperty(exports, "ThumbUpOffAltOutlined", { + enumerable: true, + get: function () { + return _ThumbUpOffAltOutlined.default; + } +}); +Object.defineProperty(exports, "ThumbUpOffAltRounded", { + enumerable: true, + get: function () { + return _ThumbUpOffAltRounded.default; + } +}); +Object.defineProperty(exports, "ThumbUpOffAltSharp", { + enumerable: true, + get: function () { + return _ThumbUpOffAltSharp.default; + } +}); +Object.defineProperty(exports, "ThumbUpOffAltTwoTone", { + enumerable: true, + get: function () { + return _ThumbUpOffAltTwoTone.default; + } +}); +Object.defineProperty(exports, "ThumbUpOutlined", { + enumerable: true, + get: function () { + return _ThumbUpOutlined.default; + } +}); +Object.defineProperty(exports, "ThumbUpRounded", { + enumerable: true, + get: function () { + return _ThumbUpRounded.default; + } +}); +Object.defineProperty(exports, "ThumbUpSharp", { + enumerable: true, + get: function () { + return _ThumbUpSharp.default; + } +}); +Object.defineProperty(exports, "ThumbUpTwoTone", { + enumerable: true, + get: function () { + return _ThumbUpTwoTone.default; + } +}); +Object.defineProperty(exports, "ThumbsUpDown", { + enumerable: true, + get: function () { + return _ThumbsUpDown.default; + } +}); +Object.defineProperty(exports, "ThumbsUpDownOutlined", { + enumerable: true, + get: function () { + return _ThumbsUpDownOutlined.default; + } +}); +Object.defineProperty(exports, "ThumbsUpDownRounded", { + enumerable: true, + get: function () { + return _ThumbsUpDownRounded.default; + } +}); +Object.defineProperty(exports, "ThumbsUpDownSharp", { + enumerable: true, + get: function () { + return _ThumbsUpDownSharp.default; + } +}); +Object.defineProperty(exports, "ThumbsUpDownTwoTone", { + enumerable: true, + get: function () { + return _ThumbsUpDownTwoTone.default; + } +}); +Object.defineProperty(exports, "TimeToLeave", { + enumerable: true, + get: function () { + return _TimeToLeave.default; + } +}); +Object.defineProperty(exports, "TimeToLeaveOutlined", { + enumerable: true, + get: function () { + return _TimeToLeaveOutlined.default; + } +}); +Object.defineProperty(exports, "TimeToLeaveRounded", { + enumerable: true, + get: function () { + return _TimeToLeaveRounded.default; + } +}); +Object.defineProperty(exports, "TimeToLeaveSharp", { + enumerable: true, + get: function () { + return _TimeToLeaveSharp.default; + } +}); +Object.defineProperty(exports, "TimeToLeaveTwoTone", { + enumerable: true, + get: function () { + return _TimeToLeaveTwoTone.default; + } +}); +Object.defineProperty(exports, "Timelapse", { + enumerable: true, + get: function () { + return _Timelapse.default; + } +}); +Object.defineProperty(exports, "TimelapseOutlined", { + enumerable: true, + get: function () { + return _TimelapseOutlined.default; + } +}); +Object.defineProperty(exports, "TimelapseRounded", { + enumerable: true, + get: function () { + return _TimelapseRounded.default; + } +}); +Object.defineProperty(exports, "TimelapseSharp", { + enumerable: true, + get: function () { + return _TimelapseSharp.default; + } +}); +Object.defineProperty(exports, "TimelapseTwoTone", { + enumerable: true, + get: function () { + return _TimelapseTwoTone.default; + } +}); +Object.defineProperty(exports, "Timeline", { + enumerable: true, + get: function () { + return _Timeline.default; + } +}); +Object.defineProperty(exports, "TimelineOutlined", { + enumerable: true, + get: function () { + return _TimelineOutlined.default; + } +}); +Object.defineProperty(exports, "TimelineRounded", { + enumerable: true, + get: function () { + return _TimelineRounded.default; + } +}); +Object.defineProperty(exports, "TimelineSharp", { + enumerable: true, + get: function () { + return _TimelineSharp.default; + } +}); +Object.defineProperty(exports, "TimelineTwoTone", { + enumerable: true, + get: function () { + return _TimelineTwoTone.default; + } +}); +Object.defineProperty(exports, "Timer", { + enumerable: true, + get: function () { + return _Timer.default; + } +}); +Object.defineProperty(exports, "Timer10", { + enumerable: true, + get: function () { + return _Timer2.default; + } +}); +Object.defineProperty(exports, "Timer10Outlined", { + enumerable: true, + get: function () { + return _Timer10Outlined.default; + } +}); +Object.defineProperty(exports, "Timer10Rounded", { + enumerable: true, + get: function () { + return _Timer10Rounded.default; + } +}); +Object.defineProperty(exports, "Timer10Select", { + enumerable: true, + get: function () { + return _Timer10Select.default; + } +}); +Object.defineProperty(exports, "Timer10SelectOutlined", { + enumerable: true, + get: function () { + return _Timer10SelectOutlined.default; + } +}); +Object.defineProperty(exports, "Timer10SelectRounded", { + enumerable: true, + get: function () { + return _Timer10SelectRounded.default; + } +}); +Object.defineProperty(exports, "Timer10SelectSharp", { + enumerable: true, + get: function () { + return _Timer10SelectSharp.default; + } +}); +Object.defineProperty(exports, "Timer10SelectTwoTone", { + enumerable: true, + get: function () { + return _Timer10SelectTwoTone.default; + } +}); +Object.defineProperty(exports, "Timer10Sharp", { + enumerable: true, + get: function () { + return _Timer10Sharp.default; + } +}); +Object.defineProperty(exports, "Timer10TwoTone", { + enumerable: true, + get: function () { + return _Timer10TwoTone.default; + } +}); +Object.defineProperty(exports, "Timer3", { + enumerable: true, + get: function () { + return _Timer3.default; + } +}); +Object.defineProperty(exports, "Timer3Outlined", { + enumerable: true, + get: function () { + return _Timer3Outlined.default; + } +}); +Object.defineProperty(exports, "Timer3Rounded", { + enumerable: true, + get: function () { + return _Timer3Rounded.default; + } +}); +Object.defineProperty(exports, "Timer3Select", { + enumerable: true, + get: function () { + return _Timer3Select.default; + } +}); +Object.defineProperty(exports, "Timer3SelectOutlined", { + enumerable: true, + get: function () { + return _Timer3SelectOutlined.default; + } +}); +Object.defineProperty(exports, "Timer3SelectRounded", { + enumerable: true, + get: function () { + return _Timer3SelectRounded.default; + } +}); +Object.defineProperty(exports, "Timer3SelectSharp", { + enumerable: true, + get: function () { + return _Timer3SelectSharp.default; + } +}); +Object.defineProperty(exports, "Timer3SelectTwoTone", { + enumerable: true, + get: function () { + return _Timer3SelectTwoTone.default; + } +}); +Object.defineProperty(exports, "Timer3Sharp", { + enumerable: true, + get: function () { + return _Timer3Sharp.default; + } +}); +Object.defineProperty(exports, "Timer3TwoTone", { + enumerable: true, + get: function () { + return _Timer3TwoTone.default; + } +}); +Object.defineProperty(exports, "TimerOff", { + enumerable: true, + get: function () { + return _TimerOff.default; + } +}); +Object.defineProperty(exports, "TimerOffOutlined", { + enumerable: true, + get: function () { + return _TimerOffOutlined.default; + } +}); +Object.defineProperty(exports, "TimerOffRounded", { + enumerable: true, + get: function () { + return _TimerOffRounded.default; + } +}); +Object.defineProperty(exports, "TimerOffSharp", { + enumerable: true, + get: function () { + return _TimerOffSharp.default; + } +}); +Object.defineProperty(exports, "TimerOffTwoTone", { + enumerable: true, + get: function () { + return _TimerOffTwoTone.default; + } +}); +Object.defineProperty(exports, "TimerOutlined", { + enumerable: true, + get: function () { + return _TimerOutlined.default; + } +}); +Object.defineProperty(exports, "TimerRounded", { + enumerable: true, + get: function () { + return _TimerRounded.default; + } +}); +Object.defineProperty(exports, "TimerSharp", { + enumerable: true, + get: function () { + return _TimerSharp.default; + } +}); +Object.defineProperty(exports, "TimerTwoTone", { + enumerable: true, + get: function () { + return _TimerTwoTone.default; + } +}); +Object.defineProperty(exports, "TimesOneMobiledata", { + enumerable: true, + get: function () { + return _TimesOneMobiledata.default; + } +}); +Object.defineProperty(exports, "TimesOneMobiledataOutlined", { + enumerable: true, + get: function () { + return _TimesOneMobiledataOutlined.default; + } +}); +Object.defineProperty(exports, "TimesOneMobiledataRounded", { + enumerable: true, + get: function () { + return _TimesOneMobiledataRounded.default; + } +}); +Object.defineProperty(exports, "TimesOneMobiledataSharp", { + enumerable: true, + get: function () { + return _TimesOneMobiledataSharp.default; + } +}); +Object.defineProperty(exports, "TimesOneMobiledataTwoTone", { + enumerable: true, + get: function () { + return _TimesOneMobiledataTwoTone.default; + } +}); +Object.defineProperty(exports, "Title", { + enumerable: true, + get: function () { + return _Title.default; + } +}); +Object.defineProperty(exports, "TitleOutlined", { + enumerable: true, + get: function () { + return _TitleOutlined.default; + } +}); +Object.defineProperty(exports, "TitleRounded", { + enumerable: true, + get: function () { + return _TitleRounded.default; + } +}); +Object.defineProperty(exports, "TitleSharp", { + enumerable: true, + get: function () { + return _TitleSharp.default; + } +}); +Object.defineProperty(exports, "TitleTwoTone", { + enumerable: true, + get: function () { + return _TitleTwoTone.default; + } +}); +Object.defineProperty(exports, "Toc", { + enumerable: true, + get: function () { + return _Toc.default; + } +}); +Object.defineProperty(exports, "TocOutlined", { + enumerable: true, + get: function () { + return _TocOutlined.default; + } +}); +Object.defineProperty(exports, "TocRounded", { + enumerable: true, + get: function () { + return _TocRounded.default; + } +}); +Object.defineProperty(exports, "TocSharp", { + enumerable: true, + get: function () { + return _TocSharp.default; + } +}); +Object.defineProperty(exports, "TocTwoTone", { + enumerable: true, + get: function () { + return _TocTwoTone.default; + } +}); +Object.defineProperty(exports, "Today", { + enumerable: true, + get: function () { + return _Today.default; + } +}); +Object.defineProperty(exports, "TodayOutlined", { + enumerable: true, + get: function () { + return _TodayOutlined.default; + } +}); +Object.defineProperty(exports, "TodayRounded", { + enumerable: true, + get: function () { + return _TodayRounded.default; + } +}); +Object.defineProperty(exports, "TodaySharp", { + enumerable: true, + get: function () { + return _TodaySharp.default; + } +}); +Object.defineProperty(exports, "TodayTwoTone", { + enumerable: true, + get: function () { + return _TodayTwoTone.default; + } +}); +Object.defineProperty(exports, "ToggleOff", { + enumerable: true, + get: function () { + return _ToggleOff.default; + } +}); +Object.defineProperty(exports, "ToggleOffOutlined", { + enumerable: true, + get: function () { + return _ToggleOffOutlined.default; + } +}); +Object.defineProperty(exports, "ToggleOffRounded", { + enumerable: true, + get: function () { + return _ToggleOffRounded.default; + } +}); +Object.defineProperty(exports, "ToggleOffSharp", { + enumerable: true, + get: function () { + return _ToggleOffSharp.default; + } +}); +Object.defineProperty(exports, "ToggleOffTwoTone", { + enumerable: true, + get: function () { + return _ToggleOffTwoTone.default; + } +}); +Object.defineProperty(exports, "ToggleOn", { + enumerable: true, + get: function () { + return _ToggleOn.default; + } +}); +Object.defineProperty(exports, "ToggleOnOutlined", { + enumerable: true, + get: function () { + return _ToggleOnOutlined.default; + } +}); +Object.defineProperty(exports, "ToggleOnRounded", { + enumerable: true, + get: function () { + return _ToggleOnRounded.default; + } +}); +Object.defineProperty(exports, "ToggleOnSharp", { + enumerable: true, + get: function () { + return _ToggleOnSharp.default; + } +}); +Object.defineProperty(exports, "ToggleOnTwoTone", { + enumerable: true, + get: function () { + return _ToggleOnTwoTone.default; + } +}); +Object.defineProperty(exports, "Toll", { + enumerable: true, + get: function () { + return _Toll.default; + } +}); +Object.defineProperty(exports, "TollOutlined", { + enumerable: true, + get: function () { + return _TollOutlined.default; + } +}); +Object.defineProperty(exports, "TollRounded", { + enumerable: true, + get: function () { + return _TollRounded.default; + } +}); +Object.defineProperty(exports, "TollSharp", { + enumerable: true, + get: function () { + return _TollSharp.default; + } +}); +Object.defineProperty(exports, "TollTwoTone", { + enumerable: true, + get: function () { + return _TollTwoTone.default; + } +}); +Object.defineProperty(exports, "Tonality", { + enumerable: true, + get: function () { + return _Tonality.default; + } +}); +Object.defineProperty(exports, "TonalityOutlined", { + enumerable: true, + get: function () { + return _TonalityOutlined.default; + } +}); +Object.defineProperty(exports, "TonalityRounded", { + enumerable: true, + get: function () { + return _TonalityRounded.default; + } +}); +Object.defineProperty(exports, "TonalitySharp", { + enumerable: true, + get: function () { + return _TonalitySharp.default; + } +}); +Object.defineProperty(exports, "TonalityTwoTone", { + enumerable: true, + get: function () { + return _TonalityTwoTone.default; + } +}); +Object.defineProperty(exports, "Topic", { + enumerable: true, + get: function () { + return _Topic.default; + } +}); +Object.defineProperty(exports, "TopicOutlined", { + enumerable: true, + get: function () { + return _TopicOutlined.default; + } +}); +Object.defineProperty(exports, "TopicRounded", { + enumerable: true, + get: function () { + return _TopicRounded.default; + } +}); +Object.defineProperty(exports, "TopicSharp", { + enumerable: true, + get: function () { + return _TopicSharp.default; + } +}); +Object.defineProperty(exports, "TopicTwoTone", { + enumerable: true, + get: function () { + return _TopicTwoTone.default; + } +}); +Object.defineProperty(exports, "TouchApp", { + enumerable: true, + get: function () { + return _TouchApp.default; + } +}); +Object.defineProperty(exports, "TouchAppOutlined", { + enumerable: true, + get: function () { + return _TouchAppOutlined.default; + } +}); +Object.defineProperty(exports, "TouchAppRounded", { + enumerable: true, + get: function () { + return _TouchAppRounded.default; + } +}); +Object.defineProperty(exports, "TouchAppSharp", { + enumerable: true, + get: function () { + return _TouchAppSharp.default; + } +}); +Object.defineProperty(exports, "TouchAppTwoTone", { + enumerable: true, + get: function () { + return _TouchAppTwoTone.default; + } +}); +Object.defineProperty(exports, "Tour", { + enumerable: true, + get: function () { + return _Tour.default; + } +}); +Object.defineProperty(exports, "TourOutlined", { + enumerable: true, + get: function () { + return _TourOutlined.default; + } +}); +Object.defineProperty(exports, "TourRounded", { + enumerable: true, + get: function () { + return _TourRounded.default; + } +}); +Object.defineProperty(exports, "TourSharp", { + enumerable: true, + get: function () { + return _TourSharp.default; + } +}); +Object.defineProperty(exports, "TourTwoTone", { + enumerable: true, + get: function () { + return _TourTwoTone.default; + } +}); +Object.defineProperty(exports, "Toys", { + enumerable: true, + get: function () { + return _Toys.default; + } +}); +Object.defineProperty(exports, "ToysOutlined", { + enumerable: true, + get: function () { + return _ToysOutlined.default; + } +}); +Object.defineProperty(exports, "ToysRounded", { + enumerable: true, + get: function () { + return _ToysRounded.default; + } +}); +Object.defineProperty(exports, "ToysSharp", { + enumerable: true, + get: function () { + return _ToysSharp.default; + } +}); +Object.defineProperty(exports, "ToysTwoTone", { + enumerable: true, + get: function () { + return _ToysTwoTone.default; + } +}); +Object.defineProperty(exports, "TrackChanges", { + enumerable: true, + get: function () { + return _TrackChanges.default; + } +}); +Object.defineProperty(exports, "TrackChangesOutlined", { + enumerable: true, + get: function () { + return _TrackChangesOutlined.default; + } +}); +Object.defineProperty(exports, "TrackChangesRounded", { + enumerable: true, + get: function () { + return _TrackChangesRounded.default; + } +}); +Object.defineProperty(exports, "TrackChangesSharp", { + enumerable: true, + get: function () { + return _TrackChangesSharp.default; + } +}); +Object.defineProperty(exports, "TrackChangesTwoTone", { + enumerable: true, + get: function () { + return _TrackChangesTwoTone.default; + } +}); +Object.defineProperty(exports, "Traffic", { + enumerable: true, + get: function () { + return _Traffic.default; + } +}); +Object.defineProperty(exports, "TrafficOutlined", { + enumerable: true, + get: function () { + return _TrafficOutlined.default; + } +}); +Object.defineProperty(exports, "TrafficRounded", { + enumerable: true, + get: function () { + return _TrafficRounded.default; + } +}); +Object.defineProperty(exports, "TrafficSharp", { + enumerable: true, + get: function () { + return _TrafficSharp.default; + } +}); +Object.defineProperty(exports, "TrafficTwoTone", { + enumerable: true, + get: function () { + return _TrafficTwoTone.default; + } +}); +Object.defineProperty(exports, "Train", { + enumerable: true, + get: function () { + return _Train.default; + } +}); +Object.defineProperty(exports, "TrainOutlined", { + enumerable: true, + get: function () { + return _TrainOutlined.default; + } +}); +Object.defineProperty(exports, "TrainRounded", { + enumerable: true, + get: function () { + return _TrainRounded.default; + } +}); +Object.defineProperty(exports, "TrainSharp", { + enumerable: true, + get: function () { + return _TrainSharp.default; + } +}); +Object.defineProperty(exports, "TrainTwoTone", { + enumerable: true, + get: function () { + return _TrainTwoTone.default; + } +}); +Object.defineProperty(exports, "Tram", { + enumerable: true, + get: function () { + return _Tram.default; + } +}); +Object.defineProperty(exports, "TramOutlined", { + enumerable: true, + get: function () { + return _TramOutlined.default; + } +}); +Object.defineProperty(exports, "TramRounded", { + enumerable: true, + get: function () { + return _TramRounded.default; + } +}); +Object.defineProperty(exports, "TramSharp", { + enumerable: true, + get: function () { + return _TramSharp.default; + } +}); +Object.defineProperty(exports, "TramTwoTone", { + enumerable: true, + get: function () { + return _TramTwoTone.default; + } +}); +Object.defineProperty(exports, "TransferWithinAStation", { + enumerable: true, + get: function () { + return _TransferWithinAStation.default; + } +}); +Object.defineProperty(exports, "TransferWithinAStationOutlined", { + enumerable: true, + get: function () { + return _TransferWithinAStationOutlined.default; + } +}); +Object.defineProperty(exports, "TransferWithinAStationRounded", { + enumerable: true, + get: function () { + return _TransferWithinAStationRounded.default; + } +}); +Object.defineProperty(exports, "TransferWithinAStationSharp", { + enumerable: true, + get: function () { + return _TransferWithinAStationSharp.default; + } +}); +Object.defineProperty(exports, "TransferWithinAStationTwoTone", { + enumerable: true, + get: function () { + return _TransferWithinAStationTwoTone.default; + } +}); +Object.defineProperty(exports, "Transform", { + enumerable: true, + get: function () { + return _Transform.default; + } +}); +Object.defineProperty(exports, "TransformOutlined", { + enumerable: true, + get: function () { + return _TransformOutlined.default; + } +}); +Object.defineProperty(exports, "TransformRounded", { + enumerable: true, + get: function () { + return _TransformRounded.default; + } +}); +Object.defineProperty(exports, "TransformSharp", { + enumerable: true, + get: function () { + return _TransformSharp.default; + } +}); +Object.defineProperty(exports, "TransformTwoTone", { + enumerable: true, + get: function () { + return _TransformTwoTone.default; + } +}); +Object.defineProperty(exports, "Transgender", { + enumerable: true, + get: function () { + return _Transgender.default; + } +}); +Object.defineProperty(exports, "TransgenderOutlined", { + enumerable: true, + get: function () { + return _TransgenderOutlined.default; + } +}); +Object.defineProperty(exports, "TransgenderRounded", { + enumerable: true, + get: function () { + return _TransgenderRounded.default; + } +}); +Object.defineProperty(exports, "TransgenderSharp", { + enumerable: true, + get: function () { + return _TransgenderSharp.default; + } +}); +Object.defineProperty(exports, "TransgenderTwoTone", { + enumerable: true, + get: function () { + return _TransgenderTwoTone.default; + } +}); +Object.defineProperty(exports, "TransitEnterexit", { + enumerable: true, + get: function () { + return _TransitEnterexit.default; + } +}); +Object.defineProperty(exports, "TransitEnterexitOutlined", { + enumerable: true, + get: function () { + return _TransitEnterexitOutlined.default; + } +}); +Object.defineProperty(exports, "TransitEnterexitRounded", { + enumerable: true, + get: function () { + return _TransitEnterexitRounded.default; + } +}); +Object.defineProperty(exports, "TransitEnterexitSharp", { + enumerable: true, + get: function () { + return _TransitEnterexitSharp.default; + } +}); +Object.defineProperty(exports, "TransitEnterexitTwoTone", { + enumerable: true, + get: function () { + return _TransitEnterexitTwoTone.default; + } +}); +Object.defineProperty(exports, "Translate", { + enumerable: true, + get: function () { + return _Translate.default; + } +}); +Object.defineProperty(exports, "TranslateOutlined", { + enumerable: true, + get: function () { + return _TranslateOutlined.default; + } +}); +Object.defineProperty(exports, "TranslateRounded", { + enumerable: true, + get: function () { + return _TranslateRounded.default; + } +}); +Object.defineProperty(exports, "TranslateSharp", { + enumerable: true, + get: function () { + return _TranslateSharp.default; + } +}); +Object.defineProperty(exports, "TranslateTwoTone", { + enumerable: true, + get: function () { + return _TranslateTwoTone.default; + } +}); +Object.defineProperty(exports, "TravelExplore", { + enumerable: true, + get: function () { + return _TravelExplore.default; + } +}); +Object.defineProperty(exports, "TravelExploreOutlined", { + enumerable: true, + get: function () { + return _TravelExploreOutlined.default; + } +}); +Object.defineProperty(exports, "TravelExploreRounded", { + enumerable: true, + get: function () { + return _TravelExploreRounded.default; + } +}); +Object.defineProperty(exports, "TravelExploreSharp", { + enumerable: true, + get: function () { + return _TravelExploreSharp.default; + } +}); +Object.defineProperty(exports, "TravelExploreTwoTone", { + enumerable: true, + get: function () { + return _TravelExploreTwoTone.default; + } +}); +Object.defineProperty(exports, "TrendingDown", { + enumerable: true, + get: function () { + return _TrendingDown.default; + } +}); +Object.defineProperty(exports, "TrendingDownOutlined", { + enumerable: true, + get: function () { + return _TrendingDownOutlined.default; + } +}); +Object.defineProperty(exports, "TrendingDownRounded", { + enumerable: true, + get: function () { + return _TrendingDownRounded.default; + } +}); +Object.defineProperty(exports, "TrendingDownSharp", { + enumerable: true, + get: function () { + return _TrendingDownSharp.default; + } +}); +Object.defineProperty(exports, "TrendingDownTwoTone", { + enumerable: true, + get: function () { + return _TrendingDownTwoTone.default; + } +}); +Object.defineProperty(exports, "TrendingFlat", { + enumerable: true, + get: function () { + return _TrendingFlat.default; + } +}); +Object.defineProperty(exports, "TrendingFlatOutlined", { + enumerable: true, + get: function () { + return _TrendingFlatOutlined.default; + } +}); +Object.defineProperty(exports, "TrendingFlatRounded", { + enumerable: true, + get: function () { + return _TrendingFlatRounded.default; + } +}); +Object.defineProperty(exports, "TrendingFlatSharp", { + enumerable: true, + get: function () { + return _TrendingFlatSharp.default; + } +}); +Object.defineProperty(exports, "TrendingFlatTwoTone", { + enumerable: true, + get: function () { + return _TrendingFlatTwoTone.default; + } +}); +Object.defineProperty(exports, "TrendingUp", { + enumerable: true, + get: function () { + return _TrendingUp.default; + } +}); +Object.defineProperty(exports, "TrendingUpOutlined", { + enumerable: true, + get: function () { + return _TrendingUpOutlined.default; + } +}); +Object.defineProperty(exports, "TrendingUpRounded", { + enumerable: true, + get: function () { + return _TrendingUpRounded.default; + } +}); +Object.defineProperty(exports, "TrendingUpSharp", { + enumerable: true, + get: function () { + return _TrendingUpSharp.default; + } +}); +Object.defineProperty(exports, "TrendingUpTwoTone", { + enumerable: true, + get: function () { + return _TrendingUpTwoTone.default; + } +}); +Object.defineProperty(exports, "TripOrigin", { + enumerable: true, + get: function () { + return _TripOrigin.default; + } +}); +Object.defineProperty(exports, "TripOriginOutlined", { + enumerable: true, + get: function () { + return _TripOriginOutlined.default; + } +}); +Object.defineProperty(exports, "TripOriginRounded", { + enumerable: true, + get: function () { + return _TripOriginRounded.default; + } +}); +Object.defineProperty(exports, "TripOriginSharp", { + enumerable: true, + get: function () { + return _TripOriginSharp.default; + } +}); +Object.defineProperty(exports, "TripOriginTwoTone", { + enumerable: true, + get: function () { + return _TripOriginTwoTone.default; + } +}); +Object.defineProperty(exports, "Try", { + enumerable: true, + get: function () { + return _Try.default; + } +}); +Object.defineProperty(exports, "TryOutlined", { + enumerable: true, + get: function () { + return _TryOutlined.default; + } +}); +Object.defineProperty(exports, "TryRounded", { + enumerable: true, + get: function () { + return _TryRounded.default; + } +}); +Object.defineProperty(exports, "TrySharp", { + enumerable: true, + get: function () { + return _TrySharp.default; + } +}); +Object.defineProperty(exports, "TryTwoTone", { + enumerable: true, + get: function () { + return _TryTwoTone.default; + } +}); +Object.defineProperty(exports, "Tty", { + enumerable: true, + get: function () { + return _Tty.default; + } +}); +Object.defineProperty(exports, "TtyOutlined", { + enumerable: true, + get: function () { + return _TtyOutlined.default; + } +}); +Object.defineProperty(exports, "TtyRounded", { + enumerable: true, + get: function () { + return _TtyRounded.default; + } +}); +Object.defineProperty(exports, "TtySharp", { + enumerable: true, + get: function () { + return _TtySharp.default; + } +}); +Object.defineProperty(exports, "TtyTwoTone", { + enumerable: true, + get: function () { + return _TtyTwoTone.default; + } +}); +Object.defineProperty(exports, "Tune", { + enumerable: true, + get: function () { + return _Tune.default; + } +}); +Object.defineProperty(exports, "TuneOutlined", { + enumerable: true, + get: function () { + return _TuneOutlined.default; + } +}); +Object.defineProperty(exports, "TuneRounded", { + enumerable: true, + get: function () { + return _TuneRounded.default; + } +}); +Object.defineProperty(exports, "TuneSharp", { + enumerable: true, + get: function () { + return _TuneSharp.default; + } +}); +Object.defineProperty(exports, "TuneTwoTone", { + enumerable: true, + get: function () { + return _TuneTwoTone.default; + } +}); +Object.defineProperty(exports, "Tungsten", { + enumerable: true, + get: function () { + return _Tungsten.default; + } +}); +Object.defineProperty(exports, "TungstenOutlined", { + enumerable: true, + get: function () { + return _TungstenOutlined.default; + } +}); +Object.defineProperty(exports, "TungstenRounded", { + enumerable: true, + get: function () { + return _TungstenRounded.default; + } +}); +Object.defineProperty(exports, "TungstenSharp", { + enumerable: true, + get: function () { + return _TungstenSharp.default; + } +}); +Object.defineProperty(exports, "TungstenTwoTone", { + enumerable: true, + get: function () { + return _TungstenTwoTone.default; + } +}); +Object.defineProperty(exports, "TurnedIn", { + enumerable: true, + get: function () { + return _TurnedIn.default; + } +}); +Object.defineProperty(exports, "TurnedInNot", { + enumerable: true, + get: function () { + return _TurnedInNot.default; + } +}); +Object.defineProperty(exports, "TurnedInNotOutlined", { + enumerable: true, + get: function () { + return _TurnedInNotOutlined.default; + } +}); +Object.defineProperty(exports, "TurnedInNotRounded", { + enumerable: true, + get: function () { + return _TurnedInNotRounded.default; + } +}); +Object.defineProperty(exports, "TurnedInNotSharp", { + enumerable: true, + get: function () { + return _TurnedInNotSharp.default; + } +}); +Object.defineProperty(exports, "TurnedInNotTwoTone", { + enumerable: true, + get: function () { + return _TurnedInNotTwoTone.default; + } +}); +Object.defineProperty(exports, "TurnedInOutlined", { + enumerable: true, + get: function () { + return _TurnedInOutlined.default; + } +}); +Object.defineProperty(exports, "TurnedInRounded", { + enumerable: true, + get: function () { + return _TurnedInRounded.default; + } +}); +Object.defineProperty(exports, "TurnedInSharp", { + enumerable: true, + get: function () { + return _TurnedInSharp.default; + } +}); +Object.defineProperty(exports, "TurnedInTwoTone", { + enumerable: true, + get: function () { + return _TurnedInTwoTone.default; + } +}); +Object.defineProperty(exports, "Tv", { + enumerable: true, + get: function () { + return _Tv.default; + } +}); +Object.defineProperty(exports, "TvOff", { + enumerable: true, + get: function () { + return _TvOff.default; + } +}); +Object.defineProperty(exports, "TvOffOutlined", { + enumerable: true, + get: function () { + return _TvOffOutlined.default; + } +}); +Object.defineProperty(exports, "TvOffRounded", { + enumerable: true, + get: function () { + return _TvOffRounded.default; + } +}); +Object.defineProperty(exports, "TvOffSharp", { + enumerable: true, + get: function () { + return _TvOffSharp.default; + } +}); +Object.defineProperty(exports, "TvOffTwoTone", { + enumerable: true, + get: function () { + return _TvOffTwoTone.default; + } +}); +Object.defineProperty(exports, "TvOutlined", { + enumerable: true, + get: function () { + return _TvOutlined.default; + } +}); +Object.defineProperty(exports, "TvRounded", { + enumerable: true, + get: function () { + return _TvRounded.default; + } +}); +Object.defineProperty(exports, "TvSharp", { + enumerable: true, + get: function () { + return _TvSharp.default; + } +}); +Object.defineProperty(exports, "TvTwoTone", { + enumerable: true, + get: function () { + return _TvTwoTone.default; + } +}); +Object.defineProperty(exports, "TwelveMp", { + enumerable: true, + get: function () { + return _TwelveMp.default; + } +}); +Object.defineProperty(exports, "TwelveMpOutlined", { + enumerable: true, + get: function () { + return _TwelveMpOutlined.default; + } +}); +Object.defineProperty(exports, "TwelveMpRounded", { + enumerable: true, + get: function () { + return _TwelveMpRounded.default; + } +}); +Object.defineProperty(exports, "TwelveMpSharp", { + enumerable: true, + get: function () { + return _TwelveMpSharp.default; + } +}); +Object.defineProperty(exports, "TwelveMpTwoTone", { + enumerable: true, + get: function () { + return _TwelveMpTwoTone.default; + } +}); +Object.defineProperty(exports, "TwentyFourMp", { + enumerable: true, + get: function () { + return _TwentyFourMp.default; + } +}); +Object.defineProperty(exports, "TwentyFourMpOutlined", { + enumerable: true, + get: function () { + return _TwentyFourMpOutlined.default; + } +}); +Object.defineProperty(exports, "TwentyFourMpRounded", { + enumerable: true, + get: function () { + return _TwentyFourMpRounded.default; + } +}); +Object.defineProperty(exports, "TwentyFourMpSharp", { + enumerable: true, + get: function () { + return _TwentyFourMpSharp.default; + } +}); +Object.defineProperty(exports, "TwentyFourMpTwoTone", { + enumerable: true, + get: function () { + return _TwentyFourMpTwoTone.default; + } +}); +Object.defineProperty(exports, "TwentyOneMp", { + enumerable: true, + get: function () { + return _TwentyOneMp.default; + } +}); +Object.defineProperty(exports, "TwentyOneMpOutlined", { + enumerable: true, + get: function () { + return _TwentyOneMpOutlined.default; + } +}); +Object.defineProperty(exports, "TwentyOneMpRounded", { + enumerable: true, + get: function () { + return _TwentyOneMpRounded.default; + } +}); +Object.defineProperty(exports, "TwentyOneMpSharp", { + enumerable: true, + get: function () { + return _TwentyOneMpSharp.default; + } +}); +Object.defineProperty(exports, "TwentyOneMpTwoTone", { + enumerable: true, + get: function () { + return _TwentyOneMpTwoTone.default; + } +}); +Object.defineProperty(exports, "TwentyThreeMp", { + enumerable: true, + get: function () { + return _TwentyThreeMp.default; + } +}); +Object.defineProperty(exports, "TwentyThreeMpOutlined", { + enumerable: true, + get: function () { + return _TwentyThreeMpOutlined.default; + } +}); +Object.defineProperty(exports, "TwentyThreeMpRounded", { + enumerable: true, + get: function () { + return _TwentyThreeMpRounded.default; + } +}); +Object.defineProperty(exports, "TwentyThreeMpSharp", { + enumerable: true, + get: function () { + return _TwentyThreeMpSharp.default; + } +}); +Object.defineProperty(exports, "TwentyThreeMpTwoTone", { + enumerable: true, + get: function () { + return _TwentyThreeMpTwoTone.default; + } +}); +Object.defineProperty(exports, "TwentyTwoMp", { + enumerable: true, + get: function () { + return _TwentyTwoMp.default; + } +}); +Object.defineProperty(exports, "TwentyTwoMpOutlined", { + enumerable: true, + get: function () { + return _TwentyTwoMpOutlined.default; + } +}); +Object.defineProperty(exports, "TwentyTwoMpRounded", { + enumerable: true, + get: function () { + return _TwentyTwoMpRounded.default; + } +}); +Object.defineProperty(exports, "TwentyTwoMpSharp", { + enumerable: true, + get: function () { + return _TwentyTwoMpSharp.default; + } +}); +Object.defineProperty(exports, "TwentyTwoMpTwoTone", { + enumerable: true, + get: function () { + return _TwentyTwoMpTwoTone.default; + } +}); +Object.defineProperty(exports, "TwentyZeroMp", { + enumerable: true, + get: function () { + return _TwentyZeroMp.default; + } +}); +Object.defineProperty(exports, "TwentyZeroMpOutlined", { + enumerable: true, + get: function () { + return _TwentyZeroMpOutlined.default; + } +}); +Object.defineProperty(exports, "TwentyZeroMpRounded", { + enumerable: true, + get: function () { + return _TwentyZeroMpRounded.default; + } +}); +Object.defineProperty(exports, "TwentyZeroMpSharp", { + enumerable: true, + get: function () { + return _TwentyZeroMpSharp.default; + } +}); +Object.defineProperty(exports, "TwentyZeroMpTwoTone", { + enumerable: true, + get: function () { + return _TwentyZeroMpTwoTone.default; + } +}); +Object.defineProperty(exports, "Twitter", { + enumerable: true, + get: function () { + return _Twitter.default; + } +}); +Object.defineProperty(exports, "TwoK", { + enumerable: true, + get: function () { + return _TwoK.default; + } +}); +Object.defineProperty(exports, "TwoKOutlined", { + enumerable: true, + get: function () { + return _TwoKOutlined.default; + } +}); +Object.defineProperty(exports, "TwoKPlus", { + enumerable: true, + get: function () { + return _TwoKPlus.default; + } +}); +Object.defineProperty(exports, "TwoKPlusOutlined", { + enumerable: true, + get: function () { + return _TwoKPlusOutlined.default; + } +}); +Object.defineProperty(exports, "TwoKPlusRounded", { + enumerable: true, + get: function () { + return _TwoKPlusRounded.default; + } +}); +Object.defineProperty(exports, "TwoKPlusSharp", { + enumerable: true, + get: function () { + return _TwoKPlusSharp.default; + } +}); +Object.defineProperty(exports, "TwoKPlusTwoTone", { + enumerable: true, + get: function () { + return _TwoKPlusTwoTone.default; + } +}); +Object.defineProperty(exports, "TwoKRounded", { + enumerable: true, + get: function () { + return _TwoKRounded.default; + } +}); +Object.defineProperty(exports, "TwoKSharp", { + enumerable: true, + get: function () { + return _TwoKSharp.default; + } +}); +Object.defineProperty(exports, "TwoKTwoTone", { + enumerable: true, + get: function () { + return _TwoKTwoTone.default; + } +}); +Object.defineProperty(exports, "TwoMp", { + enumerable: true, + get: function () { + return _TwoMp.default; + } +}); +Object.defineProperty(exports, "TwoMpOutlined", { + enumerable: true, + get: function () { + return _TwoMpOutlined.default; + } +}); +Object.defineProperty(exports, "TwoMpRounded", { + enumerable: true, + get: function () { + return _TwoMpRounded.default; + } +}); +Object.defineProperty(exports, "TwoMpSharp", { + enumerable: true, + get: function () { + return _TwoMpSharp.default; + } +}); +Object.defineProperty(exports, "TwoMpTwoTone", { + enumerable: true, + get: function () { + return _TwoMpTwoTone.default; + } +}); +Object.defineProperty(exports, "TwoWheeler", { + enumerable: true, + get: function () { + return _TwoWheeler.default; + } +}); +Object.defineProperty(exports, "TwoWheelerOutlined", { + enumerable: true, + get: function () { + return _TwoWheelerOutlined.default; + } +}); +Object.defineProperty(exports, "TwoWheelerRounded", { + enumerable: true, + get: function () { + return _TwoWheelerRounded.default; + } +}); +Object.defineProperty(exports, "TwoWheelerSharp", { + enumerable: true, + get: function () { + return _TwoWheelerSharp.default; + } +}); +Object.defineProperty(exports, "TwoWheelerTwoTone", { + enumerable: true, + get: function () { + return _TwoWheelerTwoTone.default; + } +}); +Object.defineProperty(exports, "Umbrella", { + enumerable: true, + get: function () { + return _Umbrella.default; + } +}); +Object.defineProperty(exports, "UmbrellaOutlined", { + enumerable: true, + get: function () { + return _UmbrellaOutlined.default; + } +}); +Object.defineProperty(exports, "UmbrellaRounded", { + enumerable: true, + get: function () { + return _UmbrellaRounded.default; + } +}); +Object.defineProperty(exports, "UmbrellaSharp", { + enumerable: true, + get: function () { + return _UmbrellaSharp.default; + } +}); +Object.defineProperty(exports, "UmbrellaTwoTone", { + enumerable: true, + get: function () { + return _UmbrellaTwoTone.default; + } +}); +Object.defineProperty(exports, "Unarchive", { + enumerable: true, + get: function () { + return _Unarchive.default; + } +}); +Object.defineProperty(exports, "UnarchiveOutlined", { + enumerable: true, + get: function () { + return _UnarchiveOutlined.default; + } +}); +Object.defineProperty(exports, "UnarchiveRounded", { + enumerable: true, + get: function () { + return _UnarchiveRounded.default; + } +}); +Object.defineProperty(exports, "UnarchiveSharp", { + enumerable: true, + get: function () { + return _UnarchiveSharp.default; + } +}); +Object.defineProperty(exports, "UnarchiveTwoTone", { + enumerable: true, + get: function () { + return _UnarchiveTwoTone.default; + } +}); +Object.defineProperty(exports, "Undo", { + enumerable: true, + get: function () { + return _Undo.default; + } +}); +Object.defineProperty(exports, "UndoOutlined", { + enumerable: true, + get: function () { + return _UndoOutlined.default; + } +}); +Object.defineProperty(exports, "UndoRounded", { + enumerable: true, + get: function () { + return _UndoRounded.default; + } +}); +Object.defineProperty(exports, "UndoSharp", { + enumerable: true, + get: function () { + return _UndoSharp.default; + } +}); +Object.defineProperty(exports, "UndoTwoTone", { + enumerable: true, + get: function () { + return _UndoTwoTone.default; + } +}); +Object.defineProperty(exports, "UnfoldLess", { + enumerable: true, + get: function () { + return _UnfoldLess.default; + } +}); +Object.defineProperty(exports, "UnfoldLessOutlined", { + enumerable: true, + get: function () { + return _UnfoldLessOutlined.default; + } +}); +Object.defineProperty(exports, "UnfoldLessRounded", { + enumerable: true, + get: function () { + return _UnfoldLessRounded.default; + } +}); +Object.defineProperty(exports, "UnfoldLessSharp", { + enumerable: true, + get: function () { + return _UnfoldLessSharp.default; + } +}); +Object.defineProperty(exports, "UnfoldLessTwoTone", { + enumerable: true, + get: function () { + return _UnfoldLessTwoTone.default; + } +}); +Object.defineProperty(exports, "UnfoldMore", { + enumerable: true, + get: function () { + return _UnfoldMore.default; + } +}); +Object.defineProperty(exports, "UnfoldMoreOutlined", { + enumerable: true, + get: function () { + return _UnfoldMoreOutlined.default; + } +}); +Object.defineProperty(exports, "UnfoldMoreRounded", { + enumerable: true, + get: function () { + return _UnfoldMoreRounded.default; + } +}); +Object.defineProperty(exports, "UnfoldMoreSharp", { + enumerable: true, + get: function () { + return _UnfoldMoreSharp.default; + } +}); +Object.defineProperty(exports, "UnfoldMoreTwoTone", { + enumerable: true, + get: function () { + return _UnfoldMoreTwoTone.default; + } +}); +Object.defineProperty(exports, "Unpublished", { + enumerable: true, + get: function () { + return _Unpublished.default; + } +}); +Object.defineProperty(exports, "UnpublishedOutlined", { + enumerable: true, + get: function () { + return _UnpublishedOutlined.default; + } +}); +Object.defineProperty(exports, "UnpublishedRounded", { + enumerable: true, + get: function () { + return _UnpublishedRounded.default; + } +}); +Object.defineProperty(exports, "UnpublishedSharp", { + enumerable: true, + get: function () { + return _UnpublishedSharp.default; + } +}); +Object.defineProperty(exports, "UnpublishedTwoTone", { + enumerable: true, + get: function () { + return _UnpublishedTwoTone.default; + } +}); +Object.defineProperty(exports, "Unsubscribe", { + enumerable: true, + get: function () { + return _Unsubscribe.default; + } +}); +Object.defineProperty(exports, "UnsubscribeOutlined", { + enumerable: true, + get: function () { + return _UnsubscribeOutlined.default; + } +}); +Object.defineProperty(exports, "UnsubscribeRounded", { + enumerable: true, + get: function () { + return _UnsubscribeRounded.default; + } +}); +Object.defineProperty(exports, "UnsubscribeSharp", { + enumerable: true, + get: function () { + return _UnsubscribeSharp.default; + } +}); +Object.defineProperty(exports, "UnsubscribeTwoTone", { + enumerable: true, + get: function () { + return _UnsubscribeTwoTone.default; + } +}); +Object.defineProperty(exports, "Upcoming", { + enumerable: true, + get: function () { + return _Upcoming.default; + } +}); +Object.defineProperty(exports, "UpcomingOutlined", { + enumerable: true, + get: function () { + return _UpcomingOutlined.default; + } +}); +Object.defineProperty(exports, "UpcomingRounded", { + enumerable: true, + get: function () { + return _UpcomingRounded.default; + } +}); +Object.defineProperty(exports, "UpcomingSharp", { + enumerable: true, + get: function () { + return _UpcomingSharp.default; + } +}); +Object.defineProperty(exports, "UpcomingTwoTone", { + enumerable: true, + get: function () { + return _UpcomingTwoTone.default; + } +}); +Object.defineProperty(exports, "Update", { + enumerable: true, + get: function () { + return _Update.default; + } +}); +Object.defineProperty(exports, "UpdateDisabled", { + enumerable: true, + get: function () { + return _UpdateDisabled.default; + } +}); +Object.defineProperty(exports, "UpdateDisabledOutlined", { + enumerable: true, + get: function () { + return _UpdateDisabledOutlined.default; + } +}); +Object.defineProperty(exports, "UpdateDisabledRounded", { + enumerable: true, + get: function () { + return _UpdateDisabledRounded.default; + } +}); +Object.defineProperty(exports, "UpdateDisabledSharp", { + enumerable: true, + get: function () { + return _UpdateDisabledSharp.default; + } +}); +Object.defineProperty(exports, "UpdateDisabledTwoTone", { + enumerable: true, + get: function () { + return _UpdateDisabledTwoTone.default; + } +}); +Object.defineProperty(exports, "UpdateOutlined", { + enumerable: true, + get: function () { + return _UpdateOutlined.default; + } +}); +Object.defineProperty(exports, "UpdateRounded", { + enumerable: true, + get: function () { + return _UpdateRounded.default; + } +}); +Object.defineProperty(exports, "UpdateSharp", { + enumerable: true, + get: function () { + return _UpdateSharp.default; + } +}); +Object.defineProperty(exports, "UpdateTwoTone", { + enumerable: true, + get: function () { + return _UpdateTwoTone.default; + } +}); +Object.defineProperty(exports, "Upgrade", { + enumerable: true, + get: function () { + return _Upgrade.default; + } +}); +Object.defineProperty(exports, "UpgradeOutlined", { + enumerable: true, + get: function () { + return _UpgradeOutlined.default; + } +}); +Object.defineProperty(exports, "UpgradeRounded", { + enumerable: true, + get: function () { + return _UpgradeRounded.default; + } +}); +Object.defineProperty(exports, "UpgradeSharp", { + enumerable: true, + get: function () { + return _UpgradeSharp.default; + } +}); +Object.defineProperty(exports, "UpgradeTwoTone", { + enumerable: true, + get: function () { + return _UpgradeTwoTone.default; + } +}); +Object.defineProperty(exports, "Upload", { + enumerable: true, + get: function () { + return _Upload.default; + } +}); +Object.defineProperty(exports, "UploadFile", { + enumerable: true, + get: function () { + return _UploadFile.default; + } +}); +Object.defineProperty(exports, "UploadFileOutlined", { + enumerable: true, + get: function () { + return _UploadFileOutlined.default; + } +}); +Object.defineProperty(exports, "UploadFileRounded", { + enumerable: true, + get: function () { + return _UploadFileRounded.default; + } +}); +Object.defineProperty(exports, "UploadFileSharp", { + enumerable: true, + get: function () { + return _UploadFileSharp.default; + } +}); +Object.defineProperty(exports, "UploadFileTwoTone", { + enumerable: true, + get: function () { + return _UploadFileTwoTone.default; + } +}); +Object.defineProperty(exports, "UploadOutlined", { + enumerable: true, + get: function () { + return _UploadOutlined.default; + } +}); +Object.defineProperty(exports, "UploadRounded", { + enumerable: true, + get: function () { + return _UploadRounded.default; + } +}); +Object.defineProperty(exports, "UploadSharp", { + enumerable: true, + get: function () { + return _UploadSharp.default; + } +}); +Object.defineProperty(exports, "UploadTwoTone", { + enumerable: true, + get: function () { + return _UploadTwoTone.default; + } +}); +Object.defineProperty(exports, "Usb", { + enumerable: true, + get: function () { + return _Usb.default; + } +}); +Object.defineProperty(exports, "UsbOff", { + enumerable: true, + get: function () { + return _UsbOff.default; + } +}); +Object.defineProperty(exports, "UsbOffOutlined", { + enumerable: true, + get: function () { + return _UsbOffOutlined.default; + } +}); +Object.defineProperty(exports, "UsbOffRounded", { + enumerable: true, + get: function () { + return _UsbOffRounded.default; + } +}); +Object.defineProperty(exports, "UsbOffSharp", { + enumerable: true, + get: function () { + return _UsbOffSharp.default; + } +}); +Object.defineProperty(exports, "UsbOffTwoTone", { + enumerable: true, + get: function () { + return _UsbOffTwoTone.default; + } +}); +Object.defineProperty(exports, "UsbOutlined", { + enumerable: true, + get: function () { + return _UsbOutlined.default; + } +}); +Object.defineProperty(exports, "UsbRounded", { + enumerable: true, + get: function () { + return _UsbRounded.default; + } +}); +Object.defineProperty(exports, "UsbSharp", { + enumerable: true, + get: function () { + return _UsbSharp.default; + } +}); +Object.defineProperty(exports, "UsbTwoTone", { + enumerable: true, + get: function () { + return _UsbTwoTone.default; + } +}); +Object.defineProperty(exports, "Verified", { + enumerable: true, + get: function () { + return _Verified.default; + } +}); +Object.defineProperty(exports, "VerifiedOutlined", { + enumerable: true, + get: function () { + return _VerifiedOutlined.default; + } +}); +Object.defineProperty(exports, "VerifiedRounded", { + enumerable: true, + get: function () { + return _VerifiedRounded.default; + } +}); +Object.defineProperty(exports, "VerifiedSharp", { + enumerable: true, + get: function () { + return _VerifiedSharp.default; + } +}); +Object.defineProperty(exports, "VerifiedTwoTone", { + enumerable: true, + get: function () { + return _VerifiedTwoTone.default; + } +}); +Object.defineProperty(exports, "VerifiedUser", { + enumerable: true, + get: function () { + return _VerifiedUser.default; + } +}); +Object.defineProperty(exports, "VerifiedUserOutlined", { + enumerable: true, + get: function () { + return _VerifiedUserOutlined.default; + } +}); +Object.defineProperty(exports, "VerifiedUserRounded", { + enumerable: true, + get: function () { + return _VerifiedUserRounded.default; + } +}); +Object.defineProperty(exports, "VerifiedUserSharp", { + enumerable: true, + get: function () { + return _VerifiedUserSharp.default; + } +}); +Object.defineProperty(exports, "VerifiedUserTwoTone", { + enumerable: true, + get: function () { + return _VerifiedUserTwoTone.default; + } +}); +Object.defineProperty(exports, "VerticalAlignBottom", { + enumerable: true, + get: function () { + return _VerticalAlignBottom.default; + } +}); +Object.defineProperty(exports, "VerticalAlignBottomOutlined", { + enumerable: true, + get: function () { + return _VerticalAlignBottomOutlined.default; + } +}); +Object.defineProperty(exports, "VerticalAlignBottomRounded", { + enumerable: true, + get: function () { + return _VerticalAlignBottomRounded.default; + } +}); +Object.defineProperty(exports, "VerticalAlignBottomSharp", { + enumerable: true, + get: function () { + return _VerticalAlignBottomSharp.default; + } +}); +Object.defineProperty(exports, "VerticalAlignBottomTwoTone", { + enumerable: true, + get: function () { + return _VerticalAlignBottomTwoTone.default; + } +}); +Object.defineProperty(exports, "VerticalAlignCenter", { + enumerable: true, + get: function () { + return _VerticalAlignCenter.default; + } +}); +Object.defineProperty(exports, "VerticalAlignCenterOutlined", { + enumerable: true, + get: function () { + return _VerticalAlignCenterOutlined.default; + } +}); +Object.defineProperty(exports, "VerticalAlignCenterRounded", { + enumerable: true, + get: function () { + return _VerticalAlignCenterRounded.default; + } +}); +Object.defineProperty(exports, "VerticalAlignCenterSharp", { + enumerable: true, + get: function () { + return _VerticalAlignCenterSharp.default; + } +}); +Object.defineProperty(exports, "VerticalAlignCenterTwoTone", { + enumerable: true, + get: function () { + return _VerticalAlignCenterTwoTone.default; + } +}); +Object.defineProperty(exports, "VerticalAlignTop", { + enumerable: true, + get: function () { + return _VerticalAlignTop.default; + } +}); +Object.defineProperty(exports, "VerticalAlignTopOutlined", { + enumerable: true, + get: function () { + return _VerticalAlignTopOutlined.default; + } +}); +Object.defineProperty(exports, "VerticalAlignTopRounded", { + enumerable: true, + get: function () { + return _VerticalAlignTopRounded.default; + } +}); +Object.defineProperty(exports, "VerticalAlignTopSharp", { + enumerable: true, + get: function () { + return _VerticalAlignTopSharp.default; + } +}); +Object.defineProperty(exports, "VerticalAlignTopTwoTone", { + enumerable: true, + get: function () { + return _VerticalAlignTopTwoTone.default; + } +}); +Object.defineProperty(exports, "VerticalSplit", { + enumerable: true, + get: function () { + return _VerticalSplit.default; + } +}); +Object.defineProperty(exports, "VerticalSplitOutlined", { + enumerable: true, + get: function () { + return _VerticalSplitOutlined.default; + } +}); +Object.defineProperty(exports, "VerticalSplitRounded", { + enumerable: true, + get: function () { + return _VerticalSplitRounded.default; + } +}); +Object.defineProperty(exports, "VerticalSplitSharp", { + enumerable: true, + get: function () { + return _VerticalSplitSharp.default; + } +}); +Object.defineProperty(exports, "VerticalSplitTwoTone", { + enumerable: true, + get: function () { + return _VerticalSplitTwoTone.default; + } +}); +Object.defineProperty(exports, "Vibration", { + enumerable: true, + get: function () { + return _Vibration.default; + } +}); +Object.defineProperty(exports, "VibrationOutlined", { + enumerable: true, + get: function () { + return _VibrationOutlined.default; + } +}); +Object.defineProperty(exports, "VibrationRounded", { + enumerable: true, + get: function () { + return _VibrationRounded.default; + } +}); +Object.defineProperty(exports, "VibrationSharp", { + enumerable: true, + get: function () { + return _VibrationSharp.default; + } +}); +Object.defineProperty(exports, "VibrationTwoTone", { + enumerable: true, + get: function () { + return _VibrationTwoTone.default; + } +}); +Object.defineProperty(exports, "VideoCall", { + enumerable: true, + get: function () { + return _VideoCall.default; + } +}); +Object.defineProperty(exports, "VideoCallOutlined", { + enumerable: true, + get: function () { + return _VideoCallOutlined.default; + } +}); +Object.defineProperty(exports, "VideoCallRounded", { + enumerable: true, + get: function () { + return _VideoCallRounded.default; + } +}); +Object.defineProperty(exports, "VideoCallSharp", { + enumerable: true, + get: function () { + return _VideoCallSharp.default; + } +}); +Object.defineProperty(exports, "VideoCallTwoTone", { + enumerable: true, + get: function () { + return _VideoCallTwoTone.default; + } +}); +Object.defineProperty(exports, "VideoCameraBack", { + enumerable: true, + get: function () { + return _VideoCameraBack.default; + } +}); +Object.defineProperty(exports, "VideoCameraBackOutlined", { + enumerable: true, + get: function () { + return _VideoCameraBackOutlined.default; + } +}); +Object.defineProperty(exports, "VideoCameraBackRounded", { + enumerable: true, + get: function () { + return _VideoCameraBackRounded.default; + } +}); +Object.defineProperty(exports, "VideoCameraBackSharp", { + enumerable: true, + get: function () { + return _VideoCameraBackSharp.default; + } +}); +Object.defineProperty(exports, "VideoCameraBackTwoTone", { + enumerable: true, + get: function () { + return _VideoCameraBackTwoTone.default; + } +}); +Object.defineProperty(exports, "VideoCameraFront", { + enumerable: true, + get: function () { + return _VideoCameraFront.default; + } +}); +Object.defineProperty(exports, "VideoCameraFrontOutlined", { + enumerable: true, + get: function () { + return _VideoCameraFrontOutlined.default; + } +}); +Object.defineProperty(exports, "VideoCameraFrontRounded", { + enumerable: true, + get: function () { + return _VideoCameraFrontRounded.default; + } +}); +Object.defineProperty(exports, "VideoCameraFrontSharp", { + enumerable: true, + get: function () { + return _VideoCameraFrontSharp.default; + } +}); +Object.defineProperty(exports, "VideoCameraFrontTwoTone", { + enumerable: true, + get: function () { + return _VideoCameraFrontTwoTone.default; + } +}); +Object.defineProperty(exports, "VideoLabel", { + enumerable: true, + get: function () { + return _VideoLabel.default; + } +}); +Object.defineProperty(exports, "VideoLabelOutlined", { + enumerable: true, + get: function () { + return _VideoLabelOutlined.default; + } +}); +Object.defineProperty(exports, "VideoLabelRounded", { + enumerable: true, + get: function () { + return _VideoLabelRounded.default; + } +}); +Object.defineProperty(exports, "VideoLabelSharp", { + enumerable: true, + get: function () { + return _VideoLabelSharp.default; + } +}); +Object.defineProperty(exports, "VideoLabelTwoTone", { + enumerable: true, + get: function () { + return _VideoLabelTwoTone.default; + } +}); +Object.defineProperty(exports, "VideoLibrary", { + enumerable: true, + get: function () { + return _VideoLibrary.default; + } +}); +Object.defineProperty(exports, "VideoLibraryOutlined", { + enumerable: true, + get: function () { + return _VideoLibraryOutlined.default; + } +}); +Object.defineProperty(exports, "VideoLibraryRounded", { + enumerable: true, + get: function () { + return _VideoLibraryRounded.default; + } +}); +Object.defineProperty(exports, "VideoLibrarySharp", { + enumerable: true, + get: function () { + return _VideoLibrarySharp.default; + } +}); +Object.defineProperty(exports, "VideoLibraryTwoTone", { + enumerable: true, + get: function () { + return _VideoLibraryTwoTone.default; + } +}); +Object.defineProperty(exports, "VideoSettings", { + enumerable: true, + get: function () { + return _VideoSettings.default; + } +}); +Object.defineProperty(exports, "VideoSettingsOutlined", { + enumerable: true, + get: function () { + return _VideoSettingsOutlined.default; + } +}); +Object.defineProperty(exports, "VideoSettingsRounded", { + enumerable: true, + get: function () { + return _VideoSettingsRounded.default; + } +}); +Object.defineProperty(exports, "VideoSettingsSharp", { + enumerable: true, + get: function () { + return _VideoSettingsSharp.default; + } +}); +Object.defineProperty(exports, "VideoSettingsTwoTone", { + enumerable: true, + get: function () { + return _VideoSettingsTwoTone.default; + } +}); +Object.defineProperty(exports, "VideoStable", { + enumerable: true, + get: function () { + return _VideoStable.default; + } +}); +Object.defineProperty(exports, "VideoStableOutlined", { + enumerable: true, + get: function () { + return _VideoStableOutlined.default; + } +}); +Object.defineProperty(exports, "VideoStableRounded", { + enumerable: true, + get: function () { + return _VideoStableRounded.default; + } +}); +Object.defineProperty(exports, "VideoStableSharp", { + enumerable: true, + get: function () { + return _VideoStableSharp.default; + } +}); +Object.defineProperty(exports, "VideoStableTwoTone", { + enumerable: true, + get: function () { + return _VideoStableTwoTone.default; + } +}); +Object.defineProperty(exports, "Videocam", { + enumerable: true, + get: function () { + return _Videocam.default; + } +}); +Object.defineProperty(exports, "VideocamOff", { + enumerable: true, + get: function () { + return _VideocamOff.default; + } +}); +Object.defineProperty(exports, "VideocamOffOutlined", { + enumerable: true, + get: function () { + return _VideocamOffOutlined.default; + } +}); +Object.defineProperty(exports, "VideocamOffRounded", { + enumerable: true, + get: function () { + return _VideocamOffRounded.default; + } +}); +Object.defineProperty(exports, "VideocamOffSharp", { + enumerable: true, + get: function () { + return _VideocamOffSharp.default; + } +}); +Object.defineProperty(exports, "VideocamOffTwoTone", { + enumerable: true, + get: function () { + return _VideocamOffTwoTone.default; + } +}); +Object.defineProperty(exports, "VideocamOutlined", { + enumerable: true, + get: function () { + return _VideocamOutlined.default; + } +}); +Object.defineProperty(exports, "VideocamRounded", { + enumerable: true, + get: function () { + return _VideocamRounded.default; + } +}); +Object.defineProperty(exports, "VideocamSharp", { + enumerable: true, + get: function () { + return _VideocamSharp.default; + } +}); +Object.defineProperty(exports, "VideocamTwoTone", { + enumerable: true, + get: function () { + return _VideocamTwoTone.default; + } +}); +Object.defineProperty(exports, "VideogameAsset", { + enumerable: true, + get: function () { + return _VideogameAsset.default; + } +}); +Object.defineProperty(exports, "VideogameAssetOff", { + enumerable: true, + get: function () { + return _VideogameAssetOff.default; + } +}); +Object.defineProperty(exports, "VideogameAssetOffOutlined", { + enumerable: true, + get: function () { + return _VideogameAssetOffOutlined.default; + } +}); +Object.defineProperty(exports, "VideogameAssetOffRounded", { + enumerable: true, + get: function () { + return _VideogameAssetOffRounded.default; + } +}); +Object.defineProperty(exports, "VideogameAssetOffSharp", { + enumerable: true, + get: function () { + return _VideogameAssetOffSharp.default; + } +}); +Object.defineProperty(exports, "VideogameAssetOffTwoTone", { + enumerable: true, + get: function () { + return _VideogameAssetOffTwoTone.default; + } +}); +Object.defineProperty(exports, "VideogameAssetOutlined", { + enumerable: true, + get: function () { + return _VideogameAssetOutlined.default; + } +}); +Object.defineProperty(exports, "VideogameAssetRounded", { + enumerable: true, + get: function () { + return _VideogameAssetRounded.default; + } +}); +Object.defineProperty(exports, "VideogameAssetSharp", { + enumerable: true, + get: function () { + return _VideogameAssetSharp.default; + } +}); +Object.defineProperty(exports, "VideogameAssetTwoTone", { + enumerable: true, + get: function () { + return _VideogameAssetTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewAgenda", { + enumerable: true, + get: function () { + return _ViewAgenda.default; + } +}); +Object.defineProperty(exports, "ViewAgendaOutlined", { + enumerable: true, + get: function () { + return _ViewAgendaOutlined.default; + } +}); +Object.defineProperty(exports, "ViewAgendaRounded", { + enumerable: true, + get: function () { + return _ViewAgendaRounded.default; + } +}); +Object.defineProperty(exports, "ViewAgendaSharp", { + enumerable: true, + get: function () { + return _ViewAgendaSharp.default; + } +}); +Object.defineProperty(exports, "ViewAgendaTwoTone", { + enumerable: true, + get: function () { + return _ViewAgendaTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewArray", { + enumerable: true, + get: function () { + return _ViewArray.default; + } +}); +Object.defineProperty(exports, "ViewArrayOutlined", { + enumerable: true, + get: function () { + return _ViewArrayOutlined.default; + } +}); +Object.defineProperty(exports, "ViewArrayRounded", { + enumerable: true, + get: function () { + return _ViewArrayRounded.default; + } +}); +Object.defineProperty(exports, "ViewArraySharp", { + enumerable: true, + get: function () { + return _ViewArraySharp.default; + } +}); +Object.defineProperty(exports, "ViewArrayTwoTone", { + enumerable: true, + get: function () { + return _ViewArrayTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewCarousel", { + enumerable: true, + get: function () { + return _ViewCarousel.default; + } +}); +Object.defineProperty(exports, "ViewCarouselOutlined", { + enumerable: true, + get: function () { + return _ViewCarouselOutlined.default; + } +}); +Object.defineProperty(exports, "ViewCarouselRounded", { + enumerable: true, + get: function () { + return _ViewCarouselRounded.default; + } +}); +Object.defineProperty(exports, "ViewCarouselSharp", { + enumerable: true, + get: function () { + return _ViewCarouselSharp.default; + } +}); +Object.defineProperty(exports, "ViewCarouselTwoTone", { + enumerable: true, + get: function () { + return _ViewCarouselTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewColumn", { + enumerable: true, + get: function () { + return _ViewColumn.default; + } +}); +Object.defineProperty(exports, "ViewColumnOutlined", { + enumerable: true, + get: function () { + return _ViewColumnOutlined.default; + } +}); +Object.defineProperty(exports, "ViewColumnRounded", { + enumerable: true, + get: function () { + return _ViewColumnRounded.default; + } +}); +Object.defineProperty(exports, "ViewColumnSharp", { + enumerable: true, + get: function () { + return _ViewColumnSharp.default; + } +}); +Object.defineProperty(exports, "ViewColumnTwoTone", { + enumerable: true, + get: function () { + return _ViewColumnTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewComfy", { + enumerable: true, + get: function () { + return _ViewComfy.default; + } +}); +Object.defineProperty(exports, "ViewComfyOutlined", { + enumerable: true, + get: function () { + return _ViewComfyOutlined.default; + } +}); +Object.defineProperty(exports, "ViewComfyRounded", { + enumerable: true, + get: function () { + return _ViewComfyRounded.default; + } +}); +Object.defineProperty(exports, "ViewComfySharp", { + enumerable: true, + get: function () { + return _ViewComfySharp.default; + } +}); +Object.defineProperty(exports, "ViewComfyTwoTone", { + enumerable: true, + get: function () { + return _ViewComfyTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewCompact", { + enumerable: true, + get: function () { + return _ViewCompact.default; + } +}); +Object.defineProperty(exports, "ViewCompactOutlined", { + enumerable: true, + get: function () { + return _ViewCompactOutlined.default; + } +}); +Object.defineProperty(exports, "ViewCompactRounded", { + enumerable: true, + get: function () { + return _ViewCompactRounded.default; + } +}); +Object.defineProperty(exports, "ViewCompactSharp", { + enumerable: true, + get: function () { + return _ViewCompactSharp.default; + } +}); +Object.defineProperty(exports, "ViewCompactTwoTone", { + enumerable: true, + get: function () { + return _ViewCompactTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewDay", { + enumerable: true, + get: function () { + return _ViewDay.default; + } +}); +Object.defineProperty(exports, "ViewDayOutlined", { + enumerable: true, + get: function () { + return _ViewDayOutlined.default; + } +}); +Object.defineProperty(exports, "ViewDayRounded", { + enumerable: true, + get: function () { + return _ViewDayRounded.default; + } +}); +Object.defineProperty(exports, "ViewDaySharp", { + enumerable: true, + get: function () { + return _ViewDaySharp.default; + } +}); +Object.defineProperty(exports, "ViewDayTwoTone", { + enumerable: true, + get: function () { + return _ViewDayTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewHeadline", { + enumerable: true, + get: function () { + return _ViewHeadline.default; + } +}); +Object.defineProperty(exports, "ViewHeadlineOutlined", { + enumerable: true, + get: function () { + return _ViewHeadlineOutlined.default; + } +}); +Object.defineProperty(exports, "ViewHeadlineRounded", { + enumerable: true, + get: function () { + return _ViewHeadlineRounded.default; + } +}); +Object.defineProperty(exports, "ViewHeadlineSharp", { + enumerable: true, + get: function () { + return _ViewHeadlineSharp.default; + } +}); +Object.defineProperty(exports, "ViewHeadlineTwoTone", { + enumerable: true, + get: function () { + return _ViewHeadlineTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewInAr", { + enumerable: true, + get: function () { + return _ViewInAr.default; + } +}); +Object.defineProperty(exports, "ViewInArOutlined", { + enumerable: true, + get: function () { + return _ViewInArOutlined.default; + } +}); +Object.defineProperty(exports, "ViewInArRounded", { + enumerable: true, + get: function () { + return _ViewInArRounded.default; + } +}); +Object.defineProperty(exports, "ViewInArSharp", { + enumerable: true, + get: function () { + return _ViewInArSharp.default; + } +}); +Object.defineProperty(exports, "ViewInArTwoTone", { + enumerable: true, + get: function () { + return _ViewInArTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewList", { + enumerable: true, + get: function () { + return _ViewList.default; + } +}); +Object.defineProperty(exports, "ViewListOutlined", { + enumerable: true, + get: function () { + return _ViewListOutlined.default; + } +}); +Object.defineProperty(exports, "ViewListRounded", { + enumerable: true, + get: function () { + return _ViewListRounded.default; + } +}); +Object.defineProperty(exports, "ViewListSharp", { + enumerable: true, + get: function () { + return _ViewListSharp.default; + } +}); +Object.defineProperty(exports, "ViewListTwoTone", { + enumerable: true, + get: function () { + return _ViewListTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewModule", { + enumerable: true, + get: function () { + return _ViewModule.default; + } +}); +Object.defineProperty(exports, "ViewModuleOutlined", { + enumerable: true, + get: function () { + return _ViewModuleOutlined.default; + } +}); +Object.defineProperty(exports, "ViewModuleRounded", { + enumerable: true, + get: function () { + return _ViewModuleRounded.default; + } +}); +Object.defineProperty(exports, "ViewModuleSharp", { + enumerable: true, + get: function () { + return _ViewModuleSharp.default; + } +}); +Object.defineProperty(exports, "ViewModuleTwoTone", { + enumerable: true, + get: function () { + return _ViewModuleTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewQuilt", { + enumerable: true, + get: function () { + return _ViewQuilt.default; + } +}); +Object.defineProperty(exports, "ViewQuiltOutlined", { + enumerable: true, + get: function () { + return _ViewQuiltOutlined.default; + } +}); +Object.defineProperty(exports, "ViewQuiltRounded", { + enumerable: true, + get: function () { + return _ViewQuiltRounded.default; + } +}); +Object.defineProperty(exports, "ViewQuiltSharp", { + enumerable: true, + get: function () { + return _ViewQuiltSharp.default; + } +}); +Object.defineProperty(exports, "ViewQuiltTwoTone", { + enumerable: true, + get: function () { + return _ViewQuiltTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewSidebar", { + enumerable: true, + get: function () { + return _ViewSidebar.default; + } +}); +Object.defineProperty(exports, "ViewSidebarOutlined", { + enumerable: true, + get: function () { + return _ViewSidebarOutlined.default; + } +}); +Object.defineProperty(exports, "ViewSidebarRounded", { + enumerable: true, + get: function () { + return _ViewSidebarRounded.default; + } +}); +Object.defineProperty(exports, "ViewSidebarSharp", { + enumerable: true, + get: function () { + return _ViewSidebarSharp.default; + } +}); +Object.defineProperty(exports, "ViewSidebarTwoTone", { + enumerable: true, + get: function () { + return _ViewSidebarTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewStream", { + enumerable: true, + get: function () { + return _ViewStream.default; + } +}); +Object.defineProperty(exports, "ViewStreamOutlined", { + enumerable: true, + get: function () { + return _ViewStreamOutlined.default; + } +}); +Object.defineProperty(exports, "ViewStreamRounded", { + enumerable: true, + get: function () { + return _ViewStreamRounded.default; + } +}); +Object.defineProperty(exports, "ViewStreamSharp", { + enumerable: true, + get: function () { + return _ViewStreamSharp.default; + } +}); +Object.defineProperty(exports, "ViewStreamTwoTone", { + enumerable: true, + get: function () { + return _ViewStreamTwoTone.default; + } +}); +Object.defineProperty(exports, "ViewWeek", { + enumerable: true, + get: function () { + return _ViewWeek.default; + } +}); +Object.defineProperty(exports, "ViewWeekOutlined", { + enumerable: true, + get: function () { + return _ViewWeekOutlined.default; + } +}); +Object.defineProperty(exports, "ViewWeekRounded", { + enumerable: true, + get: function () { + return _ViewWeekRounded.default; + } +}); +Object.defineProperty(exports, "ViewWeekSharp", { + enumerable: true, + get: function () { + return _ViewWeekSharp.default; + } +}); +Object.defineProperty(exports, "ViewWeekTwoTone", { + enumerable: true, + get: function () { + return _ViewWeekTwoTone.default; + } +}); +Object.defineProperty(exports, "Vignette", { + enumerable: true, + get: function () { + return _Vignette.default; + } +}); +Object.defineProperty(exports, "VignetteOutlined", { + enumerable: true, + get: function () { + return _VignetteOutlined.default; + } +}); +Object.defineProperty(exports, "VignetteRounded", { + enumerable: true, + get: function () { + return _VignetteRounded.default; + } +}); +Object.defineProperty(exports, "VignetteSharp", { + enumerable: true, + get: function () { + return _VignetteSharp.default; + } +}); +Object.defineProperty(exports, "VignetteTwoTone", { + enumerable: true, + get: function () { + return _VignetteTwoTone.default; + } +}); +Object.defineProperty(exports, "Villa", { + enumerable: true, + get: function () { + return _Villa.default; + } +}); +Object.defineProperty(exports, "VillaOutlined", { + enumerable: true, + get: function () { + return _VillaOutlined.default; + } +}); +Object.defineProperty(exports, "VillaRounded", { + enumerable: true, + get: function () { + return _VillaRounded.default; + } +}); +Object.defineProperty(exports, "VillaSharp", { + enumerable: true, + get: function () { + return _VillaSharp.default; + } +}); +Object.defineProperty(exports, "VillaTwoTone", { + enumerable: true, + get: function () { + return _VillaTwoTone.default; + } +}); +Object.defineProperty(exports, "Visibility", { + enumerable: true, + get: function () { + return _Visibility.default; + } +}); +Object.defineProperty(exports, "VisibilityOff", { + enumerable: true, + get: function () { + return _VisibilityOff.default; + } +}); +Object.defineProperty(exports, "VisibilityOffOutlined", { + enumerable: true, + get: function () { + return _VisibilityOffOutlined.default; + } +}); +Object.defineProperty(exports, "VisibilityOffRounded", { + enumerable: true, + get: function () { + return _VisibilityOffRounded.default; + } +}); +Object.defineProperty(exports, "VisibilityOffSharp", { + enumerable: true, + get: function () { + return _VisibilityOffSharp.default; + } +}); +Object.defineProperty(exports, "VisibilityOffTwoTone", { + enumerable: true, + get: function () { + return _VisibilityOffTwoTone.default; + } +}); +Object.defineProperty(exports, "VisibilityOutlined", { + enumerable: true, + get: function () { + return _VisibilityOutlined.default; + } +}); +Object.defineProperty(exports, "VisibilityRounded", { + enumerable: true, + get: function () { + return _VisibilityRounded.default; + } +}); +Object.defineProperty(exports, "VisibilitySharp", { + enumerable: true, + get: function () { + return _VisibilitySharp.default; + } +}); +Object.defineProperty(exports, "VisibilityTwoTone", { + enumerable: true, + get: function () { + return _VisibilityTwoTone.default; + } +}); +Object.defineProperty(exports, "VoiceChat", { + enumerable: true, + get: function () { + return _VoiceChat.default; + } +}); +Object.defineProperty(exports, "VoiceChatOutlined", { + enumerable: true, + get: function () { + return _VoiceChatOutlined.default; + } +}); +Object.defineProperty(exports, "VoiceChatRounded", { + enumerable: true, + get: function () { + return _VoiceChatRounded.default; + } +}); +Object.defineProperty(exports, "VoiceChatSharp", { + enumerable: true, + get: function () { + return _VoiceChatSharp.default; + } +}); +Object.defineProperty(exports, "VoiceChatTwoTone", { + enumerable: true, + get: function () { + return _VoiceChatTwoTone.default; + } +}); +Object.defineProperty(exports, "VoiceOverOff", { + enumerable: true, + get: function () { + return _VoiceOverOff.default; + } +}); +Object.defineProperty(exports, "VoiceOverOffOutlined", { + enumerable: true, + get: function () { + return _VoiceOverOffOutlined.default; + } +}); +Object.defineProperty(exports, "VoiceOverOffRounded", { + enumerable: true, + get: function () { + return _VoiceOverOffRounded.default; + } +}); +Object.defineProperty(exports, "VoiceOverOffSharp", { + enumerable: true, + get: function () { + return _VoiceOverOffSharp.default; + } +}); +Object.defineProperty(exports, "VoiceOverOffTwoTone", { + enumerable: true, + get: function () { + return _VoiceOverOffTwoTone.default; + } +}); +Object.defineProperty(exports, "Voicemail", { + enumerable: true, + get: function () { + return _Voicemail.default; + } +}); +Object.defineProperty(exports, "VoicemailOutlined", { + enumerable: true, + get: function () { + return _VoicemailOutlined.default; + } +}); +Object.defineProperty(exports, "VoicemailRounded", { + enumerable: true, + get: function () { + return _VoicemailRounded.default; + } +}); +Object.defineProperty(exports, "VoicemailSharp", { + enumerable: true, + get: function () { + return _VoicemailSharp.default; + } +}); +Object.defineProperty(exports, "VoicemailTwoTone", { + enumerable: true, + get: function () { + return _VoicemailTwoTone.default; + } +}); +Object.defineProperty(exports, "VolumeDown", { + enumerable: true, + get: function () { + return _VolumeDown.default; + } +}); +Object.defineProperty(exports, "VolumeDownOutlined", { + enumerable: true, + get: function () { + return _VolumeDownOutlined.default; + } +}); +Object.defineProperty(exports, "VolumeDownRounded", { + enumerable: true, + get: function () { + return _VolumeDownRounded.default; + } +}); +Object.defineProperty(exports, "VolumeDownSharp", { + enumerable: true, + get: function () { + return _VolumeDownSharp.default; + } +}); +Object.defineProperty(exports, "VolumeDownTwoTone", { + enumerable: true, + get: function () { + return _VolumeDownTwoTone.default; + } +}); +Object.defineProperty(exports, "VolumeMute", { + enumerable: true, + get: function () { + return _VolumeMute.default; + } +}); +Object.defineProperty(exports, "VolumeMuteOutlined", { + enumerable: true, + get: function () { + return _VolumeMuteOutlined.default; + } +}); +Object.defineProperty(exports, "VolumeMuteRounded", { + enumerable: true, + get: function () { + return _VolumeMuteRounded.default; + } +}); +Object.defineProperty(exports, "VolumeMuteSharp", { + enumerable: true, + get: function () { + return _VolumeMuteSharp.default; + } +}); +Object.defineProperty(exports, "VolumeMuteTwoTone", { + enumerable: true, + get: function () { + return _VolumeMuteTwoTone.default; + } +}); +Object.defineProperty(exports, "VolumeOff", { + enumerable: true, + get: function () { + return _VolumeOff.default; + } +}); +Object.defineProperty(exports, "VolumeOffOutlined", { + enumerable: true, + get: function () { + return _VolumeOffOutlined.default; + } +}); +Object.defineProperty(exports, "VolumeOffRounded", { + enumerable: true, + get: function () { + return _VolumeOffRounded.default; + } +}); +Object.defineProperty(exports, "VolumeOffSharp", { + enumerable: true, + get: function () { + return _VolumeOffSharp.default; + } +}); +Object.defineProperty(exports, "VolumeOffTwoTone", { + enumerable: true, + get: function () { + return _VolumeOffTwoTone.default; + } +}); +Object.defineProperty(exports, "VolumeUp", { + enumerable: true, + get: function () { + return _VolumeUp.default; + } +}); +Object.defineProperty(exports, "VolumeUpOutlined", { + enumerable: true, + get: function () { + return _VolumeUpOutlined.default; + } +}); +Object.defineProperty(exports, "VolumeUpRounded", { + enumerable: true, + get: function () { + return _VolumeUpRounded.default; + } +}); +Object.defineProperty(exports, "VolumeUpSharp", { + enumerable: true, + get: function () { + return _VolumeUpSharp.default; + } +}); +Object.defineProperty(exports, "VolumeUpTwoTone", { + enumerable: true, + get: function () { + return _VolumeUpTwoTone.default; + } +}); +Object.defineProperty(exports, "VolunteerActivism", { + enumerable: true, + get: function () { + return _VolunteerActivism.default; + } +}); +Object.defineProperty(exports, "VolunteerActivismOutlined", { + enumerable: true, + get: function () { + return _VolunteerActivismOutlined.default; + } +}); +Object.defineProperty(exports, "VolunteerActivismRounded", { + enumerable: true, + get: function () { + return _VolunteerActivismRounded.default; + } +}); +Object.defineProperty(exports, "VolunteerActivismSharp", { + enumerable: true, + get: function () { + return _VolunteerActivismSharp.default; + } +}); +Object.defineProperty(exports, "VolunteerActivismTwoTone", { + enumerable: true, + get: function () { + return _VolunteerActivismTwoTone.default; + } +}); +Object.defineProperty(exports, "VpnKey", { + enumerable: true, + get: function () { + return _VpnKey.default; + } +}); +Object.defineProperty(exports, "VpnKeyOutlined", { + enumerable: true, + get: function () { + return _VpnKeyOutlined.default; + } +}); +Object.defineProperty(exports, "VpnKeyRounded", { + enumerable: true, + get: function () { + return _VpnKeyRounded.default; + } +}); +Object.defineProperty(exports, "VpnKeySharp", { + enumerable: true, + get: function () { + return _VpnKeySharp.default; + } +}); +Object.defineProperty(exports, "VpnKeyTwoTone", { + enumerable: true, + get: function () { + return _VpnKeyTwoTone.default; + } +}); +Object.defineProperty(exports, "VpnLock", { + enumerable: true, + get: function () { + return _VpnLock.default; + } +}); +Object.defineProperty(exports, "VpnLockOutlined", { + enumerable: true, + get: function () { + return _VpnLockOutlined.default; + } +}); +Object.defineProperty(exports, "VpnLockRounded", { + enumerable: true, + get: function () { + return _VpnLockRounded.default; + } +}); +Object.defineProperty(exports, "VpnLockSharp", { + enumerable: true, + get: function () { + return _VpnLockSharp.default; + } +}); +Object.defineProperty(exports, "VpnLockTwoTone", { + enumerable: true, + get: function () { + return _VpnLockTwoTone.default; + } +}); +Object.defineProperty(exports, "Vrpano", { + enumerable: true, + get: function () { + return _Vrpano.default; + } +}); +Object.defineProperty(exports, "VrpanoOutlined", { + enumerable: true, + get: function () { + return _VrpanoOutlined.default; + } +}); +Object.defineProperty(exports, "VrpanoRounded", { + enumerable: true, + get: function () { + return _VrpanoRounded.default; + } +}); +Object.defineProperty(exports, "VrpanoSharp", { + enumerable: true, + get: function () { + return _VrpanoSharp.default; + } +}); +Object.defineProperty(exports, "VrpanoTwoTone", { + enumerable: true, + get: function () { + return _VrpanoTwoTone.default; + } +}); +Object.defineProperty(exports, "Wallpaper", { + enumerable: true, + get: function () { + return _Wallpaper.default; + } +}); +Object.defineProperty(exports, "WallpaperOutlined", { + enumerable: true, + get: function () { + return _WallpaperOutlined.default; + } +}); +Object.defineProperty(exports, "WallpaperRounded", { + enumerable: true, + get: function () { + return _WallpaperRounded.default; + } +}); +Object.defineProperty(exports, "WallpaperSharp", { + enumerable: true, + get: function () { + return _WallpaperSharp.default; + } +}); +Object.defineProperty(exports, "WallpaperTwoTone", { + enumerable: true, + get: function () { + return _WallpaperTwoTone.default; + } +}); +Object.defineProperty(exports, "Warning", { + enumerable: true, + get: function () { + return _Warning.default; + } +}); +Object.defineProperty(exports, "WarningAmber", { + enumerable: true, + get: function () { + return _WarningAmber.default; + } +}); +Object.defineProperty(exports, "WarningAmberOutlined", { + enumerable: true, + get: function () { + return _WarningAmberOutlined.default; + } +}); +Object.defineProperty(exports, "WarningAmberRounded", { + enumerable: true, + get: function () { + return _WarningAmberRounded.default; + } +}); +Object.defineProperty(exports, "WarningAmberSharp", { + enumerable: true, + get: function () { + return _WarningAmberSharp.default; + } +}); +Object.defineProperty(exports, "WarningAmberTwoTone", { + enumerable: true, + get: function () { + return _WarningAmberTwoTone.default; + } +}); +Object.defineProperty(exports, "WarningOutlined", { + enumerable: true, + get: function () { + return _WarningOutlined.default; + } +}); +Object.defineProperty(exports, "WarningRounded", { + enumerable: true, + get: function () { + return _WarningRounded.default; + } +}); +Object.defineProperty(exports, "WarningSharp", { + enumerable: true, + get: function () { + return _WarningSharp.default; + } +}); +Object.defineProperty(exports, "WarningTwoTone", { + enumerable: true, + get: function () { + return _WarningTwoTone.default; + } +}); +Object.defineProperty(exports, "Wash", { + enumerable: true, + get: function () { + return _Wash.default; + } +}); +Object.defineProperty(exports, "WashOutlined", { + enumerable: true, + get: function () { + return _WashOutlined.default; + } +}); +Object.defineProperty(exports, "WashRounded", { + enumerable: true, + get: function () { + return _WashRounded.default; + } +}); +Object.defineProperty(exports, "WashSharp", { + enumerable: true, + get: function () { + return _WashSharp.default; + } +}); +Object.defineProperty(exports, "WashTwoTone", { + enumerable: true, + get: function () { + return _WashTwoTone.default; + } +}); +Object.defineProperty(exports, "Watch", { + enumerable: true, + get: function () { + return _Watch.default; + } +}); +Object.defineProperty(exports, "WatchLater", { + enumerable: true, + get: function () { + return _WatchLater.default; + } +}); +Object.defineProperty(exports, "WatchLaterOutlined", { + enumerable: true, + get: function () { + return _WatchLaterOutlined.default; + } +}); +Object.defineProperty(exports, "WatchLaterRounded", { + enumerable: true, + get: function () { + return _WatchLaterRounded.default; + } +}); +Object.defineProperty(exports, "WatchLaterSharp", { + enumerable: true, + get: function () { + return _WatchLaterSharp.default; + } +}); +Object.defineProperty(exports, "WatchLaterTwoTone", { + enumerable: true, + get: function () { + return _WatchLaterTwoTone.default; + } +}); +Object.defineProperty(exports, "WatchOutlined", { + enumerable: true, + get: function () { + return _WatchOutlined.default; + } +}); +Object.defineProperty(exports, "WatchRounded", { + enumerable: true, + get: function () { + return _WatchRounded.default; + } +}); +Object.defineProperty(exports, "WatchSharp", { + enumerable: true, + get: function () { + return _WatchSharp.default; + } +}); +Object.defineProperty(exports, "WatchTwoTone", { + enumerable: true, + get: function () { + return _WatchTwoTone.default; + } +}); +Object.defineProperty(exports, "Water", { + enumerable: true, + get: function () { + return _Water.default; + } +}); +Object.defineProperty(exports, "WaterDamage", { + enumerable: true, + get: function () { + return _WaterDamage.default; + } +}); +Object.defineProperty(exports, "WaterDamageOutlined", { + enumerable: true, + get: function () { + return _WaterDamageOutlined.default; + } +}); +Object.defineProperty(exports, "WaterDamageRounded", { + enumerable: true, + get: function () { + return _WaterDamageRounded.default; + } +}); +Object.defineProperty(exports, "WaterDamageSharp", { + enumerable: true, + get: function () { + return _WaterDamageSharp.default; + } +}); +Object.defineProperty(exports, "WaterDamageTwoTone", { + enumerable: true, + get: function () { + return _WaterDamageTwoTone.default; + } +}); +Object.defineProperty(exports, "WaterOutlined", { + enumerable: true, + get: function () { + return _WaterOutlined.default; + } +}); +Object.defineProperty(exports, "WaterRounded", { + enumerable: true, + get: function () { + return _WaterRounded.default; + } +}); +Object.defineProperty(exports, "WaterSharp", { + enumerable: true, + get: function () { + return _WaterSharp.default; + } +}); +Object.defineProperty(exports, "WaterTwoTone", { + enumerable: true, + get: function () { + return _WaterTwoTone.default; + } +}); +Object.defineProperty(exports, "WaterfallChart", { + enumerable: true, + get: function () { + return _WaterfallChart.default; + } +}); +Object.defineProperty(exports, "WaterfallChartOutlined", { + enumerable: true, + get: function () { + return _WaterfallChartOutlined.default; + } +}); +Object.defineProperty(exports, "WaterfallChartRounded", { + enumerable: true, + get: function () { + return _WaterfallChartRounded.default; + } +}); +Object.defineProperty(exports, "WaterfallChartSharp", { + enumerable: true, + get: function () { + return _WaterfallChartSharp.default; + } +}); +Object.defineProperty(exports, "WaterfallChartTwoTone", { + enumerable: true, + get: function () { + return _WaterfallChartTwoTone.default; + } +}); +Object.defineProperty(exports, "Waves", { + enumerable: true, + get: function () { + return _Waves.default; + } +}); +Object.defineProperty(exports, "WavesOutlined", { + enumerable: true, + get: function () { + return _WavesOutlined.default; + } +}); +Object.defineProperty(exports, "WavesRounded", { + enumerable: true, + get: function () { + return _WavesRounded.default; + } +}); +Object.defineProperty(exports, "WavesSharp", { + enumerable: true, + get: function () { + return _WavesSharp.default; + } +}); +Object.defineProperty(exports, "WavesTwoTone", { + enumerable: true, + get: function () { + return _WavesTwoTone.default; + } +}); +Object.defineProperty(exports, "WbAuto", { + enumerable: true, + get: function () { + return _WbAuto.default; + } +}); +Object.defineProperty(exports, "WbAutoOutlined", { + enumerable: true, + get: function () { + return _WbAutoOutlined.default; + } +}); +Object.defineProperty(exports, "WbAutoRounded", { + enumerable: true, + get: function () { + return _WbAutoRounded.default; + } +}); +Object.defineProperty(exports, "WbAutoSharp", { + enumerable: true, + get: function () { + return _WbAutoSharp.default; + } +}); +Object.defineProperty(exports, "WbAutoTwoTone", { + enumerable: true, + get: function () { + return _WbAutoTwoTone.default; + } +}); +Object.defineProperty(exports, "WbCloudy", { + enumerable: true, + get: function () { + return _WbCloudy.default; + } +}); +Object.defineProperty(exports, "WbCloudyOutlined", { + enumerable: true, + get: function () { + return _WbCloudyOutlined.default; + } +}); +Object.defineProperty(exports, "WbCloudyRounded", { + enumerable: true, + get: function () { + return _WbCloudyRounded.default; + } +}); +Object.defineProperty(exports, "WbCloudySharp", { + enumerable: true, + get: function () { + return _WbCloudySharp.default; + } +}); +Object.defineProperty(exports, "WbCloudyTwoTone", { + enumerable: true, + get: function () { + return _WbCloudyTwoTone.default; + } +}); +Object.defineProperty(exports, "WbIncandescent", { + enumerable: true, + get: function () { + return _WbIncandescent.default; + } +}); +Object.defineProperty(exports, "WbIncandescentOutlined", { + enumerable: true, + get: function () { + return _WbIncandescentOutlined.default; + } +}); +Object.defineProperty(exports, "WbIncandescentRounded", { + enumerable: true, + get: function () { + return _WbIncandescentRounded.default; + } +}); +Object.defineProperty(exports, "WbIncandescentSharp", { + enumerable: true, + get: function () { + return _WbIncandescentSharp.default; + } +}); +Object.defineProperty(exports, "WbIncandescentTwoTone", { + enumerable: true, + get: function () { + return _WbIncandescentTwoTone.default; + } +}); +Object.defineProperty(exports, "WbIridescent", { + enumerable: true, + get: function () { + return _WbIridescent.default; + } +}); +Object.defineProperty(exports, "WbIridescentOutlined", { + enumerable: true, + get: function () { + return _WbIridescentOutlined.default; + } +}); +Object.defineProperty(exports, "WbIridescentRounded", { + enumerable: true, + get: function () { + return _WbIridescentRounded.default; + } +}); +Object.defineProperty(exports, "WbIridescentSharp", { + enumerable: true, + get: function () { + return _WbIridescentSharp.default; + } +}); +Object.defineProperty(exports, "WbIridescentTwoTone", { + enumerable: true, + get: function () { + return _WbIridescentTwoTone.default; + } +}); +Object.defineProperty(exports, "WbShade", { + enumerable: true, + get: function () { + return _WbShade.default; + } +}); +Object.defineProperty(exports, "WbShadeOutlined", { + enumerable: true, + get: function () { + return _WbShadeOutlined.default; + } +}); +Object.defineProperty(exports, "WbShadeRounded", { + enumerable: true, + get: function () { + return _WbShadeRounded.default; + } +}); +Object.defineProperty(exports, "WbShadeSharp", { + enumerable: true, + get: function () { + return _WbShadeSharp.default; + } +}); +Object.defineProperty(exports, "WbShadeTwoTone", { + enumerable: true, + get: function () { + return _WbShadeTwoTone.default; + } +}); +Object.defineProperty(exports, "WbSunny", { + enumerable: true, + get: function () { + return _WbSunny.default; + } +}); +Object.defineProperty(exports, "WbSunnyOutlined", { + enumerable: true, + get: function () { + return _WbSunnyOutlined.default; + } +}); +Object.defineProperty(exports, "WbSunnyRounded", { + enumerable: true, + get: function () { + return _WbSunnyRounded.default; + } +}); +Object.defineProperty(exports, "WbSunnySharp", { + enumerable: true, + get: function () { + return _WbSunnySharp.default; + } +}); +Object.defineProperty(exports, "WbSunnyTwoTone", { + enumerable: true, + get: function () { + return _WbSunnyTwoTone.default; + } +}); +Object.defineProperty(exports, "WbTwilight", { + enumerable: true, + get: function () { + return _WbTwilight.default; + } +}); +Object.defineProperty(exports, "WbTwilightOutlined", { + enumerable: true, + get: function () { + return _WbTwilightOutlined.default; + } +}); +Object.defineProperty(exports, "WbTwilightRounded", { + enumerable: true, + get: function () { + return _WbTwilightRounded.default; + } +}); +Object.defineProperty(exports, "WbTwilightSharp", { + enumerable: true, + get: function () { + return _WbTwilightSharp.default; + } +}); +Object.defineProperty(exports, "WbTwilightTwoTone", { + enumerable: true, + get: function () { + return _WbTwilightTwoTone.default; + } +}); +Object.defineProperty(exports, "Wc", { + enumerable: true, + get: function () { + return _Wc.default; + } +}); +Object.defineProperty(exports, "WcOutlined", { + enumerable: true, + get: function () { + return _WcOutlined.default; + } +}); +Object.defineProperty(exports, "WcRounded", { + enumerable: true, + get: function () { + return _WcRounded.default; + } +}); +Object.defineProperty(exports, "WcSharp", { + enumerable: true, + get: function () { + return _WcSharp.default; + } +}); +Object.defineProperty(exports, "WcTwoTone", { + enumerable: true, + get: function () { + return _WcTwoTone.default; + } +}); +Object.defineProperty(exports, "Web", { + enumerable: true, + get: function () { + return _Web.default; + } +}); +Object.defineProperty(exports, "WebAsset", { + enumerable: true, + get: function () { + return _WebAsset.default; + } +}); +Object.defineProperty(exports, "WebAssetOff", { + enumerable: true, + get: function () { + return _WebAssetOff.default; + } +}); +Object.defineProperty(exports, "WebAssetOffOutlined", { + enumerable: true, + get: function () { + return _WebAssetOffOutlined.default; + } +}); +Object.defineProperty(exports, "WebAssetOffRounded", { + enumerable: true, + get: function () { + return _WebAssetOffRounded.default; + } +}); +Object.defineProperty(exports, "WebAssetOffSharp", { + enumerable: true, + get: function () { + return _WebAssetOffSharp.default; + } +}); +Object.defineProperty(exports, "WebAssetOffTwoTone", { + enumerable: true, + get: function () { + return _WebAssetOffTwoTone.default; + } +}); +Object.defineProperty(exports, "WebAssetOutlined", { + enumerable: true, + get: function () { + return _WebAssetOutlined.default; + } +}); +Object.defineProperty(exports, "WebAssetRounded", { + enumerable: true, + get: function () { + return _WebAssetRounded.default; + } +}); +Object.defineProperty(exports, "WebAssetSharp", { + enumerable: true, + get: function () { + return _WebAssetSharp.default; + } +}); +Object.defineProperty(exports, "WebAssetTwoTone", { + enumerable: true, + get: function () { + return _WebAssetTwoTone.default; + } +}); +Object.defineProperty(exports, "WebOutlined", { + enumerable: true, + get: function () { + return _WebOutlined.default; + } +}); +Object.defineProperty(exports, "WebRounded", { + enumerable: true, + get: function () { + return _WebRounded.default; + } +}); +Object.defineProperty(exports, "WebSharp", { + enumerable: true, + get: function () { + return _WebSharp.default; + } +}); +Object.defineProperty(exports, "WebTwoTone", { + enumerable: true, + get: function () { + return _WebTwoTone.default; + } +}); +Object.defineProperty(exports, "Weekend", { + enumerable: true, + get: function () { + return _Weekend.default; + } +}); +Object.defineProperty(exports, "WeekendOutlined", { + enumerable: true, + get: function () { + return _WeekendOutlined.default; + } +}); +Object.defineProperty(exports, "WeekendRounded", { + enumerable: true, + get: function () { + return _WeekendRounded.default; + } +}); +Object.defineProperty(exports, "WeekendSharp", { + enumerable: true, + get: function () { + return _WeekendSharp.default; + } +}); +Object.defineProperty(exports, "WeekendTwoTone", { + enumerable: true, + get: function () { + return _WeekendTwoTone.default; + } +}); +Object.defineProperty(exports, "West", { + enumerable: true, + get: function () { + return _West.default; + } +}); +Object.defineProperty(exports, "WestOutlined", { + enumerable: true, + get: function () { + return _WestOutlined.default; + } +}); +Object.defineProperty(exports, "WestRounded", { + enumerable: true, + get: function () { + return _WestRounded.default; + } +}); +Object.defineProperty(exports, "WestSharp", { + enumerable: true, + get: function () { + return _WestSharp.default; + } +}); +Object.defineProperty(exports, "WestTwoTone", { + enumerable: true, + get: function () { + return _WestTwoTone.default; + } +}); +Object.defineProperty(exports, "WhatsApp", { + enumerable: true, + get: function () { + return _WhatsApp.default; + } +}); +Object.defineProperty(exports, "Whatshot", { + enumerable: true, + get: function () { + return _Whatshot.default; + } +}); +Object.defineProperty(exports, "WhatshotOutlined", { + enumerable: true, + get: function () { + return _WhatshotOutlined.default; + } +}); +Object.defineProperty(exports, "WhatshotRounded", { + enumerable: true, + get: function () { + return _WhatshotRounded.default; + } +}); +Object.defineProperty(exports, "WhatshotSharp", { + enumerable: true, + get: function () { + return _WhatshotSharp.default; + } +}); +Object.defineProperty(exports, "WhatshotTwoTone", { + enumerable: true, + get: function () { + return _WhatshotTwoTone.default; + } +}); +Object.defineProperty(exports, "WheelchairPickup", { + enumerable: true, + get: function () { + return _WheelchairPickup.default; + } +}); +Object.defineProperty(exports, "WheelchairPickupOutlined", { + enumerable: true, + get: function () { + return _WheelchairPickupOutlined.default; + } +}); +Object.defineProperty(exports, "WheelchairPickupRounded", { + enumerable: true, + get: function () { + return _WheelchairPickupRounded.default; + } +}); +Object.defineProperty(exports, "WheelchairPickupSharp", { + enumerable: true, + get: function () { + return _WheelchairPickupSharp.default; + } +}); +Object.defineProperty(exports, "WheelchairPickupTwoTone", { + enumerable: true, + get: function () { + return _WheelchairPickupTwoTone.default; + } +}); +Object.defineProperty(exports, "WhereToVote", { + enumerable: true, + get: function () { + return _WhereToVote.default; + } +}); +Object.defineProperty(exports, "WhereToVoteOutlined", { + enumerable: true, + get: function () { + return _WhereToVoteOutlined.default; + } +}); +Object.defineProperty(exports, "WhereToVoteRounded", { + enumerable: true, + get: function () { + return _WhereToVoteRounded.default; + } +}); +Object.defineProperty(exports, "WhereToVoteSharp", { + enumerable: true, + get: function () { + return _WhereToVoteSharp.default; + } +}); +Object.defineProperty(exports, "WhereToVoteTwoTone", { + enumerable: true, + get: function () { + return _WhereToVoteTwoTone.default; + } +}); +Object.defineProperty(exports, "Widgets", { + enumerable: true, + get: function () { + return _Widgets.default; + } +}); +Object.defineProperty(exports, "WidgetsOutlined", { + enumerable: true, + get: function () { + return _WidgetsOutlined.default; + } +}); +Object.defineProperty(exports, "WidgetsRounded", { + enumerable: true, + get: function () { + return _WidgetsRounded.default; + } +}); +Object.defineProperty(exports, "WidgetsSharp", { + enumerable: true, + get: function () { + return _WidgetsSharp.default; + } +}); +Object.defineProperty(exports, "WidgetsTwoTone", { + enumerable: true, + get: function () { + return _WidgetsTwoTone.default; + } +}); +Object.defineProperty(exports, "Wifi", { + enumerable: true, + get: function () { + return _Wifi.default; + } +}); +Object.defineProperty(exports, "WifiCalling", { + enumerable: true, + get: function () { + return _WifiCalling.default; + } +}); +Object.defineProperty(exports, "WifiCalling3", { + enumerable: true, + get: function () { + return _WifiCalling2.default; + } +}); +Object.defineProperty(exports, "WifiCalling3Outlined", { + enumerable: true, + get: function () { + return _WifiCalling3Outlined.default; + } +}); +Object.defineProperty(exports, "WifiCalling3Rounded", { + enumerable: true, + get: function () { + return _WifiCalling3Rounded.default; + } +}); +Object.defineProperty(exports, "WifiCalling3Sharp", { + enumerable: true, + get: function () { + return _WifiCalling3Sharp.default; + } +}); +Object.defineProperty(exports, "WifiCalling3TwoTone", { + enumerable: true, + get: function () { + return _WifiCalling3TwoTone.default; + } +}); +Object.defineProperty(exports, "WifiCallingOutlined", { + enumerable: true, + get: function () { + return _WifiCallingOutlined.default; + } +}); +Object.defineProperty(exports, "WifiCallingRounded", { + enumerable: true, + get: function () { + return _WifiCallingRounded.default; + } +}); +Object.defineProperty(exports, "WifiCallingSharp", { + enumerable: true, + get: function () { + return _WifiCallingSharp.default; + } +}); +Object.defineProperty(exports, "WifiCallingTwoTone", { + enumerable: true, + get: function () { + return _WifiCallingTwoTone.default; + } +}); +Object.defineProperty(exports, "WifiLock", { + enumerable: true, + get: function () { + return _WifiLock.default; + } +}); +Object.defineProperty(exports, "WifiLockOutlined", { + enumerable: true, + get: function () { + return _WifiLockOutlined.default; + } +}); +Object.defineProperty(exports, "WifiLockRounded", { + enumerable: true, + get: function () { + return _WifiLockRounded.default; + } +}); +Object.defineProperty(exports, "WifiLockSharp", { + enumerable: true, + get: function () { + return _WifiLockSharp.default; + } +}); +Object.defineProperty(exports, "WifiLockTwoTone", { + enumerable: true, + get: function () { + return _WifiLockTwoTone.default; + } +}); +Object.defineProperty(exports, "WifiOff", { + enumerable: true, + get: function () { + return _WifiOff.default; + } +}); +Object.defineProperty(exports, "WifiOffOutlined", { + enumerable: true, + get: function () { + return _WifiOffOutlined.default; + } +}); +Object.defineProperty(exports, "WifiOffRounded", { + enumerable: true, + get: function () { + return _WifiOffRounded.default; + } +}); +Object.defineProperty(exports, "WifiOffSharp", { + enumerable: true, + get: function () { + return _WifiOffSharp.default; + } +}); +Object.defineProperty(exports, "WifiOffTwoTone", { + enumerable: true, + get: function () { + return _WifiOffTwoTone.default; + } +}); +Object.defineProperty(exports, "WifiOutlined", { + enumerable: true, + get: function () { + return _WifiOutlined.default; + } +}); +Object.defineProperty(exports, "WifiProtectedSetup", { + enumerable: true, + get: function () { + return _WifiProtectedSetup.default; + } +}); +Object.defineProperty(exports, "WifiProtectedSetupOutlined", { + enumerable: true, + get: function () { + return _WifiProtectedSetupOutlined.default; + } +}); +Object.defineProperty(exports, "WifiProtectedSetupRounded", { + enumerable: true, + get: function () { + return _WifiProtectedSetupRounded.default; + } +}); +Object.defineProperty(exports, "WifiProtectedSetupSharp", { + enumerable: true, + get: function () { + return _WifiProtectedSetupSharp.default; + } +}); +Object.defineProperty(exports, "WifiProtectedSetupTwoTone", { + enumerable: true, + get: function () { + return _WifiProtectedSetupTwoTone.default; + } +}); +Object.defineProperty(exports, "WifiRounded", { + enumerable: true, + get: function () { + return _WifiRounded.default; + } +}); +Object.defineProperty(exports, "WifiSharp", { + enumerable: true, + get: function () { + return _WifiSharp.default; + } +}); +Object.defineProperty(exports, "WifiTethering", { + enumerable: true, + get: function () { + return _WifiTethering.default; + } +}); +Object.defineProperty(exports, "WifiTetheringErrorRounded", { + enumerable: true, + get: function () { + return _WifiTetheringErrorRounded.default; + } +}); +Object.defineProperty(exports, "WifiTetheringErrorRoundedOutlined", { + enumerable: true, + get: function () { + return _WifiTetheringErrorRoundedOutlined.default; + } +}); +Object.defineProperty(exports, "WifiTetheringErrorRoundedRounded", { + enumerable: true, + get: function () { + return _WifiTetheringErrorRoundedRounded.default; + } +}); +Object.defineProperty(exports, "WifiTetheringErrorRoundedSharp", { + enumerable: true, + get: function () { + return _WifiTetheringErrorRoundedSharp.default; + } +}); +Object.defineProperty(exports, "WifiTetheringErrorRoundedTwoTone", { + enumerable: true, + get: function () { + return _WifiTetheringErrorRoundedTwoTone.default; + } +}); +Object.defineProperty(exports, "WifiTetheringOff", { + enumerable: true, + get: function () { + return _WifiTetheringOff.default; + } +}); +Object.defineProperty(exports, "WifiTetheringOffOutlined", { + enumerable: true, + get: function () { + return _WifiTetheringOffOutlined.default; + } +}); +Object.defineProperty(exports, "WifiTetheringOffRounded", { + enumerable: true, + get: function () { + return _WifiTetheringOffRounded.default; + } +}); +Object.defineProperty(exports, "WifiTetheringOffSharp", { + enumerable: true, + get: function () { + return _WifiTetheringOffSharp.default; + } +}); +Object.defineProperty(exports, "WifiTetheringOffTwoTone", { + enumerable: true, + get: function () { + return _WifiTetheringOffTwoTone.default; + } +}); +Object.defineProperty(exports, "WifiTetheringOutlined", { + enumerable: true, + get: function () { + return _WifiTetheringOutlined.default; + } +}); +Object.defineProperty(exports, "WifiTetheringRounded", { + enumerable: true, + get: function () { + return _WifiTetheringRounded.default; + } +}); +Object.defineProperty(exports, "WifiTetheringSharp", { + enumerable: true, + get: function () { + return _WifiTetheringSharp.default; + } +}); +Object.defineProperty(exports, "WifiTetheringTwoTone", { + enumerable: true, + get: function () { + return _WifiTetheringTwoTone.default; + } +}); +Object.defineProperty(exports, "WifiTwoTone", { + enumerable: true, + get: function () { + return _WifiTwoTone.default; + } +}); +Object.defineProperty(exports, "Window", { + enumerable: true, + get: function () { + return _Window.default; + } +}); +Object.defineProperty(exports, "WindowOutlined", { + enumerable: true, + get: function () { + return _WindowOutlined.default; + } +}); +Object.defineProperty(exports, "WindowRounded", { + enumerable: true, + get: function () { + return _WindowRounded.default; + } +}); +Object.defineProperty(exports, "WindowSharp", { + enumerable: true, + get: function () { + return _WindowSharp.default; + } +}); +Object.defineProperty(exports, "WindowTwoTone", { + enumerable: true, + get: function () { + return _WindowTwoTone.default; + } +}); +Object.defineProperty(exports, "WineBar", { + enumerable: true, + get: function () { + return _WineBar.default; + } +}); +Object.defineProperty(exports, "WineBarOutlined", { + enumerable: true, + get: function () { + return _WineBarOutlined.default; + } +}); +Object.defineProperty(exports, "WineBarRounded", { + enumerable: true, + get: function () { + return _WineBarRounded.default; + } +}); +Object.defineProperty(exports, "WineBarSharp", { + enumerable: true, + get: function () { + return _WineBarSharp.default; + } +}); +Object.defineProperty(exports, "WineBarTwoTone", { + enumerable: true, + get: function () { + return _WineBarTwoTone.default; + } +}); +Object.defineProperty(exports, "Work", { + enumerable: true, + get: function () { + return _Work.default; + } +}); +Object.defineProperty(exports, "WorkOff", { + enumerable: true, + get: function () { + return _WorkOff.default; + } +}); +Object.defineProperty(exports, "WorkOffOutlined", { + enumerable: true, + get: function () { + return _WorkOffOutlined.default; + } +}); +Object.defineProperty(exports, "WorkOffRounded", { + enumerable: true, + get: function () { + return _WorkOffRounded.default; + } +}); +Object.defineProperty(exports, "WorkOffSharp", { + enumerable: true, + get: function () { + return _WorkOffSharp.default; + } +}); +Object.defineProperty(exports, "WorkOffTwoTone", { + enumerable: true, + get: function () { + return _WorkOffTwoTone.default; + } +}); +Object.defineProperty(exports, "WorkOutline", { + enumerable: true, + get: function () { + return _WorkOutline.default; + } +}); +Object.defineProperty(exports, "WorkOutlineOutlined", { + enumerable: true, + get: function () { + return _WorkOutlineOutlined.default; + } +}); +Object.defineProperty(exports, "WorkOutlineRounded", { + enumerable: true, + get: function () { + return _WorkOutlineRounded.default; + } +}); +Object.defineProperty(exports, "WorkOutlineSharp", { + enumerable: true, + get: function () { + return _WorkOutlineSharp.default; + } +}); +Object.defineProperty(exports, "WorkOutlineTwoTone", { + enumerable: true, + get: function () { + return _WorkOutlineTwoTone.default; + } +}); +Object.defineProperty(exports, "WorkOutlined", { + enumerable: true, + get: function () { + return _WorkOutlined.default; + } +}); +Object.defineProperty(exports, "WorkRounded", { + enumerable: true, + get: function () { + return _WorkRounded.default; + } +}); +Object.defineProperty(exports, "WorkSharp", { + enumerable: true, + get: function () { + return _WorkSharp.default; + } +}); +Object.defineProperty(exports, "WorkTwoTone", { + enumerable: true, + get: function () { + return _WorkTwoTone.default; + } +}); +Object.defineProperty(exports, "Workspaces", { + enumerable: true, + get: function () { + return _Workspaces.default; + } +}); +Object.defineProperty(exports, "WorkspacesOutlined", { + enumerable: true, + get: function () { + return _WorkspacesOutlined.default; + } +}); +Object.defineProperty(exports, "WorkspacesRounded", { + enumerable: true, + get: function () { + return _WorkspacesRounded.default; + } +}); +Object.defineProperty(exports, "WorkspacesSharp", { + enumerable: true, + get: function () { + return _WorkspacesSharp.default; + } +}); +Object.defineProperty(exports, "WorkspacesTwoTone", { + enumerable: true, + get: function () { + return _WorkspacesTwoTone.default; + } +}); +Object.defineProperty(exports, "WrapText", { + enumerable: true, + get: function () { + return _WrapText.default; + } +}); +Object.defineProperty(exports, "WrapTextOutlined", { + enumerable: true, + get: function () { + return _WrapTextOutlined.default; + } +}); +Object.defineProperty(exports, "WrapTextRounded", { + enumerable: true, + get: function () { + return _WrapTextRounded.default; + } +}); +Object.defineProperty(exports, "WrapTextSharp", { + enumerable: true, + get: function () { + return _WrapTextSharp.default; + } +}); +Object.defineProperty(exports, "WrapTextTwoTone", { + enumerable: true, + get: function () { + return _WrapTextTwoTone.default; + } +}); +Object.defineProperty(exports, "WrongLocation", { + enumerable: true, + get: function () { + return _WrongLocation.default; + } +}); +Object.defineProperty(exports, "WrongLocationOutlined", { + enumerable: true, + get: function () { + return _WrongLocationOutlined.default; + } +}); +Object.defineProperty(exports, "WrongLocationRounded", { + enumerable: true, + get: function () { + return _WrongLocationRounded.default; + } +}); +Object.defineProperty(exports, "WrongLocationSharp", { + enumerable: true, + get: function () { + return _WrongLocationSharp.default; + } +}); +Object.defineProperty(exports, "WrongLocationTwoTone", { + enumerable: true, + get: function () { + return _WrongLocationTwoTone.default; + } +}); +Object.defineProperty(exports, "Wysiwyg", { + enumerable: true, + get: function () { + return _Wysiwyg.default; + } +}); +Object.defineProperty(exports, "WysiwygOutlined", { + enumerable: true, + get: function () { + return _WysiwygOutlined.default; + } +}); +Object.defineProperty(exports, "WysiwygRounded", { + enumerable: true, + get: function () { + return _WysiwygRounded.default; + } +}); +Object.defineProperty(exports, "WysiwygSharp", { + enumerable: true, + get: function () { + return _WysiwygSharp.default; + } +}); +Object.defineProperty(exports, "WysiwygTwoTone", { + enumerable: true, + get: function () { + return _WysiwygTwoTone.default; + } +}); +Object.defineProperty(exports, "Yard", { + enumerable: true, + get: function () { + return _Yard.default; + } +}); +Object.defineProperty(exports, "YardOutlined", { + enumerable: true, + get: function () { + return _YardOutlined.default; + } +}); +Object.defineProperty(exports, "YardRounded", { + enumerable: true, + get: function () { + return _YardRounded.default; + } +}); +Object.defineProperty(exports, "YardSharp", { + enumerable: true, + get: function () { + return _YardSharp.default; + } +}); +Object.defineProperty(exports, "YardTwoTone", { + enumerable: true, + get: function () { + return _YardTwoTone.default; + } +}); +Object.defineProperty(exports, "YouTube", { + enumerable: true, + get: function () { + return _YouTube.default; + } +}); +Object.defineProperty(exports, "YoutubeSearchedFor", { + enumerable: true, + get: function () { + return _YoutubeSearchedFor.default; + } +}); +Object.defineProperty(exports, "YoutubeSearchedForOutlined", { + enumerable: true, + get: function () { + return _YoutubeSearchedForOutlined.default; + } +}); +Object.defineProperty(exports, "YoutubeSearchedForRounded", { + enumerable: true, + get: function () { + return _YoutubeSearchedForRounded.default; + } +}); +Object.defineProperty(exports, "YoutubeSearchedForSharp", { + enumerable: true, + get: function () { + return _YoutubeSearchedForSharp.default; + } +}); +Object.defineProperty(exports, "YoutubeSearchedForTwoTone", { + enumerable: true, + get: function () { + return _YoutubeSearchedForTwoTone.default; + } +}); +Object.defineProperty(exports, "ZoomIn", { + enumerable: true, + get: function () { + return _ZoomIn.default; + } +}); +Object.defineProperty(exports, "ZoomInOutlined", { + enumerable: true, + get: function () { + return _ZoomInOutlined.default; + } +}); +Object.defineProperty(exports, "ZoomInRounded", { + enumerable: true, + get: function () { + return _ZoomInRounded.default; + } +}); +Object.defineProperty(exports, "ZoomInSharp", { + enumerable: true, + get: function () { + return _ZoomInSharp.default; + } +}); +Object.defineProperty(exports, "ZoomInTwoTone", { + enumerable: true, + get: function () { + return _ZoomInTwoTone.default; + } +}); +Object.defineProperty(exports, "ZoomOut", { + enumerable: true, + get: function () { + return _ZoomOut.default; + } +}); +Object.defineProperty(exports, "ZoomOutMap", { + enumerable: true, + get: function () { + return _ZoomOutMap.default; + } +}); +Object.defineProperty(exports, "ZoomOutMapOutlined", { + enumerable: true, + get: function () { + return _ZoomOutMapOutlined.default; + } +}); +Object.defineProperty(exports, "ZoomOutMapRounded", { + enumerable: true, + get: function () { + return _ZoomOutMapRounded.default; + } +}); +Object.defineProperty(exports, "ZoomOutMapSharp", { + enumerable: true, + get: function () { + return _ZoomOutMapSharp.default; + } +}); +Object.defineProperty(exports, "ZoomOutMapTwoTone", { + enumerable: true, + get: function () { + return _ZoomOutMapTwoTone.default; + } +}); +Object.defineProperty(exports, "ZoomOutOutlined", { + enumerable: true, + get: function () { + return _ZoomOutOutlined.default; + } +}); +Object.defineProperty(exports, "ZoomOutRounded", { + enumerable: true, + get: function () { + return _ZoomOutRounded.default; + } +}); +Object.defineProperty(exports, "ZoomOutSharp", { + enumerable: true, + get: function () { + return _ZoomOutSharp.default; + } +}); +Object.defineProperty(exports, "ZoomOutTwoTone", { + enumerable: true, + get: function () { + return _ZoomOutTwoTone.default; + } +}); + +var _AcUnit = _interopRequireDefault(require("./AcUnit")); + +var _AcUnitOutlined = _interopRequireDefault(require("./AcUnitOutlined")); + +var _AcUnitRounded = _interopRequireDefault(require("./AcUnitRounded")); + +var _AcUnitSharp = _interopRequireDefault(require("./AcUnitSharp")); + +var _AcUnitTwoTone = _interopRequireDefault(require("./AcUnitTwoTone")); + +var _AccessAlarm = _interopRequireDefault(require("./AccessAlarm")); + +var _AccessAlarmOutlined = _interopRequireDefault(require("./AccessAlarmOutlined")); + +var _AccessAlarmRounded = _interopRequireDefault(require("./AccessAlarmRounded")); + +var _AccessAlarmSharp = _interopRequireDefault(require("./AccessAlarmSharp")); + +var _AccessAlarmTwoTone = _interopRequireDefault(require("./AccessAlarmTwoTone")); + +var _AccessAlarms = _interopRequireDefault(require("./AccessAlarms")); + +var _AccessAlarmsOutlined = _interopRequireDefault(require("./AccessAlarmsOutlined")); + +var _AccessAlarmsRounded = _interopRequireDefault(require("./AccessAlarmsRounded")); + +var _AccessAlarmsSharp = _interopRequireDefault(require("./AccessAlarmsSharp")); + +var _AccessAlarmsTwoTone = _interopRequireDefault(require("./AccessAlarmsTwoTone")); + +var _AccessTime = _interopRequireDefault(require("./AccessTime")); + +var _AccessTimeFilled = _interopRequireDefault(require("./AccessTimeFilled")); + +var _AccessTimeFilledOutlined = _interopRequireDefault(require("./AccessTimeFilledOutlined")); + +var _AccessTimeFilledRounded = _interopRequireDefault(require("./AccessTimeFilledRounded")); + +var _AccessTimeFilledSharp = _interopRequireDefault(require("./AccessTimeFilledSharp")); + +var _AccessTimeFilledTwoTone = _interopRequireDefault(require("./AccessTimeFilledTwoTone")); + +var _AccessTimeOutlined = _interopRequireDefault(require("./AccessTimeOutlined")); + +var _AccessTimeRounded = _interopRequireDefault(require("./AccessTimeRounded")); + +var _AccessTimeSharp = _interopRequireDefault(require("./AccessTimeSharp")); + +var _AccessTimeTwoTone = _interopRequireDefault(require("./AccessTimeTwoTone")); + +var _Accessibility = _interopRequireDefault(require("./Accessibility")); + +var _AccessibilityNew = _interopRequireDefault(require("./AccessibilityNew")); + +var _AccessibilityNewOutlined = _interopRequireDefault(require("./AccessibilityNewOutlined")); + +var _AccessibilityNewRounded = _interopRequireDefault(require("./AccessibilityNewRounded")); + +var _AccessibilityNewSharp = _interopRequireDefault(require("./AccessibilityNewSharp")); + +var _AccessibilityNewTwoTone = _interopRequireDefault(require("./AccessibilityNewTwoTone")); + +var _AccessibilityOutlined = _interopRequireDefault(require("./AccessibilityOutlined")); + +var _AccessibilityRounded = _interopRequireDefault(require("./AccessibilityRounded")); + +var _AccessibilitySharp = _interopRequireDefault(require("./AccessibilitySharp")); + +var _AccessibilityTwoTone = _interopRequireDefault(require("./AccessibilityTwoTone")); + +var _Accessible = _interopRequireDefault(require("./Accessible")); + +var _AccessibleForward = _interopRequireDefault(require("./AccessibleForward")); + +var _AccessibleForwardOutlined = _interopRequireDefault(require("./AccessibleForwardOutlined")); + +var _AccessibleForwardRounded = _interopRequireDefault(require("./AccessibleForwardRounded")); + +var _AccessibleForwardSharp = _interopRequireDefault(require("./AccessibleForwardSharp")); + +var _AccessibleForwardTwoTone = _interopRequireDefault(require("./AccessibleForwardTwoTone")); + +var _AccessibleOutlined = _interopRequireDefault(require("./AccessibleOutlined")); + +var _AccessibleRounded = _interopRequireDefault(require("./AccessibleRounded")); + +var _AccessibleSharp = _interopRequireDefault(require("./AccessibleSharp")); + +var _AccessibleTwoTone = _interopRequireDefault(require("./AccessibleTwoTone")); + +var _AccountBalance = _interopRequireDefault(require("./AccountBalance")); + +var _AccountBalanceOutlined = _interopRequireDefault(require("./AccountBalanceOutlined")); + +var _AccountBalanceRounded = _interopRequireDefault(require("./AccountBalanceRounded")); + +var _AccountBalanceSharp = _interopRequireDefault(require("./AccountBalanceSharp")); + +var _AccountBalanceTwoTone = _interopRequireDefault(require("./AccountBalanceTwoTone")); + +var _AccountBalanceWallet = _interopRequireDefault(require("./AccountBalanceWallet")); + +var _AccountBalanceWalletOutlined = _interopRequireDefault(require("./AccountBalanceWalletOutlined")); + +var _AccountBalanceWalletRounded = _interopRequireDefault(require("./AccountBalanceWalletRounded")); + +var _AccountBalanceWalletSharp = _interopRequireDefault(require("./AccountBalanceWalletSharp")); + +var _AccountBalanceWalletTwoTone = _interopRequireDefault(require("./AccountBalanceWalletTwoTone")); + +var _AccountBox = _interopRequireDefault(require("./AccountBox")); + +var _AccountBoxOutlined = _interopRequireDefault(require("./AccountBoxOutlined")); + +var _AccountBoxRounded = _interopRequireDefault(require("./AccountBoxRounded")); + +var _AccountBoxSharp = _interopRequireDefault(require("./AccountBoxSharp")); + +var _AccountBoxTwoTone = _interopRequireDefault(require("./AccountBoxTwoTone")); + +var _AccountCircle = _interopRequireDefault(require("./AccountCircle")); + +var _AccountCircleOutlined = _interopRequireDefault(require("./AccountCircleOutlined")); + +var _AccountCircleRounded = _interopRequireDefault(require("./AccountCircleRounded")); + +var _AccountCircleSharp = _interopRequireDefault(require("./AccountCircleSharp")); + +var _AccountCircleTwoTone = _interopRequireDefault(require("./AccountCircleTwoTone")); + +var _AccountTree = _interopRequireDefault(require("./AccountTree")); + +var _AccountTreeOutlined = _interopRequireDefault(require("./AccountTreeOutlined")); + +var _AccountTreeRounded = _interopRequireDefault(require("./AccountTreeRounded")); + +var _AccountTreeSharp = _interopRequireDefault(require("./AccountTreeSharp")); + +var _AccountTreeTwoTone = _interopRequireDefault(require("./AccountTreeTwoTone")); + +var _AdUnits = _interopRequireDefault(require("./AdUnits")); + +var _AdUnitsOutlined = _interopRequireDefault(require("./AdUnitsOutlined")); + +var _AdUnitsRounded = _interopRequireDefault(require("./AdUnitsRounded")); + +var _AdUnitsSharp = _interopRequireDefault(require("./AdUnitsSharp")); + +var _AdUnitsTwoTone = _interopRequireDefault(require("./AdUnitsTwoTone")); + +var _Adb = _interopRequireDefault(require("./Adb")); + +var _AdbOutlined = _interopRequireDefault(require("./AdbOutlined")); + +var _AdbRounded = _interopRequireDefault(require("./AdbRounded")); + +var _AdbSharp = _interopRequireDefault(require("./AdbSharp")); + +var _AdbTwoTone = _interopRequireDefault(require("./AdbTwoTone")); + +var _Add = _interopRequireDefault(require("./Add")); + +var _AddAPhoto = _interopRequireDefault(require("./AddAPhoto")); + +var _AddAPhotoOutlined = _interopRequireDefault(require("./AddAPhotoOutlined")); + +var _AddAPhotoRounded = _interopRequireDefault(require("./AddAPhotoRounded")); + +var _AddAPhotoSharp = _interopRequireDefault(require("./AddAPhotoSharp")); + +var _AddAPhotoTwoTone = _interopRequireDefault(require("./AddAPhotoTwoTone")); + +var _AddAlarm = _interopRequireDefault(require("./AddAlarm")); + +var _AddAlarmOutlined = _interopRequireDefault(require("./AddAlarmOutlined")); + +var _AddAlarmRounded = _interopRequireDefault(require("./AddAlarmRounded")); + +var _AddAlarmSharp = _interopRequireDefault(require("./AddAlarmSharp")); + +var _AddAlarmTwoTone = _interopRequireDefault(require("./AddAlarmTwoTone")); + +var _AddAlert = _interopRequireDefault(require("./AddAlert")); + +var _AddAlertOutlined = _interopRequireDefault(require("./AddAlertOutlined")); + +var _AddAlertRounded = _interopRequireDefault(require("./AddAlertRounded")); + +var _AddAlertSharp = _interopRequireDefault(require("./AddAlertSharp")); + +var _AddAlertTwoTone = _interopRequireDefault(require("./AddAlertTwoTone")); + +var _AddBox = _interopRequireDefault(require("./AddBox")); + +var _AddBoxOutlined = _interopRequireDefault(require("./AddBoxOutlined")); + +var _AddBoxRounded = _interopRequireDefault(require("./AddBoxRounded")); + +var _AddBoxSharp = _interopRequireDefault(require("./AddBoxSharp")); + +var _AddBoxTwoTone = _interopRequireDefault(require("./AddBoxTwoTone")); + +var _AddBusiness = _interopRequireDefault(require("./AddBusiness")); + +var _AddBusinessOutlined = _interopRequireDefault(require("./AddBusinessOutlined")); + +var _AddBusinessRounded = _interopRequireDefault(require("./AddBusinessRounded")); + +var _AddBusinessSharp = _interopRequireDefault(require("./AddBusinessSharp")); + +var _AddBusinessTwoTone = _interopRequireDefault(require("./AddBusinessTwoTone")); + +var _AddCircle = _interopRequireDefault(require("./AddCircle")); + +var _AddCircleOutline = _interopRequireDefault(require("./AddCircleOutline")); + +var _AddCircleOutlineOutlined = _interopRequireDefault(require("./AddCircleOutlineOutlined")); + +var _AddCircleOutlineRounded = _interopRequireDefault(require("./AddCircleOutlineRounded")); + +var _AddCircleOutlineSharp = _interopRequireDefault(require("./AddCircleOutlineSharp")); + +var _AddCircleOutlineTwoTone = _interopRequireDefault(require("./AddCircleOutlineTwoTone")); + +var _AddCircleOutlined = _interopRequireDefault(require("./AddCircleOutlined")); + +var _AddCircleRounded = _interopRequireDefault(require("./AddCircleRounded")); + +var _AddCircleSharp = _interopRequireDefault(require("./AddCircleSharp")); + +var _AddCircleTwoTone = _interopRequireDefault(require("./AddCircleTwoTone")); + +var _AddComment = _interopRequireDefault(require("./AddComment")); + +var _AddCommentOutlined = _interopRequireDefault(require("./AddCommentOutlined")); + +var _AddCommentRounded = _interopRequireDefault(require("./AddCommentRounded")); + +var _AddCommentSharp = _interopRequireDefault(require("./AddCommentSharp")); + +var _AddCommentTwoTone = _interopRequireDefault(require("./AddCommentTwoTone")); + +var _AddIcCall = _interopRequireDefault(require("./AddIcCall")); + +var _AddIcCallOutlined = _interopRequireDefault(require("./AddIcCallOutlined")); + +var _AddIcCallRounded = _interopRequireDefault(require("./AddIcCallRounded")); + +var _AddIcCallSharp = _interopRequireDefault(require("./AddIcCallSharp")); + +var _AddIcCallTwoTone = _interopRequireDefault(require("./AddIcCallTwoTone")); + +var _AddLink = _interopRequireDefault(require("./AddLink")); + +var _AddLinkOutlined = _interopRequireDefault(require("./AddLinkOutlined")); + +var _AddLinkRounded = _interopRequireDefault(require("./AddLinkRounded")); + +var _AddLinkSharp = _interopRequireDefault(require("./AddLinkSharp")); + +var _AddLinkTwoTone = _interopRequireDefault(require("./AddLinkTwoTone")); + +var _AddLocation = _interopRequireDefault(require("./AddLocation")); + +var _AddLocationAlt = _interopRequireDefault(require("./AddLocationAlt")); + +var _AddLocationAltOutlined = _interopRequireDefault(require("./AddLocationAltOutlined")); + +var _AddLocationAltRounded = _interopRequireDefault(require("./AddLocationAltRounded")); + +var _AddLocationAltSharp = _interopRequireDefault(require("./AddLocationAltSharp")); + +var _AddLocationAltTwoTone = _interopRequireDefault(require("./AddLocationAltTwoTone")); + +var _AddLocationOutlined = _interopRequireDefault(require("./AddLocationOutlined")); + +var _AddLocationRounded = _interopRequireDefault(require("./AddLocationRounded")); + +var _AddLocationSharp = _interopRequireDefault(require("./AddLocationSharp")); + +var _AddLocationTwoTone = _interopRequireDefault(require("./AddLocationTwoTone")); + +var _AddModerator = _interopRequireDefault(require("./AddModerator")); + +var _AddModeratorOutlined = _interopRequireDefault(require("./AddModeratorOutlined")); + +var _AddModeratorRounded = _interopRequireDefault(require("./AddModeratorRounded")); + +var _AddModeratorSharp = _interopRequireDefault(require("./AddModeratorSharp")); + +var _AddModeratorTwoTone = _interopRequireDefault(require("./AddModeratorTwoTone")); + +var _AddOutlined = _interopRequireDefault(require("./AddOutlined")); + +var _AddPhotoAlternate = _interopRequireDefault(require("./AddPhotoAlternate")); + +var _AddPhotoAlternateOutlined = _interopRequireDefault(require("./AddPhotoAlternateOutlined")); + +var _AddPhotoAlternateRounded = _interopRequireDefault(require("./AddPhotoAlternateRounded")); + +var _AddPhotoAlternateSharp = _interopRequireDefault(require("./AddPhotoAlternateSharp")); + +var _AddPhotoAlternateTwoTone = _interopRequireDefault(require("./AddPhotoAlternateTwoTone")); + +var _AddReaction = _interopRequireDefault(require("./AddReaction")); + +var _AddReactionOutlined = _interopRequireDefault(require("./AddReactionOutlined")); + +var _AddReactionRounded = _interopRequireDefault(require("./AddReactionRounded")); + +var _AddReactionSharp = _interopRequireDefault(require("./AddReactionSharp")); + +var _AddReactionTwoTone = _interopRequireDefault(require("./AddReactionTwoTone")); + +var _AddRoad = _interopRequireDefault(require("./AddRoad")); + +var _AddRoadOutlined = _interopRequireDefault(require("./AddRoadOutlined")); + +var _AddRoadRounded = _interopRequireDefault(require("./AddRoadRounded")); + +var _AddRoadSharp = _interopRequireDefault(require("./AddRoadSharp")); + +var _AddRoadTwoTone = _interopRequireDefault(require("./AddRoadTwoTone")); + +var _AddRounded = _interopRequireDefault(require("./AddRounded")); + +var _AddSharp = _interopRequireDefault(require("./AddSharp")); + +var _AddShoppingCart = _interopRequireDefault(require("./AddShoppingCart")); + +var _AddShoppingCartOutlined = _interopRequireDefault(require("./AddShoppingCartOutlined")); + +var _AddShoppingCartRounded = _interopRequireDefault(require("./AddShoppingCartRounded")); + +var _AddShoppingCartSharp = _interopRequireDefault(require("./AddShoppingCartSharp")); + +var _AddShoppingCartTwoTone = _interopRequireDefault(require("./AddShoppingCartTwoTone")); + +var _AddTask = _interopRequireDefault(require("./AddTask")); + +var _AddTaskOutlined = _interopRequireDefault(require("./AddTaskOutlined")); + +var _AddTaskRounded = _interopRequireDefault(require("./AddTaskRounded")); + +var _AddTaskSharp = _interopRequireDefault(require("./AddTaskSharp")); + +var _AddTaskTwoTone = _interopRequireDefault(require("./AddTaskTwoTone")); + +var _AddToDrive = _interopRequireDefault(require("./AddToDrive")); + +var _AddToDriveOutlined = _interopRequireDefault(require("./AddToDriveOutlined")); + +var _AddToDriveRounded = _interopRequireDefault(require("./AddToDriveRounded")); + +var _AddToDriveSharp = _interopRequireDefault(require("./AddToDriveSharp")); + +var _AddToDriveTwoTone = _interopRequireDefault(require("./AddToDriveTwoTone")); + +var _AddToHomeScreen = _interopRequireDefault(require("./AddToHomeScreen")); + +var _AddToHomeScreenOutlined = _interopRequireDefault(require("./AddToHomeScreenOutlined")); + +var _AddToHomeScreenRounded = _interopRequireDefault(require("./AddToHomeScreenRounded")); + +var _AddToHomeScreenSharp = _interopRequireDefault(require("./AddToHomeScreenSharp")); + +var _AddToHomeScreenTwoTone = _interopRequireDefault(require("./AddToHomeScreenTwoTone")); + +var _AddToPhotos = _interopRequireDefault(require("./AddToPhotos")); + +var _AddToPhotosOutlined = _interopRequireDefault(require("./AddToPhotosOutlined")); + +var _AddToPhotosRounded = _interopRequireDefault(require("./AddToPhotosRounded")); + +var _AddToPhotosSharp = _interopRequireDefault(require("./AddToPhotosSharp")); + +var _AddToPhotosTwoTone = _interopRequireDefault(require("./AddToPhotosTwoTone")); + +var _AddToQueue = _interopRequireDefault(require("./AddToQueue")); + +var _AddToQueueOutlined = _interopRequireDefault(require("./AddToQueueOutlined")); + +var _AddToQueueRounded = _interopRequireDefault(require("./AddToQueueRounded")); + +var _AddToQueueSharp = _interopRequireDefault(require("./AddToQueueSharp")); + +var _AddToQueueTwoTone = _interopRequireDefault(require("./AddToQueueTwoTone")); + +var _AddTwoTone = _interopRequireDefault(require("./AddTwoTone")); + +var _Addchart = _interopRequireDefault(require("./Addchart")); + +var _AddchartOutlined = _interopRequireDefault(require("./AddchartOutlined")); + +var _AddchartRounded = _interopRequireDefault(require("./AddchartRounded")); + +var _AddchartSharp = _interopRequireDefault(require("./AddchartSharp")); + +var _AddchartTwoTone = _interopRequireDefault(require("./AddchartTwoTone")); + +var _Adjust = _interopRequireDefault(require("./Adjust")); + +var _AdjustOutlined = _interopRequireDefault(require("./AdjustOutlined")); + +var _AdjustRounded = _interopRequireDefault(require("./AdjustRounded")); + +var _AdjustSharp = _interopRequireDefault(require("./AdjustSharp")); + +var _AdjustTwoTone = _interopRequireDefault(require("./AdjustTwoTone")); + +var _AdminPanelSettings = _interopRequireDefault(require("./AdminPanelSettings")); + +var _AdminPanelSettingsOutlined = _interopRequireDefault(require("./AdminPanelSettingsOutlined")); + +var _AdminPanelSettingsRounded = _interopRequireDefault(require("./AdminPanelSettingsRounded")); + +var _AdminPanelSettingsSharp = _interopRequireDefault(require("./AdminPanelSettingsSharp")); + +var _AdminPanelSettingsTwoTone = _interopRequireDefault(require("./AdminPanelSettingsTwoTone")); + +var _Agriculture = _interopRequireDefault(require("./Agriculture")); + +var _AgricultureOutlined = _interopRequireDefault(require("./AgricultureOutlined")); + +var _AgricultureRounded = _interopRequireDefault(require("./AgricultureRounded")); + +var _AgricultureSharp = _interopRequireDefault(require("./AgricultureSharp")); + +var _AgricultureTwoTone = _interopRequireDefault(require("./AgricultureTwoTone")); + +var _Air = _interopRequireDefault(require("./Air")); + +var _AirOutlined = _interopRequireDefault(require("./AirOutlined")); + +var _AirRounded = _interopRequireDefault(require("./AirRounded")); + +var _AirSharp = _interopRequireDefault(require("./AirSharp")); + +var _AirTwoTone = _interopRequireDefault(require("./AirTwoTone")); + +var _AirlineSeatFlat = _interopRequireDefault(require("./AirlineSeatFlat")); + +var _AirlineSeatFlatAngled = _interopRequireDefault(require("./AirlineSeatFlatAngled")); + +var _AirlineSeatFlatAngledOutlined = _interopRequireDefault(require("./AirlineSeatFlatAngledOutlined")); + +var _AirlineSeatFlatAngledRounded = _interopRequireDefault(require("./AirlineSeatFlatAngledRounded")); + +var _AirlineSeatFlatAngledSharp = _interopRequireDefault(require("./AirlineSeatFlatAngledSharp")); + +var _AirlineSeatFlatAngledTwoTone = _interopRequireDefault(require("./AirlineSeatFlatAngledTwoTone")); + +var _AirlineSeatFlatOutlined = _interopRequireDefault(require("./AirlineSeatFlatOutlined")); + +var _AirlineSeatFlatRounded = _interopRequireDefault(require("./AirlineSeatFlatRounded")); + +var _AirlineSeatFlatSharp = _interopRequireDefault(require("./AirlineSeatFlatSharp")); + +var _AirlineSeatFlatTwoTone = _interopRequireDefault(require("./AirlineSeatFlatTwoTone")); + +var _AirlineSeatIndividualSuite = _interopRequireDefault(require("./AirlineSeatIndividualSuite")); + +var _AirlineSeatIndividualSuiteOutlined = _interopRequireDefault(require("./AirlineSeatIndividualSuiteOutlined")); + +var _AirlineSeatIndividualSuiteRounded = _interopRequireDefault(require("./AirlineSeatIndividualSuiteRounded")); + +var _AirlineSeatIndividualSuiteSharp = _interopRequireDefault(require("./AirlineSeatIndividualSuiteSharp")); + +var _AirlineSeatIndividualSuiteTwoTone = _interopRequireDefault(require("./AirlineSeatIndividualSuiteTwoTone")); + +var _AirlineSeatLegroomExtra = _interopRequireDefault(require("./AirlineSeatLegroomExtra")); + +var _AirlineSeatLegroomExtraOutlined = _interopRequireDefault(require("./AirlineSeatLegroomExtraOutlined")); + +var _AirlineSeatLegroomExtraRounded = _interopRequireDefault(require("./AirlineSeatLegroomExtraRounded")); + +var _AirlineSeatLegroomExtraSharp = _interopRequireDefault(require("./AirlineSeatLegroomExtraSharp")); + +var _AirlineSeatLegroomExtraTwoTone = _interopRequireDefault(require("./AirlineSeatLegroomExtraTwoTone")); + +var _AirlineSeatLegroomNormal = _interopRequireDefault(require("./AirlineSeatLegroomNormal")); + +var _AirlineSeatLegroomNormalOutlined = _interopRequireDefault(require("./AirlineSeatLegroomNormalOutlined")); + +var _AirlineSeatLegroomNormalRounded = _interopRequireDefault(require("./AirlineSeatLegroomNormalRounded")); + +var _AirlineSeatLegroomNormalSharp = _interopRequireDefault(require("./AirlineSeatLegroomNormalSharp")); + +var _AirlineSeatLegroomNormalTwoTone = _interopRequireDefault(require("./AirlineSeatLegroomNormalTwoTone")); + +var _AirlineSeatLegroomReduced = _interopRequireDefault(require("./AirlineSeatLegroomReduced")); + +var _AirlineSeatLegroomReducedOutlined = _interopRequireDefault(require("./AirlineSeatLegroomReducedOutlined")); + +var _AirlineSeatLegroomReducedRounded = _interopRequireDefault(require("./AirlineSeatLegroomReducedRounded")); + +var _AirlineSeatLegroomReducedSharp = _interopRequireDefault(require("./AirlineSeatLegroomReducedSharp")); + +var _AirlineSeatLegroomReducedTwoTone = _interopRequireDefault(require("./AirlineSeatLegroomReducedTwoTone")); + +var _AirlineSeatReclineExtra = _interopRequireDefault(require("./AirlineSeatReclineExtra")); + +var _AirlineSeatReclineExtraOutlined = _interopRequireDefault(require("./AirlineSeatReclineExtraOutlined")); + +var _AirlineSeatReclineExtraRounded = _interopRequireDefault(require("./AirlineSeatReclineExtraRounded")); + +var _AirlineSeatReclineExtraSharp = _interopRequireDefault(require("./AirlineSeatReclineExtraSharp")); + +var _AirlineSeatReclineExtraTwoTone = _interopRequireDefault(require("./AirlineSeatReclineExtraTwoTone")); + +var _AirlineSeatReclineNormal = _interopRequireDefault(require("./AirlineSeatReclineNormal")); + +var _AirlineSeatReclineNormalOutlined = _interopRequireDefault(require("./AirlineSeatReclineNormalOutlined")); + +var _AirlineSeatReclineNormalRounded = _interopRequireDefault(require("./AirlineSeatReclineNormalRounded")); + +var _AirlineSeatReclineNormalSharp = _interopRequireDefault(require("./AirlineSeatReclineNormalSharp")); + +var _AirlineSeatReclineNormalTwoTone = _interopRequireDefault(require("./AirlineSeatReclineNormalTwoTone")); + +var _AirplaneTicket = _interopRequireDefault(require("./AirplaneTicket")); + +var _AirplaneTicketOutlined = _interopRequireDefault(require("./AirplaneTicketOutlined")); + +var _AirplaneTicketRounded = _interopRequireDefault(require("./AirplaneTicketRounded")); + +var _AirplaneTicketSharp = _interopRequireDefault(require("./AirplaneTicketSharp")); + +var _AirplaneTicketTwoTone = _interopRequireDefault(require("./AirplaneTicketTwoTone")); + +var _AirplanemodeActive = _interopRequireDefault(require("./AirplanemodeActive")); + +var _AirplanemodeActiveOutlined = _interopRequireDefault(require("./AirplanemodeActiveOutlined")); + +var _AirplanemodeActiveRounded = _interopRequireDefault(require("./AirplanemodeActiveRounded")); + +var _AirplanemodeActiveSharp = _interopRequireDefault(require("./AirplanemodeActiveSharp")); + +var _AirplanemodeActiveTwoTone = _interopRequireDefault(require("./AirplanemodeActiveTwoTone")); + +var _AirplanemodeInactive = _interopRequireDefault(require("./AirplanemodeInactive")); + +var _AirplanemodeInactiveOutlined = _interopRequireDefault(require("./AirplanemodeInactiveOutlined")); + +var _AirplanemodeInactiveRounded = _interopRequireDefault(require("./AirplanemodeInactiveRounded")); + +var _AirplanemodeInactiveSharp = _interopRequireDefault(require("./AirplanemodeInactiveSharp")); + +var _AirplanemodeInactiveTwoTone = _interopRequireDefault(require("./AirplanemodeInactiveTwoTone")); + +var _Airplay = _interopRequireDefault(require("./Airplay")); + +var _AirplayOutlined = _interopRequireDefault(require("./AirplayOutlined")); + +var _AirplayRounded = _interopRequireDefault(require("./AirplayRounded")); + +var _AirplaySharp = _interopRequireDefault(require("./AirplaySharp")); + +var _AirplayTwoTone = _interopRequireDefault(require("./AirplayTwoTone")); + +var _AirportShuttle = _interopRequireDefault(require("./AirportShuttle")); + +var _AirportShuttleOutlined = _interopRequireDefault(require("./AirportShuttleOutlined")); + +var _AirportShuttleRounded = _interopRequireDefault(require("./AirportShuttleRounded")); + +var _AirportShuttleSharp = _interopRequireDefault(require("./AirportShuttleSharp")); + +var _AirportShuttleTwoTone = _interopRequireDefault(require("./AirportShuttleTwoTone")); + +var _Alarm = _interopRequireDefault(require("./Alarm")); + +var _AlarmAdd = _interopRequireDefault(require("./AlarmAdd")); + +var _AlarmAddOutlined = _interopRequireDefault(require("./AlarmAddOutlined")); + +var _AlarmAddRounded = _interopRequireDefault(require("./AlarmAddRounded")); + +var _AlarmAddSharp = _interopRequireDefault(require("./AlarmAddSharp")); + +var _AlarmAddTwoTone = _interopRequireDefault(require("./AlarmAddTwoTone")); + +var _AlarmOff = _interopRequireDefault(require("./AlarmOff")); + +var _AlarmOffOutlined = _interopRequireDefault(require("./AlarmOffOutlined")); + +var _AlarmOffRounded = _interopRequireDefault(require("./AlarmOffRounded")); + +var _AlarmOffSharp = _interopRequireDefault(require("./AlarmOffSharp")); + +var _AlarmOffTwoTone = _interopRequireDefault(require("./AlarmOffTwoTone")); + +var _AlarmOn = _interopRequireDefault(require("./AlarmOn")); + +var _AlarmOnOutlined = _interopRequireDefault(require("./AlarmOnOutlined")); + +var _AlarmOnRounded = _interopRequireDefault(require("./AlarmOnRounded")); + +var _AlarmOnSharp = _interopRequireDefault(require("./AlarmOnSharp")); + +var _AlarmOnTwoTone = _interopRequireDefault(require("./AlarmOnTwoTone")); + +var _AlarmOutlined = _interopRequireDefault(require("./AlarmOutlined")); + +var _AlarmRounded = _interopRequireDefault(require("./AlarmRounded")); + +var _AlarmSharp = _interopRequireDefault(require("./AlarmSharp")); + +var _AlarmTwoTone = _interopRequireDefault(require("./AlarmTwoTone")); + +var _Album = _interopRequireDefault(require("./Album")); + +var _AlbumOutlined = _interopRequireDefault(require("./AlbumOutlined")); + +var _AlbumRounded = _interopRequireDefault(require("./AlbumRounded")); + +var _AlbumSharp = _interopRequireDefault(require("./AlbumSharp")); + +var _AlbumTwoTone = _interopRequireDefault(require("./AlbumTwoTone")); + +var _AlignHorizontalCenter = _interopRequireDefault(require("./AlignHorizontalCenter")); + +var _AlignHorizontalCenterOutlined = _interopRequireDefault(require("./AlignHorizontalCenterOutlined")); + +var _AlignHorizontalCenterRounded = _interopRequireDefault(require("./AlignHorizontalCenterRounded")); + +var _AlignHorizontalCenterSharp = _interopRequireDefault(require("./AlignHorizontalCenterSharp")); + +var _AlignHorizontalCenterTwoTone = _interopRequireDefault(require("./AlignHorizontalCenterTwoTone")); + +var _AlignHorizontalLeft = _interopRequireDefault(require("./AlignHorizontalLeft")); + +var _AlignHorizontalLeftOutlined = _interopRequireDefault(require("./AlignHorizontalLeftOutlined")); + +var _AlignHorizontalLeftRounded = _interopRequireDefault(require("./AlignHorizontalLeftRounded")); + +var _AlignHorizontalLeftSharp = _interopRequireDefault(require("./AlignHorizontalLeftSharp")); + +var _AlignHorizontalLeftTwoTone = _interopRequireDefault(require("./AlignHorizontalLeftTwoTone")); + +var _AlignHorizontalRight = _interopRequireDefault(require("./AlignHorizontalRight")); + +var _AlignHorizontalRightOutlined = _interopRequireDefault(require("./AlignHorizontalRightOutlined")); + +var _AlignHorizontalRightRounded = _interopRequireDefault(require("./AlignHorizontalRightRounded")); + +var _AlignHorizontalRightSharp = _interopRequireDefault(require("./AlignHorizontalRightSharp")); + +var _AlignHorizontalRightTwoTone = _interopRequireDefault(require("./AlignHorizontalRightTwoTone")); + +var _AlignVerticalBottom = _interopRequireDefault(require("./AlignVerticalBottom")); + +var _AlignVerticalBottomOutlined = _interopRequireDefault(require("./AlignVerticalBottomOutlined")); + +var _AlignVerticalBottomRounded = _interopRequireDefault(require("./AlignVerticalBottomRounded")); + +var _AlignVerticalBottomSharp = _interopRequireDefault(require("./AlignVerticalBottomSharp")); + +var _AlignVerticalBottomTwoTone = _interopRequireDefault(require("./AlignVerticalBottomTwoTone")); + +var _AlignVerticalCenter = _interopRequireDefault(require("./AlignVerticalCenter")); + +var _AlignVerticalCenterOutlined = _interopRequireDefault(require("./AlignVerticalCenterOutlined")); + +var _AlignVerticalCenterRounded = _interopRequireDefault(require("./AlignVerticalCenterRounded")); + +var _AlignVerticalCenterSharp = _interopRequireDefault(require("./AlignVerticalCenterSharp")); + +var _AlignVerticalCenterTwoTone = _interopRequireDefault(require("./AlignVerticalCenterTwoTone")); + +var _AlignVerticalTop = _interopRequireDefault(require("./AlignVerticalTop")); + +var _AlignVerticalTopOutlined = _interopRequireDefault(require("./AlignVerticalTopOutlined")); + +var _AlignVerticalTopRounded = _interopRequireDefault(require("./AlignVerticalTopRounded")); + +var _AlignVerticalTopSharp = _interopRequireDefault(require("./AlignVerticalTopSharp")); + +var _AlignVerticalTopTwoTone = _interopRequireDefault(require("./AlignVerticalTopTwoTone")); + +var _AllInbox = _interopRequireDefault(require("./AllInbox")); + +var _AllInboxOutlined = _interopRequireDefault(require("./AllInboxOutlined")); + +var _AllInboxRounded = _interopRequireDefault(require("./AllInboxRounded")); + +var _AllInboxSharp = _interopRequireDefault(require("./AllInboxSharp")); + +var _AllInboxTwoTone = _interopRequireDefault(require("./AllInboxTwoTone")); + +var _AllInclusive = _interopRequireDefault(require("./AllInclusive")); + +var _AllInclusiveOutlined = _interopRequireDefault(require("./AllInclusiveOutlined")); + +var _AllInclusiveRounded = _interopRequireDefault(require("./AllInclusiveRounded")); + +var _AllInclusiveSharp = _interopRequireDefault(require("./AllInclusiveSharp")); + +var _AllInclusiveTwoTone = _interopRequireDefault(require("./AllInclusiveTwoTone")); + +var _AllOut = _interopRequireDefault(require("./AllOut")); + +var _AllOutOutlined = _interopRequireDefault(require("./AllOutOutlined")); + +var _AllOutRounded = _interopRequireDefault(require("./AllOutRounded")); + +var _AllOutSharp = _interopRequireDefault(require("./AllOutSharp")); + +var _AllOutTwoTone = _interopRequireDefault(require("./AllOutTwoTone")); + +var _AltRoute = _interopRequireDefault(require("./AltRoute")); + +var _AltRouteOutlined = _interopRequireDefault(require("./AltRouteOutlined")); + +var _AltRouteRounded = _interopRequireDefault(require("./AltRouteRounded")); + +var _AltRouteSharp = _interopRequireDefault(require("./AltRouteSharp")); + +var _AltRouteTwoTone = _interopRequireDefault(require("./AltRouteTwoTone")); + +var _AlternateEmail = _interopRequireDefault(require("./AlternateEmail")); + +var _AlternateEmailOutlined = _interopRequireDefault(require("./AlternateEmailOutlined")); + +var _AlternateEmailRounded = _interopRequireDefault(require("./AlternateEmailRounded")); + +var _AlternateEmailSharp = _interopRequireDefault(require("./AlternateEmailSharp")); + +var _AlternateEmailTwoTone = _interopRequireDefault(require("./AlternateEmailTwoTone")); + +var _Analytics = _interopRequireDefault(require("./Analytics")); + +var _AnalyticsOutlined = _interopRequireDefault(require("./AnalyticsOutlined")); + +var _AnalyticsRounded = _interopRequireDefault(require("./AnalyticsRounded")); + +var _AnalyticsSharp = _interopRequireDefault(require("./AnalyticsSharp")); + +var _AnalyticsTwoTone = _interopRequireDefault(require("./AnalyticsTwoTone")); + +var _Anchor = _interopRequireDefault(require("./Anchor")); + +var _AnchorOutlined = _interopRequireDefault(require("./AnchorOutlined")); + +var _AnchorRounded = _interopRequireDefault(require("./AnchorRounded")); + +var _AnchorSharp = _interopRequireDefault(require("./AnchorSharp")); + +var _AnchorTwoTone = _interopRequireDefault(require("./AnchorTwoTone")); + +var _Android = _interopRequireDefault(require("./Android")); + +var _AndroidOutlined = _interopRequireDefault(require("./AndroidOutlined")); + +var _AndroidRounded = _interopRequireDefault(require("./AndroidRounded")); + +var _AndroidSharp = _interopRequireDefault(require("./AndroidSharp")); + +var _AndroidTwoTone = _interopRequireDefault(require("./AndroidTwoTone")); + +var _Animation = _interopRequireDefault(require("./Animation")); + +var _AnimationOutlined = _interopRequireDefault(require("./AnimationOutlined")); + +var _AnimationRounded = _interopRequireDefault(require("./AnimationRounded")); + +var _AnimationSharp = _interopRequireDefault(require("./AnimationSharp")); + +var _AnimationTwoTone = _interopRequireDefault(require("./AnimationTwoTone")); + +var _Announcement = _interopRequireDefault(require("./Announcement")); + +var _AnnouncementOutlined = _interopRequireDefault(require("./AnnouncementOutlined")); + +var _AnnouncementRounded = _interopRequireDefault(require("./AnnouncementRounded")); + +var _AnnouncementSharp = _interopRequireDefault(require("./AnnouncementSharp")); + +var _AnnouncementTwoTone = _interopRequireDefault(require("./AnnouncementTwoTone")); + +var _Aod = _interopRequireDefault(require("./Aod")); + +var _AodOutlined = _interopRequireDefault(require("./AodOutlined")); + +var _AodRounded = _interopRequireDefault(require("./AodRounded")); + +var _AodSharp = _interopRequireDefault(require("./AodSharp")); + +var _AodTwoTone = _interopRequireDefault(require("./AodTwoTone")); + +var _Apartment = _interopRequireDefault(require("./Apartment")); + +var _ApartmentOutlined = _interopRequireDefault(require("./ApartmentOutlined")); + +var _ApartmentRounded = _interopRequireDefault(require("./ApartmentRounded")); + +var _ApartmentSharp = _interopRequireDefault(require("./ApartmentSharp")); + +var _ApartmentTwoTone = _interopRequireDefault(require("./ApartmentTwoTone")); + +var _Api = _interopRequireDefault(require("./Api")); + +var _ApiOutlined = _interopRequireDefault(require("./ApiOutlined")); + +var _ApiRounded = _interopRequireDefault(require("./ApiRounded")); + +var _ApiSharp = _interopRequireDefault(require("./ApiSharp")); + +var _ApiTwoTone = _interopRequireDefault(require("./ApiTwoTone")); + +var _AppBlocking = _interopRequireDefault(require("./AppBlocking")); + +var _AppBlockingOutlined = _interopRequireDefault(require("./AppBlockingOutlined")); + +var _AppBlockingRounded = _interopRequireDefault(require("./AppBlockingRounded")); + +var _AppBlockingSharp = _interopRequireDefault(require("./AppBlockingSharp")); + +var _AppBlockingTwoTone = _interopRequireDefault(require("./AppBlockingTwoTone")); + +var _AppRegistration = _interopRequireDefault(require("./AppRegistration")); + +var _AppRegistrationOutlined = _interopRequireDefault(require("./AppRegistrationOutlined")); + +var _AppRegistrationRounded = _interopRequireDefault(require("./AppRegistrationRounded")); + +var _AppRegistrationSharp = _interopRequireDefault(require("./AppRegistrationSharp")); + +var _AppRegistrationTwoTone = _interopRequireDefault(require("./AppRegistrationTwoTone")); + +var _AppSettingsAlt = _interopRequireDefault(require("./AppSettingsAlt")); + +var _AppSettingsAltOutlined = _interopRequireDefault(require("./AppSettingsAltOutlined")); + +var _AppSettingsAltRounded = _interopRequireDefault(require("./AppSettingsAltRounded")); + +var _AppSettingsAltSharp = _interopRequireDefault(require("./AppSettingsAltSharp")); + +var _AppSettingsAltTwoTone = _interopRequireDefault(require("./AppSettingsAltTwoTone")); + +var _Apple = _interopRequireDefault(require("./Apple")); + +var _Approval = _interopRequireDefault(require("./Approval")); + +var _ApprovalOutlined = _interopRequireDefault(require("./ApprovalOutlined")); + +var _ApprovalRounded = _interopRequireDefault(require("./ApprovalRounded")); + +var _ApprovalSharp = _interopRequireDefault(require("./ApprovalSharp")); + +var _ApprovalTwoTone = _interopRequireDefault(require("./ApprovalTwoTone")); + +var _Apps = _interopRequireDefault(require("./Apps")); + +var _AppsOutlined = _interopRequireDefault(require("./AppsOutlined")); + +var _AppsRounded = _interopRequireDefault(require("./AppsRounded")); + +var _AppsSharp = _interopRequireDefault(require("./AppsSharp")); + +var _AppsTwoTone = _interopRequireDefault(require("./AppsTwoTone")); + +var _Architecture = _interopRequireDefault(require("./Architecture")); + +var _ArchitectureOutlined = _interopRequireDefault(require("./ArchitectureOutlined")); + +var _ArchitectureRounded = _interopRequireDefault(require("./ArchitectureRounded")); + +var _ArchitectureSharp = _interopRequireDefault(require("./ArchitectureSharp")); + +var _ArchitectureTwoTone = _interopRequireDefault(require("./ArchitectureTwoTone")); + +var _Archive = _interopRequireDefault(require("./Archive")); + +var _ArchiveOutlined = _interopRequireDefault(require("./ArchiveOutlined")); + +var _ArchiveRounded = _interopRequireDefault(require("./ArchiveRounded")); + +var _ArchiveSharp = _interopRequireDefault(require("./ArchiveSharp")); + +var _ArchiveTwoTone = _interopRequireDefault(require("./ArchiveTwoTone")); + +var _ArrowBack = _interopRequireDefault(require("./ArrowBack")); + +var _ArrowBackIos = _interopRequireDefault(require("./ArrowBackIos")); + +var _ArrowBackIosNew = _interopRequireDefault(require("./ArrowBackIosNew")); + +var _ArrowBackIosNewOutlined = _interopRequireDefault(require("./ArrowBackIosNewOutlined")); + +var _ArrowBackIosNewRounded = _interopRequireDefault(require("./ArrowBackIosNewRounded")); + +var _ArrowBackIosNewSharp = _interopRequireDefault(require("./ArrowBackIosNewSharp")); + +var _ArrowBackIosNewTwoTone = _interopRequireDefault(require("./ArrowBackIosNewTwoTone")); + +var _ArrowBackIosOutlined = _interopRequireDefault(require("./ArrowBackIosOutlined")); + +var _ArrowBackIosRounded = _interopRequireDefault(require("./ArrowBackIosRounded")); + +var _ArrowBackIosSharp = _interopRequireDefault(require("./ArrowBackIosSharp")); + +var _ArrowBackIosTwoTone = _interopRequireDefault(require("./ArrowBackIosTwoTone")); + +var _ArrowBackOutlined = _interopRequireDefault(require("./ArrowBackOutlined")); + +var _ArrowBackRounded = _interopRequireDefault(require("./ArrowBackRounded")); + +var _ArrowBackSharp = _interopRequireDefault(require("./ArrowBackSharp")); + +var _ArrowBackTwoTone = _interopRequireDefault(require("./ArrowBackTwoTone")); + +var _ArrowCircleDown = _interopRequireDefault(require("./ArrowCircleDown")); + +var _ArrowCircleDownOutlined = _interopRequireDefault(require("./ArrowCircleDownOutlined")); + +var _ArrowCircleDownRounded = _interopRequireDefault(require("./ArrowCircleDownRounded")); + +var _ArrowCircleDownSharp = _interopRequireDefault(require("./ArrowCircleDownSharp")); + +var _ArrowCircleDownTwoTone = _interopRequireDefault(require("./ArrowCircleDownTwoTone")); + +var _ArrowCircleUp = _interopRequireDefault(require("./ArrowCircleUp")); + +var _ArrowCircleUpOutlined = _interopRequireDefault(require("./ArrowCircleUpOutlined")); + +var _ArrowCircleUpRounded = _interopRequireDefault(require("./ArrowCircleUpRounded")); + +var _ArrowCircleUpSharp = _interopRequireDefault(require("./ArrowCircleUpSharp")); + +var _ArrowCircleUpTwoTone = _interopRequireDefault(require("./ArrowCircleUpTwoTone")); + +var _ArrowDownward = _interopRequireDefault(require("./ArrowDownward")); + +var _ArrowDownwardOutlined = _interopRequireDefault(require("./ArrowDownwardOutlined")); + +var _ArrowDownwardRounded = _interopRequireDefault(require("./ArrowDownwardRounded")); + +var _ArrowDownwardSharp = _interopRequireDefault(require("./ArrowDownwardSharp")); + +var _ArrowDownwardTwoTone = _interopRequireDefault(require("./ArrowDownwardTwoTone")); + +var _ArrowDropDown = _interopRequireDefault(require("./ArrowDropDown")); + +var _ArrowDropDownCircle = _interopRequireDefault(require("./ArrowDropDownCircle")); + +var _ArrowDropDownCircleOutlined = _interopRequireDefault(require("./ArrowDropDownCircleOutlined")); + +var _ArrowDropDownCircleRounded = _interopRequireDefault(require("./ArrowDropDownCircleRounded")); + +var _ArrowDropDownCircleSharp = _interopRequireDefault(require("./ArrowDropDownCircleSharp")); + +var _ArrowDropDownCircleTwoTone = _interopRequireDefault(require("./ArrowDropDownCircleTwoTone")); + +var _ArrowDropDownOutlined = _interopRequireDefault(require("./ArrowDropDownOutlined")); + +var _ArrowDropDownRounded = _interopRequireDefault(require("./ArrowDropDownRounded")); + +var _ArrowDropDownSharp = _interopRequireDefault(require("./ArrowDropDownSharp")); + +var _ArrowDropDownTwoTone = _interopRequireDefault(require("./ArrowDropDownTwoTone")); + +var _ArrowDropUp = _interopRequireDefault(require("./ArrowDropUp")); + +var _ArrowDropUpOutlined = _interopRequireDefault(require("./ArrowDropUpOutlined")); + +var _ArrowDropUpRounded = _interopRequireDefault(require("./ArrowDropUpRounded")); + +var _ArrowDropUpSharp = _interopRequireDefault(require("./ArrowDropUpSharp")); + +var _ArrowDropUpTwoTone = _interopRequireDefault(require("./ArrowDropUpTwoTone")); + +var _ArrowForward = _interopRequireDefault(require("./ArrowForward")); + +var _ArrowForwardIos = _interopRequireDefault(require("./ArrowForwardIos")); + +var _ArrowForwardIosOutlined = _interopRequireDefault(require("./ArrowForwardIosOutlined")); + +var _ArrowForwardIosRounded = _interopRequireDefault(require("./ArrowForwardIosRounded")); + +var _ArrowForwardIosSharp = _interopRequireDefault(require("./ArrowForwardIosSharp")); + +var _ArrowForwardIosTwoTone = _interopRequireDefault(require("./ArrowForwardIosTwoTone")); + +var _ArrowForwardOutlined = _interopRequireDefault(require("./ArrowForwardOutlined")); + +var _ArrowForwardRounded = _interopRequireDefault(require("./ArrowForwardRounded")); + +var _ArrowForwardSharp = _interopRequireDefault(require("./ArrowForwardSharp")); + +var _ArrowForwardTwoTone = _interopRequireDefault(require("./ArrowForwardTwoTone")); + +var _ArrowLeft = _interopRequireDefault(require("./ArrowLeft")); + +var _ArrowLeftOutlined = _interopRequireDefault(require("./ArrowLeftOutlined")); + +var _ArrowLeftRounded = _interopRequireDefault(require("./ArrowLeftRounded")); + +var _ArrowLeftSharp = _interopRequireDefault(require("./ArrowLeftSharp")); + +var _ArrowLeftTwoTone = _interopRequireDefault(require("./ArrowLeftTwoTone")); + +var _ArrowRight = _interopRequireDefault(require("./ArrowRight")); + +var _ArrowRightAlt = _interopRequireDefault(require("./ArrowRightAlt")); + +var _ArrowRightAltOutlined = _interopRequireDefault(require("./ArrowRightAltOutlined")); + +var _ArrowRightAltRounded = _interopRequireDefault(require("./ArrowRightAltRounded")); + +var _ArrowRightAltSharp = _interopRequireDefault(require("./ArrowRightAltSharp")); + +var _ArrowRightAltTwoTone = _interopRequireDefault(require("./ArrowRightAltTwoTone")); + +var _ArrowRightOutlined = _interopRequireDefault(require("./ArrowRightOutlined")); + +var _ArrowRightRounded = _interopRequireDefault(require("./ArrowRightRounded")); + +var _ArrowRightSharp = _interopRequireDefault(require("./ArrowRightSharp")); + +var _ArrowRightTwoTone = _interopRequireDefault(require("./ArrowRightTwoTone")); + +var _ArrowUpward = _interopRequireDefault(require("./ArrowUpward")); + +var _ArrowUpwardOutlined = _interopRequireDefault(require("./ArrowUpwardOutlined")); + +var _ArrowUpwardRounded = _interopRequireDefault(require("./ArrowUpwardRounded")); + +var _ArrowUpwardSharp = _interopRequireDefault(require("./ArrowUpwardSharp")); + +var _ArrowUpwardTwoTone = _interopRequireDefault(require("./ArrowUpwardTwoTone")); + +var _ArtTrack = _interopRequireDefault(require("./ArtTrack")); + +var _ArtTrackOutlined = _interopRequireDefault(require("./ArtTrackOutlined")); + +var _ArtTrackRounded = _interopRequireDefault(require("./ArtTrackRounded")); + +var _ArtTrackSharp = _interopRequireDefault(require("./ArtTrackSharp")); + +var _ArtTrackTwoTone = _interopRequireDefault(require("./ArtTrackTwoTone")); + +var _Article = _interopRequireDefault(require("./Article")); + +var _ArticleOutlined = _interopRequireDefault(require("./ArticleOutlined")); + +var _ArticleRounded = _interopRequireDefault(require("./ArticleRounded")); + +var _ArticleSharp = _interopRequireDefault(require("./ArticleSharp")); + +var _ArticleTwoTone = _interopRequireDefault(require("./ArticleTwoTone")); + +var _AspectRatio = _interopRequireDefault(require("./AspectRatio")); + +var _AspectRatioOutlined = _interopRequireDefault(require("./AspectRatioOutlined")); + +var _AspectRatioRounded = _interopRequireDefault(require("./AspectRatioRounded")); + +var _AspectRatioSharp = _interopRequireDefault(require("./AspectRatioSharp")); + +var _AspectRatioTwoTone = _interopRequireDefault(require("./AspectRatioTwoTone")); + +var _Assessment = _interopRequireDefault(require("./Assessment")); + +var _AssessmentOutlined = _interopRequireDefault(require("./AssessmentOutlined")); + +var _AssessmentRounded = _interopRequireDefault(require("./AssessmentRounded")); + +var _AssessmentSharp = _interopRequireDefault(require("./AssessmentSharp")); + +var _AssessmentTwoTone = _interopRequireDefault(require("./AssessmentTwoTone")); + +var _Assignment = _interopRequireDefault(require("./Assignment")); + +var _AssignmentInd = _interopRequireDefault(require("./AssignmentInd")); + +var _AssignmentIndOutlined = _interopRequireDefault(require("./AssignmentIndOutlined")); + +var _AssignmentIndRounded = _interopRequireDefault(require("./AssignmentIndRounded")); + +var _AssignmentIndSharp = _interopRequireDefault(require("./AssignmentIndSharp")); + +var _AssignmentIndTwoTone = _interopRequireDefault(require("./AssignmentIndTwoTone")); + +var _AssignmentLate = _interopRequireDefault(require("./AssignmentLate")); + +var _AssignmentLateOutlined = _interopRequireDefault(require("./AssignmentLateOutlined")); + +var _AssignmentLateRounded = _interopRequireDefault(require("./AssignmentLateRounded")); + +var _AssignmentLateSharp = _interopRequireDefault(require("./AssignmentLateSharp")); + +var _AssignmentLateTwoTone = _interopRequireDefault(require("./AssignmentLateTwoTone")); + +var _AssignmentOutlined = _interopRequireDefault(require("./AssignmentOutlined")); + +var _AssignmentReturn = _interopRequireDefault(require("./AssignmentReturn")); + +var _AssignmentReturnOutlined = _interopRequireDefault(require("./AssignmentReturnOutlined")); + +var _AssignmentReturnRounded = _interopRequireDefault(require("./AssignmentReturnRounded")); + +var _AssignmentReturnSharp = _interopRequireDefault(require("./AssignmentReturnSharp")); + +var _AssignmentReturnTwoTone = _interopRequireDefault(require("./AssignmentReturnTwoTone")); + +var _AssignmentReturned = _interopRequireDefault(require("./AssignmentReturned")); + +var _AssignmentReturnedOutlined = _interopRequireDefault(require("./AssignmentReturnedOutlined")); + +var _AssignmentReturnedRounded = _interopRequireDefault(require("./AssignmentReturnedRounded")); + +var _AssignmentReturnedSharp = _interopRequireDefault(require("./AssignmentReturnedSharp")); + +var _AssignmentReturnedTwoTone = _interopRequireDefault(require("./AssignmentReturnedTwoTone")); + +var _AssignmentRounded = _interopRequireDefault(require("./AssignmentRounded")); + +var _AssignmentSharp = _interopRequireDefault(require("./AssignmentSharp")); + +var _AssignmentTurnedIn = _interopRequireDefault(require("./AssignmentTurnedIn")); + +var _AssignmentTurnedInOutlined = _interopRequireDefault(require("./AssignmentTurnedInOutlined")); + +var _AssignmentTurnedInRounded = _interopRequireDefault(require("./AssignmentTurnedInRounded")); + +var _AssignmentTurnedInSharp = _interopRequireDefault(require("./AssignmentTurnedInSharp")); + +var _AssignmentTurnedInTwoTone = _interopRequireDefault(require("./AssignmentTurnedInTwoTone")); + +var _AssignmentTwoTone = _interopRequireDefault(require("./AssignmentTwoTone")); + +var _Assistant = _interopRequireDefault(require("./Assistant")); + +var _AssistantDirection = _interopRequireDefault(require("./AssistantDirection")); + +var _AssistantDirectionOutlined = _interopRequireDefault(require("./AssistantDirectionOutlined")); + +var _AssistantDirectionRounded = _interopRequireDefault(require("./AssistantDirectionRounded")); + +var _AssistantDirectionSharp = _interopRequireDefault(require("./AssistantDirectionSharp")); + +var _AssistantDirectionTwoTone = _interopRequireDefault(require("./AssistantDirectionTwoTone")); + +var _AssistantOutlined = _interopRequireDefault(require("./AssistantOutlined")); + +var _AssistantPhoto = _interopRequireDefault(require("./AssistantPhoto")); + +var _AssistantPhotoOutlined = _interopRequireDefault(require("./AssistantPhotoOutlined")); + +var _AssistantPhotoRounded = _interopRequireDefault(require("./AssistantPhotoRounded")); + +var _AssistantPhotoSharp = _interopRequireDefault(require("./AssistantPhotoSharp")); + +var _AssistantPhotoTwoTone = _interopRequireDefault(require("./AssistantPhotoTwoTone")); + +var _AssistantRounded = _interopRequireDefault(require("./AssistantRounded")); + +var _AssistantSharp = _interopRequireDefault(require("./AssistantSharp")); + +var _AssistantTwoTone = _interopRequireDefault(require("./AssistantTwoTone")); + +var _Atm = _interopRequireDefault(require("./Atm")); + +var _AtmOutlined = _interopRequireDefault(require("./AtmOutlined")); + +var _AtmRounded = _interopRequireDefault(require("./AtmRounded")); + +var _AtmSharp = _interopRequireDefault(require("./AtmSharp")); + +var _AtmTwoTone = _interopRequireDefault(require("./AtmTwoTone")); + +var _AttachEmail = _interopRequireDefault(require("./AttachEmail")); + +var _AttachEmailOutlined = _interopRequireDefault(require("./AttachEmailOutlined")); + +var _AttachEmailRounded = _interopRequireDefault(require("./AttachEmailRounded")); + +var _AttachEmailSharp = _interopRequireDefault(require("./AttachEmailSharp")); + +var _AttachEmailTwoTone = _interopRequireDefault(require("./AttachEmailTwoTone")); + +var _AttachFile = _interopRequireDefault(require("./AttachFile")); + +var _AttachFileOutlined = _interopRequireDefault(require("./AttachFileOutlined")); + +var _AttachFileRounded = _interopRequireDefault(require("./AttachFileRounded")); + +var _AttachFileSharp = _interopRequireDefault(require("./AttachFileSharp")); + +var _AttachFileTwoTone = _interopRequireDefault(require("./AttachFileTwoTone")); + +var _AttachMoney = _interopRequireDefault(require("./AttachMoney")); + +var _AttachMoneyOutlined = _interopRequireDefault(require("./AttachMoneyOutlined")); + +var _AttachMoneyRounded = _interopRequireDefault(require("./AttachMoneyRounded")); + +var _AttachMoneySharp = _interopRequireDefault(require("./AttachMoneySharp")); + +var _AttachMoneyTwoTone = _interopRequireDefault(require("./AttachMoneyTwoTone")); + +var _Attachment = _interopRequireDefault(require("./Attachment")); + +var _AttachmentOutlined = _interopRequireDefault(require("./AttachmentOutlined")); + +var _AttachmentRounded = _interopRequireDefault(require("./AttachmentRounded")); + +var _AttachmentSharp = _interopRequireDefault(require("./AttachmentSharp")); + +var _AttachmentTwoTone = _interopRequireDefault(require("./AttachmentTwoTone")); + +var _Attractions = _interopRequireDefault(require("./Attractions")); + +var _AttractionsOutlined = _interopRequireDefault(require("./AttractionsOutlined")); + +var _AttractionsRounded = _interopRequireDefault(require("./AttractionsRounded")); + +var _AttractionsSharp = _interopRequireDefault(require("./AttractionsSharp")); + +var _AttractionsTwoTone = _interopRequireDefault(require("./AttractionsTwoTone")); + +var _Attribution = _interopRequireDefault(require("./Attribution")); + +var _AttributionOutlined = _interopRequireDefault(require("./AttributionOutlined")); + +var _AttributionRounded = _interopRequireDefault(require("./AttributionRounded")); + +var _AttributionSharp = _interopRequireDefault(require("./AttributionSharp")); + +var _AttributionTwoTone = _interopRequireDefault(require("./AttributionTwoTone")); + +var _Audiotrack = _interopRequireDefault(require("./Audiotrack")); + +var _AudiotrackOutlined = _interopRequireDefault(require("./AudiotrackOutlined")); + +var _AudiotrackRounded = _interopRequireDefault(require("./AudiotrackRounded")); + +var _AudiotrackSharp = _interopRequireDefault(require("./AudiotrackSharp")); + +var _AudiotrackTwoTone = _interopRequireDefault(require("./AudiotrackTwoTone")); + +var _AutoAwesome = _interopRequireDefault(require("./AutoAwesome")); + +var _AutoAwesomeMosaic = _interopRequireDefault(require("./AutoAwesomeMosaic")); + +var _AutoAwesomeMosaicOutlined = _interopRequireDefault(require("./AutoAwesomeMosaicOutlined")); + +var _AutoAwesomeMosaicRounded = _interopRequireDefault(require("./AutoAwesomeMosaicRounded")); + +var _AutoAwesomeMosaicSharp = _interopRequireDefault(require("./AutoAwesomeMosaicSharp")); + +var _AutoAwesomeMosaicTwoTone = _interopRequireDefault(require("./AutoAwesomeMosaicTwoTone")); + +var _AutoAwesomeMotion = _interopRequireDefault(require("./AutoAwesomeMotion")); + +var _AutoAwesomeMotionOutlined = _interopRequireDefault(require("./AutoAwesomeMotionOutlined")); + +var _AutoAwesomeMotionRounded = _interopRequireDefault(require("./AutoAwesomeMotionRounded")); + +var _AutoAwesomeMotionSharp = _interopRequireDefault(require("./AutoAwesomeMotionSharp")); + +var _AutoAwesomeMotionTwoTone = _interopRequireDefault(require("./AutoAwesomeMotionTwoTone")); + +var _AutoAwesomeOutlined = _interopRequireDefault(require("./AutoAwesomeOutlined")); + +var _AutoAwesomeRounded = _interopRequireDefault(require("./AutoAwesomeRounded")); + +var _AutoAwesomeSharp = _interopRequireDefault(require("./AutoAwesomeSharp")); + +var _AutoAwesomeTwoTone = _interopRequireDefault(require("./AutoAwesomeTwoTone")); + +var _AutoDelete = _interopRequireDefault(require("./AutoDelete")); + +var _AutoDeleteOutlined = _interopRequireDefault(require("./AutoDeleteOutlined")); + +var _AutoDeleteRounded = _interopRequireDefault(require("./AutoDeleteRounded")); + +var _AutoDeleteSharp = _interopRequireDefault(require("./AutoDeleteSharp")); + +var _AutoDeleteTwoTone = _interopRequireDefault(require("./AutoDeleteTwoTone")); + +var _AutoFixHigh = _interopRequireDefault(require("./AutoFixHigh")); + +var _AutoFixHighOutlined = _interopRequireDefault(require("./AutoFixHighOutlined")); + +var _AutoFixHighRounded = _interopRequireDefault(require("./AutoFixHighRounded")); + +var _AutoFixHighSharp = _interopRequireDefault(require("./AutoFixHighSharp")); + +var _AutoFixHighTwoTone = _interopRequireDefault(require("./AutoFixHighTwoTone")); + +var _AutoFixNormal = _interopRequireDefault(require("./AutoFixNormal")); + +var _AutoFixNormalOutlined = _interopRequireDefault(require("./AutoFixNormalOutlined")); + +var _AutoFixNormalRounded = _interopRequireDefault(require("./AutoFixNormalRounded")); + +var _AutoFixNormalSharp = _interopRequireDefault(require("./AutoFixNormalSharp")); + +var _AutoFixNormalTwoTone = _interopRequireDefault(require("./AutoFixNormalTwoTone")); + +var _AutoFixOff = _interopRequireDefault(require("./AutoFixOff")); + +var _AutoFixOffOutlined = _interopRequireDefault(require("./AutoFixOffOutlined")); + +var _AutoFixOffRounded = _interopRequireDefault(require("./AutoFixOffRounded")); + +var _AutoFixOffSharp = _interopRequireDefault(require("./AutoFixOffSharp")); + +var _AutoFixOffTwoTone = _interopRequireDefault(require("./AutoFixOffTwoTone")); + +var _AutoGraph = _interopRequireDefault(require("./AutoGraph")); + +var _AutoGraphOutlined = _interopRequireDefault(require("./AutoGraphOutlined")); + +var _AutoGraphRounded = _interopRequireDefault(require("./AutoGraphRounded")); + +var _AutoGraphSharp = _interopRequireDefault(require("./AutoGraphSharp")); + +var _AutoGraphTwoTone = _interopRequireDefault(require("./AutoGraphTwoTone")); + +var _AutoStories = _interopRequireDefault(require("./AutoStories")); + +var _AutoStoriesOutlined = _interopRequireDefault(require("./AutoStoriesOutlined")); + +var _AutoStoriesRounded = _interopRequireDefault(require("./AutoStoriesRounded")); + +var _AutoStoriesSharp = _interopRequireDefault(require("./AutoStoriesSharp")); + +var _AutoStoriesTwoTone = _interopRequireDefault(require("./AutoStoriesTwoTone")); + +var _AutofpsSelect = _interopRequireDefault(require("./AutofpsSelect")); + +var _AutofpsSelectOutlined = _interopRequireDefault(require("./AutofpsSelectOutlined")); + +var _AutofpsSelectRounded = _interopRequireDefault(require("./AutofpsSelectRounded")); + +var _AutofpsSelectSharp = _interopRequireDefault(require("./AutofpsSelectSharp")); + +var _AutofpsSelectTwoTone = _interopRequireDefault(require("./AutofpsSelectTwoTone")); + +var _Autorenew = _interopRequireDefault(require("./Autorenew")); + +var _AutorenewOutlined = _interopRequireDefault(require("./AutorenewOutlined")); + +var _AutorenewRounded = _interopRequireDefault(require("./AutorenewRounded")); + +var _AutorenewSharp = _interopRequireDefault(require("./AutorenewSharp")); + +var _AutorenewTwoTone = _interopRequireDefault(require("./AutorenewTwoTone")); + +var _AvTimer = _interopRequireDefault(require("./AvTimer")); + +var _AvTimerOutlined = _interopRequireDefault(require("./AvTimerOutlined")); + +var _AvTimerRounded = _interopRequireDefault(require("./AvTimerRounded")); + +var _AvTimerSharp = _interopRequireDefault(require("./AvTimerSharp")); + +var _AvTimerTwoTone = _interopRequireDefault(require("./AvTimerTwoTone")); + +var _BabyChangingStation = _interopRequireDefault(require("./BabyChangingStation")); + +var _BabyChangingStationOutlined = _interopRequireDefault(require("./BabyChangingStationOutlined")); + +var _BabyChangingStationRounded = _interopRequireDefault(require("./BabyChangingStationRounded")); + +var _BabyChangingStationSharp = _interopRequireDefault(require("./BabyChangingStationSharp")); + +var _BabyChangingStationTwoTone = _interopRequireDefault(require("./BabyChangingStationTwoTone")); + +var _Backpack = _interopRequireDefault(require("./Backpack")); + +var _BackpackOutlined = _interopRequireDefault(require("./BackpackOutlined")); + +var _BackpackRounded = _interopRequireDefault(require("./BackpackRounded")); + +var _BackpackSharp = _interopRequireDefault(require("./BackpackSharp")); + +var _BackpackTwoTone = _interopRequireDefault(require("./BackpackTwoTone")); + +var _Backspace = _interopRequireDefault(require("./Backspace")); + +var _BackspaceOutlined = _interopRequireDefault(require("./BackspaceOutlined")); + +var _BackspaceRounded = _interopRequireDefault(require("./BackspaceRounded")); + +var _BackspaceSharp = _interopRequireDefault(require("./BackspaceSharp")); + +var _BackspaceTwoTone = _interopRequireDefault(require("./BackspaceTwoTone")); + +var _Backup = _interopRequireDefault(require("./Backup")); + +var _BackupOutlined = _interopRequireDefault(require("./BackupOutlined")); + +var _BackupRounded = _interopRequireDefault(require("./BackupRounded")); + +var _BackupSharp = _interopRequireDefault(require("./BackupSharp")); + +var _BackupTable = _interopRequireDefault(require("./BackupTable")); + +var _BackupTableOutlined = _interopRequireDefault(require("./BackupTableOutlined")); + +var _BackupTableRounded = _interopRequireDefault(require("./BackupTableRounded")); + +var _BackupTableSharp = _interopRequireDefault(require("./BackupTableSharp")); + +var _BackupTableTwoTone = _interopRequireDefault(require("./BackupTableTwoTone")); + +var _BackupTwoTone = _interopRequireDefault(require("./BackupTwoTone")); + +var _Badge = _interopRequireDefault(require("./Badge")); + +var _BadgeOutlined = _interopRequireDefault(require("./BadgeOutlined")); + +var _BadgeRounded = _interopRequireDefault(require("./BadgeRounded")); + +var _BadgeSharp = _interopRequireDefault(require("./BadgeSharp")); + +var _BadgeTwoTone = _interopRequireDefault(require("./BadgeTwoTone")); + +var _BakeryDining = _interopRequireDefault(require("./BakeryDining")); + +var _BakeryDiningOutlined = _interopRequireDefault(require("./BakeryDiningOutlined")); + +var _BakeryDiningRounded = _interopRequireDefault(require("./BakeryDiningRounded")); + +var _BakeryDiningSharp = _interopRequireDefault(require("./BakeryDiningSharp")); + +var _BakeryDiningTwoTone = _interopRequireDefault(require("./BakeryDiningTwoTone")); + +var _Balcony = _interopRequireDefault(require("./Balcony")); + +var _BalconyOutlined = _interopRequireDefault(require("./BalconyOutlined")); + +var _BalconyRounded = _interopRequireDefault(require("./BalconyRounded")); + +var _BalconySharp = _interopRequireDefault(require("./BalconySharp")); + +var _BalconyTwoTone = _interopRequireDefault(require("./BalconyTwoTone")); + +var _Ballot = _interopRequireDefault(require("./Ballot")); + +var _BallotOutlined = _interopRequireDefault(require("./BallotOutlined")); + +var _BallotRounded = _interopRequireDefault(require("./BallotRounded")); + +var _BallotSharp = _interopRequireDefault(require("./BallotSharp")); + +var _BallotTwoTone = _interopRequireDefault(require("./BallotTwoTone")); + +var _BarChart = _interopRequireDefault(require("./BarChart")); + +var _BarChartOutlined = _interopRequireDefault(require("./BarChartOutlined")); + +var _BarChartRounded = _interopRequireDefault(require("./BarChartRounded")); + +var _BarChartSharp = _interopRequireDefault(require("./BarChartSharp")); + +var _BarChartTwoTone = _interopRequireDefault(require("./BarChartTwoTone")); + +var _BatchPrediction = _interopRequireDefault(require("./BatchPrediction")); + +var _BatchPredictionOutlined = _interopRequireDefault(require("./BatchPredictionOutlined")); + +var _BatchPredictionRounded = _interopRequireDefault(require("./BatchPredictionRounded")); + +var _BatchPredictionSharp = _interopRequireDefault(require("./BatchPredictionSharp")); + +var _BatchPredictionTwoTone = _interopRequireDefault(require("./BatchPredictionTwoTone")); + +var _Bathroom = _interopRequireDefault(require("./Bathroom")); + +var _BathroomOutlined = _interopRequireDefault(require("./BathroomOutlined")); + +var _BathroomRounded = _interopRequireDefault(require("./BathroomRounded")); + +var _BathroomSharp = _interopRequireDefault(require("./BathroomSharp")); + +var _BathroomTwoTone = _interopRequireDefault(require("./BathroomTwoTone")); + +var _Bathtub = _interopRequireDefault(require("./Bathtub")); + +var _BathtubOutlined = _interopRequireDefault(require("./BathtubOutlined")); + +var _BathtubRounded = _interopRequireDefault(require("./BathtubRounded")); + +var _BathtubSharp = _interopRequireDefault(require("./BathtubSharp")); + +var _BathtubTwoTone = _interopRequireDefault(require("./BathtubTwoTone")); + +var _Battery = _interopRequireDefault(require("./Battery20")); + +var _Battery20Outlined = _interopRequireDefault(require("./Battery20Outlined")); + +var _Battery20Rounded = _interopRequireDefault(require("./Battery20Rounded")); + +var _Battery20Sharp = _interopRequireDefault(require("./Battery20Sharp")); + +var _Battery20TwoTone = _interopRequireDefault(require("./Battery20TwoTone")); + +var _Battery2 = _interopRequireDefault(require("./Battery30")); + +var _Battery30Outlined = _interopRequireDefault(require("./Battery30Outlined")); + +var _Battery30Rounded = _interopRequireDefault(require("./Battery30Rounded")); + +var _Battery30Sharp = _interopRequireDefault(require("./Battery30Sharp")); + +var _Battery30TwoTone = _interopRequireDefault(require("./Battery30TwoTone")); + +var _Battery3 = _interopRequireDefault(require("./Battery50")); + +var _Battery50Outlined = _interopRequireDefault(require("./Battery50Outlined")); + +var _Battery50Rounded = _interopRequireDefault(require("./Battery50Rounded")); + +var _Battery50Sharp = _interopRequireDefault(require("./Battery50Sharp")); + +var _Battery50TwoTone = _interopRequireDefault(require("./Battery50TwoTone")); + +var _Battery4 = _interopRequireDefault(require("./Battery60")); + +var _Battery60Outlined = _interopRequireDefault(require("./Battery60Outlined")); + +var _Battery60Rounded = _interopRequireDefault(require("./Battery60Rounded")); + +var _Battery60Sharp = _interopRequireDefault(require("./Battery60Sharp")); + +var _Battery60TwoTone = _interopRequireDefault(require("./Battery60TwoTone")); + +var _Battery5 = _interopRequireDefault(require("./Battery80")); + +var _Battery80Outlined = _interopRequireDefault(require("./Battery80Outlined")); + +var _Battery80Rounded = _interopRequireDefault(require("./Battery80Rounded")); + +var _Battery80Sharp = _interopRequireDefault(require("./Battery80Sharp")); + +var _Battery80TwoTone = _interopRequireDefault(require("./Battery80TwoTone")); + +var _Battery6 = _interopRequireDefault(require("./Battery90")); + +var _Battery90Outlined = _interopRequireDefault(require("./Battery90Outlined")); + +var _Battery90Rounded = _interopRequireDefault(require("./Battery90Rounded")); + +var _Battery90Sharp = _interopRequireDefault(require("./Battery90Sharp")); + +var _Battery90TwoTone = _interopRequireDefault(require("./Battery90TwoTone")); + +var _BatteryAlert = _interopRequireDefault(require("./BatteryAlert")); + +var _BatteryAlertOutlined = _interopRequireDefault(require("./BatteryAlertOutlined")); + +var _BatteryAlertRounded = _interopRequireDefault(require("./BatteryAlertRounded")); + +var _BatteryAlertSharp = _interopRequireDefault(require("./BatteryAlertSharp")); + +var _BatteryAlertTwoTone = _interopRequireDefault(require("./BatteryAlertTwoTone")); + +var _BatteryCharging = _interopRequireDefault(require("./BatteryCharging20")); + +var _BatteryCharging20Outlined = _interopRequireDefault(require("./BatteryCharging20Outlined")); + +var _BatteryCharging20Rounded = _interopRequireDefault(require("./BatteryCharging20Rounded")); + +var _BatteryCharging20Sharp = _interopRequireDefault(require("./BatteryCharging20Sharp")); + +var _BatteryCharging20TwoTone = _interopRequireDefault(require("./BatteryCharging20TwoTone")); + +var _BatteryCharging2 = _interopRequireDefault(require("./BatteryCharging30")); + +var _BatteryCharging30Outlined = _interopRequireDefault(require("./BatteryCharging30Outlined")); + +var _BatteryCharging30Rounded = _interopRequireDefault(require("./BatteryCharging30Rounded")); + +var _BatteryCharging30Sharp = _interopRequireDefault(require("./BatteryCharging30Sharp")); + +var _BatteryCharging30TwoTone = _interopRequireDefault(require("./BatteryCharging30TwoTone")); + +var _BatteryCharging3 = _interopRequireDefault(require("./BatteryCharging50")); + +var _BatteryCharging50Outlined = _interopRequireDefault(require("./BatteryCharging50Outlined")); + +var _BatteryCharging50Rounded = _interopRequireDefault(require("./BatteryCharging50Rounded")); + +var _BatteryCharging50Sharp = _interopRequireDefault(require("./BatteryCharging50Sharp")); + +var _BatteryCharging50TwoTone = _interopRequireDefault(require("./BatteryCharging50TwoTone")); + +var _BatteryCharging4 = _interopRequireDefault(require("./BatteryCharging60")); + +var _BatteryCharging60Outlined = _interopRequireDefault(require("./BatteryCharging60Outlined")); + +var _BatteryCharging60Rounded = _interopRequireDefault(require("./BatteryCharging60Rounded")); + +var _BatteryCharging60Sharp = _interopRequireDefault(require("./BatteryCharging60Sharp")); + +var _BatteryCharging60TwoTone = _interopRequireDefault(require("./BatteryCharging60TwoTone")); + +var _BatteryCharging5 = _interopRequireDefault(require("./BatteryCharging80")); + +var _BatteryCharging80Outlined = _interopRequireDefault(require("./BatteryCharging80Outlined")); + +var _BatteryCharging80Rounded = _interopRequireDefault(require("./BatteryCharging80Rounded")); + +var _BatteryCharging80Sharp = _interopRequireDefault(require("./BatteryCharging80Sharp")); + +var _BatteryCharging80TwoTone = _interopRequireDefault(require("./BatteryCharging80TwoTone")); + +var _BatteryCharging6 = _interopRequireDefault(require("./BatteryCharging90")); + +var _BatteryCharging90Outlined = _interopRequireDefault(require("./BatteryCharging90Outlined")); + +var _BatteryCharging90Rounded = _interopRequireDefault(require("./BatteryCharging90Rounded")); + +var _BatteryCharging90Sharp = _interopRequireDefault(require("./BatteryCharging90Sharp")); + +var _BatteryCharging90TwoTone = _interopRequireDefault(require("./BatteryCharging90TwoTone")); + +var _BatteryChargingFull = _interopRequireDefault(require("./BatteryChargingFull")); + +var _BatteryChargingFullOutlined = _interopRequireDefault(require("./BatteryChargingFullOutlined")); + +var _BatteryChargingFullRounded = _interopRequireDefault(require("./BatteryChargingFullRounded")); + +var _BatteryChargingFullSharp = _interopRequireDefault(require("./BatteryChargingFullSharp")); + +var _BatteryChargingFullTwoTone = _interopRequireDefault(require("./BatteryChargingFullTwoTone")); + +var _BatteryFull = _interopRequireDefault(require("./BatteryFull")); + +var _BatteryFullOutlined = _interopRequireDefault(require("./BatteryFullOutlined")); + +var _BatteryFullRounded = _interopRequireDefault(require("./BatteryFullRounded")); + +var _BatteryFullSharp = _interopRequireDefault(require("./BatteryFullSharp")); + +var _BatteryFullTwoTone = _interopRequireDefault(require("./BatteryFullTwoTone")); + +var _BatterySaver = _interopRequireDefault(require("./BatterySaver")); + +var _BatterySaverOutlined = _interopRequireDefault(require("./BatterySaverOutlined")); + +var _BatterySaverRounded = _interopRequireDefault(require("./BatterySaverRounded")); + +var _BatterySaverSharp = _interopRequireDefault(require("./BatterySaverSharp")); + +var _BatterySaverTwoTone = _interopRequireDefault(require("./BatterySaverTwoTone")); + +var _BatteryStd = _interopRequireDefault(require("./BatteryStd")); + +var _BatteryStdOutlined = _interopRequireDefault(require("./BatteryStdOutlined")); + +var _BatteryStdRounded = _interopRequireDefault(require("./BatteryStdRounded")); + +var _BatteryStdSharp = _interopRequireDefault(require("./BatteryStdSharp")); + +var _BatteryStdTwoTone = _interopRequireDefault(require("./BatteryStdTwoTone")); + +var _BatteryUnknown = _interopRequireDefault(require("./BatteryUnknown")); + +var _BatteryUnknownOutlined = _interopRequireDefault(require("./BatteryUnknownOutlined")); + +var _BatteryUnknownRounded = _interopRequireDefault(require("./BatteryUnknownRounded")); + +var _BatteryUnknownSharp = _interopRequireDefault(require("./BatteryUnknownSharp")); + +var _BatteryUnknownTwoTone = _interopRequireDefault(require("./BatteryUnknownTwoTone")); + +var _BeachAccess = _interopRequireDefault(require("./BeachAccess")); + +var _BeachAccessOutlined = _interopRequireDefault(require("./BeachAccessOutlined")); + +var _BeachAccessRounded = _interopRequireDefault(require("./BeachAccessRounded")); + +var _BeachAccessSharp = _interopRequireDefault(require("./BeachAccessSharp")); + +var _BeachAccessTwoTone = _interopRequireDefault(require("./BeachAccessTwoTone")); + +var _Bed = _interopRequireDefault(require("./Bed")); + +var _BedOutlined = _interopRequireDefault(require("./BedOutlined")); + +var _BedRounded = _interopRequireDefault(require("./BedRounded")); + +var _BedSharp = _interopRequireDefault(require("./BedSharp")); + +var _BedTwoTone = _interopRequireDefault(require("./BedTwoTone")); + +var _BedroomBaby = _interopRequireDefault(require("./BedroomBaby")); + +var _BedroomBabyOutlined = _interopRequireDefault(require("./BedroomBabyOutlined")); + +var _BedroomBabyRounded = _interopRequireDefault(require("./BedroomBabyRounded")); + +var _BedroomBabySharp = _interopRequireDefault(require("./BedroomBabySharp")); + +var _BedroomBabyTwoTone = _interopRequireDefault(require("./BedroomBabyTwoTone")); + +var _BedroomChild = _interopRequireDefault(require("./BedroomChild")); + +var _BedroomChildOutlined = _interopRequireDefault(require("./BedroomChildOutlined")); + +var _BedroomChildRounded = _interopRequireDefault(require("./BedroomChildRounded")); + +var _BedroomChildSharp = _interopRequireDefault(require("./BedroomChildSharp")); + +var _BedroomChildTwoTone = _interopRequireDefault(require("./BedroomChildTwoTone")); + +var _BedroomParent = _interopRequireDefault(require("./BedroomParent")); + +var _BedroomParentOutlined = _interopRequireDefault(require("./BedroomParentOutlined")); + +var _BedroomParentRounded = _interopRequireDefault(require("./BedroomParentRounded")); + +var _BedroomParentSharp = _interopRequireDefault(require("./BedroomParentSharp")); + +var _BedroomParentTwoTone = _interopRequireDefault(require("./BedroomParentTwoTone")); + +var _Bedtime = _interopRequireDefault(require("./Bedtime")); + +var _BedtimeOutlined = _interopRequireDefault(require("./BedtimeOutlined")); + +var _BedtimeRounded = _interopRequireDefault(require("./BedtimeRounded")); + +var _BedtimeSharp = _interopRequireDefault(require("./BedtimeSharp")); + +var _BedtimeTwoTone = _interopRequireDefault(require("./BedtimeTwoTone")); + +var _Beenhere = _interopRequireDefault(require("./Beenhere")); + +var _BeenhereOutlined = _interopRequireDefault(require("./BeenhereOutlined")); + +var _BeenhereRounded = _interopRequireDefault(require("./BeenhereRounded")); + +var _BeenhereSharp = _interopRequireDefault(require("./BeenhereSharp")); + +var _BeenhereTwoTone = _interopRequireDefault(require("./BeenhereTwoTone")); + +var _Bento = _interopRequireDefault(require("./Bento")); + +var _BentoOutlined = _interopRequireDefault(require("./BentoOutlined")); + +var _BentoRounded = _interopRequireDefault(require("./BentoRounded")); + +var _BentoSharp = _interopRequireDefault(require("./BentoSharp")); + +var _BentoTwoTone = _interopRequireDefault(require("./BentoTwoTone")); + +var _BikeScooter = _interopRequireDefault(require("./BikeScooter")); + +var _BikeScooterOutlined = _interopRequireDefault(require("./BikeScooterOutlined")); + +var _BikeScooterRounded = _interopRequireDefault(require("./BikeScooterRounded")); + +var _BikeScooterSharp = _interopRequireDefault(require("./BikeScooterSharp")); + +var _BikeScooterTwoTone = _interopRequireDefault(require("./BikeScooterTwoTone")); + +var _Biotech = _interopRequireDefault(require("./Biotech")); + +var _BiotechOutlined = _interopRequireDefault(require("./BiotechOutlined")); + +var _BiotechRounded = _interopRequireDefault(require("./BiotechRounded")); + +var _BiotechSharp = _interopRequireDefault(require("./BiotechSharp")); + +var _BiotechTwoTone = _interopRequireDefault(require("./BiotechTwoTone")); + +var _Blender = _interopRequireDefault(require("./Blender")); + +var _BlenderOutlined = _interopRequireDefault(require("./BlenderOutlined")); + +var _BlenderRounded = _interopRequireDefault(require("./BlenderRounded")); + +var _BlenderSharp = _interopRequireDefault(require("./BlenderSharp")); + +var _BlenderTwoTone = _interopRequireDefault(require("./BlenderTwoTone")); + +var _Block = _interopRequireDefault(require("./Block")); + +var _BlockOutlined = _interopRequireDefault(require("./BlockOutlined")); + +var _BlockRounded = _interopRequireDefault(require("./BlockRounded")); + +var _BlockSharp = _interopRequireDefault(require("./BlockSharp")); + +var _BlockTwoTone = _interopRequireDefault(require("./BlockTwoTone")); + +var _Bloodtype = _interopRequireDefault(require("./Bloodtype")); + +var _BloodtypeOutlined = _interopRequireDefault(require("./BloodtypeOutlined")); + +var _BloodtypeRounded = _interopRequireDefault(require("./BloodtypeRounded")); + +var _BloodtypeSharp = _interopRequireDefault(require("./BloodtypeSharp")); + +var _BloodtypeTwoTone = _interopRequireDefault(require("./BloodtypeTwoTone")); + +var _Bluetooth = _interopRequireDefault(require("./Bluetooth")); + +var _BluetoothAudio = _interopRequireDefault(require("./BluetoothAudio")); + +var _BluetoothAudioOutlined = _interopRequireDefault(require("./BluetoothAudioOutlined")); + +var _BluetoothAudioRounded = _interopRequireDefault(require("./BluetoothAudioRounded")); + +var _BluetoothAudioSharp = _interopRequireDefault(require("./BluetoothAudioSharp")); + +var _BluetoothAudioTwoTone = _interopRequireDefault(require("./BluetoothAudioTwoTone")); + +var _BluetoothConnected = _interopRequireDefault(require("./BluetoothConnected")); + +var _BluetoothConnectedOutlined = _interopRequireDefault(require("./BluetoothConnectedOutlined")); + +var _BluetoothConnectedRounded = _interopRequireDefault(require("./BluetoothConnectedRounded")); + +var _BluetoothConnectedSharp = _interopRequireDefault(require("./BluetoothConnectedSharp")); + +var _BluetoothConnectedTwoTone = _interopRequireDefault(require("./BluetoothConnectedTwoTone")); + +var _BluetoothDisabled = _interopRequireDefault(require("./BluetoothDisabled")); + +var _BluetoothDisabledOutlined = _interopRequireDefault(require("./BluetoothDisabledOutlined")); + +var _BluetoothDisabledRounded = _interopRequireDefault(require("./BluetoothDisabledRounded")); + +var _BluetoothDisabledSharp = _interopRequireDefault(require("./BluetoothDisabledSharp")); + +var _BluetoothDisabledTwoTone = _interopRequireDefault(require("./BluetoothDisabledTwoTone")); + +var _BluetoothDrive = _interopRequireDefault(require("./BluetoothDrive")); + +var _BluetoothDriveOutlined = _interopRequireDefault(require("./BluetoothDriveOutlined")); + +var _BluetoothDriveRounded = _interopRequireDefault(require("./BluetoothDriveRounded")); + +var _BluetoothDriveSharp = _interopRequireDefault(require("./BluetoothDriveSharp")); + +var _BluetoothDriveTwoTone = _interopRequireDefault(require("./BluetoothDriveTwoTone")); + +var _BluetoothOutlined = _interopRequireDefault(require("./BluetoothOutlined")); + +var _BluetoothRounded = _interopRequireDefault(require("./BluetoothRounded")); + +var _BluetoothSearching = _interopRequireDefault(require("./BluetoothSearching")); + +var _BluetoothSearchingOutlined = _interopRequireDefault(require("./BluetoothSearchingOutlined")); + +var _BluetoothSearchingRounded = _interopRequireDefault(require("./BluetoothSearchingRounded")); + +var _BluetoothSearchingSharp = _interopRequireDefault(require("./BluetoothSearchingSharp")); + +var _BluetoothSearchingTwoTone = _interopRequireDefault(require("./BluetoothSearchingTwoTone")); + +var _BluetoothSharp = _interopRequireDefault(require("./BluetoothSharp")); + +var _BluetoothTwoTone = _interopRequireDefault(require("./BluetoothTwoTone")); + +var _BlurCircular = _interopRequireDefault(require("./BlurCircular")); + +var _BlurCircularOutlined = _interopRequireDefault(require("./BlurCircularOutlined")); + +var _BlurCircularRounded = _interopRequireDefault(require("./BlurCircularRounded")); + +var _BlurCircularSharp = _interopRequireDefault(require("./BlurCircularSharp")); + +var _BlurCircularTwoTone = _interopRequireDefault(require("./BlurCircularTwoTone")); + +var _BlurLinear = _interopRequireDefault(require("./BlurLinear")); + +var _BlurLinearOutlined = _interopRequireDefault(require("./BlurLinearOutlined")); + +var _BlurLinearRounded = _interopRequireDefault(require("./BlurLinearRounded")); + +var _BlurLinearSharp = _interopRequireDefault(require("./BlurLinearSharp")); + +var _BlurLinearTwoTone = _interopRequireDefault(require("./BlurLinearTwoTone")); + +var _BlurOff = _interopRequireDefault(require("./BlurOff")); + +var _BlurOffOutlined = _interopRequireDefault(require("./BlurOffOutlined")); + +var _BlurOffRounded = _interopRequireDefault(require("./BlurOffRounded")); + +var _BlurOffSharp = _interopRequireDefault(require("./BlurOffSharp")); + +var _BlurOffTwoTone = _interopRequireDefault(require("./BlurOffTwoTone")); + +var _BlurOn = _interopRequireDefault(require("./BlurOn")); + +var _BlurOnOutlined = _interopRequireDefault(require("./BlurOnOutlined")); + +var _BlurOnRounded = _interopRequireDefault(require("./BlurOnRounded")); + +var _BlurOnSharp = _interopRequireDefault(require("./BlurOnSharp")); + +var _BlurOnTwoTone = _interopRequireDefault(require("./BlurOnTwoTone")); + +var _Bolt = _interopRequireDefault(require("./Bolt")); + +var _BoltOutlined = _interopRequireDefault(require("./BoltOutlined")); + +var _BoltRounded = _interopRequireDefault(require("./BoltRounded")); + +var _BoltSharp = _interopRequireDefault(require("./BoltSharp")); + +var _BoltTwoTone = _interopRequireDefault(require("./BoltTwoTone")); + +var _Book = _interopRequireDefault(require("./Book")); + +var _BookOnline = _interopRequireDefault(require("./BookOnline")); + +var _BookOnlineOutlined = _interopRequireDefault(require("./BookOnlineOutlined")); + +var _BookOnlineRounded = _interopRequireDefault(require("./BookOnlineRounded")); + +var _BookOnlineSharp = _interopRequireDefault(require("./BookOnlineSharp")); + +var _BookOnlineTwoTone = _interopRequireDefault(require("./BookOnlineTwoTone")); + +var _BookOutlined = _interopRequireDefault(require("./BookOutlined")); + +var _BookRounded = _interopRequireDefault(require("./BookRounded")); + +var _BookSharp = _interopRequireDefault(require("./BookSharp")); + +var _BookTwoTone = _interopRequireDefault(require("./BookTwoTone")); + +var _Bookmark = _interopRequireDefault(require("./Bookmark")); + +var _BookmarkAdd = _interopRequireDefault(require("./BookmarkAdd")); + +var _BookmarkAddOutlined = _interopRequireDefault(require("./BookmarkAddOutlined")); + +var _BookmarkAddRounded = _interopRequireDefault(require("./BookmarkAddRounded")); + +var _BookmarkAddSharp = _interopRequireDefault(require("./BookmarkAddSharp")); + +var _BookmarkAddTwoTone = _interopRequireDefault(require("./BookmarkAddTwoTone")); + +var _BookmarkAdded = _interopRequireDefault(require("./BookmarkAdded")); + +var _BookmarkAddedOutlined = _interopRequireDefault(require("./BookmarkAddedOutlined")); + +var _BookmarkAddedRounded = _interopRequireDefault(require("./BookmarkAddedRounded")); + +var _BookmarkAddedSharp = _interopRequireDefault(require("./BookmarkAddedSharp")); + +var _BookmarkAddedTwoTone = _interopRequireDefault(require("./BookmarkAddedTwoTone")); + +var _BookmarkBorder = _interopRequireDefault(require("./BookmarkBorder")); + +var _BookmarkBorderOutlined = _interopRequireDefault(require("./BookmarkBorderOutlined")); + +var _BookmarkBorderRounded = _interopRequireDefault(require("./BookmarkBorderRounded")); + +var _BookmarkBorderSharp = _interopRequireDefault(require("./BookmarkBorderSharp")); + +var _BookmarkBorderTwoTone = _interopRequireDefault(require("./BookmarkBorderTwoTone")); + +var _BookmarkOutlined = _interopRequireDefault(require("./BookmarkOutlined")); + +var _BookmarkRemove = _interopRequireDefault(require("./BookmarkRemove")); + +var _BookmarkRemoveOutlined = _interopRequireDefault(require("./BookmarkRemoveOutlined")); + +var _BookmarkRemoveRounded = _interopRequireDefault(require("./BookmarkRemoveRounded")); + +var _BookmarkRemoveSharp = _interopRequireDefault(require("./BookmarkRemoveSharp")); + +var _BookmarkRemoveTwoTone = _interopRequireDefault(require("./BookmarkRemoveTwoTone")); + +var _BookmarkRounded = _interopRequireDefault(require("./BookmarkRounded")); + +var _BookmarkSharp = _interopRequireDefault(require("./BookmarkSharp")); + +var _BookmarkTwoTone = _interopRequireDefault(require("./BookmarkTwoTone")); + +var _Bookmarks = _interopRequireDefault(require("./Bookmarks")); + +var _BookmarksOutlined = _interopRequireDefault(require("./BookmarksOutlined")); + +var _BookmarksRounded = _interopRequireDefault(require("./BookmarksRounded")); + +var _BookmarksSharp = _interopRequireDefault(require("./BookmarksSharp")); + +var _BookmarksTwoTone = _interopRequireDefault(require("./BookmarksTwoTone")); + +var _BorderAll = _interopRequireDefault(require("./BorderAll")); + +var _BorderAllOutlined = _interopRequireDefault(require("./BorderAllOutlined")); + +var _BorderAllRounded = _interopRequireDefault(require("./BorderAllRounded")); + +var _BorderAllSharp = _interopRequireDefault(require("./BorderAllSharp")); + +var _BorderAllTwoTone = _interopRequireDefault(require("./BorderAllTwoTone")); + +var _BorderBottom = _interopRequireDefault(require("./BorderBottom")); + +var _BorderBottomOutlined = _interopRequireDefault(require("./BorderBottomOutlined")); + +var _BorderBottomRounded = _interopRequireDefault(require("./BorderBottomRounded")); + +var _BorderBottomSharp = _interopRequireDefault(require("./BorderBottomSharp")); + +var _BorderBottomTwoTone = _interopRequireDefault(require("./BorderBottomTwoTone")); + +var _BorderClear = _interopRequireDefault(require("./BorderClear")); + +var _BorderClearOutlined = _interopRequireDefault(require("./BorderClearOutlined")); + +var _BorderClearRounded = _interopRequireDefault(require("./BorderClearRounded")); + +var _BorderClearSharp = _interopRequireDefault(require("./BorderClearSharp")); + +var _BorderClearTwoTone = _interopRequireDefault(require("./BorderClearTwoTone")); + +var _BorderColor = _interopRequireDefault(require("./BorderColor")); + +var _BorderColorOutlined = _interopRequireDefault(require("./BorderColorOutlined")); + +var _BorderColorRounded = _interopRequireDefault(require("./BorderColorRounded")); + +var _BorderColorSharp = _interopRequireDefault(require("./BorderColorSharp")); + +var _BorderColorTwoTone = _interopRequireDefault(require("./BorderColorTwoTone")); + +var _BorderHorizontal = _interopRequireDefault(require("./BorderHorizontal")); + +var _BorderHorizontalOutlined = _interopRequireDefault(require("./BorderHorizontalOutlined")); + +var _BorderHorizontalRounded = _interopRequireDefault(require("./BorderHorizontalRounded")); + +var _BorderHorizontalSharp = _interopRequireDefault(require("./BorderHorizontalSharp")); + +var _BorderHorizontalTwoTone = _interopRequireDefault(require("./BorderHorizontalTwoTone")); + +var _BorderInner = _interopRequireDefault(require("./BorderInner")); + +var _BorderInnerOutlined = _interopRequireDefault(require("./BorderInnerOutlined")); + +var _BorderInnerRounded = _interopRequireDefault(require("./BorderInnerRounded")); + +var _BorderInnerSharp = _interopRequireDefault(require("./BorderInnerSharp")); + +var _BorderInnerTwoTone = _interopRequireDefault(require("./BorderInnerTwoTone")); + +var _BorderLeft = _interopRequireDefault(require("./BorderLeft")); + +var _BorderLeftOutlined = _interopRequireDefault(require("./BorderLeftOutlined")); + +var _BorderLeftRounded = _interopRequireDefault(require("./BorderLeftRounded")); + +var _BorderLeftSharp = _interopRequireDefault(require("./BorderLeftSharp")); + +var _BorderLeftTwoTone = _interopRequireDefault(require("./BorderLeftTwoTone")); + +var _BorderOuter = _interopRequireDefault(require("./BorderOuter")); + +var _BorderOuterOutlined = _interopRequireDefault(require("./BorderOuterOutlined")); + +var _BorderOuterRounded = _interopRequireDefault(require("./BorderOuterRounded")); + +var _BorderOuterSharp = _interopRequireDefault(require("./BorderOuterSharp")); + +var _BorderOuterTwoTone = _interopRequireDefault(require("./BorderOuterTwoTone")); + +var _BorderRight = _interopRequireDefault(require("./BorderRight")); + +var _BorderRightOutlined = _interopRequireDefault(require("./BorderRightOutlined")); + +var _BorderRightRounded = _interopRequireDefault(require("./BorderRightRounded")); + +var _BorderRightSharp = _interopRequireDefault(require("./BorderRightSharp")); + +var _BorderRightTwoTone = _interopRequireDefault(require("./BorderRightTwoTone")); + +var _BorderStyle = _interopRequireDefault(require("./BorderStyle")); + +var _BorderStyleOutlined = _interopRequireDefault(require("./BorderStyleOutlined")); + +var _BorderStyleRounded = _interopRequireDefault(require("./BorderStyleRounded")); + +var _BorderStyleSharp = _interopRequireDefault(require("./BorderStyleSharp")); + +var _BorderStyleTwoTone = _interopRequireDefault(require("./BorderStyleTwoTone")); + +var _BorderTop = _interopRequireDefault(require("./BorderTop")); + +var _BorderTopOutlined = _interopRequireDefault(require("./BorderTopOutlined")); + +var _BorderTopRounded = _interopRequireDefault(require("./BorderTopRounded")); + +var _BorderTopSharp = _interopRequireDefault(require("./BorderTopSharp")); + +var _BorderTopTwoTone = _interopRequireDefault(require("./BorderTopTwoTone")); + +var _BorderVertical = _interopRequireDefault(require("./BorderVertical")); + +var _BorderVerticalOutlined = _interopRequireDefault(require("./BorderVerticalOutlined")); + +var _BorderVerticalRounded = _interopRequireDefault(require("./BorderVerticalRounded")); + +var _BorderVerticalSharp = _interopRequireDefault(require("./BorderVerticalSharp")); + +var _BorderVerticalTwoTone = _interopRequireDefault(require("./BorderVerticalTwoTone")); + +var _BrandingWatermark = _interopRequireDefault(require("./BrandingWatermark")); + +var _BrandingWatermarkOutlined = _interopRequireDefault(require("./BrandingWatermarkOutlined")); + +var _BrandingWatermarkRounded = _interopRequireDefault(require("./BrandingWatermarkRounded")); + +var _BrandingWatermarkSharp = _interopRequireDefault(require("./BrandingWatermarkSharp")); + +var _BrandingWatermarkTwoTone = _interopRequireDefault(require("./BrandingWatermarkTwoTone")); + +var _BreakfastDining = _interopRequireDefault(require("./BreakfastDining")); + +var _BreakfastDiningOutlined = _interopRequireDefault(require("./BreakfastDiningOutlined")); + +var _BreakfastDiningRounded = _interopRequireDefault(require("./BreakfastDiningRounded")); + +var _BreakfastDiningSharp = _interopRequireDefault(require("./BreakfastDiningSharp")); + +var _BreakfastDiningTwoTone = _interopRequireDefault(require("./BreakfastDiningTwoTone")); + +var _Brightness = _interopRequireDefault(require("./Brightness1")); + +var _Brightness1Outlined = _interopRequireDefault(require("./Brightness1Outlined")); + +var _Brightness1Rounded = _interopRequireDefault(require("./Brightness1Rounded")); + +var _Brightness1Sharp = _interopRequireDefault(require("./Brightness1Sharp")); + +var _Brightness1TwoTone = _interopRequireDefault(require("./Brightness1TwoTone")); + +var _Brightness2 = _interopRequireDefault(require("./Brightness2")); + +var _Brightness2Outlined = _interopRequireDefault(require("./Brightness2Outlined")); + +var _Brightness2Rounded = _interopRequireDefault(require("./Brightness2Rounded")); + +var _Brightness2Sharp = _interopRequireDefault(require("./Brightness2Sharp")); + +var _Brightness2TwoTone = _interopRequireDefault(require("./Brightness2TwoTone")); + +var _Brightness3 = _interopRequireDefault(require("./Brightness3")); + +var _Brightness3Outlined = _interopRequireDefault(require("./Brightness3Outlined")); + +var _Brightness3Rounded = _interopRequireDefault(require("./Brightness3Rounded")); + +var _Brightness3Sharp = _interopRequireDefault(require("./Brightness3Sharp")); + +var _Brightness3TwoTone = _interopRequireDefault(require("./Brightness3TwoTone")); + +var _Brightness4 = _interopRequireDefault(require("./Brightness4")); + +var _Brightness4Outlined = _interopRequireDefault(require("./Brightness4Outlined")); + +var _Brightness4Rounded = _interopRequireDefault(require("./Brightness4Rounded")); + +var _Brightness4Sharp = _interopRequireDefault(require("./Brightness4Sharp")); + +var _Brightness4TwoTone = _interopRequireDefault(require("./Brightness4TwoTone")); + +var _Brightness5 = _interopRequireDefault(require("./Brightness5")); + +var _Brightness5Outlined = _interopRequireDefault(require("./Brightness5Outlined")); + +var _Brightness5Rounded = _interopRequireDefault(require("./Brightness5Rounded")); + +var _Brightness5Sharp = _interopRequireDefault(require("./Brightness5Sharp")); + +var _Brightness5TwoTone = _interopRequireDefault(require("./Brightness5TwoTone")); + +var _Brightness6 = _interopRequireDefault(require("./Brightness6")); + +var _Brightness6Outlined = _interopRequireDefault(require("./Brightness6Outlined")); + +var _Brightness6Rounded = _interopRequireDefault(require("./Brightness6Rounded")); + +var _Brightness6Sharp = _interopRequireDefault(require("./Brightness6Sharp")); + +var _Brightness6TwoTone = _interopRequireDefault(require("./Brightness6TwoTone")); + +var _Brightness7 = _interopRequireDefault(require("./Brightness7")); + +var _Brightness7Outlined = _interopRequireDefault(require("./Brightness7Outlined")); + +var _Brightness7Rounded = _interopRequireDefault(require("./Brightness7Rounded")); + +var _Brightness7Sharp = _interopRequireDefault(require("./Brightness7Sharp")); + +var _Brightness7TwoTone = _interopRequireDefault(require("./Brightness7TwoTone")); + +var _BrightnessAuto = _interopRequireDefault(require("./BrightnessAuto")); + +var _BrightnessAutoOutlined = _interopRequireDefault(require("./BrightnessAutoOutlined")); + +var _BrightnessAutoRounded = _interopRequireDefault(require("./BrightnessAutoRounded")); + +var _BrightnessAutoSharp = _interopRequireDefault(require("./BrightnessAutoSharp")); + +var _BrightnessAutoTwoTone = _interopRequireDefault(require("./BrightnessAutoTwoTone")); + +var _BrightnessHigh = _interopRequireDefault(require("./BrightnessHigh")); + +var _BrightnessHighOutlined = _interopRequireDefault(require("./BrightnessHighOutlined")); + +var _BrightnessHighRounded = _interopRequireDefault(require("./BrightnessHighRounded")); + +var _BrightnessHighSharp = _interopRequireDefault(require("./BrightnessHighSharp")); + +var _BrightnessHighTwoTone = _interopRequireDefault(require("./BrightnessHighTwoTone")); + +var _BrightnessLow = _interopRequireDefault(require("./BrightnessLow")); + +var _BrightnessLowOutlined = _interopRequireDefault(require("./BrightnessLowOutlined")); + +var _BrightnessLowRounded = _interopRequireDefault(require("./BrightnessLowRounded")); + +var _BrightnessLowSharp = _interopRequireDefault(require("./BrightnessLowSharp")); + +var _BrightnessLowTwoTone = _interopRequireDefault(require("./BrightnessLowTwoTone")); + +var _BrightnessMedium = _interopRequireDefault(require("./BrightnessMedium")); + +var _BrightnessMediumOutlined = _interopRequireDefault(require("./BrightnessMediumOutlined")); + +var _BrightnessMediumRounded = _interopRequireDefault(require("./BrightnessMediumRounded")); + +var _BrightnessMediumSharp = _interopRequireDefault(require("./BrightnessMediumSharp")); + +var _BrightnessMediumTwoTone = _interopRequireDefault(require("./BrightnessMediumTwoTone")); + +var _BrokenImage = _interopRequireDefault(require("./BrokenImage")); + +var _BrokenImageOutlined = _interopRequireDefault(require("./BrokenImageOutlined")); + +var _BrokenImageRounded = _interopRequireDefault(require("./BrokenImageRounded")); + +var _BrokenImageSharp = _interopRequireDefault(require("./BrokenImageSharp")); + +var _BrokenImageTwoTone = _interopRequireDefault(require("./BrokenImageTwoTone")); + +var _BrowserNotSupported = _interopRequireDefault(require("./BrowserNotSupported")); + +var _BrowserNotSupportedOutlined = _interopRequireDefault(require("./BrowserNotSupportedOutlined")); + +var _BrowserNotSupportedRounded = _interopRequireDefault(require("./BrowserNotSupportedRounded")); + +var _BrowserNotSupportedSharp = _interopRequireDefault(require("./BrowserNotSupportedSharp")); + +var _BrowserNotSupportedTwoTone = _interopRequireDefault(require("./BrowserNotSupportedTwoTone")); + +var _BrunchDining = _interopRequireDefault(require("./BrunchDining")); + +var _BrunchDiningOutlined = _interopRequireDefault(require("./BrunchDiningOutlined")); + +var _BrunchDiningRounded = _interopRequireDefault(require("./BrunchDiningRounded")); + +var _BrunchDiningSharp = _interopRequireDefault(require("./BrunchDiningSharp")); + +var _BrunchDiningTwoTone = _interopRequireDefault(require("./BrunchDiningTwoTone")); + +var _Brush = _interopRequireDefault(require("./Brush")); + +var _BrushOutlined = _interopRequireDefault(require("./BrushOutlined")); + +var _BrushRounded = _interopRequireDefault(require("./BrushRounded")); + +var _BrushSharp = _interopRequireDefault(require("./BrushSharp")); + +var _BrushTwoTone = _interopRequireDefault(require("./BrushTwoTone")); + +var _BubbleChart = _interopRequireDefault(require("./BubbleChart")); + +var _BubbleChartOutlined = _interopRequireDefault(require("./BubbleChartOutlined")); + +var _BubbleChartRounded = _interopRequireDefault(require("./BubbleChartRounded")); + +var _BubbleChartSharp = _interopRequireDefault(require("./BubbleChartSharp")); + +var _BubbleChartTwoTone = _interopRequireDefault(require("./BubbleChartTwoTone")); + +var _BugReport = _interopRequireDefault(require("./BugReport")); + +var _BugReportOutlined = _interopRequireDefault(require("./BugReportOutlined")); + +var _BugReportRounded = _interopRequireDefault(require("./BugReportRounded")); + +var _BugReportSharp = _interopRequireDefault(require("./BugReportSharp")); + +var _BugReportTwoTone = _interopRequireDefault(require("./BugReportTwoTone")); + +var _Build = _interopRequireDefault(require("./Build")); + +var _BuildCircle = _interopRequireDefault(require("./BuildCircle")); + +var _BuildCircleOutlined = _interopRequireDefault(require("./BuildCircleOutlined")); + +var _BuildCircleRounded = _interopRequireDefault(require("./BuildCircleRounded")); + +var _BuildCircleSharp = _interopRequireDefault(require("./BuildCircleSharp")); + +var _BuildCircleTwoTone = _interopRequireDefault(require("./BuildCircleTwoTone")); + +var _BuildOutlined = _interopRequireDefault(require("./BuildOutlined")); + +var _BuildRounded = _interopRequireDefault(require("./BuildRounded")); + +var _BuildSharp = _interopRequireDefault(require("./BuildSharp")); + +var _BuildTwoTone = _interopRequireDefault(require("./BuildTwoTone")); + +var _Bungalow = _interopRequireDefault(require("./Bungalow")); + +var _BungalowOutlined = _interopRequireDefault(require("./BungalowOutlined")); + +var _BungalowRounded = _interopRequireDefault(require("./BungalowRounded")); + +var _BungalowSharp = _interopRequireDefault(require("./BungalowSharp")); + +var _BungalowTwoTone = _interopRequireDefault(require("./BungalowTwoTone")); + +var _BurstMode = _interopRequireDefault(require("./BurstMode")); + +var _BurstModeOutlined = _interopRequireDefault(require("./BurstModeOutlined")); + +var _BurstModeRounded = _interopRequireDefault(require("./BurstModeRounded")); + +var _BurstModeSharp = _interopRequireDefault(require("./BurstModeSharp")); + +var _BurstModeTwoTone = _interopRequireDefault(require("./BurstModeTwoTone")); + +var _BusAlert = _interopRequireDefault(require("./BusAlert")); + +var _BusAlertOutlined = _interopRequireDefault(require("./BusAlertOutlined")); + +var _BusAlertRounded = _interopRequireDefault(require("./BusAlertRounded")); + +var _BusAlertSharp = _interopRequireDefault(require("./BusAlertSharp")); + +var _BusAlertTwoTone = _interopRequireDefault(require("./BusAlertTwoTone")); + +var _Business = _interopRequireDefault(require("./Business")); + +var _BusinessCenter = _interopRequireDefault(require("./BusinessCenter")); + +var _BusinessCenterOutlined = _interopRequireDefault(require("./BusinessCenterOutlined")); + +var _BusinessCenterRounded = _interopRequireDefault(require("./BusinessCenterRounded")); + +var _BusinessCenterSharp = _interopRequireDefault(require("./BusinessCenterSharp")); + +var _BusinessCenterTwoTone = _interopRequireDefault(require("./BusinessCenterTwoTone")); + +var _BusinessOutlined = _interopRequireDefault(require("./BusinessOutlined")); + +var _BusinessRounded = _interopRequireDefault(require("./BusinessRounded")); + +var _BusinessSharp = _interopRequireDefault(require("./BusinessSharp")); + +var _BusinessTwoTone = _interopRequireDefault(require("./BusinessTwoTone")); + +var _Cabin = _interopRequireDefault(require("./Cabin")); + +var _CabinOutlined = _interopRequireDefault(require("./CabinOutlined")); + +var _CabinRounded = _interopRequireDefault(require("./CabinRounded")); + +var _CabinSharp = _interopRequireDefault(require("./CabinSharp")); + +var _CabinTwoTone = _interopRequireDefault(require("./CabinTwoTone")); + +var _Cable = _interopRequireDefault(require("./Cable")); + +var _CableOutlined = _interopRequireDefault(require("./CableOutlined")); + +var _CableRounded = _interopRequireDefault(require("./CableRounded")); + +var _CableSharp = _interopRequireDefault(require("./CableSharp")); + +var _CableTwoTone = _interopRequireDefault(require("./CableTwoTone")); + +var _Cached = _interopRequireDefault(require("./Cached")); + +var _CachedOutlined = _interopRequireDefault(require("./CachedOutlined")); + +var _CachedRounded = _interopRequireDefault(require("./CachedRounded")); + +var _CachedSharp = _interopRequireDefault(require("./CachedSharp")); + +var _CachedTwoTone = _interopRequireDefault(require("./CachedTwoTone")); + +var _Cake = _interopRequireDefault(require("./Cake")); + +var _CakeOutlined = _interopRequireDefault(require("./CakeOutlined")); + +var _CakeRounded = _interopRequireDefault(require("./CakeRounded")); + +var _CakeSharp = _interopRequireDefault(require("./CakeSharp")); + +var _CakeTwoTone = _interopRequireDefault(require("./CakeTwoTone")); + +var _Calculate = _interopRequireDefault(require("./Calculate")); + +var _CalculateOutlined = _interopRequireDefault(require("./CalculateOutlined")); + +var _CalculateRounded = _interopRequireDefault(require("./CalculateRounded")); + +var _CalculateSharp = _interopRequireDefault(require("./CalculateSharp")); + +var _CalculateTwoTone = _interopRequireDefault(require("./CalculateTwoTone")); + +var _CalendarToday = _interopRequireDefault(require("./CalendarToday")); + +var _CalendarTodayOutlined = _interopRequireDefault(require("./CalendarTodayOutlined")); + +var _CalendarTodayRounded = _interopRequireDefault(require("./CalendarTodayRounded")); + +var _CalendarTodaySharp = _interopRequireDefault(require("./CalendarTodaySharp")); + +var _CalendarTodayTwoTone = _interopRequireDefault(require("./CalendarTodayTwoTone")); + +var _CalendarViewDay = _interopRequireDefault(require("./CalendarViewDay")); + +var _CalendarViewDayOutlined = _interopRequireDefault(require("./CalendarViewDayOutlined")); + +var _CalendarViewDayRounded = _interopRequireDefault(require("./CalendarViewDayRounded")); + +var _CalendarViewDaySharp = _interopRequireDefault(require("./CalendarViewDaySharp")); + +var _CalendarViewDayTwoTone = _interopRequireDefault(require("./CalendarViewDayTwoTone")); + +var _CalendarViewMonth = _interopRequireDefault(require("./CalendarViewMonth")); + +var _CalendarViewMonthOutlined = _interopRequireDefault(require("./CalendarViewMonthOutlined")); + +var _CalendarViewMonthRounded = _interopRequireDefault(require("./CalendarViewMonthRounded")); + +var _CalendarViewMonthSharp = _interopRequireDefault(require("./CalendarViewMonthSharp")); + +var _CalendarViewMonthTwoTone = _interopRequireDefault(require("./CalendarViewMonthTwoTone")); + +var _CalendarViewWeek = _interopRequireDefault(require("./CalendarViewWeek")); + +var _CalendarViewWeekOutlined = _interopRequireDefault(require("./CalendarViewWeekOutlined")); + +var _CalendarViewWeekRounded = _interopRequireDefault(require("./CalendarViewWeekRounded")); + +var _CalendarViewWeekSharp = _interopRequireDefault(require("./CalendarViewWeekSharp")); + +var _CalendarViewWeekTwoTone = _interopRequireDefault(require("./CalendarViewWeekTwoTone")); + +var _Call = _interopRequireDefault(require("./Call")); + +var _CallEnd = _interopRequireDefault(require("./CallEnd")); + +var _CallEndOutlined = _interopRequireDefault(require("./CallEndOutlined")); + +var _CallEndRounded = _interopRequireDefault(require("./CallEndRounded")); + +var _CallEndSharp = _interopRequireDefault(require("./CallEndSharp")); + +var _CallEndTwoTone = _interopRequireDefault(require("./CallEndTwoTone")); + +var _CallMade = _interopRequireDefault(require("./CallMade")); + +var _CallMadeOutlined = _interopRequireDefault(require("./CallMadeOutlined")); + +var _CallMadeRounded = _interopRequireDefault(require("./CallMadeRounded")); + +var _CallMadeSharp = _interopRequireDefault(require("./CallMadeSharp")); + +var _CallMadeTwoTone = _interopRequireDefault(require("./CallMadeTwoTone")); + +var _CallMerge = _interopRequireDefault(require("./CallMerge")); + +var _CallMergeOutlined = _interopRequireDefault(require("./CallMergeOutlined")); + +var _CallMergeRounded = _interopRequireDefault(require("./CallMergeRounded")); + +var _CallMergeSharp = _interopRequireDefault(require("./CallMergeSharp")); + +var _CallMergeTwoTone = _interopRequireDefault(require("./CallMergeTwoTone")); + +var _CallMissed = _interopRequireDefault(require("./CallMissed")); + +var _CallMissedOutgoing = _interopRequireDefault(require("./CallMissedOutgoing")); + +var _CallMissedOutgoingOutlined = _interopRequireDefault(require("./CallMissedOutgoingOutlined")); + +var _CallMissedOutgoingRounded = _interopRequireDefault(require("./CallMissedOutgoingRounded")); + +var _CallMissedOutgoingSharp = _interopRequireDefault(require("./CallMissedOutgoingSharp")); + +var _CallMissedOutgoingTwoTone = _interopRequireDefault(require("./CallMissedOutgoingTwoTone")); + +var _CallMissedOutlined = _interopRequireDefault(require("./CallMissedOutlined")); + +var _CallMissedRounded = _interopRequireDefault(require("./CallMissedRounded")); + +var _CallMissedSharp = _interopRequireDefault(require("./CallMissedSharp")); + +var _CallMissedTwoTone = _interopRequireDefault(require("./CallMissedTwoTone")); + +var _CallOutlined = _interopRequireDefault(require("./CallOutlined")); + +var _CallReceived = _interopRequireDefault(require("./CallReceived")); + +var _CallReceivedOutlined = _interopRequireDefault(require("./CallReceivedOutlined")); + +var _CallReceivedRounded = _interopRequireDefault(require("./CallReceivedRounded")); + +var _CallReceivedSharp = _interopRequireDefault(require("./CallReceivedSharp")); + +var _CallReceivedTwoTone = _interopRequireDefault(require("./CallReceivedTwoTone")); + +var _CallRounded = _interopRequireDefault(require("./CallRounded")); + +var _CallSharp = _interopRequireDefault(require("./CallSharp")); + +var _CallSplit = _interopRequireDefault(require("./CallSplit")); + +var _CallSplitOutlined = _interopRequireDefault(require("./CallSplitOutlined")); + +var _CallSplitRounded = _interopRequireDefault(require("./CallSplitRounded")); + +var _CallSplitSharp = _interopRequireDefault(require("./CallSplitSharp")); + +var _CallSplitTwoTone = _interopRequireDefault(require("./CallSplitTwoTone")); + +var _CallToAction = _interopRequireDefault(require("./CallToAction")); + +var _CallToActionOutlined = _interopRequireDefault(require("./CallToActionOutlined")); + +var _CallToActionRounded = _interopRequireDefault(require("./CallToActionRounded")); + +var _CallToActionSharp = _interopRequireDefault(require("./CallToActionSharp")); + +var _CallToActionTwoTone = _interopRequireDefault(require("./CallToActionTwoTone")); + +var _CallTwoTone = _interopRequireDefault(require("./CallTwoTone")); + +var _Camera = _interopRequireDefault(require("./Camera")); + +var _CameraAlt = _interopRequireDefault(require("./CameraAlt")); + +var _CameraAltOutlined = _interopRequireDefault(require("./CameraAltOutlined")); + +var _CameraAltRounded = _interopRequireDefault(require("./CameraAltRounded")); + +var _CameraAltSharp = _interopRequireDefault(require("./CameraAltSharp")); + +var _CameraAltTwoTone = _interopRequireDefault(require("./CameraAltTwoTone")); + +var _CameraEnhance = _interopRequireDefault(require("./CameraEnhance")); + +var _CameraEnhanceOutlined = _interopRequireDefault(require("./CameraEnhanceOutlined")); + +var _CameraEnhanceRounded = _interopRequireDefault(require("./CameraEnhanceRounded")); + +var _CameraEnhanceSharp = _interopRequireDefault(require("./CameraEnhanceSharp")); + +var _CameraEnhanceTwoTone = _interopRequireDefault(require("./CameraEnhanceTwoTone")); + +var _CameraFront = _interopRequireDefault(require("./CameraFront")); + +var _CameraFrontOutlined = _interopRequireDefault(require("./CameraFrontOutlined")); + +var _CameraFrontRounded = _interopRequireDefault(require("./CameraFrontRounded")); + +var _CameraFrontSharp = _interopRequireDefault(require("./CameraFrontSharp")); + +var _CameraFrontTwoTone = _interopRequireDefault(require("./CameraFrontTwoTone")); + +var _CameraIndoor = _interopRequireDefault(require("./CameraIndoor")); + +var _CameraIndoorOutlined = _interopRequireDefault(require("./CameraIndoorOutlined")); + +var _CameraIndoorRounded = _interopRequireDefault(require("./CameraIndoorRounded")); + +var _CameraIndoorSharp = _interopRequireDefault(require("./CameraIndoorSharp")); + +var _CameraIndoorTwoTone = _interopRequireDefault(require("./CameraIndoorTwoTone")); + +var _CameraOutdoor = _interopRequireDefault(require("./CameraOutdoor")); + +var _CameraOutdoorOutlined = _interopRequireDefault(require("./CameraOutdoorOutlined")); + +var _CameraOutdoorRounded = _interopRequireDefault(require("./CameraOutdoorRounded")); + +var _CameraOutdoorSharp = _interopRequireDefault(require("./CameraOutdoorSharp")); + +var _CameraOutdoorTwoTone = _interopRequireDefault(require("./CameraOutdoorTwoTone")); + +var _CameraOutlined = _interopRequireDefault(require("./CameraOutlined")); + +var _CameraRear = _interopRequireDefault(require("./CameraRear")); + +var _CameraRearOutlined = _interopRequireDefault(require("./CameraRearOutlined")); + +var _CameraRearRounded = _interopRequireDefault(require("./CameraRearRounded")); + +var _CameraRearSharp = _interopRequireDefault(require("./CameraRearSharp")); + +var _CameraRearTwoTone = _interopRequireDefault(require("./CameraRearTwoTone")); + +var _CameraRoll = _interopRequireDefault(require("./CameraRoll")); + +var _CameraRollOutlined = _interopRequireDefault(require("./CameraRollOutlined")); + +var _CameraRollRounded = _interopRequireDefault(require("./CameraRollRounded")); + +var _CameraRollSharp = _interopRequireDefault(require("./CameraRollSharp")); + +var _CameraRollTwoTone = _interopRequireDefault(require("./CameraRollTwoTone")); + +var _CameraRounded = _interopRequireDefault(require("./CameraRounded")); + +var _CameraSharp = _interopRequireDefault(require("./CameraSharp")); + +var _CameraTwoTone = _interopRequireDefault(require("./CameraTwoTone")); + +var _Cameraswitch = _interopRequireDefault(require("./Cameraswitch")); + +var _CameraswitchOutlined = _interopRequireDefault(require("./CameraswitchOutlined")); + +var _CameraswitchRounded = _interopRequireDefault(require("./CameraswitchRounded")); + +var _CameraswitchSharp = _interopRequireDefault(require("./CameraswitchSharp")); + +var _CameraswitchTwoTone = _interopRequireDefault(require("./CameraswitchTwoTone")); + +var _Campaign = _interopRequireDefault(require("./Campaign")); + +var _CampaignOutlined = _interopRequireDefault(require("./CampaignOutlined")); + +var _CampaignRounded = _interopRequireDefault(require("./CampaignRounded")); + +var _CampaignSharp = _interopRequireDefault(require("./CampaignSharp")); + +var _CampaignTwoTone = _interopRequireDefault(require("./CampaignTwoTone")); + +var _Cancel = _interopRequireDefault(require("./Cancel")); + +var _CancelOutlined = _interopRequireDefault(require("./CancelOutlined")); + +var _CancelPresentation = _interopRequireDefault(require("./CancelPresentation")); + +var _CancelPresentationOutlined = _interopRequireDefault(require("./CancelPresentationOutlined")); + +var _CancelPresentationRounded = _interopRequireDefault(require("./CancelPresentationRounded")); + +var _CancelPresentationSharp = _interopRequireDefault(require("./CancelPresentationSharp")); + +var _CancelPresentationTwoTone = _interopRequireDefault(require("./CancelPresentationTwoTone")); + +var _CancelRounded = _interopRequireDefault(require("./CancelRounded")); + +var _CancelScheduleSend = _interopRequireDefault(require("./CancelScheduleSend")); + +var _CancelScheduleSendOutlined = _interopRequireDefault(require("./CancelScheduleSendOutlined")); + +var _CancelScheduleSendRounded = _interopRequireDefault(require("./CancelScheduleSendRounded")); + +var _CancelScheduleSendSharp = _interopRequireDefault(require("./CancelScheduleSendSharp")); + +var _CancelScheduleSendTwoTone = _interopRequireDefault(require("./CancelScheduleSendTwoTone")); + +var _CancelSharp = _interopRequireDefault(require("./CancelSharp")); + +var _CancelTwoTone = _interopRequireDefault(require("./CancelTwoTone")); + +var _CarRental = _interopRequireDefault(require("./CarRental")); + +var _CarRentalOutlined = _interopRequireDefault(require("./CarRentalOutlined")); + +var _CarRentalRounded = _interopRequireDefault(require("./CarRentalRounded")); + +var _CarRentalSharp = _interopRequireDefault(require("./CarRentalSharp")); + +var _CarRentalTwoTone = _interopRequireDefault(require("./CarRentalTwoTone")); + +var _CarRepair = _interopRequireDefault(require("./CarRepair")); + +var _CarRepairOutlined = _interopRequireDefault(require("./CarRepairOutlined")); + +var _CarRepairRounded = _interopRequireDefault(require("./CarRepairRounded")); + +var _CarRepairSharp = _interopRequireDefault(require("./CarRepairSharp")); + +var _CarRepairTwoTone = _interopRequireDefault(require("./CarRepairTwoTone")); + +var _CardGiftcard = _interopRequireDefault(require("./CardGiftcard")); + +var _CardGiftcardOutlined = _interopRequireDefault(require("./CardGiftcardOutlined")); + +var _CardGiftcardRounded = _interopRequireDefault(require("./CardGiftcardRounded")); + +var _CardGiftcardSharp = _interopRequireDefault(require("./CardGiftcardSharp")); + +var _CardGiftcardTwoTone = _interopRequireDefault(require("./CardGiftcardTwoTone")); + +var _CardMembership = _interopRequireDefault(require("./CardMembership")); + +var _CardMembershipOutlined = _interopRequireDefault(require("./CardMembershipOutlined")); + +var _CardMembershipRounded = _interopRequireDefault(require("./CardMembershipRounded")); + +var _CardMembershipSharp = _interopRequireDefault(require("./CardMembershipSharp")); + +var _CardMembershipTwoTone = _interopRequireDefault(require("./CardMembershipTwoTone")); + +var _CardTravel = _interopRequireDefault(require("./CardTravel")); + +var _CardTravelOutlined = _interopRequireDefault(require("./CardTravelOutlined")); + +var _CardTravelRounded = _interopRequireDefault(require("./CardTravelRounded")); + +var _CardTravelSharp = _interopRequireDefault(require("./CardTravelSharp")); + +var _CardTravelTwoTone = _interopRequireDefault(require("./CardTravelTwoTone")); + +var _Carpenter = _interopRequireDefault(require("./Carpenter")); + +var _CarpenterOutlined = _interopRequireDefault(require("./CarpenterOutlined")); + +var _CarpenterRounded = _interopRequireDefault(require("./CarpenterRounded")); + +var _CarpenterSharp = _interopRequireDefault(require("./CarpenterSharp")); + +var _CarpenterTwoTone = _interopRequireDefault(require("./CarpenterTwoTone")); + +var _Cases = _interopRequireDefault(require("./Cases")); + +var _CasesOutlined = _interopRequireDefault(require("./CasesOutlined")); + +var _CasesRounded = _interopRequireDefault(require("./CasesRounded")); + +var _CasesSharp = _interopRequireDefault(require("./CasesSharp")); + +var _CasesTwoTone = _interopRequireDefault(require("./CasesTwoTone")); + +var _Casino = _interopRequireDefault(require("./Casino")); + +var _CasinoOutlined = _interopRequireDefault(require("./CasinoOutlined")); + +var _CasinoRounded = _interopRequireDefault(require("./CasinoRounded")); + +var _CasinoSharp = _interopRequireDefault(require("./CasinoSharp")); + +var _CasinoTwoTone = _interopRequireDefault(require("./CasinoTwoTone")); + +var _Cast = _interopRequireDefault(require("./Cast")); + +var _CastConnected = _interopRequireDefault(require("./CastConnected")); + +var _CastConnectedOutlined = _interopRequireDefault(require("./CastConnectedOutlined")); + +var _CastConnectedRounded = _interopRequireDefault(require("./CastConnectedRounded")); + +var _CastConnectedSharp = _interopRequireDefault(require("./CastConnectedSharp")); + +var _CastConnectedTwoTone = _interopRequireDefault(require("./CastConnectedTwoTone")); + +var _CastForEducation = _interopRequireDefault(require("./CastForEducation")); + +var _CastForEducationOutlined = _interopRequireDefault(require("./CastForEducationOutlined")); + +var _CastForEducationRounded = _interopRequireDefault(require("./CastForEducationRounded")); + +var _CastForEducationSharp = _interopRequireDefault(require("./CastForEducationSharp")); + +var _CastForEducationTwoTone = _interopRequireDefault(require("./CastForEducationTwoTone")); + +var _CastOutlined = _interopRequireDefault(require("./CastOutlined")); + +var _CastRounded = _interopRequireDefault(require("./CastRounded")); + +var _CastSharp = _interopRequireDefault(require("./CastSharp")); + +var _CastTwoTone = _interopRequireDefault(require("./CastTwoTone")); + +var _CatchingPokemon = _interopRequireDefault(require("./CatchingPokemon")); + +var _CatchingPokemonOutlined = _interopRequireDefault(require("./CatchingPokemonOutlined")); + +var _CatchingPokemonRounded = _interopRequireDefault(require("./CatchingPokemonRounded")); + +var _CatchingPokemonSharp = _interopRequireDefault(require("./CatchingPokemonSharp")); + +var _CatchingPokemonTwoTone = _interopRequireDefault(require("./CatchingPokemonTwoTone")); + +var _Category = _interopRequireDefault(require("./Category")); + +var _CategoryOutlined = _interopRequireDefault(require("./CategoryOutlined")); + +var _CategoryRounded = _interopRequireDefault(require("./CategoryRounded")); + +var _CategorySharp = _interopRequireDefault(require("./CategorySharp")); + +var _CategoryTwoTone = _interopRequireDefault(require("./CategoryTwoTone")); + +var _Celebration = _interopRequireDefault(require("./Celebration")); + +var _CelebrationOutlined = _interopRequireDefault(require("./CelebrationOutlined")); + +var _CelebrationRounded = _interopRequireDefault(require("./CelebrationRounded")); + +var _CelebrationSharp = _interopRequireDefault(require("./CelebrationSharp")); + +var _CelebrationTwoTone = _interopRequireDefault(require("./CelebrationTwoTone")); + +var _CellWifi = _interopRequireDefault(require("./CellWifi")); + +var _CellWifiOutlined = _interopRequireDefault(require("./CellWifiOutlined")); + +var _CellWifiRounded = _interopRequireDefault(require("./CellWifiRounded")); + +var _CellWifiSharp = _interopRequireDefault(require("./CellWifiSharp")); + +var _CellWifiTwoTone = _interopRequireDefault(require("./CellWifiTwoTone")); + +var _CenterFocusStrong = _interopRequireDefault(require("./CenterFocusStrong")); + +var _CenterFocusStrongOutlined = _interopRequireDefault(require("./CenterFocusStrongOutlined")); + +var _CenterFocusStrongRounded = _interopRequireDefault(require("./CenterFocusStrongRounded")); + +var _CenterFocusStrongSharp = _interopRequireDefault(require("./CenterFocusStrongSharp")); + +var _CenterFocusStrongTwoTone = _interopRequireDefault(require("./CenterFocusStrongTwoTone")); + +var _CenterFocusWeak = _interopRequireDefault(require("./CenterFocusWeak")); + +var _CenterFocusWeakOutlined = _interopRequireDefault(require("./CenterFocusWeakOutlined")); + +var _CenterFocusWeakRounded = _interopRequireDefault(require("./CenterFocusWeakRounded")); + +var _CenterFocusWeakSharp = _interopRequireDefault(require("./CenterFocusWeakSharp")); + +var _CenterFocusWeakTwoTone = _interopRequireDefault(require("./CenterFocusWeakTwoTone")); + +var _Chair = _interopRequireDefault(require("./Chair")); + +var _ChairAlt = _interopRequireDefault(require("./ChairAlt")); + +var _ChairAltOutlined = _interopRequireDefault(require("./ChairAltOutlined")); + +var _ChairAltRounded = _interopRequireDefault(require("./ChairAltRounded")); + +var _ChairAltSharp = _interopRequireDefault(require("./ChairAltSharp")); + +var _ChairAltTwoTone = _interopRequireDefault(require("./ChairAltTwoTone")); + +var _ChairOutlined = _interopRequireDefault(require("./ChairOutlined")); + +var _ChairRounded = _interopRequireDefault(require("./ChairRounded")); + +var _ChairSharp = _interopRequireDefault(require("./ChairSharp")); + +var _ChairTwoTone = _interopRequireDefault(require("./ChairTwoTone")); + +var _Chalet = _interopRequireDefault(require("./Chalet")); + +var _ChaletOutlined = _interopRequireDefault(require("./ChaletOutlined")); + +var _ChaletRounded = _interopRequireDefault(require("./ChaletRounded")); + +var _ChaletSharp = _interopRequireDefault(require("./ChaletSharp")); + +var _ChaletTwoTone = _interopRequireDefault(require("./ChaletTwoTone")); + +var _ChangeCircle = _interopRequireDefault(require("./ChangeCircle")); + +var _ChangeCircleOutlined = _interopRequireDefault(require("./ChangeCircleOutlined")); + +var _ChangeCircleRounded = _interopRequireDefault(require("./ChangeCircleRounded")); + +var _ChangeCircleSharp = _interopRequireDefault(require("./ChangeCircleSharp")); + +var _ChangeCircleTwoTone = _interopRequireDefault(require("./ChangeCircleTwoTone")); + +var _ChangeHistory = _interopRequireDefault(require("./ChangeHistory")); + +var _ChangeHistoryOutlined = _interopRequireDefault(require("./ChangeHistoryOutlined")); + +var _ChangeHistoryRounded = _interopRequireDefault(require("./ChangeHistoryRounded")); + +var _ChangeHistorySharp = _interopRequireDefault(require("./ChangeHistorySharp")); + +var _ChangeHistoryTwoTone = _interopRequireDefault(require("./ChangeHistoryTwoTone")); + +var _ChargingStation = _interopRequireDefault(require("./ChargingStation")); + +var _ChargingStationOutlined = _interopRequireDefault(require("./ChargingStationOutlined")); + +var _ChargingStationRounded = _interopRequireDefault(require("./ChargingStationRounded")); + +var _ChargingStationSharp = _interopRequireDefault(require("./ChargingStationSharp")); + +var _ChargingStationTwoTone = _interopRequireDefault(require("./ChargingStationTwoTone")); + +var _Chat = _interopRequireDefault(require("./Chat")); + +var _ChatBubble = _interopRequireDefault(require("./ChatBubble")); + +var _ChatBubbleOutline = _interopRequireDefault(require("./ChatBubbleOutline")); + +var _ChatBubbleOutlineOutlined = _interopRequireDefault(require("./ChatBubbleOutlineOutlined")); + +var _ChatBubbleOutlineRounded = _interopRequireDefault(require("./ChatBubbleOutlineRounded")); + +var _ChatBubbleOutlineSharp = _interopRequireDefault(require("./ChatBubbleOutlineSharp")); + +var _ChatBubbleOutlineTwoTone = _interopRequireDefault(require("./ChatBubbleOutlineTwoTone")); + +var _ChatBubbleOutlined = _interopRequireDefault(require("./ChatBubbleOutlined")); + +var _ChatBubbleRounded = _interopRequireDefault(require("./ChatBubbleRounded")); + +var _ChatBubbleSharp = _interopRequireDefault(require("./ChatBubbleSharp")); + +var _ChatBubbleTwoTone = _interopRequireDefault(require("./ChatBubbleTwoTone")); + +var _ChatOutlined = _interopRequireDefault(require("./ChatOutlined")); + +var _ChatRounded = _interopRequireDefault(require("./ChatRounded")); + +var _ChatSharp = _interopRequireDefault(require("./ChatSharp")); + +var _ChatTwoTone = _interopRequireDefault(require("./ChatTwoTone")); + +var _Check = _interopRequireDefault(require("./Check")); + +var _CheckBox = _interopRequireDefault(require("./CheckBox")); + +var _CheckBoxOutlineBlank = _interopRequireDefault(require("./CheckBoxOutlineBlank")); + +var _CheckBoxOutlineBlankOutlined = _interopRequireDefault(require("./CheckBoxOutlineBlankOutlined")); + +var _CheckBoxOutlineBlankRounded = _interopRequireDefault(require("./CheckBoxOutlineBlankRounded")); + +var _CheckBoxOutlineBlankSharp = _interopRequireDefault(require("./CheckBoxOutlineBlankSharp")); + +var _CheckBoxOutlineBlankTwoTone = _interopRequireDefault(require("./CheckBoxOutlineBlankTwoTone")); + +var _CheckBoxOutlined = _interopRequireDefault(require("./CheckBoxOutlined")); + +var _CheckBoxRounded = _interopRequireDefault(require("./CheckBoxRounded")); + +var _CheckBoxSharp = _interopRequireDefault(require("./CheckBoxSharp")); + +var _CheckBoxTwoTone = _interopRequireDefault(require("./CheckBoxTwoTone")); + +var _CheckCircle = _interopRequireDefault(require("./CheckCircle")); + +var _CheckCircleOutline = _interopRequireDefault(require("./CheckCircleOutline")); + +var _CheckCircleOutlineOutlined = _interopRequireDefault(require("./CheckCircleOutlineOutlined")); + +var _CheckCircleOutlineRounded = _interopRequireDefault(require("./CheckCircleOutlineRounded")); + +var _CheckCircleOutlineSharp = _interopRequireDefault(require("./CheckCircleOutlineSharp")); + +var _CheckCircleOutlineTwoTone = _interopRequireDefault(require("./CheckCircleOutlineTwoTone")); + +var _CheckCircleOutlined = _interopRequireDefault(require("./CheckCircleOutlined")); + +var _CheckCircleRounded = _interopRequireDefault(require("./CheckCircleRounded")); + +var _CheckCircleSharp = _interopRequireDefault(require("./CheckCircleSharp")); + +var _CheckCircleTwoTone = _interopRequireDefault(require("./CheckCircleTwoTone")); + +var _CheckOutlined = _interopRequireDefault(require("./CheckOutlined")); + +var _CheckRounded = _interopRequireDefault(require("./CheckRounded")); + +var _CheckSharp = _interopRequireDefault(require("./CheckSharp")); + +var _CheckTwoTone = _interopRequireDefault(require("./CheckTwoTone")); + +var _Checkroom = _interopRequireDefault(require("./Checkroom")); + +var _CheckroomOutlined = _interopRequireDefault(require("./CheckroomOutlined")); + +var _CheckroomRounded = _interopRequireDefault(require("./CheckroomRounded")); + +var _CheckroomSharp = _interopRequireDefault(require("./CheckroomSharp")); + +var _CheckroomTwoTone = _interopRequireDefault(require("./CheckroomTwoTone")); + +var _ChevronLeft = _interopRequireDefault(require("./ChevronLeft")); + +var _ChevronLeftOutlined = _interopRequireDefault(require("./ChevronLeftOutlined")); + +var _ChevronLeftRounded = _interopRequireDefault(require("./ChevronLeftRounded")); + +var _ChevronLeftSharp = _interopRequireDefault(require("./ChevronLeftSharp")); + +var _ChevronLeftTwoTone = _interopRequireDefault(require("./ChevronLeftTwoTone")); + +var _ChevronRight = _interopRequireDefault(require("./ChevronRight")); + +var _ChevronRightOutlined = _interopRequireDefault(require("./ChevronRightOutlined")); + +var _ChevronRightRounded = _interopRequireDefault(require("./ChevronRightRounded")); + +var _ChevronRightSharp = _interopRequireDefault(require("./ChevronRightSharp")); + +var _ChevronRightTwoTone = _interopRequireDefault(require("./ChevronRightTwoTone")); + +var _ChildCare = _interopRequireDefault(require("./ChildCare")); + +var _ChildCareOutlined = _interopRequireDefault(require("./ChildCareOutlined")); + +var _ChildCareRounded = _interopRequireDefault(require("./ChildCareRounded")); + +var _ChildCareSharp = _interopRequireDefault(require("./ChildCareSharp")); + +var _ChildCareTwoTone = _interopRequireDefault(require("./ChildCareTwoTone")); + +var _ChildFriendly = _interopRequireDefault(require("./ChildFriendly")); + +var _ChildFriendlyOutlined = _interopRequireDefault(require("./ChildFriendlyOutlined")); + +var _ChildFriendlyRounded = _interopRequireDefault(require("./ChildFriendlyRounded")); + +var _ChildFriendlySharp = _interopRequireDefault(require("./ChildFriendlySharp")); + +var _ChildFriendlyTwoTone = _interopRequireDefault(require("./ChildFriendlyTwoTone")); + +var _ChromeReaderMode = _interopRequireDefault(require("./ChromeReaderMode")); + +var _ChromeReaderModeOutlined = _interopRequireDefault(require("./ChromeReaderModeOutlined")); + +var _ChromeReaderModeRounded = _interopRequireDefault(require("./ChromeReaderModeRounded")); + +var _ChromeReaderModeSharp = _interopRequireDefault(require("./ChromeReaderModeSharp")); + +var _ChromeReaderModeTwoTone = _interopRequireDefault(require("./ChromeReaderModeTwoTone")); + +var _Circle = _interopRequireDefault(require("./Circle")); + +var _CircleNotifications = _interopRequireDefault(require("./CircleNotifications")); + +var _CircleNotificationsOutlined = _interopRequireDefault(require("./CircleNotificationsOutlined")); + +var _CircleNotificationsRounded = _interopRequireDefault(require("./CircleNotificationsRounded")); + +var _CircleNotificationsSharp = _interopRequireDefault(require("./CircleNotificationsSharp")); + +var _CircleNotificationsTwoTone = _interopRequireDefault(require("./CircleNotificationsTwoTone")); + +var _CircleOutlined = _interopRequireDefault(require("./CircleOutlined")); + +var _CircleRounded = _interopRequireDefault(require("./CircleRounded")); + +var _CircleSharp = _interopRequireDefault(require("./CircleSharp")); + +var _CircleTwoTone = _interopRequireDefault(require("./CircleTwoTone")); + +var _Class = _interopRequireDefault(require("./Class")); + +var _ClassOutlined = _interopRequireDefault(require("./ClassOutlined")); + +var _ClassRounded = _interopRequireDefault(require("./ClassRounded")); + +var _ClassSharp = _interopRequireDefault(require("./ClassSharp")); + +var _ClassTwoTone = _interopRequireDefault(require("./ClassTwoTone")); + +var _CleanHands = _interopRequireDefault(require("./CleanHands")); + +var _CleanHandsOutlined = _interopRequireDefault(require("./CleanHandsOutlined")); + +var _CleanHandsRounded = _interopRequireDefault(require("./CleanHandsRounded")); + +var _CleanHandsSharp = _interopRequireDefault(require("./CleanHandsSharp")); + +var _CleanHandsTwoTone = _interopRequireDefault(require("./CleanHandsTwoTone")); + +var _CleaningServices = _interopRequireDefault(require("./CleaningServices")); + +var _CleaningServicesOutlined = _interopRequireDefault(require("./CleaningServicesOutlined")); + +var _CleaningServicesRounded = _interopRequireDefault(require("./CleaningServicesRounded")); + +var _CleaningServicesSharp = _interopRequireDefault(require("./CleaningServicesSharp")); + +var _CleaningServicesTwoTone = _interopRequireDefault(require("./CleaningServicesTwoTone")); + +var _Clear = _interopRequireDefault(require("./Clear")); + +var _ClearAll = _interopRequireDefault(require("./ClearAll")); + +var _ClearAllOutlined = _interopRequireDefault(require("./ClearAllOutlined")); + +var _ClearAllRounded = _interopRequireDefault(require("./ClearAllRounded")); + +var _ClearAllSharp = _interopRequireDefault(require("./ClearAllSharp")); + +var _ClearAllTwoTone = _interopRequireDefault(require("./ClearAllTwoTone")); + +var _ClearOutlined = _interopRequireDefault(require("./ClearOutlined")); + +var _ClearRounded = _interopRequireDefault(require("./ClearRounded")); + +var _ClearSharp = _interopRequireDefault(require("./ClearSharp")); + +var _ClearTwoTone = _interopRequireDefault(require("./ClearTwoTone")); + +var _Close = _interopRequireDefault(require("./Close")); + +var _CloseFullscreen = _interopRequireDefault(require("./CloseFullscreen")); + +var _CloseFullscreenOutlined = _interopRequireDefault(require("./CloseFullscreenOutlined")); + +var _CloseFullscreenRounded = _interopRequireDefault(require("./CloseFullscreenRounded")); + +var _CloseFullscreenSharp = _interopRequireDefault(require("./CloseFullscreenSharp")); + +var _CloseFullscreenTwoTone = _interopRequireDefault(require("./CloseFullscreenTwoTone")); + +var _CloseOutlined = _interopRequireDefault(require("./CloseOutlined")); + +var _CloseRounded = _interopRequireDefault(require("./CloseRounded")); + +var _CloseSharp = _interopRequireDefault(require("./CloseSharp")); + +var _CloseTwoTone = _interopRequireDefault(require("./CloseTwoTone")); + +var _ClosedCaption = _interopRequireDefault(require("./ClosedCaption")); + +var _ClosedCaptionDisabled = _interopRequireDefault(require("./ClosedCaptionDisabled")); + +var _ClosedCaptionDisabledOutlined = _interopRequireDefault(require("./ClosedCaptionDisabledOutlined")); + +var _ClosedCaptionDisabledRounded = _interopRequireDefault(require("./ClosedCaptionDisabledRounded")); + +var _ClosedCaptionDisabledSharp = _interopRequireDefault(require("./ClosedCaptionDisabledSharp")); + +var _ClosedCaptionDisabledTwoTone = _interopRequireDefault(require("./ClosedCaptionDisabledTwoTone")); + +var _ClosedCaptionOff = _interopRequireDefault(require("./ClosedCaptionOff")); + +var _ClosedCaptionOffOutlined = _interopRequireDefault(require("./ClosedCaptionOffOutlined")); + +var _ClosedCaptionOffRounded = _interopRequireDefault(require("./ClosedCaptionOffRounded")); + +var _ClosedCaptionOffSharp = _interopRequireDefault(require("./ClosedCaptionOffSharp")); + +var _ClosedCaptionOffTwoTone = _interopRequireDefault(require("./ClosedCaptionOffTwoTone")); + +var _ClosedCaptionOutlined = _interopRequireDefault(require("./ClosedCaptionOutlined")); + +var _ClosedCaptionRounded = _interopRequireDefault(require("./ClosedCaptionRounded")); + +var _ClosedCaptionSharp = _interopRequireDefault(require("./ClosedCaptionSharp")); + +var _ClosedCaptionTwoTone = _interopRequireDefault(require("./ClosedCaptionTwoTone")); + +var _Cloud = _interopRequireDefault(require("./Cloud")); + +var _CloudCircle = _interopRequireDefault(require("./CloudCircle")); + +var _CloudCircleOutlined = _interopRequireDefault(require("./CloudCircleOutlined")); + +var _CloudCircleRounded = _interopRequireDefault(require("./CloudCircleRounded")); + +var _CloudCircleSharp = _interopRequireDefault(require("./CloudCircleSharp")); + +var _CloudCircleTwoTone = _interopRequireDefault(require("./CloudCircleTwoTone")); + +var _CloudDone = _interopRequireDefault(require("./CloudDone")); + +var _CloudDoneOutlined = _interopRequireDefault(require("./CloudDoneOutlined")); + +var _CloudDoneRounded = _interopRequireDefault(require("./CloudDoneRounded")); + +var _CloudDoneSharp = _interopRequireDefault(require("./CloudDoneSharp")); + +var _CloudDoneTwoTone = _interopRequireDefault(require("./CloudDoneTwoTone")); + +var _CloudDownload = _interopRequireDefault(require("./CloudDownload")); + +var _CloudDownloadOutlined = _interopRequireDefault(require("./CloudDownloadOutlined")); + +var _CloudDownloadRounded = _interopRequireDefault(require("./CloudDownloadRounded")); + +var _CloudDownloadSharp = _interopRequireDefault(require("./CloudDownloadSharp")); + +var _CloudDownloadTwoTone = _interopRequireDefault(require("./CloudDownloadTwoTone")); + +var _CloudOff = _interopRequireDefault(require("./CloudOff")); + +var _CloudOffOutlined = _interopRequireDefault(require("./CloudOffOutlined")); + +var _CloudOffRounded = _interopRequireDefault(require("./CloudOffRounded")); + +var _CloudOffSharp = _interopRequireDefault(require("./CloudOffSharp")); + +var _CloudOffTwoTone = _interopRequireDefault(require("./CloudOffTwoTone")); + +var _CloudOutlined = _interopRequireDefault(require("./CloudOutlined")); + +var _CloudQueue = _interopRequireDefault(require("./CloudQueue")); + +var _CloudQueueOutlined = _interopRequireDefault(require("./CloudQueueOutlined")); + +var _CloudQueueRounded = _interopRequireDefault(require("./CloudQueueRounded")); + +var _CloudQueueSharp = _interopRequireDefault(require("./CloudQueueSharp")); + +var _CloudQueueTwoTone = _interopRequireDefault(require("./CloudQueueTwoTone")); + +var _CloudRounded = _interopRequireDefault(require("./CloudRounded")); + +var _CloudSharp = _interopRequireDefault(require("./CloudSharp")); + +var _CloudTwoTone = _interopRequireDefault(require("./CloudTwoTone")); + +var _CloudUpload = _interopRequireDefault(require("./CloudUpload")); + +var _CloudUploadOutlined = _interopRequireDefault(require("./CloudUploadOutlined")); + +var _CloudUploadRounded = _interopRequireDefault(require("./CloudUploadRounded")); + +var _CloudUploadSharp = _interopRequireDefault(require("./CloudUploadSharp")); + +var _CloudUploadTwoTone = _interopRequireDefault(require("./CloudUploadTwoTone")); + +var _Code = _interopRequireDefault(require("./Code")); + +var _CodeOff = _interopRequireDefault(require("./CodeOff")); + +var _CodeOffOutlined = _interopRequireDefault(require("./CodeOffOutlined")); + +var _CodeOffRounded = _interopRequireDefault(require("./CodeOffRounded")); + +var _CodeOffSharp = _interopRequireDefault(require("./CodeOffSharp")); + +var _CodeOffTwoTone = _interopRequireDefault(require("./CodeOffTwoTone")); + +var _CodeOutlined = _interopRequireDefault(require("./CodeOutlined")); + +var _CodeRounded = _interopRequireDefault(require("./CodeRounded")); + +var _CodeSharp = _interopRequireDefault(require("./CodeSharp")); + +var _CodeTwoTone = _interopRequireDefault(require("./CodeTwoTone")); + +var _Coffee = _interopRequireDefault(require("./Coffee")); + +var _CoffeeMaker = _interopRequireDefault(require("./CoffeeMaker")); + +var _CoffeeMakerOutlined = _interopRequireDefault(require("./CoffeeMakerOutlined")); + +var _CoffeeMakerRounded = _interopRequireDefault(require("./CoffeeMakerRounded")); + +var _CoffeeMakerSharp = _interopRequireDefault(require("./CoffeeMakerSharp")); + +var _CoffeeMakerTwoTone = _interopRequireDefault(require("./CoffeeMakerTwoTone")); + +var _CoffeeOutlined = _interopRequireDefault(require("./CoffeeOutlined")); + +var _CoffeeRounded = _interopRequireDefault(require("./CoffeeRounded")); + +var _CoffeeSharp = _interopRequireDefault(require("./CoffeeSharp")); + +var _CoffeeTwoTone = _interopRequireDefault(require("./CoffeeTwoTone")); + +var _Collections = _interopRequireDefault(require("./Collections")); + +var _CollectionsBookmark = _interopRequireDefault(require("./CollectionsBookmark")); + +var _CollectionsBookmarkOutlined = _interopRequireDefault(require("./CollectionsBookmarkOutlined")); + +var _CollectionsBookmarkRounded = _interopRequireDefault(require("./CollectionsBookmarkRounded")); + +var _CollectionsBookmarkSharp = _interopRequireDefault(require("./CollectionsBookmarkSharp")); + +var _CollectionsBookmarkTwoTone = _interopRequireDefault(require("./CollectionsBookmarkTwoTone")); + +var _CollectionsOutlined = _interopRequireDefault(require("./CollectionsOutlined")); + +var _CollectionsRounded = _interopRequireDefault(require("./CollectionsRounded")); + +var _CollectionsSharp = _interopRequireDefault(require("./CollectionsSharp")); + +var _CollectionsTwoTone = _interopRequireDefault(require("./CollectionsTwoTone")); + +var _ColorLens = _interopRequireDefault(require("./ColorLens")); + +var _ColorLensOutlined = _interopRequireDefault(require("./ColorLensOutlined")); + +var _ColorLensRounded = _interopRequireDefault(require("./ColorLensRounded")); + +var _ColorLensSharp = _interopRequireDefault(require("./ColorLensSharp")); + +var _ColorLensTwoTone = _interopRequireDefault(require("./ColorLensTwoTone")); + +var _Colorize = _interopRequireDefault(require("./Colorize")); + +var _ColorizeOutlined = _interopRequireDefault(require("./ColorizeOutlined")); + +var _ColorizeRounded = _interopRequireDefault(require("./ColorizeRounded")); + +var _ColorizeSharp = _interopRequireDefault(require("./ColorizeSharp")); + +var _ColorizeTwoTone = _interopRequireDefault(require("./ColorizeTwoTone")); + +var _Comment = _interopRequireDefault(require("./Comment")); + +var _CommentBank = _interopRequireDefault(require("./CommentBank")); + +var _CommentBankOutlined = _interopRequireDefault(require("./CommentBankOutlined")); + +var _CommentBankRounded = _interopRequireDefault(require("./CommentBankRounded")); + +var _CommentBankSharp = _interopRequireDefault(require("./CommentBankSharp")); + +var _CommentBankTwoTone = _interopRequireDefault(require("./CommentBankTwoTone")); + +var _CommentOutlined = _interopRequireDefault(require("./CommentOutlined")); + +var _CommentRounded = _interopRequireDefault(require("./CommentRounded")); + +var _CommentSharp = _interopRequireDefault(require("./CommentSharp")); + +var _CommentTwoTone = _interopRequireDefault(require("./CommentTwoTone")); + +var _Commute = _interopRequireDefault(require("./Commute")); + +var _CommuteOutlined = _interopRequireDefault(require("./CommuteOutlined")); + +var _CommuteRounded = _interopRequireDefault(require("./CommuteRounded")); + +var _CommuteSharp = _interopRequireDefault(require("./CommuteSharp")); + +var _CommuteTwoTone = _interopRequireDefault(require("./CommuteTwoTone")); + +var _Compare = _interopRequireDefault(require("./Compare")); + +var _CompareArrows = _interopRequireDefault(require("./CompareArrows")); + +var _CompareArrowsOutlined = _interopRequireDefault(require("./CompareArrowsOutlined")); + +var _CompareArrowsRounded = _interopRequireDefault(require("./CompareArrowsRounded")); + +var _CompareArrowsSharp = _interopRequireDefault(require("./CompareArrowsSharp")); + +var _CompareArrowsTwoTone = _interopRequireDefault(require("./CompareArrowsTwoTone")); + +var _CompareOutlined = _interopRequireDefault(require("./CompareOutlined")); + +var _CompareRounded = _interopRequireDefault(require("./CompareRounded")); + +var _CompareSharp = _interopRequireDefault(require("./CompareSharp")); + +var _CompareTwoTone = _interopRequireDefault(require("./CompareTwoTone")); + +var _CompassCalibration = _interopRequireDefault(require("./CompassCalibration")); + +var _CompassCalibrationOutlined = _interopRequireDefault(require("./CompassCalibrationOutlined")); + +var _CompassCalibrationRounded = _interopRequireDefault(require("./CompassCalibrationRounded")); + +var _CompassCalibrationSharp = _interopRequireDefault(require("./CompassCalibrationSharp")); + +var _CompassCalibrationTwoTone = _interopRequireDefault(require("./CompassCalibrationTwoTone")); + +var _Compress = _interopRequireDefault(require("./Compress")); + +var _CompressOutlined = _interopRequireDefault(require("./CompressOutlined")); + +var _CompressRounded = _interopRequireDefault(require("./CompressRounded")); + +var _CompressSharp = _interopRequireDefault(require("./CompressSharp")); + +var _CompressTwoTone = _interopRequireDefault(require("./CompressTwoTone")); + +var _Computer = _interopRequireDefault(require("./Computer")); + +var _ComputerOutlined = _interopRequireDefault(require("./ComputerOutlined")); + +var _ComputerRounded = _interopRequireDefault(require("./ComputerRounded")); + +var _ComputerSharp = _interopRequireDefault(require("./ComputerSharp")); + +var _ComputerTwoTone = _interopRequireDefault(require("./ComputerTwoTone")); + +var _ConfirmationNumber = _interopRequireDefault(require("./ConfirmationNumber")); + +var _ConfirmationNumberOutlined = _interopRequireDefault(require("./ConfirmationNumberOutlined")); + +var _ConfirmationNumberRounded = _interopRequireDefault(require("./ConfirmationNumberRounded")); + +var _ConfirmationNumberSharp = _interopRequireDefault(require("./ConfirmationNumberSharp")); + +var _ConfirmationNumberTwoTone = _interopRequireDefault(require("./ConfirmationNumberTwoTone")); + +var _ConnectWithoutContact = _interopRequireDefault(require("./ConnectWithoutContact")); + +var _ConnectWithoutContactOutlined = _interopRequireDefault(require("./ConnectWithoutContactOutlined")); + +var _ConnectWithoutContactRounded = _interopRequireDefault(require("./ConnectWithoutContactRounded")); + +var _ConnectWithoutContactSharp = _interopRequireDefault(require("./ConnectWithoutContactSharp")); + +var _ConnectWithoutContactTwoTone = _interopRequireDefault(require("./ConnectWithoutContactTwoTone")); + +var _ConnectedTv = _interopRequireDefault(require("./ConnectedTv")); + +var _ConnectedTvOutlined = _interopRequireDefault(require("./ConnectedTvOutlined")); + +var _ConnectedTvRounded = _interopRequireDefault(require("./ConnectedTvRounded")); + +var _ConnectedTvSharp = _interopRequireDefault(require("./ConnectedTvSharp")); + +var _ConnectedTvTwoTone = _interopRequireDefault(require("./ConnectedTvTwoTone")); + +var _Construction = _interopRequireDefault(require("./Construction")); + +var _ConstructionOutlined = _interopRequireDefault(require("./ConstructionOutlined")); + +var _ConstructionRounded = _interopRequireDefault(require("./ConstructionRounded")); + +var _ConstructionSharp = _interopRequireDefault(require("./ConstructionSharp")); + +var _ConstructionTwoTone = _interopRequireDefault(require("./ConstructionTwoTone")); + +var _ContactMail = _interopRequireDefault(require("./ContactMail")); + +var _ContactMailOutlined = _interopRequireDefault(require("./ContactMailOutlined")); + +var _ContactMailRounded = _interopRequireDefault(require("./ContactMailRounded")); + +var _ContactMailSharp = _interopRequireDefault(require("./ContactMailSharp")); + +var _ContactMailTwoTone = _interopRequireDefault(require("./ContactMailTwoTone")); + +var _ContactPage = _interopRequireDefault(require("./ContactPage")); + +var _ContactPageOutlined = _interopRequireDefault(require("./ContactPageOutlined")); + +var _ContactPageRounded = _interopRequireDefault(require("./ContactPageRounded")); + +var _ContactPageSharp = _interopRequireDefault(require("./ContactPageSharp")); + +var _ContactPageTwoTone = _interopRequireDefault(require("./ContactPageTwoTone")); + +var _ContactPhone = _interopRequireDefault(require("./ContactPhone")); + +var _ContactPhoneOutlined = _interopRequireDefault(require("./ContactPhoneOutlined")); + +var _ContactPhoneRounded = _interopRequireDefault(require("./ContactPhoneRounded")); + +var _ContactPhoneSharp = _interopRequireDefault(require("./ContactPhoneSharp")); + +var _ContactPhoneTwoTone = _interopRequireDefault(require("./ContactPhoneTwoTone")); + +var _ContactSupport = _interopRequireDefault(require("./ContactSupport")); + +var _ContactSupportOutlined = _interopRequireDefault(require("./ContactSupportOutlined")); + +var _ContactSupportRounded = _interopRequireDefault(require("./ContactSupportRounded")); + +var _ContactSupportSharp = _interopRequireDefault(require("./ContactSupportSharp")); + +var _ContactSupportTwoTone = _interopRequireDefault(require("./ContactSupportTwoTone")); + +var _Contactless = _interopRequireDefault(require("./Contactless")); + +var _ContactlessOutlined = _interopRequireDefault(require("./ContactlessOutlined")); + +var _ContactlessRounded = _interopRequireDefault(require("./ContactlessRounded")); + +var _ContactlessSharp = _interopRequireDefault(require("./ContactlessSharp")); + +var _ContactlessTwoTone = _interopRequireDefault(require("./ContactlessTwoTone")); + +var _Contacts = _interopRequireDefault(require("./Contacts")); + +var _ContactsOutlined = _interopRequireDefault(require("./ContactsOutlined")); + +var _ContactsRounded = _interopRequireDefault(require("./ContactsRounded")); + +var _ContactsSharp = _interopRequireDefault(require("./ContactsSharp")); + +var _ContactsTwoTone = _interopRequireDefault(require("./ContactsTwoTone")); + +var _ContentCopy = _interopRequireDefault(require("./ContentCopy")); + +var _ContentCopyOutlined = _interopRequireDefault(require("./ContentCopyOutlined")); + +var _ContentCopyRounded = _interopRequireDefault(require("./ContentCopyRounded")); + +var _ContentCopySharp = _interopRequireDefault(require("./ContentCopySharp")); + +var _ContentCopyTwoTone = _interopRequireDefault(require("./ContentCopyTwoTone")); + +var _ContentCut = _interopRequireDefault(require("./ContentCut")); + +var _ContentCutOutlined = _interopRequireDefault(require("./ContentCutOutlined")); + +var _ContentCutRounded = _interopRequireDefault(require("./ContentCutRounded")); + +var _ContentCutSharp = _interopRequireDefault(require("./ContentCutSharp")); + +var _ContentCutTwoTone = _interopRequireDefault(require("./ContentCutTwoTone")); + +var _ContentPaste = _interopRequireDefault(require("./ContentPaste")); + +var _ContentPasteOff = _interopRequireDefault(require("./ContentPasteOff")); + +var _ContentPasteOffOutlined = _interopRequireDefault(require("./ContentPasteOffOutlined")); + +var _ContentPasteOffRounded = _interopRequireDefault(require("./ContentPasteOffRounded")); + +var _ContentPasteOffSharp = _interopRequireDefault(require("./ContentPasteOffSharp")); + +var _ContentPasteOffTwoTone = _interopRequireDefault(require("./ContentPasteOffTwoTone")); + +var _ContentPasteOutlined = _interopRequireDefault(require("./ContentPasteOutlined")); + +var _ContentPasteRounded = _interopRequireDefault(require("./ContentPasteRounded")); + +var _ContentPasteSharp = _interopRequireDefault(require("./ContentPasteSharp")); + +var _ContentPasteTwoTone = _interopRequireDefault(require("./ContentPasteTwoTone")); + +var _ControlCamera = _interopRequireDefault(require("./ControlCamera")); + +var _ControlCameraOutlined = _interopRequireDefault(require("./ControlCameraOutlined")); + +var _ControlCameraRounded = _interopRequireDefault(require("./ControlCameraRounded")); + +var _ControlCameraSharp = _interopRequireDefault(require("./ControlCameraSharp")); + +var _ControlCameraTwoTone = _interopRequireDefault(require("./ControlCameraTwoTone")); + +var _ControlPoint = _interopRequireDefault(require("./ControlPoint")); + +var _ControlPointDuplicate = _interopRequireDefault(require("./ControlPointDuplicate")); + +var _ControlPointDuplicateOutlined = _interopRequireDefault(require("./ControlPointDuplicateOutlined")); + +var _ControlPointDuplicateRounded = _interopRequireDefault(require("./ControlPointDuplicateRounded")); + +var _ControlPointDuplicateSharp = _interopRequireDefault(require("./ControlPointDuplicateSharp")); + +var _ControlPointDuplicateTwoTone = _interopRequireDefault(require("./ControlPointDuplicateTwoTone")); + +var _ControlPointOutlined = _interopRequireDefault(require("./ControlPointOutlined")); + +var _ControlPointRounded = _interopRequireDefault(require("./ControlPointRounded")); + +var _ControlPointSharp = _interopRequireDefault(require("./ControlPointSharp")); + +var _ControlPointTwoTone = _interopRequireDefault(require("./ControlPointTwoTone")); + +var _CopyAll = _interopRequireDefault(require("./CopyAll")); + +var _CopyAllOutlined = _interopRequireDefault(require("./CopyAllOutlined")); + +var _CopyAllRounded = _interopRequireDefault(require("./CopyAllRounded")); + +var _CopyAllSharp = _interopRequireDefault(require("./CopyAllSharp")); + +var _CopyAllTwoTone = _interopRequireDefault(require("./CopyAllTwoTone")); + +var _Copyright = _interopRequireDefault(require("./Copyright")); + +var _CopyrightOutlined = _interopRequireDefault(require("./CopyrightOutlined")); + +var _CopyrightRounded = _interopRequireDefault(require("./CopyrightRounded")); + +var _CopyrightSharp = _interopRequireDefault(require("./CopyrightSharp")); + +var _CopyrightTwoTone = _interopRequireDefault(require("./CopyrightTwoTone")); + +var _Coronavirus = _interopRequireDefault(require("./Coronavirus")); + +var _CoronavirusOutlined = _interopRequireDefault(require("./CoronavirusOutlined")); + +var _CoronavirusRounded = _interopRequireDefault(require("./CoronavirusRounded")); + +var _CoronavirusSharp = _interopRequireDefault(require("./CoronavirusSharp")); + +var _CoronavirusTwoTone = _interopRequireDefault(require("./CoronavirusTwoTone")); + +var _CorporateFare = _interopRequireDefault(require("./CorporateFare")); + +var _CorporateFareOutlined = _interopRequireDefault(require("./CorporateFareOutlined")); + +var _CorporateFareRounded = _interopRequireDefault(require("./CorporateFareRounded")); + +var _CorporateFareSharp = _interopRequireDefault(require("./CorporateFareSharp")); + +var _CorporateFareTwoTone = _interopRequireDefault(require("./CorporateFareTwoTone")); + +var _Cottage = _interopRequireDefault(require("./Cottage")); + +var _CottageOutlined = _interopRequireDefault(require("./CottageOutlined")); + +var _CottageRounded = _interopRequireDefault(require("./CottageRounded")); + +var _CottageSharp = _interopRequireDefault(require("./CottageSharp")); + +var _CottageTwoTone = _interopRequireDefault(require("./CottageTwoTone")); + +var _Countertops = _interopRequireDefault(require("./Countertops")); + +var _CountertopsOutlined = _interopRequireDefault(require("./CountertopsOutlined")); + +var _CountertopsRounded = _interopRequireDefault(require("./CountertopsRounded")); + +var _CountertopsSharp = _interopRequireDefault(require("./CountertopsSharp")); + +var _CountertopsTwoTone = _interopRequireDefault(require("./CountertopsTwoTone")); + +var _Create = _interopRequireDefault(require("./Create")); + +var _CreateNewFolder = _interopRequireDefault(require("./CreateNewFolder")); + +var _CreateNewFolderOutlined = _interopRequireDefault(require("./CreateNewFolderOutlined")); + +var _CreateNewFolderRounded = _interopRequireDefault(require("./CreateNewFolderRounded")); + +var _CreateNewFolderSharp = _interopRequireDefault(require("./CreateNewFolderSharp")); + +var _CreateNewFolderTwoTone = _interopRequireDefault(require("./CreateNewFolderTwoTone")); + +var _CreateOutlined = _interopRequireDefault(require("./CreateOutlined")); + +var _CreateRounded = _interopRequireDefault(require("./CreateRounded")); + +var _CreateSharp = _interopRequireDefault(require("./CreateSharp")); + +var _CreateTwoTone = _interopRequireDefault(require("./CreateTwoTone")); + +var _CreditCard = _interopRequireDefault(require("./CreditCard")); + +var _CreditCardOff = _interopRequireDefault(require("./CreditCardOff")); + +var _CreditCardOffOutlined = _interopRequireDefault(require("./CreditCardOffOutlined")); + +var _CreditCardOffRounded = _interopRequireDefault(require("./CreditCardOffRounded")); + +var _CreditCardOffSharp = _interopRequireDefault(require("./CreditCardOffSharp")); + +var _CreditCardOffTwoTone = _interopRequireDefault(require("./CreditCardOffTwoTone")); + +var _CreditCardOutlined = _interopRequireDefault(require("./CreditCardOutlined")); + +var _CreditCardRounded = _interopRequireDefault(require("./CreditCardRounded")); + +var _CreditCardSharp = _interopRequireDefault(require("./CreditCardSharp")); + +var _CreditCardTwoTone = _interopRequireDefault(require("./CreditCardTwoTone")); + +var _CreditScore = _interopRequireDefault(require("./CreditScore")); + +var _CreditScoreOutlined = _interopRequireDefault(require("./CreditScoreOutlined")); + +var _CreditScoreRounded = _interopRequireDefault(require("./CreditScoreRounded")); + +var _CreditScoreSharp = _interopRequireDefault(require("./CreditScoreSharp")); + +var _CreditScoreTwoTone = _interopRequireDefault(require("./CreditScoreTwoTone")); + +var _Crib = _interopRequireDefault(require("./Crib")); + +var _CribOutlined = _interopRequireDefault(require("./CribOutlined")); + +var _CribRounded = _interopRequireDefault(require("./CribRounded")); + +var _CribSharp = _interopRequireDefault(require("./CribSharp")); + +var _CribTwoTone = _interopRequireDefault(require("./CribTwoTone")); + +var _Crop = _interopRequireDefault(require("./Crop")); + +var _Crop2 = _interopRequireDefault(require("./Crop169")); + +var _Crop169Outlined = _interopRequireDefault(require("./Crop169Outlined")); + +var _Crop169Rounded = _interopRequireDefault(require("./Crop169Rounded")); + +var _Crop169Sharp = _interopRequireDefault(require("./Crop169Sharp")); + +var _Crop169TwoTone = _interopRequireDefault(require("./Crop169TwoTone")); + +var _Crop3 = _interopRequireDefault(require("./Crop32")); + +var _Crop32Outlined = _interopRequireDefault(require("./Crop32Outlined")); + +var _Crop32Rounded = _interopRequireDefault(require("./Crop32Rounded")); + +var _Crop32Sharp = _interopRequireDefault(require("./Crop32Sharp")); + +var _Crop32TwoTone = _interopRequireDefault(require("./Crop32TwoTone")); + +var _Crop4 = _interopRequireDefault(require("./Crop54")); + +var _Crop54Outlined = _interopRequireDefault(require("./Crop54Outlined")); + +var _Crop54Rounded = _interopRequireDefault(require("./Crop54Rounded")); + +var _Crop54Sharp = _interopRequireDefault(require("./Crop54Sharp")); + +var _Crop54TwoTone = _interopRequireDefault(require("./Crop54TwoTone")); + +var _Crop5 = _interopRequireDefault(require("./Crop75")); + +var _Crop75Outlined = _interopRequireDefault(require("./Crop75Outlined")); + +var _Crop75Rounded = _interopRequireDefault(require("./Crop75Rounded")); + +var _Crop75Sharp = _interopRequireDefault(require("./Crop75Sharp")); + +var _Crop75TwoTone = _interopRequireDefault(require("./Crop75TwoTone")); + +var _CropDin = _interopRequireDefault(require("./CropDin")); + +var _CropDinOutlined = _interopRequireDefault(require("./CropDinOutlined")); + +var _CropDinRounded = _interopRequireDefault(require("./CropDinRounded")); + +var _CropDinSharp = _interopRequireDefault(require("./CropDinSharp")); + +var _CropDinTwoTone = _interopRequireDefault(require("./CropDinTwoTone")); + +var _CropFree = _interopRequireDefault(require("./CropFree")); + +var _CropFreeOutlined = _interopRequireDefault(require("./CropFreeOutlined")); + +var _CropFreeRounded = _interopRequireDefault(require("./CropFreeRounded")); + +var _CropFreeSharp = _interopRequireDefault(require("./CropFreeSharp")); + +var _CropFreeTwoTone = _interopRequireDefault(require("./CropFreeTwoTone")); + +var _CropLandscape = _interopRequireDefault(require("./CropLandscape")); + +var _CropLandscapeOutlined = _interopRequireDefault(require("./CropLandscapeOutlined")); + +var _CropLandscapeRounded = _interopRequireDefault(require("./CropLandscapeRounded")); + +var _CropLandscapeSharp = _interopRequireDefault(require("./CropLandscapeSharp")); + +var _CropLandscapeTwoTone = _interopRequireDefault(require("./CropLandscapeTwoTone")); + +var _CropOriginal = _interopRequireDefault(require("./CropOriginal")); + +var _CropOriginalOutlined = _interopRequireDefault(require("./CropOriginalOutlined")); + +var _CropOriginalRounded = _interopRequireDefault(require("./CropOriginalRounded")); + +var _CropOriginalSharp = _interopRequireDefault(require("./CropOriginalSharp")); + +var _CropOriginalTwoTone = _interopRequireDefault(require("./CropOriginalTwoTone")); + +var _CropOutlined = _interopRequireDefault(require("./CropOutlined")); + +var _CropPortrait = _interopRequireDefault(require("./CropPortrait")); + +var _CropPortraitOutlined = _interopRequireDefault(require("./CropPortraitOutlined")); + +var _CropPortraitRounded = _interopRequireDefault(require("./CropPortraitRounded")); + +var _CropPortraitSharp = _interopRequireDefault(require("./CropPortraitSharp")); + +var _CropPortraitTwoTone = _interopRequireDefault(require("./CropPortraitTwoTone")); + +var _CropRotate = _interopRequireDefault(require("./CropRotate")); + +var _CropRotateOutlined = _interopRequireDefault(require("./CropRotateOutlined")); + +var _CropRotateRounded = _interopRequireDefault(require("./CropRotateRounded")); + +var _CropRotateSharp = _interopRequireDefault(require("./CropRotateSharp")); + +var _CropRotateTwoTone = _interopRequireDefault(require("./CropRotateTwoTone")); + +var _CropRounded = _interopRequireDefault(require("./CropRounded")); + +var _CropSharp = _interopRequireDefault(require("./CropSharp")); + +var _CropSquare = _interopRequireDefault(require("./CropSquare")); + +var _CropSquareOutlined = _interopRequireDefault(require("./CropSquareOutlined")); + +var _CropSquareRounded = _interopRequireDefault(require("./CropSquareRounded")); + +var _CropSquareSharp = _interopRequireDefault(require("./CropSquareSharp")); + +var _CropSquareTwoTone = _interopRequireDefault(require("./CropSquareTwoTone")); + +var _CropTwoTone = _interopRequireDefault(require("./CropTwoTone")); + +var _Dangerous = _interopRequireDefault(require("./Dangerous")); + +var _DangerousOutlined = _interopRequireDefault(require("./DangerousOutlined")); + +var _DangerousRounded = _interopRequireDefault(require("./DangerousRounded")); + +var _DangerousSharp = _interopRequireDefault(require("./DangerousSharp")); + +var _DangerousTwoTone = _interopRequireDefault(require("./DangerousTwoTone")); + +var _DarkMode = _interopRequireDefault(require("./DarkMode")); + +var _DarkModeOutlined = _interopRequireDefault(require("./DarkModeOutlined")); + +var _DarkModeRounded = _interopRequireDefault(require("./DarkModeRounded")); + +var _DarkModeSharp = _interopRequireDefault(require("./DarkModeSharp")); + +var _DarkModeTwoTone = _interopRequireDefault(require("./DarkModeTwoTone")); + +var _Dashboard = _interopRequireDefault(require("./Dashboard")); + +var _DashboardCustomize = _interopRequireDefault(require("./DashboardCustomize")); + +var _DashboardCustomizeOutlined = _interopRequireDefault(require("./DashboardCustomizeOutlined")); + +var _DashboardCustomizeRounded = _interopRequireDefault(require("./DashboardCustomizeRounded")); + +var _DashboardCustomizeSharp = _interopRequireDefault(require("./DashboardCustomizeSharp")); + +var _DashboardCustomizeTwoTone = _interopRequireDefault(require("./DashboardCustomizeTwoTone")); + +var _DashboardOutlined = _interopRequireDefault(require("./DashboardOutlined")); + +var _DashboardRounded = _interopRequireDefault(require("./DashboardRounded")); + +var _DashboardSharp = _interopRequireDefault(require("./DashboardSharp")); + +var _DashboardTwoTone = _interopRequireDefault(require("./DashboardTwoTone")); + +var _DataSaverOff = _interopRequireDefault(require("./DataSaverOff")); + +var _DataSaverOffOutlined = _interopRequireDefault(require("./DataSaverOffOutlined")); + +var _DataSaverOffRounded = _interopRequireDefault(require("./DataSaverOffRounded")); + +var _DataSaverOffSharp = _interopRequireDefault(require("./DataSaverOffSharp")); + +var _DataSaverOffTwoTone = _interopRequireDefault(require("./DataSaverOffTwoTone")); + +var _DataSaverOn = _interopRequireDefault(require("./DataSaverOn")); + +var _DataSaverOnOutlined = _interopRequireDefault(require("./DataSaverOnOutlined")); + +var _DataSaverOnRounded = _interopRequireDefault(require("./DataSaverOnRounded")); + +var _DataSaverOnSharp = _interopRequireDefault(require("./DataSaverOnSharp")); + +var _DataSaverOnTwoTone = _interopRequireDefault(require("./DataSaverOnTwoTone")); + +var _DataUsage = _interopRequireDefault(require("./DataUsage")); + +var _DataUsageOutlined = _interopRequireDefault(require("./DataUsageOutlined")); + +var _DataUsageRounded = _interopRequireDefault(require("./DataUsageRounded")); + +var _DataUsageSharp = _interopRequireDefault(require("./DataUsageSharp")); + +var _DataUsageTwoTone = _interopRequireDefault(require("./DataUsageTwoTone")); + +var _DateRange = _interopRequireDefault(require("./DateRange")); + +var _DateRangeOutlined = _interopRequireDefault(require("./DateRangeOutlined")); + +var _DateRangeRounded = _interopRequireDefault(require("./DateRangeRounded")); + +var _DateRangeSharp = _interopRequireDefault(require("./DateRangeSharp")); + +var _DateRangeTwoTone = _interopRequireDefault(require("./DateRangeTwoTone")); + +var _Deck = _interopRequireDefault(require("./Deck")); + +var _DeckOutlined = _interopRequireDefault(require("./DeckOutlined")); + +var _DeckRounded = _interopRequireDefault(require("./DeckRounded")); + +var _DeckSharp = _interopRequireDefault(require("./DeckSharp")); + +var _DeckTwoTone = _interopRequireDefault(require("./DeckTwoTone")); + +var _Dehaze = _interopRequireDefault(require("./Dehaze")); + +var _DehazeOutlined = _interopRequireDefault(require("./DehazeOutlined")); + +var _DehazeRounded = _interopRequireDefault(require("./DehazeRounded")); + +var _DehazeSharp = _interopRequireDefault(require("./DehazeSharp")); + +var _DehazeTwoTone = _interopRequireDefault(require("./DehazeTwoTone")); + +var _Delete = _interopRequireDefault(require("./Delete")); + +var _DeleteForever = _interopRequireDefault(require("./DeleteForever")); + +var _DeleteForeverOutlined = _interopRequireDefault(require("./DeleteForeverOutlined")); + +var _DeleteForeverRounded = _interopRequireDefault(require("./DeleteForeverRounded")); + +var _DeleteForeverSharp = _interopRequireDefault(require("./DeleteForeverSharp")); + +var _DeleteForeverTwoTone = _interopRequireDefault(require("./DeleteForeverTwoTone")); + +var _DeleteOutline = _interopRequireDefault(require("./DeleteOutline")); + +var _DeleteOutlineOutlined = _interopRequireDefault(require("./DeleteOutlineOutlined")); + +var _DeleteOutlineRounded = _interopRequireDefault(require("./DeleteOutlineRounded")); + +var _DeleteOutlineSharp = _interopRequireDefault(require("./DeleteOutlineSharp")); + +var _DeleteOutlineTwoTone = _interopRequireDefault(require("./DeleteOutlineTwoTone")); + +var _DeleteOutlined = _interopRequireDefault(require("./DeleteOutlined")); + +var _DeleteRounded = _interopRequireDefault(require("./DeleteRounded")); + +var _DeleteSharp = _interopRequireDefault(require("./DeleteSharp")); + +var _DeleteSweep = _interopRequireDefault(require("./DeleteSweep")); + +var _DeleteSweepOutlined = _interopRequireDefault(require("./DeleteSweepOutlined")); + +var _DeleteSweepRounded = _interopRequireDefault(require("./DeleteSweepRounded")); + +var _DeleteSweepSharp = _interopRequireDefault(require("./DeleteSweepSharp")); + +var _DeleteSweepTwoTone = _interopRequireDefault(require("./DeleteSweepTwoTone")); + +var _DeleteTwoTone = _interopRequireDefault(require("./DeleteTwoTone")); + +var _DeliveryDining = _interopRequireDefault(require("./DeliveryDining")); + +var _DeliveryDiningOutlined = _interopRequireDefault(require("./DeliveryDiningOutlined")); + +var _DeliveryDiningRounded = _interopRequireDefault(require("./DeliveryDiningRounded")); + +var _DeliveryDiningSharp = _interopRequireDefault(require("./DeliveryDiningSharp")); + +var _DeliveryDiningTwoTone = _interopRequireDefault(require("./DeliveryDiningTwoTone")); + +var _DepartureBoard = _interopRequireDefault(require("./DepartureBoard")); + +var _DepartureBoardOutlined = _interopRequireDefault(require("./DepartureBoardOutlined")); + +var _DepartureBoardRounded = _interopRequireDefault(require("./DepartureBoardRounded")); + +var _DepartureBoardSharp = _interopRequireDefault(require("./DepartureBoardSharp")); + +var _DepartureBoardTwoTone = _interopRequireDefault(require("./DepartureBoardTwoTone")); + +var _Description = _interopRequireDefault(require("./Description")); + +var _DescriptionOutlined = _interopRequireDefault(require("./DescriptionOutlined")); + +var _DescriptionRounded = _interopRequireDefault(require("./DescriptionRounded")); + +var _DescriptionSharp = _interopRequireDefault(require("./DescriptionSharp")); + +var _DescriptionTwoTone = _interopRequireDefault(require("./DescriptionTwoTone")); + +var _DesignServices = _interopRequireDefault(require("./DesignServices")); + +var _DesignServicesOutlined = _interopRequireDefault(require("./DesignServicesOutlined")); + +var _DesignServicesRounded = _interopRequireDefault(require("./DesignServicesRounded")); + +var _DesignServicesSharp = _interopRequireDefault(require("./DesignServicesSharp")); + +var _DesignServicesTwoTone = _interopRequireDefault(require("./DesignServicesTwoTone")); + +var _DesktopAccessDisabled = _interopRequireDefault(require("./DesktopAccessDisabled")); + +var _DesktopAccessDisabledOutlined = _interopRequireDefault(require("./DesktopAccessDisabledOutlined")); + +var _DesktopAccessDisabledRounded = _interopRequireDefault(require("./DesktopAccessDisabledRounded")); + +var _DesktopAccessDisabledSharp = _interopRequireDefault(require("./DesktopAccessDisabledSharp")); + +var _DesktopAccessDisabledTwoTone = _interopRequireDefault(require("./DesktopAccessDisabledTwoTone")); + +var _DesktopMac = _interopRequireDefault(require("./DesktopMac")); + +var _DesktopMacOutlined = _interopRequireDefault(require("./DesktopMacOutlined")); + +var _DesktopMacRounded = _interopRequireDefault(require("./DesktopMacRounded")); + +var _DesktopMacSharp = _interopRequireDefault(require("./DesktopMacSharp")); + +var _DesktopMacTwoTone = _interopRequireDefault(require("./DesktopMacTwoTone")); + +var _DesktopWindows = _interopRequireDefault(require("./DesktopWindows")); + +var _DesktopWindowsOutlined = _interopRequireDefault(require("./DesktopWindowsOutlined")); + +var _DesktopWindowsRounded = _interopRequireDefault(require("./DesktopWindowsRounded")); + +var _DesktopWindowsSharp = _interopRequireDefault(require("./DesktopWindowsSharp")); + +var _DesktopWindowsTwoTone = _interopRequireDefault(require("./DesktopWindowsTwoTone")); + +var _Details = _interopRequireDefault(require("./Details")); + +var _DetailsOutlined = _interopRequireDefault(require("./DetailsOutlined")); + +var _DetailsRounded = _interopRequireDefault(require("./DetailsRounded")); + +var _DetailsSharp = _interopRequireDefault(require("./DetailsSharp")); + +var _DetailsTwoTone = _interopRequireDefault(require("./DetailsTwoTone")); + +var _DeveloperBoard = _interopRequireDefault(require("./DeveloperBoard")); + +var _DeveloperBoardOff = _interopRequireDefault(require("./DeveloperBoardOff")); + +var _DeveloperBoardOffOutlined = _interopRequireDefault(require("./DeveloperBoardOffOutlined")); + +var _DeveloperBoardOffRounded = _interopRequireDefault(require("./DeveloperBoardOffRounded")); + +var _DeveloperBoardOffSharp = _interopRequireDefault(require("./DeveloperBoardOffSharp")); + +var _DeveloperBoardOffTwoTone = _interopRequireDefault(require("./DeveloperBoardOffTwoTone")); + +var _DeveloperBoardOutlined = _interopRequireDefault(require("./DeveloperBoardOutlined")); + +var _DeveloperBoardRounded = _interopRequireDefault(require("./DeveloperBoardRounded")); + +var _DeveloperBoardSharp = _interopRequireDefault(require("./DeveloperBoardSharp")); + +var _DeveloperBoardTwoTone = _interopRequireDefault(require("./DeveloperBoardTwoTone")); + +var _DeveloperMode = _interopRequireDefault(require("./DeveloperMode")); + +var _DeveloperModeOutlined = _interopRequireDefault(require("./DeveloperModeOutlined")); + +var _DeveloperModeRounded = _interopRequireDefault(require("./DeveloperModeRounded")); + +var _DeveloperModeSharp = _interopRequireDefault(require("./DeveloperModeSharp")); + +var _DeveloperModeTwoTone = _interopRequireDefault(require("./DeveloperModeTwoTone")); + +var _DeviceHub = _interopRequireDefault(require("./DeviceHub")); + +var _DeviceHubOutlined = _interopRequireDefault(require("./DeviceHubOutlined")); + +var _DeviceHubRounded = _interopRequireDefault(require("./DeviceHubRounded")); + +var _DeviceHubSharp = _interopRequireDefault(require("./DeviceHubSharp")); + +var _DeviceHubTwoTone = _interopRequireDefault(require("./DeviceHubTwoTone")); + +var _DeviceThermostat = _interopRequireDefault(require("./DeviceThermostat")); + +var _DeviceThermostatOutlined = _interopRequireDefault(require("./DeviceThermostatOutlined")); + +var _DeviceThermostatRounded = _interopRequireDefault(require("./DeviceThermostatRounded")); + +var _DeviceThermostatSharp = _interopRequireDefault(require("./DeviceThermostatSharp")); + +var _DeviceThermostatTwoTone = _interopRequireDefault(require("./DeviceThermostatTwoTone")); + +var _DeviceUnknown = _interopRequireDefault(require("./DeviceUnknown")); + +var _DeviceUnknownOutlined = _interopRequireDefault(require("./DeviceUnknownOutlined")); + +var _DeviceUnknownRounded = _interopRequireDefault(require("./DeviceUnknownRounded")); + +var _DeviceUnknownSharp = _interopRequireDefault(require("./DeviceUnknownSharp")); + +var _DeviceUnknownTwoTone = _interopRequireDefault(require("./DeviceUnknownTwoTone")); + +var _Devices = _interopRequireDefault(require("./Devices")); + +var _DevicesOther = _interopRequireDefault(require("./DevicesOther")); + +var _DevicesOtherOutlined = _interopRequireDefault(require("./DevicesOtherOutlined")); + +var _DevicesOtherRounded = _interopRequireDefault(require("./DevicesOtherRounded")); + +var _DevicesOtherSharp = _interopRequireDefault(require("./DevicesOtherSharp")); + +var _DevicesOtherTwoTone = _interopRequireDefault(require("./DevicesOtherTwoTone")); + +var _DevicesOutlined = _interopRequireDefault(require("./DevicesOutlined")); + +var _DevicesRounded = _interopRequireDefault(require("./DevicesRounded")); + +var _DevicesSharp = _interopRequireDefault(require("./DevicesSharp")); + +var _DevicesTwoTone = _interopRequireDefault(require("./DevicesTwoTone")); + +var _DialerSip = _interopRequireDefault(require("./DialerSip")); + +var _DialerSipOutlined = _interopRequireDefault(require("./DialerSipOutlined")); + +var _DialerSipRounded = _interopRequireDefault(require("./DialerSipRounded")); + +var _DialerSipSharp = _interopRequireDefault(require("./DialerSipSharp")); + +var _DialerSipTwoTone = _interopRequireDefault(require("./DialerSipTwoTone")); + +var _Dialpad = _interopRequireDefault(require("./Dialpad")); + +var _DialpadOutlined = _interopRequireDefault(require("./DialpadOutlined")); + +var _DialpadRounded = _interopRequireDefault(require("./DialpadRounded")); + +var _DialpadSharp = _interopRequireDefault(require("./DialpadSharp")); + +var _DialpadTwoTone = _interopRequireDefault(require("./DialpadTwoTone")); + +var _Dining = _interopRequireDefault(require("./Dining")); + +var _DiningOutlined = _interopRequireDefault(require("./DiningOutlined")); + +var _DiningRounded = _interopRequireDefault(require("./DiningRounded")); + +var _DiningSharp = _interopRequireDefault(require("./DiningSharp")); + +var _DiningTwoTone = _interopRequireDefault(require("./DiningTwoTone")); + +var _DinnerDining = _interopRequireDefault(require("./DinnerDining")); + +var _DinnerDiningOutlined = _interopRequireDefault(require("./DinnerDiningOutlined")); + +var _DinnerDiningRounded = _interopRequireDefault(require("./DinnerDiningRounded")); + +var _DinnerDiningSharp = _interopRequireDefault(require("./DinnerDiningSharp")); + +var _DinnerDiningTwoTone = _interopRequireDefault(require("./DinnerDiningTwoTone")); + +var _Directions = _interopRequireDefault(require("./Directions")); + +var _DirectionsBike = _interopRequireDefault(require("./DirectionsBike")); + +var _DirectionsBikeOutlined = _interopRequireDefault(require("./DirectionsBikeOutlined")); + +var _DirectionsBikeRounded = _interopRequireDefault(require("./DirectionsBikeRounded")); + +var _DirectionsBikeSharp = _interopRequireDefault(require("./DirectionsBikeSharp")); + +var _DirectionsBikeTwoTone = _interopRequireDefault(require("./DirectionsBikeTwoTone")); + +var _DirectionsBoat = _interopRequireDefault(require("./DirectionsBoat")); + +var _DirectionsBoatFilled = _interopRequireDefault(require("./DirectionsBoatFilled")); + +var _DirectionsBoatFilledOutlined = _interopRequireDefault(require("./DirectionsBoatFilledOutlined")); + +var _DirectionsBoatFilledRounded = _interopRequireDefault(require("./DirectionsBoatFilledRounded")); + +var _DirectionsBoatFilledSharp = _interopRequireDefault(require("./DirectionsBoatFilledSharp")); + +var _DirectionsBoatFilledTwoTone = _interopRequireDefault(require("./DirectionsBoatFilledTwoTone")); + +var _DirectionsBoatOutlined = _interopRequireDefault(require("./DirectionsBoatOutlined")); + +var _DirectionsBoatRounded = _interopRequireDefault(require("./DirectionsBoatRounded")); + +var _DirectionsBoatSharp = _interopRequireDefault(require("./DirectionsBoatSharp")); + +var _DirectionsBoatTwoTone = _interopRequireDefault(require("./DirectionsBoatTwoTone")); + +var _DirectionsBus = _interopRequireDefault(require("./DirectionsBus")); + +var _DirectionsBusFilled = _interopRequireDefault(require("./DirectionsBusFilled")); + +var _DirectionsBusFilledOutlined = _interopRequireDefault(require("./DirectionsBusFilledOutlined")); + +var _DirectionsBusFilledRounded = _interopRequireDefault(require("./DirectionsBusFilledRounded")); + +var _DirectionsBusFilledSharp = _interopRequireDefault(require("./DirectionsBusFilledSharp")); + +var _DirectionsBusFilledTwoTone = _interopRequireDefault(require("./DirectionsBusFilledTwoTone")); + +var _DirectionsBusOutlined = _interopRequireDefault(require("./DirectionsBusOutlined")); + +var _DirectionsBusRounded = _interopRequireDefault(require("./DirectionsBusRounded")); + +var _DirectionsBusSharp = _interopRequireDefault(require("./DirectionsBusSharp")); + +var _DirectionsBusTwoTone = _interopRequireDefault(require("./DirectionsBusTwoTone")); + +var _DirectionsCar = _interopRequireDefault(require("./DirectionsCar")); + +var _DirectionsCarFilled = _interopRequireDefault(require("./DirectionsCarFilled")); + +var _DirectionsCarFilledOutlined = _interopRequireDefault(require("./DirectionsCarFilledOutlined")); + +var _DirectionsCarFilledRounded = _interopRequireDefault(require("./DirectionsCarFilledRounded")); + +var _DirectionsCarFilledSharp = _interopRequireDefault(require("./DirectionsCarFilledSharp")); + +var _DirectionsCarFilledTwoTone = _interopRequireDefault(require("./DirectionsCarFilledTwoTone")); + +var _DirectionsCarOutlined = _interopRequireDefault(require("./DirectionsCarOutlined")); + +var _DirectionsCarRounded = _interopRequireDefault(require("./DirectionsCarRounded")); + +var _DirectionsCarSharp = _interopRequireDefault(require("./DirectionsCarSharp")); + +var _DirectionsCarTwoTone = _interopRequireDefault(require("./DirectionsCarTwoTone")); + +var _DirectionsOff = _interopRequireDefault(require("./DirectionsOff")); + +var _DirectionsOffOutlined = _interopRequireDefault(require("./DirectionsOffOutlined")); + +var _DirectionsOffRounded = _interopRequireDefault(require("./DirectionsOffRounded")); + +var _DirectionsOffSharp = _interopRequireDefault(require("./DirectionsOffSharp")); + +var _DirectionsOffTwoTone = _interopRequireDefault(require("./DirectionsOffTwoTone")); + +var _DirectionsOutlined = _interopRequireDefault(require("./DirectionsOutlined")); + +var _DirectionsRailway = _interopRequireDefault(require("./DirectionsRailway")); + +var _DirectionsRailwayFilled = _interopRequireDefault(require("./DirectionsRailwayFilled")); + +var _DirectionsRailwayFilledOutlined = _interopRequireDefault(require("./DirectionsRailwayFilledOutlined")); + +var _DirectionsRailwayFilledRounded = _interopRequireDefault(require("./DirectionsRailwayFilledRounded")); + +var _DirectionsRailwayFilledSharp = _interopRequireDefault(require("./DirectionsRailwayFilledSharp")); + +var _DirectionsRailwayFilledTwoTone = _interopRequireDefault(require("./DirectionsRailwayFilledTwoTone")); + +var _DirectionsRailwayOutlined = _interopRequireDefault(require("./DirectionsRailwayOutlined")); + +var _DirectionsRailwayRounded = _interopRequireDefault(require("./DirectionsRailwayRounded")); + +var _DirectionsRailwaySharp = _interopRequireDefault(require("./DirectionsRailwaySharp")); + +var _DirectionsRailwayTwoTone = _interopRequireDefault(require("./DirectionsRailwayTwoTone")); + +var _DirectionsRounded = _interopRequireDefault(require("./DirectionsRounded")); + +var _DirectionsRun = _interopRequireDefault(require("./DirectionsRun")); + +var _DirectionsRunOutlined = _interopRequireDefault(require("./DirectionsRunOutlined")); + +var _DirectionsRunRounded = _interopRequireDefault(require("./DirectionsRunRounded")); + +var _DirectionsRunSharp = _interopRequireDefault(require("./DirectionsRunSharp")); + +var _DirectionsRunTwoTone = _interopRequireDefault(require("./DirectionsRunTwoTone")); + +var _DirectionsSharp = _interopRequireDefault(require("./DirectionsSharp")); + +var _DirectionsSubway = _interopRequireDefault(require("./DirectionsSubway")); + +var _DirectionsSubwayFilled = _interopRequireDefault(require("./DirectionsSubwayFilled")); + +var _DirectionsSubwayFilledOutlined = _interopRequireDefault(require("./DirectionsSubwayFilledOutlined")); + +var _DirectionsSubwayFilledRounded = _interopRequireDefault(require("./DirectionsSubwayFilledRounded")); + +var _DirectionsSubwayFilledSharp = _interopRequireDefault(require("./DirectionsSubwayFilledSharp")); + +var _DirectionsSubwayFilledTwoTone = _interopRequireDefault(require("./DirectionsSubwayFilledTwoTone")); + +var _DirectionsSubwayOutlined = _interopRequireDefault(require("./DirectionsSubwayOutlined")); + +var _DirectionsSubwayRounded = _interopRequireDefault(require("./DirectionsSubwayRounded")); + +var _DirectionsSubwaySharp = _interopRequireDefault(require("./DirectionsSubwaySharp")); + +var _DirectionsSubwayTwoTone = _interopRequireDefault(require("./DirectionsSubwayTwoTone")); + +var _DirectionsTransit = _interopRequireDefault(require("./DirectionsTransit")); + +var _DirectionsTransitFilled = _interopRequireDefault(require("./DirectionsTransitFilled")); + +var _DirectionsTransitFilledOutlined = _interopRequireDefault(require("./DirectionsTransitFilledOutlined")); + +var _DirectionsTransitFilledRounded = _interopRequireDefault(require("./DirectionsTransitFilledRounded")); + +var _DirectionsTransitFilledSharp = _interopRequireDefault(require("./DirectionsTransitFilledSharp")); + +var _DirectionsTransitFilledTwoTone = _interopRequireDefault(require("./DirectionsTransitFilledTwoTone")); + +var _DirectionsTransitOutlined = _interopRequireDefault(require("./DirectionsTransitOutlined")); + +var _DirectionsTransitRounded = _interopRequireDefault(require("./DirectionsTransitRounded")); + +var _DirectionsTransitSharp = _interopRequireDefault(require("./DirectionsTransitSharp")); + +var _DirectionsTransitTwoTone = _interopRequireDefault(require("./DirectionsTransitTwoTone")); + +var _DirectionsTwoTone = _interopRequireDefault(require("./DirectionsTwoTone")); + +var _DirectionsWalk = _interopRequireDefault(require("./DirectionsWalk")); + +var _DirectionsWalkOutlined = _interopRequireDefault(require("./DirectionsWalkOutlined")); + +var _DirectionsWalkRounded = _interopRequireDefault(require("./DirectionsWalkRounded")); + +var _DirectionsWalkSharp = _interopRequireDefault(require("./DirectionsWalkSharp")); + +var _DirectionsWalkTwoTone = _interopRequireDefault(require("./DirectionsWalkTwoTone")); + +var _DirtyLens = _interopRequireDefault(require("./DirtyLens")); + +var _DirtyLensOutlined = _interopRequireDefault(require("./DirtyLensOutlined")); + +var _DirtyLensRounded = _interopRequireDefault(require("./DirtyLensRounded")); + +var _DirtyLensSharp = _interopRequireDefault(require("./DirtyLensSharp")); + +var _DirtyLensTwoTone = _interopRequireDefault(require("./DirtyLensTwoTone")); + +var _DisabledByDefault = _interopRequireDefault(require("./DisabledByDefault")); + +var _DisabledByDefaultOutlined = _interopRequireDefault(require("./DisabledByDefaultOutlined")); + +var _DisabledByDefaultRounded = _interopRequireDefault(require("./DisabledByDefaultRounded")); + +var _DisabledByDefaultSharp = _interopRequireDefault(require("./DisabledByDefaultSharp")); + +var _DisabledByDefaultTwoTone = _interopRequireDefault(require("./DisabledByDefaultTwoTone")); + +var _DiscFull = _interopRequireDefault(require("./DiscFull")); + +var _DiscFullOutlined = _interopRequireDefault(require("./DiscFullOutlined")); + +var _DiscFullRounded = _interopRequireDefault(require("./DiscFullRounded")); + +var _DiscFullSharp = _interopRequireDefault(require("./DiscFullSharp")); + +var _DiscFullTwoTone = _interopRequireDefault(require("./DiscFullTwoTone")); + +var _Dns = _interopRequireDefault(require("./Dns")); + +var _DnsOutlined = _interopRequireDefault(require("./DnsOutlined")); + +var _DnsRounded = _interopRequireDefault(require("./DnsRounded")); + +var _DnsSharp = _interopRequireDefault(require("./DnsSharp")); + +var _DnsTwoTone = _interopRequireDefault(require("./DnsTwoTone")); + +var _DoDisturb = _interopRequireDefault(require("./DoDisturb")); + +var _DoDisturbAlt = _interopRequireDefault(require("./DoDisturbAlt")); + +var _DoDisturbAltOutlined = _interopRequireDefault(require("./DoDisturbAltOutlined")); + +var _DoDisturbAltRounded = _interopRequireDefault(require("./DoDisturbAltRounded")); + +var _DoDisturbAltSharp = _interopRequireDefault(require("./DoDisturbAltSharp")); + +var _DoDisturbAltTwoTone = _interopRequireDefault(require("./DoDisturbAltTwoTone")); + +var _DoDisturbOff = _interopRequireDefault(require("./DoDisturbOff")); + +var _DoDisturbOffOutlined = _interopRequireDefault(require("./DoDisturbOffOutlined")); + +var _DoDisturbOffRounded = _interopRequireDefault(require("./DoDisturbOffRounded")); + +var _DoDisturbOffSharp = _interopRequireDefault(require("./DoDisturbOffSharp")); + +var _DoDisturbOffTwoTone = _interopRequireDefault(require("./DoDisturbOffTwoTone")); + +var _DoDisturbOn = _interopRequireDefault(require("./DoDisturbOn")); + +var _DoDisturbOnOutlined = _interopRequireDefault(require("./DoDisturbOnOutlined")); + +var _DoDisturbOnRounded = _interopRequireDefault(require("./DoDisturbOnRounded")); + +var _DoDisturbOnSharp = _interopRequireDefault(require("./DoDisturbOnSharp")); + +var _DoDisturbOnTwoTone = _interopRequireDefault(require("./DoDisturbOnTwoTone")); + +var _DoDisturbOutlined = _interopRequireDefault(require("./DoDisturbOutlined")); + +var _DoDisturbRounded = _interopRequireDefault(require("./DoDisturbRounded")); + +var _DoDisturbSharp = _interopRequireDefault(require("./DoDisturbSharp")); + +var _DoDisturbTwoTone = _interopRequireDefault(require("./DoDisturbTwoTone")); + +var _DoNotDisturb = _interopRequireDefault(require("./DoNotDisturb")); + +var _DoNotDisturbAlt = _interopRequireDefault(require("./DoNotDisturbAlt")); + +var _DoNotDisturbAltOutlined = _interopRequireDefault(require("./DoNotDisturbAltOutlined")); + +var _DoNotDisturbAltRounded = _interopRequireDefault(require("./DoNotDisturbAltRounded")); + +var _DoNotDisturbAltSharp = _interopRequireDefault(require("./DoNotDisturbAltSharp")); + +var _DoNotDisturbAltTwoTone = _interopRequireDefault(require("./DoNotDisturbAltTwoTone")); + +var _DoNotDisturbOff = _interopRequireDefault(require("./DoNotDisturbOff")); + +var _DoNotDisturbOffOutlined = _interopRequireDefault(require("./DoNotDisturbOffOutlined")); + +var _DoNotDisturbOffRounded = _interopRequireDefault(require("./DoNotDisturbOffRounded")); + +var _DoNotDisturbOffSharp = _interopRequireDefault(require("./DoNotDisturbOffSharp")); + +var _DoNotDisturbOffTwoTone = _interopRequireDefault(require("./DoNotDisturbOffTwoTone")); + +var _DoNotDisturbOn = _interopRequireDefault(require("./DoNotDisturbOn")); + +var _DoNotDisturbOnOutlined = _interopRequireDefault(require("./DoNotDisturbOnOutlined")); + +var _DoNotDisturbOnRounded = _interopRequireDefault(require("./DoNotDisturbOnRounded")); + +var _DoNotDisturbOnSharp = _interopRequireDefault(require("./DoNotDisturbOnSharp")); + +var _DoNotDisturbOnTotalSilence = _interopRequireDefault(require("./DoNotDisturbOnTotalSilence")); + +var _DoNotDisturbOnTotalSilenceOutlined = _interopRequireDefault(require("./DoNotDisturbOnTotalSilenceOutlined")); + +var _DoNotDisturbOnTotalSilenceRounded = _interopRequireDefault(require("./DoNotDisturbOnTotalSilenceRounded")); + +var _DoNotDisturbOnTotalSilenceSharp = _interopRequireDefault(require("./DoNotDisturbOnTotalSilenceSharp")); + +var _DoNotDisturbOnTotalSilenceTwoTone = _interopRequireDefault(require("./DoNotDisturbOnTotalSilenceTwoTone")); + +var _DoNotDisturbOnTwoTone = _interopRequireDefault(require("./DoNotDisturbOnTwoTone")); + +var _DoNotDisturbOutlined = _interopRequireDefault(require("./DoNotDisturbOutlined")); + +var _DoNotDisturbRounded = _interopRequireDefault(require("./DoNotDisturbRounded")); + +var _DoNotDisturbSharp = _interopRequireDefault(require("./DoNotDisturbSharp")); + +var _DoNotDisturbTwoTone = _interopRequireDefault(require("./DoNotDisturbTwoTone")); + +var _DoNotStep = _interopRequireDefault(require("./DoNotStep")); + +var _DoNotStepOutlined = _interopRequireDefault(require("./DoNotStepOutlined")); + +var _DoNotStepRounded = _interopRequireDefault(require("./DoNotStepRounded")); + +var _DoNotStepSharp = _interopRequireDefault(require("./DoNotStepSharp")); + +var _DoNotStepTwoTone = _interopRequireDefault(require("./DoNotStepTwoTone")); + +var _DoNotTouch = _interopRequireDefault(require("./DoNotTouch")); + +var _DoNotTouchOutlined = _interopRequireDefault(require("./DoNotTouchOutlined")); + +var _DoNotTouchRounded = _interopRequireDefault(require("./DoNotTouchRounded")); + +var _DoNotTouchSharp = _interopRequireDefault(require("./DoNotTouchSharp")); + +var _DoNotTouchTwoTone = _interopRequireDefault(require("./DoNotTouchTwoTone")); + +var _Dock = _interopRequireDefault(require("./Dock")); + +var _DockOutlined = _interopRequireDefault(require("./DockOutlined")); + +var _DockRounded = _interopRequireDefault(require("./DockRounded")); + +var _DockSharp = _interopRequireDefault(require("./DockSharp")); + +var _DockTwoTone = _interopRequireDefault(require("./DockTwoTone")); + +var _DocumentScanner = _interopRequireDefault(require("./DocumentScanner")); + +var _DocumentScannerOutlined = _interopRequireDefault(require("./DocumentScannerOutlined")); + +var _DocumentScannerRounded = _interopRequireDefault(require("./DocumentScannerRounded")); + +var _DocumentScannerSharp = _interopRequireDefault(require("./DocumentScannerSharp")); + +var _DocumentScannerTwoTone = _interopRequireDefault(require("./DocumentScannerTwoTone")); + +var _Domain = _interopRequireDefault(require("./Domain")); + +var _DomainDisabled = _interopRequireDefault(require("./DomainDisabled")); + +var _DomainDisabledOutlined = _interopRequireDefault(require("./DomainDisabledOutlined")); + +var _DomainDisabledRounded = _interopRequireDefault(require("./DomainDisabledRounded")); + +var _DomainDisabledSharp = _interopRequireDefault(require("./DomainDisabledSharp")); + +var _DomainDisabledTwoTone = _interopRequireDefault(require("./DomainDisabledTwoTone")); + +var _DomainOutlined = _interopRequireDefault(require("./DomainOutlined")); + +var _DomainRounded = _interopRequireDefault(require("./DomainRounded")); + +var _DomainSharp = _interopRequireDefault(require("./DomainSharp")); + +var _DomainTwoTone = _interopRequireDefault(require("./DomainTwoTone")); + +var _DomainVerification = _interopRequireDefault(require("./DomainVerification")); + +var _DomainVerificationOutlined = _interopRequireDefault(require("./DomainVerificationOutlined")); + +var _DomainVerificationRounded = _interopRequireDefault(require("./DomainVerificationRounded")); + +var _DomainVerificationSharp = _interopRequireDefault(require("./DomainVerificationSharp")); + +var _DomainVerificationTwoTone = _interopRequireDefault(require("./DomainVerificationTwoTone")); + +var _Done = _interopRequireDefault(require("./Done")); + +var _DoneAll = _interopRequireDefault(require("./DoneAll")); + +var _DoneAllOutlined = _interopRequireDefault(require("./DoneAllOutlined")); + +var _DoneAllRounded = _interopRequireDefault(require("./DoneAllRounded")); + +var _DoneAllSharp = _interopRequireDefault(require("./DoneAllSharp")); + +var _DoneAllTwoTone = _interopRequireDefault(require("./DoneAllTwoTone")); + +var _DoneOutline = _interopRequireDefault(require("./DoneOutline")); + +var _DoneOutlineOutlined = _interopRequireDefault(require("./DoneOutlineOutlined")); + +var _DoneOutlineRounded = _interopRequireDefault(require("./DoneOutlineRounded")); + +var _DoneOutlineSharp = _interopRequireDefault(require("./DoneOutlineSharp")); + +var _DoneOutlineTwoTone = _interopRequireDefault(require("./DoneOutlineTwoTone")); + +var _DoneOutlined = _interopRequireDefault(require("./DoneOutlined")); + +var _DoneRounded = _interopRequireDefault(require("./DoneRounded")); + +var _DoneSharp = _interopRequireDefault(require("./DoneSharp")); + +var _DoneTwoTone = _interopRequireDefault(require("./DoneTwoTone")); + +var _DonutLarge = _interopRequireDefault(require("./DonutLarge")); + +var _DonutLargeOutlined = _interopRequireDefault(require("./DonutLargeOutlined")); + +var _DonutLargeRounded = _interopRequireDefault(require("./DonutLargeRounded")); + +var _DonutLargeSharp = _interopRequireDefault(require("./DonutLargeSharp")); + +var _DonutLargeTwoTone = _interopRequireDefault(require("./DonutLargeTwoTone")); + +var _DonutSmall = _interopRequireDefault(require("./DonutSmall")); + +var _DonutSmallOutlined = _interopRequireDefault(require("./DonutSmallOutlined")); + +var _DonutSmallRounded = _interopRequireDefault(require("./DonutSmallRounded")); + +var _DonutSmallSharp = _interopRequireDefault(require("./DonutSmallSharp")); + +var _DonutSmallTwoTone = _interopRequireDefault(require("./DonutSmallTwoTone")); + +var _DoorBack = _interopRequireDefault(require("./DoorBack")); + +var _DoorBackOutlined = _interopRequireDefault(require("./DoorBackOutlined")); + +var _DoorBackRounded = _interopRequireDefault(require("./DoorBackRounded")); + +var _DoorBackSharp = _interopRequireDefault(require("./DoorBackSharp")); + +var _DoorBackTwoTone = _interopRequireDefault(require("./DoorBackTwoTone")); + +var _DoorFront = _interopRequireDefault(require("./DoorFront")); + +var _DoorFrontOutlined = _interopRequireDefault(require("./DoorFrontOutlined")); + +var _DoorFrontRounded = _interopRequireDefault(require("./DoorFrontRounded")); + +var _DoorFrontSharp = _interopRequireDefault(require("./DoorFrontSharp")); + +var _DoorFrontTwoTone = _interopRequireDefault(require("./DoorFrontTwoTone")); + +var _DoorSliding = _interopRequireDefault(require("./DoorSliding")); + +var _DoorSlidingOutlined = _interopRequireDefault(require("./DoorSlidingOutlined")); + +var _DoorSlidingRounded = _interopRequireDefault(require("./DoorSlidingRounded")); + +var _DoorSlidingSharp = _interopRequireDefault(require("./DoorSlidingSharp")); + +var _DoorSlidingTwoTone = _interopRequireDefault(require("./DoorSlidingTwoTone")); + +var _Doorbell = _interopRequireDefault(require("./Doorbell")); + +var _DoorbellOutlined = _interopRequireDefault(require("./DoorbellOutlined")); + +var _DoorbellRounded = _interopRequireDefault(require("./DoorbellRounded")); + +var _DoorbellSharp = _interopRequireDefault(require("./DoorbellSharp")); + +var _DoorbellTwoTone = _interopRequireDefault(require("./DoorbellTwoTone")); + +var _DoubleArrow = _interopRequireDefault(require("./DoubleArrow")); + +var _DoubleArrowOutlined = _interopRequireDefault(require("./DoubleArrowOutlined")); + +var _DoubleArrowRounded = _interopRequireDefault(require("./DoubleArrowRounded")); + +var _DoubleArrowSharp = _interopRequireDefault(require("./DoubleArrowSharp")); + +var _DoubleArrowTwoTone = _interopRequireDefault(require("./DoubleArrowTwoTone")); + +var _DownhillSkiing = _interopRequireDefault(require("./DownhillSkiing")); + +var _DownhillSkiingOutlined = _interopRequireDefault(require("./DownhillSkiingOutlined")); + +var _DownhillSkiingRounded = _interopRequireDefault(require("./DownhillSkiingRounded")); + +var _DownhillSkiingSharp = _interopRequireDefault(require("./DownhillSkiingSharp")); + +var _DownhillSkiingTwoTone = _interopRequireDefault(require("./DownhillSkiingTwoTone")); + +var _Download = _interopRequireDefault(require("./Download")); + +var _DownloadDone = _interopRequireDefault(require("./DownloadDone")); + +var _DownloadDoneOutlined = _interopRequireDefault(require("./DownloadDoneOutlined")); + +var _DownloadDoneRounded = _interopRequireDefault(require("./DownloadDoneRounded")); + +var _DownloadDoneSharp = _interopRequireDefault(require("./DownloadDoneSharp")); + +var _DownloadDoneTwoTone = _interopRequireDefault(require("./DownloadDoneTwoTone")); + +var _DownloadForOffline = _interopRequireDefault(require("./DownloadForOffline")); + +var _DownloadForOfflineOutlined = _interopRequireDefault(require("./DownloadForOfflineOutlined")); + +var _DownloadForOfflineRounded = _interopRequireDefault(require("./DownloadForOfflineRounded")); + +var _DownloadForOfflineSharp = _interopRequireDefault(require("./DownloadForOfflineSharp")); + +var _DownloadForOfflineTwoTone = _interopRequireDefault(require("./DownloadForOfflineTwoTone")); + +var _DownloadOutlined = _interopRequireDefault(require("./DownloadOutlined")); + +var _DownloadRounded = _interopRequireDefault(require("./DownloadRounded")); + +var _DownloadSharp = _interopRequireDefault(require("./DownloadSharp")); + +var _DownloadTwoTone = _interopRequireDefault(require("./DownloadTwoTone")); + +var _Downloading = _interopRequireDefault(require("./Downloading")); + +var _DownloadingOutlined = _interopRequireDefault(require("./DownloadingOutlined")); + +var _DownloadingRounded = _interopRequireDefault(require("./DownloadingRounded")); + +var _DownloadingSharp = _interopRequireDefault(require("./DownloadingSharp")); + +var _DownloadingTwoTone = _interopRequireDefault(require("./DownloadingTwoTone")); + +var _Drafts = _interopRequireDefault(require("./Drafts")); + +var _DraftsOutlined = _interopRequireDefault(require("./DraftsOutlined")); + +var _DraftsRounded = _interopRequireDefault(require("./DraftsRounded")); + +var _DraftsSharp = _interopRequireDefault(require("./DraftsSharp")); + +var _DraftsTwoTone = _interopRequireDefault(require("./DraftsTwoTone")); + +var _DragHandle = _interopRequireDefault(require("./DragHandle")); + +var _DragHandleOutlined = _interopRequireDefault(require("./DragHandleOutlined")); + +var _DragHandleRounded = _interopRequireDefault(require("./DragHandleRounded")); + +var _DragHandleSharp = _interopRequireDefault(require("./DragHandleSharp")); + +var _DragHandleTwoTone = _interopRequireDefault(require("./DragHandleTwoTone")); + +var _DragIndicator = _interopRequireDefault(require("./DragIndicator")); + +var _DragIndicatorOutlined = _interopRequireDefault(require("./DragIndicatorOutlined")); + +var _DragIndicatorRounded = _interopRequireDefault(require("./DragIndicatorRounded")); + +var _DragIndicatorSharp = _interopRequireDefault(require("./DragIndicatorSharp")); + +var _DragIndicatorTwoTone = _interopRequireDefault(require("./DragIndicatorTwoTone")); + +var _DriveEta = _interopRequireDefault(require("./DriveEta")); + +var _DriveEtaOutlined = _interopRequireDefault(require("./DriveEtaOutlined")); + +var _DriveEtaRounded = _interopRequireDefault(require("./DriveEtaRounded")); + +var _DriveEtaSharp = _interopRequireDefault(require("./DriveEtaSharp")); + +var _DriveEtaTwoTone = _interopRequireDefault(require("./DriveEtaTwoTone")); + +var _DriveFileMove = _interopRequireDefault(require("./DriveFileMove")); + +var _DriveFileMoveOutlined = _interopRequireDefault(require("./DriveFileMoveOutlined")); + +var _DriveFileMoveRounded = _interopRequireDefault(require("./DriveFileMoveRounded")); + +var _DriveFileMoveSharp = _interopRequireDefault(require("./DriveFileMoveSharp")); + +var _DriveFileMoveTwoTone = _interopRequireDefault(require("./DriveFileMoveTwoTone")); + +var _DriveFileRenameOutline = _interopRequireDefault(require("./DriveFileRenameOutline")); + +var _DriveFileRenameOutlineOutlined = _interopRequireDefault(require("./DriveFileRenameOutlineOutlined")); + +var _DriveFileRenameOutlineRounded = _interopRequireDefault(require("./DriveFileRenameOutlineRounded")); + +var _DriveFileRenameOutlineSharp = _interopRequireDefault(require("./DriveFileRenameOutlineSharp")); + +var _DriveFileRenameOutlineTwoTone = _interopRequireDefault(require("./DriveFileRenameOutlineTwoTone")); + +var _DriveFolderUpload = _interopRequireDefault(require("./DriveFolderUpload")); + +var _DriveFolderUploadOutlined = _interopRequireDefault(require("./DriveFolderUploadOutlined")); + +var _DriveFolderUploadRounded = _interopRequireDefault(require("./DriveFolderUploadRounded")); + +var _DriveFolderUploadSharp = _interopRequireDefault(require("./DriveFolderUploadSharp")); + +var _DriveFolderUploadTwoTone = _interopRequireDefault(require("./DriveFolderUploadTwoTone")); + +var _Dry = _interopRequireDefault(require("./Dry")); + +var _DryCleaning = _interopRequireDefault(require("./DryCleaning")); + +var _DryCleaningOutlined = _interopRequireDefault(require("./DryCleaningOutlined")); + +var _DryCleaningRounded = _interopRequireDefault(require("./DryCleaningRounded")); + +var _DryCleaningSharp = _interopRequireDefault(require("./DryCleaningSharp")); + +var _DryCleaningTwoTone = _interopRequireDefault(require("./DryCleaningTwoTone")); + +var _DryOutlined = _interopRequireDefault(require("./DryOutlined")); + +var _DryRounded = _interopRequireDefault(require("./DryRounded")); + +var _DrySharp = _interopRequireDefault(require("./DrySharp")); + +var _DryTwoTone = _interopRequireDefault(require("./DryTwoTone")); + +var _Duo = _interopRequireDefault(require("./Duo")); + +var _DuoOutlined = _interopRequireDefault(require("./DuoOutlined")); + +var _DuoRounded = _interopRequireDefault(require("./DuoRounded")); + +var _DuoSharp = _interopRequireDefault(require("./DuoSharp")); + +var _DuoTwoTone = _interopRequireDefault(require("./DuoTwoTone")); + +var _Dvr = _interopRequireDefault(require("./Dvr")); + +var _DvrOutlined = _interopRequireDefault(require("./DvrOutlined")); + +var _DvrRounded = _interopRequireDefault(require("./DvrRounded")); + +var _DvrSharp = _interopRequireDefault(require("./DvrSharp")); + +var _DvrTwoTone = _interopRequireDefault(require("./DvrTwoTone")); + +var _DynamicFeed = _interopRequireDefault(require("./DynamicFeed")); + +var _DynamicFeedOutlined = _interopRequireDefault(require("./DynamicFeedOutlined")); + +var _DynamicFeedRounded = _interopRequireDefault(require("./DynamicFeedRounded")); + +var _DynamicFeedSharp = _interopRequireDefault(require("./DynamicFeedSharp")); + +var _DynamicFeedTwoTone = _interopRequireDefault(require("./DynamicFeedTwoTone")); + +var _DynamicForm = _interopRequireDefault(require("./DynamicForm")); + +var _DynamicFormOutlined = _interopRequireDefault(require("./DynamicFormOutlined")); + +var _DynamicFormRounded = _interopRequireDefault(require("./DynamicFormRounded")); + +var _DynamicFormSharp = _interopRequireDefault(require("./DynamicFormSharp")); + +var _DynamicFormTwoTone = _interopRequireDefault(require("./DynamicFormTwoTone")); + +var _EMobiledata = _interopRequireDefault(require("./EMobiledata")); + +var _EMobiledataOutlined = _interopRequireDefault(require("./EMobiledataOutlined")); + +var _EMobiledataRounded = _interopRequireDefault(require("./EMobiledataRounded")); + +var _EMobiledataSharp = _interopRequireDefault(require("./EMobiledataSharp")); + +var _EMobiledataTwoTone = _interopRequireDefault(require("./EMobiledataTwoTone")); + +var _Earbuds = _interopRequireDefault(require("./Earbuds")); + +var _EarbudsBattery = _interopRequireDefault(require("./EarbudsBattery")); + +var _EarbudsBatteryOutlined = _interopRequireDefault(require("./EarbudsBatteryOutlined")); + +var _EarbudsBatteryRounded = _interopRequireDefault(require("./EarbudsBatteryRounded")); + +var _EarbudsBatterySharp = _interopRequireDefault(require("./EarbudsBatterySharp")); + +var _EarbudsBatteryTwoTone = _interopRequireDefault(require("./EarbudsBatteryTwoTone")); + +var _EarbudsOutlined = _interopRequireDefault(require("./EarbudsOutlined")); + +var _EarbudsRounded = _interopRequireDefault(require("./EarbudsRounded")); + +var _EarbudsSharp = _interopRequireDefault(require("./EarbudsSharp")); + +var _EarbudsTwoTone = _interopRequireDefault(require("./EarbudsTwoTone")); + +var _East = _interopRequireDefault(require("./East")); + +var _EastOutlined = _interopRequireDefault(require("./EastOutlined")); + +var _EastRounded = _interopRequireDefault(require("./EastRounded")); + +var _EastSharp = _interopRequireDefault(require("./EastSharp")); + +var _EastTwoTone = _interopRequireDefault(require("./EastTwoTone")); + +var _EdgesensorHigh = _interopRequireDefault(require("./EdgesensorHigh")); + +var _EdgesensorHighOutlined = _interopRequireDefault(require("./EdgesensorHighOutlined")); + +var _EdgesensorHighRounded = _interopRequireDefault(require("./EdgesensorHighRounded")); + +var _EdgesensorHighSharp = _interopRequireDefault(require("./EdgesensorHighSharp")); + +var _EdgesensorHighTwoTone = _interopRequireDefault(require("./EdgesensorHighTwoTone")); + +var _EdgesensorLow = _interopRequireDefault(require("./EdgesensorLow")); + +var _EdgesensorLowOutlined = _interopRequireDefault(require("./EdgesensorLowOutlined")); + +var _EdgesensorLowRounded = _interopRequireDefault(require("./EdgesensorLowRounded")); + +var _EdgesensorLowSharp = _interopRequireDefault(require("./EdgesensorLowSharp")); + +var _EdgesensorLowTwoTone = _interopRequireDefault(require("./EdgesensorLowTwoTone")); + +var _Edit = _interopRequireDefault(require("./Edit")); + +var _EditAttributes = _interopRequireDefault(require("./EditAttributes")); + +var _EditAttributesOutlined = _interopRequireDefault(require("./EditAttributesOutlined")); + +var _EditAttributesRounded = _interopRequireDefault(require("./EditAttributesRounded")); + +var _EditAttributesSharp = _interopRequireDefault(require("./EditAttributesSharp")); + +var _EditAttributesTwoTone = _interopRequireDefault(require("./EditAttributesTwoTone")); + +var _EditLocation = _interopRequireDefault(require("./EditLocation")); + +var _EditLocationAlt = _interopRequireDefault(require("./EditLocationAlt")); + +var _EditLocationAltOutlined = _interopRequireDefault(require("./EditLocationAltOutlined")); + +var _EditLocationAltRounded = _interopRequireDefault(require("./EditLocationAltRounded")); + +var _EditLocationAltSharp = _interopRequireDefault(require("./EditLocationAltSharp")); + +var _EditLocationAltTwoTone = _interopRequireDefault(require("./EditLocationAltTwoTone")); + +var _EditLocationOutlined = _interopRequireDefault(require("./EditLocationOutlined")); + +var _EditLocationRounded = _interopRequireDefault(require("./EditLocationRounded")); + +var _EditLocationSharp = _interopRequireDefault(require("./EditLocationSharp")); + +var _EditLocationTwoTone = _interopRequireDefault(require("./EditLocationTwoTone")); + +var _EditNotifications = _interopRequireDefault(require("./EditNotifications")); + +var _EditNotificationsOutlined = _interopRequireDefault(require("./EditNotificationsOutlined")); + +var _EditNotificationsRounded = _interopRequireDefault(require("./EditNotificationsRounded")); + +var _EditNotificationsSharp = _interopRequireDefault(require("./EditNotificationsSharp")); + +var _EditNotificationsTwoTone = _interopRequireDefault(require("./EditNotificationsTwoTone")); + +var _EditOff = _interopRequireDefault(require("./EditOff")); + +var _EditOffOutlined = _interopRequireDefault(require("./EditOffOutlined")); + +var _EditOffRounded = _interopRequireDefault(require("./EditOffRounded")); + +var _EditOffSharp = _interopRequireDefault(require("./EditOffSharp")); + +var _EditOffTwoTone = _interopRequireDefault(require("./EditOffTwoTone")); + +var _EditOutlined = _interopRequireDefault(require("./EditOutlined")); + +var _EditRoad = _interopRequireDefault(require("./EditRoad")); + +var _EditRoadOutlined = _interopRequireDefault(require("./EditRoadOutlined")); + +var _EditRoadRounded = _interopRequireDefault(require("./EditRoadRounded")); + +var _EditRoadSharp = _interopRequireDefault(require("./EditRoadSharp")); + +var _EditRoadTwoTone = _interopRequireDefault(require("./EditRoadTwoTone")); + +var _EditRounded = _interopRequireDefault(require("./EditRounded")); + +var _EditSharp = _interopRequireDefault(require("./EditSharp")); + +var _EditTwoTone = _interopRequireDefault(require("./EditTwoTone")); + +var _EightK = _interopRequireDefault(require("./EightK")); + +var _EightKOutlined = _interopRequireDefault(require("./EightKOutlined")); + +var _EightKPlus = _interopRequireDefault(require("./EightKPlus")); + +var _EightKPlusOutlined = _interopRequireDefault(require("./EightKPlusOutlined")); + +var _EightKPlusRounded = _interopRequireDefault(require("./EightKPlusRounded")); + +var _EightKPlusSharp = _interopRequireDefault(require("./EightKPlusSharp")); + +var _EightKPlusTwoTone = _interopRequireDefault(require("./EightKPlusTwoTone")); + +var _EightKRounded = _interopRequireDefault(require("./EightKRounded")); + +var _EightKSharp = _interopRequireDefault(require("./EightKSharp")); + +var _EightKTwoTone = _interopRequireDefault(require("./EightKTwoTone")); + +var _EightMp = _interopRequireDefault(require("./EightMp")); + +var _EightMpOutlined = _interopRequireDefault(require("./EightMpOutlined")); + +var _EightMpRounded = _interopRequireDefault(require("./EightMpRounded")); + +var _EightMpSharp = _interopRequireDefault(require("./EightMpSharp")); + +var _EightMpTwoTone = _interopRequireDefault(require("./EightMpTwoTone")); + +var _EightteenMp = _interopRequireDefault(require("./EightteenMp")); + +var _EightteenMpOutlined = _interopRequireDefault(require("./EightteenMpOutlined")); + +var _EightteenMpRounded = _interopRequireDefault(require("./EightteenMpRounded")); + +var _EightteenMpSharp = _interopRequireDefault(require("./EightteenMpSharp")); + +var _EightteenMpTwoTone = _interopRequireDefault(require("./EightteenMpTwoTone")); + +var _Eject = _interopRequireDefault(require("./Eject")); + +var _EjectOutlined = _interopRequireDefault(require("./EjectOutlined")); + +var _EjectRounded = _interopRequireDefault(require("./EjectRounded")); + +var _EjectSharp = _interopRequireDefault(require("./EjectSharp")); + +var _EjectTwoTone = _interopRequireDefault(require("./EjectTwoTone")); + +var _Elderly = _interopRequireDefault(require("./Elderly")); + +var _ElderlyOutlined = _interopRequireDefault(require("./ElderlyOutlined")); + +var _ElderlyRounded = _interopRequireDefault(require("./ElderlyRounded")); + +var _ElderlySharp = _interopRequireDefault(require("./ElderlySharp")); + +var _ElderlyTwoTone = _interopRequireDefault(require("./ElderlyTwoTone")); + +var _ElectricBike = _interopRequireDefault(require("./ElectricBike")); + +var _ElectricBikeOutlined = _interopRequireDefault(require("./ElectricBikeOutlined")); + +var _ElectricBikeRounded = _interopRequireDefault(require("./ElectricBikeRounded")); + +var _ElectricBikeSharp = _interopRequireDefault(require("./ElectricBikeSharp")); + +var _ElectricBikeTwoTone = _interopRequireDefault(require("./ElectricBikeTwoTone")); + +var _ElectricCar = _interopRequireDefault(require("./ElectricCar")); + +var _ElectricCarOutlined = _interopRequireDefault(require("./ElectricCarOutlined")); + +var _ElectricCarRounded = _interopRequireDefault(require("./ElectricCarRounded")); + +var _ElectricCarSharp = _interopRequireDefault(require("./ElectricCarSharp")); + +var _ElectricCarTwoTone = _interopRequireDefault(require("./ElectricCarTwoTone")); + +var _ElectricMoped = _interopRequireDefault(require("./ElectricMoped")); + +var _ElectricMopedOutlined = _interopRequireDefault(require("./ElectricMopedOutlined")); + +var _ElectricMopedRounded = _interopRequireDefault(require("./ElectricMopedRounded")); + +var _ElectricMopedSharp = _interopRequireDefault(require("./ElectricMopedSharp")); + +var _ElectricMopedTwoTone = _interopRequireDefault(require("./ElectricMopedTwoTone")); + +var _ElectricRickshaw = _interopRequireDefault(require("./ElectricRickshaw")); + +var _ElectricRickshawOutlined = _interopRequireDefault(require("./ElectricRickshawOutlined")); + +var _ElectricRickshawRounded = _interopRequireDefault(require("./ElectricRickshawRounded")); + +var _ElectricRickshawSharp = _interopRequireDefault(require("./ElectricRickshawSharp")); + +var _ElectricRickshawTwoTone = _interopRequireDefault(require("./ElectricRickshawTwoTone")); + +var _ElectricScooter = _interopRequireDefault(require("./ElectricScooter")); + +var _ElectricScooterOutlined = _interopRequireDefault(require("./ElectricScooterOutlined")); + +var _ElectricScooterRounded = _interopRequireDefault(require("./ElectricScooterRounded")); + +var _ElectricScooterSharp = _interopRequireDefault(require("./ElectricScooterSharp")); + +var _ElectricScooterTwoTone = _interopRequireDefault(require("./ElectricScooterTwoTone")); + +var _ElectricalServices = _interopRequireDefault(require("./ElectricalServices")); + +var _ElectricalServicesOutlined = _interopRequireDefault(require("./ElectricalServicesOutlined")); + +var _ElectricalServicesRounded = _interopRequireDefault(require("./ElectricalServicesRounded")); + +var _ElectricalServicesSharp = _interopRequireDefault(require("./ElectricalServicesSharp")); + +var _ElectricalServicesTwoTone = _interopRequireDefault(require("./ElectricalServicesTwoTone")); + +var _Elevator = _interopRequireDefault(require("./Elevator")); + +var _ElevatorOutlined = _interopRequireDefault(require("./ElevatorOutlined")); + +var _ElevatorRounded = _interopRequireDefault(require("./ElevatorRounded")); + +var _ElevatorSharp = _interopRequireDefault(require("./ElevatorSharp")); + +var _ElevatorTwoTone = _interopRequireDefault(require("./ElevatorTwoTone")); + +var _ElevenMp = _interopRequireDefault(require("./ElevenMp")); + +var _ElevenMpOutlined = _interopRequireDefault(require("./ElevenMpOutlined")); + +var _ElevenMpRounded = _interopRequireDefault(require("./ElevenMpRounded")); + +var _ElevenMpSharp = _interopRequireDefault(require("./ElevenMpSharp")); + +var _ElevenMpTwoTone = _interopRequireDefault(require("./ElevenMpTwoTone")); + +var _Email = _interopRequireDefault(require("./Email")); + +var _EmailOutlined = _interopRequireDefault(require("./EmailOutlined")); + +var _EmailRounded = _interopRequireDefault(require("./EmailRounded")); + +var _EmailSharp = _interopRequireDefault(require("./EmailSharp")); + +var _EmailTwoTone = _interopRequireDefault(require("./EmailTwoTone")); + +var _EmojiEmotions = _interopRequireDefault(require("./EmojiEmotions")); + +var _EmojiEmotionsOutlined = _interopRequireDefault(require("./EmojiEmotionsOutlined")); + +var _EmojiEmotionsRounded = _interopRequireDefault(require("./EmojiEmotionsRounded")); + +var _EmojiEmotionsSharp = _interopRequireDefault(require("./EmojiEmotionsSharp")); + +var _EmojiEmotionsTwoTone = _interopRequireDefault(require("./EmojiEmotionsTwoTone")); + +var _EmojiEvents = _interopRequireDefault(require("./EmojiEvents")); + +var _EmojiEventsOutlined = _interopRequireDefault(require("./EmojiEventsOutlined")); + +var _EmojiEventsRounded = _interopRequireDefault(require("./EmojiEventsRounded")); + +var _EmojiEventsSharp = _interopRequireDefault(require("./EmojiEventsSharp")); + +var _EmojiEventsTwoTone = _interopRequireDefault(require("./EmojiEventsTwoTone")); + +var _EmojiFlags = _interopRequireDefault(require("./EmojiFlags")); + +var _EmojiFlagsOutlined = _interopRequireDefault(require("./EmojiFlagsOutlined")); + +var _EmojiFlagsRounded = _interopRequireDefault(require("./EmojiFlagsRounded")); + +var _EmojiFlagsSharp = _interopRequireDefault(require("./EmojiFlagsSharp")); + +var _EmojiFlagsTwoTone = _interopRequireDefault(require("./EmojiFlagsTwoTone")); + +var _EmojiFoodBeverage = _interopRequireDefault(require("./EmojiFoodBeverage")); + +var _EmojiFoodBeverageOutlined = _interopRequireDefault(require("./EmojiFoodBeverageOutlined")); + +var _EmojiFoodBeverageRounded = _interopRequireDefault(require("./EmojiFoodBeverageRounded")); + +var _EmojiFoodBeverageSharp = _interopRequireDefault(require("./EmojiFoodBeverageSharp")); + +var _EmojiFoodBeverageTwoTone = _interopRequireDefault(require("./EmojiFoodBeverageTwoTone")); + +var _EmojiNature = _interopRequireDefault(require("./EmojiNature")); + +var _EmojiNatureOutlined = _interopRequireDefault(require("./EmojiNatureOutlined")); + +var _EmojiNatureRounded = _interopRequireDefault(require("./EmojiNatureRounded")); + +var _EmojiNatureSharp = _interopRequireDefault(require("./EmojiNatureSharp")); + +var _EmojiNatureTwoTone = _interopRequireDefault(require("./EmojiNatureTwoTone")); + +var _EmojiObjects = _interopRequireDefault(require("./EmojiObjects")); + +var _EmojiObjectsOutlined = _interopRequireDefault(require("./EmojiObjectsOutlined")); + +var _EmojiObjectsRounded = _interopRequireDefault(require("./EmojiObjectsRounded")); + +var _EmojiObjectsSharp = _interopRequireDefault(require("./EmojiObjectsSharp")); + +var _EmojiObjectsTwoTone = _interopRequireDefault(require("./EmojiObjectsTwoTone")); + +var _EmojiPeople = _interopRequireDefault(require("./EmojiPeople")); + +var _EmojiPeopleOutlined = _interopRequireDefault(require("./EmojiPeopleOutlined")); + +var _EmojiPeopleRounded = _interopRequireDefault(require("./EmojiPeopleRounded")); + +var _EmojiPeopleSharp = _interopRequireDefault(require("./EmojiPeopleSharp")); + +var _EmojiPeopleTwoTone = _interopRequireDefault(require("./EmojiPeopleTwoTone")); + +var _EmojiSymbols = _interopRequireDefault(require("./EmojiSymbols")); + +var _EmojiSymbolsOutlined = _interopRequireDefault(require("./EmojiSymbolsOutlined")); + +var _EmojiSymbolsRounded = _interopRequireDefault(require("./EmojiSymbolsRounded")); + +var _EmojiSymbolsSharp = _interopRequireDefault(require("./EmojiSymbolsSharp")); + +var _EmojiSymbolsTwoTone = _interopRequireDefault(require("./EmojiSymbolsTwoTone")); + +var _EmojiTransportation = _interopRequireDefault(require("./EmojiTransportation")); + +var _EmojiTransportationOutlined = _interopRequireDefault(require("./EmojiTransportationOutlined")); + +var _EmojiTransportationRounded = _interopRequireDefault(require("./EmojiTransportationRounded")); + +var _EmojiTransportationSharp = _interopRequireDefault(require("./EmojiTransportationSharp")); + +var _EmojiTransportationTwoTone = _interopRequireDefault(require("./EmojiTransportationTwoTone")); + +var _Engineering = _interopRequireDefault(require("./Engineering")); + +var _EngineeringOutlined = _interopRequireDefault(require("./EngineeringOutlined")); + +var _EngineeringRounded = _interopRequireDefault(require("./EngineeringRounded")); + +var _EngineeringSharp = _interopRequireDefault(require("./EngineeringSharp")); + +var _EngineeringTwoTone = _interopRequireDefault(require("./EngineeringTwoTone")); + +var _EnhancedEncryption = _interopRequireDefault(require("./EnhancedEncryption")); + +var _EnhancedEncryptionOutlined = _interopRequireDefault(require("./EnhancedEncryptionOutlined")); + +var _EnhancedEncryptionRounded = _interopRequireDefault(require("./EnhancedEncryptionRounded")); + +var _EnhancedEncryptionSharp = _interopRequireDefault(require("./EnhancedEncryptionSharp")); + +var _EnhancedEncryptionTwoTone = _interopRequireDefault(require("./EnhancedEncryptionTwoTone")); + +var _Equalizer = _interopRequireDefault(require("./Equalizer")); + +var _EqualizerOutlined = _interopRequireDefault(require("./EqualizerOutlined")); + +var _EqualizerRounded = _interopRequireDefault(require("./EqualizerRounded")); + +var _EqualizerSharp = _interopRequireDefault(require("./EqualizerSharp")); + +var _EqualizerTwoTone = _interopRequireDefault(require("./EqualizerTwoTone")); + +var _Error = _interopRequireDefault(require("./Error")); + +var _ErrorOutline = _interopRequireDefault(require("./ErrorOutline")); + +var _ErrorOutlineOutlined = _interopRequireDefault(require("./ErrorOutlineOutlined")); + +var _ErrorOutlineRounded = _interopRequireDefault(require("./ErrorOutlineRounded")); + +var _ErrorOutlineSharp = _interopRequireDefault(require("./ErrorOutlineSharp")); + +var _ErrorOutlineTwoTone = _interopRequireDefault(require("./ErrorOutlineTwoTone")); + +var _ErrorOutlined = _interopRequireDefault(require("./ErrorOutlined")); + +var _ErrorRounded = _interopRequireDefault(require("./ErrorRounded")); + +var _ErrorSharp = _interopRequireDefault(require("./ErrorSharp")); + +var _ErrorTwoTone = _interopRequireDefault(require("./ErrorTwoTone")); + +var _Escalator = _interopRequireDefault(require("./Escalator")); + +var _EscalatorOutlined = _interopRequireDefault(require("./EscalatorOutlined")); + +var _EscalatorRounded = _interopRequireDefault(require("./EscalatorRounded")); + +var _EscalatorSharp = _interopRequireDefault(require("./EscalatorSharp")); + +var _EscalatorTwoTone = _interopRequireDefault(require("./EscalatorTwoTone")); + +var _EscalatorWarning = _interopRequireDefault(require("./EscalatorWarning")); + +var _EscalatorWarningOutlined = _interopRequireDefault(require("./EscalatorWarningOutlined")); + +var _EscalatorWarningRounded = _interopRequireDefault(require("./EscalatorWarningRounded")); + +var _EscalatorWarningSharp = _interopRequireDefault(require("./EscalatorWarningSharp")); + +var _EscalatorWarningTwoTone = _interopRequireDefault(require("./EscalatorWarningTwoTone")); + +var _Euro = _interopRequireDefault(require("./Euro")); + +var _EuroOutlined = _interopRequireDefault(require("./EuroOutlined")); + +var _EuroRounded = _interopRequireDefault(require("./EuroRounded")); + +var _EuroSharp = _interopRequireDefault(require("./EuroSharp")); + +var _EuroSymbol = _interopRequireDefault(require("./EuroSymbol")); + +var _EuroSymbolOutlined = _interopRequireDefault(require("./EuroSymbolOutlined")); + +var _EuroSymbolRounded = _interopRequireDefault(require("./EuroSymbolRounded")); + +var _EuroSymbolSharp = _interopRequireDefault(require("./EuroSymbolSharp")); + +var _EuroSymbolTwoTone = _interopRequireDefault(require("./EuroSymbolTwoTone")); + +var _EuroTwoTone = _interopRequireDefault(require("./EuroTwoTone")); + +var _EvStation = _interopRequireDefault(require("./EvStation")); + +var _EvStationOutlined = _interopRequireDefault(require("./EvStationOutlined")); + +var _EvStationRounded = _interopRequireDefault(require("./EvStationRounded")); + +var _EvStationSharp = _interopRequireDefault(require("./EvStationSharp")); + +var _EvStationTwoTone = _interopRequireDefault(require("./EvStationTwoTone")); + +var _Event = _interopRequireDefault(require("./Event")); + +var _EventAvailable = _interopRequireDefault(require("./EventAvailable")); + +var _EventAvailableOutlined = _interopRequireDefault(require("./EventAvailableOutlined")); + +var _EventAvailableRounded = _interopRequireDefault(require("./EventAvailableRounded")); + +var _EventAvailableSharp = _interopRequireDefault(require("./EventAvailableSharp")); + +var _EventAvailableTwoTone = _interopRequireDefault(require("./EventAvailableTwoTone")); + +var _EventBusy = _interopRequireDefault(require("./EventBusy")); + +var _EventBusyOutlined = _interopRequireDefault(require("./EventBusyOutlined")); + +var _EventBusyRounded = _interopRequireDefault(require("./EventBusyRounded")); + +var _EventBusySharp = _interopRequireDefault(require("./EventBusySharp")); + +var _EventBusyTwoTone = _interopRequireDefault(require("./EventBusyTwoTone")); + +var _EventNote = _interopRequireDefault(require("./EventNote")); + +var _EventNoteOutlined = _interopRequireDefault(require("./EventNoteOutlined")); + +var _EventNoteRounded = _interopRequireDefault(require("./EventNoteRounded")); + +var _EventNoteSharp = _interopRequireDefault(require("./EventNoteSharp")); + +var _EventNoteTwoTone = _interopRequireDefault(require("./EventNoteTwoTone")); + +var _EventOutlined = _interopRequireDefault(require("./EventOutlined")); + +var _EventRounded = _interopRequireDefault(require("./EventRounded")); + +var _EventSeat = _interopRequireDefault(require("./EventSeat")); + +var _EventSeatOutlined = _interopRequireDefault(require("./EventSeatOutlined")); + +var _EventSeatRounded = _interopRequireDefault(require("./EventSeatRounded")); + +var _EventSeatSharp = _interopRequireDefault(require("./EventSeatSharp")); + +var _EventSeatTwoTone = _interopRequireDefault(require("./EventSeatTwoTone")); + +var _EventSharp = _interopRequireDefault(require("./EventSharp")); + +var _EventTwoTone = _interopRequireDefault(require("./EventTwoTone")); + +var _ExitToApp = _interopRequireDefault(require("./ExitToApp")); + +var _ExitToAppOutlined = _interopRequireDefault(require("./ExitToAppOutlined")); + +var _ExitToAppRounded = _interopRequireDefault(require("./ExitToAppRounded")); + +var _ExitToAppSharp = _interopRequireDefault(require("./ExitToAppSharp")); + +var _ExitToAppTwoTone = _interopRequireDefault(require("./ExitToAppTwoTone")); + +var _Expand = _interopRequireDefault(require("./Expand")); + +var _ExpandLess = _interopRequireDefault(require("./ExpandLess")); + +var _ExpandLessOutlined = _interopRequireDefault(require("./ExpandLessOutlined")); + +var _ExpandLessRounded = _interopRequireDefault(require("./ExpandLessRounded")); + +var _ExpandLessSharp = _interopRequireDefault(require("./ExpandLessSharp")); + +var _ExpandLessTwoTone = _interopRequireDefault(require("./ExpandLessTwoTone")); + +var _ExpandMore = _interopRequireDefault(require("./ExpandMore")); + +var _ExpandMoreOutlined = _interopRequireDefault(require("./ExpandMoreOutlined")); + +var _ExpandMoreRounded = _interopRequireDefault(require("./ExpandMoreRounded")); + +var _ExpandMoreSharp = _interopRequireDefault(require("./ExpandMoreSharp")); + +var _ExpandMoreTwoTone = _interopRequireDefault(require("./ExpandMoreTwoTone")); + +var _ExpandOutlined = _interopRequireDefault(require("./ExpandOutlined")); + +var _ExpandRounded = _interopRequireDefault(require("./ExpandRounded")); + +var _ExpandSharp = _interopRequireDefault(require("./ExpandSharp")); + +var _ExpandTwoTone = _interopRequireDefault(require("./ExpandTwoTone")); + +var _Explicit = _interopRequireDefault(require("./Explicit")); + +var _ExplicitOutlined = _interopRequireDefault(require("./ExplicitOutlined")); + +var _ExplicitRounded = _interopRequireDefault(require("./ExplicitRounded")); + +var _ExplicitSharp = _interopRequireDefault(require("./ExplicitSharp")); + +var _ExplicitTwoTone = _interopRequireDefault(require("./ExplicitTwoTone")); + +var _Explore = _interopRequireDefault(require("./Explore")); + +var _ExploreOff = _interopRequireDefault(require("./ExploreOff")); + +var _ExploreOffOutlined = _interopRequireDefault(require("./ExploreOffOutlined")); + +var _ExploreOffRounded = _interopRequireDefault(require("./ExploreOffRounded")); + +var _ExploreOffSharp = _interopRequireDefault(require("./ExploreOffSharp")); + +var _ExploreOffTwoTone = _interopRequireDefault(require("./ExploreOffTwoTone")); + +var _ExploreOutlined = _interopRequireDefault(require("./ExploreOutlined")); + +var _ExploreRounded = _interopRequireDefault(require("./ExploreRounded")); + +var _ExploreSharp = _interopRequireDefault(require("./ExploreSharp")); + +var _ExploreTwoTone = _interopRequireDefault(require("./ExploreTwoTone")); + +var _Exposure = _interopRequireDefault(require("./Exposure")); + +var _ExposureOutlined = _interopRequireDefault(require("./ExposureOutlined")); + +var _ExposureRounded = _interopRequireDefault(require("./ExposureRounded")); + +var _ExposureSharp = _interopRequireDefault(require("./ExposureSharp")); + +var _ExposureTwoTone = _interopRequireDefault(require("./ExposureTwoTone")); + +var _Extension = _interopRequireDefault(require("./Extension")); + +var _ExtensionOff = _interopRequireDefault(require("./ExtensionOff")); + +var _ExtensionOffOutlined = _interopRequireDefault(require("./ExtensionOffOutlined")); + +var _ExtensionOffRounded = _interopRequireDefault(require("./ExtensionOffRounded")); + +var _ExtensionOffSharp = _interopRequireDefault(require("./ExtensionOffSharp")); + +var _ExtensionOffTwoTone = _interopRequireDefault(require("./ExtensionOffTwoTone")); + +var _ExtensionOutlined = _interopRequireDefault(require("./ExtensionOutlined")); + +var _ExtensionRounded = _interopRequireDefault(require("./ExtensionRounded")); + +var _ExtensionSharp = _interopRequireDefault(require("./ExtensionSharp")); + +var _ExtensionTwoTone = _interopRequireDefault(require("./ExtensionTwoTone")); + +var _Face = _interopRequireDefault(require("./Face")); + +var _FaceOutlined = _interopRequireDefault(require("./FaceOutlined")); + +var _FaceRetouchingNatural = _interopRequireDefault(require("./FaceRetouchingNatural")); + +var _FaceRetouchingNaturalOutlined = _interopRequireDefault(require("./FaceRetouchingNaturalOutlined")); + +var _FaceRetouchingNaturalRounded = _interopRequireDefault(require("./FaceRetouchingNaturalRounded")); + +var _FaceRetouchingNaturalSharp = _interopRequireDefault(require("./FaceRetouchingNaturalSharp")); + +var _FaceRetouchingNaturalTwoTone = _interopRequireDefault(require("./FaceRetouchingNaturalTwoTone")); + +var _FaceRetouchingOff = _interopRequireDefault(require("./FaceRetouchingOff")); + +var _FaceRetouchingOffOutlined = _interopRequireDefault(require("./FaceRetouchingOffOutlined")); + +var _FaceRetouchingOffRounded = _interopRequireDefault(require("./FaceRetouchingOffRounded")); + +var _FaceRetouchingOffSharp = _interopRequireDefault(require("./FaceRetouchingOffSharp")); + +var _FaceRetouchingOffTwoTone = _interopRequireDefault(require("./FaceRetouchingOffTwoTone")); + +var _FaceRounded = _interopRequireDefault(require("./FaceRounded")); + +var _FaceSharp = _interopRequireDefault(require("./FaceSharp")); + +var _FaceTwoTone = _interopRequireDefault(require("./FaceTwoTone")); + +var _Facebook = _interopRequireDefault(require("./Facebook")); + +var _FacebookOutlined = _interopRequireDefault(require("./FacebookOutlined")); + +var _FacebookRounded = _interopRequireDefault(require("./FacebookRounded")); + +var _FacebookSharp = _interopRequireDefault(require("./FacebookSharp")); + +var _FacebookTwoTone = _interopRequireDefault(require("./FacebookTwoTone")); + +var _FactCheck = _interopRequireDefault(require("./FactCheck")); + +var _FactCheckOutlined = _interopRequireDefault(require("./FactCheckOutlined")); + +var _FactCheckRounded = _interopRequireDefault(require("./FactCheckRounded")); + +var _FactCheckSharp = _interopRequireDefault(require("./FactCheckSharp")); + +var _FactCheckTwoTone = _interopRequireDefault(require("./FactCheckTwoTone")); + +var _FamilyRestroom = _interopRequireDefault(require("./FamilyRestroom")); + +var _FamilyRestroomOutlined = _interopRequireDefault(require("./FamilyRestroomOutlined")); + +var _FamilyRestroomRounded = _interopRequireDefault(require("./FamilyRestroomRounded")); + +var _FamilyRestroomSharp = _interopRequireDefault(require("./FamilyRestroomSharp")); + +var _FamilyRestroomTwoTone = _interopRequireDefault(require("./FamilyRestroomTwoTone")); + +var _FastForward = _interopRequireDefault(require("./FastForward")); + +var _FastForwardOutlined = _interopRequireDefault(require("./FastForwardOutlined")); + +var _FastForwardRounded = _interopRequireDefault(require("./FastForwardRounded")); + +var _FastForwardSharp = _interopRequireDefault(require("./FastForwardSharp")); + +var _FastForwardTwoTone = _interopRequireDefault(require("./FastForwardTwoTone")); + +var _FastRewind = _interopRequireDefault(require("./FastRewind")); + +var _FastRewindOutlined = _interopRequireDefault(require("./FastRewindOutlined")); + +var _FastRewindRounded = _interopRequireDefault(require("./FastRewindRounded")); + +var _FastRewindSharp = _interopRequireDefault(require("./FastRewindSharp")); + +var _FastRewindTwoTone = _interopRequireDefault(require("./FastRewindTwoTone")); + +var _Fastfood = _interopRequireDefault(require("./Fastfood")); + +var _FastfoodOutlined = _interopRequireDefault(require("./FastfoodOutlined")); + +var _FastfoodRounded = _interopRequireDefault(require("./FastfoodRounded")); + +var _FastfoodSharp = _interopRequireDefault(require("./FastfoodSharp")); + +var _FastfoodTwoTone = _interopRequireDefault(require("./FastfoodTwoTone")); + +var _Favorite = _interopRequireDefault(require("./Favorite")); + +var _FavoriteBorder = _interopRequireDefault(require("./FavoriteBorder")); + +var _FavoriteBorderOutlined = _interopRequireDefault(require("./FavoriteBorderOutlined")); + +var _FavoriteBorderRounded = _interopRequireDefault(require("./FavoriteBorderRounded")); + +var _FavoriteBorderSharp = _interopRequireDefault(require("./FavoriteBorderSharp")); + +var _FavoriteBorderTwoTone = _interopRequireDefault(require("./FavoriteBorderTwoTone")); + +var _FavoriteOutlined = _interopRequireDefault(require("./FavoriteOutlined")); + +var _FavoriteRounded = _interopRequireDefault(require("./FavoriteRounded")); + +var _FavoriteSharp = _interopRequireDefault(require("./FavoriteSharp")); + +var _FavoriteTwoTone = _interopRequireDefault(require("./FavoriteTwoTone")); + +var _FeaturedPlayList = _interopRequireDefault(require("./FeaturedPlayList")); + +var _FeaturedPlayListOutlined = _interopRequireDefault(require("./FeaturedPlayListOutlined")); + +var _FeaturedPlayListRounded = _interopRequireDefault(require("./FeaturedPlayListRounded")); + +var _FeaturedPlayListSharp = _interopRequireDefault(require("./FeaturedPlayListSharp")); + +var _FeaturedPlayListTwoTone = _interopRequireDefault(require("./FeaturedPlayListTwoTone")); + +var _FeaturedVideo = _interopRequireDefault(require("./FeaturedVideo")); + +var _FeaturedVideoOutlined = _interopRequireDefault(require("./FeaturedVideoOutlined")); + +var _FeaturedVideoRounded = _interopRequireDefault(require("./FeaturedVideoRounded")); + +var _FeaturedVideoSharp = _interopRequireDefault(require("./FeaturedVideoSharp")); + +var _FeaturedVideoTwoTone = _interopRequireDefault(require("./FeaturedVideoTwoTone")); + +var _Feed = _interopRequireDefault(require("./Feed")); + +var _FeedOutlined = _interopRequireDefault(require("./FeedOutlined")); + +var _FeedRounded = _interopRequireDefault(require("./FeedRounded")); + +var _FeedSharp = _interopRequireDefault(require("./FeedSharp")); + +var _FeedTwoTone = _interopRequireDefault(require("./FeedTwoTone")); + +var _Feedback = _interopRequireDefault(require("./Feedback")); + +var _FeedbackOutlined = _interopRequireDefault(require("./FeedbackOutlined")); + +var _FeedbackRounded = _interopRequireDefault(require("./FeedbackRounded")); + +var _FeedbackSharp = _interopRequireDefault(require("./FeedbackSharp")); + +var _FeedbackTwoTone = _interopRequireDefault(require("./FeedbackTwoTone")); + +var _Female = _interopRequireDefault(require("./Female")); + +var _FemaleOutlined = _interopRequireDefault(require("./FemaleOutlined")); + +var _FemaleRounded = _interopRequireDefault(require("./FemaleRounded")); + +var _FemaleSharp = _interopRequireDefault(require("./FemaleSharp")); + +var _FemaleTwoTone = _interopRequireDefault(require("./FemaleTwoTone")); + +var _Fence = _interopRequireDefault(require("./Fence")); + +var _FenceOutlined = _interopRequireDefault(require("./FenceOutlined")); + +var _FenceRounded = _interopRequireDefault(require("./FenceRounded")); + +var _FenceSharp = _interopRequireDefault(require("./FenceSharp")); + +var _FenceTwoTone = _interopRequireDefault(require("./FenceTwoTone")); + +var _Festival = _interopRequireDefault(require("./Festival")); + +var _FestivalOutlined = _interopRequireDefault(require("./FestivalOutlined")); + +var _FestivalRounded = _interopRequireDefault(require("./FestivalRounded")); + +var _FestivalSharp = _interopRequireDefault(require("./FestivalSharp")); + +var _FestivalTwoTone = _interopRequireDefault(require("./FestivalTwoTone")); + +var _FiberDvr = _interopRequireDefault(require("./FiberDvr")); + +var _FiberDvrOutlined = _interopRequireDefault(require("./FiberDvrOutlined")); + +var _FiberDvrRounded = _interopRequireDefault(require("./FiberDvrRounded")); + +var _FiberDvrSharp = _interopRequireDefault(require("./FiberDvrSharp")); + +var _FiberDvrTwoTone = _interopRequireDefault(require("./FiberDvrTwoTone")); + +var _FiberManualRecord = _interopRequireDefault(require("./FiberManualRecord")); + +var _FiberManualRecordOutlined = _interopRequireDefault(require("./FiberManualRecordOutlined")); + +var _FiberManualRecordRounded = _interopRequireDefault(require("./FiberManualRecordRounded")); + +var _FiberManualRecordSharp = _interopRequireDefault(require("./FiberManualRecordSharp")); + +var _FiberManualRecordTwoTone = _interopRequireDefault(require("./FiberManualRecordTwoTone")); + +var _FiberNew = _interopRequireDefault(require("./FiberNew")); + +var _FiberNewOutlined = _interopRequireDefault(require("./FiberNewOutlined")); + +var _FiberNewRounded = _interopRequireDefault(require("./FiberNewRounded")); + +var _FiberNewSharp = _interopRequireDefault(require("./FiberNewSharp")); + +var _FiberNewTwoTone = _interopRequireDefault(require("./FiberNewTwoTone")); + +var _FiberPin = _interopRequireDefault(require("./FiberPin")); + +var _FiberPinOutlined = _interopRequireDefault(require("./FiberPinOutlined")); + +var _FiberPinRounded = _interopRequireDefault(require("./FiberPinRounded")); + +var _FiberPinSharp = _interopRequireDefault(require("./FiberPinSharp")); + +var _FiberPinTwoTone = _interopRequireDefault(require("./FiberPinTwoTone")); + +var _FiberSmartRecord = _interopRequireDefault(require("./FiberSmartRecord")); + +var _FiberSmartRecordOutlined = _interopRequireDefault(require("./FiberSmartRecordOutlined")); + +var _FiberSmartRecordRounded = _interopRequireDefault(require("./FiberSmartRecordRounded")); + +var _FiberSmartRecordSharp = _interopRequireDefault(require("./FiberSmartRecordSharp")); + +var _FiberSmartRecordTwoTone = _interopRequireDefault(require("./FiberSmartRecordTwoTone")); + +var _FileCopy = _interopRequireDefault(require("./FileCopy")); + +var _FileCopyOutlined = _interopRequireDefault(require("./FileCopyOutlined")); + +var _FileCopyRounded = _interopRequireDefault(require("./FileCopyRounded")); + +var _FileCopySharp = _interopRequireDefault(require("./FileCopySharp")); + +var _FileCopyTwoTone = _interopRequireDefault(require("./FileCopyTwoTone")); + +var _FileDownload = _interopRequireDefault(require("./FileDownload")); + +var _FileDownloadDone = _interopRequireDefault(require("./FileDownloadDone")); + +var _FileDownloadDoneOutlined = _interopRequireDefault(require("./FileDownloadDoneOutlined")); + +var _FileDownloadDoneRounded = _interopRequireDefault(require("./FileDownloadDoneRounded")); + +var _FileDownloadDoneSharp = _interopRequireDefault(require("./FileDownloadDoneSharp")); + +var _FileDownloadDoneTwoTone = _interopRequireDefault(require("./FileDownloadDoneTwoTone")); + +var _FileDownloadOff = _interopRequireDefault(require("./FileDownloadOff")); + +var _FileDownloadOffOutlined = _interopRequireDefault(require("./FileDownloadOffOutlined")); + +var _FileDownloadOffRounded = _interopRequireDefault(require("./FileDownloadOffRounded")); + +var _FileDownloadOffSharp = _interopRequireDefault(require("./FileDownloadOffSharp")); + +var _FileDownloadOffTwoTone = _interopRequireDefault(require("./FileDownloadOffTwoTone")); + +var _FileDownloadOutlined = _interopRequireDefault(require("./FileDownloadOutlined")); + +var _FileDownloadRounded = _interopRequireDefault(require("./FileDownloadRounded")); + +var _FileDownloadSharp = _interopRequireDefault(require("./FileDownloadSharp")); + +var _FileDownloadTwoTone = _interopRequireDefault(require("./FileDownloadTwoTone")); + +var _FilePresent = _interopRequireDefault(require("./FilePresent")); + +var _FilePresentOutlined = _interopRequireDefault(require("./FilePresentOutlined")); + +var _FilePresentRounded = _interopRequireDefault(require("./FilePresentRounded")); + +var _FilePresentSharp = _interopRequireDefault(require("./FilePresentSharp")); + +var _FilePresentTwoTone = _interopRequireDefault(require("./FilePresentTwoTone")); + +var _FileUpload = _interopRequireDefault(require("./FileUpload")); + +var _FileUploadOutlined = _interopRequireDefault(require("./FileUploadOutlined")); + +var _FileUploadRounded = _interopRequireDefault(require("./FileUploadRounded")); + +var _FileUploadSharp = _interopRequireDefault(require("./FileUploadSharp")); + +var _FileUploadTwoTone = _interopRequireDefault(require("./FileUploadTwoTone")); + +var _Filter = _interopRequireDefault(require("./Filter")); + +var _Filter2 = _interopRequireDefault(require("./Filter1")); + +var _Filter1Outlined = _interopRequireDefault(require("./Filter1Outlined")); + +var _Filter1Rounded = _interopRequireDefault(require("./Filter1Rounded")); + +var _Filter1Sharp = _interopRequireDefault(require("./Filter1Sharp")); + +var _Filter1TwoTone = _interopRequireDefault(require("./Filter1TwoTone")); + +var _Filter3 = _interopRequireDefault(require("./Filter2")); + +var _Filter2Outlined = _interopRequireDefault(require("./Filter2Outlined")); + +var _Filter2Rounded = _interopRequireDefault(require("./Filter2Rounded")); + +var _Filter2Sharp = _interopRequireDefault(require("./Filter2Sharp")); + +var _Filter2TwoTone = _interopRequireDefault(require("./Filter2TwoTone")); + +var _Filter4 = _interopRequireDefault(require("./Filter3")); + +var _Filter3Outlined = _interopRequireDefault(require("./Filter3Outlined")); + +var _Filter3Rounded = _interopRequireDefault(require("./Filter3Rounded")); + +var _Filter3Sharp = _interopRequireDefault(require("./Filter3Sharp")); + +var _Filter3TwoTone = _interopRequireDefault(require("./Filter3TwoTone")); + +var _Filter5 = _interopRequireDefault(require("./Filter4")); + +var _Filter4Outlined = _interopRequireDefault(require("./Filter4Outlined")); + +var _Filter4Rounded = _interopRequireDefault(require("./Filter4Rounded")); + +var _Filter4Sharp = _interopRequireDefault(require("./Filter4Sharp")); + +var _Filter4TwoTone = _interopRequireDefault(require("./Filter4TwoTone")); + +var _Filter6 = _interopRequireDefault(require("./Filter5")); + +var _Filter5Outlined = _interopRequireDefault(require("./Filter5Outlined")); + +var _Filter5Rounded = _interopRequireDefault(require("./Filter5Rounded")); + +var _Filter5Sharp = _interopRequireDefault(require("./Filter5Sharp")); + +var _Filter5TwoTone = _interopRequireDefault(require("./Filter5TwoTone")); + +var _Filter7 = _interopRequireDefault(require("./Filter6")); + +var _Filter6Outlined = _interopRequireDefault(require("./Filter6Outlined")); + +var _Filter6Rounded = _interopRequireDefault(require("./Filter6Rounded")); + +var _Filter6Sharp = _interopRequireDefault(require("./Filter6Sharp")); + +var _Filter6TwoTone = _interopRequireDefault(require("./Filter6TwoTone")); + +var _Filter8 = _interopRequireDefault(require("./Filter7")); + +var _Filter7Outlined = _interopRequireDefault(require("./Filter7Outlined")); + +var _Filter7Rounded = _interopRequireDefault(require("./Filter7Rounded")); + +var _Filter7Sharp = _interopRequireDefault(require("./Filter7Sharp")); + +var _Filter7TwoTone = _interopRequireDefault(require("./Filter7TwoTone")); + +var _Filter9 = _interopRequireDefault(require("./Filter8")); + +var _Filter8Outlined = _interopRequireDefault(require("./Filter8Outlined")); + +var _Filter8Rounded = _interopRequireDefault(require("./Filter8Rounded")); + +var _Filter8Sharp = _interopRequireDefault(require("./Filter8Sharp")); + +var _Filter8TwoTone = _interopRequireDefault(require("./Filter8TwoTone")); + +var _Filter10 = _interopRequireDefault(require("./Filter9")); + +var _Filter9Outlined = _interopRequireDefault(require("./Filter9Outlined")); + +var _Filter9Plus = _interopRequireDefault(require("./Filter9Plus")); + +var _Filter9PlusOutlined = _interopRequireDefault(require("./Filter9PlusOutlined")); + +var _Filter9PlusRounded = _interopRequireDefault(require("./Filter9PlusRounded")); + +var _Filter9PlusSharp = _interopRequireDefault(require("./Filter9PlusSharp")); + +var _Filter9PlusTwoTone = _interopRequireDefault(require("./Filter9PlusTwoTone")); + +var _Filter9Rounded = _interopRequireDefault(require("./Filter9Rounded")); + +var _Filter9Sharp = _interopRequireDefault(require("./Filter9Sharp")); + +var _Filter9TwoTone = _interopRequireDefault(require("./Filter9TwoTone")); + +var _FilterAlt = _interopRequireDefault(require("./FilterAlt")); + +var _FilterAltOutlined = _interopRequireDefault(require("./FilterAltOutlined")); + +var _FilterAltRounded = _interopRequireDefault(require("./FilterAltRounded")); + +var _FilterAltSharp = _interopRequireDefault(require("./FilterAltSharp")); + +var _FilterAltTwoTone = _interopRequireDefault(require("./FilterAltTwoTone")); + +var _FilterBAndW = _interopRequireDefault(require("./FilterBAndW")); + +var _FilterBAndWOutlined = _interopRequireDefault(require("./FilterBAndWOutlined")); + +var _FilterBAndWRounded = _interopRequireDefault(require("./FilterBAndWRounded")); + +var _FilterBAndWSharp = _interopRequireDefault(require("./FilterBAndWSharp")); + +var _FilterBAndWTwoTone = _interopRequireDefault(require("./FilterBAndWTwoTone")); + +var _FilterCenterFocus = _interopRequireDefault(require("./FilterCenterFocus")); + +var _FilterCenterFocusOutlined = _interopRequireDefault(require("./FilterCenterFocusOutlined")); + +var _FilterCenterFocusRounded = _interopRequireDefault(require("./FilterCenterFocusRounded")); + +var _FilterCenterFocusSharp = _interopRequireDefault(require("./FilterCenterFocusSharp")); + +var _FilterCenterFocusTwoTone = _interopRequireDefault(require("./FilterCenterFocusTwoTone")); + +var _FilterDrama = _interopRequireDefault(require("./FilterDrama")); + +var _FilterDramaOutlined = _interopRequireDefault(require("./FilterDramaOutlined")); + +var _FilterDramaRounded = _interopRequireDefault(require("./FilterDramaRounded")); + +var _FilterDramaSharp = _interopRequireDefault(require("./FilterDramaSharp")); + +var _FilterDramaTwoTone = _interopRequireDefault(require("./FilterDramaTwoTone")); + +var _FilterFrames = _interopRequireDefault(require("./FilterFrames")); + +var _FilterFramesOutlined = _interopRequireDefault(require("./FilterFramesOutlined")); + +var _FilterFramesRounded = _interopRequireDefault(require("./FilterFramesRounded")); + +var _FilterFramesSharp = _interopRequireDefault(require("./FilterFramesSharp")); + +var _FilterFramesTwoTone = _interopRequireDefault(require("./FilterFramesTwoTone")); + +var _FilterHdr = _interopRequireDefault(require("./FilterHdr")); + +var _FilterHdrOutlined = _interopRequireDefault(require("./FilterHdrOutlined")); + +var _FilterHdrRounded = _interopRequireDefault(require("./FilterHdrRounded")); + +var _FilterHdrSharp = _interopRequireDefault(require("./FilterHdrSharp")); + +var _FilterHdrTwoTone = _interopRequireDefault(require("./FilterHdrTwoTone")); + +var _FilterList = _interopRequireDefault(require("./FilterList")); + +var _FilterListOutlined = _interopRequireDefault(require("./FilterListOutlined")); + +var _FilterListRounded = _interopRequireDefault(require("./FilterListRounded")); + +var _FilterListSharp = _interopRequireDefault(require("./FilterListSharp")); + +var _FilterListTwoTone = _interopRequireDefault(require("./FilterListTwoTone")); + +var _FilterNone = _interopRequireDefault(require("./FilterNone")); + +var _FilterNoneOutlined = _interopRequireDefault(require("./FilterNoneOutlined")); + +var _FilterNoneRounded = _interopRequireDefault(require("./FilterNoneRounded")); + +var _FilterNoneSharp = _interopRequireDefault(require("./FilterNoneSharp")); + +var _FilterNoneTwoTone = _interopRequireDefault(require("./FilterNoneTwoTone")); + +var _FilterOutlined = _interopRequireDefault(require("./FilterOutlined")); + +var _FilterRounded = _interopRequireDefault(require("./FilterRounded")); + +var _FilterSharp = _interopRequireDefault(require("./FilterSharp")); + +var _FilterTiltShift = _interopRequireDefault(require("./FilterTiltShift")); + +var _FilterTiltShiftOutlined = _interopRequireDefault(require("./FilterTiltShiftOutlined")); + +var _FilterTiltShiftRounded = _interopRequireDefault(require("./FilterTiltShiftRounded")); + +var _FilterTiltShiftSharp = _interopRequireDefault(require("./FilterTiltShiftSharp")); + +var _FilterTiltShiftTwoTone = _interopRequireDefault(require("./FilterTiltShiftTwoTone")); + +var _FilterTwoTone = _interopRequireDefault(require("./FilterTwoTone")); + +var _FilterVintage = _interopRequireDefault(require("./FilterVintage")); + +var _FilterVintageOutlined = _interopRequireDefault(require("./FilterVintageOutlined")); + +var _FilterVintageRounded = _interopRequireDefault(require("./FilterVintageRounded")); + +var _FilterVintageSharp = _interopRequireDefault(require("./FilterVintageSharp")); + +var _FilterVintageTwoTone = _interopRequireDefault(require("./FilterVintageTwoTone")); + +var _FindInPage = _interopRequireDefault(require("./FindInPage")); + +var _FindInPageOutlined = _interopRequireDefault(require("./FindInPageOutlined")); + +var _FindInPageRounded = _interopRequireDefault(require("./FindInPageRounded")); + +var _FindInPageSharp = _interopRequireDefault(require("./FindInPageSharp")); + +var _FindInPageTwoTone = _interopRequireDefault(require("./FindInPageTwoTone")); + +var _FindReplace = _interopRequireDefault(require("./FindReplace")); + +var _FindReplaceOutlined = _interopRequireDefault(require("./FindReplaceOutlined")); + +var _FindReplaceRounded = _interopRequireDefault(require("./FindReplaceRounded")); + +var _FindReplaceSharp = _interopRequireDefault(require("./FindReplaceSharp")); + +var _FindReplaceTwoTone = _interopRequireDefault(require("./FindReplaceTwoTone")); + +var _Fingerprint = _interopRequireDefault(require("./Fingerprint")); + +var _FingerprintOutlined = _interopRequireDefault(require("./FingerprintOutlined")); + +var _FingerprintRounded = _interopRequireDefault(require("./FingerprintRounded")); + +var _FingerprintSharp = _interopRequireDefault(require("./FingerprintSharp")); + +var _FingerprintTwoTone = _interopRequireDefault(require("./FingerprintTwoTone")); + +var _FireExtinguisher = _interopRequireDefault(require("./FireExtinguisher")); + +var _FireExtinguisherOutlined = _interopRequireDefault(require("./FireExtinguisherOutlined")); + +var _FireExtinguisherRounded = _interopRequireDefault(require("./FireExtinguisherRounded")); + +var _FireExtinguisherSharp = _interopRequireDefault(require("./FireExtinguisherSharp")); + +var _FireExtinguisherTwoTone = _interopRequireDefault(require("./FireExtinguisherTwoTone")); + +var _Fireplace = _interopRequireDefault(require("./Fireplace")); + +var _FireplaceOutlined = _interopRequireDefault(require("./FireplaceOutlined")); + +var _FireplaceRounded = _interopRequireDefault(require("./FireplaceRounded")); + +var _FireplaceSharp = _interopRequireDefault(require("./FireplaceSharp")); + +var _FireplaceTwoTone = _interopRequireDefault(require("./FireplaceTwoTone")); + +var _FirstPage = _interopRequireDefault(require("./FirstPage")); + +var _FirstPageOutlined = _interopRequireDefault(require("./FirstPageOutlined")); + +var _FirstPageRounded = _interopRequireDefault(require("./FirstPageRounded")); + +var _FirstPageSharp = _interopRequireDefault(require("./FirstPageSharp")); + +var _FirstPageTwoTone = _interopRequireDefault(require("./FirstPageTwoTone")); + +var _FitScreen = _interopRequireDefault(require("./FitScreen")); + +var _FitScreenOutlined = _interopRequireDefault(require("./FitScreenOutlined")); + +var _FitScreenRounded = _interopRequireDefault(require("./FitScreenRounded")); + +var _FitScreenSharp = _interopRequireDefault(require("./FitScreenSharp")); + +var _FitScreenTwoTone = _interopRequireDefault(require("./FitScreenTwoTone")); + +var _FitnessCenter = _interopRequireDefault(require("./FitnessCenter")); + +var _FitnessCenterOutlined = _interopRequireDefault(require("./FitnessCenterOutlined")); + +var _FitnessCenterRounded = _interopRequireDefault(require("./FitnessCenterRounded")); + +var _FitnessCenterSharp = _interopRequireDefault(require("./FitnessCenterSharp")); + +var _FitnessCenterTwoTone = _interopRequireDefault(require("./FitnessCenterTwoTone")); + +var _FiveG = _interopRequireDefault(require("./FiveG")); + +var _FiveGOutlined = _interopRequireDefault(require("./FiveGOutlined")); + +var _FiveGRounded = _interopRequireDefault(require("./FiveGRounded")); + +var _FiveGSharp = _interopRequireDefault(require("./FiveGSharp")); + +var _FiveGTwoTone = _interopRequireDefault(require("./FiveGTwoTone")); + +var _FiveK = _interopRequireDefault(require("./FiveK")); + +var _FiveKOutlined = _interopRequireDefault(require("./FiveKOutlined")); + +var _FiveKPlus = _interopRequireDefault(require("./FiveKPlus")); + +var _FiveKPlusOutlined = _interopRequireDefault(require("./FiveKPlusOutlined")); + +var _FiveKPlusRounded = _interopRequireDefault(require("./FiveKPlusRounded")); + +var _FiveKPlusSharp = _interopRequireDefault(require("./FiveKPlusSharp")); + +var _FiveKPlusTwoTone = _interopRequireDefault(require("./FiveKPlusTwoTone")); + +var _FiveKRounded = _interopRequireDefault(require("./FiveKRounded")); + +var _FiveKSharp = _interopRequireDefault(require("./FiveKSharp")); + +var _FiveKTwoTone = _interopRequireDefault(require("./FiveKTwoTone")); + +var _FiveMp = _interopRequireDefault(require("./FiveMp")); + +var _FiveMpOutlined = _interopRequireDefault(require("./FiveMpOutlined")); + +var _FiveMpRounded = _interopRequireDefault(require("./FiveMpRounded")); + +var _FiveMpSharp = _interopRequireDefault(require("./FiveMpSharp")); + +var _FiveMpTwoTone = _interopRequireDefault(require("./FiveMpTwoTone")); + +var _FivteenMp = _interopRequireDefault(require("./FivteenMp")); + +var _FivteenMpOutlined = _interopRequireDefault(require("./FivteenMpOutlined")); + +var _FivteenMpRounded = _interopRequireDefault(require("./FivteenMpRounded")); + +var _FivteenMpSharp = _interopRequireDefault(require("./FivteenMpSharp")); + +var _FivteenMpTwoTone = _interopRequireDefault(require("./FivteenMpTwoTone")); + +var _Flag = _interopRequireDefault(require("./Flag")); + +var _FlagOutlined = _interopRequireDefault(require("./FlagOutlined")); + +var _FlagRounded = _interopRequireDefault(require("./FlagRounded")); + +var _FlagSharp = _interopRequireDefault(require("./FlagSharp")); + +var _FlagTwoTone = _interopRequireDefault(require("./FlagTwoTone")); + +var _Flaky = _interopRequireDefault(require("./Flaky")); + +var _FlakyOutlined = _interopRequireDefault(require("./FlakyOutlined")); + +var _FlakyRounded = _interopRequireDefault(require("./FlakyRounded")); + +var _FlakySharp = _interopRequireDefault(require("./FlakySharp")); + +var _FlakyTwoTone = _interopRequireDefault(require("./FlakyTwoTone")); + +var _Flare = _interopRequireDefault(require("./Flare")); + +var _FlareOutlined = _interopRequireDefault(require("./FlareOutlined")); + +var _FlareRounded = _interopRequireDefault(require("./FlareRounded")); + +var _FlareSharp = _interopRequireDefault(require("./FlareSharp")); + +var _FlareTwoTone = _interopRequireDefault(require("./FlareTwoTone")); + +var _FlashAuto = _interopRequireDefault(require("./FlashAuto")); + +var _FlashAutoOutlined = _interopRequireDefault(require("./FlashAutoOutlined")); + +var _FlashAutoRounded = _interopRequireDefault(require("./FlashAutoRounded")); + +var _FlashAutoSharp = _interopRequireDefault(require("./FlashAutoSharp")); + +var _FlashAutoTwoTone = _interopRequireDefault(require("./FlashAutoTwoTone")); + +var _FlashOff = _interopRequireDefault(require("./FlashOff")); + +var _FlashOffOutlined = _interopRequireDefault(require("./FlashOffOutlined")); + +var _FlashOffRounded = _interopRequireDefault(require("./FlashOffRounded")); + +var _FlashOffSharp = _interopRequireDefault(require("./FlashOffSharp")); + +var _FlashOffTwoTone = _interopRequireDefault(require("./FlashOffTwoTone")); + +var _FlashOn = _interopRequireDefault(require("./FlashOn")); + +var _FlashOnOutlined = _interopRequireDefault(require("./FlashOnOutlined")); + +var _FlashOnRounded = _interopRequireDefault(require("./FlashOnRounded")); + +var _FlashOnSharp = _interopRequireDefault(require("./FlashOnSharp")); + +var _FlashOnTwoTone = _interopRequireDefault(require("./FlashOnTwoTone")); + +var _FlashlightOff = _interopRequireDefault(require("./FlashlightOff")); + +var _FlashlightOffOutlined = _interopRequireDefault(require("./FlashlightOffOutlined")); + +var _FlashlightOffRounded = _interopRequireDefault(require("./FlashlightOffRounded")); + +var _FlashlightOffSharp = _interopRequireDefault(require("./FlashlightOffSharp")); + +var _FlashlightOffTwoTone = _interopRequireDefault(require("./FlashlightOffTwoTone")); + +var _FlashlightOn = _interopRequireDefault(require("./FlashlightOn")); + +var _FlashlightOnOutlined = _interopRequireDefault(require("./FlashlightOnOutlined")); + +var _FlashlightOnRounded = _interopRequireDefault(require("./FlashlightOnRounded")); + +var _FlashlightOnSharp = _interopRequireDefault(require("./FlashlightOnSharp")); + +var _FlashlightOnTwoTone = _interopRequireDefault(require("./FlashlightOnTwoTone")); + +var _Flatware = _interopRequireDefault(require("./Flatware")); + +var _FlatwareOutlined = _interopRequireDefault(require("./FlatwareOutlined")); + +var _FlatwareRounded = _interopRequireDefault(require("./FlatwareRounded")); + +var _FlatwareSharp = _interopRequireDefault(require("./FlatwareSharp")); + +var _FlatwareTwoTone = _interopRequireDefault(require("./FlatwareTwoTone")); + +var _Flight = _interopRequireDefault(require("./Flight")); + +var _FlightLand = _interopRequireDefault(require("./FlightLand")); + +var _FlightLandOutlined = _interopRequireDefault(require("./FlightLandOutlined")); + +var _FlightLandRounded = _interopRequireDefault(require("./FlightLandRounded")); + +var _FlightLandSharp = _interopRequireDefault(require("./FlightLandSharp")); + +var _FlightLandTwoTone = _interopRequireDefault(require("./FlightLandTwoTone")); + +var _FlightOutlined = _interopRequireDefault(require("./FlightOutlined")); + +var _FlightRounded = _interopRequireDefault(require("./FlightRounded")); + +var _FlightSharp = _interopRequireDefault(require("./FlightSharp")); + +var _FlightTakeoff = _interopRequireDefault(require("./FlightTakeoff")); + +var _FlightTakeoffOutlined = _interopRequireDefault(require("./FlightTakeoffOutlined")); + +var _FlightTakeoffRounded = _interopRequireDefault(require("./FlightTakeoffRounded")); + +var _FlightTakeoffSharp = _interopRequireDefault(require("./FlightTakeoffSharp")); + +var _FlightTakeoffTwoTone = _interopRequireDefault(require("./FlightTakeoffTwoTone")); + +var _FlightTwoTone = _interopRequireDefault(require("./FlightTwoTone")); + +var _Flip = _interopRequireDefault(require("./Flip")); + +var _FlipCameraAndroid = _interopRequireDefault(require("./FlipCameraAndroid")); + +var _FlipCameraAndroidOutlined = _interopRequireDefault(require("./FlipCameraAndroidOutlined")); + +var _FlipCameraAndroidRounded = _interopRequireDefault(require("./FlipCameraAndroidRounded")); + +var _FlipCameraAndroidSharp = _interopRequireDefault(require("./FlipCameraAndroidSharp")); + +var _FlipCameraAndroidTwoTone = _interopRequireDefault(require("./FlipCameraAndroidTwoTone")); + +var _FlipCameraIos = _interopRequireDefault(require("./FlipCameraIos")); + +var _FlipCameraIosOutlined = _interopRequireDefault(require("./FlipCameraIosOutlined")); + +var _FlipCameraIosRounded = _interopRequireDefault(require("./FlipCameraIosRounded")); + +var _FlipCameraIosSharp = _interopRequireDefault(require("./FlipCameraIosSharp")); + +var _FlipCameraIosTwoTone = _interopRequireDefault(require("./FlipCameraIosTwoTone")); + +var _FlipOutlined = _interopRequireDefault(require("./FlipOutlined")); + +var _FlipRounded = _interopRequireDefault(require("./FlipRounded")); + +var _FlipSharp = _interopRequireDefault(require("./FlipSharp")); + +var _FlipToBack = _interopRequireDefault(require("./FlipToBack")); + +var _FlipToBackOutlined = _interopRequireDefault(require("./FlipToBackOutlined")); + +var _FlipToBackRounded = _interopRequireDefault(require("./FlipToBackRounded")); + +var _FlipToBackSharp = _interopRequireDefault(require("./FlipToBackSharp")); + +var _FlipToBackTwoTone = _interopRequireDefault(require("./FlipToBackTwoTone")); + +var _FlipToFront = _interopRequireDefault(require("./FlipToFront")); + +var _FlipToFrontOutlined = _interopRequireDefault(require("./FlipToFrontOutlined")); + +var _FlipToFrontRounded = _interopRequireDefault(require("./FlipToFrontRounded")); + +var _FlipToFrontSharp = _interopRequireDefault(require("./FlipToFrontSharp")); + +var _FlipToFrontTwoTone = _interopRequireDefault(require("./FlipToFrontTwoTone")); + +var _FlipTwoTone = _interopRequireDefault(require("./FlipTwoTone")); + +var _Flourescent = _interopRequireDefault(require("./Flourescent")); + +var _FlourescentOutlined = _interopRequireDefault(require("./FlourescentOutlined")); + +var _FlourescentRounded = _interopRequireDefault(require("./FlourescentRounded")); + +var _FlourescentSharp = _interopRequireDefault(require("./FlourescentSharp")); + +var _FlourescentTwoTone = _interopRequireDefault(require("./FlourescentTwoTone")); + +var _FlutterDash = _interopRequireDefault(require("./FlutterDash")); + +var _FlutterDashOutlined = _interopRequireDefault(require("./FlutterDashOutlined")); + +var _FlutterDashRounded = _interopRequireDefault(require("./FlutterDashRounded")); + +var _FlutterDashSharp = _interopRequireDefault(require("./FlutterDashSharp")); + +var _FlutterDashTwoTone = _interopRequireDefault(require("./FlutterDashTwoTone")); + +var _FmdBad = _interopRequireDefault(require("./FmdBad")); + +var _FmdBadOutlined = _interopRequireDefault(require("./FmdBadOutlined")); + +var _FmdBadRounded = _interopRequireDefault(require("./FmdBadRounded")); + +var _FmdBadSharp = _interopRequireDefault(require("./FmdBadSharp")); + +var _FmdBadTwoTone = _interopRequireDefault(require("./FmdBadTwoTone")); + +var _FmdGood = _interopRequireDefault(require("./FmdGood")); + +var _FmdGoodOutlined = _interopRequireDefault(require("./FmdGoodOutlined")); + +var _FmdGoodRounded = _interopRequireDefault(require("./FmdGoodRounded")); + +var _FmdGoodSharp = _interopRequireDefault(require("./FmdGoodSharp")); + +var _FmdGoodTwoTone = _interopRequireDefault(require("./FmdGoodTwoTone")); + +var _Folder = _interopRequireDefault(require("./Folder")); + +var _FolderOpen = _interopRequireDefault(require("./FolderOpen")); + +var _FolderOpenOutlined = _interopRequireDefault(require("./FolderOpenOutlined")); + +var _FolderOpenRounded = _interopRequireDefault(require("./FolderOpenRounded")); + +var _FolderOpenSharp = _interopRequireDefault(require("./FolderOpenSharp")); + +var _FolderOpenTwoTone = _interopRequireDefault(require("./FolderOpenTwoTone")); + +var _FolderOutlined = _interopRequireDefault(require("./FolderOutlined")); + +var _FolderRounded = _interopRequireDefault(require("./FolderRounded")); + +var _FolderShared = _interopRequireDefault(require("./FolderShared")); + +var _FolderSharedOutlined = _interopRequireDefault(require("./FolderSharedOutlined")); + +var _FolderSharedRounded = _interopRequireDefault(require("./FolderSharedRounded")); + +var _FolderSharedSharp = _interopRequireDefault(require("./FolderSharedSharp")); + +var _FolderSharedTwoTone = _interopRequireDefault(require("./FolderSharedTwoTone")); + +var _FolderSharp = _interopRequireDefault(require("./FolderSharp")); + +var _FolderSpecial = _interopRequireDefault(require("./FolderSpecial")); + +var _FolderSpecialOutlined = _interopRequireDefault(require("./FolderSpecialOutlined")); + +var _FolderSpecialRounded = _interopRequireDefault(require("./FolderSpecialRounded")); + +var _FolderSpecialSharp = _interopRequireDefault(require("./FolderSpecialSharp")); + +var _FolderSpecialTwoTone = _interopRequireDefault(require("./FolderSpecialTwoTone")); + +var _FolderTwoTone = _interopRequireDefault(require("./FolderTwoTone")); + +var _FollowTheSigns = _interopRequireDefault(require("./FollowTheSigns")); + +var _FollowTheSignsOutlined = _interopRequireDefault(require("./FollowTheSignsOutlined")); + +var _FollowTheSignsRounded = _interopRequireDefault(require("./FollowTheSignsRounded")); + +var _FollowTheSignsSharp = _interopRequireDefault(require("./FollowTheSignsSharp")); + +var _FollowTheSignsTwoTone = _interopRequireDefault(require("./FollowTheSignsTwoTone")); + +var _FontDownload = _interopRequireDefault(require("./FontDownload")); + +var _FontDownloadOff = _interopRequireDefault(require("./FontDownloadOff")); + +var _FontDownloadOffOutlined = _interopRequireDefault(require("./FontDownloadOffOutlined")); + +var _FontDownloadOffRounded = _interopRequireDefault(require("./FontDownloadOffRounded")); + +var _FontDownloadOffSharp = _interopRequireDefault(require("./FontDownloadOffSharp")); + +var _FontDownloadOffTwoTone = _interopRequireDefault(require("./FontDownloadOffTwoTone")); + +var _FontDownloadOutlined = _interopRequireDefault(require("./FontDownloadOutlined")); + +var _FontDownloadRounded = _interopRequireDefault(require("./FontDownloadRounded")); + +var _FontDownloadSharp = _interopRequireDefault(require("./FontDownloadSharp")); + +var _FontDownloadTwoTone = _interopRequireDefault(require("./FontDownloadTwoTone")); + +var _FoodBank = _interopRequireDefault(require("./FoodBank")); + +var _FoodBankOutlined = _interopRequireDefault(require("./FoodBankOutlined")); + +var _FoodBankRounded = _interopRequireDefault(require("./FoodBankRounded")); + +var _FoodBankSharp = _interopRequireDefault(require("./FoodBankSharp")); + +var _FoodBankTwoTone = _interopRequireDefault(require("./FoodBankTwoTone")); + +var _FormatAlignCenter = _interopRequireDefault(require("./FormatAlignCenter")); + +var _FormatAlignCenterOutlined = _interopRequireDefault(require("./FormatAlignCenterOutlined")); + +var _FormatAlignCenterRounded = _interopRequireDefault(require("./FormatAlignCenterRounded")); + +var _FormatAlignCenterSharp = _interopRequireDefault(require("./FormatAlignCenterSharp")); + +var _FormatAlignCenterTwoTone = _interopRequireDefault(require("./FormatAlignCenterTwoTone")); + +var _FormatAlignJustify = _interopRequireDefault(require("./FormatAlignJustify")); + +var _FormatAlignJustifyOutlined = _interopRequireDefault(require("./FormatAlignJustifyOutlined")); + +var _FormatAlignJustifyRounded = _interopRequireDefault(require("./FormatAlignJustifyRounded")); + +var _FormatAlignJustifySharp = _interopRequireDefault(require("./FormatAlignJustifySharp")); + +var _FormatAlignJustifyTwoTone = _interopRequireDefault(require("./FormatAlignJustifyTwoTone")); + +var _FormatAlignLeft = _interopRequireDefault(require("./FormatAlignLeft")); + +var _FormatAlignLeftOutlined = _interopRequireDefault(require("./FormatAlignLeftOutlined")); + +var _FormatAlignLeftRounded = _interopRequireDefault(require("./FormatAlignLeftRounded")); + +var _FormatAlignLeftSharp = _interopRequireDefault(require("./FormatAlignLeftSharp")); + +var _FormatAlignLeftTwoTone = _interopRequireDefault(require("./FormatAlignLeftTwoTone")); + +var _FormatAlignRight = _interopRequireDefault(require("./FormatAlignRight")); + +var _FormatAlignRightOutlined = _interopRequireDefault(require("./FormatAlignRightOutlined")); + +var _FormatAlignRightRounded = _interopRequireDefault(require("./FormatAlignRightRounded")); + +var _FormatAlignRightSharp = _interopRequireDefault(require("./FormatAlignRightSharp")); + +var _FormatAlignRightTwoTone = _interopRequireDefault(require("./FormatAlignRightTwoTone")); + +var _FormatBold = _interopRequireDefault(require("./FormatBold")); + +var _FormatBoldOutlined = _interopRequireDefault(require("./FormatBoldOutlined")); + +var _FormatBoldRounded = _interopRequireDefault(require("./FormatBoldRounded")); + +var _FormatBoldSharp = _interopRequireDefault(require("./FormatBoldSharp")); + +var _FormatBoldTwoTone = _interopRequireDefault(require("./FormatBoldTwoTone")); + +var _FormatClear = _interopRequireDefault(require("./FormatClear")); + +var _FormatClearOutlined = _interopRequireDefault(require("./FormatClearOutlined")); + +var _FormatClearRounded = _interopRequireDefault(require("./FormatClearRounded")); + +var _FormatClearSharp = _interopRequireDefault(require("./FormatClearSharp")); + +var _FormatClearTwoTone = _interopRequireDefault(require("./FormatClearTwoTone")); + +var _FormatColorFill = _interopRequireDefault(require("./FormatColorFill")); + +var _FormatColorFillOutlined = _interopRequireDefault(require("./FormatColorFillOutlined")); + +var _FormatColorFillRounded = _interopRequireDefault(require("./FormatColorFillRounded")); + +var _FormatColorFillSharp = _interopRequireDefault(require("./FormatColorFillSharp")); + +var _FormatColorFillTwoTone = _interopRequireDefault(require("./FormatColorFillTwoTone")); + +var _FormatColorReset = _interopRequireDefault(require("./FormatColorReset")); + +var _FormatColorResetOutlined = _interopRequireDefault(require("./FormatColorResetOutlined")); + +var _FormatColorResetRounded = _interopRequireDefault(require("./FormatColorResetRounded")); + +var _FormatColorResetSharp = _interopRequireDefault(require("./FormatColorResetSharp")); + +var _FormatColorResetTwoTone = _interopRequireDefault(require("./FormatColorResetTwoTone")); + +var _FormatColorText = _interopRequireDefault(require("./FormatColorText")); + +var _FormatColorTextOutlined = _interopRequireDefault(require("./FormatColorTextOutlined")); + +var _FormatColorTextRounded = _interopRequireDefault(require("./FormatColorTextRounded")); + +var _FormatColorTextSharp = _interopRequireDefault(require("./FormatColorTextSharp")); + +var _FormatColorTextTwoTone = _interopRequireDefault(require("./FormatColorTextTwoTone")); + +var _FormatIndentDecrease = _interopRequireDefault(require("./FormatIndentDecrease")); + +var _FormatIndentDecreaseOutlined = _interopRequireDefault(require("./FormatIndentDecreaseOutlined")); + +var _FormatIndentDecreaseRounded = _interopRequireDefault(require("./FormatIndentDecreaseRounded")); + +var _FormatIndentDecreaseSharp = _interopRequireDefault(require("./FormatIndentDecreaseSharp")); + +var _FormatIndentDecreaseTwoTone = _interopRequireDefault(require("./FormatIndentDecreaseTwoTone")); + +var _FormatIndentIncrease = _interopRequireDefault(require("./FormatIndentIncrease")); + +var _FormatIndentIncreaseOutlined = _interopRequireDefault(require("./FormatIndentIncreaseOutlined")); + +var _FormatIndentIncreaseRounded = _interopRequireDefault(require("./FormatIndentIncreaseRounded")); + +var _FormatIndentIncreaseSharp = _interopRequireDefault(require("./FormatIndentIncreaseSharp")); + +var _FormatIndentIncreaseTwoTone = _interopRequireDefault(require("./FormatIndentIncreaseTwoTone")); + +var _FormatItalic = _interopRequireDefault(require("./FormatItalic")); + +var _FormatItalicOutlined = _interopRequireDefault(require("./FormatItalicOutlined")); + +var _FormatItalicRounded = _interopRequireDefault(require("./FormatItalicRounded")); + +var _FormatItalicSharp = _interopRequireDefault(require("./FormatItalicSharp")); + +var _FormatItalicTwoTone = _interopRequireDefault(require("./FormatItalicTwoTone")); + +var _FormatLineSpacing = _interopRequireDefault(require("./FormatLineSpacing")); + +var _FormatLineSpacingOutlined = _interopRequireDefault(require("./FormatLineSpacingOutlined")); + +var _FormatLineSpacingRounded = _interopRequireDefault(require("./FormatLineSpacingRounded")); + +var _FormatLineSpacingSharp = _interopRequireDefault(require("./FormatLineSpacingSharp")); + +var _FormatLineSpacingTwoTone = _interopRequireDefault(require("./FormatLineSpacingTwoTone")); + +var _FormatListBulleted = _interopRequireDefault(require("./FormatListBulleted")); + +var _FormatListBulletedOutlined = _interopRequireDefault(require("./FormatListBulletedOutlined")); + +var _FormatListBulletedRounded = _interopRequireDefault(require("./FormatListBulletedRounded")); + +var _FormatListBulletedSharp = _interopRequireDefault(require("./FormatListBulletedSharp")); + +var _FormatListBulletedTwoTone = _interopRequireDefault(require("./FormatListBulletedTwoTone")); + +var _FormatListNumbered = _interopRequireDefault(require("./FormatListNumbered")); + +var _FormatListNumberedOutlined = _interopRequireDefault(require("./FormatListNumberedOutlined")); + +var _FormatListNumberedRounded = _interopRequireDefault(require("./FormatListNumberedRounded")); + +var _FormatListNumberedRtl = _interopRequireDefault(require("./FormatListNumberedRtl")); + +var _FormatListNumberedRtlOutlined = _interopRequireDefault(require("./FormatListNumberedRtlOutlined")); + +var _FormatListNumberedRtlRounded = _interopRequireDefault(require("./FormatListNumberedRtlRounded")); + +var _FormatListNumberedRtlSharp = _interopRequireDefault(require("./FormatListNumberedRtlSharp")); + +var _FormatListNumberedRtlTwoTone = _interopRequireDefault(require("./FormatListNumberedRtlTwoTone")); + +var _FormatListNumberedSharp = _interopRequireDefault(require("./FormatListNumberedSharp")); + +var _FormatListNumberedTwoTone = _interopRequireDefault(require("./FormatListNumberedTwoTone")); + +var _FormatPaint = _interopRequireDefault(require("./FormatPaint")); + +var _FormatPaintOutlined = _interopRequireDefault(require("./FormatPaintOutlined")); + +var _FormatPaintRounded = _interopRequireDefault(require("./FormatPaintRounded")); + +var _FormatPaintSharp = _interopRequireDefault(require("./FormatPaintSharp")); + +var _FormatPaintTwoTone = _interopRequireDefault(require("./FormatPaintTwoTone")); + +var _FormatQuote = _interopRequireDefault(require("./FormatQuote")); + +var _FormatQuoteOutlined = _interopRequireDefault(require("./FormatQuoteOutlined")); + +var _FormatQuoteRounded = _interopRequireDefault(require("./FormatQuoteRounded")); + +var _FormatQuoteSharp = _interopRequireDefault(require("./FormatQuoteSharp")); + +var _FormatQuoteTwoTone = _interopRequireDefault(require("./FormatQuoteTwoTone")); + +var _FormatShapes = _interopRequireDefault(require("./FormatShapes")); + +var _FormatShapesOutlined = _interopRequireDefault(require("./FormatShapesOutlined")); + +var _FormatShapesRounded = _interopRequireDefault(require("./FormatShapesRounded")); + +var _FormatShapesSharp = _interopRequireDefault(require("./FormatShapesSharp")); + +var _FormatShapesTwoTone = _interopRequireDefault(require("./FormatShapesTwoTone")); + +var _FormatSize = _interopRequireDefault(require("./FormatSize")); + +var _FormatSizeOutlined = _interopRequireDefault(require("./FormatSizeOutlined")); + +var _FormatSizeRounded = _interopRequireDefault(require("./FormatSizeRounded")); + +var _FormatSizeSharp = _interopRequireDefault(require("./FormatSizeSharp")); + +var _FormatSizeTwoTone = _interopRequireDefault(require("./FormatSizeTwoTone")); + +var _FormatStrikethrough = _interopRequireDefault(require("./FormatStrikethrough")); + +var _FormatStrikethroughOutlined = _interopRequireDefault(require("./FormatStrikethroughOutlined")); + +var _FormatStrikethroughRounded = _interopRequireDefault(require("./FormatStrikethroughRounded")); + +var _FormatStrikethroughSharp = _interopRequireDefault(require("./FormatStrikethroughSharp")); + +var _FormatStrikethroughTwoTone = _interopRequireDefault(require("./FormatStrikethroughTwoTone")); + +var _FormatTextdirectionLToR = _interopRequireDefault(require("./FormatTextdirectionLToR")); + +var _FormatTextdirectionLToROutlined = _interopRequireDefault(require("./FormatTextdirectionLToROutlined")); + +var _FormatTextdirectionLToRRounded = _interopRequireDefault(require("./FormatTextdirectionLToRRounded")); + +var _FormatTextdirectionLToRSharp = _interopRequireDefault(require("./FormatTextdirectionLToRSharp")); + +var _FormatTextdirectionLToRTwoTone = _interopRequireDefault(require("./FormatTextdirectionLToRTwoTone")); + +var _FormatTextdirectionRToL = _interopRequireDefault(require("./FormatTextdirectionRToL")); + +var _FormatTextdirectionRToLOutlined = _interopRequireDefault(require("./FormatTextdirectionRToLOutlined")); + +var _FormatTextdirectionRToLRounded = _interopRequireDefault(require("./FormatTextdirectionRToLRounded")); + +var _FormatTextdirectionRToLSharp = _interopRequireDefault(require("./FormatTextdirectionRToLSharp")); + +var _FormatTextdirectionRToLTwoTone = _interopRequireDefault(require("./FormatTextdirectionRToLTwoTone")); + +var _FormatUnderlined = _interopRequireDefault(require("./FormatUnderlined")); + +var _FormatUnderlinedOutlined = _interopRequireDefault(require("./FormatUnderlinedOutlined")); + +var _FormatUnderlinedRounded = _interopRequireDefault(require("./FormatUnderlinedRounded")); + +var _FormatUnderlinedSharp = _interopRequireDefault(require("./FormatUnderlinedSharp")); + +var _FormatUnderlinedTwoTone = _interopRequireDefault(require("./FormatUnderlinedTwoTone")); + +var _Forum = _interopRequireDefault(require("./Forum")); + +var _ForumOutlined = _interopRequireDefault(require("./ForumOutlined")); + +var _ForumRounded = _interopRequireDefault(require("./ForumRounded")); + +var _ForumSharp = _interopRequireDefault(require("./ForumSharp")); + +var _ForumTwoTone = _interopRequireDefault(require("./ForumTwoTone")); + +var _Forward = _interopRequireDefault(require("./Forward")); + +var _Forward2 = _interopRequireDefault(require("./Forward10")); + +var _Forward10Outlined = _interopRequireDefault(require("./Forward10Outlined")); + +var _Forward10Rounded = _interopRequireDefault(require("./Forward10Rounded")); + +var _Forward10Sharp = _interopRequireDefault(require("./Forward10Sharp")); + +var _Forward10TwoTone = _interopRequireDefault(require("./Forward10TwoTone")); + +var _Forward3 = _interopRequireDefault(require("./Forward30")); + +var _Forward30Outlined = _interopRequireDefault(require("./Forward30Outlined")); + +var _Forward30Rounded = _interopRequireDefault(require("./Forward30Rounded")); + +var _Forward30Sharp = _interopRequireDefault(require("./Forward30Sharp")); + +var _Forward30TwoTone = _interopRequireDefault(require("./Forward30TwoTone")); + +var _Forward4 = _interopRequireDefault(require("./Forward5")); + +var _Forward5Outlined = _interopRequireDefault(require("./Forward5Outlined")); + +var _Forward5Rounded = _interopRequireDefault(require("./Forward5Rounded")); + +var _Forward5Sharp = _interopRequireDefault(require("./Forward5Sharp")); + +var _Forward5TwoTone = _interopRequireDefault(require("./Forward5TwoTone")); + +var _ForwardOutlined = _interopRequireDefault(require("./ForwardOutlined")); + +var _ForwardRounded = _interopRequireDefault(require("./ForwardRounded")); + +var _ForwardSharp = _interopRequireDefault(require("./ForwardSharp")); + +var _ForwardToInbox = _interopRequireDefault(require("./ForwardToInbox")); + +var _ForwardToInboxOutlined = _interopRequireDefault(require("./ForwardToInboxOutlined")); + +var _ForwardToInboxRounded = _interopRequireDefault(require("./ForwardToInboxRounded")); + +var _ForwardToInboxSharp = _interopRequireDefault(require("./ForwardToInboxSharp")); + +var _ForwardToInboxTwoTone = _interopRequireDefault(require("./ForwardToInboxTwoTone")); + +var _ForwardTwoTone = _interopRequireDefault(require("./ForwardTwoTone")); + +var _Foundation = _interopRequireDefault(require("./Foundation")); + +var _FoundationOutlined = _interopRequireDefault(require("./FoundationOutlined")); + +var _FoundationRounded = _interopRequireDefault(require("./FoundationRounded")); + +var _FoundationSharp = _interopRequireDefault(require("./FoundationSharp")); + +var _FoundationTwoTone = _interopRequireDefault(require("./FoundationTwoTone")); + +var _FourGMobiledata = _interopRequireDefault(require("./FourGMobiledata")); + +var _FourGMobiledataOutlined = _interopRequireDefault(require("./FourGMobiledataOutlined")); + +var _FourGMobiledataRounded = _interopRequireDefault(require("./FourGMobiledataRounded")); + +var _FourGMobiledataSharp = _interopRequireDefault(require("./FourGMobiledataSharp")); + +var _FourGMobiledataTwoTone = _interopRequireDefault(require("./FourGMobiledataTwoTone")); + +var _FourGPlusMobiledata = _interopRequireDefault(require("./FourGPlusMobiledata")); + +var _FourGPlusMobiledataOutlined = _interopRequireDefault(require("./FourGPlusMobiledataOutlined")); + +var _FourGPlusMobiledataRounded = _interopRequireDefault(require("./FourGPlusMobiledataRounded")); + +var _FourGPlusMobiledataSharp = _interopRequireDefault(require("./FourGPlusMobiledataSharp")); + +var _FourGPlusMobiledataTwoTone = _interopRequireDefault(require("./FourGPlusMobiledataTwoTone")); + +var _FourK = _interopRequireDefault(require("./FourK")); + +var _FourKOutlined = _interopRequireDefault(require("./FourKOutlined")); + +var _FourKPlus = _interopRequireDefault(require("./FourKPlus")); + +var _FourKPlusOutlined = _interopRequireDefault(require("./FourKPlusOutlined")); + +var _FourKPlusRounded = _interopRequireDefault(require("./FourKPlusRounded")); + +var _FourKPlusSharp = _interopRequireDefault(require("./FourKPlusSharp")); + +var _FourKPlusTwoTone = _interopRequireDefault(require("./FourKPlusTwoTone")); + +var _FourKRounded = _interopRequireDefault(require("./FourKRounded")); + +var _FourKSharp = _interopRequireDefault(require("./FourKSharp")); + +var _FourKTwoTone = _interopRequireDefault(require("./FourKTwoTone")); + +var _FourMp = _interopRequireDefault(require("./FourMp")); + +var _FourMpOutlined = _interopRequireDefault(require("./FourMpOutlined")); + +var _FourMpRounded = _interopRequireDefault(require("./FourMpRounded")); + +var _FourMpSharp = _interopRequireDefault(require("./FourMpSharp")); + +var _FourMpTwoTone = _interopRequireDefault(require("./FourMpTwoTone")); + +var _FourteenMp = _interopRequireDefault(require("./FourteenMp")); + +var _FourteenMpOutlined = _interopRequireDefault(require("./FourteenMpOutlined")); + +var _FourteenMpRounded = _interopRequireDefault(require("./FourteenMpRounded")); + +var _FourteenMpSharp = _interopRequireDefault(require("./FourteenMpSharp")); + +var _FourteenMpTwoTone = _interopRequireDefault(require("./FourteenMpTwoTone")); + +var _FreeBreakfast = _interopRequireDefault(require("./FreeBreakfast")); + +var _FreeBreakfastOutlined = _interopRequireDefault(require("./FreeBreakfastOutlined")); + +var _FreeBreakfastRounded = _interopRequireDefault(require("./FreeBreakfastRounded")); + +var _FreeBreakfastSharp = _interopRequireDefault(require("./FreeBreakfastSharp")); + +var _FreeBreakfastTwoTone = _interopRequireDefault(require("./FreeBreakfastTwoTone")); + +var _Fullscreen = _interopRequireDefault(require("./Fullscreen")); + +var _FullscreenExit = _interopRequireDefault(require("./FullscreenExit")); + +var _FullscreenExitOutlined = _interopRequireDefault(require("./FullscreenExitOutlined")); + +var _FullscreenExitRounded = _interopRequireDefault(require("./FullscreenExitRounded")); + +var _FullscreenExitSharp = _interopRequireDefault(require("./FullscreenExitSharp")); + +var _FullscreenExitTwoTone = _interopRequireDefault(require("./FullscreenExitTwoTone")); + +var _FullscreenOutlined = _interopRequireDefault(require("./FullscreenOutlined")); + +var _FullscreenRounded = _interopRequireDefault(require("./FullscreenRounded")); + +var _FullscreenSharp = _interopRequireDefault(require("./FullscreenSharp")); + +var _FullscreenTwoTone = _interopRequireDefault(require("./FullscreenTwoTone")); + +var _Functions = _interopRequireDefault(require("./Functions")); + +var _FunctionsOutlined = _interopRequireDefault(require("./FunctionsOutlined")); + +var _FunctionsRounded = _interopRequireDefault(require("./FunctionsRounded")); + +var _FunctionsSharp = _interopRequireDefault(require("./FunctionsSharp")); + +var _FunctionsTwoTone = _interopRequireDefault(require("./FunctionsTwoTone")); + +var _GMobiledata = _interopRequireDefault(require("./GMobiledata")); + +var _GMobiledataOutlined = _interopRequireDefault(require("./GMobiledataOutlined")); + +var _GMobiledataRounded = _interopRequireDefault(require("./GMobiledataRounded")); + +var _GMobiledataSharp = _interopRequireDefault(require("./GMobiledataSharp")); + +var _GMobiledataTwoTone = _interopRequireDefault(require("./GMobiledataTwoTone")); + +var _GTranslate = _interopRequireDefault(require("./GTranslate")); + +var _GTranslateOutlined = _interopRequireDefault(require("./GTranslateOutlined")); + +var _GTranslateRounded = _interopRequireDefault(require("./GTranslateRounded")); + +var _GTranslateSharp = _interopRequireDefault(require("./GTranslateSharp")); + +var _GTranslateTwoTone = _interopRequireDefault(require("./GTranslateTwoTone")); + +var _Gamepad = _interopRequireDefault(require("./Gamepad")); + +var _GamepadOutlined = _interopRequireDefault(require("./GamepadOutlined")); + +var _GamepadRounded = _interopRequireDefault(require("./GamepadRounded")); + +var _GamepadSharp = _interopRequireDefault(require("./GamepadSharp")); + +var _GamepadTwoTone = _interopRequireDefault(require("./GamepadTwoTone")); + +var _Games = _interopRequireDefault(require("./Games")); + +var _GamesOutlined = _interopRequireDefault(require("./GamesOutlined")); + +var _GamesRounded = _interopRequireDefault(require("./GamesRounded")); + +var _GamesSharp = _interopRequireDefault(require("./GamesSharp")); + +var _GamesTwoTone = _interopRequireDefault(require("./GamesTwoTone")); + +var _Garage = _interopRequireDefault(require("./Garage")); + +var _GarageOutlined = _interopRequireDefault(require("./GarageOutlined")); + +var _GarageRounded = _interopRequireDefault(require("./GarageRounded")); + +var _GarageSharp = _interopRequireDefault(require("./GarageSharp")); + +var _GarageTwoTone = _interopRequireDefault(require("./GarageTwoTone")); + +var _Gavel = _interopRequireDefault(require("./Gavel")); + +var _GavelOutlined = _interopRequireDefault(require("./GavelOutlined")); + +var _GavelRounded = _interopRequireDefault(require("./GavelRounded")); + +var _GavelSharp = _interopRequireDefault(require("./GavelSharp")); + +var _GavelTwoTone = _interopRequireDefault(require("./GavelTwoTone")); + +var _Gesture = _interopRequireDefault(require("./Gesture")); + +var _GestureOutlined = _interopRequireDefault(require("./GestureOutlined")); + +var _GestureRounded = _interopRequireDefault(require("./GestureRounded")); + +var _GestureSharp = _interopRequireDefault(require("./GestureSharp")); + +var _GestureTwoTone = _interopRequireDefault(require("./GestureTwoTone")); + +var _GetApp = _interopRequireDefault(require("./GetApp")); + +var _GetAppOutlined = _interopRequireDefault(require("./GetAppOutlined")); + +var _GetAppRounded = _interopRequireDefault(require("./GetAppRounded")); + +var _GetAppSharp = _interopRequireDefault(require("./GetAppSharp")); + +var _GetAppTwoTone = _interopRequireDefault(require("./GetAppTwoTone")); + +var _Gif = _interopRequireDefault(require("./Gif")); + +var _GifOutlined = _interopRequireDefault(require("./GifOutlined")); + +var _GifRounded = _interopRequireDefault(require("./GifRounded")); + +var _GifSharp = _interopRequireDefault(require("./GifSharp")); + +var _GifTwoTone = _interopRequireDefault(require("./GifTwoTone")); + +var _GitHub = _interopRequireDefault(require("./GitHub")); + +var _Gite = _interopRequireDefault(require("./Gite")); + +var _GiteOutlined = _interopRequireDefault(require("./GiteOutlined")); + +var _GiteRounded = _interopRequireDefault(require("./GiteRounded")); + +var _GiteSharp = _interopRequireDefault(require("./GiteSharp")); + +var _GiteTwoTone = _interopRequireDefault(require("./GiteTwoTone")); + +var _GolfCourse = _interopRequireDefault(require("./GolfCourse")); + +var _GolfCourseOutlined = _interopRequireDefault(require("./GolfCourseOutlined")); + +var _GolfCourseRounded = _interopRequireDefault(require("./GolfCourseRounded")); + +var _GolfCourseSharp = _interopRequireDefault(require("./GolfCourseSharp")); + +var _GolfCourseTwoTone = _interopRequireDefault(require("./GolfCourseTwoTone")); + +var _Google = _interopRequireDefault(require("./Google")); + +var _GppBad = _interopRequireDefault(require("./GppBad")); + +var _GppBadOutlined = _interopRequireDefault(require("./GppBadOutlined")); + +var _GppBadRounded = _interopRequireDefault(require("./GppBadRounded")); + +var _GppBadSharp = _interopRequireDefault(require("./GppBadSharp")); + +var _GppBadTwoTone = _interopRequireDefault(require("./GppBadTwoTone")); + +var _GppGood = _interopRequireDefault(require("./GppGood")); + +var _GppGoodOutlined = _interopRequireDefault(require("./GppGoodOutlined")); + +var _GppGoodRounded = _interopRequireDefault(require("./GppGoodRounded")); + +var _GppGoodSharp = _interopRequireDefault(require("./GppGoodSharp")); + +var _GppGoodTwoTone = _interopRequireDefault(require("./GppGoodTwoTone")); + +var _GppMaybe = _interopRequireDefault(require("./GppMaybe")); + +var _GppMaybeOutlined = _interopRequireDefault(require("./GppMaybeOutlined")); + +var _GppMaybeRounded = _interopRequireDefault(require("./GppMaybeRounded")); + +var _GppMaybeSharp = _interopRequireDefault(require("./GppMaybeSharp")); + +var _GppMaybeTwoTone = _interopRequireDefault(require("./GppMaybeTwoTone")); + +var _GpsFixed = _interopRequireDefault(require("./GpsFixed")); + +var _GpsFixedOutlined = _interopRequireDefault(require("./GpsFixedOutlined")); + +var _GpsFixedRounded = _interopRequireDefault(require("./GpsFixedRounded")); + +var _GpsFixedSharp = _interopRequireDefault(require("./GpsFixedSharp")); + +var _GpsFixedTwoTone = _interopRequireDefault(require("./GpsFixedTwoTone")); + +var _GpsNotFixed = _interopRequireDefault(require("./GpsNotFixed")); + +var _GpsNotFixedOutlined = _interopRequireDefault(require("./GpsNotFixedOutlined")); + +var _GpsNotFixedRounded = _interopRequireDefault(require("./GpsNotFixedRounded")); + +var _GpsNotFixedSharp = _interopRequireDefault(require("./GpsNotFixedSharp")); + +var _GpsNotFixedTwoTone = _interopRequireDefault(require("./GpsNotFixedTwoTone")); + +var _GpsOff = _interopRequireDefault(require("./GpsOff")); + +var _GpsOffOutlined = _interopRequireDefault(require("./GpsOffOutlined")); + +var _GpsOffRounded = _interopRequireDefault(require("./GpsOffRounded")); + +var _GpsOffSharp = _interopRequireDefault(require("./GpsOffSharp")); + +var _GpsOffTwoTone = _interopRequireDefault(require("./GpsOffTwoTone")); + +var _Grade = _interopRequireDefault(require("./Grade")); + +var _GradeOutlined = _interopRequireDefault(require("./GradeOutlined")); + +var _GradeRounded = _interopRequireDefault(require("./GradeRounded")); + +var _GradeSharp = _interopRequireDefault(require("./GradeSharp")); + +var _GradeTwoTone = _interopRequireDefault(require("./GradeTwoTone")); + +var _Gradient = _interopRequireDefault(require("./Gradient")); + +var _GradientOutlined = _interopRequireDefault(require("./GradientOutlined")); + +var _GradientRounded = _interopRequireDefault(require("./GradientRounded")); + +var _GradientSharp = _interopRequireDefault(require("./GradientSharp")); + +var _GradientTwoTone = _interopRequireDefault(require("./GradientTwoTone")); + +var _Grading = _interopRequireDefault(require("./Grading")); + +var _GradingOutlined = _interopRequireDefault(require("./GradingOutlined")); + +var _GradingRounded = _interopRequireDefault(require("./GradingRounded")); + +var _GradingSharp = _interopRequireDefault(require("./GradingSharp")); + +var _GradingTwoTone = _interopRequireDefault(require("./GradingTwoTone")); + +var _Grain = _interopRequireDefault(require("./Grain")); + +var _GrainOutlined = _interopRequireDefault(require("./GrainOutlined")); + +var _GrainRounded = _interopRequireDefault(require("./GrainRounded")); + +var _GrainSharp = _interopRequireDefault(require("./GrainSharp")); + +var _GrainTwoTone = _interopRequireDefault(require("./GrainTwoTone")); + +var _GraphicEq = _interopRequireDefault(require("./GraphicEq")); + +var _GraphicEqOutlined = _interopRequireDefault(require("./GraphicEqOutlined")); + +var _GraphicEqRounded = _interopRequireDefault(require("./GraphicEqRounded")); + +var _GraphicEqSharp = _interopRequireDefault(require("./GraphicEqSharp")); + +var _GraphicEqTwoTone = _interopRequireDefault(require("./GraphicEqTwoTone")); + +var _Grass = _interopRequireDefault(require("./Grass")); + +var _GrassOutlined = _interopRequireDefault(require("./GrassOutlined")); + +var _GrassRounded = _interopRequireDefault(require("./GrassRounded")); + +var _GrassSharp = _interopRequireDefault(require("./GrassSharp")); + +var _GrassTwoTone = _interopRequireDefault(require("./GrassTwoTone")); + +var _Grid3x = _interopRequireDefault(require("./Grid3x3")); + +var _Grid3x3Outlined = _interopRequireDefault(require("./Grid3x3Outlined")); + +var _Grid3x3Rounded = _interopRequireDefault(require("./Grid3x3Rounded")); + +var _Grid3x3Sharp = _interopRequireDefault(require("./Grid3x3Sharp")); + +var _Grid3x3TwoTone = _interopRequireDefault(require("./Grid3x3TwoTone")); + +var _Grid4x = _interopRequireDefault(require("./Grid4x4")); + +var _Grid4x4Outlined = _interopRequireDefault(require("./Grid4x4Outlined")); + +var _Grid4x4Rounded = _interopRequireDefault(require("./Grid4x4Rounded")); + +var _Grid4x4Sharp = _interopRequireDefault(require("./Grid4x4Sharp")); + +var _Grid4x4TwoTone = _interopRequireDefault(require("./Grid4x4TwoTone")); + +var _GridGoldenratio = _interopRequireDefault(require("./GridGoldenratio")); + +var _GridGoldenratioOutlined = _interopRequireDefault(require("./GridGoldenratioOutlined")); + +var _GridGoldenratioRounded = _interopRequireDefault(require("./GridGoldenratioRounded")); + +var _GridGoldenratioSharp = _interopRequireDefault(require("./GridGoldenratioSharp")); + +var _GridGoldenratioTwoTone = _interopRequireDefault(require("./GridGoldenratioTwoTone")); + +var _GridOff = _interopRequireDefault(require("./GridOff")); + +var _GridOffOutlined = _interopRequireDefault(require("./GridOffOutlined")); + +var _GridOffRounded = _interopRequireDefault(require("./GridOffRounded")); + +var _GridOffSharp = _interopRequireDefault(require("./GridOffSharp")); + +var _GridOffTwoTone = _interopRequireDefault(require("./GridOffTwoTone")); + +var _GridOn = _interopRequireDefault(require("./GridOn")); + +var _GridOnOutlined = _interopRequireDefault(require("./GridOnOutlined")); + +var _GridOnRounded = _interopRequireDefault(require("./GridOnRounded")); + +var _GridOnSharp = _interopRequireDefault(require("./GridOnSharp")); + +var _GridOnTwoTone = _interopRequireDefault(require("./GridOnTwoTone")); + +var _GridView = _interopRequireDefault(require("./GridView")); + +var _GridViewOutlined = _interopRequireDefault(require("./GridViewOutlined")); + +var _GridViewRounded = _interopRequireDefault(require("./GridViewRounded")); + +var _GridViewSharp = _interopRequireDefault(require("./GridViewSharp")); + +var _GridViewTwoTone = _interopRequireDefault(require("./GridViewTwoTone")); + +var _Group = _interopRequireDefault(require("./Group")); + +var _GroupAdd = _interopRequireDefault(require("./GroupAdd")); + +var _GroupAddOutlined = _interopRequireDefault(require("./GroupAddOutlined")); + +var _GroupAddRounded = _interopRequireDefault(require("./GroupAddRounded")); + +var _GroupAddSharp = _interopRequireDefault(require("./GroupAddSharp")); + +var _GroupAddTwoTone = _interopRequireDefault(require("./GroupAddTwoTone")); + +var _GroupOutlined = _interopRequireDefault(require("./GroupOutlined")); + +var _GroupRounded = _interopRequireDefault(require("./GroupRounded")); + +var _GroupSharp = _interopRequireDefault(require("./GroupSharp")); + +var _GroupTwoTone = _interopRequireDefault(require("./GroupTwoTone")); + +var _GroupWork = _interopRequireDefault(require("./GroupWork")); + +var _GroupWorkOutlined = _interopRequireDefault(require("./GroupWorkOutlined")); + +var _GroupWorkRounded = _interopRequireDefault(require("./GroupWorkRounded")); + +var _GroupWorkSharp = _interopRequireDefault(require("./GroupWorkSharp")); + +var _GroupWorkTwoTone = _interopRequireDefault(require("./GroupWorkTwoTone")); + +var _Groups = _interopRequireDefault(require("./Groups")); + +var _GroupsOutlined = _interopRequireDefault(require("./GroupsOutlined")); + +var _GroupsRounded = _interopRequireDefault(require("./GroupsRounded")); + +var _GroupsSharp = _interopRequireDefault(require("./GroupsSharp")); + +var _GroupsTwoTone = _interopRequireDefault(require("./GroupsTwoTone")); + +var _HMobiledata = _interopRequireDefault(require("./HMobiledata")); + +var _HMobiledataOutlined = _interopRequireDefault(require("./HMobiledataOutlined")); + +var _HMobiledataRounded = _interopRequireDefault(require("./HMobiledataRounded")); + +var _HMobiledataSharp = _interopRequireDefault(require("./HMobiledataSharp")); + +var _HMobiledataTwoTone = _interopRequireDefault(require("./HMobiledataTwoTone")); + +var _HPlusMobiledata = _interopRequireDefault(require("./HPlusMobiledata")); + +var _HPlusMobiledataOutlined = _interopRequireDefault(require("./HPlusMobiledataOutlined")); + +var _HPlusMobiledataRounded = _interopRequireDefault(require("./HPlusMobiledataRounded")); + +var _HPlusMobiledataSharp = _interopRequireDefault(require("./HPlusMobiledataSharp")); + +var _HPlusMobiledataTwoTone = _interopRequireDefault(require("./HPlusMobiledataTwoTone")); + +var _Hail = _interopRequireDefault(require("./Hail")); + +var _HailOutlined = _interopRequireDefault(require("./HailOutlined")); + +var _HailRounded = _interopRequireDefault(require("./HailRounded")); + +var _HailSharp = _interopRequireDefault(require("./HailSharp")); + +var _HailTwoTone = _interopRequireDefault(require("./HailTwoTone")); + +var _Handyman = _interopRequireDefault(require("./Handyman")); + +var _HandymanOutlined = _interopRequireDefault(require("./HandymanOutlined")); + +var _HandymanRounded = _interopRequireDefault(require("./HandymanRounded")); + +var _HandymanSharp = _interopRequireDefault(require("./HandymanSharp")); + +var _HandymanTwoTone = _interopRequireDefault(require("./HandymanTwoTone")); + +var _Hardware = _interopRequireDefault(require("./Hardware")); + +var _HardwareOutlined = _interopRequireDefault(require("./HardwareOutlined")); + +var _HardwareRounded = _interopRequireDefault(require("./HardwareRounded")); + +var _HardwareSharp = _interopRequireDefault(require("./HardwareSharp")); + +var _HardwareTwoTone = _interopRequireDefault(require("./HardwareTwoTone")); + +var _Hd = _interopRequireDefault(require("./Hd")); + +var _HdOutlined = _interopRequireDefault(require("./HdOutlined")); + +var _HdRounded = _interopRequireDefault(require("./HdRounded")); + +var _HdSharp = _interopRequireDefault(require("./HdSharp")); + +var _HdTwoTone = _interopRequireDefault(require("./HdTwoTone")); + +var _HdrAuto = _interopRequireDefault(require("./HdrAuto")); + +var _HdrAutoOutlined = _interopRequireDefault(require("./HdrAutoOutlined")); + +var _HdrAutoRounded = _interopRequireDefault(require("./HdrAutoRounded")); + +var _HdrAutoSelect = _interopRequireDefault(require("./HdrAutoSelect")); + +var _HdrAutoSelectOutlined = _interopRequireDefault(require("./HdrAutoSelectOutlined")); + +var _HdrAutoSelectRounded = _interopRequireDefault(require("./HdrAutoSelectRounded")); + +var _HdrAutoSelectSharp = _interopRequireDefault(require("./HdrAutoSelectSharp")); + +var _HdrAutoSelectTwoTone = _interopRequireDefault(require("./HdrAutoSelectTwoTone")); + +var _HdrAutoSharp = _interopRequireDefault(require("./HdrAutoSharp")); + +var _HdrAutoTwoTone = _interopRequireDefault(require("./HdrAutoTwoTone")); + +var _HdrEnhancedSelect = _interopRequireDefault(require("./HdrEnhancedSelect")); + +var _HdrEnhancedSelectOutlined = _interopRequireDefault(require("./HdrEnhancedSelectOutlined")); + +var _HdrEnhancedSelectRounded = _interopRequireDefault(require("./HdrEnhancedSelectRounded")); + +var _HdrEnhancedSelectSharp = _interopRequireDefault(require("./HdrEnhancedSelectSharp")); + +var _HdrEnhancedSelectTwoTone = _interopRequireDefault(require("./HdrEnhancedSelectTwoTone")); + +var _HdrOff = _interopRequireDefault(require("./HdrOff")); + +var _HdrOffOutlined = _interopRequireDefault(require("./HdrOffOutlined")); + +var _HdrOffRounded = _interopRequireDefault(require("./HdrOffRounded")); + +var _HdrOffSelect = _interopRequireDefault(require("./HdrOffSelect")); + +var _HdrOffSelectOutlined = _interopRequireDefault(require("./HdrOffSelectOutlined")); + +var _HdrOffSelectRounded = _interopRequireDefault(require("./HdrOffSelectRounded")); + +var _HdrOffSelectSharp = _interopRequireDefault(require("./HdrOffSelectSharp")); + +var _HdrOffSelectTwoTone = _interopRequireDefault(require("./HdrOffSelectTwoTone")); + +var _HdrOffSharp = _interopRequireDefault(require("./HdrOffSharp")); + +var _HdrOffTwoTone = _interopRequireDefault(require("./HdrOffTwoTone")); + +var _HdrOn = _interopRequireDefault(require("./HdrOn")); + +var _HdrOnOutlined = _interopRequireDefault(require("./HdrOnOutlined")); + +var _HdrOnRounded = _interopRequireDefault(require("./HdrOnRounded")); + +var _HdrOnSelect = _interopRequireDefault(require("./HdrOnSelect")); + +var _HdrOnSelectOutlined = _interopRequireDefault(require("./HdrOnSelectOutlined")); + +var _HdrOnSelectRounded = _interopRequireDefault(require("./HdrOnSelectRounded")); + +var _HdrOnSelectSharp = _interopRequireDefault(require("./HdrOnSelectSharp")); + +var _HdrOnSelectTwoTone = _interopRequireDefault(require("./HdrOnSelectTwoTone")); + +var _HdrOnSharp = _interopRequireDefault(require("./HdrOnSharp")); + +var _HdrOnTwoTone = _interopRequireDefault(require("./HdrOnTwoTone")); + +var _HdrPlus = _interopRequireDefault(require("./HdrPlus")); + +var _HdrPlusOutlined = _interopRequireDefault(require("./HdrPlusOutlined")); + +var _HdrPlusRounded = _interopRequireDefault(require("./HdrPlusRounded")); + +var _HdrPlusSharp = _interopRequireDefault(require("./HdrPlusSharp")); + +var _HdrPlusTwoTone = _interopRequireDefault(require("./HdrPlusTwoTone")); + +var _HdrStrong = _interopRequireDefault(require("./HdrStrong")); + +var _HdrStrongOutlined = _interopRequireDefault(require("./HdrStrongOutlined")); + +var _HdrStrongRounded = _interopRequireDefault(require("./HdrStrongRounded")); + +var _HdrStrongSharp = _interopRequireDefault(require("./HdrStrongSharp")); + +var _HdrStrongTwoTone = _interopRequireDefault(require("./HdrStrongTwoTone")); + +var _HdrWeak = _interopRequireDefault(require("./HdrWeak")); + +var _HdrWeakOutlined = _interopRequireDefault(require("./HdrWeakOutlined")); + +var _HdrWeakRounded = _interopRequireDefault(require("./HdrWeakRounded")); + +var _HdrWeakSharp = _interopRequireDefault(require("./HdrWeakSharp")); + +var _HdrWeakTwoTone = _interopRequireDefault(require("./HdrWeakTwoTone")); + +var _Headphones = _interopRequireDefault(require("./Headphones")); + +var _HeadphonesBattery = _interopRequireDefault(require("./HeadphonesBattery")); + +var _HeadphonesBatteryOutlined = _interopRequireDefault(require("./HeadphonesBatteryOutlined")); + +var _HeadphonesBatteryRounded = _interopRequireDefault(require("./HeadphonesBatteryRounded")); + +var _HeadphonesBatterySharp = _interopRequireDefault(require("./HeadphonesBatterySharp")); + +var _HeadphonesBatteryTwoTone = _interopRequireDefault(require("./HeadphonesBatteryTwoTone")); + +var _HeadphonesOutlined = _interopRequireDefault(require("./HeadphonesOutlined")); + +var _HeadphonesRounded = _interopRequireDefault(require("./HeadphonesRounded")); + +var _HeadphonesSharp = _interopRequireDefault(require("./HeadphonesSharp")); + +var _HeadphonesTwoTone = _interopRequireDefault(require("./HeadphonesTwoTone")); + +var _Headset = _interopRequireDefault(require("./Headset")); + +var _HeadsetMic = _interopRequireDefault(require("./HeadsetMic")); + +var _HeadsetMicOutlined = _interopRequireDefault(require("./HeadsetMicOutlined")); + +var _HeadsetMicRounded = _interopRequireDefault(require("./HeadsetMicRounded")); + +var _HeadsetMicSharp = _interopRequireDefault(require("./HeadsetMicSharp")); + +var _HeadsetMicTwoTone = _interopRequireDefault(require("./HeadsetMicTwoTone")); + +var _HeadsetOff = _interopRequireDefault(require("./HeadsetOff")); + +var _HeadsetOffOutlined = _interopRequireDefault(require("./HeadsetOffOutlined")); + +var _HeadsetOffRounded = _interopRequireDefault(require("./HeadsetOffRounded")); + +var _HeadsetOffSharp = _interopRequireDefault(require("./HeadsetOffSharp")); + +var _HeadsetOffTwoTone = _interopRequireDefault(require("./HeadsetOffTwoTone")); + +var _HeadsetOutlined = _interopRequireDefault(require("./HeadsetOutlined")); + +var _HeadsetRounded = _interopRequireDefault(require("./HeadsetRounded")); + +var _HeadsetSharp = _interopRequireDefault(require("./HeadsetSharp")); + +var _HeadsetTwoTone = _interopRequireDefault(require("./HeadsetTwoTone")); + +var _Healing = _interopRequireDefault(require("./Healing")); + +var _HealingOutlined = _interopRequireDefault(require("./HealingOutlined")); + +var _HealingRounded = _interopRequireDefault(require("./HealingRounded")); + +var _HealingSharp = _interopRequireDefault(require("./HealingSharp")); + +var _HealingTwoTone = _interopRequireDefault(require("./HealingTwoTone")); + +var _HealthAndSafety = _interopRequireDefault(require("./HealthAndSafety")); + +var _HealthAndSafetyOutlined = _interopRequireDefault(require("./HealthAndSafetyOutlined")); + +var _HealthAndSafetyRounded = _interopRequireDefault(require("./HealthAndSafetyRounded")); + +var _HealthAndSafetySharp = _interopRequireDefault(require("./HealthAndSafetySharp")); + +var _HealthAndSafetyTwoTone = _interopRequireDefault(require("./HealthAndSafetyTwoTone")); + +var _Hearing = _interopRequireDefault(require("./Hearing")); + +var _HearingDisabled = _interopRequireDefault(require("./HearingDisabled")); + +var _HearingDisabledOutlined = _interopRequireDefault(require("./HearingDisabledOutlined")); + +var _HearingDisabledRounded = _interopRequireDefault(require("./HearingDisabledRounded")); + +var _HearingDisabledSharp = _interopRequireDefault(require("./HearingDisabledSharp")); + +var _HearingDisabledTwoTone = _interopRequireDefault(require("./HearingDisabledTwoTone")); + +var _HearingOutlined = _interopRequireDefault(require("./HearingOutlined")); + +var _HearingRounded = _interopRequireDefault(require("./HearingRounded")); + +var _HearingSharp = _interopRequireDefault(require("./HearingSharp")); + +var _HearingTwoTone = _interopRequireDefault(require("./HearingTwoTone")); + +var _Height = _interopRequireDefault(require("./Height")); + +var _HeightOutlined = _interopRequireDefault(require("./HeightOutlined")); + +var _HeightRounded = _interopRequireDefault(require("./HeightRounded")); + +var _HeightSharp = _interopRequireDefault(require("./HeightSharp")); + +var _HeightTwoTone = _interopRequireDefault(require("./HeightTwoTone")); + +var _Help = _interopRequireDefault(require("./Help")); + +var _HelpCenter = _interopRequireDefault(require("./HelpCenter")); + +var _HelpCenterOutlined = _interopRequireDefault(require("./HelpCenterOutlined")); + +var _HelpCenterRounded = _interopRequireDefault(require("./HelpCenterRounded")); + +var _HelpCenterSharp = _interopRequireDefault(require("./HelpCenterSharp")); + +var _HelpCenterTwoTone = _interopRequireDefault(require("./HelpCenterTwoTone")); + +var _HelpOutline = _interopRequireDefault(require("./HelpOutline")); + +var _HelpOutlineOutlined = _interopRequireDefault(require("./HelpOutlineOutlined")); + +var _HelpOutlineRounded = _interopRequireDefault(require("./HelpOutlineRounded")); + +var _HelpOutlineSharp = _interopRequireDefault(require("./HelpOutlineSharp")); + +var _HelpOutlineTwoTone = _interopRequireDefault(require("./HelpOutlineTwoTone")); + +var _HelpOutlined = _interopRequireDefault(require("./HelpOutlined")); + +var _HelpRounded = _interopRequireDefault(require("./HelpRounded")); + +var _HelpSharp = _interopRequireDefault(require("./HelpSharp")); + +var _HelpTwoTone = _interopRequireDefault(require("./HelpTwoTone")); + +var _Hevc = _interopRequireDefault(require("./Hevc")); + +var _HevcOutlined = _interopRequireDefault(require("./HevcOutlined")); + +var _HevcRounded = _interopRequireDefault(require("./HevcRounded")); + +var _HevcSharp = _interopRequireDefault(require("./HevcSharp")); + +var _HevcTwoTone = _interopRequireDefault(require("./HevcTwoTone")); + +var _HideImage = _interopRequireDefault(require("./HideImage")); + +var _HideImageOutlined = _interopRequireDefault(require("./HideImageOutlined")); + +var _HideImageRounded = _interopRequireDefault(require("./HideImageRounded")); + +var _HideImageSharp = _interopRequireDefault(require("./HideImageSharp")); + +var _HideImageTwoTone = _interopRequireDefault(require("./HideImageTwoTone")); + +var _HideSource = _interopRequireDefault(require("./HideSource")); + +var _HideSourceOutlined = _interopRequireDefault(require("./HideSourceOutlined")); + +var _HideSourceRounded = _interopRequireDefault(require("./HideSourceRounded")); + +var _HideSourceSharp = _interopRequireDefault(require("./HideSourceSharp")); + +var _HideSourceTwoTone = _interopRequireDefault(require("./HideSourceTwoTone")); + +var _HighQuality = _interopRequireDefault(require("./HighQuality")); + +var _HighQualityOutlined = _interopRequireDefault(require("./HighQualityOutlined")); + +var _HighQualityRounded = _interopRequireDefault(require("./HighQualityRounded")); + +var _HighQualitySharp = _interopRequireDefault(require("./HighQualitySharp")); + +var _HighQualityTwoTone = _interopRequireDefault(require("./HighQualityTwoTone")); + +var _Highlight = _interopRequireDefault(require("./Highlight")); + +var _HighlightAlt = _interopRequireDefault(require("./HighlightAlt")); + +var _HighlightAltOutlined = _interopRequireDefault(require("./HighlightAltOutlined")); + +var _HighlightAltRounded = _interopRequireDefault(require("./HighlightAltRounded")); + +var _HighlightAltSharp = _interopRequireDefault(require("./HighlightAltSharp")); + +var _HighlightAltTwoTone = _interopRequireDefault(require("./HighlightAltTwoTone")); + +var _HighlightOff = _interopRequireDefault(require("./HighlightOff")); + +var _HighlightOffOutlined = _interopRequireDefault(require("./HighlightOffOutlined")); + +var _HighlightOffRounded = _interopRequireDefault(require("./HighlightOffRounded")); + +var _HighlightOffSharp = _interopRequireDefault(require("./HighlightOffSharp")); + +var _HighlightOffTwoTone = _interopRequireDefault(require("./HighlightOffTwoTone")); + +var _HighlightOutlined = _interopRequireDefault(require("./HighlightOutlined")); + +var _HighlightRounded = _interopRequireDefault(require("./HighlightRounded")); + +var _HighlightSharp = _interopRequireDefault(require("./HighlightSharp")); + +var _HighlightTwoTone = _interopRequireDefault(require("./HighlightTwoTone")); + +var _Hiking = _interopRequireDefault(require("./Hiking")); + +var _HikingOutlined = _interopRequireDefault(require("./HikingOutlined")); + +var _HikingRounded = _interopRequireDefault(require("./HikingRounded")); + +var _HikingSharp = _interopRequireDefault(require("./HikingSharp")); + +var _HikingTwoTone = _interopRequireDefault(require("./HikingTwoTone")); + +var _History = _interopRequireDefault(require("./History")); + +var _HistoryEdu = _interopRequireDefault(require("./HistoryEdu")); + +var _HistoryEduOutlined = _interopRequireDefault(require("./HistoryEduOutlined")); + +var _HistoryEduRounded = _interopRequireDefault(require("./HistoryEduRounded")); + +var _HistoryEduSharp = _interopRequireDefault(require("./HistoryEduSharp")); + +var _HistoryEduTwoTone = _interopRequireDefault(require("./HistoryEduTwoTone")); + +var _HistoryOutlined = _interopRequireDefault(require("./HistoryOutlined")); + +var _HistoryRounded = _interopRequireDefault(require("./HistoryRounded")); + +var _HistorySharp = _interopRequireDefault(require("./HistorySharp")); + +var _HistoryToggleOff = _interopRequireDefault(require("./HistoryToggleOff")); + +var _HistoryToggleOffOutlined = _interopRequireDefault(require("./HistoryToggleOffOutlined")); + +var _HistoryToggleOffRounded = _interopRequireDefault(require("./HistoryToggleOffRounded")); + +var _HistoryToggleOffSharp = _interopRequireDefault(require("./HistoryToggleOffSharp")); + +var _HistoryToggleOffTwoTone = _interopRequireDefault(require("./HistoryToggleOffTwoTone")); + +var _HistoryTwoTone = _interopRequireDefault(require("./HistoryTwoTone")); + +var _HolidayVillage = _interopRequireDefault(require("./HolidayVillage")); + +var _HolidayVillageOutlined = _interopRequireDefault(require("./HolidayVillageOutlined")); + +var _HolidayVillageRounded = _interopRequireDefault(require("./HolidayVillageRounded")); + +var _HolidayVillageSharp = _interopRequireDefault(require("./HolidayVillageSharp")); + +var _HolidayVillageTwoTone = _interopRequireDefault(require("./HolidayVillageTwoTone")); + +var _Home = _interopRequireDefault(require("./Home")); + +var _HomeMax = _interopRequireDefault(require("./HomeMax")); + +var _HomeMaxOutlined = _interopRequireDefault(require("./HomeMaxOutlined")); + +var _HomeMaxRounded = _interopRequireDefault(require("./HomeMaxRounded")); + +var _HomeMaxSharp = _interopRequireDefault(require("./HomeMaxSharp")); + +var _HomeMaxTwoTone = _interopRequireDefault(require("./HomeMaxTwoTone")); + +var _HomeMini = _interopRequireDefault(require("./HomeMini")); + +var _HomeMiniOutlined = _interopRequireDefault(require("./HomeMiniOutlined")); + +var _HomeMiniRounded = _interopRequireDefault(require("./HomeMiniRounded")); + +var _HomeMiniSharp = _interopRequireDefault(require("./HomeMiniSharp")); + +var _HomeMiniTwoTone = _interopRequireDefault(require("./HomeMiniTwoTone")); + +var _HomeOutlined = _interopRequireDefault(require("./HomeOutlined")); + +var _HomeRepairService = _interopRequireDefault(require("./HomeRepairService")); + +var _HomeRepairServiceOutlined = _interopRequireDefault(require("./HomeRepairServiceOutlined")); + +var _HomeRepairServiceRounded = _interopRequireDefault(require("./HomeRepairServiceRounded")); + +var _HomeRepairServiceSharp = _interopRequireDefault(require("./HomeRepairServiceSharp")); + +var _HomeRepairServiceTwoTone = _interopRequireDefault(require("./HomeRepairServiceTwoTone")); + +var _HomeRounded = _interopRequireDefault(require("./HomeRounded")); + +var _HomeSharp = _interopRequireDefault(require("./HomeSharp")); + +var _HomeTwoTone = _interopRequireDefault(require("./HomeTwoTone")); + +var _HomeWork = _interopRequireDefault(require("./HomeWork")); + +var _HomeWorkOutlined = _interopRequireDefault(require("./HomeWorkOutlined")); + +var _HomeWorkRounded = _interopRequireDefault(require("./HomeWorkRounded")); + +var _HomeWorkSharp = _interopRequireDefault(require("./HomeWorkSharp")); + +var _HomeWorkTwoTone = _interopRequireDefault(require("./HomeWorkTwoTone")); + +var _HorizontalRule = _interopRequireDefault(require("./HorizontalRule")); + +var _HorizontalRuleOutlined = _interopRequireDefault(require("./HorizontalRuleOutlined")); + +var _HorizontalRuleRounded = _interopRequireDefault(require("./HorizontalRuleRounded")); + +var _HorizontalRuleSharp = _interopRequireDefault(require("./HorizontalRuleSharp")); + +var _HorizontalRuleTwoTone = _interopRequireDefault(require("./HorizontalRuleTwoTone")); + +var _HorizontalSplit = _interopRequireDefault(require("./HorizontalSplit")); + +var _HorizontalSplitOutlined = _interopRequireDefault(require("./HorizontalSplitOutlined")); + +var _HorizontalSplitRounded = _interopRequireDefault(require("./HorizontalSplitRounded")); + +var _HorizontalSplitSharp = _interopRequireDefault(require("./HorizontalSplitSharp")); + +var _HorizontalSplitTwoTone = _interopRequireDefault(require("./HorizontalSplitTwoTone")); + +var _HotTub = _interopRequireDefault(require("./HotTub")); + +var _HotTubOutlined = _interopRequireDefault(require("./HotTubOutlined")); + +var _HotTubRounded = _interopRequireDefault(require("./HotTubRounded")); + +var _HotTubSharp = _interopRequireDefault(require("./HotTubSharp")); + +var _HotTubTwoTone = _interopRequireDefault(require("./HotTubTwoTone")); + +var _Hotel = _interopRequireDefault(require("./Hotel")); + +var _HotelOutlined = _interopRequireDefault(require("./HotelOutlined")); + +var _HotelRounded = _interopRequireDefault(require("./HotelRounded")); + +var _HotelSharp = _interopRequireDefault(require("./HotelSharp")); + +var _HotelTwoTone = _interopRequireDefault(require("./HotelTwoTone")); + +var _HourglassBottom = _interopRequireDefault(require("./HourglassBottom")); + +var _HourglassBottomOutlined = _interopRequireDefault(require("./HourglassBottomOutlined")); + +var _HourglassBottomRounded = _interopRequireDefault(require("./HourglassBottomRounded")); + +var _HourglassBottomSharp = _interopRequireDefault(require("./HourglassBottomSharp")); + +var _HourglassBottomTwoTone = _interopRequireDefault(require("./HourglassBottomTwoTone")); + +var _HourglassDisabled = _interopRequireDefault(require("./HourglassDisabled")); + +var _HourglassDisabledOutlined = _interopRequireDefault(require("./HourglassDisabledOutlined")); + +var _HourglassDisabledRounded = _interopRequireDefault(require("./HourglassDisabledRounded")); + +var _HourglassDisabledSharp = _interopRequireDefault(require("./HourglassDisabledSharp")); + +var _HourglassDisabledTwoTone = _interopRequireDefault(require("./HourglassDisabledTwoTone")); + +var _HourglassEmpty = _interopRequireDefault(require("./HourglassEmpty")); + +var _HourglassEmptyOutlined = _interopRequireDefault(require("./HourglassEmptyOutlined")); + +var _HourglassEmptyRounded = _interopRequireDefault(require("./HourglassEmptyRounded")); + +var _HourglassEmptySharp = _interopRequireDefault(require("./HourglassEmptySharp")); + +var _HourglassEmptyTwoTone = _interopRequireDefault(require("./HourglassEmptyTwoTone")); + +var _HourglassFull = _interopRequireDefault(require("./HourglassFull")); + +var _HourglassFullOutlined = _interopRequireDefault(require("./HourglassFullOutlined")); + +var _HourglassFullRounded = _interopRequireDefault(require("./HourglassFullRounded")); + +var _HourglassFullSharp = _interopRequireDefault(require("./HourglassFullSharp")); + +var _HourglassFullTwoTone = _interopRequireDefault(require("./HourglassFullTwoTone")); + +var _HourglassTop = _interopRequireDefault(require("./HourglassTop")); + +var _HourglassTopOutlined = _interopRequireDefault(require("./HourglassTopOutlined")); + +var _HourglassTopRounded = _interopRequireDefault(require("./HourglassTopRounded")); + +var _HourglassTopSharp = _interopRequireDefault(require("./HourglassTopSharp")); + +var _HourglassTopTwoTone = _interopRequireDefault(require("./HourglassTopTwoTone")); + +var _House = _interopRequireDefault(require("./House")); + +var _HouseOutlined = _interopRequireDefault(require("./HouseOutlined")); + +var _HouseRounded = _interopRequireDefault(require("./HouseRounded")); + +var _HouseSharp = _interopRequireDefault(require("./HouseSharp")); + +var _HouseSiding = _interopRequireDefault(require("./HouseSiding")); + +var _HouseSidingOutlined = _interopRequireDefault(require("./HouseSidingOutlined")); + +var _HouseSidingRounded = _interopRequireDefault(require("./HouseSidingRounded")); + +var _HouseSidingSharp = _interopRequireDefault(require("./HouseSidingSharp")); + +var _HouseSidingTwoTone = _interopRequireDefault(require("./HouseSidingTwoTone")); + +var _HouseTwoTone = _interopRequireDefault(require("./HouseTwoTone")); + +var _Houseboat = _interopRequireDefault(require("./Houseboat")); + +var _HouseboatOutlined = _interopRequireDefault(require("./HouseboatOutlined")); + +var _HouseboatRounded = _interopRequireDefault(require("./HouseboatRounded")); + +var _HouseboatSharp = _interopRequireDefault(require("./HouseboatSharp")); + +var _HouseboatTwoTone = _interopRequireDefault(require("./HouseboatTwoTone")); + +var _HowToReg = _interopRequireDefault(require("./HowToReg")); + +var _HowToRegOutlined = _interopRequireDefault(require("./HowToRegOutlined")); + +var _HowToRegRounded = _interopRequireDefault(require("./HowToRegRounded")); + +var _HowToRegSharp = _interopRequireDefault(require("./HowToRegSharp")); + +var _HowToRegTwoTone = _interopRequireDefault(require("./HowToRegTwoTone")); + +var _HowToVote = _interopRequireDefault(require("./HowToVote")); + +var _HowToVoteOutlined = _interopRequireDefault(require("./HowToVoteOutlined")); + +var _HowToVoteRounded = _interopRequireDefault(require("./HowToVoteRounded")); + +var _HowToVoteSharp = _interopRequireDefault(require("./HowToVoteSharp")); + +var _HowToVoteTwoTone = _interopRequireDefault(require("./HowToVoteTwoTone")); + +var _Http = _interopRequireDefault(require("./Http")); + +var _HttpOutlined = _interopRequireDefault(require("./HttpOutlined")); + +var _HttpRounded = _interopRequireDefault(require("./HttpRounded")); + +var _HttpSharp = _interopRequireDefault(require("./HttpSharp")); + +var _HttpTwoTone = _interopRequireDefault(require("./HttpTwoTone")); + +var _Https = _interopRequireDefault(require("./Https")); + +var _HttpsOutlined = _interopRequireDefault(require("./HttpsOutlined")); + +var _HttpsRounded = _interopRequireDefault(require("./HttpsRounded")); + +var _HttpsSharp = _interopRequireDefault(require("./HttpsSharp")); + +var _HttpsTwoTone = _interopRequireDefault(require("./HttpsTwoTone")); + +var _Hvac = _interopRequireDefault(require("./Hvac")); + +var _HvacOutlined = _interopRequireDefault(require("./HvacOutlined")); + +var _HvacRounded = _interopRequireDefault(require("./HvacRounded")); + +var _HvacSharp = _interopRequireDefault(require("./HvacSharp")); + +var _HvacTwoTone = _interopRequireDefault(require("./HvacTwoTone")); + +var _IceSkating = _interopRequireDefault(require("./IceSkating")); + +var _IceSkatingOutlined = _interopRequireDefault(require("./IceSkatingOutlined")); + +var _IceSkatingRounded = _interopRequireDefault(require("./IceSkatingRounded")); + +var _IceSkatingSharp = _interopRequireDefault(require("./IceSkatingSharp")); + +var _IceSkatingTwoTone = _interopRequireDefault(require("./IceSkatingTwoTone")); + +var _Icecream = _interopRequireDefault(require("./Icecream")); + +var _IcecreamOutlined = _interopRequireDefault(require("./IcecreamOutlined")); + +var _IcecreamRounded = _interopRequireDefault(require("./IcecreamRounded")); + +var _IcecreamSharp = _interopRequireDefault(require("./IcecreamSharp")); + +var _IcecreamTwoTone = _interopRequireDefault(require("./IcecreamTwoTone")); + +var _Image = _interopRequireDefault(require("./Image")); + +var _ImageAspectRatio = _interopRequireDefault(require("./ImageAspectRatio")); + +var _ImageAspectRatioOutlined = _interopRequireDefault(require("./ImageAspectRatioOutlined")); + +var _ImageAspectRatioRounded = _interopRequireDefault(require("./ImageAspectRatioRounded")); + +var _ImageAspectRatioSharp = _interopRequireDefault(require("./ImageAspectRatioSharp")); + +var _ImageAspectRatioTwoTone = _interopRequireDefault(require("./ImageAspectRatioTwoTone")); + +var _ImageNotSupported = _interopRequireDefault(require("./ImageNotSupported")); + +var _ImageNotSupportedOutlined = _interopRequireDefault(require("./ImageNotSupportedOutlined")); + +var _ImageNotSupportedRounded = _interopRequireDefault(require("./ImageNotSupportedRounded")); + +var _ImageNotSupportedSharp = _interopRequireDefault(require("./ImageNotSupportedSharp")); + +var _ImageNotSupportedTwoTone = _interopRequireDefault(require("./ImageNotSupportedTwoTone")); + +var _ImageOutlined = _interopRequireDefault(require("./ImageOutlined")); + +var _ImageRounded = _interopRequireDefault(require("./ImageRounded")); + +var _ImageSearch = _interopRequireDefault(require("./ImageSearch")); + +var _ImageSearchOutlined = _interopRequireDefault(require("./ImageSearchOutlined")); + +var _ImageSearchRounded = _interopRequireDefault(require("./ImageSearchRounded")); + +var _ImageSearchSharp = _interopRequireDefault(require("./ImageSearchSharp")); + +var _ImageSearchTwoTone = _interopRequireDefault(require("./ImageSearchTwoTone")); + +var _ImageSharp = _interopRequireDefault(require("./ImageSharp")); + +var _ImageTwoTone = _interopRequireDefault(require("./ImageTwoTone")); + +var _ImagesearchRoller = _interopRequireDefault(require("./ImagesearchRoller")); + +var _ImagesearchRollerOutlined = _interopRequireDefault(require("./ImagesearchRollerOutlined")); + +var _ImagesearchRollerRounded = _interopRequireDefault(require("./ImagesearchRollerRounded")); + +var _ImagesearchRollerSharp = _interopRequireDefault(require("./ImagesearchRollerSharp")); + +var _ImagesearchRollerTwoTone = _interopRequireDefault(require("./ImagesearchRollerTwoTone")); + +var _ImportContacts = _interopRequireDefault(require("./ImportContacts")); + +var _ImportContactsOutlined = _interopRequireDefault(require("./ImportContactsOutlined")); + +var _ImportContactsRounded = _interopRequireDefault(require("./ImportContactsRounded")); + +var _ImportContactsSharp = _interopRequireDefault(require("./ImportContactsSharp")); + +var _ImportContactsTwoTone = _interopRequireDefault(require("./ImportContactsTwoTone")); + +var _ImportExport = _interopRequireDefault(require("./ImportExport")); + +var _ImportExportOutlined = _interopRequireDefault(require("./ImportExportOutlined")); + +var _ImportExportRounded = _interopRequireDefault(require("./ImportExportRounded")); + +var _ImportExportSharp = _interopRequireDefault(require("./ImportExportSharp")); + +var _ImportExportTwoTone = _interopRequireDefault(require("./ImportExportTwoTone")); + +var _ImportantDevices = _interopRequireDefault(require("./ImportantDevices")); + +var _ImportantDevicesOutlined = _interopRequireDefault(require("./ImportantDevicesOutlined")); + +var _ImportantDevicesRounded = _interopRequireDefault(require("./ImportantDevicesRounded")); + +var _ImportantDevicesSharp = _interopRequireDefault(require("./ImportantDevicesSharp")); + +var _ImportantDevicesTwoTone = _interopRequireDefault(require("./ImportantDevicesTwoTone")); + +var _Inbox = _interopRequireDefault(require("./Inbox")); + +var _InboxOutlined = _interopRequireDefault(require("./InboxOutlined")); + +var _InboxRounded = _interopRequireDefault(require("./InboxRounded")); + +var _InboxSharp = _interopRequireDefault(require("./InboxSharp")); + +var _InboxTwoTone = _interopRequireDefault(require("./InboxTwoTone")); + +var _IndeterminateCheckBox = _interopRequireDefault(require("./IndeterminateCheckBox")); + +var _IndeterminateCheckBoxOutlined = _interopRequireDefault(require("./IndeterminateCheckBoxOutlined")); + +var _IndeterminateCheckBoxRounded = _interopRequireDefault(require("./IndeterminateCheckBoxRounded")); + +var _IndeterminateCheckBoxSharp = _interopRequireDefault(require("./IndeterminateCheckBoxSharp")); + +var _IndeterminateCheckBoxTwoTone = _interopRequireDefault(require("./IndeterminateCheckBoxTwoTone")); + +var _Info = _interopRequireDefault(require("./Info")); + +var _InfoOutlined = _interopRequireDefault(require("./InfoOutlined")); + +var _InfoRounded = _interopRequireDefault(require("./InfoRounded")); + +var _InfoSharp = _interopRequireDefault(require("./InfoSharp")); + +var _InfoTwoTone = _interopRequireDefault(require("./InfoTwoTone")); + +var _Input = _interopRequireDefault(require("./Input")); + +var _InputOutlined = _interopRequireDefault(require("./InputOutlined")); + +var _InputRounded = _interopRequireDefault(require("./InputRounded")); + +var _InputSharp = _interopRequireDefault(require("./InputSharp")); + +var _InputTwoTone = _interopRequireDefault(require("./InputTwoTone")); + +var _InsertChart = _interopRequireDefault(require("./InsertChart")); + +var _InsertChartOutlined = _interopRequireDefault(require("./InsertChartOutlined")); + +var _InsertChartOutlinedOutlined = _interopRequireDefault(require("./InsertChartOutlinedOutlined")); + +var _InsertChartOutlinedRounded = _interopRequireDefault(require("./InsertChartOutlinedRounded")); + +var _InsertChartOutlinedSharp = _interopRequireDefault(require("./InsertChartOutlinedSharp")); + +var _InsertChartOutlinedTwoTone = _interopRequireDefault(require("./InsertChartOutlinedTwoTone")); + +var _InsertChartRounded = _interopRequireDefault(require("./InsertChartRounded")); + +var _InsertChartSharp = _interopRequireDefault(require("./InsertChartSharp")); + +var _InsertChartTwoTone = _interopRequireDefault(require("./InsertChartTwoTone")); + +var _InsertComment = _interopRequireDefault(require("./InsertComment")); + +var _InsertCommentOutlined = _interopRequireDefault(require("./InsertCommentOutlined")); + +var _InsertCommentRounded = _interopRequireDefault(require("./InsertCommentRounded")); + +var _InsertCommentSharp = _interopRequireDefault(require("./InsertCommentSharp")); + +var _InsertCommentTwoTone = _interopRequireDefault(require("./InsertCommentTwoTone")); + +var _InsertDriveFile = _interopRequireDefault(require("./InsertDriveFile")); + +var _InsertDriveFileOutlined = _interopRequireDefault(require("./InsertDriveFileOutlined")); + +var _InsertDriveFileRounded = _interopRequireDefault(require("./InsertDriveFileRounded")); + +var _InsertDriveFileSharp = _interopRequireDefault(require("./InsertDriveFileSharp")); + +var _InsertDriveFileTwoTone = _interopRequireDefault(require("./InsertDriveFileTwoTone")); + +var _InsertEmoticon = _interopRequireDefault(require("./InsertEmoticon")); + +var _InsertEmoticonOutlined = _interopRequireDefault(require("./InsertEmoticonOutlined")); + +var _InsertEmoticonRounded = _interopRequireDefault(require("./InsertEmoticonRounded")); + +var _InsertEmoticonSharp = _interopRequireDefault(require("./InsertEmoticonSharp")); + +var _InsertEmoticonTwoTone = _interopRequireDefault(require("./InsertEmoticonTwoTone")); + +var _InsertInvitation = _interopRequireDefault(require("./InsertInvitation")); + +var _InsertInvitationOutlined = _interopRequireDefault(require("./InsertInvitationOutlined")); + +var _InsertInvitationRounded = _interopRequireDefault(require("./InsertInvitationRounded")); + +var _InsertInvitationSharp = _interopRequireDefault(require("./InsertInvitationSharp")); + +var _InsertInvitationTwoTone = _interopRequireDefault(require("./InsertInvitationTwoTone")); + +var _InsertLink = _interopRequireDefault(require("./InsertLink")); + +var _InsertLinkOutlined = _interopRequireDefault(require("./InsertLinkOutlined")); + +var _InsertLinkRounded = _interopRequireDefault(require("./InsertLinkRounded")); + +var _InsertLinkSharp = _interopRequireDefault(require("./InsertLinkSharp")); + +var _InsertLinkTwoTone = _interopRequireDefault(require("./InsertLinkTwoTone")); + +var _InsertPhoto = _interopRequireDefault(require("./InsertPhoto")); + +var _InsertPhotoOutlined = _interopRequireDefault(require("./InsertPhotoOutlined")); + +var _InsertPhotoRounded = _interopRequireDefault(require("./InsertPhotoRounded")); + +var _InsertPhotoSharp = _interopRequireDefault(require("./InsertPhotoSharp")); + +var _InsertPhotoTwoTone = _interopRequireDefault(require("./InsertPhotoTwoTone")); + +var _Insights = _interopRequireDefault(require("./Insights")); + +var _InsightsOutlined = _interopRequireDefault(require("./InsightsOutlined")); + +var _InsightsRounded = _interopRequireDefault(require("./InsightsRounded")); + +var _InsightsSharp = _interopRequireDefault(require("./InsightsSharp")); + +var _InsightsTwoTone = _interopRequireDefault(require("./InsightsTwoTone")); + +var _Instagram = _interopRequireDefault(require("./Instagram")); + +var _IntegrationInstructions = _interopRequireDefault(require("./IntegrationInstructions")); + +var _IntegrationInstructionsOutlined = _interopRequireDefault(require("./IntegrationInstructionsOutlined")); + +var _IntegrationInstructionsRounded = _interopRequireDefault(require("./IntegrationInstructionsRounded")); + +var _IntegrationInstructionsSharp = _interopRequireDefault(require("./IntegrationInstructionsSharp")); + +var _IntegrationInstructionsTwoTone = _interopRequireDefault(require("./IntegrationInstructionsTwoTone")); + +var _Inventory = _interopRequireDefault(require("./Inventory")); + +var _Inventory2 = _interopRequireDefault(require("./Inventory2")); + +var _Inventory2Outlined = _interopRequireDefault(require("./Inventory2Outlined")); + +var _Inventory2Rounded = _interopRequireDefault(require("./Inventory2Rounded")); + +var _Inventory2Sharp = _interopRequireDefault(require("./Inventory2Sharp")); + +var _Inventory2TwoTone = _interopRequireDefault(require("./Inventory2TwoTone")); + +var _InventoryOutlined = _interopRequireDefault(require("./InventoryOutlined")); + +var _InventoryRounded = _interopRequireDefault(require("./InventoryRounded")); + +var _InventorySharp = _interopRequireDefault(require("./InventorySharp")); + +var _InventoryTwoTone = _interopRequireDefault(require("./InventoryTwoTone")); + +var _InvertColors = _interopRequireDefault(require("./InvertColors")); + +var _InvertColorsOff = _interopRequireDefault(require("./InvertColorsOff")); + +var _InvertColorsOffOutlined = _interopRequireDefault(require("./InvertColorsOffOutlined")); + +var _InvertColorsOffRounded = _interopRequireDefault(require("./InvertColorsOffRounded")); + +var _InvertColorsOffSharp = _interopRequireDefault(require("./InvertColorsOffSharp")); + +var _InvertColorsOffTwoTone = _interopRequireDefault(require("./InvertColorsOffTwoTone")); + +var _InvertColorsOutlined = _interopRequireDefault(require("./InvertColorsOutlined")); + +var _InvertColorsRounded = _interopRequireDefault(require("./InvertColorsRounded")); + +var _InvertColorsSharp = _interopRequireDefault(require("./InvertColorsSharp")); + +var _InvertColorsTwoTone = _interopRequireDefault(require("./InvertColorsTwoTone")); + +var _IosShare = _interopRequireDefault(require("./IosShare")); + +var _IosShareOutlined = _interopRequireDefault(require("./IosShareOutlined")); + +var _IosShareRounded = _interopRequireDefault(require("./IosShareRounded")); + +var _IosShareSharp = _interopRequireDefault(require("./IosShareSharp")); + +var _IosShareTwoTone = _interopRequireDefault(require("./IosShareTwoTone")); + +var _Iron = _interopRequireDefault(require("./Iron")); + +var _IronOutlined = _interopRequireDefault(require("./IronOutlined")); + +var _IronRounded = _interopRequireDefault(require("./IronRounded")); + +var _IronSharp = _interopRequireDefault(require("./IronSharp")); + +var _IronTwoTone = _interopRequireDefault(require("./IronTwoTone")); + +var _Iso = _interopRequireDefault(require("./Iso")); + +var _IsoOutlined = _interopRequireDefault(require("./IsoOutlined")); + +var _IsoRounded = _interopRequireDefault(require("./IsoRounded")); + +var _IsoSharp = _interopRequireDefault(require("./IsoSharp")); + +var _IsoTwoTone = _interopRequireDefault(require("./IsoTwoTone")); + +var _Kayaking = _interopRequireDefault(require("./Kayaking")); + +var _KayakingOutlined = _interopRequireDefault(require("./KayakingOutlined")); + +var _KayakingRounded = _interopRequireDefault(require("./KayakingRounded")); + +var _KayakingSharp = _interopRequireDefault(require("./KayakingSharp")); + +var _KayakingTwoTone = _interopRequireDefault(require("./KayakingTwoTone")); + +var _Keyboard = _interopRequireDefault(require("./Keyboard")); + +var _KeyboardAlt = _interopRequireDefault(require("./KeyboardAlt")); + +var _KeyboardAltOutlined = _interopRequireDefault(require("./KeyboardAltOutlined")); + +var _KeyboardAltRounded = _interopRequireDefault(require("./KeyboardAltRounded")); + +var _KeyboardAltSharp = _interopRequireDefault(require("./KeyboardAltSharp")); + +var _KeyboardAltTwoTone = _interopRequireDefault(require("./KeyboardAltTwoTone")); + +var _KeyboardArrowDown = _interopRequireDefault(require("./KeyboardArrowDown")); + +var _KeyboardArrowDownOutlined = _interopRequireDefault(require("./KeyboardArrowDownOutlined")); + +var _KeyboardArrowDownRounded = _interopRequireDefault(require("./KeyboardArrowDownRounded")); + +var _KeyboardArrowDownSharp = _interopRequireDefault(require("./KeyboardArrowDownSharp")); + +var _KeyboardArrowDownTwoTone = _interopRequireDefault(require("./KeyboardArrowDownTwoTone")); + +var _KeyboardArrowLeft = _interopRequireDefault(require("./KeyboardArrowLeft")); + +var _KeyboardArrowLeftOutlined = _interopRequireDefault(require("./KeyboardArrowLeftOutlined")); + +var _KeyboardArrowLeftRounded = _interopRequireDefault(require("./KeyboardArrowLeftRounded")); + +var _KeyboardArrowLeftSharp = _interopRequireDefault(require("./KeyboardArrowLeftSharp")); + +var _KeyboardArrowLeftTwoTone = _interopRequireDefault(require("./KeyboardArrowLeftTwoTone")); + +var _KeyboardArrowRight = _interopRequireDefault(require("./KeyboardArrowRight")); + +var _KeyboardArrowRightOutlined = _interopRequireDefault(require("./KeyboardArrowRightOutlined")); + +var _KeyboardArrowRightRounded = _interopRequireDefault(require("./KeyboardArrowRightRounded")); + +var _KeyboardArrowRightSharp = _interopRequireDefault(require("./KeyboardArrowRightSharp")); + +var _KeyboardArrowRightTwoTone = _interopRequireDefault(require("./KeyboardArrowRightTwoTone")); + +var _KeyboardArrowUp = _interopRequireDefault(require("./KeyboardArrowUp")); + +var _KeyboardArrowUpOutlined = _interopRequireDefault(require("./KeyboardArrowUpOutlined")); + +var _KeyboardArrowUpRounded = _interopRequireDefault(require("./KeyboardArrowUpRounded")); + +var _KeyboardArrowUpSharp = _interopRequireDefault(require("./KeyboardArrowUpSharp")); + +var _KeyboardArrowUpTwoTone = _interopRequireDefault(require("./KeyboardArrowUpTwoTone")); + +var _KeyboardBackspace = _interopRequireDefault(require("./KeyboardBackspace")); + +var _KeyboardBackspaceOutlined = _interopRequireDefault(require("./KeyboardBackspaceOutlined")); + +var _KeyboardBackspaceRounded = _interopRequireDefault(require("./KeyboardBackspaceRounded")); + +var _KeyboardBackspaceSharp = _interopRequireDefault(require("./KeyboardBackspaceSharp")); + +var _KeyboardBackspaceTwoTone = _interopRequireDefault(require("./KeyboardBackspaceTwoTone")); + +var _KeyboardCapslock = _interopRequireDefault(require("./KeyboardCapslock")); + +var _KeyboardCapslockOutlined = _interopRequireDefault(require("./KeyboardCapslockOutlined")); + +var _KeyboardCapslockRounded = _interopRequireDefault(require("./KeyboardCapslockRounded")); + +var _KeyboardCapslockSharp = _interopRequireDefault(require("./KeyboardCapslockSharp")); + +var _KeyboardCapslockTwoTone = _interopRequireDefault(require("./KeyboardCapslockTwoTone")); + +var _KeyboardHide = _interopRequireDefault(require("./KeyboardHide")); + +var _KeyboardHideOutlined = _interopRequireDefault(require("./KeyboardHideOutlined")); + +var _KeyboardHideRounded = _interopRequireDefault(require("./KeyboardHideRounded")); + +var _KeyboardHideSharp = _interopRequireDefault(require("./KeyboardHideSharp")); + +var _KeyboardHideTwoTone = _interopRequireDefault(require("./KeyboardHideTwoTone")); + +var _KeyboardOutlined = _interopRequireDefault(require("./KeyboardOutlined")); + +var _KeyboardReturn = _interopRequireDefault(require("./KeyboardReturn")); + +var _KeyboardReturnOutlined = _interopRequireDefault(require("./KeyboardReturnOutlined")); + +var _KeyboardReturnRounded = _interopRequireDefault(require("./KeyboardReturnRounded")); + +var _KeyboardReturnSharp = _interopRequireDefault(require("./KeyboardReturnSharp")); + +var _KeyboardReturnTwoTone = _interopRequireDefault(require("./KeyboardReturnTwoTone")); + +var _KeyboardRounded = _interopRequireDefault(require("./KeyboardRounded")); + +var _KeyboardSharp = _interopRequireDefault(require("./KeyboardSharp")); + +var _KeyboardTab = _interopRequireDefault(require("./KeyboardTab")); + +var _KeyboardTabOutlined = _interopRequireDefault(require("./KeyboardTabOutlined")); + +var _KeyboardTabRounded = _interopRequireDefault(require("./KeyboardTabRounded")); + +var _KeyboardTabSharp = _interopRequireDefault(require("./KeyboardTabSharp")); + +var _KeyboardTabTwoTone = _interopRequireDefault(require("./KeyboardTabTwoTone")); + +var _KeyboardTwoTone = _interopRequireDefault(require("./KeyboardTwoTone")); + +var _KeyboardVoice = _interopRequireDefault(require("./KeyboardVoice")); + +var _KeyboardVoiceOutlined = _interopRequireDefault(require("./KeyboardVoiceOutlined")); + +var _KeyboardVoiceRounded = _interopRequireDefault(require("./KeyboardVoiceRounded")); + +var _KeyboardVoiceSharp = _interopRequireDefault(require("./KeyboardVoiceSharp")); + +var _KeyboardVoiceTwoTone = _interopRequireDefault(require("./KeyboardVoiceTwoTone")); + +var _KingBed = _interopRequireDefault(require("./KingBed")); + +var _KingBedOutlined = _interopRequireDefault(require("./KingBedOutlined")); + +var _KingBedRounded = _interopRequireDefault(require("./KingBedRounded")); + +var _KingBedSharp = _interopRequireDefault(require("./KingBedSharp")); + +var _KingBedTwoTone = _interopRequireDefault(require("./KingBedTwoTone")); + +var _Kitchen = _interopRequireDefault(require("./Kitchen")); + +var _KitchenOutlined = _interopRequireDefault(require("./KitchenOutlined")); + +var _KitchenRounded = _interopRequireDefault(require("./KitchenRounded")); + +var _KitchenSharp = _interopRequireDefault(require("./KitchenSharp")); + +var _KitchenTwoTone = _interopRequireDefault(require("./KitchenTwoTone")); + +var _Kitesurfing = _interopRequireDefault(require("./Kitesurfing")); + +var _KitesurfingOutlined = _interopRequireDefault(require("./KitesurfingOutlined")); + +var _KitesurfingRounded = _interopRequireDefault(require("./KitesurfingRounded")); + +var _KitesurfingSharp = _interopRequireDefault(require("./KitesurfingSharp")); + +var _KitesurfingTwoTone = _interopRequireDefault(require("./KitesurfingTwoTone")); + +var _Label = _interopRequireDefault(require("./Label")); + +var _LabelImportant = _interopRequireDefault(require("./LabelImportant")); + +var _LabelImportantOutlined = _interopRequireDefault(require("./LabelImportantOutlined")); + +var _LabelImportantRounded = _interopRequireDefault(require("./LabelImportantRounded")); + +var _LabelImportantSharp = _interopRequireDefault(require("./LabelImportantSharp")); + +var _LabelImportantTwoTone = _interopRequireDefault(require("./LabelImportantTwoTone")); + +var _LabelOff = _interopRequireDefault(require("./LabelOff")); + +var _LabelOffOutlined = _interopRequireDefault(require("./LabelOffOutlined")); + +var _LabelOffRounded = _interopRequireDefault(require("./LabelOffRounded")); + +var _LabelOffSharp = _interopRequireDefault(require("./LabelOffSharp")); + +var _LabelOffTwoTone = _interopRequireDefault(require("./LabelOffTwoTone")); + +var _LabelOutlined = _interopRequireDefault(require("./LabelOutlined")); + +var _LabelRounded = _interopRequireDefault(require("./LabelRounded")); + +var _LabelSharp = _interopRequireDefault(require("./LabelSharp")); + +var _LabelTwoTone = _interopRequireDefault(require("./LabelTwoTone")); + +var _Landscape = _interopRequireDefault(require("./Landscape")); + +var _LandscapeOutlined = _interopRequireDefault(require("./LandscapeOutlined")); + +var _LandscapeRounded = _interopRequireDefault(require("./LandscapeRounded")); + +var _LandscapeSharp = _interopRequireDefault(require("./LandscapeSharp")); + +var _LandscapeTwoTone = _interopRequireDefault(require("./LandscapeTwoTone")); + +var _Language = _interopRequireDefault(require("./Language")); + +var _LanguageOutlined = _interopRequireDefault(require("./LanguageOutlined")); + +var _LanguageRounded = _interopRequireDefault(require("./LanguageRounded")); + +var _LanguageSharp = _interopRequireDefault(require("./LanguageSharp")); + +var _LanguageTwoTone = _interopRequireDefault(require("./LanguageTwoTone")); + +var _Laptop = _interopRequireDefault(require("./Laptop")); + +var _LaptopChromebook = _interopRequireDefault(require("./LaptopChromebook")); + +var _LaptopChromebookOutlined = _interopRequireDefault(require("./LaptopChromebookOutlined")); + +var _LaptopChromebookRounded = _interopRequireDefault(require("./LaptopChromebookRounded")); + +var _LaptopChromebookSharp = _interopRequireDefault(require("./LaptopChromebookSharp")); + +var _LaptopChromebookTwoTone = _interopRequireDefault(require("./LaptopChromebookTwoTone")); + +var _LaptopMac = _interopRequireDefault(require("./LaptopMac")); + +var _LaptopMacOutlined = _interopRequireDefault(require("./LaptopMacOutlined")); + +var _LaptopMacRounded = _interopRequireDefault(require("./LaptopMacRounded")); + +var _LaptopMacSharp = _interopRequireDefault(require("./LaptopMacSharp")); + +var _LaptopMacTwoTone = _interopRequireDefault(require("./LaptopMacTwoTone")); + +var _LaptopOutlined = _interopRequireDefault(require("./LaptopOutlined")); + +var _LaptopRounded = _interopRequireDefault(require("./LaptopRounded")); + +var _LaptopSharp = _interopRequireDefault(require("./LaptopSharp")); + +var _LaptopTwoTone = _interopRequireDefault(require("./LaptopTwoTone")); + +var _LaptopWindows = _interopRequireDefault(require("./LaptopWindows")); + +var _LaptopWindowsOutlined = _interopRequireDefault(require("./LaptopWindowsOutlined")); + +var _LaptopWindowsRounded = _interopRequireDefault(require("./LaptopWindowsRounded")); + +var _LaptopWindowsSharp = _interopRequireDefault(require("./LaptopWindowsSharp")); + +var _LaptopWindowsTwoTone = _interopRequireDefault(require("./LaptopWindowsTwoTone")); + +var _LastPage = _interopRequireDefault(require("./LastPage")); + +var _LastPageOutlined = _interopRequireDefault(require("./LastPageOutlined")); + +var _LastPageRounded = _interopRequireDefault(require("./LastPageRounded")); + +var _LastPageSharp = _interopRequireDefault(require("./LastPageSharp")); + +var _LastPageTwoTone = _interopRequireDefault(require("./LastPageTwoTone")); + +var _Launch = _interopRequireDefault(require("./Launch")); + +var _LaunchOutlined = _interopRequireDefault(require("./LaunchOutlined")); + +var _LaunchRounded = _interopRequireDefault(require("./LaunchRounded")); + +var _LaunchSharp = _interopRequireDefault(require("./LaunchSharp")); + +var _LaunchTwoTone = _interopRequireDefault(require("./LaunchTwoTone")); + +var _Layers = _interopRequireDefault(require("./Layers")); + +var _LayersClear = _interopRequireDefault(require("./LayersClear")); + +var _LayersClearOutlined = _interopRequireDefault(require("./LayersClearOutlined")); + +var _LayersClearRounded = _interopRequireDefault(require("./LayersClearRounded")); + +var _LayersClearSharp = _interopRequireDefault(require("./LayersClearSharp")); + +var _LayersClearTwoTone = _interopRequireDefault(require("./LayersClearTwoTone")); + +var _LayersOutlined = _interopRequireDefault(require("./LayersOutlined")); + +var _LayersRounded = _interopRequireDefault(require("./LayersRounded")); + +var _LayersSharp = _interopRequireDefault(require("./LayersSharp")); + +var _LayersTwoTone = _interopRequireDefault(require("./LayersTwoTone")); + +var _Leaderboard = _interopRequireDefault(require("./Leaderboard")); + +var _LeaderboardOutlined = _interopRequireDefault(require("./LeaderboardOutlined")); + +var _LeaderboardRounded = _interopRequireDefault(require("./LeaderboardRounded")); + +var _LeaderboardSharp = _interopRequireDefault(require("./LeaderboardSharp")); + +var _LeaderboardTwoTone = _interopRequireDefault(require("./LeaderboardTwoTone")); + +var _LeakAdd = _interopRequireDefault(require("./LeakAdd")); + +var _LeakAddOutlined = _interopRequireDefault(require("./LeakAddOutlined")); + +var _LeakAddRounded = _interopRequireDefault(require("./LeakAddRounded")); + +var _LeakAddSharp = _interopRequireDefault(require("./LeakAddSharp")); + +var _LeakAddTwoTone = _interopRequireDefault(require("./LeakAddTwoTone")); + +var _LeakRemove = _interopRequireDefault(require("./LeakRemove")); + +var _LeakRemoveOutlined = _interopRequireDefault(require("./LeakRemoveOutlined")); + +var _LeakRemoveRounded = _interopRequireDefault(require("./LeakRemoveRounded")); + +var _LeakRemoveSharp = _interopRequireDefault(require("./LeakRemoveSharp")); + +var _LeakRemoveTwoTone = _interopRequireDefault(require("./LeakRemoveTwoTone")); + +var _LegendToggle = _interopRequireDefault(require("./LegendToggle")); + +var _LegendToggleOutlined = _interopRequireDefault(require("./LegendToggleOutlined")); + +var _LegendToggleRounded = _interopRequireDefault(require("./LegendToggleRounded")); + +var _LegendToggleSharp = _interopRequireDefault(require("./LegendToggleSharp")); + +var _LegendToggleTwoTone = _interopRequireDefault(require("./LegendToggleTwoTone")); + +var _Lens = _interopRequireDefault(require("./Lens")); + +var _LensBlur = _interopRequireDefault(require("./LensBlur")); + +var _LensBlurOutlined = _interopRequireDefault(require("./LensBlurOutlined")); + +var _LensBlurRounded = _interopRequireDefault(require("./LensBlurRounded")); + +var _LensBlurSharp = _interopRequireDefault(require("./LensBlurSharp")); + +var _LensBlurTwoTone = _interopRequireDefault(require("./LensBlurTwoTone")); + +var _LensOutlined = _interopRequireDefault(require("./LensOutlined")); + +var _LensRounded = _interopRequireDefault(require("./LensRounded")); + +var _LensSharp = _interopRequireDefault(require("./LensSharp")); + +var _LensTwoTone = _interopRequireDefault(require("./LensTwoTone")); + +var _LibraryAdd = _interopRequireDefault(require("./LibraryAdd")); + +var _LibraryAddCheck = _interopRequireDefault(require("./LibraryAddCheck")); + +var _LibraryAddCheckOutlined = _interopRequireDefault(require("./LibraryAddCheckOutlined")); + +var _LibraryAddCheckRounded = _interopRequireDefault(require("./LibraryAddCheckRounded")); + +var _LibraryAddCheckSharp = _interopRequireDefault(require("./LibraryAddCheckSharp")); + +var _LibraryAddCheckTwoTone = _interopRequireDefault(require("./LibraryAddCheckTwoTone")); + +var _LibraryAddOutlined = _interopRequireDefault(require("./LibraryAddOutlined")); + +var _LibraryAddRounded = _interopRequireDefault(require("./LibraryAddRounded")); + +var _LibraryAddSharp = _interopRequireDefault(require("./LibraryAddSharp")); + +var _LibraryAddTwoTone = _interopRequireDefault(require("./LibraryAddTwoTone")); + +var _LibraryBooks = _interopRequireDefault(require("./LibraryBooks")); + +var _LibraryBooksOutlined = _interopRequireDefault(require("./LibraryBooksOutlined")); + +var _LibraryBooksRounded = _interopRequireDefault(require("./LibraryBooksRounded")); + +var _LibraryBooksSharp = _interopRequireDefault(require("./LibraryBooksSharp")); + +var _LibraryBooksTwoTone = _interopRequireDefault(require("./LibraryBooksTwoTone")); + +var _LibraryMusic = _interopRequireDefault(require("./LibraryMusic")); + +var _LibraryMusicOutlined = _interopRequireDefault(require("./LibraryMusicOutlined")); + +var _LibraryMusicRounded = _interopRequireDefault(require("./LibraryMusicRounded")); + +var _LibraryMusicSharp = _interopRequireDefault(require("./LibraryMusicSharp")); + +var _LibraryMusicTwoTone = _interopRequireDefault(require("./LibraryMusicTwoTone")); + +var _Light = _interopRequireDefault(require("./Light")); + +var _LightMode = _interopRequireDefault(require("./LightMode")); + +var _LightModeOutlined = _interopRequireDefault(require("./LightModeOutlined")); + +var _LightModeRounded = _interopRequireDefault(require("./LightModeRounded")); + +var _LightModeSharp = _interopRequireDefault(require("./LightModeSharp")); + +var _LightModeTwoTone = _interopRequireDefault(require("./LightModeTwoTone")); + +var _LightOutlined = _interopRequireDefault(require("./LightOutlined")); + +var _LightRounded = _interopRequireDefault(require("./LightRounded")); + +var _LightSharp = _interopRequireDefault(require("./LightSharp")); + +var _LightTwoTone = _interopRequireDefault(require("./LightTwoTone")); + +var _Lightbulb = _interopRequireDefault(require("./Lightbulb")); + +var _LightbulbOutlined = _interopRequireDefault(require("./LightbulbOutlined")); + +var _LightbulbRounded = _interopRequireDefault(require("./LightbulbRounded")); + +var _LightbulbSharp = _interopRequireDefault(require("./LightbulbSharp")); + +var _LightbulbTwoTone = _interopRequireDefault(require("./LightbulbTwoTone")); + +var _LineStyle = _interopRequireDefault(require("./LineStyle")); + +var _LineStyleOutlined = _interopRequireDefault(require("./LineStyleOutlined")); + +var _LineStyleRounded = _interopRequireDefault(require("./LineStyleRounded")); + +var _LineStyleSharp = _interopRequireDefault(require("./LineStyleSharp")); + +var _LineStyleTwoTone = _interopRequireDefault(require("./LineStyleTwoTone")); + +var _LineWeight = _interopRequireDefault(require("./LineWeight")); + +var _LineWeightOutlined = _interopRequireDefault(require("./LineWeightOutlined")); + +var _LineWeightRounded = _interopRequireDefault(require("./LineWeightRounded")); + +var _LineWeightSharp = _interopRequireDefault(require("./LineWeightSharp")); + +var _LineWeightTwoTone = _interopRequireDefault(require("./LineWeightTwoTone")); + +var _LinearScale = _interopRequireDefault(require("./LinearScale")); + +var _LinearScaleOutlined = _interopRequireDefault(require("./LinearScaleOutlined")); + +var _LinearScaleRounded = _interopRequireDefault(require("./LinearScaleRounded")); + +var _LinearScaleSharp = _interopRequireDefault(require("./LinearScaleSharp")); + +var _LinearScaleTwoTone = _interopRequireDefault(require("./LinearScaleTwoTone")); + +var _Link = _interopRequireDefault(require("./Link")); + +var _LinkOff = _interopRequireDefault(require("./LinkOff")); + +var _LinkOffOutlined = _interopRequireDefault(require("./LinkOffOutlined")); + +var _LinkOffRounded = _interopRequireDefault(require("./LinkOffRounded")); + +var _LinkOffSharp = _interopRequireDefault(require("./LinkOffSharp")); + +var _LinkOffTwoTone = _interopRequireDefault(require("./LinkOffTwoTone")); + +var _LinkOutlined = _interopRequireDefault(require("./LinkOutlined")); + +var _LinkRounded = _interopRequireDefault(require("./LinkRounded")); + +var _LinkSharp = _interopRequireDefault(require("./LinkSharp")); + +var _LinkTwoTone = _interopRequireDefault(require("./LinkTwoTone")); + +var _LinkedCamera = _interopRequireDefault(require("./LinkedCamera")); + +var _LinkedCameraOutlined = _interopRequireDefault(require("./LinkedCameraOutlined")); + +var _LinkedCameraRounded = _interopRequireDefault(require("./LinkedCameraRounded")); + +var _LinkedCameraSharp = _interopRequireDefault(require("./LinkedCameraSharp")); + +var _LinkedCameraTwoTone = _interopRequireDefault(require("./LinkedCameraTwoTone")); + +var _LinkedIn = _interopRequireDefault(require("./LinkedIn")); + +var _Liquor = _interopRequireDefault(require("./Liquor")); + +var _LiquorOutlined = _interopRequireDefault(require("./LiquorOutlined")); + +var _LiquorRounded = _interopRequireDefault(require("./LiquorRounded")); + +var _LiquorSharp = _interopRequireDefault(require("./LiquorSharp")); + +var _LiquorTwoTone = _interopRequireDefault(require("./LiquorTwoTone")); + +var _List = _interopRequireDefault(require("./List")); + +var _ListAlt = _interopRequireDefault(require("./ListAlt")); + +var _ListAltOutlined = _interopRequireDefault(require("./ListAltOutlined")); + +var _ListAltRounded = _interopRequireDefault(require("./ListAltRounded")); + +var _ListAltSharp = _interopRequireDefault(require("./ListAltSharp")); + +var _ListAltTwoTone = _interopRequireDefault(require("./ListAltTwoTone")); + +var _ListOutlined = _interopRequireDefault(require("./ListOutlined")); + +var _ListRounded = _interopRequireDefault(require("./ListRounded")); + +var _ListSharp = _interopRequireDefault(require("./ListSharp")); + +var _ListTwoTone = _interopRequireDefault(require("./ListTwoTone")); + +var _LiveHelp = _interopRequireDefault(require("./LiveHelp")); + +var _LiveHelpOutlined = _interopRequireDefault(require("./LiveHelpOutlined")); + +var _LiveHelpRounded = _interopRequireDefault(require("./LiveHelpRounded")); + +var _LiveHelpSharp = _interopRequireDefault(require("./LiveHelpSharp")); + +var _LiveHelpTwoTone = _interopRequireDefault(require("./LiveHelpTwoTone")); + +var _LiveTv = _interopRequireDefault(require("./LiveTv")); + +var _LiveTvOutlined = _interopRequireDefault(require("./LiveTvOutlined")); + +var _LiveTvRounded = _interopRequireDefault(require("./LiveTvRounded")); + +var _LiveTvSharp = _interopRequireDefault(require("./LiveTvSharp")); + +var _LiveTvTwoTone = _interopRequireDefault(require("./LiveTvTwoTone")); + +var _Living = _interopRequireDefault(require("./Living")); + +var _LivingOutlined = _interopRequireDefault(require("./LivingOutlined")); + +var _LivingRounded = _interopRequireDefault(require("./LivingRounded")); + +var _LivingSharp = _interopRequireDefault(require("./LivingSharp")); + +var _LivingTwoTone = _interopRequireDefault(require("./LivingTwoTone")); + +var _LocalActivity = _interopRequireDefault(require("./LocalActivity")); + +var _LocalActivityOutlined = _interopRequireDefault(require("./LocalActivityOutlined")); + +var _LocalActivityRounded = _interopRequireDefault(require("./LocalActivityRounded")); + +var _LocalActivitySharp = _interopRequireDefault(require("./LocalActivitySharp")); + +var _LocalActivityTwoTone = _interopRequireDefault(require("./LocalActivityTwoTone")); + +var _LocalAirport = _interopRequireDefault(require("./LocalAirport")); + +var _LocalAirportOutlined = _interopRequireDefault(require("./LocalAirportOutlined")); + +var _LocalAirportRounded = _interopRequireDefault(require("./LocalAirportRounded")); + +var _LocalAirportSharp = _interopRequireDefault(require("./LocalAirportSharp")); + +var _LocalAirportTwoTone = _interopRequireDefault(require("./LocalAirportTwoTone")); + +var _LocalAtm = _interopRequireDefault(require("./LocalAtm")); + +var _LocalAtmOutlined = _interopRequireDefault(require("./LocalAtmOutlined")); + +var _LocalAtmRounded = _interopRequireDefault(require("./LocalAtmRounded")); + +var _LocalAtmSharp = _interopRequireDefault(require("./LocalAtmSharp")); + +var _LocalAtmTwoTone = _interopRequireDefault(require("./LocalAtmTwoTone")); + +var _LocalBar = _interopRequireDefault(require("./LocalBar")); + +var _LocalBarOutlined = _interopRequireDefault(require("./LocalBarOutlined")); + +var _LocalBarRounded = _interopRequireDefault(require("./LocalBarRounded")); + +var _LocalBarSharp = _interopRequireDefault(require("./LocalBarSharp")); + +var _LocalBarTwoTone = _interopRequireDefault(require("./LocalBarTwoTone")); + +var _LocalCafe = _interopRequireDefault(require("./LocalCafe")); + +var _LocalCafeOutlined = _interopRequireDefault(require("./LocalCafeOutlined")); + +var _LocalCafeRounded = _interopRequireDefault(require("./LocalCafeRounded")); + +var _LocalCafeSharp = _interopRequireDefault(require("./LocalCafeSharp")); + +var _LocalCafeTwoTone = _interopRequireDefault(require("./LocalCafeTwoTone")); + +var _LocalCarWash = _interopRequireDefault(require("./LocalCarWash")); + +var _LocalCarWashOutlined = _interopRequireDefault(require("./LocalCarWashOutlined")); + +var _LocalCarWashRounded = _interopRequireDefault(require("./LocalCarWashRounded")); + +var _LocalCarWashSharp = _interopRequireDefault(require("./LocalCarWashSharp")); + +var _LocalCarWashTwoTone = _interopRequireDefault(require("./LocalCarWashTwoTone")); + +var _LocalConvenienceStore = _interopRequireDefault(require("./LocalConvenienceStore")); + +var _LocalConvenienceStoreOutlined = _interopRequireDefault(require("./LocalConvenienceStoreOutlined")); + +var _LocalConvenienceStoreRounded = _interopRequireDefault(require("./LocalConvenienceStoreRounded")); + +var _LocalConvenienceStoreSharp = _interopRequireDefault(require("./LocalConvenienceStoreSharp")); + +var _LocalConvenienceStoreTwoTone = _interopRequireDefault(require("./LocalConvenienceStoreTwoTone")); + +var _LocalDining = _interopRequireDefault(require("./LocalDining")); + +var _LocalDiningOutlined = _interopRequireDefault(require("./LocalDiningOutlined")); + +var _LocalDiningRounded = _interopRequireDefault(require("./LocalDiningRounded")); + +var _LocalDiningSharp = _interopRequireDefault(require("./LocalDiningSharp")); + +var _LocalDiningTwoTone = _interopRequireDefault(require("./LocalDiningTwoTone")); + +var _LocalDrink = _interopRequireDefault(require("./LocalDrink")); + +var _LocalDrinkOutlined = _interopRequireDefault(require("./LocalDrinkOutlined")); + +var _LocalDrinkRounded = _interopRequireDefault(require("./LocalDrinkRounded")); + +var _LocalDrinkSharp = _interopRequireDefault(require("./LocalDrinkSharp")); + +var _LocalDrinkTwoTone = _interopRequireDefault(require("./LocalDrinkTwoTone")); + +var _LocalFireDepartment = _interopRequireDefault(require("./LocalFireDepartment")); + +var _LocalFireDepartmentOutlined = _interopRequireDefault(require("./LocalFireDepartmentOutlined")); + +var _LocalFireDepartmentRounded = _interopRequireDefault(require("./LocalFireDepartmentRounded")); + +var _LocalFireDepartmentSharp = _interopRequireDefault(require("./LocalFireDepartmentSharp")); + +var _LocalFireDepartmentTwoTone = _interopRequireDefault(require("./LocalFireDepartmentTwoTone")); + +var _LocalFlorist = _interopRequireDefault(require("./LocalFlorist")); + +var _LocalFloristOutlined = _interopRequireDefault(require("./LocalFloristOutlined")); + +var _LocalFloristRounded = _interopRequireDefault(require("./LocalFloristRounded")); + +var _LocalFloristSharp = _interopRequireDefault(require("./LocalFloristSharp")); + +var _LocalFloristTwoTone = _interopRequireDefault(require("./LocalFloristTwoTone")); + +var _LocalGasStation = _interopRequireDefault(require("./LocalGasStation")); + +var _LocalGasStationOutlined = _interopRequireDefault(require("./LocalGasStationOutlined")); + +var _LocalGasStationRounded = _interopRequireDefault(require("./LocalGasStationRounded")); + +var _LocalGasStationSharp = _interopRequireDefault(require("./LocalGasStationSharp")); + +var _LocalGasStationTwoTone = _interopRequireDefault(require("./LocalGasStationTwoTone")); + +var _LocalGroceryStore = _interopRequireDefault(require("./LocalGroceryStore")); + +var _LocalGroceryStoreOutlined = _interopRequireDefault(require("./LocalGroceryStoreOutlined")); + +var _LocalGroceryStoreRounded = _interopRequireDefault(require("./LocalGroceryStoreRounded")); + +var _LocalGroceryStoreSharp = _interopRequireDefault(require("./LocalGroceryStoreSharp")); + +var _LocalGroceryStoreTwoTone = _interopRequireDefault(require("./LocalGroceryStoreTwoTone")); + +var _LocalHospital = _interopRequireDefault(require("./LocalHospital")); + +var _LocalHospitalOutlined = _interopRequireDefault(require("./LocalHospitalOutlined")); + +var _LocalHospitalRounded = _interopRequireDefault(require("./LocalHospitalRounded")); + +var _LocalHospitalSharp = _interopRequireDefault(require("./LocalHospitalSharp")); + +var _LocalHospitalTwoTone = _interopRequireDefault(require("./LocalHospitalTwoTone")); + +var _LocalHotel = _interopRequireDefault(require("./LocalHotel")); + +var _LocalHotelOutlined = _interopRequireDefault(require("./LocalHotelOutlined")); + +var _LocalHotelRounded = _interopRequireDefault(require("./LocalHotelRounded")); + +var _LocalHotelSharp = _interopRequireDefault(require("./LocalHotelSharp")); + +var _LocalHotelTwoTone = _interopRequireDefault(require("./LocalHotelTwoTone")); + +var _LocalLaundryService = _interopRequireDefault(require("./LocalLaundryService")); + +var _LocalLaundryServiceOutlined = _interopRequireDefault(require("./LocalLaundryServiceOutlined")); + +var _LocalLaundryServiceRounded = _interopRequireDefault(require("./LocalLaundryServiceRounded")); + +var _LocalLaundryServiceSharp = _interopRequireDefault(require("./LocalLaundryServiceSharp")); + +var _LocalLaundryServiceTwoTone = _interopRequireDefault(require("./LocalLaundryServiceTwoTone")); + +var _LocalLibrary = _interopRequireDefault(require("./LocalLibrary")); + +var _LocalLibraryOutlined = _interopRequireDefault(require("./LocalLibraryOutlined")); + +var _LocalLibraryRounded = _interopRequireDefault(require("./LocalLibraryRounded")); + +var _LocalLibrarySharp = _interopRequireDefault(require("./LocalLibrarySharp")); + +var _LocalLibraryTwoTone = _interopRequireDefault(require("./LocalLibraryTwoTone")); + +var _LocalMall = _interopRequireDefault(require("./LocalMall")); + +var _LocalMallOutlined = _interopRequireDefault(require("./LocalMallOutlined")); + +var _LocalMallRounded = _interopRequireDefault(require("./LocalMallRounded")); + +var _LocalMallSharp = _interopRequireDefault(require("./LocalMallSharp")); + +var _LocalMallTwoTone = _interopRequireDefault(require("./LocalMallTwoTone")); + +var _LocalMovies = _interopRequireDefault(require("./LocalMovies")); + +var _LocalMoviesOutlined = _interopRequireDefault(require("./LocalMoviesOutlined")); + +var _LocalMoviesRounded = _interopRequireDefault(require("./LocalMoviesRounded")); + +var _LocalMoviesSharp = _interopRequireDefault(require("./LocalMoviesSharp")); + +var _LocalMoviesTwoTone = _interopRequireDefault(require("./LocalMoviesTwoTone")); + +var _LocalOffer = _interopRequireDefault(require("./LocalOffer")); + +var _LocalOfferOutlined = _interopRequireDefault(require("./LocalOfferOutlined")); + +var _LocalOfferRounded = _interopRequireDefault(require("./LocalOfferRounded")); + +var _LocalOfferSharp = _interopRequireDefault(require("./LocalOfferSharp")); + +var _LocalOfferTwoTone = _interopRequireDefault(require("./LocalOfferTwoTone")); + +var _LocalParking = _interopRequireDefault(require("./LocalParking")); + +var _LocalParkingOutlined = _interopRequireDefault(require("./LocalParkingOutlined")); + +var _LocalParkingRounded = _interopRequireDefault(require("./LocalParkingRounded")); + +var _LocalParkingSharp = _interopRequireDefault(require("./LocalParkingSharp")); + +var _LocalParkingTwoTone = _interopRequireDefault(require("./LocalParkingTwoTone")); + +var _LocalPharmacy = _interopRequireDefault(require("./LocalPharmacy")); + +var _LocalPharmacyOutlined = _interopRequireDefault(require("./LocalPharmacyOutlined")); + +var _LocalPharmacyRounded = _interopRequireDefault(require("./LocalPharmacyRounded")); + +var _LocalPharmacySharp = _interopRequireDefault(require("./LocalPharmacySharp")); + +var _LocalPharmacyTwoTone = _interopRequireDefault(require("./LocalPharmacyTwoTone")); + +var _LocalPhone = _interopRequireDefault(require("./LocalPhone")); + +var _LocalPhoneOutlined = _interopRequireDefault(require("./LocalPhoneOutlined")); + +var _LocalPhoneRounded = _interopRequireDefault(require("./LocalPhoneRounded")); + +var _LocalPhoneSharp = _interopRequireDefault(require("./LocalPhoneSharp")); + +var _LocalPhoneTwoTone = _interopRequireDefault(require("./LocalPhoneTwoTone")); + +var _LocalPizza = _interopRequireDefault(require("./LocalPizza")); + +var _LocalPizzaOutlined = _interopRequireDefault(require("./LocalPizzaOutlined")); + +var _LocalPizzaRounded = _interopRequireDefault(require("./LocalPizzaRounded")); + +var _LocalPizzaSharp = _interopRequireDefault(require("./LocalPizzaSharp")); + +var _LocalPizzaTwoTone = _interopRequireDefault(require("./LocalPizzaTwoTone")); + +var _LocalPlay = _interopRequireDefault(require("./LocalPlay")); + +var _LocalPlayOutlined = _interopRequireDefault(require("./LocalPlayOutlined")); + +var _LocalPlayRounded = _interopRequireDefault(require("./LocalPlayRounded")); + +var _LocalPlaySharp = _interopRequireDefault(require("./LocalPlaySharp")); + +var _LocalPlayTwoTone = _interopRequireDefault(require("./LocalPlayTwoTone")); + +var _LocalPolice = _interopRequireDefault(require("./LocalPolice")); + +var _LocalPoliceOutlined = _interopRequireDefault(require("./LocalPoliceOutlined")); + +var _LocalPoliceRounded = _interopRequireDefault(require("./LocalPoliceRounded")); + +var _LocalPoliceSharp = _interopRequireDefault(require("./LocalPoliceSharp")); + +var _LocalPoliceTwoTone = _interopRequireDefault(require("./LocalPoliceTwoTone")); + +var _LocalPostOffice = _interopRequireDefault(require("./LocalPostOffice")); + +var _LocalPostOfficeOutlined = _interopRequireDefault(require("./LocalPostOfficeOutlined")); + +var _LocalPostOfficeRounded = _interopRequireDefault(require("./LocalPostOfficeRounded")); + +var _LocalPostOfficeSharp = _interopRequireDefault(require("./LocalPostOfficeSharp")); + +var _LocalPostOfficeTwoTone = _interopRequireDefault(require("./LocalPostOfficeTwoTone")); + +var _LocalPrintshop = _interopRequireDefault(require("./LocalPrintshop")); + +var _LocalPrintshopOutlined = _interopRequireDefault(require("./LocalPrintshopOutlined")); + +var _LocalPrintshopRounded = _interopRequireDefault(require("./LocalPrintshopRounded")); + +var _LocalPrintshopSharp = _interopRequireDefault(require("./LocalPrintshopSharp")); + +var _LocalPrintshopTwoTone = _interopRequireDefault(require("./LocalPrintshopTwoTone")); + +var _LocalSee = _interopRequireDefault(require("./LocalSee")); + +var _LocalSeeOutlined = _interopRequireDefault(require("./LocalSeeOutlined")); + +var _LocalSeeRounded = _interopRequireDefault(require("./LocalSeeRounded")); + +var _LocalSeeSharp = _interopRequireDefault(require("./LocalSeeSharp")); + +var _LocalSeeTwoTone = _interopRequireDefault(require("./LocalSeeTwoTone")); + +var _LocalShipping = _interopRequireDefault(require("./LocalShipping")); + +var _LocalShippingOutlined = _interopRequireDefault(require("./LocalShippingOutlined")); + +var _LocalShippingRounded = _interopRequireDefault(require("./LocalShippingRounded")); + +var _LocalShippingSharp = _interopRequireDefault(require("./LocalShippingSharp")); + +var _LocalShippingTwoTone = _interopRequireDefault(require("./LocalShippingTwoTone")); + +var _LocalTaxi = _interopRequireDefault(require("./LocalTaxi")); + +var _LocalTaxiOutlined = _interopRequireDefault(require("./LocalTaxiOutlined")); + +var _LocalTaxiRounded = _interopRequireDefault(require("./LocalTaxiRounded")); + +var _LocalTaxiSharp = _interopRequireDefault(require("./LocalTaxiSharp")); + +var _LocalTaxiTwoTone = _interopRequireDefault(require("./LocalTaxiTwoTone")); + +var _LocationCity = _interopRequireDefault(require("./LocationCity")); + +var _LocationCityOutlined = _interopRequireDefault(require("./LocationCityOutlined")); + +var _LocationCityRounded = _interopRequireDefault(require("./LocationCityRounded")); + +var _LocationCitySharp = _interopRequireDefault(require("./LocationCitySharp")); + +var _LocationCityTwoTone = _interopRequireDefault(require("./LocationCityTwoTone")); + +var _LocationDisabled = _interopRequireDefault(require("./LocationDisabled")); + +var _LocationDisabledOutlined = _interopRequireDefault(require("./LocationDisabledOutlined")); + +var _LocationDisabledRounded = _interopRequireDefault(require("./LocationDisabledRounded")); + +var _LocationDisabledSharp = _interopRequireDefault(require("./LocationDisabledSharp")); + +var _LocationDisabledTwoTone = _interopRequireDefault(require("./LocationDisabledTwoTone")); + +var _LocationOff = _interopRequireDefault(require("./LocationOff")); + +var _LocationOffOutlined = _interopRequireDefault(require("./LocationOffOutlined")); + +var _LocationOffRounded = _interopRequireDefault(require("./LocationOffRounded")); + +var _LocationOffSharp = _interopRequireDefault(require("./LocationOffSharp")); + +var _LocationOffTwoTone = _interopRequireDefault(require("./LocationOffTwoTone")); + +var _LocationOn = _interopRequireDefault(require("./LocationOn")); + +var _LocationOnOutlined = _interopRequireDefault(require("./LocationOnOutlined")); + +var _LocationOnRounded = _interopRequireDefault(require("./LocationOnRounded")); + +var _LocationOnSharp = _interopRequireDefault(require("./LocationOnSharp")); + +var _LocationOnTwoTone = _interopRequireDefault(require("./LocationOnTwoTone")); + +var _LocationSearching = _interopRequireDefault(require("./LocationSearching")); + +var _LocationSearchingOutlined = _interopRequireDefault(require("./LocationSearchingOutlined")); + +var _LocationSearchingRounded = _interopRequireDefault(require("./LocationSearchingRounded")); + +var _LocationSearchingSharp = _interopRequireDefault(require("./LocationSearchingSharp")); + +var _LocationSearchingTwoTone = _interopRequireDefault(require("./LocationSearchingTwoTone")); + +var _Lock = _interopRequireDefault(require("./Lock")); + +var _LockClock = _interopRequireDefault(require("./LockClock")); + +var _LockClockOutlined = _interopRequireDefault(require("./LockClockOutlined")); + +var _LockClockRounded = _interopRequireDefault(require("./LockClockRounded")); + +var _LockClockSharp = _interopRequireDefault(require("./LockClockSharp")); + +var _LockClockTwoTone = _interopRequireDefault(require("./LockClockTwoTone")); + +var _LockOpen = _interopRequireDefault(require("./LockOpen")); + +var _LockOpenOutlined = _interopRequireDefault(require("./LockOpenOutlined")); + +var _LockOpenRounded = _interopRequireDefault(require("./LockOpenRounded")); + +var _LockOpenSharp = _interopRequireDefault(require("./LockOpenSharp")); + +var _LockOpenTwoTone = _interopRequireDefault(require("./LockOpenTwoTone")); + +var _LockOutlined = _interopRequireDefault(require("./LockOutlined")); + +var _LockRounded = _interopRequireDefault(require("./LockRounded")); + +var _LockSharp = _interopRequireDefault(require("./LockSharp")); + +var _LockTwoTone = _interopRequireDefault(require("./LockTwoTone")); + +var _Login = _interopRequireDefault(require("./Login")); + +var _LoginOutlined = _interopRequireDefault(require("./LoginOutlined")); + +var _LoginRounded = _interopRequireDefault(require("./LoginRounded")); + +var _LoginSharp = _interopRequireDefault(require("./LoginSharp")); + +var _LoginTwoTone = _interopRequireDefault(require("./LoginTwoTone")); + +var _Logout = _interopRequireDefault(require("./Logout")); + +var _LogoutOutlined = _interopRequireDefault(require("./LogoutOutlined")); + +var _LogoutRounded = _interopRequireDefault(require("./LogoutRounded")); + +var _LogoutSharp = _interopRequireDefault(require("./LogoutSharp")); + +var _LogoutTwoTone = _interopRequireDefault(require("./LogoutTwoTone")); + +var _Looks = _interopRequireDefault(require("./Looks")); + +var _Looks2 = _interopRequireDefault(require("./Looks3")); + +var _Looks3Outlined = _interopRequireDefault(require("./Looks3Outlined")); + +var _Looks3Rounded = _interopRequireDefault(require("./Looks3Rounded")); + +var _Looks3Sharp = _interopRequireDefault(require("./Looks3Sharp")); + +var _Looks3TwoTone = _interopRequireDefault(require("./Looks3TwoTone")); + +var _Looks3 = _interopRequireDefault(require("./Looks4")); + +var _Looks4Outlined = _interopRequireDefault(require("./Looks4Outlined")); + +var _Looks4Rounded = _interopRequireDefault(require("./Looks4Rounded")); + +var _Looks4Sharp = _interopRequireDefault(require("./Looks4Sharp")); + +var _Looks4TwoTone = _interopRequireDefault(require("./Looks4TwoTone")); + +var _Looks4 = _interopRequireDefault(require("./Looks5")); + +var _Looks5Outlined = _interopRequireDefault(require("./Looks5Outlined")); + +var _Looks5Rounded = _interopRequireDefault(require("./Looks5Rounded")); + +var _Looks5Sharp = _interopRequireDefault(require("./Looks5Sharp")); + +var _Looks5TwoTone = _interopRequireDefault(require("./Looks5TwoTone")); + +var _Looks5 = _interopRequireDefault(require("./Looks6")); + +var _Looks6Outlined = _interopRequireDefault(require("./Looks6Outlined")); + +var _Looks6Rounded = _interopRequireDefault(require("./Looks6Rounded")); + +var _Looks6Sharp = _interopRequireDefault(require("./Looks6Sharp")); + +var _Looks6TwoTone = _interopRequireDefault(require("./Looks6TwoTone")); + +var _LooksOne = _interopRequireDefault(require("./LooksOne")); + +var _LooksOneOutlined = _interopRequireDefault(require("./LooksOneOutlined")); + +var _LooksOneRounded = _interopRequireDefault(require("./LooksOneRounded")); + +var _LooksOneSharp = _interopRequireDefault(require("./LooksOneSharp")); + +var _LooksOneTwoTone = _interopRequireDefault(require("./LooksOneTwoTone")); + +var _LooksOutlined = _interopRequireDefault(require("./LooksOutlined")); + +var _LooksRounded = _interopRequireDefault(require("./LooksRounded")); + +var _LooksSharp = _interopRequireDefault(require("./LooksSharp")); + +var _LooksTwo = _interopRequireDefault(require("./LooksTwo")); + +var _LooksTwoOutlined = _interopRequireDefault(require("./LooksTwoOutlined")); + +var _LooksTwoRounded = _interopRequireDefault(require("./LooksTwoRounded")); + +var _LooksTwoSharp = _interopRequireDefault(require("./LooksTwoSharp")); + +var _LooksTwoTone = _interopRequireDefault(require("./LooksTwoTone")); + +var _LooksTwoTwoTone = _interopRequireDefault(require("./LooksTwoTwoTone")); + +var _Loop = _interopRequireDefault(require("./Loop")); + +var _LoopOutlined = _interopRequireDefault(require("./LoopOutlined")); + +var _LoopRounded = _interopRequireDefault(require("./LoopRounded")); + +var _LoopSharp = _interopRequireDefault(require("./LoopSharp")); + +var _LoopTwoTone = _interopRequireDefault(require("./LoopTwoTone")); + +var _Loupe = _interopRequireDefault(require("./Loupe")); + +var _LoupeOutlined = _interopRequireDefault(require("./LoupeOutlined")); + +var _LoupeRounded = _interopRequireDefault(require("./LoupeRounded")); + +var _LoupeSharp = _interopRequireDefault(require("./LoupeSharp")); + +var _LoupeTwoTone = _interopRequireDefault(require("./LoupeTwoTone")); + +var _LowPriority = _interopRequireDefault(require("./LowPriority")); + +var _LowPriorityOutlined = _interopRequireDefault(require("./LowPriorityOutlined")); + +var _LowPriorityRounded = _interopRequireDefault(require("./LowPriorityRounded")); + +var _LowPrioritySharp = _interopRequireDefault(require("./LowPrioritySharp")); + +var _LowPriorityTwoTone = _interopRequireDefault(require("./LowPriorityTwoTone")); + +var _Loyalty = _interopRequireDefault(require("./Loyalty")); + +var _LoyaltyOutlined = _interopRequireDefault(require("./LoyaltyOutlined")); + +var _LoyaltyRounded = _interopRequireDefault(require("./LoyaltyRounded")); + +var _LoyaltySharp = _interopRequireDefault(require("./LoyaltySharp")); + +var _LoyaltyTwoTone = _interopRequireDefault(require("./LoyaltyTwoTone")); + +var _LteMobiledata = _interopRequireDefault(require("./LteMobiledata")); + +var _LteMobiledataOutlined = _interopRequireDefault(require("./LteMobiledataOutlined")); + +var _LteMobiledataRounded = _interopRequireDefault(require("./LteMobiledataRounded")); + +var _LteMobiledataSharp = _interopRequireDefault(require("./LteMobiledataSharp")); + +var _LteMobiledataTwoTone = _interopRequireDefault(require("./LteMobiledataTwoTone")); + +var _LtePlusMobiledata = _interopRequireDefault(require("./LtePlusMobiledata")); + +var _LtePlusMobiledataOutlined = _interopRequireDefault(require("./LtePlusMobiledataOutlined")); + +var _LtePlusMobiledataRounded = _interopRequireDefault(require("./LtePlusMobiledataRounded")); + +var _LtePlusMobiledataSharp = _interopRequireDefault(require("./LtePlusMobiledataSharp")); + +var _LtePlusMobiledataTwoTone = _interopRequireDefault(require("./LtePlusMobiledataTwoTone")); + +var _Luggage = _interopRequireDefault(require("./Luggage")); + +var _LuggageOutlined = _interopRequireDefault(require("./LuggageOutlined")); + +var _LuggageRounded = _interopRequireDefault(require("./LuggageRounded")); + +var _LuggageSharp = _interopRequireDefault(require("./LuggageSharp")); + +var _LuggageTwoTone = _interopRequireDefault(require("./LuggageTwoTone")); + +var _LunchDining = _interopRequireDefault(require("./LunchDining")); + +var _LunchDiningOutlined = _interopRequireDefault(require("./LunchDiningOutlined")); + +var _LunchDiningRounded = _interopRequireDefault(require("./LunchDiningRounded")); + +var _LunchDiningSharp = _interopRequireDefault(require("./LunchDiningSharp")); + +var _LunchDiningTwoTone = _interopRequireDefault(require("./LunchDiningTwoTone")); + +var _Mail = _interopRequireDefault(require("./Mail")); + +var _MailOutline = _interopRequireDefault(require("./MailOutline")); + +var _MailOutlineOutlined = _interopRequireDefault(require("./MailOutlineOutlined")); + +var _MailOutlineRounded = _interopRequireDefault(require("./MailOutlineRounded")); + +var _MailOutlineSharp = _interopRequireDefault(require("./MailOutlineSharp")); + +var _MailOutlineTwoTone = _interopRequireDefault(require("./MailOutlineTwoTone")); + +var _MailOutlined = _interopRequireDefault(require("./MailOutlined")); + +var _MailRounded = _interopRequireDefault(require("./MailRounded")); + +var _MailSharp = _interopRequireDefault(require("./MailSharp")); + +var _MailTwoTone = _interopRequireDefault(require("./MailTwoTone")); + +var _Male = _interopRequireDefault(require("./Male")); + +var _MaleOutlined = _interopRequireDefault(require("./MaleOutlined")); + +var _MaleRounded = _interopRequireDefault(require("./MaleRounded")); + +var _MaleSharp = _interopRequireDefault(require("./MaleSharp")); + +var _MaleTwoTone = _interopRequireDefault(require("./MaleTwoTone")); + +var _ManageAccounts = _interopRequireDefault(require("./ManageAccounts")); + +var _ManageAccountsOutlined = _interopRequireDefault(require("./ManageAccountsOutlined")); + +var _ManageAccountsRounded = _interopRequireDefault(require("./ManageAccountsRounded")); + +var _ManageAccountsSharp = _interopRequireDefault(require("./ManageAccountsSharp")); + +var _ManageAccountsTwoTone = _interopRequireDefault(require("./ManageAccountsTwoTone")); + +var _ManageSearch = _interopRequireDefault(require("./ManageSearch")); + +var _ManageSearchOutlined = _interopRequireDefault(require("./ManageSearchOutlined")); + +var _ManageSearchRounded = _interopRequireDefault(require("./ManageSearchRounded")); + +var _ManageSearchSharp = _interopRequireDefault(require("./ManageSearchSharp")); + +var _ManageSearchTwoTone = _interopRequireDefault(require("./ManageSearchTwoTone")); + +var _Map = _interopRequireDefault(require("./Map")); + +var _MapOutlined = _interopRequireDefault(require("./MapOutlined")); + +var _MapRounded = _interopRequireDefault(require("./MapRounded")); + +var _MapSharp = _interopRequireDefault(require("./MapSharp")); + +var _MapTwoTone = _interopRequireDefault(require("./MapTwoTone")); + +var _MapsHomeWork = _interopRequireDefault(require("./MapsHomeWork")); + +var _MapsHomeWorkOutlined = _interopRequireDefault(require("./MapsHomeWorkOutlined")); + +var _MapsHomeWorkRounded = _interopRequireDefault(require("./MapsHomeWorkRounded")); + +var _MapsHomeWorkSharp = _interopRequireDefault(require("./MapsHomeWorkSharp")); + +var _MapsHomeWorkTwoTone = _interopRequireDefault(require("./MapsHomeWorkTwoTone")); + +var _MapsUgc = _interopRequireDefault(require("./MapsUgc")); + +var _MapsUgcOutlined = _interopRequireDefault(require("./MapsUgcOutlined")); + +var _MapsUgcRounded = _interopRequireDefault(require("./MapsUgcRounded")); + +var _MapsUgcSharp = _interopRequireDefault(require("./MapsUgcSharp")); + +var _MapsUgcTwoTone = _interopRequireDefault(require("./MapsUgcTwoTone")); + +var _Margin = _interopRequireDefault(require("./Margin")); + +var _MarginOutlined = _interopRequireDefault(require("./MarginOutlined")); + +var _MarginRounded = _interopRequireDefault(require("./MarginRounded")); + +var _MarginSharp = _interopRequireDefault(require("./MarginSharp")); + +var _MarginTwoTone = _interopRequireDefault(require("./MarginTwoTone")); + +var _MarkAsUnread = _interopRequireDefault(require("./MarkAsUnread")); + +var _MarkAsUnreadOutlined = _interopRequireDefault(require("./MarkAsUnreadOutlined")); + +var _MarkAsUnreadRounded = _interopRequireDefault(require("./MarkAsUnreadRounded")); + +var _MarkAsUnreadSharp = _interopRequireDefault(require("./MarkAsUnreadSharp")); + +var _MarkAsUnreadTwoTone = _interopRequireDefault(require("./MarkAsUnreadTwoTone")); + +var _MarkChatRead = _interopRequireDefault(require("./MarkChatRead")); + +var _MarkChatReadOutlined = _interopRequireDefault(require("./MarkChatReadOutlined")); + +var _MarkChatReadRounded = _interopRequireDefault(require("./MarkChatReadRounded")); + +var _MarkChatReadSharp = _interopRequireDefault(require("./MarkChatReadSharp")); + +var _MarkChatReadTwoTone = _interopRequireDefault(require("./MarkChatReadTwoTone")); + +var _MarkChatUnread = _interopRequireDefault(require("./MarkChatUnread")); + +var _MarkChatUnreadOutlined = _interopRequireDefault(require("./MarkChatUnreadOutlined")); + +var _MarkChatUnreadRounded = _interopRequireDefault(require("./MarkChatUnreadRounded")); + +var _MarkChatUnreadSharp = _interopRequireDefault(require("./MarkChatUnreadSharp")); + +var _MarkChatUnreadTwoTone = _interopRequireDefault(require("./MarkChatUnreadTwoTone")); + +var _MarkEmailRead = _interopRequireDefault(require("./MarkEmailRead")); + +var _MarkEmailReadOutlined = _interopRequireDefault(require("./MarkEmailReadOutlined")); + +var _MarkEmailReadRounded = _interopRequireDefault(require("./MarkEmailReadRounded")); + +var _MarkEmailReadSharp = _interopRequireDefault(require("./MarkEmailReadSharp")); + +var _MarkEmailReadTwoTone = _interopRequireDefault(require("./MarkEmailReadTwoTone")); + +var _MarkEmailUnread = _interopRequireDefault(require("./MarkEmailUnread")); + +var _MarkEmailUnreadOutlined = _interopRequireDefault(require("./MarkEmailUnreadOutlined")); + +var _MarkEmailUnreadRounded = _interopRequireDefault(require("./MarkEmailUnreadRounded")); + +var _MarkEmailUnreadSharp = _interopRequireDefault(require("./MarkEmailUnreadSharp")); + +var _MarkEmailUnreadTwoTone = _interopRequireDefault(require("./MarkEmailUnreadTwoTone")); + +var _Markunread = _interopRequireDefault(require("./Markunread")); + +var _MarkunreadMailbox = _interopRequireDefault(require("./MarkunreadMailbox")); + +var _MarkunreadMailboxOutlined = _interopRequireDefault(require("./MarkunreadMailboxOutlined")); + +var _MarkunreadMailboxRounded = _interopRequireDefault(require("./MarkunreadMailboxRounded")); + +var _MarkunreadMailboxSharp = _interopRequireDefault(require("./MarkunreadMailboxSharp")); + +var _MarkunreadMailboxTwoTone = _interopRequireDefault(require("./MarkunreadMailboxTwoTone")); + +var _MarkunreadOutlined = _interopRequireDefault(require("./MarkunreadOutlined")); + +var _MarkunreadRounded = _interopRequireDefault(require("./MarkunreadRounded")); + +var _MarkunreadSharp = _interopRequireDefault(require("./MarkunreadSharp")); + +var _MarkunreadTwoTone = _interopRequireDefault(require("./MarkunreadTwoTone")); + +var _Masks = _interopRequireDefault(require("./Masks")); + +var _MasksOutlined = _interopRequireDefault(require("./MasksOutlined")); + +var _MasksRounded = _interopRequireDefault(require("./MasksRounded")); + +var _MasksSharp = _interopRequireDefault(require("./MasksSharp")); + +var _MasksTwoTone = _interopRequireDefault(require("./MasksTwoTone")); + +var _Maximize = _interopRequireDefault(require("./Maximize")); + +var _MaximizeOutlined = _interopRequireDefault(require("./MaximizeOutlined")); + +var _MaximizeRounded = _interopRequireDefault(require("./MaximizeRounded")); + +var _MaximizeSharp = _interopRequireDefault(require("./MaximizeSharp")); + +var _MaximizeTwoTone = _interopRequireDefault(require("./MaximizeTwoTone")); + +var _MediaBluetoothOff = _interopRequireDefault(require("./MediaBluetoothOff")); + +var _MediaBluetoothOffOutlined = _interopRequireDefault(require("./MediaBluetoothOffOutlined")); + +var _MediaBluetoothOffRounded = _interopRequireDefault(require("./MediaBluetoothOffRounded")); + +var _MediaBluetoothOffSharp = _interopRequireDefault(require("./MediaBluetoothOffSharp")); + +var _MediaBluetoothOffTwoTone = _interopRequireDefault(require("./MediaBluetoothOffTwoTone")); + +var _MediaBluetoothOn = _interopRequireDefault(require("./MediaBluetoothOn")); + +var _MediaBluetoothOnOutlined = _interopRequireDefault(require("./MediaBluetoothOnOutlined")); + +var _MediaBluetoothOnRounded = _interopRequireDefault(require("./MediaBluetoothOnRounded")); + +var _MediaBluetoothOnSharp = _interopRequireDefault(require("./MediaBluetoothOnSharp")); + +var _MediaBluetoothOnTwoTone = _interopRequireDefault(require("./MediaBluetoothOnTwoTone")); + +var _Mediation = _interopRequireDefault(require("./Mediation")); + +var _MediationOutlined = _interopRequireDefault(require("./MediationOutlined")); + +var _MediationRounded = _interopRequireDefault(require("./MediationRounded")); + +var _MediationSharp = _interopRequireDefault(require("./MediationSharp")); + +var _MediationTwoTone = _interopRequireDefault(require("./MediationTwoTone")); + +var _MedicalServices = _interopRequireDefault(require("./MedicalServices")); + +var _MedicalServicesOutlined = _interopRequireDefault(require("./MedicalServicesOutlined")); + +var _MedicalServicesRounded = _interopRequireDefault(require("./MedicalServicesRounded")); + +var _MedicalServicesSharp = _interopRequireDefault(require("./MedicalServicesSharp")); + +var _MedicalServicesTwoTone = _interopRequireDefault(require("./MedicalServicesTwoTone")); + +var _Medication = _interopRequireDefault(require("./Medication")); + +var _MedicationOutlined = _interopRequireDefault(require("./MedicationOutlined")); + +var _MedicationRounded = _interopRequireDefault(require("./MedicationRounded")); + +var _MedicationSharp = _interopRequireDefault(require("./MedicationSharp")); + +var _MedicationTwoTone = _interopRequireDefault(require("./MedicationTwoTone")); + +var _MeetingRoom = _interopRequireDefault(require("./MeetingRoom")); + +var _MeetingRoomOutlined = _interopRequireDefault(require("./MeetingRoomOutlined")); + +var _MeetingRoomRounded = _interopRequireDefault(require("./MeetingRoomRounded")); + +var _MeetingRoomSharp = _interopRequireDefault(require("./MeetingRoomSharp")); + +var _MeetingRoomTwoTone = _interopRequireDefault(require("./MeetingRoomTwoTone")); + +var _Memory = _interopRequireDefault(require("./Memory")); + +var _MemoryOutlined = _interopRequireDefault(require("./MemoryOutlined")); + +var _MemoryRounded = _interopRequireDefault(require("./MemoryRounded")); + +var _MemorySharp = _interopRequireDefault(require("./MemorySharp")); + +var _MemoryTwoTone = _interopRequireDefault(require("./MemoryTwoTone")); + +var _Menu = _interopRequireDefault(require("./Menu")); + +var _MenuBook = _interopRequireDefault(require("./MenuBook")); + +var _MenuBookOutlined = _interopRequireDefault(require("./MenuBookOutlined")); + +var _MenuBookRounded = _interopRequireDefault(require("./MenuBookRounded")); + +var _MenuBookSharp = _interopRequireDefault(require("./MenuBookSharp")); + +var _MenuBookTwoTone = _interopRequireDefault(require("./MenuBookTwoTone")); + +var _MenuOpen = _interopRequireDefault(require("./MenuOpen")); + +var _MenuOpenOutlined = _interopRequireDefault(require("./MenuOpenOutlined")); + +var _MenuOpenRounded = _interopRequireDefault(require("./MenuOpenRounded")); + +var _MenuOpenSharp = _interopRequireDefault(require("./MenuOpenSharp")); + +var _MenuOpenTwoTone = _interopRequireDefault(require("./MenuOpenTwoTone")); + +var _MenuOutlined = _interopRequireDefault(require("./MenuOutlined")); + +var _MenuRounded = _interopRequireDefault(require("./MenuRounded")); + +var _MenuSharp = _interopRequireDefault(require("./MenuSharp")); + +var _MenuTwoTone = _interopRequireDefault(require("./MenuTwoTone")); + +var _MergeType = _interopRequireDefault(require("./MergeType")); + +var _MergeTypeOutlined = _interopRequireDefault(require("./MergeTypeOutlined")); + +var _MergeTypeRounded = _interopRequireDefault(require("./MergeTypeRounded")); + +var _MergeTypeSharp = _interopRequireDefault(require("./MergeTypeSharp")); + +var _MergeTypeTwoTone = _interopRequireDefault(require("./MergeTypeTwoTone")); + +var _Message = _interopRequireDefault(require("./Message")); + +var _MessageOutlined = _interopRequireDefault(require("./MessageOutlined")); + +var _MessageRounded = _interopRequireDefault(require("./MessageRounded")); + +var _MessageSharp = _interopRequireDefault(require("./MessageSharp")); + +var _MessageTwoTone = _interopRequireDefault(require("./MessageTwoTone")); + +var _Mic = _interopRequireDefault(require("./Mic")); + +var _MicExternalOff = _interopRequireDefault(require("./MicExternalOff")); + +var _MicExternalOffOutlined = _interopRequireDefault(require("./MicExternalOffOutlined")); + +var _MicExternalOffRounded = _interopRequireDefault(require("./MicExternalOffRounded")); + +var _MicExternalOffSharp = _interopRequireDefault(require("./MicExternalOffSharp")); + +var _MicExternalOffTwoTone = _interopRequireDefault(require("./MicExternalOffTwoTone")); + +var _MicExternalOn = _interopRequireDefault(require("./MicExternalOn")); + +var _MicExternalOnOutlined = _interopRequireDefault(require("./MicExternalOnOutlined")); + +var _MicExternalOnRounded = _interopRequireDefault(require("./MicExternalOnRounded")); + +var _MicExternalOnSharp = _interopRequireDefault(require("./MicExternalOnSharp")); + +var _MicExternalOnTwoTone = _interopRequireDefault(require("./MicExternalOnTwoTone")); + +var _MicNone = _interopRequireDefault(require("./MicNone")); + +var _MicNoneOutlined = _interopRequireDefault(require("./MicNoneOutlined")); + +var _MicNoneRounded = _interopRequireDefault(require("./MicNoneRounded")); + +var _MicNoneSharp = _interopRequireDefault(require("./MicNoneSharp")); + +var _MicNoneTwoTone = _interopRequireDefault(require("./MicNoneTwoTone")); + +var _MicOff = _interopRequireDefault(require("./MicOff")); + +var _MicOffOutlined = _interopRequireDefault(require("./MicOffOutlined")); + +var _MicOffRounded = _interopRequireDefault(require("./MicOffRounded")); + +var _MicOffSharp = _interopRequireDefault(require("./MicOffSharp")); + +var _MicOffTwoTone = _interopRequireDefault(require("./MicOffTwoTone")); + +var _MicOutlined = _interopRequireDefault(require("./MicOutlined")); + +var _MicRounded = _interopRequireDefault(require("./MicRounded")); + +var _MicSharp = _interopRequireDefault(require("./MicSharp")); + +var _MicTwoTone = _interopRequireDefault(require("./MicTwoTone")); + +var _Microwave = _interopRequireDefault(require("./Microwave")); + +var _MicrowaveOutlined = _interopRequireDefault(require("./MicrowaveOutlined")); + +var _MicrowaveRounded = _interopRequireDefault(require("./MicrowaveRounded")); + +var _MicrowaveSharp = _interopRequireDefault(require("./MicrowaveSharp")); + +var _MicrowaveTwoTone = _interopRequireDefault(require("./MicrowaveTwoTone")); + +var _MilitaryTech = _interopRequireDefault(require("./MilitaryTech")); + +var _MilitaryTechOutlined = _interopRequireDefault(require("./MilitaryTechOutlined")); + +var _MilitaryTechRounded = _interopRequireDefault(require("./MilitaryTechRounded")); + +var _MilitaryTechSharp = _interopRequireDefault(require("./MilitaryTechSharp")); + +var _MilitaryTechTwoTone = _interopRequireDefault(require("./MilitaryTechTwoTone")); + +var _Minimize = _interopRequireDefault(require("./Minimize")); + +var _MinimizeOutlined = _interopRequireDefault(require("./MinimizeOutlined")); + +var _MinimizeRounded = _interopRequireDefault(require("./MinimizeRounded")); + +var _MinimizeSharp = _interopRequireDefault(require("./MinimizeSharp")); + +var _MinimizeTwoTone = _interopRequireDefault(require("./MinimizeTwoTone")); + +var _MiscellaneousServices = _interopRequireDefault(require("./MiscellaneousServices")); + +var _MiscellaneousServicesOutlined = _interopRequireDefault(require("./MiscellaneousServicesOutlined")); + +var _MiscellaneousServicesRounded = _interopRequireDefault(require("./MiscellaneousServicesRounded")); + +var _MiscellaneousServicesSharp = _interopRequireDefault(require("./MiscellaneousServicesSharp")); + +var _MiscellaneousServicesTwoTone = _interopRequireDefault(require("./MiscellaneousServicesTwoTone")); + +var _MissedVideoCall = _interopRequireDefault(require("./MissedVideoCall")); + +var _MissedVideoCallOutlined = _interopRequireDefault(require("./MissedVideoCallOutlined")); + +var _MissedVideoCallRounded = _interopRequireDefault(require("./MissedVideoCallRounded")); + +var _MissedVideoCallSharp = _interopRequireDefault(require("./MissedVideoCallSharp")); + +var _MissedVideoCallTwoTone = _interopRequireDefault(require("./MissedVideoCallTwoTone")); + +var _Mms = _interopRequireDefault(require("./Mms")); + +var _MmsOutlined = _interopRequireDefault(require("./MmsOutlined")); + +var _MmsRounded = _interopRequireDefault(require("./MmsRounded")); + +var _MmsSharp = _interopRequireDefault(require("./MmsSharp")); + +var _MmsTwoTone = _interopRequireDefault(require("./MmsTwoTone")); + +var _MobileFriendly = _interopRequireDefault(require("./MobileFriendly")); + +var _MobileFriendlyOutlined = _interopRequireDefault(require("./MobileFriendlyOutlined")); + +var _MobileFriendlyRounded = _interopRequireDefault(require("./MobileFriendlyRounded")); + +var _MobileFriendlySharp = _interopRequireDefault(require("./MobileFriendlySharp")); + +var _MobileFriendlyTwoTone = _interopRequireDefault(require("./MobileFriendlyTwoTone")); + +var _MobileOff = _interopRequireDefault(require("./MobileOff")); + +var _MobileOffOutlined = _interopRequireDefault(require("./MobileOffOutlined")); + +var _MobileOffRounded = _interopRequireDefault(require("./MobileOffRounded")); + +var _MobileOffSharp = _interopRequireDefault(require("./MobileOffSharp")); + +var _MobileOffTwoTone = _interopRequireDefault(require("./MobileOffTwoTone")); + +var _MobileScreenShare = _interopRequireDefault(require("./MobileScreenShare")); + +var _MobileScreenShareOutlined = _interopRequireDefault(require("./MobileScreenShareOutlined")); + +var _MobileScreenShareRounded = _interopRequireDefault(require("./MobileScreenShareRounded")); + +var _MobileScreenShareSharp = _interopRequireDefault(require("./MobileScreenShareSharp")); + +var _MobileScreenShareTwoTone = _interopRequireDefault(require("./MobileScreenShareTwoTone")); + +var _MobiledataOff = _interopRequireDefault(require("./MobiledataOff")); + +var _MobiledataOffOutlined = _interopRequireDefault(require("./MobiledataOffOutlined")); + +var _MobiledataOffRounded = _interopRequireDefault(require("./MobiledataOffRounded")); + +var _MobiledataOffSharp = _interopRequireDefault(require("./MobiledataOffSharp")); + +var _MobiledataOffTwoTone = _interopRequireDefault(require("./MobiledataOffTwoTone")); + +var _Mode = _interopRequireDefault(require("./Mode")); + +var _ModeComment = _interopRequireDefault(require("./ModeComment")); + +var _ModeCommentOutlined = _interopRequireDefault(require("./ModeCommentOutlined")); + +var _ModeCommentRounded = _interopRequireDefault(require("./ModeCommentRounded")); + +var _ModeCommentSharp = _interopRequireDefault(require("./ModeCommentSharp")); + +var _ModeCommentTwoTone = _interopRequireDefault(require("./ModeCommentTwoTone")); + +var _ModeEdit = _interopRequireDefault(require("./ModeEdit")); + +var _ModeEditOutline = _interopRequireDefault(require("./ModeEditOutline")); + +var _ModeEditOutlineOutlined = _interopRequireDefault(require("./ModeEditOutlineOutlined")); + +var _ModeEditOutlineRounded = _interopRequireDefault(require("./ModeEditOutlineRounded")); + +var _ModeEditOutlineSharp = _interopRequireDefault(require("./ModeEditOutlineSharp")); + +var _ModeEditOutlineTwoTone = _interopRequireDefault(require("./ModeEditOutlineTwoTone")); + +var _ModeEditOutlined = _interopRequireDefault(require("./ModeEditOutlined")); + +var _ModeEditRounded = _interopRequireDefault(require("./ModeEditRounded")); + +var _ModeEditSharp = _interopRequireDefault(require("./ModeEditSharp")); + +var _ModeEditTwoTone = _interopRequireDefault(require("./ModeEditTwoTone")); + +var _ModeNight = _interopRequireDefault(require("./ModeNight")); + +var _ModeNightOutlined = _interopRequireDefault(require("./ModeNightOutlined")); + +var _ModeNightRounded = _interopRequireDefault(require("./ModeNightRounded")); + +var _ModeNightSharp = _interopRequireDefault(require("./ModeNightSharp")); + +var _ModeNightTwoTone = _interopRequireDefault(require("./ModeNightTwoTone")); + +var _ModeOutlined = _interopRequireDefault(require("./ModeOutlined")); + +var _ModeRounded = _interopRequireDefault(require("./ModeRounded")); + +var _ModeSharp = _interopRequireDefault(require("./ModeSharp")); + +var _ModeStandby = _interopRequireDefault(require("./ModeStandby")); + +var _ModeStandbyOutlined = _interopRequireDefault(require("./ModeStandbyOutlined")); + +var _ModeStandbyRounded = _interopRequireDefault(require("./ModeStandbyRounded")); + +var _ModeStandbySharp = _interopRequireDefault(require("./ModeStandbySharp")); + +var _ModeStandbyTwoTone = _interopRequireDefault(require("./ModeStandbyTwoTone")); + +var _ModeTwoTone = _interopRequireDefault(require("./ModeTwoTone")); + +var _ModelTraining = _interopRequireDefault(require("./ModelTraining")); + +var _ModelTrainingOutlined = _interopRequireDefault(require("./ModelTrainingOutlined")); + +var _ModelTrainingRounded = _interopRequireDefault(require("./ModelTrainingRounded")); + +var _ModelTrainingSharp = _interopRequireDefault(require("./ModelTrainingSharp")); + +var _ModelTrainingTwoTone = _interopRequireDefault(require("./ModelTrainingTwoTone")); + +var _MonetizationOn = _interopRequireDefault(require("./MonetizationOn")); + +var _MonetizationOnOutlined = _interopRequireDefault(require("./MonetizationOnOutlined")); + +var _MonetizationOnRounded = _interopRequireDefault(require("./MonetizationOnRounded")); + +var _MonetizationOnSharp = _interopRequireDefault(require("./MonetizationOnSharp")); + +var _MonetizationOnTwoTone = _interopRequireDefault(require("./MonetizationOnTwoTone")); + +var _Money = _interopRequireDefault(require("./Money")); + +var _MoneyOff = _interopRequireDefault(require("./MoneyOff")); + +var _MoneyOffCsred = _interopRequireDefault(require("./MoneyOffCsred")); + +var _MoneyOffCsredOutlined = _interopRequireDefault(require("./MoneyOffCsredOutlined")); + +var _MoneyOffCsredRounded = _interopRequireDefault(require("./MoneyOffCsredRounded")); + +var _MoneyOffCsredSharp = _interopRequireDefault(require("./MoneyOffCsredSharp")); + +var _MoneyOffCsredTwoTone = _interopRequireDefault(require("./MoneyOffCsredTwoTone")); + +var _MoneyOffOutlined = _interopRequireDefault(require("./MoneyOffOutlined")); + +var _MoneyOffRounded = _interopRequireDefault(require("./MoneyOffRounded")); + +var _MoneyOffSharp = _interopRequireDefault(require("./MoneyOffSharp")); + +var _MoneyOffTwoTone = _interopRequireDefault(require("./MoneyOffTwoTone")); + +var _MoneyOutlined = _interopRequireDefault(require("./MoneyOutlined")); + +var _MoneyRounded = _interopRequireDefault(require("./MoneyRounded")); + +var _MoneySharp = _interopRequireDefault(require("./MoneySharp")); + +var _MoneyTwoTone = _interopRequireDefault(require("./MoneyTwoTone")); + +var _Monitor = _interopRequireDefault(require("./Monitor")); + +var _MonitorOutlined = _interopRequireDefault(require("./MonitorOutlined")); + +var _MonitorRounded = _interopRequireDefault(require("./MonitorRounded")); + +var _MonitorSharp = _interopRequireDefault(require("./MonitorSharp")); + +var _MonitorTwoTone = _interopRequireDefault(require("./MonitorTwoTone")); + +var _MonitorWeight = _interopRequireDefault(require("./MonitorWeight")); + +var _MonitorWeightOutlined = _interopRequireDefault(require("./MonitorWeightOutlined")); + +var _MonitorWeightRounded = _interopRequireDefault(require("./MonitorWeightRounded")); + +var _MonitorWeightSharp = _interopRequireDefault(require("./MonitorWeightSharp")); + +var _MonitorWeightTwoTone = _interopRequireDefault(require("./MonitorWeightTwoTone")); + +var _MonochromePhotos = _interopRequireDefault(require("./MonochromePhotos")); + +var _MonochromePhotosOutlined = _interopRequireDefault(require("./MonochromePhotosOutlined")); + +var _MonochromePhotosRounded = _interopRequireDefault(require("./MonochromePhotosRounded")); + +var _MonochromePhotosSharp = _interopRequireDefault(require("./MonochromePhotosSharp")); + +var _MonochromePhotosTwoTone = _interopRequireDefault(require("./MonochromePhotosTwoTone")); + +var _Mood = _interopRequireDefault(require("./Mood")); + +var _MoodBad = _interopRequireDefault(require("./MoodBad")); + +var _MoodBadOutlined = _interopRequireDefault(require("./MoodBadOutlined")); + +var _MoodBadRounded = _interopRequireDefault(require("./MoodBadRounded")); + +var _MoodBadSharp = _interopRequireDefault(require("./MoodBadSharp")); + +var _MoodBadTwoTone = _interopRequireDefault(require("./MoodBadTwoTone")); + +var _MoodOutlined = _interopRequireDefault(require("./MoodOutlined")); + +var _MoodRounded = _interopRequireDefault(require("./MoodRounded")); + +var _MoodSharp = _interopRequireDefault(require("./MoodSharp")); + +var _MoodTwoTone = _interopRequireDefault(require("./MoodTwoTone")); + +var _Moped = _interopRequireDefault(require("./Moped")); + +var _MopedOutlined = _interopRequireDefault(require("./MopedOutlined")); + +var _MopedRounded = _interopRequireDefault(require("./MopedRounded")); + +var _MopedSharp = _interopRequireDefault(require("./MopedSharp")); + +var _MopedTwoTone = _interopRequireDefault(require("./MopedTwoTone")); + +var _More = _interopRequireDefault(require("./More")); + +var _MoreHoriz = _interopRequireDefault(require("./MoreHoriz")); + +var _MoreHorizOutlined = _interopRequireDefault(require("./MoreHorizOutlined")); + +var _MoreHorizRounded = _interopRequireDefault(require("./MoreHorizRounded")); + +var _MoreHorizSharp = _interopRequireDefault(require("./MoreHorizSharp")); + +var _MoreHorizTwoTone = _interopRequireDefault(require("./MoreHorizTwoTone")); + +var _MoreOutlined = _interopRequireDefault(require("./MoreOutlined")); + +var _MoreRounded = _interopRequireDefault(require("./MoreRounded")); + +var _MoreSharp = _interopRequireDefault(require("./MoreSharp")); + +var _MoreTime = _interopRequireDefault(require("./MoreTime")); + +var _MoreTimeOutlined = _interopRequireDefault(require("./MoreTimeOutlined")); + +var _MoreTimeRounded = _interopRequireDefault(require("./MoreTimeRounded")); + +var _MoreTimeSharp = _interopRequireDefault(require("./MoreTimeSharp")); + +var _MoreTimeTwoTone = _interopRequireDefault(require("./MoreTimeTwoTone")); + +var _MoreTwoTone = _interopRequireDefault(require("./MoreTwoTone")); + +var _MoreVert = _interopRequireDefault(require("./MoreVert")); + +var _MoreVertOutlined = _interopRequireDefault(require("./MoreVertOutlined")); + +var _MoreVertRounded = _interopRequireDefault(require("./MoreVertRounded")); + +var _MoreVertSharp = _interopRequireDefault(require("./MoreVertSharp")); + +var _MoreVertTwoTone = _interopRequireDefault(require("./MoreVertTwoTone")); + +var _MotionPhotosAuto = _interopRequireDefault(require("./MotionPhotosAuto")); + +var _MotionPhotosAutoOutlined = _interopRequireDefault(require("./MotionPhotosAutoOutlined")); + +var _MotionPhotosAutoRounded = _interopRequireDefault(require("./MotionPhotosAutoRounded")); + +var _MotionPhotosAutoSharp = _interopRequireDefault(require("./MotionPhotosAutoSharp")); + +var _MotionPhotosAutoTwoTone = _interopRequireDefault(require("./MotionPhotosAutoTwoTone")); + +var _MotionPhotosOff = _interopRequireDefault(require("./MotionPhotosOff")); + +var _MotionPhotosOffOutlined = _interopRequireDefault(require("./MotionPhotosOffOutlined")); + +var _MotionPhotosOffRounded = _interopRequireDefault(require("./MotionPhotosOffRounded")); + +var _MotionPhotosOffSharp = _interopRequireDefault(require("./MotionPhotosOffSharp")); + +var _MotionPhotosOffTwoTone = _interopRequireDefault(require("./MotionPhotosOffTwoTone")); + +var _Mouse = _interopRequireDefault(require("./Mouse")); + +var _MouseOutlined = _interopRequireDefault(require("./MouseOutlined")); + +var _MouseRounded = _interopRequireDefault(require("./MouseRounded")); + +var _MouseSharp = _interopRequireDefault(require("./MouseSharp")); + +var _MouseTwoTone = _interopRequireDefault(require("./MouseTwoTone")); + +var _MoveToInbox = _interopRequireDefault(require("./MoveToInbox")); + +var _MoveToInboxOutlined = _interopRequireDefault(require("./MoveToInboxOutlined")); + +var _MoveToInboxRounded = _interopRequireDefault(require("./MoveToInboxRounded")); + +var _MoveToInboxSharp = _interopRequireDefault(require("./MoveToInboxSharp")); + +var _MoveToInboxTwoTone = _interopRequireDefault(require("./MoveToInboxTwoTone")); + +var _Movie = _interopRequireDefault(require("./Movie")); + +var _MovieCreation = _interopRequireDefault(require("./MovieCreation")); + +var _MovieCreationOutlined = _interopRequireDefault(require("./MovieCreationOutlined")); + +var _MovieCreationRounded = _interopRequireDefault(require("./MovieCreationRounded")); + +var _MovieCreationSharp = _interopRequireDefault(require("./MovieCreationSharp")); + +var _MovieCreationTwoTone = _interopRequireDefault(require("./MovieCreationTwoTone")); + +var _MovieFilter = _interopRequireDefault(require("./MovieFilter")); + +var _MovieFilterOutlined = _interopRequireDefault(require("./MovieFilterOutlined")); + +var _MovieFilterRounded = _interopRequireDefault(require("./MovieFilterRounded")); + +var _MovieFilterSharp = _interopRequireDefault(require("./MovieFilterSharp")); + +var _MovieFilterTwoTone = _interopRequireDefault(require("./MovieFilterTwoTone")); + +var _MovieOutlined = _interopRequireDefault(require("./MovieOutlined")); + +var _MovieRounded = _interopRequireDefault(require("./MovieRounded")); + +var _MovieSharp = _interopRequireDefault(require("./MovieSharp")); + +var _MovieTwoTone = _interopRequireDefault(require("./MovieTwoTone")); + +var _Moving = _interopRequireDefault(require("./Moving")); + +var _MovingOutlined = _interopRequireDefault(require("./MovingOutlined")); + +var _MovingRounded = _interopRequireDefault(require("./MovingRounded")); + +var _MovingSharp = _interopRequireDefault(require("./MovingSharp")); + +var _MovingTwoTone = _interopRequireDefault(require("./MovingTwoTone")); + +var _Mp = _interopRequireDefault(require("./Mp")); + +var _MpOutlined = _interopRequireDefault(require("./MpOutlined")); + +var _MpRounded = _interopRequireDefault(require("./MpRounded")); + +var _MpSharp = _interopRequireDefault(require("./MpSharp")); + +var _MpTwoTone = _interopRequireDefault(require("./MpTwoTone")); + +var _MultilineChart = _interopRequireDefault(require("./MultilineChart")); + +var _MultilineChartOutlined = _interopRequireDefault(require("./MultilineChartOutlined")); + +var _MultilineChartRounded = _interopRequireDefault(require("./MultilineChartRounded")); + +var _MultilineChartSharp = _interopRequireDefault(require("./MultilineChartSharp")); + +var _MultilineChartTwoTone = _interopRequireDefault(require("./MultilineChartTwoTone")); + +var _MultipleStop = _interopRequireDefault(require("./MultipleStop")); + +var _MultipleStopOutlined = _interopRequireDefault(require("./MultipleStopOutlined")); + +var _MultipleStopRounded = _interopRequireDefault(require("./MultipleStopRounded")); + +var _MultipleStopSharp = _interopRequireDefault(require("./MultipleStopSharp")); + +var _MultipleStopTwoTone = _interopRequireDefault(require("./MultipleStopTwoTone")); + +var _Museum = _interopRequireDefault(require("./Museum")); + +var _MuseumOutlined = _interopRequireDefault(require("./MuseumOutlined")); + +var _MuseumRounded = _interopRequireDefault(require("./MuseumRounded")); + +var _MuseumSharp = _interopRequireDefault(require("./MuseumSharp")); + +var _MuseumTwoTone = _interopRequireDefault(require("./MuseumTwoTone")); + +var _MusicNote = _interopRequireDefault(require("./MusicNote")); + +var _MusicNoteOutlined = _interopRequireDefault(require("./MusicNoteOutlined")); + +var _MusicNoteRounded = _interopRequireDefault(require("./MusicNoteRounded")); + +var _MusicNoteSharp = _interopRequireDefault(require("./MusicNoteSharp")); + +var _MusicNoteTwoTone = _interopRequireDefault(require("./MusicNoteTwoTone")); + +var _MusicOff = _interopRequireDefault(require("./MusicOff")); + +var _MusicOffOutlined = _interopRequireDefault(require("./MusicOffOutlined")); + +var _MusicOffRounded = _interopRequireDefault(require("./MusicOffRounded")); + +var _MusicOffSharp = _interopRequireDefault(require("./MusicOffSharp")); + +var _MusicOffTwoTone = _interopRequireDefault(require("./MusicOffTwoTone")); + +var _MusicVideo = _interopRequireDefault(require("./MusicVideo")); + +var _MusicVideoOutlined = _interopRequireDefault(require("./MusicVideoOutlined")); + +var _MusicVideoRounded = _interopRequireDefault(require("./MusicVideoRounded")); + +var _MusicVideoSharp = _interopRequireDefault(require("./MusicVideoSharp")); + +var _MusicVideoTwoTone = _interopRequireDefault(require("./MusicVideoTwoTone")); + +var _MyLocation = _interopRequireDefault(require("./MyLocation")); + +var _MyLocationOutlined = _interopRequireDefault(require("./MyLocationOutlined")); + +var _MyLocationRounded = _interopRequireDefault(require("./MyLocationRounded")); + +var _MyLocationSharp = _interopRequireDefault(require("./MyLocationSharp")); + +var _MyLocationTwoTone = _interopRequireDefault(require("./MyLocationTwoTone")); + +var _Nat = _interopRequireDefault(require("./Nat")); + +var _NatOutlined = _interopRequireDefault(require("./NatOutlined")); + +var _NatRounded = _interopRequireDefault(require("./NatRounded")); + +var _NatSharp = _interopRequireDefault(require("./NatSharp")); + +var _NatTwoTone = _interopRequireDefault(require("./NatTwoTone")); + +var _Nature = _interopRequireDefault(require("./Nature")); + +var _NatureOutlined = _interopRequireDefault(require("./NatureOutlined")); + +var _NaturePeople = _interopRequireDefault(require("./NaturePeople")); + +var _NaturePeopleOutlined = _interopRequireDefault(require("./NaturePeopleOutlined")); + +var _NaturePeopleRounded = _interopRequireDefault(require("./NaturePeopleRounded")); + +var _NaturePeopleSharp = _interopRequireDefault(require("./NaturePeopleSharp")); + +var _NaturePeopleTwoTone = _interopRequireDefault(require("./NaturePeopleTwoTone")); + +var _NatureRounded = _interopRequireDefault(require("./NatureRounded")); + +var _NatureSharp = _interopRequireDefault(require("./NatureSharp")); + +var _NatureTwoTone = _interopRequireDefault(require("./NatureTwoTone")); + +var _NavigateBefore = _interopRequireDefault(require("./NavigateBefore")); + +var _NavigateBeforeOutlined = _interopRequireDefault(require("./NavigateBeforeOutlined")); + +var _NavigateBeforeRounded = _interopRequireDefault(require("./NavigateBeforeRounded")); + +var _NavigateBeforeSharp = _interopRequireDefault(require("./NavigateBeforeSharp")); + +var _NavigateBeforeTwoTone = _interopRequireDefault(require("./NavigateBeforeTwoTone")); + +var _NavigateNext = _interopRequireDefault(require("./NavigateNext")); + +var _NavigateNextOutlined = _interopRequireDefault(require("./NavigateNextOutlined")); + +var _NavigateNextRounded = _interopRequireDefault(require("./NavigateNextRounded")); + +var _NavigateNextSharp = _interopRequireDefault(require("./NavigateNextSharp")); + +var _NavigateNextTwoTone = _interopRequireDefault(require("./NavigateNextTwoTone")); + +var _Navigation = _interopRequireDefault(require("./Navigation")); + +var _NavigationOutlined = _interopRequireDefault(require("./NavigationOutlined")); + +var _NavigationRounded = _interopRequireDefault(require("./NavigationRounded")); + +var _NavigationSharp = _interopRequireDefault(require("./NavigationSharp")); + +var _NavigationTwoTone = _interopRequireDefault(require("./NavigationTwoTone")); + +var _NearMe = _interopRequireDefault(require("./NearMe")); + +var _NearMeDisabled = _interopRequireDefault(require("./NearMeDisabled")); + +var _NearMeDisabledOutlined = _interopRequireDefault(require("./NearMeDisabledOutlined")); + +var _NearMeDisabledRounded = _interopRequireDefault(require("./NearMeDisabledRounded")); + +var _NearMeDisabledSharp = _interopRequireDefault(require("./NearMeDisabledSharp")); + +var _NearMeDisabledTwoTone = _interopRequireDefault(require("./NearMeDisabledTwoTone")); + +var _NearMeOutlined = _interopRequireDefault(require("./NearMeOutlined")); + +var _NearMeRounded = _interopRequireDefault(require("./NearMeRounded")); + +var _NearMeSharp = _interopRequireDefault(require("./NearMeSharp")); + +var _NearMeTwoTone = _interopRequireDefault(require("./NearMeTwoTone")); + +var _NearbyError = _interopRequireDefault(require("./NearbyError")); + +var _NearbyErrorOutlined = _interopRequireDefault(require("./NearbyErrorOutlined")); + +var _NearbyErrorRounded = _interopRequireDefault(require("./NearbyErrorRounded")); + +var _NearbyErrorSharp = _interopRequireDefault(require("./NearbyErrorSharp")); + +var _NearbyErrorTwoTone = _interopRequireDefault(require("./NearbyErrorTwoTone")); + +var _NearbyOff = _interopRequireDefault(require("./NearbyOff")); + +var _NearbyOffOutlined = _interopRequireDefault(require("./NearbyOffOutlined")); + +var _NearbyOffRounded = _interopRequireDefault(require("./NearbyOffRounded")); + +var _NearbyOffSharp = _interopRequireDefault(require("./NearbyOffSharp")); + +var _NearbyOffTwoTone = _interopRequireDefault(require("./NearbyOffTwoTone")); + +var _NetworkCell = _interopRequireDefault(require("./NetworkCell")); + +var _NetworkCellOutlined = _interopRequireDefault(require("./NetworkCellOutlined")); + +var _NetworkCellRounded = _interopRequireDefault(require("./NetworkCellRounded")); + +var _NetworkCellSharp = _interopRequireDefault(require("./NetworkCellSharp")); + +var _NetworkCellTwoTone = _interopRequireDefault(require("./NetworkCellTwoTone")); + +var _NetworkCheck = _interopRequireDefault(require("./NetworkCheck")); + +var _NetworkCheckOutlined = _interopRequireDefault(require("./NetworkCheckOutlined")); + +var _NetworkCheckRounded = _interopRequireDefault(require("./NetworkCheckRounded")); + +var _NetworkCheckSharp = _interopRequireDefault(require("./NetworkCheckSharp")); + +var _NetworkCheckTwoTone = _interopRequireDefault(require("./NetworkCheckTwoTone")); + +var _NetworkLocked = _interopRequireDefault(require("./NetworkLocked")); + +var _NetworkLockedOutlined = _interopRequireDefault(require("./NetworkLockedOutlined")); + +var _NetworkLockedRounded = _interopRequireDefault(require("./NetworkLockedRounded")); + +var _NetworkLockedSharp = _interopRequireDefault(require("./NetworkLockedSharp")); + +var _NetworkLockedTwoTone = _interopRequireDefault(require("./NetworkLockedTwoTone")); + +var _NetworkWifi = _interopRequireDefault(require("./NetworkWifi")); + +var _NetworkWifiOutlined = _interopRequireDefault(require("./NetworkWifiOutlined")); + +var _NetworkWifiRounded = _interopRequireDefault(require("./NetworkWifiRounded")); + +var _NetworkWifiSharp = _interopRequireDefault(require("./NetworkWifiSharp")); + +var _NetworkWifiTwoTone = _interopRequireDefault(require("./NetworkWifiTwoTone")); + +var _NewReleases = _interopRequireDefault(require("./NewReleases")); + +var _NewReleasesOutlined = _interopRequireDefault(require("./NewReleasesOutlined")); + +var _NewReleasesRounded = _interopRequireDefault(require("./NewReleasesRounded")); + +var _NewReleasesSharp = _interopRequireDefault(require("./NewReleasesSharp")); + +var _NewReleasesTwoTone = _interopRequireDefault(require("./NewReleasesTwoTone")); + +var _NextPlan = _interopRequireDefault(require("./NextPlan")); + +var _NextPlanOutlined = _interopRequireDefault(require("./NextPlanOutlined")); + +var _NextPlanRounded = _interopRequireDefault(require("./NextPlanRounded")); + +var _NextPlanSharp = _interopRequireDefault(require("./NextPlanSharp")); + +var _NextPlanTwoTone = _interopRequireDefault(require("./NextPlanTwoTone")); + +var _NextWeek = _interopRequireDefault(require("./NextWeek")); + +var _NextWeekOutlined = _interopRequireDefault(require("./NextWeekOutlined")); + +var _NextWeekRounded = _interopRequireDefault(require("./NextWeekRounded")); + +var _NextWeekSharp = _interopRequireDefault(require("./NextWeekSharp")); + +var _NextWeekTwoTone = _interopRequireDefault(require("./NextWeekTwoTone")); + +var _Nfc = _interopRequireDefault(require("./Nfc")); + +var _NfcOutlined = _interopRequireDefault(require("./NfcOutlined")); + +var _NfcRounded = _interopRequireDefault(require("./NfcRounded")); + +var _NfcSharp = _interopRequireDefault(require("./NfcSharp")); + +var _NfcTwoTone = _interopRequireDefault(require("./NfcTwoTone")); + +var _NightShelter = _interopRequireDefault(require("./NightShelter")); + +var _NightShelterOutlined = _interopRequireDefault(require("./NightShelterOutlined")); + +var _NightShelterRounded = _interopRequireDefault(require("./NightShelterRounded")); + +var _NightShelterSharp = _interopRequireDefault(require("./NightShelterSharp")); + +var _NightShelterTwoTone = _interopRequireDefault(require("./NightShelterTwoTone")); + +var _Nightlife = _interopRequireDefault(require("./Nightlife")); + +var _NightlifeOutlined = _interopRequireDefault(require("./NightlifeOutlined")); + +var _NightlifeRounded = _interopRequireDefault(require("./NightlifeRounded")); + +var _NightlifeSharp = _interopRequireDefault(require("./NightlifeSharp")); + +var _NightlifeTwoTone = _interopRequireDefault(require("./NightlifeTwoTone")); + +var _Nightlight = _interopRequireDefault(require("./Nightlight")); + +var _NightlightOutlined = _interopRequireDefault(require("./NightlightOutlined")); + +var _NightlightRound = _interopRequireDefault(require("./NightlightRound")); + +var _NightlightRoundOutlined = _interopRequireDefault(require("./NightlightRoundOutlined")); + +var _NightlightRoundRounded = _interopRequireDefault(require("./NightlightRoundRounded")); + +var _NightlightRoundSharp = _interopRequireDefault(require("./NightlightRoundSharp")); + +var _NightlightRoundTwoTone = _interopRequireDefault(require("./NightlightRoundTwoTone")); + +var _NightlightRounded = _interopRequireDefault(require("./NightlightRounded")); + +var _NightlightSharp = _interopRequireDefault(require("./NightlightSharp")); + +var _NightlightTwoTone = _interopRequireDefault(require("./NightlightTwoTone")); + +var _NightsStay = _interopRequireDefault(require("./NightsStay")); + +var _NightsStayOutlined = _interopRequireDefault(require("./NightsStayOutlined")); + +var _NightsStayRounded = _interopRequireDefault(require("./NightsStayRounded")); + +var _NightsStaySharp = _interopRequireDefault(require("./NightsStaySharp")); + +var _NightsStayTwoTone = _interopRequireDefault(require("./NightsStayTwoTone")); + +var _NineK = _interopRequireDefault(require("./NineK")); + +var _NineKOutlined = _interopRequireDefault(require("./NineKOutlined")); + +var _NineKPlus = _interopRequireDefault(require("./NineKPlus")); + +var _NineKPlusOutlined = _interopRequireDefault(require("./NineKPlusOutlined")); + +var _NineKPlusRounded = _interopRequireDefault(require("./NineKPlusRounded")); + +var _NineKPlusSharp = _interopRequireDefault(require("./NineKPlusSharp")); + +var _NineKPlusTwoTone = _interopRequireDefault(require("./NineKPlusTwoTone")); + +var _NineKRounded = _interopRequireDefault(require("./NineKRounded")); + +var _NineKSharp = _interopRequireDefault(require("./NineKSharp")); + +var _NineKTwoTone = _interopRequireDefault(require("./NineKTwoTone")); + +var _NineMp = _interopRequireDefault(require("./NineMp")); + +var _NineMpOutlined = _interopRequireDefault(require("./NineMpOutlined")); + +var _NineMpRounded = _interopRequireDefault(require("./NineMpRounded")); + +var _NineMpSharp = _interopRequireDefault(require("./NineMpSharp")); + +var _NineMpTwoTone = _interopRequireDefault(require("./NineMpTwoTone")); + +var _NineteenMp = _interopRequireDefault(require("./NineteenMp")); + +var _NineteenMpOutlined = _interopRequireDefault(require("./NineteenMpOutlined")); + +var _NineteenMpRounded = _interopRequireDefault(require("./NineteenMpRounded")); + +var _NineteenMpSharp = _interopRequireDefault(require("./NineteenMpSharp")); + +var _NineteenMpTwoTone = _interopRequireDefault(require("./NineteenMpTwoTone")); + +var _NoAccounts = _interopRequireDefault(require("./NoAccounts")); + +var _NoAccountsOutlined = _interopRequireDefault(require("./NoAccountsOutlined")); + +var _NoAccountsRounded = _interopRequireDefault(require("./NoAccountsRounded")); + +var _NoAccountsSharp = _interopRequireDefault(require("./NoAccountsSharp")); + +var _NoAccountsTwoTone = _interopRequireDefault(require("./NoAccountsTwoTone")); + +var _NoBackpack = _interopRequireDefault(require("./NoBackpack")); + +var _NoBackpackOutlined = _interopRequireDefault(require("./NoBackpackOutlined")); + +var _NoBackpackRounded = _interopRequireDefault(require("./NoBackpackRounded")); + +var _NoBackpackSharp = _interopRequireDefault(require("./NoBackpackSharp")); + +var _NoBackpackTwoTone = _interopRequireDefault(require("./NoBackpackTwoTone")); + +var _NoCell = _interopRequireDefault(require("./NoCell")); + +var _NoCellOutlined = _interopRequireDefault(require("./NoCellOutlined")); + +var _NoCellRounded = _interopRequireDefault(require("./NoCellRounded")); + +var _NoCellSharp = _interopRequireDefault(require("./NoCellSharp")); + +var _NoCellTwoTone = _interopRequireDefault(require("./NoCellTwoTone")); + +var _NoDrinks = _interopRequireDefault(require("./NoDrinks")); + +var _NoDrinksOutlined = _interopRequireDefault(require("./NoDrinksOutlined")); + +var _NoDrinksRounded = _interopRequireDefault(require("./NoDrinksRounded")); + +var _NoDrinksSharp = _interopRequireDefault(require("./NoDrinksSharp")); + +var _NoDrinksTwoTone = _interopRequireDefault(require("./NoDrinksTwoTone")); + +var _NoEncryption = _interopRequireDefault(require("./NoEncryption")); + +var _NoEncryptionGmailerrorred = _interopRequireDefault(require("./NoEncryptionGmailerrorred")); + +var _NoEncryptionGmailerrorredOutlined = _interopRequireDefault(require("./NoEncryptionGmailerrorredOutlined")); + +var _NoEncryptionGmailerrorredRounded = _interopRequireDefault(require("./NoEncryptionGmailerrorredRounded")); + +var _NoEncryptionGmailerrorredSharp = _interopRequireDefault(require("./NoEncryptionGmailerrorredSharp")); + +var _NoEncryptionGmailerrorredTwoTone = _interopRequireDefault(require("./NoEncryptionGmailerrorredTwoTone")); + +var _NoEncryptionOutlined = _interopRequireDefault(require("./NoEncryptionOutlined")); + +var _NoEncryptionRounded = _interopRequireDefault(require("./NoEncryptionRounded")); + +var _NoEncryptionSharp = _interopRequireDefault(require("./NoEncryptionSharp")); + +var _NoEncryptionTwoTone = _interopRequireDefault(require("./NoEncryptionTwoTone")); + +var _NoFlash = _interopRequireDefault(require("./NoFlash")); + +var _NoFlashOutlined = _interopRequireDefault(require("./NoFlashOutlined")); + +var _NoFlashRounded = _interopRequireDefault(require("./NoFlashRounded")); + +var _NoFlashSharp = _interopRequireDefault(require("./NoFlashSharp")); + +var _NoFlashTwoTone = _interopRequireDefault(require("./NoFlashTwoTone")); + +var _NoFood = _interopRequireDefault(require("./NoFood")); + +var _NoFoodOutlined = _interopRequireDefault(require("./NoFoodOutlined")); + +var _NoFoodRounded = _interopRequireDefault(require("./NoFoodRounded")); + +var _NoFoodSharp = _interopRequireDefault(require("./NoFoodSharp")); + +var _NoFoodTwoTone = _interopRequireDefault(require("./NoFoodTwoTone")); + +var _NoLuggage = _interopRequireDefault(require("./NoLuggage")); + +var _NoLuggageOutlined = _interopRequireDefault(require("./NoLuggageOutlined")); + +var _NoLuggageRounded = _interopRequireDefault(require("./NoLuggageRounded")); + +var _NoLuggageSharp = _interopRequireDefault(require("./NoLuggageSharp")); + +var _NoLuggageTwoTone = _interopRequireDefault(require("./NoLuggageTwoTone")); + +var _NoMeals = _interopRequireDefault(require("./NoMeals")); + +var _NoMealsOutlined = _interopRequireDefault(require("./NoMealsOutlined")); + +var _NoMealsRounded = _interopRequireDefault(require("./NoMealsRounded")); + +var _NoMealsSharp = _interopRequireDefault(require("./NoMealsSharp")); + +var _NoMealsTwoTone = _interopRequireDefault(require("./NoMealsTwoTone")); + +var _NoMeetingRoom = _interopRequireDefault(require("./NoMeetingRoom")); + +var _NoMeetingRoomOutlined = _interopRequireDefault(require("./NoMeetingRoomOutlined")); + +var _NoMeetingRoomRounded = _interopRequireDefault(require("./NoMeetingRoomRounded")); + +var _NoMeetingRoomSharp = _interopRequireDefault(require("./NoMeetingRoomSharp")); + +var _NoMeetingRoomTwoTone = _interopRequireDefault(require("./NoMeetingRoomTwoTone")); + +var _NoPhotography = _interopRequireDefault(require("./NoPhotography")); + +var _NoPhotographyOutlined = _interopRequireDefault(require("./NoPhotographyOutlined")); + +var _NoPhotographyRounded = _interopRequireDefault(require("./NoPhotographyRounded")); + +var _NoPhotographySharp = _interopRequireDefault(require("./NoPhotographySharp")); + +var _NoPhotographyTwoTone = _interopRequireDefault(require("./NoPhotographyTwoTone")); + +var _NoSim = _interopRequireDefault(require("./NoSim")); + +var _NoSimOutlined = _interopRequireDefault(require("./NoSimOutlined")); + +var _NoSimRounded = _interopRequireDefault(require("./NoSimRounded")); + +var _NoSimSharp = _interopRequireDefault(require("./NoSimSharp")); + +var _NoSimTwoTone = _interopRequireDefault(require("./NoSimTwoTone")); + +var _NoStroller = _interopRequireDefault(require("./NoStroller")); + +var _NoStrollerOutlined = _interopRequireDefault(require("./NoStrollerOutlined")); + +var _NoStrollerRounded = _interopRequireDefault(require("./NoStrollerRounded")); + +var _NoStrollerSharp = _interopRequireDefault(require("./NoStrollerSharp")); + +var _NoStrollerTwoTone = _interopRequireDefault(require("./NoStrollerTwoTone")); + +var _NoTransfer = _interopRequireDefault(require("./NoTransfer")); + +var _NoTransferOutlined = _interopRequireDefault(require("./NoTransferOutlined")); + +var _NoTransferRounded = _interopRequireDefault(require("./NoTransferRounded")); + +var _NoTransferSharp = _interopRequireDefault(require("./NoTransferSharp")); + +var _NoTransferTwoTone = _interopRequireDefault(require("./NoTransferTwoTone")); + +var _NordicWalking = _interopRequireDefault(require("./NordicWalking")); + +var _NordicWalkingOutlined = _interopRequireDefault(require("./NordicWalkingOutlined")); + +var _NordicWalkingRounded = _interopRequireDefault(require("./NordicWalkingRounded")); + +var _NordicWalkingSharp = _interopRequireDefault(require("./NordicWalkingSharp")); + +var _NordicWalkingTwoTone = _interopRequireDefault(require("./NordicWalkingTwoTone")); + +var _North = _interopRequireDefault(require("./North")); + +var _NorthEast = _interopRequireDefault(require("./NorthEast")); + +var _NorthEastOutlined = _interopRequireDefault(require("./NorthEastOutlined")); + +var _NorthEastRounded = _interopRequireDefault(require("./NorthEastRounded")); + +var _NorthEastSharp = _interopRequireDefault(require("./NorthEastSharp")); + +var _NorthEastTwoTone = _interopRequireDefault(require("./NorthEastTwoTone")); + +var _NorthOutlined = _interopRequireDefault(require("./NorthOutlined")); + +var _NorthRounded = _interopRequireDefault(require("./NorthRounded")); + +var _NorthSharp = _interopRequireDefault(require("./NorthSharp")); + +var _NorthTwoTone = _interopRequireDefault(require("./NorthTwoTone")); + +var _NorthWest = _interopRequireDefault(require("./NorthWest")); + +var _NorthWestOutlined = _interopRequireDefault(require("./NorthWestOutlined")); + +var _NorthWestRounded = _interopRequireDefault(require("./NorthWestRounded")); + +var _NorthWestSharp = _interopRequireDefault(require("./NorthWestSharp")); + +var _NorthWestTwoTone = _interopRequireDefault(require("./NorthWestTwoTone")); + +var _NotAccessible = _interopRequireDefault(require("./NotAccessible")); + +var _NotAccessibleOutlined = _interopRequireDefault(require("./NotAccessibleOutlined")); + +var _NotAccessibleRounded = _interopRequireDefault(require("./NotAccessibleRounded")); + +var _NotAccessibleSharp = _interopRequireDefault(require("./NotAccessibleSharp")); + +var _NotAccessibleTwoTone = _interopRequireDefault(require("./NotAccessibleTwoTone")); + +var _NotInterested = _interopRequireDefault(require("./NotInterested")); + +var _NotInterestedOutlined = _interopRequireDefault(require("./NotInterestedOutlined")); + +var _NotInterestedRounded = _interopRequireDefault(require("./NotInterestedRounded")); + +var _NotInterestedSharp = _interopRequireDefault(require("./NotInterestedSharp")); + +var _NotInterestedTwoTone = _interopRequireDefault(require("./NotInterestedTwoTone")); + +var _NotListedLocation = _interopRequireDefault(require("./NotListedLocation")); + +var _NotListedLocationOutlined = _interopRequireDefault(require("./NotListedLocationOutlined")); + +var _NotListedLocationRounded = _interopRequireDefault(require("./NotListedLocationRounded")); + +var _NotListedLocationSharp = _interopRequireDefault(require("./NotListedLocationSharp")); + +var _NotListedLocationTwoTone = _interopRequireDefault(require("./NotListedLocationTwoTone")); + +var _NotStarted = _interopRequireDefault(require("./NotStarted")); + +var _NotStartedOutlined = _interopRequireDefault(require("./NotStartedOutlined")); + +var _NotStartedRounded = _interopRequireDefault(require("./NotStartedRounded")); + +var _NotStartedSharp = _interopRequireDefault(require("./NotStartedSharp")); + +var _NotStartedTwoTone = _interopRequireDefault(require("./NotStartedTwoTone")); + +var _Note = _interopRequireDefault(require("./Note")); + +var _NoteAdd = _interopRequireDefault(require("./NoteAdd")); + +var _NoteAddOutlined = _interopRequireDefault(require("./NoteAddOutlined")); + +var _NoteAddRounded = _interopRequireDefault(require("./NoteAddRounded")); + +var _NoteAddSharp = _interopRequireDefault(require("./NoteAddSharp")); + +var _NoteAddTwoTone = _interopRequireDefault(require("./NoteAddTwoTone")); + +var _NoteAlt = _interopRequireDefault(require("./NoteAlt")); + +var _NoteAltOutlined = _interopRequireDefault(require("./NoteAltOutlined")); + +var _NoteAltRounded = _interopRequireDefault(require("./NoteAltRounded")); + +var _NoteAltSharp = _interopRequireDefault(require("./NoteAltSharp")); + +var _NoteAltTwoTone = _interopRequireDefault(require("./NoteAltTwoTone")); + +var _NoteOutlined = _interopRequireDefault(require("./NoteOutlined")); + +var _NoteRounded = _interopRequireDefault(require("./NoteRounded")); + +var _NoteSharp = _interopRequireDefault(require("./NoteSharp")); + +var _NoteTwoTone = _interopRequireDefault(require("./NoteTwoTone")); + +var _Notes = _interopRequireDefault(require("./Notes")); + +var _NotesOutlined = _interopRequireDefault(require("./NotesOutlined")); + +var _NotesRounded = _interopRequireDefault(require("./NotesRounded")); + +var _NotesSharp = _interopRequireDefault(require("./NotesSharp")); + +var _NotesTwoTone = _interopRequireDefault(require("./NotesTwoTone")); + +var _NotificationAdd = _interopRequireDefault(require("./NotificationAdd")); + +var _NotificationAddOutlined = _interopRequireDefault(require("./NotificationAddOutlined")); + +var _NotificationAddRounded = _interopRequireDefault(require("./NotificationAddRounded")); + +var _NotificationAddSharp = _interopRequireDefault(require("./NotificationAddSharp")); + +var _NotificationAddTwoTone = _interopRequireDefault(require("./NotificationAddTwoTone")); + +var _NotificationImportant = _interopRequireDefault(require("./NotificationImportant")); + +var _NotificationImportantOutlined = _interopRequireDefault(require("./NotificationImportantOutlined")); + +var _NotificationImportantRounded = _interopRequireDefault(require("./NotificationImportantRounded")); + +var _NotificationImportantSharp = _interopRequireDefault(require("./NotificationImportantSharp")); + +var _NotificationImportantTwoTone = _interopRequireDefault(require("./NotificationImportantTwoTone")); + +var _Notifications = _interopRequireDefault(require("./Notifications")); + +var _NotificationsActive = _interopRequireDefault(require("./NotificationsActive")); + +var _NotificationsActiveOutlined = _interopRequireDefault(require("./NotificationsActiveOutlined")); + +var _NotificationsActiveRounded = _interopRequireDefault(require("./NotificationsActiveRounded")); + +var _NotificationsActiveSharp = _interopRequireDefault(require("./NotificationsActiveSharp")); + +var _NotificationsActiveTwoTone = _interopRequireDefault(require("./NotificationsActiveTwoTone")); + +var _NotificationsNone = _interopRequireDefault(require("./NotificationsNone")); + +var _NotificationsNoneOutlined = _interopRequireDefault(require("./NotificationsNoneOutlined")); + +var _NotificationsNoneRounded = _interopRequireDefault(require("./NotificationsNoneRounded")); + +var _NotificationsNoneSharp = _interopRequireDefault(require("./NotificationsNoneSharp")); + +var _NotificationsNoneTwoTone = _interopRequireDefault(require("./NotificationsNoneTwoTone")); + +var _NotificationsOff = _interopRequireDefault(require("./NotificationsOff")); + +var _NotificationsOffOutlined = _interopRequireDefault(require("./NotificationsOffOutlined")); + +var _NotificationsOffRounded = _interopRequireDefault(require("./NotificationsOffRounded")); + +var _NotificationsOffSharp = _interopRequireDefault(require("./NotificationsOffSharp")); + +var _NotificationsOffTwoTone = _interopRequireDefault(require("./NotificationsOffTwoTone")); + +var _NotificationsOutlined = _interopRequireDefault(require("./NotificationsOutlined")); + +var _NotificationsPaused = _interopRequireDefault(require("./NotificationsPaused")); + +var _NotificationsPausedOutlined = _interopRequireDefault(require("./NotificationsPausedOutlined")); + +var _NotificationsPausedRounded = _interopRequireDefault(require("./NotificationsPausedRounded")); + +var _NotificationsPausedSharp = _interopRequireDefault(require("./NotificationsPausedSharp")); + +var _NotificationsPausedTwoTone = _interopRequireDefault(require("./NotificationsPausedTwoTone")); + +var _NotificationsRounded = _interopRequireDefault(require("./NotificationsRounded")); + +var _NotificationsSharp = _interopRequireDefault(require("./NotificationsSharp")); + +var _NotificationsTwoTone = _interopRequireDefault(require("./NotificationsTwoTone")); + +var _OfflineBolt = _interopRequireDefault(require("./OfflineBolt")); + +var _OfflineBoltOutlined = _interopRequireDefault(require("./OfflineBoltOutlined")); + +var _OfflineBoltRounded = _interopRequireDefault(require("./OfflineBoltRounded")); + +var _OfflineBoltSharp = _interopRequireDefault(require("./OfflineBoltSharp")); + +var _OfflineBoltTwoTone = _interopRequireDefault(require("./OfflineBoltTwoTone")); + +var _OfflinePin = _interopRequireDefault(require("./OfflinePin")); + +var _OfflinePinOutlined = _interopRequireDefault(require("./OfflinePinOutlined")); + +var _OfflinePinRounded = _interopRequireDefault(require("./OfflinePinRounded")); + +var _OfflinePinSharp = _interopRequireDefault(require("./OfflinePinSharp")); + +var _OfflinePinTwoTone = _interopRequireDefault(require("./OfflinePinTwoTone")); + +var _OfflineShare = _interopRequireDefault(require("./OfflineShare")); + +var _OfflineShareOutlined = _interopRequireDefault(require("./OfflineShareOutlined")); + +var _OfflineShareRounded = _interopRequireDefault(require("./OfflineShareRounded")); + +var _OfflineShareSharp = _interopRequireDefault(require("./OfflineShareSharp")); + +var _OfflineShareTwoTone = _interopRequireDefault(require("./OfflineShareTwoTone")); + +var _OndemandVideo = _interopRequireDefault(require("./OndemandVideo")); + +var _OndemandVideoOutlined = _interopRequireDefault(require("./OndemandVideoOutlined")); + +var _OndemandVideoRounded = _interopRequireDefault(require("./OndemandVideoRounded")); + +var _OndemandVideoSharp = _interopRequireDefault(require("./OndemandVideoSharp")); + +var _OndemandVideoTwoTone = _interopRequireDefault(require("./OndemandVideoTwoTone")); + +var _OneK = _interopRequireDefault(require("./OneK")); + +var _OneKOutlined = _interopRequireDefault(require("./OneKOutlined")); + +var _OneKPlus = _interopRequireDefault(require("./OneKPlus")); + +var _OneKPlusOutlined = _interopRequireDefault(require("./OneKPlusOutlined")); + +var _OneKPlusRounded = _interopRequireDefault(require("./OneKPlusRounded")); + +var _OneKPlusSharp = _interopRequireDefault(require("./OneKPlusSharp")); + +var _OneKPlusTwoTone = _interopRequireDefault(require("./OneKPlusTwoTone")); + +var _OneKRounded = _interopRequireDefault(require("./OneKRounded")); + +var _OneKSharp = _interopRequireDefault(require("./OneKSharp")); + +var _OneKTwoTone = _interopRequireDefault(require("./OneKTwoTone")); + +var _OneKk = _interopRequireDefault(require("./OneKk")); + +var _OneKkOutlined = _interopRequireDefault(require("./OneKkOutlined")); + +var _OneKkRounded = _interopRequireDefault(require("./OneKkRounded")); + +var _OneKkSharp = _interopRequireDefault(require("./OneKkSharp")); + +var _OneKkTwoTone = _interopRequireDefault(require("./OneKkTwoTone")); + +var _OnlinePrediction = _interopRequireDefault(require("./OnlinePrediction")); + +var _OnlinePredictionOutlined = _interopRequireDefault(require("./OnlinePredictionOutlined")); + +var _OnlinePredictionRounded = _interopRequireDefault(require("./OnlinePredictionRounded")); + +var _OnlinePredictionSharp = _interopRequireDefault(require("./OnlinePredictionSharp")); + +var _OnlinePredictionTwoTone = _interopRequireDefault(require("./OnlinePredictionTwoTone")); + +var _Opacity = _interopRequireDefault(require("./Opacity")); + +var _OpacityOutlined = _interopRequireDefault(require("./OpacityOutlined")); + +var _OpacityRounded = _interopRequireDefault(require("./OpacityRounded")); + +var _OpacitySharp = _interopRequireDefault(require("./OpacitySharp")); + +var _OpacityTwoTone = _interopRequireDefault(require("./OpacityTwoTone")); + +var _OpenInBrowser = _interopRequireDefault(require("./OpenInBrowser")); + +var _OpenInBrowserOutlined = _interopRequireDefault(require("./OpenInBrowserOutlined")); + +var _OpenInBrowserRounded = _interopRequireDefault(require("./OpenInBrowserRounded")); + +var _OpenInBrowserSharp = _interopRequireDefault(require("./OpenInBrowserSharp")); + +var _OpenInBrowserTwoTone = _interopRequireDefault(require("./OpenInBrowserTwoTone")); + +var _OpenInFull = _interopRequireDefault(require("./OpenInFull")); + +var _OpenInFullOutlined = _interopRequireDefault(require("./OpenInFullOutlined")); + +var _OpenInFullRounded = _interopRequireDefault(require("./OpenInFullRounded")); + +var _OpenInFullSharp = _interopRequireDefault(require("./OpenInFullSharp")); + +var _OpenInFullTwoTone = _interopRequireDefault(require("./OpenInFullTwoTone")); + +var _OpenInNew = _interopRequireDefault(require("./OpenInNew")); + +var _OpenInNewOff = _interopRequireDefault(require("./OpenInNewOff")); + +var _OpenInNewOffOutlined = _interopRequireDefault(require("./OpenInNewOffOutlined")); + +var _OpenInNewOffRounded = _interopRequireDefault(require("./OpenInNewOffRounded")); + +var _OpenInNewOffSharp = _interopRequireDefault(require("./OpenInNewOffSharp")); + +var _OpenInNewOffTwoTone = _interopRequireDefault(require("./OpenInNewOffTwoTone")); + +var _OpenInNewOutlined = _interopRequireDefault(require("./OpenInNewOutlined")); + +var _OpenInNewRounded = _interopRequireDefault(require("./OpenInNewRounded")); + +var _OpenInNewSharp = _interopRequireDefault(require("./OpenInNewSharp")); + +var _OpenInNewTwoTone = _interopRequireDefault(require("./OpenInNewTwoTone")); + +var _OpenWith = _interopRequireDefault(require("./OpenWith")); + +var _OpenWithOutlined = _interopRequireDefault(require("./OpenWithOutlined")); + +var _OpenWithRounded = _interopRequireDefault(require("./OpenWithRounded")); + +var _OpenWithSharp = _interopRequireDefault(require("./OpenWithSharp")); + +var _OpenWithTwoTone = _interopRequireDefault(require("./OpenWithTwoTone")); + +var _OtherHouses = _interopRequireDefault(require("./OtherHouses")); + +var _OtherHousesOutlined = _interopRequireDefault(require("./OtherHousesOutlined")); + +var _OtherHousesRounded = _interopRequireDefault(require("./OtherHousesRounded")); + +var _OtherHousesSharp = _interopRequireDefault(require("./OtherHousesSharp")); + +var _OtherHousesTwoTone = _interopRequireDefault(require("./OtherHousesTwoTone")); + +var _Outbound = _interopRequireDefault(require("./Outbound")); + +var _OutboundOutlined = _interopRequireDefault(require("./OutboundOutlined")); + +var _OutboundRounded = _interopRequireDefault(require("./OutboundRounded")); + +var _OutboundSharp = _interopRequireDefault(require("./OutboundSharp")); + +var _OutboundTwoTone = _interopRequireDefault(require("./OutboundTwoTone")); + +var _Outbox = _interopRequireDefault(require("./Outbox")); + +var _OutboxOutlined = _interopRequireDefault(require("./OutboxOutlined")); + +var _OutboxRounded = _interopRequireDefault(require("./OutboxRounded")); + +var _OutboxSharp = _interopRequireDefault(require("./OutboxSharp")); + +var _OutboxTwoTone = _interopRequireDefault(require("./OutboxTwoTone")); + +var _OutdoorGrill = _interopRequireDefault(require("./OutdoorGrill")); + +var _OutdoorGrillOutlined = _interopRequireDefault(require("./OutdoorGrillOutlined")); + +var _OutdoorGrillRounded = _interopRequireDefault(require("./OutdoorGrillRounded")); + +var _OutdoorGrillSharp = _interopRequireDefault(require("./OutdoorGrillSharp")); + +var _OutdoorGrillTwoTone = _interopRequireDefault(require("./OutdoorGrillTwoTone")); + +var _Outlet = _interopRequireDefault(require("./Outlet")); + +var _OutletOutlined = _interopRequireDefault(require("./OutletOutlined")); + +var _OutletRounded = _interopRequireDefault(require("./OutletRounded")); + +var _OutletSharp = _interopRequireDefault(require("./OutletSharp")); + +var _OutletTwoTone = _interopRequireDefault(require("./OutletTwoTone")); + +var _OutlinedFlag = _interopRequireDefault(require("./OutlinedFlag")); + +var _OutlinedFlagOutlined = _interopRequireDefault(require("./OutlinedFlagOutlined")); + +var _OutlinedFlagRounded = _interopRequireDefault(require("./OutlinedFlagRounded")); + +var _OutlinedFlagSharp = _interopRequireDefault(require("./OutlinedFlagSharp")); + +var _OutlinedFlagTwoTone = _interopRequireDefault(require("./OutlinedFlagTwoTone")); + +var _Padding = _interopRequireDefault(require("./Padding")); + +var _PaddingOutlined = _interopRequireDefault(require("./PaddingOutlined")); + +var _PaddingRounded = _interopRequireDefault(require("./PaddingRounded")); + +var _PaddingSharp = _interopRequireDefault(require("./PaddingSharp")); + +var _PaddingTwoTone = _interopRequireDefault(require("./PaddingTwoTone")); + +var _Pages = _interopRequireDefault(require("./Pages")); + +var _PagesOutlined = _interopRequireDefault(require("./PagesOutlined")); + +var _PagesRounded = _interopRequireDefault(require("./PagesRounded")); + +var _PagesSharp = _interopRequireDefault(require("./PagesSharp")); + +var _PagesTwoTone = _interopRequireDefault(require("./PagesTwoTone")); + +var _Pageview = _interopRequireDefault(require("./Pageview")); + +var _PageviewOutlined = _interopRequireDefault(require("./PageviewOutlined")); + +var _PageviewRounded = _interopRequireDefault(require("./PageviewRounded")); + +var _PageviewSharp = _interopRequireDefault(require("./PageviewSharp")); + +var _PageviewTwoTone = _interopRequireDefault(require("./PageviewTwoTone")); + +var _Paid = _interopRequireDefault(require("./Paid")); + +var _PaidOutlined = _interopRequireDefault(require("./PaidOutlined")); + +var _PaidRounded = _interopRequireDefault(require("./PaidRounded")); + +var _PaidSharp = _interopRequireDefault(require("./PaidSharp")); + +var _PaidTwoTone = _interopRequireDefault(require("./PaidTwoTone")); + +var _Palette = _interopRequireDefault(require("./Palette")); + +var _PaletteOutlined = _interopRequireDefault(require("./PaletteOutlined")); + +var _PaletteRounded = _interopRequireDefault(require("./PaletteRounded")); + +var _PaletteSharp = _interopRequireDefault(require("./PaletteSharp")); + +var _PaletteTwoTone = _interopRequireDefault(require("./PaletteTwoTone")); + +var _PanTool = _interopRequireDefault(require("./PanTool")); + +var _PanToolOutlined = _interopRequireDefault(require("./PanToolOutlined")); + +var _PanToolRounded = _interopRequireDefault(require("./PanToolRounded")); + +var _PanToolSharp = _interopRequireDefault(require("./PanToolSharp")); + +var _PanToolTwoTone = _interopRequireDefault(require("./PanToolTwoTone")); + +var _Panorama = _interopRequireDefault(require("./Panorama")); + +var _PanoramaFishEye = _interopRequireDefault(require("./PanoramaFishEye")); + +var _PanoramaFishEyeOutlined = _interopRequireDefault(require("./PanoramaFishEyeOutlined")); + +var _PanoramaFishEyeRounded = _interopRequireDefault(require("./PanoramaFishEyeRounded")); + +var _PanoramaFishEyeSharp = _interopRequireDefault(require("./PanoramaFishEyeSharp")); + +var _PanoramaFishEyeTwoTone = _interopRequireDefault(require("./PanoramaFishEyeTwoTone")); + +var _PanoramaHorizontal = _interopRequireDefault(require("./PanoramaHorizontal")); + +var _PanoramaHorizontalOutlined = _interopRequireDefault(require("./PanoramaHorizontalOutlined")); + +var _PanoramaHorizontalRounded = _interopRequireDefault(require("./PanoramaHorizontalRounded")); + +var _PanoramaHorizontalSelect = _interopRequireDefault(require("./PanoramaHorizontalSelect")); + +var _PanoramaHorizontalSelectOutlined = _interopRequireDefault(require("./PanoramaHorizontalSelectOutlined")); + +var _PanoramaHorizontalSelectRounded = _interopRequireDefault(require("./PanoramaHorizontalSelectRounded")); + +var _PanoramaHorizontalSelectSharp = _interopRequireDefault(require("./PanoramaHorizontalSelectSharp")); + +var _PanoramaHorizontalSelectTwoTone = _interopRequireDefault(require("./PanoramaHorizontalSelectTwoTone")); + +var _PanoramaHorizontalSharp = _interopRequireDefault(require("./PanoramaHorizontalSharp")); + +var _PanoramaHorizontalTwoTone = _interopRequireDefault(require("./PanoramaHorizontalTwoTone")); + +var _PanoramaOutlined = _interopRequireDefault(require("./PanoramaOutlined")); + +var _PanoramaPhotosphere = _interopRequireDefault(require("./PanoramaPhotosphere")); + +var _PanoramaPhotosphereOutlined = _interopRequireDefault(require("./PanoramaPhotosphereOutlined")); + +var _PanoramaPhotosphereRounded = _interopRequireDefault(require("./PanoramaPhotosphereRounded")); + +var _PanoramaPhotosphereSelect = _interopRequireDefault(require("./PanoramaPhotosphereSelect")); + +var _PanoramaPhotosphereSelectOutlined = _interopRequireDefault(require("./PanoramaPhotosphereSelectOutlined")); + +var _PanoramaPhotosphereSelectRounded = _interopRequireDefault(require("./PanoramaPhotosphereSelectRounded")); + +var _PanoramaPhotosphereSelectSharp = _interopRequireDefault(require("./PanoramaPhotosphereSelectSharp")); + +var _PanoramaPhotosphereSelectTwoTone = _interopRequireDefault(require("./PanoramaPhotosphereSelectTwoTone")); + +var _PanoramaPhotosphereSharp = _interopRequireDefault(require("./PanoramaPhotosphereSharp")); + +var _PanoramaPhotosphereTwoTone = _interopRequireDefault(require("./PanoramaPhotosphereTwoTone")); + +var _PanoramaRounded = _interopRequireDefault(require("./PanoramaRounded")); + +var _PanoramaSharp = _interopRequireDefault(require("./PanoramaSharp")); + +var _PanoramaTwoTone = _interopRequireDefault(require("./PanoramaTwoTone")); + +var _PanoramaVertical = _interopRequireDefault(require("./PanoramaVertical")); + +var _PanoramaVerticalOutlined = _interopRequireDefault(require("./PanoramaVerticalOutlined")); + +var _PanoramaVerticalRounded = _interopRequireDefault(require("./PanoramaVerticalRounded")); + +var _PanoramaVerticalSelect = _interopRequireDefault(require("./PanoramaVerticalSelect")); + +var _PanoramaVerticalSelectOutlined = _interopRequireDefault(require("./PanoramaVerticalSelectOutlined")); + +var _PanoramaVerticalSelectRounded = _interopRequireDefault(require("./PanoramaVerticalSelectRounded")); + +var _PanoramaVerticalSelectSharp = _interopRequireDefault(require("./PanoramaVerticalSelectSharp")); + +var _PanoramaVerticalSelectTwoTone = _interopRequireDefault(require("./PanoramaVerticalSelectTwoTone")); + +var _PanoramaVerticalSharp = _interopRequireDefault(require("./PanoramaVerticalSharp")); + +var _PanoramaVerticalTwoTone = _interopRequireDefault(require("./PanoramaVerticalTwoTone")); + +var _PanoramaWideAngle = _interopRequireDefault(require("./PanoramaWideAngle")); + +var _PanoramaWideAngleOutlined = _interopRequireDefault(require("./PanoramaWideAngleOutlined")); + +var _PanoramaWideAngleRounded = _interopRequireDefault(require("./PanoramaWideAngleRounded")); + +var _PanoramaWideAngleSelect = _interopRequireDefault(require("./PanoramaWideAngleSelect")); + +var _PanoramaWideAngleSelectOutlined = _interopRequireDefault(require("./PanoramaWideAngleSelectOutlined")); + +var _PanoramaWideAngleSelectRounded = _interopRequireDefault(require("./PanoramaWideAngleSelectRounded")); + +var _PanoramaWideAngleSelectSharp = _interopRequireDefault(require("./PanoramaWideAngleSelectSharp")); + +var _PanoramaWideAngleSelectTwoTone = _interopRequireDefault(require("./PanoramaWideAngleSelectTwoTone")); + +var _PanoramaWideAngleSharp = _interopRequireDefault(require("./PanoramaWideAngleSharp")); + +var _PanoramaWideAngleTwoTone = _interopRequireDefault(require("./PanoramaWideAngleTwoTone")); + +var _Paragliding = _interopRequireDefault(require("./Paragliding")); + +var _ParaglidingOutlined = _interopRequireDefault(require("./ParaglidingOutlined")); + +var _ParaglidingRounded = _interopRequireDefault(require("./ParaglidingRounded")); + +var _ParaglidingSharp = _interopRequireDefault(require("./ParaglidingSharp")); + +var _ParaglidingTwoTone = _interopRequireDefault(require("./ParaglidingTwoTone")); + +var _Park = _interopRequireDefault(require("./Park")); + +var _ParkOutlined = _interopRequireDefault(require("./ParkOutlined")); + +var _ParkRounded = _interopRequireDefault(require("./ParkRounded")); + +var _ParkSharp = _interopRequireDefault(require("./ParkSharp")); + +var _ParkTwoTone = _interopRequireDefault(require("./ParkTwoTone")); + +var _PartyMode = _interopRequireDefault(require("./PartyMode")); + +var _PartyModeOutlined = _interopRequireDefault(require("./PartyModeOutlined")); + +var _PartyModeRounded = _interopRequireDefault(require("./PartyModeRounded")); + +var _PartyModeSharp = _interopRequireDefault(require("./PartyModeSharp")); + +var _PartyModeTwoTone = _interopRequireDefault(require("./PartyModeTwoTone")); + +var _Password = _interopRequireDefault(require("./Password")); + +var _PasswordOutlined = _interopRequireDefault(require("./PasswordOutlined")); + +var _PasswordRounded = _interopRequireDefault(require("./PasswordRounded")); + +var _PasswordSharp = _interopRequireDefault(require("./PasswordSharp")); + +var _PasswordTwoTone = _interopRequireDefault(require("./PasswordTwoTone")); + +var _Pattern = _interopRequireDefault(require("./Pattern")); + +var _PatternOutlined = _interopRequireDefault(require("./PatternOutlined")); + +var _PatternRounded = _interopRequireDefault(require("./PatternRounded")); + +var _PatternSharp = _interopRequireDefault(require("./PatternSharp")); + +var _PatternTwoTone = _interopRequireDefault(require("./PatternTwoTone")); + +var _Pause = _interopRequireDefault(require("./Pause")); + +var _PauseCircle = _interopRequireDefault(require("./PauseCircle")); + +var _PauseCircleFilled = _interopRequireDefault(require("./PauseCircleFilled")); + +var _PauseCircleFilledOutlined = _interopRequireDefault(require("./PauseCircleFilledOutlined")); + +var _PauseCircleFilledRounded = _interopRequireDefault(require("./PauseCircleFilledRounded")); + +var _PauseCircleFilledSharp = _interopRequireDefault(require("./PauseCircleFilledSharp")); + +var _PauseCircleFilledTwoTone = _interopRequireDefault(require("./PauseCircleFilledTwoTone")); + +var _PauseCircleOutline = _interopRequireDefault(require("./PauseCircleOutline")); + +var _PauseCircleOutlineOutlined = _interopRequireDefault(require("./PauseCircleOutlineOutlined")); + +var _PauseCircleOutlineRounded = _interopRequireDefault(require("./PauseCircleOutlineRounded")); + +var _PauseCircleOutlineSharp = _interopRequireDefault(require("./PauseCircleOutlineSharp")); + +var _PauseCircleOutlineTwoTone = _interopRequireDefault(require("./PauseCircleOutlineTwoTone")); + +var _PauseCircleOutlined = _interopRequireDefault(require("./PauseCircleOutlined")); + +var _PauseCircleRounded = _interopRequireDefault(require("./PauseCircleRounded")); + +var _PauseCircleSharp = _interopRequireDefault(require("./PauseCircleSharp")); + +var _PauseCircleTwoTone = _interopRequireDefault(require("./PauseCircleTwoTone")); + +var _PauseOutlined = _interopRequireDefault(require("./PauseOutlined")); + +var _PausePresentation = _interopRequireDefault(require("./PausePresentation")); + +var _PausePresentationOutlined = _interopRequireDefault(require("./PausePresentationOutlined")); + +var _PausePresentationRounded = _interopRequireDefault(require("./PausePresentationRounded")); + +var _PausePresentationSharp = _interopRequireDefault(require("./PausePresentationSharp")); + +var _PausePresentationTwoTone = _interopRequireDefault(require("./PausePresentationTwoTone")); + +var _PauseRounded = _interopRequireDefault(require("./PauseRounded")); + +var _PauseSharp = _interopRequireDefault(require("./PauseSharp")); + +var _PauseTwoTone = _interopRequireDefault(require("./PauseTwoTone")); + +var _Payment = _interopRequireDefault(require("./Payment")); + +var _PaymentOutlined = _interopRequireDefault(require("./PaymentOutlined")); + +var _PaymentRounded = _interopRequireDefault(require("./PaymentRounded")); + +var _PaymentSharp = _interopRequireDefault(require("./PaymentSharp")); + +var _PaymentTwoTone = _interopRequireDefault(require("./PaymentTwoTone")); + +var _Payments = _interopRequireDefault(require("./Payments")); + +var _PaymentsOutlined = _interopRequireDefault(require("./PaymentsOutlined")); + +var _PaymentsRounded = _interopRequireDefault(require("./PaymentsRounded")); + +var _PaymentsSharp = _interopRequireDefault(require("./PaymentsSharp")); + +var _PaymentsTwoTone = _interopRequireDefault(require("./PaymentsTwoTone")); + +var _PedalBike = _interopRequireDefault(require("./PedalBike")); + +var _PedalBikeOutlined = _interopRequireDefault(require("./PedalBikeOutlined")); + +var _PedalBikeRounded = _interopRequireDefault(require("./PedalBikeRounded")); + +var _PedalBikeSharp = _interopRequireDefault(require("./PedalBikeSharp")); + +var _PedalBikeTwoTone = _interopRequireDefault(require("./PedalBikeTwoTone")); + +var _Pending = _interopRequireDefault(require("./Pending")); + +var _PendingActions = _interopRequireDefault(require("./PendingActions")); + +var _PendingActionsOutlined = _interopRequireDefault(require("./PendingActionsOutlined")); + +var _PendingActionsRounded = _interopRequireDefault(require("./PendingActionsRounded")); + +var _PendingActionsSharp = _interopRequireDefault(require("./PendingActionsSharp")); + +var _PendingActionsTwoTone = _interopRequireDefault(require("./PendingActionsTwoTone")); + +var _PendingOutlined = _interopRequireDefault(require("./PendingOutlined")); + +var _PendingRounded = _interopRequireDefault(require("./PendingRounded")); + +var _PendingSharp = _interopRequireDefault(require("./PendingSharp")); + +var _PendingTwoTone = _interopRequireDefault(require("./PendingTwoTone")); + +var _People = _interopRequireDefault(require("./People")); + +var _PeopleAlt = _interopRequireDefault(require("./PeopleAlt")); + +var _PeopleAltOutlined = _interopRequireDefault(require("./PeopleAltOutlined")); + +var _PeopleAltRounded = _interopRequireDefault(require("./PeopleAltRounded")); + +var _PeopleAltSharp = _interopRequireDefault(require("./PeopleAltSharp")); + +var _PeopleAltTwoTone = _interopRequireDefault(require("./PeopleAltTwoTone")); + +var _PeopleOutline = _interopRequireDefault(require("./PeopleOutline")); + +var _PeopleOutlineOutlined = _interopRequireDefault(require("./PeopleOutlineOutlined")); + +var _PeopleOutlineRounded = _interopRequireDefault(require("./PeopleOutlineRounded")); + +var _PeopleOutlineSharp = _interopRequireDefault(require("./PeopleOutlineSharp")); + +var _PeopleOutlineTwoTone = _interopRequireDefault(require("./PeopleOutlineTwoTone")); + +var _PeopleOutlined = _interopRequireDefault(require("./PeopleOutlined")); + +var _PeopleRounded = _interopRequireDefault(require("./PeopleRounded")); + +var _PeopleSharp = _interopRequireDefault(require("./PeopleSharp")); + +var _PeopleTwoTone = _interopRequireDefault(require("./PeopleTwoTone")); + +var _PermCameraMic = _interopRequireDefault(require("./PermCameraMic")); + +var _PermCameraMicOutlined = _interopRequireDefault(require("./PermCameraMicOutlined")); + +var _PermCameraMicRounded = _interopRequireDefault(require("./PermCameraMicRounded")); + +var _PermCameraMicSharp = _interopRequireDefault(require("./PermCameraMicSharp")); + +var _PermCameraMicTwoTone = _interopRequireDefault(require("./PermCameraMicTwoTone")); + +var _PermContactCalendar = _interopRequireDefault(require("./PermContactCalendar")); + +var _PermContactCalendarOutlined = _interopRequireDefault(require("./PermContactCalendarOutlined")); + +var _PermContactCalendarRounded = _interopRequireDefault(require("./PermContactCalendarRounded")); + +var _PermContactCalendarSharp = _interopRequireDefault(require("./PermContactCalendarSharp")); + +var _PermContactCalendarTwoTone = _interopRequireDefault(require("./PermContactCalendarTwoTone")); + +var _PermDataSetting = _interopRequireDefault(require("./PermDataSetting")); + +var _PermDataSettingOutlined = _interopRequireDefault(require("./PermDataSettingOutlined")); + +var _PermDataSettingRounded = _interopRequireDefault(require("./PermDataSettingRounded")); + +var _PermDataSettingSharp = _interopRequireDefault(require("./PermDataSettingSharp")); + +var _PermDataSettingTwoTone = _interopRequireDefault(require("./PermDataSettingTwoTone")); + +var _PermDeviceInformation = _interopRequireDefault(require("./PermDeviceInformation")); + +var _PermDeviceInformationOutlined = _interopRequireDefault(require("./PermDeviceInformationOutlined")); + +var _PermDeviceInformationRounded = _interopRequireDefault(require("./PermDeviceInformationRounded")); + +var _PermDeviceInformationSharp = _interopRequireDefault(require("./PermDeviceInformationSharp")); + +var _PermDeviceInformationTwoTone = _interopRequireDefault(require("./PermDeviceInformationTwoTone")); + +var _PermIdentity = _interopRequireDefault(require("./PermIdentity")); + +var _PermIdentityOutlined = _interopRequireDefault(require("./PermIdentityOutlined")); + +var _PermIdentityRounded = _interopRequireDefault(require("./PermIdentityRounded")); + +var _PermIdentitySharp = _interopRequireDefault(require("./PermIdentitySharp")); + +var _PermIdentityTwoTone = _interopRequireDefault(require("./PermIdentityTwoTone")); + +var _PermMedia = _interopRequireDefault(require("./PermMedia")); + +var _PermMediaOutlined = _interopRequireDefault(require("./PermMediaOutlined")); + +var _PermMediaRounded = _interopRequireDefault(require("./PermMediaRounded")); + +var _PermMediaSharp = _interopRequireDefault(require("./PermMediaSharp")); + +var _PermMediaTwoTone = _interopRequireDefault(require("./PermMediaTwoTone")); + +var _PermPhoneMsg = _interopRequireDefault(require("./PermPhoneMsg")); + +var _PermPhoneMsgOutlined = _interopRequireDefault(require("./PermPhoneMsgOutlined")); + +var _PermPhoneMsgRounded = _interopRequireDefault(require("./PermPhoneMsgRounded")); + +var _PermPhoneMsgSharp = _interopRequireDefault(require("./PermPhoneMsgSharp")); + +var _PermPhoneMsgTwoTone = _interopRequireDefault(require("./PermPhoneMsgTwoTone")); + +var _PermScanWifi = _interopRequireDefault(require("./PermScanWifi")); + +var _PermScanWifiOutlined = _interopRequireDefault(require("./PermScanWifiOutlined")); + +var _PermScanWifiRounded = _interopRequireDefault(require("./PermScanWifiRounded")); + +var _PermScanWifiSharp = _interopRequireDefault(require("./PermScanWifiSharp")); + +var _PermScanWifiTwoTone = _interopRequireDefault(require("./PermScanWifiTwoTone")); + +var _Person = _interopRequireDefault(require("./Person")); + +var _PersonAdd = _interopRequireDefault(require("./PersonAdd")); + +var _PersonAddAlt = _interopRequireDefault(require("./PersonAddAlt")); + +var _PersonAddAlt2 = _interopRequireDefault(require("./PersonAddAlt1")); + +var _PersonAddAlt1Outlined = _interopRequireDefault(require("./PersonAddAlt1Outlined")); + +var _PersonAddAlt1Rounded = _interopRequireDefault(require("./PersonAddAlt1Rounded")); + +var _PersonAddAlt1Sharp = _interopRequireDefault(require("./PersonAddAlt1Sharp")); + +var _PersonAddAlt1TwoTone = _interopRequireDefault(require("./PersonAddAlt1TwoTone")); + +var _PersonAddAltOutlined = _interopRequireDefault(require("./PersonAddAltOutlined")); + +var _PersonAddAltRounded = _interopRequireDefault(require("./PersonAddAltRounded")); + +var _PersonAddAltSharp = _interopRequireDefault(require("./PersonAddAltSharp")); + +var _PersonAddAltTwoTone = _interopRequireDefault(require("./PersonAddAltTwoTone")); + +var _PersonAddDisabled = _interopRequireDefault(require("./PersonAddDisabled")); + +var _PersonAddDisabledOutlined = _interopRequireDefault(require("./PersonAddDisabledOutlined")); + +var _PersonAddDisabledRounded = _interopRequireDefault(require("./PersonAddDisabledRounded")); + +var _PersonAddDisabledSharp = _interopRequireDefault(require("./PersonAddDisabledSharp")); + +var _PersonAddDisabledTwoTone = _interopRequireDefault(require("./PersonAddDisabledTwoTone")); + +var _PersonAddOutlined = _interopRequireDefault(require("./PersonAddOutlined")); + +var _PersonAddRounded = _interopRequireDefault(require("./PersonAddRounded")); + +var _PersonAddSharp = _interopRequireDefault(require("./PersonAddSharp")); + +var _PersonAddTwoTone = _interopRequireDefault(require("./PersonAddTwoTone")); + +var _PersonOff = _interopRequireDefault(require("./PersonOff")); + +var _PersonOffOutlined = _interopRequireDefault(require("./PersonOffOutlined")); + +var _PersonOffRounded = _interopRequireDefault(require("./PersonOffRounded")); + +var _PersonOffSharp = _interopRequireDefault(require("./PersonOffSharp")); + +var _PersonOffTwoTone = _interopRequireDefault(require("./PersonOffTwoTone")); + +var _PersonOutline = _interopRequireDefault(require("./PersonOutline")); + +var _PersonOutlineOutlined = _interopRequireDefault(require("./PersonOutlineOutlined")); + +var _PersonOutlineRounded = _interopRequireDefault(require("./PersonOutlineRounded")); + +var _PersonOutlineSharp = _interopRequireDefault(require("./PersonOutlineSharp")); + +var _PersonOutlineTwoTone = _interopRequireDefault(require("./PersonOutlineTwoTone")); + +var _PersonOutlined = _interopRequireDefault(require("./PersonOutlined")); + +var _PersonPin = _interopRequireDefault(require("./PersonPin")); + +var _PersonPinCircle = _interopRequireDefault(require("./PersonPinCircle")); + +var _PersonPinCircleOutlined = _interopRequireDefault(require("./PersonPinCircleOutlined")); + +var _PersonPinCircleRounded = _interopRequireDefault(require("./PersonPinCircleRounded")); + +var _PersonPinCircleSharp = _interopRequireDefault(require("./PersonPinCircleSharp")); + +var _PersonPinCircleTwoTone = _interopRequireDefault(require("./PersonPinCircleTwoTone")); + +var _PersonPinOutlined = _interopRequireDefault(require("./PersonPinOutlined")); + +var _PersonPinRounded = _interopRequireDefault(require("./PersonPinRounded")); + +var _PersonPinSharp = _interopRequireDefault(require("./PersonPinSharp")); + +var _PersonPinTwoTone = _interopRequireDefault(require("./PersonPinTwoTone")); + +var _PersonRemove = _interopRequireDefault(require("./PersonRemove")); + +var _PersonRemoveAlt = _interopRequireDefault(require("./PersonRemoveAlt1")); + +var _PersonRemoveAlt1Outlined = _interopRequireDefault(require("./PersonRemoveAlt1Outlined")); + +var _PersonRemoveAlt1Rounded = _interopRequireDefault(require("./PersonRemoveAlt1Rounded")); + +var _PersonRemoveAlt1Sharp = _interopRequireDefault(require("./PersonRemoveAlt1Sharp")); + +var _PersonRemoveAlt1TwoTone = _interopRequireDefault(require("./PersonRemoveAlt1TwoTone")); + +var _PersonRemoveOutlined = _interopRequireDefault(require("./PersonRemoveOutlined")); + +var _PersonRemoveRounded = _interopRequireDefault(require("./PersonRemoveRounded")); + +var _PersonRemoveSharp = _interopRequireDefault(require("./PersonRemoveSharp")); + +var _PersonRemoveTwoTone = _interopRequireDefault(require("./PersonRemoveTwoTone")); + +var _PersonRounded = _interopRequireDefault(require("./PersonRounded")); + +var _PersonSearch = _interopRequireDefault(require("./PersonSearch")); + +var _PersonSearchOutlined = _interopRequireDefault(require("./PersonSearchOutlined")); + +var _PersonSearchRounded = _interopRequireDefault(require("./PersonSearchRounded")); + +var _PersonSearchSharp = _interopRequireDefault(require("./PersonSearchSharp")); + +var _PersonSearchTwoTone = _interopRequireDefault(require("./PersonSearchTwoTone")); + +var _PersonSharp = _interopRequireDefault(require("./PersonSharp")); + +var _PersonTwoTone = _interopRequireDefault(require("./PersonTwoTone")); + +var _PersonalVideo = _interopRequireDefault(require("./PersonalVideo")); + +var _PersonalVideoOutlined = _interopRequireDefault(require("./PersonalVideoOutlined")); + +var _PersonalVideoRounded = _interopRequireDefault(require("./PersonalVideoRounded")); + +var _PersonalVideoSharp = _interopRequireDefault(require("./PersonalVideoSharp")); + +var _PersonalVideoTwoTone = _interopRequireDefault(require("./PersonalVideoTwoTone")); + +var _PestControl = _interopRequireDefault(require("./PestControl")); + +var _PestControlOutlined = _interopRequireDefault(require("./PestControlOutlined")); + +var _PestControlRodent = _interopRequireDefault(require("./PestControlRodent")); + +var _PestControlRodentOutlined = _interopRequireDefault(require("./PestControlRodentOutlined")); + +var _PestControlRodentRounded = _interopRequireDefault(require("./PestControlRodentRounded")); + +var _PestControlRodentSharp = _interopRequireDefault(require("./PestControlRodentSharp")); + +var _PestControlRodentTwoTone = _interopRequireDefault(require("./PestControlRodentTwoTone")); + +var _PestControlRounded = _interopRequireDefault(require("./PestControlRounded")); + +var _PestControlSharp = _interopRequireDefault(require("./PestControlSharp")); + +var _PestControlTwoTone = _interopRequireDefault(require("./PestControlTwoTone")); + +var _Pets = _interopRequireDefault(require("./Pets")); + +var _PetsOutlined = _interopRequireDefault(require("./PetsOutlined")); + +var _PetsRounded = _interopRequireDefault(require("./PetsRounded")); + +var _PetsSharp = _interopRequireDefault(require("./PetsSharp")); + +var _PetsTwoTone = _interopRequireDefault(require("./PetsTwoTone")); + +var _Phone = _interopRequireDefault(require("./Phone")); + +var _PhoneAndroid = _interopRequireDefault(require("./PhoneAndroid")); + +var _PhoneAndroidOutlined = _interopRequireDefault(require("./PhoneAndroidOutlined")); + +var _PhoneAndroidRounded = _interopRequireDefault(require("./PhoneAndroidRounded")); + +var _PhoneAndroidSharp = _interopRequireDefault(require("./PhoneAndroidSharp")); + +var _PhoneAndroidTwoTone = _interopRequireDefault(require("./PhoneAndroidTwoTone")); + +var _PhoneBluetoothSpeaker = _interopRequireDefault(require("./PhoneBluetoothSpeaker")); + +var _PhoneBluetoothSpeakerOutlined = _interopRequireDefault(require("./PhoneBluetoothSpeakerOutlined")); + +var _PhoneBluetoothSpeakerRounded = _interopRequireDefault(require("./PhoneBluetoothSpeakerRounded")); + +var _PhoneBluetoothSpeakerSharp = _interopRequireDefault(require("./PhoneBluetoothSpeakerSharp")); + +var _PhoneBluetoothSpeakerTwoTone = _interopRequireDefault(require("./PhoneBluetoothSpeakerTwoTone")); + +var _PhoneCallback = _interopRequireDefault(require("./PhoneCallback")); + +var _PhoneCallbackOutlined = _interopRequireDefault(require("./PhoneCallbackOutlined")); + +var _PhoneCallbackRounded = _interopRequireDefault(require("./PhoneCallbackRounded")); + +var _PhoneCallbackSharp = _interopRequireDefault(require("./PhoneCallbackSharp")); + +var _PhoneCallbackTwoTone = _interopRequireDefault(require("./PhoneCallbackTwoTone")); + +var _PhoneDisabled = _interopRequireDefault(require("./PhoneDisabled")); + +var _PhoneDisabledOutlined = _interopRequireDefault(require("./PhoneDisabledOutlined")); + +var _PhoneDisabledRounded = _interopRequireDefault(require("./PhoneDisabledRounded")); + +var _PhoneDisabledSharp = _interopRequireDefault(require("./PhoneDisabledSharp")); + +var _PhoneDisabledTwoTone = _interopRequireDefault(require("./PhoneDisabledTwoTone")); + +var _PhoneEnabled = _interopRequireDefault(require("./PhoneEnabled")); + +var _PhoneEnabledOutlined = _interopRequireDefault(require("./PhoneEnabledOutlined")); + +var _PhoneEnabledRounded = _interopRequireDefault(require("./PhoneEnabledRounded")); + +var _PhoneEnabledSharp = _interopRequireDefault(require("./PhoneEnabledSharp")); + +var _PhoneEnabledTwoTone = _interopRequireDefault(require("./PhoneEnabledTwoTone")); + +var _PhoneForwarded = _interopRequireDefault(require("./PhoneForwarded")); + +var _PhoneForwardedOutlined = _interopRequireDefault(require("./PhoneForwardedOutlined")); + +var _PhoneForwardedRounded = _interopRequireDefault(require("./PhoneForwardedRounded")); + +var _PhoneForwardedSharp = _interopRequireDefault(require("./PhoneForwardedSharp")); + +var _PhoneForwardedTwoTone = _interopRequireDefault(require("./PhoneForwardedTwoTone")); + +var _PhoneInTalk = _interopRequireDefault(require("./PhoneInTalk")); + +var _PhoneInTalkOutlined = _interopRequireDefault(require("./PhoneInTalkOutlined")); + +var _PhoneInTalkRounded = _interopRequireDefault(require("./PhoneInTalkRounded")); + +var _PhoneInTalkSharp = _interopRequireDefault(require("./PhoneInTalkSharp")); + +var _PhoneInTalkTwoTone = _interopRequireDefault(require("./PhoneInTalkTwoTone")); + +var _PhoneIphone = _interopRequireDefault(require("./PhoneIphone")); + +var _PhoneIphoneOutlined = _interopRequireDefault(require("./PhoneIphoneOutlined")); + +var _PhoneIphoneRounded = _interopRequireDefault(require("./PhoneIphoneRounded")); + +var _PhoneIphoneSharp = _interopRequireDefault(require("./PhoneIphoneSharp")); + +var _PhoneIphoneTwoTone = _interopRequireDefault(require("./PhoneIphoneTwoTone")); + +var _PhoneLocked = _interopRequireDefault(require("./PhoneLocked")); + +var _PhoneLockedOutlined = _interopRequireDefault(require("./PhoneLockedOutlined")); + +var _PhoneLockedRounded = _interopRequireDefault(require("./PhoneLockedRounded")); + +var _PhoneLockedSharp = _interopRequireDefault(require("./PhoneLockedSharp")); + +var _PhoneLockedTwoTone = _interopRequireDefault(require("./PhoneLockedTwoTone")); + +var _PhoneMissed = _interopRequireDefault(require("./PhoneMissed")); + +var _PhoneMissedOutlined = _interopRequireDefault(require("./PhoneMissedOutlined")); + +var _PhoneMissedRounded = _interopRequireDefault(require("./PhoneMissedRounded")); + +var _PhoneMissedSharp = _interopRequireDefault(require("./PhoneMissedSharp")); + +var _PhoneMissedTwoTone = _interopRequireDefault(require("./PhoneMissedTwoTone")); + +var _PhoneOutlined = _interopRequireDefault(require("./PhoneOutlined")); + +var _PhonePaused = _interopRequireDefault(require("./PhonePaused")); + +var _PhonePausedOutlined = _interopRequireDefault(require("./PhonePausedOutlined")); + +var _PhonePausedRounded = _interopRequireDefault(require("./PhonePausedRounded")); + +var _PhonePausedSharp = _interopRequireDefault(require("./PhonePausedSharp")); + +var _PhonePausedTwoTone = _interopRequireDefault(require("./PhonePausedTwoTone")); + +var _PhoneRounded = _interopRequireDefault(require("./PhoneRounded")); + +var _PhoneSharp = _interopRequireDefault(require("./PhoneSharp")); + +var _PhoneTwoTone = _interopRequireDefault(require("./PhoneTwoTone")); + +var _Phonelink = _interopRequireDefault(require("./Phonelink")); + +var _PhonelinkErase = _interopRequireDefault(require("./PhonelinkErase")); + +var _PhonelinkEraseOutlined = _interopRequireDefault(require("./PhonelinkEraseOutlined")); + +var _PhonelinkEraseRounded = _interopRequireDefault(require("./PhonelinkEraseRounded")); + +var _PhonelinkEraseSharp = _interopRequireDefault(require("./PhonelinkEraseSharp")); + +var _PhonelinkEraseTwoTone = _interopRequireDefault(require("./PhonelinkEraseTwoTone")); + +var _PhonelinkLock = _interopRequireDefault(require("./PhonelinkLock")); + +var _PhonelinkLockOutlined = _interopRequireDefault(require("./PhonelinkLockOutlined")); + +var _PhonelinkLockRounded = _interopRequireDefault(require("./PhonelinkLockRounded")); + +var _PhonelinkLockSharp = _interopRequireDefault(require("./PhonelinkLockSharp")); + +var _PhonelinkLockTwoTone = _interopRequireDefault(require("./PhonelinkLockTwoTone")); + +var _PhonelinkOff = _interopRequireDefault(require("./PhonelinkOff")); + +var _PhonelinkOffOutlined = _interopRequireDefault(require("./PhonelinkOffOutlined")); + +var _PhonelinkOffRounded = _interopRequireDefault(require("./PhonelinkOffRounded")); + +var _PhonelinkOffSharp = _interopRequireDefault(require("./PhonelinkOffSharp")); + +var _PhonelinkOffTwoTone = _interopRequireDefault(require("./PhonelinkOffTwoTone")); + +var _PhonelinkOutlined = _interopRequireDefault(require("./PhonelinkOutlined")); + +var _PhonelinkRing = _interopRequireDefault(require("./PhonelinkRing")); + +var _PhonelinkRingOutlined = _interopRequireDefault(require("./PhonelinkRingOutlined")); + +var _PhonelinkRingRounded = _interopRequireDefault(require("./PhonelinkRingRounded")); + +var _PhonelinkRingSharp = _interopRequireDefault(require("./PhonelinkRingSharp")); + +var _PhonelinkRingTwoTone = _interopRequireDefault(require("./PhonelinkRingTwoTone")); + +var _PhonelinkRounded = _interopRequireDefault(require("./PhonelinkRounded")); + +var _PhonelinkSetup = _interopRequireDefault(require("./PhonelinkSetup")); + +var _PhonelinkSetupOutlined = _interopRequireDefault(require("./PhonelinkSetupOutlined")); + +var _PhonelinkSetupRounded = _interopRequireDefault(require("./PhonelinkSetupRounded")); + +var _PhonelinkSetupSharp = _interopRequireDefault(require("./PhonelinkSetupSharp")); + +var _PhonelinkSetupTwoTone = _interopRequireDefault(require("./PhonelinkSetupTwoTone")); + +var _PhonelinkSharp = _interopRequireDefault(require("./PhonelinkSharp")); + +var _PhonelinkTwoTone = _interopRequireDefault(require("./PhonelinkTwoTone")); + +var _Photo = _interopRequireDefault(require("./Photo")); + +var _PhotoAlbum = _interopRequireDefault(require("./PhotoAlbum")); + +var _PhotoAlbumOutlined = _interopRequireDefault(require("./PhotoAlbumOutlined")); + +var _PhotoAlbumRounded = _interopRequireDefault(require("./PhotoAlbumRounded")); + +var _PhotoAlbumSharp = _interopRequireDefault(require("./PhotoAlbumSharp")); + +var _PhotoAlbumTwoTone = _interopRequireDefault(require("./PhotoAlbumTwoTone")); + +var _PhotoCamera = _interopRequireDefault(require("./PhotoCamera")); + +var _PhotoCameraBack = _interopRequireDefault(require("./PhotoCameraBack")); + +var _PhotoCameraBackOutlined = _interopRequireDefault(require("./PhotoCameraBackOutlined")); + +var _PhotoCameraBackRounded = _interopRequireDefault(require("./PhotoCameraBackRounded")); + +var _PhotoCameraBackSharp = _interopRequireDefault(require("./PhotoCameraBackSharp")); + +var _PhotoCameraBackTwoTone = _interopRequireDefault(require("./PhotoCameraBackTwoTone")); + +var _PhotoCameraFront = _interopRequireDefault(require("./PhotoCameraFront")); + +var _PhotoCameraFrontOutlined = _interopRequireDefault(require("./PhotoCameraFrontOutlined")); + +var _PhotoCameraFrontRounded = _interopRequireDefault(require("./PhotoCameraFrontRounded")); + +var _PhotoCameraFrontSharp = _interopRequireDefault(require("./PhotoCameraFrontSharp")); + +var _PhotoCameraFrontTwoTone = _interopRequireDefault(require("./PhotoCameraFrontTwoTone")); + +var _PhotoCameraOutlined = _interopRequireDefault(require("./PhotoCameraOutlined")); + +var _PhotoCameraRounded = _interopRequireDefault(require("./PhotoCameraRounded")); + +var _PhotoCameraSharp = _interopRequireDefault(require("./PhotoCameraSharp")); + +var _PhotoCameraTwoTone = _interopRequireDefault(require("./PhotoCameraTwoTone")); + +var _PhotoFilter = _interopRequireDefault(require("./PhotoFilter")); + +var _PhotoFilterOutlined = _interopRequireDefault(require("./PhotoFilterOutlined")); + +var _PhotoFilterRounded = _interopRequireDefault(require("./PhotoFilterRounded")); + +var _PhotoFilterSharp = _interopRequireDefault(require("./PhotoFilterSharp")); + +var _PhotoFilterTwoTone = _interopRequireDefault(require("./PhotoFilterTwoTone")); + +var _PhotoLibrary = _interopRequireDefault(require("./PhotoLibrary")); + +var _PhotoLibraryOutlined = _interopRequireDefault(require("./PhotoLibraryOutlined")); + +var _PhotoLibraryRounded = _interopRequireDefault(require("./PhotoLibraryRounded")); + +var _PhotoLibrarySharp = _interopRequireDefault(require("./PhotoLibrarySharp")); + +var _PhotoLibraryTwoTone = _interopRequireDefault(require("./PhotoLibraryTwoTone")); + +var _PhotoOutlined = _interopRequireDefault(require("./PhotoOutlined")); + +var _PhotoRounded = _interopRequireDefault(require("./PhotoRounded")); + +var _PhotoSharp = _interopRequireDefault(require("./PhotoSharp")); + +var _PhotoSizeSelectActual = _interopRequireDefault(require("./PhotoSizeSelectActual")); + +var _PhotoSizeSelectActualOutlined = _interopRequireDefault(require("./PhotoSizeSelectActualOutlined")); + +var _PhotoSizeSelectActualRounded = _interopRequireDefault(require("./PhotoSizeSelectActualRounded")); + +var _PhotoSizeSelectActualSharp = _interopRequireDefault(require("./PhotoSizeSelectActualSharp")); + +var _PhotoSizeSelectActualTwoTone = _interopRequireDefault(require("./PhotoSizeSelectActualTwoTone")); + +var _PhotoSizeSelectLarge = _interopRequireDefault(require("./PhotoSizeSelectLarge")); + +var _PhotoSizeSelectLargeOutlined = _interopRequireDefault(require("./PhotoSizeSelectLargeOutlined")); + +var _PhotoSizeSelectLargeRounded = _interopRequireDefault(require("./PhotoSizeSelectLargeRounded")); + +var _PhotoSizeSelectLargeSharp = _interopRequireDefault(require("./PhotoSizeSelectLargeSharp")); + +var _PhotoSizeSelectLargeTwoTone = _interopRequireDefault(require("./PhotoSizeSelectLargeTwoTone")); + +var _PhotoSizeSelectSmall = _interopRequireDefault(require("./PhotoSizeSelectSmall")); + +var _PhotoSizeSelectSmallOutlined = _interopRequireDefault(require("./PhotoSizeSelectSmallOutlined")); + +var _PhotoSizeSelectSmallRounded = _interopRequireDefault(require("./PhotoSizeSelectSmallRounded")); + +var _PhotoSizeSelectSmallSharp = _interopRequireDefault(require("./PhotoSizeSelectSmallSharp")); + +var _PhotoSizeSelectSmallTwoTone = _interopRequireDefault(require("./PhotoSizeSelectSmallTwoTone")); + +var _PhotoTwoTone = _interopRequireDefault(require("./PhotoTwoTone")); + +var _Piano = _interopRequireDefault(require("./Piano")); + +var _PianoOff = _interopRequireDefault(require("./PianoOff")); + +var _PianoOffOutlined = _interopRequireDefault(require("./PianoOffOutlined")); + +var _PianoOffRounded = _interopRequireDefault(require("./PianoOffRounded")); + +var _PianoOffSharp = _interopRequireDefault(require("./PianoOffSharp")); + +var _PianoOffTwoTone = _interopRequireDefault(require("./PianoOffTwoTone")); + +var _PianoOutlined = _interopRequireDefault(require("./PianoOutlined")); + +var _PianoRounded = _interopRequireDefault(require("./PianoRounded")); + +var _PianoSharp = _interopRequireDefault(require("./PianoSharp")); + +var _PianoTwoTone = _interopRequireDefault(require("./PianoTwoTone")); + +var _PictureAsPdf = _interopRequireDefault(require("./PictureAsPdf")); + +var _PictureAsPdfOutlined = _interopRequireDefault(require("./PictureAsPdfOutlined")); + +var _PictureAsPdfRounded = _interopRequireDefault(require("./PictureAsPdfRounded")); + +var _PictureAsPdfSharp = _interopRequireDefault(require("./PictureAsPdfSharp")); + +var _PictureAsPdfTwoTone = _interopRequireDefault(require("./PictureAsPdfTwoTone")); + +var _PictureInPicture = _interopRequireDefault(require("./PictureInPicture")); + +var _PictureInPictureAlt = _interopRequireDefault(require("./PictureInPictureAlt")); + +var _PictureInPictureAltOutlined = _interopRequireDefault(require("./PictureInPictureAltOutlined")); + +var _PictureInPictureAltRounded = _interopRequireDefault(require("./PictureInPictureAltRounded")); + +var _PictureInPictureAltSharp = _interopRequireDefault(require("./PictureInPictureAltSharp")); + +var _PictureInPictureAltTwoTone = _interopRequireDefault(require("./PictureInPictureAltTwoTone")); + +var _PictureInPictureOutlined = _interopRequireDefault(require("./PictureInPictureOutlined")); + +var _PictureInPictureRounded = _interopRequireDefault(require("./PictureInPictureRounded")); + +var _PictureInPictureSharp = _interopRequireDefault(require("./PictureInPictureSharp")); + +var _PictureInPictureTwoTone = _interopRequireDefault(require("./PictureInPictureTwoTone")); + +var _PieChart = _interopRequireDefault(require("./PieChart")); + +var _PieChartOutline = _interopRequireDefault(require("./PieChartOutline")); + +var _PieChartOutlineOutlined = _interopRequireDefault(require("./PieChartOutlineOutlined")); + +var _PieChartOutlineRounded = _interopRequireDefault(require("./PieChartOutlineRounded")); + +var _PieChartOutlineSharp = _interopRequireDefault(require("./PieChartOutlineSharp")); + +var _PieChartOutlineTwoTone = _interopRequireDefault(require("./PieChartOutlineTwoTone")); + +var _PieChartOutlined = _interopRequireDefault(require("./PieChartOutlined")); + +var _PieChartRounded = _interopRequireDefault(require("./PieChartRounded")); + +var _PieChartSharp = _interopRequireDefault(require("./PieChartSharp")); + +var _PieChartTwoTone = _interopRequireDefault(require("./PieChartTwoTone")); + +var _Pin = _interopRequireDefault(require("./Pin")); + +var _PinDrop = _interopRequireDefault(require("./PinDrop")); + +var _PinDropOutlined = _interopRequireDefault(require("./PinDropOutlined")); + +var _PinDropRounded = _interopRequireDefault(require("./PinDropRounded")); + +var _PinDropSharp = _interopRequireDefault(require("./PinDropSharp")); + +var _PinDropTwoTone = _interopRequireDefault(require("./PinDropTwoTone")); + +var _PinOutlined = _interopRequireDefault(require("./PinOutlined")); + +var _PinRounded = _interopRequireDefault(require("./PinRounded")); + +var _PinSharp = _interopRequireDefault(require("./PinSharp")); + +var _PinTwoTone = _interopRequireDefault(require("./PinTwoTone")); + +var _Pinterest = _interopRequireDefault(require("./Pinterest")); + +var _PivotTableChart = _interopRequireDefault(require("./PivotTableChart")); + +var _PivotTableChartOutlined = _interopRequireDefault(require("./PivotTableChartOutlined")); + +var _PivotTableChartRounded = _interopRequireDefault(require("./PivotTableChartRounded")); + +var _PivotTableChartSharp = _interopRequireDefault(require("./PivotTableChartSharp")); + +var _PivotTableChartTwoTone = _interopRequireDefault(require("./PivotTableChartTwoTone")); + +var _Place = _interopRequireDefault(require("./Place")); + +var _PlaceOutlined = _interopRequireDefault(require("./PlaceOutlined")); + +var _PlaceRounded = _interopRequireDefault(require("./PlaceRounded")); + +var _PlaceSharp = _interopRequireDefault(require("./PlaceSharp")); + +var _PlaceTwoTone = _interopRequireDefault(require("./PlaceTwoTone")); + +var _Plagiarism = _interopRequireDefault(require("./Plagiarism")); + +var _PlagiarismOutlined = _interopRequireDefault(require("./PlagiarismOutlined")); + +var _PlagiarismRounded = _interopRequireDefault(require("./PlagiarismRounded")); + +var _PlagiarismSharp = _interopRequireDefault(require("./PlagiarismSharp")); + +var _PlagiarismTwoTone = _interopRequireDefault(require("./PlagiarismTwoTone")); + +var _PlayArrow = _interopRequireDefault(require("./PlayArrow")); + +var _PlayArrowOutlined = _interopRequireDefault(require("./PlayArrowOutlined")); + +var _PlayArrowRounded = _interopRequireDefault(require("./PlayArrowRounded")); + +var _PlayArrowSharp = _interopRequireDefault(require("./PlayArrowSharp")); + +var _PlayArrowTwoTone = _interopRequireDefault(require("./PlayArrowTwoTone")); + +var _PlayCircle = _interopRequireDefault(require("./PlayCircle")); + +var _PlayCircleFilled = _interopRequireDefault(require("./PlayCircleFilled")); + +var _PlayCircleFilledOutlined = _interopRequireDefault(require("./PlayCircleFilledOutlined")); + +var _PlayCircleFilledRounded = _interopRequireDefault(require("./PlayCircleFilledRounded")); + +var _PlayCircleFilledSharp = _interopRequireDefault(require("./PlayCircleFilledSharp")); + +var _PlayCircleFilledTwoTone = _interopRequireDefault(require("./PlayCircleFilledTwoTone")); + +var _PlayCircleFilledWhite = _interopRequireDefault(require("./PlayCircleFilledWhite")); + +var _PlayCircleFilledWhiteOutlined = _interopRequireDefault(require("./PlayCircleFilledWhiteOutlined")); + +var _PlayCircleFilledWhiteRounded = _interopRequireDefault(require("./PlayCircleFilledWhiteRounded")); + +var _PlayCircleFilledWhiteSharp = _interopRequireDefault(require("./PlayCircleFilledWhiteSharp")); + +var _PlayCircleFilledWhiteTwoTone = _interopRequireDefault(require("./PlayCircleFilledWhiteTwoTone")); + +var _PlayCircleOutline = _interopRequireDefault(require("./PlayCircleOutline")); + +var _PlayCircleOutlineOutlined = _interopRequireDefault(require("./PlayCircleOutlineOutlined")); + +var _PlayCircleOutlineRounded = _interopRequireDefault(require("./PlayCircleOutlineRounded")); + +var _PlayCircleOutlineSharp = _interopRequireDefault(require("./PlayCircleOutlineSharp")); + +var _PlayCircleOutlineTwoTone = _interopRequireDefault(require("./PlayCircleOutlineTwoTone")); + +var _PlayCircleOutlined = _interopRequireDefault(require("./PlayCircleOutlined")); + +var _PlayCircleRounded = _interopRequireDefault(require("./PlayCircleRounded")); + +var _PlayCircleSharp = _interopRequireDefault(require("./PlayCircleSharp")); + +var _PlayCircleTwoTone = _interopRequireDefault(require("./PlayCircleTwoTone")); + +var _PlayDisabled = _interopRequireDefault(require("./PlayDisabled")); + +var _PlayDisabledOutlined = _interopRequireDefault(require("./PlayDisabledOutlined")); + +var _PlayDisabledRounded = _interopRequireDefault(require("./PlayDisabledRounded")); + +var _PlayDisabledSharp = _interopRequireDefault(require("./PlayDisabledSharp")); + +var _PlayDisabledTwoTone = _interopRequireDefault(require("./PlayDisabledTwoTone")); + +var _PlayForWork = _interopRequireDefault(require("./PlayForWork")); + +var _PlayForWorkOutlined = _interopRequireDefault(require("./PlayForWorkOutlined")); + +var _PlayForWorkRounded = _interopRequireDefault(require("./PlayForWorkRounded")); + +var _PlayForWorkSharp = _interopRequireDefault(require("./PlayForWorkSharp")); + +var _PlayForWorkTwoTone = _interopRequireDefault(require("./PlayForWorkTwoTone")); + +var _PlayLesson = _interopRequireDefault(require("./PlayLesson")); + +var _PlayLessonOutlined = _interopRequireDefault(require("./PlayLessonOutlined")); + +var _PlayLessonRounded = _interopRequireDefault(require("./PlayLessonRounded")); + +var _PlayLessonSharp = _interopRequireDefault(require("./PlayLessonSharp")); + +var _PlayLessonTwoTone = _interopRequireDefault(require("./PlayLessonTwoTone")); + +var _PlaylistAdd = _interopRequireDefault(require("./PlaylistAdd")); + +var _PlaylistAddCheck = _interopRequireDefault(require("./PlaylistAddCheck")); + +var _PlaylistAddCheckOutlined = _interopRequireDefault(require("./PlaylistAddCheckOutlined")); + +var _PlaylistAddCheckRounded = _interopRequireDefault(require("./PlaylistAddCheckRounded")); + +var _PlaylistAddCheckSharp = _interopRequireDefault(require("./PlaylistAddCheckSharp")); + +var _PlaylistAddCheckTwoTone = _interopRequireDefault(require("./PlaylistAddCheckTwoTone")); + +var _PlaylistAddOutlined = _interopRequireDefault(require("./PlaylistAddOutlined")); + +var _PlaylistAddRounded = _interopRequireDefault(require("./PlaylistAddRounded")); + +var _PlaylistAddSharp = _interopRequireDefault(require("./PlaylistAddSharp")); + +var _PlaylistAddTwoTone = _interopRequireDefault(require("./PlaylistAddTwoTone")); + +var _PlaylistPlay = _interopRequireDefault(require("./PlaylistPlay")); + +var _PlaylistPlayOutlined = _interopRequireDefault(require("./PlaylistPlayOutlined")); + +var _PlaylistPlayRounded = _interopRequireDefault(require("./PlaylistPlayRounded")); + +var _PlaylistPlaySharp = _interopRequireDefault(require("./PlaylistPlaySharp")); + +var _PlaylistPlayTwoTone = _interopRequireDefault(require("./PlaylistPlayTwoTone")); + +var _Plumbing = _interopRequireDefault(require("./Plumbing")); + +var _PlumbingOutlined = _interopRequireDefault(require("./PlumbingOutlined")); + +var _PlumbingRounded = _interopRequireDefault(require("./PlumbingRounded")); + +var _PlumbingSharp = _interopRequireDefault(require("./PlumbingSharp")); + +var _PlumbingTwoTone = _interopRequireDefault(require("./PlumbingTwoTone")); + +var _PlusOne = _interopRequireDefault(require("./PlusOne")); + +var _PlusOneOutlined = _interopRequireDefault(require("./PlusOneOutlined")); + +var _PlusOneRounded = _interopRequireDefault(require("./PlusOneRounded")); + +var _PlusOneSharp = _interopRequireDefault(require("./PlusOneSharp")); + +var _PlusOneTwoTone = _interopRequireDefault(require("./PlusOneTwoTone")); + +var _Podcasts = _interopRequireDefault(require("./Podcasts")); + +var _PodcastsOutlined = _interopRequireDefault(require("./PodcastsOutlined")); + +var _PodcastsRounded = _interopRequireDefault(require("./PodcastsRounded")); + +var _PodcastsSharp = _interopRequireDefault(require("./PodcastsSharp")); + +var _PodcastsTwoTone = _interopRequireDefault(require("./PodcastsTwoTone")); + +var _PointOfSale = _interopRequireDefault(require("./PointOfSale")); + +var _PointOfSaleOutlined = _interopRequireDefault(require("./PointOfSaleOutlined")); + +var _PointOfSaleRounded = _interopRequireDefault(require("./PointOfSaleRounded")); + +var _PointOfSaleSharp = _interopRequireDefault(require("./PointOfSaleSharp")); + +var _PointOfSaleTwoTone = _interopRequireDefault(require("./PointOfSaleTwoTone")); + +var _Policy = _interopRequireDefault(require("./Policy")); + +var _PolicyOutlined = _interopRequireDefault(require("./PolicyOutlined")); + +var _PolicyRounded = _interopRequireDefault(require("./PolicyRounded")); + +var _PolicySharp = _interopRequireDefault(require("./PolicySharp")); + +var _PolicyTwoTone = _interopRequireDefault(require("./PolicyTwoTone")); + +var _Poll = _interopRequireDefault(require("./Poll")); + +var _PollOutlined = _interopRequireDefault(require("./PollOutlined")); + +var _PollRounded = _interopRequireDefault(require("./PollRounded")); + +var _PollSharp = _interopRequireDefault(require("./PollSharp")); + +var _PollTwoTone = _interopRequireDefault(require("./PollTwoTone")); + +var _Pool = _interopRequireDefault(require("./Pool")); + +var _PoolOutlined = _interopRequireDefault(require("./PoolOutlined")); + +var _PoolRounded = _interopRequireDefault(require("./PoolRounded")); + +var _PoolSharp = _interopRequireDefault(require("./PoolSharp")); + +var _PoolTwoTone = _interopRequireDefault(require("./PoolTwoTone")); + +var _PortableWifiOff = _interopRequireDefault(require("./PortableWifiOff")); + +var _PortableWifiOffOutlined = _interopRequireDefault(require("./PortableWifiOffOutlined")); + +var _PortableWifiOffRounded = _interopRequireDefault(require("./PortableWifiOffRounded")); + +var _PortableWifiOffSharp = _interopRequireDefault(require("./PortableWifiOffSharp")); + +var _PortableWifiOffTwoTone = _interopRequireDefault(require("./PortableWifiOffTwoTone")); + +var _Portrait = _interopRequireDefault(require("./Portrait")); + +var _PortraitOutlined = _interopRequireDefault(require("./PortraitOutlined")); + +var _PortraitRounded = _interopRequireDefault(require("./PortraitRounded")); + +var _PortraitSharp = _interopRequireDefault(require("./PortraitSharp")); + +var _PortraitTwoTone = _interopRequireDefault(require("./PortraitTwoTone")); + +var _PostAdd = _interopRequireDefault(require("./PostAdd")); + +var _PostAddOutlined = _interopRequireDefault(require("./PostAddOutlined")); + +var _PostAddRounded = _interopRequireDefault(require("./PostAddRounded")); + +var _PostAddSharp = _interopRequireDefault(require("./PostAddSharp")); + +var _PostAddTwoTone = _interopRequireDefault(require("./PostAddTwoTone")); + +var _Power = _interopRequireDefault(require("./Power")); + +var _PowerInput = _interopRequireDefault(require("./PowerInput")); + +var _PowerInputOutlined = _interopRequireDefault(require("./PowerInputOutlined")); + +var _PowerInputRounded = _interopRequireDefault(require("./PowerInputRounded")); + +var _PowerInputSharp = _interopRequireDefault(require("./PowerInputSharp")); + +var _PowerInputTwoTone = _interopRequireDefault(require("./PowerInputTwoTone")); + +var _PowerOff = _interopRequireDefault(require("./PowerOff")); + +var _PowerOffOutlined = _interopRequireDefault(require("./PowerOffOutlined")); + +var _PowerOffRounded = _interopRequireDefault(require("./PowerOffRounded")); + +var _PowerOffSharp = _interopRequireDefault(require("./PowerOffSharp")); + +var _PowerOffTwoTone = _interopRequireDefault(require("./PowerOffTwoTone")); + +var _PowerOutlined = _interopRequireDefault(require("./PowerOutlined")); + +var _PowerRounded = _interopRequireDefault(require("./PowerRounded")); + +var _PowerSettingsNew = _interopRequireDefault(require("./PowerSettingsNew")); + +var _PowerSettingsNewOutlined = _interopRequireDefault(require("./PowerSettingsNewOutlined")); + +var _PowerSettingsNewRounded = _interopRequireDefault(require("./PowerSettingsNewRounded")); + +var _PowerSettingsNewSharp = _interopRequireDefault(require("./PowerSettingsNewSharp")); + +var _PowerSettingsNewTwoTone = _interopRequireDefault(require("./PowerSettingsNewTwoTone")); + +var _PowerSharp = _interopRequireDefault(require("./PowerSharp")); + +var _PowerTwoTone = _interopRequireDefault(require("./PowerTwoTone")); + +var _PrecisionManufacturing = _interopRequireDefault(require("./PrecisionManufacturing")); + +var _PrecisionManufacturingOutlined = _interopRequireDefault(require("./PrecisionManufacturingOutlined")); + +var _PrecisionManufacturingRounded = _interopRequireDefault(require("./PrecisionManufacturingRounded")); + +var _PrecisionManufacturingSharp = _interopRequireDefault(require("./PrecisionManufacturingSharp")); + +var _PrecisionManufacturingTwoTone = _interopRequireDefault(require("./PrecisionManufacturingTwoTone")); + +var _PregnantWoman = _interopRequireDefault(require("./PregnantWoman")); + +var _PregnantWomanOutlined = _interopRequireDefault(require("./PregnantWomanOutlined")); + +var _PregnantWomanRounded = _interopRequireDefault(require("./PregnantWomanRounded")); + +var _PregnantWomanSharp = _interopRequireDefault(require("./PregnantWomanSharp")); + +var _PregnantWomanTwoTone = _interopRequireDefault(require("./PregnantWomanTwoTone")); + +var _PresentToAll = _interopRequireDefault(require("./PresentToAll")); + +var _PresentToAllOutlined = _interopRequireDefault(require("./PresentToAllOutlined")); + +var _PresentToAllRounded = _interopRequireDefault(require("./PresentToAllRounded")); + +var _PresentToAllSharp = _interopRequireDefault(require("./PresentToAllSharp")); + +var _PresentToAllTwoTone = _interopRequireDefault(require("./PresentToAllTwoTone")); + +var _Preview = _interopRequireDefault(require("./Preview")); + +var _PreviewOutlined = _interopRequireDefault(require("./PreviewOutlined")); + +var _PreviewRounded = _interopRequireDefault(require("./PreviewRounded")); + +var _PreviewSharp = _interopRequireDefault(require("./PreviewSharp")); + +var _PreviewTwoTone = _interopRequireDefault(require("./PreviewTwoTone")); + +var _PriceChange = _interopRequireDefault(require("./PriceChange")); + +var _PriceChangeOutlined = _interopRequireDefault(require("./PriceChangeOutlined")); + +var _PriceChangeRounded = _interopRequireDefault(require("./PriceChangeRounded")); + +var _PriceChangeSharp = _interopRequireDefault(require("./PriceChangeSharp")); + +var _PriceChangeTwoTone = _interopRequireDefault(require("./PriceChangeTwoTone")); + +var _PriceCheck = _interopRequireDefault(require("./PriceCheck")); + +var _PriceCheckOutlined = _interopRequireDefault(require("./PriceCheckOutlined")); + +var _PriceCheckRounded = _interopRequireDefault(require("./PriceCheckRounded")); + +var _PriceCheckSharp = _interopRequireDefault(require("./PriceCheckSharp")); + +var _PriceCheckTwoTone = _interopRequireDefault(require("./PriceCheckTwoTone")); + +var _Print = _interopRequireDefault(require("./Print")); + +var _PrintDisabled = _interopRequireDefault(require("./PrintDisabled")); + +var _PrintDisabledOutlined = _interopRequireDefault(require("./PrintDisabledOutlined")); + +var _PrintDisabledRounded = _interopRequireDefault(require("./PrintDisabledRounded")); + +var _PrintDisabledSharp = _interopRequireDefault(require("./PrintDisabledSharp")); + +var _PrintDisabledTwoTone = _interopRequireDefault(require("./PrintDisabledTwoTone")); + +var _PrintOutlined = _interopRequireDefault(require("./PrintOutlined")); + +var _PrintRounded = _interopRequireDefault(require("./PrintRounded")); + +var _PrintSharp = _interopRequireDefault(require("./PrintSharp")); + +var _PrintTwoTone = _interopRequireDefault(require("./PrintTwoTone")); + +var _PriorityHigh = _interopRequireDefault(require("./PriorityHigh")); + +var _PriorityHighOutlined = _interopRequireDefault(require("./PriorityHighOutlined")); + +var _PriorityHighRounded = _interopRequireDefault(require("./PriorityHighRounded")); + +var _PriorityHighSharp = _interopRequireDefault(require("./PriorityHighSharp")); + +var _PriorityHighTwoTone = _interopRequireDefault(require("./PriorityHighTwoTone")); + +var _PrivacyTip = _interopRequireDefault(require("./PrivacyTip")); + +var _PrivacyTipOutlined = _interopRequireDefault(require("./PrivacyTipOutlined")); + +var _PrivacyTipRounded = _interopRequireDefault(require("./PrivacyTipRounded")); + +var _PrivacyTipSharp = _interopRequireDefault(require("./PrivacyTipSharp")); + +var _PrivacyTipTwoTone = _interopRequireDefault(require("./PrivacyTipTwoTone")); + +var _ProductionQuantityLimits = _interopRequireDefault(require("./ProductionQuantityLimits")); + +var _ProductionQuantityLimitsOutlined = _interopRequireDefault(require("./ProductionQuantityLimitsOutlined")); + +var _ProductionQuantityLimitsRounded = _interopRequireDefault(require("./ProductionQuantityLimitsRounded")); + +var _ProductionQuantityLimitsSharp = _interopRequireDefault(require("./ProductionQuantityLimitsSharp")); + +var _ProductionQuantityLimitsTwoTone = _interopRequireDefault(require("./ProductionQuantityLimitsTwoTone")); + +var _Psychology = _interopRequireDefault(require("./Psychology")); + +var _PsychologyOutlined = _interopRequireDefault(require("./PsychologyOutlined")); + +var _PsychologyRounded = _interopRequireDefault(require("./PsychologyRounded")); + +var _PsychologySharp = _interopRequireDefault(require("./PsychologySharp")); + +var _PsychologyTwoTone = _interopRequireDefault(require("./PsychologyTwoTone")); + +var _Public = _interopRequireDefault(require("./Public")); + +var _PublicOff = _interopRequireDefault(require("./PublicOff")); + +var _PublicOffOutlined = _interopRequireDefault(require("./PublicOffOutlined")); + +var _PublicOffRounded = _interopRequireDefault(require("./PublicOffRounded")); + +var _PublicOffSharp = _interopRequireDefault(require("./PublicOffSharp")); + +var _PublicOffTwoTone = _interopRequireDefault(require("./PublicOffTwoTone")); + +var _PublicOutlined = _interopRequireDefault(require("./PublicOutlined")); + +var _PublicRounded = _interopRequireDefault(require("./PublicRounded")); + +var _PublicSharp = _interopRequireDefault(require("./PublicSharp")); + +var _PublicTwoTone = _interopRequireDefault(require("./PublicTwoTone")); + +var _Publish = _interopRequireDefault(require("./Publish")); + +var _PublishOutlined = _interopRequireDefault(require("./PublishOutlined")); + +var _PublishRounded = _interopRequireDefault(require("./PublishRounded")); + +var _PublishSharp = _interopRequireDefault(require("./PublishSharp")); + +var _PublishTwoTone = _interopRequireDefault(require("./PublishTwoTone")); + +var _PublishedWithChanges = _interopRequireDefault(require("./PublishedWithChanges")); + +var _PublishedWithChangesOutlined = _interopRequireDefault(require("./PublishedWithChangesOutlined")); + +var _PublishedWithChangesRounded = _interopRequireDefault(require("./PublishedWithChangesRounded")); + +var _PublishedWithChangesSharp = _interopRequireDefault(require("./PublishedWithChangesSharp")); + +var _PublishedWithChangesTwoTone = _interopRequireDefault(require("./PublishedWithChangesTwoTone")); + +var _PushPin = _interopRequireDefault(require("./PushPin")); + +var _PushPinOutlined = _interopRequireDefault(require("./PushPinOutlined")); + +var _PushPinRounded = _interopRequireDefault(require("./PushPinRounded")); + +var _PushPinSharp = _interopRequireDefault(require("./PushPinSharp")); + +var _PushPinTwoTone = _interopRequireDefault(require("./PushPinTwoTone")); + +var _QrCode = _interopRequireDefault(require("./QrCode")); + +var _QrCode2 = _interopRequireDefault(require("./QrCode2")); + +var _QrCode2Outlined = _interopRequireDefault(require("./QrCode2Outlined")); + +var _QrCode2Rounded = _interopRequireDefault(require("./QrCode2Rounded")); + +var _QrCode2Sharp = _interopRequireDefault(require("./QrCode2Sharp")); + +var _QrCode2TwoTone = _interopRequireDefault(require("./QrCode2TwoTone")); + +var _QrCodeOutlined = _interopRequireDefault(require("./QrCodeOutlined")); + +var _QrCodeRounded = _interopRequireDefault(require("./QrCodeRounded")); + +var _QrCodeScanner = _interopRequireDefault(require("./QrCodeScanner")); + +var _QrCodeScannerOutlined = _interopRequireDefault(require("./QrCodeScannerOutlined")); + +var _QrCodeScannerRounded = _interopRequireDefault(require("./QrCodeScannerRounded")); + +var _QrCodeScannerSharp = _interopRequireDefault(require("./QrCodeScannerSharp")); + +var _QrCodeScannerTwoTone = _interopRequireDefault(require("./QrCodeScannerTwoTone")); + +var _QrCodeSharp = _interopRequireDefault(require("./QrCodeSharp")); + +var _QrCodeTwoTone = _interopRequireDefault(require("./QrCodeTwoTone")); + +var _QueryBuilder = _interopRequireDefault(require("./QueryBuilder")); + +var _QueryBuilderOutlined = _interopRequireDefault(require("./QueryBuilderOutlined")); + +var _QueryBuilderRounded = _interopRequireDefault(require("./QueryBuilderRounded")); + +var _QueryBuilderSharp = _interopRequireDefault(require("./QueryBuilderSharp")); + +var _QueryBuilderTwoTone = _interopRequireDefault(require("./QueryBuilderTwoTone")); + +var _QueryStats = _interopRequireDefault(require("./QueryStats")); + +var _QueryStatsOutlined = _interopRequireDefault(require("./QueryStatsOutlined")); + +var _QueryStatsRounded = _interopRequireDefault(require("./QueryStatsRounded")); + +var _QueryStatsSharp = _interopRequireDefault(require("./QueryStatsSharp")); + +var _QueryStatsTwoTone = _interopRequireDefault(require("./QueryStatsTwoTone")); + +var _QuestionAnswer = _interopRequireDefault(require("./QuestionAnswer")); + +var _QuestionAnswerOutlined = _interopRequireDefault(require("./QuestionAnswerOutlined")); + +var _QuestionAnswerRounded = _interopRequireDefault(require("./QuestionAnswerRounded")); + +var _QuestionAnswerSharp = _interopRequireDefault(require("./QuestionAnswerSharp")); + +var _QuestionAnswerTwoTone = _interopRequireDefault(require("./QuestionAnswerTwoTone")); + +var _Queue = _interopRequireDefault(require("./Queue")); + +var _QueueMusic = _interopRequireDefault(require("./QueueMusic")); + +var _QueueMusicOutlined = _interopRequireDefault(require("./QueueMusicOutlined")); + +var _QueueMusicRounded = _interopRequireDefault(require("./QueueMusicRounded")); + +var _QueueMusicSharp = _interopRequireDefault(require("./QueueMusicSharp")); + +var _QueueMusicTwoTone = _interopRequireDefault(require("./QueueMusicTwoTone")); + +var _QueueOutlined = _interopRequireDefault(require("./QueueOutlined")); + +var _QueuePlayNext = _interopRequireDefault(require("./QueuePlayNext")); + +var _QueuePlayNextOutlined = _interopRequireDefault(require("./QueuePlayNextOutlined")); + +var _QueuePlayNextRounded = _interopRequireDefault(require("./QueuePlayNextRounded")); + +var _QueuePlayNextSharp = _interopRequireDefault(require("./QueuePlayNextSharp")); + +var _QueuePlayNextTwoTone = _interopRequireDefault(require("./QueuePlayNextTwoTone")); + +var _QueueRounded = _interopRequireDefault(require("./QueueRounded")); + +var _QueueSharp = _interopRequireDefault(require("./QueueSharp")); + +var _QueueTwoTone = _interopRequireDefault(require("./QueueTwoTone")); + +var _Quickreply = _interopRequireDefault(require("./Quickreply")); + +var _QuickreplyOutlined = _interopRequireDefault(require("./QuickreplyOutlined")); + +var _QuickreplyRounded = _interopRequireDefault(require("./QuickreplyRounded")); + +var _QuickreplySharp = _interopRequireDefault(require("./QuickreplySharp")); + +var _QuickreplyTwoTone = _interopRequireDefault(require("./QuickreplyTwoTone")); + +var _Quiz = _interopRequireDefault(require("./Quiz")); + +var _QuizOutlined = _interopRequireDefault(require("./QuizOutlined")); + +var _QuizRounded = _interopRequireDefault(require("./QuizRounded")); + +var _QuizSharp = _interopRequireDefault(require("./QuizSharp")); + +var _QuizTwoTone = _interopRequireDefault(require("./QuizTwoTone")); + +var _RMobiledata = _interopRequireDefault(require("./RMobiledata")); + +var _RMobiledataOutlined = _interopRequireDefault(require("./RMobiledataOutlined")); + +var _RMobiledataRounded = _interopRequireDefault(require("./RMobiledataRounded")); + +var _RMobiledataSharp = _interopRequireDefault(require("./RMobiledataSharp")); + +var _RMobiledataTwoTone = _interopRequireDefault(require("./RMobiledataTwoTone")); + +var _Radar = _interopRequireDefault(require("./Radar")); + +var _RadarOutlined = _interopRequireDefault(require("./RadarOutlined")); + +var _RadarRounded = _interopRequireDefault(require("./RadarRounded")); + +var _RadarSharp = _interopRequireDefault(require("./RadarSharp")); + +var _RadarTwoTone = _interopRequireDefault(require("./RadarTwoTone")); + +var _Radio = _interopRequireDefault(require("./Radio")); + +var _RadioButtonChecked = _interopRequireDefault(require("./RadioButtonChecked")); + +var _RadioButtonCheckedOutlined = _interopRequireDefault(require("./RadioButtonCheckedOutlined")); + +var _RadioButtonCheckedRounded = _interopRequireDefault(require("./RadioButtonCheckedRounded")); + +var _RadioButtonCheckedSharp = _interopRequireDefault(require("./RadioButtonCheckedSharp")); + +var _RadioButtonCheckedTwoTone = _interopRequireDefault(require("./RadioButtonCheckedTwoTone")); + +var _RadioButtonUnchecked = _interopRequireDefault(require("./RadioButtonUnchecked")); + +var _RadioButtonUncheckedOutlined = _interopRequireDefault(require("./RadioButtonUncheckedOutlined")); + +var _RadioButtonUncheckedRounded = _interopRequireDefault(require("./RadioButtonUncheckedRounded")); + +var _RadioButtonUncheckedSharp = _interopRequireDefault(require("./RadioButtonUncheckedSharp")); + +var _RadioButtonUncheckedTwoTone = _interopRequireDefault(require("./RadioButtonUncheckedTwoTone")); + +var _RadioOutlined = _interopRequireDefault(require("./RadioOutlined")); + +var _RadioRounded = _interopRequireDefault(require("./RadioRounded")); + +var _RadioSharp = _interopRequireDefault(require("./RadioSharp")); + +var _RadioTwoTone = _interopRequireDefault(require("./RadioTwoTone")); + +var _RailwayAlert = _interopRequireDefault(require("./RailwayAlert")); + +var _RailwayAlertOutlined = _interopRequireDefault(require("./RailwayAlertOutlined")); + +var _RailwayAlertRounded = _interopRequireDefault(require("./RailwayAlertRounded")); + +var _RailwayAlertSharp = _interopRequireDefault(require("./RailwayAlertSharp")); + +var _RailwayAlertTwoTone = _interopRequireDefault(require("./RailwayAlertTwoTone")); + +var _RamenDining = _interopRequireDefault(require("./RamenDining")); + +var _RamenDiningOutlined = _interopRequireDefault(require("./RamenDiningOutlined")); + +var _RamenDiningRounded = _interopRequireDefault(require("./RamenDiningRounded")); + +var _RamenDiningSharp = _interopRequireDefault(require("./RamenDiningSharp")); + +var _RamenDiningTwoTone = _interopRequireDefault(require("./RamenDiningTwoTone")); + +var _RateReview = _interopRequireDefault(require("./RateReview")); + +var _RateReviewOutlined = _interopRequireDefault(require("./RateReviewOutlined")); + +var _RateReviewRounded = _interopRequireDefault(require("./RateReviewRounded")); + +var _RateReviewSharp = _interopRequireDefault(require("./RateReviewSharp")); + +var _RateReviewTwoTone = _interopRequireDefault(require("./RateReviewTwoTone")); + +var _RawOff = _interopRequireDefault(require("./RawOff")); + +var _RawOffOutlined = _interopRequireDefault(require("./RawOffOutlined")); + +var _RawOffRounded = _interopRequireDefault(require("./RawOffRounded")); + +var _RawOffSharp = _interopRequireDefault(require("./RawOffSharp")); + +var _RawOffTwoTone = _interopRequireDefault(require("./RawOffTwoTone")); + +var _RawOn = _interopRequireDefault(require("./RawOn")); + +var _RawOnOutlined = _interopRequireDefault(require("./RawOnOutlined")); + +var _RawOnRounded = _interopRequireDefault(require("./RawOnRounded")); + +var _RawOnSharp = _interopRequireDefault(require("./RawOnSharp")); + +var _RawOnTwoTone = _interopRequireDefault(require("./RawOnTwoTone")); + +var _ReadMore = _interopRequireDefault(require("./ReadMore")); + +var _ReadMoreOutlined = _interopRequireDefault(require("./ReadMoreOutlined")); + +var _ReadMoreRounded = _interopRequireDefault(require("./ReadMoreRounded")); + +var _ReadMoreSharp = _interopRequireDefault(require("./ReadMoreSharp")); + +var _ReadMoreTwoTone = _interopRequireDefault(require("./ReadMoreTwoTone")); + +var _Receipt = _interopRequireDefault(require("./Receipt")); + +var _ReceiptLong = _interopRequireDefault(require("./ReceiptLong")); + +var _ReceiptLongOutlined = _interopRequireDefault(require("./ReceiptLongOutlined")); + +var _ReceiptLongRounded = _interopRequireDefault(require("./ReceiptLongRounded")); + +var _ReceiptLongSharp = _interopRequireDefault(require("./ReceiptLongSharp")); + +var _ReceiptLongTwoTone = _interopRequireDefault(require("./ReceiptLongTwoTone")); + +var _ReceiptOutlined = _interopRequireDefault(require("./ReceiptOutlined")); + +var _ReceiptRounded = _interopRequireDefault(require("./ReceiptRounded")); + +var _ReceiptSharp = _interopRequireDefault(require("./ReceiptSharp")); + +var _ReceiptTwoTone = _interopRequireDefault(require("./ReceiptTwoTone")); + +var _RecentActors = _interopRequireDefault(require("./RecentActors")); + +var _RecentActorsOutlined = _interopRequireDefault(require("./RecentActorsOutlined")); + +var _RecentActorsRounded = _interopRequireDefault(require("./RecentActorsRounded")); + +var _RecentActorsSharp = _interopRequireDefault(require("./RecentActorsSharp")); + +var _RecentActorsTwoTone = _interopRequireDefault(require("./RecentActorsTwoTone")); + +var _Recommend = _interopRequireDefault(require("./Recommend")); + +var _RecommendOutlined = _interopRequireDefault(require("./RecommendOutlined")); + +var _RecommendRounded = _interopRequireDefault(require("./RecommendRounded")); + +var _RecommendSharp = _interopRequireDefault(require("./RecommendSharp")); + +var _RecommendTwoTone = _interopRequireDefault(require("./RecommendTwoTone")); + +var _RecordVoiceOver = _interopRequireDefault(require("./RecordVoiceOver")); + +var _RecordVoiceOverOutlined = _interopRequireDefault(require("./RecordVoiceOverOutlined")); + +var _RecordVoiceOverRounded = _interopRequireDefault(require("./RecordVoiceOverRounded")); + +var _RecordVoiceOverSharp = _interopRequireDefault(require("./RecordVoiceOverSharp")); + +var _RecordVoiceOverTwoTone = _interopRequireDefault(require("./RecordVoiceOverTwoTone")); + +var _Reddit = _interopRequireDefault(require("./Reddit")); + +var _Redeem = _interopRequireDefault(require("./Redeem")); + +var _RedeemOutlined = _interopRequireDefault(require("./RedeemOutlined")); + +var _RedeemRounded = _interopRequireDefault(require("./RedeemRounded")); + +var _RedeemSharp = _interopRequireDefault(require("./RedeemSharp")); + +var _RedeemTwoTone = _interopRequireDefault(require("./RedeemTwoTone")); + +var _Redo = _interopRequireDefault(require("./Redo")); + +var _RedoOutlined = _interopRequireDefault(require("./RedoOutlined")); + +var _RedoRounded = _interopRequireDefault(require("./RedoRounded")); + +var _RedoSharp = _interopRequireDefault(require("./RedoSharp")); + +var _RedoTwoTone = _interopRequireDefault(require("./RedoTwoTone")); + +var _ReduceCapacity = _interopRequireDefault(require("./ReduceCapacity")); + +var _ReduceCapacityOutlined = _interopRequireDefault(require("./ReduceCapacityOutlined")); + +var _ReduceCapacityRounded = _interopRequireDefault(require("./ReduceCapacityRounded")); + +var _ReduceCapacitySharp = _interopRequireDefault(require("./ReduceCapacitySharp")); + +var _ReduceCapacityTwoTone = _interopRequireDefault(require("./ReduceCapacityTwoTone")); + +var _Refresh = _interopRequireDefault(require("./Refresh")); + +var _RefreshOutlined = _interopRequireDefault(require("./RefreshOutlined")); + +var _RefreshRounded = _interopRequireDefault(require("./RefreshRounded")); + +var _RefreshSharp = _interopRequireDefault(require("./RefreshSharp")); + +var _RefreshTwoTone = _interopRequireDefault(require("./RefreshTwoTone")); + +var _RememberMe = _interopRequireDefault(require("./RememberMe")); + +var _RememberMeOutlined = _interopRequireDefault(require("./RememberMeOutlined")); + +var _RememberMeRounded = _interopRequireDefault(require("./RememberMeRounded")); + +var _RememberMeSharp = _interopRequireDefault(require("./RememberMeSharp")); + +var _RememberMeTwoTone = _interopRequireDefault(require("./RememberMeTwoTone")); + +var _Remove = _interopRequireDefault(require("./Remove")); + +var _RemoveCircle = _interopRequireDefault(require("./RemoveCircle")); + +var _RemoveCircleOutline = _interopRequireDefault(require("./RemoveCircleOutline")); + +var _RemoveCircleOutlineOutlined = _interopRequireDefault(require("./RemoveCircleOutlineOutlined")); + +var _RemoveCircleOutlineRounded = _interopRequireDefault(require("./RemoveCircleOutlineRounded")); + +var _RemoveCircleOutlineSharp = _interopRequireDefault(require("./RemoveCircleOutlineSharp")); + +var _RemoveCircleOutlineTwoTone = _interopRequireDefault(require("./RemoveCircleOutlineTwoTone")); + +var _RemoveCircleOutlined = _interopRequireDefault(require("./RemoveCircleOutlined")); + +var _RemoveCircleRounded = _interopRequireDefault(require("./RemoveCircleRounded")); + +var _RemoveCircleSharp = _interopRequireDefault(require("./RemoveCircleSharp")); + +var _RemoveCircleTwoTone = _interopRequireDefault(require("./RemoveCircleTwoTone")); + +var _RemoveDone = _interopRequireDefault(require("./RemoveDone")); + +var _RemoveDoneOutlined = _interopRequireDefault(require("./RemoveDoneOutlined")); + +var _RemoveDoneRounded = _interopRequireDefault(require("./RemoveDoneRounded")); + +var _RemoveDoneSharp = _interopRequireDefault(require("./RemoveDoneSharp")); + +var _RemoveDoneTwoTone = _interopRequireDefault(require("./RemoveDoneTwoTone")); + +var _RemoveFromQueue = _interopRequireDefault(require("./RemoveFromQueue")); + +var _RemoveFromQueueOutlined = _interopRequireDefault(require("./RemoveFromQueueOutlined")); + +var _RemoveFromQueueRounded = _interopRequireDefault(require("./RemoveFromQueueRounded")); + +var _RemoveFromQueueSharp = _interopRequireDefault(require("./RemoveFromQueueSharp")); + +var _RemoveFromQueueTwoTone = _interopRequireDefault(require("./RemoveFromQueueTwoTone")); + +var _RemoveModerator = _interopRequireDefault(require("./RemoveModerator")); + +var _RemoveModeratorOutlined = _interopRequireDefault(require("./RemoveModeratorOutlined")); + +var _RemoveModeratorRounded = _interopRequireDefault(require("./RemoveModeratorRounded")); + +var _RemoveModeratorSharp = _interopRequireDefault(require("./RemoveModeratorSharp")); + +var _RemoveModeratorTwoTone = _interopRequireDefault(require("./RemoveModeratorTwoTone")); + +var _RemoveOutlined = _interopRequireDefault(require("./RemoveOutlined")); + +var _RemoveRedEye = _interopRequireDefault(require("./RemoveRedEye")); + +var _RemoveRedEyeOutlined = _interopRequireDefault(require("./RemoveRedEyeOutlined")); + +var _RemoveRedEyeRounded = _interopRequireDefault(require("./RemoveRedEyeRounded")); + +var _RemoveRedEyeSharp = _interopRequireDefault(require("./RemoveRedEyeSharp")); + +var _RemoveRedEyeTwoTone = _interopRequireDefault(require("./RemoveRedEyeTwoTone")); + +var _RemoveRounded = _interopRequireDefault(require("./RemoveRounded")); + +var _RemoveSharp = _interopRequireDefault(require("./RemoveSharp")); + +var _RemoveShoppingCart = _interopRequireDefault(require("./RemoveShoppingCart")); + +var _RemoveShoppingCartOutlined = _interopRequireDefault(require("./RemoveShoppingCartOutlined")); + +var _RemoveShoppingCartRounded = _interopRequireDefault(require("./RemoveShoppingCartRounded")); + +var _RemoveShoppingCartSharp = _interopRequireDefault(require("./RemoveShoppingCartSharp")); + +var _RemoveShoppingCartTwoTone = _interopRequireDefault(require("./RemoveShoppingCartTwoTone")); + +var _RemoveTwoTone = _interopRequireDefault(require("./RemoveTwoTone")); + +var _Reorder = _interopRequireDefault(require("./Reorder")); + +var _ReorderOutlined = _interopRequireDefault(require("./ReorderOutlined")); + +var _ReorderRounded = _interopRequireDefault(require("./ReorderRounded")); + +var _ReorderSharp = _interopRequireDefault(require("./ReorderSharp")); + +var _ReorderTwoTone = _interopRequireDefault(require("./ReorderTwoTone")); + +var _Repeat = _interopRequireDefault(require("./Repeat")); + +var _RepeatOn = _interopRequireDefault(require("./RepeatOn")); + +var _RepeatOnOutlined = _interopRequireDefault(require("./RepeatOnOutlined")); + +var _RepeatOnRounded = _interopRequireDefault(require("./RepeatOnRounded")); + +var _RepeatOnSharp = _interopRequireDefault(require("./RepeatOnSharp")); + +var _RepeatOnTwoTone = _interopRequireDefault(require("./RepeatOnTwoTone")); + +var _RepeatOne = _interopRequireDefault(require("./RepeatOne")); + +var _RepeatOneOn = _interopRequireDefault(require("./RepeatOneOn")); + +var _RepeatOneOnOutlined = _interopRequireDefault(require("./RepeatOneOnOutlined")); + +var _RepeatOneOnRounded = _interopRequireDefault(require("./RepeatOneOnRounded")); + +var _RepeatOneOnSharp = _interopRequireDefault(require("./RepeatOneOnSharp")); + +var _RepeatOneOnTwoTone = _interopRequireDefault(require("./RepeatOneOnTwoTone")); + +var _RepeatOneOutlined = _interopRequireDefault(require("./RepeatOneOutlined")); + +var _RepeatOneRounded = _interopRequireDefault(require("./RepeatOneRounded")); + +var _RepeatOneSharp = _interopRequireDefault(require("./RepeatOneSharp")); + +var _RepeatOneTwoTone = _interopRequireDefault(require("./RepeatOneTwoTone")); + +var _RepeatOutlined = _interopRequireDefault(require("./RepeatOutlined")); + +var _RepeatRounded = _interopRequireDefault(require("./RepeatRounded")); + +var _RepeatSharp = _interopRequireDefault(require("./RepeatSharp")); + +var _RepeatTwoTone = _interopRequireDefault(require("./RepeatTwoTone")); + +var _Replay = _interopRequireDefault(require("./Replay")); + +var _Replay2 = _interopRequireDefault(require("./Replay10")); + +var _Replay10Outlined = _interopRequireDefault(require("./Replay10Outlined")); + +var _Replay10Rounded = _interopRequireDefault(require("./Replay10Rounded")); + +var _Replay10Sharp = _interopRequireDefault(require("./Replay10Sharp")); + +var _Replay10TwoTone = _interopRequireDefault(require("./Replay10TwoTone")); + +var _Replay3 = _interopRequireDefault(require("./Replay30")); + +var _Replay30Outlined = _interopRequireDefault(require("./Replay30Outlined")); + +var _Replay30Rounded = _interopRequireDefault(require("./Replay30Rounded")); + +var _Replay30Sharp = _interopRequireDefault(require("./Replay30Sharp")); + +var _Replay30TwoTone = _interopRequireDefault(require("./Replay30TwoTone")); + +var _Replay4 = _interopRequireDefault(require("./Replay5")); + +var _Replay5Outlined = _interopRequireDefault(require("./Replay5Outlined")); + +var _Replay5Rounded = _interopRequireDefault(require("./Replay5Rounded")); + +var _Replay5Sharp = _interopRequireDefault(require("./Replay5Sharp")); + +var _Replay5TwoTone = _interopRequireDefault(require("./Replay5TwoTone")); + +var _ReplayCircleFilled = _interopRequireDefault(require("./ReplayCircleFilled")); + +var _ReplayCircleFilledOutlined = _interopRequireDefault(require("./ReplayCircleFilledOutlined")); + +var _ReplayCircleFilledRounded = _interopRequireDefault(require("./ReplayCircleFilledRounded")); + +var _ReplayCircleFilledSharp = _interopRequireDefault(require("./ReplayCircleFilledSharp")); + +var _ReplayCircleFilledTwoTone = _interopRequireDefault(require("./ReplayCircleFilledTwoTone")); + +var _ReplayOutlined = _interopRequireDefault(require("./ReplayOutlined")); + +var _ReplayRounded = _interopRequireDefault(require("./ReplayRounded")); + +var _ReplaySharp = _interopRequireDefault(require("./ReplaySharp")); + +var _ReplayTwoTone = _interopRequireDefault(require("./ReplayTwoTone")); + +var _Reply = _interopRequireDefault(require("./Reply")); + +var _ReplyAll = _interopRequireDefault(require("./ReplyAll")); + +var _ReplyAllOutlined = _interopRequireDefault(require("./ReplyAllOutlined")); + +var _ReplyAllRounded = _interopRequireDefault(require("./ReplyAllRounded")); + +var _ReplyAllSharp = _interopRequireDefault(require("./ReplyAllSharp")); + +var _ReplyAllTwoTone = _interopRequireDefault(require("./ReplyAllTwoTone")); + +var _ReplyOutlined = _interopRequireDefault(require("./ReplyOutlined")); + +var _ReplyRounded = _interopRequireDefault(require("./ReplyRounded")); + +var _ReplySharp = _interopRequireDefault(require("./ReplySharp")); + +var _ReplyTwoTone = _interopRequireDefault(require("./ReplyTwoTone")); + +var _Report = _interopRequireDefault(require("./Report")); + +var _ReportGmailerrorred = _interopRequireDefault(require("./ReportGmailerrorred")); + +var _ReportGmailerrorredOutlined = _interopRequireDefault(require("./ReportGmailerrorredOutlined")); + +var _ReportGmailerrorredRounded = _interopRequireDefault(require("./ReportGmailerrorredRounded")); + +var _ReportGmailerrorredSharp = _interopRequireDefault(require("./ReportGmailerrorredSharp")); + +var _ReportGmailerrorredTwoTone = _interopRequireDefault(require("./ReportGmailerrorredTwoTone")); + +var _ReportOff = _interopRequireDefault(require("./ReportOff")); + +var _ReportOffOutlined = _interopRequireDefault(require("./ReportOffOutlined")); + +var _ReportOffRounded = _interopRequireDefault(require("./ReportOffRounded")); + +var _ReportOffSharp = _interopRequireDefault(require("./ReportOffSharp")); + +var _ReportOffTwoTone = _interopRequireDefault(require("./ReportOffTwoTone")); + +var _ReportOutlined = _interopRequireDefault(require("./ReportOutlined")); + +var _ReportProblem = _interopRequireDefault(require("./ReportProblem")); + +var _ReportProblemOutlined = _interopRequireDefault(require("./ReportProblemOutlined")); + +var _ReportProblemRounded = _interopRequireDefault(require("./ReportProblemRounded")); + +var _ReportProblemSharp = _interopRequireDefault(require("./ReportProblemSharp")); + +var _ReportProblemTwoTone = _interopRequireDefault(require("./ReportProblemTwoTone")); + +var _ReportRounded = _interopRequireDefault(require("./ReportRounded")); + +var _ReportSharp = _interopRequireDefault(require("./ReportSharp")); + +var _ReportTwoTone = _interopRequireDefault(require("./ReportTwoTone")); + +var _RequestPage = _interopRequireDefault(require("./RequestPage")); + +var _RequestPageOutlined = _interopRequireDefault(require("./RequestPageOutlined")); + +var _RequestPageRounded = _interopRequireDefault(require("./RequestPageRounded")); + +var _RequestPageSharp = _interopRequireDefault(require("./RequestPageSharp")); + +var _RequestPageTwoTone = _interopRequireDefault(require("./RequestPageTwoTone")); + +var _RequestQuote = _interopRequireDefault(require("./RequestQuote")); + +var _RequestQuoteOutlined = _interopRequireDefault(require("./RequestQuoteOutlined")); + +var _RequestQuoteRounded = _interopRequireDefault(require("./RequestQuoteRounded")); + +var _RequestQuoteSharp = _interopRequireDefault(require("./RequestQuoteSharp")); + +var _RequestQuoteTwoTone = _interopRequireDefault(require("./RequestQuoteTwoTone")); + +var _ResetTv = _interopRequireDefault(require("./ResetTv")); + +var _ResetTvOutlined = _interopRequireDefault(require("./ResetTvOutlined")); + +var _ResetTvRounded = _interopRequireDefault(require("./ResetTvRounded")); + +var _ResetTvSharp = _interopRequireDefault(require("./ResetTvSharp")); + +var _ResetTvTwoTone = _interopRequireDefault(require("./ResetTvTwoTone")); + +var _RestartAlt = _interopRequireDefault(require("./RestartAlt")); + +var _RestartAltOutlined = _interopRequireDefault(require("./RestartAltOutlined")); + +var _RestartAltRounded = _interopRequireDefault(require("./RestartAltRounded")); + +var _RestartAltSharp = _interopRequireDefault(require("./RestartAltSharp")); + +var _RestartAltTwoTone = _interopRequireDefault(require("./RestartAltTwoTone")); + +var _Restaurant = _interopRequireDefault(require("./Restaurant")); + +var _RestaurantMenu = _interopRequireDefault(require("./RestaurantMenu")); + +var _RestaurantMenuOutlined = _interopRequireDefault(require("./RestaurantMenuOutlined")); + +var _RestaurantMenuRounded = _interopRequireDefault(require("./RestaurantMenuRounded")); + +var _RestaurantMenuSharp = _interopRequireDefault(require("./RestaurantMenuSharp")); + +var _RestaurantMenuTwoTone = _interopRequireDefault(require("./RestaurantMenuTwoTone")); + +var _RestaurantOutlined = _interopRequireDefault(require("./RestaurantOutlined")); + +var _RestaurantRounded = _interopRequireDefault(require("./RestaurantRounded")); + +var _RestaurantSharp = _interopRequireDefault(require("./RestaurantSharp")); + +var _RestaurantTwoTone = _interopRequireDefault(require("./RestaurantTwoTone")); + +var _Restore = _interopRequireDefault(require("./Restore")); + +var _RestoreFromTrash = _interopRequireDefault(require("./RestoreFromTrash")); + +var _RestoreFromTrashOutlined = _interopRequireDefault(require("./RestoreFromTrashOutlined")); + +var _RestoreFromTrashRounded = _interopRequireDefault(require("./RestoreFromTrashRounded")); + +var _RestoreFromTrashSharp = _interopRequireDefault(require("./RestoreFromTrashSharp")); + +var _RestoreFromTrashTwoTone = _interopRequireDefault(require("./RestoreFromTrashTwoTone")); + +var _RestoreOutlined = _interopRequireDefault(require("./RestoreOutlined")); + +var _RestorePage = _interopRequireDefault(require("./RestorePage")); + +var _RestorePageOutlined = _interopRequireDefault(require("./RestorePageOutlined")); + +var _RestorePageRounded = _interopRequireDefault(require("./RestorePageRounded")); + +var _RestorePageSharp = _interopRequireDefault(require("./RestorePageSharp")); + +var _RestorePageTwoTone = _interopRequireDefault(require("./RestorePageTwoTone")); + +var _RestoreRounded = _interopRequireDefault(require("./RestoreRounded")); + +var _RestoreSharp = _interopRequireDefault(require("./RestoreSharp")); + +var _RestoreTwoTone = _interopRequireDefault(require("./RestoreTwoTone")); + +var _Reviews = _interopRequireDefault(require("./Reviews")); + +var _ReviewsOutlined = _interopRequireDefault(require("./ReviewsOutlined")); + +var _ReviewsRounded = _interopRequireDefault(require("./ReviewsRounded")); + +var _ReviewsSharp = _interopRequireDefault(require("./ReviewsSharp")); + +var _ReviewsTwoTone = _interopRequireDefault(require("./ReviewsTwoTone")); + +var _RiceBowl = _interopRequireDefault(require("./RiceBowl")); + +var _RiceBowlOutlined = _interopRequireDefault(require("./RiceBowlOutlined")); + +var _RiceBowlRounded = _interopRequireDefault(require("./RiceBowlRounded")); + +var _RiceBowlSharp = _interopRequireDefault(require("./RiceBowlSharp")); + +var _RiceBowlTwoTone = _interopRequireDefault(require("./RiceBowlTwoTone")); + +var _RingVolume = _interopRequireDefault(require("./RingVolume")); + +var _RingVolumeOutlined = _interopRequireDefault(require("./RingVolumeOutlined")); + +var _RingVolumeRounded = _interopRequireDefault(require("./RingVolumeRounded")); + +var _RingVolumeSharp = _interopRequireDefault(require("./RingVolumeSharp")); + +var _RingVolumeTwoTone = _interopRequireDefault(require("./RingVolumeTwoTone")); + +var _Roofing = _interopRequireDefault(require("./Roofing")); + +var _RoofingOutlined = _interopRequireDefault(require("./RoofingOutlined")); + +var _RoofingRounded = _interopRequireDefault(require("./RoofingRounded")); + +var _RoofingSharp = _interopRequireDefault(require("./RoofingSharp")); + +var _RoofingTwoTone = _interopRequireDefault(require("./RoofingTwoTone")); + +var _Room = _interopRequireDefault(require("./Room")); + +var _RoomOutlined = _interopRequireDefault(require("./RoomOutlined")); + +var _RoomPreferences = _interopRequireDefault(require("./RoomPreferences")); + +var _RoomPreferencesOutlined = _interopRequireDefault(require("./RoomPreferencesOutlined")); + +var _RoomPreferencesRounded = _interopRequireDefault(require("./RoomPreferencesRounded")); + +var _RoomPreferencesSharp = _interopRequireDefault(require("./RoomPreferencesSharp")); + +var _RoomPreferencesTwoTone = _interopRequireDefault(require("./RoomPreferencesTwoTone")); + +var _RoomRounded = _interopRequireDefault(require("./RoomRounded")); + +var _RoomService = _interopRequireDefault(require("./RoomService")); + +var _RoomServiceOutlined = _interopRequireDefault(require("./RoomServiceOutlined")); + +var _RoomServiceRounded = _interopRequireDefault(require("./RoomServiceRounded")); + +var _RoomServiceSharp = _interopRequireDefault(require("./RoomServiceSharp")); + +var _RoomServiceTwoTone = _interopRequireDefault(require("./RoomServiceTwoTone")); + +var _RoomSharp = _interopRequireDefault(require("./RoomSharp")); + +var _RoomTwoTone = _interopRequireDefault(require("./RoomTwoTone")); + +var _Rotate90DegreesCcw = _interopRequireDefault(require("./Rotate90DegreesCcw")); + +var _Rotate90DegreesCcwOutlined = _interopRequireDefault(require("./Rotate90DegreesCcwOutlined")); + +var _Rotate90DegreesCcwRounded = _interopRequireDefault(require("./Rotate90DegreesCcwRounded")); + +var _Rotate90DegreesCcwSharp = _interopRequireDefault(require("./Rotate90DegreesCcwSharp")); + +var _Rotate90DegreesCcwTwoTone = _interopRequireDefault(require("./Rotate90DegreesCcwTwoTone")); + +var _RotateLeft = _interopRequireDefault(require("./RotateLeft")); + +var _RotateLeftOutlined = _interopRequireDefault(require("./RotateLeftOutlined")); + +var _RotateLeftRounded = _interopRequireDefault(require("./RotateLeftRounded")); + +var _RotateLeftSharp = _interopRequireDefault(require("./RotateLeftSharp")); + +var _RotateLeftTwoTone = _interopRequireDefault(require("./RotateLeftTwoTone")); + +var _RotateRight = _interopRequireDefault(require("./RotateRight")); + +var _RotateRightOutlined = _interopRequireDefault(require("./RotateRightOutlined")); + +var _RotateRightRounded = _interopRequireDefault(require("./RotateRightRounded")); + +var _RotateRightSharp = _interopRequireDefault(require("./RotateRightSharp")); + +var _RotateRightTwoTone = _interopRequireDefault(require("./RotateRightTwoTone")); + +var _RoundedCorner = _interopRequireDefault(require("./RoundedCorner")); + +var _RoundedCornerOutlined = _interopRequireDefault(require("./RoundedCornerOutlined")); + +var _RoundedCornerRounded = _interopRequireDefault(require("./RoundedCornerRounded")); + +var _RoundedCornerSharp = _interopRequireDefault(require("./RoundedCornerSharp")); + +var _RoundedCornerTwoTone = _interopRequireDefault(require("./RoundedCornerTwoTone")); + +var _Router = _interopRequireDefault(require("./Router")); + +var _RouterOutlined = _interopRequireDefault(require("./RouterOutlined")); + +var _RouterRounded = _interopRequireDefault(require("./RouterRounded")); + +var _RouterSharp = _interopRequireDefault(require("./RouterSharp")); + +var _RouterTwoTone = _interopRequireDefault(require("./RouterTwoTone")); + +var _Rowing = _interopRequireDefault(require("./Rowing")); + +var _RowingOutlined = _interopRequireDefault(require("./RowingOutlined")); + +var _RowingRounded = _interopRequireDefault(require("./RowingRounded")); + +var _RowingSharp = _interopRequireDefault(require("./RowingSharp")); + +var _RowingTwoTone = _interopRequireDefault(require("./RowingTwoTone")); + +var _RssFeed = _interopRequireDefault(require("./RssFeed")); + +var _RssFeedOutlined = _interopRequireDefault(require("./RssFeedOutlined")); + +var _RssFeedRounded = _interopRequireDefault(require("./RssFeedRounded")); + +var _RssFeedSharp = _interopRequireDefault(require("./RssFeedSharp")); + +var _RssFeedTwoTone = _interopRequireDefault(require("./RssFeedTwoTone")); + +var _Rsvp = _interopRequireDefault(require("./Rsvp")); + +var _RsvpOutlined = _interopRequireDefault(require("./RsvpOutlined")); + +var _RsvpRounded = _interopRequireDefault(require("./RsvpRounded")); + +var _RsvpSharp = _interopRequireDefault(require("./RsvpSharp")); + +var _RsvpTwoTone = _interopRequireDefault(require("./RsvpTwoTone")); + +var _Rtt = _interopRequireDefault(require("./Rtt")); + +var _RttOutlined = _interopRequireDefault(require("./RttOutlined")); + +var _RttRounded = _interopRequireDefault(require("./RttRounded")); + +var _RttSharp = _interopRequireDefault(require("./RttSharp")); + +var _RttTwoTone = _interopRequireDefault(require("./RttTwoTone")); + +var _Rule = _interopRequireDefault(require("./Rule")); + +var _RuleFolder = _interopRequireDefault(require("./RuleFolder")); + +var _RuleFolderOutlined = _interopRequireDefault(require("./RuleFolderOutlined")); + +var _RuleFolderRounded = _interopRequireDefault(require("./RuleFolderRounded")); + +var _RuleFolderSharp = _interopRequireDefault(require("./RuleFolderSharp")); + +var _RuleFolderTwoTone = _interopRequireDefault(require("./RuleFolderTwoTone")); + +var _RuleOutlined = _interopRequireDefault(require("./RuleOutlined")); + +var _RuleRounded = _interopRequireDefault(require("./RuleRounded")); + +var _RuleSharp = _interopRequireDefault(require("./RuleSharp")); + +var _RuleTwoTone = _interopRequireDefault(require("./RuleTwoTone")); + +var _RunCircle = _interopRequireDefault(require("./RunCircle")); + +var _RunCircleOutlined = _interopRequireDefault(require("./RunCircleOutlined")); + +var _RunCircleRounded = _interopRequireDefault(require("./RunCircleRounded")); + +var _RunCircleSharp = _interopRequireDefault(require("./RunCircleSharp")); + +var _RunCircleTwoTone = _interopRequireDefault(require("./RunCircleTwoTone")); + +var _RunningWithErrors = _interopRequireDefault(require("./RunningWithErrors")); + +var _RunningWithErrorsOutlined = _interopRequireDefault(require("./RunningWithErrorsOutlined")); + +var _RunningWithErrorsRounded = _interopRequireDefault(require("./RunningWithErrorsRounded")); + +var _RunningWithErrorsSharp = _interopRequireDefault(require("./RunningWithErrorsSharp")); + +var _RunningWithErrorsTwoTone = _interopRequireDefault(require("./RunningWithErrorsTwoTone")); + +var _RvHookup = _interopRequireDefault(require("./RvHookup")); + +var _RvHookupOutlined = _interopRequireDefault(require("./RvHookupOutlined")); + +var _RvHookupRounded = _interopRequireDefault(require("./RvHookupRounded")); + +var _RvHookupSharp = _interopRequireDefault(require("./RvHookupSharp")); + +var _RvHookupTwoTone = _interopRequireDefault(require("./RvHookupTwoTone")); + +var _SafetyDivider = _interopRequireDefault(require("./SafetyDivider")); + +var _SafetyDividerOutlined = _interopRequireDefault(require("./SafetyDividerOutlined")); + +var _SafetyDividerRounded = _interopRequireDefault(require("./SafetyDividerRounded")); + +var _SafetyDividerSharp = _interopRequireDefault(require("./SafetyDividerSharp")); + +var _SafetyDividerTwoTone = _interopRequireDefault(require("./SafetyDividerTwoTone")); + +var _Sailing = _interopRequireDefault(require("./Sailing")); + +var _SailingOutlined = _interopRequireDefault(require("./SailingOutlined")); + +var _SailingRounded = _interopRequireDefault(require("./SailingRounded")); + +var _SailingSharp = _interopRequireDefault(require("./SailingSharp")); + +var _SailingTwoTone = _interopRequireDefault(require("./SailingTwoTone")); + +var _Sanitizer = _interopRequireDefault(require("./Sanitizer")); + +var _SanitizerOutlined = _interopRequireDefault(require("./SanitizerOutlined")); + +var _SanitizerRounded = _interopRequireDefault(require("./SanitizerRounded")); + +var _SanitizerSharp = _interopRequireDefault(require("./SanitizerSharp")); + +var _SanitizerTwoTone = _interopRequireDefault(require("./SanitizerTwoTone")); + +var _Satellite = _interopRequireDefault(require("./Satellite")); + +var _SatelliteOutlined = _interopRequireDefault(require("./SatelliteOutlined")); + +var _SatelliteRounded = _interopRequireDefault(require("./SatelliteRounded")); + +var _SatelliteSharp = _interopRequireDefault(require("./SatelliteSharp")); + +var _SatelliteTwoTone = _interopRequireDefault(require("./SatelliteTwoTone")); + +var _Save = _interopRequireDefault(require("./Save")); + +var _SaveAlt = _interopRequireDefault(require("./SaveAlt")); + +var _SaveAltOutlined = _interopRequireDefault(require("./SaveAltOutlined")); + +var _SaveAltRounded = _interopRequireDefault(require("./SaveAltRounded")); + +var _SaveAltSharp = _interopRequireDefault(require("./SaveAltSharp")); + +var _SaveAltTwoTone = _interopRequireDefault(require("./SaveAltTwoTone")); + +var _SaveOutlined = _interopRequireDefault(require("./SaveOutlined")); + +var _SaveRounded = _interopRequireDefault(require("./SaveRounded")); + +var _SaveSharp = _interopRequireDefault(require("./SaveSharp")); + +var _SaveTwoTone = _interopRequireDefault(require("./SaveTwoTone")); + +var _SavedSearch = _interopRequireDefault(require("./SavedSearch")); + +var _SavedSearchOutlined = _interopRequireDefault(require("./SavedSearchOutlined")); + +var _SavedSearchRounded = _interopRequireDefault(require("./SavedSearchRounded")); + +var _SavedSearchSharp = _interopRequireDefault(require("./SavedSearchSharp")); + +var _SavedSearchTwoTone = _interopRequireDefault(require("./SavedSearchTwoTone")); + +var _Savings = _interopRequireDefault(require("./Savings")); + +var _SavingsOutlined = _interopRequireDefault(require("./SavingsOutlined")); + +var _SavingsRounded = _interopRequireDefault(require("./SavingsRounded")); + +var _SavingsSharp = _interopRequireDefault(require("./SavingsSharp")); + +var _SavingsTwoTone = _interopRequireDefault(require("./SavingsTwoTone")); + +var _Scanner = _interopRequireDefault(require("./Scanner")); + +var _ScannerOutlined = _interopRequireDefault(require("./ScannerOutlined")); + +var _ScannerRounded = _interopRequireDefault(require("./ScannerRounded")); + +var _ScannerSharp = _interopRequireDefault(require("./ScannerSharp")); + +var _ScannerTwoTone = _interopRequireDefault(require("./ScannerTwoTone")); + +var _ScatterPlot = _interopRequireDefault(require("./ScatterPlot")); + +var _ScatterPlotOutlined = _interopRequireDefault(require("./ScatterPlotOutlined")); + +var _ScatterPlotRounded = _interopRequireDefault(require("./ScatterPlotRounded")); + +var _ScatterPlotSharp = _interopRequireDefault(require("./ScatterPlotSharp")); + +var _ScatterPlotTwoTone = _interopRequireDefault(require("./ScatterPlotTwoTone")); + +var _Schedule = _interopRequireDefault(require("./Schedule")); + +var _ScheduleOutlined = _interopRequireDefault(require("./ScheduleOutlined")); + +var _ScheduleRounded = _interopRequireDefault(require("./ScheduleRounded")); + +var _ScheduleSend = _interopRequireDefault(require("./ScheduleSend")); + +var _ScheduleSendOutlined = _interopRequireDefault(require("./ScheduleSendOutlined")); + +var _ScheduleSendRounded = _interopRequireDefault(require("./ScheduleSendRounded")); + +var _ScheduleSendSharp = _interopRequireDefault(require("./ScheduleSendSharp")); + +var _ScheduleSendTwoTone = _interopRequireDefault(require("./ScheduleSendTwoTone")); + +var _ScheduleSharp = _interopRequireDefault(require("./ScheduleSharp")); + +var _ScheduleTwoTone = _interopRequireDefault(require("./ScheduleTwoTone")); + +var _Schema = _interopRequireDefault(require("./Schema")); + +var _SchemaOutlined = _interopRequireDefault(require("./SchemaOutlined")); + +var _SchemaRounded = _interopRequireDefault(require("./SchemaRounded")); + +var _SchemaSharp = _interopRequireDefault(require("./SchemaSharp")); + +var _SchemaTwoTone = _interopRequireDefault(require("./SchemaTwoTone")); + +var _School = _interopRequireDefault(require("./School")); + +var _SchoolOutlined = _interopRequireDefault(require("./SchoolOutlined")); + +var _SchoolRounded = _interopRequireDefault(require("./SchoolRounded")); + +var _SchoolSharp = _interopRequireDefault(require("./SchoolSharp")); + +var _SchoolTwoTone = _interopRequireDefault(require("./SchoolTwoTone")); + +var _Science = _interopRequireDefault(require("./Science")); + +var _ScienceOutlined = _interopRequireDefault(require("./ScienceOutlined")); + +var _ScienceRounded = _interopRequireDefault(require("./ScienceRounded")); + +var _ScienceSharp = _interopRequireDefault(require("./ScienceSharp")); + +var _ScienceTwoTone = _interopRequireDefault(require("./ScienceTwoTone")); + +var _Score = _interopRequireDefault(require("./Score")); + +var _ScoreOutlined = _interopRequireDefault(require("./ScoreOutlined")); + +var _ScoreRounded = _interopRequireDefault(require("./ScoreRounded")); + +var _ScoreSharp = _interopRequireDefault(require("./ScoreSharp")); + +var _ScoreTwoTone = _interopRequireDefault(require("./ScoreTwoTone")); + +var _ScreenLockLandscape = _interopRequireDefault(require("./ScreenLockLandscape")); + +var _ScreenLockLandscapeOutlined = _interopRequireDefault(require("./ScreenLockLandscapeOutlined")); + +var _ScreenLockLandscapeRounded = _interopRequireDefault(require("./ScreenLockLandscapeRounded")); + +var _ScreenLockLandscapeSharp = _interopRequireDefault(require("./ScreenLockLandscapeSharp")); + +var _ScreenLockLandscapeTwoTone = _interopRequireDefault(require("./ScreenLockLandscapeTwoTone")); + +var _ScreenLockPortrait = _interopRequireDefault(require("./ScreenLockPortrait")); + +var _ScreenLockPortraitOutlined = _interopRequireDefault(require("./ScreenLockPortraitOutlined")); + +var _ScreenLockPortraitRounded = _interopRequireDefault(require("./ScreenLockPortraitRounded")); + +var _ScreenLockPortraitSharp = _interopRequireDefault(require("./ScreenLockPortraitSharp")); + +var _ScreenLockPortraitTwoTone = _interopRequireDefault(require("./ScreenLockPortraitTwoTone")); + +var _ScreenLockRotation = _interopRequireDefault(require("./ScreenLockRotation")); + +var _ScreenLockRotationOutlined = _interopRequireDefault(require("./ScreenLockRotationOutlined")); + +var _ScreenLockRotationRounded = _interopRequireDefault(require("./ScreenLockRotationRounded")); + +var _ScreenLockRotationSharp = _interopRequireDefault(require("./ScreenLockRotationSharp")); + +var _ScreenLockRotationTwoTone = _interopRequireDefault(require("./ScreenLockRotationTwoTone")); + +var _ScreenRotation = _interopRequireDefault(require("./ScreenRotation")); + +var _ScreenRotationOutlined = _interopRequireDefault(require("./ScreenRotationOutlined")); + +var _ScreenRotationRounded = _interopRequireDefault(require("./ScreenRotationRounded")); + +var _ScreenRotationSharp = _interopRequireDefault(require("./ScreenRotationSharp")); + +var _ScreenRotationTwoTone = _interopRequireDefault(require("./ScreenRotationTwoTone")); + +var _ScreenSearchDesktop = _interopRequireDefault(require("./ScreenSearchDesktop")); + +var _ScreenSearchDesktopOutlined = _interopRequireDefault(require("./ScreenSearchDesktopOutlined")); + +var _ScreenSearchDesktopRounded = _interopRequireDefault(require("./ScreenSearchDesktopRounded")); + +var _ScreenSearchDesktopSharp = _interopRequireDefault(require("./ScreenSearchDesktopSharp")); + +var _ScreenSearchDesktopTwoTone = _interopRequireDefault(require("./ScreenSearchDesktopTwoTone")); + +var _ScreenShare = _interopRequireDefault(require("./ScreenShare")); + +var _ScreenShareOutlined = _interopRequireDefault(require("./ScreenShareOutlined")); + +var _ScreenShareRounded = _interopRequireDefault(require("./ScreenShareRounded")); + +var _ScreenShareSharp = _interopRequireDefault(require("./ScreenShareSharp")); + +var _ScreenShareTwoTone = _interopRequireDefault(require("./ScreenShareTwoTone")); + +var _Screenshot = _interopRequireDefault(require("./Screenshot")); + +var _ScreenshotOutlined = _interopRequireDefault(require("./ScreenshotOutlined")); + +var _ScreenshotRounded = _interopRequireDefault(require("./ScreenshotRounded")); + +var _ScreenshotSharp = _interopRequireDefault(require("./ScreenshotSharp")); + +var _ScreenshotTwoTone = _interopRequireDefault(require("./ScreenshotTwoTone")); + +var _Sd = _interopRequireDefault(require("./Sd")); + +var _SdCard = _interopRequireDefault(require("./SdCard")); + +var _SdCardAlert = _interopRequireDefault(require("./SdCardAlert")); + +var _SdCardAlertOutlined = _interopRequireDefault(require("./SdCardAlertOutlined")); + +var _SdCardAlertRounded = _interopRequireDefault(require("./SdCardAlertRounded")); + +var _SdCardAlertSharp = _interopRequireDefault(require("./SdCardAlertSharp")); + +var _SdCardAlertTwoTone = _interopRequireDefault(require("./SdCardAlertTwoTone")); + +var _SdCardOutlined = _interopRequireDefault(require("./SdCardOutlined")); + +var _SdCardRounded = _interopRequireDefault(require("./SdCardRounded")); + +var _SdCardSharp = _interopRequireDefault(require("./SdCardSharp")); + +var _SdCardTwoTone = _interopRequireDefault(require("./SdCardTwoTone")); + +var _SdOutlined = _interopRequireDefault(require("./SdOutlined")); + +var _SdRounded = _interopRequireDefault(require("./SdRounded")); + +var _SdSharp = _interopRequireDefault(require("./SdSharp")); + +var _SdStorage = _interopRequireDefault(require("./SdStorage")); + +var _SdStorageOutlined = _interopRequireDefault(require("./SdStorageOutlined")); + +var _SdStorageRounded = _interopRequireDefault(require("./SdStorageRounded")); + +var _SdStorageSharp = _interopRequireDefault(require("./SdStorageSharp")); + +var _SdStorageTwoTone = _interopRequireDefault(require("./SdStorageTwoTone")); + +var _SdTwoTone = _interopRequireDefault(require("./SdTwoTone")); + +var _Search = _interopRequireDefault(require("./Search")); + +var _SearchOff = _interopRequireDefault(require("./SearchOff")); + +var _SearchOffOutlined = _interopRequireDefault(require("./SearchOffOutlined")); + +var _SearchOffRounded = _interopRequireDefault(require("./SearchOffRounded")); + +var _SearchOffSharp = _interopRequireDefault(require("./SearchOffSharp")); + +var _SearchOffTwoTone = _interopRequireDefault(require("./SearchOffTwoTone")); + +var _SearchOutlined = _interopRequireDefault(require("./SearchOutlined")); + +var _SearchRounded = _interopRequireDefault(require("./SearchRounded")); + +var _SearchSharp = _interopRequireDefault(require("./SearchSharp")); + +var _SearchTwoTone = _interopRequireDefault(require("./SearchTwoTone")); + +var _Security = _interopRequireDefault(require("./Security")); + +var _SecurityOutlined = _interopRequireDefault(require("./SecurityOutlined")); + +var _SecurityRounded = _interopRequireDefault(require("./SecurityRounded")); + +var _SecuritySharp = _interopRequireDefault(require("./SecuritySharp")); + +var _SecurityTwoTone = _interopRequireDefault(require("./SecurityTwoTone")); + +var _SecurityUpdate = _interopRequireDefault(require("./SecurityUpdate")); + +var _SecurityUpdateGood = _interopRequireDefault(require("./SecurityUpdateGood")); + +var _SecurityUpdateGoodOutlined = _interopRequireDefault(require("./SecurityUpdateGoodOutlined")); + +var _SecurityUpdateGoodRounded = _interopRequireDefault(require("./SecurityUpdateGoodRounded")); + +var _SecurityUpdateGoodSharp = _interopRequireDefault(require("./SecurityUpdateGoodSharp")); + +var _SecurityUpdateGoodTwoTone = _interopRequireDefault(require("./SecurityUpdateGoodTwoTone")); + +var _SecurityUpdateOutlined = _interopRequireDefault(require("./SecurityUpdateOutlined")); + +var _SecurityUpdateRounded = _interopRequireDefault(require("./SecurityUpdateRounded")); + +var _SecurityUpdateSharp = _interopRequireDefault(require("./SecurityUpdateSharp")); + +var _SecurityUpdateTwoTone = _interopRequireDefault(require("./SecurityUpdateTwoTone")); + +var _SecurityUpdateWarning = _interopRequireDefault(require("./SecurityUpdateWarning")); + +var _SecurityUpdateWarningOutlined = _interopRequireDefault(require("./SecurityUpdateWarningOutlined")); + +var _SecurityUpdateWarningRounded = _interopRequireDefault(require("./SecurityUpdateWarningRounded")); + +var _SecurityUpdateWarningSharp = _interopRequireDefault(require("./SecurityUpdateWarningSharp")); + +var _SecurityUpdateWarningTwoTone = _interopRequireDefault(require("./SecurityUpdateWarningTwoTone")); + +var _Segment = _interopRequireDefault(require("./Segment")); + +var _SegmentOutlined = _interopRequireDefault(require("./SegmentOutlined")); + +var _SegmentRounded = _interopRequireDefault(require("./SegmentRounded")); + +var _SegmentSharp = _interopRequireDefault(require("./SegmentSharp")); + +var _SegmentTwoTone = _interopRequireDefault(require("./SegmentTwoTone")); + +var _SelectAll = _interopRequireDefault(require("./SelectAll")); + +var _SelectAllOutlined = _interopRequireDefault(require("./SelectAllOutlined")); + +var _SelectAllRounded = _interopRequireDefault(require("./SelectAllRounded")); + +var _SelectAllSharp = _interopRequireDefault(require("./SelectAllSharp")); + +var _SelectAllTwoTone = _interopRequireDefault(require("./SelectAllTwoTone")); + +var _SelfImprovement = _interopRequireDefault(require("./SelfImprovement")); + +var _SelfImprovementOutlined = _interopRequireDefault(require("./SelfImprovementOutlined")); + +var _SelfImprovementRounded = _interopRequireDefault(require("./SelfImprovementRounded")); + +var _SelfImprovementSharp = _interopRequireDefault(require("./SelfImprovementSharp")); + +var _SelfImprovementTwoTone = _interopRequireDefault(require("./SelfImprovementTwoTone")); + +var _Sell = _interopRequireDefault(require("./Sell")); + +var _SellOutlined = _interopRequireDefault(require("./SellOutlined")); + +var _SellRounded = _interopRequireDefault(require("./SellRounded")); + +var _SellSharp = _interopRequireDefault(require("./SellSharp")); + +var _SellTwoTone = _interopRequireDefault(require("./SellTwoTone")); + +var _Send = _interopRequireDefault(require("./Send")); + +var _SendAndArchive = _interopRequireDefault(require("./SendAndArchive")); + +var _SendAndArchiveOutlined = _interopRequireDefault(require("./SendAndArchiveOutlined")); + +var _SendAndArchiveRounded = _interopRequireDefault(require("./SendAndArchiveRounded")); + +var _SendAndArchiveSharp = _interopRequireDefault(require("./SendAndArchiveSharp")); + +var _SendAndArchiveTwoTone = _interopRequireDefault(require("./SendAndArchiveTwoTone")); + +var _SendOutlined = _interopRequireDefault(require("./SendOutlined")); + +var _SendRounded = _interopRequireDefault(require("./SendRounded")); + +var _SendSharp = _interopRequireDefault(require("./SendSharp")); + +var _SendToMobile = _interopRequireDefault(require("./SendToMobile")); + +var _SendToMobileOutlined = _interopRequireDefault(require("./SendToMobileOutlined")); + +var _SendToMobileRounded = _interopRequireDefault(require("./SendToMobileRounded")); + +var _SendToMobileSharp = _interopRequireDefault(require("./SendToMobileSharp")); + +var _SendToMobileTwoTone = _interopRequireDefault(require("./SendToMobileTwoTone")); + +var _SendTwoTone = _interopRequireDefault(require("./SendTwoTone")); + +var _SensorDoor = _interopRequireDefault(require("./SensorDoor")); + +var _SensorDoorOutlined = _interopRequireDefault(require("./SensorDoorOutlined")); + +var _SensorDoorRounded = _interopRequireDefault(require("./SensorDoorRounded")); + +var _SensorDoorSharp = _interopRequireDefault(require("./SensorDoorSharp")); + +var _SensorDoorTwoTone = _interopRequireDefault(require("./SensorDoorTwoTone")); + +var _SensorWindow = _interopRequireDefault(require("./SensorWindow")); + +var _SensorWindowOutlined = _interopRequireDefault(require("./SensorWindowOutlined")); + +var _SensorWindowRounded = _interopRequireDefault(require("./SensorWindowRounded")); + +var _SensorWindowSharp = _interopRequireDefault(require("./SensorWindowSharp")); + +var _SensorWindowTwoTone = _interopRequireDefault(require("./SensorWindowTwoTone")); + +var _Sensors = _interopRequireDefault(require("./Sensors")); + +var _SensorsOff = _interopRequireDefault(require("./SensorsOff")); + +var _SensorsOffOutlined = _interopRequireDefault(require("./SensorsOffOutlined")); + +var _SensorsOffRounded = _interopRequireDefault(require("./SensorsOffRounded")); + +var _SensorsOffSharp = _interopRequireDefault(require("./SensorsOffSharp")); + +var _SensorsOffTwoTone = _interopRequireDefault(require("./SensorsOffTwoTone")); + +var _SensorsOutlined = _interopRequireDefault(require("./SensorsOutlined")); + +var _SensorsRounded = _interopRequireDefault(require("./SensorsRounded")); + +var _SensorsSharp = _interopRequireDefault(require("./SensorsSharp")); + +var _SensorsTwoTone = _interopRequireDefault(require("./SensorsTwoTone")); + +var _SentimentDissatisfied = _interopRequireDefault(require("./SentimentDissatisfied")); + +var _SentimentDissatisfiedOutlined = _interopRequireDefault(require("./SentimentDissatisfiedOutlined")); + +var _SentimentDissatisfiedRounded = _interopRequireDefault(require("./SentimentDissatisfiedRounded")); + +var _SentimentDissatisfiedSharp = _interopRequireDefault(require("./SentimentDissatisfiedSharp")); + +var _SentimentDissatisfiedTwoTone = _interopRequireDefault(require("./SentimentDissatisfiedTwoTone")); + +var _SentimentNeutral = _interopRequireDefault(require("./SentimentNeutral")); + +var _SentimentNeutralOutlined = _interopRequireDefault(require("./SentimentNeutralOutlined")); + +var _SentimentNeutralRounded = _interopRequireDefault(require("./SentimentNeutralRounded")); + +var _SentimentNeutralSharp = _interopRequireDefault(require("./SentimentNeutralSharp")); + +var _SentimentNeutralTwoTone = _interopRequireDefault(require("./SentimentNeutralTwoTone")); + +var _SentimentSatisfied = _interopRequireDefault(require("./SentimentSatisfied")); + +var _SentimentSatisfiedAlt = _interopRequireDefault(require("./SentimentSatisfiedAlt")); + +var _SentimentSatisfiedAltOutlined = _interopRequireDefault(require("./SentimentSatisfiedAltOutlined")); + +var _SentimentSatisfiedAltRounded = _interopRequireDefault(require("./SentimentSatisfiedAltRounded")); + +var _SentimentSatisfiedAltSharp = _interopRequireDefault(require("./SentimentSatisfiedAltSharp")); + +var _SentimentSatisfiedAltTwoTone = _interopRequireDefault(require("./SentimentSatisfiedAltTwoTone")); + +var _SentimentSatisfiedOutlined = _interopRequireDefault(require("./SentimentSatisfiedOutlined")); + +var _SentimentSatisfiedRounded = _interopRequireDefault(require("./SentimentSatisfiedRounded")); + +var _SentimentSatisfiedSharp = _interopRequireDefault(require("./SentimentSatisfiedSharp")); + +var _SentimentSatisfiedTwoTone = _interopRequireDefault(require("./SentimentSatisfiedTwoTone")); + +var _SentimentVeryDissatisfied = _interopRequireDefault(require("./SentimentVeryDissatisfied")); + +var _SentimentVeryDissatisfiedOutlined = _interopRequireDefault(require("./SentimentVeryDissatisfiedOutlined")); + +var _SentimentVeryDissatisfiedRounded = _interopRequireDefault(require("./SentimentVeryDissatisfiedRounded")); + +var _SentimentVeryDissatisfiedSharp = _interopRequireDefault(require("./SentimentVeryDissatisfiedSharp")); + +var _SentimentVeryDissatisfiedTwoTone = _interopRequireDefault(require("./SentimentVeryDissatisfiedTwoTone")); + +var _SentimentVerySatisfied = _interopRequireDefault(require("./SentimentVerySatisfied")); + +var _SentimentVerySatisfiedOutlined = _interopRequireDefault(require("./SentimentVerySatisfiedOutlined")); + +var _SentimentVerySatisfiedRounded = _interopRequireDefault(require("./SentimentVerySatisfiedRounded")); + +var _SentimentVerySatisfiedSharp = _interopRequireDefault(require("./SentimentVerySatisfiedSharp")); + +var _SentimentVerySatisfiedTwoTone = _interopRequireDefault(require("./SentimentVerySatisfiedTwoTone")); + +var _SetMeal = _interopRequireDefault(require("./SetMeal")); + +var _SetMealOutlined = _interopRequireDefault(require("./SetMealOutlined")); + +var _SetMealRounded = _interopRequireDefault(require("./SetMealRounded")); + +var _SetMealSharp = _interopRequireDefault(require("./SetMealSharp")); + +var _SetMealTwoTone = _interopRequireDefault(require("./SetMealTwoTone")); + +var _Settings = _interopRequireDefault(require("./Settings")); + +var _SettingsAccessibility = _interopRequireDefault(require("./SettingsAccessibility")); + +var _SettingsAccessibilityOutlined = _interopRequireDefault(require("./SettingsAccessibilityOutlined")); + +var _SettingsAccessibilityRounded = _interopRequireDefault(require("./SettingsAccessibilityRounded")); + +var _SettingsAccessibilitySharp = _interopRequireDefault(require("./SettingsAccessibilitySharp")); + +var _SettingsAccessibilityTwoTone = _interopRequireDefault(require("./SettingsAccessibilityTwoTone")); + +var _SettingsApplications = _interopRequireDefault(require("./SettingsApplications")); + +var _SettingsApplicationsOutlined = _interopRequireDefault(require("./SettingsApplicationsOutlined")); + +var _SettingsApplicationsRounded = _interopRequireDefault(require("./SettingsApplicationsRounded")); + +var _SettingsApplicationsSharp = _interopRequireDefault(require("./SettingsApplicationsSharp")); + +var _SettingsApplicationsTwoTone = _interopRequireDefault(require("./SettingsApplicationsTwoTone")); + +var _SettingsBackupRestore = _interopRequireDefault(require("./SettingsBackupRestore")); + +var _SettingsBackupRestoreOutlined = _interopRequireDefault(require("./SettingsBackupRestoreOutlined")); + +var _SettingsBackupRestoreRounded = _interopRequireDefault(require("./SettingsBackupRestoreRounded")); + +var _SettingsBackupRestoreSharp = _interopRequireDefault(require("./SettingsBackupRestoreSharp")); + +var _SettingsBackupRestoreTwoTone = _interopRequireDefault(require("./SettingsBackupRestoreTwoTone")); + +var _SettingsBluetooth = _interopRequireDefault(require("./SettingsBluetooth")); + +var _SettingsBluetoothOutlined = _interopRequireDefault(require("./SettingsBluetoothOutlined")); + +var _SettingsBluetoothRounded = _interopRequireDefault(require("./SettingsBluetoothRounded")); + +var _SettingsBluetoothSharp = _interopRequireDefault(require("./SettingsBluetoothSharp")); + +var _SettingsBluetoothTwoTone = _interopRequireDefault(require("./SettingsBluetoothTwoTone")); + +var _SettingsBrightness = _interopRequireDefault(require("./SettingsBrightness")); + +var _SettingsBrightnessOutlined = _interopRequireDefault(require("./SettingsBrightnessOutlined")); + +var _SettingsBrightnessRounded = _interopRequireDefault(require("./SettingsBrightnessRounded")); + +var _SettingsBrightnessSharp = _interopRequireDefault(require("./SettingsBrightnessSharp")); + +var _SettingsBrightnessTwoTone = _interopRequireDefault(require("./SettingsBrightnessTwoTone")); + +var _SettingsCell = _interopRequireDefault(require("./SettingsCell")); + +var _SettingsCellOutlined = _interopRequireDefault(require("./SettingsCellOutlined")); + +var _SettingsCellRounded = _interopRequireDefault(require("./SettingsCellRounded")); + +var _SettingsCellSharp = _interopRequireDefault(require("./SettingsCellSharp")); + +var _SettingsCellTwoTone = _interopRequireDefault(require("./SettingsCellTwoTone")); + +var _SettingsEthernet = _interopRequireDefault(require("./SettingsEthernet")); + +var _SettingsEthernetOutlined = _interopRequireDefault(require("./SettingsEthernetOutlined")); + +var _SettingsEthernetRounded = _interopRequireDefault(require("./SettingsEthernetRounded")); + +var _SettingsEthernetSharp = _interopRequireDefault(require("./SettingsEthernetSharp")); + +var _SettingsEthernetTwoTone = _interopRequireDefault(require("./SettingsEthernetTwoTone")); + +var _SettingsInputAntenna = _interopRequireDefault(require("./SettingsInputAntenna")); + +var _SettingsInputAntennaOutlined = _interopRequireDefault(require("./SettingsInputAntennaOutlined")); + +var _SettingsInputAntennaRounded = _interopRequireDefault(require("./SettingsInputAntennaRounded")); + +var _SettingsInputAntennaSharp = _interopRequireDefault(require("./SettingsInputAntennaSharp")); + +var _SettingsInputAntennaTwoTone = _interopRequireDefault(require("./SettingsInputAntennaTwoTone")); + +var _SettingsInputComponent = _interopRequireDefault(require("./SettingsInputComponent")); + +var _SettingsInputComponentOutlined = _interopRequireDefault(require("./SettingsInputComponentOutlined")); + +var _SettingsInputComponentRounded = _interopRequireDefault(require("./SettingsInputComponentRounded")); + +var _SettingsInputComponentSharp = _interopRequireDefault(require("./SettingsInputComponentSharp")); + +var _SettingsInputComponentTwoTone = _interopRequireDefault(require("./SettingsInputComponentTwoTone")); + +var _SettingsInputComposite = _interopRequireDefault(require("./SettingsInputComposite")); + +var _SettingsInputCompositeOutlined = _interopRequireDefault(require("./SettingsInputCompositeOutlined")); + +var _SettingsInputCompositeRounded = _interopRequireDefault(require("./SettingsInputCompositeRounded")); + +var _SettingsInputCompositeSharp = _interopRequireDefault(require("./SettingsInputCompositeSharp")); + +var _SettingsInputCompositeTwoTone = _interopRequireDefault(require("./SettingsInputCompositeTwoTone")); + +var _SettingsInputHdmi = _interopRequireDefault(require("./SettingsInputHdmi")); + +var _SettingsInputHdmiOutlined = _interopRequireDefault(require("./SettingsInputHdmiOutlined")); + +var _SettingsInputHdmiRounded = _interopRequireDefault(require("./SettingsInputHdmiRounded")); + +var _SettingsInputHdmiSharp = _interopRequireDefault(require("./SettingsInputHdmiSharp")); + +var _SettingsInputHdmiTwoTone = _interopRequireDefault(require("./SettingsInputHdmiTwoTone")); + +var _SettingsInputSvideo = _interopRequireDefault(require("./SettingsInputSvideo")); + +var _SettingsInputSvideoOutlined = _interopRequireDefault(require("./SettingsInputSvideoOutlined")); + +var _SettingsInputSvideoRounded = _interopRequireDefault(require("./SettingsInputSvideoRounded")); + +var _SettingsInputSvideoSharp = _interopRequireDefault(require("./SettingsInputSvideoSharp")); + +var _SettingsInputSvideoTwoTone = _interopRequireDefault(require("./SettingsInputSvideoTwoTone")); + +var _SettingsOutlined = _interopRequireDefault(require("./SettingsOutlined")); + +var _SettingsOverscan = _interopRequireDefault(require("./SettingsOverscan")); + +var _SettingsOverscanOutlined = _interopRequireDefault(require("./SettingsOverscanOutlined")); + +var _SettingsOverscanRounded = _interopRequireDefault(require("./SettingsOverscanRounded")); + +var _SettingsOverscanSharp = _interopRequireDefault(require("./SettingsOverscanSharp")); + +var _SettingsOverscanTwoTone = _interopRequireDefault(require("./SettingsOverscanTwoTone")); + +var _SettingsPhone = _interopRequireDefault(require("./SettingsPhone")); + +var _SettingsPhoneOutlined = _interopRequireDefault(require("./SettingsPhoneOutlined")); + +var _SettingsPhoneRounded = _interopRequireDefault(require("./SettingsPhoneRounded")); + +var _SettingsPhoneSharp = _interopRequireDefault(require("./SettingsPhoneSharp")); + +var _SettingsPhoneTwoTone = _interopRequireDefault(require("./SettingsPhoneTwoTone")); + +var _SettingsPower = _interopRequireDefault(require("./SettingsPower")); + +var _SettingsPowerOutlined = _interopRequireDefault(require("./SettingsPowerOutlined")); + +var _SettingsPowerRounded = _interopRequireDefault(require("./SettingsPowerRounded")); + +var _SettingsPowerSharp = _interopRequireDefault(require("./SettingsPowerSharp")); + +var _SettingsPowerTwoTone = _interopRequireDefault(require("./SettingsPowerTwoTone")); + +var _SettingsRemote = _interopRequireDefault(require("./SettingsRemote")); + +var _SettingsRemoteOutlined = _interopRequireDefault(require("./SettingsRemoteOutlined")); + +var _SettingsRemoteRounded = _interopRequireDefault(require("./SettingsRemoteRounded")); + +var _SettingsRemoteSharp = _interopRequireDefault(require("./SettingsRemoteSharp")); + +var _SettingsRemoteTwoTone = _interopRequireDefault(require("./SettingsRemoteTwoTone")); + +var _SettingsRounded = _interopRequireDefault(require("./SettingsRounded")); + +var _SettingsSharp = _interopRequireDefault(require("./SettingsSharp")); + +var _SettingsSuggest = _interopRequireDefault(require("./SettingsSuggest")); + +var _SettingsSuggestOutlined = _interopRequireDefault(require("./SettingsSuggestOutlined")); + +var _SettingsSuggestRounded = _interopRequireDefault(require("./SettingsSuggestRounded")); + +var _SettingsSuggestSharp = _interopRequireDefault(require("./SettingsSuggestSharp")); + +var _SettingsSuggestTwoTone = _interopRequireDefault(require("./SettingsSuggestTwoTone")); + +var _SettingsSystemDaydream = _interopRequireDefault(require("./SettingsSystemDaydream")); + +var _SettingsSystemDaydreamOutlined = _interopRequireDefault(require("./SettingsSystemDaydreamOutlined")); + +var _SettingsSystemDaydreamRounded = _interopRequireDefault(require("./SettingsSystemDaydreamRounded")); + +var _SettingsSystemDaydreamSharp = _interopRequireDefault(require("./SettingsSystemDaydreamSharp")); + +var _SettingsSystemDaydreamTwoTone = _interopRequireDefault(require("./SettingsSystemDaydreamTwoTone")); + +var _SettingsTwoTone = _interopRequireDefault(require("./SettingsTwoTone")); + +var _SettingsVoice = _interopRequireDefault(require("./SettingsVoice")); + +var _SettingsVoiceOutlined = _interopRequireDefault(require("./SettingsVoiceOutlined")); + +var _SettingsVoiceRounded = _interopRequireDefault(require("./SettingsVoiceRounded")); + +var _SettingsVoiceSharp = _interopRequireDefault(require("./SettingsVoiceSharp")); + +var _SettingsVoiceTwoTone = _interopRequireDefault(require("./SettingsVoiceTwoTone")); + +var _SevenK = _interopRequireDefault(require("./SevenK")); + +var _SevenKOutlined = _interopRequireDefault(require("./SevenKOutlined")); + +var _SevenKPlus = _interopRequireDefault(require("./SevenKPlus")); + +var _SevenKPlusOutlined = _interopRequireDefault(require("./SevenKPlusOutlined")); + +var _SevenKPlusRounded = _interopRequireDefault(require("./SevenKPlusRounded")); + +var _SevenKPlusSharp = _interopRequireDefault(require("./SevenKPlusSharp")); + +var _SevenKPlusTwoTone = _interopRequireDefault(require("./SevenKPlusTwoTone")); + +var _SevenKRounded = _interopRequireDefault(require("./SevenKRounded")); + +var _SevenKSharp = _interopRequireDefault(require("./SevenKSharp")); + +var _SevenKTwoTone = _interopRequireDefault(require("./SevenKTwoTone")); + +var _SevenMp = _interopRequireDefault(require("./SevenMp")); + +var _SevenMpOutlined = _interopRequireDefault(require("./SevenMpOutlined")); + +var _SevenMpRounded = _interopRequireDefault(require("./SevenMpRounded")); + +var _SevenMpSharp = _interopRequireDefault(require("./SevenMpSharp")); + +var _SevenMpTwoTone = _interopRequireDefault(require("./SevenMpTwoTone")); + +var _SeventeenMp = _interopRequireDefault(require("./SeventeenMp")); + +var _SeventeenMpOutlined = _interopRequireDefault(require("./SeventeenMpOutlined")); + +var _SeventeenMpRounded = _interopRequireDefault(require("./SeventeenMpRounded")); + +var _SeventeenMpSharp = _interopRequireDefault(require("./SeventeenMpSharp")); + +var _SeventeenMpTwoTone = _interopRequireDefault(require("./SeventeenMpTwoTone")); + +var _Share = _interopRequireDefault(require("./Share")); + +var _ShareLocation = _interopRequireDefault(require("./ShareLocation")); + +var _ShareLocationOutlined = _interopRequireDefault(require("./ShareLocationOutlined")); + +var _ShareLocationRounded = _interopRequireDefault(require("./ShareLocationRounded")); + +var _ShareLocationSharp = _interopRequireDefault(require("./ShareLocationSharp")); + +var _ShareLocationTwoTone = _interopRequireDefault(require("./ShareLocationTwoTone")); + +var _ShareOutlined = _interopRequireDefault(require("./ShareOutlined")); + +var _ShareRounded = _interopRequireDefault(require("./ShareRounded")); + +var _ShareSharp = _interopRequireDefault(require("./ShareSharp")); + +var _ShareTwoTone = _interopRequireDefault(require("./ShareTwoTone")); + +var _Shield = _interopRequireDefault(require("./Shield")); + +var _ShieldOutlined = _interopRequireDefault(require("./ShieldOutlined")); + +var _ShieldRounded = _interopRequireDefault(require("./ShieldRounded")); + +var _ShieldSharp = _interopRequireDefault(require("./ShieldSharp")); + +var _ShieldTwoTone = _interopRequireDefault(require("./ShieldTwoTone")); + +var _Shop = _interopRequireDefault(require("./Shop")); + +var _Shop2 = _interopRequireDefault(require("./Shop2")); + +var _Shop2Outlined = _interopRequireDefault(require("./Shop2Outlined")); + +var _Shop2Rounded = _interopRequireDefault(require("./Shop2Rounded")); + +var _Shop2Sharp = _interopRequireDefault(require("./Shop2Sharp")); + +var _Shop2TwoTone = _interopRequireDefault(require("./Shop2TwoTone")); + +var _ShopOutlined = _interopRequireDefault(require("./ShopOutlined")); + +var _ShopRounded = _interopRequireDefault(require("./ShopRounded")); + +var _ShopSharp = _interopRequireDefault(require("./ShopSharp")); + +var _ShopTwo = _interopRequireDefault(require("./ShopTwo")); + +var _ShopTwoOutlined = _interopRequireDefault(require("./ShopTwoOutlined")); + +var _ShopTwoRounded = _interopRequireDefault(require("./ShopTwoRounded")); + +var _ShopTwoSharp = _interopRequireDefault(require("./ShopTwoSharp")); + +var _ShopTwoTone = _interopRequireDefault(require("./ShopTwoTone")); + +var _ShopTwoTwoTone = _interopRequireDefault(require("./ShopTwoTwoTone")); + +var _ShoppingBag = _interopRequireDefault(require("./ShoppingBag")); + +var _ShoppingBagOutlined = _interopRequireDefault(require("./ShoppingBagOutlined")); + +var _ShoppingBagRounded = _interopRequireDefault(require("./ShoppingBagRounded")); + +var _ShoppingBagSharp = _interopRequireDefault(require("./ShoppingBagSharp")); + +var _ShoppingBagTwoTone = _interopRequireDefault(require("./ShoppingBagTwoTone")); + +var _ShoppingBasket = _interopRequireDefault(require("./ShoppingBasket")); + +var _ShoppingBasketOutlined = _interopRequireDefault(require("./ShoppingBasketOutlined")); + +var _ShoppingBasketRounded = _interopRequireDefault(require("./ShoppingBasketRounded")); + +var _ShoppingBasketSharp = _interopRequireDefault(require("./ShoppingBasketSharp")); + +var _ShoppingBasketTwoTone = _interopRequireDefault(require("./ShoppingBasketTwoTone")); + +var _ShoppingCart = _interopRequireDefault(require("./ShoppingCart")); + +var _ShoppingCartOutlined = _interopRequireDefault(require("./ShoppingCartOutlined")); + +var _ShoppingCartRounded = _interopRequireDefault(require("./ShoppingCartRounded")); + +var _ShoppingCartSharp = _interopRequireDefault(require("./ShoppingCartSharp")); + +var _ShoppingCartTwoTone = _interopRequireDefault(require("./ShoppingCartTwoTone")); + +var _ShortText = _interopRequireDefault(require("./ShortText")); + +var _ShortTextOutlined = _interopRequireDefault(require("./ShortTextOutlined")); + +var _ShortTextRounded = _interopRequireDefault(require("./ShortTextRounded")); + +var _ShortTextSharp = _interopRequireDefault(require("./ShortTextSharp")); + +var _ShortTextTwoTone = _interopRequireDefault(require("./ShortTextTwoTone")); + +var _Shortcut = _interopRequireDefault(require("./Shortcut")); + +var _ShortcutOutlined = _interopRequireDefault(require("./ShortcutOutlined")); + +var _ShortcutRounded = _interopRequireDefault(require("./ShortcutRounded")); + +var _ShortcutSharp = _interopRequireDefault(require("./ShortcutSharp")); + +var _ShortcutTwoTone = _interopRequireDefault(require("./ShortcutTwoTone")); + +var _ShowChart = _interopRequireDefault(require("./ShowChart")); + +var _ShowChartOutlined = _interopRequireDefault(require("./ShowChartOutlined")); + +var _ShowChartRounded = _interopRequireDefault(require("./ShowChartRounded")); + +var _ShowChartSharp = _interopRequireDefault(require("./ShowChartSharp")); + +var _ShowChartTwoTone = _interopRequireDefault(require("./ShowChartTwoTone")); + +var _Shower = _interopRequireDefault(require("./Shower")); + +var _ShowerOutlined = _interopRequireDefault(require("./ShowerOutlined")); + +var _ShowerRounded = _interopRequireDefault(require("./ShowerRounded")); + +var _ShowerSharp = _interopRequireDefault(require("./ShowerSharp")); + +var _ShowerTwoTone = _interopRequireDefault(require("./ShowerTwoTone")); + +var _Shuffle = _interopRequireDefault(require("./Shuffle")); + +var _ShuffleOn = _interopRequireDefault(require("./ShuffleOn")); + +var _ShuffleOnOutlined = _interopRequireDefault(require("./ShuffleOnOutlined")); + +var _ShuffleOnRounded = _interopRequireDefault(require("./ShuffleOnRounded")); + +var _ShuffleOnSharp = _interopRequireDefault(require("./ShuffleOnSharp")); + +var _ShuffleOnTwoTone = _interopRequireDefault(require("./ShuffleOnTwoTone")); + +var _ShuffleOutlined = _interopRequireDefault(require("./ShuffleOutlined")); + +var _ShuffleRounded = _interopRequireDefault(require("./ShuffleRounded")); + +var _ShuffleSharp = _interopRequireDefault(require("./ShuffleSharp")); + +var _ShuffleTwoTone = _interopRequireDefault(require("./ShuffleTwoTone")); + +var _ShutterSpeed = _interopRequireDefault(require("./ShutterSpeed")); + +var _ShutterSpeedOutlined = _interopRequireDefault(require("./ShutterSpeedOutlined")); + +var _ShutterSpeedRounded = _interopRequireDefault(require("./ShutterSpeedRounded")); + +var _ShutterSpeedSharp = _interopRequireDefault(require("./ShutterSpeedSharp")); + +var _ShutterSpeedTwoTone = _interopRequireDefault(require("./ShutterSpeedTwoTone")); + +var _Sick = _interopRequireDefault(require("./Sick")); + +var _SickOutlined = _interopRequireDefault(require("./SickOutlined")); + +var _SickRounded = _interopRequireDefault(require("./SickRounded")); + +var _SickSharp = _interopRequireDefault(require("./SickSharp")); + +var _SickTwoTone = _interopRequireDefault(require("./SickTwoTone")); + +var _SignalCellular0Bar = _interopRequireDefault(require("./SignalCellular0Bar")); + +var _SignalCellular0BarOutlined = _interopRequireDefault(require("./SignalCellular0BarOutlined")); + +var _SignalCellular0BarRounded = _interopRequireDefault(require("./SignalCellular0BarRounded")); + +var _SignalCellular0BarSharp = _interopRequireDefault(require("./SignalCellular0BarSharp")); + +var _SignalCellular0BarTwoTone = _interopRequireDefault(require("./SignalCellular0BarTwoTone")); + +var _SignalCellular1Bar = _interopRequireDefault(require("./SignalCellular1Bar")); + +var _SignalCellular1BarOutlined = _interopRequireDefault(require("./SignalCellular1BarOutlined")); + +var _SignalCellular1BarRounded = _interopRequireDefault(require("./SignalCellular1BarRounded")); + +var _SignalCellular1BarSharp = _interopRequireDefault(require("./SignalCellular1BarSharp")); + +var _SignalCellular1BarTwoTone = _interopRequireDefault(require("./SignalCellular1BarTwoTone")); + +var _SignalCellular2Bar = _interopRequireDefault(require("./SignalCellular2Bar")); + +var _SignalCellular2BarOutlined = _interopRequireDefault(require("./SignalCellular2BarOutlined")); + +var _SignalCellular2BarRounded = _interopRequireDefault(require("./SignalCellular2BarRounded")); + +var _SignalCellular2BarSharp = _interopRequireDefault(require("./SignalCellular2BarSharp")); + +var _SignalCellular2BarTwoTone = _interopRequireDefault(require("./SignalCellular2BarTwoTone")); + +var _SignalCellular3Bar = _interopRequireDefault(require("./SignalCellular3Bar")); + +var _SignalCellular3BarOutlined = _interopRequireDefault(require("./SignalCellular3BarOutlined")); + +var _SignalCellular3BarRounded = _interopRequireDefault(require("./SignalCellular3BarRounded")); + +var _SignalCellular3BarSharp = _interopRequireDefault(require("./SignalCellular3BarSharp")); + +var _SignalCellular3BarTwoTone = _interopRequireDefault(require("./SignalCellular3BarTwoTone")); + +var _SignalCellular4Bar = _interopRequireDefault(require("./SignalCellular4Bar")); + +var _SignalCellular4BarOutlined = _interopRequireDefault(require("./SignalCellular4BarOutlined")); + +var _SignalCellular4BarRounded = _interopRequireDefault(require("./SignalCellular4BarRounded")); + +var _SignalCellular4BarSharp = _interopRequireDefault(require("./SignalCellular4BarSharp")); + +var _SignalCellular4BarTwoTone = _interopRequireDefault(require("./SignalCellular4BarTwoTone")); + +var _SignalCellularAlt = _interopRequireDefault(require("./SignalCellularAlt")); + +var _SignalCellularAltOutlined = _interopRequireDefault(require("./SignalCellularAltOutlined")); + +var _SignalCellularAltRounded = _interopRequireDefault(require("./SignalCellularAltRounded")); + +var _SignalCellularAltSharp = _interopRequireDefault(require("./SignalCellularAltSharp")); + +var _SignalCellularAltTwoTone = _interopRequireDefault(require("./SignalCellularAltTwoTone")); + +var _SignalCellularConnectedNoInternet0Bar = _interopRequireDefault(require("./SignalCellularConnectedNoInternet0Bar")); + +var _SignalCellularConnectedNoInternet0BarOutlined = _interopRequireDefault(require("./SignalCellularConnectedNoInternet0BarOutlined")); + +var _SignalCellularConnectedNoInternet0BarRounded = _interopRequireDefault(require("./SignalCellularConnectedNoInternet0BarRounded")); + +var _SignalCellularConnectedNoInternet0BarSharp = _interopRequireDefault(require("./SignalCellularConnectedNoInternet0BarSharp")); + +var _SignalCellularConnectedNoInternet0BarTwoTone = _interopRequireDefault(require("./SignalCellularConnectedNoInternet0BarTwoTone")); + +var _SignalCellularConnectedNoInternet1Bar = _interopRequireDefault(require("./SignalCellularConnectedNoInternet1Bar")); + +var _SignalCellularConnectedNoInternet1BarOutlined = _interopRequireDefault(require("./SignalCellularConnectedNoInternet1BarOutlined")); + +var _SignalCellularConnectedNoInternet1BarRounded = _interopRequireDefault(require("./SignalCellularConnectedNoInternet1BarRounded")); + +var _SignalCellularConnectedNoInternet1BarSharp = _interopRequireDefault(require("./SignalCellularConnectedNoInternet1BarSharp")); + +var _SignalCellularConnectedNoInternet1BarTwoTone = _interopRequireDefault(require("./SignalCellularConnectedNoInternet1BarTwoTone")); + +var _SignalCellularConnectedNoInternet2Bar = _interopRequireDefault(require("./SignalCellularConnectedNoInternet2Bar")); + +var _SignalCellularConnectedNoInternet2BarOutlined = _interopRequireDefault(require("./SignalCellularConnectedNoInternet2BarOutlined")); + +var _SignalCellularConnectedNoInternet2BarRounded = _interopRequireDefault(require("./SignalCellularConnectedNoInternet2BarRounded")); + +var _SignalCellularConnectedNoInternet2BarSharp = _interopRequireDefault(require("./SignalCellularConnectedNoInternet2BarSharp")); + +var _SignalCellularConnectedNoInternet2BarTwoTone = _interopRequireDefault(require("./SignalCellularConnectedNoInternet2BarTwoTone")); + +var _SignalCellularConnectedNoInternet3Bar = _interopRequireDefault(require("./SignalCellularConnectedNoInternet3Bar")); + +var _SignalCellularConnectedNoInternet3BarOutlined = _interopRequireDefault(require("./SignalCellularConnectedNoInternet3BarOutlined")); + +var _SignalCellularConnectedNoInternet3BarRounded = _interopRequireDefault(require("./SignalCellularConnectedNoInternet3BarRounded")); + +var _SignalCellularConnectedNoInternet3BarSharp = _interopRequireDefault(require("./SignalCellularConnectedNoInternet3BarSharp")); + +var _SignalCellularConnectedNoInternet3BarTwoTone = _interopRequireDefault(require("./SignalCellularConnectedNoInternet3BarTwoTone")); + +var _SignalCellularConnectedNoInternet4Bar = _interopRequireDefault(require("./SignalCellularConnectedNoInternet4Bar")); + +var _SignalCellularConnectedNoInternet4BarOutlined = _interopRequireDefault(require("./SignalCellularConnectedNoInternet4BarOutlined")); + +var _SignalCellularConnectedNoInternet4BarRounded = _interopRequireDefault(require("./SignalCellularConnectedNoInternet4BarRounded")); + +var _SignalCellularConnectedNoInternet4BarSharp = _interopRequireDefault(require("./SignalCellularConnectedNoInternet4BarSharp")); + +var _SignalCellularConnectedNoInternet4BarTwoTone = _interopRequireDefault(require("./SignalCellularConnectedNoInternet4BarTwoTone")); + +var _SignalCellularNoSim = _interopRequireDefault(require("./SignalCellularNoSim")); + +var _SignalCellularNoSimOutlined = _interopRequireDefault(require("./SignalCellularNoSimOutlined")); + +var _SignalCellularNoSimRounded = _interopRequireDefault(require("./SignalCellularNoSimRounded")); + +var _SignalCellularNoSimSharp = _interopRequireDefault(require("./SignalCellularNoSimSharp")); + +var _SignalCellularNoSimTwoTone = _interopRequireDefault(require("./SignalCellularNoSimTwoTone")); + +var _SignalCellularNodata = _interopRequireDefault(require("./SignalCellularNodata")); + +var _SignalCellularNodataOutlined = _interopRequireDefault(require("./SignalCellularNodataOutlined")); + +var _SignalCellularNodataRounded = _interopRequireDefault(require("./SignalCellularNodataRounded")); + +var _SignalCellularNodataSharp = _interopRequireDefault(require("./SignalCellularNodataSharp")); + +var _SignalCellularNodataTwoTone = _interopRequireDefault(require("./SignalCellularNodataTwoTone")); + +var _SignalCellularNull = _interopRequireDefault(require("./SignalCellularNull")); + +var _SignalCellularNullOutlined = _interopRequireDefault(require("./SignalCellularNullOutlined")); + +var _SignalCellularNullRounded = _interopRequireDefault(require("./SignalCellularNullRounded")); + +var _SignalCellularNullSharp = _interopRequireDefault(require("./SignalCellularNullSharp")); + +var _SignalCellularNullTwoTone = _interopRequireDefault(require("./SignalCellularNullTwoTone")); + +var _SignalCellularOff = _interopRequireDefault(require("./SignalCellularOff")); + +var _SignalCellularOffOutlined = _interopRequireDefault(require("./SignalCellularOffOutlined")); + +var _SignalCellularOffRounded = _interopRequireDefault(require("./SignalCellularOffRounded")); + +var _SignalCellularOffSharp = _interopRequireDefault(require("./SignalCellularOffSharp")); + +var _SignalCellularOffTwoTone = _interopRequireDefault(require("./SignalCellularOffTwoTone")); + +var _SignalWifi0Bar = _interopRequireDefault(require("./SignalWifi0Bar")); + +var _SignalWifi0BarOutlined = _interopRequireDefault(require("./SignalWifi0BarOutlined")); + +var _SignalWifi0BarRounded = _interopRequireDefault(require("./SignalWifi0BarRounded")); + +var _SignalWifi0BarSharp = _interopRequireDefault(require("./SignalWifi0BarSharp")); + +var _SignalWifi0BarTwoTone = _interopRequireDefault(require("./SignalWifi0BarTwoTone")); + +var _SignalWifi1Bar = _interopRequireDefault(require("./SignalWifi1Bar")); + +var _SignalWifi1BarLock = _interopRequireDefault(require("./SignalWifi1BarLock")); + +var _SignalWifi1BarLockOutlined = _interopRequireDefault(require("./SignalWifi1BarLockOutlined")); + +var _SignalWifi1BarLockRounded = _interopRequireDefault(require("./SignalWifi1BarLockRounded")); + +var _SignalWifi1BarLockSharp = _interopRequireDefault(require("./SignalWifi1BarLockSharp")); + +var _SignalWifi1BarLockTwoTone = _interopRequireDefault(require("./SignalWifi1BarLockTwoTone")); + +var _SignalWifi1BarOutlined = _interopRequireDefault(require("./SignalWifi1BarOutlined")); + +var _SignalWifi1BarRounded = _interopRequireDefault(require("./SignalWifi1BarRounded")); + +var _SignalWifi1BarSharp = _interopRequireDefault(require("./SignalWifi1BarSharp")); + +var _SignalWifi1BarTwoTone = _interopRequireDefault(require("./SignalWifi1BarTwoTone")); + +var _SignalWifi2Bar = _interopRequireDefault(require("./SignalWifi2Bar")); + +var _SignalWifi2BarLock = _interopRequireDefault(require("./SignalWifi2BarLock")); + +var _SignalWifi2BarLockOutlined = _interopRequireDefault(require("./SignalWifi2BarLockOutlined")); + +var _SignalWifi2BarLockRounded = _interopRequireDefault(require("./SignalWifi2BarLockRounded")); + +var _SignalWifi2BarLockSharp = _interopRequireDefault(require("./SignalWifi2BarLockSharp")); + +var _SignalWifi2BarLockTwoTone = _interopRequireDefault(require("./SignalWifi2BarLockTwoTone")); + +var _SignalWifi2BarOutlined = _interopRequireDefault(require("./SignalWifi2BarOutlined")); + +var _SignalWifi2BarRounded = _interopRequireDefault(require("./SignalWifi2BarRounded")); + +var _SignalWifi2BarSharp = _interopRequireDefault(require("./SignalWifi2BarSharp")); + +var _SignalWifi2BarTwoTone = _interopRequireDefault(require("./SignalWifi2BarTwoTone")); + +var _SignalWifi3Bar = _interopRequireDefault(require("./SignalWifi3Bar")); + +var _SignalWifi3BarLock = _interopRequireDefault(require("./SignalWifi3BarLock")); + +var _SignalWifi3BarLockOutlined = _interopRequireDefault(require("./SignalWifi3BarLockOutlined")); + +var _SignalWifi3BarLockRounded = _interopRequireDefault(require("./SignalWifi3BarLockRounded")); + +var _SignalWifi3BarLockSharp = _interopRequireDefault(require("./SignalWifi3BarLockSharp")); + +var _SignalWifi3BarLockTwoTone = _interopRequireDefault(require("./SignalWifi3BarLockTwoTone")); + +var _SignalWifi3BarOutlined = _interopRequireDefault(require("./SignalWifi3BarOutlined")); + +var _SignalWifi3BarRounded = _interopRequireDefault(require("./SignalWifi3BarRounded")); + +var _SignalWifi3BarSharp = _interopRequireDefault(require("./SignalWifi3BarSharp")); + +var _SignalWifi3BarTwoTone = _interopRequireDefault(require("./SignalWifi3BarTwoTone")); + +var _SignalWifi4Bar = _interopRequireDefault(require("./SignalWifi4Bar")); + +var _SignalWifi4BarLock = _interopRequireDefault(require("./SignalWifi4BarLock")); + +var _SignalWifi4BarLockOutlined = _interopRequireDefault(require("./SignalWifi4BarLockOutlined")); + +var _SignalWifi4BarLockRounded = _interopRequireDefault(require("./SignalWifi4BarLockRounded")); + +var _SignalWifi4BarLockSharp = _interopRequireDefault(require("./SignalWifi4BarLockSharp")); + +var _SignalWifi4BarLockTwoTone = _interopRequireDefault(require("./SignalWifi4BarLockTwoTone")); + +var _SignalWifi4BarOutlined = _interopRequireDefault(require("./SignalWifi4BarOutlined")); + +var _SignalWifi4BarRounded = _interopRequireDefault(require("./SignalWifi4BarRounded")); + +var _SignalWifi4BarSharp = _interopRequireDefault(require("./SignalWifi4BarSharp")); + +var _SignalWifi4BarTwoTone = _interopRequireDefault(require("./SignalWifi4BarTwoTone")); + +var _SignalWifiBad = _interopRequireDefault(require("./SignalWifiBad")); + +var _SignalWifiBadOutlined = _interopRequireDefault(require("./SignalWifiBadOutlined")); + +var _SignalWifiBadRounded = _interopRequireDefault(require("./SignalWifiBadRounded")); + +var _SignalWifiBadSharp = _interopRequireDefault(require("./SignalWifiBadSharp")); + +var _SignalWifiBadTwoTone = _interopRequireDefault(require("./SignalWifiBadTwoTone")); + +var _SignalWifiConnectedNoInternet = _interopRequireDefault(require("./SignalWifiConnectedNoInternet4")); + +var _SignalWifiConnectedNoInternet4Outlined = _interopRequireDefault(require("./SignalWifiConnectedNoInternet4Outlined")); + +var _SignalWifiConnectedNoInternet4Rounded = _interopRequireDefault(require("./SignalWifiConnectedNoInternet4Rounded")); + +var _SignalWifiConnectedNoInternet4Sharp = _interopRequireDefault(require("./SignalWifiConnectedNoInternet4Sharp")); + +var _SignalWifiConnectedNoInternet4TwoTone = _interopRequireDefault(require("./SignalWifiConnectedNoInternet4TwoTone")); + +var _SignalWifiOff = _interopRequireDefault(require("./SignalWifiOff")); + +var _SignalWifiOffOutlined = _interopRequireDefault(require("./SignalWifiOffOutlined")); + +var _SignalWifiOffRounded = _interopRequireDefault(require("./SignalWifiOffRounded")); + +var _SignalWifiOffSharp = _interopRequireDefault(require("./SignalWifiOffSharp")); + +var _SignalWifiOffTwoTone = _interopRequireDefault(require("./SignalWifiOffTwoTone")); + +var _SignalWifiStatusbar4Bar = _interopRequireDefault(require("./SignalWifiStatusbar4Bar")); + +var _SignalWifiStatusbar4BarOutlined = _interopRequireDefault(require("./SignalWifiStatusbar4BarOutlined")); + +var _SignalWifiStatusbar4BarRounded = _interopRequireDefault(require("./SignalWifiStatusbar4BarRounded")); + +var _SignalWifiStatusbar4BarSharp = _interopRequireDefault(require("./SignalWifiStatusbar4BarSharp")); + +var _SignalWifiStatusbar4BarTwoTone = _interopRequireDefault(require("./SignalWifiStatusbar4BarTwoTone")); + +var _SignalWifiStatusbarConnectedNoInternet = _interopRequireDefault(require("./SignalWifiStatusbarConnectedNoInternet4")); + +var _SignalWifiStatusbarConnectedNoInternet4Outlined = _interopRequireDefault(require("./SignalWifiStatusbarConnectedNoInternet4Outlined")); + +var _SignalWifiStatusbarConnectedNoInternet4Rounded = _interopRequireDefault(require("./SignalWifiStatusbarConnectedNoInternet4Rounded")); + +var _SignalWifiStatusbarConnectedNoInternet4Sharp = _interopRequireDefault(require("./SignalWifiStatusbarConnectedNoInternet4Sharp")); + +var _SignalWifiStatusbarConnectedNoInternet4TwoTone = _interopRequireDefault(require("./SignalWifiStatusbarConnectedNoInternet4TwoTone")); + +var _SignalWifiStatusbarNull = _interopRequireDefault(require("./SignalWifiStatusbarNull")); + +var _SignalWifiStatusbarNullOutlined = _interopRequireDefault(require("./SignalWifiStatusbarNullOutlined")); + +var _SignalWifiStatusbarNullRounded = _interopRequireDefault(require("./SignalWifiStatusbarNullRounded")); + +var _SignalWifiStatusbarNullSharp = _interopRequireDefault(require("./SignalWifiStatusbarNullSharp")); + +var _SignalWifiStatusbarNullTwoTone = _interopRequireDefault(require("./SignalWifiStatusbarNullTwoTone")); + +var _SimCard = _interopRequireDefault(require("./SimCard")); + +var _SimCardAlert = _interopRequireDefault(require("./SimCardAlert")); + +var _SimCardAlertOutlined = _interopRequireDefault(require("./SimCardAlertOutlined")); + +var _SimCardAlertRounded = _interopRequireDefault(require("./SimCardAlertRounded")); + +var _SimCardAlertSharp = _interopRequireDefault(require("./SimCardAlertSharp")); + +var _SimCardAlertTwoTone = _interopRequireDefault(require("./SimCardAlertTwoTone")); + +var _SimCardDownload = _interopRequireDefault(require("./SimCardDownload")); + +var _SimCardDownloadOutlined = _interopRequireDefault(require("./SimCardDownloadOutlined")); + +var _SimCardDownloadRounded = _interopRequireDefault(require("./SimCardDownloadRounded")); + +var _SimCardDownloadSharp = _interopRequireDefault(require("./SimCardDownloadSharp")); + +var _SimCardDownloadTwoTone = _interopRequireDefault(require("./SimCardDownloadTwoTone")); + +var _SimCardOutlined = _interopRequireDefault(require("./SimCardOutlined")); + +var _SimCardRounded = _interopRequireDefault(require("./SimCardRounded")); + +var _SimCardSharp = _interopRequireDefault(require("./SimCardSharp")); + +var _SimCardTwoTone = _interopRequireDefault(require("./SimCardTwoTone")); + +var _SingleBed = _interopRequireDefault(require("./SingleBed")); + +var _SingleBedOutlined = _interopRequireDefault(require("./SingleBedOutlined")); + +var _SingleBedRounded = _interopRequireDefault(require("./SingleBedRounded")); + +var _SingleBedSharp = _interopRequireDefault(require("./SingleBedSharp")); + +var _SingleBedTwoTone = _interopRequireDefault(require("./SingleBedTwoTone")); + +var _Sip = _interopRequireDefault(require("./Sip")); + +var _SipOutlined = _interopRequireDefault(require("./SipOutlined")); + +var _SipRounded = _interopRequireDefault(require("./SipRounded")); + +var _SipSharp = _interopRequireDefault(require("./SipSharp")); + +var _SipTwoTone = _interopRequireDefault(require("./SipTwoTone")); + +var _SixK = _interopRequireDefault(require("./SixK")); + +var _SixKOutlined = _interopRequireDefault(require("./SixKOutlined")); + +var _SixKPlus = _interopRequireDefault(require("./SixKPlus")); + +var _SixKPlusOutlined = _interopRequireDefault(require("./SixKPlusOutlined")); + +var _SixKPlusRounded = _interopRequireDefault(require("./SixKPlusRounded")); + +var _SixKPlusSharp = _interopRequireDefault(require("./SixKPlusSharp")); + +var _SixKPlusTwoTone = _interopRequireDefault(require("./SixKPlusTwoTone")); + +var _SixKRounded = _interopRequireDefault(require("./SixKRounded")); + +var _SixKSharp = _interopRequireDefault(require("./SixKSharp")); + +var _SixKTwoTone = _interopRequireDefault(require("./SixKTwoTone")); + +var _SixMp = _interopRequireDefault(require("./SixMp")); + +var _SixMpOutlined = _interopRequireDefault(require("./SixMpOutlined")); + +var _SixMpRounded = _interopRequireDefault(require("./SixMpRounded")); + +var _SixMpSharp = _interopRequireDefault(require("./SixMpSharp")); + +var _SixMpTwoTone = _interopRequireDefault(require("./SixMpTwoTone")); + +var _SixteenMp = _interopRequireDefault(require("./SixteenMp")); + +var _SixteenMpOutlined = _interopRequireDefault(require("./SixteenMpOutlined")); + +var _SixteenMpRounded = _interopRequireDefault(require("./SixteenMpRounded")); + +var _SixteenMpSharp = _interopRequireDefault(require("./SixteenMpSharp")); + +var _SixteenMpTwoTone = _interopRequireDefault(require("./SixteenMpTwoTone")); + +var _SixtyFps = _interopRequireDefault(require("./SixtyFps")); + +var _SixtyFpsOutlined = _interopRequireDefault(require("./SixtyFpsOutlined")); + +var _SixtyFpsRounded = _interopRequireDefault(require("./SixtyFpsRounded")); + +var _SixtyFpsSelect = _interopRequireDefault(require("./SixtyFpsSelect")); + +var _SixtyFpsSelectOutlined = _interopRequireDefault(require("./SixtyFpsSelectOutlined")); + +var _SixtyFpsSelectRounded = _interopRequireDefault(require("./SixtyFpsSelectRounded")); + +var _SixtyFpsSelectSharp = _interopRequireDefault(require("./SixtyFpsSelectSharp")); + +var _SixtyFpsSelectTwoTone = _interopRequireDefault(require("./SixtyFpsSelectTwoTone")); + +var _SixtyFpsSharp = _interopRequireDefault(require("./SixtyFpsSharp")); + +var _SixtyFpsTwoTone = _interopRequireDefault(require("./SixtyFpsTwoTone")); + +var _Skateboarding = _interopRequireDefault(require("./Skateboarding")); + +var _SkateboardingOutlined = _interopRequireDefault(require("./SkateboardingOutlined")); + +var _SkateboardingRounded = _interopRequireDefault(require("./SkateboardingRounded")); + +var _SkateboardingSharp = _interopRequireDefault(require("./SkateboardingSharp")); + +var _SkateboardingTwoTone = _interopRequireDefault(require("./SkateboardingTwoTone")); + +var _SkipNext = _interopRequireDefault(require("./SkipNext")); + +var _SkipNextOutlined = _interopRequireDefault(require("./SkipNextOutlined")); + +var _SkipNextRounded = _interopRequireDefault(require("./SkipNextRounded")); + +var _SkipNextSharp = _interopRequireDefault(require("./SkipNextSharp")); + +var _SkipNextTwoTone = _interopRequireDefault(require("./SkipNextTwoTone")); + +var _SkipPrevious = _interopRequireDefault(require("./SkipPrevious")); + +var _SkipPreviousOutlined = _interopRequireDefault(require("./SkipPreviousOutlined")); + +var _SkipPreviousRounded = _interopRequireDefault(require("./SkipPreviousRounded")); + +var _SkipPreviousSharp = _interopRequireDefault(require("./SkipPreviousSharp")); + +var _SkipPreviousTwoTone = _interopRequireDefault(require("./SkipPreviousTwoTone")); + +var _Sledding = _interopRequireDefault(require("./Sledding")); + +var _SleddingOutlined = _interopRequireDefault(require("./SleddingOutlined")); + +var _SleddingRounded = _interopRequireDefault(require("./SleddingRounded")); + +var _SleddingSharp = _interopRequireDefault(require("./SleddingSharp")); + +var _SleddingTwoTone = _interopRequireDefault(require("./SleddingTwoTone")); + +var _Slideshow = _interopRequireDefault(require("./Slideshow")); + +var _SlideshowOutlined = _interopRequireDefault(require("./SlideshowOutlined")); + +var _SlideshowRounded = _interopRequireDefault(require("./SlideshowRounded")); + +var _SlideshowSharp = _interopRequireDefault(require("./SlideshowSharp")); + +var _SlideshowTwoTone = _interopRequireDefault(require("./SlideshowTwoTone")); + +var _SlowMotionVideo = _interopRequireDefault(require("./SlowMotionVideo")); + +var _SlowMotionVideoOutlined = _interopRequireDefault(require("./SlowMotionVideoOutlined")); + +var _SlowMotionVideoRounded = _interopRequireDefault(require("./SlowMotionVideoRounded")); + +var _SlowMotionVideoSharp = _interopRequireDefault(require("./SlowMotionVideoSharp")); + +var _SlowMotionVideoTwoTone = _interopRequireDefault(require("./SlowMotionVideoTwoTone")); + +var _SmartButton = _interopRequireDefault(require("./SmartButton")); + +var _SmartButtonOutlined = _interopRequireDefault(require("./SmartButtonOutlined")); + +var _SmartButtonRounded = _interopRequireDefault(require("./SmartButtonRounded")); + +var _SmartButtonSharp = _interopRequireDefault(require("./SmartButtonSharp")); + +var _SmartButtonTwoTone = _interopRequireDefault(require("./SmartButtonTwoTone")); + +var _SmartDisplay = _interopRequireDefault(require("./SmartDisplay")); + +var _SmartDisplayOutlined = _interopRequireDefault(require("./SmartDisplayOutlined")); + +var _SmartDisplayRounded = _interopRequireDefault(require("./SmartDisplayRounded")); + +var _SmartDisplaySharp = _interopRequireDefault(require("./SmartDisplaySharp")); + +var _SmartDisplayTwoTone = _interopRequireDefault(require("./SmartDisplayTwoTone")); + +var _SmartScreen = _interopRequireDefault(require("./SmartScreen")); + +var _SmartScreenOutlined = _interopRequireDefault(require("./SmartScreenOutlined")); + +var _SmartScreenRounded = _interopRequireDefault(require("./SmartScreenRounded")); + +var _SmartScreenSharp = _interopRequireDefault(require("./SmartScreenSharp")); + +var _SmartScreenTwoTone = _interopRequireDefault(require("./SmartScreenTwoTone")); + +var _SmartToy = _interopRequireDefault(require("./SmartToy")); + +var _SmartToyOutlined = _interopRequireDefault(require("./SmartToyOutlined")); + +var _SmartToyRounded = _interopRequireDefault(require("./SmartToyRounded")); + +var _SmartToySharp = _interopRequireDefault(require("./SmartToySharp")); + +var _SmartToyTwoTone = _interopRequireDefault(require("./SmartToyTwoTone")); + +var _Smartphone = _interopRequireDefault(require("./Smartphone")); + +var _SmartphoneOutlined = _interopRequireDefault(require("./SmartphoneOutlined")); + +var _SmartphoneRounded = _interopRequireDefault(require("./SmartphoneRounded")); + +var _SmartphoneSharp = _interopRequireDefault(require("./SmartphoneSharp")); + +var _SmartphoneTwoTone = _interopRequireDefault(require("./SmartphoneTwoTone")); + +var _SmokeFree = _interopRequireDefault(require("./SmokeFree")); + +var _SmokeFreeOutlined = _interopRequireDefault(require("./SmokeFreeOutlined")); + +var _SmokeFreeRounded = _interopRequireDefault(require("./SmokeFreeRounded")); + +var _SmokeFreeSharp = _interopRequireDefault(require("./SmokeFreeSharp")); + +var _SmokeFreeTwoTone = _interopRequireDefault(require("./SmokeFreeTwoTone")); + +var _SmokingRooms = _interopRequireDefault(require("./SmokingRooms")); + +var _SmokingRoomsOutlined = _interopRequireDefault(require("./SmokingRoomsOutlined")); + +var _SmokingRoomsRounded = _interopRequireDefault(require("./SmokingRoomsRounded")); + +var _SmokingRoomsSharp = _interopRequireDefault(require("./SmokingRoomsSharp")); + +var _SmokingRoomsTwoTone = _interopRequireDefault(require("./SmokingRoomsTwoTone")); + +var _Sms = _interopRequireDefault(require("./Sms")); + +var _SmsFailed = _interopRequireDefault(require("./SmsFailed")); + +var _SmsFailedOutlined = _interopRequireDefault(require("./SmsFailedOutlined")); + +var _SmsFailedRounded = _interopRequireDefault(require("./SmsFailedRounded")); + +var _SmsFailedSharp = _interopRequireDefault(require("./SmsFailedSharp")); + +var _SmsFailedTwoTone = _interopRequireDefault(require("./SmsFailedTwoTone")); + +var _SmsOutlined = _interopRequireDefault(require("./SmsOutlined")); + +var _SmsRounded = _interopRequireDefault(require("./SmsRounded")); + +var _SmsSharp = _interopRequireDefault(require("./SmsSharp")); + +var _SmsTwoTone = _interopRequireDefault(require("./SmsTwoTone")); + +var _SnippetFolder = _interopRequireDefault(require("./SnippetFolder")); + +var _SnippetFolderOutlined = _interopRequireDefault(require("./SnippetFolderOutlined")); + +var _SnippetFolderRounded = _interopRequireDefault(require("./SnippetFolderRounded")); + +var _SnippetFolderSharp = _interopRequireDefault(require("./SnippetFolderSharp")); + +var _SnippetFolderTwoTone = _interopRequireDefault(require("./SnippetFolderTwoTone")); + +var _Snooze = _interopRequireDefault(require("./Snooze")); + +var _SnoozeOutlined = _interopRequireDefault(require("./SnoozeOutlined")); + +var _SnoozeRounded = _interopRequireDefault(require("./SnoozeRounded")); + +var _SnoozeSharp = _interopRequireDefault(require("./SnoozeSharp")); + +var _SnoozeTwoTone = _interopRequireDefault(require("./SnoozeTwoTone")); + +var _Snowboarding = _interopRequireDefault(require("./Snowboarding")); + +var _SnowboardingOutlined = _interopRequireDefault(require("./SnowboardingOutlined")); + +var _SnowboardingRounded = _interopRequireDefault(require("./SnowboardingRounded")); + +var _SnowboardingSharp = _interopRequireDefault(require("./SnowboardingSharp")); + +var _SnowboardingTwoTone = _interopRequireDefault(require("./SnowboardingTwoTone")); + +var _Snowmobile = _interopRequireDefault(require("./Snowmobile")); + +var _SnowmobileOutlined = _interopRequireDefault(require("./SnowmobileOutlined")); + +var _SnowmobileRounded = _interopRequireDefault(require("./SnowmobileRounded")); + +var _SnowmobileSharp = _interopRequireDefault(require("./SnowmobileSharp")); + +var _SnowmobileTwoTone = _interopRequireDefault(require("./SnowmobileTwoTone")); + +var _Snowshoeing = _interopRequireDefault(require("./Snowshoeing")); + +var _SnowshoeingOutlined = _interopRequireDefault(require("./SnowshoeingOutlined")); + +var _SnowshoeingRounded = _interopRequireDefault(require("./SnowshoeingRounded")); + +var _SnowshoeingSharp = _interopRequireDefault(require("./SnowshoeingSharp")); + +var _SnowshoeingTwoTone = _interopRequireDefault(require("./SnowshoeingTwoTone")); + +var _Soap = _interopRequireDefault(require("./Soap")); + +var _SoapOutlined = _interopRequireDefault(require("./SoapOutlined")); + +var _SoapRounded = _interopRequireDefault(require("./SoapRounded")); + +var _SoapSharp = _interopRequireDefault(require("./SoapSharp")); + +var _SoapTwoTone = _interopRequireDefault(require("./SoapTwoTone")); + +var _SocialDistance = _interopRequireDefault(require("./SocialDistance")); + +var _SocialDistanceOutlined = _interopRequireDefault(require("./SocialDistanceOutlined")); + +var _SocialDistanceRounded = _interopRequireDefault(require("./SocialDistanceRounded")); + +var _SocialDistanceSharp = _interopRequireDefault(require("./SocialDistanceSharp")); + +var _SocialDistanceTwoTone = _interopRequireDefault(require("./SocialDistanceTwoTone")); + +var _Sort = _interopRequireDefault(require("./Sort")); + +var _SortByAlpha = _interopRequireDefault(require("./SortByAlpha")); + +var _SortByAlphaOutlined = _interopRequireDefault(require("./SortByAlphaOutlined")); + +var _SortByAlphaRounded = _interopRequireDefault(require("./SortByAlphaRounded")); + +var _SortByAlphaSharp = _interopRequireDefault(require("./SortByAlphaSharp")); + +var _SortByAlphaTwoTone = _interopRequireDefault(require("./SortByAlphaTwoTone")); + +var _SortOutlined = _interopRequireDefault(require("./SortOutlined")); + +var _SortRounded = _interopRequireDefault(require("./SortRounded")); + +var _SortSharp = _interopRequireDefault(require("./SortSharp")); + +var _SortTwoTone = _interopRequireDefault(require("./SortTwoTone")); + +var _Source = _interopRequireDefault(require("./Source")); + +var _SourceOutlined = _interopRequireDefault(require("./SourceOutlined")); + +var _SourceRounded = _interopRequireDefault(require("./SourceRounded")); + +var _SourceSharp = _interopRequireDefault(require("./SourceSharp")); + +var _SourceTwoTone = _interopRequireDefault(require("./SourceTwoTone")); + +var _South = _interopRequireDefault(require("./South")); + +var _SouthEast = _interopRequireDefault(require("./SouthEast")); + +var _SouthEastOutlined = _interopRequireDefault(require("./SouthEastOutlined")); + +var _SouthEastRounded = _interopRequireDefault(require("./SouthEastRounded")); + +var _SouthEastSharp = _interopRequireDefault(require("./SouthEastSharp")); + +var _SouthEastTwoTone = _interopRequireDefault(require("./SouthEastTwoTone")); + +var _SouthOutlined = _interopRequireDefault(require("./SouthOutlined")); + +var _SouthRounded = _interopRequireDefault(require("./SouthRounded")); + +var _SouthSharp = _interopRequireDefault(require("./SouthSharp")); + +var _SouthTwoTone = _interopRequireDefault(require("./SouthTwoTone")); + +var _SouthWest = _interopRequireDefault(require("./SouthWest")); + +var _SouthWestOutlined = _interopRequireDefault(require("./SouthWestOutlined")); + +var _SouthWestRounded = _interopRequireDefault(require("./SouthWestRounded")); + +var _SouthWestSharp = _interopRequireDefault(require("./SouthWestSharp")); + +var _SouthWestTwoTone = _interopRequireDefault(require("./SouthWestTwoTone")); + +var _Spa = _interopRequireDefault(require("./Spa")); + +var _SpaOutlined = _interopRequireDefault(require("./SpaOutlined")); + +var _SpaRounded = _interopRequireDefault(require("./SpaRounded")); + +var _SpaSharp = _interopRequireDefault(require("./SpaSharp")); + +var _SpaTwoTone = _interopRequireDefault(require("./SpaTwoTone")); + +var _SpaceBar = _interopRequireDefault(require("./SpaceBar")); + +var _SpaceBarOutlined = _interopRequireDefault(require("./SpaceBarOutlined")); + +var _SpaceBarRounded = _interopRequireDefault(require("./SpaceBarRounded")); + +var _SpaceBarSharp = _interopRequireDefault(require("./SpaceBarSharp")); + +var _SpaceBarTwoTone = _interopRequireDefault(require("./SpaceBarTwoTone")); + +var _Speaker = _interopRequireDefault(require("./Speaker")); + +var _SpeakerGroup = _interopRequireDefault(require("./SpeakerGroup")); + +var _SpeakerGroupOutlined = _interopRequireDefault(require("./SpeakerGroupOutlined")); + +var _SpeakerGroupRounded = _interopRequireDefault(require("./SpeakerGroupRounded")); + +var _SpeakerGroupSharp = _interopRequireDefault(require("./SpeakerGroupSharp")); + +var _SpeakerGroupTwoTone = _interopRequireDefault(require("./SpeakerGroupTwoTone")); + +var _SpeakerNotes = _interopRequireDefault(require("./SpeakerNotes")); + +var _SpeakerNotesOff = _interopRequireDefault(require("./SpeakerNotesOff")); + +var _SpeakerNotesOffOutlined = _interopRequireDefault(require("./SpeakerNotesOffOutlined")); + +var _SpeakerNotesOffRounded = _interopRequireDefault(require("./SpeakerNotesOffRounded")); + +var _SpeakerNotesOffSharp = _interopRequireDefault(require("./SpeakerNotesOffSharp")); + +var _SpeakerNotesOffTwoTone = _interopRequireDefault(require("./SpeakerNotesOffTwoTone")); + +var _SpeakerNotesOutlined = _interopRequireDefault(require("./SpeakerNotesOutlined")); + +var _SpeakerNotesRounded = _interopRequireDefault(require("./SpeakerNotesRounded")); + +var _SpeakerNotesSharp = _interopRequireDefault(require("./SpeakerNotesSharp")); + +var _SpeakerNotesTwoTone = _interopRequireDefault(require("./SpeakerNotesTwoTone")); + +var _SpeakerOutlined = _interopRequireDefault(require("./SpeakerOutlined")); + +var _SpeakerPhone = _interopRequireDefault(require("./SpeakerPhone")); + +var _SpeakerPhoneOutlined = _interopRequireDefault(require("./SpeakerPhoneOutlined")); + +var _SpeakerPhoneRounded = _interopRequireDefault(require("./SpeakerPhoneRounded")); + +var _SpeakerPhoneSharp = _interopRequireDefault(require("./SpeakerPhoneSharp")); + +var _SpeakerPhoneTwoTone = _interopRequireDefault(require("./SpeakerPhoneTwoTone")); + +var _SpeakerRounded = _interopRequireDefault(require("./SpeakerRounded")); + +var _SpeakerSharp = _interopRequireDefault(require("./SpeakerSharp")); + +var _SpeakerTwoTone = _interopRequireDefault(require("./SpeakerTwoTone")); + +var _Speed = _interopRequireDefault(require("./Speed")); + +var _SpeedOutlined = _interopRequireDefault(require("./SpeedOutlined")); + +var _SpeedRounded = _interopRequireDefault(require("./SpeedRounded")); + +var _SpeedSharp = _interopRequireDefault(require("./SpeedSharp")); + +var _SpeedTwoTone = _interopRequireDefault(require("./SpeedTwoTone")); + +var _Spellcheck = _interopRequireDefault(require("./Spellcheck")); + +var _SpellcheckOutlined = _interopRequireDefault(require("./SpellcheckOutlined")); + +var _SpellcheckRounded = _interopRequireDefault(require("./SpellcheckRounded")); + +var _SpellcheckSharp = _interopRequireDefault(require("./SpellcheckSharp")); + +var _SpellcheckTwoTone = _interopRequireDefault(require("./SpellcheckTwoTone")); + +var _Splitscreen = _interopRequireDefault(require("./Splitscreen")); + +var _SplitscreenOutlined = _interopRequireDefault(require("./SplitscreenOutlined")); + +var _SplitscreenRounded = _interopRequireDefault(require("./SplitscreenRounded")); + +var _SplitscreenSharp = _interopRequireDefault(require("./SplitscreenSharp")); + +var _SplitscreenTwoTone = _interopRequireDefault(require("./SplitscreenTwoTone")); + +var _Sports = _interopRequireDefault(require("./Sports")); + +var _SportsBar = _interopRequireDefault(require("./SportsBar")); + +var _SportsBarOutlined = _interopRequireDefault(require("./SportsBarOutlined")); + +var _SportsBarRounded = _interopRequireDefault(require("./SportsBarRounded")); + +var _SportsBarSharp = _interopRequireDefault(require("./SportsBarSharp")); + +var _SportsBarTwoTone = _interopRequireDefault(require("./SportsBarTwoTone")); + +var _SportsBaseball = _interopRequireDefault(require("./SportsBaseball")); + +var _SportsBaseballOutlined = _interopRequireDefault(require("./SportsBaseballOutlined")); + +var _SportsBaseballRounded = _interopRequireDefault(require("./SportsBaseballRounded")); + +var _SportsBaseballSharp = _interopRequireDefault(require("./SportsBaseballSharp")); + +var _SportsBaseballTwoTone = _interopRequireDefault(require("./SportsBaseballTwoTone")); + +var _SportsBasketball = _interopRequireDefault(require("./SportsBasketball")); + +var _SportsBasketballOutlined = _interopRequireDefault(require("./SportsBasketballOutlined")); + +var _SportsBasketballRounded = _interopRequireDefault(require("./SportsBasketballRounded")); + +var _SportsBasketballSharp = _interopRequireDefault(require("./SportsBasketballSharp")); + +var _SportsBasketballTwoTone = _interopRequireDefault(require("./SportsBasketballTwoTone")); + +var _SportsCricket = _interopRequireDefault(require("./SportsCricket")); + +var _SportsCricketOutlined = _interopRequireDefault(require("./SportsCricketOutlined")); + +var _SportsCricketRounded = _interopRequireDefault(require("./SportsCricketRounded")); + +var _SportsCricketSharp = _interopRequireDefault(require("./SportsCricketSharp")); + +var _SportsCricketTwoTone = _interopRequireDefault(require("./SportsCricketTwoTone")); + +var _SportsEsports = _interopRequireDefault(require("./SportsEsports")); + +var _SportsEsportsOutlined = _interopRequireDefault(require("./SportsEsportsOutlined")); + +var _SportsEsportsRounded = _interopRequireDefault(require("./SportsEsportsRounded")); + +var _SportsEsportsSharp = _interopRequireDefault(require("./SportsEsportsSharp")); + +var _SportsEsportsTwoTone = _interopRequireDefault(require("./SportsEsportsTwoTone")); + +var _SportsFootball = _interopRequireDefault(require("./SportsFootball")); + +var _SportsFootballOutlined = _interopRequireDefault(require("./SportsFootballOutlined")); + +var _SportsFootballRounded = _interopRequireDefault(require("./SportsFootballRounded")); + +var _SportsFootballSharp = _interopRequireDefault(require("./SportsFootballSharp")); + +var _SportsFootballTwoTone = _interopRequireDefault(require("./SportsFootballTwoTone")); + +var _SportsGolf = _interopRequireDefault(require("./SportsGolf")); + +var _SportsGolfOutlined = _interopRequireDefault(require("./SportsGolfOutlined")); + +var _SportsGolfRounded = _interopRequireDefault(require("./SportsGolfRounded")); + +var _SportsGolfSharp = _interopRequireDefault(require("./SportsGolfSharp")); + +var _SportsGolfTwoTone = _interopRequireDefault(require("./SportsGolfTwoTone")); + +var _SportsHandball = _interopRequireDefault(require("./SportsHandball")); + +var _SportsHandballOutlined = _interopRequireDefault(require("./SportsHandballOutlined")); + +var _SportsHandballRounded = _interopRequireDefault(require("./SportsHandballRounded")); + +var _SportsHandballSharp = _interopRequireDefault(require("./SportsHandballSharp")); + +var _SportsHandballTwoTone = _interopRequireDefault(require("./SportsHandballTwoTone")); + +var _SportsHockey = _interopRequireDefault(require("./SportsHockey")); + +var _SportsHockeyOutlined = _interopRequireDefault(require("./SportsHockeyOutlined")); + +var _SportsHockeyRounded = _interopRequireDefault(require("./SportsHockeyRounded")); + +var _SportsHockeySharp = _interopRequireDefault(require("./SportsHockeySharp")); + +var _SportsHockeyTwoTone = _interopRequireDefault(require("./SportsHockeyTwoTone")); + +var _SportsKabaddi = _interopRequireDefault(require("./SportsKabaddi")); + +var _SportsKabaddiOutlined = _interopRequireDefault(require("./SportsKabaddiOutlined")); + +var _SportsKabaddiRounded = _interopRequireDefault(require("./SportsKabaddiRounded")); + +var _SportsKabaddiSharp = _interopRequireDefault(require("./SportsKabaddiSharp")); + +var _SportsKabaddiTwoTone = _interopRequireDefault(require("./SportsKabaddiTwoTone")); + +var _SportsMma = _interopRequireDefault(require("./SportsMma")); + +var _SportsMmaOutlined = _interopRequireDefault(require("./SportsMmaOutlined")); + +var _SportsMmaRounded = _interopRequireDefault(require("./SportsMmaRounded")); + +var _SportsMmaSharp = _interopRequireDefault(require("./SportsMmaSharp")); + +var _SportsMmaTwoTone = _interopRequireDefault(require("./SportsMmaTwoTone")); + +var _SportsMotorsports = _interopRequireDefault(require("./SportsMotorsports")); + +var _SportsMotorsportsOutlined = _interopRequireDefault(require("./SportsMotorsportsOutlined")); + +var _SportsMotorsportsRounded = _interopRequireDefault(require("./SportsMotorsportsRounded")); + +var _SportsMotorsportsSharp = _interopRequireDefault(require("./SportsMotorsportsSharp")); + +var _SportsMotorsportsTwoTone = _interopRequireDefault(require("./SportsMotorsportsTwoTone")); + +var _SportsOutlined = _interopRequireDefault(require("./SportsOutlined")); + +var _SportsRounded = _interopRequireDefault(require("./SportsRounded")); + +var _SportsRugby = _interopRequireDefault(require("./SportsRugby")); + +var _SportsRugbyOutlined = _interopRequireDefault(require("./SportsRugbyOutlined")); + +var _SportsRugbyRounded = _interopRequireDefault(require("./SportsRugbyRounded")); + +var _SportsRugbySharp = _interopRequireDefault(require("./SportsRugbySharp")); + +var _SportsRugbyTwoTone = _interopRequireDefault(require("./SportsRugbyTwoTone")); + +var _SportsScore = _interopRequireDefault(require("./SportsScore")); + +var _SportsScoreOutlined = _interopRequireDefault(require("./SportsScoreOutlined")); + +var _SportsScoreRounded = _interopRequireDefault(require("./SportsScoreRounded")); + +var _SportsScoreSharp = _interopRequireDefault(require("./SportsScoreSharp")); + +var _SportsScoreTwoTone = _interopRequireDefault(require("./SportsScoreTwoTone")); + +var _SportsSharp = _interopRequireDefault(require("./SportsSharp")); + +var _SportsSoccer = _interopRequireDefault(require("./SportsSoccer")); + +var _SportsSoccerOutlined = _interopRequireDefault(require("./SportsSoccerOutlined")); + +var _SportsSoccerRounded = _interopRequireDefault(require("./SportsSoccerRounded")); + +var _SportsSoccerSharp = _interopRequireDefault(require("./SportsSoccerSharp")); + +var _SportsSoccerTwoTone = _interopRequireDefault(require("./SportsSoccerTwoTone")); + +var _SportsTennis = _interopRequireDefault(require("./SportsTennis")); + +var _SportsTennisOutlined = _interopRequireDefault(require("./SportsTennisOutlined")); + +var _SportsTennisRounded = _interopRequireDefault(require("./SportsTennisRounded")); + +var _SportsTennisSharp = _interopRequireDefault(require("./SportsTennisSharp")); + +var _SportsTennisTwoTone = _interopRequireDefault(require("./SportsTennisTwoTone")); + +var _SportsTwoTone = _interopRequireDefault(require("./SportsTwoTone")); + +var _SportsVolleyball = _interopRequireDefault(require("./SportsVolleyball")); + +var _SportsVolleyballOutlined = _interopRequireDefault(require("./SportsVolleyballOutlined")); + +var _SportsVolleyballRounded = _interopRequireDefault(require("./SportsVolleyballRounded")); + +var _SportsVolleyballSharp = _interopRequireDefault(require("./SportsVolleyballSharp")); + +var _SportsVolleyballTwoTone = _interopRequireDefault(require("./SportsVolleyballTwoTone")); + +var _SquareFoot = _interopRequireDefault(require("./SquareFoot")); + +var _SquareFootOutlined = _interopRequireDefault(require("./SquareFootOutlined")); + +var _SquareFootRounded = _interopRequireDefault(require("./SquareFootRounded")); + +var _SquareFootSharp = _interopRequireDefault(require("./SquareFootSharp")); + +var _SquareFootTwoTone = _interopRequireDefault(require("./SquareFootTwoTone")); + +var _StackedBarChart = _interopRequireDefault(require("./StackedBarChart")); + +var _StackedBarChartOutlined = _interopRequireDefault(require("./StackedBarChartOutlined")); + +var _StackedBarChartRounded = _interopRequireDefault(require("./StackedBarChartRounded")); + +var _StackedBarChartSharp = _interopRequireDefault(require("./StackedBarChartSharp")); + +var _StackedBarChartTwoTone = _interopRequireDefault(require("./StackedBarChartTwoTone")); + +var _StackedLineChart = _interopRequireDefault(require("./StackedLineChart")); + +var _StackedLineChartOutlined = _interopRequireDefault(require("./StackedLineChartOutlined")); + +var _StackedLineChartRounded = _interopRequireDefault(require("./StackedLineChartRounded")); + +var _StackedLineChartSharp = _interopRequireDefault(require("./StackedLineChartSharp")); + +var _StackedLineChartTwoTone = _interopRequireDefault(require("./StackedLineChartTwoTone")); + +var _Stairs = _interopRequireDefault(require("./Stairs")); + +var _StairsOutlined = _interopRequireDefault(require("./StairsOutlined")); + +var _StairsRounded = _interopRequireDefault(require("./StairsRounded")); + +var _StairsSharp = _interopRequireDefault(require("./StairsSharp")); + +var _StairsTwoTone = _interopRequireDefault(require("./StairsTwoTone")); + +var _Star = _interopRequireDefault(require("./Star")); + +var _StarBorder = _interopRequireDefault(require("./StarBorder")); + +var _StarBorderOutlined = _interopRequireDefault(require("./StarBorderOutlined")); + +var _StarBorderPurple = _interopRequireDefault(require("./StarBorderPurple500")); + +var _StarBorderPurple500Outlined = _interopRequireDefault(require("./StarBorderPurple500Outlined")); + +var _StarBorderPurple500Rounded = _interopRequireDefault(require("./StarBorderPurple500Rounded")); + +var _StarBorderPurple500Sharp = _interopRequireDefault(require("./StarBorderPurple500Sharp")); + +var _StarBorderPurple500TwoTone = _interopRequireDefault(require("./StarBorderPurple500TwoTone")); + +var _StarBorderRounded = _interopRequireDefault(require("./StarBorderRounded")); + +var _StarBorderSharp = _interopRequireDefault(require("./StarBorderSharp")); + +var _StarBorderTwoTone = _interopRequireDefault(require("./StarBorderTwoTone")); + +var _StarHalf = _interopRequireDefault(require("./StarHalf")); + +var _StarHalfOutlined = _interopRequireDefault(require("./StarHalfOutlined")); + +var _StarHalfRounded = _interopRequireDefault(require("./StarHalfRounded")); + +var _StarHalfSharp = _interopRequireDefault(require("./StarHalfSharp")); + +var _StarHalfTwoTone = _interopRequireDefault(require("./StarHalfTwoTone")); + +var _StarOutline = _interopRequireDefault(require("./StarOutline")); + +var _StarOutlineOutlined = _interopRequireDefault(require("./StarOutlineOutlined")); + +var _StarOutlineRounded = _interopRequireDefault(require("./StarOutlineRounded")); + +var _StarOutlineSharp = _interopRequireDefault(require("./StarOutlineSharp")); + +var _StarOutlineTwoTone = _interopRequireDefault(require("./StarOutlineTwoTone")); + +var _StarOutlined = _interopRequireDefault(require("./StarOutlined")); + +var _StarPurple = _interopRequireDefault(require("./StarPurple500")); + +var _StarPurple500Outlined = _interopRequireDefault(require("./StarPurple500Outlined")); + +var _StarPurple500Rounded = _interopRequireDefault(require("./StarPurple500Rounded")); + +var _StarPurple500Sharp = _interopRequireDefault(require("./StarPurple500Sharp")); + +var _StarPurple500TwoTone = _interopRequireDefault(require("./StarPurple500TwoTone")); + +var _StarRate = _interopRequireDefault(require("./StarRate")); + +var _StarRateOutlined = _interopRequireDefault(require("./StarRateOutlined")); + +var _StarRateRounded = _interopRequireDefault(require("./StarRateRounded")); + +var _StarRateSharp = _interopRequireDefault(require("./StarRateSharp")); + +var _StarRateTwoTone = _interopRequireDefault(require("./StarRateTwoTone")); + +var _StarRounded = _interopRequireDefault(require("./StarRounded")); + +var _StarSharp = _interopRequireDefault(require("./StarSharp")); + +var _StarTwoTone = _interopRequireDefault(require("./StarTwoTone")); + +var _Stars = _interopRequireDefault(require("./Stars")); + +var _StarsOutlined = _interopRequireDefault(require("./StarsOutlined")); + +var _StarsRounded = _interopRequireDefault(require("./StarsRounded")); + +var _StarsSharp = _interopRequireDefault(require("./StarsSharp")); + +var _StarsTwoTone = _interopRequireDefault(require("./StarsTwoTone")); + +var _StayCurrentLandscape = _interopRequireDefault(require("./StayCurrentLandscape")); + +var _StayCurrentLandscapeOutlined = _interopRequireDefault(require("./StayCurrentLandscapeOutlined")); + +var _StayCurrentLandscapeRounded = _interopRequireDefault(require("./StayCurrentLandscapeRounded")); + +var _StayCurrentLandscapeSharp = _interopRequireDefault(require("./StayCurrentLandscapeSharp")); + +var _StayCurrentLandscapeTwoTone = _interopRequireDefault(require("./StayCurrentLandscapeTwoTone")); + +var _StayCurrentPortrait = _interopRequireDefault(require("./StayCurrentPortrait")); + +var _StayCurrentPortraitOutlined = _interopRequireDefault(require("./StayCurrentPortraitOutlined")); + +var _StayCurrentPortraitRounded = _interopRequireDefault(require("./StayCurrentPortraitRounded")); + +var _StayCurrentPortraitSharp = _interopRequireDefault(require("./StayCurrentPortraitSharp")); + +var _StayCurrentPortraitTwoTone = _interopRequireDefault(require("./StayCurrentPortraitTwoTone")); + +var _StayPrimaryLandscape = _interopRequireDefault(require("./StayPrimaryLandscape")); + +var _StayPrimaryLandscapeOutlined = _interopRequireDefault(require("./StayPrimaryLandscapeOutlined")); + +var _StayPrimaryLandscapeRounded = _interopRequireDefault(require("./StayPrimaryLandscapeRounded")); + +var _StayPrimaryLandscapeSharp = _interopRequireDefault(require("./StayPrimaryLandscapeSharp")); + +var _StayPrimaryLandscapeTwoTone = _interopRequireDefault(require("./StayPrimaryLandscapeTwoTone")); + +var _StayPrimaryPortrait = _interopRequireDefault(require("./StayPrimaryPortrait")); + +var _StayPrimaryPortraitOutlined = _interopRequireDefault(require("./StayPrimaryPortraitOutlined")); + +var _StayPrimaryPortraitRounded = _interopRequireDefault(require("./StayPrimaryPortraitRounded")); + +var _StayPrimaryPortraitSharp = _interopRequireDefault(require("./StayPrimaryPortraitSharp")); + +var _StayPrimaryPortraitTwoTone = _interopRequireDefault(require("./StayPrimaryPortraitTwoTone")); + +var _StickyNote = _interopRequireDefault(require("./StickyNote2")); + +var _StickyNote2Outlined = _interopRequireDefault(require("./StickyNote2Outlined")); + +var _StickyNote2Rounded = _interopRequireDefault(require("./StickyNote2Rounded")); + +var _StickyNote2Sharp = _interopRequireDefault(require("./StickyNote2Sharp")); + +var _StickyNote2TwoTone = _interopRequireDefault(require("./StickyNote2TwoTone")); + +var _Stop = _interopRequireDefault(require("./Stop")); + +var _StopCircle = _interopRequireDefault(require("./StopCircle")); + +var _StopCircleOutlined = _interopRequireDefault(require("./StopCircleOutlined")); + +var _StopCircleRounded = _interopRequireDefault(require("./StopCircleRounded")); + +var _StopCircleSharp = _interopRequireDefault(require("./StopCircleSharp")); + +var _StopCircleTwoTone = _interopRequireDefault(require("./StopCircleTwoTone")); + +var _StopOutlined = _interopRequireDefault(require("./StopOutlined")); + +var _StopRounded = _interopRequireDefault(require("./StopRounded")); + +var _StopScreenShare = _interopRequireDefault(require("./StopScreenShare")); + +var _StopScreenShareOutlined = _interopRequireDefault(require("./StopScreenShareOutlined")); + +var _StopScreenShareRounded = _interopRequireDefault(require("./StopScreenShareRounded")); + +var _StopScreenShareSharp = _interopRequireDefault(require("./StopScreenShareSharp")); + +var _StopScreenShareTwoTone = _interopRequireDefault(require("./StopScreenShareTwoTone")); + +var _StopSharp = _interopRequireDefault(require("./StopSharp")); + +var _StopTwoTone = _interopRequireDefault(require("./StopTwoTone")); + +var _Storage = _interopRequireDefault(require("./Storage")); + +var _StorageOutlined = _interopRequireDefault(require("./StorageOutlined")); + +var _StorageRounded = _interopRequireDefault(require("./StorageRounded")); + +var _StorageSharp = _interopRequireDefault(require("./StorageSharp")); + +var _StorageTwoTone = _interopRequireDefault(require("./StorageTwoTone")); + +var _Store = _interopRequireDefault(require("./Store")); + +var _StoreMallDirectory = _interopRequireDefault(require("./StoreMallDirectory")); + +var _StoreMallDirectoryOutlined = _interopRequireDefault(require("./StoreMallDirectoryOutlined")); + +var _StoreMallDirectoryRounded = _interopRequireDefault(require("./StoreMallDirectoryRounded")); + +var _StoreMallDirectorySharp = _interopRequireDefault(require("./StoreMallDirectorySharp")); + +var _StoreMallDirectoryTwoTone = _interopRequireDefault(require("./StoreMallDirectoryTwoTone")); + +var _StoreOutlined = _interopRequireDefault(require("./StoreOutlined")); + +var _StoreRounded = _interopRequireDefault(require("./StoreRounded")); + +var _StoreSharp = _interopRequireDefault(require("./StoreSharp")); + +var _StoreTwoTone = _interopRequireDefault(require("./StoreTwoTone")); + +var _Storefront = _interopRequireDefault(require("./Storefront")); + +var _StorefrontOutlined = _interopRequireDefault(require("./StorefrontOutlined")); + +var _StorefrontRounded = _interopRequireDefault(require("./StorefrontRounded")); + +var _StorefrontSharp = _interopRequireDefault(require("./StorefrontSharp")); + +var _StorefrontTwoTone = _interopRequireDefault(require("./StorefrontTwoTone")); + +var _Storm = _interopRequireDefault(require("./Storm")); + +var _StormOutlined = _interopRequireDefault(require("./StormOutlined")); + +var _StormRounded = _interopRequireDefault(require("./StormRounded")); + +var _StormSharp = _interopRequireDefault(require("./StormSharp")); + +var _StormTwoTone = _interopRequireDefault(require("./StormTwoTone")); + +var _Straighten = _interopRequireDefault(require("./Straighten")); + +var _StraightenOutlined = _interopRequireDefault(require("./StraightenOutlined")); + +var _StraightenRounded = _interopRequireDefault(require("./StraightenRounded")); + +var _StraightenSharp = _interopRequireDefault(require("./StraightenSharp")); + +var _StraightenTwoTone = _interopRequireDefault(require("./StraightenTwoTone")); + +var _Stream = _interopRequireDefault(require("./Stream")); + +var _StreamOutlined = _interopRequireDefault(require("./StreamOutlined")); + +var _StreamRounded = _interopRequireDefault(require("./StreamRounded")); + +var _StreamSharp = _interopRequireDefault(require("./StreamSharp")); + +var _StreamTwoTone = _interopRequireDefault(require("./StreamTwoTone")); + +var _Streetview = _interopRequireDefault(require("./Streetview")); + +var _StreetviewOutlined = _interopRequireDefault(require("./StreetviewOutlined")); + +var _StreetviewRounded = _interopRequireDefault(require("./StreetviewRounded")); + +var _StreetviewSharp = _interopRequireDefault(require("./StreetviewSharp")); + +var _StreetviewTwoTone = _interopRequireDefault(require("./StreetviewTwoTone")); + +var _StrikethroughS = _interopRequireDefault(require("./StrikethroughS")); + +var _StrikethroughSOutlined = _interopRequireDefault(require("./StrikethroughSOutlined")); + +var _StrikethroughSRounded = _interopRequireDefault(require("./StrikethroughSRounded")); + +var _StrikethroughSSharp = _interopRequireDefault(require("./StrikethroughSSharp")); + +var _StrikethroughSTwoTone = _interopRequireDefault(require("./StrikethroughSTwoTone")); + +var _Stroller = _interopRequireDefault(require("./Stroller")); + +var _StrollerOutlined = _interopRequireDefault(require("./StrollerOutlined")); + +var _StrollerRounded = _interopRequireDefault(require("./StrollerRounded")); + +var _StrollerSharp = _interopRequireDefault(require("./StrollerSharp")); + +var _StrollerTwoTone = _interopRequireDefault(require("./StrollerTwoTone")); + +var _Style = _interopRequireDefault(require("./Style")); + +var _StyleOutlined = _interopRequireDefault(require("./StyleOutlined")); + +var _StyleRounded = _interopRequireDefault(require("./StyleRounded")); + +var _StyleSharp = _interopRequireDefault(require("./StyleSharp")); + +var _StyleTwoTone = _interopRequireDefault(require("./StyleTwoTone")); + +var _SubdirectoryArrowLeft = _interopRequireDefault(require("./SubdirectoryArrowLeft")); + +var _SubdirectoryArrowLeftOutlined = _interopRequireDefault(require("./SubdirectoryArrowLeftOutlined")); + +var _SubdirectoryArrowLeftRounded = _interopRequireDefault(require("./SubdirectoryArrowLeftRounded")); + +var _SubdirectoryArrowLeftSharp = _interopRequireDefault(require("./SubdirectoryArrowLeftSharp")); + +var _SubdirectoryArrowLeftTwoTone = _interopRequireDefault(require("./SubdirectoryArrowLeftTwoTone")); + +var _SubdirectoryArrowRight = _interopRequireDefault(require("./SubdirectoryArrowRight")); + +var _SubdirectoryArrowRightOutlined = _interopRequireDefault(require("./SubdirectoryArrowRightOutlined")); + +var _SubdirectoryArrowRightRounded = _interopRequireDefault(require("./SubdirectoryArrowRightRounded")); + +var _SubdirectoryArrowRightSharp = _interopRequireDefault(require("./SubdirectoryArrowRightSharp")); + +var _SubdirectoryArrowRightTwoTone = _interopRequireDefault(require("./SubdirectoryArrowRightTwoTone")); + +var _Subject = _interopRequireDefault(require("./Subject")); + +var _SubjectOutlined = _interopRequireDefault(require("./SubjectOutlined")); + +var _SubjectRounded = _interopRequireDefault(require("./SubjectRounded")); + +var _SubjectSharp = _interopRequireDefault(require("./SubjectSharp")); + +var _SubjectTwoTone = _interopRequireDefault(require("./SubjectTwoTone")); + +var _Subscript = _interopRequireDefault(require("./Subscript")); + +var _SubscriptOutlined = _interopRequireDefault(require("./SubscriptOutlined")); + +var _SubscriptRounded = _interopRequireDefault(require("./SubscriptRounded")); + +var _SubscriptSharp = _interopRequireDefault(require("./SubscriptSharp")); + +var _SubscriptTwoTone = _interopRequireDefault(require("./SubscriptTwoTone")); + +var _Subscriptions = _interopRequireDefault(require("./Subscriptions")); + +var _SubscriptionsOutlined = _interopRequireDefault(require("./SubscriptionsOutlined")); + +var _SubscriptionsRounded = _interopRequireDefault(require("./SubscriptionsRounded")); + +var _SubscriptionsSharp = _interopRequireDefault(require("./SubscriptionsSharp")); + +var _SubscriptionsTwoTone = _interopRequireDefault(require("./SubscriptionsTwoTone")); + +var _Subtitles = _interopRequireDefault(require("./Subtitles")); + +var _SubtitlesOff = _interopRequireDefault(require("./SubtitlesOff")); + +var _SubtitlesOffOutlined = _interopRequireDefault(require("./SubtitlesOffOutlined")); + +var _SubtitlesOffRounded = _interopRequireDefault(require("./SubtitlesOffRounded")); + +var _SubtitlesOffSharp = _interopRequireDefault(require("./SubtitlesOffSharp")); + +var _SubtitlesOffTwoTone = _interopRequireDefault(require("./SubtitlesOffTwoTone")); + +var _SubtitlesOutlined = _interopRequireDefault(require("./SubtitlesOutlined")); + +var _SubtitlesRounded = _interopRequireDefault(require("./SubtitlesRounded")); + +var _SubtitlesSharp = _interopRequireDefault(require("./SubtitlesSharp")); + +var _SubtitlesTwoTone = _interopRequireDefault(require("./SubtitlesTwoTone")); + +var _Subway = _interopRequireDefault(require("./Subway")); + +var _SubwayOutlined = _interopRequireDefault(require("./SubwayOutlined")); + +var _SubwayRounded = _interopRequireDefault(require("./SubwayRounded")); + +var _SubwaySharp = _interopRequireDefault(require("./SubwaySharp")); + +var _SubwayTwoTone = _interopRequireDefault(require("./SubwayTwoTone")); + +var _Summarize = _interopRequireDefault(require("./Summarize")); + +var _SummarizeOutlined = _interopRequireDefault(require("./SummarizeOutlined")); + +var _SummarizeRounded = _interopRequireDefault(require("./SummarizeRounded")); + +var _SummarizeSharp = _interopRequireDefault(require("./SummarizeSharp")); + +var _SummarizeTwoTone = _interopRequireDefault(require("./SummarizeTwoTone")); + +var _Superscript = _interopRequireDefault(require("./Superscript")); + +var _SuperscriptOutlined = _interopRequireDefault(require("./SuperscriptOutlined")); + +var _SuperscriptRounded = _interopRequireDefault(require("./SuperscriptRounded")); + +var _SuperscriptSharp = _interopRequireDefault(require("./SuperscriptSharp")); + +var _SuperscriptTwoTone = _interopRequireDefault(require("./SuperscriptTwoTone")); + +var _SupervisedUserCircle = _interopRequireDefault(require("./SupervisedUserCircle")); + +var _SupervisedUserCircleOutlined = _interopRequireDefault(require("./SupervisedUserCircleOutlined")); + +var _SupervisedUserCircleRounded = _interopRequireDefault(require("./SupervisedUserCircleRounded")); + +var _SupervisedUserCircleSharp = _interopRequireDefault(require("./SupervisedUserCircleSharp")); + +var _SupervisedUserCircleTwoTone = _interopRequireDefault(require("./SupervisedUserCircleTwoTone")); + +var _SupervisorAccount = _interopRequireDefault(require("./SupervisorAccount")); + +var _SupervisorAccountOutlined = _interopRequireDefault(require("./SupervisorAccountOutlined")); + +var _SupervisorAccountRounded = _interopRequireDefault(require("./SupervisorAccountRounded")); + +var _SupervisorAccountSharp = _interopRequireDefault(require("./SupervisorAccountSharp")); + +var _SupervisorAccountTwoTone = _interopRequireDefault(require("./SupervisorAccountTwoTone")); + +var _Support = _interopRequireDefault(require("./Support")); + +var _SupportAgent = _interopRequireDefault(require("./SupportAgent")); + +var _SupportAgentOutlined = _interopRequireDefault(require("./SupportAgentOutlined")); + +var _SupportAgentRounded = _interopRequireDefault(require("./SupportAgentRounded")); + +var _SupportAgentSharp = _interopRequireDefault(require("./SupportAgentSharp")); + +var _SupportAgentTwoTone = _interopRequireDefault(require("./SupportAgentTwoTone")); + +var _SupportOutlined = _interopRequireDefault(require("./SupportOutlined")); + +var _SupportRounded = _interopRequireDefault(require("./SupportRounded")); + +var _SupportSharp = _interopRequireDefault(require("./SupportSharp")); + +var _SupportTwoTone = _interopRequireDefault(require("./SupportTwoTone")); + +var _Surfing = _interopRequireDefault(require("./Surfing")); + +var _SurfingOutlined = _interopRequireDefault(require("./SurfingOutlined")); + +var _SurfingRounded = _interopRequireDefault(require("./SurfingRounded")); + +var _SurfingSharp = _interopRequireDefault(require("./SurfingSharp")); + +var _SurfingTwoTone = _interopRequireDefault(require("./SurfingTwoTone")); + +var _SurroundSound = _interopRequireDefault(require("./SurroundSound")); + +var _SurroundSoundOutlined = _interopRequireDefault(require("./SurroundSoundOutlined")); + +var _SurroundSoundRounded = _interopRequireDefault(require("./SurroundSoundRounded")); + +var _SurroundSoundSharp = _interopRequireDefault(require("./SurroundSoundSharp")); + +var _SurroundSoundTwoTone = _interopRequireDefault(require("./SurroundSoundTwoTone")); + +var _SwapCalls = _interopRequireDefault(require("./SwapCalls")); + +var _SwapCallsOutlined = _interopRequireDefault(require("./SwapCallsOutlined")); + +var _SwapCallsRounded = _interopRequireDefault(require("./SwapCallsRounded")); + +var _SwapCallsSharp = _interopRequireDefault(require("./SwapCallsSharp")); + +var _SwapCallsTwoTone = _interopRequireDefault(require("./SwapCallsTwoTone")); + +var _SwapHoriz = _interopRequireDefault(require("./SwapHoriz")); + +var _SwapHorizOutlined = _interopRequireDefault(require("./SwapHorizOutlined")); + +var _SwapHorizRounded = _interopRequireDefault(require("./SwapHorizRounded")); + +var _SwapHorizSharp = _interopRequireDefault(require("./SwapHorizSharp")); + +var _SwapHorizTwoTone = _interopRequireDefault(require("./SwapHorizTwoTone")); + +var _SwapHorizontalCircle = _interopRequireDefault(require("./SwapHorizontalCircle")); + +var _SwapHorizontalCircleOutlined = _interopRequireDefault(require("./SwapHorizontalCircleOutlined")); + +var _SwapHorizontalCircleRounded = _interopRequireDefault(require("./SwapHorizontalCircleRounded")); + +var _SwapHorizontalCircleSharp = _interopRequireDefault(require("./SwapHorizontalCircleSharp")); + +var _SwapHorizontalCircleTwoTone = _interopRequireDefault(require("./SwapHorizontalCircleTwoTone")); + +var _SwapVert = _interopRequireDefault(require("./SwapVert")); + +var _SwapVertOutlined = _interopRequireDefault(require("./SwapVertOutlined")); + +var _SwapVertRounded = _interopRequireDefault(require("./SwapVertRounded")); + +var _SwapVertSharp = _interopRequireDefault(require("./SwapVertSharp")); + +var _SwapVertTwoTone = _interopRequireDefault(require("./SwapVertTwoTone")); + +var _SwapVerticalCircle = _interopRequireDefault(require("./SwapVerticalCircle")); + +var _SwapVerticalCircleOutlined = _interopRequireDefault(require("./SwapVerticalCircleOutlined")); + +var _SwapVerticalCircleRounded = _interopRequireDefault(require("./SwapVerticalCircleRounded")); + +var _SwapVerticalCircleSharp = _interopRequireDefault(require("./SwapVerticalCircleSharp")); + +var _SwapVerticalCircleTwoTone = _interopRequireDefault(require("./SwapVerticalCircleTwoTone")); + +var _Swipe = _interopRequireDefault(require("./Swipe")); + +var _SwipeOutlined = _interopRequireDefault(require("./SwipeOutlined")); + +var _SwipeRounded = _interopRequireDefault(require("./SwipeRounded")); + +var _SwipeSharp = _interopRequireDefault(require("./SwipeSharp")); + +var _SwipeTwoTone = _interopRequireDefault(require("./SwipeTwoTone")); + +var _SwitchAccount = _interopRequireDefault(require("./SwitchAccount")); + +var _SwitchAccountOutlined = _interopRequireDefault(require("./SwitchAccountOutlined")); + +var _SwitchAccountRounded = _interopRequireDefault(require("./SwitchAccountRounded")); + +var _SwitchAccountSharp = _interopRequireDefault(require("./SwitchAccountSharp")); + +var _SwitchAccountTwoTone = _interopRequireDefault(require("./SwitchAccountTwoTone")); + +var _SwitchCamera = _interopRequireDefault(require("./SwitchCamera")); + +var _SwitchCameraOutlined = _interopRequireDefault(require("./SwitchCameraOutlined")); + +var _SwitchCameraRounded = _interopRequireDefault(require("./SwitchCameraRounded")); + +var _SwitchCameraSharp = _interopRequireDefault(require("./SwitchCameraSharp")); + +var _SwitchCameraTwoTone = _interopRequireDefault(require("./SwitchCameraTwoTone")); + +var _SwitchLeft = _interopRequireDefault(require("./SwitchLeft")); + +var _SwitchLeftOutlined = _interopRequireDefault(require("./SwitchLeftOutlined")); + +var _SwitchLeftRounded = _interopRequireDefault(require("./SwitchLeftRounded")); + +var _SwitchLeftSharp = _interopRequireDefault(require("./SwitchLeftSharp")); + +var _SwitchLeftTwoTone = _interopRequireDefault(require("./SwitchLeftTwoTone")); + +var _SwitchRight = _interopRequireDefault(require("./SwitchRight")); + +var _SwitchRightOutlined = _interopRequireDefault(require("./SwitchRightOutlined")); + +var _SwitchRightRounded = _interopRequireDefault(require("./SwitchRightRounded")); + +var _SwitchRightSharp = _interopRequireDefault(require("./SwitchRightSharp")); + +var _SwitchRightTwoTone = _interopRequireDefault(require("./SwitchRightTwoTone")); + +var _SwitchVideo = _interopRequireDefault(require("./SwitchVideo")); + +var _SwitchVideoOutlined = _interopRequireDefault(require("./SwitchVideoOutlined")); + +var _SwitchVideoRounded = _interopRequireDefault(require("./SwitchVideoRounded")); + +var _SwitchVideoSharp = _interopRequireDefault(require("./SwitchVideoSharp")); + +var _SwitchVideoTwoTone = _interopRequireDefault(require("./SwitchVideoTwoTone")); + +var _Sync = _interopRequireDefault(require("./Sync")); + +var _SyncAlt = _interopRequireDefault(require("./SyncAlt")); + +var _SyncAltOutlined = _interopRequireDefault(require("./SyncAltOutlined")); + +var _SyncAltRounded = _interopRequireDefault(require("./SyncAltRounded")); + +var _SyncAltSharp = _interopRequireDefault(require("./SyncAltSharp")); + +var _SyncAltTwoTone = _interopRequireDefault(require("./SyncAltTwoTone")); + +var _SyncDisabled = _interopRequireDefault(require("./SyncDisabled")); + +var _SyncDisabledOutlined = _interopRequireDefault(require("./SyncDisabledOutlined")); + +var _SyncDisabledRounded = _interopRequireDefault(require("./SyncDisabledRounded")); + +var _SyncDisabledSharp = _interopRequireDefault(require("./SyncDisabledSharp")); + +var _SyncDisabledTwoTone = _interopRequireDefault(require("./SyncDisabledTwoTone")); + +var _SyncOutlined = _interopRequireDefault(require("./SyncOutlined")); + +var _SyncProblem = _interopRequireDefault(require("./SyncProblem")); + +var _SyncProblemOutlined = _interopRequireDefault(require("./SyncProblemOutlined")); + +var _SyncProblemRounded = _interopRequireDefault(require("./SyncProblemRounded")); + +var _SyncProblemSharp = _interopRequireDefault(require("./SyncProblemSharp")); + +var _SyncProblemTwoTone = _interopRequireDefault(require("./SyncProblemTwoTone")); + +var _SyncRounded = _interopRequireDefault(require("./SyncRounded")); + +var _SyncSharp = _interopRequireDefault(require("./SyncSharp")); + +var _SyncTwoTone = _interopRequireDefault(require("./SyncTwoTone")); + +var _SystemSecurityUpdate = _interopRequireDefault(require("./SystemSecurityUpdate")); + +var _SystemSecurityUpdateGood = _interopRequireDefault(require("./SystemSecurityUpdateGood")); + +var _SystemSecurityUpdateGoodOutlined = _interopRequireDefault(require("./SystemSecurityUpdateGoodOutlined")); + +var _SystemSecurityUpdateGoodRounded = _interopRequireDefault(require("./SystemSecurityUpdateGoodRounded")); + +var _SystemSecurityUpdateGoodSharp = _interopRequireDefault(require("./SystemSecurityUpdateGoodSharp")); + +var _SystemSecurityUpdateGoodTwoTone = _interopRequireDefault(require("./SystemSecurityUpdateGoodTwoTone")); + +var _SystemSecurityUpdateOutlined = _interopRequireDefault(require("./SystemSecurityUpdateOutlined")); + +var _SystemSecurityUpdateRounded = _interopRequireDefault(require("./SystemSecurityUpdateRounded")); + +var _SystemSecurityUpdateSharp = _interopRequireDefault(require("./SystemSecurityUpdateSharp")); + +var _SystemSecurityUpdateTwoTone = _interopRequireDefault(require("./SystemSecurityUpdateTwoTone")); + +var _SystemSecurityUpdateWarning = _interopRequireDefault(require("./SystemSecurityUpdateWarning")); + +var _SystemSecurityUpdateWarningOutlined = _interopRequireDefault(require("./SystemSecurityUpdateWarningOutlined")); + +var _SystemSecurityUpdateWarningRounded = _interopRequireDefault(require("./SystemSecurityUpdateWarningRounded")); + +var _SystemSecurityUpdateWarningSharp = _interopRequireDefault(require("./SystemSecurityUpdateWarningSharp")); + +var _SystemSecurityUpdateWarningTwoTone = _interopRequireDefault(require("./SystemSecurityUpdateWarningTwoTone")); + +var _SystemUpdate = _interopRequireDefault(require("./SystemUpdate")); + +var _SystemUpdateAlt = _interopRequireDefault(require("./SystemUpdateAlt")); + +var _SystemUpdateAltOutlined = _interopRequireDefault(require("./SystemUpdateAltOutlined")); + +var _SystemUpdateAltRounded = _interopRequireDefault(require("./SystemUpdateAltRounded")); + +var _SystemUpdateAltSharp = _interopRequireDefault(require("./SystemUpdateAltSharp")); + +var _SystemUpdateAltTwoTone = _interopRequireDefault(require("./SystemUpdateAltTwoTone")); + +var _SystemUpdateOutlined = _interopRequireDefault(require("./SystemUpdateOutlined")); + +var _SystemUpdateRounded = _interopRequireDefault(require("./SystemUpdateRounded")); + +var _SystemUpdateSharp = _interopRequireDefault(require("./SystemUpdateSharp")); + +var _SystemUpdateTwoTone = _interopRequireDefault(require("./SystemUpdateTwoTone")); + +var _Tab = _interopRequireDefault(require("./Tab")); + +var _TabOutlined = _interopRequireDefault(require("./TabOutlined")); + +var _TabRounded = _interopRequireDefault(require("./TabRounded")); + +var _TabSharp = _interopRequireDefault(require("./TabSharp")); + +var _TabTwoTone = _interopRequireDefault(require("./TabTwoTone")); + +var _TabUnselected = _interopRequireDefault(require("./TabUnselected")); + +var _TabUnselectedOutlined = _interopRequireDefault(require("./TabUnselectedOutlined")); + +var _TabUnselectedRounded = _interopRequireDefault(require("./TabUnselectedRounded")); + +var _TabUnselectedSharp = _interopRequireDefault(require("./TabUnselectedSharp")); + +var _TabUnselectedTwoTone = _interopRequireDefault(require("./TabUnselectedTwoTone")); + +var _TableChart = _interopRequireDefault(require("./TableChart")); + +var _TableChartOutlined = _interopRequireDefault(require("./TableChartOutlined")); + +var _TableChartRounded = _interopRequireDefault(require("./TableChartRounded")); + +var _TableChartSharp = _interopRequireDefault(require("./TableChartSharp")); + +var _TableChartTwoTone = _interopRequireDefault(require("./TableChartTwoTone")); + +var _TableRows = _interopRequireDefault(require("./TableRows")); + +var _TableRowsOutlined = _interopRequireDefault(require("./TableRowsOutlined")); + +var _TableRowsRounded = _interopRequireDefault(require("./TableRowsRounded")); + +var _TableRowsSharp = _interopRequireDefault(require("./TableRowsSharp")); + +var _TableRowsTwoTone = _interopRequireDefault(require("./TableRowsTwoTone")); + +var _TableView = _interopRequireDefault(require("./TableView")); + +var _TableViewOutlined = _interopRequireDefault(require("./TableViewOutlined")); + +var _TableViewRounded = _interopRequireDefault(require("./TableViewRounded")); + +var _TableViewSharp = _interopRequireDefault(require("./TableViewSharp")); + +var _TableViewTwoTone = _interopRequireDefault(require("./TableViewTwoTone")); + +var _Tablet = _interopRequireDefault(require("./Tablet")); + +var _TabletAndroid = _interopRequireDefault(require("./TabletAndroid")); + +var _TabletAndroidOutlined = _interopRequireDefault(require("./TabletAndroidOutlined")); + +var _TabletAndroidRounded = _interopRequireDefault(require("./TabletAndroidRounded")); + +var _TabletAndroidSharp = _interopRequireDefault(require("./TabletAndroidSharp")); + +var _TabletAndroidTwoTone = _interopRequireDefault(require("./TabletAndroidTwoTone")); + +var _TabletMac = _interopRequireDefault(require("./TabletMac")); + +var _TabletMacOutlined = _interopRequireDefault(require("./TabletMacOutlined")); + +var _TabletMacRounded = _interopRequireDefault(require("./TabletMacRounded")); + +var _TabletMacSharp = _interopRequireDefault(require("./TabletMacSharp")); + +var _TabletMacTwoTone = _interopRequireDefault(require("./TabletMacTwoTone")); + +var _TabletOutlined = _interopRequireDefault(require("./TabletOutlined")); + +var _TabletRounded = _interopRequireDefault(require("./TabletRounded")); + +var _TabletSharp = _interopRequireDefault(require("./TabletSharp")); + +var _TabletTwoTone = _interopRequireDefault(require("./TabletTwoTone")); + +var _Tag = _interopRequireDefault(require("./Tag")); + +var _TagFaces = _interopRequireDefault(require("./TagFaces")); + +var _TagFacesOutlined = _interopRequireDefault(require("./TagFacesOutlined")); + +var _TagFacesRounded = _interopRequireDefault(require("./TagFacesRounded")); + +var _TagFacesSharp = _interopRequireDefault(require("./TagFacesSharp")); + +var _TagFacesTwoTone = _interopRequireDefault(require("./TagFacesTwoTone")); + +var _TagOutlined = _interopRequireDefault(require("./TagOutlined")); + +var _TagRounded = _interopRequireDefault(require("./TagRounded")); + +var _TagSharp = _interopRequireDefault(require("./TagSharp")); + +var _TagTwoTone = _interopRequireDefault(require("./TagTwoTone")); + +var _TakeoutDining = _interopRequireDefault(require("./TakeoutDining")); + +var _TakeoutDiningOutlined = _interopRequireDefault(require("./TakeoutDiningOutlined")); + +var _TakeoutDiningRounded = _interopRequireDefault(require("./TakeoutDiningRounded")); + +var _TakeoutDiningSharp = _interopRequireDefault(require("./TakeoutDiningSharp")); + +var _TakeoutDiningTwoTone = _interopRequireDefault(require("./TakeoutDiningTwoTone")); + +var _TapAndPlay = _interopRequireDefault(require("./TapAndPlay")); + +var _TapAndPlayOutlined = _interopRequireDefault(require("./TapAndPlayOutlined")); + +var _TapAndPlayRounded = _interopRequireDefault(require("./TapAndPlayRounded")); + +var _TapAndPlaySharp = _interopRequireDefault(require("./TapAndPlaySharp")); + +var _TapAndPlayTwoTone = _interopRequireDefault(require("./TapAndPlayTwoTone")); + +var _Tapas = _interopRequireDefault(require("./Tapas")); + +var _TapasOutlined = _interopRequireDefault(require("./TapasOutlined")); + +var _TapasRounded = _interopRequireDefault(require("./TapasRounded")); + +var _TapasSharp = _interopRequireDefault(require("./TapasSharp")); + +var _TapasTwoTone = _interopRequireDefault(require("./TapasTwoTone")); + +var _Task = _interopRequireDefault(require("./Task")); + +var _TaskAlt = _interopRequireDefault(require("./TaskAlt")); + +var _TaskAltOutlined = _interopRequireDefault(require("./TaskAltOutlined")); + +var _TaskAltRounded = _interopRequireDefault(require("./TaskAltRounded")); + +var _TaskAltSharp = _interopRequireDefault(require("./TaskAltSharp")); + +var _TaskAltTwoTone = _interopRequireDefault(require("./TaskAltTwoTone")); + +var _TaskOutlined = _interopRequireDefault(require("./TaskOutlined")); + +var _TaskRounded = _interopRequireDefault(require("./TaskRounded")); + +var _TaskSharp = _interopRequireDefault(require("./TaskSharp")); + +var _TaskTwoTone = _interopRequireDefault(require("./TaskTwoTone")); + +var _TaxiAlert = _interopRequireDefault(require("./TaxiAlert")); + +var _TaxiAlertOutlined = _interopRequireDefault(require("./TaxiAlertOutlined")); + +var _TaxiAlertRounded = _interopRequireDefault(require("./TaxiAlertRounded")); + +var _TaxiAlertSharp = _interopRequireDefault(require("./TaxiAlertSharp")); + +var _TaxiAlertTwoTone = _interopRequireDefault(require("./TaxiAlertTwoTone")); + +var _Telegram = _interopRequireDefault(require("./Telegram")); + +var _TenMp = _interopRequireDefault(require("./TenMp")); + +var _TenMpOutlined = _interopRequireDefault(require("./TenMpOutlined")); + +var _TenMpRounded = _interopRequireDefault(require("./TenMpRounded")); + +var _TenMpSharp = _interopRequireDefault(require("./TenMpSharp")); + +var _TenMpTwoTone = _interopRequireDefault(require("./TenMpTwoTone")); + +var _Terrain = _interopRequireDefault(require("./Terrain")); + +var _TerrainOutlined = _interopRequireDefault(require("./TerrainOutlined")); + +var _TerrainRounded = _interopRequireDefault(require("./TerrainRounded")); + +var _TerrainSharp = _interopRequireDefault(require("./TerrainSharp")); + +var _TerrainTwoTone = _interopRequireDefault(require("./TerrainTwoTone")); + +var _TextFields = _interopRequireDefault(require("./TextFields")); + +var _TextFieldsOutlined = _interopRequireDefault(require("./TextFieldsOutlined")); + +var _TextFieldsRounded = _interopRequireDefault(require("./TextFieldsRounded")); + +var _TextFieldsSharp = _interopRequireDefault(require("./TextFieldsSharp")); + +var _TextFieldsTwoTone = _interopRequireDefault(require("./TextFieldsTwoTone")); + +var _TextFormat = _interopRequireDefault(require("./TextFormat")); + +var _TextFormatOutlined = _interopRequireDefault(require("./TextFormatOutlined")); + +var _TextFormatRounded = _interopRequireDefault(require("./TextFormatRounded")); + +var _TextFormatSharp = _interopRequireDefault(require("./TextFormatSharp")); + +var _TextFormatTwoTone = _interopRequireDefault(require("./TextFormatTwoTone")); + +var _TextRotateUp = _interopRequireDefault(require("./TextRotateUp")); + +var _TextRotateUpOutlined = _interopRequireDefault(require("./TextRotateUpOutlined")); + +var _TextRotateUpRounded = _interopRequireDefault(require("./TextRotateUpRounded")); + +var _TextRotateUpSharp = _interopRequireDefault(require("./TextRotateUpSharp")); + +var _TextRotateUpTwoTone = _interopRequireDefault(require("./TextRotateUpTwoTone")); + +var _TextRotateVertical = _interopRequireDefault(require("./TextRotateVertical")); + +var _TextRotateVerticalOutlined = _interopRequireDefault(require("./TextRotateVerticalOutlined")); + +var _TextRotateVerticalRounded = _interopRequireDefault(require("./TextRotateVerticalRounded")); + +var _TextRotateVerticalSharp = _interopRequireDefault(require("./TextRotateVerticalSharp")); + +var _TextRotateVerticalTwoTone = _interopRequireDefault(require("./TextRotateVerticalTwoTone")); + +var _TextRotationAngledown = _interopRequireDefault(require("./TextRotationAngledown")); + +var _TextRotationAngledownOutlined = _interopRequireDefault(require("./TextRotationAngledownOutlined")); + +var _TextRotationAngledownRounded = _interopRequireDefault(require("./TextRotationAngledownRounded")); + +var _TextRotationAngledownSharp = _interopRequireDefault(require("./TextRotationAngledownSharp")); + +var _TextRotationAngledownTwoTone = _interopRequireDefault(require("./TextRotationAngledownTwoTone")); + +var _TextRotationAngleup = _interopRequireDefault(require("./TextRotationAngleup")); + +var _TextRotationAngleupOutlined = _interopRequireDefault(require("./TextRotationAngleupOutlined")); + +var _TextRotationAngleupRounded = _interopRequireDefault(require("./TextRotationAngleupRounded")); + +var _TextRotationAngleupSharp = _interopRequireDefault(require("./TextRotationAngleupSharp")); + +var _TextRotationAngleupTwoTone = _interopRequireDefault(require("./TextRotationAngleupTwoTone")); + +var _TextRotationDown = _interopRequireDefault(require("./TextRotationDown")); + +var _TextRotationDownOutlined = _interopRequireDefault(require("./TextRotationDownOutlined")); + +var _TextRotationDownRounded = _interopRequireDefault(require("./TextRotationDownRounded")); + +var _TextRotationDownSharp = _interopRequireDefault(require("./TextRotationDownSharp")); + +var _TextRotationDownTwoTone = _interopRequireDefault(require("./TextRotationDownTwoTone")); + +var _TextRotationNone = _interopRequireDefault(require("./TextRotationNone")); + +var _TextRotationNoneOutlined = _interopRequireDefault(require("./TextRotationNoneOutlined")); + +var _TextRotationNoneRounded = _interopRequireDefault(require("./TextRotationNoneRounded")); + +var _TextRotationNoneSharp = _interopRequireDefault(require("./TextRotationNoneSharp")); + +var _TextRotationNoneTwoTone = _interopRequireDefault(require("./TextRotationNoneTwoTone")); + +var _TextSnippet = _interopRequireDefault(require("./TextSnippet")); + +var _TextSnippetOutlined = _interopRequireDefault(require("./TextSnippetOutlined")); + +var _TextSnippetRounded = _interopRequireDefault(require("./TextSnippetRounded")); + +var _TextSnippetSharp = _interopRequireDefault(require("./TextSnippetSharp")); + +var _TextSnippetTwoTone = _interopRequireDefault(require("./TextSnippetTwoTone")); + +var _Textsms = _interopRequireDefault(require("./Textsms")); + +var _TextsmsOutlined = _interopRequireDefault(require("./TextsmsOutlined")); + +var _TextsmsRounded = _interopRequireDefault(require("./TextsmsRounded")); + +var _TextsmsSharp = _interopRequireDefault(require("./TextsmsSharp")); + +var _TextsmsTwoTone = _interopRequireDefault(require("./TextsmsTwoTone")); + +var _Texture = _interopRequireDefault(require("./Texture")); + +var _TextureOutlined = _interopRequireDefault(require("./TextureOutlined")); + +var _TextureRounded = _interopRequireDefault(require("./TextureRounded")); + +var _TextureSharp = _interopRequireDefault(require("./TextureSharp")); + +var _TextureTwoTone = _interopRequireDefault(require("./TextureTwoTone")); + +var _TheaterComedy = _interopRequireDefault(require("./TheaterComedy")); + +var _TheaterComedyOutlined = _interopRequireDefault(require("./TheaterComedyOutlined")); + +var _TheaterComedyRounded = _interopRequireDefault(require("./TheaterComedyRounded")); + +var _TheaterComedySharp = _interopRequireDefault(require("./TheaterComedySharp")); + +var _TheaterComedyTwoTone = _interopRequireDefault(require("./TheaterComedyTwoTone")); + +var _Theaters = _interopRequireDefault(require("./Theaters")); + +var _TheatersOutlined = _interopRequireDefault(require("./TheatersOutlined")); + +var _TheatersRounded = _interopRequireDefault(require("./TheatersRounded")); + +var _TheatersSharp = _interopRequireDefault(require("./TheatersSharp")); + +var _TheatersTwoTone = _interopRequireDefault(require("./TheatersTwoTone")); + +var _Thermostat = _interopRequireDefault(require("./Thermostat")); + +var _ThermostatAuto = _interopRequireDefault(require("./ThermostatAuto")); + +var _ThermostatAutoOutlined = _interopRequireDefault(require("./ThermostatAutoOutlined")); + +var _ThermostatAutoRounded = _interopRequireDefault(require("./ThermostatAutoRounded")); + +var _ThermostatAutoSharp = _interopRequireDefault(require("./ThermostatAutoSharp")); + +var _ThermostatAutoTwoTone = _interopRequireDefault(require("./ThermostatAutoTwoTone")); + +var _ThermostatOutlined = _interopRequireDefault(require("./ThermostatOutlined")); + +var _ThermostatRounded = _interopRequireDefault(require("./ThermostatRounded")); + +var _ThermostatSharp = _interopRequireDefault(require("./ThermostatSharp")); + +var _ThermostatTwoTone = _interopRequireDefault(require("./ThermostatTwoTone")); + +var _ThirteenMp = _interopRequireDefault(require("./ThirteenMp")); + +var _ThirteenMpOutlined = _interopRequireDefault(require("./ThirteenMpOutlined")); + +var _ThirteenMpRounded = _interopRequireDefault(require("./ThirteenMpRounded")); + +var _ThirteenMpSharp = _interopRequireDefault(require("./ThirteenMpSharp")); + +var _ThirteenMpTwoTone = _interopRequireDefault(require("./ThirteenMpTwoTone")); + +var _ThirtyFps = _interopRequireDefault(require("./ThirtyFps")); + +var _ThirtyFpsOutlined = _interopRequireDefault(require("./ThirtyFpsOutlined")); + +var _ThirtyFpsRounded = _interopRequireDefault(require("./ThirtyFpsRounded")); + +var _ThirtyFpsSelect = _interopRequireDefault(require("./ThirtyFpsSelect")); + +var _ThirtyFpsSelectOutlined = _interopRequireDefault(require("./ThirtyFpsSelectOutlined")); + +var _ThirtyFpsSelectRounded = _interopRequireDefault(require("./ThirtyFpsSelectRounded")); + +var _ThirtyFpsSelectSharp = _interopRequireDefault(require("./ThirtyFpsSelectSharp")); + +var _ThirtyFpsSelectTwoTone = _interopRequireDefault(require("./ThirtyFpsSelectTwoTone")); + +var _ThirtyFpsSharp = _interopRequireDefault(require("./ThirtyFpsSharp")); + +var _ThirtyFpsTwoTone = _interopRequireDefault(require("./ThirtyFpsTwoTone")); + +var _ThreeDRotation = _interopRequireDefault(require("./ThreeDRotation")); + +var _ThreeDRotationOutlined = _interopRequireDefault(require("./ThreeDRotationOutlined")); + +var _ThreeDRotationRounded = _interopRequireDefault(require("./ThreeDRotationRounded")); + +var _ThreeDRotationSharp = _interopRequireDefault(require("./ThreeDRotationSharp")); + +var _ThreeDRotationTwoTone = _interopRequireDefault(require("./ThreeDRotationTwoTone")); + +var _ThreeGMobiledata = _interopRequireDefault(require("./ThreeGMobiledata")); + +var _ThreeGMobiledataOutlined = _interopRequireDefault(require("./ThreeGMobiledataOutlined")); + +var _ThreeGMobiledataRounded = _interopRequireDefault(require("./ThreeGMobiledataRounded")); + +var _ThreeGMobiledataSharp = _interopRequireDefault(require("./ThreeGMobiledataSharp")); + +var _ThreeGMobiledataTwoTone = _interopRequireDefault(require("./ThreeGMobiledataTwoTone")); + +var _ThreeK = _interopRequireDefault(require("./ThreeK")); + +var _ThreeKOutlined = _interopRequireDefault(require("./ThreeKOutlined")); + +var _ThreeKPlus = _interopRequireDefault(require("./ThreeKPlus")); + +var _ThreeKPlusOutlined = _interopRequireDefault(require("./ThreeKPlusOutlined")); + +var _ThreeKPlusRounded = _interopRequireDefault(require("./ThreeKPlusRounded")); + +var _ThreeKPlusSharp = _interopRequireDefault(require("./ThreeKPlusSharp")); + +var _ThreeKPlusTwoTone = _interopRequireDefault(require("./ThreeKPlusTwoTone")); + +var _ThreeKRounded = _interopRequireDefault(require("./ThreeKRounded")); + +var _ThreeKSharp = _interopRequireDefault(require("./ThreeKSharp")); + +var _ThreeKTwoTone = _interopRequireDefault(require("./ThreeKTwoTone")); + +var _ThreeMp = _interopRequireDefault(require("./ThreeMp")); + +var _ThreeMpOutlined = _interopRequireDefault(require("./ThreeMpOutlined")); + +var _ThreeMpRounded = _interopRequireDefault(require("./ThreeMpRounded")); + +var _ThreeMpSharp = _interopRequireDefault(require("./ThreeMpSharp")); + +var _ThreeMpTwoTone = _interopRequireDefault(require("./ThreeMpTwoTone")); + +var _ThreeP = _interopRequireDefault(require("./ThreeP")); + +var _ThreePOutlined = _interopRequireDefault(require("./ThreePOutlined")); + +var _ThreePRounded = _interopRequireDefault(require("./ThreePRounded")); + +var _ThreePSharp = _interopRequireDefault(require("./ThreePSharp")); + +var _ThreePTwoTone = _interopRequireDefault(require("./ThreePTwoTone")); + +var _ThreeSixty = _interopRequireDefault(require("./ThreeSixty")); + +var _ThreeSixtyOutlined = _interopRequireDefault(require("./ThreeSixtyOutlined")); + +var _ThreeSixtyRounded = _interopRequireDefault(require("./ThreeSixtyRounded")); + +var _ThreeSixtySharp = _interopRequireDefault(require("./ThreeSixtySharp")); + +var _ThreeSixtyTwoTone = _interopRequireDefault(require("./ThreeSixtyTwoTone")); + +var _ThumbDown = _interopRequireDefault(require("./ThumbDown")); + +var _ThumbDownAlt = _interopRequireDefault(require("./ThumbDownAlt")); + +var _ThumbDownAltOutlined = _interopRequireDefault(require("./ThumbDownAltOutlined")); + +var _ThumbDownAltRounded = _interopRequireDefault(require("./ThumbDownAltRounded")); + +var _ThumbDownAltSharp = _interopRequireDefault(require("./ThumbDownAltSharp")); + +var _ThumbDownAltTwoTone = _interopRequireDefault(require("./ThumbDownAltTwoTone")); + +var _ThumbDownOffAlt = _interopRequireDefault(require("./ThumbDownOffAlt")); + +var _ThumbDownOffAltOutlined = _interopRequireDefault(require("./ThumbDownOffAltOutlined")); + +var _ThumbDownOffAltRounded = _interopRequireDefault(require("./ThumbDownOffAltRounded")); + +var _ThumbDownOffAltSharp = _interopRequireDefault(require("./ThumbDownOffAltSharp")); + +var _ThumbDownOffAltTwoTone = _interopRequireDefault(require("./ThumbDownOffAltTwoTone")); + +var _ThumbDownOutlined = _interopRequireDefault(require("./ThumbDownOutlined")); + +var _ThumbDownRounded = _interopRequireDefault(require("./ThumbDownRounded")); + +var _ThumbDownSharp = _interopRequireDefault(require("./ThumbDownSharp")); + +var _ThumbDownTwoTone = _interopRequireDefault(require("./ThumbDownTwoTone")); + +var _ThumbUp = _interopRequireDefault(require("./ThumbUp")); + +var _ThumbUpAlt = _interopRequireDefault(require("./ThumbUpAlt")); + +var _ThumbUpAltOutlined = _interopRequireDefault(require("./ThumbUpAltOutlined")); + +var _ThumbUpAltRounded = _interopRequireDefault(require("./ThumbUpAltRounded")); + +var _ThumbUpAltSharp = _interopRequireDefault(require("./ThumbUpAltSharp")); + +var _ThumbUpAltTwoTone = _interopRequireDefault(require("./ThumbUpAltTwoTone")); + +var _ThumbUpOffAlt = _interopRequireDefault(require("./ThumbUpOffAlt")); + +var _ThumbUpOffAltOutlined = _interopRequireDefault(require("./ThumbUpOffAltOutlined")); + +var _ThumbUpOffAltRounded = _interopRequireDefault(require("./ThumbUpOffAltRounded")); + +var _ThumbUpOffAltSharp = _interopRequireDefault(require("./ThumbUpOffAltSharp")); + +var _ThumbUpOffAltTwoTone = _interopRequireDefault(require("./ThumbUpOffAltTwoTone")); + +var _ThumbUpOutlined = _interopRequireDefault(require("./ThumbUpOutlined")); + +var _ThumbUpRounded = _interopRequireDefault(require("./ThumbUpRounded")); + +var _ThumbUpSharp = _interopRequireDefault(require("./ThumbUpSharp")); + +var _ThumbUpTwoTone = _interopRequireDefault(require("./ThumbUpTwoTone")); + +var _ThumbsUpDown = _interopRequireDefault(require("./ThumbsUpDown")); + +var _ThumbsUpDownOutlined = _interopRequireDefault(require("./ThumbsUpDownOutlined")); + +var _ThumbsUpDownRounded = _interopRequireDefault(require("./ThumbsUpDownRounded")); + +var _ThumbsUpDownSharp = _interopRequireDefault(require("./ThumbsUpDownSharp")); + +var _ThumbsUpDownTwoTone = _interopRequireDefault(require("./ThumbsUpDownTwoTone")); + +var _TimeToLeave = _interopRequireDefault(require("./TimeToLeave")); + +var _TimeToLeaveOutlined = _interopRequireDefault(require("./TimeToLeaveOutlined")); + +var _TimeToLeaveRounded = _interopRequireDefault(require("./TimeToLeaveRounded")); + +var _TimeToLeaveSharp = _interopRequireDefault(require("./TimeToLeaveSharp")); + +var _TimeToLeaveTwoTone = _interopRequireDefault(require("./TimeToLeaveTwoTone")); + +var _Timelapse = _interopRequireDefault(require("./Timelapse")); + +var _TimelapseOutlined = _interopRequireDefault(require("./TimelapseOutlined")); + +var _TimelapseRounded = _interopRequireDefault(require("./TimelapseRounded")); + +var _TimelapseSharp = _interopRequireDefault(require("./TimelapseSharp")); + +var _TimelapseTwoTone = _interopRequireDefault(require("./TimelapseTwoTone")); + +var _Timeline = _interopRequireDefault(require("./Timeline")); + +var _TimelineOutlined = _interopRequireDefault(require("./TimelineOutlined")); + +var _TimelineRounded = _interopRequireDefault(require("./TimelineRounded")); + +var _TimelineSharp = _interopRequireDefault(require("./TimelineSharp")); + +var _TimelineTwoTone = _interopRequireDefault(require("./TimelineTwoTone")); + +var _Timer = _interopRequireDefault(require("./Timer")); + +var _Timer2 = _interopRequireDefault(require("./Timer10")); + +var _Timer10Outlined = _interopRequireDefault(require("./Timer10Outlined")); + +var _Timer10Rounded = _interopRequireDefault(require("./Timer10Rounded")); + +var _Timer10Select = _interopRequireDefault(require("./Timer10Select")); + +var _Timer10SelectOutlined = _interopRequireDefault(require("./Timer10SelectOutlined")); + +var _Timer10SelectRounded = _interopRequireDefault(require("./Timer10SelectRounded")); + +var _Timer10SelectSharp = _interopRequireDefault(require("./Timer10SelectSharp")); + +var _Timer10SelectTwoTone = _interopRequireDefault(require("./Timer10SelectTwoTone")); + +var _Timer10Sharp = _interopRequireDefault(require("./Timer10Sharp")); + +var _Timer10TwoTone = _interopRequireDefault(require("./Timer10TwoTone")); + +var _Timer3 = _interopRequireDefault(require("./Timer3")); + +var _Timer3Outlined = _interopRequireDefault(require("./Timer3Outlined")); + +var _Timer3Rounded = _interopRequireDefault(require("./Timer3Rounded")); + +var _Timer3Select = _interopRequireDefault(require("./Timer3Select")); + +var _Timer3SelectOutlined = _interopRequireDefault(require("./Timer3SelectOutlined")); + +var _Timer3SelectRounded = _interopRequireDefault(require("./Timer3SelectRounded")); + +var _Timer3SelectSharp = _interopRequireDefault(require("./Timer3SelectSharp")); + +var _Timer3SelectTwoTone = _interopRequireDefault(require("./Timer3SelectTwoTone")); + +var _Timer3Sharp = _interopRequireDefault(require("./Timer3Sharp")); + +var _Timer3TwoTone = _interopRequireDefault(require("./Timer3TwoTone")); + +var _TimerOff = _interopRequireDefault(require("./TimerOff")); + +var _TimerOffOutlined = _interopRequireDefault(require("./TimerOffOutlined")); + +var _TimerOffRounded = _interopRequireDefault(require("./TimerOffRounded")); + +var _TimerOffSharp = _interopRequireDefault(require("./TimerOffSharp")); + +var _TimerOffTwoTone = _interopRequireDefault(require("./TimerOffTwoTone")); + +var _TimerOutlined = _interopRequireDefault(require("./TimerOutlined")); + +var _TimerRounded = _interopRequireDefault(require("./TimerRounded")); + +var _TimerSharp = _interopRequireDefault(require("./TimerSharp")); + +var _TimerTwoTone = _interopRequireDefault(require("./TimerTwoTone")); + +var _TimesOneMobiledata = _interopRequireDefault(require("./TimesOneMobiledata")); + +var _TimesOneMobiledataOutlined = _interopRequireDefault(require("./TimesOneMobiledataOutlined")); + +var _TimesOneMobiledataRounded = _interopRequireDefault(require("./TimesOneMobiledataRounded")); + +var _TimesOneMobiledataSharp = _interopRequireDefault(require("./TimesOneMobiledataSharp")); + +var _TimesOneMobiledataTwoTone = _interopRequireDefault(require("./TimesOneMobiledataTwoTone")); + +var _Title = _interopRequireDefault(require("./Title")); + +var _TitleOutlined = _interopRequireDefault(require("./TitleOutlined")); + +var _TitleRounded = _interopRequireDefault(require("./TitleRounded")); + +var _TitleSharp = _interopRequireDefault(require("./TitleSharp")); + +var _TitleTwoTone = _interopRequireDefault(require("./TitleTwoTone")); + +var _Toc = _interopRequireDefault(require("./Toc")); + +var _TocOutlined = _interopRequireDefault(require("./TocOutlined")); + +var _TocRounded = _interopRequireDefault(require("./TocRounded")); + +var _TocSharp = _interopRequireDefault(require("./TocSharp")); + +var _TocTwoTone = _interopRequireDefault(require("./TocTwoTone")); + +var _Today = _interopRequireDefault(require("./Today")); + +var _TodayOutlined = _interopRequireDefault(require("./TodayOutlined")); + +var _TodayRounded = _interopRequireDefault(require("./TodayRounded")); + +var _TodaySharp = _interopRequireDefault(require("./TodaySharp")); + +var _TodayTwoTone = _interopRequireDefault(require("./TodayTwoTone")); + +var _ToggleOff = _interopRequireDefault(require("./ToggleOff")); + +var _ToggleOffOutlined = _interopRequireDefault(require("./ToggleOffOutlined")); + +var _ToggleOffRounded = _interopRequireDefault(require("./ToggleOffRounded")); + +var _ToggleOffSharp = _interopRequireDefault(require("./ToggleOffSharp")); + +var _ToggleOffTwoTone = _interopRequireDefault(require("./ToggleOffTwoTone")); + +var _ToggleOn = _interopRequireDefault(require("./ToggleOn")); + +var _ToggleOnOutlined = _interopRequireDefault(require("./ToggleOnOutlined")); + +var _ToggleOnRounded = _interopRequireDefault(require("./ToggleOnRounded")); + +var _ToggleOnSharp = _interopRequireDefault(require("./ToggleOnSharp")); + +var _ToggleOnTwoTone = _interopRequireDefault(require("./ToggleOnTwoTone")); + +var _Toll = _interopRequireDefault(require("./Toll")); + +var _TollOutlined = _interopRequireDefault(require("./TollOutlined")); + +var _TollRounded = _interopRequireDefault(require("./TollRounded")); + +var _TollSharp = _interopRequireDefault(require("./TollSharp")); + +var _TollTwoTone = _interopRequireDefault(require("./TollTwoTone")); + +var _Tonality = _interopRequireDefault(require("./Tonality")); + +var _TonalityOutlined = _interopRequireDefault(require("./TonalityOutlined")); + +var _TonalityRounded = _interopRequireDefault(require("./TonalityRounded")); + +var _TonalitySharp = _interopRequireDefault(require("./TonalitySharp")); + +var _TonalityTwoTone = _interopRequireDefault(require("./TonalityTwoTone")); + +var _Topic = _interopRequireDefault(require("./Topic")); + +var _TopicOutlined = _interopRequireDefault(require("./TopicOutlined")); + +var _TopicRounded = _interopRequireDefault(require("./TopicRounded")); + +var _TopicSharp = _interopRequireDefault(require("./TopicSharp")); + +var _TopicTwoTone = _interopRequireDefault(require("./TopicTwoTone")); + +var _TouchApp = _interopRequireDefault(require("./TouchApp")); + +var _TouchAppOutlined = _interopRequireDefault(require("./TouchAppOutlined")); + +var _TouchAppRounded = _interopRequireDefault(require("./TouchAppRounded")); + +var _TouchAppSharp = _interopRequireDefault(require("./TouchAppSharp")); + +var _TouchAppTwoTone = _interopRequireDefault(require("./TouchAppTwoTone")); + +var _Tour = _interopRequireDefault(require("./Tour")); + +var _TourOutlined = _interopRequireDefault(require("./TourOutlined")); + +var _TourRounded = _interopRequireDefault(require("./TourRounded")); + +var _TourSharp = _interopRequireDefault(require("./TourSharp")); + +var _TourTwoTone = _interopRequireDefault(require("./TourTwoTone")); + +var _Toys = _interopRequireDefault(require("./Toys")); + +var _ToysOutlined = _interopRequireDefault(require("./ToysOutlined")); + +var _ToysRounded = _interopRequireDefault(require("./ToysRounded")); + +var _ToysSharp = _interopRequireDefault(require("./ToysSharp")); + +var _ToysTwoTone = _interopRequireDefault(require("./ToysTwoTone")); + +var _TrackChanges = _interopRequireDefault(require("./TrackChanges")); + +var _TrackChangesOutlined = _interopRequireDefault(require("./TrackChangesOutlined")); + +var _TrackChangesRounded = _interopRequireDefault(require("./TrackChangesRounded")); + +var _TrackChangesSharp = _interopRequireDefault(require("./TrackChangesSharp")); + +var _TrackChangesTwoTone = _interopRequireDefault(require("./TrackChangesTwoTone")); + +var _Traffic = _interopRequireDefault(require("./Traffic")); + +var _TrafficOutlined = _interopRequireDefault(require("./TrafficOutlined")); + +var _TrafficRounded = _interopRequireDefault(require("./TrafficRounded")); + +var _TrafficSharp = _interopRequireDefault(require("./TrafficSharp")); + +var _TrafficTwoTone = _interopRequireDefault(require("./TrafficTwoTone")); + +var _Train = _interopRequireDefault(require("./Train")); + +var _TrainOutlined = _interopRequireDefault(require("./TrainOutlined")); + +var _TrainRounded = _interopRequireDefault(require("./TrainRounded")); + +var _TrainSharp = _interopRequireDefault(require("./TrainSharp")); + +var _TrainTwoTone = _interopRequireDefault(require("./TrainTwoTone")); + +var _Tram = _interopRequireDefault(require("./Tram")); + +var _TramOutlined = _interopRequireDefault(require("./TramOutlined")); + +var _TramRounded = _interopRequireDefault(require("./TramRounded")); + +var _TramSharp = _interopRequireDefault(require("./TramSharp")); + +var _TramTwoTone = _interopRequireDefault(require("./TramTwoTone")); + +var _TransferWithinAStation = _interopRequireDefault(require("./TransferWithinAStation")); + +var _TransferWithinAStationOutlined = _interopRequireDefault(require("./TransferWithinAStationOutlined")); + +var _TransferWithinAStationRounded = _interopRequireDefault(require("./TransferWithinAStationRounded")); + +var _TransferWithinAStationSharp = _interopRequireDefault(require("./TransferWithinAStationSharp")); + +var _TransferWithinAStationTwoTone = _interopRequireDefault(require("./TransferWithinAStationTwoTone")); + +var _Transform = _interopRequireDefault(require("./Transform")); + +var _TransformOutlined = _interopRequireDefault(require("./TransformOutlined")); + +var _TransformRounded = _interopRequireDefault(require("./TransformRounded")); + +var _TransformSharp = _interopRequireDefault(require("./TransformSharp")); + +var _TransformTwoTone = _interopRequireDefault(require("./TransformTwoTone")); + +var _Transgender = _interopRequireDefault(require("./Transgender")); + +var _TransgenderOutlined = _interopRequireDefault(require("./TransgenderOutlined")); + +var _TransgenderRounded = _interopRequireDefault(require("./TransgenderRounded")); + +var _TransgenderSharp = _interopRequireDefault(require("./TransgenderSharp")); + +var _TransgenderTwoTone = _interopRequireDefault(require("./TransgenderTwoTone")); + +var _TransitEnterexit = _interopRequireDefault(require("./TransitEnterexit")); + +var _TransitEnterexitOutlined = _interopRequireDefault(require("./TransitEnterexitOutlined")); + +var _TransitEnterexitRounded = _interopRequireDefault(require("./TransitEnterexitRounded")); + +var _TransitEnterexitSharp = _interopRequireDefault(require("./TransitEnterexitSharp")); + +var _TransitEnterexitTwoTone = _interopRequireDefault(require("./TransitEnterexitTwoTone")); + +var _Translate = _interopRequireDefault(require("./Translate")); + +var _TranslateOutlined = _interopRequireDefault(require("./TranslateOutlined")); + +var _TranslateRounded = _interopRequireDefault(require("./TranslateRounded")); + +var _TranslateSharp = _interopRequireDefault(require("./TranslateSharp")); + +var _TranslateTwoTone = _interopRequireDefault(require("./TranslateTwoTone")); + +var _TravelExplore = _interopRequireDefault(require("./TravelExplore")); + +var _TravelExploreOutlined = _interopRequireDefault(require("./TravelExploreOutlined")); + +var _TravelExploreRounded = _interopRequireDefault(require("./TravelExploreRounded")); + +var _TravelExploreSharp = _interopRequireDefault(require("./TravelExploreSharp")); + +var _TravelExploreTwoTone = _interopRequireDefault(require("./TravelExploreTwoTone")); + +var _TrendingDown = _interopRequireDefault(require("./TrendingDown")); + +var _TrendingDownOutlined = _interopRequireDefault(require("./TrendingDownOutlined")); + +var _TrendingDownRounded = _interopRequireDefault(require("./TrendingDownRounded")); + +var _TrendingDownSharp = _interopRequireDefault(require("./TrendingDownSharp")); + +var _TrendingDownTwoTone = _interopRequireDefault(require("./TrendingDownTwoTone")); + +var _TrendingFlat = _interopRequireDefault(require("./TrendingFlat")); + +var _TrendingFlatOutlined = _interopRequireDefault(require("./TrendingFlatOutlined")); + +var _TrendingFlatRounded = _interopRequireDefault(require("./TrendingFlatRounded")); + +var _TrendingFlatSharp = _interopRequireDefault(require("./TrendingFlatSharp")); + +var _TrendingFlatTwoTone = _interopRequireDefault(require("./TrendingFlatTwoTone")); + +var _TrendingUp = _interopRequireDefault(require("./TrendingUp")); + +var _TrendingUpOutlined = _interopRequireDefault(require("./TrendingUpOutlined")); + +var _TrendingUpRounded = _interopRequireDefault(require("./TrendingUpRounded")); + +var _TrendingUpSharp = _interopRequireDefault(require("./TrendingUpSharp")); + +var _TrendingUpTwoTone = _interopRequireDefault(require("./TrendingUpTwoTone")); + +var _TripOrigin = _interopRequireDefault(require("./TripOrigin")); + +var _TripOriginOutlined = _interopRequireDefault(require("./TripOriginOutlined")); + +var _TripOriginRounded = _interopRequireDefault(require("./TripOriginRounded")); + +var _TripOriginSharp = _interopRequireDefault(require("./TripOriginSharp")); + +var _TripOriginTwoTone = _interopRequireDefault(require("./TripOriginTwoTone")); + +var _Try = _interopRequireDefault(require("./Try")); + +var _TryOutlined = _interopRequireDefault(require("./TryOutlined")); + +var _TryRounded = _interopRequireDefault(require("./TryRounded")); + +var _TrySharp = _interopRequireDefault(require("./TrySharp")); + +var _TryTwoTone = _interopRequireDefault(require("./TryTwoTone")); + +var _Tty = _interopRequireDefault(require("./Tty")); + +var _TtyOutlined = _interopRequireDefault(require("./TtyOutlined")); + +var _TtyRounded = _interopRequireDefault(require("./TtyRounded")); + +var _TtySharp = _interopRequireDefault(require("./TtySharp")); + +var _TtyTwoTone = _interopRequireDefault(require("./TtyTwoTone")); + +var _Tune = _interopRequireDefault(require("./Tune")); + +var _TuneOutlined = _interopRequireDefault(require("./TuneOutlined")); + +var _TuneRounded = _interopRequireDefault(require("./TuneRounded")); + +var _TuneSharp = _interopRequireDefault(require("./TuneSharp")); + +var _TuneTwoTone = _interopRequireDefault(require("./TuneTwoTone")); + +var _Tungsten = _interopRequireDefault(require("./Tungsten")); + +var _TungstenOutlined = _interopRequireDefault(require("./TungstenOutlined")); + +var _TungstenRounded = _interopRequireDefault(require("./TungstenRounded")); + +var _TungstenSharp = _interopRequireDefault(require("./TungstenSharp")); + +var _TungstenTwoTone = _interopRequireDefault(require("./TungstenTwoTone")); + +var _TurnedIn = _interopRequireDefault(require("./TurnedIn")); + +var _TurnedInNot = _interopRequireDefault(require("./TurnedInNot")); + +var _TurnedInNotOutlined = _interopRequireDefault(require("./TurnedInNotOutlined")); + +var _TurnedInNotRounded = _interopRequireDefault(require("./TurnedInNotRounded")); + +var _TurnedInNotSharp = _interopRequireDefault(require("./TurnedInNotSharp")); + +var _TurnedInNotTwoTone = _interopRequireDefault(require("./TurnedInNotTwoTone")); + +var _TurnedInOutlined = _interopRequireDefault(require("./TurnedInOutlined")); + +var _TurnedInRounded = _interopRequireDefault(require("./TurnedInRounded")); + +var _TurnedInSharp = _interopRequireDefault(require("./TurnedInSharp")); + +var _TurnedInTwoTone = _interopRequireDefault(require("./TurnedInTwoTone")); + +var _Tv = _interopRequireDefault(require("./Tv")); + +var _TvOff = _interopRequireDefault(require("./TvOff")); + +var _TvOffOutlined = _interopRequireDefault(require("./TvOffOutlined")); + +var _TvOffRounded = _interopRequireDefault(require("./TvOffRounded")); + +var _TvOffSharp = _interopRequireDefault(require("./TvOffSharp")); + +var _TvOffTwoTone = _interopRequireDefault(require("./TvOffTwoTone")); + +var _TvOutlined = _interopRequireDefault(require("./TvOutlined")); + +var _TvRounded = _interopRequireDefault(require("./TvRounded")); + +var _TvSharp = _interopRequireDefault(require("./TvSharp")); + +var _TvTwoTone = _interopRequireDefault(require("./TvTwoTone")); + +var _TwelveMp = _interopRequireDefault(require("./TwelveMp")); + +var _TwelveMpOutlined = _interopRequireDefault(require("./TwelveMpOutlined")); + +var _TwelveMpRounded = _interopRequireDefault(require("./TwelveMpRounded")); + +var _TwelveMpSharp = _interopRequireDefault(require("./TwelveMpSharp")); + +var _TwelveMpTwoTone = _interopRequireDefault(require("./TwelveMpTwoTone")); + +var _TwentyFourMp = _interopRequireDefault(require("./TwentyFourMp")); + +var _TwentyFourMpOutlined = _interopRequireDefault(require("./TwentyFourMpOutlined")); + +var _TwentyFourMpRounded = _interopRequireDefault(require("./TwentyFourMpRounded")); + +var _TwentyFourMpSharp = _interopRequireDefault(require("./TwentyFourMpSharp")); + +var _TwentyFourMpTwoTone = _interopRequireDefault(require("./TwentyFourMpTwoTone")); + +var _TwentyOneMp = _interopRequireDefault(require("./TwentyOneMp")); + +var _TwentyOneMpOutlined = _interopRequireDefault(require("./TwentyOneMpOutlined")); + +var _TwentyOneMpRounded = _interopRequireDefault(require("./TwentyOneMpRounded")); + +var _TwentyOneMpSharp = _interopRequireDefault(require("./TwentyOneMpSharp")); + +var _TwentyOneMpTwoTone = _interopRequireDefault(require("./TwentyOneMpTwoTone")); + +var _TwentyThreeMp = _interopRequireDefault(require("./TwentyThreeMp")); + +var _TwentyThreeMpOutlined = _interopRequireDefault(require("./TwentyThreeMpOutlined")); + +var _TwentyThreeMpRounded = _interopRequireDefault(require("./TwentyThreeMpRounded")); + +var _TwentyThreeMpSharp = _interopRequireDefault(require("./TwentyThreeMpSharp")); + +var _TwentyThreeMpTwoTone = _interopRequireDefault(require("./TwentyThreeMpTwoTone")); + +var _TwentyTwoMp = _interopRequireDefault(require("./TwentyTwoMp")); + +var _TwentyTwoMpOutlined = _interopRequireDefault(require("./TwentyTwoMpOutlined")); + +var _TwentyTwoMpRounded = _interopRequireDefault(require("./TwentyTwoMpRounded")); + +var _TwentyTwoMpSharp = _interopRequireDefault(require("./TwentyTwoMpSharp")); + +var _TwentyTwoMpTwoTone = _interopRequireDefault(require("./TwentyTwoMpTwoTone")); + +var _TwentyZeroMp = _interopRequireDefault(require("./TwentyZeroMp")); + +var _TwentyZeroMpOutlined = _interopRequireDefault(require("./TwentyZeroMpOutlined")); + +var _TwentyZeroMpRounded = _interopRequireDefault(require("./TwentyZeroMpRounded")); + +var _TwentyZeroMpSharp = _interopRequireDefault(require("./TwentyZeroMpSharp")); + +var _TwentyZeroMpTwoTone = _interopRequireDefault(require("./TwentyZeroMpTwoTone")); + +var _Twitter = _interopRequireDefault(require("./Twitter")); + +var _TwoK = _interopRequireDefault(require("./TwoK")); + +var _TwoKOutlined = _interopRequireDefault(require("./TwoKOutlined")); + +var _TwoKPlus = _interopRequireDefault(require("./TwoKPlus")); + +var _TwoKPlusOutlined = _interopRequireDefault(require("./TwoKPlusOutlined")); + +var _TwoKPlusRounded = _interopRequireDefault(require("./TwoKPlusRounded")); + +var _TwoKPlusSharp = _interopRequireDefault(require("./TwoKPlusSharp")); + +var _TwoKPlusTwoTone = _interopRequireDefault(require("./TwoKPlusTwoTone")); + +var _TwoKRounded = _interopRequireDefault(require("./TwoKRounded")); + +var _TwoKSharp = _interopRequireDefault(require("./TwoKSharp")); + +var _TwoKTwoTone = _interopRequireDefault(require("./TwoKTwoTone")); + +var _TwoMp = _interopRequireDefault(require("./TwoMp")); + +var _TwoMpOutlined = _interopRequireDefault(require("./TwoMpOutlined")); + +var _TwoMpRounded = _interopRequireDefault(require("./TwoMpRounded")); + +var _TwoMpSharp = _interopRequireDefault(require("./TwoMpSharp")); + +var _TwoMpTwoTone = _interopRequireDefault(require("./TwoMpTwoTone")); + +var _TwoWheeler = _interopRequireDefault(require("./TwoWheeler")); + +var _TwoWheelerOutlined = _interopRequireDefault(require("./TwoWheelerOutlined")); + +var _TwoWheelerRounded = _interopRequireDefault(require("./TwoWheelerRounded")); + +var _TwoWheelerSharp = _interopRequireDefault(require("./TwoWheelerSharp")); + +var _TwoWheelerTwoTone = _interopRequireDefault(require("./TwoWheelerTwoTone")); + +var _Umbrella = _interopRequireDefault(require("./Umbrella")); + +var _UmbrellaOutlined = _interopRequireDefault(require("./UmbrellaOutlined")); + +var _UmbrellaRounded = _interopRequireDefault(require("./UmbrellaRounded")); + +var _UmbrellaSharp = _interopRequireDefault(require("./UmbrellaSharp")); + +var _UmbrellaTwoTone = _interopRequireDefault(require("./UmbrellaTwoTone")); + +var _Unarchive = _interopRequireDefault(require("./Unarchive")); + +var _UnarchiveOutlined = _interopRequireDefault(require("./UnarchiveOutlined")); + +var _UnarchiveRounded = _interopRequireDefault(require("./UnarchiveRounded")); + +var _UnarchiveSharp = _interopRequireDefault(require("./UnarchiveSharp")); + +var _UnarchiveTwoTone = _interopRequireDefault(require("./UnarchiveTwoTone")); + +var _Undo = _interopRequireDefault(require("./Undo")); + +var _UndoOutlined = _interopRequireDefault(require("./UndoOutlined")); + +var _UndoRounded = _interopRequireDefault(require("./UndoRounded")); + +var _UndoSharp = _interopRequireDefault(require("./UndoSharp")); + +var _UndoTwoTone = _interopRequireDefault(require("./UndoTwoTone")); + +var _UnfoldLess = _interopRequireDefault(require("./UnfoldLess")); + +var _UnfoldLessOutlined = _interopRequireDefault(require("./UnfoldLessOutlined")); + +var _UnfoldLessRounded = _interopRequireDefault(require("./UnfoldLessRounded")); + +var _UnfoldLessSharp = _interopRequireDefault(require("./UnfoldLessSharp")); + +var _UnfoldLessTwoTone = _interopRequireDefault(require("./UnfoldLessTwoTone")); + +var _UnfoldMore = _interopRequireDefault(require("./UnfoldMore")); + +var _UnfoldMoreOutlined = _interopRequireDefault(require("./UnfoldMoreOutlined")); + +var _UnfoldMoreRounded = _interopRequireDefault(require("./UnfoldMoreRounded")); + +var _UnfoldMoreSharp = _interopRequireDefault(require("./UnfoldMoreSharp")); + +var _UnfoldMoreTwoTone = _interopRequireDefault(require("./UnfoldMoreTwoTone")); + +var _Unpublished = _interopRequireDefault(require("./Unpublished")); + +var _UnpublishedOutlined = _interopRequireDefault(require("./UnpublishedOutlined")); + +var _UnpublishedRounded = _interopRequireDefault(require("./UnpublishedRounded")); + +var _UnpublishedSharp = _interopRequireDefault(require("./UnpublishedSharp")); + +var _UnpublishedTwoTone = _interopRequireDefault(require("./UnpublishedTwoTone")); + +var _Unsubscribe = _interopRequireDefault(require("./Unsubscribe")); + +var _UnsubscribeOutlined = _interopRequireDefault(require("./UnsubscribeOutlined")); + +var _UnsubscribeRounded = _interopRequireDefault(require("./UnsubscribeRounded")); + +var _UnsubscribeSharp = _interopRequireDefault(require("./UnsubscribeSharp")); + +var _UnsubscribeTwoTone = _interopRequireDefault(require("./UnsubscribeTwoTone")); + +var _Upcoming = _interopRequireDefault(require("./Upcoming")); + +var _UpcomingOutlined = _interopRequireDefault(require("./UpcomingOutlined")); + +var _UpcomingRounded = _interopRequireDefault(require("./UpcomingRounded")); + +var _UpcomingSharp = _interopRequireDefault(require("./UpcomingSharp")); + +var _UpcomingTwoTone = _interopRequireDefault(require("./UpcomingTwoTone")); + +var _Update = _interopRequireDefault(require("./Update")); + +var _UpdateDisabled = _interopRequireDefault(require("./UpdateDisabled")); + +var _UpdateDisabledOutlined = _interopRequireDefault(require("./UpdateDisabledOutlined")); + +var _UpdateDisabledRounded = _interopRequireDefault(require("./UpdateDisabledRounded")); + +var _UpdateDisabledSharp = _interopRequireDefault(require("./UpdateDisabledSharp")); + +var _UpdateDisabledTwoTone = _interopRequireDefault(require("./UpdateDisabledTwoTone")); + +var _UpdateOutlined = _interopRequireDefault(require("./UpdateOutlined")); + +var _UpdateRounded = _interopRequireDefault(require("./UpdateRounded")); + +var _UpdateSharp = _interopRequireDefault(require("./UpdateSharp")); + +var _UpdateTwoTone = _interopRequireDefault(require("./UpdateTwoTone")); + +var _Upgrade = _interopRequireDefault(require("./Upgrade")); + +var _UpgradeOutlined = _interopRequireDefault(require("./UpgradeOutlined")); + +var _UpgradeRounded = _interopRequireDefault(require("./UpgradeRounded")); + +var _UpgradeSharp = _interopRequireDefault(require("./UpgradeSharp")); + +var _UpgradeTwoTone = _interopRequireDefault(require("./UpgradeTwoTone")); + +var _Upload = _interopRequireDefault(require("./Upload")); + +var _UploadFile = _interopRequireDefault(require("./UploadFile")); + +var _UploadFileOutlined = _interopRequireDefault(require("./UploadFileOutlined")); + +var _UploadFileRounded = _interopRequireDefault(require("./UploadFileRounded")); + +var _UploadFileSharp = _interopRequireDefault(require("./UploadFileSharp")); + +var _UploadFileTwoTone = _interopRequireDefault(require("./UploadFileTwoTone")); + +var _UploadOutlined = _interopRequireDefault(require("./UploadOutlined")); + +var _UploadRounded = _interopRequireDefault(require("./UploadRounded")); + +var _UploadSharp = _interopRequireDefault(require("./UploadSharp")); + +var _UploadTwoTone = _interopRequireDefault(require("./UploadTwoTone")); + +var _Usb = _interopRequireDefault(require("./Usb")); + +var _UsbOff = _interopRequireDefault(require("./UsbOff")); + +var _UsbOffOutlined = _interopRequireDefault(require("./UsbOffOutlined")); + +var _UsbOffRounded = _interopRequireDefault(require("./UsbOffRounded")); + +var _UsbOffSharp = _interopRequireDefault(require("./UsbOffSharp")); + +var _UsbOffTwoTone = _interopRequireDefault(require("./UsbOffTwoTone")); + +var _UsbOutlined = _interopRequireDefault(require("./UsbOutlined")); + +var _UsbRounded = _interopRequireDefault(require("./UsbRounded")); + +var _UsbSharp = _interopRequireDefault(require("./UsbSharp")); + +var _UsbTwoTone = _interopRequireDefault(require("./UsbTwoTone")); + +var _Verified = _interopRequireDefault(require("./Verified")); + +var _VerifiedOutlined = _interopRequireDefault(require("./VerifiedOutlined")); + +var _VerifiedRounded = _interopRequireDefault(require("./VerifiedRounded")); + +var _VerifiedSharp = _interopRequireDefault(require("./VerifiedSharp")); + +var _VerifiedTwoTone = _interopRequireDefault(require("./VerifiedTwoTone")); + +var _VerifiedUser = _interopRequireDefault(require("./VerifiedUser")); + +var _VerifiedUserOutlined = _interopRequireDefault(require("./VerifiedUserOutlined")); + +var _VerifiedUserRounded = _interopRequireDefault(require("./VerifiedUserRounded")); + +var _VerifiedUserSharp = _interopRequireDefault(require("./VerifiedUserSharp")); + +var _VerifiedUserTwoTone = _interopRequireDefault(require("./VerifiedUserTwoTone")); + +var _VerticalAlignBottom = _interopRequireDefault(require("./VerticalAlignBottom")); + +var _VerticalAlignBottomOutlined = _interopRequireDefault(require("./VerticalAlignBottomOutlined")); + +var _VerticalAlignBottomRounded = _interopRequireDefault(require("./VerticalAlignBottomRounded")); + +var _VerticalAlignBottomSharp = _interopRequireDefault(require("./VerticalAlignBottomSharp")); + +var _VerticalAlignBottomTwoTone = _interopRequireDefault(require("./VerticalAlignBottomTwoTone")); + +var _VerticalAlignCenter = _interopRequireDefault(require("./VerticalAlignCenter")); + +var _VerticalAlignCenterOutlined = _interopRequireDefault(require("./VerticalAlignCenterOutlined")); + +var _VerticalAlignCenterRounded = _interopRequireDefault(require("./VerticalAlignCenterRounded")); + +var _VerticalAlignCenterSharp = _interopRequireDefault(require("./VerticalAlignCenterSharp")); + +var _VerticalAlignCenterTwoTone = _interopRequireDefault(require("./VerticalAlignCenterTwoTone")); + +var _VerticalAlignTop = _interopRequireDefault(require("./VerticalAlignTop")); + +var _VerticalAlignTopOutlined = _interopRequireDefault(require("./VerticalAlignTopOutlined")); + +var _VerticalAlignTopRounded = _interopRequireDefault(require("./VerticalAlignTopRounded")); + +var _VerticalAlignTopSharp = _interopRequireDefault(require("./VerticalAlignTopSharp")); + +var _VerticalAlignTopTwoTone = _interopRequireDefault(require("./VerticalAlignTopTwoTone")); + +var _VerticalSplit = _interopRequireDefault(require("./VerticalSplit")); + +var _VerticalSplitOutlined = _interopRequireDefault(require("./VerticalSplitOutlined")); + +var _VerticalSplitRounded = _interopRequireDefault(require("./VerticalSplitRounded")); + +var _VerticalSplitSharp = _interopRequireDefault(require("./VerticalSplitSharp")); + +var _VerticalSplitTwoTone = _interopRequireDefault(require("./VerticalSplitTwoTone")); + +var _Vibration = _interopRequireDefault(require("./Vibration")); + +var _VibrationOutlined = _interopRequireDefault(require("./VibrationOutlined")); + +var _VibrationRounded = _interopRequireDefault(require("./VibrationRounded")); + +var _VibrationSharp = _interopRequireDefault(require("./VibrationSharp")); + +var _VibrationTwoTone = _interopRequireDefault(require("./VibrationTwoTone")); + +var _VideoCall = _interopRequireDefault(require("./VideoCall")); + +var _VideoCallOutlined = _interopRequireDefault(require("./VideoCallOutlined")); + +var _VideoCallRounded = _interopRequireDefault(require("./VideoCallRounded")); + +var _VideoCallSharp = _interopRequireDefault(require("./VideoCallSharp")); + +var _VideoCallTwoTone = _interopRequireDefault(require("./VideoCallTwoTone")); + +var _VideoCameraBack = _interopRequireDefault(require("./VideoCameraBack")); + +var _VideoCameraBackOutlined = _interopRequireDefault(require("./VideoCameraBackOutlined")); + +var _VideoCameraBackRounded = _interopRequireDefault(require("./VideoCameraBackRounded")); + +var _VideoCameraBackSharp = _interopRequireDefault(require("./VideoCameraBackSharp")); + +var _VideoCameraBackTwoTone = _interopRequireDefault(require("./VideoCameraBackTwoTone")); + +var _VideoCameraFront = _interopRequireDefault(require("./VideoCameraFront")); + +var _VideoCameraFrontOutlined = _interopRequireDefault(require("./VideoCameraFrontOutlined")); + +var _VideoCameraFrontRounded = _interopRequireDefault(require("./VideoCameraFrontRounded")); + +var _VideoCameraFrontSharp = _interopRequireDefault(require("./VideoCameraFrontSharp")); + +var _VideoCameraFrontTwoTone = _interopRequireDefault(require("./VideoCameraFrontTwoTone")); + +var _VideoLabel = _interopRequireDefault(require("./VideoLabel")); + +var _VideoLabelOutlined = _interopRequireDefault(require("./VideoLabelOutlined")); + +var _VideoLabelRounded = _interopRequireDefault(require("./VideoLabelRounded")); + +var _VideoLabelSharp = _interopRequireDefault(require("./VideoLabelSharp")); + +var _VideoLabelTwoTone = _interopRequireDefault(require("./VideoLabelTwoTone")); + +var _VideoLibrary = _interopRequireDefault(require("./VideoLibrary")); + +var _VideoLibraryOutlined = _interopRequireDefault(require("./VideoLibraryOutlined")); + +var _VideoLibraryRounded = _interopRequireDefault(require("./VideoLibraryRounded")); + +var _VideoLibrarySharp = _interopRequireDefault(require("./VideoLibrarySharp")); + +var _VideoLibraryTwoTone = _interopRequireDefault(require("./VideoLibraryTwoTone")); + +var _VideoSettings = _interopRequireDefault(require("./VideoSettings")); + +var _VideoSettingsOutlined = _interopRequireDefault(require("./VideoSettingsOutlined")); + +var _VideoSettingsRounded = _interopRequireDefault(require("./VideoSettingsRounded")); + +var _VideoSettingsSharp = _interopRequireDefault(require("./VideoSettingsSharp")); + +var _VideoSettingsTwoTone = _interopRequireDefault(require("./VideoSettingsTwoTone")); + +var _VideoStable = _interopRequireDefault(require("./VideoStable")); + +var _VideoStableOutlined = _interopRequireDefault(require("./VideoStableOutlined")); + +var _VideoStableRounded = _interopRequireDefault(require("./VideoStableRounded")); + +var _VideoStableSharp = _interopRequireDefault(require("./VideoStableSharp")); + +var _VideoStableTwoTone = _interopRequireDefault(require("./VideoStableTwoTone")); + +var _Videocam = _interopRequireDefault(require("./Videocam")); + +var _VideocamOff = _interopRequireDefault(require("./VideocamOff")); + +var _VideocamOffOutlined = _interopRequireDefault(require("./VideocamOffOutlined")); + +var _VideocamOffRounded = _interopRequireDefault(require("./VideocamOffRounded")); + +var _VideocamOffSharp = _interopRequireDefault(require("./VideocamOffSharp")); + +var _VideocamOffTwoTone = _interopRequireDefault(require("./VideocamOffTwoTone")); + +var _VideocamOutlined = _interopRequireDefault(require("./VideocamOutlined")); + +var _VideocamRounded = _interopRequireDefault(require("./VideocamRounded")); + +var _VideocamSharp = _interopRequireDefault(require("./VideocamSharp")); + +var _VideocamTwoTone = _interopRequireDefault(require("./VideocamTwoTone")); + +var _VideogameAsset = _interopRequireDefault(require("./VideogameAsset")); + +var _VideogameAssetOff = _interopRequireDefault(require("./VideogameAssetOff")); + +var _VideogameAssetOffOutlined = _interopRequireDefault(require("./VideogameAssetOffOutlined")); + +var _VideogameAssetOffRounded = _interopRequireDefault(require("./VideogameAssetOffRounded")); + +var _VideogameAssetOffSharp = _interopRequireDefault(require("./VideogameAssetOffSharp")); + +var _VideogameAssetOffTwoTone = _interopRequireDefault(require("./VideogameAssetOffTwoTone")); + +var _VideogameAssetOutlined = _interopRequireDefault(require("./VideogameAssetOutlined")); + +var _VideogameAssetRounded = _interopRequireDefault(require("./VideogameAssetRounded")); + +var _VideogameAssetSharp = _interopRequireDefault(require("./VideogameAssetSharp")); + +var _VideogameAssetTwoTone = _interopRequireDefault(require("./VideogameAssetTwoTone")); + +var _ViewAgenda = _interopRequireDefault(require("./ViewAgenda")); + +var _ViewAgendaOutlined = _interopRequireDefault(require("./ViewAgendaOutlined")); + +var _ViewAgendaRounded = _interopRequireDefault(require("./ViewAgendaRounded")); + +var _ViewAgendaSharp = _interopRequireDefault(require("./ViewAgendaSharp")); + +var _ViewAgendaTwoTone = _interopRequireDefault(require("./ViewAgendaTwoTone")); + +var _ViewArray = _interopRequireDefault(require("./ViewArray")); + +var _ViewArrayOutlined = _interopRequireDefault(require("./ViewArrayOutlined")); + +var _ViewArrayRounded = _interopRequireDefault(require("./ViewArrayRounded")); + +var _ViewArraySharp = _interopRequireDefault(require("./ViewArraySharp")); + +var _ViewArrayTwoTone = _interopRequireDefault(require("./ViewArrayTwoTone")); + +var _ViewCarousel = _interopRequireDefault(require("./ViewCarousel")); + +var _ViewCarouselOutlined = _interopRequireDefault(require("./ViewCarouselOutlined")); + +var _ViewCarouselRounded = _interopRequireDefault(require("./ViewCarouselRounded")); + +var _ViewCarouselSharp = _interopRequireDefault(require("./ViewCarouselSharp")); + +var _ViewCarouselTwoTone = _interopRequireDefault(require("./ViewCarouselTwoTone")); + +var _ViewColumn = _interopRequireDefault(require("./ViewColumn")); + +var _ViewColumnOutlined = _interopRequireDefault(require("./ViewColumnOutlined")); + +var _ViewColumnRounded = _interopRequireDefault(require("./ViewColumnRounded")); + +var _ViewColumnSharp = _interopRequireDefault(require("./ViewColumnSharp")); + +var _ViewColumnTwoTone = _interopRequireDefault(require("./ViewColumnTwoTone")); + +var _ViewComfy = _interopRequireDefault(require("./ViewComfy")); + +var _ViewComfyOutlined = _interopRequireDefault(require("./ViewComfyOutlined")); + +var _ViewComfyRounded = _interopRequireDefault(require("./ViewComfyRounded")); + +var _ViewComfySharp = _interopRequireDefault(require("./ViewComfySharp")); + +var _ViewComfyTwoTone = _interopRequireDefault(require("./ViewComfyTwoTone")); + +var _ViewCompact = _interopRequireDefault(require("./ViewCompact")); + +var _ViewCompactOutlined = _interopRequireDefault(require("./ViewCompactOutlined")); + +var _ViewCompactRounded = _interopRequireDefault(require("./ViewCompactRounded")); + +var _ViewCompactSharp = _interopRequireDefault(require("./ViewCompactSharp")); + +var _ViewCompactTwoTone = _interopRequireDefault(require("./ViewCompactTwoTone")); + +var _ViewDay = _interopRequireDefault(require("./ViewDay")); + +var _ViewDayOutlined = _interopRequireDefault(require("./ViewDayOutlined")); + +var _ViewDayRounded = _interopRequireDefault(require("./ViewDayRounded")); + +var _ViewDaySharp = _interopRequireDefault(require("./ViewDaySharp")); + +var _ViewDayTwoTone = _interopRequireDefault(require("./ViewDayTwoTone")); + +var _ViewHeadline = _interopRequireDefault(require("./ViewHeadline")); + +var _ViewHeadlineOutlined = _interopRequireDefault(require("./ViewHeadlineOutlined")); + +var _ViewHeadlineRounded = _interopRequireDefault(require("./ViewHeadlineRounded")); + +var _ViewHeadlineSharp = _interopRequireDefault(require("./ViewHeadlineSharp")); + +var _ViewHeadlineTwoTone = _interopRequireDefault(require("./ViewHeadlineTwoTone")); + +var _ViewInAr = _interopRequireDefault(require("./ViewInAr")); + +var _ViewInArOutlined = _interopRequireDefault(require("./ViewInArOutlined")); + +var _ViewInArRounded = _interopRequireDefault(require("./ViewInArRounded")); + +var _ViewInArSharp = _interopRequireDefault(require("./ViewInArSharp")); + +var _ViewInArTwoTone = _interopRequireDefault(require("./ViewInArTwoTone")); + +var _ViewList = _interopRequireDefault(require("./ViewList")); + +var _ViewListOutlined = _interopRequireDefault(require("./ViewListOutlined")); + +var _ViewListRounded = _interopRequireDefault(require("./ViewListRounded")); + +var _ViewListSharp = _interopRequireDefault(require("./ViewListSharp")); + +var _ViewListTwoTone = _interopRequireDefault(require("./ViewListTwoTone")); + +var _ViewModule = _interopRequireDefault(require("./ViewModule")); + +var _ViewModuleOutlined = _interopRequireDefault(require("./ViewModuleOutlined")); + +var _ViewModuleRounded = _interopRequireDefault(require("./ViewModuleRounded")); + +var _ViewModuleSharp = _interopRequireDefault(require("./ViewModuleSharp")); + +var _ViewModuleTwoTone = _interopRequireDefault(require("./ViewModuleTwoTone")); + +var _ViewQuilt = _interopRequireDefault(require("./ViewQuilt")); + +var _ViewQuiltOutlined = _interopRequireDefault(require("./ViewQuiltOutlined")); + +var _ViewQuiltRounded = _interopRequireDefault(require("./ViewQuiltRounded")); + +var _ViewQuiltSharp = _interopRequireDefault(require("./ViewQuiltSharp")); + +var _ViewQuiltTwoTone = _interopRequireDefault(require("./ViewQuiltTwoTone")); + +var _ViewSidebar = _interopRequireDefault(require("./ViewSidebar")); + +var _ViewSidebarOutlined = _interopRequireDefault(require("./ViewSidebarOutlined")); + +var _ViewSidebarRounded = _interopRequireDefault(require("./ViewSidebarRounded")); + +var _ViewSidebarSharp = _interopRequireDefault(require("./ViewSidebarSharp")); + +var _ViewSidebarTwoTone = _interopRequireDefault(require("./ViewSidebarTwoTone")); + +var _ViewStream = _interopRequireDefault(require("./ViewStream")); + +var _ViewStreamOutlined = _interopRequireDefault(require("./ViewStreamOutlined")); + +var _ViewStreamRounded = _interopRequireDefault(require("./ViewStreamRounded")); + +var _ViewStreamSharp = _interopRequireDefault(require("./ViewStreamSharp")); + +var _ViewStreamTwoTone = _interopRequireDefault(require("./ViewStreamTwoTone")); + +var _ViewWeek = _interopRequireDefault(require("./ViewWeek")); + +var _ViewWeekOutlined = _interopRequireDefault(require("./ViewWeekOutlined")); + +var _ViewWeekRounded = _interopRequireDefault(require("./ViewWeekRounded")); + +var _ViewWeekSharp = _interopRequireDefault(require("./ViewWeekSharp")); + +var _ViewWeekTwoTone = _interopRequireDefault(require("./ViewWeekTwoTone")); + +var _Vignette = _interopRequireDefault(require("./Vignette")); + +var _VignetteOutlined = _interopRequireDefault(require("./VignetteOutlined")); + +var _VignetteRounded = _interopRequireDefault(require("./VignetteRounded")); + +var _VignetteSharp = _interopRequireDefault(require("./VignetteSharp")); + +var _VignetteTwoTone = _interopRequireDefault(require("./VignetteTwoTone")); + +var _Villa = _interopRequireDefault(require("./Villa")); + +var _VillaOutlined = _interopRequireDefault(require("./VillaOutlined")); + +var _VillaRounded = _interopRequireDefault(require("./VillaRounded")); + +var _VillaSharp = _interopRequireDefault(require("./VillaSharp")); + +var _VillaTwoTone = _interopRequireDefault(require("./VillaTwoTone")); + +var _Visibility = _interopRequireDefault(require("./Visibility")); + +var _VisibilityOff = _interopRequireDefault(require("./VisibilityOff")); + +var _VisibilityOffOutlined = _interopRequireDefault(require("./VisibilityOffOutlined")); + +var _VisibilityOffRounded = _interopRequireDefault(require("./VisibilityOffRounded")); + +var _VisibilityOffSharp = _interopRequireDefault(require("./VisibilityOffSharp")); + +var _VisibilityOffTwoTone = _interopRequireDefault(require("./VisibilityOffTwoTone")); + +var _VisibilityOutlined = _interopRequireDefault(require("./VisibilityOutlined")); + +var _VisibilityRounded = _interopRequireDefault(require("./VisibilityRounded")); + +var _VisibilitySharp = _interopRequireDefault(require("./VisibilitySharp")); + +var _VisibilityTwoTone = _interopRequireDefault(require("./VisibilityTwoTone")); + +var _VoiceChat = _interopRequireDefault(require("./VoiceChat")); + +var _VoiceChatOutlined = _interopRequireDefault(require("./VoiceChatOutlined")); + +var _VoiceChatRounded = _interopRequireDefault(require("./VoiceChatRounded")); + +var _VoiceChatSharp = _interopRequireDefault(require("./VoiceChatSharp")); + +var _VoiceChatTwoTone = _interopRequireDefault(require("./VoiceChatTwoTone")); + +var _VoiceOverOff = _interopRequireDefault(require("./VoiceOverOff")); + +var _VoiceOverOffOutlined = _interopRequireDefault(require("./VoiceOverOffOutlined")); + +var _VoiceOverOffRounded = _interopRequireDefault(require("./VoiceOverOffRounded")); + +var _VoiceOverOffSharp = _interopRequireDefault(require("./VoiceOverOffSharp")); + +var _VoiceOverOffTwoTone = _interopRequireDefault(require("./VoiceOverOffTwoTone")); + +var _Voicemail = _interopRequireDefault(require("./Voicemail")); + +var _VoicemailOutlined = _interopRequireDefault(require("./VoicemailOutlined")); + +var _VoicemailRounded = _interopRequireDefault(require("./VoicemailRounded")); + +var _VoicemailSharp = _interopRequireDefault(require("./VoicemailSharp")); + +var _VoicemailTwoTone = _interopRequireDefault(require("./VoicemailTwoTone")); + +var _VolumeDown = _interopRequireDefault(require("./VolumeDown")); + +var _VolumeDownOutlined = _interopRequireDefault(require("./VolumeDownOutlined")); + +var _VolumeDownRounded = _interopRequireDefault(require("./VolumeDownRounded")); + +var _VolumeDownSharp = _interopRequireDefault(require("./VolumeDownSharp")); + +var _VolumeDownTwoTone = _interopRequireDefault(require("./VolumeDownTwoTone")); + +var _VolumeMute = _interopRequireDefault(require("./VolumeMute")); + +var _VolumeMuteOutlined = _interopRequireDefault(require("./VolumeMuteOutlined")); + +var _VolumeMuteRounded = _interopRequireDefault(require("./VolumeMuteRounded")); + +var _VolumeMuteSharp = _interopRequireDefault(require("./VolumeMuteSharp")); + +var _VolumeMuteTwoTone = _interopRequireDefault(require("./VolumeMuteTwoTone")); + +var _VolumeOff = _interopRequireDefault(require("./VolumeOff")); + +var _VolumeOffOutlined = _interopRequireDefault(require("./VolumeOffOutlined")); + +var _VolumeOffRounded = _interopRequireDefault(require("./VolumeOffRounded")); + +var _VolumeOffSharp = _interopRequireDefault(require("./VolumeOffSharp")); + +var _VolumeOffTwoTone = _interopRequireDefault(require("./VolumeOffTwoTone")); + +var _VolumeUp = _interopRequireDefault(require("./VolumeUp")); + +var _VolumeUpOutlined = _interopRequireDefault(require("./VolumeUpOutlined")); + +var _VolumeUpRounded = _interopRequireDefault(require("./VolumeUpRounded")); + +var _VolumeUpSharp = _interopRequireDefault(require("./VolumeUpSharp")); + +var _VolumeUpTwoTone = _interopRequireDefault(require("./VolumeUpTwoTone")); + +var _VolunteerActivism = _interopRequireDefault(require("./VolunteerActivism")); + +var _VolunteerActivismOutlined = _interopRequireDefault(require("./VolunteerActivismOutlined")); + +var _VolunteerActivismRounded = _interopRequireDefault(require("./VolunteerActivismRounded")); + +var _VolunteerActivismSharp = _interopRequireDefault(require("./VolunteerActivismSharp")); + +var _VolunteerActivismTwoTone = _interopRequireDefault(require("./VolunteerActivismTwoTone")); + +var _VpnKey = _interopRequireDefault(require("./VpnKey")); + +var _VpnKeyOutlined = _interopRequireDefault(require("./VpnKeyOutlined")); + +var _VpnKeyRounded = _interopRequireDefault(require("./VpnKeyRounded")); + +var _VpnKeySharp = _interopRequireDefault(require("./VpnKeySharp")); + +var _VpnKeyTwoTone = _interopRequireDefault(require("./VpnKeyTwoTone")); + +var _VpnLock = _interopRequireDefault(require("./VpnLock")); + +var _VpnLockOutlined = _interopRequireDefault(require("./VpnLockOutlined")); + +var _VpnLockRounded = _interopRequireDefault(require("./VpnLockRounded")); + +var _VpnLockSharp = _interopRequireDefault(require("./VpnLockSharp")); + +var _VpnLockTwoTone = _interopRequireDefault(require("./VpnLockTwoTone")); + +var _Vrpano = _interopRequireDefault(require("./Vrpano")); + +var _VrpanoOutlined = _interopRequireDefault(require("./VrpanoOutlined")); + +var _VrpanoRounded = _interopRequireDefault(require("./VrpanoRounded")); + +var _VrpanoSharp = _interopRequireDefault(require("./VrpanoSharp")); + +var _VrpanoTwoTone = _interopRequireDefault(require("./VrpanoTwoTone")); + +var _Wallpaper = _interopRequireDefault(require("./Wallpaper")); + +var _WallpaperOutlined = _interopRequireDefault(require("./WallpaperOutlined")); + +var _WallpaperRounded = _interopRequireDefault(require("./WallpaperRounded")); + +var _WallpaperSharp = _interopRequireDefault(require("./WallpaperSharp")); + +var _WallpaperTwoTone = _interopRequireDefault(require("./WallpaperTwoTone")); + +var _Warning = _interopRequireDefault(require("./Warning")); + +var _WarningAmber = _interopRequireDefault(require("./WarningAmber")); + +var _WarningAmberOutlined = _interopRequireDefault(require("./WarningAmberOutlined")); + +var _WarningAmberRounded = _interopRequireDefault(require("./WarningAmberRounded")); + +var _WarningAmberSharp = _interopRequireDefault(require("./WarningAmberSharp")); + +var _WarningAmberTwoTone = _interopRequireDefault(require("./WarningAmberTwoTone")); + +var _WarningOutlined = _interopRequireDefault(require("./WarningOutlined")); + +var _WarningRounded = _interopRequireDefault(require("./WarningRounded")); + +var _WarningSharp = _interopRequireDefault(require("./WarningSharp")); + +var _WarningTwoTone = _interopRequireDefault(require("./WarningTwoTone")); + +var _Wash = _interopRequireDefault(require("./Wash")); + +var _WashOutlined = _interopRequireDefault(require("./WashOutlined")); + +var _WashRounded = _interopRequireDefault(require("./WashRounded")); + +var _WashSharp = _interopRequireDefault(require("./WashSharp")); + +var _WashTwoTone = _interopRequireDefault(require("./WashTwoTone")); + +var _Watch = _interopRequireDefault(require("./Watch")); + +var _WatchLater = _interopRequireDefault(require("./WatchLater")); + +var _WatchLaterOutlined = _interopRequireDefault(require("./WatchLaterOutlined")); + +var _WatchLaterRounded = _interopRequireDefault(require("./WatchLaterRounded")); + +var _WatchLaterSharp = _interopRequireDefault(require("./WatchLaterSharp")); + +var _WatchLaterTwoTone = _interopRequireDefault(require("./WatchLaterTwoTone")); + +var _WatchOutlined = _interopRequireDefault(require("./WatchOutlined")); + +var _WatchRounded = _interopRequireDefault(require("./WatchRounded")); + +var _WatchSharp = _interopRequireDefault(require("./WatchSharp")); + +var _WatchTwoTone = _interopRequireDefault(require("./WatchTwoTone")); + +var _Water = _interopRequireDefault(require("./Water")); + +var _WaterDamage = _interopRequireDefault(require("./WaterDamage")); + +var _WaterDamageOutlined = _interopRequireDefault(require("./WaterDamageOutlined")); + +var _WaterDamageRounded = _interopRequireDefault(require("./WaterDamageRounded")); + +var _WaterDamageSharp = _interopRequireDefault(require("./WaterDamageSharp")); + +var _WaterDamageTwoTone = _interopRequireDefault(require("./WaterDamageTwoTone")); + +var _WaterOutlined = _interopRequireDefault(require("./WaterOutlined")); + +var _WaterRounded = _interopRequireDefault(require("./WaterRounded")); + +var _WaterSharp = _interopRequireDefault(require("./WaterSharp")); + +var _WaterTwoTone = _interopRequireDefault(require("./WaterTwoTone")); + +var _WaterfallChart = _interopRequireDefault(require("./WaterfallChart")); + +var _WaterfallChartOutlined = _interopRequireDefault(require("./WaterfallChartOutlined")); + +var _WaterfallChartRounded = _interopRequireDefault(require("./WaterfallChartRounded")); + +var _WaterfallChartSharp = _interopRequireDefault(require("./WaterfallChartSharp")); + +var _WaterfallChartTwoTone = _interopRequireDefault(require("./WaterfallChartTwoTone")); + +var _Waves = _interopRequireDefault(require("./Waves")); + +var _WavesOutlined = _interopRequireDefault(require("./WavesOutlined")); + +var _WavesRounded = _interopRequireDefault(require("./WavesRounded")); + +var _WavesSharp = _interopRequireDefault(require("./WavesSharp")); + +var _WavesTwoTone = _interopRequireDefault(require("./WavesTwoTone")); + +var _WbAuto = _interopRequireDefault(require("./WbAuto")); + +var _WbAutoOutlined = _interopRequireDefault(require("./WbAutoOutlined")); + +var _WbAutoRounded = _interopRequireDefault(require("./WbAutoRounded")); + +var _WbAutoSharp = _interopRequireDefault(require("./WbAutoSharp")); + +var _WbAutoTwoTone = _interopRequireDefault(require("./WbAutoTwoTone")); + +var _WbCloudy = _interopRequireDefault(require("./WbCloudy")); + +var _WbCloudyOutlined = _interopRequireDefault(require("./WbCloudyOutlined")); + +var _WbCloudyRounded = _interopRequireDefault(require("./WbCloudyRounded")); + +var _WbCloudySharp = _interopRequireDefault(require("./WbCloudySharp")); + +var _WbCloudyTwoTone = _interopRequireDefault(require("./WbCloudyTwoTone")); + +var _WbIncandescent = _interopRequireDefault(require("./WbIncandescent")); + +var _WbIncandescentOutlined = _interopRequireDefault(require("./WbIncandescentOutlined")); + +var _WbIncandescentRounded = _interopRequireDefault(require("./WbIncandescentRounded")); + +var _WbIncandescentSharp = _interopRequireDefault(require("./WbIncandescentSharp")); + +var _WbIncandescentTwoTone = _interopRequireDefault(require("./WbIncandescentTwoTone")); + +var _WbIridescent = _interopRequireDefault(require("./WbIridescent")); + +var _WbIridescentOutlined = _interopRequireDefault(require("./WbIridescentOutlined")); + +var _WbIridescentRounded = _interopRequireDefault(require("./WbIridescentRounded")); + +var _WbIridescentSharp = _interopRequireDefault(require("./WbIridescentSharp")); + +var _WbIridescentTwoTone = _interopRequireDefault(require("./WbIridescentTwoTone")); + +var _WbShade = _interopRequireDefault(require("./WbShade")); + +var _WbShadeOutlined = _interopRequireDefault(require("./WbShadeOutlined")); + +var _WbShadeRounded = _interopRequireDefault(require("./WbShadeRounded")); + +var _WbShadeSharp = _interopRequireDefault(require("./WbShadeSharp")); + +var _WbShadeTwoTone = _interopRequireDefault(require("./WbShadeTwoTone")); + +var _WbSunny = _interopRequireDefault(require("./WbSunny")); + +var _WbSunnyOutlined = _interopRequireDefault(require("./WbSunnyOutlined")); + +var _WbSunnyRounded = _interopRequireDefault(require("./WbSunnyRounded")); + +var _WbSunnySharp = _interopRequireDefault(require("./WbSunnySharp")); + +var _WbSunnyTwoTone = _interopRequireDefault(require("./WbSunnyTwoTone")); + +var _WbTwilight = _interopRequireDefault(require("./WbTwilight")); + +var _WbTwilightOutlined = _interopRequireDefault(require("./WbTwilightOutlined")); + +var _WbTwilightRounded = _interopRequireDefault(require("./WbTwilightRounded")); + +var _WbTwilightSharp = _interopRequireDefault(require("./WbTwilightSharp")); + +var _WbTwilightTwoTone = _interopRequireDefault(require("./WbTwilightTwoTone")); + +var _Wc = _interopRequireDefault(require("./Wc")); + +var _WcOutlined = _interopRequireDefault(require("./WcOutlined")); + +var _WcRounded = _interopRequireDefault(require("./WcRounded")); + +var _WcSharp = _interopRequireDefault(require("./WcSharp")); + +var _WcTwoTone = _interopRequireDefault(require("./WcTwoTone")); + +var _Web = _interopRequireDefault(require("./Web")); + +var _WebAsset = _interopRequireDefault(require("./WebAsset")); + +var _WebAssetOff = _interopRequireDefault(require("./WebAssetOff")); + +var _WebAssetOffOutlined = _interopRequireDefault(require("./WebAssetOffOutlined")); + +var _WebAssetOffRounded = _interopRequireDefault(require("./WebAssetOffRounded")); + +var _WebAssetOffSharp = _interopRequireDefault(require("./WebAssetOffSharp")); + +var _WebAssetOffTwoTone = _interopRequireDefault(require("./WebAssetOffTwoTone")); + +var _WebAssetOutlined = _interopRequireDefault(require("./WebAssetOutlined")); + +var _WebAssetRounded = _interopRequireDefault(require("./WebAssetRounded")); + +var _WebAssetSharp = _interopRequireDefault(require("./WebAssetSharp")); + +var _WebAssetTwoTone = _interopRequireDefault(require("./WebAssetTwoTone")); + +var _WebOutlined = _interopRequireDefault(require("./WebOutlined")); + +var _WebRounded = _interopRequireDefault(require("./WebRounded")); + +var _WebSharp = _interopRequireDefault(require("./WebSharp")); + +var _WebTwoTone = _interopRequireDefault(require("./WebTwoTone")); + +var _Weekend = _interopRequireDefault(require("./Weekend")); + +var _WeekendOutlined = _interopRequireDefault(require("./WeekendOutlined")); + +var _WeekendRounded = _interopRequireDefault(require("./WeekendRounded")); + +var _WeekendSharp = _interopRequireDefault(require("./WeekendSharp")); + +var _WeekendTwoTone = _interopRequireDefault(require("./WeekendTwoTone")); + +var _West = _interopRequireDefault(require("./West")); + +var _WestOutlined = _interopRequireDefault(require("./WestOutlined")); + +var _WestRounded = _interopRequireDefault(require("./WestRounded")); + +var _WestSharp = _interopRequireDefault(require("./WestSharp")); + +var _WestTwoTone = _interopRequireDefault(require("./WestTwoTone")); + +var _WhatsApp = _interopRequireDefault(require("./WhatsApp")); + +var _Whatshot = _interopRequireDefault(require("./Whatshot")); + +var _WhatshotOutlined = _interopRequireDefault(require("./WhatshotOutlined")); + +var _WhatshotRounded = _interopRequireDefault(require("./WhatshotRounded")); + +var _WhatshotSharp = _interopRequireDefault(require("./WhatshotSharp")); + +var _WhatshotTwoTone = _interopRequireDefault(require("./WhatshotTwoTone")); + +var _WheelchairPickup = _interopRequireDefault(require("./WheelchairPickup")); + +var _WheelchairPickupOutlined = _interopRequireDefault(require("./WheelchairPickupOutlined")); + +var _WheelchairPickupRounded = _interopRequireDefault(require("./WheelchairPickupRounded")); + +var _WheelchairPickupSharp = _interopRequireDefault(require("./WheelchairPickupSharp")); + +var _WheelchairPickupTwoTone = _interopRequireDefault(require("./WheelchairPickupTwoTone")); + +var _WhereToVote = _interopRequireDefault(require("./WhereToVote")); + +var _WhereToVoteOutlined = _interopRequireDefault(require("./WhereToVoteOutlined")); + +var _WhereToVoteRounded = _interopRequireDefault(require("./WhereToVoteRounded")); + +var _WhereToVoteSharp = _interopRequireDefault(require("./WhereToVoteSharp")); + +var _WhereToVoteTwoTone = _interopRequireDefault(require("./WhereToVoteTwoTone")); + +var _Widgets = _interopRequireDefault(require("./Widgets")); + +var _WidgetsOutlined = _interopRequireDefault(require("./WidgetsOutlined")); + +var _WidgetsRounded = _interopRequireDefault(require("./WidgetsRounded")); + +var _WidgetsSharp = _interopRequireDefault(require("./WidgetsSharp")); + +var _WidgetsTwoTone = _interopRequireDefault(require("./WidgetsTwoTone")); + +var _Wifi = _interopRequireDefault(require("./Wifi")); + +var _WifiCalling = _interopRequireDefault(require("./WifiCalling")); + +var _WifiCalling2 = _interopRequireDefault(require("./WifiCalling3")); + +var _WifiCalling3Outlined = _interopRequireDefault(require("./WifiCalling3Outlined")); + +var _WifiCalling3Rounded = _interopRequireDefault(require("./WifiCalling3Rounded")); + +var _WifiCalling3Sharp = _interopRequireDefault(require("./WifiCalling3Sharp")); + +var _WifiCalling3TwoTone = _interopRequireDefault(require("./WifiCalling3TwoTone")); + +var _WifiCallingOutlined = _interopRequireDefault(require("./WifiCallingOutlined")); + +var _WifiCallingRounded = _interopRequireDefault(require("./WifiCallingRounded")); + +var _WifiCallingSharp = _interopRequireDefault(require("./WifiCallingSharp")); + +var _WifiCallingTwoTone = _interopRequireDefault(require("./WifiCallingTwoTone")); + +var _WifiLock = _interopRequireDefault(require("./WifiLock")); + +var _WifiLockOutlined = _interopRequireDefault(require("./WifiLockOutlined")); + +var _WifiLockRounded = _interopRequireDefault(require("./WifiLockRounded")); + +var _WifiLockSharp = _interopRequireDefault(require("./WifiLockSharp")); + +var _WifiLockTwoTone = _interopRequireDefault(require("./WifiLockTwoTone")); + +var _WifiOff = _interopRequireDefault(require("./WifiOff")); + +var _WifiOffOutlined = _interopRequireDefault(require("./WifiOffOutlined")); + +var _WifiOffRounded = _interopRequireDefault(require("./WifiOffRounded")); + +var _WifiOffSharp = _interopRequireDefault(require("./WifiOffSharp")); + +var _WifiOffTwoTone = _interopRequireDefault(require("./WifiOffTwoTone")); + +var _WifiOutlined = _interopRequireDefault(require("./WifiOutlined")); + +var _WifiProtectedSetup = _interopRequireDefault(require("./WifiProtectedSetup")); + +var _WifiProtectedSetupOutlined = _interopRequireDefault(require("./WifiProtectedSetupOutlined")); + +var _WifiProtectedSetupRounded = _interopRequireDefault(require("./WifiProtectedSetupRounded")); + +var _WifiProtectedSetupSharp = _interopRequireDefault(require("./WifiProtectedSetupSharp")); + +var _WifiProtectedSetupTwoTone = _interopRequireDefault(require("./WifiProtectedSetupTwoTone")); + +var _WifiRounded = _interopRequireDefault(require("./WifiRounded")); + +var _WifiSharp = _interopRequireDefault(require("./WifiSharp")); + +var _WifiTethering = _interopRequireDefault(require("./WifiTethering")); + +var _WifiTetheringErrorRounded = _interopRequireDefault(require("./WifiTetheringErrorRounded")); + +var _WifiTetheringErrorRoundedOutlined = _interopRequireDefault(require("./WifiTetheringErrorRoundedOutlined")); + +var _WifiTetheringErrorRoundedRounded = _interopRequireDefault(require("./WifiTetheringErrorRoundedRounded")); + +var _WifiTetheringErrorRoundedSharp = _interopRequireDefault(require("./WifiTetheringErrorRoundedSharp")); + +var _WifiTetheringErrorRoundedTwoTone = _interopRequireDefault(require("./WifiTetheringErrorRoundedTwoTone")); + +var _WifiTetheringOff = _interopRequireDefault(require("./WifiTetheringOff")); + +var _WifiTetheringOffOutlined = _interopRequireDefault(require("./WifiTetheringOffOutlined")); + +var _WifiTetheringOffRounded = _interopRequireDefault(require("./WifiTetheringOffRounded")); + +var _WifiTetheringOffSharp = _interopRequireDefault(require("./WifiTetheringOffSharp")); + +var _WifiTetheringOffTwoTone = _interopRequireDefault(require("./WifiTetheringOffTwoTone")); + +var _WifiTetheringOutlined = _interopRequireDefault(require("./WifiTetheringOutlined")); + +var _WifiTetheringRounded = _interopRequireDefault(require("./WifiTetheringRounded")); + +var _WifiTetheringSharp = _interopRequireDefault(require("./WifiTetheringSharp")); + +var _WifiTetheringTwoTone = _interopRequireDefault(require("./WifiTetheringTwoTone")); + +var _WifiTwoTone = _interopRequireDefault(require("./WifiTwoTone")); + +var _Window = _interopRequireDefault(require("./Window")); + +var _WindowOutlined = _interopRequireDefault(require("./WindowOutlined")); + +var _WindowRounded = _interopRequireDefault(require("./WindowRounded")); + +var _WindowSharp = _interopRequireDefault(require("./WindowSharp")); + +var _WindowTwoTone = _interopRequireDefault(require("./WindowTwoTone")); + +var _WineBar = _interopRequireDefault(require("./WineBar")); + +var _WineBarOutlined = _interopRequireDefault(require("./WineBarOutlined")); + +var _WineBarRounded = _interopRequireDefault(require("./WineBarRounded")); + +var _WineBarSharp = _interopRequireDefault(require("./WineBarSharp")); + +var _WineBarTwoTone = _interopRequireDefault(require("./WineBarTwoTone")); + +var _Work = _interopRequireDefault(require("./Work")); + +var _WorkOff = _interopRequireDefault(require("./WorkOff")); + +var _WorkOffOutlined = _interopRequireDefault(require("./WorkOffOutlined")); + +var _WorkOffRounded = _interopRequireDefault(require("./WorkOffRounded")); + +var _WorkOffSharp = _interopRequireDefault(require("./WorkOffSharp")); + +var _WorkOffTwoTone = _interopRequireDefault(require("./WorkOffTwoTone")); + +var _WorkOutline = _interopRequireDefault(require("./WorkOutline")); + +var _WorkOutlineOutlined = _interopRequireDefault(require("./WorkOutlineOutlined")); + +var _WorkOutlineRounded = _interopRequireDefault(require("./WorkOutlineRounded")); + +var _WorkOutlineSharp = _interopRequireDefault(require("./WorkOutlineSharp")); + +var _WorkOutlineTwoTone = _interopRequireDefault(require("./WorkOutlineTwoTone")); + +var _WorkOutlined = _interopRequireDefault(require("./WorkOutlined")); + +var _WorkRounded = _interopRequireDefault(require("./WorkRounded")); + +var _WorkSharp = _interopRequireDefault(require("./WorkSharp")); + +var _WorkTwoTone = _interopRequireDefault(require("./WorkTwoTone")); + +var _Workspaces = _interopRequireDefault(require("./Workspaces")); + +var _WorkspacesOutlined = _interopRequireDefault(require("./WorkspacesOutlined")); + +var _WorkspacesRounded = _interopRequireDefault(require("./WorkspacesRounded")); + +var _WorkspacesSharp = _interopRequireDefault(require("./WorkspacesSharp")); + +var _WorkspacesTwoTone = _interopRequireDefault(require("./WorkspacesTwoTone")); + +var _WrapText = _interopRequireDefault(require("./WrapText")); + +var _WrapTextOutlined = _interopRequireDefault(require("./WrapTextOutlined")); + +var _WrapTextRounded = _interopRequireDefault(require("./WrapTextRounded")); + +var _WrapTextSharp = _interopRequireDefault(require("./WrapTextSharp")); + +var _WrapTextTwoTone = _interopRequireDefault(require("./WrapTextTwoTone")); + +var _WrongLocation = _interopRequireDefault(require("./WrongLocation")); + +var _WrongLocationOutlined = _interopRequireDefault(require("./WrongLocationOutlined")); + +var _WrongLocationRounded = _interopRequireDefault(require("./WrongLocationRounded")); + +var _WrongLocationSharp = _interopRequireDefault(require("./WrongLocationSharp")); + +var _WrongLocationTwoTone = _interopRequireDefault(require("./WrongLocationTwoTone")); + +var _Wysiwyg = _interopRequireDefault(require("./Wysiwyg")); + +var _WysiwygOutlined = _interopRequireDefault(require("./WysiwygOutlined")); + +var _WysiwygRounded = _interopRequireDefault(require("./WysiwygRounded")); + +var _WysiwygSharp = _interopRequireDefault(require("./WysiwygSharp")); + +var _WysiwygTwoTone = _interopRequireDefault(require("./WysiwygTwoTone")); + +var _Yard = _interopRequireDefault(require("./Yard")); + +var _YardOutlined = _interopRequireDefault(require("./YardOutlined")); + +var _YardRounded = _interopRequireDefault(require("./YardRounded")); + +var _YardSharp = _interopRequireDefault(require("./YardSharp")); + +var _YardTwoTone = _interopRequireDefault(require("./YardTwoTone")); + +var _YouTube = _interopRequireDefault(require("./YouTube")); + +var _YoutubeSearchedFor = _interopRequireDefault(require("./YoutubeSearchedFor")); + +var _YoutubeSearchedForOutlined = _interopRequireDefault(require("./YoutubeSearchedForOutlined")); + +var _YoutubeSearchedForRounded = _interopRequireDefault(require("./YoutubeSearchedForRounded")); + +var _YoutubeSearchedForSharp = _interopRequireDefault(require("./YoutubeSearchedForSharp")); + +var _YoutubeSearchedForTwoTone = _interopRequireDefault(require("./YoutubeSearchedForTwoTone")); + +var _ZoomIn = _interopRequireDefault(require("./ZoomIn")); + +var _ZoomInOutlined = _interopRequireDefault(require("./ZoomInOutlined")); + +var _ZoomInRounded = _interopRequireDefault(require("./ZoomInRounded")); + +var _ZoomInSharp = _interopRequireDefault(require("./ZoomInSharp")); + +var _ZoomInTwoTone = _interopRequireDefault(require("./ZoomInTwoTone")); + +var _ZoomOut = _interopRequireDefault(require("./ZoomOut")); + +var _ZoomOutMap = _interopRequireDefault(require("./ZoomOutMap")); + +var _ZoomOutMapOutlined = _interopRequireDefault(require("./ZoomOutMapOutlined")); + +var _ZoomOutMapRounded = _interopRequireDefault(require("./ZoomOutMapRounded")); + +var _ZoomOutMapSharp = _interopRequireDefault(require("./ZoomOutMapSharp")); + +var _ZoomOutMapTwoTone = _interopRequireDefault(require("./ZoomOutMapTwoTone")); + +var _ZoomOutOutlined = _interopRequireDefault(require("./ZoomOutOutlined")); + +var _ZoomOutRounded = _interopRequireDefault(require("./ZoomOutRounded")); + +var _ZoomOutSharp = _interopRequireDefault(require("./ZoomOutSharp")); + +var _ZoomOutTwoTone = _interopRequireDefault(require("./ZoomOutTwoTone")); \ No newline at end of file diff --git a/packages/material-ui-icons/lib/utils/createSvgIcon.js b/packages/material-ui-icons/lib/utils/createSvgIcon.js index 2ded6468f1a10a..d71f6c5fefab1d 100644 --- a/packages/material-ui-icons/lib/utils/createSvgIcon.js +++ b/packages/material-ui-icons/lib/utils/createSvgIcon.js @@ -1 +1,13 @@ -export { createSvgIcon as default } from '@material-ui/core/utils'; \ No newline at end of file +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +Object.defineProperty(exports, "default", { + enumerable: true, + get: function () { + return _utils.createSvgIcon; + } +}); + +var _utils = require("@material-ui/core/utils"); \ No newline at end of file diff --git a/packages/material-ui-icons/package.json b/packages/material-ui-icons/package.json index c80de3cc90984a..50f2bbeeaa7aab 100644 --- a/packages/material-ui-icons/package.json +++ b/packages/material-ui-icons/package.json @@ -4,20 +4,7 @@ "private": false, "author": "Material-UI Team", "description": "Material Design icons distributed as SVG React components.", - "exports": { - ".": "./lib/index.js", - "./*": "./lib/*.js", - "./utils/*": null - }, - "publishConfig": { - "access": "public", - "exports": { - ".": "./index.js", - "./*": "./*.js", - "./utils/*": null - }, - "type": "module" - }, + "main": "./src/index.js", "keywords": [ "react", "react-component", @@ -37,12 +24,12 @@ "homepage": "https://material-ui.com/components/icons", "scripts": { "build": "cp -r lib/ build/ && yarn build:typings && yarn build:copy-files", - "build:lib": "yarn build:stable", + "build:lib": "yarn build:node && yarn build:stable", "build:lib:clean": "rimraf lib/ && yarn build:lib", "build:legacy": "echo 'Skip legacy build'", "build:modern": "echo 'Skip modern build'", - "build:node": "echo 'Skip node build'", - "build:stable": "node ../../scripts/build stable --largeFiles --onlyESModules --outDir lib", + "build:node": "node ../../scripts/build node --largeFiles --outDir lib", + "build:stable": "node ../../scripts/build stable --largeFiles --outDir lib", "build:copy-files": "node ../../scripts/copy-files.js", "build:typings": "babel-node --config-file ../../babel.config.js ./scripts/create-typings.js", "prebuild": "rimraf build", @@ -73,6 +60,9 @@ "yargs": "^17.0.1" }, "sideEffects": false, + "publishConfig": { + "access": "public" + }, "engines": { "node": ">=12.0.0" } diff --git a/packages/material-ui-icons/scripts/create-typings.js b/packages/material-ui-icons/scripts/create-typings.js index c40d0ecf541468..c1c368c25e21a7 100644 --- a/packages/material-ui-icons/scripts/create-typings.js +++ b/packages/material-ui-icons/scripts/create-typings.js @@ -4,7 +4,7 @@ import chalk from 'chalk'; import fse from 'fs-extra'; import glob from 'fast-glob'; -const SRC_DIR = path.resolve(__dirname, '../lib'); +const SRC_DIR = path.resolve(__dirname, '../lib/esm'); const TARGET_DIR = path.resolve(__dirname, '../build'); function normalizeFileName(file) { diff --git a/packages/material-ui-icons/templateSvgIcon.js b/packages/material-ui-icons/templateSvgIcon.js index a28e07c7c08665..7e78c776064ff8 100644 --- a/packages/material-ui-icons/templateSvgIcon.js +++ b/packages/material-ui-icons/templateSvgIcon.js @@ -1,4 +1,4 @@ -import createSvgIcon from './utils/createSvgIcon.js'; +import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( {{{paths}}} diff --git a/scripts/build.js b/scripts/build.js index 63516c6f79138d..f881ea4a477bd5 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -18,7 +18,7 @@ const validBundles = [ ]; async function run(argv) { - const { bundle, largeFiles, onlyESModules, outDir: relativeOutDir, verbose } = argv; + const { bundle, largeFiles, outDir: relativeOutDir, verbose } = argv; if (validBundles.indexOf(bundle) === -1) { throw new TypeError( @@ -26,12 +26,6 @@ async function run(argv) { ); } - if (onlyESModules && bundle === 'node') { - throw new TypeError( - 'This script is not intended for packages that only ship ES modules but also want a separate build for node.', - ); - } - const env = { NODE_ENV: 'production', BABEL_ENV: bundle, @@ -68,7 +62,7 @@ async function run(argv) { { node: topLevelPathImportsCanBePackages ? './node' : './', modern: './modern', - stable: topLevelPathImportsCanBePackages || onlyESModules ? './' : './esm', + stable: topLevelPathImportsCanBePackages ? './' : './esm', legacy: './legacy', }[bundle], ); @@ -122,11 +116,6 @@ yargs default: false, describe: 'Set to `true` if you know you are transpiling large files.', }) - .option('onlyESModules', { - type: 'boolean', - default: false, - describe: 'Set to `true` if the package only ships with ES modules.', - }) .option('out-dir', { default: './build', type: 'string' }) .option('verbose', { type: 'boolean' }); }, diff --git a/scripts/copy-files.js b/scripts/copy-files.js index f6e56308645821..a1cf47c43c5dd2 100644 --- a/scripts/copy-files.js +++ b/scripts/copy-files.js @@ -86,14 +86,8 @@ async function typescriptCopy({ from, to }) { async function createPackageFile() { const packageData = await fse.readFile(path.resolve(packagePath, './package.json'), 'utf8'); - const { - nyc, - scripts, - devDependencies, - workspaces, - publishConfig: { exports: publishedExports, type: publishedType, ...publishConfig }, - ...packageDataOther - } = JSON.parse(packageData); + const { nyc, scripts, devDependencies, workspaces, ...packageDataOther } = + JSON.parse(packageData); const newPackageData = { ...packageDataOther, @@ -109,9 +103,6 @@ async function createPackageFile() { } : {}), types: './index.d.ts', - type: publishedType, - exports: publishedExports, - publishConfig, }; const targetPath = path.resolve(buildPath, './package.json');